
    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_4756ee862dbbe54aa9c1efe5.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_fe776aa7bcd841d26963b793.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00000{font-family:ff3_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:ff4_c00000;src:url('chunks/assets/font_349732f7ad2cb6fd82bed320.woff2')format("woff");}.ff4_c00000{font-family:ff4_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:ff5_c00000;src:url('chunks/assets/font_37aa60e8de06873ad713f93c.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.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_6439f5b73048d4410b6f34fb.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00000;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff8_c00000{font-family:ff8_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:ff9_c00000;src:url('chunks/assets/font_38aa73c3a64ca83c615f76a4.woff2')format("woff");}.ff9_c00000{font-family:ff9_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:ffa_c00000;src:url('chunks/assets/font_086f4d3cb0713460d9935475.woff2')format("woff");}.ffa_c00000{font-family:ffa_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:ffb_c00000;src:url('chunks/assets/font_9eb93b50ec22f91a3bf1eb6e.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_ff50f6f5aab9464c72e38f1d.woff2')format("woff");}.ffc_c00000{font-family:ffc_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:ffd_c00000;src:url('chunks/assets/font_071f6568b3bc339dc0a1664b.woff2')format("woff");}.ffd_c00000{font-family:ffd_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:ffe_c00000;src:url('chunks/assets/font_1f51e5c20b90125cf5c08720.woff2')format("woff");}.ffe_c00000{font-family:ffe_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:fff_c00000;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.fff_c00000{font-family:fff_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:ff10_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff10_c00000{font-family:ff10_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:ff11_c00000;src:url('chunks/assets/font_bbb29c66e379968b43a8f1a3.woff2')format("woff");}.ff11_c00000{font-family:ff11_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:ff12_c00000;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff12_c00000{font-family:ff12_c00000;line-height:1.002930;font-style:normal;font-weight: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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff13_c00000{font-family:ff13_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:ff14_c00000;src:url('chunks/assets/font_e233353a1eeff4d116c7bd63.woff2')format("woff");}.ff14_c00000{font-family:ff14_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:ff15_c00000;src:url('chunks/assets/font_0b4b891d792f99be203df85c.woff2')format("woff");}.ff15_c00000{font-family:ff15_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:ff16_c00000;src:url('chunks/assets/font_963a14aa2768ca7ed394d36e.woff2')format("woff");}.ff16_c00000{font-family:ff16_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:ff17_c00000;src:url('chunks/assets/font_6469e0f23e02f9c3cb8df6b3.woff2')format("woff");}.ff17_c00000{font-family:ff17_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:ff18_c00000;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff18_c00000{font-family:ff18_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:ff19_c00000;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff19_c00000{font-family:ff19_c00000;line-height:1.002930;font-style:normal;font-weight: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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff1a_c00000{font-family:ff1a_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:ff1b_c00000;src:url('chunks/assets/font_c22ee16a99713c7a0a04f990.woff2')format("woff");}.ff1b_c00000{font-family:ff1b_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:ff1c_c00000;src:url('chunks/assets/font_53859e1bee0364a168ea5f44.woff2')format("woff");}.ff1c_c00000{font-family:ff1c_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:ff1d_c00000;src:url('chunks/assets/font_957411809cc8fcb77cd5d070.woff2')format("woff");}.ff1d_c00000{font-family:ff1d_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:ff1e_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1e_c00000{font-family:ff1e_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:ff1f_c00000;src:url('chunks/assets/font_b8b830475186c7762c9efe82.woff2')format("woff");}.ff1f_c00000{font-family:ff1f_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:ff20_c00000;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff20_c00000{font-family:ff20_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:ff21_c00000;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff21_c00000{font-family:ff21_c00000;line-height:1.002930;font-style:normal;font-weight: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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff22_c00000{font-family:ff22_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:ff23_c00000;src:url('chunks/assets/font_bba7760679ce0cca8a5ffaf1.woff2')format("woff");}.ff23_c00000{font-family:ff23_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:ff24_c00000;src:url('chunks/assets/font_1080e0dba02e43a694db6890.woff2')format("woff");}.ff24_c00000{font-family:ff24_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:ff25_c00000;src:url('chunks/assets/font_ac2cd85292f8dd71a9e5215b.woff2')format("woff");}.ff25_c00000{font-family:ff25_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:ff26_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff26_c00000{font-family:ff26_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:ff27_c00000;src:url('chunks/assets/font_5ecd96fd5dc7c9371bdabf16.woff2')format("woff");}.ff27_c00000{font-family:ff27_c00000;line-height:0.722656;font-style:normal;font-weight: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_84baeb8e9b038953edb1dbe3.woff2')format("woff");}.ff28_c00000{font-family:ff28_c00000;line-height:0.669434;font-style:normal;font-weight: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_9bf2ca3805f4d26aff5bf05a.woff2')format("woff");}.ff29_c00000{font-family:ff29_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:ff2a_c00000;src:url('chunks/assets/font_6c70c38154c331e97813996e.woff2')format("woff");}.ff2a_c00000{font-family:ff2a_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:ff2b_c00000;src:url('chunks/assets/font_eb6cc60166d99a1eec8afd48.woff2')format("woff");}.ff2b_c00000{font-family:ff2b_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:ff2c_c00000;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff2c_c00000{font-family:ff2c_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:ff2d_c00000;src:url('chunks/assets/font_4c3730ed736140d3fac81284.woff2')format("woff");}.ff2d_c00000{font-family:ff2d_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:ff2e_c00000;src:url('chunks/assets/font_a4bb28b958ccb6c6a3b407f3.woff2')format("woff");}.ff2e_c00000{font-family:ff2e_c00000;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00000;src:url('chunks/assets/font_2e00295edd252bc1a43061c3.woff2')format("woff");}.ff2f_c00000{font-family:ff2f_c00000;line-height:0.698242;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff30_c00000{font-family:ff30_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:ff31_c00000;src:url('chunks/assets/font_494ec066df2ae5b79c9a334e.woff2')format("woff");}.ff31_c00000{font-family:ff31_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:ff32_c00000;src:url('chunks/assets/font_cdb593455e319c4a87c015d2.woff2')format("woff");}.ff32_c00000{font-family:ff32_c00000;line-height:0.664062;font-style:normal;font-weight: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_9b6e3a0386ab5b3bfc3c0055.woff2')format("woff");}.ff33_c00000{font-family:ff33_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:ff34_c00000;src:url('chunks/assets/font_1fb60f3fe23941eb498cf80b.woff2')format("woff");}.ff34_c00000{font-family:ff34_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:ff35_c00000;src:url('chunks/assets/font_4c80553185ec4c8ac9c5f115.woff2')format("woff");}.ff35_c00000{font-family:ff35_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:ff36_c00000;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff36_c00000{font-family:ff36_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:ff37_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff37_c00000{font-family:ff37_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:ff38_c00000;src:url('chunks/assets/font_2698c60b96b6dd46eedc1698.woff2')format("woff");}.ff38_c00000{font-family:ff38_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:ff39_c00000;src:url('chunks/assets/font_255f870b9fc31d2271363387.woff2')format("woff");}.ff39_c00000{font-family:ff39_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:ff3a_c00000;src:url('chunks/assets/font_acfe50b116787ad9bba17f62.woff2')format("woff");}.ff3a_c00000{font-family:ff3a_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:ff3b_c00000;src:url('chunks/assets/font_b96d934fb00e7abb42bc3ec0.woff2')format("woff");}.ff3b_c00000{font-family:ff3b_c00000;line-height:1.002930;font-style:normal;font-weight: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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3c_c00000{font-family:ff3c_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:ff3d_c00000;src:url('chunks/assets/font_f59439f1227f70c2643fa7a9.woff2')format("woff");}.ff3d_c00000{font-family:ff3d_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:ff3e_c00000;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff3e_c00000{font-family:ff3e_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:ff3f_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3f_c00000{font-family:ff3f_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:ff40_c00000;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff40_c00000{font-family:ff40_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:ff41_c00000;src:url('chunks/assets/font_889aacbfbff40ca3d55d8f78.woff2')format("woff");}.ff41_c00000{font-family:ff41_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:ff42_c00000;src:url('chunks/assets/font_58a8e796e6bce1d7685f0989.woff2')format("woff");}.ff42_c00000{font-family:ff42_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:ff43_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff43_c00000{font-family:ff43_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:ff44_c00000;src:url('chunks/assets/font_9943b7873c3870c42ab7e2db.woff2')format("woff");}.ff44_c00000{font-family:ff44_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:ff45_c00000;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff45_c00000{font-family:ff45_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:ff46_c00000;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff46_c00000{font-family:ff46_c00000;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00000;src:url('chunks/assets/font_2ce14f2a14f5ac58bdf976ba.woff2')format("woff");}.ff47_c00000{font-family:ff47_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:ff48_c00000;src:url('chunks/assets/font_b464ecb4b90d49e389dce0ce.woff2')format("woff");}.ff48_c00000{font-family:ff48_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:ff49_c00000;src:url('chunks/assets/font_df01af39ca7d4d226d449e52.woff2')format("woff");}.ff49_c00000{font-family:ff49_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:ff4a_c00000;src:url('chunks/assets/font_1774781da6b7d07941199b05.woff2')format("woff");}.ff4a_c00000{font-family:ff4a_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:ff4b_c00000;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4b_c00000{font-family:ff4b_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:ff4c_c00000;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff4c_c00000{font-family:ff4c_c00000;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00000;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff4d_c00000{font-family:ff4d_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:ff4e_c00000;src:url('chunks/assets/font_b2579a3e93ed21c88859d499.woff2')format("woff");}.ff4e_c00000{font-family:ff4e_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:ff4f_c00000;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff4f_c00000{font-family:ff4f_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:ff50_c00000;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff50_c00000{font-family:ff50_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:ff51_c00000;src:url('chunks/assets/font_861f26e4198ee673f1780fec.woff2')format("woff");}.ff51_c00000{font-family:ff51_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:ff52_c00000;src:url('chunks/assets/font_5f25481972481e3dd89ac3a7.woff2')format("woff");}.ff52_c00000{font-family:ff52_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:ff53_c00000;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff53_c00000{font-family:ff53_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:ff54_c00000;src:url('chunks/assets/font_b991b44ae197e0350cca9176.woff2')format("woff");}.ff54_c00000{font-family:ff54_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:ff55_c00000;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff55_c00000{font-family:ff55_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:ff56_c00000;src:url('chunks/assets/font_4d118a39f199e4eb139e9794.woff2')format("woff");}.ff56_c00000{font-family:ff56_c00000;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57_c00000;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff57_c00000{font-family:ff57_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:ff58_c00000;src:url('chunks/assets/font_cfa83edf3bf285834b5e6380.woff2')format("woff");}.ff58_c00000{font-family:ff58_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:ff59_c00000;src:url('chunks/assets/font_f2e269f831d4b28d7a14fcfc.woff2')format("woff");}.ff59_c00000{font-family:ff59_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:ff5a_c00000;src:url('chunks/assets/font_541faf7de6535306bf36e047.woff2')format("woff");}.ff5a_c00000{font-family:ff5a_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;}
.m7_c00000{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,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);}
.ma_c00000{transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);}
.m8_c00000{transform:matrix(0.265806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265806,0.000000,0.000000,0.250000,0,0);}
.m9_c00000{transform:matrix(0.266503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266503,0.000000,0.000000,0.250000,0,0);}
.m6_c00000{transform:matrix(0.267271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267271,0.000000,0.000000,0.250000,0,0);}
.md_c00000{transform:matrix(0.268158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268158,0.000000,0.000000,0.250000,0,0);}
.m5_c00000{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.me_c00000{transform:matrix(0.271955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271955,0.000000,0.000000,0.250000,0,0);}
.m10_c00000{transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272402,0.000000,0.000000,0.250000,0,0);}
.mf_c00000{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.mc_c00000{transform:matrix(0.274396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274396,0.000000,0.000000,0.250000,0,0);}
.mb_c00000{transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279435,0.000000,0.000000,0.250000,0,0);}
.v2_c00000{vertical-align:-151.925976px;}
.v3_c00000{vertical-align:-96.478776px;}
.v1_c00000{vertical-align:-91.800000px;}
.v4_c00000{vertical-align:-86.040696px;}
.v25_c00000{vertical-align:-84.959400px;}
.vc_c00000{vertical-align:-82.800000px;}
.vf_c00000{vertical-align:-81.000000px;}
.v24_c00000{vertical-align:-79.560000px;}
.va_c00000{vertical-align:-77.760000px;}
.v9_c00000{vertical-align:-75.239400px;}
.v5_c00000{vertical-align:-72.719448px;}
.v8_c00000{vertical-align:-70.920000px;}
.vd_c00000{vertical-align:-69.840000px;}
.v1f_c00000{vertical-align:-68.759244px;}
.vb_c00000{vertical-align:-66.600000px;}
.v16_c00000{vertical-align:-58.680000px;}
.v1d_c00000{vertical-align:-55.440000px;}
.v28_c00000{vertical-align:-46.440000px;}
.v11_c00000{vertical-align:-35.640000px;}
.v7_c00000{vertical-align:-33.120000px;}
.ve_c00000{vertical-align:-29.879400px;}
.v1b_c00000{vertical-align:-27.717732px;}
.v21_c00000{vertical-align:-13.320000px;}
.v2a_c00000{vertical-align:-11.160000px;}
.v34_c00000{vertical-align:-9.720000px;}
.v35_c00000{vertical-align:-7.200000px;}
.v2f_c00000{vertical-align:-5.400000px;}
.v2d_c00000{vertical-align:-4.320000px;}
.v20_c00000{vertical-align:-2.880000px;}
.v31_c00000{vertical-align:-1.440000px;}
.v0_c00000{vertical-align:0.000000px;}
.v2e_c00000{vertical-align:1.080000px;}
.v30_c00000{vertical-align:2.520000px;}
.v2c_c00000{vertical-align:3.600000px;}
.v2b_c00000{vertical-align:5.040600px;}
.v26_c00000{vertical-align:6.120000px;}
.v33_c00000{vertical-align:7.200000px;}
.v10_c00000{vertical-align:11.880000px;}
.v19_c00000{vertical-align:27.360000px;}
.v29_c00000{vertical-align:29.876580px;}
.v6_c00000{vertical-align:33.120000px;}
.v14_c00000{vertical-align:34.559400px;}
.v32_c00000{vertical-align:37.440000px;}
.v22_c00000{vertical-align:39.600000px;}
.v1e_c00000{vertical-align:41.400000px;}
.v1a_c00000{vertical-align:44.280000px;}
.v1c_c00000{vertical-align:54.000000px;}
.v18_c00000{vertical-align:55.440000px;}
.v17_c00000{vertical-align:62.280000px;}
.v15_c00000{vertical-align:68.040000px;}
.v12_c00000{vertical-align:69.120000px;}
.v27_c00000{vertical-align:74.159400px;}
.v36_c00000{vertical-align:75.960000px;}
.v23_c00000{vertical-align:79.560000px;}
.v13_c00000{vertical-align:82.080000px;}
.ls240_c00000{letter-spacing:-2.016000px;}
.ls23f_c00000{letter-spacing:-1.915200px;}
.ls1fa_c00000{letter-spacing:-1.864404px;}
.lsb7_c00000{letter-spacing:-1.828800px;}
.ls1f9_c00000{letter-spacing:-1.745820px;}
.ls1f8_c00000{letter-spacing:-1.581120px;}
.ls1fe_c00000{letter-spacing:-1.403244px;}
.ls1fc_c00000{letter-spacing:-1.390068px;}
.lse9_c00000{letter-spacing:-1.376892px;}
.ls1fb_c00000{letter-spacing:-1.363716px;}
.ls212_c00000{letter-spacing:-1.346400px;}
.ls1fd_c00000{letter-spacing:-1.343952px;}
.ls211_c00000{letter-spacing:-1.332000px;}
.ls242_c00000{letter-spacing:-1.303200px;}
.ls241_c00000{letter-spacing:-1.288800px;}
.ls21f_c00000{letter-spacing:-1.224000px;}
.ls210_c00000{letter-spacing:-1.195200px;}
.lsed_c00000{letter-spacing:-1.152900px;}
.lsf2_c00000{letter-spacing:-1.126548px;}
.ls1f2_c00000{letter-spacing:-1.113372px;}
.ls1f1_c00000{letter-spacing:-1.087020px;}
.lsf1_c00000{letter-spacing:-1.080432px;}
.lsbb_c00000{letter-spacing:-1.015200px;}
.lsb9_c00000{letter-spacing:-1.008000px;}
.lsb8_c00000{letter-spacing:-0.993600px;}
.ls222_c00000{letter-spacing:-0.986400px;}
.lsbc_c00000{letter-spacing:-0.979200px;}
.ls228_c00000{letter-spacing:-0.950400px;}
.lsba_c00000{letter-spacing:-0.928800px;}
.ls1ec_c00000{letter-spacing:-0.922320px;}
.ls1ed_c00000{letter-spacing:-0.902556px;}
.ls1f4_c00000{letter-spacing:-0.876204px;}
.lseb_c00000{letter-spacing:-0.830088px;}
.lsf0_c00000{letter-spacing:-0.803736px;}
.ls1ff_c00000{letter-spacing:-0.783972px;}
.ls1f7_c00000{letter-spacing:-0.777384px;}
.ls1f6_c00000{letter-spacing:-0.770796px;}
.lsef_c00000{letter-spacing:-0.731268px;}
.ls225_c00000{letter-spacing:-0.712800px;}
.ls1e5_c00000{letter-spacing:-0.711504px;}
.ls220_c00000{letter-spacing:-0.698400px;}
.ls1f3_c00000{letter-spacing:-0.691740px;}
.ls226_c00000{letter-spacing:-0.684000px;}
.ls1e6_c00000{letter-spacing:-0.671976px;}
.ls1df_c00000{letter-spacing:-0.669600px;}
.ls1f0_c00000{letter-spacing:-0.652212px;}
.ls1e7_c00000{letter-spacing:-0.632448px;}
.ls1ca_c00000{letter-spacing:-0.625248px;}
.ls1ef_c00000{letter-spacing:-0.612684px;}
.ls1e8_c00000{letter-spacing:-0.579744px;}
.lsdc_c00000{letter-spacing:-0.568800px;}
.ls1e9_c00000{letter-spacing:-0.566568px;}
.ls180_c00000{letter-spacing:-0.561600px;}
.ls1ee_c00000{letter-spacing:-0.540216px;}
.lsdd_c00000{letter-spacing:-0.518400px;}
.ls184_c00000{letter-spacing:-0.505008px;}
.ls1b5_c00000{letter-spacing:-0.482400px;}
.lsa3_c00000{letter-spacing:-0.480924px;}
.ls201_c00000{letter-spacing:-0.475200px;}
.ls227_c00000{letter-spacing:-0.460800px;}
.ls243_c00000{letter-spacing:-0.424800px;}
.ls223_c00000{letter-spacing:-0.417600px;}
.ls1d5_c00000{letter-spacing:-0.402804px;}
.ls221_c00000{letter-spacing:-0.374400px;}
.ls197_c00000{letter-spacing:-0.360720px;}
.lsaa_c00000{letter-spacing:-0.360000px;}
.ls208_c00000{letter-spacing:-0.354708px;}
.ls1e1_c00000{letter-spacing:-0.352800px;}
.ls1c_c00000{letter-spacing:-0.343512px;}
.ls1de_c00000{letter-spacing:-0.336672px;}
.ls113_c00000{letter-spacing:-0.335988px;}
.lsf6_c00000{letter-spacing:-0.331200px;}
.ls172_c00000{letter-spacing:-0.330660px;}
.ls1bb_c00000{letter-spacing:-0.324648px;}
.ls1d6_c00000{letter-spacing:-0.318636px;}
.ls166_c00000{letter-spacing:-0.312624px;}
.ls124_c00000{letter-spacing:-0.302400px;}
.ls95_c00000{letter-spacing:-0.300600px;}
.ls1ea_c00000{letter-spacing:-0.296460px;}
.ls134_c00000{letter-spacing:-0.294588px;}
.ls1e4_c00000{letter-spacing:-0.289872px;}
.ls17e_c00000{letter-spacing:-0.288576px;}
.lsfb_c00000{letter-spacing:-0.288000px;}
.lsd7_c00000{letter-spacing:-0.280800px;}
.ls17a_c00000{letter-spacing:-0.273600px;}
.ls141_c00000{letter-spacing:-0.270540px;}
.lsf9_c00000{letter-spacing:-0.270108px;}
.ls1e3_c00000{letter-spacing:-0.266400px;}
.ls1d7_c00000{letter-spacing:-0.264528px;}
.ls1eb_c00000{letter-spacing:-0.256932px;}
.ls66_c00000{letter-spacing:-0.252504px;}
.lsd6_c00000{letter-spacing:-0.252000px;}
.lsfa_c00000{letter-spacing:-0.244800px;}
.ls200_c00000{letter-spacing:-0.243756px;}
.ls209_c00000{letter-spacing:-0.237600px;}
.ls155_c00000{letter-spacing:-0.234468px;}
.ls109_c00000{letter-spacing:-0.230400px;}
.ls1b7_c00000{letter-spacing:-0.222444px;}
.ls1c7_c00000{letter-spacing:-0.216432px;}
.lsac_c00000{letter-spacing:-0.216000px;}
.ls1c9_c00000{letter-spacing:-0.210420px;}
.lsd1_c00000{letter-spacing:-0.208800px;}
.ls152_c00000{letter-spacing:-0.204408px;}
.ls6d_c00000{letter-spacing:-0.201600px;}
.ls168_c00000{letter-spacing:-0.199800px;}
.ls16c_c00000{letter-spacing:-0.198396px;}
.lsd2_c00000{letter-spacing:-0.194400px;}
.ls16d_c00000{letter-spacing:-0.192384px;}
.lsc4_c00000{letter-spacing:-0.187200px;}
.ls140_c00000{letter-spacing:-0.186372px;}
.ls165_c00000{letter-spacing:-0.180360px;}
.lsf3_c00000{letter-spacing:-0.180000px;}
.ls15b_c00000{letter-spacing:-0.178200px;}
.ls224_c00000{letter-spacing:-0.177876px;}
.ls1ba_c00000{letter-spacing:-0.174348px;}
.lsd3_c00000{letter-spacing:-0.172800px;}
.ls154_c00000{letter-spacing:-0.168336px;}
.lsce_c00000{letter-spacing:-0.165600px;}
.ls1a4_c00000{letter-spacing:-0.162792px;}
.ls135_c00000{letter-spacing:-0.162324px;}
.ls1b4_c00000{letter-spacing:-0.158400px;}
.ls139_c00000{letter-spacing:-0.156312px;}
.lscf_c00000{letter-spacing:-0.151200px;}
.ls12f_c00000{letter-spacing:-0.150300px;}
.ls19_c00000{letter-spacing:-0.145332px;}
.ls137_c00000{letter-spacing:-0.144288px;}
.lsa9_c00000{letter-spacing:-0.144000px;}
.ls151_c00000{letter-spacing:-0.138276px;}
.lsbe_c00000{letter-spacing:-0.136800px;}
.ls267_c00000{letter-spacing:-0.135000px;}
.ls20_c00000{letter-spacing:-0.134208px;}
.ls14e_c00000{letter-spacing:-0.132264px;}
.ls22e_c00000{letter-spacing:-0.131760px;}
.lsf7_c00000{letter-spacing:-0.129600px;}
.ls133_c00000{letter-spacing:-0.126252px;}
.lsfe_c00000{letter-spacing:-0.122400px;}
.ls119_c00000{letter-spacing:-0.120240px;}
.ls27c_c00000{letter-spacing:-0.118800px;}
.lse8_c00000{letter-spacing:-0.118584px;}
.lsb2_c00000{letter-spacing:-0.115200px;}
.ls64_c00000{letter-spacing:-0.114228px;}
.ls268_c00000{letter-spacing:-0.113400px;}
.ls1e_c00000{letter-spacing:-0.109044px;}
.ls131_c00000{letter-spacing:-0.108216px;}
.ls1d_c00000{letter-spacing:-0.108000px;}
.lsec_c00000{letter-spacing:-0.105408px;}
.ls1b2_c00000{letter-spacing:-0.105336px;}
.ls266_c00000{letter-spacing:-0.102600px;}
.ls6a_c00000{letter-spacing:-0.102204px;}
.lscc_c00000{letter-spacing:-0.100800px;}
.ls106_c00000{letter-spacing:-0.096192px;}
.lsad_c00000{letter-spacing:-0.093600px;}
.ls16_c00000{letter-spacing:-0.092484px;}
.lsee_c00000{letter-spacing:-0.092232px;}
.ls150_c00000{letter-spacing:-0.091800px;}
.ls61_c00000{letter-spacing:-0.090972px;}
.ls13a_c00000{letter-spacing:-0.090180px;}
.ls36_c00000{letter-spacing:-0.086400px;}
.ls26d_c00000{letter-spacing:-0.086184px;}
.ls118_c00000{letter-spacing:-0.084168px;}
.lsa5_c00000{letter-spacing:-0.079200px;}
.ls218_c00000{letter-spacing:-0.079056px;}
.ls169_c00000{letter-spacing:-0.078156px;}
.ls269_c00000{letter-spacing:-0.075600px;}
.ls125_c00000{letter-spacing:-0.072468px;}
.ls138_c00000{letter-spacing:-0.072144px;}
.ls42_c00000{letter-spacing:-0.072000px;}
.ls1a2_c00000{letter-spacing:-0.071820px;}
.ls274_c00000{letter-spacing:-0.067032px;}
.ls132_c00000{letter-spacing:-0.066132px;}
.ls17_c00000{letter-spacing:-0.066060px;}
.ls1db_c00000{letter-spacing:-0.065880px;}
.ls3b_c00000{letter-spacing:-0.064800px;}
.ls26b_c00000{letter-spacing:-0.062244px;}
.ls161_c00000{letter-spacing:-0.060120px;}
.ls26a_c00000{letter-spacing:-0.059400px;}
.lsa2_c00000{letter-spacing:-0.059292px;}
.ls35_c00000{letter-spacing:-0.057600px;}
.ls176_c00000{letter-spacing:-0.057456px;}
.ls92_c00000{letter-spacing:-0.054108px;}
.ls15a_c00000{letter-spacing:-0.054000px;}
.ls14_c00000{letter-spacing:-0.052848px;}
.ls1cf_c00000{letter-spacing:-0.052704px;}
.ls1a1_c00000{letter-spacing:-0.052668px;}
.ls4d_c00000{letter-spacing:-0.050400px;}
.ls108_c00000{letter-spacing:-0.048096px;}
.ls256_c00000{letter-spacing:-0.047880px;}
.lsb3_c00000{letter-spacing:-0.046116px;}
.ls50_c00000{letter-spacing:-0.043200px;}
.ls26e_c00000{letter-spacing:-0.043092px;}
.ls107_c00000{letter-spacing:-0.042084px;}
.ls18_c00000{letter-spacing:-0.039636px;}
.ls110_c00000{letter-spacing:-0.039528px;}
.ls1bf_c00000{letter-spacing:-0.038304px;}
.ls15d_c00000{letter-spacing:-0.037800px;}
.ls105_c00000{letter-spacing:-0.036072px;}
.ls3e_c00000{letter-spacing:-0.036000px;}
.ls21_c00000{letter-spacing:-0.033552px;}
.ls273_c00000{letter-spacing:-0.033516px;}
.lsc7_c00000{letter-spacing:-0.032940px;}
.ls15f_c00000{letter-spacing:-0.032400px;}
.ls69_c00000{letter-spacing:-0.030060px;}
.ls38_c00000{letter-spacing:-0.028800px;}
.lsa1_c00000{letter-spacing:-0.027648px;}
.ls167_c00000{letter-spacing:-0.027000px;}
.ls1a_c00000{letter-spacing:-0.026424px;}
.lscb_c00000{letter-spacing:-0.026352px;}
.ls1f_c00000{letter-spacing:-0.025164px;}
.ls93_c00000{letter-spacing:-0.024048px;}
.ls1a5_c00000{letter-spacing:-0.023940px;}
.ls34_c00000{letter-spacing:-0.021600px;}
.lsa6_c00000{letter-spacing:-0.019764px;}
.ls258_c00000{letter-spacing:-0.019152px;}
.ls6b_c00000{letter-spacing:-0.018036px;}
.ls23_c00000{letter-spacing:-0.016776px;}
.ls153_c00000{letter-spacing:-0.016200px;}
.ls13_c00000{letter-spacing:-0.014400px;}
.ls1c0_c00000{letter-spacing:-0.014364px;}
.ls1b_c00000{letter-spacing:-0.013212px;}
.lsb1_c00000{letter-spacing:-0.013176px;}
.ls67_c00000{letter-spacing:-0.012024px;}
.ls160_c00000{letter-spacing:-0.010800px;}
.ls257_c00000{letter-spacing:-0.009576px;}
.ls2a_c00000{letter-spacing:-0.008388px;}
.ls37_c00000{letter-spacing:-0.007200px;}
.ls83_c00000{letter-spacing:-0.006588px;}
.ls104_c00000{letter-spacing:-0.006012px;}
.ls14f_c00000{letter-spacing:-0.005400px;}
.ls62_c00000{letter-spacing:-0.004788px;}
.ls0_c00000{letter-spacing:0.000000px;}
.ls89_c00000{letter-spacing:0.004788px;}
.ls14a_c00000{letter-spacing:0.005400px;}
.ls88_c00000{letter-spacing:0.006012px;}
.ls74_c00000{letter-spacing:0.006588px;}
.ls2f_c00000{letter-spacing:0.007200px;}
.ls9_c00000{letter-spacing:0.008388px;}
.ls19e_c00000{letter-spacing:0.009576px;}
.ls8_c00000{letter-spacing:0.010800px;}
.ls8e_c00000{letter-spacing:0.012024px;}
.ls7c_c00000{letter-spacing:0.013176px;}
.ls46_c00000{letter-spacing:0.013320px;}
.ls18c_c00000{letter-spacing:0.014364px;}
.ls30_c00000{letter-spacing:0.014400px;}
.ls142_c00000{letter-spacing:0.016200px;}
.ls10_c00000{letter-spacing:0.016776px;}
.ls8c_c00000{letter-spacing:0.018036px;}
.ls19c_c00000{letter-spacing:0.019152px;}
.ls72_c00000{letter-spacing:0.019764px;}
.lsa_c00000{letter-spacing:0.021600px;}
.ls18f_c00000{letter-spacing:0.023940px;}
.ls103_c00000{letter-spacing:0.024048px;}
.ls12_c00000{letter-spacing:0.025164px;}
.ls75_c00000{letter-spacing:0.026352px;}
.ls4_c00000{letter-spacing:0.026424px;}
.ls146_c00000{letter-spacing:0.027000px;}
.ls47_c00000{letter-spacing:0.028728px;}
.ls2d_c00000{letter-spacing:0.028800px;}
.ls60_c00000{letter-spacing:0.030060px;}
.ls14d_c00000{letter-spacing:0.032400px;}
.ls7b_c00000{letter-spacing:0.032940px;}
.ls18a_c00000{letter-spacing:0.033516px;}
.ls29_c00000{letter-spacing:0.033552px;}
.ls31_c00000{letter-spacing:0.036000px;}
.lsff_c00000{letter-spacing:0.036072px;}
.ls144_c00000{letter-spacing:0.037800px;}
.ls8a_c00000{letter-spacing:0.038304px;}
.ls73_c00000{letter-spacing:0.039528px;}
.ls5_c00000{letter-spacing:0.039636px;}
.lsf_c00000{letter-spacing:0.041940px;}
.ls5f_c00000{letter-spacing:0.042084px;}
.ls187_c00000{letter-spacing:0.043092px;}
.ls3_c00000{letter-spacing:0.043200px;}
.ls77_c00000{letter-spacing:0.046116px;}
.ls117_c00000{letter-spacing:0.047880px;}
.ls100_c00000{letter-spacing:0.048096px;}
.ls147_c00000{letter-spacing:0.048600px;}
.ls28_c00000{letter-spacing:0.050328px;}
.ls39_c00000{letter-spacing:0.050400px;}
.ls18d_c00000{letter-spacing:0.052668px;}
.ls7a_c00000{letter-spacing:0.052704px;}
.ls156_c00000{letter-spacing:0.054000px;}
.ls101_c00000{letter-spacing:0.054108px;}
.ls190_c00000{letter-spacing:0.057456px;}
.ls32_c00000{letter-spacing:0.057600px;}
.ls26_c00000{letter-spacing:0.058716px;}
.ls79_c00000{letter-spacing:0.059292px;}
.ls163_c00000{letter-spacing:0.059400px;}
.ls65_c00000{letter-spacing:0.060120px;}
.ls194_c00000{letter-spacing:0.062244px;}
.ls6_c00000{letter-spacing:0.064800px;}
.ls76_c00000{letter-spacing:0.065880px;}
.ls5b_c00000{letter-spacing:0.066132px;}
.ls59_c00000{letter-spacing:0.067032px;}
.lsd_c00000{letter-spacing:0.067104px;}
.lsa0_c00000{letter-spacing:0.069120px;}
.ls145_c00000{letter-spacing:0.070200px;}
.ls18b_c00000{letter-spacing:0.071820px;}
.ls3a_c00000{letter-spacing:0.072000px;}
.ls8f_c00000{letter-spacing:0.072144px;}
.ls78_c00000{letter-spacing:0.072468px;}
.lsb_c00000{letter-spacing:0.075492px;}
.ls149_c00000{letter-spacing:0.075600px;}
.ls19a_c00000{letter-spacing:0.076608px;}
.ls94_c00000{letter-spacing:0.078156px;}
.ls48_c00000{letter-spacing:0.079056px;}
.ls2c_c00000{letter-spacing:0.079200px;}
.ls143_c00000{letter-spacing:0.081000px;}
.ls177_c00000{letter-spacing:0.081396px;}
.ls25_c00000{letter-spacing:0.083880px;}
.ls5d_c00000{letter-spacing:0.084168px;}
.ls7d_c00000{letter-spacing:0.085644px;}
.ls188_c00000{letter-spacing:0.086184px;}
.ls7_c00000{letter-spacing:0.086400px;}
.ls5a_c00000{letter-spacing:0.090000px;}
.ls68_c00000{letter-spacing:0.090180px;}
.ls192_c00000{letter-spacing:0.090972px;}
.ls157_c00000{letter-spacing:0.091800px;}
.ls81_c00000{letter-spacing:0.092232px;}
.ls27_c00000{letter-spacing:0.092268px;}
.ls55_c00000{letter-spacing:0.093600px;}
.ls18e_c00000{letter-spacing:0.095760px;}
.ls5e_c00000{letter-spacing:0.096192px;}
.ls148_c00000{letter-spacing:0.097200px;}
.ls7f_c00000{letter-spacing:0.098820px;}
.ls195_c00000{letter-spacing:0.100548px;}
.ls24_c00000{letter-spacing:0.100656px;}
.ls33_c00000{letter-spacing:0.100800px;}
.ls6c_c00000{letter-spacing:0.102204px;}
.ls158_c00000{letter-spacing:0.102600px;}
.ls191_c00000{letter-spacing:0.105336px;}
.ls87_c00000{letter-spacing:0.105408px;}
.ls15_c00000{letter-spacing:0.105696px;}
.ls71_c00000{letter-spacing:0.108000px;}
.ls90_c00000{letter-spacing:0.108216px;}
.ls189_c00000{letter-spacing:0.110124px;}
.ls85_c00000{letter-spacing:0.111996px;}
.ls14b_c00000{letter-spacing:0.113400px;}
.ls8d_c00000{letter-spacing:0.114228px;}
.ls19b_c00000{letter-spacing:0.114912px;}
.ls4a_c00000{letter-spacing:0.115200px;}
.lsb0_c00000{letter-spacing:0.118584px;}
.ls162_c00000{letter-spacing:0.118800px;}
.ls199_c00000{letter-spacing:0.119700px;}
.ls91_c00000{letter-spacing:0.120240px;}
.ls2e_c00000{letter-spacing:0.122400px;}
.ls15e_c00000{letter-spacing:0.124200px;}
.ls193_c00000{letter-spacing:0.124488px;}
.ls97_c00000{letter-spacing:0.125172px;}
.ls6e_c00000{letter-spacing:0.126252px;}
.ls182_c00000{letter-spacing:0.129276px;}
.lsd8_c00000{letter-spacing:0.129600px;}
.lsaf_c00000{letter-spacing:0.131760px;}
.ls5c_c00000{letter-spacing:0.132264px;}
.ls183_c00000{letter-spacing:0.134064px;}
.lsc_c00000{letter-spacing:0.134208px;}
.ls164_c00000{letter-spacing:0.135000px;}
.lsb5_c00000{letter-spacing:0.136800px;}
.ls14c_c00000{letter-spacing:0.138276px;}
.ls1dd_c00000{letter-spacing:0.138348px;}
.ls1c2_c00000{letter-spacing:0.138852px;}
.ls16e_c00000{letter-spacing:0.140040px;}
.ls1a8_c00000{letter-spacing:0.143640px;}
.ls4c_c00000{letter-spacing:0.144000px;}
.ls130_c00000{letter-spacing:0.144288px;}
.ls16f_c00000{letter-spacing:0.145800px;}
.ls1c1_c00000{letter-spacing:0.148428px;}
.ls136_c00000{letter-spacing:0.150300px;}
.lsf4_c00000{letter-spacing:0.151200px;}
.ls112_c00000{letter-spacing:0.151524px;}
.ls245_c00000{letter-spacing:0.153360px;}
.ls12e_c00000{letter-spacing:0.156312px;}
.ls1bd_c00000{letter-spacing:0.158004px;}
.lsc2_c00000{letter-spacing:0.158112px;}
.lsb6_c00000{letter-spacing:0.158400px;}
.ls1d9_c00000{letter-spacing:0.162324px;}
.ls1be_c00000{letter-spacing:0.162792px;}
.ls114_c00000{letter-spacing:0.164700px;}
.ls179_c00000{letter-spacing:0.165600px;}
.ls15c_c00000{letter-spacing:0.168336px;}
.ls26c_c00000{letter-spacing:0.171288px;}
.ls1a3_c00000{letter-spacing:0.172368px;}
.lsc6_c00000{letter-spacing:0.172800px;}
.ls12d_c00000{letter-spacing:0.174348px;}
.ls25d_c00000{letter-spacing:0.177156px;}
.ls9a_c00000{letter-spacing:0.177876px;}
.ls10a_c00000{letter-spacing:0.180000px;}
.ls8b_c00000{letter-spacing:0.180360px;}
.ls175_c00000{letter-spacing:0.181944px;}
.lsf5_c00000{letter-spacing:0.187200px;}
.ls22_c00000{letter-spacing:0.192924px;}
.ls17f_c00000{letter-spacing:0.194400px;}
.ls23b_c00000{letter-spacing:0.197640px;}
.lsbf_c00000{letter-spacing:0.201600px;}
.ls1da_c00000{letter-spacing:0.204408px;}
.ls23a_c00000{letter-spacing:0.208800px;}
.ls1a6_c00000{letter-spacing:0.215460px;}
.ls231_c00000{letter-spacing:0.216000px;}
.ls121_c00000{letter-spacing:0.223200px;}
.lse4_c00000{letter-spacing:0.223992px;}
.lsd9_c00000{letter-spacing:0.230400px;}
.lse3_c00000{letter-spacing:0.230580px;}
.ls21d_c00000{letter-spacing:0.237600px;}
.ls265_c00000{letter-spacing:0.239400px;}
.ls173_c00000{letter-spacing:0.240480px;}
.ls22c_c00000{letter-spacing:0.244800px;}
.ls1f5_c00000{letter-spacing:0.250344px;}
.lsfc_c00000{letter-spacing:0.252000px;}
.lse5_c00000{letter-spacing:0.256932px;}
.ls22a_c00000{letter-spacing:0.259200px;}
.lsea_c00000{letter-spacing:0.263520px;}
.ls232_c00000{letter-spacing:0.266400px;}
.ls244_c00000{letter-spacing:0.270000px;}
.lse0_c00000{letter-spacing:0.276696px;}
.ls1e0_c00000{letter-spacing:0.280800px;}
.ls22b_c00000{letter-spacing:0.288000px;}
.ls270_c00000{letter-spacing:0.292068px;}
.ls230_c00000{letter-spacing:0.302400px;}
.lse2_c00000{letter-spacing:0.303048px;}
.ls22f_c00000{letter-spacing:0.309600px;}
.ls272_c00000{letter-spacing:0.316008px;}
.lsc1_c00000{letter-spacing:0.316800px;}
.ls22d_c00000{letter-spacing:0.324000px;}
.lsdf_c00000{letter-spacing:0.331200px;}
.lsdb_c00000{letter-spacing:0.338400px;}
.ls56_c00000{letter-spacing:0.360000px;}
.lse7_c00000{letter-spacing:0.374400px;}
.lsde_c00000{letter-spacing:0.410400px;}
.ls1c5_c00000{letter-spacing:0.411768px;}
.lsd0_c00000{letter-spacing:0.432000px;}
.ls27b_c00000{letter-spacing:0.447984px;}
.ls11_c00000{letter-spacing:0.486504px;}
.ls9d_c00000{letter-spacing:0.487512px;}
.lse_c00000{letter-spacing:0.494892px;}
.lsc5_c00000{letter-spacing:0.504000px;}
.lse1_c00000{letter-spacing:0.520452px;}
.lsae_c00000{letter-spacing:0.540216px;}
.lsa8_c00000{letter-spacing:0.720000px;}
.ls20c_c00000{letter-spacing:0.810324px;}
.ls4e_c00000{letter-spacing:1.080000px;}
.ls13b_c00000{letter-spacing:1.440000px;}
.ls10f_c00000{letter-spacing:1.528416px;}
.ls1d0_c00000{letter-spacing:1.800000px;}
.ls7e_c00000{letter-spacing:2.160000px;}
.ls128_c00000{letter-spacing:2.253096px;}
.ls16a_c00000{letter-spacing:2.520000px;}
.ls54_c00000{letter-spacing:2.880000px;}
.ls204_c00000{letter-spacing:2.925072px;}
.ls13e_c00000{letter-spacing:3.240000px;}
.lsc0_c00000{letter-spacing:3.600000px;}
.ls1d8_c00000{letter-spacing:3.960000px;}
.ls10c_c00000{letter-spacing:4.051620px;}
.ls20e_c00000{letter-spacing:4.104000px;}
.ls10b_c00000{letter-spacing:4.320000px;}
.ls159_c00000{letter-spacing:4.498200px;}
.ls123_c00000{letter-spacing:4.680000px;}
.ls1bc_c00000{letter-spacing:5.040000px;}
.lsc3_c00000{letter-spacing:5.400000px;}
.ls21b_c00000{letter-spacing:5.487804px;}
.ls4b_c00000{letter-spacing:5.760000px;}
.lsf8_c00000{letter-spacing:6.120000px;}
.ls17b_c00000{letter-spacing:6.480000px;}
.ls23e_c00000{letter-spacing:6.750000px;}
.ls51_c00000{letter-spacing:6.840000px;}
.ls4f_c00000{letter-spacing:7.560000px;}
.ls82_c00000{letter-spacing:7.828380px;}
.lsab_c00000{letter-spacing:8.280000px;}
.ls57_c00000{letter-spacing:8.640000px;}
.lsd5_c00000{letter-spacing:9.000000px;}
.lsfd_c00000{letter-spacing:9.360000px;}
.ls12b_c00000{letter-spacing:9.809532px;}
.ls11e_c00000{letter-spacing:10.440000px;}
.ls58_c00000{letter-spacing:10.800000px;}
.ls24a_c00000{letter-spacing:10.944000px;}
.lscd_c00000{letter-spacing:11.160000px;}
.lsa7_c00000{letter-spacing:11.880000px;}
.lse6_c00000{letter-spacing:12.600000px;}
.ls127_c00000{letter-spacing:13.680000px;}
.ls49_c00000{letter-spacing:14.400000px;}
.ls205_c00000{letter-spacing:14.487012px;}
.ls214_c00000{letter-spacing:14.760000px;}
.ls13d_c00000{letter-spacing:15.120000px;}
.ls238_c00000{letter-spacing:16.292124px;}
.ls52_c00000{letter-spacing:16.560000px;}
.ls216_c00000{letter-spacing:16.964100px;}
.ls20f_c00000{letter-spacing:17.280000px;}
.ls12a_c00000{letter-spacing:17.372556px;}
.ls13f_c00000{letter-spacing:17.640000px;}
.lsc9_c00000{letter-spacing:18.000000px;}
.ls206_c00000{letter-spacing:18.207180px;}
.ls239_c00000{letter-spacing:18.360000px;}
.ls129_c00000{letter-spacing:19.889172px;}
.ls12c_c00000{letter-spacing:20.070000px;}
.ls16b_c00000{letter-spacing:20.160000px;}
.ls53_c00000{letter-spacing:20.880000px;}
.ls215_c00000{letter-spacing:20.923488px;}
.ls1ce_c00000{letter-spacing:21.240000px;}
.ls1b3_c00000{letter-spacing:21.960000px;}
.ls10e_c00000{letter-spacing:22.050036px;}
.ls249_c00000{letter-spacing:22.320000px;}
.ls126_c00000{letter-spacing:23.040000px;}
.ls45_c00000{letter-spacing:24.120000px;}
.ls70_c00000{letter-spacing:24.264000px;}
.lsbd_c00000{letter-spacing:24.840000px;}
.ls13c_c00000{letter-spacing:25.560000px;}
.lsca_c00000{letter-spacing:26.280000px;}
.ls10d_c00000{letter-spacing:26.371764px;}
.ls23d_c00000{letter-spacing:27.360000px;}
.ls120_c00000{letter-spacing:27.864000px;}
.ls217_c00000{letter-spacing:28.124172px;}
.ls6f_c00000{letter-spacing:28.584000px;}
.ls248_c00000{letter-spacing:28.800000px;}
.ls170_c00000{letter-spacing:29.070000px;}
.ls122_c00000{letter-spacing:29.880000px;}
.ls11f_c00000{letter-spacing:32.184000px;}
.ls1dc_c00000{letter-spacing:32.760000px;}
.ls11d_c00000{letter-spacing:34.200000px;}
.ls24b_c00000{letter-spacing:35.649756px;}
.ls207_c00000{letter-spacing:38.928492px;}
.ls247_c00000{letter-spacing:40.104000px;}
.ls41_c00000{letter-spacing:44.064000px;}
.lsd4_c00000{letter-spacing:46.800000px;}
.ls246_c00000{letter-spacing:46.944000px;}
.ls115_c00000{letter-spacing:51.264000px;}
.ls40_c00000{letter-spacing:54.864000px;}
.ls102_c00000{letter-spacing:63.564876px;}
.ls21e_c00000{letter-spacing:66.600000px;}
.ls9f_c00000{letter-spacing:67.320000px;}
.ls111_c00000{letter-spacing:68.488848px;}
.ls21c_c00000{letter-spacing:70.290000px;}
.ls43_c00000{letter-spacing:72.731592px;}
.lsda_c00000{letter-spacing:72.990000px;}
.ls9b_c00000{letter-spacing:73.350000px;}
.ls1e2_c00000{letter-spacing:75.960000px;}
.ls98_c00000{letter-spacing:76.320000px;}
.ls234_c00000{letter-spacing:77.128812px;}
.ls1cd_c00000{letter-spacing:78.930000px;}
.ls185_c00000{letter-spacing:79.290000px;}
.ls86_c00000{letter-spacing:79.290252px;}
.ls11b_c00000{letter-spacing:82.350000px;}
.ls203_c00000{letter-spacing:84.384000px;}
.ls3f_c00000{letter-spacing:86.400000px;}
.ls21a_c00000{letter-spacing:88.920000px;}
.ls20b_c00000{letter-spacing:95.084604px;}
.ls1af_c00000{letter-spacing:105.750000px;}
.ls96_c00000{letter-spacing:109.080000px;}
.ls219_c00000{letter-spacing:109.440000px;}
.ls1c4_c00000{letter-spacing:110.429400px;}
.ls3d_c00000{letter-spacing:122.400000px;}
.ls25c_c00000{letter-spacing:134.910000px;}
.ls25b_c00000{letter-spacing:135.270000px;}
.ls181_c00000{letter-spacing:137.070000px;}
.ls11a_c00000{letter-spacing:149.670000px;}
.ls262_c00000{letter-spacing:149.670684px;}
.ls1cc_c00000{letter-spacing:152.280000px;}
.ls9e_c00000{letter-spacing:158.310000px;}
.ls1ac_c00000{letter-spacing:158.312016px;}
.ls25a_c00000{letter-spacing:159.030000px;}
.ls259_c00000{letter-spacing:159.390000px;}
.ls1ae_c00000{letter-spacing:162.267804px;}
.ls1b1_c00000{letter-spacing:162.267840px;}
.ls11c_c00000{letter-spacing:163.710000px;}
.ls25f_c00000{letter-spacing:170.912448px;}
.ls25e_c00000{letter-spacing:171.271548px;}
.ls19d_c00000{letter-spacing:180.632088px;}
.ls1d3_c00000{letter-spacing:188.732376px;}
.ls3c_c00000{letter-spacing:194.400000px;}
.ls9c_c00000{letter-spacing:195.927120px;}
.ls63_c00000{letter-spacing:197.367948px;}
.lsc8_c00000{letter-spacing:201.870000px;}
.ls1d2_c00000{letter-spacing:213.571080px;}
.ls233_c00000{letter-spacing:225.454572px;}
.ls174_c00000{letter-spacing:232.830000px;}
.ls1d4_c00000{letter-spacing:235.170144px;}
.lsa4_c00000{letter-spacing:237.240000px;}
.ls99_c00000{letter-spacing:242.910000px;}
.ls80_c00000{letter-spacing:243.270000px;}
.lsb4_c00000{letter-spacing:246.240000px;}
.ls84_c00000{letter-spacing:249.210000px;}
.ls213_c00000{letter-spacing:252.270000px;}
.ls26f_c00000{letter-spacing:264.778308px;}
.ls178_c00000{letter-spacing:276.570000px;}
.ls1c6_c00000{letter-spacing:289.890000px;}
.ls1d1_c00000{letter-spacing:292.772124px;}
.ls198_c00000{letter-spacing:319.950000px;}
.ls2_c00000{letter-spacing:323.327738px;}
.ls186_c00000{letter-spacing:333.360000px;}
.ls1a9_c00000{letter-spacing:337.229100px;}
.ls23c_c00000{letter-spacing:347.310000px;}
.ls237_c00000{letter-spacing:360.990000px;}
.ls260_c00000{letter-spacing:361.348164px;}
.ls252_c00000{letter-spacing:387.989604px;}
.ls263_c00000{letter-spacing:417.147984px;}
.ls1ad_c00000{letter-spacing:450.632196px;}
.ls235_c00000{letter-spacing:483.929388px;}
.ls271_c00000{letter-spacing:497.880000px;}
.ls251_c00000{letter-spacing:516.150000px;}
.ls264_c00000{letter-spacing:548.190288px;}
.ls236_c00000{letter-spacing:564.568020px;}
.ls255_c00000{letter-spacing:571.951764px;}
.ls24f_c00000{letter-spacing:573.388164px;}
.ls24e_c00000{letter-spacing:597.148596px;}
.ls261_c00000{letter-spacing:605.430828px;}
.ls253_c00000{letter-spacing:610.468812px;}
.ls1aa_c00000{letter-spacing:749.791224px;}
.ls116_c00000{letter-spacing:765.000000px;}
.ls1a0_c00000{letter-spacing:767.789316px;}
.ls19f_c00000{letter-spacing:779.668344px;}
.ls1b0_c00000{letter-spacing:791.552160px;}
.ls20a_c00000{letter-spacing:804.510000px;}
.ls250_c00000{letter-spacing:817.470828px;}
.ls202_c00000{letter-spacing:836.730000px;}
.ls1b8_c00000{letter-spacing:857.251080px;}
.ls1b9_c00000{letter-spacing:866.970000px;}
.ls229_c00000{letter-spacing:875.070000px;}
.ls20d_c00000{letter-spacing:878.400000px;}
.ls24d_c00000{letter-spacing:889.111260px;}
.ls1ab_c00000{letter-spacing:933.027984px;}
.ls1a7_c00000{letter-spacing:933.030000px;}
.ls279_c00000{letter-spacing:948.689028px;}
.ls278_c00000{letter-spacing:1049.129676px;}
.ls27a_c00000{letter-spacing:1111.768380px;}
.ls254_c00000{letter-spacing:1126.708596px;}
.ls275_c00000{letter-spacing:1164.689784px;}
.ls277_c00000{letter-spacing:1214.369892px;}
.ls24c_c00000{letter-spacing:1227.870000px;}
.ls1b6_c00000{letter-spacing:1250.370000px;}
.ls2b_c00000{letter-spacing:1254.509280px;}
.ls1_c00000{letter-spacing:1258.476396px;}
.ls44_c00000{letter-spacing:1263.510000px;}
.ls276_c00000{letter-spacing:1295.007012px;}
.ls196_c00000{letter-spacing:1295.910000px;}
.ls17c_c00000{letter-spacing:1325.970648px;}
.ls17d_c00000{letter-spacing:1335.692052px;}
.ls1c3_c00000{letter-spacing:1762.290000px;}
.ls1c8_c00000{letter-spacing:1786.770000px;}
.ls1cb_c00000{letter-spacing:1816.650000px;}
.ls171_c00000{letter-spacing:2193.120000px;}
.sc__c00000{text-shadow:none;}
.sc1_c00000{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc1_c00000{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00000{word-spacing:-144.000000px;}
.wsb_c00000{word-spacing:-132.120000px;}
.wsc2_c00000{word-spacing:-72.000000px;}
.wsc9a_c00000{word-spacing:-65.880000px;}
.wsd4_c00000{word-spacing:-47.880000px;}
.ws18a9_c00000{word-spacing:-18.309600px;}
.ws1866_c00000{word-spacing:-18.244800px;}
.wsa77_c00000{word-spacing:-18.158400px;}
.ws12b7_c00000{word-spacing:-18.144000px;}
.ws17bb_c00000{word-spacing:-18.129600px;}
.wsad0_c00000{word-spacing:-18.122400px;}
.ws9a3_c00000{word-spacing:-18.115200px;}
.ws738_c00000{word-spacing:-18.108000px;}
.ws644_c00000{word-spacing:-18.100800px;}
.ws688_c00000{word-spacing:-18.093600px;}
.ws30b_c00000{word-spacing:-18.086400px;}
.ws3bd_c00000{word-spacing:-18.079200px;}
.ws5c6_c00000{word-spacing:-18.072000px;}
.ws67d_c00000{word-spacing:-18.064800px;}
.ws156_c00000{word-spacing:-18.057600px;}
.ws490_c00000{word-spacing:-18.050400px;}
.ws1fd_c00000{word-spacing:-18.043200px;}
.ws491_c00000{word-spacing:-18.036000px;}
.ws2b5_c00000{word-spacing:-18.028800px;}
.ws55d_c00000{word-spacing:-18.021600px;}
.ws55b_c00000{word-spacing:-18.014400px;}
.ws1fe_c00000{word-spacing:-18.007200px;}
.wsa7_c00000{word-spacing:-18.000000px;}
.ws410_c00000{word-spacing:-17.992800px;}
.ws5c5_c00000{word-spacing:-17.985600px;}
.ws621_c00000{word-spacing:-17.978400px;}
.ws82b_c00000{word-spacing:-17.971200px;}
.wsdb_c00000{word-spacing:-17.964000px;}
.ws5a1_c00000{word-spacing:-17.956800px;}
.ws67c_c00000{word-spacing:-17.949600px;}
.ws937_c00000{word-spacing:-17.942400px;}
.ws55a_c00000{word-spacing:-17.935200px;}
.ws795_c00000{word-spacing:-17.928000px;}
.ws687_c00000{word-spacing:-17.920800px;}
.ws1bf_c00000{word-spacing:-17.913600px;}
.ws689_c00000{word-spacing:-17.906400px;}
.ws17ea_c00000{word-spacing:-17.899200px;}
.wse56_c00000{word-spacing:-17.892000px;}
.ws8db_c00000{word-spacing:-17.884800px;}
.wsb2a_c00000{word-spacing:-17.848800px;}
.wsce3_c00000{word-spacing:-17.820000px;}
.wsaef_c00000{word-spacing:-17.805600px;}
.ws2b4_c00000{word-spacing:-17.798400px;}
.wsacf_c00000{word-spacing:-17.791200px;}
.ws1a44_c00000{word-spacing:-17.784000px;}
.ws1802_c00000{word-spacing:-17.438400px;}
.ws55c_c00000{word-spacing:-17.280000px;}
.wsd97_c00000{word-spacing:-16.647876px;}
.ws16a5_c00000{word-spacing:-16.628112px;}
.ws1686_c00000{word-spacing:-16.621524px;}
.ws1678_c00000{word-spacing:-16.608348px;}
.ws161c_c00000{word-spacing:-16.595172px;}
.ws1757_c00000{word-spacing:-16.581996px;}
.ws5ca_c00000{word-spacing:-16.568820px;}
.ws5cb_c00000{word-spacing:-16.562232px;}
.ws57f_c00000{word-spacing:-16.555644px;}
.ws6b6_c00000{word-spacing:-16.549056px;}
.ws16a6_c00000{word-spacing:-16.542468px;}
.ws1679_c00000{word-spacing:-16.535880px;}
.ws5cc_c00000{word-spacing:-16.522704px;}
.wsd9d_c00000{word-spacing:-16.516116px;}
.ws5c9_c00000{word-spacing:-16.509528px;}
.ws5ce_c00000{word-spacing:-16.502940px;}
.ws5c7_c00000{word-spacing:-16.496352px;}
.wsf95_c00000{word-spacing:-16.489764px;}
.ws168a_c00000{word-spacing:-16.483176px;}
.ws6b7_c00000{word-spacing:-16.476588px;}
.ws1502_c00000{word-spacing:-16.470000px;}
.ws5cd_c00000{word-spacing:-16.463412px;}
.ws7bb_c00000{word-spacing:-16.456824px;}
.ws1ac2_c00000{word-spacing:-16.450236px;}
.ws16a7_c00000{word-spacing:-16.437060px;}
.ws1682_c00000{word-spacing:-16.423884px;}
.ws5c8_c00000{word-spacing:-16.410708px;}
.ws170a_c00000{word-spacing:-16.390944px;}
.ws1645_c00000{word-spacing:-15.356628px;}
.ws526_c00000{word-spacing:-15.210360px;}
.ws12fc_c00000{word-spacing:-15.204348px;}
.ws1687_c00000{word-spacing:-15.174288px;}
.ws152a_c00000{word-spacing:-15.144228px;}
.ws1688_c00000{word-spacing:-15.132204px;}
.ws107a_c00000{word-spacing:-15.126192px;}
.ws102b_c00000{word-spacing:-15.120180px;}
.ws1021_c00000{word-spacing:-15.114168px;}
.ws1683_c00000{word-spacing:-15.102144px;}
.ws152b_c00000{word-spacing:-15.090120px;}
.ws152c_c00000{word-spacing:-15.078096px;}
.ws101f_c00000{word-spacing:-15.060060px;}
.ws170f_c00000{word-spacing:-15.042024px;}
.ws525_c00000{word-spacing:-15.036012px;}
.ws237_c00000{word-spacing:-15.030000px;}
.ws1237_c00000{word-spacing:-15.011964px;}
.ws1022_c00000{word-spacing:-15.005952px;}
.ws1053_c00000{word-spacing:-14.999940px;}
.ws1023_c00000{word-spacing:-14.987916px;}
.ws1710_c00000{word-spacing:-14.981904px;}
.ws152d_c00000{word-spacing:-14.975892px;}
.ws1029_c00000{word-spacing:-14.963868px;}
.ws1020_c00000{word-spacing:-14.945832px;}
.ws18b8_c00000{word-spacing:-14.921784px;}
.ws1a60_c00000{word-spacing:-14.915772px;}
.ws107b_c00000{word-spacing:-14.891724px;}
.ws1689_c00000{word-spacing:-14.879700px;}
.wsfaf_c00000{word-spacing:-14.873688px;}
.ws1685_c00000{word-spacing:-14.855652px;}
.ws101e_c00000{word-spacing:-14.843628px;}
.ws168b_c00000{word-spacing:-14.825592px;}
.ws1448_c00000{word-spacing:-14.813568px;}
.ws1684_c00000{word-spacing:-14.675292px;}
.ws102a_c00000{word-spacing:-13.613400px;}
.ws1a72_c00000{word-spacing:-13.591800px;}
.ws1a70_c00000{word-spacing:-13.559400px;}
.ws1a73_c00000{word-spacing:-13.548600px;}
.ws1a71_c00000{word-spacing:-13.543200px;}
.ws13e4_c00000{word-spacing:-13.505400px;}
.ws13e3_c00000{word-spacing:-13.500000px;}
.ws13e5_c00000{word-spacing:-13.483800px;}
.ws1a51_c00000{word-spacing:-12.151944px;}
.ws179b_c00000{word-spacing:-12.032244px;}
.wsda_c00000{word-spacing:-11.998728px;}
.ws19d0_c00000{word-spacing:-11.965212px;}
.ws11df_c00000{word-spacing:-0.518400px;}
.wscf9_c00000{word-spacing:-0.468000px;}
.wsb59_c00000{word-spacing:-0.460800px;}
.ws97e_c00000{word-spacing:-0.453600px;}
.ws145b_c00000{word-spacing:-0.450900px;}
.ws945_c00000{word-spacing:-0.446400px;}
.ws1530_c00000{word-spacing:-0.444888px;}
.wsc70_c00000{word-spacing:-0.439200px;}
.ws1aa0_c00000{word-spacing:-0.438876px;}
.wseae_c00000{word-spacing:-0.432000px;}
.ws1273_c00000{word-spacing:-0.426852px;}
.wsaea_c00000{word-spacing:-0.424800px;}
.ws18c1_c00000{word-spacing:-0.420840px;}
.ws651_c00000{word-spacing:-0.417600px;}
.ws1612_c00000{word-spacing:-0.414828px;}
.wsf0d_c00000{word-spacing:-0.410400px;}
.ws152f_c00000{word-spacing:-0.408816px;}
.ws1aaa_c00000{word-spacing:-0.406980px;}
.ws1831_c00000{word-spacing:-0.403200px;}
.wsfc8_c00000{word-spacing:-0.402804px;}
.ws1405_c00000{word-spacing:-0.396792px;}
.wsd23_c00000{word-spacing:-0.396000px;}
.ws59d_c00000{word-spacing:-0.395280px;}
.ws557_c00000{word-spacing:-0.390780px;}
.wsa6e_c00000{word-spacing:-0.388800px;}
.ws1153_c00000{word-spacing:-0.384768px;}
.ws1aab_c00000{word-spacing:-0.383040px;}
.wscb9_c00000{word-spacing:-0.382104px;}
.ws629_c00000{word-spacing:-0.381600px;}
.wse8f_c00000{word-spacing:-0.378756px;}
.ws11f7_c00000{word-spacing:-0.375516px;}
.ws909_c00000{word-spacing:-0.374400px;}
.wse8a_c00000{word-spacing:-0.372744px;}
.wscb_c00000{word-spacing:-0.367200px;}
.ws1042_c00000{word-spacing:-0.366732px;}
.wsc7e_c00000{word-spacing:-0.362340px;}
.ws246_c00000{word-spacing:-0.360720px;}
.ws297_c00000{word-spacing:-0.360000px;}
.ws54a_c00000{word-spacing:-0.354708px;}
.wsb8_c00000{word-spacing:-0.352800px;}
.ws19b6_c00000{word-spacing:-0.349164px;}
.wsd78_c00000{word-spacing:-0.348696px;}
.ws134d_c00000{word-spacing:-0.345600px;}
.wsd86_c00000{word-spacing:-0.342684px;}
.ws1666_c00000{word-spacing:-0.342576px;}
.wsd1_c00000{word-spacing:-0.338400px;}
.ws552_c00000{word-spacing:-0.336672px;}
.ws11fa_c00000{word-spacing:-0.335988px;}
.wsa11_c00000{word-spacing:-0.331200px;}
.ws547_c00000{word-spacing:-0.330660px;}
.ws160e_c00000{word-spacing:-0.329400px;}
.wsd7d_c00000{word-spacing:-0.324648px;}
.wsb55_c00000{word-spacing:-0.324000px;}
.ws19a1_c00000{word-spacing:-0.322812px;}
.wsd7c_c00000{word-spacing:-0.318636px;}
.wsb6f_c00000{word-spacing:-0.316800px;}
.ws1051_c00000{word-spacing:-0.312624px;}
.ws8b6_c00000{word-spacing:-0.309600px;}
.wsd79_c00000{word-spacing:-0.306612px;}
.ws1391_c00000{word-spacing:-0.306432px;}
.wsee0_c00000{word-spacing:-0.302400px;}
.ws24a_c00000{word-spacing:-0.300600px;}
.ws14bf_c00000{word-spacing:-0.296460px;}
.ws12b8_c00000{word-spacing:-0.295200px;}
.wsd83_c00000{word-spacing:-0.294588px;}
.ws10cd_c00000{word-spacing:-0.291600px;}
.wsd84_c00000{word-spacing:-0.288576px;}
.wsd9c_c00000{word-spacing:-0.288000px;}
.ws109e_c00000{word-spacing:-0.286200px;}
.ws1026_c00000{word-spacing:-0.282564px;}
.ws11d5_c00000{word-spacing:-0.280800px;}
.ws1a_c00000{word-spacing:-0.276804px;}
.ws1077_c00000{word-spacing:-0.276552px;}
.ws15f_c00000{word-spacing:-0.273600px;}
.ws143d_c00000{word-spacing:-0.272916px;}
.ws248_c00000{word-spacing:-0.270540px;}
.ws1681_c00000{word-spacing:-0.270108px;}
.ws10ad_c00000{word-spacing:-0.270000px;}
.ws1a79_c00000{word-spacing:-0.268128px;}
.wsd32_c00000{word-spacing:-0.266400px;}
.wsd85_c00000{word-spacing:-0.264528px;}
.ws9ef_c00000{word-spacing:-0.263520px;}
.ws137_c00000{word-spacing:-0.259200px;}
.wsd81_c00000{word-spacing:-0.258516px;}
.ws1441_c00000{word-spacing:-0.253764px;}
.ws24b_c00000{word-spacing:-0.252504px;}
.ws83a_c00000{word-spacing:-0.252000px;}
.ws143c_c00000{word-spacing:-0.248976px;}
.wsd76_c00000{word-spacing:-0.246492px;}
.wscc_c00000{word-spacing:-0.244800px;}
.ws10ca_c00000{word-spacing:-0.240480px;}
.ws143f_c00000{word-spacing:-0.239400px;}
.ws5_c00000{word-spacing:-0.237816px;}
.ws47a_c00000{word-spacing:-0.237600px;}
.ws139b_c00000{word-spacing:-0.234612px;}
.ws108e_c00000{word-spacing:-0.234468px;}
.ws10c1_c00000{word-spacing:-0.232200px;}
.wsd9_c00000{word-spacing:-0.230400px;}
.ws1442_c00000{word-spacing:-0.229824px;}
.wsd80_c00000{word-spacing:-0.228456px;}
.ws12fe_c00000{word-spacing:-0.225036px;}
.ws3c6_c00000{word-spacing:-0.223200px;}
.ws1112_c00000{word-spacing:-0.222444px;}
.ws10a8_c00000{word-spacing:-0.221400px;}
.ws12fd_c00000{word-spacing:-0.220248px;}
.ws1082_c00000{word-spacing:-0.216432px;}
.ws974_c00000{word-spacing:-0.216000px;}
.ws137a_c00000{word-spacing:-0.215460px;}
.ws1384_c00000{word-spacing:-0.210672px;}
.ws107d_c00000{word-spacing:-0.210600px;}
.ws1091_c00000{word-spacing:-0.210420px;}
.wsbd_c00000{word-spacing:-0.208800px;}
.ws138b_c00000{word-spacing:-0.205884px;}
.ws1098_c00000{word-spacing:-0.205200px;}
.ws1095_c00000{word-spacing:-0.204408px;}
.ws13b_c00000{word-spacing:-0.201600px;}
.ws1365_c00000{word-spacing:-0.201096px;}
.ws109d_c00000{word-spacing:-0.199800px;}
.ws1a85_c00000{word-spacing:-0.198396px;}
.ws1377_c00000{word-spacing:-0.196308px;}
.wsc6_c00000{word-spacing:-0.194400px;}
.ws10ab_c00000{word-spacing:-0.192384px;}
.ws137c_c00000{word-spacing:-0.191520px;}
.ws1074_c00000{word-spacing:-0.189000px;}
.ws1_c00000{word-spacing:-0.187200px;}
.ws1372_c00000{word-spacing:-0.186732px;}
.ws2b3_c00000{word-spacing:-0.186372px;}
.ws109c_c00000{word-spacing:-0.183600px;}
.ws1378_c00000{word-spacing:-0.181944px;}
.ws1123_c00000{word-spacing:-0.180360px;}
.wsd5_c00000{word-spacing:-0.180000px;}
.ws104c_c00000{word-spacing:-0.178200px;}
.ws1364_c00000{word-spacing:-0.177156px;}
.ws1f_c00000{word-spacing:-0.176148px;}
.wsd7f_c00000{word-spacing:-0.174348px;}
.wse_c00000{word-spacing:-0.172800px;}
.ws138e_c00000{word-spacing:-0.172368px;}
.ws103b_c00000{word-spacing:-0.168336px;}
.ws1438_c00000{word-spacing:-0.167580px;}
.ws85_c00000{word-spacing:-0.165600px;}
.ws1368_c00000{word-spacing:-0.162792px;}
.ws104f_c00000{word-spacing:-0.162324px;}
.ws12_c00000{word-spacing:-0.159372px;}
.wsb5_c00000{word-spacing:-0.158400px;}
.ws527_c00000{word-spacing:-0.158112px;}
.ws239_c00000{word-spacing:-0.158004px;}
.ws1064_c00000{word-spacing:-0.156312px;}
.ws137b_c00000{word-spacing:-0.153216px;}
.ws5f_c00000{word-spacing:-0.151200px;}
.ws14_c00000{word-spacing:-0.150984px;}
.ws1081_c00000{word-spacing:-0.150300px;}
.ws1374_c00000{word-spacing:-0.148428px;}
.ws106e_c00000{word-spacing:-0.145800px;}
.ws1094_c00000{word-spacing:-0.144288px;}
.wsaf_c00000{word-spacing:-0.144000px;}
.ws137d_c00000{word-spacing:-0.143640px;}
.ws24_c00000{word-spacing:-0.142596px;}
.ws1366_c00000{word-spacing:-0.138852px;}
.ws1083_c00000{word-spacing:-0.138276px;}
.ws40_c00000{word-spacing:-0.136800px;}
.ws1369_c00000{word-spacing:-0.134064px;}
.ws1041_c00000{word-spacing:-0.132264px;}
.ws3_c00000{word-spacing:-0.129600px;}
.ws529_c00000{word-spacing:-0.129276px;}
.ws1078_c00000{word-spacing:-0.126252px;}
.ws17_c00000{word-spacing:-0.125820px;}
.wsbf8_c00000{word-spacing:-0.125172px;}
.ws1367_c00000{word-spacing:-0.124488px;}
.ws75_c00000{word-spacing:-0.122400px;}
.ws1305_c00000{word-spacing:-0.120240px;}
.ws136a_c00000{word-spacing:-0.119700px;}
.wsc_c00000{word-spacing:-0.118908px;}
.wsf_c00000{word-spacing:-0.118800px;}
.ws20_c00000{word-spacing:-0.117432px;}
.wsca_c00000{word-spacing:-0.115200px;}
.ws1371_c00000{word-spacing:-0.114912px;}
.ws110a_c00000{word-spacing:-0.114228px;}
.ws138c_c00000{word-spacing:-0.110124px;}
.ws1b_c00000{word-spacing:-0.109044px;}
.ws193a_c00000{word-spacing:-0.108216px;}
.ws11_c00000{word-spacing:-0.108000px;}
.wsa_c00000{word-spacing:-0.105696px;}
.ws19a0_c00000{word-spacing:-0.105408px;}
.ws136b_c00000{word-spacing:-0.105336px;}
.ws1096_c00000{word-spacing:-0.102204px;}
.wsae_c00000{word-spacing:-0.100800px;}
.ws19_c00000{word-spacing:-0.100656px;}
.ws1390_c00000{word-spacing:-0.100548px;}
.ws152e_c00000{word-spacing:-0.096192px;}
.ws52a_c00000{word-spacing:-0.095760px;}
.wsc9_c00000{word-spacing:-0.093600px;}
.ws8_c00000{word-spacing:-0.092484px;}
.ws10_c00000{word-spacing:-0.092268px;}
.ws1aac_c00000{word-spacing:-0.090972px;}
.ws1097_c00000{word-spacing:-0.090180px;}
.ws33_c00000{word-spacing:-0.086400px;}
.ws23a_c00000{word-spacing:-0.086184px;}
.ws1406_c00000{word-spacing:-0.084168px;}
.wsd_c00000{word-spacing:-0.083880px;}
.ws1a6d_c00000{word-spacing:-0.081396px;}
.ws4_c00000{word-spacing:-0.079272px;}
.ws3f_c00000{word-spacing:-0.079200px;}
.ws1066_c00000{word-spacing:-0.078156px;}
.ws143a_c00000{word-spacing:-0.076608px;}
.ws110b_c00000{word-spacing:-0.072144px;}
.wsb0_c00000{word-spacing:-0.072000px;}
.ws1a6e_c00000{word-spacing:-0.071820px;}
.ws1c_c00000{word-spacing:-0.067104px;}
.ws1389_c00000{word-spacing:-0.067032px;}
.ws7_c00000{word-spacing:-0.066060px;}
.ws1593_c00000{word-spacing:-0.065880px;}
.wsb6_c00000{word-spacing:-0.064800px;}
.ws9d2_c00000{word-spacing:-0.063000px;}
.ws238_c00000{word-spacing:-0.060120px;}
.wsdf1_c00000{word-spacing:-0.059292px;}
.ws15_c00000{word-spacing:-0.058716px;}
.wsc8_c00000{word-spacing:-0.057600px;}
.ws1aad_c00000{word-spacing:-0.057456px;}
.ws1090_c00000{word-spacing:-0.054108px;}
.ws84_c00000{word-spacing:-0.050400px;}
.ws18_c00000{word-spacing:-0.050328px;}
.ws104d_c00000{word-spacing:-0.048096px;}
.wsb3_c00000{word-spacing:-0.043200px;}
.ws145d_c00000{word-spacing:-0.042084px;}
.ws6_c00000{word-spacing:-0.039636px;}
.ws146f_c00000{word-spacing:-0.038304px;}
.ws1240_c00000{word-spacing:-0.036072px;}
.ws5e_c00000{word-spacing:-0.036000px;}
.ws1a84_c00000{word-spacing:-0.033516px;}
.wsd98_c00000{word-spacing:-0.032940px;}
.ws1065_c00000{word-spacing:-0.030060px;}
.ws6b_c00000{word-spacing:-0.028800px;}
.wse91_c00000{word-spacing:-0.028728px;}
.ws550_c00000{word-spacing:-0.024048px;}
.ws1aae_c00000{word-spacing:-0.023940px;}
.ws34_c00000{word-spacing:-0.021600px;}
.ws4a1_c00000{word-spacing:-0.019764px;}
.wsee1_c00000{word-spacing:-0.018036px;}
.wsad_c00000{word-spacing:-0.014400px;}
.wsa33_c00000{word-spacing:-0.013176px;}
.wsd7b_c00000{word-spacing:-0.012024px;}
.wsab_c00000{word-spacing:-0.007200px;}
.ws605_c00000{word-spacing:-0.006588px;}
.ws242_c00000{word-spacing:-0.006012px;}
.ws0_c00000{word-spacing:0.000000px;}
.ws54f_c00000{word-spacing:0.006012px;}
.ws3eb_c00000{word-spacing:0.006588px;}
.wsac_c00000{word-spacing:0.007200px;}
.ws54e_c00000{word-spacing:0.012024px;}
.ws590_c00000{word-spacing:0.013176px;}
.ws9_c00000{word-spacing:0.013212px;}
.wsbb_c00000{word-spacing:0.014400px;}
.ws555_c00000{word-spacing:0.018036px;}
.ws418_c00000{word-spacing:0.019764px;}
.wsc1_c00000{word-spacing:0.021600px;}
.wsd7e_c00000{word-spacing:0.024048px;}
.ws13_c00000{word-spacing:0.025164px;}
.ws3ef_c00000{word-spacing:0.026352px;}
.ws5e9_c00000{word-spacing:0.027648px;}
.wsa8_c00000{word-spacing:0.028800px;}
.ws23f_c00000{word-spacing:0.030060px;}
.ws3ee_c00000{word-spacing:0.032940px;}
.ws21_c00000{word-spacing:0.033552px;}
.wsc7_c00000{word-spacing:0.036000px;}
.wsd8c_c00000{word-spacing:0.036072px;}
.ws3f6_c00000{word-spacing:0.039528px;}
.ws1e_c00000{word-spacing:0.041940px;}
.wsd88_c00000{word-spacing:0.042084px;}
.wsc4_c00000{word-spacing:0.043200px;}
.ws509_c00000{word-spacing:0.046116px;}
.ws244_c00000{word-spacing:0.048096px;}
.ws16_c00000{word-spacing:0.050328px;}
.wsbe_c00000{word-spacing:0.050400px;}
.ws37f_c00000{word-spacing:0.052704px;}
.ws10fc_c00000{word-spacing:0.054108px;}
.ws1620_c00000{word-spacing:0.057600px;}
.ws46b_c00000{word-spacing:0.059292px;}
.ws108c_c00000{word-spacing:0.059400px;}
.ws1030_c00000{word-spacing:0.060120px;}
.wscd_c00000{word-spacing:0.064800px;}
.ws487_c00000{word-spacing:0.065880px;}
.ws1050_c00000{word-spacing:0.066132px;}
.ws105d_c00000{word-spacing:0.070200px;}
.ws364_c00000{word-spacing:0.072000px;}
.ws549_c00000{word-spacing:0.072144px;}
.ws3ed_c00000{word-spacing:0.072468px;}
.ws1060_c00000{word-spacing:0.075600px;}
.wsd82_c00000{word-spacing:0.078156px;}
.ws438_c00000{word-spacing:0.079056px;}
.wsc81_c00000{word-spacing:0.079200px;}
.ws1048_c00000{word-spacing:0.081000px;}
.ws104e_c00000{word-spacing:0.084168px;}
.ws1610_c00000{word-spacing:0.085644px;}
.ws31f_c00000{word-spacing:0.086400px;}
.ws241_c00000{word-spacing:0.090180px;}
.ws1056_c00000{word-spacing:0.091800px;}
.ws754_c00000{word-spacing:0.092232px;}
.ws27f_c00000{word-spacing:0.093600px;}
.wsd77_c00000{word-spacing:0.096192px;}
.ws108b_c00000{word-spacing:0.097200px;}
.ws7f3_c00000{word-spacing:0.098820px;}
.ws5f8_c00000{word-spacing:0.100800px;}
.ws245_c00000{word-spacing:0.102204px;}
.ws1049_c00000{word-spacing:0.102600px;}
.wse80_c00000{word-spacing:0.105408px;}
.ws57b_c00000{word-spacing:0.108000px;}
.wsd87_c00000{word-spacing:0.108216px;}
.ws1235_c00000{word-spacing:0.111996px;}
.ws1238_c00000{word-spacing:0.113400px;}
.ws558_c00000{word-spacing:0.114228px;}
.ws11db_c00000{word-spacing:0.115200px;}
.ws1594_c00000{word-spacing:0.118584px;}
.ws108d_c00000{word-spacing:0.118800px;}
.ws247_c00000{word-spacing:0.120240px;}
.wse87_c00000{word-spacing:0.122400px;}
.ws1062_c00000{word-spacing:0.124200px;}
.ws9af_c00000{word-spacing:0.125172px;}
.wsd7a_c00000{word-spacing:0.126252px;}
.wse95_c00000{word-spacing:0.129600px;}
.ws19ad_c00000{word-spacing:0.131760px;}
.wsee2_c00000{word-spacing:0.132264px;}
.ws23_c00000{word-spacing:0.134208px;}
.ws103f_c00000{word-spacing:0.135000px;}
.wsb03_c00000{word-spacing:0.136800px;}
.wsd89_c00000{word-spacing:0.138276px;}
.ws160b_c00000{word-spacing:0.138348px;}
.ws1038_c00000{word-spacing:0.140400px;}
.ws412_c00000{word-spacing:0.144000px;}
.ws102d_c00000{word-spacing:0.144288px;}
.ws19b1_c00000{word-spacing:0.144936px;}
.ws1052_c00000{word-spacing:0.145800px;}
.ws1079_c00000{word-spacing:0.150300px;}
.ws1d_c00000{word-spacing:0.150984px;}
.ws411_c00000{word-spacing:0.151200px;}
.ws1071_c00000{word-spacing:0.156312px;}
.ws103d_c00000{word-spacing:0.156600px;}
.ws1fa_c00000{word-spacing:0.158400px;}
.ws1040_c00000{word-spacing:0.162000px;}
.ws1130_c00000{word-spacing:0.162324px;}
.ws9b_c00000{word-spacing:0.165600px;}
.ws1047_c00000{word-spacing:0.167400px;}
.ws1551_c00000{word-spacing:0.168336px;}
.wsa48_c00000{word-spacing:0.172800px;}
.ws1151_c00000{word-spacing:0.174348px;}
.ws104b_c00000{word-spacing:0.178200px;}
.wsd8e_c00000{word-spacing:0.180000px;}
.ws103a_c00000{word-spacing:0.180360px;}
.ws103c_c00000{word-spacing:0.183600px;}
.ws108f_c00000{word-spacing:0.186372px;}
.ws6f3_c00000{word-spacing:0.187200px;}
.ws107f_c00000{word-spacing:0.189000px;}
.ws249_c00000{word-spacing:0.192384px;}
.ws255_c00000{word-spacing:0.194400px;}
.ws551_c00000{word-spacing:0.198396px;}
.ws10a3_c00000{word-spacing:0.199800px;}
.wsc5e_c00000{word-spacing:0.201600px;}
.wsbff_c00000{word-spacing:0.204228px;}
.ws1044_c00000{word-spacing:0.204408px;}
.ws10a9_c00000{word-spacing:0.205200px;}
.ws1397_c00000{word-spacing:0.205884px;}
.ws72d_c00000{word-spacing:0.208800px;}
.ws1063_c00000{word-spacing:0.210420px;}
.ws1a78_c00000{word-spacing:0.210672px;}
.ws40f_c00000{word-spacing:0.216000px;}
.ws1093_c00000{word-spacing:0.216432px;}
.ws1092_c00000{word-spacing:0.222444px;}
.wsa1c_c00000{word-spacing:0.223200px;}
.ws115d_c00000{word-spacing:0.228456px;}
.ws143e_c00000{word-spacing:0.229824px;}
.ws8bc_c00000{word-spacing:0.230400px;}
.ws1057_c00000{word-spacing:0.232200px;}
.ws1039_c00000{word-spacing:0.234468px;}
.ws148_c00000{word-spacing:0.237600px;}
.ws1159_c00000{word-spacing:0.240480px;}
.ws1655_c00000{word-spacing:0.243756px;}
.ws1440_c00000{word-spacing:0.244188px;}
.ws97_c00000{word-spacing:0.244800px;}
.ws1045_c00000{word-spacing:0.246492px;}
.ws5b_c00000{word-spacing:0.252000px;}
.wsfbe_c00000{word-spacing:0.252504px;}
.ws104a_c00000{word-spacing:0.258516px;}
.ws159_c00000{word-spacing:0.259200px;}
.ws528_c00000{word-spacing:0.263340px;}
.ws201_c00000{word-spacing:0.266400px;}
.ws103e_c00000{word-spacing:0.270000px;}
.ws10f4_c00000{word-spacing:0.270540px;}
.ws96_c00000{word-spacing:0.273600px;}
.ws1103_c00000{word-spacing:0.276552px;}
.ws3a6_c00000{word-spacing:0.280800px;}
.ws1613_c00000{word-spacing:0.282564px;}
.wse1e_c00000{word-spacing:0.283284px;}
.ws107c_c00000{word-spacing:0.286200px;}
.ws254_c00000{word-spacing:0.288000px;}
.ws1906_c00000{word-spacing:0.288576px;}
.ws186c_c00000{word-spacing:0.289872px;}
.ws1a7a_c00000{word-spacing:0.291600px;}
.ws17af_c00000{word-spacing:0.292068px;}
.wsfc4_c00000{word-spacing:0.294588px;}
.ws1f9_c00000{word-spacing:0.295200px;}
.wsf2f_c00000{word-spacing:0.296460px;}
.wsc5c_c00000{word-spacing:0.302400px;}
.ws5c_c00000{word-spacing:0.309600px;}
.wscd4_c00000{word-spacing:0.316224px;}
.ws9c_c00000{word-spacing:0.316800px;}
.ws1340_c00000{word-spacing:0.318636px;}
.ws1656_c00000{word-spacing:0.322812px;}
.ws82_c00000{word-spacing:0.324000px;}
.ws1614_c00000{word-spacing:0.324648px;}
.wse2a_c00000{word-spacing:0.329400px;}
.ws1fb_c00000{word-spacing:0.331200px;}
.ws809_c00000{word-spacing:0.335988px;}
.ws149_c00000{word-spacing:0.338400px;}
.ws14a4_c00000{word-spacing:0.342576px;}
.ws240_c00000{word-spacing:0.342684px;}
.ws3ab_c00000{word-spacing:0.345600px;}
.ws425_c00000{word-spacing:0.349164px;}
.ws256_c00000{word-spacing:0.352800px;}
.ws45a_c00000{word-spacing:0.355752px;}
.ws105b_c00000{word-spacing:0.356400px;}
.ws7c9_c00000{word-spacing:0.360000px;}
.ws1922_c00000{word-spacing:0.360720px;}
.ws9c9_c00000{word-spacing:0.362340px;}
.ws8ef_c00000{word-spacing:0.367200px;}
.wse1d_c00000{word-spacing:0.368928px;}
.ws69f_c00000{word-spacing:0.374400px;}
.ws1519_c00000{word-spacing:0.375516px;}
.ws10aa_c00000{word-spacing:0.378000px;}
.ws12bb_c00000{word-spacing:0.378756px;}
.wsc5b_c00000{word-spacing:0.381600px;}
.wsa5a_c00000{word-spacing:0.382104px;}
.wsfba_c00000{word-spacing:0.384768px;}
.ws5c4_c00000{word-spacing:0.388692px;}
.ws81_c00000{word-spacing:0.388800px;}
.ws559_c00000{word-spacing:0.390780px;}
.wsf31_c00000{word-spacing:0.395280px;}
.ws140a_c00000{word-spacing:0.396000px;}
.ws426_c00000{word-spacing:0.401868px;}
.ws1111_c00000{word-spacing:0.402804px;}
.ws129e_c00000{word-spacing:0.403200px;}
.wsabb_c00000{word-spacing:0.408456px;}
.ws141f_c00000{word-spacing:0.414828px;}
.wsaaf_c00000{word-spacing:0.415044px;}
.ws29_c00000{word-spacing:0.417600px;}
.ws1242_c00000{word-spacing:0.420840px;}
.ws603_c00000{word-spacing:0.421632px;}
.ws8e6_c00000{word-spacing:0.428220px;}
.wsacd_c00000{word-spacing:0.432000px;}
.ws158e_c00000{word-spacing:0.434808px;}
.ws17d4_c00000{word-spacing:0.439200px;}
.ws45b_c00000{word-spacing:0.441396px;}
.ws1791_c00000{word-spacing:0.444888px;}
.wsb08_c00000{word-spacing:0.446400px;}
.ws457_c00000{word-spacing:0.447984px;}
.ws1363_c00000{word-spacing:0.450900px;}
.ws1923_c00000{word-spacing:0.456912px;}
.ws15ad_c00000{word-spacing:0.460800px;}
.ws19a4_c00000{word-spacing:0.461160px;}
.ws10e2_c00000{word-spacing:0.462924px;}
.ws19a5_c00000{word-spacing:0.467748px;}
.wsf9f_c00000{word-spacing:0.474336px;}
.ws1792_c00000{word-spacing:0.474948px;}
.wsc6e_c00000{word-spacing:0.475200px;}
.ws173b_c00000{word-spacing:0.480924px;}
.ws353_c00000{word-spacing:0.482400px;}
.ws164c_c00000{word-spacing:0.487512px;}
.ws7a8_c00000{word-spacing:0.489600px;}
.ws10cf_c00000{word-spacing:0.491400px;}
.ws8fb_c00000{word-spacing:0.496800px;}
.ws19b7_c00000{word-spacing:0.500688px;}
.ws7a7_c00000{word-spacing:0.504000px;}
.ws19a6_c00000{word-spacing:0.507276px;}
.ws118a_c00000{word-spacing:0.507600px;}
.ws12f8_c00000{word-spacing:0.511200px;}
.ws1ae0_c00000{word-spacing:0.517032px;}
.ws14d3_c00000{word-spacing:0.518400px;}
.wsf30_c00000{word-spacing:0.520452px;}
.ws1913_c00000{word-spacing:0.523044px;}
.ws7a6_c00000{word-spacing:0.525600px;}
.ws159a_c00000{word-spacing:0.532800px;}
.wsf6f_c00000{word-spacing:0.540000px;}
.ws5de_c00000{word-spacing:0.547200px;}
.ws8fa_c00000{word-spacing:0.554400px;}
.ws13a_c00000{word-spacing:0.561600px;}
.ws64e_c00000{word-spacing:0.568800px;}
.ws99c_c00000{word-spacing:0.576000px;}
.ws139d_c00000{word-spacing:0.579348px;}
.ws1790_c00000{word-spacing:0.583164px;}
.ws3b0_c00000{word-spacing:0.583200px;}
.ws99b_c00000{word-spacing:0.590400px;}
.ws80e_c00000{word-spacing:0.597600px;}
.ws1f0_c00000{word-spacing:0.604800px;}
.ws3aa_c00000{word-spacing:0.612000px;}
.ws108_c00000{word-spacing:0.619200px;}
.wsa58_c00000{word-spacing:0.626400px;}
.ws4f7_c00000{word-spacing:0.633600px;}
.ws27_c00000{word-spacing:0.640800px;}
.ws4ae_c00000{word-spacing:0.648000px;}
.ws2d9_c00000{word-spacing:0.655200px;}
.ws1ef_c00000{word-spacing:0.662400px;}
.wsae3_c00000{word-spacing:0.669600px;}
.ws3af_c00000{word-spacing:0.676800px;}
.ws1845_c00000{word-spacing:0.678564px;}
.ws2d5_c00000{word-spacing:0.684000px;}
.ws831_c00000{word-spacing:0.691200px;}
.ws139_c00000{word-spacing:0.698400px;}
.ws169c_c00000{word-spacing:0.703404px;}
.ws7cd_c00000{word-spacing:0.704916px;}
.ws2a0_c00000{word-spacing:0.705600px;}
.ws1218_c00000{word-spacing:0.711504px;}
.ws354_c00000{word-spacing:0.712800px;}
.ws145c_c00000{word-spacing:0.715428px;}
.ws212_c00000{word-spacing:0.720000px;}
.ws1953_c00000{word-spacing:0.721440px;}
.wscfa_c00000{word-spacing:0.724680px;}
.ws29f_c00000{word-spacing:0.727200px;}
.ws854_c00000{word-spacing:0.731268px;}
.ws65_c00000{word-spacing:0.734400px;}
.wsa30_c00000{word-spacing:0.737856px;}
.ws138_c00000{word-spacing:0.741600px;}
.ws853_c00000{word-spacing:0.744444px;}
.ws1a9a_c00000{word-spacing:0.745488px;}
.ws3ba_c00000{word-spacing:0.748800px;}
.wsbcb_c00000{word-spacing:0.751032px;}
.wscac_c00000{word-spacing:0.756000px;}
.ws1188_c00000{word-spacing:0.757512px;}
.wsb37_c00000{word-spacing:0.757620px;}
.wsa5f_c00000{word-spacing:0.763200px;}
.ws77c_c00000{word-spacing:0.764208px;}
.ws64_c00000{word-spacing:0.770400px;}
.ws42e_c00000{word-spacing:0.770796px;}
.ws18ba_c00000{word-spacing:0.775548px;}
.wsa2a_c00000{word-spacing:0.777384px;}
.ws1a3a_c00000{word-spacing:0.777600px;}
.ws6cc_c00000{word-spacing:0.783972px;}
.ws16d5_c00000{word-spacing:0.784800px;}
.ws970_c00000{word-spacing:0.790560px;}
.ws1838_c00000{word-spacing:0.792000px;}
.ws1ae2_c00000{word-spacing:0.793584px;}
.wsbcc_c00000{word-spacing:0.797148px;}
.ws134b_c00000{word-spacing:0.799200px;}
.ws130c_c00000{word-spacing:0.799596px;}
.ws1985_c00000{word-spacing:0.803736px;}
.ws1170_c00000{word-spacing:0.804600px;}
.wsf18_c00000{word-spacing:0.806400px;}
.wsdef_c00000{word-spacing:0.810324px;}
.wseb5_c00000{word-spacing:0.813600px;}
.ws1768_c00000{word-spacing:0.816912px;}
.wsbb0_c00000{word-spacing:0.820800px;}
.ws988_c00000{word-spacing:0.835200px;}
.wse28_c00000{word-spacing:0.842400px;}
.ws1ae1_c00000{word-spacing:0.847692px;}
.wsf85_c00000{word-spacing:0.849600px;}
.ws28_c00000{word-spacing:0.856800px;}
.ws941_c00000{word-spacing:0.864000px;}
.ws90f_c00000{word-spacing:0.871200px;}
.ws10ac_c00000{word-spacing:0.874800px;}
.ws1879_c00000{word-spacing:0.878400px;}
.wsafb_c00000{word-spacing:0.885600px;}
.ws1304_c00000{word-spacing:0.889776px;}
.ws19d_c00000{word-spacing:0.892800px;}
.ws9e3_c00000{word-spacing:0.900000px;}
.wsa72_c00000{word-spacing:0.907200px;}
.ws132_c00000{word-spacing:0.914400px;}
.ws8a4_c00000{word-spacing:0.921600px;}
.ws20c_c00000{word-spacing:0.928800px;}
.ws18d_c00000{word-spacing:0.936000px;}
.ws4e2_c00000{word-spacing:0.943200px;}
.ws860_c00000{word-spacing:0.950400px;}
.ws3d7_c00000{word-spacing:0.957600px;}
.ws5b2_c00000{word-spacing:0.964800px;}
.ws20d_c00000{word-spacing:0.972000px;}
.ws9a1_c00000{word-spacing:0.979200px;}
.ws7dc_c00000{word-spacing:0.986400px;}
.ws41_c00000{word-spacing:0.993600px;}
.ws7dd_c00000{word-spacing:1.000800px;}
.wsafc_c00000{word-spacing:1.008000px;}
.ws251_c00000{word-spacing:1.015200px;}
.ws5b3_c00000{word-spacing:1.022400px;}
.wsd71_c00000{word-spacing:1.029600px;}
.ws131_c00000{word-spacing:1.036800px;}
.ws51_c00000{word-spacing:1.044000px;}
.ws250_c00000{word-spacing:1.051200px;}
.ws3d0_c00000{word-spacing:1.058400px;}
.ws5ef_c00000{word-spacing:1.060668px;}
.ws826_c00000{word-spacing:1.065600px;}
.ws19c_c00000{word-spacing:1.072800px;}
.ws183d_c00000{word-spacing:1.073844px;}
.ws52_c00000{word-spacing:1.080000px;}
.wsa32_c00000{word-spacing:1.080432px;}
.ws7d6_c00000{word-spacing:1.087020px;}
.ws59e_c00000{word-spacing:1.087200px;}
.ws1203_c00000{word-spacing:1.093608px;}
.ws18e_c00000{word-spacing:1.094400px;}
.ws1145_c00000{word-spacing:1.100196px;}
.ws18f_c00000{word-spacing:1.101600px;}
.ws11af_c00000{word-spacing:1.106208px;}
.wsac7_c00000{word-spacing:1.106784px;}
.ws825_c00000{word-spacing:1.108800px;}
.ws173e_c00000{word-spacing:1.112220px;}
.wsa31_c00000{word-spacing:1.113372px;}
.ws12db_c00000{word-spacing:1.116000px;}
.ws4c5_c00000{word-spacing:1.119960px;}
.ws42_c00000{word-spacing:1.123200px;}
.ws7d5_c00000{word-spacing:1.126548px;}
.wsd6f_c00000{word-spacing:1.130400px;}
.wsc77_c00000{word-spacing:1.133136px;}
.ws367_c00000{word-spacing:1.137600px;}
.ws1513_c00000{word-spacing:1.139724px;}
.ws3ce_c00000{word-spacing:1.144800px;}
.wsdb0_c00000{word-spacing:1.146312px;}
.wsfea_c00000{word-spacing:1.148292px;}
.wsdae_c00000{word-spacing:1.152900px;}
.ws1a61_c00000{word-spacing:1.159200px;}
.wsbd7_c00000{word-spacing:1.159488px;}
.ws10a7_c00000{word-spacing:1.160316px;}
.wsac5_c00000{word-spacing:1.166076px;}
.wsb6d_c00000{word-spacing:1.166400px;}
.ws17ab_c00000{word-spacing:1.172340px;}
.wsc54_c00000{word-spacing:1.173600px;}
.ws11da_c00000{word-spacing:1.180800px;}
.ws193b_c00000{word-spacing:1.184364px;}
.ws12dc_c00000{word-spacing:1.188000px;}
.ws13ba_c00000{word-spacing:1.195200px;}
.ws193c_c00000{word-spacing:1.196388px;}
.ws10a6_c00000{word-spacing:1.202400px;}
.wsdaf_c00000{word-spacing:1.205604px;}
.wsf8_c00000{word-spacing:1.209600px;}
.ws1783_c00000{word-spacing:1.211364px;}
.ws3fc_c00000{word-spacing:1.216800px;}
.ws990_c00000{word-spacing:1.224000px;}
.ws316_c00000{word-spacing:1.231200px;}
.ws12e3_c00000{word-spacing:1.238400px;}
.ws871_c00000{word-spacing:1.245600px;}
.ws1ad4_c00000{word-spacing:1.250496px;}
.ws878_c00000{word-spacing:1.252800px;}
.ws1780_c00000{word-spacing:1.259244px;}
.wsc3b_c00000{word-spacing:1.260000px;}
.ws668_c00000{word-spacing:1.267200px;}
.ws1310_c00000{word-spacing:1.268532px;}
.ws1781_c00000{word-spacing:1.268820px;}
.ws5e7_c00000{word-spacing:1.274400px;}
.ws317_c00000{word-spacing:1.281600px;}
.ws1445_c00000{word-spacing:1.287972px;}
.wsae7_c00000{word-spacing:1.288800px;}
.ws1743_c00000{word-spacing:1.292760px;}
.ws25c_c00000{word-spacing:1.296000px;}
.ws136c_c00000{word-spacing:1.297548px;}
.wsae6_c00000{word-spacing:1.303200px;}
.ws1742_c00000{word-spacing:1.307124px;}
.ws4e8_c00000{word-spacing:1.310400px;}
.ws1782_c00000{word-spacing:1.311912px;}
.ws602_c00000{word-spacing:1.317600px;}
.ws879_c00000{word-spacing:1.324800px;}
.ws1444_c00000{word-spacing:1.326276px;}
.ws495_c00000{word-spacing:1.332000px;}
.ws312_c00000{word-spacing:1.339200px;}
.ws1443_c00000{word-spacing:1.345428px;}
.ws3c2_c00000{word-spacing:1.346400px;}
.wsf7_c00000{word-spacing:1.353600px;}
.ws9bf_c00000{word-spacing:1.360800px;}
.ws30_c00000{word-spacing:1.368000px;}
.ws142_c00000{word-spacing:1.375200px;}
.ws735_c00000{word-spacing:1.382400px;}
.ws89_c00000{word-spacing:1.389600px;}
.ws26d_c00000{word-spacing:1.396800px;}
.ws374_c00000{word-spacing:1.404000px;}
.ws25d_c00000{word-spacing:1.411200px;}
.ws388_c00000{word-spacing:1.418400px;}
.ws654_c00000{word-spacing:1.425600px;}
.ws2f_c00000{word-spacing:1.432800px;}
.wsce1_c00000{word-spacing:1.436184px;}
.ws174f_c00000{word-spacing:1.436868px;}
.ws5e8_c00000{word-spacing:1.440000px;}
.ws120c_c00000{word-spacing:1.442772px;}
.wsf9_c00000{word-spacing:1.447200px;}
.ws1907_c00000{word-spacing:1.448892px;}
.wsce0_c00000{word-spacing:1.449360px;}
.ws4e9_c00000{word-spacing:1.454400px;}
.wsdb1_c00000{word-spacing:1.455948px;}
.wsa47_c00000{word-spacing:1.461600px;}
.ws599_c00000{word-spacing:1.462536px;}
.wsb94_c00000{word-spacing:1.468800px;}
.ws7b8_c00000{word-spacing:1.469124px;}
.ws17a1_c00000{word-spacing:1.472940px;}
.ws7fd_c00000{word-spacing:1.475712px;}
.wsb6e_c00000{word-spacing:1.476000px;}
.ws1940_c00000{word-spacing:1.478952px;}
.ws47d_c00000{word-spacing:1.482300px;}
.ws11c1_c00000{word-spacing:1.483200px;}
.ws431_c00000{word-spacing:1.488888px;}
.ws653_c00000{word-spacing:1.490400px;}
.ws47c_c00000{word-spacing:1.495476px;}
.ws146e_c00000{word-spacing:1.497600px;}
.ws417_c00000{word-spacing:1.502064px;}
.ws50a_c00000{word-spacing:1.504800px;}
.ws9c5_c00000{word-spacing:1.508652px;}
.wsffd_c00000{word-spacing:1.512000px;}
.ws177d_c00000{word-spacing:1.515024px;}
.wse2b_c00000{word-spacing:1.515240px;}
.wsa26_c00000{word-spacing:1.519200px;}
.ws108a_c00000{word-spacing:1.521036px;}
.ws416_c00000{word-spacing:1.521828px;}
.ws1547_c00000{word-spacing:1.526400px;}
.ws1904_c00000{word-spacing:1.527048px;}
.ws477_c00000{word-spacing:1.533600px;}
.ws5ee_c00000{word-spacing:1.535004px;}
.ws155d_c00000{word-spacing:1.539072px;}
.wsbe7_c00000{word-spacing:1.540800px;}
.ws1903_c00000{word-spacing:1.545084px;}
.wsed9_c00000{word-spacing:1.548000px;}
.wsb13_c00000{word-spacing:1.555200px;}
.ws11b1_c00000{word-spacing:1.557108px;}
.wsfa7_c00000{word-spacing:1.562400px;}
.ws177c_c00000{word-spacing:1.563120px;}
.ws8c0_c00000{word-spacing:1.569600px;}
.ws68c_c00000{word-spacing:1.576800px;}
.ws1add_c00000{word-spacing:1.581156px;}
.ws10ce_c00000{word-spacing:1.582200px;}
.ws31_c00000{word-spacing:1.584000px;}
.ws193e_c00000{word-spacing:1.587168px;}
.ws1996_c00000{word-spacing:1.591200px;}
.ws1546_c00000{word-spacing:1.598400px;}
.ws14e_c00000{word-spacing:1.605600px;}
.ws8c1_c00000{word-spacing:1.612800px;}
.wsef_c00000{word-spacing:1.620000px;}
.wsd24_c00000{word-spacing:1.627200px;}
.wsf86_c00000{word-spacing:1.634400px;}
.ws1ae7_c00000{word-spacing:1.641276px;}
.wsbe6_c00000{word-spacing:1.641600px;}
.wsdda_c00000{word-spacing:1.648800px;}
.ws14f_c00000{word-spacing:1.656000px;}
.ws133d_c00000{word-spacing:1.659312px;}
.wscca_c00000{word-spacing:1.663200px;}
.ws39c_c00000{word-spacing:1.670400px;}
.ws220_c00000{word-spacing:1.677600px;}
.ws571_c00000{word-spacing:1.684800px;}
.ws8ac_c00000{word-spacing:1.692000px;}
.ws889_c00000{word-spacing:1.699200px;}
.ws91a_c00000{word-spacing:1.706400px;}
.ws39d_c00000{word-spacing:1.713600px;}
.ws8c2_c00000{word-spacing:1.720800px;}
.wsaf5_c00000{word-spacing:1.728000px;}
.ws1741_c00000{word-spacing:1.733256px;}
.ws10a_c00000{word-spacing:1.735200px;}
.ws8ab_c00000{word-spacing:1.742400px;}
.ws476_c00000{word-spacing:1.749600px;}
.ws4ab_c00000{word-spacing:1.756800px;}
.ws429_c00000{word-spacing:1.764000px;}
.ws337_c00000{word-spacing:1.771200px;}
.wsee_c00000{word-spacing:1.778400px;}
.ws336_c00000{word-spacing:1.785600px;}
.wse82_c00000{word-spacing:1.791936px;}
.ws160_c00000{word-spacing:1.792800px;}
.ws16a8_c00000{word-spacing:1.798524px;}
.ws21f_c00000{word-spacing:1.800000px;}
.ws14d_c00000{word-spacing:1.807200px;}
.wsc09_c00000{word-spacing:1.811700px;}
.ws109_c00000{word-spacing:1.814400px;}
.ws16a9_c00000{word-spacing:1.818288px;}
.ws965_c00000{word-spacing:1.821600px;}
.ws5f1_c00000{word-spacing:1.824876px;}
.ws8cd_c00000{word-spacing:1.828800px;}
.ws9eb_c00000{word-spacing:1.831464px;}
.ws161_c00000{word-spacing:1.836000px;}
.ws4c9_c00000{word-spacing:1.838052px;}
.ws17a3_c00000{word-spacing:1.839672px;}
.ws1a3f_c00000{word-spacing:1.843200px;}
.ws7e3_c00000{word-spacing:1.844640px;}
.ws221_c00000{word-spacing:1.850400px;}
.wsaba_c00000{word-spacing:1.851228px;}
.ws1938_c00000{word-spacing:1.857708px;}
.ws7e2_c00000{word-spacing:1.857816px;}
.wse1b_c00000{word-spacing:1.864404px;}
.ws1473_c00000{word-spacing:1.864800px;}
.ws18ee_c00000{word-spacing:1.869732px;}
.ws462_c00000{word-spacing:1.870992px;}
.ws181c_c00000{word-spacing:1.872000px;}
.wsa5d_c00000{word-spacing:1.877580px;}
.ws1231_c00000{word-spacing:1.884168px;}
.ws6a9_c00000{word-spacing:1.886400px;}
.ws11b0_c00000{word-spacing:1.887768px;}
.ws5f2_c00000{word-spacing:1.890756px;}
.wse6_c00000{word-spacing:1.893600px;}
.ws17a2_c00000{word-spacing:1.893780px;}
.ws1058_c00000{word-spacing:1.895400px;}
.wsa5c_c00000{word-spacing:1.897344px;}
.ws1659_c00000{word-spacing:1.903932px;}
.wscb2_c00000{word-spacing:1.908000px;}
.ws18ef_c00000{word-spacing:1.911816px;}
.ws8d8_c00000{word-spacing:1.915200px;}
.ws13e6_c00000{word-spacing:1.922400px;}
.ws110e_c00000{word-spacing:1.923840px;}
.ws1028_c00000{word-spacing:1.929600px;}
.wsf0b_c00000{word-spacing:1.936800px;}
.ws1937_c00000{word-spacing:1.941876px;}
.wsb16_c00000{word-spacing:1.944000px;}
.ws1558_c00000{word-spacing:1.947888px;}
.ws109a_c00000{word-spacing:1.949400px;}
.ws202_c00000{word-spacing:1.951200px;}
.ws1061_c00000{word-spacing:1.954800px;}
.wscbb_c00000{word-spacing:1.958400px;}
.ws1099_c00000{word-spacing:1.960200px;}
.ws204_c00000{word-spacing:1.965600px;}
.ws1a9_c00000{word-spacing:1.972800px;}
.ws62e_c00000{word-spacing:1.980000px;}
.ws71d_c00000{word-spacing:1.987200px;}
.ws13bd_c00000{word-spacing:1.994400px;}
.ws139c_c00000{word-spacing:2.001384px;}
.ws7ab_c00000{word-spacing:2.001600px;}
.ws1245_c00000{word-spacing:2.001996px;}
.ws385_c00000{word-spacing:2.008800px;}
.ws384_c00000{word-spacing:2.016000px;}
.ws1bd_c00000{word-spacing:2.023200px;}
.ws207_c00000{word-spacing:2.030400px;}
.ws697_c00000{word-spacing:2.037600px;}
.ws530_c00000{word-spacing:2.044800px;}
.ws2a4_c00000{word-spacing:2.052000px;}
.ws3fa_c00000{word-spacing:2.059200px;}
.ws3d3_c00000{word-spacing:2.066400px;}
.ws5bd_c00000{word-spacing:2.073600px;}
.ws3d4_c00000{word-spacing:2.080800px;}
.wse4_c00000{word-spacing:2.088000px;}
.wse5_c00000{word-spacing:2.095200px;}
.ws383_c00000{word-spacing:2.102400px;}
.ws279_c00000{word-spacing:2.109600px;}
.ws140_c00000{word-spacing:2.116800px;}
.wsc84_c00000{word-spacing:2.121336px;}
.ws318_c00000{word-spacing:2.124000px;}
.ws88_c00000{word-spacing:2.131200px;}
.ws203_c00000{word-spacing:2.138400px;}
.wsceb_c00000{word-spacing:2.141100px;}
.ws1be_c00000{word-spacing:2.145600px;}
.ws58c_c00000{word-spacing:2.147688px;}
.ws1744_c00000{word-spacing:2.152296px;}
.ws43b_c00000{word-spacing:2.152800px;}
.ws38c_c00000{word-spacing:2.160000px;}
.wsfa0_c00000{word-spacing:2.160864px;}
.ws141_c00000{word-spacing:2.167200px;}
.ws6e3_c00000{word-spacing:2.167452px;}
.ws1909_c00000{word-spacing:2.170332px;}
.ws58b_c00000{word-spacing:2.174040px;}
.ws3f8_c00000{word-spacing:2.174400px;}
.ws70a_c00000{word-spacing:2.180628px;}
.ws3fb_c00000{word-spacing:2.181600px;}
.ws595_c00000{word-spacing:2.187216px;}
.ws732_c00000{word-spacing:2.188800px;}
.ws596_c00000{word-spacing:2.193804px;}
.ws62d_c00000{word-spacing:2.196000px;}
.ws618_c00000{word-spacing:2.200392px;}
.ws797_c00000{word-spacing:2.203200px;}
.ws6e2_c00000{word-spacing:2.206980px;}
.ws9a6_c00000{word-spacing:2.210400px;}
.ws1797_c00000{word-spacing:2.212416px;}
.ws447_c00000{word-spacing:2.213568px;}
.wsd45_c00000{word-spacing:2.217600px;}
.ws448_c00000{word-spacing:2.220156px;}
.ws15a2_c00000{word-spacing:2.224800px;}
.ws14e6_c00000{word-spacing:2.226744px;}
.wsf46_c00000{word-spacing:2.232000px;}
.ws846_c00000{word-spacing:2.233332px;}
.ws10c8_c00000{word-spacing:2.236464px;}
.wsedc_c00000{word-spacing:2.239200px;}
.wsef5_c00000{word-spacing:2.239920px;}
.ws1054_c00000{word-spacing:2.241000px;}
.ws1a15_c00000{word-spacing:2.246400px;}
.wsbdc_c00000{word-spacing:2.246508px;}
.wscf8_c00000{word-spacing:2.253600px;}
.ws177e_c00000{word-spacing:2.254500px;}
.wsbf6_c00000{word-spacing:2.259684px;}
.ws124a_c00000{word-spacing:2.260512px;}
.ws113e_c00000{word-spacing:2.272536px;}
.wse27_c00000{word-spacing:2.272860px;}
.ws18d6_c00000{word-spacing:2.275200px;}
.ws111d_c00000{word-spacing:2.278548px;}
.ws4c2_c00000{word-spacing:2.282400px;}
.ws266_c00000{word-spacing:2.289600px;}
.wsbf7_c00000{word-spacing:2.292624px;}
.ws1171_c00000{word-spacing:2.295000px;}
.ws8b_c00000{word-spacing:2.296800px;}
.ws32e_c00000{word-spacing:2.304000px;}
.ws15d_c00000{word-spacing:2.311200px;}
.wsbf5_c00000{word-spacing:2.312388px;}
.ws1a19_c00000{word-spacing:2.318400px;}
.ws8e1_c00000{word-spacing:2.325600px;}
.ws258_c00000{word-spacing:2.332800px;}
.ws280_c00000{word-spacing:2.340000px;}
.ws5ab_c00000{word-spacing:2.347200px;}
.wsc29_c00000{word-spacing:2.354400px;}
.ws9da_c00000{word-spacing:2.361600px;}
.wsfb4_c00000{word-spacing:2.368728px;}
.ws969_c00000{word-spacing:2.368800px;}
.ws26_c00000{word-spacing:2.376000px;}
.ws16e6_c00000{word-spacing:2.383200px;}
.ws276_c00000{word-spacing:2.390400px;}
.ws278_c00000{word-spacing:2.397600px;}
.ws5e2_c00000{word-spacing:2.404800px;}
.ws82a_c00000{word-spacing:2.412000px;}
.ws257_c00000{word-spacing:2.419200px;}
.ws8a_c00000{word-spacing:2.426400px;}
.ws15c_c00000{word-spacing:2.433600px;}
.ws5e3_c00000{word-spacing:2.440800px;}
.ws1a2_c00000{word-spacing:2.448000px;}
.ws393_c00000{word-spacing:2.455200px;}
.ws5b1_c00000{word-spacing:2.462400px;}
.ws25e_c00000{word-spacing:2.469600px;}
.ws60_c00000{word-spacing:2.476800px;}
.ws380_c00000{word-spacing:2.484000px;}
.ws1aa_c00000{word-spacing:2.491200px;}
.wsbe0_c00000{word-spacing:2.496852px;}
.ws25_c00000{word-spacing:2.498400px;}
.ws7b1_c00000{word-spacing:2.503440px;}
.ws25f_c00000{word-spacing:2.505600px;}
.ws1849_c00000{word-spacing:2.510028px;}
.ws340_c00000{word-spacing:2.512800px;}
.ws186d_c00000{word-spacing:2.516616px;}
.ws531_c00000{word-spacing:2.520000px;}
.ws7ac_c00000{word-spacing:2.523204px;}
.ws1a1_c00000{word-spacing:2.527200px;}
.wsbd3_c00000{word-spacing:2.529792px;}
.ws124c_c00000{word-spacing:2.531052px;}
.ws3b3_c00000{word-spacing:2.534400px;}
.wsbdf_c00000{word-spacing:2.536380px;}
.ws1736_c00000{word-spacing:2.537064px;}
.ws277_c00000{word-spacing:2.541600px;}
.ws15e7_c00000{word-spacing:2.542968px;}
.ws61_c00000{word-spacing:2.548800px;}
.ws480_c00000{word-spacing:2.549556px;}
.ws9f2_c00000{word-spacing:2.556000px;}
.ws7b2_c00000{word-spacing:2.556144px;}
.ws505_c00000{word-spacing:2.562732px;}
.ws95e_c00000{word-spacing:2.563200px;}
.ws132a_c00000{word-spacing:2.567124px;}
.ws617_c00000{word-spacing:2.569320px;}
.ws3a3_c00000{word-spacing:2.570400px;}
.ws47f_c00000{word-spacing:2.575908px;}
.ws12cb_c00000{word-spacing:2.577600px;}
.wsdb6_c00000{word-spacing:2.582496px;}
.ws18b0_c00000{word-spacing:2.584800px;}
.ws615_c00000{word-spacing:2.589084px;}
.ws124d_c00000{word-spacing:2.591172px;}
.ws9f1_c00000{word-spacing:2.592000px;}
.wsac4_c00000{word-spacing:2.595672px;}
.ws119d_c00000{word-spacing:2.597184px;}
.ws614_c00000{word-spacing:2.602260px;}
.ws173f_c00000{word-spacing:2.603196px;}
.ws12be_c00000{word-spacing:2.606400px;}
.ws105f_c00000{word-spacing:2.608200px;}
.wsf81_c00000{word-spacing:2.608848px;}
.ws1264_c00000{word-spacing:2.615220px;}
.wsf94_c00000{word-spacing:2.615436px;}
.wsf5f_c00000{word-spacing:2.620800px;}
.ws111e_c00000{word-spacing:2.627244px;}
.ws19f4_c00000{word-spacing:2.628000px;}
.wsb0a_c00000{word-spacing:2.635200px;}
.ws1740_c00000{word-spacing:2.639268px;}
.ws1ea_c00000{word-spacing:2.642400px;}
.wsddb_c00000{word-spacing:2.649600px;}
.ws159f_c00000{word-spacing:2.656800px;}
.ws95f_c00000{word-spacing:2.664000px;}
.ws177f_c00000{word-spacing:2.669328px;}
.ws1832_c00000{word-spacing:2.671200px;}
.ws770_c00000{word-spacing:2.678400px;}
.wsdca_c00000{word-spacing:2.685600px;}
.ws35b_c00000{word-spacing:2.692800px;}
.ws112e_c00000{word-spacing:2.699388px;}
.ws905_c00000{word-spacing:2.700000px;}
.wsd41_c00000{word-spacing:2.707200px;}
.ws86e_c00000{word-spacing:2.714400px;}
.ws52f_c00000{word-spacing:2.721600px;}
.ws9d9_c00000{word-spacing:2.728800px;}
.ws10ee_c00000{word-spacing:2.729448px;}
.ws1ec_c00000{word-spacing:2.736000px;}
.ws1031_c00000{word-spacing:2.741472px;}
.ws71c_c00000{word-spacing:2.743200px;}
.ws11a_c00000{word-spacing:2.750400px;}
.ws11b_c00000{word-spacing:2.757600px;}
.ws196_c00000{word-spacing:2.764800px;}
.ws293_c00000{word-spacing:2.772000px;}
.ws311_c00000{word-spacing:2.779200px;}
.wse3d_c00000{word-spacing:2.786400px;}
.ws3c7_c00000{word-spacing:2.793600px;}
.ws52e_c00000{word-spacing:2.800800px;}
.ws35a_c00000{word-spacing:2.808000px;}
.ws78d_c00000{word-spacing:2.815200px;}
.ws18b_c00000{word-spacing:2.822400px;}
.ws1fc_c00000{word-spacing:2.829600px;}
.ws15cb_c00000{word-spacing:2.832840px;}
.ws8d_c00000{word-spacing:2.836800px;}
.ws50_c00000{word-spacing:2.844000px;}
.ws292_c00000{word-spacing:2.851200px;}
.ws33e_c00000{word-spacing:2.858400px;}
.ws2dc_c00000{word-spacing:2.865600px;}
.ws16b4_c00000{word-spacing:2.872368px;}
.ws11c_c00000{word-spacing:2.872800px;}
.ws7fe_c00000{word-spacing:2.878956px;}
.ws359_c00000{word-spacing:2.880000px;}
.ws1671_c00000{word-spacing:2.885544px;}
.ws17a6_c00000{word-spacing:2.885760px;}
.ws18c_c00000{word-spacing:2.887200px;}
.ws194e_c00000{word-spacing:2.891772px;}
.ws6fc_c00000{word-spacing:2.892132px;}
.ws76d_c00000{word-spacing:2.894400px;}
.wsc71_c00000{word-spacing:2.898720px;}
.ws8e_c00000{word-spacing:2.901600px;}
.wsefe_c00000{word-spacing:2.905308px;}
.ws1a3_c00000{word-spacing:2.908800px;}
.ws1adc_c00000{word-spacing:2.909808px;}
.ws1215_c00000{word-spacing:2.911896px;}
.ws1eb_c00000{word-spacing:2.916000px;}
.wseff_c00000{word-spacing:2.918484px;}
.ws10c9_c00000{word-spacing:2.921832px;}
.ws97b_c00000{word-spacing:2.923200px;}
.ws604_c00000{word-spacing:2.925072px;}
.wsf8d_c00000{word-spacing:2.930400px;}
.ws6e1_c00000{word-spacing:2.931660px;}
.ws274_c00000{word-spacing:2.937600px;}
.ws3f2_c00000{word-spacing:2.938248px;}
.ws1172_c00000{word-spacing:2.939868px;}
.wsacb_c00000{word-spacing:2.944800px;}
.ws6fd_c00000{word-spacing:2.944836px;}
.wsac3_c00000{word-spacing:2.951424px;}
.ws132e_c00000{word-spacing:2.951892px;}
.ws587_c00000{word-spacing:2.958012px;}
.wscc8_c00000{word-spacing:2.959200px;}
.wsfd3_c00000{word-spacing:2.963916px;}
.ws10e4_c00000{word-spacing:2.964600px;}
.ws5d7_c00000{word-spacing:2.966400px;}
.wsb6b_c00000{word-spacing:2.980800px;}
.ws18f1_c00000{word-spacing:2.987964px;}
.ws1567_c00000{word-spacing:2.993976px;}
.ws163b_c00000{word-spacing:2.995200px;}
.ws546_c00000{word-spacing:3.002400px;}
.ws10e3_c00000{word-spacing:3.007800px;}
.ws1533_c00000{word-spacing:3.009600px;}
.ws960_c00000{word-spacing:3.024000px;}
.ws18f2_c00000{word-spacing:3.024036px;}
.wscef_c00000{word-spacing:3.031200px;}
.ws90a_c00000{word-spacing:3.038400px;}
.ws105e_c00000{word-spacing:3.040200px;}
.ws12d3_c00000{word-spacing:3.045600px;}
.wsf2d_c00000{word-spacing:3.050244px;}
.wsa63_c00000{word-spacing:3.052800px;}
.ws155c_c00000{word-spacing:3.054096px;}
.ws6d9_c00000{word-spacing:3.060000px;}
.ws114_c00000{word-spacing:3.067200px;}
.ws4be_c00000{word-spacing:3.074400px;}
.ws97a_c00000{word-spacing:3.081600px;}
.ws88a_c00000{word-spacing:3.088800px;}
.ws169_c00000{word-spacing:3.096000px;}
.ws1e2_c00000{word-spacing:3.103200px;}
.ws1e3_c00000{word-spacing:3.110400px;}
.ws216_c00000{word-spacing:3.117600px;}
.wse72_c00000{word-spacing:3.124800px;}
.ws1df_c00000{word-spacing:3.132000px;}
.ws67_c00000{word-spacing:3.139200px;}
.wsc28_c00000{word-spacing:3.146400px;}
.ws6f8_c00000{word-spacing:3.153600px;}
.ws86f_c00000{word-spacing:3.160800px;}
.ws94d_c00000{word-spacing:3.168000px;}
.ws5d8_c00000{word-spacing:3.175200px;}
.ws545_c00000{word-spacing:3.182400px;}
.wsa34_c00000{word-spacing:3.189600px;}
.ws188_c00000{word-spacing:3.196800px;}
.ws168_c00000{word-spacing:3.204000px;}
.ws1853_c00000{word-spacing:3.208356px;}
.ws189f_c00000{word-spacing:3.210408px;}
.ws53_c00000{word-spacing:3.211200px;}
.ws56_c00000{word-spacing:3.218400px;}
.ws4f5_c00000{word-spacing:3.221532px;}
.ws68_c00000{word-spacing:3.225600px;}
.wsbf2_c00000{word-spacing:3.228120px;}
.ws1725_c00000{word-spacing:3.228444px;}
.ws54_c00000{word-spacing:3.232800px;}
.ws14e7_c00000{word-spacing:3.234708px;}
.ws55_c00000{word-spacing:3.240000px;}
.ws1276_c00000{word-spacing:3.240468px;}
.ws14b4_c00000{word-spacing:3.241296px;}
.ws1970_c00000{word-spacing:3.246480px;}
.wsad3_c00000{word-spacing:3.247200px;}
.ws7d0_c00000{word-spacing:3.247884px;}
.ws870_c00000{word-spacing:3.254400px;}
.ws4f6_c00000{word-spacing:3.254472px;}
.ws45d_c00000{word-spacing:3.261060px;}
.ws68b_c00000{word-spacing:3.261600px;}
.ws752_c00000{word-spacing:3.267648px;}
.ws2c7_c00000{word-spacing:3.268800px;}
.ws84d_c00000{word-spacing:3.274236px;}
.ws68a_c00000{word-spacing:3.276000px;}
.ws753_c00000{word-spacing:3.280824px;}
.wscee_c00000{word-spacing:3.283200px;}
.ws45c_c00000{word-spacing:3.287412px;}
.ws1e0_c00000{word-spacing:3.290400px;}
.ws5ec_c00000{word-spacing:3.294000px;}
.ws1779_c00000{word-spacing:3.294576px;}
.ws1b8_c00000{word-spacing:3.297600px;}
.wsab4_c00000{word-spacing:3.300588px;}
.ws182e_c00000{word-spacing:3.304800px;}
.ws1266_c00000{word-spacing:3.306600px;}
.ws84c_c00000{word-spacing:3.307176px;}
.wseab_c00000{word-spacing:3.312000px;}
.wsf2e_c00000{word-spacing:3.313764px;}
.ws140c_c00000{word-spacing:3.318624px;}
.ws104_c00000{word-spacing:3.319200px;}
.wsc83_c00000{word-spacing:3.320352px;}
.ws1abb_c00000{word-spacing:3.326400px;}
.ws5ed_c00000{word-spacing:3.326940px;}
.ws171f_c00000{word-spacing:3.330648px;}
.ws5fa_c00000{word-spacing:3.333600px;}
.ws13a3_c00000{word-spacing:3.340800px;}
.ws1882_c00000{word-spacing:3.342672px;}
.ws151b_c00000{word-spacing:3.348000px;}
.ws17ac_c00000{word-spacing:3.348684px;}
.ws300_c00000{word-spacing:3.355200px;}
.wsfc5_c00000{word-spacing:3.360708px;}
.wse9e_c00000{word-spacing:3.362400px;}
.ws155b_c00000{word-spacing:3.366720px;}
.ws148a_c00000{word-spacing:3.369600px;}
.ws1148_c00000{word-spacing:3.372732px;}
.ws956_c00000{word-spacing:3.376800px;}
.ws53c_c00000{word-spacing:3.384000px;}
.ws215_c00000{word-spacing:3.391200px;}
.ws95b_c00000{word-spacing:3.398400px;}
.ws1032_c00000{word-spacing:3.402000px;}
.ws1b7_c00000{word-spacing:3.405600px;}
.ws1745_c00000{word-spacing:3.408804px;}
.wsc64_c00000{word-spacing:3.412800px;}
.wsf1d_c00000{word-spacing:3.420000px;}
.ws1314_c00000{word-spacing:3.420828px;}
.wsfb1_c00000{word-spacing:3.427200px;}
.ws1789_c00000{word-spacing:3.432852px;}
.wsf04_c00000{word-spacing:3.434400px;}
.ws132f_c00000{word-spacing:3.438864px;}
.wse85_c00000{word-spacing:3.441600px;}
.ws442_c00000{word-spacing:3.448800px;}
.ws1af0_c00000{word-spacing:3.450888px;}
.ws369_c00000{word-spacing:3.456000px;}
.ws136e_c00000{word-spacing:3.461724px;}
.ws301_c00000{word-spacing:3.463200px;}
.ws38d_c00000{word-spacing:3.470400px;}
.ws136d_c00000{word-spacing:3.476088px;}
.ws342_c00000{word-spacing:3.477600px;}
.ws5fb_c00000{word-spacing:3.484800px;}
.ws6f0_c00000{word-spacing:3.492000px;}
.ws165e_c00000{word-spacing:3.498228px;}
.ws1147_c00000{word-spacing:3.498984px;}
.ws38e_c00000{word-spacing:3.499200px;}
.ws214_c00000{word-spacing:3.506400px;}
.ws593_c00000{word-spacing:3.511404px;}
.wsadb_c00000{word-spacing:3.513600px;}
.ws95c_c00000{word-spacing:3.520800px;}
.ws294_c00000{word-spacing:3.528000px;}
.ws6ef_c00000{word-spacing:3.535200px;}
.ws92d_c00000{word-spacing:3.542400px;}
.ws8f7_c00000{word-spacing:3.549600px;}
.ws165f_c00000{word-spacing:3.550932px;}
.ws35d_c00000{word-spacing:3.556800px;}
.ws36a_c00000{word-spacing:3.564000px;}
.ws17e_c00000{word-spacing:3.571200px;}
.ws158a_c00000{word-spacing:3.577284px;}
.wsaa9_c00000{word-spacing:3.578400px;}
.ws7ba_c00000{word-spacing:3.583872px;}
.ws8d1_c00000{word-spacing:3.585600px;}
.ws35c_c00000{word-spacing:3.592800px;}
.ws594_c00000{word-spacing:3.597048px;}
.ws53b_c00000{word-spacing:3.600000px;}
.ws482_c00000{word-spacing:3.603636px;}
.ws105_c00000{word-spacing:3.607200px;}
.ws7f6_c00000{word-spacing:3.610224px;}
.ws1281_c00000{word-spacing:3.613212px;}
.ws570_c00000{word-spacing:3.614400px;}
.ws9ae_c00000{word-spacing:3.616812px;}
.ws1250_c00000{word-spacing:3.619224px;}
.ws295_c00000{word-spacing:3.621600px;}
.ws414_c00000{word-spacing:3.623400px;}
.ws957_c00000{word-spacing:3.628800px;}
.ws592_c00000{word-spacing:3.629988px;}
.ws14ee_c00000{word-spacing:3.636000px;}
.ws4c6_c00000{word-spacing:3.636576px;}
.ws1971_c00000{word-spacing:3.637260px;}
.ws49f_c00000{word-spacing:3.643164px;}
.wsca4_c00000{word-spacing:3.643200px;}
.ws481_c00000{word-spacing:3.649752px;}
.wsb60_c00000{word-spacing:3.650400px;}
.ws4d5_c00000{word-spacing:3.656340px;}
.ws95d_c00000{word-spacing:3.657600px;}
.wsf00_c00000{word-spacing:3.662928px;}
.wsca3_c00000{word-spacing:3.664800px;}
.ws49e_c00000{word-spacing:3.669516px;}
.wsfb0_c00000{word-spacing:3.672000px;}
.ws1972_c00000{word-spacing:3.673332px;}
.wsa04_c00000{word-spacing:3.676104px;}
.wsace_c00000{word-spacing:3.679200px;}
.ws746_c00000{word-spacing:3.682692px;}
.ws1817_c00000{word-spacing:3.686400px;}
.ws413_c00000{word-spacing:3.689280px;}
.wsfd4_c00000{word-spacing:3.691368px;}
.ws1494_c00000{word-spacing:3.693600px;}
.ws1211_c00000{word-spacing:3.695868px;}
.ws171e_c00000{word-spacing:3.697380px;}
.wsa2e_c00000{word-spacing:3.700800px;}
.wsaec_c00000{word-spacing:3.702456px;}
.ws1778_c00000{word-spacing:3.703392px;}
.ws343_c00000{word-spacing:3.708000px;}
.ws1167_c00000{word-spacing:3.715200px;}
.ws1723_c00000{word-spacing:3.715416px;}
.ws11e3_c00000{word-spacing:3.715632px;}
.ws134_c00000{word-spacing:3.722400px;}
.wsc3c_c00000{word-spacing:3.729600px;}
.ws118c_c00000{word-spacing:3.736800px;}
.ws17ad_c00000{word-spacing:3.739464px;}
.ws1166_c00000{word-spacing:3.742200px;}
.ws92c_c00000{word-spacing:3.744000px;}
.ws1b4_c00000{word-spacing:3.751200px;}
.ws171a_c00000{word-spacing:3.751488px;}
.ws3bf_c00000{word-spacing:3.758400px;}
.ws6da_c00000{word-spacing:3.765600px;}
.ws52d_c00000{word-spacing:3.772800px;}
.ws118b_c00000{word-spacing:3.774600px;}
.ws1447_c00000{word-spacing:3.780000px;}
.ws97d_c00000{word-spacing:3.787200px;}
.ws1724_c00000{word-spacing:3.787560px;}
.ws1d7_c00000{word-spacing:3.794400px;}
.ws672_c00000{word-spacing:3.801600px;}
.ws4e4_c00000{word-spacing:3.808800px;}
.ws17a8_c00000{word-spacing:3.811608px;}
.ws136_c00000{word-spacing:3.816000px;}
.wsa14_c00000{word-spacing:3.823200px;}
.ws3c1_c00000{word-spacing:3.830400px;}
.ws671_c00000{word-spacing:3.837600px;}
.ws8f9_c00000{word-spacing:3.844800px;}
.ws8e5_c00000{word-spacing:3.852000px;}
.ws1d6_c00000{word-spacing:3.859200px;}
.ws1b5_c00000{word-spacing:3.866400px;}
.wscc3_c00000{word-spacing:3.873600px;}
.ws720_c00000{word-spacing:3.880800px;}
.ws4e3_c00000{word-spacing:3.888000px;}
.ws71f_c00000{word-spacing:3.895200px;}
.ws488_c00000{word-spacing:3.902400px;}
.ws669_c00000{word-spacing:3.909600px;}
.wsbfd_c00000{word-spacing:3.913272px;}
.ws1b3_c00000{word-spacing:3.916800px;}
.ws2db_c00000{word-spacing:3.924000px;}
.ws2da_c00000{word-spacing:3.931200px;}
.ws48e_c00000{word-spacing:3.938400px;}
.ws121_c00000{word-spacing:3.945600px;}
.ws122_c00000{word-spacing:3.952800px;}
.wsda3_c00000{word-spacing:3.959388px;}
.ws9d8_c00000{word-spacing:3.960000px;}
.ws1522_c00000{word-spacing:3.965976px;}
.ws88b_c00000{word-spacing:3.967200px;}
.ws70e_c00000{word-spacing:3.972564px;}
.ws190b_c00000{word-spacing:3.973932px;}
.ws9d7_c00000{word-spacing:3.974400px;}
.ws1516_c00000{word-spacing:3.979152px;}
.ws135_c00000{word-spacing:3.981600px;}
.ws610_c00000{word-spacing:3.985740px;}
.ws3c0_c00000{word-spacing:3.988800px;}
.ws15c3_c00000{word-spacing:3.992328px;}
.ws5cf_c00000{word-spacing:3.996000px;}
.ws134e_c00000{word-spacing:3.998916px;}
.ws98c_c00000{word-spacing:4.003200px;}
.ws1690_c00000{word-spacing:4.005504px;}
.ws2ba_c00000{word-spacing:4.010400px;}
.wsc1d_c00000{word-spacing:4.012092px;}
.ws5af_c00000{word-spacing:4.017600px;}
.ws70d_c00000{word-spacing:4.018680px;}
.ws817_c00000{word-spacing:4.024800px;}
.ws611_c00000{word-spacing:4.025268px;}
.ws9c8_c00000{word-spacing:4.031856px;}
.wsc6d_c00000{word-spacing:4.032000px;}
.wsbad_c00000{word-spacing:4.038444px;}
.ws15dc_c00000{word-spacing:4.039200px;}
.ws1232_c00000{word-spacing:4.045032px;}
.ws1287_c00000{word-spacing:4.046400px;}
.ws586_c00000{word-spacing:4.051620px;}
.ws89b_c00000{word-spacing:4.053600px;}
.ws1233_c00000{word-spacing:4.058208px;}
.ws1532_c00000{word-spacing:4.060800px;}
.ws140e_c00000{word-spacing:4.070124px;}
.ws932_c00000{word-spacing:4.075200px;}
.ws8a3_c00000{word-spacing:4.089600px;}
.ws962_c00000{word-spacing:4.096800px;}
.ws118e_c00000{word-spacing:4.098600px;}
.wsa08_c00000{word-spacing:4.104000px;}
.ws7ca_c00000{word-spacing:4.111200px;}
.ws165b_c00000{word-spacing:4.117500px;}
.ws356_c00000{word-spacing:4.118400px;}
.ws1691_c00000{word-spacing:4.124232px;}
.ws6a5_c00000{word-spacing:4.125600px;}
.ws355_c00000{word-spacing:4.132800px;}
.ws65a_c00000{word-spacing:4.140000px;}
.ws97c_c00000{word-spacing:4.147200px;}
.wsa71_c00000{word-spacing:4.154400px;}
.ws190a_c00000{word-spacing:4.160304px;}
.ws4c3_c00000{word-spacing:4.161600px;}
.wsa09_c00000{word-spacing:4.168800px;}
.wsed4_c00000{word-spacing:4.176000px;}
.wsafa_c00000{word-spacing:4.183200px;}
.ws313_c00000{word-spacing:4.190400px;}
.ws627_c00000{word-spacing:4.197600px;}
.ws928_c00000{word-spacing:4.204800px;}
.ws1b2_c00000{word-spacing:4.212000px;}
.ws71_c00000{word-spacing:4.219200px;}
.ws153_c00000{word-spacing:4.226400px;}
.ws5b9_c00000{word-spacing:4.233600px;}
.ws2bc_c00000{word-spacing:4.240800px;}
.ws281_c00000{word-spacing:4.248000px;}
.ws1b1_c00000{word-spacing:4.255200px;}
.ws5d_c00000{word-spacing:4.262400px;}
.ws963_c00000{word-spacing:4.269600px;}
.ws5e4_c00000{word-spacing:4.276800px;}
.ws152_c00000{word-spacing:4.284000px;}
.wsa6_c00000{word-spacing:4.291200px;}
.ws64f_c00000{word-spacing:4.298400px;}
.ws1703_c00000{word-spacing:4.301964px;}
.ws626_c00000{word-spacing:4.305600px;}
.ws2bb_c00000{word-spacing:4.312800px;}
.wse18_c00000{word-spacing:4.315140px;}
.ws80b_c00000{word-spacing:4.320000px;}
.ws121a_c00000{word-spacing:4.321728px;}
.ws1917_c00000{word-spacing:4.322628px;}
.ws315_c00000{word-spacing:4.327200px;}
.ws9ec_c00000{word-spacing:4.328316px;}
.ws1775_c00000{word-spacing:4.328640px;}
.ws92b_c00000{word-spacing:4.334400px;}
.ws193d_c00000{word-spacing:4.334652px;}
.ws3f4_c00000{word-spacing:4.334904px;}
.ws77b_c00000{word-spacing:4.341492px;}
.ws5ba_c00000{word-spacing:4.341600px;}
.ws9ed_c00000{word-spacing:4.348080px;}
.ws5b0_c00000{word-spacing:4.348800px;}
.ws7df_c00000{word-spacing:4.354668px;}
.wsb3c_c00000{word-spacing:4.356000px;}
.ws1141_c00000{word-spacing:4.358700px;}
.ws585_c00000{word-spacing:4.361256px;}
.ws37a_c00000{word-spacing:4.363200px;}
.ws3f3_c00000{word-spacing:4.367844px;}
.ws314_c00000{word-spacing:4.370400px;}
.wsbe3_c00000{word-spacing:4.374432px;}
.ws172f_c00000{word-spacing:4.376736px;}
.ws1a5c_c00000{word-spacing:4.377600px;}
.ws7d3_c00000{word-spacing:4.381020px;}
.ws5bb_c00000{word-spacing:4.384800px;}
.ws19b5_c00000{word-spacing:4.387608px;}
.ws1257_c00000{word-spacing:4.388760px;}
.ws650_c00000{word-spacing:4.392000px;}
.ws7d8_c00000{word-spacing:4.394196px;}
.wsf14_c00000{word-spacing:4.399200px;}
.ws121b_c00000{word-spacing:4.400784px;}
.ws32f_c00000{word-spacing:4.406400px;}
.wsfc9_c00000{word-spacing:4.406796px;}
.ws1353_c00000{word-spacing:4.407372px;}
.ws1142_c00000{word-spacing:4.412808px;}
.ws174e_c00000{word-spacing:4.424832px;}
.wsc04_c00000{word-spacing:4.428000px;}
.ws174d_c00000{word-spacing:4.430844px;}
.ws1075_c00000{word-spacing:4.433400px;}
.ws8a8_c00000{word-spacing:4.435200px;}
.ws1256_c00000{word-spacing:4.436856px;}
.ws1055_c00000{word-spacing:4.438800px;}
.ws1730_c00000{word-spacing:4.442868px;}
.ws10a0_c00000{word-spacing:4.449600px;}
.ws1101_c00000{word-spacing:4.455000px;}
.ws2b2_c00000{word-spacing:4.456800px;}
.ws12a7_c00000{word-spacing:4.464000px;}
.ws1189_c00000{word-spacing:4.465800px;}
.ws156f_c00000{word-spacing:4.466916px;}
.ws99a_c00000{word-spacing:4.471200px;}
.ws935_c00000{word-spacing:4.478400px;}
.ws12cc_c00000{word-spacing:4.485600px;}
.ws395_c00000{word-spacing:4.492800px;}
.ws118d_c00000{word-spacing:4.498200px;}
.ws2a5_c00000{word-spacing:4.500000px;}
.ws330_c00000{word-spacing:4.507200px;}
.wsdc_c00000{word-spacing:4.514400px;}
.ws209_c00000{word-spacing:4.521600px;}
.ws125b_c00000{word-spacing:4.527036px;}
.wsfaa_c00000{word-spacing:4.528800px;}
.wsad4_c00000{word-spacing:4.536000px;}
.wsde4_c00000{word-spacing:4.543200px;}
.ws28c_c00000{word-spacing:4.550400px;}
.ws46e_c00000{word-spacing:4.557600px;}
.ws331_c00000{word-spacing:4.564800px;}
.ws1adb_c00000{word-spacing:4.569120px;}
.ws208_c00000{word-spacing:4.572000px;}
.ws786_c00000{word-spacing:4.579200px;}
.ws404_c00000{word-spacing:4.586400px;}
.ws178_c00000{word-spacing:4.593600px;}
.wsbf3_c00000{word-spacing:4.598424px;}
.ws28b_c00000{word-spacing:4.600800px;}
.wse79_c00000{word-spacing:4.608000px;}
.wsa19_c00000{word-spacing:4.615200px;}
.wsc96_c00000{word-spacing:4.622400px;}
.ws5d2_c00000{word-spacing:4.629600px;}
.ws3d6_c00000{word-spacing:4.636800px;}
.ws2a6_c00000{word-spacing:4.644000px;}
.ws351_c00000{word-spacing:4.651200px;}
.ws1657_c00000{word-spacing:4.657716px;}
.ws9a0_c00000{word-spacing:4.658400px;}
.ws19b4_c00000{word-spacing:4.664304px;}
.ws177_c00000{word-spacing:4.665600px;}
.ws11e9_c00000{word-spacing:4.670892px;}
.ws2e8_c00000{word-spacing:4.672800px;}
.ws178f_c00000{word-spacing:4.677336px;}
.wsc85_c00000{word-spacing:4.677480px;}
.wsde_c00000{word-spacing:4.680000px;}
.ws1338_c00000{word-spacing:4.683348px;}
.ws60c_c00000{word-spacing:4.684068px;}
.wsdd_c00000{word-spacing:4.687200px;}
.wsdc7_c00000{word-spacing:4.690656px;}
.ws28d_c00000{word-spacing:4.694400px;}
.ws1155_c00000{word-spacing:4.695372px;}
.wsdc6_c00000{word-spacing:4.697244px;}
.ws56e_c00000{word-spacing:4.701600px;}
.wsbe1_c00000{word-spacing:4.703832px;}
.wsa73_c00000{word-spacing:4.708800px;}
.wse76_c00000{word-spacing:4.710420px;}
.ws56f_c00000{word-spacing:4.716000px;}
.ws4de_c00000{word-spacing:4.717008px;}
.wsfab_c00000{word-spacing:4.723200px;}
.ws60b_c00000{word-spacing:4.723596px;}
.wse4b_c00000{word-spacing:4.730184px;}
.wsb69_c00000{word-spacing:4.730400px;}
.wsf11_c00000{word-spacing:4.736772px;}
.wsbc4_c00000{word-spacing:4.737600px;}
.wsac6_c00000{word-spacing:4.743360px;}
.ws150b_c00000{word-spacing:4.744800px;}
.ws122f_c00000{word-spacing:4.749948px;}
.wsa88_c00000{word-spacing:4.752000px;}
.ws1191_c00000{word-spacing:4.755492px;}
.wsf8a_c00000{word-spacing:4.756536px;}
.ws2e7_c00000{word-spacing:4.759200px;}
.ws171c_c00000{word-spacing:4.761504px;}
.ws402_c00000{word-spacing:4.766400px;}
.wsd0f_c00000{word-spacing:4.773600px;}
.ws186f_c00000{word-spacing:4.776300px;}
.ws1ae5_c00000{word-spacing:4.779540px;}
.wsa74_c00000{word-spacing:4.780800px;}
.wsdf0_c00000{word-spacing:4.782888px;}
.ws119a_c00000{word-spacing:4.785552px;}
.wsce4_c00000{word-spacing:4.788000px;}
.ws171d_c00000{word-spacing:4.791564px;}
.ws4bc_c00000{word-spacing:4.795200px;}
.ws171b_c00000{word-spacing:4.797576px;}
.wsf89_c00000{word-spacing:4.809240px;}
.ws1528_c00000{word-spacing:4.809600px;}
.wsf79_c00000{word-spacing:4.816800px;}
.wsa99_c00000{word-spacing:4.824000px;}
.ws1446_c00000{word-spacing:4.831200px;}
.ws117_c00000{word-spacing:4.838400px;}
.wsb89_c00000{word-spacing:4.845600px;}
.ws1905_c00000{word-spacing:4.851684px;}
.wsa98_c00000{word-spacing:4.852800px;}
.ws165a_c00000{word-spacing:4.855356px;}
.ws78e_c00000{word-spacing:4.860000px;}
.ws42b_c00000{word-spacing:4.867200px;}
.ws5bc_c00000{word-spacing:4.874400px;}
.ws1a98_c00000{word-spacing:4.875732px;}
.ws29c_c00000{word-spacing:4.881600px;}
.ws130_c00000{word-spacing:4.888800px;}
.ws32a_c00000{word-spacing:4.896000px;}
.wsb90_c00000{word-spacing:4.903200px;}
.ws62f_c00000{word-spacing:4.910400px;}
.ws132b_c00000{word-spacing:4.911804px;}
.ws4aa_c00000{word-spacing:4.917600px;}
.ws787_c00000{word-spacing:4.924800px;}
.ws3d2_c00000{word-spacing:4.932000px;}
.ws116_c00000{word-spacing:4.939200px;}
.ws3ff_c00000{word-spacing:4.946400px;}
.ws62_c00000{word-spacing:4.953600px;}
.ws4bd_c00000{word-spacing:4.960800px;}
.wsb8a_c00000{word-spacing:4.968000px;}
.ws4d_c00000{word-spacing:4.975200px;}
.ws12f_c00000{word-spacing:4.982400px;}
.ws695_c00000{word-spacing:4.989600px;}
.ws323_c00000{word-spacing:4.996800px;}
.ws29a_c00000{word-spacing:5.004000px;}
.ws3d1_c00000{word-spacing:5.011200px;}
.ws1a4_c00000{word-spacing:5.018400px;}
.ws29b_c00000{word-spacing:5.025600px;}
.ws164f_c00000{word-spacing:5.026644px;}
.ws12e_c00000{word-spacing:5.032800px;}
.wsefd_c00000{word-spacing:5.039820px;}
.ws400_c00000{word-spacing:5.040000px;}
.ws119b_c00000{word-spacing:5.044068px;}
.wsc1c_c00000{word-spacing:5.046408px;}
.ws4c_c00000{word-spacing:5.047200px;}
.ws10b1_c00000{word-spacing:5.050080px;}
.wsba9_c00000{word-spacing:5.052996px;}
.ws401_c00000{word-spacing:5.054400px;}
.ws60f_c00000{word-spacing:5.059584px;}
.ws408_c00000{word-spacing:5.061600px;}
.ws196c_c00000{word-spacing:5.062104px;}
.ws714_c00000{word-spacing:5.066172px;}
.ws3b2_c00000{word-spacing:5.068800px;}
.ws506_c00000{word-spacing:5.072760px;}
.ws11fc_c00000{word-spacing:5.076000px;}
.ws3f5_c00000{word-spacing:5.079348px;}
.ws63_c00000{word-spacing:5.083200px;}
.wsbd8_c00000{word-spacing:5.085936px;}
.ws11d2_c00000{word-spacing:5.090400px;}
.ws7b4_c00000{word-spacing:5.092524px;}
.wsbb7_c00000{word-spacing:5.097600px;}
.ws713_c00000{word-spacing:5.099112px;}
.ws938_c00000{word-spacing:5.104800px;}
.ws1855_c00000{word-spacing:5.105700px;}
.ws13c2_c00000{word-spacing:5.112000px;}
.ws781_c00000{word-spacing:5.112288px;}
.ws1936_c00000{word-spacing:5.116212px;}
.ws1925_c00000{word-spacing:5.118876px;}
.ws5f6_c00000{word-spacing:5.119200px;}
.wsb31_c00000{word-spacing:5.125464px;}
.ws83d_c00000{word-spacing:5.126400px;}
.wse32_c00000{word-spacing:5.133600px;}
.ws1935_c00000{word-spacing:5.134248px;}
.ws1952_c00000{word-spacing:5.140260px;}
.wsd19_c00000{word-spacing:5.140800px;}
.ws1921_c00000{word-spacing:5.146272px;}
.ws200_c00000{word-spacing:5.148000px;}
.ws1951_c00000{word-spacing:5.152284px;}
.ws19b8_c00000{word-spacing:5.155200px;}
.ws1865_c00000{word-spacing:5.176800px;}
.ws1839_c00000{word-spacing:5.184000px;}
.ws930_c00000{word-spacing:5.191200px;}
.ws1192_c00000{word-spacing:5.194368px;}
.wsc8c_c00000{word-spacing:5.198400px;}
.wsf63_c00000{word-spacing:5.205600px;}
.ws11b4_c00000{word-spacing:5.206392px;}
.ws843_c00000{word-spacing:5.212800px;}
.ws194a_c00000{word-spacing:5.218416px;}
.ws91d_c00000{word-spacing:5.220000px;}
.ws625_c00000{word-spacing:5.227200px;}
.wsf08_c00000{word-spacing:5.234400px;}
.wse4c_c00000{word-spacing:5.241600px;}
.ws194b_c00000{word-spacing:5.242464px;}
.ws842_c00000{word-spacing:5.248800px;}
.wsab1_c00000{word-spacing:5.256000px;}
.ws1595_c00000{word-spacing:5.263200px;}
.ws9b3_c00000{word-spacing:5.270400px;}
.ws5f5_c00000{word-spacing:5.277600px;}
.ws3e_c00000{word-spacing:5.284800px;}
.ws8a5_c00000{word-spacing:5.292000px;}
.ws659_c00000{word-spacing:5.299200px;}
.ws1ab_c00000{word-spacing:5.306400px;}
.ws381_c00000{word-spacing:5.313600px;}
.ws382_c00000{word-spacing:5.320800px;}
.ws8a6_c00000{word-spacing:5.328000px;}
.ws36d_c00000{word-spacing:5.335200px;}
.ws20a_c00000{word-spacing:5.342400px;}
.ws20b_c00000{word-spacing:5.349600px;}
.ws48f_c00000{word-spacing:5.356800px;}
.ws7c2_c00000{word-spacing:5.364000px;}
.ws12f3_c00000{word-spacing:5.369220px;}
.ws3d8_c00000{word-spacing:5.371200px;}
.ws1ff_c00000{word-spacing:5.378400px;}
.ws188b_c00000{word-spacing:5.380740px;}
.ws3c_c00000{word-spacing:5.385600px;}
.ws127f_c00000{word-spacing:5.386752px;}
.ws3db_c00000{word-spacing:5.392800px;}
.ws616_c00000{word-spacing:5.395572px;}
.ws3d_c00000{word-spacing:5.400000px;}
.ws11ce_c00000{word-spacing:5.402160px;}
.ws1ac_c00000{word-spacing:5.407200px;}
.ws4cb_c00000{word-spacing:5.408748px;}
.ws3b1_c00000{word-spacing:5.414400px;}
.ws598_c00000{word-spacing:5.415336px;}
.ws844_c00000{word-spacing:5.421600px;}
.ws597_c00000{word-spacing:5.421924px;}
.ws15b3_c00000{word-spacing:5.428512px;}
.ws6b5_c00000{word-spacing:5.428800px;}
.ws7f9_c00000{word-spacing:5.435100px;}
.ws999_c00000{word-spacing:5.436000px;}
.ws110c_c00000{word-spacing:5.440860px;}
.ws4cc_c00000{word-spacing:5.441688px;}
.ws942_c00000{word-spacing:5.443200px;}
.ws7f8_c00000{word-spacing:5.448276px;}
.ws6d3_c00000{word-spacing:5.450400px;}
.ws82d_c00000{word-spacing:5.457600px;}
.ws3e0_c00000{word-spacing:5.461452px;}
.ws1a4b_c00000{word-spacing:5.464800px;}
.wscfe_c00000{word-spacing:5.468040px;}
.ws7c3_c00000{word-spacing:5.472000px;}
.ws3e8_c00000{word-spacing:5.474628px;}
.wsea1_c00000{word-spacing:5.479200px;}
.ws3e7_c00000{word-spacing:5.481216px;}
.ws133c_c00000{word-spacing:5.482944px;}
.wsf09_c00000{word-spacing:5.486400px;}
.wsda7_c00000{word-spacing:5.487804px;}
.ws12a1_c00000{word-spacing:5.493600px;}
.ws1946_c00000{word-spacing:5.494968px;}
.ws18cf_c00000{word-spacing:5.500800px;}
.ws176e_c00000{word-spacing:5.500980px;}
.ws1954_c00000{word-spacing:5.513004px;}
.ws1234_c00000{word-spacing:5.514156px;}
.wsb99_c00000{word-spacing:5.515200px;}
.wsaf2_c00000{word-spacing:5.522400px;}
.ws464_c00000{word-spacing:5.529600px;}
.ws7db_c00000{word-spacing:5.536800px;}
.ws18d0_c00000{word-spacing:5.544000px;}
.ws363_c00000{word-spacing:5.551200px;}
.ws4db_c00000{word-spacing:5.558400px;}
.wsfac_c00000{word-spacing:5.565600px;}
.ws4e5_c00000{word-spacing:5.572800px;}
.wsf2c_c00000{word-spacing:5.573448px;}
.ws156d_c00000{word-spacing:5.579136px;}
.ws16e2_c00000{word-spacing:5.580000px;}
.ws4e7_c00000{word-spacing:5.587200px;}
.ws9c4_c00000{word-spacing:5.594400px;}
.ws72f_c00000{word-spacing:5.601600px;}
.ws1955_c00000{word-spacing:5.603184px;}
.wsf0a_c00000{word-spacing:5.608800px;}
.wsde6_c00000{word-spacing:5.616000px;}
.ws1947_c00000{word-spacing:5.621220px;}
.ws1349_c00000{word-spacing:5.623200px;}
.ws7cc_c00000{word-spacing:5.630400px;}
.ws463_c00000{word-spacing:5.637600px;}
.ws186_c00000{word-spacing:5.644800px;}
.ws1267_c00000{word-spacing:5.645268px;}
.ws2cf_c00000{word-spacing:5.652000px;}
.ws682_c00000{word-spacing:5.659200px;}
.ws53e_c00000{word-spacing:5.666400px;}
.ws13f_c00000{word-spacing:5.673600px;}
.ws9a_c00000{word-spacing:5.680800px;}
.ws165c_c00000{word-spacing:5.685444px;}
.ws71b_c00000{word-spacing:5.688000px;}
.ws165d_c00000{word-spacing:5.692032px;}
.ws18a_c00000{word-spacing:5.695200px;}
.ws185_c00000{word-spacing:5.702400px;}
.ws7aa_c00000{word-spacing:5.709600px;}
.ws13e_c00000{word-spacing:5.716800px;}
.ws1578_c00000{word-spacing:5.717412px;}
.ws2d0_c00000{word-spacing:5.724000px;}
.ws189_c00000{word-spacing:5.731200px;}
.ws4dc_c00000{word-spacing:5.738400px;}
.ws27e_c00000{word-spacing:5.745600px;}
.ws1e6_c00000{word-spacing:5.752800px;}
.ws807_c00000{word-spacing:5.757912px;}
.ws1716_c00000{word-spacing:5.759496px;}
.ws187_c00000{word-spacing:5.760000px;}
.wsda8_c00000{word-spacing:5.764500px;}
.ws4e6_c00000{word-spacing:5.767200px;}
.ws749_c00000{word-spacing:5.771088px;}
.ws1901_c00000{word-spacing:5.771520px;}
.ws8d6_c00000{word-spacing:5.774400px;}
.wse45_c00000{word-spacing:5.777676px;}
.ws76f_c00000{word-spacing:5.781600px;}
.ws470_c00000{word-spacing:5.784264px;}
.wsc4c_c00000{word-spacing:5.788800px;}
.wsf2b_c00000{word-spacing:5.790852px;}
.wsa45_c00000{word-spacing:5.796000px;}
.ws471_c00000{word-spacing:5.797440px;}
.ws72e_c00000{word-spacing:5.803200px;}
.ws4ca_c00000{word-spacing:5.804028px;}
.ws106a_c00000{word-spacing:5.807592px;}
.ws12fa_c00000{word-spacing:5.810400px;}
.ws4f4_c00000{word-spacing:5.810616px;}
.ws748_c00000{word-spacing:5.817204px;}
.ws153a_c00000{word-spacing:5.817600px;}
.ws1603_c00000{word-spacing:5.823792px;}
.ws1280_c00000{word-spacing:5.825628px;}
.ws37b_c00000{word-spacing:5.830380px;}
.ws19ef_c00000{word-spacing:5.832000px;}
.ws808_c00000{word-spacing:5.836968px;}
.wsaf1_c00000{word-spacing:5.839200px;}
.ws49c_c00000{word-spacing:5.850144px;}
.wse2f_c00000{word-spacing:5.853600px;}
.ws1086_c00000{word-spacing:5.855688px;}
.ws17e4_c00000{word-spacing:5.856732px;}
.ws18d8_c00000{word-spacing:5.860800px;}
.ws8f2_c00000{word-spacing:5.868000px;}
.ws1606_c00000{word-spacing:5.869908px;}
.ws1804_c00000{word-spacing:5.875200px;}
.wsf2a_c00000{word-spacing:5.876496px;}
.wsfa8_c00000{word-spacing:5.882400px;}
.ws81e_c00000{word-spacing:5.889600px;}
.ws946_c00000{word-spacing:5.896800px;}
.ws577_c00000{word-spacing:5.904000px;}
.ws322_c00000{word-spacing:5.911200px;}
.ws1403_c00000{word-spacing:5.918400px;}
.wsf29_c00000{word-spacing:5.922612px;}
.ws109f_c00000{word-spacing:5.923800px;}
.ws101_c00000{word-spacing:5.925600px;}
.ws578_c00000{word-spacing:5.932800px;}
.ws1746_c00000{word-spacing:5.933844px;}
.wsb67_c00000{word-spacing:5.940000px;}
.ws8d2_c00000{word-spacing:5.947200px;}
.ws106b_c00000{word-spacing:5.951880px;}
.ws4bf_c00000{word-spacing:5.954400px;}
.ws85d_c00000{word-spacing:5.961600px;}
.wsbeb_c00000{word-spacing:5.968800px;}
.wsfe_c00000{word-spacing:5.976000px;}
.wsa13_c00000{word-spacing:5.983200px;}
.ws829_c00000{word-spacing:5.990400px;}
.wsff_c00000{word-spacing:5.997600px;}
.ws2c2_c00000{word-spacing:6.004800px;}
.ws9ca_c00000{word-spacing:6.012000px;}
.ws84a_c00000{word-spacing:6.019200px;}
.ws260_c00000{word-spacing:6.026400px;}
.ws100_c00000{word-spacing:6.033600px;}
.ws4d2_c00000{word-spacing:6.040800px;}
.ws64c_c00000{word-spacing:6.048000px;}
.ws3b_c00000{word-spacing:6.055200px;}
.ws287_c00000{word-spacing:6.062400px;}
.ws1e7_c00000{word-spacing:6.069600px;}
.ws46c_c00000{word-spacing:6.076800px;}
.ws4c0_c00000{word-spacing:6.084000px;}
.ws6e_c00000{word-spacing:6.091200px;}
.ws350_c00000{word-spacing:6.098400px;}
.ws261_c00000{word-spacing:6.105600px;}
.ws3a_c00000{word-spacing:6.112800px;}
.ws186b_c00000{word-spacing:6.113664px;}
.ws81f_c00000{word-spacing:6.120000px;}
.wsf9d_c00000{word-spacing:6.120252px;}
.ws130a_c00000{word-spacing:6.126228px;}
.ws133_c00000{word-spacing:6.127200px;}
.ws96d_c00000{word-spacing:6.133428px;}
.ws2c1_c00000{word-spacing:6.134400px;}
.ws1750_c00000{word-spacing:6.138252px;}
.wsbde_c00000{word-spacing:6.140016px;}
.ws1e5_c00000{word-spacing:6.141600px;}
.ws451_c00000{word-spacing:6.146604px;}
.wsa1a_c00000{word-spacing:6.148800px;}
.wsf9c_c00000{word-spacing:6.153192px;}
.ws1e4_c00000{word-spacing:6.156000px;}
.ws768_c00000{word-spacing:6.159780px;}
.ws288_c00000{word-spacing:6.163200px;}
.ws42f_c00000{word-spacing:6.166368px;}
.ws8e2_c00000{word-spacing:6.170400px;}
.wsb3a_c00000{word-spacing:6.172956px;}
.ws1721_c00000{word-spacing:6.174324px;}
.ws6f4_c00000{word-spacing:6.177600px;}
.ws450_c00000{word-spacing:6.179544px;}
.ws1309_c00000{word-spacing:6.180336px;}
.ws83f_c00000{word-spacing:6.184800px;}
.ws5f0_c00000{word-spacing:6.186132px;}
.wscd6_c00000{word-spacing:6.192000px;}
.ws14a7_c00000{word-spacing:6.192720px;}
.ws13fa_c00000{word-spacing:6.199200px;}
.wsef6_c00000{word-spacing:6.199308px;}
.ws1a97_c00000{word-spacing:6.204384px;}
.wsf9e_c00000{word-spacing:6.205896px;}
.ws14e8_c00000{word-spacing:6.212484px;}
.wsd03_c00000{word-spacing:6.213600px;}
.ws19c8_c00000{word-spacing:6.220800px;}
.ws1489_c00000{word-spacing:6.228000px;}
.ws1722_c00000{word-spacing:6.228432px;}
.wsc9c_c00000{word-spacing:6.235200px;}
.ws19e8_c00000{word-spacing:6.242400px;}
.ws10c2_c00000{word-spacing:6.246468px;}
.wsdcc_c00000{word-spacing:6.249600px;}
.ws11d0_c00000{word-spacing:6.256800px;}
.ws183a_c00000{word-spacing:6.264000px;}
.ws1100_c00000{word-spacing:6.269400px;}
.ws980_c00000{word-spacing:6.271200px;}
.ws13b7_c00000{word-spacing:6.278400px;}
.wsc53_c00000{word-spacing:6.285600px;}
.ws61f_c00000{word-spacing:6.292800px;}
.ws10ff_c00000{word-spacing:6.296400px;}
.ws48_c00000{word-spacing:6.300000px;}
.ws1720_c00000{word-spacing:6.300576px;}
.ws1387_c00000{word-spacing:6.305796px;}
.ws97f_c00000{word-spacing:6.307200px;}
.ws1449_c00000{word-spacing:6.314400px;}
.ws167_c00000{word-spacing:6.321600px;}
.ws140b_c00000{word-spacing:6.328800px;}
.ws12b1_c00000{word-spacing:6.336000px;}
.ws1412_c00000{word-spacing:6.342660px;}
.ws6d8_c00000{word-spacing:6.343200px;}
.ws12af_c00000{word-spacing:6.350400px;}
.ws166_c00000{word-spacing:6.357600px;}
.wsc00_c00000{word-spacing:6.364800px;}
.ws83_c00000{word-spacing:6.372000px;}
.ws46d_c00000{word-spacing:6.379200px;}
.ws9a5_c00000{word-spacing:6.386400px;}
.ws87e_c00000{word-spacing:6.393600px;}
.ws12a_c00000{word-spacing:6.400800px;}
.ws9bd_c00000{word-spacing:6.408000px;}
.ws1653_c00000{word-spacing:6.410124px;}
.ws6af_c00000{word-spacing:6.415200px;}
.ws874_c00000{word-spacing:6.422400px;}
.ws658_c00000{word-spacing:6.429600px;}
.ws2bd_c00000{word-spacing:6.436800px;}
.ws41f_c00000{word-spacing:6.444000px;}
.ws16f8_c00000{word-spacing:6.449652px;}
.ws4a_c00000{word-spacing:6.451200px;}
.ws129_c00000{word-spacing:6.458400px;}
.ws733_c00000{word-spacing:6.465600px;}
.ws1328_c00000{word-spacing:6.468912px;}
.wsab6_c00000{word-spacing:6.469416px;}
.ws620_c00000{word-spacing:6.472800px;}
.wsab7_c00000{word-spacing:6.476004px;}
.ws32_c00000{word-spacing:6.480000px;}
.ws9a8_c00000{word-spacing:6.482592px;}
.ws1959_c00000{word-spacing:6.486948px;}
.ws9a4_c00000{word-spacing:6.487200px;}
.wsef7_c00000{word-spacing:6.489180px;}
.ws172d_c00000{word-spacing:6.492960px;}
.ws4ec_c00000{word-spacing:6.494400px;}
.ws164a_c00000{word-spacing:6.495768px;}
.ws4eb_c00000{word-spacing:6.501600px;}
.ws1927_c00000{word-spacing:6.502356px;}
.ws49_c00000{word-spacing:6.508800px;}
.ws750_c00000{word-spacing:6.508944px;}
.wsef8_c00000{word-spacing:6.515532px;}
.ws319_c00000{word-spacing:6.516000px;}
.ws18a6_c00000{word-spacing:6.517008px;}
.wsf3f_c00000{word-spacing:6.522120px;}
.wse21_c00000{word-spacing:6.523200px;}
.wsc82_c00000{word-spacing:6.528708px;}
.ws16ee_c00000{word-spacing:6.530400px;}
.ws16d2_c00000{word-spacing:6.535296px;}
.ws1b6_c00000{word-spacing:6.537600px;}
.ws1898_c00000{word-spacing:6.541056px;}
.wscbd_c00000{word-spacing:6.541884px;}
.wsf76_c00000{word-spacing:6.544800px;}
.ws1622_c00000{word-spacing:6.548472px;}
.ws2c_c00000{word-spacing:6.552000px;}
.wsab9_c00000{word-spacing:6.555060px;}
.ws1552_c00000{word-spacing:6.559092px;}
.ws924_c00000{word-spacing:6.559200px;}
.wsf40_c00000{word-spacing:6.561648px;}
.wse61_c00000{word-spacing:6.566400px;}
.ws15b7_c00000{word-spacing:6.568236px;}
.wsa9f_c00000{word-spacing:6.573600px;}
.ws1910_c00000{word-spacing:6.577128px;}
.wsdee_c00000{word-spacing:6.580800px;}
.ws172e_c00000{word-spacing:6.583140px;}
.wsa4c_c00000{word-spacing:6.588000px;}
.wsb7a_c00000{word-spacing:6.595200px;}
.ws623_c00000{word-spacing:6.602400px;}
.ws13bf_c00000{word-spacing:6.609600px;}
.ws13b9_c00000{word-spacing:6.616800px;}
.ws16c5_c00000{word-spacing:6.624000px;}
.ws923_c00000{word-spacing:6.631200px;}
.ws624_c00000{word-spacing:6.638400px;}
.ws190f_c00000{word-spacing:6.643260px;}
.ws146b_c00000{word-spacing:6.645600px;}
.ws2a_c00000{word-spacing:6.652800px;}
.ws1902_c00000{word-spacing:6.655284px;}
.ws55f_c00000{word-spacing:6.660000px;}
.ws102f_c00000{word-spacing:6.661296px;}
.ws8a0_c00000{word-spacing:6.667200px;}
.ws1339_c00000{word-spacing:6.667308px;}
.ws1553_c00000{word-spacing:6.673320px;}
.ws8b5_c00000{word-spacing:6.674400px;}
.wsaa0_c00000{word-spacing:6.688800px;}
.ws1960_c00000{word-spacing:6.691356px;}
.wsdd6_c00000{word-spacing:6.696000px;}
.wsb3e_c00000{word-spacing:6.703200px;}
.ws5db_c00000{word-spacing:6.710400px;}
.wsebc_c00000{word-spacing:6.717600px;}
.ws8b4_c00000{word-spacing:6.724800px;}
.ws56d_c00000{word-spacing:6.732000px;}
.ws299_c00000{word-spacing:6.739200px;}
.ws38b_c00000{word-spacing:6.746400px;}
.ws12b_c00000{word-spacing:6.753600px;}
.ws4b1_c00000{word-spacing:6.760800px;}
.ws27d_c00000{word-spacing:6.768000px;}
.ws1650_c00000{word-spacing:6.772464px;}
.ws80a_c00000{word-spacing:6.775200px;}
.ws5da_c00000{word-spacing:6.782400px;}
.ws1c3_c00000{word-spacing:6.789600px;}
.ws656_c00000{word-spacing:6.796800px;}
.ws2b_c00000{word-spacing:6.804000px;}
.ws1c2_c00000{word-spacing:6.811200px;}
.ws560_c00000{word-spacing:6.818400px;}
.ws1719_c00000{word-spacing:6.823620px;}
.ws298_c00000{word-spacing:6.825600px;}
.ws1628_c00000{word-spacing:6.831756px;}
.ws13d_c00000{word-spacing:6.832800px;}
.ws7f7_c00000{word-spacing:6.838344px;}
.ws50e_c00000{word-spacing:6.840000px;}
.ws6f9_c00000{word-spacing:6.844932px;}
.ws13c_c00000{word-spacing:6.847200px;}
.ws15d7_c00000{word-spacing:6.851520px;}
.ws3ae_c00000{word-spacing:6.854400px;}
.ws459_c00000{word-spacing:6.858108px;}
.ws1580_c00000{word-spacing:6.859692px;}
.ws4b4_c00000{word-spacing:6.861600px;}
.ws458_c00000{word-spacing:6.864696px;}
.wsb3d_c00000{word-spacing:6.868800px;}
.ws15da_c00000{word-spacing:6.871284px;}
.wsddc_c00000{word-spacing:6.876000px;}
.ws3e5_c00000{word-spacing:6.877872px;}
.ws657_c00000{word-spacing:6.883200px;}
.wscd0_c00000{word-spacing:6.884460px;}
.ws790_c00000{word-spacing:6.890400px;}
.wsab0_c00000{word-spacing:6.891048px;}
.wseb3_c00000{word-spacing:6.897600px;}
.ws3e6_c00000{word-spacing:6.897636px;}
.ws114b_c00000{word-spacing:6.901776px;}
.ws778_c00000{word-spacing:6.904224px;}
.ws1298_c00000{word-spacing:6.904800px;}
.ws976_c00000{word-spacing:6.910812px;}
.ws21e_c00000{word-spacing:6.912000px;}
.ws119f_c00000{word-spacing:6.913800px;}
.wsc5f_c00000{word-spacing:6.919200px;}
.ws1302_c00000{word-spacing:6.919812px;}
.wsf3e_c00000{word-spacing:6.923988px;}
.ws1875_c00000{word-spacing:6.926400px;}
.ws1908_c00000{word-spacing:6.931836px;}
.ws17d0_c00000{word-spacing:6.933600px;}
.ws1178_c00000{word-spacing:6.937848px;}
.ws117c_c00000{word-spacing:6.940800px;}
.ws114a_c00000{word-spacing:6.943860px;}
.ws813_c00000{word-spacing:6.948000px;}
.ws1ae8_c00000{word-spacing:6.949872px;}
.ws19c4_c00000{word-spacing:6.950340px;}
.ws90b_c00000{word-spacing:6.955200px;}
.ws1299_c00000{word-spacing:6.962400px;}
.ws1433_c00000{word-spacing:6.976800px;}
.wsf32_c00000{word-spacing:6.984000px;}
.ws906_c00000{word-spacing:6.991200px;}
.ws19d9_c00000{word-spacing:6.998400px;}
.wsb44_c00000{word-spacing:7.005600px;}
.wsbfa_c00000{word-spacing:7.009632px;}
.wsc8e_c00000{word-spacing:7.012800px;}
.wscc4_c00000{word-spacing:7.020000px;}
.ws371_c00000{word-spacing:7.027200px;}
.ws1388_c00000{word-spacing:7.033572px;}
.wsb43_c00000{word-spacing:7.034400px;}
.ws9f5_c00000{word-spacing:7.041600px;}
.wscd9_c00000{word-spacing:7.048800px;}
.ws814_c00000{word-spacing:7.056000px;}
.ws622_c00000{word-spacing:7.063200px;}
.ws16a2_c00000{word-spacing:7.070400px;}
.ws489_c00000{word-spacing:7.077600px;}
.ws15e_c00000{word-spacing:7.084800px;}
.ws4a4_c00000{word-spacing:7.092000px;}
.ws4fd_c00000{word-spacing:7.099200px;}
.ws4d1_c00000{word-spacing:7.106400px;}
.ws40e_c00000{word-spacing:7.113600px;}
.ws1651_c00000{word-spacing:7.115040px;}
.ws875_c00000{word-spacing:7.120800px;}
.wsb28_c00000{word-spacing:7.128000px;}
.wscad_c00000{word-spacing:7.135200px;}
.ws4d0_c00000{word-spacing:7.142400px;}
.ws758_c00000{word-spacing:7.149600px;}
.ws40d_c00000{word-spacing:7.156800px;}
.ws4a5_c00000{word-spacing:7.164000px;}
.ws6bc_c00000{word-spacing:7.171200px;}
.ws19cc_c00000{word-spacing:7.174332px;}
.ws26e_c00000{word-spacing:7.178400px;}
.ws7af_c00000{word-spacing:7.180920px;}
.ws115_c00000{word-spacing:7.185600px;}
.ws39_c00000{word-spacing:7.192800px;}
.ws191e_c00000{word-spacing:7.196364px;}
.ws38_c00000{word-spacing:7.200000px;}
.wsb45_c00000{word-spacing:7.207200px;}
.ws11c6_c00000{word-spacing:7.207272px;}
.ws9e8_c00000{word-spacing:7.214400px;}
.ws3e3_c00000{word-spacing:7.220448px;}
.wsd6d_c00000{word-spacing:7.221600px;}
.ws1503_c00000{word-spacing:7.227036px;}
.ws4fc_c00000{word-spacing:7.228800px;}
.ws3e4_c00000{word-spacing:7.233624px;}
.wscc0_c00000{word-spacing:7.236000px;}
.ws65f_c00000{word-spacing:7.240212px;}
.ws133f_c00000{word-spacing:7.244460px;}
.ws5bf_c00000{word-spacing:7.246800px;}
.ws8de_c00000{word-spacing:7.250400px;}
.ws415_c00000{word-spacing:7.253388px;}
.ws4ef_c00000{word-spacing:7.259976px;}
.ws194f_c00000{word-spacing:7.262496px;}
.wsb27_c00000{word-spacing:7.264800px;}
.ws15ff_c00000{word-spacing:7.266564px;}
.ws18d5_c00000{word-spacing:7.272000px;}
.ws660_c00000{word-spacing:7.273152px;}
.ws162c_c00000{word-spacing:7.279740px;}
.ws6f5_c00000{word-spacing:7.286400px;}
.ws1128_c00000{word-spacing:7.292556px;}
.ws1488_c00000{word-spacing:7.293600px;}
.ws1085_c00000{word-spacing:7.298568px;}
.ws16f5_c00000{word-spacing:7.299504px;}
.ws62b_c00000{word-spacing:7.300800px;}
.ws162b_c00000{word-spacing:7.306092px;}
.ws10f5_c00000{word-spacing:7.306200px;}
.ws1ac1_c00000{word-spacing:7.322400px;}
.ws1950_c00000{word-spacing:7.322616px;}
.ws265_c00000{word-spacing:7.329600px;}
.ws761_c00000{word-spacing:7.336800px;}
.ws18a1_c00000{word-spacing:7.340652px;}
.ws1a25_c00000{word-spacing:7.344000px;}
.ws10a2_c00000{word-spacing:7.349400px;}
.ws565_c00000{word-spacing:7.351200px;}
.ws1995_c00000{word-spacing:7.358400px;}
.ws6ab_c00000{word-spacing:7.365600px;}
.ws7a2_c00000{word-spacing:7.372800px;}
.ws873_c00000{word-spacing:7.380000px;}
.ws1463_c00000{word-spacing:7.387200px;}
.wsf5a_c00000{word-spacing:7.394400px;}
.ws18c2_c00000{word-spacing:7.394760px;}
.ws10f6_c00000{word-spacing:7.398000px;}
.ws82c_c00000{word-spacing:7.401600px;}
.ws124b_c00000{word-spacing:7.406784px;}
.ws7a4_c00000{word-spacing:7.408800px;}
.ws18a0_c00000{word-spacing:7.412796px;}
.ws264_c00000{word-spacing:7.416000px;}
.ws2e1_c00000{word-spacing:7.423200px;}
.ws40c_c00000{word-spacing:7.430400px;}
.ws725_c00000{word-spacing:7.437600px;}
.ws619_c00000{word-spacing:7.444800px;}
.ws1117_c00000{word-spacing:7.448868px;}
.ws564_c00000{word-spacing:7.452000px;}
.wsc3e_c00000{word-spacing:7.459200px;}
.ws65c_c00000{word-spacing:7.466400px;}
.ws726_c00000{word-spacing:7.473600px;}
.wse2_c00000{word-spacing:7.480800px;}
.ws17d_c00000{word-spacing:7.488000px;}
.ws6de_c00000{word-spacing:7.495200px;}
.wse3_c00000{word-spacing:7.502400px;}
.ws5fe_c00000{word-spacing:7.509600px;}
.ws7a3_c00000{word-spacing:7.516800px;}
.ws60e_c00000{word-spacing:7.523496px;}
.ws6a6_c00000{word-spacing:7.524000px;}
.ws62a_c00000{word-spacing:7.531200px;}
.ws2be_c00000{word-spacing:7.538400px;}
.ws1556_c00000{word-spacing:7.545060px;}
.ws2e0_c00000{word-spacing:7.545600px;}
.ws872_c00000{word-spacing:7.552800px;}
.ws83e_c00000{word-spacing:7.560000px;}
.ws60d_c00000{word-spacing:7.563024px;}
.wsfec_c00000{word-spacing:7.563096px;}
.ws6dd_c00000{word-spacing:7.567200px;}
.wse89_c00000{word-spacing:7.569108px;}
.wsac8_c00000{word-spacing:7.569612px;}
.wse49_c00000{word-spacing:7.574400px;}
.ws7ce_c00000{word-spacing:7.576200px;}
.ws17c_c00000{word-spacing:7.581600px;}
.wsbe4_c00000{word-spacing:7.582788px;}
.ws65b_c00000{word-spacing:7.588800px;}
.wsc7d_c00000{word-spacing:7.589376px;}
.ws18fb_c00000{word-spacing:7.593156px;}
.wsccf_c00000{word-spacing:7.595964px;}
.wsa80_c00000{word-spacing:7.596000px;}
.ws1517_c00000{word-spacing:7.602552px;}
.ws5d4_c00000{word-spacing:7.603200px;}
.ws37d_c00000{word-spacing:7.609140px;}
.wsff9_c00000{word-spacing:7.610400px;}
.wsc72_c00000{word-spacing:7.615728px;}
.ws37c_c00000{word-spacing:7.622316px;}
.ws961_c00000{word-spacing:7.624800px;}
.ws7d2_c00000{word-spacing:7.628904px;}
.ws18fa_c00000{word-spacing:7.629228px;}
.wsed3_c00000{word-spacing:7.632000px;}
.ws1919_c00000{word-spacing:7.635240px;}
.ws15d5_c00000{word-spacing:7.635492px;}
.ws5ff_c00000{word-spacing:7.639200px;}
.ws1a99_c00000{word-spacing:7.641252px;}
.ws375_c00000{word-spacing:7.646400px;}
.ws14e5_c00000{word-spacing:7.648668px;}
.ws117b_c00000{word-spacing:7.657200px;}
.wsfbc_c00000{word-spacing:7.659288px;}
.ws43f_c00000{word-spacing:7.660800px;}
.ws155f_c00000{word-spacing:7.665300px;}
.ws10d1_c00000{word-spacing:7.668000px;}
.ws1013_c00000{word-spacing:7.682400px;}
.ws174a_c00000{word-spacing:7.683336px;}
.ws15a8_c00000{word-spacing:7.689600px;}
.wsbef_c00000{word-spacing:7.696800px;}
.ws1a23_c00000{word-spacing:7.704000px;}
.wsdc2_c00000{word-spacing:7.711200px;}
.ws1073_c00000{word-spacing:7.716600px;}
.ws12bf_c00000{word-spacing:7.718400px;}
.ws1072_c00000{word-spacing:7.727400px;}
.ws1572_c00000{word-spacing:7.731432px;}
.ws5e1_c00000{word-spacing:7.732800px;}
.ws1431_c00000{word-spacing:7.740000px;}
.ws19e_c00000{word-spacing:7.747200px;}
.ws1918_c00000{word-spacing:7.749468px;}
.ws855_c00000{word-spacing:7.754400px;}
.wsfff_c00000{word-spacing:7.761600px;}
.ws8c8_c00000{word-spacing:7.768800px;}
.wsbf0_c00000{word-spacing:7.776000px;}
.ws35_c00000{word-spacing:7.783200px;}
.ws8c9_c00000{word-spacing:7.790400px;}
.ws1718_c00000{word-spacing:7.791552px;}
.wsc23_c00000{word-spacing:7.797600px;}
.ws6d5_c00000{word-spacing:7.804800px;}
.ws39a_c00000{word-spacing:7.812000px;}
.ws925_c00000{word-spacing:7.819200px;}
.ws19f_c00000{word-spacing:7.826400px;}
.ws157_c00000{word-spacing:7.833600px;}
.ws224_c00000{word-spacing:7.840800px;}
.ws158_c00000{word-spacing:7.848000px;}
.wsa1b_c00000{word-spacing:7.855200px;}
.ws225_c00000{word-spacing:7.862400px;}
.ws73c_c00000{word-spacing:7.869600px;}
.ws1b0_c00000{word-spacing:7.876800px;}
.ws37_c00000{word-spacing:7.884000px;}
.ws1af_c00000{word-spacing:7.891200px;}
.ws39b_c00000{word-spacing:7.898400px;}
.ws1177_c00000{word-spacing:7.899768px;}
.ws5aa_c00000{word-spacing:7.905600px;}
.ws155e_c00000{word-spacing:7.911792px;}
.ws1a0_c00000{word-spacing:7.912800px;}
.ws64b_c00000{word-spacing:7.920000px;}
.ws1129_c00000{word-spacing:7.923816px;}
.ws19aa_c00000{word-spacing:7.925364px;}
.ws36_c00000{word-spacing:7.927200px;}
.ws6b0_c00000{word-spacing:7.934400px;}
.wsa59_c00000{word-spacing:7.938540px;}
.ws377_c00000{word-spacing:7.941600px;}
.ws6fb_c00000{word-spacing:7.945128px;}
.ws83c_c00000{word-spacing:7.948800px;}
.ws1209_c00000{word-spacing:7.951716px;}
.ws376_c00000{word-spacing:7.956000px;}
.ws805_c00000{word-spacing:7.958304px;}
.ws5d3_c00000{word-spacing:7.963200px;}
.ws9c7_c00000{word-spacing:7.964892px;}
.wsc5d_c00000{word-spacing:7.970400px;}
.ws1201_c00000{word-spacing:7.971480px;}
.ws133e_c00000{word-spacing:7.971912px;}
.ws1534_c00000{word-spacing:7.977600px;}
.ws1208_c00000{word-spacing:7.978068px;}
.ws3dc_c00000{word-spacing:7.984656px;}
.ws583_c00000{word-spacing:7.991244px;}
.ws9be_c00000{word-spacing:7.992000px;}
.wsf93_c00000{word-spacing:7.997832px;}
.wsbdd_c00000{word-spacing:8.004420px;}
.ws1604_c00000{word-spacing:8.011008px;}
.wse37_c00000{word-spacing:8.013600px;}
.wsbab_c00000{word-spacing:8.017596px;}
.ws99d_c00000{word-spacing:8.020800px;}
.wsd6c_c00000{word-spacing:8.028000px;}
.wsf62_c00000{word-spacing:8.042400px;}
.ws541_c00000{word-spacing:8.049600px;}
.ws30c_c00000{word-spacing:8.056800px;}
.wsfad_c00000{word-spacing:8.064000px;}
.ws9c2_c00000{word-spacing:8.071200px;}
.ws368_c00000{word-spacing:8.078400px;}
.ws542_c00000{word-spacing:8.085600px;}
.ws10bf_c00000{word-spacing:8.089200px;}
.ws303_c00000{word-spacing:8.092800px;}
.ws1243_c00000{word-spacing:8.098164px;}
.ws34d_c00000{word-spacing:8.100000px;}
.ws199_c00000{word-spacing:8.107200px;}
.ws670_c00000{word-spacing:8.114400px;}
.ws110f_c00000{word-spacing:8.116200px;}
.ws13d6_c00000{word-spacing:8.121600px;}
.ws1274_c00000{word-spacing:8.122212px;}
.wsafe_c00000{word-spacing:8.128800px;}
.ws8ae_c00000{word-spacing:8.136000px;}
.wsf03_c00000{word-spacing:8.143200px;}
.ws112b_c00000{word-spacing:8.146260px;}
.ws197_c00000{word-spacing:8.150400px;}
.wsafd_c00000{word-spacing:8.157600px;}
.ws69a_c00000{word-spacing:8.164800px;}
.ws69b_c00000{word-spacing:8.172000px;}
.ws30d_c00000{word-spacing:8.179200px;}
.ws34e_c00000{word-spacing:8.186400px;}
.wsaa1_c00000{word-spacing:8.193600px;}
.ws43e_c00000{word-spacing:8.200800px;}
.ws35f_c00000{word-spacing:8.208000px;}
.ws302_c00000{word-spacing:8.215200px;}
.ws306_c00000{word-spacing:8.222400px;}
.ws5a7_c00000{word-spacing:8.229600px;}
.ws33d_c00000{word-spacing:8.236800px;}
.ws394_c00000{word-spacing:8.244000px;}
.ws42a_c00000{word-spacing:8.251200px;}
.ws1aec_c00000{word-spacing:8.254476px;}
.ws333_c00000{word-spacing:8.258400px;}
.ws332_c00000{word-spacing:8.265600px;}
.wsd8a_c00000{word-spacing:8.272512px;}
.ws307_c00000{word-spacing:8.272800px;}
.ws1747_c00000{word-spacing:8.278524px;}
.ws691_c00000{word-spacing:8.280000px;}
.ws11fb_c00000{word-spacing:8.281116px;}
.ws360_c00000{word-spacing:8.287200px;}
.wse00_c00000{word-spacing:8.287704px;}
.wsf3d_c00000{word-spacing:8.294292px;}
.wsd6b_c00000{word-spacing:8.294400px;}
.ws9c6_c00000{word-spacing:8.300880px;}
.ws145f_c00000{word-spacing:8.301600px;}
.ws190d_c00000{word-spacing:8.302572px;}
.wsff5_c00000{word-spacing:8.307468px;}
.ws1565_c00000{word-spacing:8.308584px;}
.ws198_c00000{word-spacing:8.308800px;}
.ws507_c00000{word-spacing:8.314056px;}
.ws692_c00000{word-spacing:8.316000px;}
.ws665_c00000{word-spacing:8.320644px;}
.ws715_c00000{word-spacing:8.323200px;}
.ws7d7_c00000{word-spacing:8.327232px;}
.ws964_c00000{word-spacing:8.330400px;}
.ws162d_c00000{word-spacing:8.333820px;}
.ws690_c00000{word-spacing:8.337600px;}
.ws606_c00000{word-spacing:8.340408px;}
.ws149a_c00000{word-spacing:8.344800px;}
.wsff4_c00000{word-spacing:8.346996px;}
.ws7cf_c00000{word-spacing:8.353584px;}
.ws1ae3_c00000{word-spacing:8.356680px;}
.ws508_c00000{word-spacing:8.360172px;}
.ws1115_c00000{word-spacing:8.362692px;}
.ws1632_c00000{word-spacing:8.366400px;}
.ws14f8_c00000{word-spacing:8.373348px;}
.ws66a_c00000{word-spacing:8.373600px;}
.wsaa2_c00000{word-spacing:8.380800px;}
.wsd8b_c00000{word-spacing:8.386740px;}
.ws9b2_c00000{word-spacing:8.395200px;}
.ws1455_c00000{word-spacing:8.409600px;}
.wscf5_c00000{word-spacing:8.416800px;}
.ws1748_c00000{word-spacing:8.422812px;}
.wscd8_c00000{word-spacing:8.424000px;}
.ws1004_c00000{word-spacing:8.431200px;}
.wsce6_c00000{word-spacing:8.438400px;}
.ws6ac_c00000{word-spacing:8.445600px;}
.ws61b_c00000{word-spacing:8.452800px;}
.ws26b_c00000{word-spacing:8.460000px;}
.ws8d5_c00000{word-spacing:8.467200px;}
.ws92_c00000{word-spacing:8.481600px;}
.ws66b_c00000{word-spacing:8.488800px;}
.ws2e9_c00000{word-spacing:8.496000px;}
.ws321_c00000{word-spacing:8.503200px;}
.ws283_c00000{word-spacing:8.510400px;}
.ws285_c00000{word-spacing:8.517600px;}
.ws2af_c00000{word-spacing:8.524800px;}
.ws286_c00000{word-spacing:8.532000px;}
.ws93_c00000{word-spacing:8.539200px;}
.ws91_c00000{word-spacing:8.546400px;}
.ws206_c00000{word-spacing:8.553600px;}
.ws205_c00000{word-spacing:8.560800px;}
.wsfd_c00000{word-spacing:8.568000px;}
.ws61a_c00000{word-spacing:8.575200px;}
.ws9f0_c00000{word-spacing:8.582400px;}
.ws26c_c00000{word-spacing:8.589600px;}
.ws2f7_c00000{word-spacing:8.596800px;}
.ws320_c00000{word-spacing:8.604000px;}
.ws31e_c00000{word-spacing:8.611200px;}
.ws2f8_c00000{word-spacing:8.618400px;}
.ws131a_c00000{word-spacing:8.621208px;}
.ws50b_c00000{word-spacing:8.625600px;}
.ws53a_c00000{word-spacing:8.632800px;}
.ws561_c00000{word-spacing:8.640000px;}
.wscb4_c00000{word-spacing:8.643456px;}
.ws1793_c00000{word-spacing:8.645256px;}
.ws2b6_c00000{word-spacing:8.647200px;}
.ws14c6_c00000{word-spacing:8.654400px;}
.ws16d4_c00000{word-spacing:8.656632px;}
.wse64_c00000{word-spacing:8.661600px;}
.ws8e9_c00000{word-spacing:8.663220px;}
.ws6d4_c00000{word-spacing:8.668800px;}
.ws44c_c00000{word-spacing:8.669808px;}
.ws757_c00000{word-spacing:8.676000px;}
.wscb5_c00000{word-spacing:8.676396px;}
.ws7b3_c00000{word-spacing:8.682984px;}
.wsfc_c00000{word-spacing:8.683200px;}
.ws435_c00000{word-spacing:8.689572px;}
.wsb1e_c00000{word-spacing:8.690400px;}
.ws436_c00000{word-spacing:8.696160px;}
.ws16a4_c00000{word-spacing:8.697600px;}
.ws1269_c00000{word-spacing:8.699364px;}
.ws44b_c00000{word-spacing:8.702748px;}
.ws1496_c00000{word-spacing:8.704800px;}
.ws1854_c00000{word-spacing:8.709336px;}
.ws1874_c00000{word-spacing:8.712000px;}
.ws13ca_c00000{word-spacing:8.719200px;}
.wsf3b_c00000{word-spacing:8.722512px;}
.ws17d1_c00000{word-spacing:8.726400px;}
.ws47e_c00000{word-spacing:8.729100px;}
.ws11ac_c00000{word-spacing:8.729424px;}
.ws1727_c00000{word-spacing:8.735436px;}
.ws44d_c00000{word-spacing:8.735688px;}
.wsf27_c00000{word-spacing:8.740800px;}
.ws1726_c00000{word-spacing:8.741448px;}
.ws1187_c00000{word-spacing:8.747460px;}
.ws112c_c00000{word-spacing:8.753472px;}
.ws1800_c00000{word-spacing:8.762400px;}
.ws10cb_c00000{word-spacing:8.764200px;}
.ws112d_c00000{word-spacing:8.765496px;}
.ws185a_c00000{word-spacing:8.769600px;}
.ws1adf_c00000{word-spacing:8.771508px;}
.wscf7_c00000{word-spacing:8.776800px;}
.ws197b_c00000{word-spacing:8.784000px;}
.ws12cd_c00000{word-spacing:8.791200px;}
.ws10cc_c00000{word-spacing:8.796600px;}
.ws1226_c00000{word-spacing:8.798400px;}
.wsf19_c00000{word-spacing:8.805600px;}
.wsd4f_c00000{word-spacing:8.812800px;}
.wsa60_c00000{word-spacing:8.820000px;}
.ws1d2_c00000{word-spacing:8.827200px;}
.ws841_c00000{word-spacing:8.834400px;}
.wsc38_c00000{word-spacing:8.848800px;}
.ws1d0_c00000{word-spacing:8.856000px;}
.ws8b0_c00000{word-spacing:8.863200px;}
.ws9cc_c00000{word-spacing:8.870400px;}
.wsba1_c00000{word-spacing:8.877600px;}
.ws90c_c00000{word-spacing:8.884800px;}
.ws5d9_c00000{word-spacing:8.892000px;}
.ws3ca_c00000{word-spacing:8.899200px;}
.ws8af_c00000{word-spacing:8.906400px;}
.ws1d1_c00000{word-spacing:8.913600px;}
.wsb2c_c00000{word-spacing:8.920800px;}
.ws76e_c00000{word-spacing:8.928000px;}
.ws1c7_c00000{word-spacing:8.935200px;}
.ws8f_c00000{word-spacing:8.942400px;}
.ws673_c00000{word-spacing:8.949600px;}
.ws9a7_c00000{word-spacing:8.956800px;}
.wsb29_c00000{word-spacing:8.964000px;}
.ws398_c00000{word-spacing:8.971200px;}
.ws90_c00000{word-spacing:8.978400px;}
.ws1157_c00000{word-spacing:8.981928px;}
.ws1c8_c00000{word-spacing:8.985600px;}
.ws151f_c00000{word-spacing:8.986032px;}
.ws6f2_c00000{word-spacing:8.992800px;}
.ws16e4_c00000{word-spacing:8.999208px;}
.ws1179_c00000{word-spacing:8.999964px;}
.wsb18_c00000{word-spacing:9.000000px;}
.ws868_c00000{word-spacing:9.005796px;}
.ws397_c00000{word-spacing:9.007200px;}
.ws1767_c00000{word-spacing:9.012384px;}
.wsf1a_c00000{word-spacing:9.014400px;}
.ws3e2_c00000{word-spacing:9.018972px;}
.ws3c9_c00000{word-spacing:9.021600px;}
.wse05_c00000{word-spacing:9.025560px;}
.wsf26_c00000{word-spacing:9.028800px;}
.ws58e_c00000{word-spacing:9.032148px;}
.ws3c8_c00000{word-spacing:9.036000px;}
.ws869_c00000{word-spacing:9.038736px;}
.ws3e1_c00000{word-spacing:9.045324px;}
.wsf37_c00000{word-spacing:9.050400px;}
.wsbac_c00000{word-spacing:9.051912px;}
.wsf28_c00000{word-spacing:9.057600px;}
.ws58f_c00000{word-spacing:9.058500px;}
.ws399_c00000{word-spacing:9.064800px;}
.ws15bf_c00000{word-spacing:9.065088px;}
.ws84b_c00000{word-spacing:9.071676px;}
.wsabe_c00000{word-spacing:9.078264px;}
.wsd18_c00000{word-spacing:9.086400px;}
.ws199f_c00000{word-spacing:9.098028px;}
.wsc8b_c00000{word-spacing:9.100800px;}
.ws10b9_c00000{word-spacing:9.102168px;}
.ws68e_c00000{word-spacing:9.108000px;}
.ws1a28_c00000{word-spacing:9.115200px;}
.wsecd_c00000{word-spacing:9.122400px;}
.ws10ba_c00000{word-spacing:9.126216px;}
.ws69d_c00000{word-spacing:9.129600px;}
.ws10e5_c00000{word-spacing:9.136800px;}
.wsb4d_c00000{word-spacing:9.144000px;}
.wsd17_c00000{word-spacing:9.151200px;}
.wsd3b_c00000{word-spacing:9.158400px;}
.wsbaf_c00000{word-spacing:9.165600px;}
.ws10e6_c00000{word-spacing:9.169200px;}
.wscbe_c00000{word-spacing:9.172800px;}
.ws756_c00000{word-spacing:9.180000px;}
.wsb4c_c00000{word-spacing:9.187200px;}
.ws1152_c00000{word-spacing:9.192348px;}
.wsd70_c00000{word-spacing:9.194400px;}
.wsbae_c00000{word-spacing:9.201600px;}
.ws172b_c00000{word-spacing:9.204372px;}
.ws915_c00000{word-spacing:9.208800px;}
.wsa49_c00000{word-spacing:9.216000px;}
.ws2d_c00000{word-spacing:9.223200px;}
.ws7e9_c00000{word-spacing:9.230400px;}
.ws39e_c00000{word-spacing:9.237600px;}
.ws6b2_c00000{word-spacing:9.244800px;}
.ws721_c00000{word-spacing:9.252000px;}
.ws1199_c00000{word-spacing:9.258480px;}
.ws755_c00000{word-spacing:9.259200px;}
.ws2e3_c00000{word-spacing:9.266400px;}
.ws6c1_c00000{word-spacing:9.269316px;}
.ws9f_c00000{word-spacing:9.273600px;}
.ws2e2_c00000{word-spacing:9.280800px;}
.ws69e_c00000{word-spacing:9.288000px;}
.ws2fa_c00000{word-spacing:9.295200px;}
.wse60_c00000{word-spacing:9.302400px;}
.ws236_c00000{word-spacing:9.309600px;}
.ws39f_c00000{word-spacing:9.316800px;}
.wsa0_c00000{word-spacing:9.324000px;}
.wsc3f_c00000{word-spacing:9.331200px;}
.ws150_c00000{word-spacing:9.338400px;}
.ws2f9_c00000{word-spacing:9.345600px;}
.wsbe2_c00000{word-spacing:9.348372px;}
.ws235_c00000{word-spacing:9.352800px;}
.ws16fc_c00000{word-spacing:9.354960px;}
.ws916_c00000{word-spacing:9.360000px;}
.ws151_c00000{word-spacing:9.367200px;}
.ws87b_c00000{word-spacing:9.374400px;}
.wsf83_c00000{word-spacing:9.374724px;}
.ws1941_c00000{word-spacing:9.378720px;}
.ws1601_c00000{word-spacing:9.381312px;}
.ws419_c00000{word-spacing:9.381600px;}
.ws1244_c00000{word-spacing:9.384732px;}
.ws70f_c00000{word-spacing:9.387900px;}
.ws2e_c00000{word-spacing:9.388800px;}
.wsb4e_c00000{word-spacing:9.396000px;}
.ws1087_c00000{word-spacing:9.396756px;}
.ws121e_c00000{word-spacing:9.401076px;}
.wsef1_c00000{word-spacing:9.403200px;}
.ws771_c00000{word-spacing:9.407664px;}
.ws14b6_c00000{word-spacing:9.410400px;}
.wsda4_c00000{word-spacing:9.414252px;}
.ws1581_c00000{word-spacing:9.417600px;}
.ws504_c00000{word-spacing:9.420840px;}
.wsa1_c00000{word-spacing:9.424800px;}
.ws1635_c00000{word-spacing:9.427428px;}
.ws1a41_c00000{word-spacing:9.432000px;}
.ws503_c00000{word-spacing:9.434016px;}
.ws14ce_c00000{word-spacing:9.439200px;}
.ws1222_c00000{word-spacing:9.440604px;}
.ws3bc_c00000{word-spacing:9.446400px;}
.ws11ad_c00000{word-spacing:9.456876px;}
.ws13e8_c00000{word-spacing:9.460800px;}
.ws3a1_c00000{word-spacing:9.468000px;}
.wsc4a_c00000{word-spacing:9.475200px;}
.ws1576_c00000{word-spacing:9.480924px;}
.wsf60_c00000{word-spacing:9.482400px;}
.ws718_c00000{word-spacing:9.489600px;}
.ws11ae_c00000{word-spacing:9.492948px;}
.ws16d6_c00000{word-spacing:9.493308px;}
.ws173_c00000{word-spacing:9.496800px;}
.ws144f_c00000{word-spacing:9.504000px;}
.ws147_c00000{word-spacing:9.511200px;}
.ws1a5f_c00000{word-spacing:9.518400px;}
.ws796_c00000{word-spacing:9.525600px;}
.wsc49_c00000{word-spacing:9.532800px;}
.ws17f4_c00000{word-spacing:9.540000px;}
.ws13f3_c00000{word-spacing:9.547200px;}
.wsba5_c00000{word-spacing:9.554400px;}
.wsfa9_c00000{word-spacing:9.561600px;}
.ws32b_c00000{word-spacing:9.568800px;}
.ws1132_c00000{word-spacing:9.571104px;}
.wsde9_c00000{word-spacing:9.576000px;}
.ws22b_c00000{word-spacing:9.583200px;}
.wsba6_c00000{word-spacing:9.590400px;}
.ws3bb_c00000{word-spacing:9.597600px;}
.ws1c6_c00000{word-spacing:9.604800px;}
.ws140f_c00000{word-spacing:9.607176px;}
.ws146_c00000{word-spacing:9.612000px;}
.ws3f7_c00000{word-spacing:9.619200px;}
.ws3a0_c00000{word-spacing:9.626400px;}
.ws22c_c00000{word-spacing:9.633600px;}
.ws7e8_c00000{word-spacing:9.640800px;}
.ws173a_c00000{word-spacing:9.643248px;}
.ws1c5_c00000{word-spacing:9.648000px;}
.ws5d1_c00000{word-spacing:9.655200px;}
.wscba_c00000{word-spacing:9.662400px;}
.ws75c_c00000{word-spacing:9.669600px;}
.ws11d_c00000{word-spacing:9.676800px;}
.ws5d0_c00000{word-spacing:9.684000px;}
.ws11e_c00000{word-spacing:9.691200px;}
.ws172_c00000{word-spacing:9.698400px;}
.wsac0_c00000{word-spacing:9.704124px;}
.ws8ad_c00000{word-spacing:9.705600px;}
.ws32c_c00000{word-spacing:9.712800px;}
.wsce2_c00000{word-spacing:9.717300px;}
.ws719_c00000{word-spacing:9.720000px;}
.wsac1_c00000{word-spacing:9.723888px;}
.ws839_c00000{word-spacing:9.727200px;}
.ws8ec_c00000{word-spacing:9.730476px;}
.ws32d_c00000{word-spacing:9.734400px;}
.ws6c0_c00000{word-spacing:9.737064px;}
.ws1311_c00000{word-spacing:9.739440px;}
.wsa0f_c00000{word-spacing:9.741600px;}
.wsd74_c00000{word-spacing:9.743652px;}
.ws168f_c00000{word-spacing:9.745452px;}
.ws145_c00000{word-spacing:9.748800px;}
.ws780_c00000{word-spacing:9.750240px;}
.ws33f_c00000{word-spacing:9.756000px;}
.wsac2_c00000{word-spacing:9.756828px;}
.ws1313_c00000{word-spacing:9.757476px;}
.wsd6a_c00000{word-spacing:9.763200px;}
.ws76a_c00000{word-spacing:9.763416px;}
.wse84_c00000{word-spacing:9.770004px;}
.wsea0_c00000{word-spacing:9.770400px;}
.ws6c2_c00000{word-spacing:9.776592px;}
.ws3a2_c00000{word-spacing:9.777600px;}
.wse73_c00000{word-spacing:9.783180px;}
.ws1135_c00000{word-spacing:9.787536px;}
.ws1665_c00000{word-spacing:9.789768px;}
.wsa10_c00000{word-spacing:9.792000px;}
.ws15ee_c00000{word-spacing:9.796356px;}
.ws1121_c00000{word-spacing:9.811584px;}
.wsf24_c00000{word-spacing:9.813600px;}
.ws12c5_c00000{word-spacing:9.820800px;}
.ws193f_c00000{word-spacing:9.823608px;}
.ws1461_c00000{word-spacing:9.835200px;}
.ws1134_c00000{word-spacing:9.835632px;}
.ws11aa_c00000{word-spacing:9.841644px;}
.wse63_c00000{word-spacing:9.842400px;}
.ws11a9_c00000{word-spacing:9.847656px;}
.ws16bf_c00000{word-spacing:9.849600px;}
.wsb1c_c00000{word-spacing:9.856800px;}
.ws10b3_c00000{word-spacing:9.860400px;}
.ws14ac_c00000{word-spacing:9.864000px;}
.ws15bd_c00000{word-spacing:9.871200px;}
.ws1a92_c00000{word-spacing:9.878400px;}
.ws1a5e_c00000{word-spacing:9.885600px;}
.ws179c_c00000{word-spacing:9.887220px;}
.ws231_c00000{word-spacing:9.892800px;}
.wsea_c00000{word-spacing:9.900000px;}
.ws1739_c00000{word-spacing:9.901764px;}
.ws179e_c00000{word-spacing:9.906372px;}
.ws112_c00000{word-spacing:9.907200px;}
.ws628_c00000{word-spacing:9.914400px;}
.ws179d_c00000{word-spacing:9.915948px;}
.wsc8f_c00000{word-spacing:9.921600px;}
.ws14c7_c00000{word-spacing:9.928800px;}
.ws699_c00000{word-spacing:9.936000px;}
.ws698_c00000{word-spacing:9.943200px;}
.ws131b_c00000{word-spacing:9.943848px;}
.wsb1d_c00000{word-spacing:9.950400px;}
.wsa4d_c00000{word-spacing:9.957600px;}
.wse68_c00000{word-spacing:9.964800px;}
.wsa00_c00000{word-spacing:9.972000px;}
.wsa2_c00000{word-spacing:9.979200px;}
.ws403_c00000{word-spacing:9.986400px;}
.wsa01_c00000{word-spacing:9.993600px;}
.ws4d9_c00000{word-spacing:10.000800px;}
.wsfae_c00000{word-spacing:10.008000px;}
.ws164e_c00000{word-spacing:10.013760px;}
.wsb4f_c00000{word-spacing:10.015200px;}
.wsa3_c00000{word-spacing:10.022400px;}
.ws164d_c00000{word-spacing:10.026936px;}
.wsb5a_c00000{word-spacing:10.029600px;}
.wseb_c00000{word-spacing:10.036800px;}
.ws919_c00000{word-spacing:10.044000px;}
.ws14f9_c00000{word-spacing:10.046700px;}
.ws4da_c00000{word-spacing:10.051200px;}
.ws6b3_c00000{word-spacing:10.058400px;}
.wsa07_c00000{word-spacing:10.065600px;}
.ws111_c00000{word-spacing:10.072800px;}
.wsfd7_c00000{word-spacing:10.076112px;}
.ws867_c00000{word-spacing:10.079640px;}
.wsf1c_c00000{word-spacing:10.080000px;}
.ws111c_c00000{word-spacing:10.082124px;}
.wsa6c_c00000{word-spacing:10.087200px;}
.ws6e7_c00000{word-spacing:10.092816px;}
.wsc52_c00000{word-spacing:10.094400px;}
.ws866_c00000{word-spacing:10.099404px;}
.ws14ab_c00000{word-spacing:10.101600px;}
.ws15de_c00000{word-spacing:10.105992px;}
.ws230_c00000{word-spacing:10.108800px;}
.ws664_c00000{word-spacing:10.112580px;}
.ws16e8_c00000{word-spacing:10.116000px;}
.ws432_c00000{word-spacing:10.119168px;}
.ws135f_c00000{word-spacing:10.123200px;}
.ws44f_c00000{word-spacing:10.125756px;}
.wsb7b_c00000{word-spacing:10.130400px;}
.ws17c0_c00000{word-spacing:10.132344px;}
.ws1174_c00000{word-spacing:10.136232px;}
.ws747_c00000{word-spacing:10.138932px;}
.ws769_c00000{word-spacing:10.145520px;}
.ws14de_c00000{word-spacing:10.152000px;}
.ws151d_c00000{word-spacing:10.152108px;}
.wse83_c00000{word-spacing:10.158696px;}
.ws10e7_c00000{word-spacing:10.162800px;}
.ws1872_c00000{word-spacing:10.166400px;}
.ws151e_c00000{word-spacing:10.171872px;}
.ws1109_c00000{word-spacing:10.172304px;}
.ws16ff_c00000{word-spacing:10.173600px;}
.ws130f_c00000{word-spacing:10.184328px;}
.ws1154_c00000{word-spacing:10.190340px;}
.ws63a_c00000{word-spacing:10.195200px;}
.ws1173_c00000{word-spacing:10.196352px;}
.ws1846_c00000{word-spacing:10.202400px;}
.ws1236_c00000{word-spacing:10.209600px;}
.ws1abf_c00000{word-spacing:10.216800px;}
.ws1005_c00000{word-spacing:10.224000px;}
.wse57_c00000{word-spacing:10.231200px;}
.ws501_c00000{word-spacing:10.238400px;}
.ws14cc_c00000{word-spacing:10.245600px;}
.ws13cf_c00000{word-spacing:10.250460px;}
.ws6f7_c00000{word-spacing:10.252800px;}
.wsa3c_c00000{word-spacing:10.260000px;}
.ws63b_c00000{word-spacing:10.267200px;}
.wsf4d_c00000{word-spacing:10.274400px;}
.ws64d_c00000{word-spacing:10.281600px;}
.ws1253_c00000{word-spacing:10.286532px;}
.ws1ce_c00000{word-spacing:10.288800px;}
.ws1122_c00000{word-spacing:10.292544px;}
.ws1a0b_c00000{word-spacing:10.296000px;}
.ws14cf_c00000{word-spacing:10.303200px;}
.ws5f4_c00000{word-spacing:10.310400px;}
.ws9e_c00000{word-spacing:10.317600px;}
.ws41c_c00000{word-spacing:10.324800px;}
.ws502_c00000{word-spacing:10.332000px;}
.ws24f_c00000{word-spacing:10.339200px;}
.ws6f6_c00000{word-spacing:10.346400px;}
.ws785_c00000{word-spacing:10.353600px;}
.ws90d_c00000{word-spacing:10.360800px;}
.ws14df_c00000{word-spacing:10.368000px;}
.wsa42_c00000{word-spacing:10.375200px;}
.ws890_c00000{word-spacing:10.382400px;}
.ws41b_c00000{word-spacing:10.389600px;}
.ws8c3_c00000{word-spacing:10.396800px;}
.ws15b_c00000{word-spacing:10.404000px;}
.ws9d_c00000{word-spacing:10.411200px;}
.ws85a_c00000{word-spacing:10.418400px;}
.ws764_c00000{word-spacing:10.425600px;}
.ws15a_c00000{word-spacing:10.432800px;}
.wsbd5_c00000{word-spacing:10.435392px;}
.ws14c_c00000{word-spacing:10.440000px;}
.ws85b_c00000{word-spacing:10.447200px;}
.wse1a_c00000{word-spacing:10.448568px;}
.ws3cb_c00000{word-spacing:10.454400px;}
.ws3cd_c00000{word-spacing:10.461600px;}
.ws1479_c00000{word-spacing:10.461744px;}
.wsbb2_c00000{word-spacing:10.468332px;}
.ws308_c00000{word-spacing:10.468800px;}
.ws15e6_c00000{word-spacing:10.474920px;}
.ws3cc_c00000{word-spacing:10.476000px;}
.wsff1_c00000{word-spacing:10.481508px;}
.wsa3d_c00000{word-spacing:10.483200px;}
.ws168e_c00000{word-spacing:10.484928px;}
.ws6c7_c00000{word-spacing:10.488096px;}
.ws50d_c00000{word-spacing:10.490400px;}
.ws6e6_c00000{word-spacing:10.494684px;}
.wsf07_c00000{word-spacing:10.497600px;}
.ws15ed_c00000{word-spacing:10.501272px;}
.wsb92_c00000{word-spacing:10.504800px;}
.ws15f9_c00000{word-spacing:10.507860px;}
.ws1423_c00000{word-spacing:10.508976px;}
.ws14d0_c00000{word-spacing:10.512000px;}
.ws1354_c00000{word-spacing:10.514448px;}
.ws1110_c00000{word-spacing:10.514988px;}
.wsb0c_c00000{word-spacing:10.526400px;}
.ws102e_c00000{word-spacing:10.527012px;}
.ws1884_c00000{word-spacing:10.533024px;}
.wsbca_c00000{word-spacing:10.533600px;}
.ws115f_c00000{word-spacing:10.539036px;}
.wsc5a_c00000{word-spacing:10.540800px;}
.ws818_c00000{word-spacing:10.548000px;}
.ws1cf_c00000{word-spacing:10.555200px;}
.wsdd1_c00000{word-spacing:10.562400px;}
.ws51f_c00000{word-spacing:10.569600px;}
.wsd94_c00000{word-spacing:10.576800px;}
.ws1161_c00000{word-spacing:10.584000px;}
.ws12f6_c00000{word-spacing:10.591200px;}
.ws686_c00000{word-spacing:10.598400px;}
.wsdd2_c00000{word-spacing:10.605600px;}
.ws14b_c00000{word-spacing:10.612800px;}
.ws499_c00000{word-spacing:10.620000px;}
.ws929_c00000{word-spacing:10.627200px;}
.ws1428_c00000{word-spacing:10.634400px;}
.wsc01_c00000{word-spacing:10.641600px;}
.ws12f9_c00000{word-spacing:10.648800px;}
.ws90e_c00000{word-spacing:10.656000px;}
.wsa17_c00000{word-spacing:10.663200px;}
.ws49b_c00000{word-spacing:10.670400px;}
.wsb7e_c00000{word-spacing:10.677600px;}
.ws7e_c00000{word-spacing:10.684800px;}
.ws521_c00000{word-spacing:10.692000px;}
.wsb0b_c00000{word-spacing:10.699200px;}
.wsdbf_c00000{word-spacing:10.706400px;}
.ws31b_c00000{word-spacing:10.713600px;}
.ws543_c00000{word-spacing:10.720800px;}
.ws36b_c00000{word-spacing:10.728000px;}
.wsc56_c00000{word-spacing:10.735200px;}
.wsdd0_c00000{word-spacing:10.742400px;}
.ws4ad_c00000{word-spacing:10.749600px;}
.ws6dc_c00000{word-spacing:10.756800px;}
.ws392_c00000{word-spacing:10.764000px;}
.ws7d_c00000{word-spacing:10.771200px;}
.ws49a_c00000{word-spacing:10.778400px;}
.ws520_c00000{word-spacing:10.785600px;}
.ws36c_c00000{word-spacing:10.792800px;}
.ws14a_c00000{word-spacing:10.800000px;}
.ws1749_c00000{word-spacing:10.803564px;}
.wsb91_c00000{word-spacing:10.807200px;}
.ws1331_c00000{word-spacing:10.809576px;}
.ws15b9_c00000{word-spacing:10.810908px;}
.ws15f3_c00000{word-spacing:10.814400px;}
.wscb7_c00000{word-spacing:10.817496px;}
.ws31a_c00000{word-spacing:10.821600px;}
.ws1670_c00000{word-spacing:10.824084px;}
.ws6db_c00000{word-spacing:10.828800px;}
.ws150e_c00000{word-spacing:10.830672px;}
.ws1609_c00000{word-spacing:10.837260px;}
.ws19f0_c00000{word-spacing:10.843200px;}
.ws93a_c00000{word-spacing:10.850400px;}
.ws47b_c00000{word-spacing:10.857024px;}
.ws14d4_c00000{word-spacing:10.857600px;}
.wsf54_c00000{word-spacing:10.863612px;}
.wscb6_c00000{word-spacing:10.870200px;}
.wsc3d_c00000{word-spacing:10.872000px;}
.wsb36_c00000{word-spacing:10.876788px;}
.ws1183_c00000{word-spacing:10.881720px;}
.wse6b_c00000{word-spacing:10.889964px;}
.ws12d9_c00000{word-spacing:10.893600px;}
.ws1944_c00000{word-spacing:10.905768px;}
.ws105c_c00000{word-spacing:10.908000px;}
.ws154e_c00000{word-spacing:10.915200px;}
.ws1160_c00000{word-spacing:10.917792px;}
.ws1076_c00000{word-spacing:10.929600px;}
.ws1818_c00000{word-spacing:10.936800px;}
.wsab2_c00000{word-spacing:10.951200px;}
.ws1a54_c00000{word-spacing:10.958400px;}
.ws14c8_c00000{word-spacing:10.972800px;}
.ws5d6_c00000{word-spacing:10.980000px;}
.wsae9_c00000{word-spacing:10.987200px;}
.ws638_c00000{word-spacing:10.994400px;}
.ws146c_c00000{word-spacing:11.001600px;}
.ws1566_c00000{word-spacing:11.007972px;}
.ws1928_c00000{word-spacing:11.008800px;}
.ws1392_c00000{word-spacing:11.012400px;}
.ws4a3_c00000{word-spacing:11.016000px;}
.ws193_c00000{word-spacing:11.023200px;}
.ws1e1_c00000{word-spacing:11.030400px;}
.ws1945_c00000{word-spacing:11.032020px;}
.ws146d_c00000{word-spacing:11.037600px;}
.ws16f_c00000{word-spacing:11.044800px;}
.ws171_c00000{word-spacing:11.052000px;}
.wsd9b_c00000{word-spacing:11.059200px;}
.wsc02_c00000{word-spacing:11.066400px;}
.wse2c_c00000{word-spacing:11.073600px;}
.ws226_c00000{word-spacing:11.080800px;}
.ws78_c00000{word-spacing:11.088000px;}
.ws348_c00000{word-spacing:11.095200px;}
.wsae8_c00000{word-spacing:11.102400px;}
.ws6d1_c00000{word-spacing:11.109600px;}
.ws637_c00000{word-spacing:11.116800px;}
.ws4ea_c00000{word-spacing:11.124000px;}
.ws48c_c00000{word-spacing:11.131200px;}
.ws48d_c00000{word-spacing:11.138400px;}
.ws170_c00000{word-spacing:11.145600px;}
.ws192_c00000{word-spacing:11.152800px;}
.ws75d_c00000{word-spacing:11.160000px;}
.ws7e1_c00000{word-spacing:11.160072px;}
.wsb39_c00000{word-spacing:11.166660px;}
.ws5d5_c00000{word-spacing:11.167200px;}
.wsb38_c00000{word-spacing:11.173248px;}
.wscae_c00000{word-spacing:11.174400px;}
.wsdff_c00000{word-spacing:11.179836px;}
.ws79_c00000{word-spacing:11.181600px;}
.ws179f_c00000{word-spacing:11.182320px;}
.ws74f_c00000{word-spacing:11.186424px;}
.ws1693_c00000{word-spacing:11.188332px;}
.ws228_c00000{word-spacing:11.188800px;}
.wsbbc_c00000{word-spacing:11.193012px;}
.ws227_c00000{word-spacing:11.196000px;}
.ws7e0_c00000{word-spacing:11.199600px;}
.ws683_c00000{word-spacing:11.203200px;}
.wsef9_c00000{word-spacing:11.206188px;}
.wsd64_c00000{word-spacing:11.210400px;}
.ws3f0_c00000{word-spacing:11.212776px;}
.wsab3_c00000{word-spacing:11.217600px;}
.ws3f1_c00000{word-spacing:11.219364px;}
.wsa38_c00000{word-spacing:11.224800px;}
.wsbc0_c00000{word-spacing:11.225952px;}
.ws1337_c00000{word-spacing:11.230416px;}
.ws347_c00000{word-spacing:11.232000px;}
.ws514_c00000{word-spacing:11.232540px;}
.wsbbf_c00000{word-spacing:11.239128px;}
.ws1426_c00000{word-spacing:11.239200px;}
.wsa9a_c00000{word-spacing:11.253600px;}
.ws156a_c00000{word-spacing:11.254464px;}
.wsfd9_c00000{word-spacing:11.260476px;}
.ws93b_c00000{word-spacing:11.260800px;}
.ws824_c00000{word-spacing:11.268000px;}
.ws13a1_c00000{word-spacing:11.275200px;}
.ws17a0_c00000{word-spacing:11.278512px;}
.ws186a_c00000{word-spacing:11.282400px;}
.ws1084_c00000{word-spacing:11.302560px;}
.wsb49_c00000{word-spacing:11.304000px;}
.ws1555_c00000{word-spacing:11.308572px;}
.wsfb3_c00000{word-spacing:11.311200px;}
.ws16e0_c00000{word-spacing:11.318400px;}
.ws655_c00000{word-spacing:11.325600px;}
.ws10b6_c00000{word-spacing:11.329200px;}
.ws222_c00000{word-spacing:11.332800px;}
.ws1711_c00000{word-spacing:11.333196px;}
.ws10b7_c00000{word-spacing:11.334600px;}
.ws1713_c00000{word-spacing:11.337984px;}
.ws6d2_c00000{word-spacing:11.340000px;}
.ws79b_c00000{word-spacing:11.347200px;}
.wsb48_c00000{word-spacing:11.354400px;}
.wsa92_c00000{word-spacing:11.361600px;}
.ws1712_c00000{word-spacing:11.361924px;}
.ws169b_c00000{word-spacing:11.362680px;}
.wsc42_c00000{word-spacing:11.368800px;}
.wsb98_c00000{word-spacing:11.376000px;}
.ws106_c00000{word-spacing:11.383200px;}
.ws11ab_c00000{word-spacing:11.386728px;}
.ws7f_c00000{word-spacing:11.390400px;}
.wsdfb_c00000{word-spacing:11.397600px;}
.ws973_c00000{word-spacing:11.404800px;}
.ws9d5_c00000{word-spacing:11.412000px;}
.ws253_c00000{word-spacing:11.419200px;}
.wsba7_c00000{word-spacing:11.426400px;}
.ws160f_c00000{word-spacing:11.430180px;}
.wse31_c00000{word-spacing:11.433600px;}
.wsa0b_c00000{word-spacing:11.440800px;}
.ws144e_c00000{word-spacing:11.448000px;}
.ws61e_c00000{word-spacing:11.455200px;}
.ws61d_c00000{word-spacing:11.462400px;}
.ws27c_c00000{word-spacing:11.469600px;}
.wsb7d_c00000{word-spacing:11.476800px;}
.ws223_c00000{word-spacing:11.484000px;}
.ws346_c00000{word-spacing:11.491200px;}
.ws107_c00000{word-spacing:11.498400px;}
.ws16f2_c00000{word-spacing:11.502648px;}
.ws823_c00000{word-spacing:11.505600px;}
.ws110_c00000{word-spacing:11.512800px;}
.wsddf_c00000{word-spacing:11.515824px;}
.wsa3e_c00000{word-spacing:11.520000px;}
.wsa02_c00000{word-spacing:11.522412px;}
.ws68f_c00000{word-spacing:11.527200px;}
.ws8eb_c00000{word-spacing:11.529000px;}
.ws9ff_c00000{word-spacing:11.534400px;}
.ws11cb_c00000{word-spacing:11.535588px;}
.wse4a_c00000{word-spacing:11.541600px;}
.ws8ea_c00000{word-spacing:11.542176px;}
.ws7ad_c00000{word-spacing:11.548764px;}
.ws252_c00000{word-spacing:11.548800px;}
.wsfdc_c00000{word-spacing:11.555064px;}
.wsab8_c00000{word-spacing:11.555352px;}
.ws15a0_c00000{word-spacing:11.556000px;}
.ws845_c00000{word-spacing:11.561940px;}
.ws11f0_c00000{word-spacing:11.563200px;}
.ws7ae_c00000{word-spacing:11.568528px;}
.ws185c_c00000{word-spacing:11.570400px;}
.ws122e_c00000{word-spacing:11.575116px;}
.wsb97_c00000{word-spacing:11.577600px;}
.ws11cc_c00000{word-spacing:11.581704px;}
.ws10f_c00000{word-spacing:11.584800px;}
.ws150a_c00000{word-spacing:11.588292px;}
.ws517_c00000{word-spacing:11.592000px;}
.ws1505_c00000{word-spacing:11.594880px;}
.ws3ec_c00000{word-spacing:11.601468px;}
.ws1623_c00000{word-spacing:11.608056px;}
.ws1139_c00000{word-spacing:11.615184px;}
.ws153d_c00000{word-spacing:11.620800px;}
.ws1333_c00000{word-spacing:11.633220px;}
.ws9e9_c00000{word-spacing:11.634408px;}
.ws15bc_c00000{word-spacing:11.635200px;}
.ws1967_c00000{word-spacing:11.651256px;}
.wsc86_c00000{word-spacing:11.656800px;}
.ws19e9_c00000{word-spacing:11.664000px;}
.wsce7_c00000{word-spacing:11.671200px;}
.ws1a42_c00000{word-spacing:11.678400px;}
.ws1980_c00000{word-spacing:11.685600px;}
.wse2d_c00000{word-spacing:11.692800px;}
.ws782_c00000{word-spacing:11.700000px;}
.ws1ad5_c00000{word-spacing:11.705364px;}
.ws361_c00000{word-spacing:11.707200px;}
.wsa12_c00000{word-spacing:11.714400px;}
.ws390_c00000{word-spacing:11.721600px;}
.ws794_c00000{word-spacing:11.728800px;}
.ws1968_c00000{word-spacing:11.729412px;}
.ws931_c00000{word-spacing:11.736000px;}
.ws38f_c00000{word-spacing:11.743200px;}
.ws717_c00000{word-spacing:11.750400px;}
.ws516_c00000{word-spacing:11.757600px;}
.ws57a_c00000{word-spacing:11.764800px;}
.ws705_c00000{word-spacing:11.772000px;}
.ws28e_c00000{word-spacing:11.779200px;}
.ws3da_c00000{word-spacing:11.786400px;}
.wsade_c00000{word-spacing:11.793600px;}
.ws4b_c00000{word-spacing:11.800800px;}
.wsf10_c00000{word-spacing:11.808000px;}
.ws8e8_c00000{word-spacing:11.812284px;}
.ws61c_c00000{word-spacing:11.815200px;}
.ws639_c00000{word-spacing:11.822400px;}
.ws652_c00000{word-spacing:11.829600px;}
.ws8bf_c00000{word-spacing:11.836800px;}
.ws6a0_c00000{word-spacing:11.844000px;}
.ws62c_c00000{word-spacing:11.851200px;}
.ws515_c00000{word-spacing:11.858400px;}
.ws1202_c00000{word-spacing:11.864988px;}
.ws28f_c00000{word-spacing:11.865600px;}
.ws362_c00000{word-spacing:11.872800px;}
.ws1798_c00000{word-spacing:11.873700px;}
.ws172c_c00000{word-spacing:11.879712px;}
.ws3d9_c00000{word-spacing:11.880000px;}
.ws1762_c00000{word-spacing:11.884752px;}
.ws1ad2_c00000{word-spacing:11.885724px;}
.ws706_c00000{word-spacing:11.887200px;}
.ws16df_c00000{word-spacing:11.891340px;}
.wsc7c_c00000{word-spacing:11.894400px;}
.ws16aa_c00000{word-spacing:11.897928px;}
.ws579_c00000{word-spacing:11.901600px;}
.ws613_c00000{word-spacing:11.904516px;}
.wsb07_c00000{word-spacing:11.908800px;}
.ws612_c00000{word-spacing:11.911104px;}
.wsa7d_c00000{word-spacing:11.916000px;}
.ws16ed_c00000{word-spacing:11.917692px;}
.ws9bc_c00000{word-spacing:11.923200px;}
.wsac9_c00000{word-spacing:11.924280px;}
.wse94_c00000{word-spacing:11.930400px;}
.wsa2b_c00000{word-spacing:11.930868px;}
.wsa2c_c00000{word-spacing:11.937456px;}
.ws1a1b_c00000{word-spacing:11.937600px;}
.wsaca_c00000{word-spacing:11.944044px;}
.ws14e0_c00000{word-spacing:11.944800px;}
.ws1319_c00000{word-spacing:11.945844px;}
.ws584_c00000{word-spacing:11.950632px;}
.ws18b4_c00000{word-spacing:11.952000px;}
.wsa2f_c00000{word-spacing:11.957220px;}
.wsdd9_c00000{word-spacing:11.959200px;}
.ws1794_c00000{word-spacing:11.969892px;}
.ws1297_c00000{word-spacing:11.973600px;}
.ws1796_c00000{word-spacing:11.975904px;}
.ws1350_c00000{word-spacing:11.976984px;}
.ws18ca_c00000{word-spacing:11.981916px;}
.ws1795_c00000{word-spacing:11.987928px;}
.ws8e4_c00000{word-spacing:11.988000px;}
.ws2cb_c00000{word-spacing:12.009600px;}
.ws1811_c00000{word-spacing:12.016800px;}
.ws1268_c00000{word-spacing:12.017988px;}
.ws984_c00000{word-spacing:12.024000px;}
.ws10bb_c00000{word-spacing:12.025800px;}
.ws154f_c00000{word-spacing:12.038400px;}
.ws14dd_c00000{word-spacing:12.045600px;}
.ws1646_c00000{word-spacing:12.052800px;}
.ws983_c00000{word-spacing:12.060000px;}
.wsb9c_c00000{word-spacing:12.067200px;}
.ws165_c00000{word-spacing:12.074400px;}
.wsd65_c00000{word-spacing:12.081600px;}
.ws10f8_c00000{word-spacing:12.084120px;}
.ws765_c00000{word-spacing:12.088800px;}
.ws10ed_c00000{word-spacing:12.090132px;}
.ws92a_c00000{word-spacing:12.096000px;}
.ws799_c00000{word-spacing:12.103200px;}
.ws1886_c00000{word-spacing:12.108168px;}
.ws13b5_c00000{word-spacing:12.117600px;}
.wsbee_c00000{word-spacing:12.124800px;}
.ws4cf_c00000{word-spacing:12.132000px;}
.ws123_c00000{word-spacing:12.139200px;}
.ws2cc_c00000{word-spacing:12.146400px;}
.wsaa5_c00000{word-spacing:12.153600px;}
.wsb65_c00000{word-spacing:12.160800px;}
.ws30a_c00000{word-spacing:12.168000px;}
.wsefc_c00000{word-spacing:12.175200px;}
.wscf3_c00000{word-spacing:12.182400px;}
.ws798_c00000{word-spacing:12.189600px;}
.ws309_c00000{word-spacing:12.196800px;}
.ws163_c00000{word-spacing:12.204000px;}
.wsb12_c00000{word-spacing:12.211200px;}
.wsb61_c00000{word-spacing:12.218400px;}
.ws838_c00000{word-spacing:12.225600px;}
.ws11b2_c00000{word-spacing:12.228408px;}
.ws162_c00000{word-spacing:12.232800px;}
.wse26_c00000{word-spacing:12.233916px;}
.ws124_c00000{word-spacing:12.240000px;}
.ws4e0_c00000{word-spacing:12.247092px;}
.ws8e3_c00000{word-spacing:12.247200px;}
.ws123e_c00000{word-spacing:12.252456px;}
.ws8e7_c00000{word-spacing:12.253680px;}
.ws647_c00000{word-spacing:12.254400px;}
.ws1717_c00000{word-spacing:12.258468px;}
.wsb35_c00000{word-spacing:12.260268px;}
.wsb09_c00000{word-spacing:12.261600px;}
.ws4df_c00000{word-spacing:12.266856px;}
.ws79a_c00000{word-spacing:12.268800px;}
.ws975_c00000{word-spacing:12.273444px;}
.ws164_c00000{word-spacing:12.276000px;}
.wsbc1_c00000{word-spacing:12.280032px;}
.ws9f9_c00000{word-spacing:12.283200px;}
.ws469_c00000{word-spacing:12.286620px;}
.ws9f8_c00000{word-spacing:12.290400px;}
.ws430_c00000{word-spacing:12.293208px;}
.ws96e_c00000{word-spacing:12.299796px;}
.ws178d_c00000{word-spacing:12.300552px;}
.ws96f_c00000{word-spacing:12.306384px;}
.ws886_c00000{word-spacing:12.312000px;}
.ws766_c00000{word-spacing:12.312972px;}
.ws591_c00000{word-spacing:12.319560px;}
.ws11a2_c00000{word-spacing:12.324600px;}
.wscd3_c00000{word-spacing:12.326148px;}
.ws19cf_c00000{word-spacing:12.326400px;}
.ws18c9_c00000{word-spacing:12.330612px;}
.ws11c5_c00000{word-spacing:12.332736px;}
.wsba8_c00000{word-spacing:12.333600px;}
.ws178e_c00000{word-spacing:12.354660px;}
.ws15bb_c00000{word-spacing:12.355200px;}
.ws18d1_c00000{word-spacing:12.369600px;}
.ws13d7_c00000{word-spacing:12.376800px;}
.ws191f_c00000{word-spacing:12.384720px;}
.wsb51_c00000{word-spacing:12.391200px;}
.ws446_c00000{word-spacing:12.398400px;}
.ws996_c00000{word-spacing:12.405600px;}
.ws887_c00000{word-spacing:12.412800px;}
.ws7a1_c00000{word-spacing:12.420000px;}
.wsa20_c00000{word-spacing:12.427200px;}
.ws837_c00000{word-spacing:12.434400px;}
.wsc03_c00000{word-spacing:12.441600px;}
.ws863_c00000{word-spacing:12.448800px;}
.ws1920_c00000{word-spacing:12.450852px;}
.ws918_c00000{word-spacing:12.456000px;}
.ws159d_c00000{word-spacing:12.463200px;}
.ws83b_c00000{word-spacing:12.470400px;}
.ws6a7_c00000{word-spacing:12.477600px;}
.ws159e_c00000{word-spacing:12.484800px;}
.ws445_c00000{word-spacing:12.492000px;}
.ws15e3_c00000{word-spacing:12.499200px;}
.ws567_c00000{word-spacing:12.506400px;}
.ws828_c00000{word-spacing:12.513600px;}
.ws861_c00000{word-spacing:12.520800px;}
.ws568_c00000{word-spacing:12.528000px;}
.ws96b_c00000{word-spacing:12.535200px;}
.ws836_c00000{word-spacing:12.542400px;}
.ws3a4_c00000{word-spacing:12.549600px;}
.ws997_c00000{word-spacing:12.556800px;}
.wsf2_c00000{word-spacing:12.564000px;}
.wsf3_c00000{word-spacing:12.571200px;}
.ws52b_c00000{word-spacing:12.578400px;}
.ws16d3_c00000{word-spacing:12.583080px;}
.ws6a8_c00000{word-spacing:12.585600px;}
.ws5ea_c00000{word-spacing:12.589668px;}
.wscf4_c00000{word-spacing:12.592800px;}
.ws52c_c00000{word-spacing:12.600000px;}
.ws1870_c00000{word-spacing:12.602844px;}
.ws888_c00000{word-spacing:12.607200px;}
.ws19a2_c00000{word-spacing:12.609432px;}
.wsb52_c00000{word-spacing:12.614400px;}
.ws779_c00000{word-spacing:12.616020px;}
.ws1317_c00000{word-spacing:12.619188px;}
.wsa50_c00000{word-spacing:12.621600px;}
.ws710_c00000{word-spacing:12.622608px;}
.ws174b_c00000{word-spacing:12.625200px;}
.wsc9d_c00000{word-spacing:12.628800px;}
.ws1204_c00000{word-spacing:12.629196px;}
.wse42_c00000{word-spacing:12.636000px;}
.ws711_c00000{word-spacing:12.642372px;}
.wscb8_c00000{word-spacing:12.648960px;}
.ws178b_c00000{word-spacing:12.649248px;}
.ws134a_c00000{word-spacing:12.650400px;}
.ws511_c00000{word-spacing:12.655548px;}
.wsd5d_c00000{word-spacing:12.657600px;}
.wsd00_c00000{word-spacing:12.668724px;}
.ws96a_c00000{word-spacing:12.672000px;}
.wsdde_c00000{word-spacing:12.675312px;}
.wscff_c00000{word-spacing:12.681900px;}
.wsc80_c00000{word-spacing:12.686400px;}
.ws16fa_c00000{word-spacing:12.688488px;}
.ws1316_c00000{word-spacing:12.691332px;}
.ws77a_c00000{word-spacing:12.695076px;}
.ws1258_c00000{word-spacing:12.697344px;}
.ws18ab_c00000{word-spacing:12.708000px;}
.ws123d_c00000{word-spacing:12.709368px;}
.ws1a83_c00000{word-spacing:12.715200px;}
.ws958_c00000{word-spacing:12.722400px;}
.ws11a1_c00000{word-spacing:12.727404px;}
.ws4d7_c00000{word-spacing:12.736800px;}
.ws1642_c00000{word-spacing:12.744000px;}
.wscdb_c00000{word-spacing:12.751200px;}
.ws11d1_c00000{word-spacing:12.758400px;}
.wsd4c_c00000{word-spacing:12.765600px;}
.ws6a3_c00000{word-spacing:12.772800px;}
.ws12c2_c00000{word-spacing:12.780000px;}
.ws138a_c00000{word-spacing:12.783960px;}
.ws2f0_c00000{word-spacing:12.787200px;}
.ws1943_c00000{word-spacing:12.788748px;}
.wse38_c00000{word-spacing:12.794400px;}
.wsb5f_c00000{word-spacing:12.801600px;}
.ws857_c00000{word-spacing:12.808800px;}
.ws1942_c00000{word-spacing:12.812688px;}
.wsc46_c00000{word-spacing:12.816000px;}
.ws2fe_c00000{word-spacing:12.823200px;}
.wsc66_c00000{word-spacing:12.830400px;}
.ws6a2_c00000{word-spacing:12.837600px;}
.ws13f5_c00000{word-spacing:12.844800px;}
.ws78f_c00000{word-spacing:12.852000px;}
.wsa9e_c00000{word-spacing:12.859200px;}
.ws2ee_c00000{word-spacing:12.866400px;}
.ws13b8_c00000{word-spacing:12.873600px;}
.ws366_c00000{word-spacing:12.880800px;}
.ws4d8_c00000{word-spacing:12.888000px;}
.ws3be_c00000{word-spacing:12.895200px;}
.wsfb_c00000{word-spacing:12.902400px;}
.wsf1_c00000{word-spacing:12.909600px;}
.wsa67_c00000{word-spacing:12.916800px;}
.ws858_c00000{word-spacing:12.924000px;}
.ws2ff_c00000{word-spacing:12.931200px;}
.ws1957_c00000{word-spacing:12.937824px;}
.ws365_c00000{word-spacing:12.938400px;}
.wsfa_c00000{word-spacing:12.945600px;}
.ws6ce_c00000{word-spacing:12.952008px;}
.wsf0_c00000{word-spacing:12.952800px;}
.ws46f_c00000{word-spacing:12.958596px;}
.ws2ef_c00000{word-spacing:12.960000px;}
.ws10c3_c00000{word-spacing:12.961872px;}
.ws1504_c00000{word-spacing:12.965184px;}
.wsb74_c00000{word-spacing:12.967200px;}
.ws186e_c00000{word-spacing:12.971772px;}
.ws80d_c00000{word-spacing:12.974400px;}
.ws6cd_c00000{word-spacing:12.978360px;}
.ws18f0_c00000{word-spacing:12.979908px;}
.wsc45_c00000{word-spacing:12.981600px;}
.wsf84_c00000{word-spacing:12.984948px;}
.ws1641_c00000{word-spacing:12.988800px;}
.ws9aa_c00000{word-spacing:12.991536px;}
.ws1924_c00000{word-spacing:12.991932px;}
.ws13bc_c00000{word-spacing:12.996000px;}
.ws188f_c00000{word-spacing:12.997944px;}
.ws9a9_c00000{word-spacing:12.998124px;}
.ws16e3_c00000{word-spacing:13.003200px;}
.ws1ac3_c00000{word-spacing:13.004712px;}
.ws1737_c00000{word-spacing:13.009968px;}
.wsa3b_c00000{word-spacing:13.010400px;}
.ws170d_c00000{word-spacing:13.011300px;}
.wsc7f_c00000{word-spacing:13.017600px;}
.wse1c_c00000{word-spacing:13.017888px;}
.wscfd_c00000{word-spacing:13.024476px;}
.ws18aa_c00000{word-spacing:13.024800px;}
.ws178c_c00000{word-spacing:13.028004px;}
.wscfc_c00000{word-spacing:13.031064px;}
.ws161b_c00000{word-spacing:13.032000px;}
.ws1554_c00000{word-spacing:13.034016px;}
.ws7b7_c00000{word-spacing:13.037652px;}
.ws16f9_c00000{word-spacing:13.044240px;}
.ws1799_c00000{word-spacing:13.046040px;}
.wscfb_c00000{word-spacing:13.050828px;}
.ws18f5_c00000{word-spacing:13.052052px;}
.ws1738_c00000{word-spacing:13.058064px;}
.ws1475_c00000{word-spacing:13.060800px;}
.ws85e_c00000{word-spacing:13.068000px;}
.ws1156_c00000{word-spacing:13.070088px;}
.wsc6f_c00000{word-spacing:13.075200px;}
.ws18c6_c00000{word-spacing:13.076100px;}
.ws179a_c00000{word-spacing:13.082112px;}
.ws85f_c00000{word-spacing:13.082400px;}
.ws13e0_c00000{word-spacing:13.089600px;}
.ws1637_c00000{word-spacing:13.096800px;}
.ws4bb_c00000{word-spacing:13.104000px;}
.wsb2d_c00000{word-spacing:13.111200px;}
.wsc43_c00000{word-spacing:13.118400px;}
.ws66f_c00000{word-spacing:13.140000px;}
.ws18f6_c00000{word-spacing:13.142232px;}
.wsd11_c00000{word-spacing:13.147200px;}
.wsaf6_c00000{word-spacing:13.154400px;}
.ws2d3_c00000{word-spacing:13.161600px;}
.ws15e2_c00000{word-spacing:13.168800px;}
.ws1396_c00000{word-spacing:13.171788px;}
.wsdd7_c00000{word-spacing:13.176000px;}
.ws7a0_c00000{word-spacing:13.183200px;}
.wsaaa_c00000{word-spacing:13.190400px;}
.wsa3a_c00000{word-spacing:13.197600px;}
.ws427_c00000{word-spacing:13.204800px;}
.ws8a7_c00000{word-spacing:13.212000px;}
.ws87d_c00000{word-spacing:13.219200px;}
.wsa35_c00000{word-spacing:13.226400px;}
.wsaff_c00000{word-spacing:13.233600px;}
.ws17cd_c00000{word-spacing:13.240800px;}
.wsa39_c00000{word-spacing:13.248000px;}
.wsaf7_c00000{word-spacing:13.255200px;}
.ws7d9_c00000{word-spacing:13.262400px;}
.ws79d_c00000{word-spacing:13.269600px;}
.ws79c_c00000{word-spacing:13.276800px;}
.ws4ba_c00000{word-spacing:13.284000px;}
.ws112f_c00000{word-spacing:13.286520px;}
.ws968_c00000{word-spacing:13.291200px;}
.ws79f_c00000{word-spacing:13.298400px;}
.ws17b7_c00000{word-spacing:13.304556px;}
.ws7da_c00000{word-spacing:13.305600px;}
.ws2d4_c00000{word-spacing:13.312800px;}
.ws66e_c00000{word-spacing:13.320000px;}
.wscd2_c00000{word-spacing:13.320936px;}
.ws68d_c00000{word-spacing:13.327200px;}
.ws17b5_c00000{word-spacing:13.328604px;}
.wsc44_c00000{word-spacing:13.334400px;}
.ws17b6_c00000{word-spacing:13.334616px;}
.ws125a_c00000{word-spacing:13.340628px;}
.ws7f2_c00000{word-spacing:13.340700px;}
.ws79e_c00000{word-spacing:13.341600px;}
.wscd1_c00000{word-spacing:13.347288px;}
.wscc2_c00000{word-spacing:13.348800px;}
.ws512_c00000{word-spacing:13.353876px;}
.wscc1_c00000{word-spacing:13.356000px;}
.wsabf_c00000{word-spacing:13.360464px;}
.ws1476_c00000{word-spacing:13.363200px;}
.wsbd6_c00000{word-spacing:13.367052px;}
.wsdf7_c00000{word-spacing:13.370400px;}
.ws468_c00000{word-spacing:13.373640px;}
.ws1506_c00000{word-spacing:13.380228px;}
.ws428_c00000{word-spacing:13.384800px;}
.wsc0c_c00000{word-spacing:13.386816px;}
.wsdf5_c00000{word-spacing:13.392000px;}
.wsa37_c00000{word-spacing:13.399200px;}
.ws1507_c00000{word-spacing:13.399992px;}
.ws1070_c00000{word-spacing:13.406760px;}
.ws195e_c00000{word-spacing:13.412772px;}
.ws1926_c00000{word-spacing:13.413168px;}
.wsb58_c00000{word-spacing:13.413600px;}
.ws1127_c00000{word-spacing:13.418784px;}
.wseac_c00000{word-spacing:13.420800px;}
.ws17a7_c00000{word-spacing:13.430808px;}
.wsbf9_c00000{word-spacing:13.432932px;}
.ws13fe_c00000{word-spacing:13.435200px;}
.wsfc7_c00000{word-spacing:13.436820px;}
.ws1453_c00000{word-spacing:13.442400px;}
.ws12ef_c00000{word-spacing:13.449600px;}
.ws19bf_c00000{word-spacing:13.464000px;}
.ws122d_c00000{word-spacing:13.471200px;}
.ws19fe_c00000{word-spacing:13.485600px;}
.ws1165_c00000{word-spacing:13.489200px;}
.ws12ee_c00000{word-spacing:13.492800px;}
.wsc8a_c00000{word-spacing:13.507200px;}
.wsdf8_c00000{word-spacing:13.514400px;}
.ws10f3_c00000{word-spacing:13.527000px;}
.ws5eb_c00000{word-spacing:13.531752px;}
.wsf5b_c00000{word-spacing:13.536000px;}
.wsa5_c00000{word-spacing:13.543200px;}
.wsa91_c00000{word-spacing:13.550400px;}
.wsa90_c00000{word-spacing:13.557600px;}
.ws20e_c00000{word-spacing:13.564800px;}
.ws210_c00000{word-spacing:13.572000px;}
.wsc88_c00000{word-spacing:13.579200px;}
.wse0d_c00000{word-spacing:13.586400px;}
.ws211_c00000{word-spacing:13.593600px;}
.ws939_c00000{word-spacing:13.600800px;}
.ws819_c00000{word-spacing:13.608000px;}
.ws2f3_c00000{word-spacing:13.615200px;}
.wsc89_c00000{word-spacing:13.622400px;}
.ws2ea_c00000{word-spacing:13.629600px;}
.wsc39_c00000{word-spacing:13.636800px;}
.ws1c0_c00000{word-spacing:13.644000px;}
.ws20f_c00000{word-spacing:13.651200px;}
.ws1c1_c00000{word-spacing:13.658400px;}
.ws2f4_c00000{word-spacing:13.665600px;}
.ws405_c00000{word-spacing:13.672800px;}
.wsa4_c00000{word-spacing:13.680000px;}
.ws1335_c00000{word-spacing:13.683312px;}
.ws34f_c00000{word-spacing:13.687200px;}
.ws2eb_c00000{word-spacing:13.694400px;}
.ws449_c00000{word-spacing:13.696452px;}
.wsa36_c00000{word-spacing:13.701600px;}
.ws6c4_c00000{word-spacing:13.703040px;}
.wsc48_c00000{word-spacing:13.708800px;}
.wsaae_c00000{word-spacing:13.709628px;}
.ws91f_c00000{word-spacing:13.716000px;}
.ws6c5_c00000{word-spacing:13.716216px;}
.ws17b0_c00000{word-spacing:13.719384px;}
.ws158d_c00000{word-spacing:13.722804px;}
.wsdb9_c00000{word-spacing:13.723200px;}
.ws17e5_c00000{word-spacing:13.729392px;}
.ws3ad_c00000{word-spacing:13.730400px;}
.ws44a_c00000{word-spacing:13.735980px;}
.ws1361_c00000{word-spacing:13.737600px;}
.wsf8b_c00000{word-spacing:13.742568px;}
.ws81a_c00000{word-spacing:13.744800px;}
.wscec_c00000{word-spacing:13.749156px;}
.ws184d_c00000{word-spacing:13.752000px;}
.ws1126_c00000{word-spacing:13.755456px;}
.ws1731_c00000{word-spacing:13.761468px;}
.wsced_c00000{word-spacing:13.762332px;}
.wsacc_c00000{word-spacing:13.766400px;}
.ws124f_c00000{word-spacing:13.767480px;}
.wse7f_c00000{word-spacing:13.768920px;}
.ws1136_c00000{word-spacing:13.773492px;}
.wsf8e_c00000{word-spacing:13.773600px;}
.ws12f2_c00000{word-spacing:13.775508px;}
.ws18cb_c00000{word-spacing:13.780800px;}
.ws1380_c00000{word-spacing:13.788000px;}
.ws17ae_c00000{word-spacing:13.791528px;}
.ws1977_c00000{word-spacing:13.802400px;}
.ws2c3_c00000{word-spacing:13.809600px;}
.ws696_c00000{word-spacing:13.831200px;}
.ws6ae_c00000{word-spacing:13.838400px;}
.ws17b1_c00000{word-spacing:13.839624px;}
.ws12b5_c00000{word-spacing:13.845600px;}
.ws91e_c00000{word-spacing:13.867200px;}
.ws185b_c00000{word-spacing:13.874400px;}
.ws1409_c00000{word-spacing:13.881600px;}
.wse8_c00000{word-spacing:13.888800px;}
.ws87_c00000{word-spacing:13.896000px;}
.wseb1_c00000{word-spacing:13.903200px;}
.ws138d_c00000{word-spacing:13.909140px;}
.wsff8_c00000{word-spacing:13.910400px;}
.wse9f_c00000{word-spacing:13.917600px;}
.wsd35_c00000{word-spacing:13.924800px;}
.ws12b0_c00000{word-spacing:13.932000px;}
.wse86_c00000{word-spacing:13.939200px;}
.ws1f1_c00000{word-spacing:13.946400px;}
.ws86_c00000{word-spacing:13.953600px;}
.ws66_c00000{word-spacing:13.960800px;}
.ws71a_c00000{word-spacing:13.968000px;}
.wscd7_c00000{word-spacing:13.975200px;}
.ws1408_c00000{word-spacing:13.982400px;}
.ws41a_c00000{word-spacing:13.989600px;}
.ws1912_c00000{word-spacing:13.989924px;}
.ws9ce_c00000{word-spacing:13.996800px;}
.ws1f2_c00000{word-spacing:14.004000px;}
.ws1761_c00000{word-spacing:14.006088px;}
.wsc27_c00000{word-spacing:14.011200px;}
.ws2c4_c00000{word-spacing:14.018400px;}
.wsc58_c00000{word-spacing:14.025600px;}
.ws6ad_c00000{word-spacing:14.032800px;}
.ws6fe_c00000{word-spacing:14.039028px;}
.wsf50_c00000{word-spacing:14.040000px;}
.ws119c_c00000{word-spacing:14.044032px;}
.ws6ff_c00000{word-spacing:14.045616px;}
.wse7_c00000{word-spacing:14.047200px;}
.ws4d6_c00000{word-spacing:14.052204px;}
.ws13da_c00000{word-spacing:14.054400px;}
.ws6c6_c00000{word-spacing:14.058792px;}
.ws7f4_c00000{word-spacing:14.061600px;}
.ws158f_c00000{word-spacing:14.065380px;}
.wsc26_c00000{word-spacing:14.068800px;}
.ws1602_c00000{word-spacing:14.071968px;}
.wsaf3_c00000{word-spacing:14.076000px;}
.wsaf4_c00000{word-spacing:14.083200px;}
.ws4a0_c00000{word-spacing:14.085144px;}
.ws9cf_c00000{word-spacing:14.090400px;}
.wsdc8_c00000{word-spacing:14.091732px;}
.ws56b_c00000{word-spacing:14.097600px;}
.wsb32_c00000{word-spacing:14.098320px;}
.ws588_c00000{word-spacing:14.104908px;}
.ws1949_c00000{word-spacing:14.110164px;}
.wsc08_c00000{word-spacing:14.111496px;}
.wse3f_c00000{word-spacing:14.112000px;}
.ws7b0_c00000{word-spacing:14.118084px;}
.wsb01_c00000{word-spacing:14.119200px;}
.ws37e_c00000{word-spacing:14.124672px;}
.ws1948_c00000{word-spacing:14.128200px;}
.ws15b8_c00000{word-spacing:14.133600px;}
.ws113f_c00000{word-spacing:14.134212px;}
.wsbf4_c00000{word-spacing:14.157612px;}
.ws1140_c00000{word-spacing:14.158260px;}
.ws357_c00000{word-spacing:14.162400px;}
.ws169a_c00000{word-spacing:14.170284px;}
.ws30f_c00000{word-spacing:14.176800px;}
.ws185d_c00000{word-spacing:14.184000px;}
.ws1549_c00000{word-spacing:14.191200px;}
.ws358_c00000{word-spacing:14.198400px;}
.wsb3b_c00000{word-spacing:14.205600px;}
.ws1751_c00000{word-spacing:14.212368px;}
.ws13f4_c00000{word-spacing:14.212800px;}
.ws19ce_c00000{word-spacing:14.220000px;}
.wsdc9_c00000{word-spacing:14.227200px;}
.wsb00_c00000{word-spacing:14.234400px;}
.wsbb6_c00000{word-spacing:14.241600px;}
.ws80c_c00000{word-spacing:14.248800px;}
.ws284_c00000{word-spacing:14.256000px;}
.wsbbb_c00000{word-spacing:14.263200px;}
.ws14a9_c00000{word-spacing:14.270400px;}
.ws14f6_c00000{word-spacing:14.277600px;}
.ws17b_c00000{word-spacing:14.284800px;}
.wsc22_c00000{word-spacing:14.292000px;}
.ws9cd_c00000{word-spacing:14.299200px;}
.ws310_c00000{word-spacing:14.306400px;}
.ws569_c00000{word-spacing:14.313600px;}
.ws920_c00000{word-spacing:14.320800px;}
.ws98d_c00000{word-spacing:14.328000px;}
.wsfb8_c00000{word-spacing:14.332608px;}
.wsc21_c00000{word-spacing:14.335200px;}
.ws179_c00000{word-spacing:14.342400px;}
.ws9b1_c00000{word-spacing:14.349600px;}
.ws196d_c00000{word-spacing:14.356656px;}
.ws56a_c00000{word-spacing:14.356800px;}
.ws3f9_c00000{word-spacing:14.364000px;}
.ws325_c00000{word-spacing:14.371200px;}
.ws324_c00000{word-spacing:14.378400px;}
.ws94a_c00000{word-spacing:14.385600px;}
.wsa94_c00000{word-spacing:14.392800px;}
.wsf3c_c00000{word-spacing:14.394780px;}
.ws17a_c00000{word-spacing:14.400000px;}
.ws175a_c00000{word-spacing:14.401368px;}
.ws981_c00000{word-spacing:14.407200px;}
.ws1911_c00000{word-spacing:14.410764px;}
.ws98e_c00000{word-spacing:14.414400px;}
.ws65d_c00000{word-spacing:14.414544px;}
.ws7e5_c00000{word-spacing:14.421132px;}
.ws9b0_c00000{word-spacing:14.421600px;}
.ws190e_c00000{word-spacing:14.422788px;}
.ws65e_c00000{word-spacing:14.427720px;}
.wsb02_c00000{word-spacing:14.428800px;}
.ws1667_c00000{word-spacing:14.434308px;}
.ws982_c00000{word-spacing:14.436000px;}
.ws1490_c00000{word-spacing:14.440896px;}
.ws149c_c00000{word-spacing:14.443200px;}
.ws46a_c00000{word-spacing:14.447484px;}
.wsa7c_c00000{word-spacing:14.450400px;}
.ws7e4_c00000{word-spacing:14.454072px;}
.ws180f_c00000{word-spacing:14.457600px;}
.ws7b5_c00000{word-spacing:14.460660px;}
.wsf87_c00000{word-spacing:14.464800px;}
.ws70b_c00000{word-spacing:14.467248px;}
.wsc1f_c00000{word-spacing:14.473836px;}
.ws55e_c00000{word-spacing:14.479200px;}
.ws1125_c00000{word-spacing:14.512968px;}
.ws8d9_c00000{word-spacing:14.515200px;}
.ws1a33_c00000{word-spacing:14.522400px;}
.wsa93_c00000{word-spacing:14.529600px;}
.ws195c_c00000{word-spacing:14.549040px;}
.wsa46_c00000{word-spacing:14.551200px;}
.ws759_c00000{word-spacing:14.565600px;}
.ws149d_c00000{word-spacing:14.580000px;}
.wsaab_c00000{word-spacing:14.587200px;}
.ws40a_c00000{word-spacing:14.594400px;}
.wsaac_c00000{word-spacing:14.608800px;}
.ws12c8_c00000{word-spacing:14.623200px;}
.ws1398_c00000{word-spacing:14.627340px;}
.ws1833_c00000{word-spacing:14.630400px;}
.wsd9e_c00000{word-spacing:14.637600px;}
.wsa53_c00000{word-spacing:14.644800px;}
.wsd27_c00000{word-spacing:14.652000px;}
.ws523_c00000{word-spacing:14.659200px;}
.ws40b_c00000{word-spacing:14.666400px;}
.ws681_c00000{word-spacing:14.673600px;}
.ws5b8_c00000{word-spacing:14.680800px;}
.wsa54_c00000{word-spacing:14.688000px;}
.ws7e6_c00000{word-spacing:14.695200px;}
.ws67e_c00000{word-spacing:14.702400px;}
.ws370_c00000{word-spacing:14.709600px;}
.wsf6_c00000{word-spacing:14.716800px;}
.ws19a_c00000{word-spacing:14.724000px;}
.ws524_c00000{word-spacing:14.731200px;}
.ws10f2_c00000{word-spacing:14.735412px;}
.ws345_c00000{word-spacing:14.738400px;}
.ws344_c00000{word-spacing:14.745600px;}
.ws19b_c00000{word-spacing:14.752800px;}
.ws8b1_c00000{word-spacing:14.760000px;}
.wsc1a_c00000{word-spacing:14.767200px;}
.ws16ab_c00000{word-spacing:14.770296px;}
.ws409_c00000{word-spacing:14.774400px;}
.ws11e5_c00000{word-spacing:14.776884px;}
.ws1754_c00000{word-spacing:14.781600px;}
.ws5c2_c00000{word-spacing:14.783472px;}
.ws1755_c00000{word-spacing:14.788800px;}
.ws11e4_c00000{word-spacing:14.790060px;}
.wsbaa_c00000{word-spacing:14.796648px;}
.wsba0_c00000{word-spacing:14.803200px;}
.wsdb2_c00000{word-spacing:14.803236px;}
.ws5c3_c00000{word-spacing:14.809824px;}
.ws199c_c00000{word-spacing:14.816412px;}
.wsd02_c00000{word-spacing:14.817600px;}
.ws14c4_c00000{word-spacing:14.823000px;}
.wsdfe_c00000{word-spacing:14.824800px;}
.wse29_c00000{word-spacing:14.829588px;}
.ws7a5_c00000{word-spacing:14.832000px;}
.ws14c2_c00000{word-spacing:14.836176px;}
.ws1a74_c00000{word-spacing:14.839200px;}
.ws14c3_c00000{word-spacing:14.842764px;}
.ws1774_c00000{word-spacing:14.849640px;}
.wsc4b_c00000{word-spacing:14.853600px;}
.ws18b9_c00000{word-spacing:14.855652px;}
.ws1a36_c00000{word-spacing:14.860800px;}
.ws184e_c00000{word-spacing:14.868000px;}
.ws1150_c00000{word-spacing:14.885712px;}
.ws192f_c00000{word-spacing:14.896800px;}
.ws1484_c00000{word-spacing:14.904000px;}
.ws7bc_c00000{word-spacing:14.911200px;}
.ws19f3_c00000{word-spacing:14.918400px;}
.wsa25_c00000{word-spacing:14.925600px;}
.ws13f6_c00000{word-spacing:14.932800px;}
.ws2ac_c00000{word-spacing:14.940000px;}
.ws8c5_c00000{word-spacing:14.954400px;}
.wsc8d_c00000{word-spacing:14.961600px;}
.ws372_c00000{word-spacing:14.968800px;}
.ws1414_c00000{word-spacing:14.969880px;}
.ws1382_c00000{word-spacing:14.976000px;}
.ws7bd_c00000{word-spacing:14.983200px;}
.ws2ab_c00000{word-spacing:14.990400px;}
.wsc57_c00000{word-spacing:14.997600px;}
.ws12a2_c00000{word-spacing:15.004800px;}
.ws2cd_c00000{word-spacing:15.012000px;}
.ws8c6_c00000{word-spacing:15.019200px;}
.wsd1a_c00000{word-spacing:15.026400px;}
.ws1c9_c00000{word-spacing:15.033600px;}
.ws744_c00000{word-spacing:15.040800px;}
.ws9c0_c00000{word-spacing:15.048000px;}
.ws66c_c00000{word-spacing:15.055200px;}
.wsc14_c00000{word-spacing:15.062400px;}
.ws2ce_c00000{word-spacing:15.069600px;}
.ws998_c00000{word-spacing:15.076800px;}
.ws1138_c00000{word-spacing:15.078096px;}
.ws743_c00000{word-spacing:15.084000px;}
.wsb20_c00000{word-spacing:15.091200px;}
.ws50c_c00000{word-spacing:15.098400px;}
.ws8c4_c00000{word-spacing:15.105600px;}
.ws66d_c00000{word-spacing:15.112800px;}
.wsa24_c00000{word-spacing:15.120000px;}
.ws1a3b_c00000{word-spacing:15.127200px;}
.ws1356_c00000{word-spacing:15.134400px;}
.ws100c_c00000{word-spacing:15.141600px;}
.ws1357_c00000{word-spacing:15.148800px;}
.ws7fa_c00000{word-spacing:15.152400px;}
.ws1844_c00000{word-spacing:15.156000px;}
.wsf90_c00000{word-spacing:15.158988px;}
.wsd1b_c00000{word-spacing:15.163200px;}
.ws1698_c00000{word-spacing:15.165576px;}
.ws18bd_c00000{word-spacing:15.168276px;}
.wsb53_c00000{word-spacing:15.170400px;}
.ws15be_c00000{word-spacing:15.172164px;}
.wsb54_c00000{word-spacing:15.177600px;}
.ws7d4_c00000{word-spacing:15.178752px;}
.ws1729_c00000{word-spacing:15.180300px;}
.ws1668_c00000{word-spacing:15.185340px;}
.wsf82_c00000{word-spacing:15.191928px;}
.wsd1c_c00000{word-spacing:15.192000px;}
.ws198d_c00000{word-spacing:15.198516px;}
.ws1474_c00000{word-spacing:15.199200px;}
.ws1728_c00000{word-spacing:15.204348px;}
.ws11d6_c00000{word-spacing:15.205104px;}
.ws1807_c00000{word-spacing:15.206400px;}
.ws1773_c00000{word-spacing:15.210360px;}
.ws7fb_c00000{word-spacing:15.211692px;}
.wsa81_c00000{word-spacing:15.213600px;}
.wse41_c00000{word-spacing:15.220800px;}
.ws1772_c00000{word-spacing:15.228396px;}
.ws13f7_c00000{word-spacing:15.235200px;}
.wsa82_c00000{word-spacing:15.249600px;}
.ws1822_c00000{word-spacing:15.271200px;}
.ws13d1_c00000{word-spacing:15.278400px;}
.wsf06_c00000{word-spacing:15.285600px;}
.ws19ff_c00000{word-spacing:15.292800px;}
.ws465_c00000{word-spacing:15.300000px;}
.ws166e_c00000{word-spacing:15.307200px;}
.ws139e_c00000{word-spacing:15.307236px;}
.wsc59_c00000{word-spacing:15.314400px;}
.ws1495_c00000{word-spacing:15.321600px;}
.wse40_c00000{word-spacing:15.328800px;}
.ws9f3_c00000{word-spacing:15.336000px;}
.ws16fb_c00000{word-spacing:15.343200px;}
.wsd7_c00000{word-spacing:15.350400px;}
.ws494_c00000{word-spacing:15.357600px;}
.ws8c_c00000{word-spacing:15.364800px;}
.ws466_c00000{word-spacing:15.372000px;}
.ws678_c00000{word-spacing:15.379200px;}
.wsd2b_c00000{word-spacing:15.386400px;}
.wsad7_c00000{word-spacing:15.393600px;}
.ws9d3_c00000{word-spacing:15.400800px;}
.ws1014_c00000{word-spacing:15.408000px;}
.ws493_c00000{word-spacing:15.415200px;}
.ws174_c00000{word-spacing:15.422400px;}
.ws1348_c00000{word-spacing:15.429600px;}
.ws11dc_c00000{word-spacing:15.436800px;}
.ws9f4_c00000{word-spacing:15.444000px;}
.ws88f_c00000{word-spacing:15.451200px;}
.ws175_c00000{word-spacing:15.458400px;}
.ws3ac_c00000{word-spacing:15.465600px;}
.ws69c_c00000{word-spacing:15.472800px;}
.ws88e_c00000{word-spacing:15.480000px;}
.wsd6_c00000{word-spacing:15.487200px;}
.ws77d_c00000{word-spacing:15.488388px;}
.ws8da_c00000{word-spacing:15.494400px;}
.wsc93_c00000{word-spacing:15.494976px;}
.wsc92_c00000{word-spacing:15.501564px;}
.ws9ba_c00000{word-spacing:15.501600px;}
.ws45e_c00000{word-spacing:15.508152px;}
.ws16a1_c00000{word-spacing:15.508800px;}
.ws173c_c00000{word-spacing:15.510960px;}
.ws775_c00000{word-spacing:15.514740px;}
.ws1625_c00000{word-spacing:15.521328px;}
.wsc50_c00000{word-spacing:15.523200px;}
.wsab5_c00000{word-spacing:15.527916px;}
.ws15b4_c00000{word-spacing:15.534504px;}
.ws45f_c00000{word-spacing:15.541092px;}
.ws176_c00000{word-spacing:15.544800px;}
.ws16f0_c00000{word-spacing:15.547680px;}
.ws1808_c00000{word-spacing:15.552000px;}
.ws1961_c00000{word-spacing:15.559056px;}
.ws1611_c00000{word-spacing:15.559200px;}
.ws173d_c00000{word-spacing:15.571080px;}
.ws116b_c00000{word-spacing:15.583104px;}
.ws11f9_c00000{word-spacing:15.602400px;}
.ws130d_c00000{word-spacing:15.631200px;}
.ws10ec_c00000{word-spacing:15.643800px;}
.ws532_c00000{word-spacing:15.652800px;}
.ws540_c00000{word-spacing:15.660000px;}
.ws1ed_c00000{word-spacing:15.674400px;}
.ws1538_c00000{word-spacing:15.681600px;}
.ws53f_c00000{word-spacing:15.688800px;}
.ws1550_c00000{word-spacing:15.696000px;}
.wsa61_c00000{word-spacing:15.703200px;}
.ws1ee_c00000{word-spacing:15.710400px;}
.wsca1_c00000{word-spacing:15.717600px;}
.wsa62_c00000{word-spacing:15.724800px;}
.ws2e4_c00000{word-spacing:15.732000px;}
.ws880_c00000{word-spacing:15.739200px;}
.ws3a5_c00000{word-spacing:15.746400px;}
.wscb3_c00000{word-spacing:15.753600px;}
.ws7c_c00000{word-spacing:15.760800px;}
.ws2e6_c00000{word-spacing:15.768000px;}
.ws473_c00000{word-spacing:15.775200px;}
.ws862_c00000{word-spacing:15.782400px;}
.wsc51_c00000{word-spacing:15.789600px;}
.ws7a_c00000{word-spacing:15.796800px;}
.wsca0_c00000{word-spacing:15.804000px;}
.wsd47_c00000{word-spacing:15.811200px;}
.ws87f_c00000{word-spacing:15.818400px;}
.wse47_c00000{word-spacing:15.825600px;}
.ws1027_c00000{word-spacing:15.832800px;}
.ws9ad_c00000{word-spacing:15.837552px;}
.ws7b_c00000{word-spacing:15.840000px;}
.ws1251_c00000{word-spacing:15.841620px;}
.ws533_c00000{word-spacing:15.847200px;}
.ws1624_c00000{word-spacing:15.850728px;}
.ws30e_c00000{word-spacing:15.854400px;}
.ws9ac_c00000{word-spacing:15.857316px;}
.ws13cb_c00000{word-spacing:15.861600px;}
.wsd16_c00000{word-spacing:15.868800px;}
.ws9ab_c00000{word-spacing:15.870492px;}
.ws2e5_c00000{word-spacing:15.876000px;}
.ws96c_c00000{word-spacing:15.877080px;}
.ws16cb_c00000{word-spacing:15.883200px;}
.ws607_c00000{word-spacing:15.883668px;}
.ws608_c00000{word-spacing:15.890256px;}
.wsd2f_c00000{word-spacing:15.890400px;}
.ws1842_c00000{word-spacing:15.903432px;}
.ws1a24_c00000{word-spacing:15.904800px;}
.wsefa_c00000{word-spacing:15.910020px;}
.ws434_c00000{word-spacing:15.916608px;}
.ws1118_c00000{word-spacing:15.925788px;}
.ws9c3_c00000{word-spacing:15.933600px;}
.ws116c_c00000{word-spacing:15.955848px;}
.ws1989_c00000{word-spacing:15.976800px;}
.ws338_c00000{word-spacing:15.984000px;}
.wsc87_c00000{word-spacing:15.998400px;}
.wsfd2_c00000{word-spacing:16.003944px;}
.ws8f0_c00000{word-spacing:16.005600px;}
.ws1162_c00000{word-spacing:16.011000px;}
.wsef0_c00000{word-spacing:16.020000px;}
.ws1291_c00000{word-spacing:16.027200px;}
.ws8f1_c00000{word-spacing:16.034400px;}
.ws1163_c00000{word-spacing:16.038000px;}
.ws13fd_c00000{word-spacing:16.041600px;}
.ws14f2_c00000{word-spacing:16.048800px;}
.ws43d_c00000{word-spacing:16.056000px;}
.ws339_c00000{word-spacing:16.063200px;}
.wse46_c00000{word-spacing:16.070400px;}
.ws89e_c00000{word-spacing:16.077600px;}
.ws7c7_c00000{word-spacing:16.084800px;}
.ws727_c00000{word-spacing:16.092000px;}
.ws1559_c00000{word-spacing:16.094124px;}
.ws13db_c00000{word-spacing:16.099200px;}
.wseba_c00000{word-spacing:16.106400px;}
.wsc68_c00000{word-spacing:16.113600px;}
.wsd2c_c00000{word-spacing:16.120800px;}
.ws33a_c00000{word-spacing:16.128000px;}
.wsb50_c00000{word-spacing:16.135200px;}
.wsd42_c00000{word-spacing:16.142400px;}
.ws89d_c00000{word-spacing:16.149600px;}
.ws143_c00000{word-spacing:16.156800px;}
.wsbce_c00000{word-spacing:16.164000px;}
.ws6cf_c00000{word-spacing:16.171200px;}
.ws43c_c00000{word-spacing:16.178400px;}
.ws3d5_c00000{word-spacing:16.185600px;}
.ws1ad1_c00000{word-spacing:16.190316px;}
.wsd2d_c00000{word-spacing:16.192800px;}
.ws7c8_c00000{word-spacing:16.200000px;}
.ws1321_c00000{word-spacing:16.202340px;}
.ws7c6_c00000{word-spacing:16.207200px;}
.ws774_c00000{word-spacing:16.213068px;}
.ws178a_c00000{word-spacing:16.214364px;}
.ws144_c00000{word-spacing:16.214400px;}
.ws18e8_c00000{word-spacing:16.221600px;}
.wsd01_c00000{word-spacing:16.226244px;}
.wsb30_c00000{word-spacing:16.228800px;}
.ws19b3_c00000{word-spacing:16.232832px;}
.ws728_c00000{word-spacing:16.236000px;}
.ws7ef_c00000{word-spacing:16.239420px;}
.ws13b2_c00000{word-spacing:16.243200px;}
.ws111b_c00000{word-spacing:16.244424px;}
.wsc10_c00000{word-spacing:16.246008px;}
.wse6d_c00000{word-spacing:16.250400px;}
.ws123a_c00000{word-spacing:16.250436px;}
.ws14bd_c00000{word-spacing:16.259184px;}
.ws7fc_c00000{word-spacing:16.265772px;}
.ws17d8_c00000{word-spacing:16.272360px;}
.ws150f_c00000{word-spacing:16.278948px;}
.wsd3a_c00000{word-spacing:16.279200px;}
.ws18e7_c00000{word-spacing:16.286400px;}
.ws13d0_c00000{word-spacing:16.292520px;}
.ws18c3_c00000{word-spacing:16.304544px;}
.wsf80_c00000{word-spacing:16.308000px;}
.wse7c_c00000{word-spacing:16.315200px;}
.ws1464_c00000{word-spacing:16.322400px;}
.ws4af_c00000{word-spacing:16.329600px;}
.ws1da_c00000{word-spacing:16.336800px;}
.ws18d4_c00000{word-spacing:16.344000px;}
.ws12de_c00000{word-spacing:16.351200px;}
.wsc63_c00000{word-spacing:16.358400px;}
.wsc62_c00000{word-spacing:16.365600px;}
.wsbb8_c00000{word-spacing:16.372800px;}
.wsd68_c00000{word-spacing:16.380000px;}
.wsf96_c00000{word-spacing:16.387200px;}
.wsd75_c00000{word-spacing:16.401600px;}
.ws1586_c00000{word-spacing:16.416000px;}
.ws181e_c00000{word-spacing:16.423200px;}
.ws891_c00000{word-spacing:16.430400px;}
.wsd38_c00000{word-spacing:16.437600px;}
.wsa89_c00000{word-spacing:16.444800px;}
.ws936_c00000{word-spacing:16.452000px;}
.ws1db_c00000{word-spacing:16.459200px;}
.wsf97_c00000{word-spacing:16.466400px;}
.ws78a_c00000{word-spacing:16.473600px;}
.ws1539_c00000{word-spacing:16.480800px;}
.ws1d9_c00000{word-spacing:16.488000px;}
.wsbb9_c00000{word-spacing:16.495200px;}
.wse66_c00000{word-spacing:16.502400px;}
.ws75a_c00000{word-spacing:16.509600px;}
.ws4b0_c00000{word-spacing:16.516800px;}
.ws67b_c00000{word-spacing:16.524000px;}
.ws1d8_c00000{word-spacing:16.531200px;}
.wsb70_c00000{word-spacing:16.538400px;}
.ws737_c00000{word-spacing:16.545600px;}
.wsc25_c00000{word-spacing:16.552800px;}
.wse30_c00000{word-spacing:16.560000px;}
.wse67_c00000{word-spacing:16.567200px;}
.ws75b_c00000{word-spacing:16.574400px;}
.ws1766_c00000{word-spacing:16.575408px;}
.ws13a2_c00000{word-spacing:16.581600px;}
.ws3df_c00000{word-spacing:16.581996px;}
.wse7d_c00000{word-spacing:16.588800px;}
.ws1521_c00000{word-spacing:16.595172px;}
.wsd39_c00000{word-spacing:16.596000px;}
.ws1a46_c00000{word-spacing:16.603200px;}
.ws3de_c00000{word-spacing:16.608348px;}
.ws1288_c00000{word-spacing:16.617600px;}
.ws11e1_c00000{word-spacing:16.621524px;}
.ws1282_c00000{word-spacing:16.623180px;}
.ws14ae_c00000{word-spacing:16.624800px;}
.ws86d_c00000{word-spacing:16.628112px;}
.ws581_c00000{word-spacing:16.634700px;}
.ws111f_c00000{word-spacing:16.635204px;}
.ws11e2_c00000{word-spacing:16.647876px;}
.ws1164_c00000{word-spacing:16.648200px;}
.ws1034_c00000{word-spacing:16.659000px;}
.ws15c7_c00000{word-spacing:16.660800px;}
.ws217_c00000{word-spacing:16.675200px;}
.ws19fb_c00000{word-spacing:16.682400px;}
.ws111a_c00000{word-spacing:16.689312px;}
.ws1033_c00000{word-spacing:16.696800px;}
.ws15c8_c00000{word-spacing:16.704000px;}
.ws789_c00000{word-spacing:16.711200px;}
.ws1878_c00000{word-spacing:16.718400px;}
.ws1080_c00000{word-spacing:16.723800px;}
.ws2ae_c00000{word-spacing:16.732800px;}
.ws1252_c00000{word-spacing:16.737408px;}
.ws9e7_c00000{word-spacing:16.740000px;}
.ws1582_c00000{word-spacing:16.747200px;}
.ws157f_c00000{word-spacing:16.749432px;}
.ws1583_c00000{word-spacing:16.754400px;}
.ws1124_c00000{word-spacing:16.755444px;}
.ws1247_c00000{word-spacing:16.761456px;}
.ws1615_c00000{word-spacing:16.761600px;}
.wsa3f_c00000{word-spacing:16.768800px;}
.wsa40_c00000{word-spacing:16.776000px;}
.ws18ec_c00000{word-spacing:16.783200px;}
.wsec_c00000{word-spacing:16.790400px;}
.wsbe5_c00000{word-spacing:16.797600px;}
.wsde2_c00000{word-spacing:16.804800px;}
.wsf75_c00000{word-spacing:16.812000px;}
.ws147a_c00000{word-spacing:16.819200px;}
.ws908_c00000{word-spacing:16.826400px;}
.ws9e6_c00000{word-spacing:16.833600px;}
.ws219_c00000{word-spacing:16.840800px;}
.wsed_c00000{word-spacing:16.848000px;}
.wse62_c00000{word-spacing:16.855200px;}
.ws57_c00000{word-spacing:16.862400px;}
.ws1994_c00000{word-spacing:16.869600px;}
.ws218_c00000{word-spacing:16.876800px;}
.ws2ad_c00000{word-spacing:16.884000px;}
.ws41e_c00000{word-spacing:16.891200px;}
.wsbb1_c00000{word-spacing:16.898400px;}
.ws157d_c00000{word-spacing:16.899732px;}
.ws41d_c00000{word-spacing:16.905600px;}
.ws949_c00000{word-spacing:16.912800px;}
.ws1597_c00000{word-spacing:16.917984px;}
.wsc2a_c00000{word-spacing:16.920000px;}
.wse74_c00000{word-spacing:16.924572px;}
.wsc2b_c00000{word-spacing:16.927200px;}
.wsf9b_c00000{word-spacing:16.934400px;}
.ws1939_c00000{word-spacing:16.935804px;}
.wse08_c00000{word-spacing:16.937748px;}
.wsde3_c00000{word-spacing:16.941600px;}
.wse75_c00000{word-spacing:16.944336px;}
.ws14b5_c00000{word-spacing:16.948800px;}
.ws19bd_c00000{word-spacing:16.950924px;}
.ws8d7_c00000{word-spacing:16.956000px;}
.wseaf_c00000{word-spacing:16.963200px;}
.ws1841_c00000{word-spacing:16.964100px;}
.ws16b6_c00000{word-spacing:16.970400px;}
.wse07_c00000{word-spacing:16.970688px;}
.ws1575_c00000{word-spacing:16.971876px;}
.ws14fa_c00000{word-spacing:16.977276px;}
.ws1471_c00000{word-spacing:16.977600px;}
.ws11ee_c00000{word-spacing:16.983864px;}
.ws788_c00000{word-spacing:16.984800px;}
.ws19e6_c00000{word-spacing:16.992000px;}
.ws15c1_c00000{word-spacing:16.997040px;}
.ws18d3_c00000{word-spacing:16.999200px;}
.ws15c0_c00000{word-spacing:17.003628px;}
.ws13bb_c00000{word-spacing:17.006400px;}
.ws1af1_c00000{word-spacing:17.013600px;}
.ws18d2_c00000{word-spacing:17.035200px;}
.ws18df_c00000{word-spacing:17.049600px;}
.ws10d3_c00000{word-spacing:17.053200px;}
.ws1aee_c00000{word-spacing:17.056044px;}
.wse9d_c00000{word-spacing:17.064000px;}
.wsb0d_c00000{word-spacing:17.071200px;}
.ws1ad8_c00000{word-spacing:17.074080px;}
.ws18e0_c00000{word-spacing:17.078400px;}
.ws10d4_c00000{word-spacing:17.080200px;}
.ws1529_c00000{word-spacing:17.085600px;}
.ws16cd_c00000{word-spacing:17.092800px;}
.wse34_c00000{word-spacing:17.100000px;}
.ws182_c00000{word-spacing:17.107200px;}
.ws4a2_c00000{word-spacing:17.114400px;}
.ws18d9_c00000{word-spacing:17.121600px;}
.wsd51_c00000{word-spacing:17.128800px;}
.ws72_c00000{word-spacing:17.136000px;}
.ws181_c00000{word-spacing:17.143200px;}
.wsb0e_c00000{word-spacing:17.150400px;}
.wse2e_c00000{word-spacing:17.157600px;}
.ws59f_c00000{word-spacing:17.164800px;}
.wscbf_c00000{word-spacing:17.172000px;}
.ws8d3_c00000{word-spacing:17.179200px;}
.wsb66_c00000{word-spacing:17.186400px;}
.wsffa_c00000{word-spacing:17.193600px;}
.ws18b2_c00000{word-spacing:17.200800px;}
.ws15af_c00000{word-spacing:17.208000px;}
.wsd52_c00000{word-spacing:17.215200px;}
.ws736_c00000{word-spacing:17.222400px;}
.ws2b0_c00000{word-spacing:17.229600px;}
.wsa69_c00000{word-spacing:17.236800px;}
.wsa68_c00000{word-spacing:17.244000px;}
.ws2b1_c00000{word-spacing:17.251200px;}
.ws73_c00000{word-spacing:17.258400px;}
.ws74_c00000{word-spacing:17.265600px;}
.ws1241_c00000{word-spacing:17.266464px;}
.ws1322_c00000{word-spacing:17.272476px;}
.wsc73_c00000{word-spacing:17.272800px;}
.ws8d4_c00000{word-spacing:17.280000px;}
.ws467_c00000{word-spacing:17.286912px;}
.ws834_c00000{word-spacing:17.287200px;}
.ws15e0_c00000{word-spacing:17.293500px;}
.ws474_c00000{word-spacing:17.294400px;}
.ws86a_c00000{word-spacing:17.300088px;}
.ws5a0_c00000{word-spacing:17.301600px;}
.ws1563_c00000{word-spacing:17.302536px;}
.ws15df_c00000{word-spacing:17.306676px;}
.wse33_c00000{word-spacing:17.308800px;}
.ws472_c00000{word-spacing:17.313264px;}
.ws475_c00000{word-spacing:17.316000px;}
.ws709_c00000{word-spacing:17.319852px;}
.ws13f8_c00000{word-spacing:17.323200px;}
.ws17a4_c00000{word-spacing:17.326584px;}
.ws3e9_c00000{word-spacing:17.333028px;}
.ws835_c00000{word-spacing:17.337600px;}
.ws7f0_c00000{word-spacing:17.339616px;}
.ws17a5_c00000{word-spacing:17.344620px;}
.ws1af2_c00000{word-spacing:17.344800px;}
.wsa5e_c00000{word-spacing:17.346204px;}
.wsf70_c00000{word-spacing:17.352000px;}
.ws9ea_c00000{word-spacing:17.352792px;}
.ws7f1_c00000{word-spacing:17.359380px;}
.ws172a_c00000{word-spacing:17.368668px;}
.ws1932_c00000{word-spacing:17.373600px;}
.ws127e_c00000{word-spacing:17.386704px;}
.wsed6_c00000{word-spacing:17.388000px;}
.ws1858_c00000{word-spacing:17.402400px;}
.wsba4_c00000{word-spacing:17.424000px;}
.ws182f_c00000{word-spacing:17.431200px;}
.ws113_c00000{word-spacing:17.445600px;}
.ws127d_c00000{word-spacing:17.458848px;}
.ws904_c00000{word-spacing:17.460000px;}
.wsfcc_c00000{word-spacing:17.464860px;}
.ws677_c00000{word-spacing:17.467200px;}
.wsfce_c00000{word-spacing:17.470872px;}
.wsa57_c00000{word-spacing:17.481600px;}
.ws1557_c00000{word-spacing:17.482896px;}
.ws19d8_c00000{word-spacing:17.488800px;}
.ws386_c00000{word-spacing:17.496000px;}
.ws89c_c00000{word-spacing:17.503200px;}
.ws492_c00000{word-spacing:17.510400px;}
.ws290_c00000{word-spacing:17.517600px;}
.wsed5_c00000{word-spacing:17.524800px;}
.wsa83_c00000{word-spacing:17.532000px;}
.ws3a8_c00000{word-spacing:17.539200px;}
.ws676_c00000{word-spacing:17.546400px;}
.ws387_c00000{word-spacing:17.553600px;}
.ws59_c00000{word-spacing:17.560800px;}
.wsa4b_c00000{word-spacing:17.568000px;}
.ws291_c00000{word-spacing:17.575200px;}
.wsb04_c00000{word-spacing:17.582400px;}
.ws5a4_c00000{word-spacing:17.589600px;}
.wsbed_c00000{word-spacing:17.596800px;}
.wsa56_c00000{word-spacing:17.604000px;}
.ws2b7_c00000{word-spacing:17.611200px;}
.wse01_c00000{word-spacing:17.616312px;}
.wse09_c00000{word-spacing:17.618400px;}
.ws58_c00000{word-spacing:17.625600px;}
.ws1662_c00000{word-spacing:17.629488px;}
.ws5a_c00000{word-spacing:17.632800px;}
.ws84f_c00000{word-spacing:17.636076px;}
.ws106f_c00000{word-spacing:17.639208px;}
.ws1997_c00000{word-spacing:17.640000px;}
.wse8c_c00000{word-spacing:17.645220px;}
.ws3a7_c00000{word-spacing:17.647200px;}
.ws7d1_c00000{word-spacing:17.649252px;}
.ws903_c00000{word-spacing:17.654400px;}
.ws1515_c00000{word-spacing:17.655840px;}
.wsb05_c00000{word-spacing:17.661600px;}
.ws1ac9_c00000{word-spacing:17.662428px;}
.ws6d0_c00000{word-spacing:17.668800px;}
.ws84e_c00000{word-spacing:17.669016px;}
.ws1320_c00000{word-spacing:17.675280px;}
.ws16fe_c00000{word-spacing:17.675604px;}
.ws16ef_c00000{word-spacing:17.676000px;}
.ws49d_c00000{word-spacing:17.682192px;}
.ws77e_c00000{word-spacing:17.688780px;}
.ws4a8_c00000{word-spacing:17.690400px;}
.ws1963_c00000{word-spacing:17.695368px;}
.ws8ee_c00000{word-spacing:17.701956px;}
.ws1aca_c00000{word-spacing:17.715132px;}
.wsb06_c00000{word-spacing:17.719200px;}
.ws19d3_c00000{word-spacing:17.740800px;}
.ws10fd_c00000{word-spacing:17.741412px;}
.wsa7e_c00000{word-spacing:17.748000px;}
.ws7de_c00000{word-spacing:17.748072px;}
.ws1456_c00000{word-spacing:17.762400px;}
.ws1249_c00000{word-spacing:17.783496px;}
.ws17b9_c00000{word-spacing:17.784000px;}
.ws15db_c00000{word-spacing:17.791200px;}
.wsb41_c00000{word-spacing:17.798400px;}
.ws1734_c00000{word-spacing:17.819568px;}
.ws1a0a_c00000{word-spacing:17.820000px;}
.ws17ba_c00000{word-spacing:17.827200px;}
.wsb93_c00000{word-spacing:17.834400px;}
.ws196a_c00000{word-spacing:17.837604px;}
.ws1933_c00000{word-spacing:17.841600px;}
.ws1978_c00000{word-spacing:17.848800px;}
.ws907_c00000{word-spacing:17.856000px;}
.wsc6b_c00000{word-spacing:17.870400px;}
.ws496_c00000{word-spacing:17.877600px;}
.ws13eb_c00000{word-spacing:17.884800px;}
.ws10b8_c00000{word-spacing:17.885700px;}
.wsc30_c00000{word-spacing:17.892000px;}
.ws4a9_c00000{word-spacing:17.899200px;}
.wsb23_c00000{word-spacing:17.906400px;}
.ws7ff_c00000{word-spacing:17.913600px;}
.ws497_c00000{word-spacing:17.920800px;}
.ws972_c00000{word-spacing:17.935200px;}
.ws26a_c00000{word-spacing:17.942400px;}
.ws897_c00000{word-spacing:17.949600px;}
.wsa9b_c00000{word-spacing:17.956800px;}
.ws1696_c00000{word-spacing:17.963856px;}
.ws440_c00000{word-spacing:17.964000px;}
.ws14b3_c00000{word-spacing:17.965476px;}
.ws498_c00000{word-spacing:17.971200px;}
.ws9d6_c00000{word-spacing:17.978400px;}
.ws803_c00000{word-spacing:17.985600px;}
.wsc07_c00000{word-spacing:17.992800px;}
.ws1776_c00000{word-spacing:17.999928px;}
.ws1541_c00000{word-spacing:18.000000px;}
.wsf92_c00000{word-spacing:18.005004px;}
.wscea_c00000{word-spacing:18.007200px;}
.wsdcb_c00000{word-spacing:18.014400px;}
.wsc20_c00000{word-spacing:18.018180px;}
.ws898_c00000{word-spacing:18.021600px;}
.wsb42_c00000{word-spacing:18.028800px;}
.ws15ca_c00000{word-spacing:18.031356px;}
.ws800_c00000{word-spacing:18.036000px;}
.ws1605_c00000{word-spacing:18.037944px;}
.wsa7f_c00000{word-spacing:18.043200px;}
.ws483_c00000{word-spacing:18.044532px;}
.ws804_c00000{word-spacing:18.050400px;}
.ws1629_c00000{word-spacing:18.051120px;}
.ws1695_c00000{word-spacing:18.064296px;}
.ws1265_c00000{word-spacing:18.066060px;}
.wsf91_c00000{word-spacing:18.070884px;}
.ws1892_c00000{word-spacing:18.078084px;}
.wsb24_c00000{word-spacing:18.079200px;}
.ws1a0e_c00000{word-spacing:18.086400px;}
.ws1969_c00000{word-spacing:18.090108px;}
.ws816_c00000{word-spacing:18.093600px;}
.wsfd8_c00000{word-spacing:18.102132px;}
.wsea2_c00000{word-spacing:18.108000px;}
.ws1571_c00000{word-spacing:18.108144px;}
.ws1a2a_c00000{word-spacing:18.115200px;}
.ws441_c00000{word-spacing:18.122400px;}
.ws16b7_c00000{word-spacing:18.129600px;}
.ws17dd_c00000{word-spacing:18.136800px;}
.ws986_c00000{word-spacing:18.144000px;}
.ws1777_c00000{word-spacing:18.144216px;}
.wsf69_c00000{word-spacing:18.151200px;}
.ws1430_c00000{word-spacing:18.158400px;}
.ws1425_c00000{word-spacing:18.165600px;}
.ws1a2b_c00000{word-spacing:18.172800px;}
.ws19d4_c00000{word-spacing:18.180000px;}
.ws1929_c00000{word-spacing:18.201600px;}
.ws12d2_c00000{word-spacing:18.208800px;}
.ws833_c00000{word-spacing:18.216000px;}
.ws1630_c00000{word-spacing:18.223200px;}
.wse11_c00000{word-spacing:18.230400px;}
.ws815_c00000{word-spacing:18.237600px;}
.wsa7a_c00000{word-spacing:18.244800px;}
.ws5f7_c00000{word-spacing:18.252000px;}
.wsb56_c00000{word-spacing:18.259200px;}
.ws6df_c00000{word-spacing:18.266400px;}
.wsbbe_c00000{word-spacing:18.273600px;}
.ws6e0_c00000{word-spacing:18.280800px;}
.ws95a_c00000{word-spacing:18.288000px;}
.wsd06_c00000{word-spacing:18.295200px;}
.ws832_c00000{word-spacing:18.302400px;}
.ws167a_c00000{word-spacing:18.309600px;}
.ws127_c00000{word-spacing:18.316800px;}
.ws4e_c00000{word-spacing:18.324000px;}
.ws35e_c00000{word-spacing:18.331200px;}
.ws341_c00000{word-spacing:18.338400px;}
.ws128_c00000{word-spacing:18.345600px;}
.ws29e_c00000{word-spacing:18.352800px;}
.ws987_c00000{word-spacing:18.360000px;}
.wsa84_c00000{word-spacing:18.367200px;}
.ws29d_c00000{word-spacing:18.374400px;}
.ws14b8_c00000{word-spacing:18.380520px;}
.ws13aa_c00000{word-spacing:18.381600px;}
.ws19af_c00000{word-spacing:18.387108px;}
.wsb57_c00000{word-spacing:18.388800px;}
.ws16e5_c00000{word-spacing:18.393696px;}
.ws1a50_c00000{word-spacing:18.396000px;}
.ws19ae_c00000{word-spacing:18.400284px;}
.ws11d3_c00000{word-spacing:18.403200px;}
.ws1848_c00000{word-spacing:18.406872px;}
.ws198a_c00000{word-spacing:18.410400px;}
.ws847_c00000{word-spacing:18.413460px;}
.ws4e1_c00000{word-spacing:18.420048px;}
.ws1500_c00000{word-spacing:18.424800px;}
.ws151c_c00000{word-spacing:18.426636px;}
.ws4f_c00000{word-spacing:18.432000px;}
.ws51c_c00000{word-spacing:18.433224px;}
.ws15d3_c00000{word-spacing:18.446400px;}
.ws848_c00000{word-spacing:18.452988px;}
.ws1627_c00000{word-spacing:18.460800px;}
.ws1867_c00000{word-spacing:18.475200px;}
.ws14f1_c00000{word-spacing:18.482400px;}
.wsd96_c00000{word-spacing:18.489600px;}
.ws10ae_c00000{word-spacing:18.495000px;}
.wsd95_c00000{word-spacing:18.504000px;}
.ws1991_c00000{word-spacing:18.511200px;}
.ws8bd_c00000{word-spacing:18.518400px;}
.ws16a3_c00000{word-spacing:18.525600px;}
.wsf4e_c00000{word-spacing:18.532800px;}
.ws1ab8_c00000{word-spacing:18.540000px;}
.ws1043_c00000{word-spacing:18.547020px;}
.ws10af_c00000{word-spacing:18.549000px;}
.ws17fa_c00000{word-spacing:18.554400px;}
.ws10f9_c00000{word-spacing:18.559044px;}
.wsef3_c00000{word-spacing:18.561600px;}
.ws232_c00000{word-spacing:18.568800px;}
.ws28a_c00000{word-spacing:18.576000px;}
.ws15d2_c00000{word-spacing:18.583200px;}
.ws1499_c00000{word-spacing:18.590400px;}
.ws959_c00000{word-spacing:18.597600px;}
.ws1393_c00000{word-spacing:18.601380px;}
.wsb68_c00000{word-spacing:18.604800px;}
.ws1f3_c00000{word-spacing:18.612000px;}
.ws641_c00000{word-spacing:18.619200px;}
.ws352_c00000{word-spacing:18.626400px;}
.ws6be_c00000{word-spacing:18.630864px;}
.ws234_c00000{word-spacing:18.633600px;}
.ws1d3_c00000{word-spacing:18.640800px;}
.wsef4_c00000{word-spacing:18.648000px;}
.ws8be_c00000{word-spacing:18.655200px;}
.ws19e7_c00000{word-spacing:18.662400px;}
.wsc91_c00000{word-spacing:18.669600px;}
.ws1f4_c00000{word-spacing:18.676800px;}
.ws901_c00000{word-spacing:18.684000px;}
.ws922_c00000{word-spacing:18.691200px;}
.ws1206_c00000{word-spacing:18.696744px;}
.ws289_c00000{word-spacing:18.698400px;}
.wse77_c00000{word-spacing:18.705600px;}
.wsb0f_c00000{word-spacing:18.712800px;}
.ws6bf_c00000{word-spacing:18.716508px;}
.ws1d4_c00000{word-spacing:18.720000px;}
.ws1205_c00000{word-spacing:18.723096px;}
.wse78_c00000{word-spacing:18.727200px;}
.ws1312_c00000{word-spacing:18.727380px;}
.ws902_c00000{word-spacing:18.734400px;}
.wsef2_c00000{word-spacing:18.741600px;}
.ws121f_c00000{word-spacing:18.742860px;}
.ws18d7_c00000{word-spacing:18.748800px;}
.ws6bd_c00000{word-spacing:18.749448px;}
.ws197e_c00000{word-spacing:18.756000px;}
.ws233_c00000{word-spacing:18.770400px;}
.ws1524_c00000{word-spacing:18.775800px;}
.wsfe0_c00000{word-spacing:18.781488px;}
.ws1523_c00000{word-spacing:18.782388px;}
.ws9d0_c00000{word-spacing:18.784800px;}
.ws11e6_c00000{word-spacing:18.788976px;}
.ws1d5_c00000{word-spacing:18.792000px;}
.ws1213_c00000{word-spacing:18.795564px;}
.ws15f7_c00000{word-spacing:18.799200px;}
.wsf88_c00000{word-spacing:18.806400px;}
.wsb2b_c00000{word-spacing:18.813600px;}
.ws16c2_c00000{word-spacing:18.828000px;}
.ws1214_c00000{word-spacing:18.841680px;}
.ws1873_c00000{word-spacing:18.849600px;}
.ws105a_c00000{word-spacing:18.856800px;}
.ws631_c00000{word-spacing:18.864000px;}
.ws1a0c_c00000{word-spacing:18.871200px;}
.wsbba_c00000{word-spacing:18.878400px;}
.ws17eb_c00000{word-spacing:18.885600px;}
.ws1059_c00000{word-spacing:18.889200px;}
.ws19e5_c00000{word-spacing:18.892800px;}
.wscab_c00000{word-spacing:18.900000px;}
.ws17b8_c00000{word-spacing:18.901728px;}
.ws14ed_c00000{word-spacing:18.907200px;}
.wsc9f_c00000{word-spacing:18.914400px;}
.ws19d7_c00000{word-spacing:18.921600px;}
.ws994_c00000{word-spacing:18.928800px;}
.ws75f_c00000{word-spacing:18.936000px;}
.ws1e8_c00000{word-spacing:18.950400px;}
.ws13f2_c00000{word-spacing:18.957600px;}
.ws12cf_c00000{word-spacing:18.964800px;}
.ws12c3_c00000{word-spacing:18.972000px;}
.ws882_c00000{word-spacing:18.979200px;}
.wsdf4_c00000{word-spacing:18.986400px;}
.wsb1b_c00000{word-spacing:18.993600px;}
.ws630_c00000{word-spacing:19.000800px;}
.ws12ce_c00000{word-spacing:19.008000px;}
.ws12c7_c00000{word-spacing:19.015200px;}
.wsd69_c00000{word-spacing:19.022400px;}
.wse54_c00000{word-spacing:19.029600px;}
.ws75e_c00000{word-spacing:19.036800px;}
.ws17f_c00000{word-spacing:19.044000px;}
.wsca2_c00000{word-spacing:19.051200px;}
.ws9c1_c00000{word-spacing:19.058400px;}
.ws180_c00000{word-spacing:19.065600px;}
.ws1e9_c00000{word-spacing:19.072800px;}
.ws881_c00000{word-spacing:19.080000px;}
.ws125d_c00000{word-spacing:19.082088px;}
.ws164b_c00000{word-spacing:19.085436px;}
.ws993_c00000{word-spacing:19.087200px;}
.ws166b_c00000{word-spacing:19.094400px;}
.wsc0b_c00000{word-spacing:19.098612px;}
.ws820_c00000{word-spacing:19.101600px;}
.ws19e3_c00000{word-spacing:19.108800px;}
.wsb17_c00000{word-spacing:19.116000px;}
.wsc0a_c00000{word-spacing:19.118376px;}
.ws16de_c00000{word-spacing:19.124964px;}
.ws9d1_c00000{word-spacing:19.130400px;}
.ws11cd_c00000{word-spacing:19.131552px;}
.ws1352_c00000{word-spacing:19.138140px;}
.ws160a_c00000{word-spacing:19.151316px;}
.ws162a_c00000{word-spacing:19.152000px;}
.ws14fe_c00000{word-spacing:19.159200px;}
.ws191b_c00000{word-spacing:19.166256px;}
.wsdf3_c00000{word-spacing:19.188000px;}
.ws195a_c00000{word-spacing:19.190304px;}
.ws19e4_c00000{word-spacing:19.195200px;}
.wsa8f_c00000{word-spacing:19.202400px;}
.ws1351_c00000{word-spacing:19.204020px;}
.ws191a_c00000{word-spacing:19.208340px;}
.wsed2_c00000{word-spacing:19.209600px;}
.ws15f0_c00000{word-spacing:19.216800px;}
.wsa8c_c00000{word-spacing:19.224000px;}
.ws10e9_c00000{word-spacing:19.229400px;}
.wsb8b_c00000{word-spacing:19.238400px;}
.ws125e_c00000{word-spacing:19.244412px;}
.wsce5_c00000{word-spacing:19.245600px;}
.ws7bf_c00000{word-spacing:19.252800px;}
.ws10e8_c00000{word-spacing:19.256400px;}
.wsc9e_c00000{word-spacing:19.260000px;}
.ws125f_c00000{word-spacing:19.268460px;}
.ws1674_c00000{word-spacing:19.274400px;}
.wsf7f_c00000{word-spacing:19.281600px;}
.ws15a9_c00000{word-spacing:19.288800px;}
.ws7c0_c00000{word-spacing:19.296000px;}
.wsd5f_c00000{word-spacing:19.303200px;}
.wsd3d_c00000{word-spacing:19.310400px;}
.ws187b_c00000{word-spacing:19.310544px;}
.wsa8b_c00000{word-spacing:19.317600px;}
.ws114f_c00000{word-spacing:19.322568px;}
.wsc75_c00000{word-spacing:19.324800px;}
.ws1492_c00000{word-spacing:19.332000px;}
.wsc76_c00000{word-spacing:19.339200px;}
.ws15aa_c00000{word-spacing:19.346400px;}
.wsb8c_c00000{word-spacing:19.353600px;}
.wsc2f_c00000{word-spacing:19.360800px;}
.wsd3e_c00000{word-spacing:19.368000px;}
.ws51d_c00000{word-spacing:19.375200px;}
.wsf4f_c00000{word-spacing:19.382400px;}
.wsc74_c00000{word-spacing:19.389600px;}
.wse48_c00000{word-spacing:19.396800px;}
.ws6b9_c00000{word-spacing:19.404000px;}
.wsb8d_c00000{word-spacing:19.411200px;}
.ws6b8_c00000{word-spacing:19.418400px;}
.ws7be_c00000{word-spacing:19.425600px;}
.ws134c_c00000{word-spacing:19.432800px;}
.ws11a3_c00000{word-spacing:19.436796px;}
.wseb4_c00000{word-spacing:19.440000px;}
.ws6fa_c00000{word-spacing:19.441188px;}
.wse25_c00000{word-spacing:19.447200px;}
.ws14be_c00000{word-spacing:19.447776px;}
.wsa8e_c00000{word-spacing:19.454400px;}
.ws5c0_c00000{word-spacing:19.460952px;}
.wsc2e_c00000{word-spacing:19.461600px;}
.ws115e_c00000{word-spacing:19.466856px;}
.wsbcd_c00000{word-spacing:19.474128px;}
.ws14d5_c00000{word-spacing:19.476000px;}
.ws1658_c00000{word-spacing:19.480716px;}
.ws5c1_c00000{word-spacing:19.487304px;}
.wsa8d_c00000{word-spacing:19.490400px;}
.wse04_c00000{word-spacing:19.493892px;}
.wsd2a_c00000{word-spacing:19.497600px;}
.wsb9a_c00000{word-spacing:19.512000px;}
.ws3ea_c00000{word-spacing:19.513656px;}
.ws7a9_c00000{word-spacing:19.533600px;}
.ws10d0_c00000{word-spacing:19.542600px;}
.wsb9b_c00000{word-spacing:19.548000px;}
.ws1561_c00000{word-spacing:19.563048px;}
.wsffe_c00000{word-spacing:19.569600px;}
.ws762_c00000{word-spacing:19.576800px;}
.ws73e_c00000{word-spacing:19.591200px;}
.ws183b_c00000{word-spacing:19.605600px;}
.ws10f7_c00000{word-spacing:19.607400px;}
.ws4b5_c00000{word-spacing:19.612800px;}
.ws73d_c00000{word-spacing:19.620000px;}
.ws31d_c00000{word-spacing:19.627200px;}
.wse10_c00000{word-spacing:19.634400px;}
.ws1465_c00000{word-spacing:19.641600px;}
.ws1133_c00000{word-spacing:19.647216px;}
.ws791_c00000{word-spacing:19.648800px;}
.wseb0_c00000{word-spacing:19.656000px;}
.ws1025_c00000{word-spacing:19.663200px;}
.ws3b4_c00000{word-spacing:19.670400px;}
.wse43_c00000{word-spacing:19.677600px;}
.ws3b5_c00000{word-spacing:19.684800px;}
.ws262_c00000{word-spacing:19.692000px;}
.ws8f8_c00000{word-spacing:19.699200px;}
.ws1b9_c00000{word-spacing:19.706400px;}
.ws89f_c00000{word-spacing:19.713600px;}
.ws724_c00000{word-spacing:19.720800px;}
.ws917_c00000{word-spacing:19.728000px;}
.ws161d_c00000{word-spacing:19.735200px;}
.wsd29_c00000{word-spacing:19.742400px;}
.ws4b6_c00000{word-spacing:19.749600px;}
.ws1ba_c00000{word-spacing:19.756800px;}
.ws31c_c00000{word-spacing:19.764000px;}
.ws194_c00000{word-spacing:19.771200px;}
.ws51e_c00000{word-spacing:19.778400px;}
.ws859_c00000{word-spacing:19.785600px;}
.ws195_c00000{word-spacing:19.792800px;}
.ws263_c00000{word-spacing:19.800000px;}
.ws87a_c00000{word-spacing:19.807200px;}
.wse6f_c00000{word-spacing:19.814400px;}
.ws1216_c00000{word-spacing:19.821600px;}
.wsfa1_c00000{word-spacing:19.829880px;}
.ws7c1_c00000{word-spacing:19.836000px;}
.ws44e_c00000{word-spacing:19.836468px;}
.ws18c4_c00000{word-spacing:19.839600px;}
.wsa05_c00000{word-spacing:19.843056px;}
.ws147b_c00000{word-spacing:19.843200px;}
.ws42d_c00000{word-spacing:19.849644px;}
.wsdeb_c00000{word-spacing:19.850400px;}
.ws1308_c00000{word-spacing:19.857636px;}
.ws42c_c00000{word-spacing:19.862820px;}
.wsdea_c00000{word-spacing:19.864800px;}
.ws18c5_c00000{word-spacing:19.869660px;}
.wsa06_c00000{word-spacing:19.875996px;}
.ws1307_c00000{word-spacing:19.887696px;}
.wse3b_c00000{word-spacing:19.915200px;}
.ws76_c00000{word-spacing:19.936800px;}
.wse65_c00000{word-spacing:19.944000px;}
.ws12ca_c00000{word-spacing:19.951200px;}
.ws192c_c00000{word-spacing:19.965600px;}
.ws18fd_c00000{word-spacing:19.965852px;}
.ws15f2_c00000{word-spacing:19.972800px;}
.ws77_c00000{word-spacing:19.980000px;}
.ws12da_c00000{word-spacing:19.987200px;}
.ws1277_c00000{word-spacing:19.989900px;}
.ws15f1_c00000{word-spacing:20.001600px;}
.ws130e_c00000{word-spacing:20.001924px;}
.wsc98_c00000{word-spacing:20.008800px;}
.wsfa3_c00000{word-spacing:20.016000px;}
.ws19ea_c00000{word-spacing:20.023200px;}
.wse3c_c00000{word-spacing:20.030400px;}
.ws10c_c00000{word-spacing:20.037600px;}
.ws91c_c00000{word-spacing:20.044800px;}
.ws1108_c00000{word-spacing:20.052000px;}
.ws11c0_c00000{word-spacing:20.059200px;}
.ws11c2_c00000{word-spacing:20.066400px;}
.ws16c1_c00000{word-spacing:20.073600px;}
.wsb7f_c00000{word-spacing:20.080800px;}
.ws9f7_c00000{word-spacing:20.088000px;}
.ws830_c00000{word-spacing:20.095200px;}
.ws91b_c00000{word-spacing:20.102400px;}
.ws2a9_c00000{word-spacing:20.109600px;}
.wsc97_c00000{word-spacing:20.116800px;}
.ws82f_c00000{word-spacing:20.124000px;}
.ws1f6_c00000{word-spacing:20.131200px;}
.wse0a_c00000{word-spacing:20.138400px;}
.ws1f5_c00000{word-spacing:20.145600px;}
.ws396_c00000{word-spacing:20.152800px;}
.wsbd4_c00000{word-spacing:20.159280px;}
.ws9f6_c00000{word-spacing:20.160000px;}
.ws80f_c00000{word-spacing:20.167200px;}
.ws810_c00000{word-spacing:20.174400px;}
.ws18fe_c00000{word-spacing:20.176272px;}
.ws120b_c00000{word-spacing:20.179044px;}
.ws163c_c00000{word-spacing:20.181600px;}
.ws5be_c00000{word-spacing:20.185632px;}
.ws17a9_c00000{word-spacing:20.188296px;}
.ws86c_c00000{word-spacing:20.192220px;}
.ws10b_c00000{word-spacing:20.196000px;}
.wsaed_c00000{word-spacing:20.198808px;}
.wsb34_c00000{word-spacing:20.205396px;}
.ws19dd_c00000{word-spacing:20.210400px;}
.ws1702_c00000{word-spacing:20.211984px;}
.wsaee_c00000{word-spacing:20.217600px;}
.ws18ff_c00000{word-spacing:20.218356px;}
.wsb33_c00000{word-spacing:20.218572px;}
.ws86b_c00000{word-spacing:20.225160px;}
.ws1694_c00000{word-spacing:20.231748px;}
.ws199d_c00000{word-spacing:20.238336px;}
.ws94e_c00000{word-spacing:20.253600px;}
.wsfe5_c00000{word-spacing:20.254428px;}
.ws177a_c00000{word-spacing:20.260440px;}
.ws199e_c00000{word-spacing:20.264688px;}
.ws17aa_c00000{word-spacing:20.278476px;}
.ws71e_c00000{word-spacing:20.289600px;}
.ws177b_c00000{word-spacing:20.296512px;}
.ws17ec_c00000{word-spacing:20.296800px;}
.ws1871_c00000{word-spacing:20.304000px;}
.wsb21_c00000{word-spacing:20.311200px;}
.ws1a1a_c00000{word-spacing:20.318400px;}
.ws17ed_c00000{word-spacing:20.332800px;}
.ws1a00_c00000{word-spacing:20.354400px;}
.ws978_c00000{word-spacing:20.361600px;}
.ws1836_c00000{word-spacing:20.368800px;}
.wsb2e_c00000{word-spacing:20.376000px;}
.wsbbd_c00000{word-spacing:20.383200px;}
.wsd30_c00000{word-spacing:20.390400px;}
.wsf33_c00000{word-spacing:20.397600px;}
.ws563_c00000{word-spacing:20.404800px;}
.wsa4a_c00000{word-spacing:20.412000px;}
.wsf59_c00000{word-spacing:20.419200px;}
.ws3fd_c00000{word-spacing:20.426400px;}
.wsa0c_c00000{word-spacing:20.433600px;}
.ws9b7_c00000{word-spacing:20.440800px;}
.ws5dc_c00000{word-spacing:20.448000px;}
.wsd31_c00000{word-spacing:20.455200px;}
.wsf05_c00000{word-spacing:20.462400px;}
.ws562_c00000{word-spacing:20.469600px;}
.ws680_c00000{word-spacing:20.476800px;}
.ws56c_c00000{word-spacing:20.484000px;}
.ws11ef_c00000{word-spacing:20.488680px;}
.ws8cf_c00000{word-spacing:20.491200px;}
.ws11ca_c00000{word-spacing:20.495268px;}
.ws3fe_c00000{word-spacing:20.498400px;}
.ws67f_c00000{word-spacing:20.505600px;}
.ws5dd_c00000{word-spacing:20.512800px;}
.wsb22_c00000{word-spacing:20.520000px;}
.ws1dd_c00000{word-spacing:20.527200px;}
.ws120d_c00000{word-spacing:20.528208px;}
.wse3e_c00000{word-spacing:20.534400px;}
.ws4f1_c00000{word-spacing:20.534796px;}
.ws460_c00000{word-spacing:20.541384px;}
.wsc24_c00000{word-spacing:20.541600px;}
.ws11c9_c00000{word-spacing:20.547972px;}
.wsf58_c00000{word-spacing:20.548800px;}
.ws461_c00000{word-spacing:20.554560px;}
.ws1649_c00000{word-spacing:20.556000px;}
.ws1607_c00000{word-spacing:20.561148px;}
.ws979_c00000{word-spacing:20.563200px;}
.wsfb9_c00000{word-spacing:20.567052px;}
.ws175d_c00000{word-spacing:20.574324px;}
.ws19e1_c00000{word-spacing:20.577600px;}
.ws4f0_c00000{word-spacing:20.580912px;}
.ws1608_c00000{word-spacing:20.587500px;}
.ws60a_c00000{word-spacing:20.594088px;}
.ws1805_c00000{word-spacing:20.620800px;}
.ws609_c00000{word-spacing:20.627028px;}
.ws1806_c00000{word-spacing:20.635200px;}
.ws18b1_c00000{word-spacing:20.656800px;}
.ws117f_c00000{word-spacing:20.657232px;}
.ws1a49_c00000{word-spacing:20.664000px;}
.ws1ac0_c00000{word-spacing:20.671200px;}
.ws406_c00000{word-spacing:20.678400px;}
.ws10d_c00000{word-spacing:20.685600px;}
.wse35_c00000{word-spacing:20.700000px;}
.ws12b6_c00000{word-spacing:20.714400px;}
.ws122c_c00000{word-spacing:20.728800px;}
.wsd8d_c00000{word-spacing:20.736000px;}
.wsb71_c00000{word-spacing:20.743200px;}
.ws12e1_c00000{word-spacing:20.750400px;}
.ws15dd_c00000{word-spacing:20.757600px;}
.ws328_c00000{word-spacing:20.764800px;}
.wsd0c_c00000{word-spacing:20.772000px;}
.ws6f1_c00000{word-spacing:20.779200px;}
.ws94_c00000{word-spacing:20.786400px;}
.ws649_c00000{word-spacing:20.793600px;}
.ws407_c00000{word-spacing:20.800800px;}
.ws329_c00000{word-spacing:20.808000px;}
.ws53d_c00000{word-spacing:20.815200px;}
.ws1dc_c00000{word-spacing:20.822400px;}
.ws12e2_c00000{word-spacing:20.829600px;}
.wsb72_c00000{word-spacing:20.836800px;}
.ws10e_c00000{word-spacing:20.844000px;}
.ws1de_c00000{word-spacing:20.851200px;}
.ws149e_c00000{word-spacing:20.858400px;}
.wsaa3_c00000{word-spacing:20.865600px;}
.ws14a1_c00000{word-spacing:20.870784px;}
.ws648_c00000{word-spacing:20.872800px;}
.ws14a3_c00000{word-spacing:20.877372px;}
.wsd59_c00000{word-spacing:20.880000px;}
.ws17f2_c00000{word-spacing:20.887200px;}
.ws95_c00000{word-spacing:20.894400px;}
.wsc79_c00000{word-spacing:20.897136px;}
.wscf6_c00000{word-spacing:20.901600px;}
.ws14a2_c00000{word-spacing:20.903724px;}
.ws162f_c00000{word-spacing:20.910312px;}
.wsb73_c00000{word-spacing:20.916000px;}
.ws8ed_c00000{word-spacing:20.916900px;}
.ws1a26_c00000{word-spacing:20.923200px;}
.wsda5_c00000{word-spacing:20.923488px;}
.wsc78_c00000{word-spacing:20.930076px;}
.ws122b_c00000{word-spacing:20.937600px;}
.ws16b3_c00000{word-spacing:20.943252px;}
.ws188a_c00000{word-spacing:20.951820px;}
.wsc41_c00000{word-spacing:20.966400px;}
.ws64a_c00000{word-spacing:20.973600px;}
.ws1ad3_c00000{word-spacing:20.981880px;}
.ws13c0_c00000{word-spacing:20.988000px;}
.wsc2d_c00000{word-spacing:20.995200px;}
.ws684_c00000{word-spacing:21.002400px;}
.ws4fb_c00000{word-spacing:21.024000px;}
.ws1342_c00000{word-spacing:21.038400px;}
.ws17dc_c00000{word-spacing:21.045600px;}
.ws8a2_c00000{word-spacing:21.067200px;}
.wsf1b_c00000{word-spacing:21.074400px;}
.ws15d0_c00000{word-spacing:21.081600px;}
.ws16e9_c00000{word-spacing:21.096000px;}
.ws8fd_c00000{word-spacing:21.103200px;}
.wsc6c_c00000{word-spacing:21.110400px;}
.ws1cd_c00000{word-spacing:21.117600px;}
.ws9d4_c00000{word-spacing:21.124800px;}
.wsdf6_c00000{word-spacing:21.132000px;}
.ws760_c00000{word-spacing:21.139200px;}
.ws129f_c00000{word-spacing:21.146400px;}
.ws4fa_c00000{word-spacing:21.153600px;}
.ws1bc_c00000{word-spacing:21.160800px;}
.ws734_c00000{word-spacing:21.168000px;}
.ws6d_c00000{word-spacing:21.175200px;}
.ws6bb_c00000{word-spacing:21.182400px;}
.ws685_c00000{word-spacing:21.189600px;}
.ws910_c00000{word-spacing:21.196800px;}
.ws1bb_c00000{word-spacing:21.204000px;}
.ws1cc_c00000{word-spacing:21.211200px;}
.ws6ba_c00000{word-spacing:21.218400px;}
.ws1024_c00000{word-spacing:21.225600px;}
.ws8a1_c00000{word-spacing:21.232800px;}
.ws12ec_c00000{word-spacing:21.240000px;}
.ws6c_c00000{word-spacing:21.247200px;}
.ws74d_c00000{word-spacing:21.252888px;}
.ws13ed_c00000{word-spacing:21.254400px;}
.ws892_c00000{word-spacing:21.268800px;}
.ws74e_c00000{word-spacing:21.272652px;}
.wsaad_c00000{word-spacing:21.279240px;}
.wsb8f_c00000{word-spacing:21.283200px;}
.wsabd_c00000{word-spacing:21.285828px;}
.ws16f4_c00000{word-spacing:21.292416px;}
.ws8fe_c00000{word-spacing:21.297600px;}
.ws18e3_c00000{word-spacing:21.304800px;}
.wsabc_c00000{word-spacing:21.305592px;}
.wsde1_c00000{word-spacing:21.312000px;}
.ws18e2_c00000{word-spacing:21.319200px;}
.ws1000_c00000{word-spacing:21.340800px;}
.wsfa6_c00000{word-spacing:21.355200px;}
.ws92f_c00000{word-spacing:21.384000px;}
.ws1190_c00000{word-spacing:21.389400px;}
.wseec_c00000{word-spacing:21.405600px;}
.ws864_c00000{word-spacing:21.412800px;}
.ws1ab6_c00000{word-spacing:21.420000px;}
.ws118f_c00000{word-spacing:21.421800px;}
.ws16e_c00000{word-spacing:21.427200px;}
.wsc36_c00000{word-spacing:21.434400px;}
.ws22e_c00000{word-spacing:21.441600px;}
.ws865_c00000{word-spacing:21.448800px;}
.ws169d_c00000{word-spacing:21.450816px;}
.ws4ee_c00000{word-spacing:21.456000px;}
.wseeb_c00000{word-spacing:21.463200px;}
.ws478_c00000{word-spacing:21.470400px;}
.ws10c5_c00000{word-spacing:21.477600px;}
.wsc37_c00000{word-spacing:21.484800px;}
.ws4ed_c00000{word-spacing:21.492000px;}
.ws885_c00000{word-spacing:21.499200px;}
.ws479_c00000{word-spacing:21.506400px;}
.ws1001_c00000{word-spacing:21.513600px;}
.wsb8e_c00000{word-spacing:21.520800px;}
.ws14aa_c00000{word-spacing:21.528000px;}
.ws92e_c00000{word-spacing:21.535200px;}
.ws22d_c00000{word-spacing:21.542400px;}
.ws11f8_c00000{word-spacing:21.549600px;}
.ws16d_c00000{word-spacing:21.556800px;}
.ws722_c00000{word-spacing:21.564000px;}
.ws723_c00000{word-spacing:21.571200px;}
.ws693_c00000{word-spacing:21.578400px;}
.ws694_c00000{word-spacing:21.585600px;}
.ws954_c00000{word-spacing:21.592800px;}
.wsadf_c00000{word-spacing:21.600000px;}
.ws955_c00000{word-spacing:21.607200px;}
.ws19a3_c00000{word-spacing:21.608640px;}
.ws15a1_c00000{word-spacing:21.614400px;}
.ws198f_c00000{word-spacing:21.615228px;}
.ws1131_c00000{word-spacing:21.619152px;}
.ws1482_c00000{word-spacing:21.621600px;}
.ws1587_c00000{word-spacing:21.621816px;}
.ws50f_c00000{word-spacing:21.628404px;}
.ws5ae_c00000{word-spacing:21.628800px;}
.ws4c7_c00000{word-spacing:21.634992px;}
.ws22f_c00000{word-spacing:21.636000px;}
.ws14d6_c00000{word-spacing:21.643200px;}
.ws1990_c00000{word-spacing:21.648168px;}
.ws510_c00000{word-spacing:21.654756px;}
.wsd33_c00000{word-spacing:21.657600px;}
.ws806_c00000{word-spacing:21.661344px;}
.ws15ec_c00000{word-spacing:21.667932px;}
.ws18b7_c00000{word-spacing:21.715200px;}
.ws18af_c00000{word-spacing:21.736800px;}
.wsee4_c00000{word-spacing:21.744000px;}
.wsf56_c00000{word-spacing:21.758400px;}
.wsad9_c00000{word-spacing:21.772800px;}
.ws12ea_c00000{word-spacing:21.787200px;}
.ws120_c00000{word-spacing:21.794400px;}
.ws1ab9_c00000{word-spacing:21.801600px;}
.ws1914_c00000{word-spacing:21.811536px;}
.wsf57_c00000{word-spacing:21.816000px;}
.ws6a_c00000{word-spacing:21.823200px;}
.ws48b_c00000{word-spacing:21.830400px;}
.ws10fb_c00000{word-spacing:21.835584px;}
.ws5ad_c00000{word-spacing:21.837600px;}
.wsa85_c00000{word-spacing:21.844800px;}
.wsa8a_c00000{word-spacing:21.852000px;}
.ws8e0_c00000{word-spacing:21.859200px;}
.ws991_c00000{word-spacing:21.866400px;}
.ws27b_c00000{word-spacing:21.873600px;}
.wsa86_c00000{word-spacing:21.880800px;}
.ws27a_c00000{word-spacing:21.888000px;}
.wsefb_c00000{word-spacing:21.895200px;}
.ws8df_c00000{word-spacing:21.902400px;}
.ws19c0_c00000{word-spacing:21.909600px;}
.ws522_c00000{word-spacing:21.916800px;}
.wsee3_c00000{word-spacing:21.924000px;}
.ws87c_c00000{word-spacing:21.931200px;}
.ws11f_c00000{word-spacing:21.938400px;}
.ws4d3_c00000{word-spacing:21.944628px;}
.ws48a_c00000{word-spacing:21.945600px;}
.ws126c_c00000{word-spacing:21.949812px;}
.wsd20_c00000{word-spacing:21.952800px;}
.ws5ac_c00000{word-spacing:21.960000px;}
.ws992_c00000{word-spacing:21.967200px;}
.wsf3a_c00000{word-spacing:21.970980px;}
.ws7cb_c00000{word-spacing:21.974400px;}
.ws4d4_c00000{word-spacing:21.977568px;}
.ws69_c00000{word-spacing:21.981600px;}
.ws3dd_c00000{word-spacing:21.984156px;}
.ws572_c00000{word-spacing:21.988800px;}
.ws4c8_c00000{word-spacing:21.990744px;}
.ws15fc_c00000{word-spacing:21.996000px;}
.wsdb5_c00000{word-spacing:21.997332px;}
.ws137e_c00000{word-spacing:22.003200px;}
.wsdad_c00000{word-spacing:22.003920px;}
.wsada_c00000{word-spacing:22.010400px;}
.ws166f_c00000{word-spacing:22.010508px;}
.ws121d_c00000{word-spacing:22.017096px;}
.ws17b2_c00000{word-spacing:22.021956px;}
.ws166d_c00000{word-spacing:22.023684px;}
.ws573_c00000{word-spacing:22.024800px;}
.ws167b_c00000{word-spacing:22.030272px;}
.ws197c_c00000{word-spacing:22.036860px;}
.ws157c_c00000{word-spacing:22.046004px;}
.ws9db_c00000{word-spacing:22.046400px;}
.ws1915_c00000{word-spacing:22.058028px;}
.ws157b_c00000{word-spacing:22.088088px;}
.ws12f5_c00000{word-spacing:22.089600px;}
.wsd0b_c00000{word-spacing:22.104000px;}
.wsee8_c00000{word-spacing:22.118400px;}
.ws1621_c00000{word-spacing:22.132800px;}
.wsd0a_c00000{word-spacing:22.140000px;}
.wsc4e_c00000{word-spacing:22.154400px;}
.wsc40_c00000{word-spacing:22.161600px;}
.ws126_c00000{word-spacing:22.176000px;}
.wsa55_c00000{word-spacing:22.183200px;}
.ws8d0_c00000{word-spacing:22.190400px;}
.ws4b2_c00000{word-spacing:22.197600px;}
.ws14c5_c00000{word-spacing:22.204800px;}
.ws33c_c00000{word-spacing:22.212000px;}
.ws17e7_c00000{word-spacing:22.219200px;}
.ws373_c00000{word-spacing:22.226400px;}
.wscce_c00000{word-spacing:22.233600px;}
.ws125_c00000{word-spacing:22.240800px;}
.ws150c_c00000{word-spacing:22.248000px;}
.ws33b_c00000{word-spacing:22.255200px;}
.wsd28_c00000{word-spacing:22.262400px;}
.ws119_c00000{word-spacing:22.269600px;}
.wse71_c00000{word-spacing:22.276800px;}
.ws8ca_c00000{word-spacing:22.284000px;}
.wsba3_c00000{word-spacing:22.291200px;}
.wsc4d_c00000{word-spacing:22.298400px;}
.ws4b3_c00000{word-spacing:22.305600px;}
.ws2a1_c00000{word-spacing:22.312800px;}
.ws118_c00000{word-spacing:22.320000px;}
.ws176a_c00000{word-spacing:22.320144px;}
.wsb15_c00000{word-spacing:22.327200px;}
.ws190c_c00000{word-spacing:22.328568px;}
.wsb14_c00000{word-spacing:22.334400px;}
.ws182b_c00000{word-spacing:22.339908px;}
.ws15e4_c00000{word-spacing:22.341600px;}
.wsee9_c00000{word-spacing:22.348800px;}
.ws176b_c00000{word-spacing:22.353084px;}
.wsb5e_c00000{word-spacing:22.356000px;}
.wsf99_c00000{word-spacing:22.359672px;}
.wsb5d_c00000{word-spacing:22.363200px;}
.wsdac_c00000{word-spacing:22.366260px;}
.ws18a7_c00000{word-spacing:22.370652px;}
.ws513_c00000{word-spacing:22.372848px;}
.ws182a_c00000{word-spacing:22.379436px;}
.ws1510_c00000{word-spacing:22.386024px;}
.ws17b4_c00000{word-spacing:22.388688px;}
.ws15e5_c00000{word-spacing:22.392000px;}
.ws433_c00000{word-spacing:22.392612px;}
.ws18ae_c00000{word-spacing:22.406400px;}
.ws1787_c00000{word-spacing:22.412736px;}
.ws1786_c00000{word-spacing:22.418748px;}
.ws17b3_c00000{word-spacing:22.424760px;}
.ws24e_c00000{word-spacing:22.449600px;}
.ws14b9_c00000{word-spacing:22.456800px;}
.wsa23_c00000{word-spacing:22.464000px;}
.ws1a59_c00000{word-spacing:22.471200px;}
.wsa22_c00000{word-spacing:22.478400px;}
.ws1a7_c00000{word-spacing:22.492800px;}
.ws1788_c00000{word-spacing:22.502916px;}
.wsbb5_c00000{word-spacing:22.514400px;}
.wsf39_c00000{word-spacing:22.521600px;}
.ws1aba_c00000{word-spacing:22.528800px;}
.ws2f6_c00000{word-spacing:22.536000px;}
.ws4f9_c00000{word-spacing:22.543200px;}
.ws1ad_c00000{word-spacing:22.550400px;}
.ws163e_c00000{word-spacing:22.557600px;}
.ws13b0_c00000{word-spacing:22.564800px;}
.ws1ae_c00000{word-spacing:22.579200px;}
.ws24d_c00000{word-spacing:22.586400px;}
.ws4c1_c00000{word-spacing:22.600800px;}
.wsf38_c00000{word-spacing:22.608000px;}
.ws1a8_c00000{word-spacing:22.615200px;}
.ws25b_c00000{word-spacing:22.622400px;}
.ws2f5_c00000{word-spacing:22.629600px;}
.wsdf9_c00000{word-spacing:22.636800px;}
.ws15d4_c00000{word-spacing:22.642956px;}
.ws259_c00000{word-spacing:22.644000px;}
.wsdfa_c00000{word-spacing:22.651200px;}
.ws913_c00000{word-spacing:22.658400px;}
.wsd04_c00000{word-spacing:22.665600px;}
.ws114c_c00000{word-spacing:22.671252px;}
.ws25a_c00000{word-spacing:22.672800px;}
.ws18f4_c00000{word-spacing:22.677264px;}
.ws544_c00000{word-spacing:22.680000px;}
.wsfcd_c00000{word-spacing:22.683276px;}
.ws6a1_c00000{word-spacing:22.687200px;}
.ws4f2_c00000{word-spacing:22.689072px;}
.wsba2_c00000{word-spacing:22.694400px;}
.ws4f3_c00000{word-spacing:22.695660px;}
.ws912_c00000{word-spacing:22.701600px;}
.ws4ce_c00000{word-spacing:22.702248px;}
.ws4f8_c00000{word-spacing:22.708800px;}
.wscbc_c00000{word-spacing:22.715424px;}
.ws977_c00000{word-spacing:22.722012px;}
.ws13af_c00000{word-spacing:22.723200px;}
.ws1569_c00000{word-spacing:22.731372px;}
.ws4cd_c00000{word-spacing:22.735188px;}
.ws7b9_c00000{word-spacing:22.768128px;}
.ws1a45_c00000{word-spacing:22.831200px;}
.ws1631_c00000{word-spacing:22.838400px;}
.ws142a_c00000{word-spacing:22.845600px;}
.ws144d_c00000{word-spacing:22.874400px;}
.ws1701_c00000{word-spacing:22.888800px;}
.ws13d9_c00000{word-spacing:22.896000px;}
.wsb1f_c00000{word-spacing:22.903200px;}
.wse59_c00000{word-spacing:22.910400px;}
.wse5a_c00000{word-spacing:22.917600px;}
.ws1195_c00000{word-spacing:22.917744px;}
.wsa0a_c00000{word-spacing:22.932000px;}
.wseb8_c00000{word-spacing:22.939200px;}
.ws793_c00000{word-spacing:22.946400px;}
.ws9b9_c00000{word-spacing:22.953600px;}
.wsb25_c00000{word-spacing:22.960800px;}
.ws13d8_c00000{word-spacing:22.968000px;}
.ws1429_c00000{word-spacing:22.975200px;}
.ws8dd_c00000{word-spacing:22.982400px;}
.ws1217_c00000{word-spacing:22.989600px;}
.ws1478_c00000{word-spacing:22.996800px;}
.ws827_c00000{word-spacing:23.004000px;}
.ws8dc_c00000{word-spacing:23.011200px;}
.ws566_c00000{word-spacing:23.018400px;}
.wsa18_c00000{word-spacing:23.025600px;}
.ws792_c00000{word-spacing:23.032800px;}
.ws1852_c00000{word-spacing:23.038236px;}
.ws12c9_c00000{word-spacing:23.040000px;}
.ws6cb_c00000{word-spacing:23.044824px;}
.ws12d5_c00000{word-spacing:23.047200px;}
.ws1735_c00000{word-spacing:23.050008px;}
.ws751_c00000{word-spacing:23.058000px;}
.ws6ca_c00000{word-spacing:23.064588px;}
.ws1700_c00000{word-spacing:23.068800px;}
.wse96_c00000{word-spacing:23.071176px;}
.ws9b8_c00000{word-spacing:23.076000px;}
.ws437_c00000{word-spacing:23.077764px;}
.wsa03_c00000{word-spacing:23.090940px;}
.ws1639_c00000{word-spacing:23.097528px;}
.ws14b7_c00000{word-spacing:23.104116px;}
.wseb9_c00000{word-spacing:23.119200px;}
.ws1889_c00000{word-spacing:23.128164px;}
.ws16ce_c00000{word-spacing:23.198400px;}
.ws1501_c00000{word-spacing:23.205600px;}
.ws9fa_c00000{word-spacing:23.212800px;}
.ws10a5_c00000{word-spacing:23.214600px;}
.ws1a4a_c00000{word-spacing:23.220000px;}
.ws117e_c00000{word-spacing:23.224356px;}
.ws16c7_c00000{word-spacing:23.227200px;}
.ws420_c00000{word-spacing:23.248800px;}
.ws5b5_c00000{word-spacing:23.256000px;}
.ws601_c00000{word-spacing:23.263200px;}
.ws5b4_c00000{word-spacing:23.270400px;}
.ws3c3_c00000{word-spacing:23.277600px;}
.ws1462_c00000{word-spacing:23.284800px;}
.ws184_c00000{word-spacing:23.292000px;}
.wse6e_c00000{word-spacing:23.299200px;}
.ws183_c00000{word-spacing:23.306400px;}
.ws15b0_c00000{word-spacing:23.313600px;}
.wsd9f_c00000{word-spacing:23.320800px;}
.wsb76_c00000{word-spacing:23.328000px;}
.ws12f4_c00000{word-spacing:23.335200px;}
.wsca5_c00000{word-spacing:23.342400px;}
.ws421_c00000{word-spacing:23.349600px;}
.ws600_c00000{word-spacing:23.356800px;}
.ws536_c00000{word-spacing:23.364000px;}
.wsb77_c00000{word-spacing:23.371200px;}
.ws537_c00000{word-spacing:23.378400px;}
.ws16c6_c00000{word-spacing:23.385600px;}
.ws127c_c00000{word-spacing:23.386680px;}
.wsd4e_c00000{word-spacing:23.392800px;}
.ws1890_c00000{word-spacing:23.398704px;}
.ws2aa_c00000{word-spacing:23.400000px;}
.wsb75_c00000{word-spacing:23.407200px;}
.ws196b_c00000{word-spacing:23.410728px;}
.ws15fa_c00000{word-spacing:23.413752px;}
.wsed7_c00000{word-spacing:23.414400px;}
.ws3c4_c00000{word-spacing:23.421600px;}
.ws19b0_c00000{word-spacing:23.426928px;}
.wsbc7_c00000{word-spacing:23.428800px;}
.ws1760_c00000{word-spacing:23.433516px;}
.ws1acf_c00000{word-spacing:23.434776px;}
.ws5b7_c00000{word-spacing:23.436000px;}
.wsf1e_c00000{word-spacing:23.443200px;}
.ws1765_c00000{word-spacing:23.446692px;}
.ws15fb_c00000{word-spacing:23.453280px;}
.ws176c_c00000{word-spacing:23.459868px;}
.ws5b6_c00000{word-spacing:23.464800px;}
.wse44_c00000{word-spacing:23.466456px;}
.ws1069_c00000{word-spacing:23.470848px;}
.ws194d_c00000{word-spacing:23.473044px;}
.ws1315_c00000{word-spacing:23.482872px;}
.ws10d2_c00000{word-spacing:23.506200px;}
.ws1198_c00000{word-spacing:23.506920px;}
.wsa21_c00000{word-spacing:23.508000px;}
.ws1278_c00000{word-spacing:23.512932px;}
.ws126a_c00000{word-spacing:23.518944px;}
.ws1592_c00000{word-spacing:23.551200px;}
.wscc5_c00000{word-spacing:23.565600px;}
.wsf21_c00000{word-spacing:23.572800px;}
.wse3a_c00000{word-spacing:23.601600px;}
.wse6a_c00000{word-spacing:23.623200px;}
.ws13b3_c00000{word-spacing:23.630400px;}
.ws112a_c00000{word-spacing:23.633172px;}
.ws921_c00000{word-spacing:23.637600px;}
.wsf20_c00000{word-spacing:23.644800px;}
.wse70_c00000{word-spacing:23.652000px;}
.ws43a_c00000{word-spacing:23.659200px;}
.ws46_c00000{word-spacing:23.666400px;}
.wsa4f_c00000{word-spacing:23.673600px;}
.wsf77_c00000{word-spacing:23.680800px;}
.wsa4e_c00000{word-spacing:23.688000px;}
.ws6b1_c00000{word-spacing:23.695200px;}
.ws439_c00000{word-spacing:23.709600px;}
.ws985_c00000{word-spacing:23.716800px;}
.wsb2f_c00000{word-spacing:23.724000px;}
.ws213_c00000{word-spacing:23.731200px;}
.ws47_c00000{word-spacing:23.738400px;}
.wsedd_c00000{word-spacing:23.745600px;}
.ws6c9_c00000{word-spacing:23.749740px;}
.ws1756_c00000{word-spacing:23.752800px;}
.ws12bc_c00000{word-spacing:23.760000px;}
.ws14e9_c00000{word-spacing:23.762916px;}
.wsb26_c00000{word-spacing:23.767200px;}
.ws19f8_c00000{word-spacing:23.774400px;}
.ws14ea_c00000{word-spacing:23.782680px;}
.ws6c8_c00000{word-spacing:23.789268px;}
.ws19c5_c00000{word-spacing:23.795856px;}
.ws1a91_c00000{word-spacing:23.796000px;}
.ws1526_c00000{word-spacing:23.802444px;}
.wse69_c00000{word-spacing:23.803200px;}
.ws1207_c00000{word-spacing:23.809032px;}
.wscc7_c00000{word-spacing:23.810400px;}
.ws1525_c00000{word-spacing:23.815620px;}
.ws11eb_c00000{word-spacing:23.822208px;}
.ws1527_c00000{word-spacing:23.841972px;}
.ws19fc_c00000{word-spacing:23.875200px;}
.ws89a_c00000{word-spacing:23.896800px;}
.ws2dd_c00000{word-spacing:23.904000px;}
.wsec6_c00000{word-spacing:23.918400px;}
.wse39_c00000{word-spacing:23.925600px;}
.ws17cc_c00000{word-spacing:23.932800px;}
.wse8e_c00000{word-spacing:23.933772px;}
.ws3b8_c00000{word-spacing:23.940000px;}
.ws899_c00000{word-spacing:23.947200px;}
.ws1619_c00000{word-spacing:23.954400px;}
.ws3b7_c00000{word-spacing:23.961600px;}
.wscc6_c00000{word-spacing:23.968800px;}
.ws73f_c00000{word-spacing:23.976000px;}
.ws13be_c00000{word-spacing:23.983200px;}
.ws2c6_c00000{word-spacing:23.990400px;}
.ws14cb_c00000{word-spacing:23.997600px;}
.ws170e_c00000{word-spacing:24.004800px;}
.ws1986_c00000{word-spacing:24.012000px;}
.ws36f_c00000{word-spacing:24.019200px;}
.wsa0d_c00000{word-spacing:24.026400px;}
.ws19cd_c00000{word-spacing:24.033600px;}
.ws8ba_c00000{word-spacing:24.040800px;}
.ws121c_c00000{word-spacing:24.048000px;}
.ws1acc_c00000{word-spacing:24.062400px;}
.ws8b9_c00000{word-spacing:24.069600px;}
.ws11fe_c00000{word-spacing:24.076800px;}
.ws2c5_c00000{word-spacing:24.084000px;}
.ws12a6_c00000{word-spacing:24.091200px;}
.ws740_c00000{word-spacing:24.098400px;}
.ws36e_c00000{word-spacing:24.105600px;}
.wsaf0_c00000{word-spacing:24.112800px;}
.ws2de_c00000{word-spacing:24.120000px;}
.ws1916_c00000{word-spacing:24.120144px;}
.ws3b9_c00000{word-spacing:24.127200px;}
.ws3b6_c00000{word-spacing:24.134400px;}
.ws2df_c00000{word-spacing:24.141600px;}
.wsec5_c00000{word-spacing:24.148800px;}
.ws120e_c00000{word-spacing:24.158196px;}
.wsa0e_c00000{word-spacing:24.163200px;}
.ws1600_c00000{word-spacing:24.164784px;}
.wse06_c00000{word-spacing:24.170400px;}
.ws17e6_c00000{word-spacing:24.177960px;}
.ws1224_c00000{word-spacing:24.184548px;}
.ws1a14_c00000{word-spacing:24.191136px;}
.ws11a0_c00000{word-spacing:24.228360px;}
.ws21b_c00000{word-spacing:24.235200px;}
.ws18e6_c00000{word-spacing:24.242400px;}
.ws13b6_c00000{word-spacing:24.249600px;}
.ws1acd_c00000{word-spacing:24.256800px;}
.wsbfe_c00000{word-spacing:24.270192px;}
.ws10b4_c00000{word-spacing:24.278400px;}
.ws14f0_c00000{word-spacing:24.285600px;}
.ws180a_c00000{word-spacing:24.292800px;}
.ws21c_c00000{word-spacing:24.300000px;}
.wsde8_c00000{word-spacing:24.307200px;}
.wsad5_c00000{word-spacing:24.314400px;}
.ws12fb_c00000{word-spacing:24.321600px;}
.ws93d_c00000{word-spacing:24.328800px;}
.wsd4d_c00000{word-spacing:24.336000px;}
.wsddd_c00000{word-spacing:24.343200px;}
.wsd6e_c00000{word-spacing:24.350400px;}
.ws78b_c00000{word-spacing:24.357600px;}
.wsc7a_c00000{word-spacing:24.364800px;}
.ws1228_c00000{word-spacing:24.372000px;}
.wsc13_c00000{word-spacing:24.379200px;}
.wsc7b_c00000{word-spacing:24.386400px;}
.ws1652_c00000{word-spacing:24.388776px;}
.wsf25_c00000{word-spacing:24.393600px;}
.ws21a_c00000{word-spacing:24.400800px;}
.wsad6_c00000{word-spacing:24.408000px;}
.ws1660_c00000{word-spacing:24.408540px;}
.ws12c6_c00000{word-spacing:24.415200px;}
.ws21d_c00000{word-spacing:24.422400px;}
.wsd48_c00000{word-spacing:24.429600px;}
.ws147c_c00000{word-spacing:24.436800px;}
.ws1227_c00000{word-spacing:24.444000px;}
.ws730_c00000{word-spacing:24.451200px;}
.ws78c_c00000{word-spacing:24.458400px;}
.ws1661_c00000{word-spacing:24.461244px;}
.ws731_c00000{word-spacing:24.465600px;}
.ws1770_c00000{word-spacing:24.467832px;}
.ws1809_c00000{word-spacing:24.472800px;}
.ws1509_c00000{word-spacing:24.474420px;}
.wsde7_c00000{word-spacing:24.480000px;}
.ws1715_c00000{word-spacing:24.486876px;}
.ws1984_c00000{word-spacing:24.487200px;}
.ws852_c00000{word-spacing:24.494184px;}
.ws1104_c00000{word-spacing:24.494400px;}
.ws667_c00000{word-spacing:24.500772px;}
.ws914_c00000{word-spacing:24.501600px;}
.ws851_c00000{word-spacing:24.507360px;}
.wsdd8_c00000{word-spacing:24.508800px;}
.wsaeb_c00000{word-spacing:24.513948px;}
.ws19c9_c00000{word-spacing:24.516000px;}
.ws1508_c00000{word-spacing:24.520536px;}
.ws17f3_c00000{word-spacing:24.523200px;}
.ws666_c00000{word-spacing:24.533712px;}
.ws17d9_c00000{word-spacing:24.537600px;}
.ws167c_c00000{word-spacing:24.540300px;}
.ws176f_c00000{word-spacing:24.546888px;}
.ws1548_c00000{word-spacing:24.552000px;}
.ws1514_c00000{word-spacing:24.553476px;}
.ws1714_c00000{word-spacing:24.565032px;}
.ws17de_c00000{word-spacing:24.566652px;}
.ws850_c00000{word-spacing:24.579828px;}
.ws17da_c00000{word-spacing:24.580800px;}
.ws1334_c00000{word-spacing:24.655212px;}
.ws14d1_c00000{word-spacing:24.660000px;}
.wsfe9_c00000{word-spacing:24.661224px;}
.ws1616_c00000{word-spacing:24.667200px;}
.ws149b_c00000{word-spacing:24.674400px;}
.wsa41_c00000{word-spacing:24.681600px;}
.ws443_c00000{word-spacing:24.696000px;}
.wsfb7_c00000{word-spacing:24.697296px;}
.ws11fd_c00000{word-spacing:24.703200px;}
.ws444_c00000{word-spacing:24.710400px;}
.ws181d_c00000{word-spacing:24.717600px;}
.ws1359_c00000{word-spacing:24.732000px;}
.ws14d2_c00000{word-spacing:24.739200px;}
.wsdc1_c00000{word-spacing:24.746400px;}
.ws5a3_c00000{word-spacing:24.753600px;}
.ws85c_c00000{word-spacing:24.760800px;}
.ws1402_c00000{word-spacing:24.782400px;}
.ws378_c00000{word-spacing:24.789600px;}
.ws4a7_c00000{word-spacing:24.796800px;}
.wsebe_c00000{word-spacing:24.804000px;}
.ws5a2_c00000{word-spacing:24.811200px;}
.ws13f9_c00000{word-spacing:24.818400px;}
.ws4a6_c00000{word-spacing:24.825600px;}
.ws126b_c00000{word-spacing:24.829560px;}
.wsdc0_c00000{word-spacing:24.832800px;}
.ws8fc_c00000{word-spacing:24.840000px;}
.ws379_c00000{word-spacing:24.847200px;}
.ws700_c00000{word-spacing:24.849936px;}
.ws8a9_c00000{word-spacing:24.854400px;}
.ws17bd_c00000{word-spacing:24.861600px;}
.ws1011_c00000{word-spacing:24.868800px;}
.wsf9a_c00000{word-spacing:24.869700px;}
.ws1518_c00000{word-spacing:24.882876px;}
.ws8aa_c00000{word-spacing:24.883200px;}
.ws16ec_c00000{word-spacing:24.890400px;}
.ws18f7_c00000{word-spacing:24.901704px;}
.ws701_c00000{word-spacing:24.909228px;}
.ws18eb_c00000{word-spacing:24.912000px;}
.ws1284_c00000{word-spacing:24.919200px;}
.ws18f8_c00000{word-spacing:24.919740px;}
.ws1859_c00000{word-spacing:24.940800px;}
.wsf8f_c00000{word-spacing:24.955200px;}
.ws9fb_c00000{word-spacing:24.962400px;}
.ws18c0_c00000{word-spacing:25.015932px;}
.ws15e8_c00000{word-spacing:25.020000px;}
.wseb2_c00000{word-spacing:25.027200px;}
.wsd37_c00000{word-spacing:25.034400px;}
.ws1498_c00000{word-spacing:25.041600px;}
.ws153b_c00000{word-spacing:25.048800px;}
.ws1810_c00000{word-spacing:25.056000px;}
.ws1497_c00000{word-spacing:25.063200px;}
.wsf68_c00000{word-spacing:25.070400px;}
.ws1983_c00000{word-spacing:25.084800px;}
.ws9fc_c00000{word-spacing:25.092000px;}
.ws19c1_c00000{word-spacing:25.099200px;}
.ws8cc_c00000{word-spacing:25.120800px;}
.wsc32_c00000{word-spacing:25.128000px;}
.ws15b2_c00000{word-spacing:25.135200px;}
.wsead_c00000{word-spacing:25.149600px;}
.ws1002_c00000{word-spacing:25.156800px;}
.wsc31_c00000{word-spacing:25.164000px;}
.ws1012_c00000{word-spacing:25.171200px;}
.wsfbd_c00000{word-spacing:25.172244px;}
.ws9bb_c00000{word-spacing:25.178400px;}
.wsfbb_c00000{word-spacing:25.184268px;}
.wsd36_c00000{word-spacing:25.185600px;}
.ws15b5_c00000{word-spacing:25.185924px;}
.ws8cb_c00000{word-spacing:25.192800px;}
.ws486_c00000{word-spacing:25.199100px;}
.ws1535_c00000{word-spacing:25.200000px;}
.ws642_c00000{word-spacing:25.207200px;}
.ws1699_c00000{word-spacing:25.208316px;}
.ws1965_c00000{word-spacing:25.218864px;}
.ws643_c00000{word-spacing:25.221600px;}
.wsda6_c00000{word-spacing:25.225452px;}
.ws1ac8_c00000{word-spacing:25.232040px;}
.wsc1b_c00000{word-spacing:25.238628px;}
.ws166c_c00000{word-spacing:25.245216px;}
.ws485_c00000{word-spacing:25.251804px;}
.ws44_c00000{word-spacing:25.257600px;}
.ws423_c00000{word-spacing:25.258392px;}
.ws424_c00000{word-spacing:25.264980px;}
.ws1784_c00000{word-spacing:25.268436px;}
.wsc0f_c00000{word-spacing:25.271568px;}
.wsd15_c00000{word-spacing:25.272000px;}
.ws15b6_c00000{word-spacing:25.278156px;}
.ws1260_c00000{word-spacing:25.286472px;}
.ws11d7_c00000{word-spacing:25.291332px;}
.ws120a_c00000{word-spacing:25.297920px;}
.ws70c_c00000{word-spacing:25.304508px;}
.wsc33_c00000{word-spacing:25.308000px;}
.ws1785_c00000{word-spacing:25.310520px;}
.ws1a27_c00000{word-spacing:25.315200px;}
.wsda2_c00000{word-spacing:25.317684px;}
.ws1585_c00000{word-spacing:25.322400px;}
.ws1a29_c00000{word-spacing:25.329600px;}
.wsf43_c00000{word-spacing:25.336800px;}
.ws8f6_c00000{word-spacing:25.358400px;}
.ws15e9_c00000{word-spacing:25.365600px;}
.ws182d_c00000{word-spacing:25.372800px;}
.ws136f_c00000{word-spacing:25.376400px;}
.ws8f5_c00000{word-spacing:25.380000px;}
.ws198c_c00000{word-spacing:25.387200px;}
.wsd14_c00000{word-spacing:25.394400px;}
.ws1584_c00000{word-spacing:25.401600px;}
.ws11e0_c00000{word-spacing:25.416000px;}
.wsf0e_c00000{word-spacing:25.423200px;}
.ws12bd_c00000{word-spacing:25.430400px;}
.ws43_c00000{word-spacing:25.437600px;}
.wsc06_c00000{word-spacing:25.452000px;}
.ws16b8_c00000{word-spacing:25.459200px;}
.ws229_c00000{word-spacing:25.466400px;}
.wsf0f_c00000{word-spacing:25.480800px;}
.ws15b1_c00000{word-spacing:25.495200px;}
.wsa87_c00000{word-spacing:25.502400px;}
.wsc05_c00000{word-spacing:25.516800px;}
.ws1a47_c00000{word-spacing:25.524000px;}
.wse58_c00000{word-spacing:25.531200px;}
.ws80_c00000{word-spacing:25.538400px;}
.wsc55_c00000{word-spacing:25.545600px;}
.ws18ed_c00000{word-spacing:25.551000px;}
.ws9cb_c00000{word-spacing:25.552800px;}
.wsdbd_c00000{word-spacing:25.554852px;}
.ws22a_c00000{word-spacing:25.560000px;}
.ws176d_c00000{word-spacing:25.561440px;}
.ws45_c00000{word-spacing:25.567200px;}
.ws16b9_c00000{word-spacing:25.574400px;}
.ws1220_c00000{word-spacing:25.574616px;}
.ws18fc_c00000{word-spacing:25.581060px;}
.ws17e1_c00000{word-spacing:25.581204px;}
.wsf34_c00000{word-spacing:25.581600px;}
.wsdbe_c00000{word-spacing:25.587792px;}
.ws1a48_c00000{word-spacing:25.588800px;}
.ws1221_c00000{word-spacing:25.594380px;}
.ws15d8_c00000{word-spacing:25.600968px;}
.ws74a_c00000{word-spacing:25.607556px;}
.ws18db_c00000{word-spacing:25.617600px;}
.ws18e1_c00000{word-spacing:25.624800px;}
.ws1708_c00000{word-spacing:25.639200px;}
.wse92_c00000{word-spacing:25.646400px;}
.wsdba_c00000{word-spacing:25.660260px;}
.ws1812_c00000{word-spacing:25.668000px;}
.ws154c_c00000{word-spacing:25.682400px;}
.ws135a_c00000{word-spacing:25.696800px;}
.ws535_c00000{word-spacing:25.711200px;}
.ws19be_c00000{word-spacing:25.718400px;}
.ws154b_c00000{word-spacing:25.725600px;}
.ws18da_c00000{word-spacing:25.740000px;}
.ws1633_c00000{word-spacing:25.747200px;}
.wsc19_c00000{word-spacing:25.776000px;}
.ws1707_c00000{word-spacing:25.783200px;}
.ws1634_c00000{word-spacing:25.790400px;}
.ws679_c00000{word-spacing:25.797600px;}
.ws1706_c00000{word-spacing:25.804800px;}
.ws12f0_c00000{word-spacing:25.819200px;}
.ws534_c00000{word-spacing:25.833600px;}
.ws183e_c00000{word-spacing:25.840800px;}
.ws199b_c00000{word-spacing:25.848000px;}
.ws9a2_c00000{word-spacing:25.855200px;}
.ws1813_c00000{word-spacing:25.862400px;}
.wsb6c_c00000{word-spacing:25.869600px;}
.wsb7c_c00000{word-spacing:25.876800px;}
.ws2d6_c00000{word-spacing:25.884000px;}
.ws2d7_c00000{word-spacing:25.891200px;}
.ws538_c00000{word-spacing:25.898400px;}
.wsa27_c00000{word-spacing:25.905600px;}
.ws16f3_c00000{word-spacing:25.910604px;}
.ws1248_c00000{word-spacing:25.911720px;}
.ws161a_c00000{word-spacing:25.912800px;}
.ws539_c00000{word-spacing:25.920000px;}
.wse50_c00000{word-spacing:25.927200px;}
.wsdab_c00000{word-spacing:25.930368px;}
.ws1472_c00000{word-spacing:25.934400px;}
.ws1769_c00000{word-spacing:25.936956px;}
.ws67a_c00000{word-spacing:25.941600px;}
.ws170c_c00000{word-spacing:25.943544px;}
.wse0c_c00000{word-spacing:25.948800px;}
.ws167f_c00000{word-spacing:25.950132px;}
.ws1a5b_c00000{word-spacing:25.956000px;}
.ws1638_c00000{word-spacing:25.956720px;}
.ws1212_c00000{word-spacing:25.963308px;}
.wse99_c00000{word-spacing:25.969896px;}
.wsd5c_c00000{word-spacing:25.970400px;}
.ws4c4_c00000{word-spacing:25.976484px;}
.ws180e_c00000{word-spacing:25.977600px;}
.ws1aeb_c00000{word-spacing:25.989876px;}
.wse9a_c00000{word-spacing:25.996248px;}
.ws1327_c00000{word-spacing:26.001900px;}
.ws1680_c00000{word-spacing:26.002836px;}
.wsad8_c00000{word-spacing:26.006400px;}
.ws18ea_c00000{word-spacing:26.013600px;}
.wsf61_c00000{word-spacing:26.042400px;}
.wsf35_c00000{word-spacing:26.085600px;}
.wse1_c00000{word-spacing:26.092800px;}
.wscda_c00000{word-spacing:26.107200px;}
.wsc6a_c00000{word-spacing:26.114400px;}
.wsbd2_c00000{word-spacing:26.128800px;}
.wsf5_c00000{word-spacing:26.136000px;}
.ws144b_c00000{word-spacing:26.143200px;}
.wsdfd_c00000{word-spacing:26.150400px;}
.wsf4_c00000{word-spacing:26.157600px;}
.ws144a_c00000{word-spacing:26.164800px;}
.wsc65_c00000{word-spacing:26.186400px;}
.wsdf_c00000{word-spacing:26.193600px;}
.wsdfc_c00000{word-spacing:26.200800px;}
.ws1432_c00000{word-spacing:26.208000px;}
.wsbd1_c00000{word-spacing:26.215200px;}
.wsc69_c00000{word-spacing:26.222400px;}
.ws783_c00000{word-spacing:26.229600px;}
.ws1483_c00000{word-spacing:26.236800px;}
.wse9_c00000{word-spacing:26.244000px;}
.ws9dc_c00000{word-spacing:26.251200px;}
.ws1962_c00000{word-spacing:26.254404px;}
.ws645_c00000{word-spacing:26.258400px;}
.ws9dd_c00000{word-spacing:26.265600px;}
.ws646_c00000{word-spacing:26.272800px;}
.wscaa_c00000{word-spacing:26.280000px;}
.ws15fe_c00000{word-spacing:26.286120px;}
.ws856_c00000{word-spacing:26.287200px;}
.wse1f_c00000{word-spacing:26.292708px;}
.ws784_c00000{word-spacing:26.294400px;}
.ws15fd_c00000{word-spacing:26.299296px;}
.wse0_c00000{word-spacing:26.301600px;}
.ws1254_c00000{word-spacing:26.302500px;}
.ws74b_c00000{word-spacing:26.312472px;}
.ws18e9_c00000{word-spacing:26.316000px;}
.wsf36_c00000{word-spacing:26.323200px;}
.ws17e3_c00000{word-spacing:26.325648px;}
.ws14f5_c00000{word-spacing:26.330400px;}
.ws74c_c00000{word-spacing:26.332236px;}
.ws17f9_c00000{word-spacing:26.337600px;}
.ws16e1_c00000{word-spacing:26.338824px;}
.ws191c_c00000{word-spacing:26.344584px;}
.ws163d_c00000{word-spacing:26.344800px;}
.wse20_c00000{word-spacing:26.345412px;}
.ws812_c00000{word-spacing:26.352000px;}
.ws191d_c00000{word-spacing:26.368632px;}
.wsca9_c00000{word-spacing:26.416800px;}
.ws18f3_c00000{word-spacing:26.428752px;}
.ws811_c00000{word-spacing:26.460000px;}
.ws12e9_c00000{word-spacing:26.467200px;}
.wsce8_c00000{word-spacing:26.481600px;}
.ws1826_c00000{word-spacing:26.517600px;}
.ws4b7_c00000{word-spacing:26.524800px;}
.wsb10_c00000{word-spacing:26.532000px;}
.ws947_c00000{word-spacing:26.539200px;}
.wsd05_c00000{word-spacing:26.553600px;}
.ws895_c00000{word-spacing:26.560800px;}
.wsb11_c00000{word-spacing:26.568000px;}
.ws1675_c00000{word-spacing:26.589600px;}
.ws14dc_c00000{word-spacing:26.596800px;}
.ws270_c00000{word-spacing:26.604000px;}
.ws7ec_c00000{word-spacing:26.608932px;}
.ws14ef_c00000{word-spacing:26.611200px;}
.wse36_c00000{word-spacing:26.618400px;}
.wscdc_c00000{word-spacing:26.625600px;}
.ws893_c00000{word-spacing:26.632800px;}
.ws26f_c00000{word-spacing:26.640000px;}
.ws18bb_c00000{word-spacing:26.645184px;}
.ws4b8_c00000{word-spacing:26.647200px;}
.wsce9_c00000{word-spacing:26.654400px;}
.ws7eb_c00000{word-spacing:26.655048px;}
.ws7ea_c00000{word-spacing:26.668224px;}
.ws1598_c00000{word-spacing:26.668800px;}
.ws7f5_c00000{word-spacing:26.674812px;}
.ws1230_c00000{word-spacing:26.681400px;}
.ws4b9_c00000{word-spacing:26.683200px;}
.ws1801_c00000{word-spacing:26.687988px;}
.ws14a8_c00000{word-spacing:26.690400px;}
.ws454_c00000{word-spacing:26.701164px;}
.ws174c_c00000{word-spacing:26.705304px;}
.ws194c_c00000{word-spacing:26.707752px;}
.ws1733_c00000{word-spacing:26.717328px;}
.ws894_c00000{word-spacing:26.719200px;}
.ws1279_c00000{word-spacing:26.735364px;}
.ws1477_c00000{word-spacing:26.776800px;}
.wsc67_c00000{word-spacing:26.791200px;}
.ws1732_c00000{word-spacing:26.795484px;}
.ws148d_c00000{word-spacing:26.798400px;}
.ws116a_c00000{word-spacing:26.805600px;}
.wsb6a_c00000{word-spacing:26.812800px;}
.ws884_c00000{word-spacing:26.841600px;}
.ws1abd_c00000{word-spacing:26.848800px;}
.ws5e6_c00000{word-spacing:26.863200px;}
.ws7c5_c00000{word-spacing:26.870400px;}
.wsa9c_c00000{word-spacing:26.877600px;}
.ws12ad_c00000{word-spacing:26.884800px;}
.ws5e5_c00000{word-spacing:26.892000px;}
.ws1404_c00000{word-spacing:26.899200px;}
.ws13a0_c00000{word-spacing:26.906400px;}
.ws98f_c00000{word-spacing:26.913600px;}
.ws148c_c00000{word-spacing:26.928000px;}
.ws11b8_c00000{word-spacing:26.942400px;}
.ws883_c00000{word-spacing:26.949600px;}
.wsdcd_c00000{word-spacing:26.956800px;}
.wsf98_c00000{word-spacing:26.964000px;}
.ws1420_c00000{word-spacing:26.969832px;}
.ws5fc_c00000{word-spacing:26.971200px;}
.ws142f_c00000{word-spacing:26.978400px;}
.ws1427_c00000{word-spacing:26.985600px;}
.ws7c4_c00000{word-spacing:26.992800px;}
.ws6e8_c00000{word-spacing:26.997624px;}
.ws5fd_c00000{word-spacing:27.000000px;}
.wsd56_c00000{word-spacing:27.007200px;}
.wsb86_c00000{word-spacing:27.021600px;}
.ws1759_c00000{word-spacing:27.028800px;}
.ws1520_c00000{word-spacing:27.043740px;}
.ws14d7_c00000{word-spacing:27.050400px;}
.ws6e9_c00000{word-spacing:27.070092px;}
.wsa9d_c00000{word-spacing:27.072000px;}
.ws1347_c00000{word-spacing:27.079200px;}
.wsfdd_c00000{word-spacing:27.096084px;}
.wsd5a_c00000{word-spacing:27.108000px;}
.wse22_c00000{word-spacing:27.136800px;}
.ws1186_c00000{word-spacing:27.168228px;}
.ws17e8_c00000{word-spacing:27.172800px;}
.ws99f_c00000{word-spacing:27.194400px;}
.ws1930_c00000{word-spacing:27.208800px;}
.ws17e9_c00000{word-spacing:27.223200px;}
.ws11cf_c00000{word-spacing:27.230400px;}
.ws967_c00000{word-spacing:27.237600px;}
.ws1185_c00000{word-spacing:27.240372px;}
.ws2d1_c00000{word-spacing:27.244800px;}
.ws94b_c00000{word-spacing:27.252000px;}
.ws966_c00000{word-spacing:27.259200px;}
.ws2a2_c00000{word-spacing:27.266400px;}
.ws15ea_c00000{word-spacing:27.273600px;}
.ws13ff_c00000{word-spacing:27.280800px;}
.ws1820_c00000{word-spacing:27.288000px;}
.wse23_c00000{word-spacing:27.295200px;}
.wse0b_c00000{word-spacing:27.302400px;}
.ws7e7_c00000{word-spacing:27.309600px;}
.ws2a3_c00000{word-spacing:27.316800px;}
.ws2d2_c00000{word-spacing:27.324000px;}
.ws161f_c00000{word-spacing:27.331200px;}
.ws1843_c00000{word-spacing:27.338400px;}
.ws94c_c00000{word-spacing:27.345600px;}
.ws99e_c00000{word-spacing:27.352800px;}
.wsa7b_c00000{word-spacing:27.360000px;}
.wsc12_c00000{word-spacing:27.366552px;}
.ws101b_c00000{word-spacing:27.367200px;}
.ws12c4_c00000{word-spacing:27.374400px;}
.ws142b_c00000{word-spacing:27.381600px;}
.ws1511_c00000{word-spacing:27.386316px;}
.ws1421_c00000{word-spacing:27.390672px;}
.ws15eb_c00000{word-spacing:27.396000px;}
.wsd5b_c00000{word-spacing:27.403200px;}
.ws1512_c00000{word-spacing:27.406080px;}
.ws453_c00000{word-spacing:27.412668px;}
.ws452_c00000{word-spacing:27.419256px;}
.ws1a2f_c00000{word-spacing:27.424800px;}
.wsc11_c00000{word-spacing:27.425844px;}
.ws11ea_c00000{word-spacing:27.445608px;}
.ws141a_c00000{word-spacing:27.460800px;}
.ws187a_c00000{word-spacing:27.468000px;}
.wse14_c00000{word-spacing:27.482400px;}
.ws14ca_c00000{word-spacing:27.496800px;}
.ws185e_c00000{word-spacing:27.532800px;}
.wse5c_c00000{word-spacing:27.576000px;}
.ws13ea_c00000{word-spacing:27.583200px;}
.ws1394_c00000{word-spacing:27.593244px;}
.wse15_c00000{word-spacing:27.597600px;}
.wsa16_c00000{word-spacing:27.604800px;}
.wsa78_c00000{word-spacing:27.612000px;}
.wsa15_c00000{word-spacing:27.619200px;}
.wse12_c00000{word-spacing:27.626400px;}
.ws9b6_c00000{word-spacing:27.633600px;}
.wsa79_c00000{word-spacing:27.640800px;}
.ws18b6_c00000{word-spacing:27.648000px;}
.wse98_c00000{word-spacing:27.655200px;}
.ws141b_c00000{word-spacing:27.662400px;}
.ws1a4c_c00000{word-spacing:27.669600px;}
.wsd10_c00000{word-spacing:27.676800px;}
.ws1837_c00000{word-spacing:27.684000px;}
.ws9b4_c00000{word-spacing:27.691200px;}
.wse5b_c00000{word-spacing:27.698400px;}
.ws19dc_c00000{word-spacing:27.705600px;}
.ws187d_c00000{word-spacing:27.709308px;}
.wse13_c00000{word-spacing:27.712800px;}
.wseea_c00000{word-spacing:27.720000px;}
.ws1672_c00000{word-spacing:27.722304px;}
.ws14c9_c00000{word-spacing:27.727200px;}
.wsf41_c00000{word-spacing:27.728892px;}
.ws18f9_c00000{word-spacing:27.733356px;}
.ws9b5_c00000{word-spacing:27.734400px;}
.wsf42_c00000{word-spacing:27.735480px;}
.wsbb4_c00000{word-spacing:27.748656px;}
.wse97_c00000{word-spacing:27.748800px;}
.ws59b_c00000{word-spacing:27.755244px;}
.wsbb3_c00000{word-spacing:27.761832px;}
.ws13e9_c00000{word-spacing:27.763200px;}
.ws1974_c00000{word-spacing:27.769428px;}
.ws134f_c00000{word-spacing:27.775008px;}
.ws1973_c00000{word-spacing:27.775440px;}
.ws19d2_c00000{word-spacing:27.777600px;}
.ws59a_c00000{word-spacing:27.801360px;}
.ws18b5_c00000{word-spacing:27.806400px;}
.ws13c4_c00000{word-spacing:27.813600px;}
.ws1275_c00000{word-spacing:27.823536px;}
.ws14f3_c00000{word-spacing:27.828000px;}
.ws13d5_c00000{word-spacing:27.842400px;}
.ws142d_c00000{word-spacing:27.849600px;}
.ws1a43_c00000{word-spacing:27.928800px;}
.ws12b2_c00000{word-spacing:27.936000px;}
.ws16d0_c00000{word-spacing:27.943200px;}
.ws11ba_c00000{word-spacing:27.950400px;}
.wsfcb_c00000{word-spacing:27.955800px;}
.ws16d1_c00000{word-spacing:27.972000px;}
.ws13c3_c00000{word-spacing:27.993600px;}
.ws11bb_c00000{word-spacing:28.000800px;}
.ws1abe_c00000{word-spacing:28.008000px;}
.ws13d4_c00000{word-spacing:28.015200px;}
.ws197f_c00000{word-spacing:28.022400px;}
.wsa95_c00000{word-spacing:28.036800px;}
.ws12b4_c00000{word-spacing:28.051200px;}
.wsa28_c00000{word-spacing:28.058400px;}
.ws12b3_c00000{word-spacing:28.065600px;}
.wsd57_c00000{word-spacing:28.072800px;}
.wsa29_c00000{word-spacing:28.080000px;}
.ws1219_c00000{word-spacing:28.084644px;}
.wsd58_c00000{word-spacing:28.087200px;}
.ws1697_c00000{word-spacing:28.088064px;}
.ws15c6_c00000{word-spacing:28.094400px;}
.ws6e5_c00000{word-spacing:28.097820px;}
.ws6e4_c00000{word-spacing:28.104408px;}
.ws19d1_c00000{word-spacing:28.108800px;}
.wsfb6_c00000{word-spacing:28.118124px;}
.ws1a08_c00000{word-spacing:28.123200px;}
.ws7b6_c00000{word-spacing:28.124172px;}
.ws19b2_c00000{word-spacing:28.130760px;}
.wsc1e_c00000{word-spacing:28.137348px;}
.ws1194_c00000{word-spacing:28.142172px;}
.ws1a09_c00000{word-spacing:28.144800px;}
.ws148f_c00000{word-spacing:28.163700px;}
.ws1318_c00000{word-spacing:28.166220px;}
.ws1868_c00000{word-spacing:28.180800px;}
.wsf16_c00000{word-spacing:28.202400px;}
.ws18dc_c00000{word-spacing:28.224000px;}
.ws100d_c00000{word-spacing:28.245600px;}
.ws1869_c00000{word-spacing:28.252800px;}
.ws2fb_c00000{word-spacing:28.260000px;}
.ws1a52_c00000{word-spacing:28.274400px;}
.ws1a53_c00000{word-spacing:28.281600px;}
.ws4fe_c00000{word-spacing:28.288800px;}
.ws5df_c00000{word-spacing:28.296000px;}
.wsd09_c00000{word-spacing:28.303200px;}
.ws5a8_c00000{word-spacing:28.317600px;}
.wsd07_c00000{word-spacing:28.324800px;}
.ws93c_c00000{word-spacing:28.332000px;}
.wse5f_c00000{word-spacing:28.346400px;}
.wsa2d_c00000{word-spacing:28.353600px;}
.ws5e0_c00000{word-spacing:28.368000px;}
.ws500_c00000{word-spacing:28.375200px;}
.ws5a9_c00000{word-spacing:28.382400px;}
.wsd08_c00000{word-spacing:28.389600px;}
.wse5e_c00000{word-spacing:28.396800px;}
.ws13c1_c00000{word-spacing:28.404000px;}
.ws15e1_c00000{word-spacing:28.411200px;}
.ws707_c00000{word-spacing:28.414044px;}
.wsf53_c00000{word-spacing:28.418400px;}
.ws13d3_c00000{word-spacing:28.425600px;}
.ws4ff_c00000{word-spacing:28.432800px;}
.wsc47_c00000{word-spacing:28.440000px;}
.ws708_c00000{word-spacing:28.446984px;}
.wsc3a_c00000{word-spacing:28.447200px;}
.wse17_c00000{word-spacing:28.466748px;}
.ws17fb_c00000{word-spacing:28.473336px;}
.ws1abc_c00000{word-spacing:28.490400px;}
.wse16_c00000{word-spacing:28.499688px;}
.ws633_c00000{word-spacing:28.504800px;}
.ws18e5_c00000{word-spacing:28.512000px;}
.ws18e4_c00000{word-spacing:28.533600px;}
.ws1180_c00000{word-spacing:28.538964px;}
.ws1181_c00000{word-spacing:28.557000px;}
.ws1469_c00000{word-spacing:28.569600px;}
.ws146a_c00000{word-spacing:28.598400px;}
.ws70_c00000{word-spacing:28.612800px;}
.ws267_c00000{word-spacing:28.641600px;}
.ws1a56_c00000{word-spacing:28.656000px;}
.ws16ca_c00000{word-spacing:28.670400px;}
.ws632_c00000{word-spacing:28.677600px;}
.wsd9a_c00000{word-spacing:28.692000px;}
.wse5d_c00000{word-spacing:28.706400px;}
.ws8f4_c00000{word-spacing:28.713600px;}
.ws12aa_c00000{word-spacing:28.720800px;}
.ws150d_c00000{word-spacing:28.728000px;}
.ws19fd_c00000{word-spacing:28.735200px;}
.ws12eb_c00000{word-spacing:28.742400px;}
.ws16e7_c00000{word-spacing:28.749600px;}
.ws8f3_c00000{word-spacing:28.756800px;}
.ws6f_c00000{word-spacing:28.764000px;}
.ws634_c00000{word-spacing:28.771200px;}
.wsad1_c00000{word-spacing:28.778400px;}
.ws1894_c00000{word-spacing:28.779444px;}
.ws137f_c00000{word-spacing:28.785600px;}
.wsc2c_c00000{word-spacing:28.792800px;}
.ws1a2e_c00000{word-spacing:28.800000px;}
.ws1ae6_c00000{word-spacing:28.803492px;}
.wsae4_c00000{word-spacing:28.807200px;}
.ws100e_c00000{word-spacing:28.814400px;}
.ws1381_c00000{word-spacing:28.821600px;}
.wsae5_c00000{word-spacing:28.828800px;}
.wsd99_c00000{word-spacing:28.836000px;}
.wsff3_c00000{word-spacing:28.842264px;}
.ws269_c00000{word-spacing:28.850400px;}
.wsff2_c00000{word-spacing:28.862028px;}
.ws1210_c00000{word-spacing:28.875204px;}
.ws268_c00000{word-spacing:28.879200px;}
.ws17db_c00000{word-spacing:28.900800px;}
.ws1487_c00000{word-spacing:28.908000px;}
.ws107e_c00000{word-spacing:28.933200px;}
.ws13a4_c00000{word-spacing:28.936800px;}
.ws162e_c00000{word-spacing:28.944000px;}
.ws15ae_c00000{word-spacing:28.958400px;}
.ws19da_c00000{word-spacing:28.965600px;}
.wse8d_c00000{word-spacing:28.971828px;}
.wscb0_c00000{word-spacing:28.987200px;}
.ws11ff_c00000{word-spacing:29.001600px;}
.ws1283_c00000{word-spacing:29.001888px;}
.ws14cd_c00000{word-spacing:29.016000px;}
.ws13a5_c00000{word-spacing:29.044800px;}
.ws12ac_c00000{word-spacing:29.052000px;}
.wsf8c_c00000{word-spacing:29.059200px;}
.wscaf_c00000{word-spacing:29.066400px;}
.wsa75_c00000{word-spacing:29.088000px;}
.wsd90_c00000{word-spacing:29.102400px;}
.wscb1_c00000{word-spacing:29.109600px;}
.wsd8f_c00000{word-spacing:29.116800px;}
.wsb96_c00000{word-spacing:29.124000px;}
.wscc9_c00000{word-spacing:29.131200px;}
.ws12ab_c00000{word-spacing:29.138400px;}
.wse93_c00000{word-spacing:29.145600px;}
.ws273_c00000{word-spacing:29.160000px;}
.ws12ba_c00000{word-spacing:29.167200px;}
.ws175f_c00000{word-spacing:29.171664px;}
.ws1664_c00000{word-spacing:29.178252px;}
.ws175e_c00000{word-spacing:29.184840px;}
.wsdbb_c00000{word-spacing:29.204604px;}
.wsbe8_c00000{word-spacing:29.210400px;}
.wse02_c00000{word-spacing:29.211192px;}
.ws10dc_c00000{word-spacing:29.212308px;}
.ws1663_c00000{word-spacing:29.224368px;}
.wsdbc_c00000{word-spacing:29.244132px;}
.ws17bc_c00000{word-spacing:29.246400px;}
.wse7e_c00000{word-spacing:29.257308px;}
.ws576_c00000{word-spacing:29.260800px;}
.wsa76_c00000{word-spacing:29.268000px;}
.ws17c5_c00000{word-spacing:29.282400px;}
.ws1168_c00000{word-spacing:29.305800px;}
.ws574_c00000{word-spacing:29.311200px;}
.wsb88_c00000{word-spacing:29.318400px;}
.ws197d_c00000{word-spacing:29.325600px;}
.ws1239_c00000{word-spacing:29.326536px;}
.wsb87_c00000{word-spacing:29.332800px;}
.ws17c4_c00000{word-spacing:29.361600px;}
.ws10b2_c00000{word-spacing:29.374632px;}
.ws271_c00000{word-spacing:29.376000px;}
.wsf51_c00000{word-spacing:29.390400px;}
.ws13e1_c00000{word-spacing:29.397600px;}
.ws19de_c00000{word-spacing:29.404800px;}
.wsb4b_c00000{word-spacing:29.412000px;}
.ws1a3c_c00000{word-spacing:29.419200px;}
.ws13e2_c00000{word-spacing:29.433600px;}
.wsf52_c00000{word-spacing:29.448000px;}
.ws3c5_c00000{word-spacing:29.469600px;}
.ws389_c00000{word-spacing:29.476800px;}
.ws391_c00000{word-spacing:29.484000px;}
.ws995_c00000{word-spacing:29.491200px;}
.ws38a_c00000{word-spacing:29.505600px;}
.ws154a_c00000{word-spacing:29.512800px;}
.ws272_c00000{word-spacing:29.520000px;}
.ws11ed_c00000{word-spacing:29.520828px;}
.ws575_c00000{word-spacing:29.527200px;}
.ws663_c00000{word-spacing:29.534004px;}
.wsd34_c00000{word-spacing:29.541600px;}
.wsb95_c00000{word-spacing:29.548800px;}
.ws971_c00000{word-spacing:29.553768px;}
.ws153c_c00000{word-spacing:29.556000px;}
.ws16d7_c00000{word-spacing:29.560356px;}
.ws11ec_c00000{word-spacing:29.566944px;}
.ws51b_c00000{word-spacing:29.573532px;}
.wse03_c00000{word-spacing:29.586708px;}
.ws51a_c00000{word-spacing:29.593296px;}
.ws184a_c00000{word-spacing:29.599884px;}
.wsdd3_c00000{word-spacing:29.606400px;}
.ws14a6_c00000{word-spacing:29.606472px;}
.ws14a5_c00000{word-spacing:29.619648px;}
.ws139f_c00000{word-spacing:29.635200px;}
.ws2f1_c00000{word-spacing:29.656800px;}
.ws1169_c00000{word-spacing:29.673000px;}
.wsbc8_c00000{word-spacing:29.678400px;}
.ws1931_c00000{word-spacing:29.685600px;}
.ws3a9_c00000{word-spacing:29.692800px;}
.wsbc9_c00000{word-spacing:29.707200px;}
.ws19c3_c00000{word-spacing:29.714400px;}
.ws19c2_c00000{word-spacing:29.721600px;}
.ws1834_c00000{word-spacing:29.728800px;}
.ws1830_c00000{word-spacing:29.736000px;}
.ws2f2_c00000{word-spacing:29.750400px;}
.ws19f6_c00000{word-spacing:29.757600px;}
.ws948_c00000{word-spacing:29.772000px;}
.ws3cf_c00000{word-spacing:29.786400px;}
.wsdd5_c00000{word-spacing:29.793600px;}
.wsb79_c00000{word-spacing:29.800800px;}
.wsa6d_c00000{word-spacing:29.808000px;}
.wsed8_c00000{word-spacing:29.815200px;}
.ws911_c00000{word-spacing:29.822400px;}
.wsf13_c00000{word-spacing:29.829600px;}
.ws1c4_c00000{word-spacing:29.836800px;}
.ws2d8_c00000{word-spacing:29.844000px;}
.wsfeb_c00000{word-spacing:29.849580px;}
.wse55_c00000{word-spacing:29.851200px;}
.ws9de_c00000{word-spacing:29.858400px;}
.ws14fd_c00000{word-spacing:29.865600px;}
.ws1286_c00000{word-spacing:29.872800px;}
.ws11c8_c00000{word-spacing:29.876580px;}
.ws9df_c00000{word-spacing:29.880000px;}
.wsf5e_c00000{word-spacing:29.887200px;}
.ws1068_c00000{word-spacing:29.891664px;}
.wsdaa_c00000{word-spacing:29.896344px;}
.wsf12_c00000{word-spacing:29.901600px;}
.ws1589_c00000{word-spacing:29.902932px;}
.wsfca_c00000{word-spacing:29.903688px;}
.ws19a9_c00000{word-spacing:29.909520px;}
.wsdd4_c00000{word-spacing:29.916000px;}
.ws11c7_c00000{word-spacing:29.922696px;}
.wsfef_c00000{word-spacing:29.929284px;}
.ws15f8_c00000{word-spacing:29.949048px;}
.wsda9_c00000{word-spacing:29.962224px;}
.wsb78_c00000{word-spacing:29.966400px;}
.ws1285_c00000{word-spacing:29.973600px;}
.ws1a5a_c00000{word-spacing:30.016800px;}
.wsd5e_c00000{word-spacing:30.038400px;}
.wsd73_c00000{word-spacing:30.081600px;}
.ws13ab_c00000{word-spacing:30.096000px;}
.ws1410_c00000{word-spacing:30.096072px;}
.wsd72_c00000{word-spacing:30.103200px;}
.ws34c_c00000{word-spacing:30.139200px;}
.ws1531_c00000{word-spacing:30.146400px;}
.ws14ff_c00000{word-spacing:30.182400px;}
.wsec7_c00000{word-spacing:30.196800px;}
.wsaa8_c00000{word-spacing:30.211200px;}
.ws34b_c00000{word-spacing:30.218400px;}
.ws1460_c00000{word-spacing:30.225600px;}
.ws877_c00000{word-spacing:30.232800px;}
.ws1a40_c00000{word-spacing:30.240000px;}
.ws17ff_c00000{word-spacing:30.245508px;}
.ws876_c00000{word-spacing:30.247200px;}
.ws17fe_c00000{word-spacing:30.258684px;}
.ws198e_c00000{word-spacing:30.265272px;}
.ws13ac_c00000{word-spacing:30.283200px;}
.ws1588_c00000{word-spacing:30.311388px;}
.ws1958_c00000{word-spacing:30.330540px;}
.ws11a7_c00000{word-spacing:30.342564px;}
.ws1999_c00000{word-spacing:30.369600px;}
.ws1998_c00000{word-spacing:30.384000px;}
.ws10eb_c00000{word-spacing:30.412800px;}
.ws10ea_c00000{word-spacing:30.418200px;}
.wsd49_c00000{word-spacing:30.427200px;}
.ws199a_c00000{word-spacing:30.434400px;}
.ws181b_c00000{word-spacing:30.456000px;}
.wsb5b_c00000{word-spacing:30.477600px;}
.ws1821_c00000{word-spacing:30.484800px;}
.ws1a37_c00000{word-spacing:30.492000px;}
.ws944_c00000{word-spacing:30.499200px;}
.ws674_c00000{word-spacing:30.506400px;}
.ws943_c00000{word-spacing:30.513600px;}
.ws1a55_c00000{word-spacing:30.528000px;}
.ws1644_c00000{word-spacing:30.535200px;}
.wsf55_c00000{word-spacing:30.542400px;}
.wsaa4_c00000{word-spacing:30.549600px;}
.ws326_c00000{word-spacing:30.564000px;}
.wsb5c_c00000{word-spacing:30.571200px;}
.ws12d4_c00000{word-spacing:30.578400px;}
.ws1643_c00000{word-spacing:30.585600px;}
.ws327_c00000{word-spacing:30.592800px;}
.ws181f_c00000{word-spacing:30.600000px;}
.wsf47_c00000{word-spacing:30.614400px;}
.ws1705_c00000{word-spacing:30.614436px;}
.ws675_c00000{word-spacing:30.621600px;}
.ws16ae_c00000{word-spacing:30.634200px;}
.ws16ad_c00000{word-spacing:30.647376px;}
.ws1815_c00000{word-spacing:30.664800px;}
.ws1422_c00000{word-spacing:30.685248px;}
.ws1814_c00000{word-spacing:30.686400px;}
.wsf71_c00000{word-spacing:30.693600px;}
.ws1262_c00000{word-spacing:30.715308px;}
.wsb84_c00000{word-spacing:30.729600px;}
.ws1a11_c00000{word-spacing:30.736800px;}
.ws10fe_c00000{word-spacing:30.753000px;}
.wsb83_c00000{word-spacing:30.772800px;}
.ws1ab5_c00000{word-spacing:30.787200px;}
.wsf72_c00000{word-spacing:30.801600px;}
.ws113a_c00000{word-spacing:30.808800px;}
.wsae2_c00000{word-spacing:30.823200px;}
.ws1261_c00000{word-spacing:30.823524px;}
.ws1579_c00000{word-spacing:30.829536px;}
.ws14bb_c00000{word-spacing:30.830400px;}
.ws151a_c00000{word-spacing:30.837600px;}
.ws1647_c00000{word-spacing:30.852000px;}
.ws185f_c00000{word-spacing:30.859200px;}
.ws739_c00000{word-spacing:30.866400px;}
.ws2c0_c00000{word-spacing:30.873600px;}
.ws161e_c00000{word-spacing:30.880800px;}
.ws12a3_c00000{word-spacing:30.888000px;}
.wsa44_c00000{word-spacing:30.895200px;}
.ws73a_c00000{word-spacing:30.902400px;}
.ws2bf_c00000{word-spacing:30.916800px;}
.ws82e_c00000{word-spacing:30.924000px;}
.ws1a5_c00000{word-spacing:30.931200px;}
.ws1a4f_c00000{word-spacing:30.938400px;}
.ws1a6_c00000{word-spacing:30.945600px;}
.ws1860_c00000{word-spacing:30.952800px;}
.wsa43_c00000{word-spacing:30.960000px;}
.ws15a5_c00000{word-spacing:30.967200px;}
.ws19ba_c00000{word-spacing:30.970188px;}
.wsc0d_c00000{word-spacing:30.983364px;}
.ws19b9_c00000{word-spacing:30.989952px;}
.ws896_c00000{word-spacing:30.996000px;}
.ws19bb_c00000{word-spacing:30.996540px;}
.wsc0e_c00000{word-spacing:31.003128px;}
.ws15d9_c00000{word-spacing:31.016304px;}
.ws73b_c00000{word-spacing:31.017600px;}
.wsbc2_c00000{word-spacing:31.022892px;}
.wsb85_c00000{word-spacing:31.024800px;}
.ws1a13_c00000{word-spacing:31.042656px;}
.ws122a_c00000{word-spacing:31.082400px;}
.wsca6_c00000{word-spacing:31.089600px;}
.ws18bf_c00000{word-spacing:31.094064px;}
.ws19e0_c00000{word-spacing:31.096800px;}
.ws11bc_c00000{word-spacing:31.132800px;}
.ws18be_c00000{word-spacing:31.142160px;}
.wsdb4_c00000{word-spacing:31.147200px;}
.ws19fa_c00000{word-spacing:31.154400px;}
.wsdb3_c00000{word-spacing:31.183200px;}
.ws1411_c00000{word-spacing:31.184244px;}
.wsea6_c00000{word-spacing:31.190400px;}
.ws8b3_c00000{word-spacing:31.197600px;}
.wsea7_c00000{word-spacing:31.204800px;}
.ws8b2_c00000{word-spacing:31.212000px;}
.wsd2e_c00000{word-spacing:31.219200px;}
.wsea8_c00000{word-spacing:31.226400px;}
.ws1229_c00000{word-spacing:31.233600px;}
.wsf7e_c00000{word-spacing:31.240800px;}
.ws103_c00000{word-spacing:31.262400px;}
.wsca7_c00000{word-spacing:31.269600px;}
.wsea5_c00000{word-spacing:31.284000px;}
.wsd4b_c00000{word-spacing:31.291200px;}
.ws1435_c00000{word-spacing:31.298400px;}
.ws102_c00000{word-spacing:31.305600px;}
.wsbda_c00000{word-spacing:31.306176px;}
.wsd4a_c00000{word-spacing:31.312800px;}
.ws1434_c00000{word-spacing:31.320000px;}
.ws1a22_c00000{word-spacing:31.334400px;}
.ws10de_c00000{word-spacing:31.334544px;}
.wsbd9_c00000{word-spacing:31.339116px;}
.wsf7d_c00000{word-spacing:31.341600px;}
.ws1a18_c00000{word-spacing:31.348800px;}
.ws1ac7_c00000{word-spacing:31.352292px;}
.ws1ac6_c00000{word-spacing:31.358880px;}
.ws16b_c00000{word-spacing:31.392000px;}
.ws1336_c00000{word-spacing:31.418712px;}
.ws149f_c00000{word-spacing:31.478400px;}
.ws16a_c00000{word-spacing:31.485600px;}
.ws147d_c00000{word-spacing:31.500000px;}
.ws14a0_c00000{word-spacing:31.507200px;}
.ws1ab2_c00000{word-spacing:31.514400px;}
.ws802_c00000{word-spacing:31.521600px;}
.ws1ad0_c00000{word-spacing:31.544964px;}
.ws14bc_c00000{word-spacing:31.550400px;}
.ws5f9_c00000{word-spacing:31.557600px;}
.ws1010_c00000{word-spacing:31.564800px;}
.wsf0c_c00000{word-spacing:31.579200px;}
.ws198b_c00000{word-spacing:31.586400px;}
.ws190_c00000{word-spacing:31.608000px;}
.ws12b9_c00000{word-spacing:31.622400px;}
.ws147f_c00000{word-spacing:31.629600px;}
.ws163a_c00000{word-spacing:31.644000px;}
.ws100f_c00000{word-spacing:31.651200px;}
.ws147e_c00000{word-spacing:31.658400px;}
.ws801_c00000{word-spacing:31.672800px;}
.ws12ff_c00000{word-spacing:31.677228px;}
.ws170b_c00000{word-spacing:31.681692px;}
.wsca8_c00000{word-spacing:31.694400px;}
.ws191_c00000{word-spacing:31.708800px;}
.ws148e_c00000{word-spacing:31.716000px;}
.ws16c_c00000{word-spacing:31.730400px;}
.ws12dd_c00000{word-spacing:31.737600px;}
.ws1564_c00000{word-spacing:31.827528px;}
.ws1303_c00000{word-spacing:31.857588px;}
.wsede_c00000{word-spacing:31.860000px;}
.ws304_c00000{word-spacing:31.903200px;}
.ws2a7_c00000{word-spacing:31.910400px;}
.ws16cf_c00000{word-spacing:31.953600px;}
.ws11f3_c00000{word-spacing:31.960800px;}
.wsbec_c00000{word-spacing:31.968000px;}
.ws2a8_c00000{word-spacing:31.975200px;}
.ws13b1_c00000{word-spacing:31.982400px;}
.wse4f_c00000{word-spacing:31.996800px;}
.wsc90_c00000{word-spacing:32.004000px;}
.ws1362_c00000{word-spacing:32.011200px;}
.wsd1d_c00000{word-spacing:32.025600px;}
.ws305_c00000{word-spacing:32.040000px;}
.ws18a2_c00000{word-spacing:32.043960px;}
.wsc9b_c00000{word-spacing:32.061600px;}
.ws15d6_c00000{word-spacing:32.076972px;}
.wsf1f_c00000{word-spacing:32.090400px;}
.ws175c_c00000{word-spacing:32.103324px;}
.ws14b2_c00000{word-spacing:32.123088px;}
.ws1ad7_c00000{word-spacing:32.140152px;}
.ws1457_c00000{word-spacing:32.234400px;}
.ws1182_c00000{word-spacing:32.248368px;}
.wsc18_c00000{word-spacing:32.256000px;}
.wsb80_c00000{word-spacing:32.284800px;}
.ws1a0d_c00000{word-spacing:32.292000px;}
.wsa1f_c00000{word-spacing:32.299200px;}
.ws1a2c_c00000{word-spacing:32.306400px;}
.ws183c_c00000{word-spacing:32.313600px;}
.ws11f4_c00000{word-spacing:32.320800px;}
.ws1617_c00000{word-spacing:32.342400px;}
.wsf6b_c00000{word-spacing:32.349600px;}
.wsf6a_c00000{word-spacing:32.356800px;}
.ws716_c00000{word-spacing:32.371200px;}
.wsb81_c00000{word-spacing:32.378400px;}
.ws8c7_c00000{word-spacing:32.385600px;}
.wsf6c_c00000{word-spacing:32.392800px;}
.wsb82_c00000{word-spacing:32.400000px;}
.ws1596_c00000{word-spacing:32.406372px;}
.ws1a2d_c00000{word-spacing:32.407200px;}
.ws1272_c00000{word-spacing:32.410692px;}
.ws13d2_c00000{word-spacing:32.421600px;}
.wsa1d_c00000{word-spacing:32.428800px;}
.ws519_c00000{word-spacing:32.432724px;}
.ws116d_c00000{word-spacing:32.434740px;}
.wsa1e_c00000{word-spacing:32.436000px;}
.wsbdb_c00000{word-spacing:32.445900px;}
.ws19a8_c00000{word-spacing:32.459076px;}
.ws518_c00000{word-spacing:32.465664px;}
.ws19a7_c00000{word-spacing:32.472252px;}
.ws16b5_c00000{word-spacing:32.479200px;}
.wsf22_c00000{word-spacing:32.500800px;}
.ws1113_c00000{word-spacing:32.500872px;}
.ws1324_c00000{word-spacing:32.512896px;}
.ws101a_c00000{word-spacing:32.565600px;}
.ws16ea_c00000{word-spacing:32.572800px;}
.ws1a39_c00000{word-spacing:32.616000px;}
.wsece_c00000{word-spacing:32.644800px;}
.wsf23_c00000{word-spacing:32.652000px;}
.ws1343_c00000{word-spacing:32.659200px;}
.ws19f7_c00000{word-spacing:32.688000px;}
.ws1292_c00000{word-spacing:32.709600px;}
.ws1293_c00000{word-spacing:32.716800px;}
.ws159b_c00000{word-spacing:32.724000px;}
.ws16eb_c00000{word-spacing:32.731200px;}
.ws19bc_c00000{word-spacing:32.742360px;}
.ws1a38_c00000{word-spacing:32.745600px;}
.wsecf_c00000{word-spacing:32.752800px;}
.ws1344_c00000{word-spacing:32.760000px;}
.ws159c_c00000{word-spacing:32.767200px;}
.ws59c_c00000{word-spacing:32.781888px;}
.ws131e_c00000{word-spacing:32.789448px;}
.ws17fd_c00000{word-spacing:32.808240px;}
.ws1acb_c00000{word-spacing:32.814828px;}
.ws1654_c00000{word-spacing:32.821416px;}
.ws17fc_c00000{word-spacing:32.828004px;}
.wsd43_c00000{word-spacing:32.932800px;}
.ws1f7_c00000{word-spacing:32.947200px;}
.ws14ba_c00000{word-spacing:32.961600px;}
.ws1137_c00000{word-spacing:32.993856px;}
.ws184c_c00000{word-spacing:32.997600px;}
.ws1599_c00000{word-spacing:33.004800px;}
.ws1a3d_c00000{word-spacing:33.033600px;}
.ws1987_c00000{word-spacing:33.040800px;}
.ws1f8_c00000{word-spacing:33.048000px;}
.wsc4f_c00000{word-spacing:33.062400px;}
.ws1485_c00000{word-spacing:33.069600px;}
.ws1466_c00000{word-spacing:33.076800px;}
.ws1200_c00000{word-spacing:33.084000px;}
.ws1486_c00000{word-spacing:33.091200px;}
.ws275_c00000{word-spacing:33.098400px;}
.ws1636_c00000{word-spacing:33.105600px;}
.wsd44_c00000{word-spacing:33.112800px;}
.ws1753_c00000{word-spacing:33.120000px;}
.ws10e0_c00000{word-spacing:33.120108px;}
.ws1988_c00000{word-spacing:33.127200px;}
.ws1626_c00000{word-spacing:33.137640px;}
.ws10bc_c00000{word-spacing:33.138144px;}
.ws17be_c00000{word-spacing:33.144228px;}
.ws1345_c00000{word-spacing:33.148800px;}
.ws712_c00000{word-spacing:33.150816px;}
.wsbc3_c00000{word-spacing:33.170580px;}
.ws1223_c00000{word-spacing:33.183756px;}
.ws17bf_c00000{word-spacing:33.223284px;}
.wsbc6_c00000{word-spacing:33.228000px;}
.ws195b_c00000{word-spacing:33.234336px;}
.ws1a3e_c00000{word-spacing:33.264000px;}
.ws13ec_c00000{word-spacing:33.307200px;}
.wsbc5_c00000{word-spacing:33.314400px;}
.ws76c_c00000{word-spacing:33.328800px;}
.ws1346_c00000{word-spacing:33.336000px;}
.wsb4a_c00000{word-spacing:33.379200px;}
.ws15ac_c00000{word-spacing:33.386400px;}
.ws1a34_c00000{word-spacing:33.393600px;}
.ws12d8_c00000{word-spacing:33.408000px;}
.ws12d1_c00000{word-spacing:33.422400px;}
.ws12d0_c00000{word-spacing:33.429600px;}
.wse4d_c00000{word-spacing:33.436800px;}
.wse4e_c00000{word-spacing:33.444000px;}
.wsf5d_c00000{word-spacing:33.451200px;}
.ws12c0_c00000{word-spacing:33.458400px;}
.ws1407_c00000{word-spacing:33.465600px;}
.ws15ab_c00000{word-spacing:33.480000px;}
.ws1829_c00000{word-spacing:33.480216px;}
.ws1570_c00000{word-spacing:33.486840px;}
.ws1a35_c00000{word-spacing:33.487200px;}
.ws76b_c00000{word-spacing:33.516000px;}
.ws1828_c00000{word-spacing:33.519744px;}
.ws1067_c00000{word-spacing:33.564996px;}
.ws142e_c00000{word-spacing:33.674400px;}
.ws1373_c00000{word-spacing:33.678792px;}
.ws6d6_c00000{word-spacing:33.696000px;}
.ws81c_c00000{word-spacing:33.710400px;}
.ws900_c00000{word-spacing:33.717600px;}
.ws81b_c00000{word-spacing:33.724800px;}
.wsb9e_c00000{word-spacing:33.732000px;}
.wsf15_c00000{word-spacing:33.746400px;}
.ws8ff_c00000{word-spacing:33.753600px;}
.wsf6d_c00000{word-spacing:33.760800px;}
.ws135d_c00000{word-spacing:33.768000px;}
.ws1360_c00000{word-spacing:33.775200px;}
.ws763_c00000{word-spacing:33.782400px;}
.ws1758_c00000{word-spacing:33.789600px;}
.ws282_c00000{word-spacing:33.796800px;}
.wsb9d_c00000{word-spacing:33.804000px;}
.ws135e_c00000{word-spacing:33.811200px;}
.ws12c1_c00000{word-spacing:33.818400px;}
.wse7a_c00000{word-spacing:33.825600px;}
.ws184f_c00000{word-spacing:33.832800px;}
.wse7b_c00000{word-spacing:33.840000px;}
.wsb9f_c00000{word-spacing:33.861600px;}
.ws81d_c00000{word-spacing:33.868800px;}
.ws16d8_c00000{word-spacing:33.875496px;}
.ws767_c00000{word-spacing:33.888672px;}
.ws6eb_c00000{word-spacing:33.901848px;}
.ws6ea_c00000{word-spacing:33.928200px;}
.wsd13_c00000{word-spacing:33.948000px;}
.wsad2_c00000{word-spacing:34.034400px;}
.ws145e_c00000{word-spacing:34.056000px;}
.ws11b9_c00000{word-spacing:34.070400px;}
.ws16c0_c00000{word-spacing:34.084800px;}
.wsdec_c00000{word-spacing:34.092000px;}
.ws4ac_c00000{word-spacing:34.099200px;}
.wsde5_c00000{word-spacing:34.135200px;}
.ws1ab3_c00000{word-spacing:34.149600px;}
.ws11bf_c00000{word-spacing:34.156800px;}
.ws13ad_c00000{word-spacing:34.164000px;}
.ws88c_c00000{word-spacing:34.171200px;}
.wseed_c00000{word-spacing:34.178400px;}
.ws1481_c00000{word-spacing:34.185600px;}
.wsded_c00000{word-spacing:34.192800px;}
.ws13ae_c00000{word-spacing:34.200000px;}
.ws142c_c00000{word-spacing:34.207200px;}
.ws1ac4_c00000{word-spacing:34.218072px;}
.ws88d_c00000{word-spacing:34.243200px;}
.ws1ac5_c00000{word-spacing:34.257600px;}
.ws1416_c00000{word-spacing:34.268400px;}
.wsfa2_c00000{word-spacing:34.286400px;}
.wsd12_c00000{word-spacing:34.329600px;}
.wsed0_c00000{word-spacing:34.380000px;}
.ws14f4_c00000{word-spacing:34.408800px;}
.ws1480_c00000{word-spacing:34.423200px;}
.wseee_c00000{word-spacing:34.430400px;}
.ws1803_c00000{word-spacing:34.437600px;}
.ws1a4d_c00000{word-spacing:34.444800px;}
.ws1a5d_c00000{word-spacing:34.452000px;}
.ws15f5_c00000{word-spacing:34.466400px;}
.ws1006_c00000{word-spacing:34.480800px;}
.ws13c5_c00000{word-spacing:34.488000px;}
.ws163f_c00000{word-spacing:34.495200px;}
.ws12a4_c00000{word-spacing:34.509600px;}
.ws12a5_c00000{word-spacing:34.516800px;}
.wsc35_c00000{word-spacing:34.524000px;}
.ws19f9_c00000{word-spacing:34.531200px;}
.ws2b8_c00000{word-spacing:34.538400px;}
.ws15f6_c00000{word-spacing:34.545600px;}
.ws148b_c00000{word-spacing:34.552800px;}
.ws1007_c00000{word-spacing:34.560000px;}
.ws2b9_c00000{word-spacing:34.567200px;}
.wseef_c00000{word-spacing:34.574400px;}
.ws1640_c00000{word-spacing:34.581600px;}
.ws456_c00000{word-spacing:34.587000px;}
.wsed1_c00000{word-spacing:34.588800px;}
.ws455_c00000{word-spacing:34.613352px;}
.ws1225_c00000{word-spacing:34.626528px;}
.wsfc0_c00000{word-spacing:34.635132px;}
.ws1295_c00000{word-spacing:34.675200px;}
.wsfd0_c00000{word-spacing:34.677216px;}
.ws1a31_c00000{word-spacing:34.740000px;}
.ws1116_c00000{word-spacing:34.755372px;}
.ws16c4_c00000{word-spacing:34.768800px;}
.wsd61_c00000{word-spacing:34.790400px;}
.ws17f1_c00000{word-spacing:34.804800px;}
.ws1294_c00000{word-spacing:34.819200px;}
.ws12a0_c00000{word-spacing:34.826400px;}
.ws1a30_c00000{word-spacing:34.848000px;}
.wsd53_c00000{word-spacing:34.855200px;}
.ws19f2_c00000{word-spacing:34.869600px;}
.ws849_c00000{word-spacing:34.876800px;}
.ws195f_c00000{word-spacing:34.881624px;}
.ws14f7_c00000{word-spacing:34.884000px;}
.wsd60_c00000{word-spacing:34.891200px;}
.ws13dc_c00000{word-spacing:34.898400px;}
.ws703_c00000{word-spacing:34.903224px;}
.ws12ae_c00000{word-spacing:34.905600px;}
.ws16c3_c00000{word-spacing:34.912800px;}
.ws1296_c00000{word-spacing:34.920000px;}
.ws19f1_c00000{word-spacing:34.927200px;}
.ws1704_c00000{word-spacing:34.962516px;}
.ws704_c00000{word-spacing:34.969104px;}
.ws13dd_c00000{word-spacing:34.970400px;}
.ws702_c00000{word-spacing:34.995456px;}
.ws187f_c00000{word-spacing:35.025912px;}
.ws1019_c00000{word-spacing:35.071200px;}
.wsea3_c00000{word-spacing:35.114400px;}
.ws17f0_c00000{word-spacing:35.121600px;}
.ws1850_c00000{word-spacing:35.128800px;}
.ws16f6_c00000{word-spacing:35.143200px;}
.ws1a12_c00000{word-spacing:35.172000px;}
.ws15cf_c00000{word-spacing:35.179200px;}
.wsea4_c00000{word-spacing:35.186400px;}
.ws635_c00000{word-spacing:35.215200px;}
.wsd66_c00000{word-spacing:35.229600px;}
.ws1018_c00000{word-spacing:35.244000px;}
.ws15ce_c00000{word-spacing:35.251200px;}
.ws102c_c00000{word-spacing:35.258400px;}
.ws10e1_c00000{word-spacing:35.266392px;}
.ws636_c00000{word-spacing:35.272800px;}
.wsa5b_c00000{word-spacing:35.285328px;}
.ws1648_c00000{word-spacing:35.294400px;}
.ws1119_c00000{word-spacing:35.302464px;}
.ws12ed_c00000{word-spacing:35.308800px;}
.ws119e_c00000{word-spacing:35.332524px;}
.ws4dd_c00000{word-spacing:35.357796px;}
.ws16f1_c00000{word-spacing:35.364384px;}
.ws110d_c00000{word-spacing:35.392644px;}
.ws1450_c00000{word-spacing:35.452800px;}
.ws131c_c00000{word-spacing:35.458776px;}
.ws57d_c00000{word-spacing:35.460000px;}
.ws926_c00000{word-spacing:35.467200px;}
.ws169f_c00000{word-spacing:35.517600px;}
.ws16a0_c00000{word-spacing:35.532000px;}
.wscdf_c00000{word-spacing:35.546400px;}
.ws15c9_c00000{word-spacing:35.568000px;}
.ws5a5_c00000{word-spacing:35.575200px;}
.ws349_c00000{word-spacing:35.582400px;}
.ws8bb_c00000{word-spacing:35.589600px;}
.ws927_c00000{word-spacing:35.596800px;}
.wsebd_c00000{word-spacing:35.604000px;}
.ws14ad_c00000{word-spacing:35.611200px;}
.ws12f7_c00000{word-spacing:35.618400px;}
.ws34a_c00000{word-spacing:35.625600px;}
.ws1aaf_c00000{word-spacing:35.632800px;}
.wsfee_c00000{word-spacing:35.639136px;}
.ws1452_c00000{word-spacing:35.640000px;}
.ws57c_c00000{word-spacing:35.647200px;}
.ws5a6_c00000{word-spacing:35.654400px;}
.ws169e_c00000{word-spacing:35.668800px;}
.ws1451_c00000{word-spacing:35.690400px;}
.ws484_c00000{word-spacing:35.706960px;}
.ws141e_c00000{word-spacing:35.762400px;}
.ws115c_c00000{word-spacing:35.771400px;}
.ws189b_c00000{word-spacing:35.777412px;}
.ws141d_c00000{word-spacing:35.784000px;}
.wsbd0_c00000{word-spacing:35.791200px;}
.ws12e7_c00000{word-spacing:35.863200px;}
.wsbcf_c00000{word-spacing:35.906400px;}
.ws1493_c00000{word-spacing:35.920800px;}
.ws1a32_c00000{word-spacing:35.928000px;}
.ws15d1_c00000{word-spacing:35.956800px;}
.ws745_c00000{word-spacing:35.964000px;}
.wsd1e_c00000{word-spacing:35.971200px;}
.wsd1f_c00000{word-spacing:35.978400px;}
.ws12e6_c00000{word-spacing:35.985600px;}
.ws1752_c00000{word-spacing:35.992800px;}
.ws822_c00000{word-spacing:36.007200px;}
.ws1880_c00000{word-spacing:36.017892px;}
.ws821_c00000{word-spacing:36.036000px;}
.ws1355_c00000{word-spacing:36.042948px;}
.ws7ee_c00000{word-spacing:36.082476px;}
.ws19e2_c00000{word-spacing:36.086400px;}
.ws15a4_c00000{word-spacing:36.108000px;}
.ws10c4_c00000{word-spacing:36.108072px;}
.ws1270_c00000{word-spacing:36.150156px;}
.ws19db_c00000{word-spacing:36.158400px;}
.ws11d8_c00000{word-spacing:36.194400px;}
.ws1017_c00000{word-spacing:36.208800px;}
.ws14fb_c00000{word-spacing:36.216000px;}
.ws1015_c00000{word-spacing:36.230400px;}
.ws12a9_c00000{word-spacing:36.259200px;}
.wscdd_c00000{word-spacing:36.273600px;}
.wsf49_c00000{word-spacing:36.295200px;}
.wsf48_c00000{word-spacing:36.309600px;}
.wsc34_c00000{word-spacing:36.324000px;}
.ws72a_c00000{word-spacing:36.331200px;}
.ws12a8_c00000{word-spacing:36.338400px;}
.ws9e4_c00000{word-spacing:36.345600px;}
.ws729_c00000{word-spacing:36.352800px;}
.ws1a1f_c00000{word-spacing:36.360000px;}
.ws9e5_c00000{word-spacing:36.367200px;}
.ws15a3_c00000{word-spacing:36.374400px;}
.ws17df_c00000{word-spacing:36.385524px;}
.ws1016_c00000{word-spacing:36.388800px;}
.ws11d9_c00000{word-spacing:36.396000px;}
.wscde_c00000{word-spacing:36.403200px;}
.ws14fc_c00000{word-spacing:36.424800px;}
.ws7ed_c00000{word-spacing:36.438228px;}
.ws144c_c00000{word-spacing:36.554400px;}
.wsb46_c00000{word-spacing:36.561600px;}
.ws16c9_c00000{word-spacing:36.568800px;}
.ws1673_c00000{word-spacing:36.583200px;}
.wsfa4_c00000{word-spacing:36.597600px;}
.ws98_c00000{word-spacing:36.619200px;}
.ws1542_c00000{word-spacing:36.633600px;}
.wse51_c00000{word-spacing:36.648000px;}
.ws99_c00000{word-spacing:36.669600px;}
.wsfa5_c00000{word-spacing:36.676800px;}
.ws1537_c00000{word-spacing:36.684000px;}
.wse52_c00000{word-spacing:36.698400px;}
.wse53_c00000{word-spacing:36.705600px;}
.wsb47_c00000{word-spacing:36.712800px;}
.ws182c_c00000{word-spacing:36.720000px;}
.ws1301_c00000{word-spacing:36.721296px;}
.ws1543_c00000{word-spacing:36.727200px;}
.ws6ed_c00000{word-spacing:36.734688px;}
.ws6ee_c00000{word-spacing:36.754452px;}
.ws6ec_c00000{word-spacing:36.761040px;}
.ws9ee_c00000{word-spacing:36.793980px;}
.ws1536_c00000{word-spacing:36.799200px;}
.ws640_c00000{word-spacing:36.828000px;}
.ws14b0_c00000{word-spacing:36.849600px;}
.ws63f_c00000{word-spacing:36.871200px;}
.ws14af_c00000{word-spacing:36.907200px;}
.ws93f_c00000{word-spacing:36.921600px;}
.wsfb2_c00000{word-spacing:36.964800px;}
.ws2ed_c00000{word-spacing:36.972000px;}
.ws13a8_c00000{word-spacing:36.979200px;}
.wsaa7_c00000{word-spacing:36.986400px;}
.ws2ec_c00000{word-spacing:36.993600px;}
.wscf0_c00000{word-spacing:37.000800px;}
.wscf1_c00000{word-spacing:37.029600px;}
.ws6b4_c00000{word-spacing:37.036800px;}
.ws940_c00000{word-spacing:37.051200px;}
.wsd3f_c00000{word-spacing:37.065600px;}
.wsaa6_c00000{word-spacing:37.072800px;}
.ws93e_c00000{word-spacing:37.080000px;}
.wsd40_c00000{word-spacing:37.087200px;}
.wscf2_c00000{word-spacing:37.108800px;}
.ws13a9_c00000{word-spacing:37.123200px;}
.ws14b1_c00000{word-spacing:37.130400px;}
.ws16f7_c00000{word-spacing:37.136556px;}
.wse81_c00000{word-spacing:37.149732px;}
.wsda0_c00000{word-spacing:37.267200px;}
.ws17f5_c00000{word-spacing:37.303200px;}
.ws1105_c00000{word-spacing:37.317600px;}
.ws934_c00000{word-spacing:37.339200px;}
.ws19d6_c00000{word-spacing:37.346400px;}
.wsd21_c00000{word-spacing:37.368000px;}
.ws6a4_c00000{word-spacing:37.375200px;}
.ws166a_c00000{word-spacing:37.382400px;}
.wsa6a_c00000{word-spacing:37.396800px;}
.wsd22_c00000{word-spacing:37.404000px;}
.ws933_c00000{word-spacing:37.411200px;}
.ws17f6_c00000{word-spacing:37.418400px;}
.wsda1_c00000{word-spacing:37.425600px;}
.ws1ab7_c00000{word-spacing:37.432800px;}
.ws1436_c00000{word-spacing:37.440000px;}
.ws1437_c00000{word-spacing:37.461600px;}
.wsa6b_c00000{word-spacing:37.497600px;}
.wseca_c00000{word-spacing:37.641600px;}
.wsb3f_c00000{word-spacing:37.684800px;}
.wsb40_c00000{word-spacing:37.699200px;}
.ws16cc_c00000{word-spacing:37.706400px;}
.ws1a57_c00000{word-spacing:37.728000px;}
.wsec9_c00000{word-spacing:37.742400px;}
.ws101d_c00000{word-spacing:37.778400px;}
.wsc16_c00000{word-spacing:37.785600px;}
.ws1a58_c00000{word-spacing:37.800000px;}
.ws19ab_c00000{word-spacing:37.801944px;}
.ws123c_c00000{word-spacing:37.809468px;}
.ws1763_c00000{word-spacing:37.815120px;}
.ws1764_c00000{word-spacing:37.841472px;}
.wsc15_c00000{word-spacing:37.864800px;}
.ws19ac_c00000{word-spacing:37.867824px;}
.wsc17_c00000{word-spacing:37.872000px;}
.ws101c_c00000{word-spacing:37.893600px;}
.ws10c0_c00000{word-spacing:37.935000px;}
.ws1ab1_c00000{word-spacing:37.936800px;}
.wsee7_c00000{word-spacing:37.944000px;}
.ws113d_c00000{word-spacing:37.977804px;}
.wsf01_c00000{word-spacing:38.030400px;}
.wsf4b_c00000{word-spacing:38.037600px;}
.ws19ca_c00000{word-spacing:38.066400px;}
.ws13c7_c00000{word-spacing:38.073600px;}
.ws13c8_c00000{word-spacing:38.080800px;}
.ws63c_c00000{word-spacing:38.088000px;}
.ws13c6_c00000{word-spacing:38.109600px;}
.ws1851_c00000{word-spacing:38.116800px;}
.ws13c9_c00000{word-spacing:38.124000px;}
.ws1ab0_c00000{word-spacing:38.131200px;}
.wsf4a_c00000{word-spacing:38.138400px;}
.ws63d_c00000{word-spacing:38.145600px;}
.ws63e_c00000{word-spacing:38.152800px;}
.ws1847_c00000{word-spacing:38.167200px;}
.ws14e4_c00000{word-spacing:38.177460px;}
.ws19cb_c00000{word-spacing:38.181600px;}
.wsf02_c00000{word-spacing:38.188800px;}
.ws15ba_c00000{word-spacing:38.197224px;}
.ws422_c00000{word-spacing:38.216988px;}
.wsdc4_c00000{word-spacing:38.246400px;}
.ws1332_c00000{word-spacing:38.254356px;}
.ws11b7_c00000{word-spacing:38.260368px;}
.ws8b8_c00000{word-spacing:38.296800px;}
.ws16dd_c00000{word-spacing:38.325600px;}
.ws19df_c00000{word-spacing:38.368800px;}
.ws13df_c00000{word-spacing:38.376000px;}
.ws1771_c00000{word-spacing:38.386620px;}
.ws1876_c00000{word-spacing:38.397600px;}
.ws1400_c00000{word-spacing:38.412000px;}
.ws2ca_c00000{word-spacing:38.448000px;}
.ws296_c00000{word-spacing:38.476800px;}
.ws989_c00000{word-spacing:38.484000px;}
.ws16dc_c00000{word-spacing:38.491200px;}
.wsdc3_c00000{word-spacing:38.498400px;}
.ws12e8_c00000{word-spacing:38.505600px;}
.ws13de_c00000{word-spacing:38.512800px;}
.wsfde_c00000{word-spacing:38.512872px;}
.ws14db_c00000{word-spacing:38.520000px;}
.ws1877_c00000{word-spacing:38.534400px;}
.ws1401_c00000{word-spacing:38.548800px;}
.wsdc5_c00000{word-spacing:38.556000px;}
.ws153e_c00000{word-spacing:38.563200px;}
.ws662_c00000{word-spacing:38.566152px;}
.ws16db_c00000{word-spacing:38.570400px;}
.ws14e3_c00000{word-spacing:38.579328px;}
.ws1975_c00000{word-spacing:38.613600px;}
.ws100b_c00000{word-spacing:38.671200px;}
.ws139a_c00000{word-spacing:38.720556px;}
.ws192d_c00000{word-spacing:38.736000px;}
.ws14da_c00000{word-spacing:38.750400px;}
.ws100a_c00000{word-spacing:38.772000px;}
.ws192e_c00000{word-spacing:38.779200px;}
.ws1835_c00000{word-spacing:38.800800px;}
.ws1467_c00000{word-spacing:38.844000px;}
.ws154d_c00000{word-spacing:38.851200px;}
.ws1900_c00000{word-spacing:38.855556px;}
.ws2c8_c00000{word-spacing:38.858400px;}
.wsa6f_c00000{word-spacing:38.865600px;}
.ws2c9_c00000{word-spacing:38.872800px;}
.ws1468_c00000{word-spacing:38.880000px;}
.ws58d_c00000{word-spacing:38.902140px;}
.wsff7_c00000{word-spacing:38.921904px;}
.ws16af_c00000{word-spacing:38.928492px;}
.wsa70_c00000{word-spacing:38.944800px;}
.ws16b0_c00000{word-spacing:38.954844px;}
.wsff6_c00000{word-spacing:38.968020px;}
.ws1709_c00000{word-spacing:38.973600px;}
.ws1976_c00000{word-spacing:38.988000px;}
.ws1540_c00000{word-spacing:39.060000px;}
.wsbfb_c00000{word-spacing:39.112956px;}
.ws16bb_c00000{word-spacing:39.124800px;}
.wsffc_c00000{word-spacing:39.182400px;}
.wsbfc_c00000{word-spacing:39.185424px;}
.wsffb_c00000{word-spacing:39.189600px;}
.wsec8_c00000{word-spacing:39.196800px;}
.ws153f_c00000{word-spacing:39.204000px;}
.ws16d9_c00000{word-spacing:39.240000px;}
.ws16ba_c00000{word-spacing:39.247200px;}
.ws16da_c00000{word-spacing:39.261600px;}
.wsff0_c00000{word-spacing:39.290832px;}
.ws16bc_c00000{word-spacing:39.420000px;}
.ws17c7_c00000{word-spacing:39.456000px;}
.wse24_c00000{word-spacing:39.520800px;}
.wsccd_c00000{word-spacing:39.542400px;}
.ws1a4e_c00000{word-spacing:39.549600px;}
.wsccb_c00000{word-spacing:39.556800px;}
.ws1a21_c00000{word-spacing:39.564000px;}
.wsccc_c00000{word-spacing:39.571200px;}
.ws17c6_c00000{word-spacing:39.578400px;}
.ws156c_c00000{word-spacing:39.583008px;}
.ws168d_c00000{word-spacing:39.607056px;}
.ws120f_c00000{word-spacing:39.633408px;}
.ws168c_c00000{word-spacing:39.653172px;}
.ws1a20_c00000{word-spacing:39.657600px;}
.ws10b0_c00000{word-spacing:39.771000px;}
.ws1a1e_c00000{word-spacing:39.787200px;}
.wsd67_c00000{word-spacing:39.801600px;}
.ws1692_c00000{word-spacing:39.823488px;}
.wsec0_c00000{word-spacing:39.830400px;}
.ws840_c00000{word-spacing:39.909600px;}
.ws8ce_c00000{word-spacing:39.916800px;}
.ws1897_c00000{word-spacing:39.943728px;}
.ws19ec_c00000{word-spacing:39.945600px;}
.wsebf_c00000{word-spacing:39.952800px;}
.ws1a1c_c00000{word-spacing:39.960000px;}
.ws1a1d_c00000{word-spacing:39.974400px;}
.ws11a4_c00000{word-spacing:40.039920px;}
.ws11a5_c00000{word-spacing:40.069980px;}
.wsf73_c00000{word-spacing:40.104000px;}
.ws10da_c00000{word-spacing:40.172184px;}
.ws1341_c00000{word-spacing:40.178196px;}
.ws14eb_c00000{word-spacing:40.190400px;}
.ws1491_c00000{word-spacing:40.318560px;}
.wsec1_c00000{word-spacing:40.320000px;}
.ws130b_c00000{word-spacing:40.328496px;}
.ws11c4_c00000{word-spacing:40.331736px;}
.wsf74_c00000{word-spacing:40.334400px;}
.ws14ec_c00000{word-spacing:40.341600px;}
.ws11c3_c00000{word-spacing:40.344912px;}
.wsfc2_c00000{word-spacing:40.382604px;}
.wse0e_c00000{word-spacing:40.528800px;}
.ws19eb_c00000{word-spacing:40.572000px;}
.ws12d6_c00000{word-spacing:40.636800px;}
.ws1827_c00000{word-spacing:40.665600px;}
.ws184b_c00000{word-spacing:40.680000px;}
.wse0f_c00000{word-spacing:40.694400px;}
.ws132c_c00000{word-spacing:40.713264px;}
.ws12d7_c00000{word-spacing:40.737600px;}
.ws1891_c00000{word-spacing:40.797432px;}
.wsf66_c00000{word-spacing:40.809600px;}
.wsf67_c00000{word-spacing:40.852800px;}
.ws11bd_c00000{word-spacing:40.860000px;}
.ws10d6_c00000{word-spacing:40.887612px;}
.ws1a17_c00000{word-spacing:40.896000px;}
.ws1370_c00000{word-spacing:40.903884px;}
.wsf65_c00000{word-spacing:40.932000px;}
.ws1856_c00000{word-spacing:40.968000px;}
.ws11f5_c00000{word-spacing:40.982400px;}
.ws19f5_c00000{word-spacing:40.996800px;}
.ws11be_c00000{word-spacing:41.004000px;}
.ws1a16_c00000{word-spacing:41.018400px;}
.ws106d_c00000{word-spacing:41.116068px;}
.ws10c7_c00000{word-spacing:41.158152px;}
.wsfd5_c00000{word-spacing:41.176188px;}
.ws114d_c00000{word-spacing:41.218272px;}
.ws1a06_c00000{word-spacing:41.227200px;}
.ws10c6_c00000{word-spacing:41.242320px;}
.ws11dd_c00000{word-spacing:41.263200px;}
.ws11de_c00000{word-spacing:41.284800px;}
.wsae0_c00000{word-spacing:41.299200px;}
.wsae1_c00000{word-spacing:41.306400px;}
.ws17cb_c00000{word-spacing:41.328000px;}
.ws1a07_c00000{word-spacing:41.335200px;}
.wsedf_c00000{word-spacing:41.349600px;}
.ws334_c00000{word-spacing:41.356800px;}
.wsa97_c00000{word-spacing:41.364000px;}
.ws335_c00000{word-spacing:41.385600px;}
.wsa96_c00000{word-spacing:41.400000px;}
.ws13ee_c00000{word-spacing:41.421600px;}
.ws175b_c00000{word-spacing:41.458284px;}
.wsdf2_c00000{word-spacing:41.464872px;}
.ws1816_c00000{word-spacing:41.472000px;}
.ws13ef_c00000{word-spacing:41.486400px;}
.ws126d_c00000{word-spacing:41.518872px;}
.ws1106_c00000{word-spacing:41.536800px;}
.ws16bd_c00000{word-spacing:41.630400px;}
.ws1175_c00000{word-spacing:41.633100px;}
.wsd0d_c00000{word-spacing:41.637600px;}
.ws742_c00000{word-spacing:41.652000px;}
.ws17c3_c00000{word-spacing:41.659200px;}
.ws741_c00000{word-spacing:41.666400px;}
.wsd0e_c00000{word-spacing:41.688000px;}
.wsd3c_c00000{word-spacing:41.709600px;}
.ws1107_c00000{word-spacing:41.731200px;}
.ws12f1_c00000{word-spacing:41.745600px;}
.ws16be_c00000{word-spacing:41.760000px;}
.ws11d4_c00000{word-spacing:41.882400px;}
.ws10a4_c00000{word-spacing:41.909400px;}
.ws15cc_c00000{word-spacing:41.925600px;}
.ws1424_c00000{word-spacing:41.997600px;}
.wsa52_c00000{word-spacing:42.033600px;}
.ws15cd_c00000{word-spacing:42.055200px;}
.ws9fe_c00000{word-spacing:42.091200px;}
.ws14c1_c00000{word-spacing:42.098400px;}
.wsa51_c00000{word-spacing:42.105600px;}
.ws9fd_c00000{word-spacing:42.112800px;}
.ws14c0_c00000{word-spacing:42.148800px;}
.ws109b_c00000{word-spacing:42.162156px;}
.wsdb7_c00000{word-spacing:42.163200px;}
.wsdb8_c00000{word-spacing:42.169788px;}
.wsfe3_c00000{word-spacing:42.336504px;}
.wsee5_c00000{word-spacing:42.393600px;}
.wsbea_c00000{word-spacing:42.444000px;}
.ws1271_c00000{word-spacing:42.450732px;}
.wsbe9_c00000{word-spacing:42.458400px;}
.ws13e7_c00000{word-spacing:42.465600px;}
.wsee6_c00000{word-spacing:42.487200px;}
.ws1046_c00000{word-spacing:42.570972px;}
.ws94f_c00000{word-spacing:42.703200px;}
.ws1824_c00000{word-spacing:42.717600px;}
.ws1825_c00000{word-spacing:42.753600px;}
.ws1823_c00000{word-spacing:42.775200px;}
.ws18b3_c00000{word-spacing:42.818400px;}
.ws950_c00000{word-spacing:42.847200px;}
.ws951_c00000{word-spacing:42.868800px;}
.ws15c2_c00000{word-spacing:42.914232px;}
.ws11a6_c00000{word-spacing:42.943716px;}
.ws11b6_c00000{word-spacing:42.955740px;}
.ws11b5_c00000{word-spacing:42.967764px;}
.ws1560_c00000{word-spacing:42.973776px;}
.ws1840_c00000{word-spacing:43.077600px;}
.wsbf1_c00000{word-spacing:43.144812px;}
.ws183f_c00000{word-spacing:43.156800px;}
.ws1255_c00000{word-spacing:43.178184px;}
.ws17e0_c00000{word-spacing:43.269984px;}
.ws1676_c00000{word-spacing:43.444800px;}
.ws158c_c00000{word-spacing:43.509600px;}
.ws1677_c00000{word-spacing:43.538400px;}
.ws114e_c00000{word-spacing:43.562952px;}
.ws772_c00000{word-spacing:43.566444px;}
.ws773_c00000{word-spacing:43.586208px;}
.ws11f2_c00000{word-spacing:43.588800px;}
.ws158b_c00000{word-spacing:43.639200px;}
.ws116f_c00000{word-spacing:43.648200px;}
.wsebb_c00000{word-spacing:43.812000px;}
.wsadc_c00000{word-spacing:43.884000px;}
.wsf6e_c00000{word-spacing:43.898400px;}
.ws11f1_c00000{word-spacing:43.905600px;}
.ws1143_c00000{word-spacing:43.959744px;}
.wsadd_c00000{word-spacing:43.999200px;}
.ws1a03_c00000{word-spacing:44.100000px;}
.ws117a_c00000{word-spacing:44.101800px;}
.ws1a04_c00000{word-spacing:44.143200px;}
.ws17f8_c00000{word-spacing:44.186400px;}
.ws1a05_c00000{word-spacing:44.215200px;}
.ws17f7_c00000{word-spacing:44.258400px;}
.ws16fd_c00000{word-spacing:44.324064px;}
.ws1144_c00000{word-spacing:44.344512px;}
.ws17d7_c00000{word-spacing:44.431200px;}
.wsde0_c00000{word-spacing:44.575200px;}
.ws1981_c00000{word-spacing:44.632800px;}
.ws17d6_c00000{word-spacing:44.654400px;}
.ws1982_c00000{word-spacing:44.704800px;}
.ws1193_c00000{word-spacing:44.735292px;}
.ws1618_c00000{word-spacing:44.827200px;}
.wsf7c_c00000{word-spacing:44.877600px;}
.wsf7a_c00000{word-spacing:44.892000px;}
.ws17c9_c00000{word-spacing:44.913600px;}
.ws17ca_c00000{word-spacing:44.949600px;}
.wsd92_c00000{word-spacing:44.964000px;}
.wsd93_c00000{word-spacing:44.985600px;}
.wsf7b_c00000{word-spacing:45.021600px;}
.wsd91_c00000{word-spacing:45.086400px;}
.ws1036_c00000{word-spacing:45.160200px;}
.ws16c8_c00000{word-spacing:45.230400px;}
.wsf44_c00000{word-spacing:45.252000px;}
.ws192b_c00000{word-spacing:45.280800px;}
.ws135b_c00000{word-spacing:45.288000px;}
.ws192a_c00000{word-spacing:45.316800px;}
.ws123f_c00000{word-spacing:45.330480px;}
.ws1008_c00000{word-spacing:45.331200px;}
.wsf45_c00000{word-spacing:45.338400px;}
.ws15ef_c00000{word-spacing:45.345600px;}
.ws135c_c00000{word-spacing:45.410400px;}
.ws1009_c00000{word-spacing:45.424800px;}
.wsec4_c00000{word-spacing:45.547200px;}
.ws189e_c00000{word-spacing:45.576972px;}
.ws1289_c00000{word-spacing:45.676800px;}
.wsaf8_c00000{word-spacing:45.705600px;}
.wsd8_c00000{word-spacing:45.712800px;}
.wsaf9_c00000{word-spacing:45.720000px;}
.ws1330_c00000{word-spacing:45.913644px;}
.ws13fb_c00000{word-spacing:46.044000px;}
.ws9e2_c00000{word-spacing:46.058400px;}
.ws1329_c00000{word-spacing:46.081980px;}
.ws58a_c00000{word-spacing:46.083060px;}
.ws9e0_c00000{word-spacing:46.094400px;}
.ws9e1_c00000{word-spacing:46.108800px;}
.ws1966_c00000{word-spacing:46.122588px;}
.ws589_c00000{word-spacing:46.129176px;}
.ws1a02_c00000{word-spacing:46.404000px;}
.ws1a01_c00000{word-spacing:46.418400px;}
.ws1863_c00000{word-spacing:46.447200px;}
.wse6c_c00000{word-spacing:46.458576px;}
.ws1864_c00000{word-spacing:46.468800px;}
.ws6c3_c00000{word-spacing:46.471752px;}
.ws16ac_c00000{word-spacing:46.484928px;}
.wsec2_c00000{word-spacing:46.562400px;}
.wsb1a_c00000{word-spacing:46.591200px;}
.ws1395_c00000{word-spacing:46.639908px;}
.ws1246_c00000{word-spacing:46.647108px;}
.wsb19_c00000{word-spacing:46.663200px;}
.ws1a9b_c00000{word-spacing:46.692000px;}
.ws1a9c_c00000{word-spacing:46.771200px;}
.ws1ab4_c00000{word-spacing:46.778400px;}
.wse9c_c00000{word-spacing:46.820916px;}
.wsec3_c00000{word-spacing:46.828800px;}
.wse9b_c00000{word-spacing:46.847268px;}
.wsb62_c00000{word-spacing:47.001600px;}
.wsb64_c00000{word-spacing:47.008800px;}
.ws181a_c00000{word-spacing:47.030400px;}
.ws1819_c00000{word-spacing:47.080800px;}
.ws155_c00000{word-spacing:47.138400px;}
.ws1454_c00000{word-spacing:47.145600px;}
.ws154_c00000{word-spacing:47.167200px;}
.wsb63_c00000{word-spacing:47.196000px;}
.wse19_c00000{word-spacing:47.209608px;}
.ws196f_c00000{word-spacing:47.230272px;}
.ws17c1_c00000{word-spacing:47.318400px;}
.ws1544_c00000{word-spacing:47.354400px;}
.ws17c2_c00000{word-spacing:47.361600px;}
.ws1545_c00000{word-spacing:47.368800px;}
.ws1ca_c00000{word-spacing:47.426400px;}
.wsf4c_c00000{word-spacing:47.448000px;}
.wsd26_c00000{word-spacing:47.455200px;}
.ws5f3_c00000{word-spacing:47.469600px;}
.ws1cb_c00000{word-spacing:47.498400px;}
.wsd25_c00000{word-spacing:47.512800px;}
.ws18dd_c00000{word-spacing:47.556000px;}
.ws18cc_c00000{word-spacing:47.577600px;}
.ws18ce_c00000{word-spacing:47.620800px;}
.ws17ef_c00000{word-spacing:47.656800px;}
.ws18cd_c00000{word-spacing:47.685600px;}
.ws18de_c00000{word-spacing:47.721600px;}
.wsa66_c00000{word-spacing:47.772000px;}
.wsdce_c00000{word-spacing:47.779200px;}
.wsf17_c00000{word-spacing:47.800800px;}
.ws1003_c00000{word-spacing:47.815200px;}
.ws12e4_c00000{word-spacing:47.829600px;}
.ws12e5_c00000{word-spacing:47.844000px;}
.wsa64_c00000{word-spacing:47.872800px;}
.ws1979_c00000{word-spacing:47.887200px;}
.ws17ee_c00000{word-spacing:47.901600px;}
.ws197a_c00000{word-spacing:47.908800px;}
.wsa65_c00000{word-spacing:47.923200px;}
.ws77f_c00000{word-spacing:47.947464px;}
.ws18a4_c00000{word-spacing:48.065940px;}
.wsd50_c00000{word-spacing:48.081600px;}
.ws1399_c00000{word-spacing:48.100248px;}
.wsedb_c00000{word-spacing:48.196800px;}
.wseda_c00000{word-spacing:48.232800px;}
.ws17e2_c00000{word-spacing:48.263688px;}
.ws195d_c00000{word-spacing:48.330468px;}
.ws11a8_c00000{word-spacing:48.558924px;}
.ws160c_c00000{word-spacing:48.645792px;}
.wsd63_c00000{word-spacing:48.686400px;}
.ws160d_c00000{word-spacing:48.691908px;}
.ws1ade_c00000{word-spacing:48.769344px;}
.wsd62_c00000{word-spacing:48.780000px;}
.wsea9_c00000{word-spacing:48.801600px;}
.ws19c6_c00000{word-spacing:48.830400px;}
.ws15c4_c00000{word-spacing:48.866400px;}
.wseaa_c00000{word-spacing:48.931200px;}
.ws15c5_c00000{word-spacing:48.945600px;}
.ws19c7_c00000{word-spacing:48.967200px;}
.ws16b2_c00000{word-spacing:49.008132px;}
.ws16b1_c00000{word-spacing:49.021308px;}
.ws116e_c00000{word-spacing:49.021848px;}
.ws187e_c00000{word-spacing:49.051908px;}
.ws2fc_c00000{word-spacing:49.320000px;}
.ws2fd_c00000{word-spacing:49.327200px;}
.ws138f_c00000{word-spacing:49.493556px;}
.ws18ac_c00000{word-spacing:49.507200px;}
.ws1375_c00000{word-spacing:49.536648px;}
.ws6d7_c00000{word-spacing:49.564800px;}
.ws1376_c00000{word-spacing:49.565376px;}
.ws1a90_c00000{word-spacing:49.629060px;}
.ws1ae4_c00000{word-spacing:49.707216px;}
.ws10d5_c00000{word-spacing:49.737276px;}
.ws18ad_c00000{word-spacing:49.867200px;}
.wsf78_c00000{word-spacing:49.903200px;}
.wsc60_c00000{word-spacing:49.932000px;}
.ws19d5_c00000{word-spacing:49.960800px;}
.ws1993_c00000{word-spacing:49.975200px;}
.wsc61_c00000{word-spacing:49.989600px;}
.ws1992_c00000{word-spacing:50.025600px;}
.ws115b_c00000{word-spacing:50.122044px;}
.wscd5_c00000{word-spacing:50.349600px;}
.ws132d_c00000{word-spacing:50.392584px;}
.ws1857_c00000{word-spacing:50.414400px;}
.ws98b_c00000{word-spacing:50.472000px;}
.ws1862_c00000{word-spacing:50.644800px;}
.ws13ce_c00000{word-spacing:50.695200px;}
.ws13b4_c00000{word-spacing:50.724000px;}
.ws1861_c00000{word-spacing:50.745600px;}
.ws131d_c00000{word-spacing:50.765328px;}
.ws98a_c00000{word-spacing:50.767200px;}
.ws13a6_c00000{word-spacing:50.940000px;}
.ws1417_c00000{word-spacing:50.951700px;}
.ws13fc_c00000{word-spacing:51.112800px;}
.ws17c8_c00000{word-spacing:51.120000px;}
.ws13a7_c00000{word-spacing:51.127200px;}
.wsfc3_c00000{word-spacing:51.180156px;}
.ws1669_c00000{word-spacing:51.350400px;}
.ws72b_c00000{word-spacing:51.472800px;}
.ws72c_c00000{word-spacing:51.501600px;}
.ws11b3_c00000{word-spacing:51.582960px;}
.ws1146_c00000{word-spacing:51.631056px;}
.ws157e_c00000{word-spacing:51.817428px;}
.wsd55_c00000{word-spacing:51.984000px;}
.wsfe6_c00000{word-spacing:52.226244px;}
.wsd54_c00000{word-spacing:52.228800px;}
.ws17d3_c00000{word-spacing:52.279200px;}
.ws17d2_c00000{word-spacing:52.545600px;}
.ws10f0_c00000{word-spacing:52.562916px;}
.ws1934_c00000{word-spacing:52.671060px;}
.wsf5c_c00000{word-spacing:52.840800px;}
.ws1577_c00000{word-spacing:52.875540px;}
.wsdcf_c00000{word-spacing:52.876800px;}
.ws15a6_c00000{word-spacing:52.905600px;}
.ws15a7_c00000{word-spacing:52.927200px;}
.ws155a_c00000{word-spacing:52.929648px;}
.ws1037_c00000{word-spacing:53.060400px;}
.ws1158_c00000{word-spacing:53.103996px;}
.ws15f4_c00000{word-spacing:53.193600px;}
.ws11e8_c00000{word-spacing:53.290332px;}
.ws11e7_c00000{word-spacing:53.303508px;}
.wsf64_c00000{word-spacing:53.553600px;}
.ws156b_c00000{word-spacing:53.657100px;}
.ws952_c00000{word-spacing:54.000000px;}
.ws953_c00000{word-spacing:54.014400px;}
.ws19ed_c00000{word-spacing:54.331200px;}
.ws19ee_c00000{word-spacing:54.352800px;}
.ws777_c00000{word-spacing:54.700164px;}
.ws776_c00000{word-spacing:54.766044px;}
.wsfd6_c00000{word-spacing:54.811404px;}
.ws1035_c00000{word-spacing:54.885600px;}
.ws1ace_c00000{word-spacing:55.202184px;}
.ws1a10_c00000{word-spacing:55.260000px;}
.ws1323_c00000{word-spacing:55.268316px;}
.ws1a0f_c00000{word-spacing:55.425600px;}
.ws127b_c00000{word-spacing:55.611000px;}
.wsfed_c00000{word-spacing:55.653084px;}
.ws11f6_c00000{word-spacing:55.699200px;}
.ws10d8_c00000{word-spacing:55.869516px;}
.ws10d9_c00000{word-spacing:55.917612px;}
.wsfe4_c00000{word-spacing:56.224224px;}
.ws156e_c00000{word-spacing:56.326428px;}
.ws10f1_c00000{word-spacing:56.398572px;}
.ws1325_c00000{word-spacing:56.590956px;}
.ws1326_c00000{word-spacing:56.987748px;}
.ws125c_c00000{word-spacing:57.240252px;}
.ws117d_c00000{word-spacing:57.781332px;}
.ws17d5_c00000{word-spacing:57.895200px;}
.ws1383_c00000{word-spacing:58.207716px;}
.ws180d_c00000{word-spacing:58.586400px;}
.ws180b_c00000{word-spacing:58.658400px;}
.ws180c_c00000{word-spacing:58.701600px;}
.wsfe1_c00000{word-spacing:58.779324px;}
.ws18c8_c00000{word-spacing:59.025816px;}
.wsecc_c00000{word-spacing:59.263200px;}
.wsecb_c00000{word-spacing:59.364000px;}
.ws1259_c00000{word-spacing:59.416596px;}
.ws1a6c_c00000{word-spacing:59.699160px;}
.ws1887_c00000{word-spacing:59.837436px;}
.ws1a69_c00000{word-spacing:59.909580px;}
.ws10b5_c00000{word-spacing:59.940000px;}
.ws1a6a_c00000{word-spacing:59.987736px;}
.ws12e0_c00000{word-spacing:60.112800px;}
.ws12df_c00000{word-spacing:60.127200px;}
.ws188e_c00000{word-spacing:60.937632px;}
.wsc94_c00000{word-spacing:60.991200px;}
.wsc95_c00000{word-spacing:61.084800px;}
.ws127a_c00000{word-spacing:61.220196px;}
.ws133a_c00000{word-spacing:61.226208px;}
.ws1149_c00000{word-spacing:61.340436px;}
.ws187c_c00000{word-spacing:61.382520px;}
.ws1385_c00000{word-spacing:61.430040px;}
.ws133b_c00000{word-spacing:61.436628px;}
.ws113b_c00000{word-spacing:61.516800px;}
.ws113c_c00000{word-spacing:61.567200px;}
.ws1956_c00000{word-spacing:61.584624px;}
.ws14d9_c00000{word-spacing:61.927200px;}
.ws14d8_c00000{word-spacing:62.028000px;}
.ws1114_c00000{word-spacing:62.362476px;}
.ws1a65_c00000{word-spacing:62.572896px;}
.ws1590_c00000{word-spacing:63.705600px;}
.ws1591_c00000{word-spacing:63.741600px;}
.ws10be_c00000{word-spacing:63.860400px;}
.ws196e_c00000{word-spacing:63.913572px;}
.ws1885_c00000{word-spacing:64.166076px;}
.ws1120_c00000{word-spacing:64.268280px;}
.ws124e_c00000{word-spacing:64.821384px;}
.ws1a6f_c00000{word-spacing:65.398536px;}
.ws167e_c00000{word-spacing:65.893176px;}
.ws167d_c00000{word-spacing:65.926116px;}
.wse90_c00000{word-spacing:66.089916px;}
.ws1ad6_c00000{word-spacing:66.240216px;}
.ws1ad9_c00000{word-spacing:66.324384px;}
.ws157a_c00000{word-spacing:66.600936px;}
.ws1ada_c00000{word-spacing:66.649032px;}
.wseb7_c00000{word-spacing:66.816000px;}
.ws1358_c00000{word-spacing:66.888000px;}
.ws13f0_c00000{word-spacing:66.895200px;}
.wseb6_c00000{word-spacing:66.945600px;}
.ws13f1_c00000{word-spacing:66.960000px;}
.ws17cf_c00000{word-spacing:67.291200px;}
.ws17ce_c00000{word-spacing:67.305600px;}
.ws1386_c00000{word-spacing:67.539528px;}
.ws18a5_c00000{word-spacing:67.779288px;}
.ws1263_c00000{word-spacing:68.127984px;}
.ws661_c00000{word-spacing:68.449320px;}
.ws10bd_c00000{word-spacing:68.558400px;}
.wsfe7_c00000{word-spacing:68.873472px;}
.ws1306_c00000{word-spacing:69.011748px;}
.ws1573_c00000{word-spacing:69.131988px;}
.ws1089_c00000{word-spacing:69.973668px;}
.ws12c_c00000{word-spacing:70.034400px;}
.ws12d_c00000{word-spacing:70.156800px;}
.ws1196_c00000{word-spacing:70.262244px;}
.ws1088_c00000{word-spacing:70.334388px;}
.wsfdb_c00000{word-spacing:70.647012px;}
.ws131f_c00000{word-spacing:70.713144px;}
.wse88_c00000{word-spacing:71.654400px;}
.wsfe2_c00000{word-spacing:72.703116px;}
.wse8b_c00000{word-spacing:73.550808px;}
.ws1415_c00000{word-spacing:73.622952px;}
.ws1895_c00000{word-spacing:75.228156px;}
.ws1574_c00000{word-spacing:75.763224px;}
.ws189a_c00000{word-spacing:76.406508px;}
.ws123b_c00000{word-spacing:77.759208px;}
.ws188c_c00000{word-spacing:78.095880px;}
.wsfe8_c00000{word-spacing:78.300288px;}
.ws1379_c00000{word-spacing:78.350832px;}
.ws1888_c00000{word-spacing:78.937560px;}
.ws1a64_c00000{word-spacing:79.827336px;}
.ws1a66_c00000{word-spacing:79.857396px;}
.ws18a3_c00000{word-spacing:80.266212px;}
.ws1184_c00000{word-spacing:81.444564px;}
.ws115a_c00000{word-spacing:81.811296px;}
.ws10db_c00000{word-spacing:81.949572px;}
.ws18bc_c00000{word-spacing:82.190052px;}
.ws10a1_c00000{word-spacing:82.582200px;}
.ws14e2_c00000{word-spacing:82.735200px;}
.ws14e1_c00000{word-spacing:82.742400px;}
.ws126e_c00000{word-spacing:83.284236px;}
.ws126f_c00000{word-spacing:83.350368px;}
.wsfb5_c00000{word-spacing:84.757176px;}
.ws1aef_c00000{word-spacing:86.073804px;}
.ws129c_c00000{word-spacing:87.853356px;}
.ws10fa_c00000{word-spacing:90.228096px;}
.ws1418_c00000{word-spacing:90.246132px;}
.ws1197_c00000{word-spacing:90.799236px;}
.ws18a8_c00000{word-spacing:90.841320px;}
.ws128d_c00000{word-spacing:91.352340px;}
.ws128c_c00000{word-spacing:91.713060px;}
.ws1a62_c00000{word-spacing:92.458548px;}
.ws1a67_c00000{word-spacing:92.470572px;}
.ws1300_c00000{word-spacing:93.246120px;}
.ws1568_c00000{word-spacing:93.330288px;}
.wsfdf_c00000{word-spacing:94.087800px;}
.wsfcf_c00000{word-spacing:94.514652px;}
.ws1a8e_c00000{word-spacing:94.586796px;}
.ws1176_c00000{word-spacing:94.791204px;}
.ws1419_c00000{word-spacing:95.662944px;}
.ws188d_c00000{word-spacing:96.624864px;}
.ws1a9f_c00000{word-spacing:96.771132px;}
.ws1a96_c00000{word-spacing:97.120296px;}
.ws143b_c00000{word-spacing:97.646472px;}
.ws128e_c00000{word-spacing:99.011628px;}
.ws1883_c00000{word-spacing:99.468540px;}
.ws1893_c00000{word-spacing:99.486576px;}
.ws13cc_c00000{word-spacing:100.065600px;}
.ws10df_c00000{word-spacing:102.005604px;}
.ws1a68_c00000{word-spacing:104.711004px;}
.ws128f_c00000{word-spacing:106.111800px;}
.ws128b_c00000{word-spacing:106.472520px;}
.wsfd1_c00000{word-spacing:107.668908px;}
.ws8b7_c00000{word-spacing:110.656800px;}
.ws1a7b_c00000{word-spacing:120.009600px;}
.ws1439_c00000{word-spacing:121.768416px;}
.ws1a6b_c00000{word-spacing:122.668848px;}
.ws1ae9_c00000{word-spacing:123.432372px;}
.ws1964_c00000{word-spacing:123.557940px;}
.ws1a63_c00000{word-spacing:125.187876px;}
.wsfbf_c00000{word-spacing:126.089676px;}
.wsfda_c00000{word-spacing:129.071628px;}
.ws1a93_c00000{word-spacing:130.231584px;}
.ws1a94_c00000{word-spacing:130.238172px;}
.ws1102_c00000{word-spacing:132.342156px;}
.ws1a89_c00000{word-spacing:134.873208px;}
.wsfc1_c00000{word-spacing:140.843124px;}
.wsc99_c00000{word-spacing:143.640000px;}
.ws1899_c00000{word-spacing:143.770968px;}
.ws140d_c00000{word-spacing:144.835092px;}
.ws1a80_c00000{word-spacing:146.988000px;}
.ws1a7d_c00000{word-spacing:146.998800px;}
.ws1aa4_c00000{word-spacing:148.981032px;}
.ws1a88_c00000{word-spacing:150.047496px;}
.wsd46_c00000{word-spacing:151.502400px;}
.ws10d7_c00000{word-spacing:152.133660px;}
.ws1562_c00000{word-spacing:154.790964px;}
.ws1a95_c00000{word-spacing:162.993708px;}
.ws1881_c00000{word-spacing:164.217780px;}
.wsfc6_c00000{word-spacing:164.818980px;}
.ws106c_c00000{word-spacing:166.063464px;}
.ws189c_c00000{word-spacing:173.199708px;}
.ws13cd_c00000{word-spacing:175.327200px;}
.ws1a8b_c00000{word-spacing:179.909100px;}
.ws1a86_c00000{word-spacing:179.933148px;}
.ws1a8a_c00000{word-spacing:180.293868px;}
.ws22_c00000{word-spacing:191.372220px;}
.ws1aa9_c00000{word-spacing:191.816208px;}
.ws6aa_c00000{word-spacing:194.284800px;}
.wsc0_c00000{word-spacing:194.313600px;}
.wscf_c00000{word-spacing:194.328000px;}
.wsbf_c00000{word-spacing:194.335200px;}
.wsce_c00000{word-spacing:194.342400px;}
.wsc5_c00000{word-spacing:194.349600px;}
.wsd3_c00000{word-spacing:194.356800px;}
.wsd0_c00000{word-spacing:194.364000px;}
.wsaa_c00000{word-spacing:194.371200px;}
.wsb9_c00000{word-spacing:194.378400px;}
.wsb1_c00000{word-spacing:194.385600px;}
.wsb2_c00000{word-spacing:194.392800px;}
.wsa9_c00000{word-spacing:194.400000px;}
.wsb4_c00000{word-spacing:194.407200px;}
.wsba_c00000{word-spacing:194.414400px;}
.wsc3_c00000{word-spacing:194.421600px;}
.wsb7_c00000{word-spacing:194.428800px;}
.wsbc_c00000{word-spacing:194.436000px;}
.wsd2_c00000{word-spacing:194.472000px;}
.ws57e_c00000{word-spacing:195.801948px;}
.ws580_c00000{word-spacing:195.815124px;}
.ws582_c00000{word-spacing:195.848064px;}
.ws23d_c00000{word-spacing:197.235684px;}
.ws54d_c00000{word-spacing:197.253720px;}
.ws556_c00000{word-spacing:197.259732px;}
.ws24c_c00000{word-spacing:197.265744px;}
.ws54c_c00000{word-spacing:197.271756px;}
.ws23e_c00000{word-spacing:197.283780px;}
.ws23c_c00000{word-spacing:197.301816px;}
.ws553_c00000{word-spacing:197.367948px;}
.ws243_c00000{word-spacing:197.379972px;}
.ws54b_c00000{word-spacing:197.391996px;}
.ws554_c00000{word-spacing:197.398008px;}
.ws1470_c00000{word-spacing:197.416044px;}
.ws548_c00000{word-spacing:197.422056px;}
.ws23b_c00000{word-spacing:197.482176px;}
.ws18c7_c00000{word-spacing:198.353916px;}
.ws1a82_c00000{word-spacing:198.806400px;}
.ws1a81_c00000{word-spacing:198.828000px;}
.ws1a7f_c00000{word-spacing:198.838800px;}
.ws129d_c00000{word-spacing:200.987172px;}
.ws1459_c00000{word-spacing:207.630432px;}
.ws145a_c00000{word-spacing:208.021212px;}
.ws1a8c_c00000{word-spacing:210.149460px;}
.ws1a87_c00000{word-spacing:210.167496px;}
.ws1290_c00000{word-spacing:212.145444px;}
.ws129a_c00000{word-spacing:214.399944px;}
.ws189d_c00000{word-spacing:215.085312px;}
.ws1a7c_c00000{word-spacing:216.853200px;}
.ws1a9e_c00000{word-spacing:219.510144px;}
.ws1aa3_c00000{word-spacing:222.389892px;}
.ws128a_c00000{word-spacing:225.558216px;}
.ws1a75_c00000{word-spacing:227.966256px;}
.ws1896_c00000{word-spacing:231.666408px;}
.ws10ef_c00000{word-spacing:236.013084px;}
.ws1458_c00000{word-spacing:237.510072px;}
.ws1a7e_c00000{word-spacing:239.193000px;}
.ws1a8f_c00000{word-spacing:239.668380px;}
.ws1a77_c00000{word-spacing:244.168848px;}
.ws1a76_c00000{word-spacing:267.926904px;}
.ws1aa8_c00000{word-spacing:273.061800px;}
.ws1413_c00000{word-spacing:288.119088px;}
.ws10dd_c00000{word-spacing:292.165164px;}
.ws129b_c00000{word-spacing:299.301408px;}
.ws1a8d_c00000{word-spacing:319.219164px;}
.ws1aea_c00000{word-spacing:325.423548px;}
.ws1aed_c00000{word-spacing:348.882372px;}
.ws1aa2_c00000{word-spacing:363.539016px;}
.ws1aa1_c00000{word-spacing:436.952160px;}
.ws1aa6_c00000{word-spacing:574.493364px;}
.ws1aa5_c00000{word-spacing:647.907228px;}
.ws1aa7_c00000{word-spacing:648.267948px;}
.ws1a9d_c00000{word-spacing:650.786976px;}
.ws141c_c00000{word-spacing:857.377332px;}
._10c_c00000{margin-left:-2043.720000px;}
._10d_c00000{margin-left:-1998.720000px;}
._181_c00000{margin-left:-718.773408px;}
._21f_c00000{margin-left:-543.959748px;}
._22b_c00000{margin-left:-498.959928px;}
._22d_c00000{margin-left:-497.517048px;}
._221_c00000{margin-left:-328.814424px;}
._21c_c00000{margin-left:-264.181320px;}
._1cc_c00000{margin-left:-238.867200px;}
._1cb_c00000{margin-left:-237.452976px;}
._84_c00000{margin-left:-211.449600px;}
._9a_c00000{margin-left:-208.915200px;}
._45_c00000{margin-left:-206.978400px;}
._88_c00000{margin-left:-205.675200px;}
._1c_c00000{margin-left:-201.341520px;}
._50_c00000{margin-left:-200.203200px;}
._73_c00000{margin-left:-198.100800px;}
._a9_c00000{margin-left:-197.001216px;}
._43_c00000{margin-left:-195.494400px;}
._6_c00000{margin-left:-194.342400px;}
._3_c00000{margin-left:-192.353616px;}
._2_c00000{margin-left:-191.162520px;}
._7_c00000{margin-left:-188.337600px;}
._49_c00000{margin-left:-187.315200px;}
._1b_c00000{margin-left:-185.630400px;}
._8a_c00000{margin-left:-184.190400px;}
._7e_c00000{margin-left:-182.577600px;}
._53_c00000{margin-left:-181.555200px;}
._34_c00000{margin-left:-176.061600px;}
._9b_c00000{margin-left:-173.865600px;}
._5d_c00000{margin-left:-171.115200px;}
._78_c00000{margin-left:-169.862400px;}
._80_c00000{margin-left:-166.737600px;}
._70_c00000{margin-left:-164.635200px;}
._7c_c00000{margin-left:-162.735120px;}
._3c_c00000{margin-left:-159.854400px;}
._a1_c00000{margin-left:-155.520000px;}
._4a_c00000{margin-left:-153.950400px;}
._e3_c00000{margin-left:-151.920000px;}
._61_c00000{margin-left:-150.004800px;}
._8e_c00000{margin-left:-147.355200px;}
._d_c00000{margin-left:-146.145600px;}
._77_c00000{margin-left:-143.697600px;}
._c_c00000{margin-left:-142.372800px;}
._7d_c00000{margin-left:-140.860800px;}
._51_c00000{margin-left:-139.838400px;}
._60_c00000{margin-left:-137.714400px;}
._2e_c00000{margin-left:-135.345600px;}
._a0_c00000{margin-left:-133.300800px;}
._9e_c00000{margin-left:-132.177600px;}
._48_c00000{margin-left:-131.155200px;}
._8f_c00000{margin-left:-130.060800px;}
._112_c00000{margin-left:-125.989740px;}
._ad_c00000{margin-left:-122.077368px;}
._b4_c00000{margin-left:-119.359332px;}
._44_c00000{margin-left:-118.080000px;}
._75_c00000{margin-left:-116.640000px;}
._94_c00000{margin-left:-115.546320px;}
._2c_c00000{margin-left:-113.004000px;}
._220_c00000{margin-left:-111.058380px;}
._36_c00000{margin-left:-109.972800px;}
._82_c00000{margin-left:-107.020800px;}
._4d_c00000{margin-left:-103.478400px;}
._21d_c00000{margin-left:-102.324492px;}
._2b_c00000{margin-left:-100.972800px;}
._b6_c00000{margin-left:-98.786916px;}
._1d_c00000{margin-left:-97.617600px;}
._b_c00000{margin-left:-96.408000px;}
._91_c00000{margin-left:-95.097600px;}
._96_c00000{margin-left:-91.440720px;}
._98_c00000{margin-left:-89.875116px;}
._32_c00000{margin-left:-88.430400px;}
._223_c00000{margin-left:-87.036372px;}
._ba_c00000{margin-left:-85.320000px;}
._30_c00000{margin-left:-81.892800px;}
._12e_c00000{margin-left:-78.480108px;}
._71_c00000{margin-left:-75.211200px;}
._7a_c00000{margin-left:-71.280000px;}
._93_c00000{margin-left:-69.595200px;}
._37_c00000{margin-left:-66.952800px;}
._4f_c00000{margin-left:-65.620800px;}
._22_c00000{margin-left:-63.439200px;}
._2a_c00000{margin-left:-61.790400px;}
._4e_c00000{margin-left:-60.336000px;}
._aa_c00000{margin-left:-58.174596px;}
._56_c00000{margin-left:-56.563200px;}
._224_c00000{margin-left:-54.622944px;}
._6f_c00000{margin-left:-51.955200px;}
._86_c00000{margin-left:-50.594400px;}
._63_c00000{margin-left:-49.075200px;}
._b0_c00000{margin-left:-45.753768px;}
._218_c00000{margin-left:-44.584632px;}
._47_c00000{margin-left:-42.840000px;}
._95_c00000{margin-left:-40.420800px;}
._1fe_c00000{margin-left:-39.124800px;}
._e_c00000{margin-left:-37.972800px;}
._1fb_c00000{margin-left:-33.654240px;}
._85_c00000{margin-left:-32.515200px;}
._b5_c00000{margin-left:-31.120020px;}
._ef_c00000{margin-left:-29.160000px;}
._209_c00000{margin-left:-27.460800px;}
._b2_c00000{margin-left:-25.488504px;}
._b1_c00000{margin-left:-23.558724px;}
._5e_c00000{margin-left:-22.075200px;}
._bb_c00000{margin-left:-20.159280px;}
._111_c00000{margin-left:-18.997668px;}
._87_c00000{margin-left:-17.697600px;}
._18_c00000{margin-left:-15.336000px;}
._a7_c00000{margin-left:-14.040000px;}
._1a_c00000{margin-left:-12.780000px;}
._59_c00000{margin-left:-11.023920px;}
._5_c00000{margin-left:-9.952560px;}
._1f_c00000{margin-left:-8.812800px;}
._4_c00000{margin-left:-7.797600px;}
._bc_c00000{margin-left:-6.084000px;}
._12_c00000{margin-left:-4.816800px;}
._bd_c00000{margin-left:-3.590316px;}
._5f_c00000{margin-left:-2.361600px;}
._1_c00000{margin-left:-1.165680px;}
._0_c00000{width:1.228716px;}
._52_c00000{width:2.260800px;}
._20a_c00000{width:3.304800px;}
._9d_c00000{width:4.320000px;}
._76_c00000{width:5.400000px;}
._8d_c00000{width:7.084800px;}
._232_c00000{width:8.121600px;}
._b8_c00000{width:9.229896px;}
._bf_c00000{width:10.476000px;}
._3f_c00000{width:11.570400px;}
._6d_c00000{width:13.320000px;}
._7b_c00000{width:14.400000px;}
._be_c00000{width:16.142400px;}
._1fd_c00000{width:18.665604px;}
._13_c00000{width:19.742400px;}
._20_c00000{width:21.024000px;}
._f7_c00000{width:22.190400px;}
._6b_c00000{width:23.297760px;}
._b9_c00000{width:24.672096px;}
._b7_c00000{width:26.509860px;}
._6c_c00000{width:27.619200px;}
._e6_c00000{width:28.699200px;}
._17_c00000{width:30.240000px;}
._54_c00000{width:31.824000px;}
._e2_c00000{width:33.120000px;}
._e4_c00000{width:34.920000px;}
._e5_c00000{width:36.720000px;}
._15_c00000{width:38.541600px;}
._6a_c00000{width:40.188960px;}
._42_c00000{width:42.624000px;}
._20b_c00000{width:44.052120px;}
._55_c00000{width:45.532800px;}
._231_c00000{width:46.742400px;}
._ac_c00000{width:48.129660px;}
._92_c00000{width:50.241600px;}
._81_c00000{width:52.848000px;}
._90_c00000{width:53.913600px;}
._99_c00000{width:55.237680px;}
._f4_c00000{width:57.959280px;}
._2f_c00000{width:59.040000px;}
._ed_c00000{width:60.422400px;}
._8_c00000{width:61.531200px;}
._20c_c00000{width:62.852292px;}
._c0_c00000{width:64.800000px;}
._33_c00000{width:66.024000px;}
._b3_c00000{width:67.926996px;}
._97_c00000{width:69.120000px;}
._113_c00000{width:70.723764px;}
._38_c00000{width:71.748000px;}
._1ff_c00000{width:73.675152px;}
._f_c00000{width:75.564000px;}
._4c_c00000{width:77.558400px;}
._39_c00000{width:78.840000px;}
._110_c00000{width:80.000280px;}
._57_c00000{width:81.144000px;}
._67_c00000{width:82.886400px;}
._83_c00000{width:83.966400px;}
._5b_c00000{width:85.147200px;}
._3b_c00000{width:86.716800px;}
._65_c00000{width:88.444080px;}
._a2_c00000{width:89.870400px;}
._58_c00000{width:91.814400px;}
._72_c00000{width:93.240000px;}
._a5_c00000{width:94.831200px;}
._ae_c00000{width:95.882796px;}
._188_c00000{width:97.437024px;}
._64_c00000{width:98.495280px;}
._46_c00000{width:100.281600px;}
._200_c00000{width:101.534400px;}
._40_c00000{width:103.881600px;}
._a3_c00000{width:106.257600px;}
._6e_c00000{width:107.352000px;}
._20d_c00000{width:108.610056px;}
._a6_c00000{width:110.095200px;}
._12c_c00000{width:111.217464px;}
._5a_c00000{width:113.133600px;}
._222_c00000{width:114.373116px;}
._8b_c00000{width:115.416000px;}
._89_c00000{width:116.769600px;}
._29_c00000{width:118.497600px;}
._21_c00000{width:119.577600px;}
._8c_c00000{width:121.096800px;}
._13d_c00000{width:122.513508px;}
._153_c00000{width:123.855264px;}
._1de_c00000{width:124.926324px;}
._3a_c00000{width:126.057600px;}
._79_c00000{width:127.281600px;}
._fa_c00000{width:128.685816px;}
._21a_c00000{width:129.770352px;}
._3e_c00000{width:131.442480px;}
._41_c00000{width:133.559280px;}
._66_c00000{width:135.488880px;}
._25_c00000{width:137.440800px;}
._69_c00000{width:139.693680px;}
._1fc_c00000{width:141.090840px;}
._152_c00000{width:142.578000px;}
._178_c00000{width:144.454176px;}
._a8_c00000{width:147.312000px;}
._68_c00000{width:148.693680px;}
._35_c00000{width:150.515280px;}
._7f_c00000{width:152.056800px;}
._16_c00000{width:153.792000px;}
._28_c00000{width:155.232000px;}
._21e_c00000{width:156.234996px;}
._5c_c00000{width:157.320000px;}
._a_c00000{width:158.371200px;}
._11_c00000{width:159.897600px;}
._131_c00000{width:161.127576px;}
._207_c00000{width:162.136188px;}
._62_c00000{width:163.260000px;}
._27_c00000{width:164.577600px;}
._26_c00000{width:165.816000px;}
._9c_c00000{width:167.133600px;}
._2d_c00000{width:168.552000px;}
._22e_c00000{width:169.554600px;}
._fb_c00000{width:170.618400px;}
._10_c00000{width:172.093680px;}
._14_c00000{width:173.828880px;}
._169_c00000{width:175.104000px;}
._31_c00000{width:176.400000px;}
._24_c00000{width:178.127280px;}
._4b_c00000{width:179.985600px;}
._1e_c00000{width:181.238400px;}
._228_c00000{width:183.508884px;}
._19_c00000{width:184.939200px;}
._23_c00000{width:186.998400px;}
._a4_c00000{width:189.518400px;}
._1c9_c00000{width:190.677168px;}
._fc_c00000{width:192.240000px;}
._74_c00000{width:193.290480px;}
._9_c00000{width:194.371200px;}
._3d_c00000{width:195.407280px;}
._af_c00000{width:196.432488px;}
._ab_c00000{width:198.123048px;}
._109_c00000{width:200.008008px;}
._119_c00000{width:203.129928px;}
._160_c00000{width:204.480000px;}
._9f_c00000{width:205.905600px;}
._149_c00000{width:206.922996px;}
._100_c00000{width:208.954296px;}
._156_c00000{width:211.691844px;}
._c8_c00000{width:213.120000px;}
._205_c00000{width:214.221600px;}
._179_c00000{width:215.260992px;}
._164_c00000{width:218.059200px;}
._166_c00000{width:219.916800px;}
._144_c00000{width:221.942952px;}
._165_c00000{width:223.466508px;}
._155_c00000{width:225.981864px;}
._204_c00000{width:227.204352px;}
._148_c00000{width:231.305508px;}
._219_c00000{width:232.452252px;}
._15c_c00000{width:234.576000px;}
._130_c00000{width:238.006692px;}
._206_c00000{width:242.158140px;}
._15f_c00000{width:244.125756px;}
._f5_c00000{width:245.548800px;}
._f6_c00000{width:247.809600px;}
._115_c00000{width:250.748712px;}
._122_c00000{width:252.356328px;}
._13c_c00000{width:253.917252px;}
._212_c00000{width:255.672324px;}
._16f_c00000{width:259.005744px;}
._15b_c00000{width:262.440000px;}
._21b_c00000{width:264.981816px;}
._f0_c00000{width:267.480000px;}
._f1_c00000{width:269.604000px;}
._e0_c00000{width:271.080000px;}
._173_c00000{width:273.309120px;}
._138_c00000{width:275.544612px;}
._150_c00000{width:278.269560px;}
._203_c00000{width:279.764352px;}
._c3_c00000{width:280.929600px;}
._140_c00000{width:282.314844px;}
._f3_c00000{width:285.710400px;}
._fd_c00000{width:289.656972px;}
._f2_c00000{width:291.636000px;}
._163_c00000{width:296.035092px;}
._15a_c00000{width:297.314244px;}
._124_c00000{width:301.095180px;}
._1f7_c00000{width:308.931648px;}
._133_c00000{width:310.292928px;}
._fe_c00000{width:313.915104px;}
._ee_c00000{width:317.260800px;}
._216_c00000{width:322.561836px;}
._217_c00000{width:326.517732px;}
._16d_c00000{width:328.643568px;}
._139_c00000{width:329.701680px;}
._ff_c00000{width:332.136972px;}
._182_c00000{width:334.065024px;}
._dd_c00000{width:335.203200px;}
._103_c00000{width:337.050000px;}
._d8_c00000{width:339.084000px;}
._1ca_c00000{width:340.992000px;}
._141_c00000{width:345.435048px;}
._114_c00000{width:347.966928px;}
._1f4_c00000{width:349.086528px;}
._1d8_c00000{width:350.123508px;}
._ea_c00000{width:355.007556px;}
._17d_c00000{width:356.956740px;}
._210_c00000{width:361.640160px;}
._d5_c00000{width:371.044800px;}
._13e_c00000{width:372.156876px;}
._11e_c00000{width:375.422400px;}
._14f_c00000{width:381.383352px;}
._22f_c00000{width:383.310684px;}
._16e_c00000{width:388.734408px;}
._1d7_c00000{width:392.990400px;}
._c7_c00000{width:400.852800px;}
._214_c00000{width:403.827408px;}
._20e_c00000{width:412.050960px;}
._208_c00000{width:413.480592px;}
._ca_c00000{width:419.464800px;}
._d4_c00000{width:421.185600px;}
._145_c00000{width:422.524188px;}
._146_c00000{width:424.262088px;}
._11d_c00000{width:425.317644px;}
._16c_c00000{width:428.679000px;}
._da_c00000{width:431.323200px;}
._174_c00000{width:432.375084px;}
._230_c00000{width:435.027600px;}
._1ef_c00000{width:436.418424px;}
._df_c00000{width:438.940800px;}
._1e8_c00000{width:442.098240px;}
._14d_c00000{width:446.241600px;}
._116_c00000{width:447.441984px;}
._22c_c00000{width:450.224352px;}
._121_c00000{width:456.923628px;}
._1f8_c00000{width:459.635184px;}
._14a_c00000{width:461.405196px;}
._cb_c00000{width:462.901680px;}
._1f3_c00000{width:464.070276px;}
._16a_c00000{width:466.048800px;}
._dc_c00000{width:467.215200px;}
._123_c00000{width:469.450836px;}
._14c_c00000{width:471.225384px;}
._1d9_c00000{width:473.686380px;}
._143_c00000{width:480.044880px;}
._d3_c00000{width:482.688000px;}
._d7_c00000{width:485.366400px;}
._c6_c00000{width:486.950400px;}
._e1_c00000{width:489.960000px;}
._177_c00000{width:491.665104px;}
._1e4_c00000{width:493.713528px;}
._d6_c00000{width:495.000000px;}
._19f_c00000{width:496.258884px;}
._14b_c00000{width:497.980728px;}
._11c_c00000{width:499.849704px;}
._183_c00000{width:504.067644px;}
._de_c00000{width:507.168000px;}
._102_c00000{width:510.930000px;}
._193_c00000{width:512.315892px;}
._1e9_c00000{width:515.472792px;}
._f9_c00000{width:517.588776px;}
._135_c00000{width:518.676264px;}
._20f_c00000{width:520.319448px;}
._1e6_c00000{width:521.897172px;}
._18d_c00000{width:522.977580px;}
._186_c00000{width:528.048864px;}
._1d4_c00000{width:529.769472px;}
._ce_c00000{width:531.007200px;}
._213_c00000{width:533.036376px;}
._cc_c00000{width:534.988800px;}
._1c8_c00000{width:539.226396px;}
._e7_c00000{width:540.855936px;}
._161_c00000{width:545.976000px;}
._cf_c00000{width:547.120800px;}
._d9_c00000{width:549.612000px;}
._185_c00000{width:553.588488px;}
._1e5_c00000{width:555.090480px;}
._14e_c00000{width:557.979156px;}
._1e0_c00000{width:559.104288px;}
._c2_c00000{width:563.054400px;}
._120_c00000{width:565.917660px;}
._f8_c00000{width:567.154152px;}
._1f9_c00000{width:568.457196px;}
._158_c00000{width:571.031244px;}
._201_c00000{width:572.659200px;}
._1ea_c00000{width:574.315116px;}
._127_c00000{width:575.694756px;}
._1c6_c00000{width:577.930788px;}
._170_c00000{width:579.368160px;}
._c4_c00000{width:585.043200px;}
._d1_c00000{width:587.145600px;}
._d2_c00000{width:590.738400px;}
._11f_c00000{width:592.428816px;}
._19c_c00000{width:598.246272px;}
._10f_c00000{width:601.154280px;}
._202_c00000{width:602.647200px;}
._180_c00000{width:603.698400px;}
._172_c00000{width:605.517948px;}
._134_c00000{width:607.424832px;}
._1ee_c00000{width:609.681300px;}
._17e_c00000{width:611.265600px;}
._18f_c00000{width:612.926136px;}
._1bb_c00000{width:614.565576px;}
._c5_c00000{width:615.571200px;}
._15e_c00000{width:616.615200px;}
._13a_c00000{width:620.658864px;}
._12d_c00000{width:624.709512px;}
._cd_c00000{width:626.558400px;}
._d0_c00000{width:627.602400px;}
._101_c00000{width:630.216972px;}
._15d_c00000{width:632.116800px;}
._136_c00000{width:634.127508px;}
._129_c00000{width:636.689088px;}
._1df_c00000{width:640.447116px;}
._1ab_c00000{width:643.590432px;}
._1aa_c00000{width:646.214256px;}
._12f_c00000{width:647.462088px;}
._17f_c00000{width:649.627200px;}
._ec_c00000{width:650.944800px;}
._1b1_c00000{width:657.174384px;}
._1e7_c00000{width:658.849848px;}
._225_c00000{width:662.070852px;}
._157_c00000{width:665.642124px;}
._db_c00000{width:670.924800px;}
._13f_c00000{width:672.675696px;}
._215_c00000{width:673.940376px;}
._1b5_c00000{width:676.168380px;}
._171_c00000{width:678.236652px;}
._175_c00000{width:679.502016px;}
._126_c00000{width:682.260768px;}
._1bd_c00000{width:684.499104px;}
._196_c00000{width:685.782288px;}
._187_c00000{width:686.944800px;}
._147_c00000{width:690.865308px;}
._1b8_c00000{width:691.954020px;}
._11b_c00000{width:693.585756px;}
._18e_c00000{width:695.622672px;}
._1bf_c00000{width:703.536588px;}
._11a_c00000{width:706.938408px;}
._1db_c00000{width:708.746112px;}
._17c_c00000{width:710.397936px;}
._159_c00000{width:716.528988px;}
._176_c00000{width:717.711264px;}
._125_c00000{width:719.502336px;}
._1a8_c00000{width:726.901632px;}
._1b9_c00000{width:730.229292px;}
._106_c00000{width:732.436740px;}
._168_c00000{width:736.301664px;}
._19a_c00000{width:740.069676px;}
._211_c00000{width:741.592080px;}
._13b_c00000{width:743.782284px;}
._10a_c00000{width:749.396592px;}
._1f6_c00000{width:753.785988px;}
._142_c00000{width:755.010144px;}
._1a4_c00000{width:758.392308px;}
._10b_c00000{width:768.436740px;}
._1c4_c00000{width:780.487128px;}
._1e2_c00000{width:782.747712px;}
._1b2_c00000{width:784.607004px;}
._17b_c00000{width:789.255612px;}
._12b_c00000{width:791.053704px;}
._137_c00000{width:796.680108px;}
._eb_c00000{width:805.819284px;}
._117_c00000{width:812.145600px;}
._1b0_c00000{width:816.430644px;}
._229_c00000{width:820.205136px;}
._18c_c00000{width:821.860092px;}
._1be_c00000{width:826.238664px;}
._128_c00000{width:828.807588px;}
._1e3_c00000{width:830.028780px;}
._18a_c00000{width:831.733344px;}
._12a_c00000{width:833.001876px;}
._226_c00000{width:835.384788px;}
._191_c00000{width:837.098496px;}
._1a1_c00000{width:838.873800px;}
._c9_c00000{width:843.120000px;}
._1b7_c00000{width:847.099584px;}
._1a5_c00000{width:849.010392px;}
._1f5_c00000{width:851.023692px;}
._1e1_c00000{width:852.204816px;}
._184_c00000{width:857.250000px;}
._227_c00000{width:859.984272px;}
._105_c00000{width:863.116740px;}
._19d_c00000{width:867.518604px;}
._167_c00000{width:879.724800px;}
._194_c00000{width:886.828608px;}
._154_c00000{width:893.000088px;}
._1f2_c00000{width:895.491360px;}
._1dc_c00000{width:901.190232px;}
._107_c00000{width:905.596740px;}
._1cd_c00000{width:908.309268px;}
._151_c00000{width:909.802872px;}
._17a_c00000{width:911.598912px;}
._1b3_c00000{width:916.906824px;}
._162_c00000{width:919.756800px;}
._1ed_c00000{width:927.760128px;}
._1fa_c00000{width:933.456600px;}
._1f0_c00000{width:934.728408px;}
._1d1_c00000{width:939.374748px;}
._190_c00000{width:943.866108px;}
._1ce_c00000{width:947.404836px;}
._199_c00000{width:961.112484px;}
._1c5_c00000{width:974.592648px;}
._118_c00000{width:982.517112px;}
._1a7_c00000{width:983.689848px;}
._1d5_c00000{width:986.379576px;}
._e9_c00000{width:995.631264px;}
._132_c00000{width:999.351360px;}
._1a3_c00000{width:1001.754972px;}
._22a_c00000{width:1013.268492px;}
._192_c00000{width:1016.626356px;}
._1c0_c00000{width:1026.010980px;}
._1a0_c00000{width:1031.579424px;}
._1dd_c00000{width:1034.113140px;}
._1ac_c00000{width:1035.481644px;}
._1c2_c00000{width:1036.898892px;}
._1ae_c00000{width:1043.407584px;}
._19e_c00000{width:1047.528252px;}
._233_c00000{width:1048.530168px;}
._198_c00000{width:1050.348384px;}
._18b_c00000{width:1053.152208px;}
._195_c00000{width:1059.462792px;}
._19b_c00000{width:1062.399780px;}
._1c7_c00000{width:1074.192624px;}
._104_c00000{width:1075.516740px;}
._1a9_c00000{width:1079.588700px;}
._1f1_c00000{width:1088.082216px;}
._189_c00000{width:1105.489836px;}
._1ec_c00000{width:1111.143984px;}
._108_c00000{width:1117.996740px;}
._1a6_c00000{width:1120.001220px;}
._1d2_c00000{width:1124.857356px;}
._10e_c00000{width:1138.577616px;}
._1d0_c00000{width:1140.989496px;}
._16b_c00000{width:1150.438536px;}
._1d6_c00000{width:1159.985268px;}
._1bc_c00000{width:1171.515708px;}
._1b4_c00000{width:1176.909588px;}
._1c1_c00000{width:1198.388556px;}
._1af_c00000{width:1215.095004px;}
._1ad_c00000{width:1222.718184px;}
._1c3_c00000{width:1227.044736px;}
._1da_c00000{width:1268.796564px;}
._1eb_c00000{width:1345.485348px;}
._197_c00000{width:1351.350792px;}
._e8_c00000{width:1386.326016px;}
._1ba_c00000{width:1389.966012px;}
._1d3_c00000{width:1444.506000px;}
._1b6_c00000{width:1474.684884px;}
._1cf_c00000{width:1556.471124px;}
._1a2_c00000{width:1565.697384px;}
._c1_c00000{width:2100.960000px;}
.fc7_c00000{color:rgb(0,0,255);}
.fc5_c00000{color:transparent;}
.fc4_c00000{color:rgb(36,64,97);}
.fc6_c00000{color:rgb(255,0,0);}
.fc2_c00000{color:rgb(210,218,227);}
.fc1_c00000{color:rgb(55,102,156);}
.fc8_c00000{color:rgb(33,29,30);}
.fc3_c00000{color:rgb(0,0,0);}
.fc0_c00000{color:rgb(255,255,255);}
.fs15_c00000{font-size:11.880000px;}
.fse_c00000{font-size:24.120000px;}
.fs13_c00000{font-size:29.880000px;}
.fs10_c00000{font-size:36.000000px;}
.fs14_c00000{font-size:42.120000px;}
.fsd_c00000{font-size:47.880000px;}
.fs12_c00000{font-size:54.000000px;}
.fsb_c00000{font-size:60.120000px;}
.fs8_c00000{font-size:63.000000px;}
.fsf_c00000{font-size:65.880000px;}
.fs6_c00000{font-size:66.000000px;}
.fs11_c00000{font-size:69.120000px;}
.fsc_c00000{font-size:72.000000px;}
.fs3_c00000{font-size:78.000000px;}
.fs7_c00000{font-size:83.880000px;}
.fs4_c00000{font-size:84.000000px;}
.fsa_c00000{font-size:96.120000px;}
.fs5_c00000{font-size:108.000000px;}
.fs9_c00000{font-size:132.120000px;}
.fs2_c00000{font-size:144.000000px;}
.fs0_c00000{font-size:180.000000px;}
.fs1_c00000{font-size:300.000000px;}
.y1b_c00000{bottom:-2431.500000px;}
.y1c_c00000{bottom:-2106.000000px;}
.y18_c00000{bottom:-1876.500000px;}
.y1a_c00000{bottom:-1749.000000px;}
.y19_c00000{bottom:-1422.000000px;}
.y0_c00000{bottom:0.000000px;}
.y1dee_c00000{bottom:3.420450px;}
.y1e22_c00000{bottom:3.420600px;}
.ye_c00000{bottom:6.000000px;}
.y10_c00000{bottom:7.500000px;}
.y20_c00000{bottom:9.000000px;}
.y2f_c00000{bottom:12.000000px;}
.y13_c00000{bottom:15.001200px;}
.y6_c00000{bottom:16.500000px;}
.y2_c00000{bottom:19.500000px;}
.y37_c00000{bottom:22.500000px;}
.y4_c00000{bottom:24.000000px;}
.y28_c00000{bottom:28.500000px;}
.y2b_c00000{bottom:33.001200px;}
.y30_c00000{bottom:34.500000px;}
.y12_c00000{bottom:39.000000px;}
.yad8_c00000{bottom:46.830450px;}
.y2046_c00000{bottom:47.190108px;}
.y2a_c00000{bottom:57.000000px;}
.y2da_c00000{bottom:64.561188px;}
.y297_c00000{bottom:65.191107px;}
.y16_c00000{bottom:66.001200px;}
.y2045_c00000{bottom:67.260450px;}
.yad7_c00000{bottom:67.530450px;}
.y15_c00000{bottom:90.000000px;}
.y25_c00000{bottom:93.001800px;}
.y2d9_c00000{bottom:100.651224px;}
.y296_c00000{bottom:103.350450px;}
.y18ad_c00000{bottom:109.740450px;}
.ye0d_c00000{bottom:110.820450px;}
.yc82_c00000{bottom:110.910249px;}
.y1943_c00000{bottom:110.910450px;}
.y15a3_c00000{bottom:111.000450px;}
.y1389_c00000{bottom:111.000729px;}
.yc2a_c00000{bottom:111.270450px;}
.yd13_c00000{bottom:111.270600px;}
.yd8b_c00000{bottom:111.720450px;}
.yc05_c00000{bottom:111.811305px;}
.y1288_c00000{bottom:111.812250px;}
.y217e_c00000{bottom:111.900450px;}
.y156a_c00000{bottom:112.170450px;}
.y1385_c00000{bottom:112.350450px;}
.y1058_c00000{bottom:112.350828px;}
.ye65_c00000{bottom:112.620450px;}
.y216f_c00000{bottom:112.621014px;}
.y1524_c00000{bottom:112.710450px;}
.y1754_c00000{bottom:112.800450px;}
.y1b4_c00000{bottom:112.890450px;}
.ye9a_c00000{bottom:112.980450px;}
.yfa3_c00000{bottom:113.340450px;}
.y1481_c00000{bottom:113.521725px;}
.ycef_c00000{bottom:113.880450px;}
.yb55_c00000{bottom:114.330450px;}
.ycd6_c00000{bottom:114.330600px;}
.y114b_c00000{bottom:114.690450px;}
.y172e_c00000{bottom:114.780600px;}
.y164a_c00000{bottom:114.870600px;}
.yc74_c00000{bottom:115.590450px;}
.y1600_c00000{bottom:115.590600px;}
.y181a_c00000{bottom:115.680540px;}
.y170c_c00000{bottom:116.040450px;}
.y20e_c00000{bottom:116.400450px;}
.y18e4_c00000{bottom:116.670450px;}
.y14f5_c00000{bottom:116.760450px;}
.y1ce_c00000{bottom:116.760600px;}
.yf51_c00000{bottom:116.851008px;}
.y2160_c00000{bottom:116.940450px;}
.y190f_c00000{bottom:117.120600px;}
.yf6c_c00000{bottom:117.210450px;}
.y1974_c00000{bottom:117.300450px;}
.yf19_c00000{bottom:117.750450px;}
.yc36_c00000{bottom:117.839523px;}
.y135e_c00000{bottom:118.020450px;}
.yffa_c00000{bottom:118.200450px;}
.y1590_c00000{bottom:118.830450px;}
.y466_c00000{bottom:119.010450px;}
.y16a5_c00000{bottom:119.100450px;}
.y13bc_c00000{bottom:119.460450px;}
.ye71_c00000{bottom:119.550099px;}
.yecc_c00000{bottom:120.091287px;}
.y294_c00000{bottom:120.180450px;}
.y10a3_c00000{bottom:120.270450px;}
.y129a_c00000{bottom:120.361935px;}
.ye4e_c00000{bottom:120.363735px;}
.y212d_c00000{bottom:120.539748px;}
.y358_c00000{bottom:120.540600px;}
.yee9_c00000{bottom:120.630729px;}
.y30f_c00000{bottom:120.810450px;}
.y1768_c00000{bottom:120.810600px;}
.yd58_c00000{bottom:120.989523px;}
.y207e_c00000{bottom:121.083240px;}
.yeb7_c00000{bottom:121.170450px;}
.y1fb6_c00000{bottom:121.350450px;}
.y11a4_c00000{bottom:121.350600px;}
.y2068_c00000{bottom:121.352124px;}
.y2117_c00000{bottom:121.359582px;}
.y34d_c00000{bottom:121.440450px;}
.y1982_c00000{bottom:121.530450px;}
.y271_c00000{bottom:121.710600px;}
.y11c8_c00000{bottom:121.890450px;}
.yd3e_c00000{bottom:122.520450px;}
.y1c9a_c00000{bottom:122.700450px;}
.y82_c00000{bottom:122.891079px;}
.y16f8_c00000{bottom:122.970450px;}
.y136f_c00000{bottom:123.060450px;}
.ye8_c00000{bottom:123.155679px;}
.y161b_c00000{bottom:123.331638px;}
.ycb2_c00000{bottom:123.511008px;}
.y1b49_c00000{bottom:123.870600px;}
.y111b_c00000{bottom:123.960600px;}
.y12e7_c00000{bottom:124.230450px;}
.y64f_c00000{bottom:124.410450px;}
.y91d_c00000{bottom:124.410600px;}
.y167_c00000{bottom:124.500450px;}
.y209d_c00000{bottom:124.680450px;}
.yc81_c00000{bottom:124.680537px;}
.y1d53_c00000{bottom:124.680600px;}
.y18d_c00000{bottom:124.860450px;}
.y52c_c00000{bottom:124.950450px;}
.y85a_c00000{bottom:125.040600px;}
.y196e_c00000{bottom:125.220450px;}
.yde9_c00000{bottom:125.310450px;}
.y1942_c00000{bottom:125.582340px;}
.y1f69_c00000{bottom:125.670450px;}
.y2148_c00000{bottom:125.760450px;}
.y1428_c00000{bottom:125.850450px;}
.y1f9_c00000{bottom:125.940450px;}
.ye36_c00000{bottom:125.940600px;}
.y24_c00000{bottom:126.001200px;}
.y702_c00000{bottom:126.030450px;}
.y68c_c00000{bottom:126.210600px;}
.y400_c00000{bottom:126.300450px;}
.y18aa_c00000{bottom:126.570729px;}
.y1af2_c00000{bottom:126.660600px;}
.y10a0_c00000{bottom:127.020450px;}
.y13f7_c00000{bottom:127.200450px;}
.y1567_c00000{bottom:127.290450px;}
.y1fe6_c00000{bottom:127.290645px;}
.y39e_c00000{bottom:127.292520px;}
.y2060_c00000{bottom:127.560450px;}
.y1248_c00000{bottom:127.650450px;}
.ye16_c00000{bottom:127.650600px;}
.y1b98_c00000{bottom:127.830450px;}
.y1ad7_c00000{bottom:127.920450px;}
.y41d_c00000{bottom:128.010450px;}
.y139_c00000{bottom:128.100450px;}
.yd2b_c00000{bottom:128.100600px;}
.y1898_c00000{bottom:128.280450px;}
.y1424_c00000{bottom:128.280729px;}
.y1fb5_c00000{bottom:128.550690px;}
.y10ee_c00000{bottom:128.640693px;}
.y16c2_c00000{bottom:128.730450px;}
.yb54_c00000{bottom:129.000960px;}
.y17ec_c00000{bottom:129.001485px;}
.ybe1_c00000{bottom:129.269685px;}
.y15c7_c00000{bottom:129.360450px;}
.yc4a_c00000{bottom:129.360600px;}
.y1055_c00000{bottom:129.450459px;}
.y1b5a_c00000{bottom:129.540600px;}
.ya97_c00000{bottom:129.630450px;}
.yacd_c00000{bottom:129.630600px;}
.y1057_c00000{bottom:129.630819px;}
.y1c99_c00000{bottom:129.632862px;}
.y1e52_c00000{bottom:129.720450px;}
.y6c0_c00000{bottom:129.810450px;}
.y216e_c00000{bottom:129.901005px;}
.y217d_c00000{bottom:129.990450px;}
.y1d22_c00000{bottom:130.170450px;}
.ya57_c00000{bottom:130.170879px;}
.ya0a_c00000{bottom:130.260450px;}
.y18f2_c00000{bottom:130.350450px;}
.y10a2_c00000{bottom:130.440450px;}
.ya27_c00000{bottom:130.530450px;}
.yfa2_c00000{bottom:130.620600px;}
.y1fe5_c00000{bottom:130.710600px;}
.yc04_c00000{bottom:130.710630px;}
.y1287_c00000{bottom:130.711575px;}
.y200f_c00000{bottom:130.712610px;}
.ydc6_c00000{bottom:130.800450px;}
.y53e_c00000{bottom:130.890450px;}
.y696_c00000{bottom:130.980450px;}
.y1f0f_c00000{bottom:131.070450px;}
.yba9_c00000{bottom:131.160450px;}
.y630_c00000{bottom:131.340450px;}
.y3bf_c00000{bottom:131.430450px;}
.y1934_c00000{bottom:131.430729px;}
.y1cc3_c00000{bottom:131.520450px;}
.yc35_c00000{bottom:131.609811px;}
.yc71_c00000{bottom:131.700450px;}
.y211c_c00000{bottom:131.701287px;}
.ya54_c00000{bottom:131.701485px;}
.y10ed_c00000{bottom:132.060648px;}
.y245_c00000{bottom:132.240600px;}
.y1d92_c00000{bottom:132.511395px;}
.y1480_c00000{bottom:132.511635px;}
.y1585_c00000{bottom:132.600450px;}
.yc6a_c00000{bottom:132.780450px;}
.y895_c00000{bottom:132.869568px;}
.y122f_c00000{bottom:132.870450px;}
.y1d15_c00000{bottom:132.870600px;}
.y794_c00000{bottom:133.050450px;}
.ye70_c00000{bottom:133.320387px;}
.y1957_c00000{bottom:133.320450px;}
.y1d2d_c00000{bottom:133.410450px;}
.y4e7_c00000{bottom:133.589811px;}
.y1da1_c00000{bottom:133.680450px;}
.y161a_c00000{bottom:133.681530px;}
.y7e0_c00000{bottom:133.770450px;}
.y5a_c00000{bottom:133.948755px;}
.y16a4_c00000{bottom:133.950450px;}
.y84c_c00000{bottom:134.130450px;}
.y1e31_c00000{bottom:134.310450px;}
.y9fa_c00000{bottom:134.400450px;}
.y975_c00000{bottom:134.402520px;}
.y1267_c00000{bottom:134.580450px;}
.yd57_c00000{bottom:134.759811px;}
.y57a_c00000{bottom:134.760450px;}
.ya1_c00000{bottom:134.950926px;}
.yc_c00000{bottom:135.000000px;}
.y17af_c00000{bottom:135.030450px;}
.y18b3_c00000{bottom:135.030600px;}
.ya72_c00000{bottom:135.121287px;}
.y114a_c00000{bottom:135.390450px;}
.ya8f_c00000{bottom:135.570450px;}
.y10ec_c00000{bottom:135.570594px;}
.y16e8_c00000{bottom:135.570729px;}
.y18e3_c00000{bottom:135.930450px;}
.y1773_c00000{bottom:136.110450px;}
.y221_c00000{bottom:136.200450px;}
.y10a_c00000{bottom:136.290450px;}
.y350_c00000{bottom:136.290600px;}
.y2028_c00000{bottom:136.380450px;}
.y1b3_c00000{bottom:136.470450px;}
.y14_c00000{bottom:136.500000px;}
.y270_c00000{bottom:136.830450px;}
.y190e_c00000{bottom:137.010450px;}
.y2065_c00000{bottom:137.100450px;}
.y1840_c00000{bottom:137.280450px;}
.ya83_c00000{bottom:137.370600px;}
.y14f4_c00000{bottom:137.460450px;}
.yf50_c00000{bottom:137.550729px;}
.y1a6b_c00000{bottom:137.640450px;}
.y1c04_c00000{bottom:137.730450px;}
.y1fe4_c00000{bottom:137.910900px;}
.y9ab_c00000{bottom:137.912250px;}
.ye33_c00000{bottom:138.000450px;}
.ybc8_c00000{bottom:138.000600px;}
.y1a85_c00000{bottom:138.001485px;}
.yc80_c00000{bottom:138.540600px;}
.y148b_c00000{bottom:138.630450px;}
.ya61_c00000{bottom:138.810450px;}
.yff9_c00000{bottom:138.900450px;}
.y10eb_c00000{bottom:138.990549px;}
.y1d73_c00000{bottom:138.991287px;}
.yfa6_c00000{bottom:139.080450px;}
.y1b12_c00000{bottom:139.170450px;}
.y1299_c00000{bottom:139.351845px;}
.ye4d_c00000{bottom:139.353645px;}
.y441_c00000{bottom:139.440450px;}
.y20f6_c00000{bottom:139.530450px;}
.y669_c00000{bottom:139.621215px;}
.y52b_c00000{bottom:139.621575px;}
.y1a14_c00000{bottom:139.710450px;}
.y2219_c00000{bottom:139.710600px;}
.y1b33_c00000{bottom:139.800450px;}
.y59f_c00000{bottom:139.980450px;}
.y1c1d_c00000{bottom:140.070600px;}
.y139e_c00000{bottom:140.160450px;}
.y20d_c00000{bottom:140.340450px;}
.y611_c00000{bottom:140.430450px;}
.y63a_c00000{bottom:140.520450px;}
.yabd_c00000{bottom:140.520729px;}
.y1d47_c00000{bottom:140.610450px;}
.yecb_c00000{bottom:140.791008px;}
.yb3b_c00000{bottom:140.970450px;}
.y1acb_c00000{bottom:141.240450px;}
.yee8_c00000{bottom:141.330450px;}
.y1ee3_c00000{bottom:141.420639px;}
.y1227_c00000{bottom:141.510450px;}
.y70e_c00000{bottom:141.690450px;}
.y8c4_c00000{bottom:141.690600px;}
.y207d_c00000{bottom:141.782961px;}
.ye0c_c00000{bottom:141.870450px;}
.y1cd_c00000{bottom:141.870600px;}
.y1f6c_c00000{bottom:142.050450px;}
.y11a3_c00000{bottom:142.050600px;}
.y1cd0_c00000{bottom:142.050729px;}
.y6d5_c00000{bottom:142.051845px;}
.y1537_c00000{bottom:142.054635px;}
.y2116_c00000{bottom:142.059303px;}
.y1bdc_c00000{bottom:142.140450px;}
.y1323_c00000{bottom:142.230450px;}
.yc29_c00000{bottom:142.320450px;}
.yd12_c00000{bottom:142.320600px;}
.y357_c00000{bottom:142.410450px;}
.y10ea_c00000{bottom:142.410504px;}
.y99f_c00000{bottom:142.500450px;}
.y11c7_c00000{bottom:142.590450px;}
.y959_c00000{bottom:142.770450px;}
.y18e2_c00000{bottom:142.860846px;}
.y1569_c00000{bottom:143.220450px;}
.y5ed_c00000{bottom:143.400450px;}
.y1d65_c00000{bottom:143.490450px;}
.ye64_c00000{bottom:143.670450px;}
.y1523_c00000{bottom:143.760450px;}
.y1753_c00000{bottom:143.850450px;}
.y1649_c00000{bottom:143.940450px;}
.y293_c00000{bottom:144.030450px;}
.y1619_c00000{bottom:144.031422px;}
.y109f_c00000{bottom:144.210600px;}
.ycb1_c00000{bottom:144.210729px;}
.y1941_c00000{bottom:144.572250px;}
.y1c03_c00000{bottom:144.660450px;}
.y1119_c00000{bottom:144.750450px;}
.ycee_c00000{bottom:144.930450px;}
.y18f1_c00000{bottom:145.022340px;}
.y497_c00000{bottom:145.110450px;}
.y72c_c00000{bottom:145.110600px;}
.yc34_c00000{bottom:145.380099px;}
.y17d1_c00000{bottom:145.380450px;}
.ycd5_c00000{bottom:145.380600px;}
.y1f47_c00000{bottom:145.650942px;}
.ya09_c00000{bottom:145.740450px;}
.y10a1_c00000{bottom:145.920450px;}
.y172d_c00000{bottom:146.010600px;}
.y12b5_c00000{bottom:146.190450px;}
.y2003_c00000{bottom:146.280450px;}
.y39d_c00000{bottom:146.282430px;}
.y1981_c00000{bottom:146.282610px;}
.y21c2_c00000{bottom:146.460450px;}
.y68b_c00000{bottom:146.463825px;}
.y2c7_c00000{bottom:146.640450px;}
.y2d8_c00000{bottom:146.640600px;}
.y1054_c00000{bottom:146.730450px;}
.y810_c00000{bottom:146.910600px;}
.y1c98_c00000{bottom:146.912853px;}
.y1c29_c00000{bottom:147.000450px;}
.y81_c00000{bottom:147.010773px;}
.y170b_c00000{bottom:147.090450px;}
.ye6f_c00000{bottom:147.180450px;}
.y216d_c00000{bottom:147.180996px;}
.y18a9_c00000{bottom:147.270450px;}
.ye7_c00000{bottom:147.275373px;}
.y4e6_c00000{bottom:147.360099px;}
.y14b5_c00000{bottom:147.450450px;}
.y1fb4_c00000{bottom:147.540600px;}
.y8b4_c00000{bottom:147.900450px;}
.yb53_c00000{bottom:147.990870px;}
.y17eb_c00000{bottom:147.991395px;}
.y1d2c_c00000{bottom:147.991575px;}
.y166_c00000{bottom:148.260450px;}
.y1973_c00000{bottom:148.350450px;}
.y1b59_c00000{bottom:148.530450px;}
.yd56_c00000{bottom:148.619874px;}
.ya46_c00000{bottom:148.620450px;}
.yf18_c00000{bottom:148.800450px;}
.y1f0e_c00000{bottom:148.890450px;}
.y1423_c00000{bottom:148.980450px;}
.y135d_c00000{bottom:149.070450px;}
.y73d_c00000{bottom:149.160450px;}
.y2195_c00000{bottom:149.340450px;}
.yc03_c00000{bottom:149.700540px;}
.y1286_c00000{bottom:149.701485px;}
.y200e_c00000{bottom:149.702520px;}
.y1f8_c00000{bottom:149.790450px;}
.y18c_c00000{bottom:149.970450px;}
.y465_c00000{bottom:150.060450px;}
.y567_c00000{bottom:150.330450px;}
.y3be_c00000{bottom:150.420450px;}
.y13bb_c00000{bottom:150.510450px;}
.ya53_c00000{bottom:150.600810px;}
.y517_c00000{bottom:150.870450px;}
.y758_c00000{bottom:150.870600px;}
.y203c_c00000{bottom:151.410450px;}
.y1d91_c00000{bottom:151.410720px;}
.y147f_c00000{bottom:151.410960px;}
.y16a3_c00000{bottom:151.410999px;}
.y15f7_c00000{bottom:151.680450px;}
.y30e_c00000{bottom:151.860450px;}
.yc2_c00000{bottom:151.860600px;}
.y138_c00000{bottom:152.040450px;}
.y1a9d_c00000{bottom:152.040600px;}
.y1819_c00000{bottom:152.130450px;}
.yeb6_c00000{bottom:152.220450px;}
.y4c5_c00000{bottom:152.400450px;}
.y211b_c00000{bottom:152.401008px;}
.y34c_c00000{bottom:152.490450px;}
.y10e9_c00000{bottom:152.850450px;}
.yb0c_c00000{bottom:153.120450px;}
.y1a43_c00000{bottom:153.211485px;}
.ya60_c00000{bottom:153.391395px;}
.y974_c00000{bottom:153.392430px;}
.y7fd_c00000{bottom:153.480450px;}
.yd3d_c00000{bottom:153.570450px;}
.y7bc_c00000{bottom:153.660450px;}
.y77b_c00000{bottom:153.750450px;}
.y16c1_c00000{bottom:154.020450px;}
.y136e_c00000{bottom:154.110450px;}
.y1772_c00000{bottom:154.380450px;}
.y1618_c00000{bottom:154.381314px;}
.yfa5_c00000{bottom:154.560450px;}
.y894_c00000{bottom:154.649496px;}
.y1b48_c00000{bottom:154.920450px;}
.y12e6_c00000{bottom:155.280450px;}
.ya8e_c00000{bottom:155.370450px;}
.y5b7_c00000{bottom:155.460450px;}
.y610_c00000{bottom:155.460600px;}
.ye38_c00000{bottom:155.641116px;}
.y1d21_c00000{bottom:155.730450px;}
.y1d52_c00000{bottom:155.730600px;}
.ya71_c00000{bottom:155.821008px;}
.y244_c00000{bottom:156.000600px;}
.y1146_c00000{bottom:156.181788px;}
.y16e7_c00000{bottom:156.270450px;}
.yde8_c00000{bottom:156.360450px;}
.y1dc6_c00000{bottom:156.540600px;}
.y1f68_c00000{bottom:156.720450px;}
.y2147_c00000{bottom:156.810450px;}
.y9aa_c00000{bottom:156.811575px;}
.y1fe3_c00000{bottom:156.900810px;}
.y2ac_c00000{bottom:156.990450px;}
.yb17_c00000{bottom:156.990600px;}
.y1a84_c00000{bottom:156.991395px;}
.y701_c00000{bottom:157.080450px;}
.ydc5_c00000{bottom:157.172403px;}
.ya82_c00000{bottom:157.260450px;}
.y26f_c00000{bottom:157.530450px;}
.y1af1_c00000{bottom:157.710600px;}
.y1584_c00000{bottom:157.800450px;}
.y14f3_c00000{bottom:158.160450px;}
.yf4f_c00000{bottom:158.250450px;}
.y1566_c00000{bottom:158.340450px;}
.y1298_c00000{bottom:158.341755px;}
.ye4c_c00000{bottom:158.343555px;}
.y1648_c00000{bottom:158.520450px;}
.y1c46_c00000{bottom:158.610450px;}
.y668_c00000{bottom:158.611125px;}
.y52a_c00000{bottom:158.611485px;}
.y1247_c00000{bottom:158.700450px;}
.y1bd0_c00000{bottom:158.700600px;}
.y1b97_c00000{bottom:158.880450px;}
.y1ad6_c00000{bottom:158.970450px;}
.y23_c00000{bottom:159.000600px;}
.y41c_c00000{bottom:159.060450px;}
.yd73_c00000{bottom:159.150450px;}
.yd2a_c00000{bottom:159.150600px;}
.yc33_c00000{bottom:159.240162px;}
.yee7_c00000{bottom:159.240450px;}
.y1897_c00000{bottom:159.330450px;}
.y1322_c00000{bottom:159.510450px;}
.y59_c00000{bottom:159.599259px;}
.yff8_c00000{bottom:159.600450px;}
.y20d1_c00000{bottom:159.600600px;}
.y1d72_c00000{bottom:159.691008px;}
.y1a56_c00000{bottom:159.780450px;}
.y18e1_c00000{bottom:160.050657px;}
.y1dcb_c00000{bottom:160.230450px;}
.y15c6_c00000{bottom:160.410450px;}
.yc49_c00000{bottom:160.410600px;}
.y1b2_c00000{bottom:160.500450px;}
.ya96_c00000{bottom:160.680450px;}
.yacc_c00000{bottom:160.680600px;}
.y1e51_c00000{bottom:160.770450px;}
.y20f0_c00000{bottom:160.860450px;}
.y8fe_c00000{bottom:160.950600px;}
.y4e5_c00000{bottom:161.130387px;}
.y639_c00000{bottom:161.220450px;}
.ya08_c00000{bottom:161.310450px;}
.y109e_c00000{bottom:161.490450px;}
.yeca_c00000{bottom:161.490729px;}
.ya26_c00000{bottom:161.580450px;}
.ye6e_c00000{bottom:161.760810px;}
.y1c02_c00000{bottom:161.850450px;}
.y53d_c00000{bottom:161.940450px;}
.y1118_c00000{bottom:162.030450px;}
.y20f5_c00000{bottom:162.120600px;}
.y3ff_c00000{bottom:162.210450px;}
.yd55_c00000{bottom:162.390162px;}
.y62f_c00000{bottom:162.390450px;}
.y146d_c00000{bottom:162.481008px;}
.y207c_c00000{bottom:162.482682px;}
.y1cc2_c00000{bottom:162.570450px;}
.y328_c00000{bottom:162.750450px;}
.y11a2_c00000{bottom:162.750600px;}
.y6d4_c00000{bottom:162.751566px;}
.y1536_c00000{bottom:162.754356px;}
.y2115_c00000{bottom:162.759024px;}
.y1bdb_c00000{bottom:162.840450px;}
.y769_c00000{bottom:163.020450px;}
.y11ef_c00000{bottom:163.290450px;}
.y944_c00000{bottom:163.290600px;}
.y1b11_c00000{bottom:163.470450px;}
.y1940_c00000{bottom:163.562160px;}
.y1771_c00000{bottom:163.562430px;}
.yc69_c00000{bottom:163.830450px;}
.y1056_c00000{bottom:163.920261px;}
.yc7f_c00000{bottom:163.920450px;}
.y18f0_c00000{bottom:163.921665px;}
.y793_c00000{bottom:164.100450px;}
.y1c97_c00000{bottom:164.102664px;}
.y20c_c00000{bottom:164.190450px;}
.y1956_c00000{bottom:164.370450px;}
.y216c_c00000{bottom:164.370807px;}
.y1f46_c00000{bottom:164.640825px;}
.ye83_c00000{bottom:164.730450px;}
.y1617_c00000{bottom:164.731206px;}
.y7df_c00000{bottom:164.820450px;}
.ycb0_c00000{bottom:164.910450px;}
.yfa1_c00000{bottom:165.090450px;}
.y84b_c00000{bottom:165.180450px;}
.y1e8a_c00000{bottom:165.190962px;}
.y39c_c00000{bottom:165.272340px;}
.y1980_c00000{bottom:165.272520px;}
.y1558_c00000{bottom:165.360600px;}
.y9f9_c00000{bottom:165.450450px;}
.y68a_c00000{bottom:165.453735px;}
.y1266_c00000{bottom:165.630450px;}
.y9ec_c00000{bottom:165.720780px;}
.y579_c00000{bottom:165.810450px;}
.y17ae_c00000{bottom:166.080450px;}
.y18b2_c00000{bottom:166.080600px;}
.y9d0_c00000{bottom:166.260450px;}
.y3e4_c00000{bottom:166.530450px;}
.y1bb5_c00000{bottom:166.620600px;}
.y19fd_c00000{bottom:166.980450px;}
.y1cc_c00000{bottom:166.980600px;}
.yb52_c00000{bottom:166.980780px;}
.y17ea_c00000{bottom:166.981305px;}
.y1d2b_c00000{bottom:166.981485px;}
.y158a_c00000{bottom:167.070450px;}
.y1f0d_c00000{bottom:167.070846px;}
.y220_c00000{bottom:167.250450px;}
.y109_c00000{bottom:167.340450px;}
.y153b_c00000{bottom:167.340600px;}
.y1b58_c00000{bottom:167.520450px;}
.y292_c00000{bottom:167.790450px;}
.y190d_c00000{bottom:168.060450px;}
.y183f_c00000{bottom:168.330450px;}
.y19d4_c00000{bottom:168.510450px;}
.y16a2_c00000{bottom:168.600969px;}
.yc02_c00000{bottom:168.690450px;}
.y1285_c00000{bottom:168.691395px;}
.y19a6_c00000{bottom:168.691575px;}
.y200d_c00000{bottom:168.692430px;}
.yc28_c00000{bottom:168.780450px;}
.y695_c00000{bottom:168.960600px;}
.yab8_c00000{bottom:169.050450px;}
.ybc7_c00000{bottom:169.050600px;}
.y1eb6_c00000{bottom:169.230459px;}
.y3bd_c00000{bottom:169.410450px;}
.ya52_c00000{bottom:169.590720px;}
.y1568_c00000{bottom:169.680450px;}
.y1469_c00000{bottom:169.770450px;}
.y1384_c00000{bottom:169.860450px;}
.y1d77_c00000{bottom:169.950600px;}
.y10e8_c00000{bottom:170.040600px;}
.ye63_c00000{bottom:170.130450px;}
.y1d90_c00000{bottom:170.400630px;}
.y147e_c00000{bottom:170.400870px;}
.y440_c00000{bottom:170.490450px;}
.y168f_c00000{bottom:170.580450px;}
.y1a13_c00000{bottom:170.760450px;}
.y1b32_c00000{bottom:170.850450px;}
.y59e_c00000{bottom:171.030450px;}
.y1c1c_c00000{bottom:171.120600px;}
.y139d_c00000{bottom:171.210450px;}
.y2194_c00000{bottom:171.210600px;}
.y80_c00000{bottom:171.220638px;}
.y19a3_c00000{bottom:171.390450px;}
.ye6_c00000{bottom:171.485238px;}
.y1d46_c00000{bottom:171.660450px;}
.y165_c00000{bottom:171.930450px;}
.yb3a_c00000{bottom:172.020450px;}
.y1a42_c00000{bottom:172.110810px;}
.y1aca_c00000{bottom:172.290450px;}
.ya5f_c00000{bottom:172.381305px;}
.y973_c00000{bottom:172.382340px;}
.y217c_c00000{bottom:172.470450px;}
.y1226_c00000{bottom:172.560450px;}
.y70d_c00000{bottom:172.740450px;}
.y8c3_c00000{bottom:172.740600px;}
.ye0b_c00000{bottom:172.920450px;}
.yc32_c00000{bottom:173.010450px;}
.y211a_c00000{bottom:173.100729px;}
.yf4d_c00000{bottom:173.280450px;}
.y120c_c00000{bottom:173.370450px;}
.y8fc_c00000{bottom:173.370600px;}
.y1145_c00000{bottom:173.461779px;}
.y1f7_c00000{bottom:173.550450px;}
.y11c6_c00000{bottom:173.640450px;}
.y215f_c00000{bottom:173.730450px;}
.y958_c00000{bottom:173.820450px;}
.y15f6_c00000{bottom:174.180648px;}
.y122e_c00000{bottom:174.270450px;}
.y1dae_c00000{bottom:174.270600px;}
.y83a_c00000{bottom:174.450450px;}
.y5ec_c00000{bottom:174.450600px;}
.y1d64_c00000{bottom:174.540600px;}
.yf01_c00000{bottom:174.720450px;}
.y1522_c00000{bottom:174.810450px;}
.y1752_c00000{bottom:174.900450px;}
.y4e4_c00000{bottom:174.990450px;}
.y18b_c00000{bottom:175.080450px;}
.y1616_c00000{bottom:175.081098px;}
.y8da_c00000{bottom:175.530450px;}
.y212c_c00000{bottom:175.710600px;}
.y9a9_c00000{bottom:175.801485px;}
.y60f_c00000{bottom:175.801845px;}
.y137_c00000{bottom:175.890450px;}
.y1fe2_c00000{bottom:175.890720px;}
.yced_c00000{bottom:175.980450px;}
.y1a83_c00000{bottom:175.981305px;}
.y496_c00000{bottom:176.160450px;}
.y72b_c00000{bottom:176.160600px;}
.y17d0_c00000{bottom:176.430450px;}
.ycd4_c00000{bottom:176.430600px;}
.y893_c00000{bottom:176.520009px;}
.ya70_c00000{bottom:176.520729px;}
.y1321_c00000{bottom:176.700600px;}
.ya07_c00000{bottom:176.790450px;}
.y90b_c00000{bottom:176.790600px;}
.y26e_c00000{bottom:176.880450px;}
.yac4_c00000{bottom:176.970450px;}
.y172c_c00000{bottom:177.060600px;}
.y2002_c00000{bottom:177.330450px;}
.y18e0_c00000{bottom:177.330648px;}
.y1297_c00000{bottom:177.331665px;}
.ye4b_c00000{bottom:177.333465px;}
.y2fe_c00000{bottom:177.420450px;}
.y529_c00000{bottom:177.510810px;}
.y2be_c00000{bottom:177.690450px;}
.y2d7_c00000{bottom:177.690600px;}
.y19d3_c00000{bottom:177.783885px;}
.ydc4_c00000{bottom:177.872124px;}
.y80f_c00000{bottom:177.960600px;}
.y1c28_c00000{bottom:178.050450px;}
.y170a_c00000{bottom:178.140450px;}
.ye15_c00000{bottom:178.230450px;}
.y9cf_c00000{bottom:178.231485px;}
.y14b4_c00000{bottom:178.500450px;}
.y729_c00000{bottom:178.770450px;}
.y14f2_c00000{bottom:178.860450px;}
.y7bb_c00000{bottom:178.950450px;}
.y34b_c00000{bottom:178.950600px;}
.y1c01_c00000{bottom:179.130450px;}
.yf6b_c00000{bottom:179.310450px;}
.y1972_c00000{bottom:179.400450px;}
.ya45_c00000{bottom:179.670450px;}
.yf17_c00000{bottom:179.850450px;}
.y243_c00000{bottom:179.850600px;}
.y2027_c00000{bottom:180.030450px;}
.y37d_c00000{bottom:180.120600px;}
.y10e2_c00000{bottom:180.210600px;}
.yff7_c00000{bottom:180.300450px;}
.y1dc5_c00000{bottom:180.390450px;}
.y1d71_c00000{bottom:180.390729px;}
.y1b10_c00000{bottom:180.750450px;}
.ye6d_c00000{bottom:180.750720px;}
.y1cf3_c00000{bottom:180.751395px;}
.y6bf_c00000{bottom:181.020450px;}
.y464_c00000{bottom:181.110450px;}
.y1c45_c00000{bottom:181.290450px;}
.y566_c00000{bottom:181.380450px;}
.y1c96_c00000{bottom:181.382655px;}
.y13ba_c00000{bottom:181.560450px;}
.y216b_c00000{bottom:181.650798px;}
.y516_c00000{bottom:181.920450px;}
.y1046_c00000{bottom:181.920468px;}
.y1053_c00000{bottom:182.101026px;}
.yec9_c00000{bottom:182.190450px;}
.yfa0_c00000{bottom:182.370600px;}
.y203b_c00000{bottom:182.460450px;}
.y193f_c00000{bottom:182.461485px;}
.y1770_c00000{bottom:182.461755px;}
.y159c_c00000{bottom:182.730450px;}
.y30d_c00000{bottom:182.910450px;}
.yc1_c00000{bottom:182.910600px;}
.y18ef_c00000{bottom:182.911575px;}
.yee6_c00000{bottom:183.000450px;}
.y6e1_c00000{bottom:183.090450px;}
.y146c_c00000{bottom:183.180729px;}
.y207b_c00000{bottom:183.182403px;}
.yeb5_c00000{bottom:183.270450px;}
.y4c4_c00000{bottom:183.450450px;}
.y11a1_c00000{bottom:183.450600px;}
.y6d3_c00000{bottom:183.451287px;}
.y1535_c00000{bottom:183.454077px;}
.y2114_c00000{bottom:183.458745px;}
.y1bda_c00000{bottom:183.540450px;}
.y1f45_c00000{bottom:183.540717px;}
.ya81_c00000{bottom:183.720450px;}
.y2209_c00000{bottom:183.900450px;}
.y11ee_c00000{bottom:183.990450px;}
.yb0b_c00000{bottom:184.170450px;}
.y1b1_c00000{bottom:184.260450px;}
.y1f0c_c00000{bottom:184.260657px;}
.y39b_c00000{bottom:184.262250px;}
.y197f_c00000{bottom:184.262430px;}
.y689_c00000{bottom:184.443645px;}
.yd3c_c00000{bottom:184.620450px;}
.y9eb_c00000{bottom:184.710690px;}
.y77a_c00000{bottom:184.800450px;}
.y16c0_c00000{bottom:185.070450px;}
.y136d_c00000{bottom:185.160450px;}
.y58_c00000{bottom:185.249763px;}
.yc68_c00000{bottom:185.340450px;}
.y2099_c00000{bottom:185.430450px;}
.y1615_c00000{bottom:185.430990px;}
.yfa4_c00000{bottom:185.610450px;}
.y16a1_c00000{bottom:185.880819px;}
.y1b47_c00000{bottom:185.970450px;}
.yb51_c00000{bottom:185.970690px;}
.y17e9_c00000{bottom:185.971215px;}
.y1d2a_c00000{bottom:185.971395px;}
.y356_c00000{bottom:186.060450px;}
.y1fb3_c00000{bottom:186.150450px;}
.y12e5_c00000{bottom:186.330450px;}
.y1b57_c00000{bottom:186.420450px;}
.y5b6_c00000{bottom:186.510450px;}
.y91c_c00000{bottom:186.510600px;}
.y19fc_c00000{bottom:186.780450px;}
.y1d51_c00000{bottom:186.780600px;}
.yda9_c00000{bottom:186.870600px;}
.ya95_c00000{bottom:187.140450px;}
.y10e7_c00000{bottom:187.320450px;}
.yde7_c00000{bottom:187.410450px;}
.y1647_c00000{bottom:187.590450px;}
.yc01_c00000{bottom:187.680450px;}
.y1284_c00000{bottom:187.681305px;}
.y19a5_c00000{bottom:187.681485px;}
.y200c_c00000{bottom:187.682340px;}
.y1f67_c00000{bottom:187.770450px;}
.y694_c00000{bottom:187.860450px;}
.y8fb_c00000{bottom:187.860720px;}
.y20b_c00000{bottom:187.950450px;}
.y2ab_c00000{bottom:188.040450px;}
.y2ca_c00000{bottom:188.040600px;}
.y700_c00000{bottom:188.130450px;}
.y768_c00000{bottom:188.310450px;}
.y3bc_c00000{bottom:188.400450px;}
.ya51_c00000{bottom:188.580630px;}
.y1af0_c00000{bottom:188.760600px;}
.y1583_c00000{bottom:188.850450px;}
.yab7_c00000{bottom:188.940450px;}
.yb_c00000{bottom:189.000000px;}
.y13f6_c00000{bottom:189.300450px;}
.y1565_c00000{bottom:189.390450px;}
.y1d8f_c00000{bottom:189.390540px;}
.y147d_c00000{bottom:189.390780px;}
.y1265_c00000{bottom:189.480450px;}
.y205f_c00000{bottom:189.660450px;}
.y4e3_c00000{bottom:189.661125px;}
.y943_c00000{bottom:189.750450px;}
.y1bcf_c00000{bottom:189.750600px;}
.y1a9c_c00000{bottom:189.930450px;}
.y1ad5_c00000{bottom:190.020450px;}
.y41b_c00000{bottom:190.110450px;}
.yd72_c00000{bottom:190.200450px;}
.ycaf_c00000{bottom:190.200600px;}
.y1896_c00000{bottom:190.380450px;}
.yf4c_c00000{bottom:190.560450px;}
.y20d0_c00000{bottom:190.650600px;}
.y1144_c00000{bottom:190.651590px;}
.y1a55_c00000{bottom:190.830450px;}
.y164_c00000{bottom:191.100450px;}
.y1a41_c00000{bottom:191.100720px;}
.ya5e_c00000{bottom:191.371215px;}
.y972_c00000{bottom:191.372250px;}
.y17c4_c00000{bottom:191.460450px;}
.yc48_c00000{bottom:191.460600px;}
.y15f5_c00000{bottom:191.460639px;}
.y212b_c00000{bottom:191.550450px;}
.y291_c00000{bottom:191.640450px;}
.yad1_c00000{bottom:191.730450px;}
.yacb_c00000{bottom:191.730600px;}
.y3e3_c00000{bottom:191.820450px;}
.y20ef_c00000{bottom:191.910450px;}
.y22_c00000{bottom:192.000000px;}
.y1cb_c00000{bottom:192.000600px;}
.y217b_c00000{bottom:192.270450px;}
.ya06_c00000{bottom:192.360450px;}
.y1c66_c00000{bottom:192.540450px;}
.ya25_c00000{bottom:192.630450px;}
.y20f4_c00000{bottom:193.170600px;}
.y3fe_c00000{bottom:193.260450px;}
.y62e_c00000{bottom:193.440450px;}
.y21f_c00000{bottom:193.620600px;}
.y2a8_c00000{bottom:193.800450px;}
.y1320_c00000{bottom:193.980450px;}
.yc27_c00000{bottom:194.070450px;}
.y667_c00000{bottom:194.250450px;}
.y11c5_c00000{bottom:194.340450px;}
.y18df_c00000{bottom:194.610639px;}
.y1ee2_c00000{bottom:194.610666px;}
.y9a8_c00000{bottom:194.791395px;}
.y60e_c00000{bottom:194.791755px;}
.y911_c00000{bottom:194.880450px;}
.y1a82_c00000{bottom:194.880630px;}
.yc7e_c00000{bottom:194.970450px;}
.y792_c00000{bottom:195.150450px;}
.y1383_c00000{bottom:195.150600px;}
.y7f_c00000{bottom:195.340332px;}
.ye62_c00000{bottom:195.420450px;}
.ye32_c00000{bottom:195.510450px;}
.ye5_c00000{bottom:195.604932px;}
.ye82_c00000{bottom:195.780450px;}
.y10e1_c00000{bottom:195.780600px;}
.y1614_c00000{bottom:195.780882px;}
.y7de_c00000{bottom:195.870450px;}
.y8e7_c00000{bottom:196.230450px;}
.y1117_c00000{bottom:196.320450px;}
.y1296_c00000{bottom:196.321575px;}
.ye4a_c00000{bottom:196.323375px;}
.y1c00_c00000{bottom:196.410450px;}
.y1557_c00000{bottom:196.410600px;}
.y9f8_c00000{bottom:196.500450px;}
.y528_c00000{bottom:196.500720px;}
.y109d_c00000{bottom:196.680450px;}
.y19d2_c00000{bottom:196.773795px;}
.y578_c00000{bottom:196.860450px;}
.y17ad_c00000{bottom:197.130450px;}
.y18b1_c00000{bottom:197.130600px;}
.ya6f_c00000{bottom:197.220450px;}
.y9ce_c00000{bottom:197.221395px;}
.y1463_c00000{bottom:197.400450px;}
.y9f2_c00000{bottom:197.490450px;}
.y1f6_c00000{bottom:197.580450px;}
.y1bb4_c00000{bottom:197.670450px;}
.y1b0f_c00000{bottom:197.940450px;}
.ya80_c00000{bottom:198.211575px;}
.y892_c00000{bottom:198.299937px;}
.y868_c00000{bottom:198.390387px;}
.y108_c00000{bottom:198.390450px;}
.y175c_c00000{bottom:198.390600px;}
.y1c95_c00000{bottom:198.482286px;}
.ydc3_c00000{bottom:198.571845px;}
.y1e78_c00000{bottom:198.840450px;}
.y216a_c00000{bottom:198.930789px;}
.y190c_c00000{bottom:199.110450px;}
.y1045_c00000{bottom:199.200459px;}
.y70c_c00000{bottom:199.200600px;}
.y2218_c00000{bottom:199.290600px;}
.y183e_c00000{bottom:199.380450px;}
.y80e_c00000{bottom:199.380558px;}
.y1052_c00000{bottom:199.381017px;}
.y14f1_c00000{bottom:199.560450px;}
.y136_c00000{bottom:199.650450px;}
.y1a6a_c00000{bottom:199.740450px;}
.ye6c_c00000{bottom:199.740630px;}
.y1cf2_c00000{bottom:199.741305px;}
.yd11_c00000{bottom:199.830450px;}
.y18a_c00000{bottom:200.100450px;}
.ybc6_c00000{bottom:200.100600px;}
.yff6_c00000{bottom:201.000450px;}
.y1d70_c00000{bottom:201.090450px;}
.ya44_c00000{bottom:201.180450px;}
.y1264_c00000{bottom:201.450720px;}
.y193e_c00000{bottom:201.451395px;}
.y176f_c00000{bottom:201.451665px;}
.y1f25_c00000{bottom:201.540450px;}
.y43f_c00000{bottom:201.540600px;}
.y1f0b_c00000{bottom:201.540648px;}
.yb78_c00000{bottom:201.630450px;}
.y2026_c00000{bottom:201.810450px;}
.ybe0_c00000{bottom:201.900450px;}
.y18ee_c00000{bottom:201.901485px;}
.y59d_c00000{bottom:202.080450px;}
.y1646_c00000{bottom:202.170450px;}
.y6db_c00000{bottom:202.440450px;}
.y6be_c00000{bottom:202.530600px;}
.y91f_c00000{bottom:202.620600px;}
.y1d45_c00000{bottom:202.710450px;}
.y755_c00000{bottom:202.890450px;}
.yb39_c00000{bottom:203.070450px;}
.y2203_c00000{bottom:203.160450px;}
.y16a0_c00000{bottom:203.160999px;}
.y39a_c00000{bottom:203.161575px;}
.y197e_c00000{bottom:203.161755px;}
.y1ac9_c00000{bottom:203.340450px;}
.y1e89_c00000{bottom:203.350305px;}
.y688_c00000{bottom:203.433555px;}
.ye14_c00000{bottom:203.610450px;}
.y242_c00000{bottom:203.610600px;}
.y9ea_c00000{bottom:203.700600px;}
.y163_c00000{bottom:203.790450px;}
.y8c2_c00000{bottom:203.790600px;}
.y146b_c00000{bottom:203.880450px;}
.y207a_c00000{bottom:203.882124px;}
.ye0a_c00000{bottom:203.970450px;}
.y1f81_c00000{bottom:204.060450px;}
.y119d_c00000{bottom:204.060657px;}
.y4c3_c00000{bottom:204.150450px;}
.y6d2_c00000{bottom:204.151008px;}
.y1534_c00000{bottom:204.153798px;}
.y2113_c00000{bottom:204.158466px;}
.y34a_c00000{bottom:204.240450px;}
.y942_c00000{bottom:204.240810px;}
.y1eb5_c00000{bottom:204.330450px;}
.y120b_c00000{bottom:204.420450px;}
.y10e6_c00000{bottom:204.600450px;}
.y1670_c00000{bottom:204.690450px;}
.y11ea_c00000{bottom:204.780600px;}
.y957_c00000{bottom:204.870450px;}
.yb50_c00000{bottom:204.960600px;}
.y17e8_c00000{bottom:204.961125px;}
.y1d29_c00000{bottom:204.961305px;}
.yc67_c00000{bottom:205.230450px;}
.y1422_c00000{bottom:205.320450px;}
.y1dad_c00000{bottom:205.320600px;}
.y1b46_c00000{bottom:205.410450px;}
.y5eb_c00000{bottom:205.500450px;}
.y73c_c00000{bottom:205.500600px;}
.y1d63_c00000{bottom:205.590450px;}
.yb0a_c00000{bottom:205.590558px;}
.yf00_c00000{bottom:205.770450px;}
.y1521_c00000{bottom:205.860450px;}
.y1751_c00000{bottom:205.950450px;}
.y1fb2_c00000{bottom:205.950630px;}
.ye99_c00000{bottom:206.130450px;}
.y1613_c00000{bottom:206.130774px;}
.y8d9_c00000{bottom:206.580450px;}
.y19fb_c00000{bottom:206.670450px;}
.y1283_c00000{bottom:206.671215px;}
.y19a4_c00000{bottom:206.671395px;}
.y200b_c00000{bottom:206.672250px;}
.ye37_c00000{bottom:206.760450px;}
.y693_c00000{bottom:206.850450px;}
.y8fa_c00000{bottom:206.850630px;}
.ycec_c00000{bottom:207.030450px;}
.y829_c00000{bottom:207.030600px;}
.y495_c00000{bottom:207.210450px;}
.y638_c00000{bottom:207.210600px;}
.y3bb_c00000{bottom:207.300450px;}
.y212a_c00000{bottom:207.390450px;}
.ya0_c00000{bottom:207.400179px;}
.yec8_c00000{bottom:207.480450px;}
.ycd3_c00000{bottom:207.480600px;}
.ya50_c00000{bottom:207.570540px;}
.yf4b_c00000{bottom:207.750450px;}
.y1149_c00000{bottom:207.751221px;}
.y355_c00000{bottom:207.840450px;}
.y1143_c00000{bottom:207.931581px;}
.y1a22_c00000{bottom:208.020450px;}
.y1b0_c00000{bottom:208.110450px;}
.y172b_c00000{bottom:208.110600px;}
.y1d8e_c00000{bottom:208.380450px;}
.y147c_c00000{bottom:208.380690px;}
.y2fd_c00000{bottom:208.470450px;}
.y4e2_c00000{bottom:208.560450px;}
.y15f4_c00000{bottom:208.650450px;}
.y2bd_c00000{bottom:208.740450px;}
.y2d6_c00000{bottom:208.740600px;}
.y109a_c00000{bottom:208.830450px;}
.y1a9b_c00000{bottom:208.920450px;}
.y1c27_c00000{bottom:209.100450px;}
.y1709_c00000{bottom:209.190450px;}
.y11a0_c00000{bottom:209.280450px;}
.y1f44_c00000{bottom:209.370600px;}
.y159b_c00000{bottom:209.370729px;}
.y14b3_c00000{bottom:209.550450px;}
.y80d_c00000{bottom:209.730450px;}
.y728_c00000{bottom:209.820450px;}
.y1ccf_c00000{bottom:209.820459px;}
.y8b3_c00000{bottom:209.910450px;}
.y7ba_c00000{bottom:210.000450px;}
.yd54_c00000{bottom:210.090450px;}
.y1a40_c00000{bottom:210.090630px;}
.yf6a_c00000{bottom:210.360450px;}
.ya5d_c00000{bottom:210.361125px;}
.y971_c00000{bottom:210.362160px;}
.y1971_c00000{bottom:210.450450px;}
.y5b5_c00000{bottom:210.450600px;}
.y57_c00000{bottom:210.900267px;}
.yf16_c00000{bottom:210.900450px;}
.yc47_c00000{bottom:210.990450px;}
.y37c_c00000{bottom:211.170450px;}
.y779_c00000{bottom:211.260450px;}
.y20a_c00000{bottom:211.800450px;}
.y1ee1_c00000{bottom:211.890657px;}
.y463_c00000{bottom:212.160450px;}
.yda8_c00000{bottom:212.160600px;}
.y867_c00000{bottom:212.250450px;}
.y1c44_c00000{bottom:212.340450px;}
.y565_c00000{bottom:212.430450px;}
.y13b9_c00000{bottom:212.610450px;}
.y26d_c00000{bottom:212.700600px;}
.y515_c00000{bottom:212.970450px;}
.y2208_c00000{bottom:213.239469px;}
.y2205_c00000{bottom:213.240450px;}
.y203a_c00000{bottom:213.510450px;}
.y1116_c00000{bottom:213.600450px;}
.y53c_c00000{bottom:213.690450px;}
.y111a_c00000{bottom:213.780600px;}
.y9a7_c00000{bottom:213.781305px;}
.y70b_c00000{bottom:213.781575px;}
.y60d_c00000{bottom:213.781665px;}
.y1a81_c00000{bottom:213.870540px;}
.y30c_c00000{bottom:213.960450px;}
.yc0_c00000{bottom:213.960600px;}
.y666_c00000{bottom:214.140450px;}
.yeb4_c00000{bottom:214.320450px;}
.yd10_c00000{bottom:214.411395px;}
.ye35_c00000{bottom:214.500450px;}
.y1de6_c00000{bottom:214.590450px;}
.y1462_c00000{bottom:214.680450px;}
.ya05_c00000{bottom:215.040450px;}
.y1295_c00000{bottom:215.311485px;}
.ye49_c00000{bottom:215.313285px;}
.y290_c00000{bottom:215.400450px;}
.y1b0e_c00000{bottom:215.490450px;}
.y527_c00000{bottom:215.490630px;}
.yd3b_c00000{bottom:215.670450px;}
.y19d1_c00000{bottom:215.673120px;}
.y1ca_c00000{bottom:215.850600px;}
.y1c94_c00000{bottom:215.852457px;}
.yb09_c00000{bottom:215.940450px;}
.y16bf_c00000{bottom:216.120450px;}
.y2169_c00000{bottom:216.120600px;}
.y136c_c00000{bottom:216.210450px;}
.y9cd_c00000{bottom:216.211305px;}
.y1044_c00000{bottom:216.480450px;}
.y1612_c00000{bottom:216.480666px;}
.yf9f_c00000{bottom:216.660450px;}
.y1051_c00000{bottom:216.661008px;}
.y84a_c00000{bottom:216.930450px;}
.yb77_c00000{bottom:217.110450px;}
.ya7f_c00000{bottom:217.201485px;}
.y6bd_c00000{bottom:217.201575px;}
.y12e4_c00000{bottom:217.380450px;}
.y64e_c00000{bottom:217.560450px;}
.y91b_c00000{bottom:217.560600px;}
.y1d20_c00000{bottom:217.830450px;}
.y1d50_c00000{bottom:217.830600px;}
.y1c1b_c00000{bottom:218.010450px;}
.yde6_c00000{bottom:218.460600px;}
.y20c4_c00000{bottom:218.640450px;}
.ya24_c00000{bottom:218.730450px;}
.ye6b_c00000{bottom:218.730540px;}
.y1cf1_c00000{bottom:218.731215px;}
.y1f66_c00000{bottom:218.820450px;}
.y1f0a_c00000{bottom:218.820639px;}
.y2146_c00000{bottom:218.910450px;}
.y80c_c00000{bottom:218.910720px;}
.y21e_c00000{bottom:219.000450px;}
.y2a7_c00000{bottom:219.090450px;}
.yb16_c00000{bottom:219.090600px;}
.y6ff_c00000{bottom:219.180450px;}
.ydc2_c00000{bottom:219.271566px;}
.y767_c00000{bottom:219.360450px;}
.y7e_c00000{bottom:219.460026px;}
.ye4_c00000{bottom:219.724626px;}
.y1aef_c00000{bottom:219.810600px;}
.y32b_c00000{bottom:219.900450px;}
.yab6_c00000{bottom:219.990450px;}
.ybdf_c00000{bottom:220.080450px;}
.y891_c00000{bottom:220.170450px;}
.y14f0_c00000{bottom:220.260450px;}
.y13f5_c00000{bottom:220.350450px;}
.y169f_c00000{bottom:220.350969px;}
.y1564_c00000{bottom:220.440450px;}
.y1263_c00000{bottom:220.440630px;}
.y193d_c00000{bottom:220.441305px;}
.y176e_c00000{bottom:220.441575px;}
.y205e_c00000{bottom:220.710450px;}
.y2025_c00000{bottom:220.710600px;}
.ye31_c00000{bottom:220.800450px;}
.y1bce_c00000{bottom:220.800600px;}
.y18ed_c00000{bottom:220.891395px;}
.y41a_c00000{bottom:220.980450px;}
.ya43_c00000{bottom:221.070450px;}
.yd71_c00000{bottom:221.250450px;}
.ycae_c00000{bottom:221.250600px;}
.y1f5_c00000{bottom:221.340450px;}
.y119c_c00000{bottom:221.340648px;}
.y1895_c00000{bottom:221.430450px;}
.y177b_c00000{bottom:221.520450px;}
.yff0_c00000{bottom:221.610450px;}
.y20cf_c00000{bottom:221.700600px;}
.y10e5_c00000{bottom:221.790600px;}
.y1a54_c00000{bottom:221.880450px;}
.y11e9_c00000{bottom:222.060450px;}
.y399_c00000{bottom:222.151485px;}
.y197d_c00000{bottom:222.151665px;}
.y687_c00000{bottom:222.423465px;}
.y17c3_c00000{bottom:222.510450px;}
.y1eb4_c00000{bottom:222.511410px;}
.y21d5_c00000{bottom:222.690450px;}
.y754_c00000{bottom:222.780450px;}
.yaca_c00000{bottom:222.780600px;}
.y3e2_c00000{bottom:222.870450px;}
.y2217_c00000{bottom:222.870600px;}
.y20ee_c00000{bottom:222.960450px;}
.y9f7_c00000{bottom:222.960600px;}
.y941_c00000{bottom:223.230720px;}
.y914_c00000{bottom:223.320450px;}
.y135_c00000{bottom:223.500450px;}
.y1c65_c00000{bottom:223.590450px;}
.y9e9_c00000{bottom:223.770450px;}
.y1d28_c00000{bottom:223.860630px;}
.y1225_c00000{bottom:223.862700px;}
.y189_c00000{bottom:223.950450px;}
.yb97_c00000{bottom:224.040600px;}
.y1bb3_c00000{bottom:224.130450px;}
.y8c1_c00000{bottom:224.131575px;}
.y20f3_c00000{bottom:224.220600px;}
.y3fd_c00000{bottom:224.310450px;}
.y1b56_c00000{bottom:224.400450px;}
.y62d_c00000{bottom:224.490450px;}
.y2079_c00000{bottom:224.581845px;}
.y1cc1_c00000{bottom:224.670450px;}
.yb08_c00000{bottom:224.760450px;}
.y119f_c00000{bottom:224.760900px;}
.y4c2_c00000{bottom:224.850450px;}
.y6d1_c00000{bottom:224.850729px;}
.y1533_c00000{bottom:224.853519px;}
.y2112_c00000{bottom:224.858187px;}
.y1bd9_c00000{bottom:224.940450px;}
.y1fb1_c00000{bottom:224.940540px;}
.yf4a_c00000{bottom:225.030600px;}
.y1148_c00000{bottom:225.031212px;}
.yc26_c00000{bottom:225.120450px;}
.y1142_c00000{bottom:225.211572px;}
.y13df_c00000{bottom:225.390450px;}
.y1282_c00000{bottom:225.661125px;}
.yc46_c00000{bottom:225.661305px;}
.y200a_c00000{bottom:225.662160px;}
.y692_c00000{bottom:225.840450px;}
.y8f9_c00000{bottom:225.840540px;}
.y1d06_c00000{bottom:225.930450px;}
.yc7d_c00000{bottom:226.020450px;}
.y791_c00000{bottom:226.200450px;}
.y1382_c00000{bottom:226.200600px;}
.ye61_c00000{bottom:226.470450px;}
.y1d6f_c00000{bottom:226.560450px;}
.y15f0_c00000{bottom:226.650450px;}
.yc66_c00000{bottom:226.740450px;}
.ye81_c00000{bottom:226.830450px;}
.y1611_c00000{bottom:226.830558px;}
.y7dd_c00000{bottom:226.920450px;}
.y866_c00000{bottom:226.921485px;}
.y1cce_c00000{bottom:227.100450px;}
.yee5_c00000{bottom:227.190450px;}
.y8e6_c00000{bottom:227.280450px;}
.yeff_c00000{bottom:227.280600px;}
.y147b_c00000{bottom:227.370600px;}
.y241_c00000{bottom:227.460600px;}
.y3ba_c00000{bottom:227.550450px;}
.y162_c00000{bottom:227.640450px;}
.yc00_c00000{bottom:227.730450px;}
.ya69_c00000{bottom:227.820450px;}
.y577_c00000{bottom:227.910450px;}
.y1dc4_c00000{bottom:228.000450px;}
.y17ac_c00000{bottom:228.180450px;}
.y18b0_c00000{bottom:228.180600px;}
.y131f_c00000{bottom:228.450600px;}
.y59c_c00000{bottom:228.540600px;}
.yd53_c00000{bottom:229.080450px;}
.y1a3f_c00000{bottom:229.080540px;}
.yb76_c00000{bottom:229.082070px;}
.y1ee0_c00000{bottom:229.170648px;}
.ya5c_c00000{bottom:229.260450px;}
.y970_c00000{bottom:229.261485px;}
.y107_c00000{bottom:229.440450px;}
.y153a_c00000{bottom:229.440600px;}
.y18de_c00000{bottom:229.620600px;}
.y354_c00000{bottom:229.710600px;}
.y1e77_c00000{bottom:229.890450px;}
.y159a_c00000{bottom:230.070450px;}
.y183d_c00000{bottom:230.430450px;}
.y1a69_c00000{bottom:230.790600px;}
.y177a_c00000{bottom:230.791575px;}
.y1115_c00000{bottom:230.880450px;}
.y84e_c00000{bottom:231.150450px;}
.ybc5_c00000{bottom:231.150600px;}
.y1645_c00000{bottom:231.240450px;}
.y1d76_c00000{bottom:231.780600px;}
.y1af_c00000{bottom:231.870450px;}
.y1043_c00000{bottom:231.870600px;}
.y1461_c00000{bottom:231.960600px;}
.y1468_c00000{bottom:231.960639px;}
.y26c_c00000{bottom:232.050450px;}
.yf9e_c00000{bottom:232.230450px;}
.y43e_c00000{bottom:232.590450px;}
.y1401_c00000{bottom:232.680450px;}
.y9a6_c00000{bottom:232.771215px;}
.y70a_c00000{bottom:232.771485px;}
.y60c_c00000{bottom:232.771575px;}
.y1fe1_c00000{bottom:232.860450px;}
.y1b31_c00000{bottom:232.950600px;}
.y2207_c00000{bottom:233.039991px;}
.y168d_c00000{bottom:233.040450px;}
.y2204_c00000{bottom:233.040600px;}
.y5b4_c00000{bottom:233.130450px;}
.y1c93_c00000{bottom:233.132448px;}
.yd0f_c00000{bottom:233.310720px;}
.y217a_c00000{bottom:233.400450px;}
.y4e1_c00000{bottom:233.670450px;}
.y828_c00000{bottom:233.670729px;}
.y1d44_c00000{bottom:233.760450px;}
.y1050_c00000{bottom:233.850819px;}
.y53b_c00000{bottom:234.032670px;}
.yb38_c00000{bottom:234.120450px;}
.y1294_c00000{bottom:234.210810px;}
.ye48_c00000{bottom:234.212610px;}
.y1ac8_c00000{bottom:234.390450px;}
.y1b0d_c00000{bottom:234.480450px;}
.y526_c00000{bottom:234.480540px;}
.yb4f_c00000{bottom:234.660450px;}
.y19d0_c00000{bottom:234.663030px;}
.ye09_c00000{bottom:235.020450px;}
.y1f80_c00000{bottom:235.110450px;}
.y1932_c00000{bottom:235.200600px;}
.y9cc_c00000{bottom:235.201215px;}
.y349_c00000{bottom:235.290600px;}
.y120a_c00000{bottom:235.470450px;}
.y209_c00000{bottom:235.560450px;}
.y15c5_c00000{bottom:235.650450px;}
.y166f_c00000{bottom:235.740450px;}
.y956_c00000{bottom:235.920450px;}
.y1f09_c00000{bottom:236.010450px;}
.ya7e_c00000{bottom:236.191395px;}
.y6bc_c00000{bottom:236.191485px;}
.y122d_c00000{bottom:236.370450px;}
.y1dac_c00000{bottom:236.370600px;}
.y56_c00000{bottom:236.460600px;}
.y5ea_c00000{bottom:236.550450px;}
.y73b_c00000{bottom:236.550600px;}
.y2193_c00000{bottom:236.550630px;}
.y1d62_c00000{bottom:236.640450px;}
.y1818_c00000{bottom:236.730450px;}
.y1520_c00000{bottom:236.910450px;}
.y2e_c00000{bottom:237.000000px;}
.y1750_c00000{bottom:237.000450px;}
.yfef_c00000{bottom:237.180000px;}
.ye98_c00000{bottom:237.180450px;}
.yf15_c00000{bottom:237.360450px;}
.y8d8_c00000{bottom:237.630450px;}
.y169e_c00000{bottom:237.630819px;}
.ye6a_c00000{bottom:237.720450px;}
.y1cf0_c00000{bottom:237.721125px;}
.y80b_c00000{bottom:237.900630px;}
.yceb_c00000{bottom:238.080450px;}
.y494_c00000{bottom:238.260450px;}
.y7fc_c00000{bottom:238.260600px;}
.yec7_c00000{bottom:238.530450px;}
.ycd2_c00000{bottom:238.530600px;}
.y1a9a_c00000{bottom:238.620600px;}
.y119b_c00000{bottom:238.620639px;}
.yabc_c00000{bottom:239.070450px;}
.y172a_c00000{bottom:239.160600px;}
.y28f_c00000{bottom:239.250450px;}
.y2001_c00000{bottom:239.430450px;}
.y1262_c00000{bottom:239.430540px;}
.y193c_c00000{bottom:239.431215px;}
.y176d_c00000{bottom:239.431485px;}
.y2fc_c00000{bottom:239.520450px;}
.y2064_c00000{bottom:239.610450px;}
.y1eb3_c00000{bottom:239.701221px;}
.y2bc_c00000{bottom:239.790450px;}
.y2d5_c00000{bottom:239.790600px;}
.y1099_c00000{bottom:239.880450px;}
.y18ec_c00000{bottom:239.881305px;}
.y1c26_c00000{bottom:239.970450px;}
.ydc1_c00000{bottom:239.971287px;}
.y1708_c00000{bottom:240.240450px;}
.y9f6_c00000{bottom:240.329568px;}
.y119e_c00000{bottom:240.330450px;}
.ybf_c00000{bottom:240.420450px;}
.y2074_c00000{bottom:240.510450px;}
.y1042_c00000{bottom:240.600000px;}
.y14b2_c00000{bottom:240.600450px;}
.y727_c00000{bottom:240.870600px;}
.y14ef_c00000{bottom:240.960450px;}
.y1c9_c00000{bottom:240.960600px;}
.y7b9_c00000{bottom:241.050450px;}
.y398_c00000{bottom:241.141395px;}
.y197c_c00000{bottom:241.141575px;}
.yf69_c00000{bottom:241.410450px;}
.y686_c00000{bottom:241.413375px;}
.y1e_c00000{bottom:241.500000px;}
.y179f_c00000{bottom:241.500450px;}
.y1e88_c00000{bottom:241.509648px;}
.y20e5_c00000{bottom:241.680450px;}
.yb07_c00000{bottom:241.950600px;}
.y17e7_c00000{bottom:242.040162px;}
.yd3a_c00000{bottom:242.130450px;}
.y37b_c00000{bottom:242.220450px;}
.y940_c00000{bottom:242.220630px;}
.yf49_c00000{bottom:242.310450px;}
.y1141_c00000{bottom:242.401383px;}
.yee4_c00000{bottom:242.580450px;}
.y890_c00000{bottom:242.670450px;}
.y2202_c00000{bottom:242.850450px;}
.y1d27_c00000{bottom:242.850540px;}
.y1224_c00000{bottom:242.852610px;}
.ya_c00000{bottom:243.000000px;}
.y8c0_c00000{bottom:243.121485px;}
.y462_c00000{bottom:243.210450px;}
.yda7_c00000{bottom:243.210600px;}
.y109c_c00000{bottom:243.300450px;}
.y1c43_c00000{bottom:243.390450px;}
.y564_c00000{bottom:243.480450px;}
.y13b8_c00000{bottom:243.660450px;}
.y7d_c00000{bottom:243.669891px;}
.y9e8_c00000{bottom:243.750600px;}
.y15f3_c00000{bottom:243.930441px;}
.y15ef_c00000{bottom:243.930450px;}
.ye3_c00000{bottom:243.934491px;}
.ya4f_c00000{bottom:244.200600px;}
.ya23_c00000{bottom:244.290450px;}
.y21d4_c00000{bottom:244.470450px;}
.y1281_c00000{bottom:244.560450px;}
.yc45_c00000{bottom:244.560630px;}
.y1ccd_c00000{bottom:244.560810px;}
.y2009_c00000{bottom:244.561485px;}
.y30b_c00000{bottom:244.830450px;}
.y31b_c00000{bottom:245.010450px;}
.y1767_c00000{bottom:245.010600px;}
.y190b_c00000{bottom:245.099955px;}
.y1f4_c00000{bottom:245.190450px;}
.y2078_c00000{bottom:245.281566px;}
.y21d_c00000{bottom:245.370600px;}
.y3b9_c00000{bottom:245.550450px;}
.y1532_c00000{bottom:245.553240px;}
.y2111_c00000{bottom:245.557908px;}
.y1bd8_c00000{bottom:245.640450px;}
.y131e_c00000{bottom:245.730450px;}
.y1644_c00000{bottom:245.820450px;}
.y6fe_c00000{bottom:245.820729px;}
.y865_c00000{bottom:245.820810px;}
.y691_c00000{bottom:246.000450px;}
.ya04_c00000{bottom:246.090450px;}
.y1edf_c00000{bottom:246.360459px;}
.y19fa_c00000{bottom:246.360600px;}
.y147a_c00000{bottom:246.540450px;}
.yac9_c00000{bottom:246.630450px;}
.yb96_c00000{bottom:246.720450px;}
.yefe_c00000{bottom:247.080450px;}
.y16be_c00000{bottom:247.170450px;}
.y134_c00000{bottom:247.260450px;}
.y419_c00000{bottom:247.350450px;}
.y26b_c00000{bottom:247.350600px;}
.y188_c00000{bottom:247.710450px;}
.y18dd_c00000{bottom:247.800864px;}
.y849_c00000{bottom:247.980450px;}
.ybde_c00000{bottom:248.070450px;}
.yb75_c00000{bottom:248.071980px;}
.y1bff_c00000{bottom:248.160450px;}
.y96f_c00000{bottom:248.251395px;}
.y12e3_c00000{bottom:248.430450px;}
.y64d_c00000{bottom:248.610450px;}
.y91a_c00000{bottom:248.610600px;}
.y1d1f_c00000{bottom:248.880450px;}
.y1d4f_c00000{bottom:248.880600px;}
.y1114_c00000{bottom:249.060450px;}
.y1460_c00000{bottom:249.150450px;}
.ya5b_c00000{bottom:249.420450px;}
.yde5_c00000{bottom:249.510450px;}
.y21c1_c00000{bottom:249.780450px;}
.y1779_c00000{bottom:249.781485px;}
.y1f65_c00000{bottom:249.870450px;}
.yc98_c00000{bottom:249.960450px;}
.y2a6_c00000{bottom:250.140450px;}
.yb15_c00000{bottom:250.140600px;}
.y1a80_c00000{bottom:250.320450px;}
.y766_c00000{bottom:250.410450px;}
.y1c92_c00000{bottom:250.412439px;}
.y1aee_c00000{bottom:250.860600px;}
.y104f_c00000{bottom:250.950450px;}
.yab5_c00000{bottom:251.040450px;}
.y240_c00000{bottom:251.220600px;}
.y161_c00000{bottom:251.400450px;}
.y353_c00000{bottom:251.490450px;}
.y1dc3_c00000{bottom:251.760450px;}
.y9a5_c00000{bottom:251.761125px;}
.y709_c00000{bottom:251.761395px;}
.y60b_c00000{bottom:251.761485px;}
.ye30_c00000{bottom:251.850450px;}
.y1bcd_c00000{bottom:251.850600px;}
.yf14_c00000{bottom:251.941485px;}
.yf_c00000{bottom:252.000000px;}
.y1b96_c00000{bottom:252.030450px;}
.ya42_c00000{bottom:252.120450px;}
.yd70_c00000{bottom:252.300450px;}
.ycad_c00000{bottom:252.300600px;}
.yd0e_c00000{bottom:252.300630px;}
.y1894_c00000{bottom:252.390450px;}
.y1fe0_c00000{bottom:252.480450px;}
.yfee_c00000{bottom:252.660450px;}
.y15c4_c00000{bottom:252.930450px;}
.y2206_c00000{bottom:252.930693px;}
.y53a_c00000{bottom:253.022580px;}
.y1293_c00000{bottom:253.200720px;}
.ye47_c00000{bottom:253.202520px;}
.ye80_c00000{bottom:253.290450px;}
.y2192_c00000{bottom:253.380450px;}
.y1a12_c00000{bottom:253.470450px;}
.y17c2_c00000{bottom:253.560450px;}
.y19cf_c00000{bottom:253.652940px;}
.y59b_c00000{bottom:253.830450px;}
.y3e1_c00000{bottom:253.920450px;}
.y20ed_c00000{bottom:254.010450px;}
.yb4e_c00000{bottom:254.100450px;}
.y9cb_c00000{bottom:254.100540px;}
.y5ce_c00000{bottom:254.370450px;}
.y1c64_c00000{bottom:254.640450px;}
.y2087_c00000{bottom:254.640729px;}
.y1b81_c00000{bottom:254.910450px;}
.y169d_c00000{bottom:254.910999px;}
.y20bc_c00000{bottom:255.090450px;}
.ya7d_c00000{bottom:255.181305px;}
.y6bb_c00000{bottom:255.181395px;}
.y3fc_c00000{bottom:255.270450px;}
.y1599_c00000{bottom:255.270600px;}
.y1098_c00000{bottom:255.360450px;}
.y62c_c00000{bottom:255.540450px;}
.y1ae_c00000{bottom:255.630450px;}
.y1cc0_c00000{bottom:255.720450px;}
.y119a_c00000{bottom:255.810450px;}
.y1dd9_c00000{bottom:255.810459px;}
.y2044_c00000{bottom:255.900450px;}
.y1041_c00000{bottom:256.080450px;}
.yc25_c00000{bottom:256.170450px;}
.y10e4_c00000{bottom:256.260450px;}
.y13de_c00000{bottom:256.440450px;}
.y11e8_c00000{bottom:256.530450px;}
.y1cef_c00000{bottom:256.620450px;}
.y80a_c00000{bottom:256.890540px;}
.y1d05_c00000{bottom:256.980450px;}
.y1eb2_c00000{bottom:256.981212px;}
.yc7c_c00000{bottom:257.070450px;}
.y1610_c00000{bottom:257.070600px;}
.y790_c00000{bottom:257.250450px;}
.y1381_c00000{bottom:257.250600px;}
.ye60_c00000{bottom:257.430450px;}
.y1ac7_c00000{bottom:257.610450px;}
.y10e0_c00000{bottom:257.790450px;}
.y7dc_c00000{bottom:257.970450px;}
.y1b45_c00000{bottom:258.060450px;}
.y8e5_c00000{bottom:258.330450px;}
.y1261_c00000{bottom:258.420450px;}
.y193b_c00000{bottom:258.421125px;}
.y176c_c00000{bottom:258.421395px;}
.y1556_c00000{bottom:258.510600px;}
.ybff_c00000{bottom:258.780450px;}
.y18eb_c00000{bottom:258.780630px;}
.ya68_c00000{bottom:258.870450px;}
.y576_c00000{bottom:258.960450px;}
.y4e0_c00000{bottom:258.960600px;}
.y1f7f_c00000{bottom:259.050450px;}
.yb06_c00000{bottom:259.230450px;}
.y18af_c00000{bottom:259.230600px;}
.y208_c00000{bottom:259.320450px;}
.yf4e_c00000{bottom:259.500450px;}
.y1140_c00000{bottom:259.681374px;}
.y20a9_c00000{bottom:259.770450px;}
.y397_c00000{bottom:260.131305px;}
.y197b_c00000{bottom:260.131485px;}
.y1643_c00000{bottom:260.310450px;}
.y685_c00000{bottom:260.312700px;}
.y106_c00000{bottom:260.490450px;}
.y175b_c00000{bottom:260.490600px;}
.ydc0_c00000{bottom:260.671008px;}
.y1e76_c00000{bottom:260.940450px;}
.y1f43_c00000{bottom:261.120450px;}
.y15f2_c00000{bottom:261.210432px;}
.y15ee_c00000{bottom:261.210450px;}
.y93f_c00000{bottom:261.210540px;}
.y55_c00000{bottom:261.300450px;}
.y183c_c00000{bottom:261.480450px;}
.y14ee_c00000{bottom:261.660450px;}
.y1a68_c00000{bottom:261.840450px;}
.y1223_c00000{bottom:261.842520px;}
.y1280_c00000{bottom:262.020450px;}
.y9f5_c00000{bottom:262.109496px;}
.y8bf_c00000{bottom:262.111395px;}
.y179e_c00000{bottom:262.200450px;}
.ybc4_c00000{bottom:262.200600px;}
.ycd1_c00000{bottom:262.380450px;}
.y28e_c00000{bottom:263.010450px;}
.y1e2f_c00000{bottom:263.100450px;}
.y151f_c00000{bottom:263.370450px;}
.y21c_c00000{bottom:263.460450px;}
.y43d_c00000{bottom:263.550450px;}
.yc44_c00000{bottom:263.550540px;}
.y1ccc_c00000{bottom:263.550720px;}
.y2008_c00000{bottom:263.551395px;}
.y1dd1_c00000{bottom:263.640450px;}
.y215e_c00000{bottom:263.730450px;}
.y1b30_c00000{bottom:264.000450px;}
.y690_c00000{bottom:264.090450px;}
.y5b3_c00000{bottom:264.180450px;}
.y20e4_c00000{bottom:264.360450px;}
.y1d43_c00000{bottom:264.810450px;}
.y864_c00000{bottom:264.810720px;}
.y18dc_c00000{bottom:265.080855px;}
.yb37_c00000{bottom:265.170450px;}
.y88f_c00000{bottom:265.350450px;}
.ybe_c00000{bottom:265.620450px;}
.ye08_c00000{bottom:265.980450px;}
.y2077_c00000{bottom:265.981287px;}
.yda6_c00000{bottom:266.070450px;}
.y1c8_c00000{bottom:266.070600px;}
.y19f9_c00000{bottom:266.160450px;}
.y4c1_c00000{bottom:266.250450px;}
.y1531_c00000{bottom:266.252961px;}
.y2110_c00000{bottom:266.257629px;}
.y348_c00000{bottom:266.340450px;}
.y1c25_c00000{bottom:266.340729px;}
.y145f_c00000{bottom:266.430450px;}
.y6fd_c00000{bottom:266.520450px;}
.yf9d_c00000{bottom:266.700450px;}
.y166e_c00000{bottom:266.790450px;}
.y955_c00000{bottom:266.970450px;}
.yb74_c00000{bottom:266.971305px;}
.y14b1_c00000{bottom:267.060450px;}
.y96e_c00000{bottom:267.241305px;}
.yd39_c00000{bottom:267.420450px;}
.y1dab_c00000{bottom:267.420600px;}
.y5e9_c00000{bottom:267.600450px;}
.y73a_c00000{bottom:267.600600px;}
.y1c91_c00000{bottom:267.602250px;}
.y1d61_c00000{bottom:267.690450px;}
.y1817_c00000{bottom:267.780450px;}
.y7c_c00000{bottom:267.789585px;}
.y1cdf_c00000{bottom:267.870450px;}
.y418_c00000{bottom:268.050450px;}
.y26a_c00000{bottom:268.050600px;}
.ye2_c00000{bottom:268.054185px;}
.yfed_c00000{bottom:268.140900px;}
.ye97_c00000{bottom:268.230450px;}
.yefd_c00000{bottom:268.590450px;}
.y8d7_c00000{bottom:268.680450px;}
.yb4d_c00000{bottom:268.771215px;}
.y1778_c00000{bottom:268.771395px;}
.y1f3_c00000{bottom:268.950450px;}
.ycea_c00000{bottom:269.130450px;}
.y493_c00000{bottom:269.310450px;}
.y7fb_c00000{bottom:269.310600px;}
.y3b8_c00000{bottom:269.400450px;}
.yec6_c00000{bottom:269.580450px;}
.y1b80_c00000{bottom:269.581905px;}
.y1a99_c00000{bottom:269.670450px;}
.y1c42_c00000{bottom:269.850729px;}
.y8f8_c00000{bottom:269.940450px;}
.y525_c00000{bottom:270.120450px;}
.y1729_c00000{bottom:270.210600px;}
.y15c3_c00000{bottom:270.210639px;}
.y1582_c00000{bottom:270.480450px;}
.y2fb_c00000{bottom:270.570450px;}
.y9a4_c00000{bottom:270.660450px;}
.y708_c00000{bottom:270.660720px;}
.y60a_c00000{bottom:270.660810px;}
.y2bb_c00000{bottom:270.840450px;}
.y2d4_c00000{bottom:270.840600px;}
.y1097_c00000{bottom:270.930450px;}
.yf13_c00000{bottom:270.931395px;}
.y133_c00000{bottom:271.110450px;}
.y1707_c00000{bottom:271.290450px;}
.yd0d_c00000{bottom:271.290540px;}
.y827_c00000{bottom:271.380450px;}
.yc94_c00000{bottom:271.380729px;}
.y187_c00000{bottom:271.560450px;}
.y352_c00000{bottom:271.650450px;}
.y1040_c00000{bottom:271.650459px;}
.y726_c00000{bottom:271.920450px;}
.y8b2_c00000{bottom:272.010450px;}
.y1f08_c00000{bottom:272.010855px;}
.y539_c00000{bottom:272.012490px;}
.y7b8_c00000{bottom:272.100450px;}
.y169c_c00000{bottom:272.100819px;}
.y1292_c00000{bottom:272.190630px;}
.ye46_c00000{bottom:272.192430px;}
.y1fdf_c00000{bottom:272.280540px;}
.yf68_c00000{bottom:272.460450px;}
.yab4_c00000{bottom:272.550450px;}
.y19ce_c00000{bottom:272.642850px;}
.y1a7f_c00000{bottom:272.910450px;}
.y37a_c00000{bottom:273.270450px;}
.y10df_c00000{bottom:273.360450px;}
.y2201_c00000{bottom:273.448947px;}
.y21fd_c00000{bottom:273.450450px;}
.y10e3_c00000{bottom:273.540450px;}
.y136b_c00000{bottom:273.720450px;}
.y118f_c00000{bottom:273.810000px;}
.y11e7_c00000{bottom:273.810450px;}
.yc97_c00000{bottom:273.990450px;}
.ya7c_c00000{bottom:274.171215px;}
.y6ba_c00000{bottom:274.171305px;}
.y461_c00000{bottom:274.260450px;}
.y1eb1_c00000{bottom:274.261203px;}
.y109b_c00000{bottom:274.350450px;}
.ycd0_c00000{bottom:274.352490px;}
.y2024_c00000{bottom:274.440450px;}
.y563_c00000{bottom:274.530450px;}
.y9bc_c00000{bottom:274.530600px;}
.y13b7_c00000{bottom:274.710450px;}
.y9e7_c00000{bottom:274.800600px;}
.y1642_c00000{bottom:274.890450px;}
.y8fd_c00000{bottom:275.070450px;}
.y23f_c00000{bottom:275.070600px;}
.y160_c00000{bottom:275.250450px;}
.y104e_c00000{bottom:275.250819px;}
.ya22_c00000{bottom:275.340450px;}
.y1dc2_c00000{bottom:275.610450px;}
.y30a_c00000{bottom:275.790450px;}
.y809_c00000{bottom:275.880450px;}
.y31a_c00000{bottom:275.970450px;}
.y1766_c00000{bottom:275.970600px;}
.y665_c00000{bottom:276.240450px;}
.y209c_c00000{bottom:276.331008px;}
.yeb3_c00000{bottom:276.420450px;}
.yb05_c00000{bottom:276.510450px;}
.y514_c00000{bottom:276.600450px;}
.y1de5_c00000{bottom:276.690450px;}
.y113f_c00000{bottom:276.961365px;}
.y1b44_c00000{bottom:277.050450px;}
.y11c4_c00000{bottom:277.140450px;}
.y193a_c00000{bottom:277.320450px;}
.y176b_c00000{bottom:277.320720px;}
.yf48_c00000{bottom:277.500450px;}
.yc65_c00000{bottom:277.680450px;}
.yb95_c00000{bottom:277.770450px;}
.y18ea_c00000{bottom:277.770540px;}
.y2179_c00000{bottom:277.860450px;}
.y1563_c00000{bottom:277.950450px;}
.y199a_c00000{bottom:278.130450px;}
.y16bd_c00000{bottom:278.220450px;}
.y15f1_c00000{bottom:278.400243px;}
.y15ed_c00000{bottom:278.400450px;}
.y1b95_c00000{bottom:278.490450px;}
.ya41_c00000{bottom:278.580450px;}
.yff5_c00000{bottom:278.580855px;}
.y848_c00000{bottom:279.030450px;}
.y396_c00000{bottom:279.121215px;}
.y197a_c00000{bottom:279.121395px;}
.y168e_c00000{bottom:279.210450px;}
.y684_c00000{bottom:279.302610px;}
.y1ad_c00000{bottom:279.480450px;}
.y64c_c00000{bottom:279.660450px;}
.y5cd_c00000{bottom:279.660600px;}
.y1e87_c00000{bottom:279.668991px;}
.y9f_c00000{bottom:279.849432px;}
.y1d1e_c00000{bottom:279.930450px;}
.y1d4e_c00000{bottom:279.930600px;}
.y1c1a_c00000{bottom:280.110450px;}
.y93e_c00000{bottom:280.200450px;}
.y132a_c00000{bottom:280.201332px;}
.y14b0_c00000{bottom:280.380450px;}
.y9c6_c00000{bottom:280.470450px;}
.yde4_c00000{bottom:280.560450px;}
.y2145_c00000{bottom:280.830450px;}
.y1222_c00000{bottom:280.832430px;}
.y1260_c00000{bottom:280.920450px;}
.y8be_c00000{bottom:281.010720px;}
.y2a5_c00000{bottom:281.190450px;}
.yb14_c00000{bottom:281.190600px;}
.ydbf_c00000{bottom:281.370729px;}
.y765_c00000{bottom:281.460450px;}
.y20bb_c00000{bottom:281.460729px;}
.y2216_c00000{bottom:281.550450px;}
.y1f7e_c00000{bottom:281.730450px;}
.y1aed_c00000{bottom:281.910600px;}
.y14ed_c00000{bottom:282.360450px;}
.y18db_c00000{bottom:282.360846px;}
.y13f4_c00000{bottom:282.450450px;}
.yc43_c00000{bottom:282.540450px;}
.y1ccb_c00000{bottom:282.540630px;}
.y2007_c00000{bottom:282.541305px;}
.y1bfe_c00000{bottom:282.630450px;}
.y205d_c00000{bottom:282.810450px;}
.y417_c00000{bottom:282.900450px;}
.y1bcc_c00000{bottom:282.900600px;}
.y207_c00000{bottom:283.170450px;}
.y54_c00000{bottom:283.260450px;}
.yd6f_c00000{bottom:283.350450px;}
.y1fb0_c00000{bottom:283.350540px;}
.ycac_c00000{bottom:283.350600px;}
.y1893_c00000{bottom:283.440450px;}
.y1113_c00000{bottom:283.530450px;}
.y68f_c00000{bottom:283.620450px;}
.yfec_c00000{bottom:283.710450px;}
.y1467_c00000{bottom:283.710648px;}
.y190a_c00000{bottom:283.800450px;}
.y863_c00000{bottom:283.800630px;}
.y9f4_c00000{bottom:283.980009px;}
.y1a53_c00000{bottom:283.980450px;}
.y21b_c00000{bottom:284.340450px;}
.y1a11_c00000{bottom:284.520450px;}
.y17c1_c00000{bottom:284.610450px;}
.yf9c_c00000{bottom:284.700450px;}
.y59a_c00000{bottom:284.880450px;}
.y1e2e_c00000{bottom:284.880648px;}
.y1c90_c00000{bottom:284.882241px;}
.y3e0_c00000{bottom:284.970450px;}
.y20ec_c00000{bottom:285.060450px;}
.y710_c00000{bottom:285.420450px;}
.y1581_c00000{bottom:285.510450px;}
.y1c63_c00000{bottom:285.690450px;}
.yd52_c00000{bottom:285.960450px;}
.ybdd_c00000{bottom:285.960810px;}
.yb73_c00000{bottom:285.961215px;}
.y96d_c00000{bottom:286.231215px;}
.y3fb_c00000{bottom:286.320450px;}
.y1598_c00000{bottom:286.320600px;}
.y14af_c00000{bottom:286.410450px;}
.y62b_c00000{bottom:286.590450px;}
.y20d3_c00000{bottom:286.680729px;}
.y2076_c00000{bottom:286.681008px;}
.y1cbf_c00000{bottom:286.770450px;}
.y28d_c00000{bottom:286.860450px;}
.y4c0_c00000{bottom:286.950450px;}
.y88e_c00000{bottom:286.950549px;}
.y1530_c00000{bottom:286.952682px;}
.y210f_c00000{bottom:286.957350px;}
.y1bd7_c00000{bottom:287.040450px;}
.yc24_c00000{bottom:287.220450px;}
.y15c2_c00000{bottom:287.400450px;}
.y13dd_c00000{bottom:287.490450px;}
.yb4c_c00000{bottom:287.670540px;}
.y1777_c00000{bottom:287.670720px;}
.y5b2_c00000{bottom:287.850450px;}
.y168c_c00000{bottom:287.940450px;}
.yc7b_c00000{bottom:288.120450px;}
.y160f_c00000{bottom:288.120600px;}
.y78f_c00000{bottom:288.300450px;}
.y1380_c00000{bottom:288.300600px;}
.y1f8f_c00000{bottom:288.390450px;}
.ye5f_c00000{bottom:288.480450px;}
.y1b7f_c00000{bottom:288.571815px;}
.y151e_c00000{bottom:288.660450px;}
.y269_c00000{bottom:288.750600px;}
.y103f_c00000{bottom:288.930450px;}
.y7db_c00000{bottom:289.020450px;}
.y118e_c00000{bottom:289.290450px;}
.y1f07_c00000{bottom:289.290846px;}
.y8e4_c00000{bottom:289.380450px;}
.y169b_c00000{bottom:289.380819px;}
.y1641_c00000{bottom:289.470450px;}
.yc96_c00000{bottom:289.560450px;}
.y1555_c00000{bottom:289.560600px;}
.y1b0c_c00000{bottom:289.650450px;}
.y707_c00000{bottom:289.650630px;}
.y609_c00000{bottom:289.650720px;}
.y575_c00000{bottom:289.830450px;}
.yf12_c00000{bottom:289.830720px;}
.y524_c00000{bottom:290.010450px;}
.y4df_c00000{bottom:290.010600px;}
.yee3_c00000{bottom:290.190450px;}
.yd0c_c00000{bottom:290.280450px;}
.y18ae_c00000{bottom:290.280600px;}
.y1c41_c00000{bottom:290.550450px;}
.y10de_c00000{bottom:290.640450px;}
.y9ca_c00000{bottom:290.730450px;}
.y9a3_c00000{bottom:290.820450px;}
.y11e6_c00000{bottom:291.000450px;}
.y538_c00000{bottom:291.002400px;}
.y20c3_c00000{bottom:291.090450px;}
.y1c7_c00000{bottom:291.090600px;}
.ya03_c00000{bottom:291.180450px;}
.y1291_c00000{bottom:291.180540px;}
.ye45_c00000{bottom:291.182340px;}
.y513_c00000{bottom:291.269199px;}
.y1fde_c00000{bottom:291.270450px;}
.y1eb0_c00000{bottom:291.451014px;}
.y105_c00000{bottom:291.540450px;}
.y175a_c00000{bottom:291.540600px;}
.y19cd_c00000{bottom:291.632760px;}
.y1816_c00000{bottom:291.720450px;}
.y6fc_c00000{bottom:291.810450px;}
.y7b_c00000{bottom:291.909279px;}
.y1e75_c00000{bottom:291.990450px;}
.yc93_c00000{bottom:292.080450px;}
.ye1_c00000{bottom:292.173879px;}
.y104d_c00000{bottom:292.350450px;}
.yab3_c00000{bottom:292.440450px;}
.y183b_c00000{bottom:292.530450px;}
.y1f2_c00000{bottom:292.800450px;}
.y1a67_c00000{bottom:292.890450px;}
.y3b7_c00000{bottom:293.160450px;}
.ya7b_c00000{bottom:293.161125px;}
.y6b9_c00000{bottom:293.161215px;}
.y19af_c00000{bottom:293.250450px;}
.ybc3_c00000{bottom:293.250600px;}
.y2200_c00000{bottom:293.339649px;}
.y21fc_c00000{bottom:293.340450px;}
.yccf_c00000{bottom:293.342400px;}
.y1562_c00000{bottom:293.430450px;}
.y15fd_c00000{bottom:293.610450px;}
.yb04_c00000{bottom:293.700450px;}
.y2191_c00000{bottom:293.970450px;}
.y113e_c00000{bottom:294.151176px;}
.y43c_c00000{bottom:294.600450px;}
.ye96_c00000{bottom:294.690450px;}
.yf46_c00000{bottom:294.780450px;}
.y132_c00000{bottom:294.870450px;}
.y127f_c00000{bottom:294.960450px;}
.y1939_c00000{bottom:295.050450px;}
.y7f3_c00000{bottom:295.230450px;}
.y186_c00000{bottom:295.320450px;}
.y20e3_c00000{bottom:295.410450px;}
.y1f42_c00000{bottom:295.590450px;}
.y712_c00000{bottom:295.770450px;}
.y1b94_c00000{bottom:295.859496px;}
.y1d42_c00000{bottom:295.860450px;}
.yff4_c00000{bottom:295.951026px;}
.y808_c00000{bottom:296.040450px;}
.y1a98_c00000{bottom:296.130450px;}
.yb36_c00000{bottom:296.220450px;}
.y176a_c00000{bottom:296.310630px;}
.y15ec_c00000{bottom:296.400459px;}
.ybd_c00000{bottom:296.670450px;}
.y18e9_c00000{bottom:296.760450px;}
.y2000_c00000{bottom:296.940234px;}
.y826_c00000{bottom:296.940450px;}
.y9_c00000{bottom:297.000000px;}
.ye07_c00000{bottom:297.030450px;}
.y209b_c00000{bottom:297.030729px;}
.y1479_c00000{bottom:297.210450px;}
.yc73_c00000{bottom:297.300450px;}
.yc95_c00000{bottom:297.300729px;}
.y347_c00000{bottom:297.390450px;}
.y131d_c00000{bottom:297.480450px;}
.y1329_c00000{bottom:297.481323px;}
.y1209_c00000{bottom:297.570450px;}
.y1d34_c00000{bottom:297.750450px;}
.yd8a_c00000{bottom:297.840450px;}
.y954_c00000{bottom:297.930450px;}
.y395_c00000{bottom:298.020540px;}
.y1979_c00000{bottom:298.020720px;}
.y683_c00000{bottom:298.292520px;}
.ya94_c00000{bottom:298.380450px;}
.yd38_c00000{bottom:298.470450px;}
.y1daa_c00000{bottom:298.470600px;}
.y5e8_c00000{bottom:298.650450px;}
.y739_c00000{bottom:298.650600px;}
.y1d60_c00000{bottom:298.740450px;}
.y23e_c00000{bottom:298.830600px;}
.y2168_c00000{bottom:298.920450px;}
.y15f_c00000{bottom:299.010450px;}
.y174f_c00000{bottom:299.100450px;}
.yfeb_c00000{bottom:299.190900px;}
.y122c_c00000{bottom:299.280450px;}
.y1dc1_c00000{bottom:299.370450px;}
.y18da_c00000{bottom:299.550657px;}
.y1ede_c00000{bottom:299.641005px;}
.y8d6_c00000{bottom:299.730450px;}
.y1221_c00000{bottom:299.822340px;}
.y319_c00000{bottom:299.910450px;}
.y8bd_c00000{bottom:300.000630px;}
.yce9_c00000{bottom:300.180450px;}
.y492_c00000{bottom:300.360450px;}
.y7fa_c00000{bottom:300.360600px;}
.y1111_c00000{bottom:300.630450px;}
.y2086_c00000{bottom:300.630600px;}
.y1e2d_c00000{bottom:300.720549px;}
.y1112_c00000{bottom:300.810450px;}
.y145e_c00000{bottom:300.900450px;}
.y1466_c00000{bottom:300.900459px;}
.y14ae_c00000{bottom:300.990450px;}
.y1a21_c00000{bottom:301.170450px;}
.y1728_c00000{bottom:301.260600px;}
.y2215_c00000{bottom:301.440450px;}
.y1cca_c00000{bottom:301.530540px;}
.y2006_c00000{bottom:301.531215px;}
.y12d4_c00000{bottom:301.531305px;}
.y2fa_c00000{bottom:301.620450px;}
.y19ff_c00000{bottom:301.710600px;}
.y2ba_c00000{bottom:301.890450px;}
.y2d3_c00000{bottom:301.890600px;}
.y6d0_c00000{bottom:302.070450px;}
.y20ba_c00000{bottom:302.160450px;}
.y1c8f_c00000{bottom:302.162232px;}
.y1706_c00000{bottom:302.340450px;}
.y309_c00000{bottom:302.430450px;}
.y93d_c00000{bottom:302.700450px;}
.y88d_c00000{bottom:302.790450px;}
.y862_c00000{bottom:302.790540px;}
.y21d3_c00000{bottom:302.880450px;}
.y725_c00000{bottom:302.970450px;}
.y27_c00000{bottom:303.000000px;}
.y14ec_c00000{bottom:303.060450px;}
.y7b7_c00000{bottom:303.150450px;}
.y1ac_c00000{bottom:303.240450px;}
.yf67_c00000{bottom:303.510450px;}
.y179d_c00000{bottom:303.600450px;}
.y125f_c00000{bottom:303.600600px;}
.y1909_c00000{bottom:303.600630px;}
.y1815_c00000{bottom:303.691395px;}
.ya40_c00000{bottom:303.870450px;}
.y1a7e_c00000{bottom:303.960450px;}
.y1640_c00000{bottom:303.960600px;}
.y1c19_c00000{bottom:304.050450px;}
.y2129_c00000{bottom:304.140450px;}
.y103e_c00000{bottom:304.230450px;}
.y379_c00000{bottom:304.320450px;}
.y15c1_c00000{bottom:304.680609px;}
.y118d_c00000{bottom:304.860000px;}
.yd51_c00000{bottom:304.950450px;}
.ybdc_c00000{bottom:304.950720px;}
.yb72_c00000{bottom:304.951125px;}
.y53_c00000{bottom:305.220450px;}
.y96c_c00000{bottom:305.221125px;}
.y460_c00000{bottom:305.310450px;}
.y1096_c00000{bottom:305.400450px;}
.y2023_c00000{bottom:305.490450px;}
.y562_c00000{bottom:305.580450px;}
.y9bb_c00000{bottom:305.580600px;}
.y9f3_c00000{bottom:305.759937px;}
.y13b6_c00000{bottom:305.760450px;}
.y19f8_c00000{bottom:305.850450px;}
.y9e6_c00000{bottom:305.850600px;}
.y2098_c00000{bottom:306.120729px;}
.y1580_c00000{bottom:306.210450px;}
.y21a_c00000{bottom:306.390450px;}
.y1f06_c00000{bottom:306.480657px;}
.yb4b_c00000{bottom:306.660450px;}
.y1776_c00000{bottom:306.660630px;}
.y169a_c00000{bottom:306.660999px;}
.y17ce_c00000{bottom:306.661755px;}
.y206_c00000{bottom:306.930450px;}
.y1408_c00000{bottom:307.020450px;}
.y1765_c00000{bottom:307.020600px;}
.y664_c00000{bottom:307.290450px;}
.y20d2_c00000{bottom:307.380450px;}
.y2075_c00000{bottom:307.380729px;}
.yeb2_c00000{bottom:307.470450px;}
.y1cbe_c00000{bottom:307.560657px;}
.y1b7e_c00000{bottom:307.561725px;}
.y1388_c00000{bottom:307.650450px;}
.y152f_c00000{bottom:307.652403px;}
.y210e_c00000{bottom:307.657071px;}
.y104c_c00000{bottom:307.830450px;}
.y15fc_c00000{bottom:307.920450px;}
.y1c3e_c00000{bottom:308.010450px;}
.y11c3_c00000{bottom:308.190450px;}
.y11e5_c00000{bottom:308.280450px;}
.y1b0b_c00000{bottom:308.640450px;}
.y706_c00000{bottom:308.640540px;}
.y608_c00000{bottom:308.640630px;}
.yc64_c00000{bottom:308.730450px;}
.y1eaf_c00000{bottom:308.731005px;}
.yb94_c00000{bottom:308.820450px;}
.yf11_c00000{bottom:308.820630px;}
.y1999_c00000{bottom:309.180450px;}
.y16bc_c00000{bottom:309.270450px;}
.y268_c00000{bottom:309.450600px;}
.ye7f_c00000{bottom:309.630450px;}
.y1892_c00000{bottom:309.900450px;}
.y537_c00000{bottom:309.901725px;}
.y847_c00000{bottom:310.080450px;}
.y1290_c00000{bottom:310.170450px;}
.ye44_c00000{bottom:310.172250px;}
.y20b8_c00000{bottom:310.260450px;}
.yd0b_c00000{bottom:310.530450px;}
.y19cc_c00000{bottom:310.532085px;}
.y28c_c00000{bottom:310.620450px;}
.y168b_c00000{bottom:310.620600px;}
.y5b1_c00000{bottom:310.710450px;}
.y5cc_c00000{bottom:310.710600px;}
.y1a97_c00000{bottom:310.800450px;}
.y1fdd_c00000{bottom:310.890450px;}
.yb03_c00000{bottom:310.980450px;}
.y1d4d_c00000{bottom:310.980600px;}
.y8b1_c00000{bottom:311.255121px;}
.y113d_c00000{bottom:311.431167px;}
.y1bb2_c00000{bottom:311.520450px;}
.yde3_c00000{bottom:311.610450px;}
.y1478_c00000{bottom:311.881485px;}
.y1f64_c00000{bottom:311.970450px;}
.ya7a_c00000{bottom:312.060450px;}
.y6b8_c00000{bottom:312.060540px;}
.y2a4_c00000{bottom:312.240450px;}
.yb13_c00000{bottom:312.240600px;}
.ycce_c00000{bottom:312.332310px;}
.y764_c00000{bottom:312.420450px;}
.y19ae_c00000{bottom:312.690450px;}
.y3fa_c00000{bottom:312.780450px;}
.y1aec_c00000{bottom:312.960600px;}
.y1f41_c00000{bottom:313.050450px;}
.y103d_c00000{bottom:313.050459px;}
.y512_c00000{bottom:313.139712px;}
.y21ff_c00000{bottom:313.140171px;}
.y21fb_c00000{bottom:313.140450px;}
.yff3_c00000{bottom:313.231017px;}
.y13f3_c00000{bottom:313.320450px;}
.y20a8_c00000{bottom:313.500450px;}
.y1b6a_c00000{bottom:313.590450px;}
.y15eb_c00000{bottom:313.680450px;}
.y205c_c00000{bottom:313.770450px;}
.ye2f_c00000{bottom:313.950450px;}
.y1bcb_c00000{bottom:313.950600px;}
.y1ad4_c00000{bottom:314.220450px;}
.yd6e_c00000{bottom:314.400450px;}
.ycab_c00000{bottom:314.400600px;}
.y1f8e_c00000{bottom:314.580450px;}
.yfea_c00000{bottom:314.760450px;}
.y1c6_c00000{bottom:314.760600px;}
.y1328_c00000{bottom:314.761314px;}
.y1561_c00000{bottom:314.940450px;}
.y1a52_c00000{bottom:315.030450px;}
.y1769_c00000{bottom:315.300540px;}
.y1dca_c00000{bottom:315.390450px;}
.y7da_c00000{bottom:315.480450px;}
.y14ad_c00000{bottom:315.570450px;}
.y127e_c00000{bottom:315.660450px;}
.yf9b_c00000{bottom:315.750450px;}
.y599_c00000{bottom:315.930450px;}
.y3df_c00000{bottom:316.020450px;}
.y20eb_c00000{bottom:316.110450px;}
.y7a_c00000{bottom:316.119144px;}
.ye0_c00000{bottom:316.383744px;}
.ya02_c00000{bottom:316.470450px;}
.y574_c00000{bottom:316.470729px;}
.y104b_c00000{bottom:316.470900px;}
.y1f1_c00000{bottom:316.560450px;}
.y1c62_c00000{bottom:316.740450px;}
.yd89_c00000{bottom:316.830450px;}
.y18d9_c00000{bottom:316.830648px;}
.y1edd_c00000{bottom:316.830816px;}
.yda5_c00000{bottom:317.010450px;}
.y1978_c00000{bottom:317.010630px;}
.y682_c00000{bottom:317.282430px;}
.yba8_c00000{bottom:317.370450px;}
.y1597_c00000{bottom:317.370600px;}
.y88c_c00000{bottom:317.461575px;}
.y62a_c00000{bottom:317.640450px;}
.y1b93_c00000{bottom:317.730009px;}
.y209a_c00000{bottom:317.730450px;}
.y1110_c00000{bottom:317.820450px;}
.y1e86_c00000{bottom:317.828334px;}
.y1f24_c00000{bottom:317.910450px;}
.y4bf_c00000{bottom:318.000450px;}
.y145d_c00000{bottom:318.180450px;}
.yc23_c00000{bottom:318.270450px;}
.y13dc_c00000{bottom:318.540450px;}
.y2167_c00000{bottom:318.630450px;}
.y131_c00000{bottom:318.720450px;}
.y1220_c00000{bottom:318.721665px;}
.y8bc_c00000{bottom:318.990540px;}
.y185_c00000{bottom:319.170450px;}
.y160e_c00000{bottom:319.170600px;}
.y78e_c00000{bottom:319.350450px;}
.y137f_c00000{bottom:319.350600px;}
.y1c8e_c00000{bottom:319.352043px;}
.ye5e_c00000{bottom:319.530450px;}
.y151d_c00000{bottom:319.710450px;}
.y3b6_c00000{bottom:319.710600px;}
.ye95_c00000{bottom:319.980450px;}
.y13a9_c00000{bottom:319.980600px;}
.y118c_c00000{bottom:320.340450px;}
.y8e3_c00000{bottom:320.430450px;}
.y1cc9_c00000{bottom:320.520450px;}
.y2005_c00000{bottom:320.521125px;}
.y12d3_c00000{bottom:320.521215px;}
.y2014_c00000{bottom:320.610450px;}
.y1554_c00000{bottom:320.610600px;}
.y416_c00000{bottom:320.790450px;}
.ybfe_c00000{bottom:320.880450px;}
.ya67_c00000{bottom:320.970450px;}
.y523_c00000{bottom:321.060450px;}
.y4de_c00000{bottom:321.060600px;}
.y2214_c00000{bottom:321.240450px;}
.y17ab_c00000{bottom:321.330450px;}
.yec5_c00000{bottom:321.330600px;}
.y90a_c00000{bottom:321.690450px;}
.y861_c00000{bottom:321.780450px;}
.yac3_c00000{bottom:321.870450px;}
.y15c0_c00000{bottom:321.960600px;}
.y1fff_c00000{bottom:322.230450px;}
.y1f2e_c00000{bottom:322.320450px;}
.y104_c00000{bottom:322.590450px;}
.y1908_c00000{bottom:322.590540px;}
.y1759_c00000{bottom:322.590600px;}
.y1095_c00000{bottom:322.680450px;}
.y23d_c00000{bottom:322.680600px;}
.y1814_c00000{bottom:322.681305px;}
.y6fb_c00000{bottom:322.770450px;}
.y15e_c00000{bottom:322.860450px;}
.y1e74_c00000{bottom:323.040450px;}
.y1dc0_c00000{bottom:323.220450px;}
.yab2_c00000{bottom:323.490450px;}
.y183a_c00000{bottom:323.580450px;}
.y14eb_c00000{bottom:323.760450px;}
.y1f05_c00000{bottom:323.760648px;}
.y1699_c00000{bottom:323.850819px;}
.yd50_c00000{bottom:323.940450px;}
.ybdb_c00000{bottom:323.940630px;}
.yce8_c00000{bottom:324.030450px;}
.y179c_c00000{bottom:324.300450px;}
.ybc2_c00000{bottom:324.300600px;}
.yf90_c00000{bottom:324.570450px;}
.y1cbd_c00000{bottom:324.750468px;}
.y839_c00000{bottom:325.110450px;}
.y15fb_c00000{bottom:325.200450px;}
.y93c_c00000{bottom:325.380450px;}
.y11_c00000{bottom:325.500000px;}
.y11e4_c00000{bottom:325.560450px;}
.y43b_c00000{bottom:325.650450px;}
.y1775_c00000{bottom:325.650540px;}
.y1798_c00000{bottom:325.651545px;}
.y17cd_c00000{bottom:325.651665px;}
.y1d33_c00000{bottom:325.740450px;}
.yee2_c00000{bottom:325.830450px;}
.y1eae_c00000{bottom:326.010996px;}
.y1b2f_c00000{bottom:326.100450px;}
.y7b6_c00000{bottom:326.276256px;}
.y7f2_c00000{bottom:326.280450px;}
.y1b7d_c00000{bottom:326.551635px;}
.y953_c00000{bottom:326.640450px;}
.y1c18_c00000{bottom:326.730450px;}
.y79d_c00000{bottom:326.820450px;}
.y157f_c00000{bottom:326.910450px;}
.y219_c00000{bottom:327.000600px;}
.y1ab_c00000{bottom:327.090450px;}
.yd88_c00000{bottom:327.180450px;}
.yb35_c00000{bottom:327.270450px;}
.y19ad_c00000{bottom:327.361485px;}
.y705_c00000{bottom:327.630450px;}
.y607_c00000{bottom:327.630540px;}
.ydbe_c00000{bottom:327.630600px;}
.ybc_c00000{bottom:327.720450px;}
.y1c3d_c00000{bottom:327.810450px;}
.yf10_c00000{bottom:327.810540px;}
.y825_c00000{bottom:327.990450px;}
.y19fe_c00000{bottom:328.080207px;}
.y2f9_c00000{bottom:328.080450px;}
.yb02_c00000{bottom:328.260450px;}
.y17cf_c00000{bottom:328.350450px;}
.y152e_c00000{bottom:328.352124px;}
.y210d_c00000{bottom:328.356792px;}
.y346_c00000{bottom:328.440450px;}
.y113c_c00000{bottom:328.530798px;}
.y1208_c00000{bottom:328.620450px;}
.y1147_c00000{bottom:328.711158px;}
.y166d_c00000{bottom:328.890450px;}
.y536_c00000{bottom:328.891635px;}
.y1c24_c00000{bottom:329.070450px;}
.ye43_c00000{bottom:329.071575px;}
.yf45_c00000{bottom:329.250600px;}
.y724_c00000{bottom:329.430450px;}
.yd37_c00000{bottom:329.520450px;}
.y1da9_c00000{bottom:329.520600px;}
.y19cb_c00000{bottom:329.521995px;}
.y52_c00000{bottom:329.610450px;}
.y5e7_c00000{bottom:329.700450px;}
.y738_c00000{bottom:329.700600px;}
.y1d5f_c00000{bottom:329.790450px;}
.y1a96_c00000{bottom:329.880450px;}
.yf66_c00000{bottom:329.970450px;}
.y136a_c00000{bottom:330.060450px;}
.y139c_c00000{bottom:330.150450px;}
.y267_c00000{bottom:330.150600px;}
.y128f_c00000{bottom:330.240450px;}
.y103c_c00000{bottom:330.330450px;}
.yfe9_c00000{bottom:330.330648px;}
.yd0a_c00000{bottom:330.420450px;}
.yff2_c00000{bottom:330.511008px;}
.y1fdc_c00000{bottom:330.691485px;}
.y205_c00000{bottom:330.780450px;}
.y1477_c00000{bottom:330.871395px;}
.y1e27_c00000{bottom:330.960600px;}
.y1e20_c00000{bottom:330.961005px;}
.y6b7_c00000{bottom:331.050450px;}
.ya5a_c00000{bottom:331.230450px;}
.yccd_c00000{bottom:331.231635px;}
.y491_c00000{bottom:331.410450px;}
.y7f9_c00000{bottom:331.410600px;}
.y15ea_c00000{bottom:331.680450px;}
.y2085_c00000{bottom:331.680600px;}
.y1327_c00000{bottom:331.770765px;}
.y131c_c00000{bottom:331.950450px;}
.y104a_c00000{bottom:332.040450px;}
.ya79_c00000{bottom:332.220450px;}
.y1727_c00000{bottom:332.310600px;}
.y2144_c00000{bottom:332.760600px;}
.y2b9_c00000{bottom:332.940450px;}
.y2d2_c00000{bottom:332.940600px;}
.y21fa_c00000{bottom:333.030450px;}
.y21fe_c00000{bottom:333.030873px;}
.y6cf_c00000{bottom:333.120450px;}
.y1705_c00000{bottom:333.390450px;}
.y1f8d_c00000{bottom:333.570450px;}
.y18d8_c00000{bottom:334.110639px;}
.y1edc_c00000{bottom:334.110807px;}
.y3b5_c00000{bottom:334.290450px;}
.y2190_c00000{bottom:334.380450px;}
.y12b4_c00000{bottom:334.470450px;}
.y1970_c00000{bottom:334.650450px;}
.y125e_c00000{bottom:334.650600px;}
.y511_c00000{bottom:334.919640px;}
.ya3f_c00000{bottom:334.920450px;}
.y1a7d_c00000{bottom:335.010450px;}
.yefc_c00000{bottom:335.100450px;}
.y394_c00000{bottom:335.190312px;}
.yc63_c00000{bottom:335.190450px;}
.y378_c00000{bottom:335.370450px;}
.y145c_c00000{bottom:335.460600px;}
.y215d_c00000{bottom:335.730450px;}
.y118b_c00000{bottom:335.910000px;}
.y1977_c00000{bottom:336.000540px;}
.yce7_c00000{bottom:336.001635px;}
.y14bb_c00000{bottom:336.090450px;}
.y127d_c00000{bottom:336.180450px;}
.y681_c00000{bottom:336.272340px;}
.y45f_c00000{bottom:336.360450px;}
.y88b_c00000{bottom:336.451485px;}
.y2022_c00000{bottom:336.540450px;}
.y561_c00000{bottom:336.630450px;}
.y9ba_c00000{bottom:336.630600px;}
.y1c8d_c00000{bottom:336.632034px;}
.y21c0_c00000{bottom:336.720450px;}
.y16e6_c00000{bottom:336.810450px;}
.y9e5_c00000{bottom:336.900600px;}
.y573_c00000{bottom:337.170450px;}
.y753_c00000{bottom:337.440450px;}
.y2039_c00000{bottom:337.710450px;}
.y121f_c00000{bottom:337.711575px;}
.y1589_c00000{bottom:337.890450px;}
.y8bb_c00000{bottom:337.980450px;}
.y13b5_c00000{bottom:338.070450px;}
.y3f9_c00000{bottom:338.070600px;}
.y663_c00000{bottom:338.340450px;}
.y2166_c00000{bottom:338.430450px;}
.y1d26_c00000{bottom:338.430729px;}
.yeb1_c00000{bottom:338.520450px;}
.y2096_c00000{bottom:338.700450px;}
.y1c5_c00000{bottom:338.700600px;}
.y15bf_c00000{bottom:339.150828px;}
.y11c2_c00000{bottom:339.240450px;}
.y2004_c00000{bottom:339.420450px;}
.y12d2_c00000{bottom:339.420540px;}
.y1b92_c00000{bottom:339.509937px;}
.y2178_c00000{bottom:339.510450px;}
.ybfd_c00000{bottom:339.690450px;}
.y415_c00000{bottom:339.780450px;}
.yb93_c00000{bottom:339.870450px;}
.y13f2_c00000{bottom:339.960600px;}
.y1f0_c00000{bottom:340.140450px;}
.y1998_c00000{bottom:340.230450px;}
.y79_c00000{bottom:340.238838px;}
.y16bb_c00000{bottom:340.320450px;}
.y1246_c00000{bottom:340.410450px;}
.ydf_c00000{bottom:340.503438px;}
.y1094_c00000{bottom:340.590450px;}
.ye7e_c00000{bottom:340.680450px;}
.y7d9_c00000{bottom:340.770450px;}
.y21d2_c00000{bottom:340.860450px;}
.y1f04_c00000{bottom:341.040639px;}
.y846_c00000{bottom:341.130450px;}
.y1698_c00000{bottom:341.130819px;}
.yba7_c00000{bottom:341.310450px;}
.y10db_c00000{bottom:341.400450px;}
.y550_c00000{bottom:341.403735px;}
.y1417_c00000{bottom:341.580450px;}
.y1813_c00000{bottom:341.580630px;}
.y1faf_c00000{bottom:341.670450px;}
.y168a_c00000{bottom:341.670600px;}
.y5b0_c00000{bottom:341.760450px;}
.y5cb_c00000{bottom:341.760600px;}
.y860_c00000{bottom:341.940708px;}
.yb71_c00000{bottom:342.030450px;}
.y1cbc_c00000{bottom:342.030459px;}
.y1d4c_c00000{bottom:342.030600px;}
.y130_c00000{bottom:342.300450px;}
.y1bb1_c00000{bottom:342.570450px;}
.yde2_c00000{bottom:342.660450px;}
.y184_c00000{bottom:342.750450px;}
.y11e3_c00000{bottom:342.750600px;}
.yd4f_c00000{bottom:342.930450px;}
.y1f63_c00000{bottom:343.020450px;}
.y1199_c00000{bottom:343.021770px;}
.y1ead_c00000{bottom:343.200807px;}
.y2a3_c00000{bottom:343.290450px;}
.yb12_c00000{bottom:343.290600px;}
.y763_c00000{bottom:343.470450px;}
.y1cee_c00000{bottom:343.830450px;}
.y1839_c00000{bottom:343.923375px;}
.y1aeb_c00000{bottom:344.010600px;}
.y952_c00000{bottom:344.191395px;}
.y108e_c00000{bottom:344.280450px;}
.y14ea_c00000{bottom:344.460450px;}
.y20a7_c00000{bottom:344.550450px;}
.y14ac_c00000{bottom:344.640450px;}
.y1797_c00000{bottom:344.641455px;}
.y17cc_c00000{bottom:344.641575px;}
.y12e2_c00000{bottom:344.642700px;}
.y205b_c00000{bottom:344.820450px;}
.ye2e_c00000{bottom:345.000450px;}
.yf65_c00000{bottom:345.000600px;}
.y1ad3_c00000{bottom:345.270450px;}
.yb01_c00000{bottom:345.450450px;}
.ycaa_c00000{bottom:345.450600px;}
.y1b7c_c00000{bottom:345.450960px;}
.y19f7_c00000{bottom:345.540600px;}
.y103b_c00000{bottom:345.630450px;}
.y113b_c00000{bottom:345.720609px;}
.y20ce_c00000{bottom:345.900600px;}
.y1a51_c00000{bottom:346.080450px;}
.y19ac_c00000{bottom:346.351395px;}
.y23c_c00000{bottom:346.440600px;}
.yf44_c00000{bottom:346.530450px;}
.y15d_c00000{bottom:346.620450px;}
.y17c0_c00000{bottom:346.710450px;}
.y12b3_c00000{bottom:346.710600px;}
.yf0f_c00000{bottom:346.800450px;}
.y598_c00000{bottom:346.980450px;}
.y3de_c00000{bottom:347.070450px;}
.y20ea_c00000{bottom:347.160450px;}
.y1c40_c00000{bottom:347.250600px;}
.yabb_c00000{bottom:347.520450px;}
.yfe8_c00000{bottom:347.520459px;}
.y157e_c00000{bottom:347.610450px;}
.y1c61_c00000{bottom:347.790450px;}
.y535_c00000{bottom:347.881545px;}
.yda4_c00000{bottom:347.970450px;}
.y38_c00000{bottom:348.000000px;}
.y7b5_c00000{bottom:348.056184px;}
.ye42_c00000{bottom:348.061485px;}
.y1e26_c00000{bottom:348.240450px;}
.y1e2c_c00000{bottom:348.240591px;}
.y1e1f_c00000{bottom:348.240996px;}
.yc92_c00000{bottom:348.420450px;}
.y1596_c00000{bottom:348.420600px;}
.y10dd_c00000{bottom:348.510450px;}
.y19ca_c00000{bottom:348.511905px;}
.y629_c00000{bottom:348.690450px;}
.y1a95_c00000{bottom:348.870450px;}
.y393_c00000{bottom:348.960600px;}
.y4be_c00000{bottom:349.050450px;}
.y218_c00000{bottom:349.050600px;}
.y1326_c00000{bottom:349.050756px;}
.y152d_c00000{bottom:349.051845px;}
.y210c_c00000{bottom:349.056513px;}
.y131b_c00000{bottom:349.230450px;}
.yc22_c00000{bottom:349.320450px;}
.y8b0_c00000{bottom:349.414464px;}
.y13db_c00000{bottom:349.590450px;}
.yee1_c00000{bottom:349.680450px;}
.y1fdb_c00000{bottom:349.681395px;}
.yd87_c00000{bottom:349.770450px;}
.y1476_c00000{bottom:349.770720px;}
.yab1_c00000{bottom:349.950450px;}
.y704_c00000{bottom:350.130450px;}
.yc7a_c00000{bottom:350.220450px;}
.y160d_c00000{bottom:350.220600px;}
.yccc_c00000{bottom:350.221545px;}
.y78d_c00000{bottom:350.400450px;}
.y137e_c00000{bottom:350.400600px;}
.ye5d_c00000{bottom:350.580450px;}
.y151c_c00000{bottom:350.760450px;}
.y1aa_c00000{bottom:350.850450px;}
.y266_c00000{bottom:350.850600px;}
.y8_c00000{bottom:351.000000px;}
.ye94_c00000{bottom:351.030450px;}
.y13a8_c00000{bottom:351.030600px;}
.y8e2_c00000{bottom:351.300450px;}
.y118a_c00000{bottom:351.390450px;}
.y1edb_c00000{bottom:351.390798px;}
.y2119_c00000{bottom:351.480450px;}
.ybfc_c00000{bottom:351.571455px;}
.y1553_c00000{bottom:351.660600px;}
.y1a20_c00000{bottom:351.750600px;}
.y1807_c00000{bottom:351.930450px;}
.ya66_c00000{bottom:352.020450px;}
.y522_c00000{bottom:352.110450px;}
.y4dd_c00000{bottom:352.110600px;}
.y28b_c00000{bottom:352.290450px;}
.y85f_c00000{bottom:352.290600px;}
.y9e_c00000{bottom:352.298685px;}
.y17aa_c00000{bottom:352.380450px;}
.yec4_c00000{bottom:352.380600px;}
.y1f8c_c00000{bottom:352.470450px;}
.y145b_c00000{bottom:352.650450px;}
.y8f7_c00000{bottom:352.740450px;}
.y1c23_c00000{bottom:352.830450px;}
.y110f_c00000{bottom:353.100450px;}
.y3b4_c00000{bottom:353.280450px;}
.y2f8_c00000{bottom:353.370450px;}
.y21f9_c00000{bottom:353.549226px;}
.y103_c00000{bottom:353.640450px;}
.y1758_c00000{bottom:353.640600px;}
.y6fa_c00000{bottom:353.820450px;}
.y1c8c_c00000{bottom:353.912025px;}
.y1e73_c00000{bottom:354.090450px;}
.y204_c00000{bottom:354.360450px;}
.y103a_c00000{bottom:354.450000px;}
.y1891_c00000{bottom:354.450729px;}
.y1d41_c00000{bottom:354.630450px;}
.y723_c00000{bottom:354.720450px;}
.y1976_c00000{bottom:354.990450px;}
.yce6_c00000{bottom:354.991545px;}
.y127c_c00000{bottom:355.170450px;}
.y680_c00000{bottom:355.171665px;}
.y166c_c00000{bottom:355.350450px;}
.ybc1_c00000{bottom:355.350600px;}
.y88a_c00000{bottom:355.350810px;}
.y218f_c00000{bottom:355.620450px;}
.y135c_c00000{bottom:355.890450px;}
.y1421_c00000{bottom:355.980450px;}
.y1e85_c00000{bottom:355.987677px;}
.y6b6_c00000{bottom:356.160450px;}
.y1d11_c00000{bottom:356.340450px;}
.y93b_c00000{bottom:356.430450px;}
.y15be_c00000{bottom:356.430819px;}
.y139b_c00000{bottom:356.520450px;}
.y43a_c00000{bottom:356.700450px;}
.y45e_c00000{bottom:356.701395px;}
.y121e_c00000{bottom:356.701485px;}
.y510_c00000{bottom:356.790153px;}
.y10da_c00000{bottom:356.880450px;}
.y96b_c00000{bottom:356.971305px;}
.yb70_c00000{bottom:357.060450px;}
.y15fa_c00000{bottom:357.150450px;}
.y752_c00000{bottom:357.330450px;}
.ya59_c00000{bottom:357.600729px;}
.y1560_c00000{bottom:357.780450px;}
.y490_c00000{bottom:357.870450px;}
.y859_c00000{bottom:358.140450px;}
.y1f03_c00000{bottom:358.230450px;}
.yb34_c00000{bottom:358.320450px;}
.y12d1_c00000{bottom:358.410450px;}
.y1697_c00000{bottom:358.410999px;}
.y1ced_c00000{bottom:358.412880px;}
.y31_c00000{bottom:358.500000px;}
.ydbd_c00000{bottom:358.680600px;}
.ybb_c00000{bottom:358.770450px;}
.y824_c00000{bottom:359.040450px;}
.yf8f_c00000{bottom:359.040600px;}
.y1d25_c00000{bottom:359.130450px;}
.y14ab_c00000{bottom:359.220450px;}
.y1cbb_c00000{bottom:359.310450px;}
.yf5b_c00000{bottom:359.400450px;}
.y345_c00000{bottom:359.490450px;}
.y1207_c00000{bottom:359.670450px;}
.y21d1_c00000{bottom:359.850450px;}
.y11e2_c00000{bottom:360.030450px;}
.y1198_c00000{bottom:360.211581px;}
.y8ba_c00000{bottom:360.300450px;}
.y13e0_c00000{bottom:360.390450px;}
.y54f_c00000{bottom:360.393645px;}
.yc62_c00000{bottom:360.480450px;}
.y1eac_c00000{bottom:360.480798px;}
.yd36_c00000{bottom:360.570450px;}
.y1812_c00000{bottom:360.570540px;}
.y1da8_c00000{bottom:360.570600px;}
.y778_c00000{bottom:360.750450px;}
.y5e6_c00000{bottom:360.750600px;}
.y1d5e_c00000{bottom:360.840450px;}
.y2213_c00000{bottom:360.930450px;}
.y1f23_c00000{bottom:361.020450px;}
.y1369_c00000{bottom:361.110450px;}
.y174e_c00000{bottom:361.200450px;}
.y1b91_c00000{bottom:361.380450px;}
.y2095_c00000{bottom:361.380600px;}
.y12f_c00000{bottom:361.470450px;}
.y1fae_c00000{bottom:361.471575px;}
.y108d_c00000{bottom:361.560450px;}
.y8d5_c00000{bottom:361.830450px;}
.ybda_c00000{bottom:361.920450px;}
.y1dc9_c00000{bottom:362.010450px;}
.y163f_c00000{bottom:362.190450px;}
.yf9a_c00000{bottom:362.280450px;}
.y572_c00000{bottom:362.460450px;}
.y637_c00000{bottom:362.460600px;}
.y51_c00000{bottom:362.550450px;}
.y1c4_c00000{bottom:362.550600px;}
.yb00_c00000{bottom:362.730450px;}
.y2084_c00000{bottom:362.730600px;}
.yb4a_c00000{bottom:362.820450px;}
.y1838_c00000{bottom:362.822700px;}
.y1049_c00000{bottom:362.910450px;}
.y113a_c00000{bottom:363.000600px;}
.y1a24_c00000{bottom:363.090450px;}
.y951_c00000{bottom:363.181305px;}
.yac2_c00000{bottom:363.270450px;}
.y1726_c00000{bottom:363.360600px;}
.y20c2_c00000{bottom:363.540600px;}
.y1796_c00000{bottom:363.631365px;}
.y17cb_c00000{bottom:363.631485px;}
.y12e1_c00000{bottom:363.632610px;}
.yf2e_c00000{bottom:363.720450px;}
.yf43_c00000{bottom:363.810450px;}
.y2143_c00000{bottom:363.810600px;}
.yba6_c00000{bottom:363.900450px;}
.y2b8_c00000{bottom:363.990450px;}
.y2d1_c00000{bottom:363.990600px;}
.y1ef_c00000{bottom:364.170450px;}
.y78_c00000{bottom:364.358532px;}
.y1704_c00000{bottom:364.440450px;}
.y1b7b_c00000{bottom:364.440870px;}
.yde_c00000{bottom:364.623132px;}
.y606_c00000{bottom:364.710600px;}
.yfe7_c00000{bottom:364.800450px;}
.y414_c00000{bottom:364.890450px;}
.y14e9_c00000{bottom:365.160450px;}
.y13f1_c00000{bottom:365.250450px;}
.y179b_c00000{bottom:365.250600px;}
.y19f6_c00000{bottom:365.340450px;}
.y19ab_c00000{bottom:365.341305px;}
.y1e2b_c00000{bottom:365.430402px;}
.y1e25_c00000{bottom:365.430450px;}
.y1e1e_c00000{bottom:365.430807px;}
.y5af_c00000{bottom:365.700450px;}
.y125d_c00000{bottom:365.700600px;}
.ya3e_c00000{bottom:365.970450px;}
.y1a7c_c00000{bottom:366.060450px;}
.yefb_c00000{bottom:366.150450px;}
.y1c3f_c00000{bottom:366.240450px;}
.y131a_c00000{bottom:366.330450px;}
.y1a1f_c00000{bottom:366.330960px;}
.y377_c00000{bottom:366.420450px;}
.y1325_c00000{bottom:366.511107px;}
.y183_c00000{bottom:366.600450px;}
.y215c_c00000{bottom:366.870450px;}
.y534_c00000{bottom:366.871455px;}
.y1189_c00000{bottom:366.960000px;}
.y15e9_c00000{bottom:366.960600px;}
.y12b2_c00000{bottom:367.050630px;}
.ye41_c00000{bottom:367.051395px;}
.y127b_c00000{bottom:367.051575px;}
.y2013_c00000{bottom:367.140450px;}
.y8f6_c00000{bottom:367.322340px;}
.y1784_c00000{bottom:367.410450px;}
.y1c3c_c00000{bottom:367.500600px;}
.y19c9_c00000{bottom:367.501815px;}
.y2021_c00000{bottom:367.590450px;}
.y560_c00000{bottom:367.680450px;}
.y9b9_c00000{bottom:367.680600px;}
.y16e5_c00000{bottom:367.860450px;}
.y1a94_c00000{bottom:367.950450px;}
.y9e4_c00000{bottom:367.950600px;}
.ya8d_c00000{bottom:368.220450px;}
.y157d_c00000{bottom:368.310600px;}
.ya21_c00000{bottom:368.490450px;}
.y1eda_c00000{bottom:368.580609px;}
.y1fda_c00000{bottom:368.671305px;}
.y2038_c00000{bottom:368.760450px;}
.y1475_c00000{bottom:368.760630px;}
.y1407_c00000{bottom:369.120450px;}
.y3f8_c00000{bottom:369.120600px;}
.yccb_c00000{bottom:369.211455px;}
.y662_c00000{bottom:369.390450px;}
.yeb0_c00000{bottom:369.570450px;}
.y1bfd_c00000{bottom:369.660450px;}
.y17a0_c00000{bottom:369.750600px;}
.y152c_c00000{bottom:369.751566px;}
.y210b_c00000{bottom:369.756234px;}
.y1f40_c00000{bottom:369.840450px;}
.y7b4_c00000{bottom:369.926697px;}
.y1039_c00000{bottom:369.930450px;}
.y11c1_c00000{bottom:370.290450px;}
.y23b_c00000{bottom:370.290600px;}
.y110e_c00000{bottom:370.380450px;}
.y15c_c00000{bottom:370.470450px;}
.y1420_c00000{bottom:370.470720px;}
.ybfb_c00000{bottom:370.470780px;}
.y1d04_c00000{bottom:370.830450px;}
.yda3_c00000{bottom:370.830600px;}
.yb92_c00000{bottom:370.920450px;}
.y217_c00000{bottom:371.010600px;}
.y1c8b_c00000{bottom:371.101836px;}
.y1997_c00000{bottom:371.280450px;}
.y16ba_c00000{bottom:371.370450px;}
.y1bca_c00000{bottom:371.460600px;}
.y265_c00000{bottom:371.550600px;}
.y1093_c00000{bottom:371.640450px;}
.y1048_c00000{bottom:371.641050px;}
.ye7d_c00000{bottom:371.730450px;}
.y7d8_c00000{bottom:371.820450px;}
.yf0e_c00000{bottom:371.910450px;}
.y845_c00000{bottom:372.180450px;}
.y3b3_c00000{bottom:372.270450px;}
.y1400_c00000{bottom:372.360450px;}
.y10d9_c00000{bottom:372.450450px;}
.y1416_c00000{bottom:372.630450px;}
.y1689_c00000{bottom:372.720600px;}
.y64b_c00000{bottom:372.810450px;}
.y5ca_c00000{bottom:372.810600px;}
.y18e8_c00000{bottom:373.080450px;}
.y1d4b_c00000{bottom:373.080600px;}
.y21f5_c00000{bottom:373.260450px;}
.y21f8_c00000{bottom:373.439928px;}
.yee0_c00000{bottom:373.440450px;}
.y15bd_c00000{bottom:373.530450px;}
.y1bb0_c00000{bottom:373.620450px;}
.yde1_c00000{bottom:373.710600px;}
.yce5_c00000{bottom:373.981455px;}
.y1f62_c00000{bottom:374.070450px;}
.yc70_c00000{bottom:374.160450px;}
.y67f_c00000{bottom:374.161575px;}
.y12e_c00000{bottom:374.250450px;}
.y2a2_c00000{bottom:374.340450px;}
.yb11_c00000{bottom:374.340600px;}
.y889_c00000{bottom:374.340720px;}
.y762_c00000{bottom:374.520450px;}
.y1a9_c00000{bottom:374.700450px;}
.y1f7d_c00000{bottom:374.880450px;}
.y1aea_c00000{bottom:375.060600px;}
.y15a2_c00000{bottom:375.150450px;}
.y20a6_c00000{bottom:375.600450px;}
.y1696_c00000{bottom:375.600969px;}
.yf2d_c00000{bottom:375.601755px;}
.y1b69_c00000{bottom:375.690450px;}
.y45d_c00000{bottom:375.691305px;}
.y121d_c00000{bottom:375.691395px;}
.y96a_c00000{bottom:375.870630px;}
.ye2d_c00000{bottom:376.050450px;}
.yf8e_c00000{bottom:376.320450px;}
.yd6d_c00000{bottom:376.410450px;}
.yca9_c00000{bottom:376.500600px;}
.yb6f_c00000{bottom:376.590450px;}
.y122b_c00000{bottom:376.680450px;}
.y163e_c00000{bottom:376.770450px;}
.y20cd_c00000{bottom:376.950600px;}
.y1a50_c00000{bottom:377.130450px;}
.y11e1_c00000{bottom:377.310450px;}
.yb49_c00000{bottom:377.400630px;}
.y1cec_c00000{bottom:377.402790px;}
.y1e34_c00000{bottom:377.490450px;}
.y1197_c00000{bottom:377.491572px;}
.ya01_c00000{bottom:377.580630px;}
.y1a10_c00000{bottom:377.670450px;}
.y1d8d_c00000{bottom:377.760450px;}
.y1eab_c00000{bottom:377.760789px;}
.yf99_c00000{bottom:377.850450px;}
.y8e1_c00000{bottom:377.940450px;}
.y1d_c00000{bottom:378.000000px;}
.y597_c00000{bottom:378.030450px;}
.y3dd_c00000{bottom:378.120450px;}
.y20e9_c00000{bottom:378.210450px;}
.ya58_c00000{bottom:378.300450px;}
.y203_c00000{bottom:378.390450px;}
.y50f_c00000{bottom:378.570081px;}
.ya65_c00000{bottom:378.570450px;}
.y218e_c00000{bottom:378.660450px;}
.y108c_c00000{bottom:378.750600px;}
.y19b0_c00000{bottom:378.840450px;}
.y1e24_c00000{bottom:379.290000px;}
.y155f_c00000{bottom:379.290600px;}
.y54e_c00000{bottom:379.383555px;}
.yc91_c00000{bottom:379.470450px;}
.y1595_c00000{bottom:379.470600px;}
.y1811_c00000{bottom:379.560450px;}
.y628_c00000{bottom:379.740450px;}
.y1d40_c00000{bottom:379.920450px;}
.yaff_c00000{bottom:380.010450px;}
.y4bd_c00000{bottom:380.100450px;}
.y1907_c00000{bottom:380.190450px;}
.yf64_c00000{bottom:380.280450px;}
.yc21_c00000{bottom:380.370450px;}
.y1fad_c00000{bottom:380.461485px;}
.y13da_c00000{bottom:380.640450px;}
.y2212_c00000{bottom:380.730450px;}
.ybd9_c00000{bottom:380.820450px;}
.yf42_c00000{bottom:381.000600px;}
.yc79_c00000{bottom:381.270450px;}
.y160c_c00000{bottom:381.270600px;}
.y6b5_c00000{bottom:381.450450px;}
.y137d_c00000{bottom:381.450600px;}
.ye5c_c00000{bottom:381.630450px;}
.y2128_c00000{bottom:381.720450px;}
.y151b_c00000{bottom:381.810450px;}
.y1837_c00000{bottom:381.812610px;}
.ye93_c00000{bottom:382.080450px;}
.yfe6_c00000{bottom:382.080600px;}
.y950_c00000{bottom:382.080630px;}
.yff1_c00000{bottom:382.081251px;}
.y1188_c00000{bottom:382.440450px;}
.y1795_c00000{bottom:382.621275px;}
.y17ca_c00000{bottom:382.621395px;}
.y12e0_c00000{bottom:382.622520px;}
.y1e2a_c00000{bottom:382.710393px;}
.y1552_c00000{bottom:382.710600px;}
.y1e1d_c00000{bottom:382.710798px;}
.y1b0a_c00000{bottom:382.800450px;}
.yaa2_c00000{bottom:382.980450px;}
.y1d1d_c00000{bottom:382.981635px;}
.y48f_c00000{bottom:383.160450px;}
.y4dc_c00000{bottom:383.160600px;}
.y17a9_c00000{bottom:383.430450px;}
.yec3_c00000{bottom:383.430600px;}
.y1b7a_c00000{bottom:383.430780px;}
.y12d0_c00000{bottom:383.520450px;}
.y1324_c00000{bottom:383.520558px;}
.y9c5_c00000{bottom:383.970450px;}
.y15e8_c00000{bottom:384.150450px;}
.y1ffe_c00000{bottom:384.330450px;}
.y19aa_c00000{bottom:384.331215px;}
.y2f7_c00000{bottom:384.420450px;}
.y34f_c00000{bottom:384.510450px;}
.y1a23_c00000{bottom:384.600549px;}
.y102_c00000{bottom:384.690450px;}
.y1427_c00000{bottom:384.690600px;}
.yb33_c00000{bottom:384.780450px;}
.y6f9_c00000{bottom:384.870450px;}
.y14e8_c00000{bottom:385.140450px;}
.ye13_c00000{bottom:385.230450px;}
.y1a1e_c00000{bottom:385.320870px;}
.y1038_c00000{bottom:385.500459px;}
.y722_c00000{bottom:385.770450px;}
.y1ed9_c00000{bottom:385.860600px;}
.y533_c00000{bottom:385.861365px;}
.y12b1_c00000{bottom:386.040540px;}
.y1a66_c00000{bottom:386.040600px;}
.ye40_c00000{bottom:386.041305px;}
.y127a_c00000{bottom:386.041485px;}
.y8f5_c00000{bottom:386.221665px;}
.y1c3_c00000{bottom:386.310600px;}
.y1cde_c00000{bottom:386.400450px;}
.ybc0_c00000{bottom:386.400600px;}
.y19c8_c00000{bottom:386.491725px;}
.y1bfc_c00000{bottom:386.850450px;}
.y1a93_c00000{bottom:387.030450px;}
.y737_c00000{bottom:387.210600px;}
.y1465_c00000{bottom:387.210798px;}
.y18d7_c00000{bottom:387.301005px;}
.y93a_c00000{bottom:387.480450px;}
.y1fd9_c00000{bottom:387.570630px;}
.y1c3b_c00000{bottom:387.660450px;}
.y8af_c00000{bottom:387.664392px;}
.y1474_c00000{bottom:387.750540px;}
.y439_c00000{bottom:387.750600px;}
.y1ee_c00000{bottom:387.930450px;}
.y10d8_c00000{bottom:387.930600px;}
.y182_c00000{bottom:388.110600px;}
.y1b2e_c00000{bottom:388.200600px;}
.ycca_c00000{bottom:388.201365px;}
.y14aa_c00000{bottom:388.290600px;}
.y751_c00000{bottom:388.380450px;}
.y5ae_c00000{bottom:388.380600px;}
.y1c8a_c00000{bottom:388.381827px;}
.y110d_c00000{bottom:388.560450px;}
.y77_c00000{bottom:388.568397px;}
.ydd_c00000{bottom:388.832997px;}
.y157c_c00000{bottom:389.010600px;}
.y141f_c00000{bottom:389.460630px;}
.ydbc_c00000{bottom:389.730600px;}
.yba_c00000{bottom:389.820450px;}
.yd_c00000{bottom:390.000000px;}
.y2177_c00000{bottom:390.000600px;}
.y605_c00000{bottom:390.090450px;}
.y413_c00000{bottom:390.180600px;}
.y2c6_c00000{bottom:390.450600px;}
.y152b_c00000{bottom:390.451287px;}
.y210a_c00000{bottom:390.455955px;}
.y1de4_c00000{bottom:390.540450px;}
.y344_c00000{bottom:390.540600px;}
.y1206_c00000{bottom:390.720450px;}
.yda2_c00000{bottom:390.720600px;}
.y15bc_c00000{bottom:390.900618px;}
.y3b2_c00000{bottom:391.170450px;}
.yb6e_c00000{bottom:391.170720px;}
.y163d_c00000{bottom:391.260450px;}
.yc61_c00000{bottom:391.530450px;}
.yd35_c00000{bottom:391.620450px;}
.y1da7_c00000{bottom:391.620600px;}
.y7b3_c00000{bottom:391.706625px;}
.y5e5_c00000{bottom:391.800450px;}
.y1d5d_c00000{bottom:391.890450px;}
.y264_c00000{bottom:392.070600px;}
.y1368_c00000{bottom:392.160450px;}
.y174d_c00000{bottom:392.250450px;}
.y2094_c00000{bottom:392.430600px;}
.yd09_c00000{bottom:392.520450px;}
.y8d4_c00000{bottom:392.880450px;}
.y1695_c00000{bottom:392.880819px;}
.y216_c00000{bottom:392.970600px;}
.yce4_c00000{bottom:392.971365px;}
.y21f4_c00000{bottom:393.060450px;}
.y67e_c00000{bottom:393.151485px;}
.y21f6_c00000{bottom:393.240450px;}
.yf98_c00000{bottom:393.330450px;}
.y888_c00000{bottom:393.330630px;}
.y571_c00000{bottom:393.510450px;}
.y7f8_c00000{bottom:393.510600px;}
.y2083_c00000{bottom:393.780600px;}
.yedf_c00000{bottom:393.870600px;}
.y50_c00000{bottom:393.960600px;}
.y28a_c00000{bottom:394.050450px;}
.y23a_c00000{bottom:394.050600px;}
.y1b55_c00000{bottom:394.140450px;}
.y1e84_c00000{bottom:394.147020px;}
.y15b_c00000{bottom:394.230450px;}
.y1f02_c00000{bottom:394.230864px;}
.yaba_c00000{bottom:394.320450px;}
.y1725_c00000{bottom:394.410600px;}
.y11e0_c00000{bottom:394.500600px;}
.y1dbf_c00000{bottom:394.590600px;}
.yf2c_c00000{bottom:394.591665px;}
.y45c_c00000{bottom:394.681215px;}
.y121c_c00000{bottom:394.681305px;}
.y1196_c00000{bottom:394.771563px;}
.y969_c00000{bottom:394.860540px;}
.y2142_c00000{bottom:394.860600px;}
.y1eaa_c00000{bottom:394.950600px;}
.y2b7_c00000{bottom:395.040450px;}
.y2d0_c00000{bottom:395.040600px;}
.y6ce_c00000{bottom:395.220450px;}
.y1703_c00000{bottom:395.490450px;}
.y1f9a_c00000{bottom:395.850450px;}
.yab0_c00000{bottom:395.940450px;}
.y108b_c00000{bottom:396.030450px;}
.y1cba_c00000{bottom:396.210600px;}
.y13f0_c00000{bottom:396.300450px;}
.yb48_c00000{bottom:396.390540px;}
.y1ceb_c00000{bottom:396.392700px;}
.ya00_c00000{bottom:396.479955px;}
.y1ab6_c00000{bottom:396.660450px;}
.y1245_c00000{bottom:396.750450px;}
.y125c_c00000{bottom:396.750600px;}
.ya3d_c00000{bottom:397.020450px;}
.y1a7b_c00000{bottom:397.110450px;}
.yefa_c00000{bottom:397.200450px;}
.yafe_c00000{bottom:397.200600px;}
.y17bf_c00000{bottom:397.290600px;}
.yf63_c00000{bottom:397.380450px;}
.y376_c00000{bottom:397.470450px;}
.y3dc_c00000{bottom:397.560450px;}
.y1187_c00000{bottom:398.010000px;}
.y12d_c00000{bottom:398.010450px;}
.y1a8_c00000{bottom:398.280450px;}
.y2127_c00000{bottom:398.370600px;}
.y54d_c00000{bottom:398.373465px;}
.y1783_c00000{bottom:398.460450px;}
.y21d0_c00000{bottom:398.550450px;}
.y55f_c00000{bottom:398.730450px;}
.y9b8_c00000{bottom:398.730600px;}
.y14e7_c00000{bottom:398.910450px;}
.y9e3_c00000{bottom:399.000600px;}
.y73f_c00000{bottom:399.270600px;}
.y1fac_c00000{bottom:399.451395px;}
.ya20_c00000{bottom:399.540450px;}
.yd4e_c00000{bottom:399.810450px;}
.y1e29_c00000{bottom:399.990384px;}
.y1e23_c00000{bottom:399.990450px;}
.y1e1c_c00000{bottom:399.990789px;}
.yfe5_c00000{bottom:399.990900px;}
.y1406_c00000{bottom:400.170450px;}
.y3f7_c00000{bottom:400.170600px;}
.y10dc_c00000{bottom:400.260450px;}
.y661_c00000{bottom:400.440450px;}
.y50e_c00000{bottom:400.440594px;}
.y15f9_c00000{bottom:400.530357px;}
.y1f61_c00000{bottom:400.530450px;}
.yc6f_c00000{bottom:400.530729px;}
.yeaf_c00000{bottom:400.620600px;}
.y148a_c00000{bottom:400.710600px;}
.y21c3_c00000{bottom:400.800450px;}
.y1836_c00000{bottom:400.802520px;}
.ybd8_c00000{bottom:400.980450px;}
.y94f_c00000{bottom:401.070540px;}
.y11c0_c00000{bottom:401.340450px;}
.y17c9_c00000{bottom:401.520720px;}
.y12df_c00000{bottom:401.521845px;}
.y1312_c00000{bottom:401.700600px;}
.y13fe_c00000{bottom:401.790600px;}
.y736_c00000{bottom:401.792520px;}
.y1d03_c00000{bottom:401.880450px;}
.yb91_c00000{bottom:401.970450px;}
.y1d1c_c00000{bottom:401.971545px;}
.y202_c00000{bottom:402.150450px;}
.y1996_c00000{bottom:402.330450px;}
.y16b9_c00000{bottom:402.420450px;}
.y1b79_c00000{bottom:402.420690px;}
.y1092_c00000{bottom:402.690450px;}
.ye7c_c00000{bottom:402.780450px;}
.y7d7_c00000{bottom:402.870450px;}
.y14a9_c00000{bottom:402.870600px;}
.y1b90_c00000{bottom:402.960600px;}
.y844_c00000{bottom:403.230450px;}
.y8e0_c00000{bottom:403.230600px;}
.y19a9_c00000{bottom:403.321125px;}
.y10d7_c00000{bottom:403.500600px;}
.y1415_c00000{bottom:403.680450px;}
.y1ed8_c00000{bottom:403.680600px;}
.y1688_c00000{bottom:403.770600px;}
.y64a_c00000{bottom:403.860450px;}
.y5c9_c00000{bottom:403.860600px;}
.y18e7_c00000{bottom:404.130450px;}
.y1d4a_c00000{bottom:404.130600px;}
.y1c17_c00000{bottom:404.310450px;}
.y1a1d_c00000{bottom:404.310780px;}
.y145a_c00000{bottom:404.400450px;}
.y1464_c00000{bottom:404.400609px;}
.y909_c00000{bottom:404.490450px;}
.y18d6_c00000{bottom:404.580996px;}
.y910_c00000{bottom:404.670450px;}
.yde0_c00000{bottom:404.760450px;}
.y532_c00000{bottom:404.760690px;}
.y20c1_c00000{bottom:404.940450px;}
.y12b0_c00000{bottom:405.030450px;}
.ye3f_c00000{bottom:405.031215px;}
.y1279_c00000{bottom:405.031395px;}
.y1f99_c00000{bottom:405.031485px;}
.yb10_c00000{bottom:405.210600px;}
.y8f4_c00000{bottom:405.211575px;}
.y2a1_c00000{bottom:405.390450px;}
.y189e_c00000{bottom:405.390600px;}
.y19c7_c00000{bottom:405.481635px;}
.y761_c00000{bottom:405.570450px;}
.y1c89_c00000{bottom:405.661818px;}
.ye06_c00000{bottom:405.750450px;}
.y110c_c00000{bottom:405.750600px;}
.y163c_c00000{bottom:405.840600px;}
.y1f7c_c00000{bottom:405.930450px;}
.y1a92_c00000{bottom:406.020600px;}
.y1ae9_c00000{bottom:406.110600px;}
.y181_c00000{bottom:406.380450px;}
.y1fd8_c00000{bottom:406.560540px;}
.y20a5_c00000{bottom:406.650450px;}
.y1473_c00000{bottom:406.740450px;}
.ye2c_c00000{bottom:407.100450px;}
.ycc9_c00000{bottom:407.191275px;}
.yd29_c00000{bottom:407.370600px;}
.yca8_c00000{bottom:407.550600px;}
.y1c3a_c00000{bottom:407.910450px;}
.y20cc_c00000{bottom:408.000600px;}
.y2176_c00000{bottom:408.090600px;}
.y1a4f_c00000{bottom:408.180450px;}
.y15bb_c00000{bottom:408.180609px;}
.y1b43_c00000{bottom:408.360600px;}
.y141e_c00000{bottom:408.450540px;}
.ybfa_c00000{bottom:408.450600px;}
.y1dc8_c00000{bottom:408.540600px;}
.y1a0f_c00000{bottom:408.720450px;}
.y1d8c_c00000{bottom:408.810450px;}
.y12cf_c00000{bottom:408.810600px;}
.yf97_c00000{bottom:408.900450px;}
.y1e50_c00000{bottom:408.990450px;}
.y596_c00000{bottom:409.080450px;}
.y1551_c00000{bottom:409.170450px;}
.yede_c00000{bottom:409.170600px;}
.y20e8_c00000{bottom:409.260450px;}
.y1f8b_c00000{bottom:409.440450px;}
.y91e_c00000{bottom:409.620600px;}
.yaa1_c00000{bottom:409.620729px;}
.y157b_c00000{bottom:409.710600px;}
.y1c60_c00000{bottom:409.890450px;}
.yb32_c00000{bottom:410.070450px;}
.y3b1_c00000{bottom:410.160450px;}
.y1c2_c00000{bottom:410.160600px;}
.yb6d_c00000{bottom:410.160630px;}
.y1694_c00000{bottom:410.160999px;}
.yc90_c00000{bottom:410.520450px;}
.y1594_c00000{bottom:410.520600px;}
.y627_c00000{bottom:410.790450px;}
.yf8d_c00000{bottom:410.790600px;}
.y1d3f_c00000{bottom:410.970450px;}
.y34e_c00000{bottom:411.150450px;}
.y152a_c00000{bottom:411.151008px;}
.y2109_c00000{bottom:411.155676px;}
.yc20_c00000{bottom:411.240450px;}
.y206f_c00000{bottom:411.330450px;}
.y2020_c00000{bottom:411.510450px;}
.y1f01_c00000{bottom:411.510855px;}
.y1e72_c00000{bottom:411.600450px;}
.y13d9_c00000{bottom:411.690450px;}
.y1ed_c00000{bottom:411.780450px;}
.yd86_c00000{bottom:411.870450px;}
.yce3_c00000{bottom:411.870690px;}
.y1195_c00000{bottom:411.961374px;}
.y67d_c00000{bottom:412.141395px;}
.y3db_c00000{bottom:412.230450px;}
.yc78_c00000{bottom:412.320450px;}
.y887_c00000{bottom:412.320540px;}
.y160b_c00000{bottom:412.320600px;}
.y6b4_c00000{bottom:412.500450px;}
.ye5b_c00000{bottom:412.680450px;}
.y1d10_c00000{bottom:412.680600px;}
.y76_c00000{bottom:412.688091px;}
.y263_c00000{bottom:412.770600px;}
.y151a_c00000{bottom:412.860450px;}
.y1bf7_c00000{bottom:412.950600px;}
.ydc_c00000{bottom:412.952691px;}
.ye92_c00000{bottom:413.130450px;}
.y139a_c00000{bottom:413.130600px;}
.y21f7_c00000{bottom:413.131152px;}
.y108a_c00000{bottom:413.310450px;}
.y1186_c00000{bottom:413.490450px;}
.y7b2_c00000{bottom:413.577138px;}
.yf2b_c00000{bottom:413.581575px;}
.y45b_c00000{bottom:413.671125px;}
.y121b_c00000{bottom:413.671215px;}
.y1e21_c00000{bottom:413.760000px;}
.y1806_c00000{bottom:414.030450px;}
.y48e_c00000{bottom:414.210450px;}
.y4db_c00000{bottom:414.210600px;}
.y17a8_c00000{bottom:414.390450px;}
.yec2_c00000{bottom:414.390600px;}
.yafd_c00000{bottom:414.480450px;}
.y1b1e_c00000{bottom:414.570450px;}
.yb47_c00000{bottom:415.380450px;}
.y1cea_c00000{bottom:415.382610px;}
.y2f6_c00000{bottom:415.470450px;}
.y318_c00000{bottom:415.560450px;}
.y1ab5_c00000{bottom:415.650450px;}
.y101_c00000{bottom:415.740450px;}
.y1426_c00000{bottom:415.740600px;}
.y6f8_c00000{bottom:415.920450px;}
.y21bf_c00000{bottom:416.010450px;}
.y32a_c00000{bottom:416.550450px;}
.yaaf_c00000{bottom:416.640450px;}
.y721_c00000{bottom:416.820450px;}
.y1a65_c00000{bottom:417.090600px;}
.y1e28_c00000{bottom:417.180195px;}
.y1e1b_c00000{bottom:417.180600px;}
.y2165_c00000{bottom:417.270600px;}
.y54c_c00000{bottom:417.272790px;}
.y14a8_c00000{bottom:417.360600px;}
.y1cdd_c00000{bottom:417.450450px;}
.ybbf_c00000{bottom:417.450600px;}
.y289_c00000{bottom:417.900450px;}
.y215_c00000{bottom:417.900600px;}
.y9e2_c00000{bottom:417.990450px;}
.y15a_c00000{bottom:418.080450px;}
.y1091_c00000{bottom:418.260450px;}
.y1dbe_c00000{bottom:418.440450px;}
.y1fab_c00000{bottom:418.441305px;}
.y939_c00000{bottom:418.530450px;}
.y438_c00000{bottom:418.620600px;}
.y4f_c00000{bottom:418.710600px;}
.yd4d_c00000{bottom:418.800450px;}
.y1dd0_c00000{bottom:418.890450px;}
.y10d6_c00000{bottom:418.980450px;}
.y1b2d_c00000{bottom:419.070450px;}
.yd6c_c00000{bottom:419.160600px;}
.y750_c00000{bottom:419.430450px;}
.y5ad_c00000{bottom:419.430600px;}
.y1794_c00000{bottom:419.700600px;}
.y1835_c00000{bottom:419.792430px;}
.y6e0_c00000{bottom:419.880450px;}
.y1047_c00000{bottom:419.970117px;}
.y5c4_c00000{bottom:419.970450px;}
.y94e_c00000{bottom:420.060450px;}
.y163b_c00000{bottom:420.330450px;}
.y1139_c00000{bottom:420.510450px;}
.y17c8_c00000{bottom:420.510630px;}
.y12de_c00000{bottom:420.511755px;}
.y125b_c00000{bottom:420.690450px;}
.ydbb_c00000{bottom:420.780600px;}
.y735_c00000{bottom:420.782430px;}
.yb9_c00000{bottom:420.870450px;}
.ybd7_c00000{bottom:420.870600px;}
.y1d1b_c00000{bottom:420.961455px;}
.y604_c00000{bottom:421.140450px;}
.y412_c00000{bottom:421.230450px;}
.y2141_c00000{bottom:421.320450px;}
.y1bfb_c00000{bottom:421.410600px;}
.y2cf_c00000{bottom:421.500600px;}
.y1de3_c00000{bottom:421.590450px;}
.y343_c00000{bottom:421.590600px;}
.y12c_c00000{bottom:421.680600px;}
.y1205_c00000{bottom:421.770450px;}
.y1ed7_c00000{bottom:421.860666px;}
.y18d5_c00000{bottom:421.860987px;}
.y1a7_c00000{bottom:422.130450px;}
.y19a8_c00000{bottom:422.220450px;}
.y50d_c00000{bottom:422.220522px;}
.yc60_c00000{bottom:422.580450px;}
.yd34_c00000{bottom:422.670450px;}
.y1da6_c00000{bottom:422.670600px;}
.y5e4_c00000{bottom:422.850450px;}
.y1c88_c00000{bottom:422.851629px;}
.y1d5c_c00000{bottom:422.940450px;}
.y110b_c00000{bottom:423.030450px;}
.y1367_c00000{bottom:423.210450px;}
.y2093_c00000{bottom:423.210600px;}
.y174c_c00000{bottom:423.300450px;}
.y1a1c_c00000{bottom:423.300690px;}
.yb90_c00000{bottom:423.480450px;}
.yd08_c00000{bottom:423.570450px;}
.y8d3_c00000{bottom:423.930450px;}
.ye3e_c00000{bottom:424.021125px;}
.y1278_c00000{bottom:424.021305px;}
.y1f98_c00000{bottom:424.021395px;}
.yf62_c00000{bottom:424.110600px;}
.y2211_c00000{bottom:424.200600px;}
.y8f3_c00000{bottom:424.201485px;}
.y1c22_c00000{bottom:424.290600px;}
.yf96_c00000{bottom:424.380450px;}
.y19c6_c00000{bottom:424.380960px;}
.y570_c00000{bottom:424.560450px;}
.y7f7_c00000{bottom:424.560600px;}
.y1810_c00000{bottom:424.740450px;}
.y2082_c00000{bottom:424.740600px;}
.y9d_c00000{bottom:424.747938px;}
.y1a91_c00000{bottom:425.100450px;}
.y1b54_c00000{bottom:425.190450px;}
.y5c8_c00000{bottom:425.370600px;}
.y15ba_c00000{bottom:425.460600px;}
.y1fd7_c00000{bottom:425.550450px;}
.y1bd5_c00000{bottom:425.730450px;}
.y1f60_c00000{bottom:425.820450px;}
.y8ae_c00000{bottom:425.823735px;}
.y19f5_c00000{bottom:425.910600px;}
.y201_c00000{bottom:426.000450px;}
.y2b6_c00000{bottom:426.090450px;}
.ycc8_c00000{bottom:426.090600px;}
.y6cd_c00000{bottom:426.270600px;}
.y1c39_c00000{bottom:426.360600px;}
.y1e71_c00000{bottom:426.450648px;}
.y1702_c00000{bottom:426.540450px;}
.y1a3e_c00000{bottom:426.540600px;}
.y1472_c00000{bottom:426.900450px;}
.yeae_c00000{bottom:427.080450px;}
.y1693_c00000{bottom:427.170609px;}
.y13ef_c00000{bottom:427.350450px;}
.y1244_c00000{bottom:427.800450px;}
.y14e6_c00000{bottom:427.980450px;}
.ya3c_c00000{bottom:428.070450px;}
.y1a7a_c00000{bottom:428.160450px;}
.yef9_c00000{bottom:428.250450px;}
.y1f8a_c00000{bottom:428.430600px;}
.y13fd_c00000{bottom:428.430654px;}
.y375_c00000{bottom:428.520600px;}
.y1e4f_c00000{bottom:428.610162px;}
.y1b42_c00000{bottom:428.790600px;}
.y1f00_c00000{bottom:428.790846px;}
.y11df_c00000{bottom:428.970450px;}
.y1185_c00000{bottom:429.061005px;}
.y3b0_c00000{bottom:429.150450px;}
.yb6c_c00000{bottom:429.150540px;}
.y1e30_c00000{bottom:429.240450px;}
.y1194_c00000{bottom:429.241365px;}
.y1782_c00000{bottom:429.510450px;}
.y55e_c00000{bottom:429.780450px;}
.y908_c00000{bottom:429.780600px;}
.y16e4_c00000{bottom:429.960450px;}
.y196d_c00000{bottom:429.960600px;}
.y9e1_c00000{bottom:430.050159px;}
.y2175_c00000{bottom:430.050450px;}
.y180_c00000{bottom:430.230450px;}
.y8b8_c00000{bottom:430.320450px;}
.y157a_c00000{bottom:430.410600px;}
.y1089_c00000{bottom:430.500600px;}
.ya1f_c00000{bottom:430.590450px;}
.yce2_c00000{bottom:430.860600px;}
.y1cb9_c00000{bottom:430.950600px;}
.y1ea9_c00000{bottom:430.950864px;}
.yfe4_c00000{bottom:431.040900px;}
.y67c_c00000{bottom:431.131305px;}
.y3da_c00000{bottom:431.220450px;}
.y3f6_c00000{bottom:431.220600px;}
.y886_c00000{bottom:431.310450px;}
.y218d_c00000{bottom:431.400450px;}
.y660_c00000{bottom:431.490450px;}
.yb0f_c00000{bottom:431.580879px;}
.yafc_c00000{bottom:431.760450px;}
.y327_c00000{bottom:431.850450px;}
.y1529_c00000{bottom:431.850729px;}
.y2108_c00000{bottom:431.855397px;}
.y968_c00000{bottom:431.940450px;}
.y760_c00000{bottom:432.030450px;}
.y262_c00000{bottom:432.210600px;}
.y1e83_c00000{bottom:432.306363px;}
.y11bf_c00000{bottom:432.390450px;}
.yf2a_c00000{bottom:432.480900px;}
.y45a_c00000{bottom:432.570450px;}
.y121a_c00000{bottom:432.570540px;}
.y17be_c00000{bottom:432.571485px;}
.y125a_c00000{bottom:432.571755px;}
.yf47_c00000{bottom:432.750600px;}
.y122a_c00000{bottom:432.930450px;}
.yedd_c00000{bottom:432.930600px;}
.y201f_c00000{bottom:433.290600px;}
.y16b8_c00000{bottom:433.380450px;}
.y1b1d_c00000{bottom:433.560450px;}
.y21f3_c00000{bottom:433.647873px;}
.y1090_c00000{bottom:433.740450px;}
.yd28_c00000{bottom:433.740879px;}
.ye7b_c00000{bottom:433.830450px;}
.y7d6_c00000{bottom:433.920450px;}
.y1c1_c00000{bottom:433.920600px;}
.y1b8f_c00000{bottom:434.010450px;}
.y843_c00000{bottom:434.280450px;}
.y8df_c00000{bottom:434.280600px;}
.y1ce9_c00000{bottom:434.281935px;}
.y10d5_c00000{bottom:434.550450px;}
.yb46_c00000{bottom:434.730450px;}
.y2126_c00000{bottom:434.820450px;}
.y1687_c00000{bottom:434.820600px;}
.y649_c00000{bottom:434.910450px;}
.y90e_c00000{bottom:434.910600px;}
.y18e6_c00000{bottom:435.090450px;}
.y1d49_c00000{bottom:435.090600px;}
.y20e2_c00000{bottom:435.180600px;}
.y7b1_c00000{bottom:435.357066px;}
.y1c16_c00000{bottom:435.360450px;}
.y1355_c00000{bottom:435.450600px;}
.y1ec_c00000{bottom:435.540450px;}
.y1baf_c00000{bottom:435.720450px;}
.yddf_c00000{bottom:435.810450px;}
.y21be_c00000{bottom:435.900450px;}
.y1da0_c00000{bottom:436.082430px;}
.y1311_c00000{bottom:436.170450px;}
.y2073_c00000{bottom:436.260450px;}
.y54b_c00000{bottom:436.262700px;}
.y2a0_c00000{bottom:436.440450px;}
.y189d_c00000{bottom:436.440600px;}
.y1906_c00000{bottom:436.530450px;}
.ye05_c00000{bottom:436.800450px;}
.y75_c00000{bottom:436.807785px;}
.y1f7b_c00000{bottom:436.980450px;}
.ydb_c00000{bottom:437.072385px;}
.y15e7_c00000{bottom:437.160600px;}
.y1f91_c00000{bottom:437.250600px;}
.y1faa_c00000{bottom:437.431215px;}
.yaae_c00000{bottom:437.520600px;}
.yc1f_c00000{bottom:437.610729px;}
.y20a4_c00000{bottom:437.700450px;}
.y1b68_c00000{bottom:437.790450px;}
.yd4c_c00000{bottom:437.790600px;}
.y1b78_c00000{bottom:437.880450px;}
.y1b09_c00000{bottom:437.970450px;}
.ye2b_c00000{bottom:438.150450px;}
.y1037_c00000{bottom:438.151701px;}
.y2140_c00000{bottom:438.240450px;}
.y1ba6_c00000{bottom:438.330450px;}
.y1bfa_c00000{bottom:438.600450px;}
.yca7_c00000{bottom:438.600600px;}
.y1f3f_c00000{bottom:438.780450px;}
.y1834_c00000{bottom:438.782340px;}
.y18d4_c00000{bottom:439.050798px;}
.y1a4e_c00000{bottom:439.140450px;}
.y1ed6_c00000{bottom:439.140657px;}
.y17c7_c00000{bottom:439.500540px;}
.y12dd_c00000{bottom:439.501665px;}
.y317_c00000{bottom:439.590450px;}
.y144d_c00000{bottom:439.680600px;}
.y1a0e_c00000{bottom:439.770450px;}
.y734_c00000{bottom:439.772340px;}
.y1d8b_c00000{bottom:439.860450px;}
.y12ce_c00000{bottom:439.860600px;}
.y4e_c00000{bottom:439.950600px;}
.y1d1a_c00000{bottom:439.951365px;}
.y1109_c00000{bottom:440.040600px;}
.y595_c00000{bottom:440.130450px;}
.y1c87_c00000{bottom:440.131620px;}
.y110a_c00000{bottom:440.220450px;}
.y20e7_c00000{bottom:440.310450px;}
.y4bc_c00000{bottom:440.580450px;}
.ya78_c00000{bottom:440.670450px;}
.y1550_c00000{bottom:440.670468px;}
.y12b_c00000{bottom:440.850450px;}
.y1c5f_c00000{bottom:440.940450px;}
.yb31_c00000{bottom:441.030450px;}
.y1138_c00000{bottom:441.210600px;}
.ybbe_c00000{bottom:441.300450px;}
.y2063_c00000{bottom:441.390450px;}
.yc8f_c00000{bottom:441.570450px;}
.y1dcf_c00000{bottom:441.570600px;}
.y159_c00000{bottom:441.660450px;}
.y214_c00000{bottom:441.660600px;}
.y626_c00000{bottom:441.840450px;}
.y14e5_c00000{bottom:441.840600px;}
.y531_c00000{bottom:441.930600px;}
.y1d3e_c00000{bottom:442.020450px;}
.yd6b_c00000{bottom:442.020600px;}
.y100_c00000{bottom:442.200600px;}
.y331_c00000{bottom:442.200729px;}
.y1a1b_c00000{bottom:442.290600px;}
.y1e4e_c00000{bottom:442.380450px;}
.y15b9_c00000{bottom:442.650450px;}
.y13d8_c00000{bottom:442.740450px;}
.yd85_c00000{bottom:442.920450px;}
.y1277_c00000{bottom:442.920630px;}
.y1f97_c00000{bottom:442.920720px;}
.y1459_c00000{bottom:443.100648px;}
.y8f2_c00000{bottom:443.191395px;}
.yb8f_c00000{bottom:443.280450px;}
.y160a_c00000{bottom:443.280600px;}
.y19c5_c00000{bottom:443.370870px;}
.y6b3_c00000{bottom:443.550450px;}
.y2210_c00000{bottom:443.640450px;}
.y1e70_c00000{bottom:443.640459px;}
.ye5a_c00000{bottom:443.730450px;}
.y1519_c00000{bottom:443.910450px;}
.ye91_c00000{bottom:444.180450px;}
.y1399_c00000{bottom:444.180600px;}
.y1692_c00000{bottom:444.450639px;}
.yda1_c00000{bottom:444.540600px;}
.y19a7_c00000{bottom:444.810450px;}
.y1023_c00000{bottom:444.900000px;}
.y437_c00000{bottom:444.990978px;}
.y1793_c00000{bottom:445.080450px;}
.y1fd6_c00000{bottom:445.170450px;}
.y48d_c00000{bottom:445.260450px;}
.y4da_c00000{bottom:445.260600px;}
.y1c38_c00000{bottom:445.350450px;}
.y17a7_c00000{bottom:445.440450px;}
.yec1_c00000{bottom:445.440600px;}
.y1b2c_c00000{bottom:445.440729px;}
.y1930_c00000{bottom:445.530450px;}
.ybf9_c00000{bottom:445.530600px;}
.y1a6_c00000{bottom:445.890450px;}
.y1eff_c00000{bottom:445.980657px;}
.y90f_c00000{bottom:446.070450px;}
.ycc7_c00000{bottom:446.250450px;}
.y1184_c00000{bottom:446.340996px;}
.y1ffd_c00000{bottom:446.430450px;}
.y14a7_c00000{bottom:446.430600px;}
.y2f5_c00000{bottom:446.520450px;}
.y1193_c00000{bottom:446.521356px;}
.yfe3_c00000{bottom:446.610450px;}
.y967_c00000{bottom:446.610720px;}
.y75f_c00000{bottom:446.611575px;}
.y2ce_c00000{bottom:446.790450px;}
.y2c5_c00000{bottom:446.790600px;}
.y19f4_c00000{bottom:446.880450px;}
.y6f7_c00000{bottom:446.970450px;}
.y1e5d_c00000{bottom:447.150789px;}
.y1f89_c00000{bottom:447.330450px;}
.y261_c00000{bottom:447.420450px;}
.y603_c00000{bottom:447.600450px;}
.y1b41_c00000{bottom:447.780600px;}
.y720_c00000{bottom:447.870450px;}
.y1c21_c00000{bottom:448.050450px;}
.y3af_c00000{bottom:448.140450px;}
.y1ea8_c00000{bottom:448.230855px;}
.y9bf_c00000{bottom:448.500450px;}
.y1e65_c00000{bottom:448.860459px;}
.yafb_c00000{bottom:448.950600px;}
.y13fc_c00000{bottom:449.040600px;}
.y108f_c00000{bottom:449.310450px;}
.y163a_c00000{bottom:449.490450px;}
.y938_c00000{bottom:449.580450px;}
.y200_c00000{bottom:449.760450px;}
.yf61_c00000{bottom:449.850450px;}
.y1bd6_c00000{bottom:450.030600px;}
.y67b_c00000{bottom:450.121215px;}
.y3d9_c00000{bottom:450.210600px;}
.y74f_c00000{bottom:450.480450px;}
.y5ac_c00000{bottom:450.480600px;}
.y2174_c00000{bottom:450.570450px;}
.yf40_c00000{bottom:450.750450px;}
.y1bf6_c00000{bottom:450.840600px;}
.y1cb8_c00000{bottom:450.930600px;}
.ya8c_c00000{bottom:451.020600px;}
.y1579_c00000{bottom:451.110450px;}
.y2092_c00000{bottom:451.200729px;}
.y885_c00000{bottom:451.470450px;}
.yf29_c00000{bottom:451.470810px;}
.y1219_c00000{bottom:451.560450px;}
.y17bd_c00000{bottom:451.561395px;}
.y1259_c00000{bottom:451.561665px;}
.y201c_c00000{bottom:451.650450px;}
.y10d4_c00000{bottom:451.740450px;}
.ydba_c00000{bottom:451.830600px;}
.yb8_c00000{bottom:451.920450px;}
.ybd6_c00000{bottom:451.920600px;}
.y9e0_c00000{bottom:451.920672px;}
.y823_c00000{bottom:452.190450px;}
.y411_c00000{bottom:452.280600px;}
.yead_c00000{bottom:452.370450px;}
.y1528_c00000{bottom:452.550450px;}
.y2107_c00000{bottom:452.555118px;}
.y342_c00000{bottom:452.640450px;}
.y1354_c00000{bottom:452.730450px;}
.y1204_c00000{bottom:452.820450px;}
.y1ce8_c00000{bottom:453.271845px;}
.y1310_c00000{bottom:453.450600px;}
.y21f2_c00000{bottom:453.538575px;}
.y12a_c00000{bottom:453.540450px;}
.y12af_c00000{bottom:453.540600px;}
.yc5f_c00000{bottom:453.630450px;}
.y1da5_c00000{bottom:453.630600px;}
.y5e3_c00000{bottom:453.900450px;}
.y17f_c00000{bottom:453.990450px;}
.yb45_c00000{bottom:454.170450px;}
.y1366_c00000{bottom:454.260450px;}
.y174b_c00000{bottom:454.350450px;}
.yd27_c00000{bottom:454.440600px;}
.yd07_c00000{bottom:454.530450px;}
.ya3b_c00000{bottom:454.530600px;}
.y8d2_c00000{bottom:454.980450px;}
.y1d9f_c00000{bottom:454.981755px;}
.y201e_c00000{bottom:455.070450px;}
.y1b77_c00000{bottom:455.070600px;}
.y316_c00000{bottom:455.160450px;}
.y1e13_c00000{bottom:455.160657px;}
.y54a_c00000{bottom:455.252610px;}
.y8b7_c00000{bottom:455.430600px;}
.y1036_c00000{bottom:455.431692px;}
.y56f_c00000{bottom:455.610450px;}
.y636_c00000{bottom:455.610600px;}
.y21bd_c00000{bottom:455.700600px;}
.y180f_c00000{bottom:455.790450px;}
.y2081_c00000{bottom:455.790600px;}
.y1bf9_c00000{bottom:455.880450px;}
.y1f3e_c00000{bottom:456.060450px;}
.y1ba5_c00000{bottom:456.150450px;}
.y1b53_c00000{bottom:456.240450px;}
.y14e4_c00000{bottom:456.330450px;}
.y1ed5_c00000{bottom:456.330468px;}
.y1fa9_c00000{bottom:456.330540px;}
.y18d3_c00000{bottom:456.330789px;}
.y1724_c00000{bottom:456.510600px;}
.y2164_c00000{bottom:456.690600px;}
.y1f5f_c00000{bottom:456.780450px;}
.yd4b_c00000{bottom:456.780600px;}
.y144c_c00000{bottom:456.870600px;}
.y15ff_c00000{bottom:456.960600px;}
.y15a1_c00000{bottom:457.050450px;}
.y2b5_c00000{bottom:457.140450px;}
.y1539_c00000{bottom:457.140600px;}
.y7b0_c00000{bottom:457.227579px;}
.y6cc_c00000{bottom:457.320450px;}
.y1c86_c00000{bottom:457.321431px;}
.y1e4d_c00000{bottom:457.500450px;}
.y1c0_c00000{bottom:457.500600px;}
.y1701_c00000{bottom:457.590450px;}
.y1a3d_c00000{bottom:457.590600px;}
.y459_c00000{bottom:457.680600px;}
.y1833_c00000{bottom:457.681665px;}
.y4bb_c00000{bottom:457.860600px;}
.y154f_c00000{bottom:457.950459px;}
.y15e6_c00000{bottom:458.040600px;}
.yaad_c00000{bottom:458.220450px;}
.yc1e_c00000{bottom:458.310450px;}
.y13ee_c00000{bottom:458.400450px;}
.y17c6_c00000{bottom:458.490450px;}
.y12dc_c00000{bottom:458.491575px;}
.y733_c00000{bottom:458.671665px;}
.y1243_c00000{bottom:458.850450px;}
.y1d19_c00000{bottom:458.941275px;}
.y20e1_c00000{bottom:459.030600px;}
.y1a79_c00000{bottom:459.210450px;}
.yef8_c00000{bottom:459.300450px;}
.y1eb_c00000{bottom:459.390450px;}
.y374_c00000{bottom:459.570450px;}
.y15b8_c00000{bottom:459.931224px;}
.ye7a_c00000{bottom:460.290600px;}
.y1022_c00000{bottom:460.380450px;}
.y1458_c00000{bottom:460.380639px;}
.y1781_c00000{bottom:460.560450px;}
.y158_c00000{bottom:460.830450px;}
.y907_c00000{bottom:460.830600px;}
.y1e6f_c00000{bottom:460.920450px;}
.y74_c00000{bottom:460.927479px;}
.y14a6_c00000{bottom:461.010312px;}
.y16e3_c00000{bottom:461.010450px;}
.y1414_c00000{bottom:461.190600px;}
.yda_c00000{bottom:461.192079px;}
.y93_c00000{bottom:461.197992px;}
.y4d_c00000{bottom:461.460600px;}
.y1d48_c00000{bottom:461.550450px;}
.ya1e_c00000{bottom:461.640450px;}
.y50c_c00000{bottom:461.730450px;}
.yd6a_c00000{bottom:461.910450px;}
.y1276_c00000{bottom:461.910540px;}
.y1f96_c00000{bottom:461.910630px;}
.yfe2_c00000{bottom:462.090900px;}
.y8f1_c00000{bottom:462.181305px;}
.y1405_c00000{bottom:462.270450px;}
.y3f5_c00000{bottom:462.270600px;}
.y19c4_c00000{bottom:462.360780px;}
.y218c_c00000{bottom:462.450450px;}
.y1a1a_c00000{bottom:462.450600px;}
.y65f_c00000{bottom:462.540450px;}
.yf8c_c00000{bottom:462.540600px;}
.y1609_c00000{bottom:462.810450px;}
.y330_c00000{bottom:462.900450px;}
.y2072_c00000{bottom:462.900729px;}
.ye3d_c00000{bottom:463.080450px;}
.y1a90_c00000{bottom:463.170450px;}
.y21ec_c00000{bottom:463.260450px;}
.y1efe_c00000{bottom:463.260648px;}
.y11de_c00000{bottom:463.350450px;}
.y11be_c00000{bottom:463.440450px;}
.y11ed_c00000{bottom:463.530600px;}
.y1183_c00000{bottom:463.530807px;}
.y1d14_c00000{bottom:463.620600px;}
.y201b_c00000{bottom:463.620630px;}
.y17bb_c00000{bottom:463.622970px;}
.y1192_c00000{bottom:463.711167px;}
.ybbd_c00000{bottom:463.890450px;}
.y1229_c00000{bottom:463.980450px;}
.y8ad_c00000{bottom:463.983078px;}
.y1c37_c00000{bottom:464.340600px;}
.yda0_c00000{bottom:464.430450px;}
.ye2a_c00000{bottom:464.610600px;}
.y1088_c00000{bottom:464.790600px;}
.y13b4_c00000{bottom:464.880450px;}
.y7d5_c00000{bottom:464.970450px;}
.y1fd5_c00000{bottom:464.970870px;}
.y155e_c00000{bottom:465.060450px;}
.y842_c00000{bottom:465.330450px;}
.y8de_c00000{bottom:465.330600px;}
.y1ea7_c00000{bottom:465.420666px;}
.y288_c00000{bottom:465.510450px;}
.y213_c00000{bottom:465.510600px;}
.y966_c00000{bottom:465.600630px;}
.y75e_c00000{bottom:465.601485px;}
.y436_c00000{bottom:465.690699px;}
.y1686_c00000{bottom:465.870600px;}
.y648_c00000{bottom:465.960450px;}
.y90d_c00000{bottom:465.960600px;}
.ycc6_c00000{bottom:466.140450px;}
.yafa_c00000{bottom:466.230450px;}
.y12cd_c00000{bottom:466.320450px;}
.y1c15_c00000{bottom:466.410450px;}
.y807_c00000{bottom:466.590600px;}
.y530_c00000{bottom:466.590738px;}
.y1bae_c00000{bottom:466.770450px;}
.ya93_c00000{bottom:466.770600px;}
.ydde_c00000{bottom:466.860600px;}
.y1f22_c00000{bottom:467.130450px;}
.y137c_c00000{bottom:467.220450px;}
.y1d75_c00000{bottom:467.310450px;}
.yff_c00000{bottom:467.490450px;}
.y189c_c00000{bottom:467.490600px;}
.y1905_c00000{bottom:467.580450px;}
.y19f3_c00000{bottom:467.760450px;}
.ye04_c00000{bottom:467.850450px;}
.y1f7a_c00000{bottom:468.030450px;}
.yf3f_c00000{bottom:468.030600px;}
.y260_c00000{bottom:468.120450px;}
.y3ae_c00000{bottom:468.300450px;}
.y20a3_c00000{bottom:468.570450px;}
.y1b67_c00000{bottom:468.840450px;}
.yb44_c00000{bottom:468.840600px;}
.y1e16_c00000{bottom:468.930000px;}
.y67a_c00000{bottom:469.020540px;}
.ya3a_c00000{bottom:469.021575px;}
.y1f2d_c00000{bottom:469.200450px;}
.y3d8_c00000{bottom:469.200600px;}
.yca6_c00000{bottom:469.650600px;}
.y10cc_c00000{bottom:469.740450px;}
.y1bf5_c00000{bottom:469.830450px;}
.y1a5_c00000{bottom:469.920450px;}
.y205a_c00000{bottom:470.010450px;}
.y1a4d_c00000{bottom:470.190450px;}
.y14e3_c00000{bottom:470.190600px;}
.y2173_c00000{bottom:470.460600px;}
.y1e82_c00000{bottom:470.465706px;}
.yf28_c00000{bottom:470.551305px;}
.y1258_c00000{bottom:470.551575px;}
.y215b_c00000{bottom:470.640450px;}
.y130f_c00000{bottom:470.730450px;}
.y1a0d_c00000{bottom:470.820450px;}
.yce1_c00000{bottom:470.910450px;}
.yf95_c00000{bottom:471.000600px;}
.y594_c00000{bottom:471.180450px;}
.y884_c00000{bottom:471.360450px;}
.y1cb7_c00000{bottom:471.360600px;}
.y19a2_c00000{bottom:471.540600px;}
.y1218_c00000{bottom:471.720450px;}
.y1578_c00000{bottom:471.810450px;}
.yec0_c00000{bottom:471.900450px;}
.y1c5e_c00000{bottom:471.990450px;}
.yb30_c00000{bottom:472.080450px;}
.y1ce7_c00000{bottom:472.261755px;}
.y1e1a_c00000{bottom:472.350261px;}
.y1e17_c00000{bottom:472.350450px;}
.y1e12_c00000{bottom:472.350468px;}
.y1ab4_c00000{bottom:472.530600px;}
.yc8e_c00000{bottom:472.620450px;}
.y1dce_c00000{bottom:472.620600px;}
.y1035_c00000{bottom:472.621503px;}
.y602_c00000{bottom:472.890450px;}
.y1bf8_c00000{bottom:473.070450px;}
.y351_c00000{bottom:473.250600px;}
.y2106_c00000{bottom:473.254839px;}
.y21f1_c00000{bottom:473.339097px;}
.y21ee_c00000{bottom:473.340600px;}
.y18d2_c00000{bottom:473.520600px;}
.y157_c00000{bottom:473.610450px;}
.y1ed4_c00000{bottom:473.610459px;}
.y13d7_c00000{bottom:473.790450px;}
.yd84_c00000{bottom:473.970450px;}
.y1d9e_c00000{bottom:473.971665px;}
.y2163_c00000{bottom:474.060450px;}
.y144b_c00000{bottom:474.150450px;}
.y549_c00000{bottom:474.242520px;}
.yb8e_c00000{bottom:474.330450px;}
.y50b_c00000{bottom:474.330600px;}
.y6b2_c00000{bottom:474.600450px;}
.y1c85_c00000{bottom:474.601422px;}
.ye59_c00000{bottom:474.780450px;}
.y14a5_c00000{bottom:474.780600px;}
.y1518_c00000{bottom:474.960450px;}
.y4ba_c00000{bottom:475.050450px;}
.ye90_c00000{bottom:475.230450px;}
.y1398_c00000{bottom:475.230600px;}
.y1108_c00000{bottom:475.320450px;}
.y21bc_c00000{bottom:475.500600px;}
.y94d_c00000{bottom:475.590450px;}
.yd4a_c00000{bottom:475.680600px;}
.y158f_c00000{bottom:475.860600px;}
.y1021_c00000{bottom:475.950000px;}
.y1b08_c00000{bottom:475.950600px;}
.y1792_c00000{bottom:476.130450px;}
.y1e6e_c00000{bottom:476.310342px;}
.y48c_c00000{bottom:476.310450px;}
.y4d9_c00000{bottom:476.310600px;}
.y17a6_c00000{bottom:476.490450px;}
.y1938_c00000{bottom:476.490600px;}
.y192f_c00000{bottom:476.580450px;}
.y1832_c00000{bottom:476.671575px;}
.y213f_c00000{bottom:476.760450px;}
.y74e_c00000{bottom:476.940600px;}
.yedc_c00000{bottom:477.120600px;}
.y15b7_c00000{bottom:477.121035px;}
.y129_c00000{bottom:477.390450px;}
.y1ffc_c00000{bottom:477.480450px;}
.y12db_c00000{bottom:477.481485px;}
.y1457_c00000{bottom:477.570450px;}
.y17e_c00000{bottom:477.660450px;}
.y732_c00000{bottom:477.661575px;}
.y2cd_c00000{bottom:477.840450px;}
.y2c4_c00000{bottom:477.840600px;}
.y1ba4_c00000{bottom:477.930600px;}
.y6f6_c00000{bottom:478.020450px;}
.yb7_c00000{bottom:478.380450px;}
.y1639_c00000{bottom:478.560450px;}
.y17c5_c00000{bottom:478.650450px;}
.y15e5_c00000{bottom:478.740450px;}
.y71f_c00000{bottom:478.920450px;}
.y7af_c00000{bottom:479.007507px;}
.y1a64_c00000{bottom:479.190600px;}
.ybf8_c00000{bottom:479.191215px;}
.y1203_c00000{bottom:479.280600px;}
.yfda_c00000{bottom:479.371062px;}
.yaa0_c00000{bottom:479.550450px;}
.y1e5c_c00000{bottom:479.730105px;}
.yf8b_c00000{bottom:479.820450px;}
.yd26_c00000{bottom:480.000450px;}
.y141d_c00000{bottom:480.000600px;}
.y1b2b_c00000{bottom:480.450600px;}
.y11dd_c00000{bottom:480.540600px;}
.y1efd_c00000{bottom:480.540639px;}
.y937_c00000{bottom:480.630450px;}
.y11ec_c00000{bottom:480.720450px;}
.y1182_c00000{bottom:480.810798px;}
.y1275_c00000{bottom:480.900450px;}
.y1f95_c00000{bottom:480.900540px;}
.y12cc_c00000{bottom:480.904680px;}
.y1191_c00000{bottom:480.991158px;}
.y8f0_c00000{bottom:481.080630px;}
.y1bf_c00000{bottom:481.350600px;}
.y19c3_c00000{bottom:481.350690px;}
.y1e64_c00000{bottom:481.440321px;}
.ya4e_c00000{bottom:481.530450px;}
.y435_c00000{bottom:481.530600px;}
.y20e0_c00000{bottom:481.710450px;}
.y1f21_c00000{bottom:481.710900px;}
.y7f6_c00000{bottom:482.070450px;}
.y1a8f_c00000{bottom:482.250600px;}
.y2080_c00000{bottom:482.250879px;}
.y2037_c00000{bottom:482.520450px;}
.y201a_c00000{bottom:482.610540px;}
.y1d13_c00000{bottom:482.610600px;}
.y17ba_c00000{bottom:482.612880px;}
.y1ea6_c00000{bottom:482.700657px;}
.ydb9_c00000{bottom:482.790600px;}
.y308_c00000{bottom:482.970450px;}
.ybd5_c00000{bottom:482.970600px;}
.y21eb_c00000{bottom:483.060450px;}
.y1e6d_c00000{bottom:483.150171px;}
.y1ea_c00000{bottom:483.150450px;}
.y822_c00000{bottom:483.240450px;}
.y410_c00000{bottom:483.330450px;}
.yaf9_c00000{bottom:483.420450px;}
.ye34_c00000{bottom:483.600450px;}
.y15fe_c00000{bottom:483.600729px;}
.y1de2_c00000{bottom:483.690450px;}
.y341_c00000{bottom:483.690600px;}
.y20b9_c00000{bottom:483.780600px;}
.yc1d_c00000{bottom:483.870450px;}
.y1fd4_c00000{bottom:483.960780px;}
.y12ae_c00000{bottom:484.320810px;}
.ye29_c00000{bottom:484.410450px;}
.y137b_c00000{bottom:484.500600px;}
.y965_c00000{bottom:484.590540px;}
.y75d_c00000{bottom:484.591395px;}
.yc5e_c00000{bottom:484.680450px;}
.y14e2_c00000{bottom:484.680600px;}
.y777_c00000{bottom:484.950450px;}
.y5e2_c00000{bottom:484.950600px;}
.yf60_c00000{bottom:485.040600px;}
.y1cb6_c00000{bottom:485.130450px;}
.y73_c00000{bottom:485.137344px;}
.yf3e_c00000{bottom:485.220450px;}
.y10cb_c00000{bottom:485.310450px;}
.yd9_c00000{bottom:485.401944px;}
.y92_c00000{bottom:485.407857px;}
.yd06_c00000{bottom:485.580450px;}
.y1b40_c00000{bottom:485.760450px;}
.y8d1_c00000{bottom:485.940450px;}
.y19a1_c00000{bottom:486.030810px;}
.y1b76_c00000{bottom:486.120600px;}
.yf94_c00000{bottom:486.480450px;}
.y1b8e_c00000{bottom:486.570450px;}
.y1e5b_c00000{bottom:486.660384px;}
.y56e_c00000{bottom:486.660450px;}
.y180e_c00000{bottom:486.840450px;}
.y20c0_c00000{bottom:486.840600px;}
.y1353_c00000{bottom:487.200600px;}
.y9c4_c00000{bottom:487.470450px;}
.y19f2_c00000{bottom:487.560450px;}
.y1723_c00000{bottom:487.560600px;}
.yb43_c00000{bottom:487.830450px;}
.y130e_c00000{bottom:487.920450px;}
.y68e_c00000{bottom:488.010450px;}
.ya39_c00000{bottom:488.011485px;}
.y2b4_c00000{bottom:488.190450px;}
.y3ad_c00000{bottom:488.190600px;}
.y6cb_c00000{bottom:488.370600px;}
.y1700_c00000{bottom:488.640450px;}
.y19e1_c00000{bottom:488.730450px;}
.y25f_c00000{bottom:488.820450px;}
.y287_c00000{bottom:489.270450px;}
.y212_c00000{bottom:489.270600px;}
.y14a4_c00000{bottom:489.360600px;}
.y13ed_c00000{bottom:489.450450px;}
.yf27_c00000{bottom:489.541215px;}
.y1257_c00000{bottom:489.541485px;}
.y1e19_c00000{bottom:489.630252px;}
.y1e15_c00000{bottom:489.630450px;}
.y1e11_c00000{bottom:489.630459px;}
.y1dbd_c00000{bottom:489.810450px;}
.y1242_c00000{bottom:489.900450px;}
.y1034_c00000{bottom:489.901494px;}
.y1e6c_c00000{bottom:490.080450px;}
.y1a78_c00000{bottom:490.260450px;}
.yce0_c00000{bottom:490.350450px;}
.y1b1c_c00000{bottom:490.530600px;}
.y373_c00000{bottom:490.620600px;}
.y1f3d_c00000{bottom:490.710600px;}
.y1ed3_c00000{bottom:490.890450px;}
.y154e_c00000{bottom:491.250600px;}
.y1ce6_c00000{bottom:491.251665px;}
.y9df_c00000{bottom:491.340600px;}
.y1020_c00000{bottom:491.430450px;}
.y144a_c00000{bottom:491.430600px;}
.y1ab3_c00000{bottom:491.520600px;}
.yb6b_c00000{bottom:491.610450px;}
.y14e1_c00000{bottom:491.610600px;}
.y9b7_c00000{bottom:491.700600px;}
.y55d_c00000{bottom:491.880450px;}
.y906_c00000{bottom:491.880600px;}
.y1c84_c00000{bottom:491.881413px;}
.y1e4c_c00000{bottom:491.970450px;}
.y29_c00000{bottom:492.000000px;}
.y16e2_c00000{bottom:492.060450px;}
.y4b9_c00000{bottom:492.330450px;}
.y90c_c00000{bottom:492.420450px;}
.y1413_c00000{bottom:492.510450px;}
.yedb_c00000{bottom:492.510600px;}
.ya1d_c00000{bottom:492.690450px;}
.y4c_c00000{bottom:492.870600px;}
.yd69_c00000{bottom:492.960450px;}
.y1d9d_c00000{bottom:492.961575px;}
.y18a8_c00000{bottom:492.961755px;}
.y1638_c00000{bottom:493.140450px;}
.yfe1_c00000{bottom:493.140900px;}
.y21f0_c00000{bottom:493.229799px;}
.y21ed_c00000{bottom:493.230450px;}
.y548_c00000{bottom:493.232430px;}
.y1404_c00000{bottom:493.320450px;}
.y3f4_c00000{bottom:493.320600px;}
.y213e_c00000{bottom:493.410450px;}
.y7_c00000{bottom:493.500000px;}
.y1e5a_c00000{bottom:493.500213px;}
.y218b_c00000{bottom:493.500450px;}
.y65e_c00000{bottom:493.590450px;}
.y1a4_c00000{bottom:493.680450px;}
.y320_c00000{bottom:493.950600px;}
.y1d74_c00000{bottom:493.950729px;}
.y2105_c00000{bottom:493.954560px;}
.y1107_c00000{bottom:494.130450px;}
.y15b6_c00000{bottom:494.401026px;}
.y11bd_c00000{bottom:494.490450px;}
.yd49_c00000{bottom:494.670450px;}
.y141c_c00000{bottom:494.670720px;}
.y1456_c00000{bottom:494.850450px;}
.y1c36_c00000{bottom:494.940600px;}
.ybbc_c00000{bottom:495.030450px;}
.y21bb_c00000{bottom:495.390450px;}
.yd9f_c00000{bottom:495.480450px;}
.y1c20_c00000{bottom:495.660450px;}
.y1831_c00000{bottom:495.661485px;}
.y128e_c00000{bottom:495.840600px;}
.y7d4_c00000{bottom:496.020450px;}
.y8dd_c00000{bottom:496.110600px;}
.y841_c00000{bottom:496.290450px;}
.y434_c00000{bottom:496.380450px;}
.y12da_c00000{bottom:496.380810px;}
.y1dcd_c00000{bottom:496.560450px;}
.y20a2_c00000{bottom:496.560729px;}
.yfd9_c00000{bottom:496.651053px;}
.y731_c00000{bottom:496.651485px;}
.ya64_c00000{bottom:496.920450px;}
.y52f_c00000{bottom:497.010450px;}
.y919_c00000{bottom:497.010600px;}
.ycc5_c00000{bottom:497.190450px;}
.y1e63_c00000{bottom:497.190600px;}
.y9c_c00000{bottom:497.197191px;}
.y13b3_c00000{bottom:497.280450px;}
.y156_c00000{bottom:497.370450px;}
.y1691_c00000{bottom:497.550450px;}
.y1efc_c00000{bottom:497.730450px;}
.y11dc_c00000{bottom:497.820450px;}
.yddd_c00000{bottom:497.910450px;}
.y11eb_c00000{bottom:498.000600px;}
.y1181_c00000{bottom:498.090789px;}
.y50a_c00000{bottom:498.180600px;}
.ybf7_c00000{bottom:498.181125px;}
.y1190_c00000{bottom:498.271149px;}
.y1274_c00000{bottom:498.360600px;}
.yfe_c00000{bottom:498.540450px;}
.y2c9_c00000{bottom:498.540600px;}
.y1904_c00000{bottom:498.630450px;}
.y201d_c00000{bottom:498.720450px;}
.y1e6b_c00000{bottom:498.900450px;}
.y1f79_c00000{bottom:499.080450px;}
.y15e4_c00000{bottom:499.440600px;}
.yaac_c00000{bottom:499.620600px;}
.y1ba3_c00000{bottom:499.800450px;}
.y1b66_c00000{bottom:499.890450px;}
.y12cb_c00000{bottom:499.894590px;}
.y1cb5_c00000{bottom:499.980450px;}
.y1ea5_c00000{bottom:499.980648px;}
.y1083_c00000{bottom:500.070450px;}
.y8ef_c00000{bottom:500.070540px;}
.y1f2c_c00000{bottom:500.250450px;}
.y9ff_c00000{bottom:500.250600px;}
.y19c2_c00000{bottom:500.340600px;}
.y1e59_c00000{bottom:500.430492px;}
.yca5_c00000{bottom:500.430600px;}
.y1ae8_c00000{bottom:500.610600px;}
.yaf8_c00000{bottom:500.700600px;}
.y1f20_c00000{bottom:500.700810px;}
.y10ca_c00000{bottom:500.790600px;}
.y7ae_c00000{bottom:500.878020px;}
.y128_c00000{bottom:500.970450px;}
.y1a4c_c00000{bottom:501.240450px;}
.y1a8e_c00000{bottom:501.330450px;}
.y17d_c00000{bottom:501.600450px;}
.y2019_c00000{bottom:501.600690px;}
.y17b9_c00000{bottom:501.602790px;}
.y215a_c00000{bottom:501.690450px;}
.y137a_c00000{bottom:501.690600px;}
.y14ba_c00000{bottom:501.780600px;}
.y1a0c_c00000{bottom:501.870450px;}
.y1d8a_c00000{bottom:501.960450px;}
.yf93_c00000{bottom:502.050450px;}
.y8ac_c00000{bottom:502.142421px;}
.y593_c00000{bottom:502.230450px;}
.y883_c00000{bottom:502.410450px;}
.yf3d_c00000{bottom:502.500600px;}
.y1bd3_c00000{bottom:502.680600px;}
.y711_c00000{bottom:502.770600px;}
.y1d18_c00000{bottom:502.950600px;}
.y1fd3_c00000{bottom:502.950690px;}
.y1c5d_c00000{bottom:503.040450px;}
.yb2f_c00000{bottom:503.130450px;}
.yf5f_c00000{bottom:503.220450px;}
.y12ad_c00000{bottom:503.310720px;}
.y19e0_c00000{bottom:503.311485px;}
.y1e14_c00000{bottom:503.490000px;}
.y1087_c00000{bottom:503.490450px;}
.y964_c00000{bottom:503.580450px;}
.y75c_c00000{bottom:503.581305px;}
.yb6_c00000{bottom:503.670450px;}
.y2125_c00000{bottom:503.760450px;}
.y2f4_c00000{bottom:503.760654px;}
.y601_c00000{bottom:503.940450px;}
.y14a3_c00000{bottom:503.940600px;}
.y154d_c00000{bottom:504.030600px;}
.y1d3d_c00000{bottom:504.120450px;}
.y1da4_c00000{bottom:504.210600px;}
.y1425_c00000{bottom:504.300450px;}
.y1352_c00000{bottom:504.480450px;}
.y135b_c00000{bottom:504.481539px;}
.y1202_c00000{bottom:504.570450px;}
.y1137_c00000{bottom:504.660450px;}
.y13d6_c00000{bottom:504.840450px;}
.yd83_c00000{bottom:505.020450px;}
.y19a0_c00000{bottom:505.020720px;}
.ycdf_c00000{bottom:505.021575px;}
.y1be_c00000{bottom:505.110600px;}
.y130d_c00000{bottom:505.200600px;}
.yb8d_c00000{bottom:505.380450px;}
.y679_c00000{bottom:505.470450px;}
.y6b1_c00000{bottom:505.650450px;}
.y3d7_c00000{bottom:505.830450px;}
.y1bd4_c00000{bottom:505.920450px;}
.y1517_c00000{bottom:506.010450px;}
.ye8f_c00000{bottom:506.280450px;}
.y1397_c00000{bottom:506.280600px;}
.y94c_c00000{bottom:506.640450px;}
.yb42_c00000{bottom:506.730450px;}
.y1e18_c00000{bottom:506.910243px;}
.y1e10_c00000{bottom:506.910450px;}
.y101f_c00000{bottom:507.000000px;}
.y1e9_c00000{bottom:507.000450px;}
.ya38_c00000{bottom:507.001395px;}
.y1791_c00000{bottom:507.180450px;}
.y1033_c00000{bottom:507.181485px;}
.y48b_c00000{bottom:507.360450px;}
.y4d8_c00000{bottom:507.360600px;}
.y1e58_c00000{bottom:507.360771px;}
.y17a5_c00000{bottom:507.540450px;}
.y1937_c00000{bottom:507.540600px;}
.y1637_c00000{bottom:507.630450px;}
.y155d_c00000{bottom:507.900450px;}
.y5ab_c00000{bottom:507.990450px;}
.y68d_c00000{bottom:508.170450px;}
.y1bf4_c00000{bottom:508.350450px;}
.y211_c00000{bottom:508.440600px;}
.y1ffb_c00000{bottom:508.530450px;}
.y19f1_c00000{bottom:508.530600px;}
.yf26_c00000{bottom:508.531125px;}
.y1256_c00000{bottom:508.531395px;}
.y1449_c00000{bottom:508.620600px;}
.y1e81_c00000{bottom:508.625049px;}
.yfe0_c00000{bottom:508.710450px;}
.y1757_c00000{bottom:508.710600px;}
.y6ca_c00000{bottom:508.711575px;}
.y2c3_c00000{bottom:508.890450px;}
.y1c83_c00000{bottom:509.071224px;}
.y1e4b_c00000{bottom:509.250600px;}
.y72_c00000{bottom:509.257038px;}
.y1b1b_c00000{bottom:509.430600px;}
.y25e_c00000{bottom:509.520450px;}
.y20cb_c00000{bottom:509.520600px;}
.y18d1_c00000{bottom:509.520864px;}
.yd8_c00000{bottom:509.521638px;}
.y91_c00000{bottom:509.527551px;}
.y4b8_c00000{bottom:509.610600px;}
.y1f3c_c00000{bottom:509.700600px;}
.y1412_c00000{bottom:509.790600px;}
.y71e_c00000{bottom:509.970450px;}
.y1a3c_c00000{bottom:510.150450px;}
.y1ce5_c00000{bottom:510.241575px;}
.y1ab2_c00000{bottom:510.510450px;}
.y1273_c00000{bottom:510.600450px;}
.y239_c00000{bottom:510.780774px;}
.y1b3f_c00000{bottom:510.870600px;}
.yd25_c00000{bottom:511.050450px;}
.ye28_c00000{bottom:511.140450px;}
.y9de_c00000{bottom:511.320450px;}
.y174a_c00000{bottom:511.590729px;}
.y936_c00000{bottom:511.680450px;}
.y15b5_c00000{bottom:511.681017px;}
.y1d9c_c00000{bottom:511.951485px;}
.y18a7_c00000{bottom:511.951665px;}
.y2041_c00000{bottom:512.040600px;}
.y1b07_c00000{bottom:512.130450px;}
.y1455_c00000{bottom:512.130864px;}
.y547_c00000{bottom:512.131755px;}
.y1e62_c00000{bottom:512.490450px;}
.ya4d_c00000{bottom:512.580450px;}
.y20df_c00000{bottom:512.760450px;}
.y16b7_c00000{bottom:512.850450px;}
.y21ef_c00000{bottom:513.030321px;}
.y1c14_c00000{bottom:513.030450px;}
.y14e0_c00000{bottom:513.030600px;}
.y286_c00000{bottom:513.120450px;}
.y1577_c00000{bottom:513.210600px;}
.y1a63_c00000{bottom:513.300450px;}
.y858_c00000{bottom:513.390450px;}
.y2036_c00000{bottom:513.570450px;}
.yd48_c00000{bottom:513.660450px;}
.y141b_c00000{bottom:513.660630px;}
.ydb8_c00000{bottom:513.840600px;}
.yfd8_c00000{bottom:513.840864px;}
.y307_c00000{bottom:514.020450px;}
.ybd4_c00000{bottom:514.020600px;}
.y1e6a_c00000{bottom:514.200171px;}
.y1e57_c00000{bottom:514.200600px;}
.y821_c00000{bottom:514.290450px;}
.yf8a_c00000{bottom:514.290600px;}
.y40f_c00000{bottom:514.380450px;}
.yeac_c00000{bottom:514.470450px;}
.y3ac_c00000{bottom:514.650450px;}
.y2067_c00000{bottom:514.650729px;}
.y1830_c00000{bottom:514.651395px;}
.y2104_c00000{bottom:514.654281px;}
.y340_c00000{bottom:514.740450px;}
.y1106_c00000{bottom:514.830450px;}
.y1fa8_c00000{bottom:514.831125px;}
.yc1c_c00000{bottom:514.920450px;}
.y11db_c00000{bottom:515.100450px;}
.y21ba_c00000{bottom:515.190600px;}
.y1180_c00000{bottom:515.280600px;}
.y433_c00000{bottom:515.370600px;}
.y12d9_c00000{bottom:515.370720px;}
.y1082_c00000{bottom:515.550450px;}
.y730_c00000{bottom:515.641395px;}
.y806_c00000{bottom:515.730450px;}
.y776_c00000{bottom:516.000450px;}
.y5e1_c00000{bottom:516.000600px;}
.y1d5b_c00000{bottom:516.090600px;}
.y1b2a_c00000{bottom:516.180600px;}
.yeda_c00000{bottom:516.270600px;}
.y1365_c00000{bottom:516.360450px;}
.y10c9_c00000{bottom:516.360600px;}
.yd05_c00000{bottom:516.630450px;}
.y8d0_c00000{bottom:516.990450px;}
.y509_c00000{bottom:517.080450px;}
.y1ea4_c00000{bottom:517.170459px;}
.y20a1_c00000{bottom:517.260450px;}
.y1a3_c00000{bottom:517.530450px;}
.yf92_c00000{bottom:517.530600px;}
.y1685_c00000{bottom:517.620450px;}
.y56d_c00000{bottom:517.710450px;}
.y635_c00000{bottom:517.710600px;}
.y180d_c00000{bottom:517.890450px;}
.y8dc_c00000{bottom:517.890549px;}
.y4b_c00000{bottom:517.980450px;}
.y10d3_c00000{bottom:518.250600px;}
.y20b4_c00000{bottom:518.250729px;}
.y3d6_c00000{bottom:518.430600px;}
.y1722_c00000{bottom:518.610600px;}
.y1a19_c00000{bottom:518.880450px;}
.y12ca_c00000{bottom:518.884500px;}
.y8ee_c00000{bottom:519.060450px;}
.y1608_c00000{bottom:519.150450px;}
.y2b3_c00000{bottom:519.240450px;}
.y1b52_c00000{bottom:519.510450px;}
.y16b6_c00000{bottom:519.600450px;}
.y16ff_c00000{bottom:519.690450px;}
.y1379_c00000{bottom:519.690600px;}
.y1f1f_c00000{bottom:519.690720px;}
.yf3c_c00000{bottom:519.780600px;}
.y15e3_c00000{bottom:519.960600px;}
.y1f94_c00000{bottom:520.050450px;}
.y127_c00000{bottom:520.230450px;}
.yaab_c00000{bottom:520.320450px;}
.y13ec_c00000{bottom:520.500450px;}
.y1d12_c00000{bottom:520.590600px;}
.y2018_c00000{bottom:520.591305px;}
.y17b8_c00000{bottom:520.592700px;}
.y1241_c00000{bottom:520.950450px;}
.y1bc9_c00000{bottom:520.950600px;}
.y210_c00000{bottom:521.040450px;}
.y1a77_c00000{bottom:521.130450px;}
.y155_c00000{bottom:521.220450px;}
.y1e61_c00000{bottom:521.310312px;}
.yca4_c00000{bottom:521.400099px;}
.yef7_c00000{bottom:521.400450px;}
.y1a8a_c00000{bottom:521.490729px;}
.y135a_c00000{bottom:521.490990px;}
.y55c_c00000{bottom:521.580450px;}
.y372_c00000{bottom:521.670450px;}
.y1b75_c00000{bottom:521.940600px;}
.y1636_c00000{bottom:522.210600px;}
.y1319_c00000{bottom:522.300279px;}
.y12ac_c00000{bottom:522.300630px;}
.y19df_c00000{bottom:522.301395px;}
.y101e_c00000{bottom:522.480450px;}
.y75b_c00000{bottom:522.480630px;}
.y7ad_c00000{bottom:522.657948px;}
.yb6a_c00000{bottom:522.660450px;}
.y19c1_c00000{bottom:522.840600px;}
.y9f1_c00000{bottom:522.930450px;}
.y905_c00000{bottom:522.930600px;}
.y1e5f_c00000{bottom:523.020726px;}
.y1e56_c00000{bottom:523.021134px;}
.y16e1_c00000{bottom:523.110450px;}
.y1f88_c00000{bottom:523.290600px;}
.y647_c00000{bottom:523.470450px;}
.y963_c00000{bottom:523.740450px;}
.yd68_c00000{bottom:523.920450px;}
.y199f_c00000{bottom:524.010630px;}
.ycde_c00000{bottom:524.011485px;}
.y1764_c00000{bottom:524.190600px;}
.yfdf_c00000{bottom:524.190900px;}
.y1403_c00000{bottom:524.370450px;}
.y2f3_c00000{bottom:524.370600px;}
.y1032_c00000{bottom:524.371296px;}
.y218a_c00000{bottom:524.550450px;}
.y65d_c00000{bottom:524.640450px;}
.y154c_c00000{bottom:524.730450px;}
.y1e4a_c00000{bottom:525.000600px;}
.y189b_c00000{bottom:525.000729px;}
.y17c_c00000{bottom:525.450450px;}
.y11bc_c00000{bottom:525.540450px;}
.y1bf3_c00000{bottom:525.630450px;}
.y1448_c00000{bottom:525.900450px;}
.ya37_c00000{bottom:525.991305px;}
.ya9f_c00000{bottom:526.080450px;}
.y1136_c00000{bottom:526.260450px;}
.y1c82_c00000{bottom:526.351215px;}
.y192e_c00000{bottom:526.440450px;}
.yd9e_c00000{bottom:526.530450px;}
.y1bd_c00000{bottom:526.710450px;}
.y4b7_c00000{bottom:526.800450px;}
.y18d0_c00000{bottom:526.800855px;}
.yb41_c00000{bottom:526.890450px;}
.y1411_c00000{bottom:526.980450px;}
.y7d3_c00000{bottom:527.070450px;}
.y840_c00000{bottom:527.340450px;}
.yf25_c00000{bottom:527.430450px;}
.y1255_c00000{bottom:527.430720px;}
.y1a3b_c00000{bottom:527.609127px;}
.y6c9_c00000{bottom:527.701485px;}
.y52e_c00000{bottom:528.060450px;}
.y918_c00000{bottom:528.060600px;}
.ycc4_c00000{bottom:528.240450px;}
.y1b1a_c00000{bottom:528.420450px;}
.y6f5_c00000{bottom:528.600162px;}
.y155c_c00000{bottom:528.600450px;}
.y74d_c00000{bottom:528.690450px;}
.y1bad_c00000{bottom:528.870450px;}
.y508_c00000{bottom:528.870810px;}
.y15b4_c00000{bottom:528.870828px;}
.yddc_c00000{bottom:528.960450px;}
.y3ab_c00000{bottom:529.230450px;}
.y1ce4_c00000{bottom:529.231485px;}
.y1454_c00000{bottom:529.320675px;}
.y19f0_c00000{bottom:529.410450px;}
.yfd_c00000{bottom:529.590450px;}
.ye03_c00000{bottom:529.592430px;}
.y1903_c00000{bottom:529.680450px;}
.y1e69_c00000{bottom:529.950450px;}
.ye12_c00000{bottom:530.130450px;}
.y25d_c00000{bottom:530.220450px;}
.ye69_c00000{bottom:530.400450px;}
.y1e8_c00000{bottom:530.760450px;}
.y1b65_c00000{bottom:530.940450px;}
.y1d9b_c00000{bottom:530.941395px;}
.y18a6_c00000{bottom:530.941575px;}
.y1081_c00000{bottom:531.120450px;}
.yfd7_c00000{bottom:531.120855px;}
.y546_c00000{bottom:531.121665px;}
.y1272_c00000{bottom:531.300450px;}
.yf89_c00000{bottom:531.570450px;}
.yc77_c00000{bottom:531.840450px;}
.y6b0_c00000{bottom:532.110450px;}
.y1ab1_c00000{bottom:532.200450px;}
.y11da_c00000{bottom:532.290450px;}
.y1516_c00000{bottom:532.470450px;}
.yd47_c00000{bottom:532.650450px;}
.y141a_c00000{bottom:532.650540px;}
.y126_c00000{bottom:532.740450px;}
.y1a0b_c00000{bottom:532.920450px;}
.y14a2_c00000{bottom:533.010450px;}
.yf91_c00000{bottom:533.100450px;}
.y1178_c00000{bottom:533.280000px;}
.y592_c00000{bottom:533.280450px;}
.y71_c00000{bottom:533.376732px;}
.y882_c00000{bottom:533.460450px;}
.y21ea_c00000{bottom:533.638947px;}
.y21e7_c00000{bottom:533.640450px;}
.y182f_c00000{bottom:533.641305px;}
.yd7_c00000{bottom:533.641332px;}
.y90_c00000{bottom:533.647245px;}
.y8db_c00000{bottom:533.730450px;}
.y4d7_c00000{bottom:533.820450px;}
.y1576_c00000{bottom:533.910450px;}
.y1936_c00000{bottom:534.000450px;}
.y1c5c_c00000{bottom:534.090450px;}
.yb2e_c00000{bottom:534.180450px;}
.y432_c00000{bottom:534.360450px;}
.y12d8_c00000{bottom:534.360630px;}
.y1ea3_c00000{bottom:534.450450px;}
.y1086_c00000{bottom:534.540450px;}
.y72f_c00000{bottom:534.631305px;}
.yb5_c00000{bottom:534.720450px;}
.y600_c00000{bottom:534.990450px;}
.y21b9_c00000{bottom:535.080450px;}
.y1756_c00000{bottom:535.080729px;}
.yaf7_c00000{bottom:535.170450px;}
.yca3_c00000{bottom:535.260162px;}
.y1471_c00000{bottom:535.350450px;}
.y2103_c00000{bottom:535.354002px;}
.y10d2_c00000{bottom:535.530450px;}
.y1201_c00000{bottom:535.620450px;}
.y13d5_c00000{bottom:535.710450px;}
.y166b_c00000{bottom:535.890450px;}
.ybf6_c00000{bottom:536.070450px;}
.y1105_c00000{bottom:536.160450px;}
.ya4c_c00000{bottom:536.430450px;}
.yed9_c00000{bottom:536.610450px;}
.y78c_c00000{bottom:536.700450px;}
.yf3b_c00000{bottom:536.790450px;}
.y285_c00000{bottom:536.880450px;}
.yf41_c00000{bottom:536.970450px;}
.y1d6e_c00000{bottom:537.060450px;}
.ye8e_c00000{bottom:537.330450px;}
.y94b_c00000{bottom:537.690450px;}
.ye27_c00000{bottom:537.780450px;}
.y16b5_c00000{bottom:537.780999px;}
.y12c9_c00000{bottom:537.783825px;}
.y101d_c00000{bottom:538.050000px;}
.y646_c00000{bottom:538.052610px;}
.y677_c00000{bottom:538.230450px;}
.y192d_c00000{bottom:538.230720px;}
.y48a_c00000{bottom:538.410450px;}
.y1b51_c00000{bottom:538.500450px;}
.y1e60_c00000{bottom:538.590303px;}
.y17a4_c00000{bottom:538.590450px;}
.y1f1e_c00000{bottom:538.680630px;}
.y1359_c00000{bottom:538.770981px;}
.y1351_c00000{bottom:538.950450px;}
.yf5e_c00000{bottom:539.130450px;}
.y1b8d_c00000{bottom:539.220450px;}
.y1a8d_c00000{bottom:539.400450px;}
.y1bf1_c00000{bottom:539.580450px;}
.y2017_c00000{bottom:539.581215px;}
.y17b7_c00000{bottom:539.582610px;}
.y130c_c00000{bottom:539.670450px;}
.yfde_c00000{bottom:539.760450px;}
.y2c2_c00000{bottom:539.940450px;}
.y3d5_c00000{bottom:540.030450px;}
.y117f_c00000{bottom:540.210450px;}
.y1a4b_c00000{bottom:540.300450px;}
.y1e5e_c00000{bottom:540.300717px;}
.y8ab_c00000{bottom:540.301764px;}
.ybd3_c00000{bottom:540.480450px;}
.y40e_c00000{bottom:540.840450px;}
.y1b74_c00000{bottom:540.930450px;}
.y15e2_c00000{bottom:540.930639px;}
.y71d_c00000{bottom:541.020450px;}
.y1ae7_c00000{bottom:541.200450px;}
.y1a2_c00000{bottom:541.290450px;}
.y12ab_c00000{bottom:541.290540px;}
.y19de_c00000{bottom:541.291305px;}
.y1e0a_c00000{bottom:541.380000px;}
.y14df_c00000{bottom:541.380450px;}
.y75a_c00000{bottom:541.470540px;}
.y1cdc_c00000{bottom:541.650450px;}
.y1031_c00000{bottom:541.651287px;}
.y213d_c00000{bottom:541.740450px;}
.y1721_c00000{bottom:541.830450px;}
.yd24_c00000{bottom:542.100450px;}
.y1a89_c00000{bottom:542.190450px;}
.y1cb4_c00000{bottom:542.280450px;}
.y6f4_c00000{bottom:542.370450px;}
.y220f_c00000{bottom:542.460450px;}
.y1d5a_c00000{bottom:542.550450px;}
.y935_c00000{bottom:542.730450px;}
.y1bf2_c00000{bottom:542.820450px;}
.yef6_c00000{bottom:542.910450px;}
.y199e_c00000{bottom:543.000540px;}
.ycdd_c00000{bottom:543.001395px;}
.y2040_c00000{bottom:543.090450px;}
.y1447_c00000{bottom:543.180450px;}
.y1c1f_c00000{bottom:543.270450px;}
.y21e5_c00000{bottom:543.360450px;}
.y962_c00000{bottom:543.630450px;}
.y1c81_c00000{bottom:543.631206px;}
.y1e55_c00000{bottom:543.720450px;}
.y4b6_c00000{bottom:544.080450px;}
.y18cf_c00000{bottom:544.080846px;}
.y8ed_c00000{bottom:544.170450px;}
.y1410_c00000{bottom:544.260450px;}
.y7ac_c00000{bottom:544.437876px;}
.y1e49_c00000{bottom:544.530450px;}
.y2035_c00000{bottom:544.620450px;}
.y1bc_c00000{bottom:544.800450px;}
.y1dff_c00000{bottom:544.801071px;}
.y154_c00000{bottom:544.980450px;}
.ya36_c00000{bottom:544.981215px;}
.y306_c00000{bottom:545.070450px;}
.y1e68_c00000{bottom:545.250171px;}
.y820_c00000{bottom:545.340450px;}
.yeab_c00000{bottom:545.520450px;}
.y17bc_c00000{bottom:545.610450px;}
.y2b2_c00000{bottom:545.700450px;}
.y1933_c00000{bottom:545.700729px;}
.y33f_c00000{bottom:545.790450px;}
.yc1b_c00000{bottom:545.970450px;}
.y154b_c00000{bottom:546.150450px;}
.y15b3_c00000{bottom:546.150819px;}
.y11bb_c00000{bottom:546.240450px;}
.y1254_c00000{bottom:546.420630px;}
.y1080_c00000{bottom:546.600450px;}
.y1453_c00000{bottom:546.600666px;}
.y6c8_c00000{bottom:546.691395px;}
.y6af_c00000{bottom:546.693465px;}
.y9fe_c00000{bottom:546.780450px;}
.y1e80_c00000{bottom:546.784392px;}
.y1135_c00000{bottom:546.960450px;}
.y5e0_c00000{bottom:547.050450px;}
.y10c8_c00000{bottom:547.410450px;}
.y14a1_c00000{bottom:547.590450px;}
.yd04_c00000{bottom:547.680450px;}
.y2059_c00000{bottom:547.860450px;}
.y507_c00000{bottom:547.860720px;}
.y8cf_c00000{bottom:548.040450px;}
.y3aa_c00000{bottom:548.130450px;}
.y1ce3_c00000{bottom:548.130810px;}
.yfd6_c00000{bottom:548.400846px;}
.ye02_c00000{bottom:548.491755px;}
.ybef_c00000{bottom:548.580450px;}
.y1684_c00000{bottom:548.670450px;}
.y56c_c00000{bottom:548.760450px;}
.y1177_c00000{bottom:548.849550px;}
.y180c_c00000{bottom:548.940450px;}
.yca2_c00000{bottom:549.030450px;}
.y17b_c00000{bottom:549.210450px;}
.y4a_c00000{bottom:549.299928px;}
.y155a_c00000{bottom:549.300450px;}
.y904_c00000{bottom:549.390450px;}
.y1a3a_c00000{bottom:549.479640px;}
.yabf_c00000{bottom:549.570450px;}
.y2f2_c00000{bottom:549.930450px;}
.y1d9a_c00000{bottom:549.931305px;}
.y18a5_c00000{bottom:549.931485px;}
.yf24_c00000{bottom:550.020450px;}
.yba5_c00000{bottom:550.110450px;}
.y545_c00000{bottom:550.111575px;}
.y31f_c00000{bottom:550.290450px;}
.y1bac_c00000{bottom:550.380450px;}
.y1763_c00000{bottom:550.560729px;}
.y16fe_c00000{bottom:550.740450px;}
.y3f3_c00000{bottom:550.830450px;}
.y25c_c00000{bottom:550.920450px;}
.y1635_c00000{bottom:551.280450px;}
.y55b_c00000{bottom:551.370450px;}
.y13eb_c00000{bottom:551.550450px;}
.yd46_c00000{bottom:551.640450px;}
.y1240_c00000{bottom:551.820450px;}
.y125_c00000{bottom:551.910450px;}
.ya77_c00000{bottom:552.000450px;}
.yef5_c00000{bottom:552.091395px;}
.y1e67_c00000{bottom:552.180450px;}
.y1ea2_c00000{bottom:552.270450px;}
.yaf6_c00000{bottom:552.450450px;}
.y182e_c00000{bottom:552.631215px;}
.y371_c00000{bottom:552.720450px;}
.y1396_c00000{bottom:552.900450px;}
.y1995_c00000{bottom:552.990450px;}
.y431_c00000{bottom:553.350450px;}
.y12d7_c00000{bottom:553.350540px;}
.y21e9_c00000{bottom:553.439469px;}
.y1fa7_c00000{bottom:553.440450px;}
.y101c_c00000{bottom:553.530450px;}
.y72e_c00000{bottom:553.530630px;}
.yb69_c00000{bottom:553.710450px;}
.y3d4_c00000{bottom:553.890450px;}
.y74c_c00000{bottom:553.980450px;}
.y16e0_c00000{bottom:554.160450px;}
.y1378_c00000{bottom:554.250450px;}
.yd9d_c00000{bottom:554.340450px;}
.y1e7_c00000{bottom:554.430450px;}
.y1575_c00000{bottom:554.610450px;}
.ya1c_c00000{bottom:554.790450px;}
.y21b8_c00000{bottom:554.880450px;}
.y881_c00000{bottom:554.970450px;}
.y16b4_c00000{bottom:554.970819px;}
.y14de_c00000{bottom:555.240450px;}
.yfdd_c00000{bottom:555.240900px;}
.y40d_c00000{bottom:555.420450px;}
.y2189_c00000{bottom:555.600450px;}
.y65c_c00000{bottom:555.690450px;}
.y117e_c00000{bottom:555.690900px;}
.y1755_c00000{bottom:555.780450px;}
.y146a_c00000{bottom:556.050450px;}
.y1d24_c00000{bottom:556.050729px;}
.y2102_c00000{bottom:556.053723px;}
.y1350_c00000{bottom:556.230450px;}
.y1358_c00000{bottom:556.231332px;}
.y1b29_c00000{bottom:556.410450px;}
.ydb7_c00000{bottom:556.590450px;}
.y2172_c00000{bottom:556.770450px;}
.y12c8_c00000{bottom:556.773735px;}
.y2124_c00000{bottom:556.860450px;}
.y130b_c00000{bottom:556.950450px;}
.y6f3_c00000{bottom:557.042250px;}
.y645_c00000{bottom:557.042520px;}
.ybbb_c00000{bottom:557.130450px;}
.y192c_c00000{bottom:557.220630px;}
.y1b50_c00000{bottom:557.490450px;}
.y1104_c00000{bottom:557.580450px;}
.y70_c00000{bottom:557.586597px;}
.y1f1d_c00000{bottom:557.670540px;}
.y1515_c00000{bottom:557.760450px;}
.yb8c_c00000{bottom:557.850450px;}
.yd6_c00000{bottom:557.851197px;}
.y8f_c00000{bottom:557.857110px;}
.y13a7_c00000{bottom:558.030450px;}
.y7d2_c00000{bottom:558.120450px;}
.y1b8c_c00000{bottom:558.210450px;}
.y83f_c00000{bottom:558.390450px;}
.y1a8c_c00000{bottom:558.480450px;}
.y2016_c00000{bottom:558.480540px;}
.y17b6_c00000{bottom:558.481935px;}
.y1bf0_c00000{bottom:558.570450px;}
.ybf5_c00000{bottom:558.660450px;}
.y1030_c00000{bottom:558.931278px;}
.y4d6_c00000{bottom:559.110450px;}
.y917_c00000{bottom:559.110600px;}
.ycc3_c00000{bottom:559.290450px;}
.yf5d_c00000{bottom:559.650450px;}
.y9c3_c00000{bottom:559.920450px;}
.yddb_c00000{bottom:560.010450px;}
.y1ae6_c00000{bottom:560.190450px;}
.y1cc8_c00000{bottom:560.280450px;}
.y19dd_c00000{bottom:560.281215px;}
.y1446_c00000{bottom:560.370450px;}
.y759_c00000{bottom:560.460450px;}
.y13b2_c00000{bottom:560.550450px;}
.yfc_c00000{bottom:560.640450px;}
.y284_c00000{bottom:560.730450px;}
.y1c80_c00000{bottom:560.821017px;}
.y1e54_c00000{bottom:561.000450px;}
.y1e66_c00000{bottom:561.000792px;}
.y1f87_c00000{bottom:561.180450px;}
.y18ce_c00000{bottom:561.270657px;}
.y4b5_c00000{bottom:561.360450px;}
.y140f_c00000{bottom:561.540450px;}
.y1720_c00000{bottom:561.630450px;}
.yaaa_c00000{bottom:561.720450px;}
.y199d_c00000{bottom:561.990450px;}
.ycdc_c00000{bottom:561.991305px;}
.y14a0_c00000{bottom:562.080387px;}
.y1e09_c00000{bottom:562.080450px;}
.y1dfe_c00000{bottom:562.081062px;}
.y107f_c00000{bottom:562.170450px;}
.y220e_c00000{bottom:562.260450px;}
.y1f2b_c00000{bottom:562.350450px;}
.y10c7_c00000{bottom:562.890450px;}
.y1cb3_c00000{bottom:563.070450px;}
.y20ca_c00000{bottom:563.160450px;}
.y15b2_c00000{bottom:563.250450px;}
.yca1_c00000{bottom:563.701665px;}
.y1e33_c00000{bottom:563.790450px;}
.ya35_c00000{bottom:563.880540px;}
.y1452_c00000{bottom:563.880657px;}
.y1a0a_c00000{bottom:563.970450px;}
.y1d89_c00000{bottom:564.060450px;}
.y880_c00000{bottom:564.062700px;}
.y1176_c00000{bottom:564.330000px;}
.y591_c00000{bottom:564.330450px;}
.y124_c00000{bottom:564.510450px;}
.y676_c00000{bottom:564.600207px;}
.y458_c00000{bottom:564.600450px;}
.y1805_c00000{bottom:564.690450px;}
.yb40_c00000{bottom:564.780450px;}
.y72a_c00000{bottom:564.870450px;}
.y79c_c00000{bottom:564.870729px;}
.y1a1_c00000{bottom:564.960450px;}
.y1bab_c00000{bottom:565.050450px;}
.yb2d_c00000{bottom:565.230450px;}
.y1253_c00000{bottom:565.410540px;}
.y1085_c00000{bottom:565.590450px;}
.yfd5_c00000{bottom:565.590657px;}
.ybd2_c00000{bottom:565.680450px;}
.y6c7_c00000{bottom:565.681305px;}
.y6ae_c00000{bottom:565.683375px;}
.yb4_c00000{bottom:565.770450px;}
.y99e_c00000{bottom:565.860450px;}
.y5ff_c00000{bottom:566.040450px;}
.y1cd2_c00000{bottom:566.130450px;}
.y1d3c_c00000{bottom:566.220450px;}
.y7ab_c00000{bottom:566.308389px;}
.yc6e_c00000{bottom:566.400450px;}
.yd67_c00000{bottom:566.670450px;}
.y1ba2_c00000{bottom:566.850450px;}
.y506_c00000{bottom:566.850630px;}
.y13d4_c00000{bottom:566.940450px;}
.y11ba_c00000{bottom:567.030450px;}
.y3a9_c00000{bottom:567.120450px;}
.y1ce2_c00000{bottom:567.120720px;}
.y1b3e_c00000{bottom:567.210450px;}
.y13fb_c00000{bottom:567.480450px;}
.ye01_c00000{bottom:567.481665px;}
.y1134_c00000{bottom:567.570450px;}
.y154a_c00000{bottom:567.660450px;}
.y78b_c00000{bottom:567.750450px;}
.y1d59_c00000{bottom:567.840450px;}
.ye58_c00000{bottom:567.930450px;}
.y1d32_c00000{bottom:568.110450px;}
.ye8d_c00000{bottom:568.380450px;}
.y3d3_c00000{bottom:568.560450px;}
.y153_c00000{bottom:568.650450px;}
.y94a_c00000{bottom:568.740450px;}
.y1bb_c00000{bottom:568.830450px;}
.y1d99_c00000{bottom:568.830630px;}
.y18a4_c00000{bottom:568.830810px;}
.y20de_c00000{bottom:569.010450px;}
.y101b_c00000{bottom:569.100000px;}
.y1b06_c00000{bottom:569.100450px;}
.y544_c00000{bottom:569.101485px;}
.y1790_c00000{bottom:569.280450px;}
.y489_c00000{bottom:569.460450px;}
.y17a3_c00000{bottom:569.640450px;}
.y9b_c00000{bottom:569.646444px;}
.y14dd_c00000{bottom:569.730450px;}
.y1ed2_c00000{bottom:569.730864px;}
.y1efb_c00000{bottom:569.731062px;}
.y10d1_c00000{bottom:570.000450px;}
.yac8_c00000{bottom:570.270450px;}
.y1ea1_c00000{bottom:570.450648px;}
.yd45_c00000{bottom:570.630450px;}
.y313_c00000{bottom:570.810450px;}
.y2b1_c00000{bottom:570.990450px;}
.yef4_c00000{bottom:570.990720px;}
.y1a39_c00000{bottom:571.259568px;}
.y117d_c00000{bottom:571.260450px;}
.y1377_c00000{bottom:571.440450px;}
.y182d_c00000{bottom:571.530540px;}
.y25b_c00000{bottom:571.620450px;}
.yeaa_c00000{bottom:571.980450px;}
.y71c_c00000{bottom:572.070450px;}
.yf39_c00000{bottom:572.250450px;}
.y16b3_c00000{bottom:572.250819px;}
.y430_c00000{bottom:572.340450px;}
.y72d_c00000{bottom:572.520540px;}
.ybee_c00000{bottom:572.700450px;}
.y21cf_c00000{bottom:572.970450px;}
.y17a_c00000{bottom:573.060450px;}
.yd23_c00000{bottom:573.150450px;}
.y21e8_c00000{bottom:573.239991px;}
.y21e6_c00000{bottom:573.240450px;}
.y1fa6_c00000{bottom:573.241215px;}
.y9dd_c00000{bottom:573.420450px;}
.y1357_c00000{bottom:573.421143px;}
.y196f_c00000{bottom:573.510450px;}
.y934_c00000{bottom:573.780450px;}
.yba4_c00000{bottom:573.960450px;}
.yb3f_c00000{bottom:574.050540px;}
.y2042_c00000{bottom:574.140450px;}
.y130a_c00000{bottom:574.230450px;}
.y1318_c00000{bottom:574.231206px;}
.y40c_c00000{bottom:574.410450px;}
.y903_c00000{bottom:574.680450px;}
.y1c13_c00000{bottom:575.130450px;}
.y1574_c00000{bottom:575.310450px;}
.y65b_c00000{bottom:575.490450px;}
.y2034_c00000{bottom:575.670450px;}
.yed8_c00000{bottom:575.760450px;}
.y15e1_c00000{bottom:575.850450px;}
.y149f_c00000{bottom:575.940450px;}
.y6f2_c00000{bottom:576.032160px;}
.y644_c00000{bottom:576.032430px;}
.y305_c00000{bottom:576.120450px;}
.y102f_c00000{bottom:576.121089px;}
.y140e_c00000{bottom:576.210450px;}
.y192b_c00000{bottom:576.210540px;}
.y81f_c00000{bottom:576.390450px;}
.y1b4f_c00000{bottom:576.480450px;}
.y19c0_c00000{bottom:576.570450px;}
.y1f78_c00000{bottom:576.660450px;}
.y1419_c00000{bottom:576.750450px;}
.y1975_c00000{bottom:576.750729px;}
.y2101_c00000{bottom:576.753444px;}
.y33e_c00000{bottom:576.840450px;}
.yc1a_c00000{bottom:577.020450px;}
.y1b8b_c00000{bottom:577.110450px;}
.y1a8b_c00000{bottom:577.470450px;}
.y17b5_c00000{bottom:577.471845px;}
.y34_c00000{bottom:577.500000px;}
.yb8b_c00000{bottom:577.650450px;}
.y107e_c00000{bottom:577.740450px;}
.yc5d_c00000{bottom:577.830450px;}
.y2171_c00000{bottom:578.010450px;}
.y5df_c00000{bottom:578.100450px;}
.y1c7f_c00000{bottom:578.101008px;}
.y1e6_c00000{bottom:578.190450px;}
.y1994_c00000{bottom:578.280600px;}
.y12aa_c00000{bottom:578.370450px;}
.y10c6_c00000{bottom:578.460450px;}
.y123f_c00000{bottom:578.460729px;}
.y8aa_c00000{bottom:578.461107px;}
.y4b4_c00000{bottom:578.550450px;}
.y18cd_c00000{bottom:578.550648px;}
.yd03_c00000{bottom:578.730450px;}
.y1b73_c00000{bottom:578.910450px;}
.y1103_c00000{bottom:579.000450px;}
.y1e53_c00000{bottom:579.001953px;}
.y8ce_c00000{bottom:579.090450px;}
.y1ae5_c00000{bottom:579.180450px;}
.y19dc_c00000{bottom:579.180540px;}
.y457_c00000{bottom:579.181575px;}
.y1804_c00000{bottom:579.181935px;}
.y14b9_c00000{bottom:579.360450px;}
.y1dfd_c00000{bottom:579.361053px;}
.yd9c_c00000{bottom:579.630450px;}
.y1683_c00000{bottom:579.720450px;}
.y56b_c00000{bottom:579.810450px;}
.y180b_c00000{bottom:579.990450px;}
.y1489_c00000{bottom:580.080450px;}
.y1175_c00000{bottom:580.081206px;}
.y1cb2_c00000{bottom:580.350450px;}
.y1fd2_c00000{bottom:580.351485px;}
.y1634_c00000{bottom:580.440450px;}
.ya92_c00000{bottom:580.620450px;}
.y15b1_c00000{bottom:580.621080px;}
.y2f1_c00000{bottom:580.980450px;}
.ycdb_c00000{bottom:580.981215px;}
.y1451_c00000{bottom:581.070468px;}
.y1084_c00000{bottom:581.160450px;}
.y31e_c00000{bottom:581.340450px;}
.y1dd8_c00000{bottom:581.340600px;}
.y140d_c00000{bottom:581.520450px;}
.y196c_c00000{bottom:581.610450px;}
.y6f_c00000{bottom:581.706291px;}
.y16fd_c00000{bottom:581.790450px;}
.y8e_c00000{bottom:581.976804px;}
.y199c_c00000{bottom:582.150450px;}
.y55a_c00000{bottom:582.420450px;}
.y171f_c00000{bottom:582.510450px;}
.y13ea_c00000{bottom:582.600450px;}
.yca0_c00000{bottom:582.691575px;}
.ya34_c00000{bottom:582.870450px;}
.yfd4_c00000{bottom:582.870648px;}
.y87f_c00000{bottom:583.052610px;}
.yf88_c00000{bottom:583.140450px;}
.y1ac6_c00000{bottom:583.320729px;}
.yf0d_c00000{bottom:583.500450px;}
.y370_c00000{bottom:583.590450px;}
.y1f2a_c00000{bottom:583.860450px;}
.y1395_c00000{bottom:583.950450px;}
.y1baa_c00000{bottom:584.040450px;}
.y11b9_c00000{bottom:584.220450px;}
.y1252_c00000{bottom:584.400450px;}
.y283_c00000{bottom:584.490450px;}
.y101a_c00000{bottom:584.580450px;}
.y6c6_c00000{bottom:584.580630px;}
.y6ad_c00000{bottom:584.582700px;}
.yb68_c00000{bottom:584.760450px;}
.y1133_c00000{bottom:584.850450px;}
.y1e7f_c00000{bottom:584.943735px;}
.y74b_c00000{bottom:585.030450px;}
.y1b19_c00000{bottom:585.390450px;}
.y675_c00000{bottom:585.570450px;}
.y1d17_c00000{bottom:585.750450px;}
.ya1b_c00000{bottom:585.840450px;}
.y505_c00000{bottom:585.840540px;}
.y3a8_c00000{bottom:586.110450px;}
.y1ce1_c00000{bottom:586.110630px;}
.y1762_c00000{bottom:586.111575px;}
.y185a_c00000{bottom:586.202097px;}
.yfdc_c00000{bottom:586.290900px;}
.ye11_c00000{bottom:586.470450px;}
.ye00_c00000{bottom:586.471575px;}
.y2188_c00000{bottom:586.650450px;}
.y117c_c00000{bottom:586.740900px;}
.y1ed1_c00000{bottom:587.010855px;}
.y1efa_c00000{bottom:587.011053px;}
.y392_c00000{bottom:587.100450px;}
.y10d0_c00000{bottom:587.280450px;}
.y3d2_c00000{bottom:587.460450px;}
.ydb6_c00000{bottom:587.550450px;}
.y1ea0_c00000{bottom:587.730639px;}
.y152_c00000{bottom:587.820450px;}
.y1d98_c00000{bottom:587.820540px;}
.y18a3_c00000{bottom:587.820720px;}
.y26_c00000{bottom:588.000000px;}
.y1d02_c00000{bottom:588.000450px;}
.y7aa_c00000{bottom:588.088317px;}
.y1b05_c00000{bottom:588.090450px;}
.y543_c00000{bottom:588.091395px;}
.ybba_c00000{bottom:588.180450px;}
.y123_c00000{bottom:588.270450px;}
.y16f7_c00000{bottom:588.630450px;}
.y1a0_c00000{bottom:588.720450px;}
.y1514_c00000{bottom:588.810450px;}
.y1749_c00000{bottom:588.900450px;}
.yaf5_c00000{bottom:589.080450px;}
.y7d1_c00000{bottom:589.170450px;}
.y83e_c00000{bottom:589.260450px;}
.y85e_c00000{bottom:589.440450px;}
.yd44_c00000{bottom:589.530450px;}
.y16b2_c00000{bottom:589.530999px;}
.y49_c00000{bottom:589.619649px;}
.y1c35_c00000{bottom:589.620450px;}
.y1955_c00000{bottom:589.980450px;}
.yef3_c00000{bottom:589.980630px;}
.y213c_c00000{bottom:590.070450px;}
.y4d5_c00000{bottom:590.160450px;}
.y916_c00000{bottom:590.160600px;}
.ycc2_c00000{bottom:590.340450px;}
.y149e_c00000{bottom:590.430450px;}
.y134f_c00000{bottom:590.520450px;}
.y1356_c00000{bottom:590.520774px;}
.y155b_c00000{bottom:590.700450px;}
.ydda_c00000{bottom:590.880450px;}
.ye26_c00000{bottom:591.240450px;}
.y42f_c00000{bottom:591.330450px;}
.y1309_c00000{bottom:591.420450px;}
.y1317_c00000{bottom:591.421017px;}
.y65a_c00000{bottom:591.510450px;}
.yfb_c00000{bottom:591.690450px;}
.y1902_c00000{bottom:591.780450px;}
.y19ef_c00000{bottom:592.140450px;}
.y1fa5_c00000{bottom:592.231125px;}
.y25a_c00000{bottom:592.320450px;}
.y238_c00000{bottom:592.410450px;}
.y99d_c00000{bottom:592.500729px;}
.y1ba_c00000{bottom:592.590450px;}
.y13b1_c00000{bottom:592.950450px;}
.yb3e_c00000{bottom:593.040450px;}
.y1e07_c00000{bottom:593.130000px;}
.y1a38_c00000{bottom:593.130081px;}
.y1bd2_c00000{bottom:593.130450px;}
.y166a_c00000{bottom:593.398947px;}
.y40b_c00000{bottom:593.400450px;}
.y102e_c00000{bottom:593.401080px;}
.y21e4_c00000{bottom:593.850729px;}
.y10c5_c00000{bottom:593.940450px;}
.yd5_c00000{bottom:594.030738px;}
.y1f1c_c00000{bottom:594.120450px;}
.y838_c00000{bottom:594.210450px;}
.y1d6d_c00000{bottom:594.570450px;}
.y12c7_c00000{bottom:594.753555px;}
.y1604_c00000{bottom:594.840450px;}
.y9dc_c00000{bottom:594.930450px;}
.y6f1_c00000{bottom:594.931485px;}
.y643_c00000{bottom:594.931755px;}
.y1488_c00000{bottom:595.110450px;}
.ybed_c00000{bottom:595.200450px;}
.y590_c00000{bottom:595.380450px;}
.y1c7e_c00000{bottom:595.380999px;}
.y20b3_c00000{bottom:595.560450px;}
.y4b3_c00000{bottom:595.830450px;}
.y18cc_c00000{bottom:595.830639px;}
.ya8b_c00000{bottom:595.920450px;}
.y1573_c00000{bottom:596.010450px;}
.y1d31_c00000{bottom:596.100450px;}
.yed7_c00000{bottom:596.190450px;}
.yb2c_c00000{bottom:596.280450px;}
.y17b4_c00000{bottom:596.461755px;}
.y196b_c00000{bottom:596.464590px;}
.y1e08_c00000{bottom:596.550450px;}
.y1dfc_c00000{bottom:596.550864px;}
.yc8d_c00000{bottom:596.640450px;}
.y15e0_c00000{bottom:596.730450px;}
.yb3_c00000{bottom:596.820450px;}
.y5fe_c00000{bottom:597.090450px;}
.y1174_c00000{bottom:597.090657px;}
.yea9_c00000{bottom:597.270450px;}
.y12d6_c00000{bottom:597.450450px;}
.yc72_c00000{bottom:597.450729px;}
.y2100_c00000{bottom:597.453165px;}
.y1cb1_c00000{bottom:597.630450px;}
.yd66_c00000{bottom:597.720450px;}
.y1b72_c00000{bottom:597.810450px;}
.y1ba1_c00000{bottom:597.900450px;}
.y15b0_c00000{bottom:597.901071px;}
.y13d3_c00000{bottom:597.990450px;}
.y14dc_c00000{bottom:598.080450px;}
.yd82_c00000{bottom:598.170450px;}
.y456_c00000{bottom:598.171485px;}
.y1803_c00000{bottom:598.171845px;}
.y1b3d_c00000{bottom:598.260450px;}
.y1c5b_c00000{bottom:598.350450px;}
.y1450_c00000{bottom:598.350459px;}
.y13fa_c00000{bottom:598.530450px;}
.y78a_c00000{bottom:598.800450px;}
.y1d58_c00000{bottom:598.890450px;}
.ye57_c00000{bottom:598.980450px;}
.y1f86_c00000{bottom:599.070450px;}
.y123e_c00000{bottom:599.160450px;}
.yb8a_c00000{bottom:599.340450px;}
.y1fd1_c00000{bottom:599.341395px;}
.ye8c_c00000{bottom:599.430450px;}
.y949_c00000{bottom:599.790450px;}
.y1a76_c00000{bottom:599.880450px;}
.ycda_c00000{bottom:599.880540px;}
.y1593_c00000{bottom:600.060450px;}
.y1019_c00000{bottom:600.150000px;}
.yfd3_c00000{bottom:600.150639px;}
.y79b_c00000{bottom:600.151485px;}
.y151_c00000{bottom:600.330450px;}
.y488_c00000{bottom:600.510450px;}
.y1102_c00000{bottom:600.690450px;}
.yc19_c00000{bottom:600.870450px;}
.y2170_c00000{bottom:600.960450px;}
.yf87_c00000{bottom:601.050450px;}
.y11b8_c00000{bottom:601.500450px;}
.y1ffa_c00000{bottom:601.680450px;}
.y391_c00000{bottom:601.681305px;}
.yc9f_c00000{bottom:601.681485px;}
.y312_c00000{bottom:601.860450px;}
.y220d_c00000{bottom:601.950450px;}
.y1e5_c00000{bottom:602.040450px;}
.y87e_c00000{bottom:602.042520px;}
.y1132_c00000{bottom:602.220450px;}
.y117b_c00000{bottom:602.310450px;}
.ya33_c00000{bottom:603.030450px;}
.y71b_c00000{bottom:603.120450px;}
.y1ab0_c00000{bottom:603.390450px;}
.y171e_c00000{bottom:603.480450px;}
.y1859_c00000{bottom:603.482088px;}
.y6c5_c00000{bottom:603.570540px;}
.y6ac_c00000{bottom:603.572610px;}
.ya9e_c00000{bottom:603.750450px;}
.y1ac5_c00000{bottom:604.020450px;}
.yd22_c00000{bottom:604.200450px;}
.y1ed0_c00000{bottom:604.200666px;}
.y1ef9_c00000{bottom:604.200864px;}
.y128d_c00000{bottom:604.290450px;}
.y20a0_c00000{bottom:604.380450px;}
.y10cf_c00000{bottom:604.470450px;}
.y933_c00000{bottom:604.650450px;}
.y1364_c00000{bottom:604.920450px;}
.y149d_c00000{bottom:605.010450px;}
.y3a7_c00000{bottom:605.100450px;}
.y1ce0_c00000{bottom:605.100540px;}
.y1761_c00000{bottom:605.101485px;}
.y1d88_c00000{bottom:605.103375px;}
.ye79_c00000{bottom:605.190450px;}
.y2123_c00000{bottom:605.460450px;}
.ydff_c00000{bottom:605.461485px;}
.y902_c00000{bottom:605.730450px;}
.y1a4a_c00000{bottom:605.820450px;}
.y6e_c00000{bottom:605.825985px;}
.y213b_c00000{bottom:606.000450px;}
.y1c12_c00000{bottom:606.090450px;}
.y8d_c00000{bottom:606.096498px;}
.y56a_c00000{bottom:606.270450px;}
.y3d1_c00000{bottom:606.450450px;}
.y74a_c00000{bottom:606.540450px;}
.yf3a_c00000{bottom:606.720450px;}
.y16b1_c00000{bottom:606.720819px;}
.y1d97_c00000{bottom:606.810450px;}
.y18a2_c00000{bottom:606.810630px;}
.y1251_c00000{bottom:606.900450px;}
.y304_c00000{bottom:606.990450px;}
.y1669_c00000{bottom:607.079460px;}
.y1b04_c00000{bottom:607.080450px;}
.y542_c00000{bottom:607.081305px;}
.y3f2_c00000{bottom:607.170450px;}
.y81e_c00000{bottom:607.440450px;}
.y19bf_c00000{bottom:607.620450px;}
.y1228_c00000{bottom:607.710450px;}
.y1527_c00000{bottom:607.800450px;}
.y33d_c00000{bottom:607.890450px;}
.y1a62_c00000{bottom:608.160450px;}
.y282_c00000{bottom:608.250450px;}
.yd43_c00000{bottom:608.430450px;}
.y1308_c00000{bottom:608.700450px;}
.y21a5_c00000{bottom:608.700729px;}
.y1316_c00000{bottom:608.701008px;}
.yc5c_c00000{bottom:608.880450px;}
.yef2_c00000{bottom:608.970540px;}
.y5de_c00000{bottom:609.150450px;}
.y1993_c00000{bottom:609.330600px;}
.y10c4_c00000{bottom:609.510450px;}
.yd02_c00000{bottom:609.780450px;}
.y7a9_c00000{bottom:609.958830px;}
.y36f_c00000{bottom:610.140450px;}
.y1e05_c00000{bottom:610.410000px;}
.y1f93_c00000{bottom:610.410450px;}
.y659_c00000{bottom:610.500450px;}
.yd9b_c00000{bottom:610.590450px;}
.y182c_c00000{bottom:610.680450px;}
.y102d_c00000{bottom:610.681071px;}
.y1682_c00000{bottom:610.770450px;}
.y634_c00000{bottom:610.860450px;}
.y1217_c00000{bottom:610.950729px;}
.y180a_c00000{bottom:611.040450px;}
.y83d_c00000{bottom:611.040549px;}
.y1fa4_c00000{bottom:611.130450px;}
.yed6_c00000{bottom:611.490450px;}
.y1376_c00000{bottom:611.580450px;}
.y20bf_c00000{bottom:611.850450px;}
.y14db_c00000{bottom:611.940450px;}
.y12a9_c00000{bottom:611.940630px;}
.y2f0_c00000{bottom:612.030450px;}
.y122_c00000{bottom:612.120450px;}
.y107d_c00000{bottom:612.210450px;}
.y40a_c00000{bottom:612.300450px;}
.y31d_c00000{bottom:612.390450px;}
.y1dd7_c00000{bottom:612.390600px;}
.y19f_c00000{bottom:612.570450px;}
.y259_c00000{bottom:612.840450px;}
.yc18_c00000{bottom:612.841395px;}
.y20f2_c00000{bottom:612.930234px;}
.y18cb_c00000{bottom:613.020450px;}
.y4b2_c00000{bottom:613.110450px;}
.y99c_c00000{bottom:613.200450px;}
.y559_c00000{bottom:613.470450px;}
.y13e9_c00000{bottom:613.560450px;}
.y21e3_c00000{bottom:613.739928px;}
.y12c6_c00000{bottom:613.743465px;}
.y1e06_c00000{bottom:613.830450px;}
.y1dfb_c00000{bottom:613.830855px;}
.y237_c00000{bottom:613.920450px;}
.y6f0_c00000{bottom:613.921395px;}
.y642_c00000{bottom:613.921665px;}
.y1271_c00000{bottom:614.100450px;}
.y1f3b_c00000{bottom:614.190450px;}
.y21b7_c00000{bottom:614.370450px;}
.y1173_c00000{bottom:614.370648px;}
.yf0c_c00000{bottom:614.550450px;}
.y1cb0_c00000{bottom:614.820450px;}
.y1a37_c00000{bottom:614.910009px;}
.y1394_c00000{bottom:614.910450px;}
.y15af_c00000{bottom:615.181062px;}
.y17b3_c00000{bottom:615.451665px;}
.y196a_c00000{bottom:615.454500px;}
.y158e_c00000{bottom:615.540450px;}
.y1018_c00000{bottom:615.630450px;}
.yb67_c00000{bottom:615.810450px;}
.y805_c00000{bottom:616.080450px;}
.y140c_c00000{bottom:616.260099px;}
.y1ff_c00000{bottom:616.260450px;}
.y42e_c00000{bottom:616.350450px;}
.y1b9_c00000{bottom:616.440450px;}
.y8a9_c00000{bottom:616.620450px;}
.y1b71_c00000{bottom:616.800450px;}
.ya1a_c00000{bottom:616.890450px;}
.y1ae4_c00000{bottom:617.070450px;}
.y455_c00000{bottom:617.161395px;}
.y1802_c00000{bottom:617.161755px;}
.ydd9_c00000{bottom:617.250450px;}
.yfd2_c00000{bottom:617.340450px;}
.y15df_c00000{bottom:617.430450px;}
.ye10_c00000{bottom:617.520450px;}
.y2187_c00000{bottom:617.700450px;}
.y117a_c00000{bottom:617.790900px;}
.ye25_c00000{bottom:617.880450px;}
.y2aa_c00000{bottom:618.150450px;}
.y2118_c00000{bottom:618.150729px;}
.y20ff_c00000{bottom:618.152886px;}
.y1fd0_c00000{bottom:618.240720px;}
.y11b5_c00000{bottom:618.600450px;}
.y11b7_c00000{bottom:618.780450px;}
.ycd9_c00000{bottom:618.870450px;}
.y1ac4_c00000{bottom:618.871575px;}
.y79a_c00000{bottom:619.141395px;}
.y5aa_c00000{bottom:619.230450px;}
.y11d9_c00000{bottom:619.320450px;}
.y837_c00000{bottom:619.500450px;}
.y149c_c00000{bottom:619.590450px;}
.y16f6_c00000{bottom:619.680450px;}
.y1d6c_c00000{bottom:619.770450px;}
.y1513_c00000{bottom:619.860450px;}
.y1748_c00000{bottom:619.950450px;}
.y13a6_c00000{bottom:620.130450px;}
.y7d0_c00000{bottom:620.220450px;}
.y9db_c00000{bottom:620.310450px;}
.y179_c00000{bottom:620.490450px;}
.y390_c00000{bottom:620.580630px;}
.yc9e_c00000{bottom:620.580810px;}
.y1858_c00000{bottom:620.671899px;}
.y1668_c00000{bottom:620.849748px;}
.y1954_c00000{bottom:620.940450px;}
.y87d_c00000{bottom:621.032430px;}
.y4d4_c00000{bottom:621.210450px;}
.y915_c00000{bottom:621.210600px;}
.y2122_c00000{bottom:621.300450px;}
.ycc1_c00000{bottom:621.390450px;}
.y14b8_c00000{bottom:621.480450px;}
.y1ecf_c00000{bottom:621.480657px;}
.y1ef8_c00000{bottom:621.480855px;}
.y10ce_c00000{bottom:621.750450px;}
.ya6e_c00000{bottom:621.840450px;}
.y150_c00000{bottom:621.930450px;}
.y1ba9_c00000{bottom:622.020450px;}
.yad4_c00000{bottom:622.110450px;}
.y1572_c00000{bottom:622.470450px;}
.y6c4_c00000{bottom:622.560450px;}
.y6ab_c00000{bottom:622.562520px;}
.yfa_c00000{bottom:622.740450px;}
.y1901_c00000{bottom:622.830450px;}
.y504_c00000{bottom:622.920450px;}
.y1e7e_c00000{bottom:623.103078px;}
.y1b18_c00000{bottom:623.190450px;}
.yc8c_c00000{bottom:623.280450px;}
.y625_c00000{bottom:623.550450px;}
.y1a75_c00000{bottom:623.640450px;}
.yea8_c00000{bottom:623.730450px;}
.yaa9_c00000{bottom:623.820450px;}
.y13b0_c00000{bottom:624.000450px;}
.y16b0_c00000{bottom:624.000819px;}
.y3a6_c00000{bottom:624.090450px;}
.y1760_c00000{bottom:624.091395px;}
.y1d87_c00000{bottom:624.093285px;}
.y171d_c00000{bottom:624.360450px;}
.y123d_c00000{bottom:624.450450px;}
.ydfe_c00000{bottom:624.451395px;}
.yf36_c00000{bottom:624.540450px;}
.y10c3_c00000{bottom:624.990450px;}
.y3d0_c00000{bottom:625.440450px;}
.yaf4_c00000{bottom:625.710450px;}
.y18a1_c00000{bottom:625.800540px;}
.y1315_c00000{bottom:625.800639px;}
.y2071_c00000{bottom:625.890450px;}
.y1e4_c00000{bottom:625.980450px;}
.y541_c00000{bottom:625.980630px;}
.y1a09_c00000{bottom:626.070450px;}
.ybec_c00000{bottom:626.340450px;}
.y932_c00000{bottom:626.340873px;}
.y58f_c00000{bottom:626.430450px;}
.y1b28_c00000{bottom:626.610450px;}
.y83c_c00000{bottom:626.880450px;}
.y6da_c00000{bottom:626.970450px;}
.yb2b_c00000{bottom:627.330450px;}
.y1e47_c00000{bottom:627.510450px;}
.y1dbc_c00000{bottom:627.511395px;}
.y206e_c00000{bottom:627.690450px;}
.yb2_c00000{bottom:627.870450px;}
.y102c_c00000{bottom:627.870882px;}
.yef1_c00000{bottom:627.960450px;}
.y1d3b_c00000{bottom:628.050450px;}
.y5fd_c00000{bottom:628.140450px;}
.y2cc_c00000{bottom:628.230450px;}
.y311_c00000{bottom:628.500450px;}
.yd65_c00000{bottom:628.770450px;}
.y1ba0_c00000{bottom:628.950450px;}
.y13d2_c00000{bottom:629.040450px;}
.y1b3c_c00000{bottom:629.220450px;}
.y1445_c00000{bottom:629.400450px;}
.y658_c00000{bottom:629.490450px;}
.y1250_c00000{bottom:629.580450px;}
.y48_c00000{bottom:629.850189px;}
.y789_c00000{bottom:629.850450px;}
.y1d57_c00000{bottom:629.940450px;}
.y1c7d_c00000{bottom:630.030162px;}
.ye56_c00000{bottom:630.030450px;}
.y6d_c00000{bottom:630.035850px;}
.y140b_c00000{bottom:630.120162px;}
.y1070_c00000{bottom:630.210450px;}
.yd4_c00000{bottom:630.300450px;}
.y8c_c00000{bottom:630.306363px;}
.ye78_c00000{bottom:630.480450px;}
.y182b_c00000{bottom:630.570450px;}
.y1e48_c00000{bottom:630.750450px;}
.y36e_c00000{bottom:630.840450px;}
.y12a8_c00000{bottom:630.930540px;}
.y1e0f_c00000{bottom:631.110225px;}
.y1e04_c00000{bottom:631.110450px;}
.y1dfa_c00000{bottom:631.110846px;}
.y1017_c00000{bottom:631.110900px;}
.y409_c00000{bottom:631.290450px;}
.y8e9_c00000{bottom:631.380450px;}
.y2058_c00000{bottom:631.470450px;}
.y487_c00000{bottom:631.560450px;}
.y1216_c00000{bottom:631.650450px;}
.y1172_c00000{bottom:631.650639px;}
.y7a8_c00000{bottom:631.738758px;}
.y17a2_c00000{bottom:631.740450px;}
.yc17_c00000{bottom:631.831305px;}
.y1549_c00000{bottom:632.010450px;}
.y281_c00000{bottom:632.100450px;}
.y236_c00000{bottom:632.280450px;}
.y209f_c00000{bottom:632.370729px;}
.y15ae_c00000{bottom:632.370873px;}
.y1ff9_c00000{bottom:632.640450px;}
.y12c5_c00000{bottom:632.642790px;}
.y144f_c00000{bottom:632.820450px;}
.y6ef_c00000{bottom:632.911305px;}
.y641_c00000{bottom:632.911575px;}
.y2b0_c00000{bottom:633.090450px;}
.y1c1e_c00000{bottom:633.180450px;}
.y1a61_c00000{bottom:633.270450px;}
.y1179_c00000{bottom:633.360450px;}
.y258_c00000{bottom:633.540450px;}
.y19ee_c00000{bottom:633.990450px;}
.y149b_c00000{bottom:634.080450px;}
.y71a_c00000{bottom:634.170450px;}
.y21b6_c00000{bottom:634.260450px;}
.y1aaf_c00000{bottom:634.440450px;}
.y17b2_c00000{bottom:634.441575px;}
.y1969_c00000{bottom:634.444410px;}
.yfdb_c00000{bottom:634.620441px;}
.yfd1_c00000{bottom:634.620450px;}
.y1667_c00000{bottom:634.709811px;}
.yf23_c00000{bottom:634.800450px;}
.yf38_c00000{bottom:634.890450px;}
.yd21_c00000{bottom:635.250450px;}
.yed5_c00000{bottom:635.340450px;}
.y1f3a_c00000{bottom:635.700450px;}
.y11b4_c00000{bottom:635.790450px;}
.y121_c00000{bottom:635.880450px;}
.y11b6_c00000{bottom:635.970450px;}
.y1ae3_c00000{bottom:636.060450px;}
.y1b8a_c00000{bottom:636.150450px;}
.y454_c00000{bottom:636.151305px;}
.y1801_c00000{bottom:636.151665px;}
.y19e_c00000{bottom:636.330450px;}
.ya6d_c00000{bottom:636.330630px;}
.y1487_c00000{bottom:636.510450px;}
.y1131_c00000{bottom:636.600450px;}
.y901_c00000{bottom:636.780450px;}
.y1a36_c00000{bottom:636.780522px;}
.y1681_c00000{bottom:637.230450px;}
.y1fcf_c00000{bottom:637.230630px;}
.y84d_c00000{bottom:637.320450px;}
.yf84_c00000{bottom:637.500450px;}
.y503_c00000{bottom:637.591305px;}
.y2033_c00000{bottom:637.770450px;}
.y16df_c00000{bottom:637.770819px;}
.y1f6b_c00000{bottom:637.860450px;}
.y1ac3_c00000{bottom:637.861485px;}
.y15de_c00000{bottom:637.950450px;}
.y1857_c00000{bottom:637.951890px;}
.y186f_c00000{bottom:637.953393px;}
.y303_c00000{bottom:638.040450px;}
.y799_c00000{bottom:638.131305px;}
.y624_c00000{bottom:638.132250px;}
.y3f1_c00000{bottom:638.220450px;}
.y81d_c00000{bottom:638.490450px;}
.ybf4_c00000{bottom:638.580450px;}
.y19be_c00000{bottom:638.670450px;}
.y1f77_c00000{bottom:638.760450px;}
.y1ece_c00000{bottom:638.760648px;}
.y1ef7_c00000{bottom:638.760846px;}
.y13ff_c00000{bottom:638.850450px;}
.y20fe_c00000{bottom:638.852607px;}
.y33c_c00000{bottom:638.940450px;}
.ycd8_c00000{bottom:639.030450px;}
.y38f_c00000{bottom:639.570540px;}
.yc9d_c00000{bottom:639.570720px;}
.yc5b_c00000{bottom:639.660450px;}
.yd33_c00000{bottom:639.930450px;}
.y1fe_c00000{bottom:640.020450px;}
.y87c_c00000{bottom:640.022340px;}
.y14f_c00000{bottom:640.200450px;}
.y14da_c00000{bottom:640.290450px;}
.y1992_c00000{bottom:640.380600px;}
.y10c2_c00000{bottom:640.560450px;}
.yd01_c00000{bottom:640.830450px;}
.y1ba8_c00000{bottom:640.920450px;}
.y8cd_c00000{bottom:641.190450px;}
.y16af_c00000{bottom:641.280999px;}
.y1e9f_c00000{bottom:641.460450px;}
.y6aa_c00000{bottom:641.552430px;}
.y42d_c00000{bottom:641.640450px;}
.yf35_c00000{bottom:641.820450px;}
.y5a9_c00000{bottom:641.910450px;}
.y1d16_c00000{bottom:642.090450px;}
.y9a_c00000{bottom:642.095697px;}
.y1101_c00000{bottom:642.180450px;}
.yb66_c00000{bottom:642.270450px;}
.y931_c00000{bottom:642.270549px;}
.ydd8_c00000{bottom:642.810450px;}
.y3a5_c00000{bottom:642.990450px;}
.y175f_c00000{bottom:642.990720px;}
.y1d86_c00000{bottom:642.992610px;}
.y2ef_c00000{bottom:643.080450px;}
.y1307_c00000{bottom:643.170450px;}
.y134e_c00000{bottom:643.171962px;}
.y1559_c00000{bottom:643.260450px;}
.ydfd_c00000{bottom:643.350720px;}
.y2a9_c00000{bottom:643.440450px;}
.y1dd6_c00000{bottom:643.440600px;}
.y1c7c_c00000{bottom:643.800450px;}
.y140a_c00000{bottom:643.890450px;}
.yaf3_c00000{bottom:644.070450px;}
.y171c_c00000{bottom:644.160450px;}
.yb3d_c00000{bottom:644.250450px;}
.y178_c00000{bottom:644.430450px;}
.y558_c00000{bottom:644.520450px;}
.ye24_c00000{bottom:644.610450px;}
.y18a0_c00000{bottom:644.790450px;}
.y1e02_c00000{bottom:644.880000px;}
.y1b03_c00000{bottom:644.970450px;}
.y540_c00000{bottom:644.970540px;}
.y1d6b_c00000{bottom:645.060450px;}
.y102b_c00000{bottom:645.150873px;}
.yd42_c00000{bottom:645.330387px;}
.yf0b_c00000{bottom:645.510450px;}
.y192a_c00000{bottom:645.600450px;}
.y106f_c00000{bottom:645.690450px;}
.y1e46_c00000{bottom:646.500450px;}
.y1780_c00000{bottom:646.501305px;}
.y8a8_c00000{bottom:646.590450px;}
.y1016_c00000{bottom:646.680450px;}
.y1cc7_c00000{bottom:646.860450px;}
.y804_c00000{bottom:647.130450px;}
.y1393_c00000{bottom:647.310450px;}
.y1a74_c00000{bottom:647.490450px;}
.y4b1_c00000{bottom:647.580450px;}
.y6c3_c00000{bottom:647.670450px;}
.y1571_c00000{bottom:647.760450px;}
.yebf_c00000{bottom:647.850450px;}
.y2091_c00000{bottom:647.850729px;}
.ya19_c00000{bottom:647.940450px;}
.yd81_c00000{bottom:648.030450px;}
.y1e0e_c00000{bottom:648.300036px;}
.y1e03_c00000{bottom:648.300450px;}
.y1df9_c00000{bottom:648.300657px;}
.y1666_c00000{bottom:648.480099px;}
.y657_c00000{bottom:648.480450px;}
.yc8b_c00000{bottom:648.570450px;}
.y149a_c00000{bottom:648.660450px;}
.y1171_c00000{bottom:648.840450px;}
.yea7_c00000{bottom:649.020450px;}
.y18ca_c00000{bottom:649.020873px;}
.y107c_c00000{bottom:649.110450px;}
.y29f_c00000{bottom:649.200450px;}
.y1bd1_c00000{bottom:649.200729px;}
.y21a4_c00000{bottom:649.470450px;}
.y15ad_c00000{bottom:649.650864px;}
.y1e3_c00000{bottom:649.830450px;}
.y12a7_c00000{bottom:649.920450px;}
.y144e_c00000{bottom:650.100459px;}
.y408_c00000{bottom:650.280450px;}
.y836_c00000{bottom:650.550450px;}
.y1fa3_c00000{bottom:650.641305px;}
.y16f5_c00000{bottom:650.730450px;}
.yc16_c00000{bottom:650.821215px;}
.y1512_c00000{bottom:650.910450px;}
.y1747_c00000{bottom:651.000450px;}
.y7cf_c00000{bottom:651.180450px;}
.y85d_c00000{bottom:651.360450px;}
.y12c4_c00000{bottom:651.632700px;}
.y2043_c00000{bottom:651.810450px;}
.y6ee_c00000{bottom:651.901215px;}
.y640_c00000{bottom:651.901485px;}
.y1953_c00000{bottom:651.990450px;}
.yf37_c00000{bottom:652.170450px;}
.y4d3_c00000{bottom:652.260450px;}
.y6d9_c00000{bottom:652.260600px;}
.ycc0_c00000{bottom:652.440450px;}
.y948_c00000{bottom:652.440549px;}
.yfc0_c00000{bottom:652.620000px;}
.y1c11_c00000{bottom:652.710450px;}
.y257_c00000{bottom:652.980450px;}
.yef0_c00000{bottom:653.070450px;}
.y1633_c00000{bottom:653.160450px;}
.y21e1_c00000{bottom:653.340450px;}
.y17b1_c00000{bottom:653.340900px;}
.y21e2_c00000{bottom:653.340972px;}
.y1968_c00000{bottom:653.343735px;}
.y1548_c00000{bottom:653.430450px;}
.y1f5e_c00000{bottom:653.520450px;}
.y7a7_c00000{bottom:653.609271px;}
.y2088_c00000{bottom:653.610450px;}
.yf9_c00000{bottom:653.790450px;}
.y1900_c00000{bottom:653.880450px;}
.ya32_c00000{bottom:653.970450px;}
.y21b5_c00000{bottom:654.060450px;}
.y6c_c00000{bottom:654.155544px;}
.y206d_c00000{bottom:654.330450px;}
.y8b_c00000{bottom:654.426057px;}
.yf83_c00000{bottom:654.780450px;}
.y13af_c00000{bottom:654.870450px;}
.y1ae2_c00000{bottom:655.050450px;}
.y16de_c00000{bottom:655.050819px;}
.y1b64_c00000{bottom:655.140450px;}
.y453_c00000{bottom:655.141215px;}
.y1800_c00000{bottom:655.141575px;}
.y1856_c00000{bottom:655.231881px;}
.y186e_c00000{bottom:655.233384px;}
.y1270_c00000{bottom:655.320450px;}
.ya6c_c00000{bottom:655.320540px;}
.y123c_c00000{bottom:655.500450px;}
.y1c34_c00000{bottom:655.590450px;}
.y1d3a_c00000{bottom:655.770450px;}
.y235_c00000{bottom:655.860450px;}
.y1b70_c00000{bottom:655.950450px;}
.y1ecd_c00000{bottom:655.950459px;}
.y1ef6_c00000{bottom:655.950657px;}
.y10c1_c00000{bottom:656.040450px;}
.y36d_c00000{bottom:656.130450px;}
.y10cd_c00000{bottom:656.220450px;}
.y1fce_c00000{bottom:656.220540px;}
.y502_c00000{bottom:656.581215px;}
.y2159_c00000{bottom:656.760450px;}
.y1f6a_c00000{bottom:656.850450px;}
.yb65_c00000{bottom:656.850540px;}
.y1ac2_c00000{bottom:656.851395px;}
.y798_c00000{bottom:657.030630px;}
.y623_c00000{bottom:657.031575px;}
.y1a08_c00000{bottom:657.120450px;}
.y1215_c00000{bottom:657.210450px;}
.y58e_c00000{bottom:657.390450px;}
.y20b2_c00000{bottom:657.660450px;}
.y8e8_c00000{bottom:658.020729px;}
.y930_c00000{bottom:658.110450px;}
.y1f39_c00000{bottom:658.110873px;}
.ya76_c00000{bottom:658.290450px;}
.yb2a_c00000{bottom:658.380450px;}
.y16ae_c00000{bottom:658.470819px;}
.y1f_c00000{bottom:658.500000px;}
.y38e_c00000{bottom:658.560450px;}
.yc9c_c00000{bottom:658.560630px;}
.yf22_c00000{bottom:658.650450px;}
.yb1_c00000{bottom:658.920450px;}
.y15dd_c00000{bottom:658.920468px;}
.y15da_c00000{bottom:658.920657px;}
.y87b_c00000{bottom:658.921665px;}
.yed4_c00000{bottom:659.100450px;}
.y5fc_c00000{bottom:659.190450px;}
.y1100_c00000{bottom:659.370450px;}
.y1dc7_c00000{bottom:659.550450px;}
.y20fd_c00000{bottom:659.552328px;}
.y120_c00000{bottom:659.730450px;}
.y1200_c00000{bottom:659.820450px;}
.y1ba7_c00000{bottom:659.910450px;}
.y1b9f_c00000{bottom:660.000450px;}
.y13d1_c00000{bottom:660.090450px;}
.y19d_c00000{bottom:660.180450px;}
.y1b3b_c00000{bottom:660.270450px;}
.y1306_c00000{bottom:660.450450px;}
.y134d_c00000{bottom:660.451953px;}
.y6a9_c00000{bottom:660.542340px;}
.y128c_c00000{bottom:660.630450px;}
.y788_c00000{bottom:660.900450px;}
.y1d56_c00000{bottom:660.990450px;}
.ye55_c00000{bottom:661.080450px;}
.y106e_c00000{bottom:661.260450px;}
.y1e7d_c00000{bottom:661.262421px;}
.y220c_c00000{bottom:661.440450px;}
.ye77_c00000{bottom:661.530450px;}
.y182a_c00000{bottom:661.620450px;}
.y3a4_c00000{bottom:661.980450px;}
.y175e_c00000{bottom:661.980630px;}
.y1d85_c00000{bottom:661.982520px;}
.y302_c00000{bottom:662.160450px;}
.y1665_c00000{bottom:662.250387px;}
.y1015_c00000{bottom:662.250864px;}
.yd00_c00000{bottom:662.340450px;}
.ydfc_c00000{bottom:662.340630px;}
.yaf2_c00000{bottom:662.430450px;}
.y102a_c00000{bottom:662.430864px;}
.y1680_c00000{bottom:662.520450px;}
.y486_c00000{bottom:662.610450px;}
.y18ac_c00000{bottom:662.790450px;}
.y961_c00000{bottom:663.150450px;}
.y1499_c00000{bottom:663.240450px;}
.y9c2_c00000{bottom:663.420450px;}
.y1fd_c00000{bottom:663.870450px;}
.yf31_c00000{bottom:663.960450px;}
.y14e_c00000{bottom:664.050450px;}
.yd3_c00000{bottom:664.140450px;}
.y1444_c00000{bottom:664.410450px;}
.y1bef_c00000{bottom:664.500450px;}
.y3cf_c00000{bottom:664.590450px;}
.y107b_c00000{bottom:664.680450px;}
.y4b0_c00000{bottom:664.770450px;}
.y1f90_c00000{bottom:664.860450px;}
.ye68_c00000{bottom:664.950450px;}
.y171b_c00000{bottom:665.130450px;}
.yaa8_c00000{bottom:665.220450px;}
.y177f_c00000{bottom:665.491215px;}
.y1e0d_c00000{bottom:665.580027px;}
.y1e01_c00000{bottom:665.580450px;}
.y1df8_c00000{bottom:665.580648px;}
.y1cdb_c00000{bottom:665.850450px;}
.yc5a_c00000{bottom:666.030450px;}
.y1d01_c00000{bottom:666.120450px;}
.yd20_c00000{bottom:666.300450px;}
.y18c9_c00000{bottom:666.300864px;}
.y1caf_c00000{bottom:666.570450px;}
.y775_c00000{bottom:666.660729px;}
.y1b27_c00000{bottom:666.750450px;}
.y116e_c00000{bottom:666.840468px;}
.y15ac_c00000{bottom:666.930855px;}
.y1170_c00000{bottom:667.020828px;}
.y1b89_c00000{bottom:667.200450px;}
.y15a0_c00000{bottom:667.290450px;}
.y656_c00000{bottom:667.380450px;}
.y900_c00000{bottom:667.740450px;}
.yd9a_c00000{bottom:668.100450px;}
.y177_c00000{bottom:668.280450px;}
.y2057_c00000{bottom:668.550450px;}
.y14d9_c00000{bottom:668.640450px;}
.y2032_c00000{bottom:668.820450px;}
.y3f0_c00000{bottom:669.270450px;}
.y2186_c00000{bottom:669.450450px;}
.y81c_c00000{bottom:669.540450px;}
.y1fa2_c00000{bottom:669.540630px;}
.y19bd_c00000{bottom:669.720450px;}
.y1de1_c00000{bottom:669.810450px;}
.yc15_c00000{bottom:669.811125px;}
.y189f_c00000{bottom:669.900450px;}
.y1809_c00000{bottom:669.900729px;}
.y33b_c00000{bottom:669.990450px;}
.y47_c00000{bottom:670.169910px;}
.ycff_c00000{bottom:670.530450px;}
.yd80_c00000{bottom:670.620450px;}
.y1d39_c00000{bottom:670.620720px;}
.yf21_c00000{bottom:670.621575px;}
.y12c3_c00000{bottom:670.622610px;}
.y1f5d_c00000{bottom:670.800450px;}
.y6ed_c00000{bottom:670.891125px;}
.y63f_c00000{bottom:670.891395px;}
.y803_c00000{bottom:670.980450px;}
.y1130_c00000{bottom:671.070450px;}
.y5dd_c00000{bottom:671.250450px;}
.ye23_c00000{bottom:671.340450px;}
.y1991_c00000{bottom:671.430600px;}
.y20c9_c00000{bottom:671.880450px;}
.yf82_c00000{bottom:671.970450px;}
.y8cc_c00000{bottom:672.240450px;}
.y17b0_c00000{bottom:672.330810px;}
.y16dd_c00000{bottom:672.330999px;}
.y1967_c00000{bottom:672.333645px;}
.y21a3_c00000{bottom:672.420450px;}
.y1855_c00000{bottom:672.421692px;}
.y186d_c00000{bottom:672.423195px;}
.y1603_c00000{bottom:672.510450px;}
.y42c_c00000{bottom:672.690450px;}
.ya63_c00000{bottom:672.870450px;}
.y5a8_c00000{bottom:672.960450px;}
.yebe_c00000{bottom:673.140450px;}
.y1ecc_c00000{bottom:673.230450px;}
.y1ef5_c00000{bottom:673.230648px;}
.y10c0_c00000{bottom:673.320450px;}
.y1e2_c00000{bottom:673.410450px;}
.ya4b_c00000{bottom:673.770450px;}
.ydd7_c00000{bottom:673.860450px;}
.y21e0_c00000{bottom:673.949226px;}
.y1ae1_c00000{bottom:674.040450px;}
.y452_c00000{bottom:674.040540px;}
.y1f38_c00000{bottom:674.040549px;}
.y17ff_c00000{bottom:674.040900px;}
.y2ee_c00000{bottom:674.130450px;}
.ya6b_c00000{bottom:674.310450px;}
.y29e_c00000{bottom:674.490450px;}
.y1dd5_c00000{bottom:674.490600px;}
.y19ed_c00000{bottom:674.760450px;}
.y1547_c00000{bottom:674.850450px;}
.y16fc_c00000{bottom:674.940450px;}
.ye0f_c00000{bottom:675.030450px;}
.y1fcd_c00000{bottom:675.210450px;}
.y7a6_c00000{bottom:675.389199px;}
.y501_c00000{bottom:675.480540px;}
.y1aae_c00000{bottom:675.481395px;}
.y92f_c00000{bottom:675.569055px;}
.y557_c00000{bottom:675.570450px;}
.y13e8_c00000{bottom:675.660450px;}
.y16ad_c00000{bottom:675.750819px;}
.y1b6f_c00000{bottom:675.840450px;}
.y1ac1_c00000{bottom:675.841305px;}
.y1f54_c00000{bottom:675.930450px;}
.y797_c00000{bottom:676.020540px;}
.y622_c00000{bottom:676.021485px;}
.ya8a_c00000{bottom:676.110450px;}
.y15db_c00000{bottom:676.200459px;}
.y15d9_c00000{bottom:676.200648px;}
.y10ff_c00000{bottom:676.470450px;}
.yf0a_c00000{bottom:676.650450px;}
.yb89_c00000{bottom:676.740450px;}
.y1a18_c00000{bottom:677.191395px;}
.y1305_c00000{bottom:677.550450px;}
.yc9b_c00000{bottom:677.550540px;}
.y7ce_c00000{bottom:677.640450px;}
.y1347_c00000{bottom:677.730450px;}
.y1314_c00000{bottom:677.731059px;}
.y134c_c00000{bottom:677.731944px;}
.y8a7_c00000{bottom:677.820450px;}
.y1486_c00000{bottom:677.910450px;}
.y87a_c00000{bottom:677.911575px;}
.y85c_c00000{bottom:678.000648px;}
.y9b6_c00000{bottom:678.090450px;}
.y1392_c00000{bottom:678.270450px;}
.y6b_c00000{bottom:678.275238px;}
.yeef_c00000{bottom:678.360450px;}
.y1952_c00000{bottom:678.450450px;}
.y8a_c00000{bottom:678.545751px;}
.y1a07_c00000{bottom:678.630450px;}
.y38d_c00000{bottom:678.720450px;}
.y1570_c00000{bottom:678.810450px;}
.y749_c00000{bottom:678.900450px;}
.ya18_c00000{bottom:678.990450px;}
.y1e9e_c00000{bottom:679.440450px;}
.y1014_c00000{bottom:679.440675px;}
.y6a8_c00000{bottom:679.441665px;}
.yc8a_c00000{bottom:679.620450px;}
.y1029_c00000{bottom:679.620675px;}
.y234_c00000{bottom:679.710450px;}
.yea6_c00000{bottom:680.070450px;}
.yf34_c00000{bottom:680.160450px;}
.y15f8_c00000{bottom:680.250450px;}
.y20fc_c00000{bottom:680.252049px;}
.yaf1_c00000{bottom:680.700450px;}
.y3a3_c00000{bottom:680.970450px;}
.y175d_c00000{bottom:680.970540px;}
.y1d84_c00000{bottom:680.972430px;}
.y13ae_c00000{bottom:681.240450px;}
.ybb9_c00000{bottom:681.330450px;}
.ydfb_c00000{bottom:681.330540px;}
.y835_c00000{bottom:681.600450px;}
.ydb5_c00000{bottom:681.780450px;}
.y4af_c00000{bottom:682.050450px;}
.y13a5_c00000{bottom:682.230450px;}
.y9da_c00000{bottom:682.410450px;}
.yd64_c00000{bottom:682.590450px;}
.y1b02_c00000{bottom:682.680450px;}
.y1e0c_c00000{bottom:682.860018px;}
.yed3_c00000{bottom:682.860450px;}
.y1df7_c00000{bottom:682.860639px;}
.y947_c00000{bottom:682.951215px;}
.y14d8_c00000{bottom:683.130450px;}
.y1e45_c00000{bottom:683.220450px;}
.y4d2_c00000{bottom:683.310450px;}
.y6d8_c00000{bottom:683.310600px;}
.y2158_c00000{bottom:683.400450px;}
.ycbf_c00000{bottom:683.490450px;}
.y18c8_c00000{bottom:683.580855px;}
.yfbf_c00000{bottom:683.670000px;}
.y11f_c00000{bottom:683.670450px;}
.y1c10_c00000{bottom:683.760450px;}
.y1cae_c00000{bottom:683.850450px;}
.y19c_c00000{bottom:683.940450px;}
.y5c7_c00000{bottom:684.120450px;}
.y116d_c00000{bottom:684.120459px;}
.y15ab_c00000{bottom:684.120666px;}
.y1375_c00000{bottom:684.210450px;}
.y116f_c00000{bottom:684.300819px;}
.y1ff8_c00000{bottom:684.390450px;}
.y177e_c00000{bottom:684.390540px;}
.y20dd_c00000{bottom:684.750450px;}
.yf8_c00000{bottom:684.840450px;}
.ya31_c00000{bottom:685.020450px;}
.y220b_c00000{bottom:685.110450px;}
.y1c31_c00000{bottom:685.290450px;}
.yb0_c00000{bottom:685.380450px;}
.yaa7_c00000{bottom:685.920450px;}
.y171a_c00000{bottom:686.010450px;}
.y126f_c00000{bottom:686.192160px;}
.ycfe_c00000{bottom:686.280450px;}
.y655_c00000{bottom:686.370450px;}
.y123b_c00000{bottom:686.550450px;}
.y2056_c00000{bottom:686.910450px;}
.y36c_c00000{bottom:687.180450px;}
.y774_c00000{bottom:687.360450px;}
.y1fc_c00000{bottom:687.630450px;}
.y14d_c00000{bottom:687.810450px;}
.ye76_c00000{bottom:687.990450px;}
.y1f5c_c00000{bottom:688.080450px;}
.y407_c00000{bottom:688.260450px;}
.y11b2_c00000{bottom:688.350450px;}
.y58d_c00000{bottom:688.440450px;}
.y1fa1_c00000{bottom:688.530540px;}
.yc14_c00000{bottom:688.710450px;}
.y1c5a_c00000{bottom:688.890450px;}
.y256_c00000{bottom:688.980450px;}
.y485_c00000{bottom:689.070450px;}
.yf81_c00000{bottom:689.250450px;}
.y21ce_c00000{bottom:689.340450px;}
.yb29_c00000{bottom:689.430450px;}
.y16dc_c00000{bottom:689.520819px;}
.y1a60_c00000{bottom:689.610450px;}
.y1d38_c00000{bottom:689.610630px;}
.yf20_c00000{bottom:689.611485px;}
.y12c2_c00000{bottom:689.612520px;}
.y1854_c00000{bottom:689.701683px;}
.y186c_c00000{bottom:689.703186px;}
.y63e_c00000{bottom:689.790720px;}
.y1d00_c00000{bottom:689.880450px;}
.y3ce_c00000{bottom:689.970450px;}
.y5fb_c00000{bottom:690.240450px;}
.y17a1_c00000{bottom:690.330450px;}
.y1ef4_c00000{bottom:690.510639px;}
.y10bf_c00000{bottom:690.600450px;}
.yf30_c00000{bottom:690.600729px;}
.y11ff_c00000{bottom:690.870450px;}
.y1664_c00000{bottom:691.050450px;}
.y13d0_c00000{bottom:691.140450px;}
.y1b3a_c00000{bottom:691.320450px;}
.yb88_c00000{bottom:691.320720px;}
.y1966_c00000{bottom:691.323555px;}
.y213a_c00000{bottom:691.500450px;}
.y1de0_c00000{bottom:691.500873px;}
.yc59_c00000{bottom:691.590450px;}
.y8ff_c00000{bottom:691.680450px;}
.ye54_c00000{bottom:691.860450px;}
.y787_c00000{bottom:691.950450px;}
.y176_c00000{bottom:692.040450px;}
.y1d0f_c00000{bottom:692.130450px;}
.y1498_c00000{bottom:692.310162px;}
.y106d_c00000{bottom:692.310450px;}
.yb64_c00000{bottom:692.490450px;}
.ye8b_c00000{bottom:692.580450px;}
.y1829_c00000{bottom:692.670450px;}
.y451_c00000{bottom:693.030450px;}
.y17fe_c00000{bottom:693.030810px;}
.y16ac_c00000{bottom:693.030999px;}
.y1951_c00000{bottom:693.031665px;}
.y203e_c00000{bottom:693.120450px;}
.y158d_c00000{bottom:693.210450px;}
.yd99_c00000{bottom:693.390450px;}
.y8ec_c00000{bottom:693.480450px;}
.y15d8_c00000{bottom:693.480639px;}
.y167f_c00000{bottom:693.570450px;}
.y521_c00000{bottom:693.660450px;}
.y719_c00000{bottom:693.660600px;}
.y10fe_c00000{bottom:693.750450px;}
.y21df_c00000{bottom:693.839928px;}
.y2090_c00000{bottom:693.840450px;}
.y85b_c00000{bottom:693.840549px;}
.yf86_c00000{bottom:694.200450px;}
.y500_c00000{bottom:694.470450px;}
.y1aad_c00000{bottom:694.471305px;}
.y19ec_c00000{bottom:694.560450px;}
.y1304_c00000{bottom:694.740450px;}
.y1313_c00000{bottom:694.740510px;}
.y1ac0_c00000{bottom:694.740630px;}
.y134b_c00000{bottom:694.741395px;}
.y124f_c00000{bottom:694.742610px;}
.y1fcc_c00000{bottom:694.830450px;}
.y1346_c00000{bottom:694.920450px;}
.y796_c00000{bottom:695.010450px;}
.y1e9d_c00000{bottom:695.010657px;}
.y621_c00000{bottom:695.011395px;}
.y1a73_c00000{bottom:695.100450px;}
.yd2_c00000{bottom:695.190450px;}
.y107a_c00000{bottom:695.730450px;}
.y81b_c00000{bottom:696.000450px;}
.y19bc_c00000{bottom:696.180450px;}
.y1a17_c00000{bottom:696.181305px;}
.y1546_c00000{bottom:696.360450px;}
.yc9a_c00000{bottom:696.540450px;}
.y1e00_c00000{bottom:696.630000px;}
.y1013_c00000{bottom:696.720666px;}
.y857_c00000{bottom:696.810450px;}
.ye22_c00000{bottom:696.900450px;}
.y1028_c00000{bottom:696.900666px;}
.y879_c00000{bottom:696.901485px;}
.y14d7_c00000{bottom:696.990450px;}
.y1c7b_c00000{bottom:697.080450px;}
.y7a5_c00000{bottom:697.259712px;}
.y1e1_c00000{bottom:697.260450px;}
.yd1f_c00000{bottom:697.350450px;}
.y92e_c00000{bottom:697.439568px;}
.y1b88_c00000{bottom:698.250450px;}
.y1607_c00000{bottom:698.340450px;}
.y6a7_c00000{bottom:698.431575px;}
.y38c_c00000{bottom:698.610450px;}
.y1d6a_c00000{bottom:698.700450px;}
.y748_c00000{bottom:698.790450px;}
.yaf0_c00000{bottom:699.060450px;}
.yfbe_c00000{bottom:699.150450px;}
.y4ae_c00000{bottom:699.330450px;}
.ya62_c00000{bottom:699.420450px;}
.y1e7c_c00000{bottom:699.421764px;}
.y1b01_c00000{bottom:699.870450px;}
.y3a2_c00000{bottom:699.960450px;}
.y1d83_c00000{bottom:699.962340px;}
.y1e0b_c00000{bottom:700.049829px;}
.y1df6_c00000{bottom:700.050450px;}
.y3ef_c00000{bottom:700.320450px;}
.y1e44_c00000{bottom:700.500450px;}
.y99b_c00000{bottom:700.590450px;}
.y1387_c00000{bottom:700.680729px;}
.y18c7_c00000{bottom:700.770666px;}
.y1f76_c00000{bottom:700.860450px;}
.y31c_c00000{bottom:700.950450px;}
.y20fb_c00000{bottom:700.951770px;}
.y33a_c00000{bottom:701.040450px;}
.y1cad_c00000{bottom:701.130450px;}
.y116c_c00000{bottom:701.400450px;}
.y15aa_c00000{bottom:701.400657px;}
.yd7f_c00000{bottom:701.670450px;}
.y946_c00000{bottom:701.941125px;}
.yd32_c00000{bottom:702.030450px;}
.y5dc_c00000{bottom:702.300450px;}
.yd63_c00000{bottom:702.480450px;}
.y1990_c00000{bottom:702.480600px;}
.y6a_c00000{bottom:702.485103px;}
.y143d_c00000{bottom:702.570450px;}
.y89_c00000{bottom:702.755616px;}
.y7cd_c00000{bottom:702.930450px;}
.y8cb_c00000{bottom:703.290450px;}
.y1dbb_c00000{bottom:703.380450px;}
.y233_c00000{bottom:703.470450px;}
.y42b_c00000{bottom:703.740450px;}
.y633_c00000{bottom:703.830450px;}
.y5a7_c00000{bottom:704.010450px;}
.yebd_c00000{bottom:704.190450px;}
.yfd0_c00000{bottom:704.371683px;}
.y220a_c00000{bottom:704.550450px;}
.ydd6_c00000{bottom:704.820450px;}
.y36_c00000{bottom:705.000000px;}
.y17e6_c00000{bottom:705.090450px;}
.y126e_c00000{bottom:705.091485px;}
.y2ed_c00000{bottom:705.180450px;}
.y1f5b_c00000{bottom:705.270450px;}
.y654_c00000{bottom:705.360450px;}
.y29d_c00000{bottom:705.540450px;}
.y1dd4_c00000{bottom:705.540600px;}
.y11b3_c00000{bottom:705.720450px;}
.y1497_c00000{bottom:706.080450px;}
.y1a06_c00000{bottom:706.260450px;}
.yf80_c00000{bottom:706.350450px;}
.ya30_c00000{bottom:706.530450px;}
.y556_c00000{bottom:706.620450px;}
.y13ad_c00000{bottom:706.710450px;}
.y16db_c00000{bottom:706.800819px;}
.y1b63_c00000{bottom:706.890450px;}
.y1719_c00000{bottom:706.980450px;}
.y1853_c00000{bottom:706.981674px;}
.y186b_c00000{bottom:706.983177px;}
.y1880_c00000{bottom:706.984680px;}
.y406_c00000{bottom:707.160450px;}
.y6ec_c00000{bottom:707.250450px;}
.ycfd_c00000{bottom:707.250459px;}
.y1ddf_c00000{bottom:707.340774px;}
.yf09_c00000{bottom:707.430450px;}
.y11e_c00000{bottom:707.520450px;}
.y20dc_c00000{bottom:707.610450px;}
.y1929_c00000{bottom:707.700450px;}
.y19b_c00000{bottom:707.790450px;}
.y11d8_c00000{bottom:708.060450px;}
.y2139_c00000{bottom:708.150450px;}
.y1663_c00000{bottom:708.330450px;}
.y10be_c00000{bottom:708.600450px;}
.y1d37_c00000{bottom:708.600540px;}
.yf1f_c00000{bottom:708.601395px;}
.y12c1_c00000{bottom:708.602430px;}
.y1592_c00000{bottom:708.690450px;}
.y2157_c00000{bottom:708.690600px;}
.y63d_c00000{bottom:708.780630px;}
.y8a6_c00000{bottom:708.870450px;}
.y1a35_c00000{bottom:708.960450px;}
.y9b5_c00000{bottom:709.140450px;}
.y1ecb_c00000{bottom:709.230873px;}
.yeee_c00000{bottom:709.410450px;}
.y255_c00000{bottom:709.680450px;}
.y73e_c00000{bottom:709.770450px;}
.ya17_c00000{bottom:709.860450px;}
.y16ab_c00000{bottom:710.040459px;}
.y1c0f_c00000{bottom:710.220450px;}
.yb87_c00000{bottom:710.310630px;}
.y1965_c00000{bottom:710.313465px;}
.y46_c00000{bottom:710.400450px;}
.yc89_c00000{bottom:710.490450px;}
.y15dc_c00000{bottom:710.670261px;}
.yaf_c00000{bottom:710.670450px;}
.y1c7a_c00000{bottom:710.850450px;}
.yea5_c00000{bottom:711.120450px;}
.y1079_c00000{bottom:711.210450px;}
.yf2f_c00000{bottom:711.300450px;}
.y1632_c00000{bottom:711.390450px;}
.y1fb_c00000{bottom:711.480450px;}
.y14c_c00000{bottom:711.660450px;}
.y10fd_c00000{bottom:711.930450px;}
.y17fd_c00000{bottom:712.020720px;}
.y1950_c00000{bottom:712.021575px;}
.y1345_c00000{bottom:712.200450px;}
.y1e9c_c00000{bottom:712.200468px;}
.y134a_c00000{bottom:712.201746px;}
.yad0_c00000{bottom:712.380450px;}
.y1c33_c00000{bottom:712.470450px;}
.y4ff_c00000{bottom:712.650450px;}
.y16f4_c00000{bottom:712.830450px;}
.y12ff_c00000{bottom:712.920450px;}
.ye75_c00000{bottom:713.280450px;}
.y20c8_c00000{bottom:713.280600px;}
.y1aac_c00000{bottom:713.370630px;}
.y9d9_c00000{bottom:713.460450px;}
.y21b4_c00000{bottom:713.550450px;}
.y21dd_c00000{bottom:713.640450px;}
.y1cff_c00000{bottom:713.730450px;}
.y1abf_c00000{bottom:713.730540px;}
.y124e_c00000{bottom:713.732520px;}
.ycd7_c00000{bottom:713.910450px;}
.y2d_c00000{bottom:714.000000px;}
.y1c59_c00000{bottom:714.000450px;}
.y1012_c00000{bottom:714.000657px;}
.y620_c00000{bottom:714.001305px;}
.y1027_c00000{bottom:714.180657px;}
.y484_c00000{bottom:714.360450px;}
.y5c3_c00000{bottom:714.360600px;}
.ycbe_c00000{bottom:714.540450px;}
.y99_c00000{bottom:714.544950px;}
.y1fcb_c00000{bottom:714.630450px;}
.yfbd_c00000{bottom:714.720000px;}
.y1a16_c00000{bottom:715.171215px;}
.y1374_c00000{bottom:715.260450px;}
.y1ff7_c00000{bottom:715.440450px;}
.y1511_c00000{bottom:715.710450px;}
.ya2f_c00000{bottom:715.711575px;}
.yf7_c00000{bottom:715.890450px;}
.y878_c00000{bottom:715.891395px;}
.y18ff_c00000{bottom:716.340630px;}
.y4ad_c00000{bottom:716.520450px;}
.yc99_c00000{bottom:716.700450px;}
.y1bee_c00000{bottom:717.060162px;}
.yaef_c00000{bottom:717.420450px;}
.y6a6_c00000{bottom:717.421485px;}
.y6eb_c00000{bottom:717.600450px;}
.y1545_c00000{bottom:717.780450px;}
.y1485_c00000{bottom:718.050450px;}
.y18c6_c00000{bottom:718.050657px;}
.y450_c00000{bottom:718.140450px;}
.y36b_c00000{bottom:718.230450px;}
.y1cac_c00000{bottom:718.320450px;}
.yed2_c00000{bottom:718.590450px;}
.y15a9_c00000{bottom:718.680648px;}
.y1a72_c00000{bottom:718.860450px;}
.y3a1_c00000{bottom:718.950450px;}
.y1d82_c00000{bottom:718.952250px;}
.y7a4_c00000{bottom:719.039640px;}
.y1828_c00000{bottom:719.130450px;}
.y92d_c00000{bottom:719.219496px;}
.y1214_c00000{bottom:719.310450px;}
.y1169_c00000{bottom:719.400648px;}
.y58c_c00000{bottom:719.490450px;}
.y116b_c00000{bottom:719.581008px;}
.y20b1_c00000{bottom:719.760450px;}
.y7f5_c00000{bottom:719.850450px;}
.y1dba_c00000{bottom:720.030450px;}
.y795_c00000{bottom:720.120450px;}
.y8eb_c00000{bottom:720.120729px;}
.y177d_c00000{bottom:720.120774px;}
.y21cd_c00000{bottom:720.390450px;}
.yb28_c00000{bottom:720.480450px;}
.y1496_c00000{bottom:720.660099px;}
.y1a5f_c00000{bottom:720.660450px;}
.y945_c00000{bottom:720.840450px;}
.y1e0_c00000{bottom:721.020450px;}
.y5fa_c00000{bottom:721.290450px;}
.y1386_c00000{bottom:721.380450px;}
.y19bb_c00000{bottom:721.470450px;}
.ycfc_c00000{bottom:721.560450px;}
.yf33_c00000{bottom:721.650450px;}
.y1931_c00000{bottom:721.650729px;}
.y20fa_c00000{bottom:721.651491px;}
.yfcf_c00000{bottom:721.832034px;}
.y11fe_c00000{bottom:721.920450px;}
.y1b26_c00000{bottom:722.010450px;}
.y1b9e_c00000{bottom:722.100450px;}
.y13cf_c00000{bottom:722.190450px;}
.y1b39_c00000{bottom:722.370450px;}
.y1f5a_c00000{bottom:722.550450px;}
.yc58_c00000{bottom:722.640450px;}
.ya89_c00000{bottom:722.730450px;}
.y11b1_c00000{bottom:722.820450px;}
.y1662_c00000{bottom:722.910450px;}
.y786_c00000{bottom:723.000450px;}
.y1d55_c00000{bottom:723.090450px;}
.y1dde_c00000{bottom:723.270450px;}
.y106c_c00000{bottom:723.360450px;}
.yf7f_c00000{bottom:723.540450px;}
.ye8a_c00000{bottom:723.630450px;}
.y112d_c00000{bottom:723.720450px;}
.y1d69_c00000{bottom:723.990450px;}
.y16da_c00000{bottom:724.080999px;}
.y126d_c00000{bottom:724.081395px;}
.y17e5_c00000{bottom:724.081755px;}
.y1852_c00000{bottom:724.171485px;}
.y186a_c00000{bottom:724.172988px;}
.y187f_c00000{bottom:724.174491px;}
.y1890_c00000{bottom:724.175994px;}
.y653_c00000{bottom:724.350450px;}
.y178f_c00000{bottom:724.440450px;}
.y167e_c00000{bottom:724.620450px;}
.y520_c00000{bottom:724.710450px;}
.y718_c00000{bottom:724.710600px;}
.y208f_c00000{bottom:724.890450px;}
.y232_c00000{bottom:725.070648px;}
.yf85_c00000{bottom:725.250450px;}
.y14d6_c00000{bottom:725.340450px;}
.y16fb_c00000{bottom:725.430450px;}
.y1ef3_c00000{bottom:725.520450px;}
.y1c79_c00000{bottom:725.700450px;}
.y1631_c00000{bottom:725.880450px;}
.y10bd_c00000{bottom:725.970450px;}
.y405_c00000{bottom:726.150450px;}
.yd1_c00000{bottom:726.240450px;}
.y1eca_c00000{bottom:726.510864px;}
.y69_c00000{bottom:726.604797px;}
.y1078_c00000{bottom:726.780450px;}
.y88_c00000{bottom:726.875310px;}
.y177c_c00000{bottom:727.050450px;}
.y1fa0_c00000{bottom:727.140450px;}
.y4fe_c00000{bottom:727.230720px;}
.y280_c00000{bottom:727.320450px;}
.y16aa_c00000{bottom:727.320459px;}
.y20db_c00000{bottom:727.500450px;}
.y1d36_c00000{bottom:727.590450px;}
.yf1e_c00000{bottom:727.591305px;}
.y12c0_c00000{bottom:727.592340px;}
.y1f53_c00000{bottom:727.680450px;}
.y63c_c00000{bottom:727.770540px;}
.ya9d_c00000{bottom:727.860450px;}
.ye21_c00000{bottom:727.950450px;}
.yd1e_c00000{bottom:728.400450px;}
.y5db_c00000{bottom:728.760450px;}
.y10fc_c00000{bottom:729.120450px;}
.y19a_c00000{bottom:729.300450px;}
.yb86_c00000{bottom:729.300540px;}
.y1db9_c00000{bottom:729.301485px;}
.y1964_c00000{bottom:729.303375px;}
.y1344_c00000{bottom:729.480450px;}
.y1e9b_c00000{bottom:729.480459px;}
.y1349_c00000{bottom:729.481737px;}
.y38b_c00000{bottom:729.660450px;}
.y747_c00000{bottom:729.840450px;}
.yfbc_c00000{bottom:730.200450px;}
.y632_c00000{bottom:730.200729px;}
.y254_c00000{bottom:730.380450px;}
.yebc_c00000{bottom:730.650450px;}
.y1bed_c00000{bottom:730.830450px;}
.y1ae0_c00000{bottom:730.920450px;}
.y17fc_c00000{bottom:731.010630px;}
.y194f_c00000{bottom:731.011485px;}
.y1011_c00000{bottom:731.190468px;}
.y11d_c00000{bottom:731.280450px;}
.y3ee_c00000{bottom:731.370450px;}
.y1026_c00000{bottom:731.370468px;}
.y1c32_c00000{bottom:731.460450px;}
.y2185_c00000{bottom:731.550450px;}
.y99a_c00000{bottom:731.640450px;}
.y1f75_c00000{bottom:731.910450px;}
.y1526_c00000{bottom:732.000450px;}
.y339_c00000{bottom:732.090450px;}
.y1aab_c00000{bottom:732.360540px;}
.yd7e_c00000{bottom:732.630450px;}
.y1abe_c00000{bottom:732.720450px;}
.y124d_c00000{bottom:732.722430px;}
.y61f_c00000{bottom:732.991215px;}
.yd31_c00000{bottom:733.080450px;}
.y986_c00000{bottom:733.350450px;}
.y21b3_c00000{bottom:733.440450px;}
.y21de_c00000{bottom:733.440972px;}
.yd62_c00000{bottom:733.530450px;}
.y198f_c00000{bottom:733.530600px;}
.y1fca_c00000{bottom:733.620450px;}
.y4ac_c00000{bottom:733.800450px;}
.y7cc_c00000{bottom:733.980450px;}
.y1746_c00000{bottom:734.070450px;}
.y1a15_c00000{bottom:734.070540px;}
.y19eb_c00000{bottom:734.250450px;}
.y8ca_c00000{bottom:734.340450px;}
.y1495_c00000{bottom:734.430387px;}
.y10b3_c00000{bottom:734.430450px;}
.ya2e_c00000{bottom:734.701485px;}
.y42a_c00000{bottom:734.790450px;}
.y877_c00000{bottom:734.881305px;}
.y1e43_c00000{bottom:734.970450px;}
.y5a6_c00000{bottom:735.060450px;}
.y1b8_c00000{bottom:735.240450px;}
.y18fe_c00000{bottom:735.330540px;}
.y18c5_c00000{bottom:735.330648px;}
.y14b_c00000{bottom:735.420450px;}
.ya75_c00000{bottom:735.600450px;}
.yaee_c00000{bottom:735.690450px;}
.yac1_c00000{bottom:735.870450px;}
.y15a8_c00000{bottom:735.870459px;}
.y2ec_c00000{bottom:736.050450px;}
.y156f_c00000{bottom:736.230450px;}
.ybb8_c00000{bottom:736.320450px;}
.y1b00_c00000{bottom:736.410450px;}
.y6a5_c00000{bottom:736.411395px;}
.y29c_c00000{bottom:736.590450px;}
.y1168_c00000{bottom:736.590459px;}
.y1dd3_c00000{bottom:736.590600px;}
.y1a05_c00000{bottom:736.770450px;}
.y116a_c00000{bottom:736.770819px;}
.y1b25_c00000{bottom:737.040450px;}
.y143c_c00000{bottom:737.130450px;}
.yc88_c00000{bottom:737.130729px;}
.y1661_c00000{bottom:737.490450px;}
.y1e7b_c00000{bottom:737.581107px;}
.y555_c00000{bottom:737.670450px;}
.y13e7_c00000{bottom:737.760450px;}
.y3a0_c00000{bottom:737.940450px;}
.y1d81_c00000{bottom:737.942160px;}
.y1df1_c00000{bottom:738.030450px;}
.y1dec_c00000{bottom:738.030846px;}
.y1928_c00000{bottom:738.750450px;}
.y106b_c00000{bottom:738.840450px;}
.yfce_c00000{bottom:739.021845px;}
.y13ac_c00000{bottom:739.110450px;}
.y1544_c00000{bottom:739.200450px;}
.y1c58_c00000{bottom:739.290450px;}
.y175_c00000{bottom:739.650450px;}
.y2156_c00000{bottom:739.740600px;}
.y14d5_c00000{bottom:739.830450px;}
.y8a5_c00000{bottom:739.920450px;}
.y1a34_c00000{bottom:740.010450px;}
.y11b0_c00000{bottom:740.100450px;}
.y9b4_c00000{bottom:740.190450px;}
.y6ea_c00000{bottom:740.190600px;}
.ydfa_c00000{bottom:740.370450px;}
.y1630_c00000{bottom:740.460450px;}
.y2138_c00000{bottom:740.640450px;}
.y7a3_c00000{bottom:740.819568px;}
.y8ea_c00000{bottom:740.820450px;}
.y231_c00000{bottom:740.910549px;}
.y112c_c00000{bottom:741.000450px;}
.y92c_c00000{bottom:741.090009px;}
.y16d9_c00000{bottom:741.270819px;}
.y1851_c00000{bottom:741.451476px;}
.y1869_c00000{bottom:741.452979px;}
.y187e_c00000{bottom:741.454482px;}
.y188f_c00000{bottom:741.455985px;}
.y2070_c00000{bottom:741.540450px;}
.yae_c00000{bottom:741.720450px;}
.y2055_c00000{bottom:741.900450px;}
.yea4_c00000{bottom:742.170450px;}
.y1077_c00000{bottom:742.260450px;}
.y2c8_c00000{bottom:742.350450px;}
.y20f9_c00000{bottom:742.351212px;}
.yed1_c00000{bottom:742.440450px;}
.y1c0e_c00000{bottom:742.530450px;}
.ycfb_c00000{bottom:742.530639px;}
.y1a71_c00000{bottom:742.710450px;}
.y1827_c00000{bottom:742.711665px;}
.y126c_c00000{bottom:743.071305px;}
.y17e4_c00000{bottom:743.071665px;}
.y10bc_c00000{bottom:743.250450px;}
.y652_c00000{bottom:743.340450px;}
.y5da_c00000{bottom:743.342520px;}
.y44f_c00000{bottom:743.430450px;}
.y1363_c00000{bottom:743.610450px;}
.y773_c00000{bottom:743.700450px;}
.y1ec9_c00000{bottom:743.700675px;}
.y1ef2_c00000{bottom:743.700864px;}
.y16f3_c00000{bottom:743.880450px;}
.yd98_c00000{bottom:743.970450px;}
.y1510_c00000{bottom:744.060450px;}
.ye74_c00000{bottom:744.330450px;}
.y20c7_c00000{bottom:744.330600px;}
.y9d8_c00000{bottom:744.510450px;}
.y16a9_c00000{bottom:744.600639px;}
.y1f52_c00000{bottom:744.960450px;}
.y1df_c00000{bottom:745.050450px;}
.ye53_c00000{bottom:745.140450px;}
.y21a2_c00000{bottom:745.320450px;}
.y483_c00000{bottom:745.410450px;}
.y5c2_c00000{bottom:745.410600px;}
.ycbd_c00000{bottom:745.590450px;}
.yfbb_c00000{bottom:745.770000px;}
.y1bec_c00000{bottom:745.950450px;}
.y1c78_c00000{bottom:746.130450px;}
.y20b0_c00000{bottom:746.220450px;}
.y4fd_c00000{bottom:746.220630px;}
.y45_c00000{bottom:746.310450px;}
.y10fb_c00000{bottom:746.400450px;}
.y1343_c00000{bottom:746.490450px;}
.yf1d_c00000{bottom:746.490630px;}
.y1348_c00000{bottom:746.491188px;}
.y12bf_c00000{bottom:746.491665px;}
.y1718_c00000{bottom:746.580450px;}
.y1a04_c00000{bottom:746.670450px;}
.y63b_c00000{bottom:746.760450px;}
.y158c_c00000{bottom:746.850450px;}
.yf6_c00000{bottom:746.940450px;}
.y1f9f_c00000{bottom:746.940810px;}
.y12fe_c00000{bottom:747.480450px;}
.y199_c00000{bottom:747.660450px;}
.y1d35_c00000{bottom:747.750450px;}
.yaa6_c00000{bottom:748.020450px;}
.y1494_c00000{bottom:748.290450px;}
.y1db8_c00000{bottom:748.291395px;}
.y1963_c00000{bottom:748.293285px;}
.y1010_c00000{bottom:748.470459px;}
.y123a_c00000{bottom:748.650450px;}
.y1025_c00000{bottom:748.650459px;}
.y1e41_c00000{bottom:749.010450px;}
.y36a_c00000{bottom:749.280450px;}
.ya16_c00000{bottom:749.460450px;}
.y10b2_c00000{bottom:749.910450px;}
.y17fb_c00000{bottom:750.000540px;}
.y194e_c00000{bottom:750.001395px;}
.y1213_c00000{bottom:750.360450px;}
.yeed_c00000{bottom:750.451215px;}
.y58b_c00000{bottom:750.540450px;}
.y1d0e_c00000{bottom:750.630729px;}
.y68_c00000{bottom:750.724491px;}
.y631_c00000{bottom:750.900450px;}
.y87_c00000{bottom:750.995004px;}
.y253_c00000{bottom:751.080450px;}
.y9bd_c00000{bottom:751.170450px;}
.y746_c00000{bottom:751.350450px;}
.y1443_c00000{bottom:751.530450px;}
.y1a5e_c00000{bottom:751.710450px;}
.y124c_c00000{bottom:751.712340px;}
.yba3_c00000{bottom:751.890450px;}
.y61e_c00000{bottom:751.890540px;}
.y1606_c00000{bottom:751.980450px;}
.y3cd_c00000{bottom:752.070450px;}
.y1e42_c00000{bottom:752.250450px;}
.y5f9_c00000{bottom:752.340450px;}
.y19ba_c00000{bottom:752.520450px;}
.y18c4_c00000{bottom:752.520459px;}
.y1fc9_c00000{bottom:752.610450px;}
.y2c1_c00000{bottom:752.700450px;}
.y2097_c00000{bottom:752.700729px;}
.y1abd_c00000{bottom:752.880450px;}
.yaed_c00000{bottom:752.970450px;}
.y1745_c00000{bottom:753.060450px;}
.y15a7_c00000{bottom:753.150450px;}
.y13ce_c00000{bottom:753.240450px;}
.y1b38_c00000{bottom:753.420450px;}
.yc57_c00000{bottom:753.690450px;}
.ya2d_c00000{bottom:753.691395px;}
.y128b_c00000{bottom:753.780450px;}
.y876_c00000{bottom:753.780630px;}
.y1167_c00000{bottom:753.870450px;}
.y21dc_c00000{bottom:754.048947px;}
.y785_c00000{bottom:754.050450px;}
.y143b_c00000{bottom:754.320450px;}
.ye89_c00000{bottom:754.410450px;}
.y162f_c00000{bottom:755.040450px;}
.y11c_c00000{bottom:755.130450px;}
.y1df5_c00000{bottom:755.310441px;}
.y1409_c00000{bottom:755.310450px;}
.y1deb_c00000{bottom:755.310837px;}
.y6a4_c00000{bottom:755.401305px;}
.yad3_c00000{bottom:755.401485px;}
.yd7d_c00000{bottom:755.490450px;}
.y167d_c00000{bottom:755.670450px;}
.y51f_c00000{bottom:755.760450px;}
.y717_c00000{bottom:755.760600px;}
.y208e_c00000{bottom:755.940450px;}
.yebb_c00000{bottom:755.940600px;}
.y1b17_c00000{bottom:756.120450px;}
.yfcd_c00000{bottom:756.301836px;}
.y2137_c00000{bottom:756.480450px;}
.y230_c00000{bottom:756.750450px;}
.y1bc8_c00000{bottom:756.840450px;}
.y1d80_c00000{bottom:756.841485px;}
.y1f59_c00000{bottom:757.020450px;}
.yd0_c00000{bottom:757.290450px;}
.y1b24_c00000{bottom:757.740450px;}
.yc87_c00000{bottom:757.830450px;}
.y39f_c00000{bottom:758.100450px;}
.y112b_c00000{bottom:758.280450px;}
.yb27_c00000{bottom:758.550450px;}
.y16d8_c00000{bottom:758.550819px;}
.yd97_c00000{bottom:758.640450px;}
.y1850_c00000{bottom:758.731467px;}
.y1868_c00000{bottom:758.732970px;}
.y187d_c00000{bottom:758.734473px;}
.y188e_c00000{bottom:758.735976px;}
.y11d7_c00000{bottom:758.820450px;}
.y21_c00000{bottom:759.000000px;}
.ybb7_c00000{bottom:759.000450px;}
.y14a_c00000{bottom:759.270450px;}
.yd1d_c00000{bottom:759.450450px;}
.yd30_c00000{bottom:759.540450px;}
.y1c0d_c00000{bottom:759.720450px;}
.yc13_c00000{bottom:759.810450px;}
.y2054_c00000{bottom:760.170450px;}
.y1b87_c00000{bottom:760.350450px;}
.ydb4_c00000{bottom:760.440450px;}
.y10bb_c00000{bottom:760.530450px;}
.y38a_c00000{bottom:760.710450px;}
.y1362_c00000{bottom:760.800450px;}
.ya74_c00000{bottom:760.890450px;}
.y1ec8_c00000{bottom:760.980666px;}
.y1ef1_c00000{bottom:760.980855px;}
.yfba_c00000{bottom:761.250450px;}
.y1c77_c00000{bottom:761.251467px;}
.y1cfe_c00000{bottom:761.340450px;}
.y5a5_c00000{bottom:761.520450px;}
.y1740_c00000{bottom:761.700450px;}
.y1826_c00000{bottom:761.701575px;}
.y16a8_c00000{bottom:761.790450px;}
.y21a1_c00000{bottom:761.880450px;}
.y2031_c00000{bottom:761.970450px;}
.y126b_c00000{bottom:762.061215px;}
.y17e3_c00000{bottom:762.061575px;}
.y651_c00000{bottom:762.240450px;}
.y5d9_c00000{bottom:762.241845px;}
.y3ed_c00000{bottom:762.420450px;}
.y2184_c00000{bottom:762.600450px;}
.y7a2_c00000{bottom:762.690081px;}
.y999_c00000{bottom:762.690450px;}
.y2eb_c00000{bottom:762.690729px;}
.y1493_c00000{bottom:762.780387px;}
.y404_c00000{bottom:762.780450px;}
.y92b_c00000{bottom:762.869937px;}
.y326_c00000{bottom:763.050450px;}
.y20f8_c00000{bottom:763.050933px;}
.y338_c00000{bottom:763.140450px;}
.y1beb_c00000{bottom:763.230450px;}
.y174_c00000{bottom:763.320450px;}
.y10fa_c00000{bottom:763.500450px;}
.y21d8_c00000{bottom:763.770450px;}
.y1ad2_c00000{bottom:764.220450px;}
.y209e_c00000{bottom:764.310450px;}
.y985_c00000{bottom:764.400450px;}
.yd61_c00000{bottom:764.580450px;}
.y198e_c00000{bottom:764.580600px;}
.y12fd_c00000{bottom:764.670450px;}
.y1470_c00000{bottom:764.850450px;}
.yb85_c00000{bottom:764.940450px;}
.y7cb_c00000{bottom:765.030450px;}
.y4fc_c00000{bottom:765.210540px;}
.y8c9_c00000{bottom:765.390450px;}
.y10b1_c00000{bottom:765.480450px;}
.yf1c_c00000{bottom:765.480540px;}
.y12be_c00000{bottom:765.481575px;}
.y100f_c00000{bottom:765.750450px;}
.yb26_c00000{bottom:765.751215px;}
.y429_c00000{bottom:765.840450px;}
.y1024_c00000{bottom:765.930450px;}
.y1f9e_c00000{bottom:765.930720px;}
.y5c6_c00000{bottom:766.110450px;}
.yed0_c00000{bottom:766.200450px;}
.y18e5_c00000{bottom:766.290450px;}
.y1a70_c00000{bottom:766.470450px;}
.y1660_c00000{bottom:766.560450px;}
.y9f0_c00000{bottom:766.650450px;}
.yac7_c00000{bottom:766.920450px;}
.y1db7_c00000{bottom:767.190720px;}
.y1962_c00000{bottom:767.192610px;}
.y1717_c00000{bottom:767.550450px;}
.y29b_c00000{bottom:767.640450px;}
.y1dd2_c00000{bottom:767.640600px;}
.y1e40_c00000{bottom:768.000450px;}
.y14d4_c00000{bottom:768.180450px;}
.y4ab_c00000{bottom:768.270450px;}
.y20b7_c00000{bottom:768.450450px;}
.y554_c00000{bottom:768.720450px;}
.y1de_c00000{bottom:768.810450px;}
.y17fa_c00000{bottom:768.990450px;}
.y194d_c00000{bottom:768.991305px;}
.ya88_c00000{bottom:769.260450px;}
.yeec_c00000{bottom:769.350540px;}
.y162e_c00000{bottom:769.530450px;}
.y18c3_c00000{bottom:769.800450px;}
.y106a_c00000{bottom:769.890450px;}
.y15d7_c00000{bottom:769.980450px;}
.y960_c00000{bottom:770.070450px;}
.y1c30_c00000{bottom:770.160450px;}
.yaec_c00000{bottom:770.250450px;}
.y1c57_c00000{bottom:770.340450px;}
.y15a6_c00000{bottom:770.431008px;}
.y403_c00000{bottom:770.700450px;}
.y124b_c00000{bottom:770.702250px;}
.y2155_c00000{bottom:770.790600px;}
.y61d_c00000{bottom:770.880450px;}
.y8a4_c00000{bottom:770.970450px;}
.y1cc6_c00000{bottom:771.060450px;}
.y745_c00000{bottom:771.240450px;}
.y6e9_c00000{bottom:771.240600px;}
.y1d0d_c00000{bottom:771.330450px;}
.ydf9_c00000{bottom:771.420450px;}
.y1aaa_c00000{bottom:771.510450px;}
.y143a_c00000{bottom:771.600450px;}
.y1442_c00000{bottom:771.600789px;}
.y1f1b_c00000{bottom:771.690450px;}
.y252_c00000{bottom:771.780450px;}
.y4d1_c00000{bottom:771.870450px;}
.y1163_c00000{bottom:771.870657px;}
.y1744_c00000{bottom:772.050450px;}
.y1166_c00000{bottom:772.051017px;}
.ya15_c00000{bottom:772.140450px;}
.y1fc8_c00000{bottom:772.230450px;}
.y150f_c00000{bottom:772.410450px;}
.y1df4_c00000{bottom:772.500252px;}
.y1df0_c00000{bottom:772.500450px;}
.y1dea_c00000{bottom:772.500648px;}
.ya2c_c00000{bottom:772.590720px;}
.y1391_c00000{bottom:772.680450px;}
.yad_c00000{bottom:772.770450px;}
.y875_c00000{bottom:772.770540px;}
.y21b2_c00000{bottom:773.040600px;}
.y2135_c00000{bottom:773.130450px;}
.yea3_c00000{bottom:773.220450px;}
.y1076_c00000{bottom:773.310450px;}
.yc6d_c00000{bottom:773.400450px;}
.yfcc_c00000{bottom:773.581827px;}
.y21db_c00000{bottom:773.849469px;}
.y44_c00000{bottom:773.850450px;}
.y18fd_c00000{bottom:773.940450px;}
.y1f58_c00000{bottom:774.300450px;}
.y6a3_c00000{bottom:774.391215px;}
.yad2_c00000{bottom:774.391395px;}
.y784_c00000{bottom:774.392250px;}
.y44e_c00000{bottom:774.480450px;}
.y1b9d_c00000{bottom:774.660450px;}
.y772_c00000{bottom:774.750450px;}
.y21cc_c00000{bottom:774.840450px;}
.y27f_c00000{bottom:774.930450px;}
.y67_c00000{bottom:774.934356px;}
.y22f_c00000{bottom:775.110600px;}
.y86_c00000{bottom:775.204869px;}
.y112f_c00000{bottom:775.290600px;}
.yd7c_c00000{bottom:775.380450px;}
.y112a_c00000{bottom:775.470450px;}
.y9d7_c00000{bottom:775.560450px;}
.y1e7a_c00000{bottom:775.740450px;}
.yba2_c00000{bottom:775.830450px;}
.y16d7_c00000{bottom:775.830999px;}
.y1d7f_c00000{bottom:775.831395px;}
.y184f_c00000{bottom:775.921278px;}
.y1867_c00000{bottom:775.922781px;}
.y187c_c00000{bottom:775.924284px;}
.y188d_c00000{bottom:775.925787px;}
.yf7e_c00000{bottom:776.010450px;}
.y11d6_c00000{bottom:776.100450px;}
.ye52_c00000{bottom:776.190450px;}
.y482_c00000{bottom:776.460450px;}
.y5c1_c00000{bottom:776.460600px;}
.ycbc_c00000{bottom:776.640450px;}
.yfb9_c00000{bottom:776.820000px;}
.y1c0c_c00000{bottom:777.000450px;}
.y1a02_c00000{bottom:777.180450px;}
.ya4a_c00000{bottom:777.270450px;}
.y1373_c00000{bottom:777.360450px;}
.y1ff6_c00000{bottom:777.540450px;}
.yd96_c00000{bottom:777.540600px;}
.y1d68_c00000{bottom:777.630450px;}
.y10ba_c00000{bottom:777.720450px;}
.ycfa_c00000{bottom:777.720648px;}
.yf5_c00000{bottom:777.990450px;}
.y1361_c00000{bottom:778.080450px;}
.y1ec7_c00000{bottom:778.260657px;}
.y1ef0_c00000{bottom:778.260846px;}
.y1b23_c00000{bottom:778.440450px;}
.y2053_c00000{bottom:778.530450px;}
.y1c76_c00000{bottom:778.531458px;}
.y402_c00000{bottom:778.710450px;}
.y11b_c00000{bottom:778.890450px;}
.y16a7_c00000{bottom:779.070450px;}
.y1f51_c00000{bottom:779.430450px;}
.y173f_c00000{bottom:779.610600px;}
.y1239_c00000{bottom:779.700450px;}
.y21a0_c00000{bottom:779.790600px;}
.y369_c00000{bottom:780.330450px;}
.y1bea_c00000{bottom:780.420450px;}
.y1825_c00000{bottom:780.600900px;}
.y10f9_c00000{bottom:780.690450px;}
.y10b0_c00000{bottom:780.960450px;}
.y165f_c00000{bottom:781.050450px;}
.y126a_c00000{bottom:781.051125px;}
.y17e2_c00000{bottom:781.051485px;}
.y5d8_c00000{bottom:781.231755px;}
.y1543_c00000{bottom:781.320450px;}
.y1212_c00000{bottom:781.410450px;}
.y7f1_c00000{bottom:781.590450px;}
.y12fc_c00000{bottom:781.950450px;}
.y1303_c00000{bottom:781.950648px;}
.y14d3_c00000{bottom:782.040600px;}
.y802_c00000{bottom:782.220450px;}
.ye88_c00000{bottom:782.400450px;}
.y1a5d_c00000{bottom:782.760450px;}
.y1e9a_c00000{bottom:782.761053px;}
.y12a6_c00000{bottom:782.761665px;}
.y100e_c00000{bottom:782.940450px;}
.y149_c00000{bottom:783.030450px;}
.y3cc_c00000{bottom:783.120450px;}
.y2ea_c00000{bottom:783.390450px;}
.y19b9_c00000{bottom:783.570450px;}
.y21d7_c00000{bottom:783.660450px;}
.y199b_c00000{bottom:783.750450px;}
.y20f7_c00000{bottom:783.750654px;}
.y11fd_c00000{bottom:784.020450px;}
.y162d_c00000{bottom:784.110600px;}
.y4fb_c00000{bottom:784.200450px;}
.y7a1_c00000{bottom:784.470009px;}
.yf1b_c00000{bottom:784.470450px;}
.y12bd_c00000{bottom:784.471485px;}
.y92a_c00000{bottom:784.740450px;}
.yb25_c00000{bottom:784.741125px;}
.y650_c00000{bottom:784.830450px;}
.y1f9d_c00000{bottom:784.920630px;}
.y1cfd_c00000{bottom:785.100450px;}
.y95f_c00000{bottom:785.100945px;}
.y1069_c00000{bottom:785.460450px;}
.y4aa_c00000{bottom:785.550450px;}
.ydb3_c00000{bottom:785.730450px;}
.y150e_c00000{bottom:786.180450px;}
.y1db6_c00000{bottom:786.180630px;}
.y1961_c00000{bottom:786.182520px;}
.y2066_c00000{bottom:786.360600px;}
.y178e_c00000{bottom:786.540450px;}
.y6df_c00000{bottom:786.630450px;}
.y167c_c00000{bottom:786.720450px;}
.y51e_c00000{bottom:786.810450px;}
.y716_c00000{bottom:786.810600px;}
.y208d_c00000{bottom:786.990450px;}
.yeba_c00000{bottom:786.990600px;}
.y98_c00000{bottom:786.994203px;}
.y173_c00000{bottom:787.080450px;}
.y1a01_c00000{bottom:787.170450px;}
.y1cab_c00000{bottom:787.350450px;}
.yaeb_c00000{bottom:787.440450px;}
.y1e3f_c00000{bottom:787.530450px;}
.yacf_c00000{bottom:787.620450px;}
.y15a5_c00000{bottom:787.620819px;}
.y194c_c00000{bottom:787.890630px;}
.y315_c00000{bottom:788.070450px;}
.ycf_c00000{bottom:788.250450px;}
.yeeb_c00000{bottom:788.340450px;}
.y1716_c00000{bottom:788.430450px;}
.y1743_c00000{bottom:788.700450px;}
.y1439_c00000{bottom:788.790600px;}
.y1075_c00000{bottom:788.880450px;}
.y2134_c00000{bottom:788.970450px;}
.y1162_c00000{bottom:789.060468px;}
.y17f9_c00000{bottom:789.150450px;}
.y1165_c00000{bottom:789.240828px;}
.y1b9c_c00000{bottom:789.331305px;}
.y20da_c00000{bottom:789.510450px;}
.y337_c00000{bottom:789.600450px;}
.y124a_c00000{bottom:789.601575px;}
.y1df3_c00000{bottom:789.780243px;}
.y1def_c00000{bottom:789.780450px;}
.y1de9_c00000{bottom:789.780639px;}
.y856_c00000{bottom:789.960450px;}
.ybb6_c00000{bottom:790.050450px;}
.yaa5_c00000{bottom:790.140450px;}
.y1a6f_c00000{bottom:790.230450px;}
.yd1c_c00000{bottom:790.410450px;}
.y15d6_c00000{bottom:790.500450px;}
.yfcb_c00000{bottom:790.771638px;}
.yc12_c00000{bottom:790.860450px;}
.y1ad1_c00000{bottom:790.860729px;}
.y1492_c00000{bottom:791.130450px;}
.y1b86_c00000{bottom:791.400450px;}
.y1aa9_c00000{bottom:791.400600px;}
.y1f57_c00000{bottom:791.490450px;}
.yf7d_c00000{bottom:791.580450px;}
.ya2b_c00000{bottom:791.580630px;}
.y389_c00000{bottom:791.760450px;}
.y9ef_c00000{bottom:791.940450px;}
.y1fc7_c00000{bottom:792.031485px;}
.y251_c00000{bottom:792.210450px;}
.yfb8_c00000{bottom:792.300450px;}
.y7e6_c00000{bottom:792.570450px;}
.y1dd_c00000{bottom:792.660450px;}
.y1129_c00000{bottom:792.750450px;}
.y21b1_c00000{bottom:792.930450px;}
.y2030_c00000{bottom:793.020450px;}
.y16d6_c00000{bottom:793.020819px;}
.y184e_c00000{bottom:793.201269px;}
.y1866_c00000{bottom:793.202772px;}
.y187b_c00000{bottom:793.204275px;}
.y188c_c00000{bottom:793.205778px;}
.y6a2_c00000{bottom:793.290540px;}
.y998_c00000{bottom:793.290600px;}
.y997_c00000{bottom:793.290720px;}
.y783_c00000{bottom:793.291575px;}
.ybd1_c00000{bottom:793.470450px;}
.y21da_c00000{bottom:793.740171px;}
.y21d9_c00000{bottom:793.740450px;}
.y18fc_c00000{bottom:793.740630px;}
.y1b16_c00000{bottom:794.100450px;}
.y834_c00000{bottom:794.190162px;}
.y1c0b_c00000{bottom:794.190450px;}
.y173e_c00000{bottom:794.460450px;}
.y1bc7_c00000{bottom:794.820450px;}
.y1d7e_c00000{bottom:794.821305px;}
.y10b9_c00000{bottom:795.000450px;}
.ycf9_c00000{bottom:795.000639px;}
.y146f_c00000{bottom:795.090450px;}
.y1484_c00000{bottom:795.180450px;}
.y984_c00000{bottom:795.450450px;}
.y1ec6_c00000{bottom:795.450468px;}
.y1eef_c00000{bottom:795.450657px;}
.yd60_c00000{bottom:795.630450px;}
.y198d_c00000{bottom:795.630600px;}
.y219f_c00000{bottom:795.720450px;}
.y1c75_c00000{bottom:795.721269px;}
.y61c_c00000{bottom:795.990450px;}
.y7ca_c00000{bottom:796.080450px;}
.y8c8_c00000{bottom:796.440450px;}
.yd95_c00000{bottom:796.530450px;}
.y1f50_c00000{bottom:796.710450px;}
.y1c56_c00000{bottom:796.800450px;}
.y428_c00000{bottom:796.890450px;}
.y757_c00000{bottom:796.980450px;}
.y1a03_c00000{bottom:797.070450px;}
.y4d0_c00000{bottom:797.160450px;}
.y2154_c00000{bottom:797.250450px;}
.yecf_c00000{bottom:797.340450px;}
.y1aff_c00000{bottom:797.520450px;}
.y16a6_c00000{bottom:797.700450px;}
.y198_c00000{bottom:797.790450px;}
.y1742_c00000{bottom:797.880450px;}
.ydd5_c00000{bottom:797.970450px;}
.y1f1a_c00000{bottom:798.060450px;}
.y32f_c00000{bottom:798.420450px;}
.y1e79_c00000{bottom:798.510450px;}
.y29a_c00000{bottom:798.600450px;}
.yba1_c00000{bottom:798.600600px;}
.y27e_c00000{bottom:798.690450px;}
.y22e_c00000{bottom:798.690600px;}
.y10f8_c00000{bottom:798.870450px;}
.y1302_c00000{bottom:798.960099px;}
.y66_c00000{bottom:799.054050px;}
.y12fb_c00000{bottom:799.140450px;}
.y1342_c00000{bottom:799.141953px;}
.y1402_c00000{bottom:799.230450px;}
.y85_c00000{bottom:799.324563px;}
.y1824_c00000{bottom:799.590810px;}
.yea2_c00000{bottom:799.680450px;}
.y553_c00000{bottom:799.770450px;}
.y13e6_c00000{bottom:799.860450px;}
.y1269_c00000{bottom:799.950450px;}
.y17e1_c00000{bottom:799.950810px;}
.y1e99_c00000{bottom:799.950864px;}
.y1cda_c00000{bottom:799.951575px;}
.y1b62_c00000{bottom:800.040450px;}
.y1b6e_c00000{bottom:800.040600px;}
.y5d7_c00000{bottom:800.221665px;}
.y150d_c00000{bottom:800.760450px;}
.y2e9_c00000{bottom:800.850450px;}
.yb63_c00000{bottom:800.940450px;}
.y100c_c00000{bottom:800.940459px;}
.y58a_c00000{bottom:801.120162px;}
.y12a5_c00000{bottom:801.751575px;}
.y8a3_c00000{bottom:802.020450px;}
.y1cc5_c00000{bottom:802.110450px;}
.y744_c00000{bottom:802.290450px;}
.y4fa_c00000{bottom:802.290600px;}
.ydf8_c00000{bottom:802.470450px;}
.y20af_c00000{bottom:802.560450px;}
.y11a_c00000{bottom:802.650450px;}
.y4a9_c00000{bottom:802.830450px;}
.y678_c00000{bottom:802.920450px;}
.y1935_c00000{bottom:803.100450px;}
.y20c6_c00000{bottom:803.100729px;}
.ya14_c00000{bottom:803.190450px;}
.y12bc_c00000{bottom:803.461395px;}
.y1ded_c00000{bottom:803.550000px;}
.yb24_c00000{bottom:803.640450px;}
.y13ab_c00000{bottom:803.730450px;}
.yac_c00000{bottom:803.820450px;}
.y1f9c_c00000{bottom:803.910540px;}
.y1a88_c00000{bottom:804.270450px;}
.yf4_c00000{bottom:804.360600px;}
.y1caa_c00000{bottom:804.540600px;}
.yaea_c00000{bottom:804.720450px;}
.y2133_c00000{bottom:804.900450px;}
.y1390_c00000{bottom:805.080450px;}
.y1d0c_c00000{bottom:805.170450px;}
.y1db5_c00000{bottom:805.170540px;}
.y1a33_c00000{bottom:805.171545px;}
.y1960_c00000{bottom:805.172430px;}
.y95e_c00000{bottom:805.441395px;}
.y44d_c00000{bottom:805.530450px;}
.y1491_c00000{bottom:805.710450px;}
.y771_c00000{bottom:805.800450px;}
.y18c2_c00000{bottom:805.800846px;}
.y16f2_c00000{bottom:805.980450px;}
.y1438_c00000{bottom:806.070450px;}
.y6de_c00000{bottom:806.250099px;}
.y172_c00000{bottom:806.250450px;}
.y1161_c00000{bottom:806.340459px;}
.y7a0_c00000{bottom:806.340522px;}
.yd7b_c00000{bottom:806.430450px;}
.y1164_c00000{bottom:806.520819px;}
.y20f_c00000{bottom:806.610450px;}
.y1a49_c00000{bottom:806.610600px;}
.y148_c00000{bottom:806.790450px;}
.y203d_c00000{bottom:806.790600px;}
.y194b_c00000{bottom:806.880540px;}
.y1df2_c00000{bottom:806.970054px;}
.y336_c00000{bottom:806.970081px;}
.yf1a_c00000{bottom:806.970450px;}
.yf7c_c00000{bottom:807.060450px;}
.y7e5_c00000{bottom:807.151485px;}
.ye51_c00000{bottom:807.240450px;}
.y481_c00000{bottom:807.510450px;}
.y5c0_c00000{bottom:807.510600px;}
.ycbb_c00000{bottom:807.690450px;}
.yfb7_c00000{bottom:807.870000px;}
.y833_c00000{bottom:807.960450px;}
.y7f0_c00000{bottom:808.050450px;}
.yfca_c00000{bottom:808.051629px;}
.y1b9b_c00000{bottom:808.230630px;}
.yac6_c00000{bottom:808.320450px;}
.y1372_c00000{bottom:808.410450px;}
.yeea_c00000{bottom:808.500450px;}
.y1ff5_c00000{bottom:808.590450px;}
.y1249_c00000{bottom:808.591485px;}
.y1cd1_c00000{bottom:808.770450px;}
.y1cfc_c00000{bottom:808.860600px;}
.y2c0_c00000{bottom:808.950450px;}
.y17f8_c00000{bottom:808.950600px;}
.ycf8_c00000{bottom:809.220450px;}
.y1715_c00000{bottom:809.310450px;}
.y1f74_c00000{bottom:809.490450px;}
.y11af_c00000{bottom:809.760450px;}
.y929_c00000{bottom:809.850450px;}
.y1128_c00000{bottom:809.940450px;}
.y165e_c00000{bottom:810.210450px;}
.y16d5_c00000{bottom:810.300999px;}
.y184d_c00000{bottom:810.391080px;}
.y1865_c00000{bottom:810.392583px;}
.y187a_c00000{bottom:810.394086px;}
.y188b_c00000{bottom:810.395589px;}
.y14b7_c00000{bottom:810.570450px;}
.ya2a_c00000{bottom:810.570540px;}
.y13cd_c00000{bottom:810.660450px;}
.y1238_c00000{bottom:810.750450px;}
.y1fc6_c00000{bottom:811.021395px;}
.y14d2_c00000{bottom:811.110600px;}
.y11d5_c00000{bottom:811.290600px;}
.y368_c00000{bottom:811.380450px;}
.y15d5_c00000{bottom:811.470450px;}
.y15d4_c00000{bottom:811.470459px;}
.y1ad0_c00000{bottom:811.560450px;}
.y3ec_c00000{bottom:811.560621px;}
.y250_c00000{bottom:811.920450px;}
.y10af_c00000{bottom:812.010450px;}
.y10b8_c00000{bottom:812.190450px;}
.y6a1_c00000{bottom:812.280450px;}
.y996_c00000{bottom:812.280630px;}
.y782_c00000{bottom:812.281485px;}
.y173d_c00000{bottom:812.370450px;}
.y474_c00000{bottom:812.460450px;}
.y855_c00000{bottom:812.640450px;}
.y21b0_c00000{bottom:812.730450px;}
.y1ec5_c00000{bottom:812.730459px;}
.y18fb_c00000{bottom:812.730540px;}
.y1eee_c00000{bottom:812.730648px;}
.yaa4_c00000{bottom:812.910450px;}
.y1b15_c00000{bottom:813.000450px;}
.y1c74_c00000{bottom:813.001260px;}
.y162c_c00000{bottom:813.180600px;}
.y569_c00000{bottom:813.270450px;}
.y1f19_c00000{bottom:813.630450px;}
.y1a5c_c00000{bottom:813.810450px;}
.y1d7d_c00000{bottom:813.811215px;}
.y1f4f_c00000{bottom:813.990450px;}
.y1a6e_c00000{bottom:814.080450px;}
.y3cb_c00000{bottom:814.170450px;}
.y1c55_c00000{bottom:814.258236px;}
.y5f8_c00000{bottom:814.440450px;}
.y150c_c00000{bottom:814.530450px;}
.y19b8_c00000{bottom:814.620450px;}
.y1525_c00000{bottom:814.710450px;}
.y314_c00000{bottom:814.710729px;}
.y589_c00000{bottom:814.890450px;}
.y11fc_c00000{bottom:815.070450px;}
.y2052_c00000{bottom:815.160450px;}
.y1741_c00000{bottom:815.250450px;}
.yd94_c00000{bottom:815.520450px;}
.yb62_c00000{bottom:815.520540px;}
.y128a_c00000{bottom:815.700450px;}
.yc56_c00000{bottom:815.790450px;}
.yb84_c00000{bottom:815.880450px;}
.y10f6_c00000{bottom:815.970450px;}
.y10f7_c00000{bottom:816.150450px;}
.y1dc_c00000{bottom:816.240450px;}
.y1068_c00000{bottom:816.420450px;}
.y1341_c00000{bottom:816.421944px;}
.y1afe_c00000{bottom:816.510450px;}
.ydb2_c00000{bottom:816.780450px;}
.y4f9_c00000{bottom:816.961305px;}
.y2012_c00000{bottom:817.140450px;}
.y1268_c00000{bottom:817.230450px;}
.y1e98_c00000{bottom:817.230855px;}
.ye0e_c00000{bottom:817.320450px;}
.y178d_c00000{bottom:817.590450px;}
.y167b_c00000{bottom:817.770450px;}
.y51d_c00000{bottom:817.860450px;}
.y715_c00000{bottom:817.860600px;}
.y2132_c00000{bottom:817.950450px;}
.y208c_c00000{bottom:818.040450px;}
.yeb9_c00000{bottom:818.040600px;}
.y100b_c00000{bottom:818.220450px;}
.y3eb_c00000{bottom:818.400450px;}
.y1a00_c00000{bottom:818.580450px;}
.y1823_c00000{bottom:818.580720px;}
.yab9_c00000{bottom:818.670450px;}
.y17e0_c00000{bottom:818.940720px;}
.y1cd9_c00000{bottom:818.941485px;}
.y171_c00000{bottom:819.030450px;}
.yb3c_c00000{bottom:819.120450px;}
.y43_c00000{bottom:819.210450px;}
.y5d6_c00000{bottom:819.211575px;}
.yce_c00000{bottom:819.300450px;}
.y1074_c00000{bottom:819.930600px;}
.y4a8_c00000{bottom:820.020450px;}
.y6dd_c00000{bottom:820.110162px;}
.yc6c_c00000{bottom:820.110600px;}
.y1490_c00000{bottom:820.200450px;}
.y27d_c00000{bottom:820.290600px;}
.y2e8_c00000{bottom:820.650450px;}
.y12a4_c00000{bottom:820.650900px;}
.y2136_c00000{bottom:820.740450px;}
.ybb5_c00000{bottom:821.100450px;}
.y61b_c00000{bottom:821.280450px;}
.yd1b_c00000{bottom:821.460450px;}
.y6e8_c00000{bottom:821.820162px;}
.y1ca9_c00000{bottom:821.820450px;}
.yae9_c00000{bottom:821.910450px;}
.y1e3d_c00000{bottom:822.000450px;}
.y1aa8_c00000{bottom:822.450600px;}
.y12bb_c00000{bottom:822.451305px;}
.y22d_c00000{bottom:822.540600px;}
.yf7b_c00000{bottom:822.630450px;}
.yb23_c00000{bottom:822.630540px;}
.y7ef_c00000{bottom:822.631485px;}
.y832_c00000{bottom:822.631755px;}
.y388_c00000{bottom:822.810450px;}
.y197_c00000{bottom:822.900450px;}
.y9ee_c00000{bottom:822.990450px;}
.y18c1_c00000{bottom:822.990657px;}
.y65_c00000{bottom:823.173744px;}
.yfb6_c00000{bottom:823.350450px;}
.y1441_c00000{bottom:823.350657px;}
.y84_c00000{bottom:823.444257px;}
.y714_c00000{bottom:823.620450px;}
.y756_c00000{bottom:823.620729px;}
.y20c5_c00000{bottom:823.800450px;}
.y202f_c00000{bottom:824.070450px;}
.y1d0b_c00000{bottom:824.160450px;}
.y1a32_c00000{bottom:824.161455px;}
.y195f_c00000{bottom:824.162340px;}
.y1542_c00000{bottom:824.250450px;}
.y95d_c00000{bottom:824.340720px;}
.ybd0_c00000{bottom:824.520450px;}
.y165d_c00000{bottom:824.700450px;}
.y32e_c00000{bottom:824.790600px;}
.yea1_c00000{bottom:824.970450px;}
.yfc9_c00000{bottom:825.241440px;}
.y14d1_c00000{bottom:825.600450px;}
.y194a_c00000{bottom:825.870450px;}
.y1f56_c00000{bottom:826.050450px;}
.y7e4_c00000{bottom:826.141395px;}
.y119_c00000{bottom:826.500450px;}
.yd5f_c00000{bottom:826.590450px;}
.y198c_c00000{bottom:826.680600px;}
.y11d4_c00000{bottom:826.770450px;}
.y24f_c00000{bottom:826.950450px;}
.y11ae_c00000{bottom:827.040600px;}
.y7c9_c00000{bottom:827.130450px;}
.y1127_c00000{bottom:827.220450px;}
.y1b9a_c00000{bottom:827.220540px;}
.y8c7_c00000{bottom:827.310450px;}
.y219e_c00000{bottom:827.400450px;}
.y1adf_c00000{bottom:827.490450px;}
.y16d4_c00000{bottom:827.490819px;}
.y10ae_c00000{bottom:827.580450px;}
.y3ea_c00000{bottom:827.581395px;}
.y184c_c00000{bottom:827.671071px;}
.y1864_c00000{bottom:827.672574px;}
.y1879_c00000{bottom:827.674077px;}
.y188a_c00000{bottom:827.675580px;}
.y162b_c00000{bottom:827.760450px;}
.y427_c00000{bottom:827.940450px;}
.yaa3_c00000{bottom:828.030450px;}
.y79f_c00000{bottom:828.120450px;}
.y4cf_c00000{bottom:828.210450px;}
.yece_c00000{bottom:828.390450px;}
.y15d3_c00000{bottom:828.750450px;}
.y335_c00000{bottom:828.840594px;}
.ydd4_c00000{bottom:829.020450px;}
.y150b_c00000{bottom:829.110600px;}
.y1714_c00000{bottom:829.200450px;}
.yc42_c00000{bottom:829.470450px;}
.ya29_c00000{bottom:829.560450px;}
.y588_c00000{bottom:829.562340px;}
.yf3_c00000{bottom:829.650450px;}
.yba0_c00000{bottom:829.650600px;}
.y1f37_c00000{bottom:829.740450px;}
.y1ec4_c00000{bottom:830.010450px;}
.y1eed_c00000{bottom:830.010639px;}
.y1fc5_c00000{bottom:830.011305px;}
.y1360_c00000{bottom:830.100450px;}
.ycf7_c00000{bottom:830.190459px;}
.y1c73_c00000{bottom:830.191071px;}
.y1b7_c00000{bottom:830.460450px;}
.y147_c00000{bottom:830.640450px;}
.y552_c00000{bottom:830.820450px;}
.y13e5_c00000{bottom:830.910450px;}
.y1b61_c00000{bottom:831.090450px;}
.y1f4e_c00000{bottom:831.180600px;}
.y995_c00000{bottom:831.270540px;}
.y781_c00000{bottom:831.271395px;}
.yf77_c00000{bottom:831.450450px;}
.y367_c00000{bottom:831.720450px;}
.y874_c00000{bottom:831.810450px;}
.y1927_c00000{bottom:831.900450px;}
.y1067_c00000{bottom:831.990450px;}
.y20d9_c00000{bottom:832.260450px;}
.y1b85_c00000{bottom:832.440450px;}
.y2183_c00000{bottom:832.530450px;}
.y1f18_c00000{bottom:832.620450px;}
.y1cfb_c00000{bottom:832.710450px;}
.y1bc6_c00000{bottom:832.800450px;}
.y1d7c_c00000{bottom:832.801125px;}
.y1be9_c00000{bottom:832.890450px;}
.y8a2_c00000{bottom:832.980450px;}
.y10f5_c00000{bottom:833.160450px;}
.y743_c00000{bottom:833.340450px;}
.ydf7_c00000{bottom:833.520450px;}
.y20ae_c00000{bottom:833.610450px;}
.y1b22_c00000{bottom:833.610600px;}
.y473_c00000{bottom:833.700450px;}
.y1301_c00000{bottom:833.701530px;}
.y1340_c00000{bottom:833.701935px;}
.y6dc_c00000{bottom:833.880450px;}
.y53f_c00000{bottom:833.970450px;}
.ya13_c00000{bottom:834.240450px;}
.yb61_c00000{bottom:834.510450px;}
.y1e97_c00000{bottom:834.510846px;}
.y148f_c00000{bottom:834.780450px;}
.yab_c00000{bottom:834.870450px;}
.y21cb_c00000{bottom:834.960450px;}
.y928_c00000{bottom:835.050450px;}
.y20be_c00000{bottom:835.140357px;}
.y1289_c00000{bottom:835.320450px;}
.y100d_c00000{bottom:835.410261px;}
.y310_c00000{bottom:835.410450px;}
.y6e7_c00000{bottom:835.590450px;}
.y1ff4_c00000{bottom:835.680600px;}
.y13cc_c00000{bottom:835.950450px;}
.y4f8_c00000{bottom:835.951215px;}
.y1c54_c00000{bottom:836.038164px;}
.y2051_c00000{bottom:836.040600px;}
.y138f_c00000{bottom:836.130450px;}
.y1ddd_c00000{bottom:836.310450px;}
.y44c_c00000{bottom:836.580450px;}
.y770_c00000{bottom:836.850450px;}
.y1237_c00000{bottom:837.210450px;}
.y4a7_c00000{bottom:837.300450px;}
.y6a0_c00000{bottom:837.390450px;}
.yd7a_c00000{bottom:837.480450px;}
.y2131_c00000{bottom:837.660450px;}
.y1a6d_c00000{bottom:837.840450px;}
.y17df_c00000{bottom:837.930630px;}
.y1cd8_c00000{bottom:837.931395px;}
.y1dcc_c00000{bottom:838.020450px;}
.yf7a_c00000{bottom:838.110600px;}
.y5d5_c00000{bottom:838.201485px;}
.ye50_c00000{bottom:838.290450px;}
.y27c_c00000{bottom:838.380450px;}
.y480_c00000{bottom:838.560450px;}
.y5bf_c00000{bottom:838.560600px;}
.ycba_c00000{bottom:838.740450px;}
.y19ea_c00000{bottom:838.830450px;}
.yfb5_c00000{bottom:838.920000px;}
.y21d6_c00000{bottom:839.010450px;}
.y1ca8_c00000{bottom:839.100450px;}
.yae8_c00000{bottom:839.190450px;}
.y165c_c00000{bottom:839.280450px;}
.y1371_c00000{bottom:839.460450px;}
.y1b37_c00000{bottom:839.640450px;}
.y12a3_c00000{bottom:839.640810px;}
.y2bf_c00000{bottom:840.000450px;}
.y17f7_c00000{bottom:840.000600px;}
.y1db_c00000{bottom:840.270450px;}
.y18c0_c00000{bottom:840.270648px;}
.y1f73_c00000{bottom:840.540450px;}
.y1440_c00000{bottom:840.540468px;}
.y2e7_c00000{bottom:840.540600px;}
.y1db4_c00000{bottom:840.720450px;}
.y5f7_c00000{bottom:840.810450px;}
.y12ba_c00000{bottom:841.350630px;}
.yc11_c00000{bottom:841.440450px;}
.y11fb_c00000{bottom:841.530450px;}
.yb22_c00000{bottom:841.620450px;}
.y115d_c00000{bottom:841.620657px;}
.y7ee_c00000{bottom:841.621395px;}
.y831_c00000{bottom:841.621665px;}
.y1f85_c00000{bottom:841.800450px;}
.y1160_c00000{bottom:841.801017px;}
.y162a_c00000{bottom:842.250450px;}
.y11d3_c00000{bottom:842.340450px;}
.y1f9b_c00000{bottom:842.520450px;}
.yfc8_c00000{bottom:842.521431px;}
.y1f29_c00000{bottom:842.610600px;}
.y170_c00000{bottom:842.790450px;}
.y150a_c00000{bottom:842.880450px;}
.y10ad_c00000{bottom:843.060450px;}
.y1d0a_c00000{bottom:843.150450px;}
.y1a31_c00000{bottom:843.151365px;}
.yf08_c00000{bottom:843.151395px;}
.y195e_c00000{bottom:843.152250px;}
.ydb1_c00000{bottom:843.240450px;}
.y219d_c00000{bottom:843.330450px;}
.y95c_c00000{bottom:843.330630px;}
.ybeb_c00000{bottom:843.510450px;}
.y854_c00000{bottom:843.690450px;}
.y135f_c00000{bottom:843.960450px;}
.y22c_c00000{bottom:844.320450px;}
.ycf6_c00000{bottom:844.500450px;}
.y16d3_c00000{bottom:844.770819px;}
.y1a5b_c00000{bottom:844.860600px;}
.y1541_c00000{bottom:844.950450px;}
.y184b_c00000{bottom:844.951062px;}
.y1863_c00000{bottom:844.952565px;}
.y1878_c00000{bottom:844.954068px;}
.y1889_c00000{bottom:844.955571px;}
.y11ab_c00000{bottom:845.040600px;}
.y7e3_c00000{bottom:845.040720px;}
.y159f_c00000{bottom:845.130450px;}
.y3ca_c00000{bottom:845.220450px;}
.y81a_c00000{bottom:845.400450px;}
.y32d_c00000{bottom:845.490450px;}
.y19b7_c00000{bottom:845.670450px;}
.ycd_c00000{bottom:845.760450px;}
.y207f_c00000{bottom:845.760729px;}
.y1c2f_c00000{bottom:846.030450px;}
.y198b_c00000{bottom:846.120450px;}
.y1b99_c00000{bottom:846.210450px;}
.y1ade_c00000{bottom:846.480450px;}
.y3e9_c00000{bottom:846.571305px;}
.y1822_c00000{bottom:846.571485px;}
.y196_c00000{bottom:846.750450px;}
.y15d2_c00000{bottom:846.750639px;}
.yc55_c00000{bottom:846.840450px;}
.yb83_c00000{bottom:846.930450px;}
.ya73_c00000{bottom:846.930600px;}
.y1eec_c00000{bottom:847.200450px;}
.y64_c00000{bottom:847.293438px;}
.y1066_c00000{bottom:847.470450px;}
.y1c72_c00000{bottom:847.471062px;}
.y83_c00000{bottom:847.563951px;}
.y24e_c00000{bottom:847.650450px;}
.y1ec3_c00000{bottom:847.830450px;}
.y1f4d_c00000{bottom:848.460450px;}
.y587_c00000{bottom:848.552250px;}
.yf76_c00000{bottom:848.640450px;}
.y167a_c00000{bottom:848.820450px;}
.y51c_c00000{bottom:848.910450px;}
.y1713_c00000{bottom:849.000450px;}
.y8c6_c00000{bottom:849.000924px;}
.y1fc4_c00000{bottom:849.001215px;}
.y208b_c00000{bottom:849.090450px;}
.y148e_c00000{bottom:849.360600px;}
.yd5e_c00000{bottom:849.450450px;}
.ya28_c00000{bottom:849.720450px;}
.y2153_c00000{bottom:849.810450px;}
.y1db3_c00000{bottom:849.990720px;}
.y118_c00000{bottom:850.080450px;}
.y15a4_c00000{bottom:850.170450px;}
.y994_c00000{bottom:850.260450px;}
.y992_c00000{bottom:850.261215px;}
.y780_c00000{bottom:850.261305px;}
.y6e6_c00000{bottom:850.261395px;}
.y2af_c00000{bottom:850.350450px;}
.y10f4_c00000{bottom:850.440450px;}
.y79e_c00000{bottom:850.530450px;}
.y334_c00000{bottom:850.620522px;}
.y366_c00000{bottom:850.710450px;}
.y1300_c00000{bottom:850.710981px;}
.y133f_c00000{bottom:850.711386px;}
.y133b_c00000{bottom:850.890450px;}
.y1073_c00000{bottom:850.980450px;}
.y18fa_c00000{bottom:851.340450px;}
.yea0_c00000{bottom:851.430600px;}
.y1f17_c00000{bottom:851.610600px;}
.y1bc5_c00000{bottom:851.700450px;}
.y1e96_c00000{bottom:851.700657px;}
.y1236_c00000{bottom:851.700720px;}
.y1ff3_c00000{bottom:851.701215px;}
.ybb4_c00000{bottom:852.150450px;}
.ydd3_c00000{bottom:852.240450px;}
.y61a_c00000{bottom:852.330450px;}
.y21af_c00000{bottom:852.420450px;}
.yd1a_c00000{bottom:852.510450px;}
.y1b6d_c00000{bottom:852.600450px;}
.y1d67_c00000{bottom:852.960450px;}
.y2050_c00000{bottom:853.320450px;}
.y1926_c00000{bottom:853.410450px;}
.y1003_c00000{bottom:853.410900px;}
.y2130_c00000{bottom:853.500600px;}
.yd93_c00000{bottom:853.680600px;}
.y387_c00000{bottom:853.860450px;}
.y165b_c00000{bottom:853.860600px;}
.y14d0_c00000{bottom:853.950450px;}
.y9ed_c00000{bottom:854.040450px;}
.y1abc_c00000{bottom:854.310450px;}
.y146_c00000{bottom:854.400450px;}
.y4a6_c00000{bottom:854.580450px;}
.y156e_c00000{bottom:854.670450px;}
.y742_c00000{bottom:854.850450px;}
.y4f7_c00000{bottom:854.941125px;}
.y202e_c00000{bottom:855.120450px;}
.y5f6_c00000{bottom:855.390450px;}
.ybcf_c00000{bottom:855.570450px;}
.y21c9_c00000{bottom:855.660450px;}
.yc41_c00000{bottom:855.840450px;}
.yc10_c00000{bottom:856.020720px;}
.y20bd_c00000{bottom:856.110600px;}
.y1ca7_c00000{bottom:856.290600px;}
.y16f1_c00000{bottom:856.469811px;}
.yae7_c00000{bottom:856.470450px;}
.y1509_c00000{bottom:856.650450px;}
.y1629_c00000{bottom:856.830450px;}
.y17de_c00000{bottom:856.920540px;}
.y1cd7_c00000{bottom:856.921305px;}
.y5d4_c00000{bottom:857.100810px;}
.y1483_c00000{bottom:857.280450px;}
.y472_c00000{bottom:857.550450px;}
.y18bf_c00000{bottom:857.550639px;}
.y993_c00000{bottom:857.730450px;}
.y1c53_c00000{bottom:857.818092px;}
.y11d2_c00000{bottom:857.820450px;}
.y143f_c00000{bottom:857.820459px;}
.y9d6_c00000{bottom:857.910450px;}
.y7c8_c00000{bottom:858.180450px;}
.y10ac_c00000{bottom:858.630450px;}
.y12a2_c00000{bottom:858.630720px;}
.y1aa7_c00000{bottom:858.631575px;}
.y115c_c00000{bottom:858.810468px;}
.y426_c00000{bottom:858.990450px;}
.y115f_c00000{bottom:858.990828px;}
.y913_c00000{bottom:859.080450px;}
.y219c_c00000{bottom:859.170450px;}
.y1a48_c00000{bottom:859.170549px;}
.y4ce_c00000{bottom:859.260450px;}
.yecd_c00000{bottom:859.440450px;}
.y97_c00000{bottom:859.443456px;}
.yb60_c00000{bottom:859.620450px;}
.yfc7_c00000{bottom:859.801422px;}
.y2e6_c00000{bottom:860.340450px;}
.y12b9_c00000{bottom:860.340540px;}
.y551_c00000{bottom:860.520450px;}
.y100a_c00000{bottom:860.521233px;}
.y7ed_c00000{bottom:860.611305px;}
.y830_c00000{bottom:860.611575px;}
.yf2_c00000{bottom:860.700450px;}
.yb9f_c00000{bottom:860.700600px;}
.yb21_c00000{bottom:860.790600px;}
.y198a_c00000{bottom:860.791575px;}
.yc6b_c00000{bottom:861.510450px;}
.y112e_c00000{bottom:861.690450px;}
.y13e4_c00000{bottom:861.960450px;}
.y1d09_c00000{bottom:862.050450px;}
.y1a30_c00000{bottom:862.050690px;}
.yf07_c00000{bottom:862.050720px;}
.y16d2_c00000{bottom:862.050999px;}
.y195d_c00000{bottom:862.051575px;}
.y13cb_c00000{bottom:862.140450px;}
.y184a_c00000{bottom:862.140873px;}
.y1862_c00000{bottom:862.142376px;}
.y1877_c00000{bottom:862.143879px;}
.y1888_c00000{bottom:862.145382px;}
.y27b_c00000{bottom:862.230450px;}
.y11aa_c00000{bottom:862.320450px;}
.y95b_c00000{bottom:862.320540px;}
.y22b_c00000{bottom:862.410450px;}
.y11ad_c00000{bottom:862.500600px;}
.y69f_c00000{bottom:862.680450px;}
.y873_c00000{bottom:862.860450px;}
.y1065_c00000{bottom:863.040600px;}
.ybea_c00000{bottom:863.220450px;}
.y20d8_c00000{bottom:863.310450px;}
.y148d_c00000{bottom:863.850450px;}
.y10b7_c00000{bottom:863.940450px;}
.y8a1_c00000{bottom:864.030450px;}
.y7e2_c00000{bottom:864.030630px;}
.y1d96_c00000{bottom:864.210450px;}
.y9b3_c00000{bottom:864.390450px;}
.ydf6_c00000{bottom:864.570450px;}
.y20ad_c00000{bottom:864.660450px;}
.y1c71_c00000{bottom:864.751053px;}
.y8c5_c00000{bottom:864.930600px;}
.y52d_c00000{bottom:865.020450px;}
.y853_c00000{bottom:865.200450px;}
.ya12_c00000{bottom:865.290450px;}
.y1da_c00000{bottom:865.380450px;}
.y1add_c00000{bottom:865.470450px;}
.y3e8_c00000{bottom:865.561215px;}
.y1821_c00000{bottom:865.561395px;}
.y21ca_c00000{bottom:865.650450px;}
.y1f4c_c00000{bottom:865.740450px;}
.yaa_c00000{bottom:865.920450px;}
.y1ec2_c00000{bottom:866.011044px;}
.y927_c00000{bottom:866.100450px;}
.y1540_c00000{bottom:866.370450px;}
.y1072_c00000{bottom:866.460450px;}
.y16f_c00000{bottom:866.640450px;}
.y206c_c00000{bottom:866.730450px;}
.y11fa_c00000{bottom:866.820450px;}
.y138e_c00000{bottom:867.180450px;}
.y1b6c_c00000{bottom:867.270450px;}
.y1be8_c00000{bottom:867.450450px;}
.y586_c00000{bottom:867.451575px;}
.y44b_c00000{bottom:867.630450px;}
.y14cf_c00000{bottom:867.810450px;}
.y76f_c00000{bottom:867.900450px;}
.y1fc3_c00000{bottom:867.900540px;}
.y133a_c00000{bottom:868.170450px;}
.y133e_c00000{bottom:868.171737px;}
.ye73_c00000{bottom:868.260450px;}
.y24d_c00000{bottom:868.350450px;}
.yd79_c00000{bottom:868.440450px;}
.ydb0_c00000{bottom:868.530450px;}
.y1712_c00000{bottom:868.890450px;}
.y12fa_c00000{bottom:868.890459px;}
.y1002_c00000{bottom:868.980450px;}
.y1db2_c00000{bottom:868.980630px;}
.y1e95_c00000{bottom:868.980648px;}
.y1abb_c00000{bottom:868.981395px;}
.y19db_c00000{bottom:868.982520px;}
.y212f_c00000{bottom:869.070450px;}
.yf79_c00000{bottom:869.160450px;}
.y991_c00000{bottom:869.251125px;}
.y77f_c00000{bottom:869.251215px;}
.y6e5_c00000{bottom:869.251305px;}
.y117_c00000{bottom:869.340450px;}
.y9a2_c00000{bottom:869.430600px;}
.y47f_c00000{bottom:869.610450px;}
.y5be_c00000{bottom:869.610600px;}
.y365_c00000{bottom:869.700450px;}
.ye87_c00000{bottom:869.790450px;}
.y1d30_c00000{bottom:869.790600px;}
.y9d5_c00000{bottom:869.880810px;}
.yfb4_c00000{bottom:869.970000px;}
.y1b14_c00000{bottom:869.970450px;}
.y16f0_c00000{bottom:870.329874px;}
.y1b84_c00000{bottom:870.330450px;}
.y1370_c00000{bottom:870.600450px;}
.y1ff2_c00000{bottom:870.600540px;}
.y1f28_c00000{bottom:870.690450px;}
.y1235_c00000{bottom:870.690630px;}
.yd41_c00000{bottom:870.870450px;}
.y12d5_c00000{bottom:870.960450px;}
.ycc_c00000{bottom:871.050450px;}
.y17f6_c00000{bottom:871.050600px;}
.y18f9_c00000{bottom:871.140540px;}
.y1508_c00000{bottom:871.230450px;}
.y1628_c00000{bottom:871.410450px;}
.y63_c00000{bottom:871.503303px;}
.ye20_c00000{bottom:871.590450px;}
.y204f_c00000{bottom:871.680600px;}
.y195_c00000{bottom:871.770450px;}
.y14b6_c00000{bottom:871.860600px;}
.ydd2_c00000{bottom:872.130450px;}
.y21ae_c00000{bottom:872.220450px;}
.y333_c00000{bottom:872.400450px;}
.ycf5_c00000{bottom:872.400639px;}
.y1f84_c00000{bottom:872.850450px;}
.y11d1_c00000{bottom:873.390450px;}
.y1ca6_c00000{bottom:873.570450px;}
.yae6_c00000{bottom:873.660450px;}
.y1b21_c00000{bottom:873.750600px;}
.y4f6_c00000{bottom:873.840450px;}
.y13ca_c00000{bottom:874.020450px;}
.y10ab_c00000{bottom:874.110600px;}
.y211e_c00000{bottom:874.290600px;}
.y5f5_c00000{bottom:874.380450px;}
.y741_c00000{bottom:874.740450px;}
.y1a47_c00000{bottom:875.010450px;}
.yc0f_c00000{bottom:875.010630px;}
.y1437_c00000{bottom:875.100450px;}
.y713_c00000{bottom:875.370450px;}
.y1a5a_c00000{bottom:875.910450px;}
.y1cd6_c00000{bottom:875.911215px;}
.y3c9_c00000{bottom:876.090450px;}
.y115b_c00000{bottom:876.090459px;}
.y5d3_c00000{bottom:876.090720px;}
.yc86_c00000{bottom:876.270450px;}
.y115e_c00000{bottom:876.270819px;}
.y819_c00000{bottom:876.450450px;}
.y1774_c00000{bottom:876.540729px;}
.ye9f_c00000{bottom:876.720450px;}
.y2ae_c00000{bottom:876.810450px;}
.y1808_c00000{bottom:876.810729px;}
.yfc6_c00000{bottom:876.991233px;}
.y1b36_c00000{bottom:877.620450px;}
.y12a1_c00000{bottom:877.620630px;}
.y1aa6_c00000{bottom:877.621485px;}
.y13f9_c00000{bottom:877.800450px;}
.y1009_c00000{bottom:877.801224px;}
.yc54_c00000{bottom:877.890450px;}
.yb82_c00000{bottom:877.980450px;}
.y1d66_c00000{bottom:878.160450px;}
.y145_c00000{bottom:878.250450px;}
.y1b6_c00000{bottom:878.250600px;}
.y19e9_c00000{bottom:878.430600px;}
.y1064_c00000{bottom:878.520450px;}
.y674_c00000{bottom:878.700450px;}
.y619_c00000{bottom:878.790600px;}
.y16d1_c00000{bottom:879.240819px;}
.y1bbc_c00000{bottom:879.330450px;}
.y1849_c00000{bottom:879.420864px;}
.y1861_c00000{bottom:879.422367px;}
.y1876_c00000{bottom:879.423870px;}
.y1887_c00000{bottom:879.425373px;}
.y11a9_c00000{bottom:879.510450px;}
.y7ec_c00000{bottom:879.601215px;}
.y82f_c00000{bottom:879.601485px;}
.y1c52_c00000{bottom:879.688605px;}
.y11ac_c00000{bottom:879.690450px;}
.y51b_c00000{bottom:879.780450px;}
.y1989_c00000{bottom:879.781485px;}
.y1679_c00000{bottom:879.870450px;}
.y5a4_c00000{bottom:879.960450px;}
.y208a_c00000{bottom:880.140450px;}
.y2e5_c00000{bottom:880.230450px;}
.y1cfa_c00000{bottom:880.320450px;}
.y5c5_c00000{bottom:880.770450px;}
.y13c9_c00000{bottom:880.771206px;}
.y1d08_c00000{bottom:881.040600px;}
.yf06_c00000{bottom:881.040630px;}
.y195c_c00000{bottom:881.041485px;}
.yb0e_c00000{bottom:881.220450px;}
.y471_c00000{bottom:881.310450px;}
.y325_c00000{bottom:881.400450px;}
.y1f36_c00000{bottom:881.490450px;}
.y15ce_c00000{bottom:881.940450px;}
.y1c70_c00000{bottom:881.940864px;}
.y116_c00000{bottom:882.030450px;}
.y14ce_c00000{bottom:882.300450px;}
.yb20_c00000{bottom:882.390450px;}
.y165a_c00000{bottom:882.930600px;}
.y7e1_c00000{bottom:883.020540px;}
.ybb3_c00000{bottom:883.200450px;}
.y1ec1_c00000{bottom:883.200855px;}
.y1eeb_c00000{bottom:883.200864px;}
.yd19_c00000{bottom:883.380450px;}
.y1cc4_c00000{bottom:883.650162px;}
.y2152_c00000{bottom:883.650450px;}
.y27a_c00000{bottom:883.740450px;}
.y173c_c00000{bottom:883.830450px;}
.y1de8_c00000{bottom:884.010450px;}
.y16ef_c00000{bottom:884.100162px;}
.y1adc_c00000{bottom:884.460450px;}
.y1001_c00000{bottom:884.460900px;}
.y3e7_c00000{bottom:884.551125px;}
.y1820_c00000{bottom:884.551305px;}
.y1690_c00000{bottom:884.640450px;}
.yf78_c00000{bottom:884.730450px;}
.y386_c00000{bottom:884.910450px;}
.y1507_c00000{bottom:885.000600px;}
.y852_c00000{bottom:885.090450px;}
.y212e_c00000{bottom:885.270450px;}
.yfb3_c00000{bottom:885.450450px;}
.y133d_c00000{bottom:885.451728px;}
.y926_c00000{bottom:885.630450px;}
.ya56_c00000{bottom:885.720450px;}
.y1627_c00000{bottom:885.900450px;}
.y22a_c00000{bottom:885.990450px;}
.y12f9_c00000{bottom:886.170450px;}
.y1b6b_c00000{bottom:886.260450px;}
.y1e94_c00000{bottom:886.260639px;}
.y585_c00000{bottom:886.441485px;}
.ybce_c00000{bottom:886.620450px;}
.y1fc2_c00000{bottom:886.890450px;}
.y1588_c00000{bottom:887.070450px;}
.y10f3_c00000{bottom:887.250600px;}
.y153f_c00000{bottom:887.880450px;}
.y1db1_c00000{bottom:887.970540px;}
.y1aba_c00000{bottom:887.971305px;}
.y19da_c00000{bottom:887.972430px;}
.y990_c00000{bottom:888.150450px;}
.y77e_c00000{bottom:888.150540px;}
.y6e4_c00000{bottom:888.150630px;}
.y1be4_c00000{bottom:888.330450px;}
.y983_c00000{bottom:888.420450px;}
.y364_c00000{bottom:888.690450px;}
.y1b20_c00000{bottom:888.780450px;}
.y11d0_c00000{bottom:888.870450px;}
.y9d4_c00000{bottom:888.870720px;}
.y1b13_c00000{bottom:888.960450px;}
.y24c_c00000{bottom:889.050450px;}
.y1925_c00000{bottom:889.146489px;}
.y7c7_c00000{bottom:889.230450px;}
.y1b83_c00000{bottom:889.320450px;}
.y13c8_c00000{bottom:889.410450px;}
.ycf4_c00000{bottom:889.590450px;}
.y1234_c00000{bottom:889.680540px;}
.y10aa_c00000{bottom:889.680600px;}
.y178c_c00000{bottom:889.681575px;}
.y1bc4_c00000{bottom:889.860600px;}
.y204e_c00000{bottom:889.950450px;}
.y425_c00000{bottom:890.040600px;}
.y18f8_c00000{bottom:890.130450px;}
.y4cd_c00000{bottom:890.310450px;}
.y1d9_c00000{bottom:890.490450px;}
.y1b4e_c00000{bottom:890.580450px;}
.y1ca5_c00000{bottom:890.850450px;}
.yae5_c00000{bottom:890.940450px;}
.y4f5_c00000{bottom:891.300450px;}
.yc40_c00000{bottom:891.390540px;}
.yc31_c00000{bottom:891.570450px;}
.y1a87_c00000{bottom:891.660450px;}
.yf1_c00000{bottom:891.750450px;}
.y401_c00000{bottom:891.750600px;}
.ydd1_c00000{bottom:891.930600px;}
.y21ad_c00000{bottom:892.110600px;}
.y20e6_c00000{bottom:892.110729px;}
.y1436_c00000{bottom:892.290600px;}
.y1afd_c00000{bottom:892.380450px;}
.y18be_c00000{bottom:892.560450px;}
.y13e3_c00000{bottom:893.010450px;}
.y1b60_c00000{bottom:893.190450px;}
.y5f4_c00000{bottom:893.370450px;}
.y618_c00000{bottom:893.371665px;}
.y673_c00000{bottom:893.373528px;}
.y5bd_c00000{bottom:893.460450px;}
.yd92_c00000{bottom:893.730162px;}
.y69e_c00000{bottom:893.730450px;}
.y872_c00000{bottom:893.910450px;}
.yc0e_c00000{bottom:894.000540px;}
.y17dd_c00000{bottom:894.000600px;}
.y1063_c00000{bottom:894.090450px;}
.yfc5_c00000{bottom:894.271224px;}
.y20d7_c00000{bottom:894.360450px;}
.y1cd5_c00000{bottom:894.901125px;}
.y1008_c00000{bottom:894.991035px;}
.y8a0_c00000{bottom:895.080450px;}
.y5d2_c00000{bottom:895.080630px;}
.y21c8_c00000{bottom:895.170450px;}
.y1211_c00000{bottom:895.260450px;}
.y9b2_c00000{bottom:895.440450px;}
.ydf5_c00000{bottom:895.620450px;}
.y62_c00000{bottom:895.622997px;}
.y20ac_c00000{bottom:895.710450px;}
.y9a1_c00000{bottom:895.800729px;}
.y83b_c00000{bottom:896.070450px;}
.ye72_c00000{bottom:896.250450px;}
.ya11_c00000{bottom:896.340450px;}
.y16d0_c00000{bottom:896.520819px;}
.y1b35_c00000{bottom:896.610450px;}
.y12a0_c00000{bottom:896.610540px;}
.y1aa5_c00000{bottom:896.611395px;}
.y1848_c00000{bottom:896.700855px;}
.y1860_c00000{bottom:896.702358px;}
.y1875_c00000{bottom:896.703861px;}
.y1886_c00000{bottom:896.705364px;}
.y1125_c00000{bottom:896.790600px;}
.y194_c00000{bottom:896.880450px;}
.ya9_c00000{bottom:896.970450px;}
.y13f8_c00000{bottom:897.240450px;}
.y12b8_c00000{bottom:897.420450px;}
.y332_c00000{bottom:897.510450px;}
.y11f9_c00000{bottom:897.780450px;}
.y16ee_c00000{bottom:897.870450px;}
.y138d_c00000{bottom:898.230450px;}
.y19e8_c00000{bottom:898.320450px;}
.y10b6_c00000{bottom:898.500450px;}
.y7eb_c00000{bottom:898.500540px;}
.y82e_c00000{bottom:898.500810px;}
.y44a_c00000{bottom:898.680450px;}
.y1988_c00000{bottom:898.771395px;}
.y76e_c00000{bottom:898.950450px;}
.y15d1_c00000{bottom:899.220441px;}
.y15cd_c00000{bottom:899.220450px;}
.y1c6f_c00000{bottom:899.220855px;}
.y13a4_c00000{bottom:899.400450px;}
.ydaf_c00000{bottom:899.580450px;}
.y1506_c00000{bottom:899.850450px;}
.y2e4_c00000{bottom:900.030450px;}
.yf05_c00000{bottom:900.030540px;}
.y195b_c00000{bottom:900.031395px;}
.yf5c_c00000{bottom:900.120450px;}
.ye4f_c00000{bottom:900.210450px;}
.y925_c00000{bottom:900.301485px;}
.y1626_c00000{bottom:900.480450px;}
.y1ec0_c00000{bottom:900.480846px;}
.y1eea_c00000{bottom:900.480855px;}
.y47e_c00000{bottom:900.660450px;}
.y13aa_c00000{bottom:900.750450px;}
.ye86_c00000{bottom:900.840450px;}
.yfb2_c00000{bottom:901.020000px;}
.y148c_c00000{bottom:901.200450px;}
.y1c51_c00000{bottom:901.468533px;}
.y95a_c00000{bottom:901.470450px;}
.y42_c00000{bottom:901.651944px;}
.y1fa_c00000{bottom:901.830450px;}
.y301_c00000{bottom:901.920450px;}
.y144_c00000{bottom:902.010450px;}
.ycb_c00000{bottom:902.100450px;}
.y1339_c00000{bottom:902.460450px;}
.y133c_c00000{bottom:902.461179px;}
.y1f72_c00000{bottom:902.640450px;}
.y3c8_c00000{bottom:902.730450px;}
.yb1f_c00000{bottom:902.731575px;}
.y173b_c00000{bottom:902.820450px;}
.y1f92_c00000{bottom:902.910450px;}
.y3e6_c00000{bottom:903.450450px;}
.y181f_c00000{bottom:903.450630px;}
.y12f8_c00000{bottom:903.450657px;}
.y1678_c00000{bottom:903.720450px;}
.y1f83_c00000{bottom:903.900450px;}
.y1cf9_c00000{bottom:904.080450px;}
.y11cf_c00000{bottom:904.440450px;}
.y470_c00000{bottom:905.160450px;}
.y1b4d_c00000{bottom:905.250450px;}
.y584_c00000{bottom:905.431395px;}
.y9be_c00000{bottom:905.790450px;}
.ybe9_c00000{bottom:905.790540px;}
.y115_c00000{bottom:905.880450px;}
.y51a_c00000{bottom:906.150207px;}
.y4a5_c00000{bottom:906.330450px;}
.y9fd_c00000{bottom:906.420450px;}
.yabe_c00000{bottom:906.420729px;}
.y1fc1_c00000{bottom:906.510450px;}
.ybb2_c00000{bottom:906.870450px;}
.y1a59_c00000{bottom:906.960450px;}
.y1ab9_c00000{bottom:906.961215px;}
.y19d9_c00000{bottom:906.962340px;}
.y77d_c00000{bottom:907.140450px;}
.y6e3_c00000{bottom:907.140540px;}
.y98f_c00000{bottom:907.141845px;}
.yc85_c00000{bottom:907.320450px;}
.y818_c00000{bottom:907.500450px;}
.yb0d_c00000{bottom:907.590207px;}
.y363_c00000{bottom:907.590450px;}
.y229_c00000{bottom:907.770450px;}
.y9d3_c00000{bottom:907.860630px;}
.y10f2_c00000{bottom:907.950450px;}
.y982_c00000{bottom:908.040162px;}
.y1ca4_c00000{bottom:908.040600px;}
.ycf3_c00000{bottom:908.130450px;}
.y1919_c00000{bottom:908.133105px;}
.y1924_c00000{bottom:908.136399px;}
.yae4_c00000{bottom:908.220450px;}
.y1b82_c00000{bottom:908.310450px;}
.y1711_c00000{bottom:908.490450px;}
.y1f16_c00000{bottom:908.580450px;}
.y1233_c00000{bottom:908.670450px;}
.y178b_c00000{bottom:908.671485px;}
.yc53_c00000{bottom:908.940450px;}
.yb81_c00000{bottom:909.030450px;}
.y1a6c_c00000{bottom:909.120450px;}
.y1ff1_c00000{bottom:909.210450px;}
.y153e_c00000{bottom:909.300450px;}
.y1b1f_c00000{bottom:909.480450px;}
.y1062_c00000{bottom:909.570450px;}
.y24b_c00000{bottom:909.750450px;}
.yc3f_c00000{bottom:910.380450px;}
.y14cd_c00000{bottom:910.650450px;}
.y1bc3_c00000{bottom:910.740450px;}
.y18bd_c00000{bottom:910.740675px;}
.y7c6_c00000{bottom:910.830450px;}
.y204d_c00000{bottom:910.920450px;}
.y5a3_c00000{bottom:911.010450px;}
.yd78_c00000{bottom:911.190450px;}
.yd18_c00000{bottom:911.370450px;}
.y851_c00000{bottom:911.550450px;}
.y115a_c00000{bottom:911.551206px;}
.yfc4_c00000{bottom:911.551215px;}
.ydd0_c00000{bottom:911.730450px;}
.y21ac_c00000{bottom:911.910450px;}
.y1659_c00000{bottom:912.000450px;}
.y17f5_c00000{bottom:912.091755px;}
.y1602_c00000{bottom:912.270450px;}
.y1007_c00000{bottom:912.271026px;}
.y5f3_c00000{bottom:912.360450px;}
.y617_c00000{bottom:912.361575px;}
.y672_c00000{bottom:912.363438px;}
.y324_c00000{bottom:912.450450px;}
.y16ed_c00000{bottom:912.810450px;}
.yc0d_c00000{bottom:912.990450px;}
.y1071_c00000{bottom:913.080450px;}
.y1505_c00000{bottom:913.620450px;}
.y1cd4_c00000{bottom:913.800450px;}
.y16cf_c00000{bottom:913.800999px;}
.y13e2_c00000{bottom:913.890450px;}
.y1847_c00000{bottom:913.890666px;}
.y185f_c00000{bottom:913.892169px;}
.y1874_c00000{bottom:913.893672px;}
.y1885_c00000{bottom:913.895175px;}
.y11a8_c00000{bottom:914.070450px;}
.y5d1_c00000{bottom:914.070540px;}
.y1f55_c00000{bottom:914.160450px;}
.y1124_c00000{bottom:914.250450px;}
.y1210_c00000{bottom:915.060450px;}
.y2151_c00000{bottom:915.420450px;}
.y1677_c00000{bottom:915.421017px;}
.y1d8_c00000{bottom:915.510450px;}
.y1000_c00000{bottom:915.510900px;}
.y129f_c00000{bottom:915.600450px;}
.y1aa4_c00000{bottom:915.601305px;}
.yb9e_c00000{bottom:915.690450px;}
.y385_c00000{bottom:915.960450px;}
.y5bc_c00000{bottom:916.140450px;}
.y15d0_c00000{bottom:916.500432px;}
.y9a0_c00000{bottom:916.500450px;}
.y15cc_c00000{bottom:916.500639px;}
.y1c6e_c00000{bottom:916.500846px;}
.y156d_c00000{bottom:916.770450px;}
.y16e_c00000{bottom:916.860450px;}
.y202d_c00000{bottom:917.220450px;}
.y1bbb_c00000{bottom:917.310450px;}
.y7ea_c00000{bottom:917.490450px;}
.y82d_c00000{bottom:917.490720px;}
.ybcd_c00000{bottom:917.670450px;}
.y20f1_c00000{bottom:917.670765px;}
.y1ebf_c00000{bottom:917.760837px;}
.y1ee9_c00000{bottom:917.760846px;}
.y1987_c00000{bottom:917.761305px;}
.yc30_c00000{bottom:917.940729px;}
.y449_c00000{bottom:918.120450px;}
.yf04_c00000{bottom:919.020450px;}
.y195a_c00000{bottom:919.021305px;}
.y1be7_c00000{bottom:919.200450px;}
.y924_c00000{bottom:919.200810px;}
.y1482_c00000{bottom:919.380450px;}
.y61_c00000{bottom:919.742691px;}
.y2e3_c00000{bottom:919.830450px;}
.yd5d_c00000{bottom:919.920450px;}
.y1acf_c00000{bottom:920.460450px;}
.y12f7_c00000{bottom:920.640468px;}
.y1338_c00000{bottom:920.640666px;}
.y10a9_c00000{bottom:920.730450px;}
.y424_c00000{bottom:921.090450px;}
.y170e_c00000{bottom:921.180450px;}
.y9c1_c00000{bottom:921.270450px;}
.y4cc_c00000{bottom:921.360450px;}
.ycb9_c00000{bottom:921.540450px;}
.y1d23_c00000{bottom:921.540600px;}
.y2011_c00000{bottom:921.630162px;}
.yb1e_c00000{bottom:921.721485px;}
.y981_c00000{bottom:921.810450px;}
.y193_c00000{bottom:921.990450px;}
.y4f4_c00000{bottom:922.350450px;}
.yd91_c00000{bottom:922.440450px;}
.y181e_c00000{bottom:922.440540px;}
.y1a86_c00000{bottom:922.710450px;}
.yf0_c00000{bottom:922.800450px;}
.y1c50_c00000{bottom:923.339046px;}
.y1ddc_c00000{bottom:923.340450px;}
.y3c7_c00000{bottom:923.430450px;}
.y4a4_c00000{bottom:923.520450px;}
.y1da3_c00000{bottom:923.610450px;}
.y1c2c_c00000{bottom:923.970450px;}
.y1b4c_c00000{bottom:924.150450px;}
.y1b5f_c00000{bottom:924.240450px;}
.y583_c00000{bottom:924.421305px;}
.y1a2f_c00000{bottom:924.600450px;}
.y69d_c00000{bottom:924.780450px;}
.y871_c00000{bottom:924.960450px;}
.y1061_c00000{bottom:925.140450px;}
.y14cc_c00000{bottom:925.230450px;}
.y1ca3_c00000{bottom:925.320450px;}
.yae3_c00000{bottom:925.410450px;}
.y1e3e_c00000{bottom:925.500450px;}
.y279_c00000{bottom:925.680450px;}
.y41_c00000{bottom:925.771638px;}
.y143_c00000{bottom:925.860450px;}
.y1ab8_c00000{bottom:925.951125px;}
.y19d8_c00000{bottom:925.952250px;}
.y1de7_c00000{bottom:926.040450px;}
.y89f_c00000{bottom:926.130450px;}
.y98e_c00000{bottom:926.131755px;}
.y146e_c00000{bottom:926.310450px;}
.y1fc0_c00000{bottom:926.402340px;}
.y9b1_c00000{bottom:926.490450px;}
.y362_c00000{bottom:926.580450px;}
.ydf4_c00000{bottom:926.670450px;}
.y1435_c00000{bottom:926.850450px;}
.y9d2_c00000{bottom:926.850540px;}
.y143e_c00000{bottom:926.850789px;}
.y519_c00000{bottom:927.120450px;}
.y1918_c00000{bottom:927.123015px;}
.y1923_c00000{bottom:927.126309px;}
.ya10_c00000{bottom:927.390450px;}
.y1504_c00000{bottom:927.480450px;}
.y1a46_c00000{bottom:927.660450px;}
.y178a_c00000{bottom:927.661395px;}
.y1cf8_c00000{bottom:927.930450px;}
.ya8_c00000{bottom:928.020450px;}
.y18bc_c00000{bottom:928.020666px;}
.y2015_c00000{bottom:928.290600px;}
.yb80_c00000{bottom:928.470450px;}
.y5_c00000{bottom:928.500000px;}
.y3e5_c00000{bottom:928.560450px;}
.y1154_c00000{bottom:928.560657px;}
.y10f1_c00000{bottom:928.650450px;}
.y1159_c00000{bottom:928.741017px;}
.yfc3_c00000{bottom:928.741026px;}
.y11f8_c00000{bottom:928.830450px;}
.y46f_c00000{bottom:928.920450px;}
.y1ff0_c00000{bottom:929.101485px;}
.y138c_c00000{bottom:929.280450px;}
.yc3e_c00000{bottom:929.370450px;}
.y1710_c00000{bottom:929.460450px;}
.ybb1_c00000{bottom:929.550450px;}
.y18f7_c00000{bottom:929.550720px;}
.y1006_c00000{bottom:929.551017px;}
.y114_c00000{bottom:929.640450px;}
.y77c_c00000{bottom:929.730450px;}
.y76d_c00000{bottom:930.000450px;}
.y1afc_c00000{bottom:930.090450px;}
.y1f82_c00000{bottom:930.360450px;}
.y24a_c00000{bottom:930.450450px;}
.ydae_c00000{bottom:930.630450px;}
.y153d_c00000{bottom:930.720450px;}
.y16ce_c00000{bottom:930.990819px;}
.yfff_c00000{bottom:931.080450px;}
.y17f4_c00000{bottom:931.081665px;}
.y1232_c00000{bottom:931.170450px;}
.y1846_c00000{bottom:931.170657px;}
.y185e_c00000{bottom:931.172160px;}
.y1873_c00000{bottom:931.173663px;}
.y1884_c00000{bottom:931.175166px;}
.y5f2_c00000{bottom:931.350450px;}
.y616_c00000{bottom:931.351485px;}
.y671_c00000{bottom:931.353348px;}
.y1123_c00000{bottom:931.440450px;}
.ydcf_c00000{bottom:931.620450px;}
.y47d_c00000{bottom:931.710450px;}
.y21ab_c00000{bottom:931.800450px;}
.ye85_c00000{bottom:931.890450px;}
.y96_c00000{bottom:931.892709px;}
.y219a_c00000{bottom:931.980450px;}
.yfb1_c00000{bottom:932.070000px;}
.y11a7_c00000{bottom:932.070450px;}
.y120f_c00000{bottom:932.340450px;}
.ya9c_c00000{bottom:932.520450px;}
.y1676_c00000{bottom:932.701008px;}
.y448_c00000{bottom:932.790600px;}
.y1db0_c00000{bottom:932.790630px;}
.y12b7_c00000{bottom:932.791485px;}
.y300_c00000{bottom:932.970450px;}
.y5d0_c00000{bottom:933.060450px;}
.yca_c00000{bottom:933.150450px;}
.y1f35_c00000{bottom:933.240450px;}
.y15cf_c00000{bottom:933.690243px;}
.y15cb_c00000{bottom:933.690450px;}
.y1c6d_c00000{bottom:933.690657px;}
.y13c7_c00000{bottom:933.960450px;}
.y1b34_c00000{bottom:934.500450px;}
.y1aa3_c00000{bottom:934.500630px;}
.y1f4b_c00000{bottom:934.680450px;}
.yf75_c00000{bottom:934.770450px;}
.y1ebe_c00000{bottom:934.950648px;}
.y1ee8_c00000{bottom:934.950657px;}
.y2010_c00000{bottom:935.400450px;}
.y11ce_c00000{bottom:935.490450px;}
.y173a_c00000{bottom:935.580450px;}
.y7c5_c00000{bottom:935.760450px;}
.ycf2_c00000{bottom:935.940450px;}
.y10a8_c00000{bottom:936.210450px;}
.y1bba_c00000{bottom:936.300450px;}
.y1be6_c00000{bottom:936.390450px;}
.y82c_c00000{bottom:936.480630px;}
.y980_c00000{bottom:936.482520px;}
.yb5f_c00000{bottom:936.660450px;}
.y1986_c00000{bottom:936.660630px;}
.y850_c00000{bottom:936.840450px;}
.y20d6_c00000{bottom:937.020450px;}
.y4f3_c00000{bottom:937.110450px;}
.ya91_c00000{bottom:937.470513px;}
.y12f0_c00000{bottom:937.920450px;}
.y12f6_c00000{bottom:937.920459px;}
.y1337_c00000{bottom:937.920657px;}
.y3c6_c00000{bottom:938.010450px;}
.y1959_c00000{bottom:938.011215px;}
.y923_c00000{bottom:938.190720px;}
.y159e_c00000{bottom:938.280450px;}
.yb9d_c00000{bottom:938.370450px;}
.y817_c00000{bottom:938.550450px;}
.yc2f_c00000{bottom:938.640450px;}
.ye9e_c00000{bottom:938.820450px;}
.y1cd3_c00000{bottom:938.910450px;}
.y1601_c00000{bottom:938.910729px;}
.y14cb_c00000{bottom:939.000450px;}
.ybcc_c00000{bottom:939.180450px;}
.y219b_c00000{bottom:939.270450px;}
.y1e93_c00000{bottom:939.450657px;}
.y2e2_c00000{bottom:939.720450px;}
.yc52_c00000{bottom:939.990450px;}
.y7e9_c00000{bottom:940.080450px;}
.y1ace_c00000{bottom:940.350450px;}
.y1d7_c00000{bottom:940.620450px;}
.yb1d_c00000{bottom:940.711395px;}
.y4a3_c00000{bottom:940.800450px;}
.y17dc_c00000{bottom:940.890450px;}
.y1658_c00000{bottom:941.160450px;}
.y1adb_c00000{bottom:941.340450px;}
.yd90_c00000{bottom:941.430450px;}
.y1591_c00000{bottom:941.520450px;}
.y1503_c00000{bottom:941.700450px;}
.y16d_c00000{bottom:941.970450px;}
.y5a2_c00000{bottom:942.060450px;}
.yd77_c00000{bottom:942.240450px;}
.yae2_c00000{bottom:942.690450px;}
.y1ca2_c00000{bottom:942.780450px;}
.yac0_c00000{bottom:942.870450px;}
.y1b4b_c00000{bottom:943.140450px;}
.yb7f_c00000{bottom:943.141485px;}
.y2062_c00000{bottom:943.320450px;}
.y1587_c00000{bottom:943.410450px;}
.y582_c00000{bottom:943.411215px;}
.y323_c00000{bottom:943.500450px;}
.y1c2b_c00000{bottom:943.770450px;}
.ybe8_c00000{bottom:943.770540px;}
.y60_c00000{bottom:943.952556px;}
.y1434_c00000{bottom:944.040600px;}
.ye3c_c00000{bottom:944.130450px;}
.y6e2_c00000{bottom:944.220387px;}
.y1ab7_c00000{bottom:944.850450px;}
.y19d7_c00000{bottom:944.851575px;}
.y1c4f_c00000{bottom:945.118974px;}
.y98d_c00000{bottom:945.121665px;}
.y1c0a_c00000{bottom:945.210450px;}
.yd5c_c00000{bottom:945.300450px;}
.y18bb_c00000{bottom:945.300657px;}
.y1fbf_c00000{bottom:945.301665px;}
.y2182_c00000{bottom:945.390450px;}
.y192_c00000{bottom:945.570450px;}
.y11ca_c00000{bottom:945.840450px;}
.y1153_c00000{bottom:945.840648px;}
.y1158_c00000{bottom:946.021008px;}
.yfc2_c00000{bottom:946.021017px;}
.y1917_c00000{bottom:946.112925px;}
.y1922_c00000{bottom:946.116219px;}
.y1f15_c00000{bottom:946.470450px;}
.yffe_c00000{bottom:946.560468px;}
.y1a45_c00000{bottom:946.650450px;}
.y1789_c00000{bottom:946.651305px;}
.y158b_c00000{bottom:946.740450px;}
.y1005_c00000{bottom:946.740828px;}
.y384_c00000{bottom:947.010450px;}
.y278_c00000{bottom:947.190450px;}
.y1afb_c00000{bottom:947.280450px;}
.y423_c00000{bottom:947.550450px;}
.y6c2_c00000{bottom:947.820450px;}
.y2150_c00000{bottom:947.910450px;}
.y1fef_c00000{bottom:948.000810px;}
.y202c_c00000{bottom:948.270450px;}
.y16cd_c00000{bottom:948.270819px;}
.yc3d_c00000{bottom:948.360450px;}
.y1845_c00000{bottom:948.450648px;}
.y185d_c00000{bottom:948.452151px;}
.y1872_c00000{bottom:948.453654px;}
.y1883_c00000{bottom:948.455157px;}
.y18f6_c00000{bottom:948.540630px;}
.yf03_c00000{bottom:948.720450px;}
.y228_c00000{bottom:949.440450px;}
.y142_c00000{bottom:949.620450px;}
.y1675_c00000{bottom:949.710459px;}
.y10f0_c00000{bottom:949.980450px;}
.y40_c00000{bottom:949.981503px;}
.y7c4_c00000{bottom:950.070450px;}
.y17f3_c00000{bottom:950.071575px;}
.y17db_c00000{bottom:950.071827px;}
.y5f1_c00000{bottom:950.250450px;}
.y615_c00000{bottom:950.250810px;}
.y670_c00000{bottom:950.252673px;}
.y170f_c00000{bottom:950.340450px;}
.ybb0_c00000{bottom:950.430450px;}
.y1f34_c00000{bottom:950.610450px;}
.y11a6_c00000{bottom:950.880450px;}
.y11cd_c00000{bottom:950.970450px;}
.y1c6c_c00000{bottom:950.970648px;}
.y249_c00000{bottom:951.150450px;}
.ydce_c00000{bottom:951.420450px;}
.y21aa_c00000{bottom:951.600450px;}
.y1cf7_c00000{bottom:951.690450px;}
.y447_c00000{bottom:951.780450px;}
.y1daf_c00000{bottom:951.780540px;}
.y12b6_c00000{bottom:951.781395px;}
.y13c6_c00000{bottom:951.960450px;}
.y1f4a_c00000{bottom:952.140450px;}
.y9c9_c00000{bottom:952.230450px;}
.y1ebd_c00000{bottom:952.230639px;}
.y1ee7_c00000{bottom:952.230648px;}
.y9c0_c00000{bottom:952.320450px;}
.y4cb_c00000{bottom:952.410450px;}
.ycb8_c00000{bottom:952.590450px;}
.y46e_c00000{bottom:952.770450px;}
.yc0c_c00000{bottom:953.040450px;}
.yac5_c00000{bottom:953.220450px;}
.y113_c00000{bottom:953.490450px;}
.y1aa2_c00000{bottom:953.490540px;}
.y14ca_c00000{bottom:953.580450px;}
.yeb8_c00000{bottom:953.670450px;}
.yef_c00000{bottom:953.850450px;}
.y20ab_c00000{bottom:954.210729px;}
.y12ef_c00000{bottom:955.200450px;}
.y1336_c00000{bottom:955.200648px;}
.y1b5e_c00000{bottom:955.290450px;}
.y82b_c00000{bottom:955.470540px;}
.y97f_c00000{bottom:955.472430px;}
.y1502_c00000{bottom:955.560450px;}
.y1657_c00000{bottom:955.650450px;}
.y1985_c00000{bottom:955.650540px;}
.y69c_c00000{bottom:955.830450px;}
.y870_c00000{bottom:956.010450px;}
.y1060_c00000{bottom:956.190450px;}
.y21c7_c00000{bottom:956.370450px;}
.y2199_c00000{bottom:956.460450px;}
.y1e92_c00000{bottom:956.730648px;}
.y3c5_c00000{bottom:957.000450px;}
.y1958_c00000{bottom:957.001125px;}
.yb5e_c00000{bottom:957.002250px;}
.y89e_c00000{bottom:957.180450px;}
.y922_c00000{bottom:957.180630px;}
.y1d95_c00000{bottom:957.360450px;}
.y9b0_c00000{bottom:957.540450px;}
.ydf3_c00000{bottom:957.720450px;}
.y19e7_c00000{bottom:957.810450px;}
.y4a2_c00000{bottom:958.080450px;}
.ya90_c00000{bottom:958.170234px;}
.y5cf_c00000{bottom:958.170450px;}
.ya0f_c00000{bottom:958.440450px;}
.y1625_c00000{bottom:958.710450px;}
.y4f2_c00000{bottom:958.890450px;}
.ya7_c00000{bottom:959.070450px;}
.y329_c00000{bottom:959.340450px;}
.y13e1_c00000{bottom:959.430450px;}
.y2e1_c00000{bottom:959.520450px;}
.y2ff_c00000{bottom:959.610450px;}
.yb1c_c00000{bottom:959.701305px;}
.y11f7_c00000{bottom:959.880450px;}
.y6c1_c00000{bottom:959.970450px;}
.y1ada_c00000{bottom:960.330450px;}
.yd8f_c00000{bottom:960.420450px;}
.y14c9_c00000{bottom:960.510450px;}
.y1c2e_c00000{bottom:960.600450px;}
.y1e3b_c00000{bottom:960.690450px;}
.yc76_c00000{bottom:960.780450px;}
.y76c_c00000{bottom:961.050450px;}
.y13a3_c00000{bottom:961.500450px;}
.ydad_c00000{bottom:961.590450px;}
.y1ca1_c00000{bottom:961.770450px;}
.y1433_c00000{bottom:962.040600px;}
.y1b4a_c00000{bottom:962.130450px;}
.yb7e_c00000{bottom:962.131395px;}
.y581_c00000{bottom:962.401125px;}
.y18ba_c00000{bottom:962.490468px;}
.y7f4_c00000{bottom:962.580450px;}
.y18ab_c00000{bottom:962.670450px;}
.y47c_c00000{bottom:962.760450px;}
.ye84_c00000{bottom:962.940450px;}
.yf5a_c00000{bottom:963.030450px;}
.y11c9_c00000{bottom:963.120450px;}
.y1152_c00000{bottom:963.120639px;}
.yfb0_c00000{bottom:963.120648px;}
.y1157_c00000{bottom:963.300999px;}
.yfc1_c00000{bottom:963.301008px;}
.y9d1_c00000{bottom:963.480450px;}
.y214f_c00000{bottom:963.750450px;}
.yffd_c00000{bottom:963.840459px;}
.y19d6_c00000{bottom:963.841485px;}
.yf32_c00000{bottom:964.110450px;}
.y98c_c00000{bottom:964.111575px;}
.yc9_c00000{bottom:964.200450px;}
.y1fbe_c00000{bottom:964.291575px;}
.y361_c00000{bottom:964.560450px;}
.y1afa_c00000{bottom:964.830450px;}
.y816_c00000{bottom:965.010450px;}
.y1916_c00000{bottom:965.012250px;}
.y1921_c00000{bottom:965.015544px;}
.y277_c00000{bottom:965.370450px;}
.y1f14_c00000{bottom:965.460450px;}
.y1a44_c00000{bottom:965.550450px;}
.y1788_c00000{bottom:965.550630px;}
.y16cc_c00000{bottom:965.550999px;}
.y1844_c00000{bottom:965.640459px;}
.y185c_c00000{bottom:965.641962px;}
.y1871_c00000{bottom:965.643465px;}
.y1882_c00000{bottom:965.644968px;}
.y1d6_c00000{bottom:965.730450px;}
.yc3c_c00000{bottom:965.820450px;}
.y383_c00000{bottom:966.450450px;}
.y11cc_c00000{bottom:966.540600px;}
.y120e_c00000{bottom:966.810450px;}
.y1c4e_c00000{bottom:966.989487px;}
.y16c_c00000{bottom:966.990450px;}
.y1fee_c00000{bottom:966.990720px;}
.y10a7_c00000{bottom:967.260450px;}
.y10b5_c00000{bottom:967.440450px;}
.y18f5_c00000{bottom:967.530540px;}
.yd17_c00000{bottom:967.710450px;}
.y84f_c00000{bottom:967.890450px;}
.y1be3_c00000{bottom:967.980450px;}
.y20d5_c00000{bottom:968.070450px;}
.y5f_c00000{bottom:968.072250px;}
.y422_c00000{bottom:968.250450px;}
.y1c6b_c00000{bottom:968.250639px;}
.y1a58_c00000{bottom:969.060450px;}
.y17f2_c00000{bottom:969.061485px;}
.y17da_c00000{bottom:969.061737px;}
.y5f0_c00000{bottom:969.240450px;}
.y614_c00000{bottom:969.240720px;}
.y66f_c00000{bottom:969.242583px;}
.yb9c_c00000{bottom:969.420450px;}
.y1ee6_c00000{bottom:969.420459px;}
.y191_c00000{bottom:969.600450px;}
.y2061_c00000{bottom:969.690729px;}
.ye9d_c00000{bottom:969.870450px;}
.y322_c00000{bottom:969.960450px;}
.y1501_c00000{bottom:970.050450px;}
.y1734_c00000{bottom:970.140450px;}
.y1656_c00000{bottom:970.230450px;}
.y204c_c00000{bottom:970.410450px;}
.y446_c00000{bottom:970.770450px;}
.ybaf_c00000{bottom:970.771305px;}
.y1be5_c00000{bottom:970.950450px;}
.yd2f_c00000{bottom:971.130450px;}
.ydcd_c00000{bottom:971.220450px;}
.y1acd_c00000{bottom:971.400450px;}
.yf74_c00000{bottom:971.580450px;}
.y248_c00000{bottom:971.670450px;}
.y7c3_c00000{bottom:971.940450px;}
.y15ca_c00000{bottom:972.120450px;}
.y12ee_c00000{bottom:972.390450px;}
.y1335_c00000{bottom:972.390459px;}
.y1aa1_c00000{bottom:972.480450px;}
.y8b9_c00000{bottom:972.930450px;}
.y2089_c00000{bottom:973.020450px;}
.y5a1_c00000{bottom:973.110450px;}
.y1624_c00000{bottom:973.200450px;}
.yd76_c00000{bottom:973.290450px;}
.y141_c00000{bottom:973.470450px;}
.y5bb_c00000{bottom:973.650450px;}
.y740_c00000{bottom:973.920450px;}
.y1e91_c00000{bottom:973.920459px;}
.y3f_c00000{bottom:974.101197px;}
.yc51_c00000{bottom:974.101485px;}
.y1bb9_c00000{bottom:974.190450px;}
.y19b6_c00000{bottom:974.191485px;}
.ycf1_c00000{bottom:974.370450px;}
.y82a_c00000{bottom:974.460450px;}
.y97e_c00000{bottom:974.462340px;}
.ybf3_c00000{bottom:974.550450px;}
.y1984_c00000{bottom:974.640450px;}
.y20aa_c00000{bottom:974.910450px;}
.y1a2e_c00000{bottom:975.090450px;}
.yf02_c00000{bottom:975.180450px;}
.y4a1_c00000{bottom:975.270450px;}
.y20b6_c00000{bottom:975.360450px;}
.y1cf6_c00000{bottom:975.540600px;}
.y3c4_c00000{bottom:975.900450px;}
.y1ddb_c00000{bottom:975.900630px;}
.yb5d_c00000{bottom:975.901575px;}
.y21c6_c00000{bottom:975.990450px;}
.y9c8_c00000{bottom:976.080450px;}
.yc3b_c00000{bottom:976.170450px;}
.y921_c00000{bottom:976.170540px;}
.y912_c00000{bottom:976.260450px;}
.y46d_c00000{bottom:976.530450px;}
.y112_c00000{bottom:977.070450px;}
.yae1_c00000{bottom:977.160450px;}
.y19e6_c00000{bottom:977.610450px;}
.yf59_c00000{bottom:977.611665px;}
.y4f1_c00000{bottom:977.880450px;}
.y1e3a_c00000{bottom:977.970450px;}
.y2e0_c00000{bottom:978.150450px;}
.y801_c00000{bottom:978.240450px;}
.ye1f_c00000{bottom:978.510450px;}
.yb1b_c00000{bottom:978.600630px;}
.y156c_c00000{bottom:978.870450px;}
.ydf2_c00000{bottom:979.230450px;}
.y1430_c00000{bottom:979.320450px;}
.yd8e_c00000{bottom:979.410450px;}
.y1c2d_c00000{bottom:979.590450px;}
.y815_c00000{bottom:979.590720px;}
.y1949_c00000{bottom:979.770450px;}
.y18b9_c00000{bottom:979.770459px;}
.y1151_c00000{bottom:980.310450px;}
.yfaf_c00000{bottom:980.310459px;}
.y214e_c00000{bottom:980.400450px;}
.y1156_c00000{bottom:980.490810px;}
.yffc_c00000{bottom:981.120450px;}
.yb7d_c00000{bottom:981.121305px;}
.y580_c00000{bottom:981.300450px;}
.y181d_c00000{bottom:981.480450px;}
.y382_c00000{bottom:981.480855px;}
.ybe7_c00000{bottom:981.659775px;}
.y14c8_c00000{bottom:981.930450px;}
.y11cb_c00000{bottom:982.020450px;}
.y16fa_c00000{bottom:982.560459px;}
.y16cb_c00000{bottom:982.740819px;}
.y421_c00000{bottom:982.830450px;}
.y19d5_c00000{bottom:982.831395px;}
.y1843_c00000{bottom:982.920450px;}
.y185b_c00000{bottom:982.921953px;}
.y1870_c00000{bottom:982.923456px;}
.y1881_c00000{bottom:982.924959px;}
.y1122_c00000{bottom:983.010450px;}
.y98b_c00000{bottom:983.101485px;}
.y1126_c00000{bottom:983.190450px;}
.y1fbd_c00000{bottom:983.281485px;}
.y4ca_c00000{bottom:983.460450px;}
.y360_c00000{bottom:983.550450px;}
.ycb7_c00000{bottom:983.640450px;}
.y1af9_c00000{bottom:983.820450px;}
.y1500_c00000{bottom:983.910450px;}
.y1915_c00000{bottom:984.002160px;}
.y1920_c00000{bottom:984.005454px;}
.yc0b_c00000{bottom:984.090450px;}
.ya49_c00000{bottom:984.270450px;}
.ydac_c00000{bottom:984.450450px;}
.y1787_c00000{bottom:984.540540px;}
.y10a6_c00000{bottom:984.540600px;}
.y10b4_c00000{bottom:984.720450px;}
.y1655_c00000{bottom:984.810450px;}
.yee_c00000{bottom:984.900450px;}
.y1c6a_c00000{bottom:985.440450px;}
.ye67_c00000{bottom:985.710450px;}
.y1fed_c00000{bottom:985.980630px;}
.y1b5d_c00000{bottom:986.340450px;}
.y18f4_c00000{bottom:986.520450px;}
.y1ee5_c00000{bottom:986.700450px;}
.y69b_c00000{bottom:986.880450px;}
.y86f_c00000{bottom:987.060450px;}
.yc75_c00000{bottom:987.240450px;}
.y1674_c00000{bottom:987.690450px;}
.y1623_c00000{bottom:987.780450px;}
.y1bc2_c00000{bottom:987.870450px;}
.y13c5_c00000{bottom:987.960450px;}
.y17f1_c00000{bottom:987.960810px;}
.y17d9_c00000{bottom:987.961062px;}
.y13a2_c00000{bottom:988.140450px;}
.y5ef_c00000{bottom:988.230450px;}
.y613_c00000{bottom:988.230630px;}
.y66e_c00000{bottom:988.232493px;}
.ydf1_c00000{bottom:988.320450px;}
.y170d_c00000{bottom:988.410450px;}
.y9af_c00000{bottom:988.590450px;}
.y1c4d_c00000{bottom:988.769415px;}
.y1be1_c00000{bottom:988.770450px;}
.y14c7_c00000{bottom:988.860450px;}
.y1be2_c00000{bottom:988.950450px;}
.y276_c00000{bottom:989.130450px;}
.y1d5_c00000{bottom:989.490450px;}
.y12f5_c00000{bottom:989.670243px;}
.y12ed_c00000{bottom:989.670450px;}
.y445_c00000{bottom:989.760450px;}
.ybae_c00000{bottom:989.761215px;}
.y1a2d_c00000{bottom:989.762556px;}
.ya6_c00000{bottom:990.120450px;}
.y204b_c00000{bottom:990.210450px;}
.y1538_c00000{bottom:990.390450px;}
.y1785_c00000{bottom:990.570450px;}
.y32c_c00000{bottom:990.660450px;}
.y11f6_c00000{bottom:990.930450px;}
.ydcc_c00000{bottom:991.110450px;}
.y1e90_c00000{bottom:991.200450px;}
.y21a9_c00000{bottom:991.290600px;}
.y9c7_c00000{bottom:991.650450px;}
.y16b_c00000{bottom:992.100450px;}
.y5e_c00000{bottom:992.191944px;}
.yf73_c00000{bottom:992.280450px;}
.y247_c00000{bottom:992.370450px;}
.y4a0_c00000{bottom:992.550450px;}
.y1aa0_c00000{bottom:992.640450px;}
.y10ef_c00000{bottom:992.820450px;}
.y15c9_c00000{bottom:993.000450px;}
.yc50_c00000{bottom:993.091395px;}
.y1bb8_c00000{bottom:993.180450px;}
.ye1e_c00000{bottom:993.180972px;}
.y19b5_c00000{bottom:993.181395px;}
.y1605_c00000{bottom:993.270450px;}
.y97d_c00000{bottom:993.452250px;}
.y7c2_c00000{bottom:993.720450px;}
.y47b_c00000{bottom:993.810450px;}
.y138b_c00000{bottom:993.990450px;}
.y1739_c00000{bottom:994.260450px;}
.y153c_c00000{bottom:994.350450px;}
.yae0_c00000{bottom:994.440450px;}
.y5a0_c00000{bottom:994.620450px;}
.y190_c00000{bottom:994.710450px;}
.y1983_c00000{bottom:994.800450px;}
.y3c3_c00000{bottom:994.890450px;}
.y1dda_c00000{bottom:994.890540px;}
.yb5c_c00000{bottom:994.891485px;}
.y129e_c00000{bottom:995.070450px;}
.y920_c00000{bottom:995.160450px;}
.yc8_c00000{bottom:995.250450px;}
.y4f0_c00000{bottom:995.340450px;}
.ycf0_c00000{bottom:996.060450px;}
.y111_c00000{bottom:996.240450px;}
.y142f_c00000{bottom:996.600450px;}
.yf58_c00000{bottom:996.601575px;}
.y227_c00000{bottom:997.050450px;}
.y140_c00000{bottom:997.230450px;}
.y21c5_c00000{bottom:997.320450px;}
.y19e5_c00000{bottom:997.500450px;}
.y1155_c00000{bottom:997.590441px;}
.yfae_c00000{bottom:997.590450px;}
.yb1a_c00000{bottom:997.590540px;}
.y3e_c00000{bottom:998.220891px;}
.y1004_c00000{bottom:998.310171px;}
.yd8d_c00000{bottom:998.310450px;}
.y14ff_c00000{bottom:998.400450px;}
.y814_c00000{bottom:998.580630px;}
.y1ca0_c00000{bottom:998.670450px;}
.yd16_c00000{bottom:998.760450px;}
.y5ba_c00000{bottom:998.940450px;}
.y20d4_c00000{bottom:999.120450px;}
.y1654_c00000{bottom:999.300450px;}
.y1c2a_c00000{bottom:999.480450px;}
.y8b6_c00000{bottom:999.570450px;}
.ya6a_c00000{bottom:999.570729px;}
.y16f9_c00000{bottom:999.840459px;}
.y16ca_c00000{bottom:1000.020819px;}
.y1a57_c00000{bottom:1000.110450px;}
.yb7c_c00000{bottom:1000.111215px;}
.y1121_c00000{bottom:1000.290450px;}
.y46c_c00000{bottom:1000.380450px;}
.yb9b_c00000{bottom:1000.470450px;}
.ybe6_c00000{bottom:1000.649685px;}
.y2162_c00000{bottom:1000.740450px;}
.ye9c_c00000{bottom:1000.920450px;}
.y1586_c00000{bottom:1001.010450px;}
.y1418_c00000{bottom:1001.010729px;}
.y420_c00000{bottom:1001.820450px;}
.y381_c00000{bottom:1001.821305px;}
.y98a_c00000{bottom:1002.000810px;}
.yd2e_c00000{bottom:1002.180450px;}
.y1fbc_c00000{bottom:1002.271395px;}
.y1622_c00000{bottom:1002.360450px;}
.y35f_c00000{bottom:1002.450450px;}
.y1af8_c00000{bottom:1002.810450px;}
.y1c08_c00000{bottom:1002.900450px;}
.y1c69_c00000{bottom:1002.900540px;}
.y1914_c00000{bottom:1002.992070px;}
.y191f_c00000{bottom:1002.995364px;}
.y1f13_c00000{bottom:1003.440450px;}
.y1f27_c00000{bottom:1003.530450px;}
.ya48_c00000{bottom:1004.160450px;}
.y95_c00000{bottom:1004.251791px;}
.yd75_c00000{bottom:1004.340450px;}
.y1ee4_c00000{bottom:1004.520450px;}
.y800_c00000{bottom:1004.700450px;}
.y1fec_c00000{bottom:1004.970540px;}
.y13c4_c00000{bottom:1005.240450px;}
.y179a_c00000{bottom:1005.420450px;}
.y1ebc_c00000{bottom:1005.420666px;}
.ybf2_c00000{bottom:1005.600450px;}
.y1be0_c00000{bottom:1005.960450px;}
.y1c09_c00000{bottom:1006.140450px;}
.y57f_c00000{bottom:1006.410450px;}
.y12f4_c00000{bottom:1006.769874px;}
.y12ec_c00000{bottom:1006.950450px;}
.y17f0_c00000{bottom:1006.950720px;}
.y17d8_c00000{bottom:1006.950972px;}
.y4ef_c00000{bottom:1007.220450px;}
.y612_c00000{bottom:1007.220540px;}
.y66d_c00000{bottom:1007.222403px;}
.y129d_c00000{bottom:1007.310450px;}
.ydf0_c00000{bottom:1007.490450px;}
.y1f33_c00000{bottom:1007.580450px;}
.y1733_c00000{bottom:1008.120450px;}
.y444_c00000{bottom:1008.660450px;}
.ybad_c00000{bottom:1008.660540px;}
.y1a2c_c00000{bottom:1008.661881px;}
.y110_c00000{bottom:1008.840450px;}
.y1673_c00000{bottom:1009.020450px;}
.yd5b_c00000{bottom:1009.110450px;}
.ya87_c00000{bottom:1009.290450px;}
.y49f_c00000{bottom:1009.740450px;}
.y89d_c00000{bottom:1009.830450px;}
.ya9b_c00000{bottom:1009.920450px;}
.y204a_c00000{bottom:1010.100450px;}
.y202b_c00000{bottom:1010.190450px;}
.y14c6_c00000{bottom:1010.280450px;}
.y105f_c00000{bottom:1010.370450px;}
.y1c4c_c00000{bottom:1010.639928px;}
.y275_c00000{bottom:1010.640450px;}
.y1948_c00000{bottom:1010.820450px;}
.ydcb_c00000{bottom:1010.910450px;}
.y120d_c00000{bottom:1011.090450px;}
.y1842_c00000{bottom:1011.540450px;}
.y14c0_c00000{bottom:1011.630450px;}
.yadf_c00000{bottom:1011.720450px;}
.yc4f_c00000{bottom:1012.081305px;}
.y1bb7_c00000{bottom:1012.170450px;}
.ye1d_c00000{bottom:1012.170882px;}
.y19b4_c00000{bottom:1012.171305px;}
.y14fe_c00000{bottom:1012.260450px;}
.y97c_c00000{bottom:1012.351575px;}
.y1e39_c00000{bottom:1012.440450px;}
.y181c_c00000{bottom:1012.530450px;}
.y2181_c00000{bottom:1012.710450px;}
.yf72_c00000{bottom:1012.980450px;}
.y246_c00000{bottom:1013.070450px;}
.y1738_c00000{bottom:1013.250450px;}
.y1d4_c00000{bottom:1013.340450px;}
.y13a1_c00000{bottom:1013.430450px;}
.y86e_c00000{bottom:1013.520450px;}
.y15c8_c00000{bottom:1013.700450px;}
.y1432_c00000{bottom:1013.790252px;}
.y142e_c00000{bottom:1013.790450px;}
.y3c2_c00000{bottom:1013.880450px;}
.yb5b_c00000{bottom:1013.881395px;}
.y211d_c00000{bottom:1013.970450px;}
.y4c9_c00000{bottom:1014.510450px;}
.ycb6_c00000{bottom:1014.690450px;}
.yfad_c00000{bottom:1014.870450px;}
.y2df_c00000{bottom:1015.050450px;}
.yc0a_c00000{bottom:1015.140450px;}
.y1150_c00000{bottom:1015.590450px;}
.yf57_c00000{bottom:1015.591485px;}
.yd40_c00000{bottom:1015.770450px;}
.yed_c00000{bottom:1015.950450px;}
.yffb_c00000{bottom:1016.310450px;}
.y5d_c00000{bottom:1016.401809px;}
.yb19_c00000{bottom:1016.580450px;}
.y1621_c00000{bottom:1016.850450px;}
.y16c9_c00000{bottom:1017.120639px;}
.y16a_c00000{bottom:1017.210450px;}
.yd8c_c00000{bottom:1017.300450px;}
.y16ec_c00000{bottom:1017.300999px;}
.y1b5c_c00000{bottom:1017.390450px;}
.y1120_c00000{bottom:1017.570450px;}
.y813_c00000{bottom:1017.570540px;}
.y2198_c00000{bottom:1017.570630px;}
.y1ad9_c00000{bottom:1017.660450px;}
.y69a_c00000{bottom:1017.930450px;}
.y1c9f_c00000{bottom:1018.200459px;}
.y226_c00000{bottom:1018.650549px;}
.y10a5_c00000{bottom:1019.010450px;}
.yb7b_c00000{bottom:1019.010540px;}
.y21c4_c00000{bottom:1019.100450px;}
.y1d94_c00000{bottom:1019.460450px;}
.y9ae_c00000{bottom:1019.640450px;}
.y18f_c00000{bottom:1019.820450px;}
.y568_c00000{bottom:1020.270450px;}
.ya0e_c00000{bottom:1020.540450px;}
.y41f_c00000{bottom:1020.810450px;}
.y380_c00000{bottom:1020.811215px;}
.y989_c00000{bottom:1020.990720px;}
.y13f_c00000{bottom:1021.080450px;}
.ya5_c00000{bottom:1021.170450px;}
.y1fbb_c00000{bottom:1021.261305px;}
.y1e32_c00000{bottom:1021.440450px;}
.y1786_c00000{bottom:1021.620450px;}
.y2cb_c00000{bottom:1021.710450px;}
.y1c07_c00000{bottom:1021.890450px;}
.y1913_c00000{bottom:1021.891395px;}
.y191e_c00000{bottom:1021.894689px;}
.y11f5_c00000{bottom:1021.980450px;}
.y1f12_c00000{bottom:1022.340450px;}
.y3d_c00000{bottom:1022.430756px;}
.y1f26_c00000{bottom:1022.520450px;}
.y1ebb_c00000{bottom:1022.700657px;}
.y76b_c00000{bottom:1023.060450px;}
.y1cf5_c00000{bottom:1023.150450px;}
.y13c3_c00000{bottom:1023.240450px;}
.y13c2_c00000{bottom:1023.420450px;}
.y1feb_c00000{bottom:1023.960450px;}
.y14c4_c00000{bottom:1024.050450px;}
.y12f3_c00000{bottom:1024.140045px;}
.y46b_c00000{bottom:1024.140450px;}
.y105c_c00000{bottom:1024.230450px;}
.y159d_c00000{bottom:1024.320450px;}
.y18f3_c00000{bottom:1024.410450px;}
.y89c_c00000{bottom:1024.410810px;}
.y8b5_c00000{bottom:1024.680450px;}
.y47a_c00000{bottom:1024.860450px;}
.y138a_c00000{bottom:1024.950450px;}
.y1d2f_c00000{bottom:1025.040450px;}
.y1acc_c00000{bottom:1025.580450px;}
.y105e_c00000{bottom:1025.940450px;}
.y17ef_c00000{bottom:1025.940630px;}
.y17d7_c00000{bottom:1025.940882px;}
.y2161_c00000{bottom:1026.120450px;}
.y4ee_c00000{bottom:1026.210450px;}
.y66c_c00000{bottom:1026.212313px;}
.yc7_c00000{bottom:1026.300450px;}
.ydef_c00000{bottom:1026.570450px;}
.y14fd_c00000{bottom:1026.750450px;}
.y49e_c00000{bottom:1027.020450px;}
.y2121_c00000{bottom:1027.110450px;}
.y1e8f_c00000{bottom:1027.200657px;}
.y443_c00000{bottom:1027.650450px;}
.y129c_c00000{bottom:1027.651575px;}
.y1a2b_c00000{bottom:1027.651791px;}
.y1f49_c00000{bottom:1028.010450px;}
.y1e38_c00000{bottom:1028.190450px;}
.y1653_c00000{bottom:1028.460450px;}
.ybe5_c00000{bottom:1028.640450px;}
.y274_c00000{bottom:1028.820450px;}
.yade_c00000{bottom:1028.910450px;}
.y1f71_c00000{bottom:1029.270450px;}
.y1e3c_c00000{bottom:1029.720450px;}
.yd15_c00000{bottom:1029.810450px;}
.y2049_c00000{bottom:1029.900450px;}
.y5b9_c00000{bottom:1029.990450px;}
.y1672_c00000{bottom:1030.260450px;}
.y10f_c00000{bottom:1030.350450px;}
.ya55_c00000{bottom:1030.620450px;}
.ydca_c00000{bottom:1030.800450px;}
.y86d_c00000{bottom:1030.889793px;}
.y21a8_c00000{bottom:1030.980450px;}
.y1431_c00000{bottom:1031.070243px;}
.y142d_c00000{bottom:1031.070450px;}
.yc4e_c00000{bottom:1031.071215px;}
.y1737_c00000{bottom:1031.160450px;}
.ye1c_c00000{bottom:1031.160792px;}
.y19b3_c00000{bottom:1031.161215px;}
.y97b_c00000{bottom:1031.341485px;}
.y1620_c00000{bottom:1031.430450px;}
.yb9a_c00000{bottom:1031.520450px;}
.y57e_c00000{bottom:1031.700450px;}
.y189a_c00000{bottom:1031.790729px;}
.ye9b_c00000{bottom:1031.970450px;}
.y35_c00000{bottom:1032.000000px;}
.y1da2_c00000{bottom:1032.060450px;}
.y1799_c00000{bottom:1032.060729px;}
.y35e_c00000{bottom:1032.150450px;}
.y14bf_c00000{bottom:1032.330450px;}
.y1c4b_c00000{bottom:1032.419856px;}
.y3c1_c00000{bottom:1032.870450px;}
.yb5a_c00000{bottom:1032.871305px;}
.y18b8_c00000{bottom:1033.050657px;}
.yd2d_c00000{bottom:1033.230450px;}
.yf71_c00000{bottom:1033.680450px;}
.y11a5_c00000{bottom:1034.220450px;}
.y16c8_c00000{bottom:1034.310459px;}
.y114f_c00000{bottom:1034.400450px;}
.y225_c00000{bottom:1034.490450px;}
.y16eb_c00000{bottom:1034.490819px;}
.yf56_c00000{bottom:1034.581395px;}
.y2180_c00000{bottom:1034.670450px;}
.y2de_c00000{bottom:1034.940450px;}
.ya9a_c00000{bottom:1035.120450px;}
.ya47_c00000{bottom:1035.210450px;}
.yd74_c00000{bottom:1035.300450px;}
.ydab_c00000{bottom:1035.390450px;}
.y1c9e_c00000{bottom:1035.480450px;}
.y111f_c00000{bottom:1035.570450px;}
.y7c1_c00000{bottom:1035.660450px;}
.ya86_c00000{bottom:1035.750450px;}
.ybf1_c00000{bottom:1036.470450px;}
.y812_c00000{bottom:1036.560450px;}
.yd5a_c00000{bottom:1036.650450px;}
.y202a_c00000{bottom:1036.830450px;}
.y10a4_c00000{bottom:1037.010450px;}
.y19e4_c00000{bottom:1037.190450px;}
.y14c3_c00000{bottom:1037.910450px;}
.yb7a_c00000{bottom:1038.000450px;}
.y1d3_c00000{bottom:1038.450450px;}
.y41e_c00000{bottom:1039.710450px;}
.y37f_c00000{bottom:1039.710540px;}
.y1d07_c00000{bottom:1039.890450px;}
.y988_c00000{bottom:1039.980630px;}
.y1eba_c00000{bottom:1039.980648px;}
.y1fba_c00000{bottom:1040.160630px;}
.y13c1_c00000{bottom:1040.520450px;}
.y5c_c00000{bottom:1040.521503px;}
.y14fc_c00000{bottom:1040.610450px;}
.y1af7_c00000{bottom:1040.700450px;}
.y1912_c00000{bottom:1040.971890px;}
.y191d_c00000{bottom:1040.975184px;}
.y2c_c00000{bottom:1041.000000px;}
.y1c68_c00000{bottom:1041.240099px;}
.y1f11_c00000{bottom:1041.330450px;}
.y12f2_c00000{bottom:1041.420036px;}
.y105d_c00000{bottom:1041.420450px;}
.y1334_c00000{bottom:1041.421548px;}
.yc09_c00000{bottom:1041.600450px;}
.y1947_c00000{bottom:1041.870450px;}
.y169_c00000{bottom:1042.320450px;}
.y1231_c00000{bottom:1042.410450px;}
.ybcb_c00000{bottom:1042.590450px;}
.y206b_c00000{bottom:1042.680450px;}
.y1652_c00000{bottom:1042.950450px;}
.y89b_c00000{bottom:1043.400720px;}
.y181b_c00000{bottom:1043.580450px;}
.y1732_c00000{bottom:1043.760450px;}
.y49d_c00000{bottom:1044.300450px;}
.y13a0_c00000{bottom:1044.480450px;}
.y1e8e_c00000{bottom:1044.480648px;}
.y13e_c00000{bottom:1044.840450px;}
.y1bc1_c00000{bottom:1044.930450px;}
.y17ee_c00000{bottom:1044.930540px;}
.y17d6_c00000{bottom:1044.930792px;}
.y1736_c00000{bottom:1045.020450px;}
.y4ed_c00000{bottom:1045.110450px;}
.y66b_c00000{bottom:1045.111638px;}
.y4c8_c00000{bottom:1045.560450px;}
.ycb5_c00000{bottom:1045.740450px;}
.y161f_c00000{bottom:1046.010450px;}
.yadd_c00000{bottom:1046.190450px;}
.ybac_c00000{bottom:1046.640450px;}
.y129b_c00000{bottom:1046.641485px;}
.y1a2a_c00000{bottom:1046.641701px;}
.y1cf4_c00000{bottom:1046.730450px;}
.y2120_c00000{bottom:1046.820450px;}
.yec_c00000{bottom:1046.910450px;}
.y299_c00000{bottom:1047.000450px;}
.ybe4_c00000{bottom:1047.629595px;}
.y20b5_c00000{bottom:1047.810450px;}
.y46a_c00000{bottom:1047.990450px;}
.y1f48_c00000{bottom:1048.080450px;}
.y1e37_c00000{bottom:1048.170450px;}
.y1f32_c00000{bottom:1048.350450px;}
.y10e_c00000{bottom:1048.440450px;}
.y142b_c00000{bottom:1048.530450px;}
.y699_c00000{bottom:1048.980450px;}
.y7c0_c00000{bottom:1049.430450px;}
.y76a_c00000{bottom:1049.520450px;}
.y1f70_c00000{bottom:1049.790450px;}
.ye1b_c00000{bottom:1050.060117px;}
.y1bb6_c00000{bottom:1050.060450px;}
.y19b2_c00000{bottom:1050.060540px;}
.yc4d_c00000{bottom:1050.061125px;}
.y18b7_c00000{bottom:1050.240468px;}
.y97a_c00000{bottom:1050.331395px;}
.y1d93_c00000{bottom:1050.510450px;}
.ydc9_c00000{bottom:1050.600450px;}
.y9ad_c00000{bottom:1050.690450px;}
.y21a7_c00000{bottom:1050.780450px;}
.yc84_c00000{bottom:1050.960450px;}
.y5ee_c00000{bottom:1051.320450px;}
.y16c7_c00000{bottom:1051.590459px;}
.yfac_c00000{bottom:1051.680450px;}
.y16ea_c00000{bottom:1051.770819px;}
.yb59_c00000{bottom:1051.861215px;}
.ya4_c00000{bottom:1052.220450px;}
.y1899_c00000{bottom:1052.490450px;}
.y224_c00000{bottom:1052.580450px;}
.y1841_c00000{bottom:1052.670450px;}
.y86c_c00000{bottom:1052.760306px;}
.y442_c00000{bottom:1052.760450px;}
.y1731_c00000{bottom:1052.940450px;}
.y14be_c00000{bottom:1053.030450px;}
.y2197_c00000{bottom:1053.120450px;}
.yf55_c00000{bottom:1053.571305px;}
.yd14_c00000{bottom:1053.660450px;}
.y5b8_c00000{bottom:1053.930450px;}
.y1c4a_c00000{bottom:1054.199784px;}
.y2029_c00000{bottom:1054.200450px;}
.yf70_c00000{bottom:1054.380450px;}
.y2dd_c00000{bottom:1054.740450px;}
.y114e_c00000{bottom:1055.100450px;}
.yd3f_c00000{bottom:1055.190450px;}
.y3c0_c00000{bottom:1055.370450px;}
.y1d2e_c00000{bottom:1055.820450px;}
.y479_c00000{bottom:1055.910450px;}
.y1d54_c00000{bottom:1056.000450px;}
.y14f8_c00000{bottom:1056.450450px;}
.yace_c00000{bottom:1056.630450px;}
.y811_c00000{bottom:1056.720450px;}
.y105b_c00000{bottom:1056.990450px;}
.y321_c00000{bottom:1057.170450px;}
.y1eb9_c00000{bottom:1057.170459px;}
.yc6_c00000{bottom:1057.350450px;}
.y1651_c00000{bottom:1057.530450px;}
.y1ad8_c00000{bottom:1058.070450px;}
.yb79_c00000{bottom:1058.160450px;}
.y12f1_c00000{bottom:1058.519667px;}
.y13c0_c00000{bottom:1058.520090px;}
.y12eb_c00000{bottom:1058.520450px;}
.y1333_c00000{bottom:1058.521179px;}
.y35d_c00000{bottom:1058.610450px;}
.y37e_c00000{bottom:1058.700450px;}
.y987_c00000{bottom:1058.970540px;}
.y1fb9_c00000{bottom:1059.150540px;}
.y1af6_c00000{bottom:1059.690450px;}
.y1735_c00000{bottom:1059.870450px;}
.y1911_c00000{bottom:1059.961800px;}
.y191c_c00000{bottom:1059.965094px;}
.y11f4_c00000{bottom:1060.050450px;}
.y156b_c00000{bottom:1060.410450px;}
.y161e_c00000{bottom:1060.500450px;}
.y7ff_c00000{bottom:1061.040450px;}
.y1f10_c00000{bottom:1061.310450px;}
.y49c_c00000{bottom:1061.490450px;}
.ya0d_c00000{bottom:1061.581314px;}
.y1e8d_c00000{bottom:1061.670459px;}
.ybca_c00000{bottom:1062.390450px;}
.y89a_c00000{bottom:1062.390630px;}
.yb99_c00000{bottom:1062.570450px;}
.y57d_c00000{bottom:1062.750450px;}
.ybf0_c00000{bottom:1062.840729px;}
.yb18_c00000{bottom:1063.110729px;}
.y142a_c00000{bottom:1063.380450px;}
.y1fea_c00000{bottom:1063.380630px;}
.yadc_c00000{bottom:1063.470450px;}
.y1d2_c00000{bottom:1063.560450px;}
.y1bc0_c00000{bottom:1063.830450px;}
.y17ed_c00000{bottom:1063.920450px;}
.y17d5_c00000{bottom:1063.920702px;}
.y4ec_c00000{bottom:1064.100450px;}
.y66a_c00000{bottom:1064.101548px;}
.y5b_c00000{bottom:1064.641197px;}
.ydee_c00000{bottom:1064.820450px;}
.y214d_c00000{bottom:1065.180450px;}
.y14c2_c00000{bottom:1065.450450px;}
.yc08_c00000{bottom:1065.540720px;}
.yc3a_c00000{bottom:1065.630450px;}
.yc83_c00000{bottom:1065.631395px;}
.y1a29_c00000{bottom:1065.631611px;}
.ya99_c00000{bottom:1066.170450px;}
.ydaa_c00000{bottom:1066.350450px;}
.ybe3_c00000{bottom:1066.619505px;}
.y168_c00000{bottom:1067.430450px;}
.y18b6_c00000{bottom:1067.520459px;}
.ye66_c00000{bottom:1067.700450px;}
.y11f3_c00000{bottom:1068.600450px;}
.y13d_c00000{bottom:1068.690450px;}
.y1e36_c00000{bottom:1068.870450px;}
.y16c6_c00000{bottom:1068.870639px;}
.yc4c_c00000{bottom:1068.960450px;}
.ye1a_c00000{bottom:1069.050027px;}
.y1d7b_c00000{bottom:1069.050450px;}
.y16e9_c00000{bottom:1069.050999px;}
.y979_c00000{bottom:1069.321305px;}
.y3c_c00000{bottom:1069.500450px;}
.y2048_c00000{bottom:1069.590450px;}
.y1b5b_c00000{bottom:1069.950450px;}
.y10d_c00000{bottom:1070.040450px;}
.y1f31_c00000{bottom:1070.220450px;}
.ydc8_c00000{bottom:1070.400450px;}
.y21a6_c00000{bottom:1070.580450px;}
.yb58_c00000{bottom:1070.760540px;}
.y211f_c00000{bottom:1070.940450px;}
.y469_c00000{bottom:1071.750450px;}
.y1730_c00000{bottom:1071.930450px;}
.y1650_c00000{bottom:1072.110450px;}
.yfab_c00000{bottom:1072.380450px;}
.yf54_c00000{bottom:1072.561215px;}
.y1c06_c00000{bottom:1072.650450px;}
.y1946_c00000{bottom:1072.920450px;}
.y14c5_c00000{bottom:1073.730450px;}
.y273_c00000{bottom:1074.180450px;}
.y1eb8_c00000{bottom:1074.450450px;}
.y86b_c00000{bottom:1074.540234px;}
.y2dc_c00000{bottom:1074.540450px;}
.y105a_c00000{bottom:1074.990450px;}
.y111e_c00000{bottom:1075.080450px;}
.y139f_c00000{bottom:1075.440450px;}
.yf6f_c00000{bottom:1075.620450px;}
.y13bf_c00000{bottom:1075.710450px;}
.y1332_c00000{bottom:1075.710990px;}
.y114d_c00000{bottom:1075.800450px;}
.y132f_c00000{bottom:1075.890450px;}
.y1c49_c00000{bottom:1076.070297px;}
.y35c_c00000{bottom:1076.070450px;}
.y12ea_c00000{bottom:1076.160450px;}
.y223_c00000{bottom:1076.430450px;}
.y9fc_c00000{bottom:1076.520450px;}
.y4c7_c00000{bottom:1076.610450px;}
.y94_c00000{bottom:1076.701044px;}
.ycb4_c00000{bottom:1076.790450px;}
.y14f7_c00000{bottom:1077.150450px;}
.y298_c00000{bottom:1077.960450px;}
.yeb_c00000{bottom:1078.050450px;}
.y1fb8_c00000{bottom:1078.140450px;}
.y1af5_c00000{bottom:1078.680450px;}
.y49b_c00000{bottom:1078.770450px;}
.yc2e_c00000{bottom:1078.860450px;}
.y1910_c00000{bottom:1078.861125px;}
.y191b_c00000{bottom:1078.864419px;}
.y1e8c_c00000{bottom:1078.950450px;}
.y14c1_c00000{bottom:1079.310450px;}
.y1671_c00000{bottom:1079.940450px;}
.y698_c00000{bottom:1080.030450px;}
.ya0c_c00000{bottom:1080.480639px;}
.yadb_c00000{bottom:1080.660450px;}
.y899_c00000{bottom:1081.380540px;}
.y9ac_c00000{bottom:1081.740450px;}
.y478_c00000{bottom:1082.100450px;}
.y70f_c00000{bottom:1082.370450px;}
.y1fe9_c00000{bottom:1082.370540px;}
.y214c_c00000{bottom:1082.460450px;}
.y14fb_c00000{bottom:1082.730450px;}
.y1bbf_c00000{bottom:1082.910450px;}
.y17d4_c00000{bottom:1082.910612px;}
.y7bf_c00000{bottom:1083.090450px;}
.y4eb_c00000{bottom:1083.091458px;}
.ya3_c00000{bottom:1083.270450px;}
.y2ad_c00000{bottom:1083.540450px;}
.yd2c_c00000{bottom:1083.720450px;}
.yc5_c00000{bottom:1083.810450px;}
.yded_c00000{bottom:1083.990450px;}
.y142c_c00000{bottom:1084.080450px;}
.y1a9f_c00000{bottom:1084.620450px;}
.ybab_c00000{bottom:1084.620540px;}
.yc07_c00000{bottom:1084.621215px;}
.yc39_c00000{bottom:1084.621305px;}
.y1a28_c00000{bottom:1084.621521px;}
.y18b5_c00000{bottom:1084.800450px;}
.y7fe_c00000{bottom:1084.980450px;}
.y3_c00000{bottom:1086.000000px;}
.y16c5_c00000{bottom:1086.060459px;}
.yb98_c00000{bottom:1086.420450px;}
.y19b1_c00000{bottom:1086.510450px;}
.y164f_c00000{bottom:1086.600450px;}
.y6d7_c00000{bottom:1086.960450px;}
.ya98_c00000{bottom:1087.770450px;}
.ye19_c00000{bottom:1088.039937px;}
.y1d7a_c00000{bottom:1088.040450px;}
.y10c_c00000{bottom:1088.130450px;}
.y978_c00000{bottom:1088.311215px;}
.y11f2_c00000{bottom:1088.400450px;}
.y1d1_c00000{bottom:1088.580450px;}
.y3b_c00000{bottom:1088.851062px;}
.ye3b_c00000{bottom:1089.030450px;}
.y1f30_c00000{bottom:1089.120450px;}
.yc4b_c00000{bottom:1089.210450px;}
.yb57_c00000{bottom:1089.750450px;}
.y1bdf_c00000{bottom:1090.200450px;}
.ydc7_c00000{bottom:1090.290450px;}
.y1f6f_c00000{bottom:1091.010450px;}
.yf53_c00000{bottom:1091.460540px;}
.y1c05_c00000{bottom:1091.640450px;}
.y12e9_c00000{bottom:1091.730450px;}
.y14bd_c00000{bottom:1091.820450px;}
.ya85_c00000{bottom:1092.090450px;}
.y272_c00000{bottom:1092.270450px;}
.y13c_c00000{bottom:1092.450450px;}
.yfaa_c00000{bottom:1093.080450px;}
.y132e_c00000{bottom:1093.170450px;}
.y1331_c00000{bottom:1093.171341px;}
.y1c9d_c00000{bottom:1093.350450px;}
.y13be_c00000{bottom:1093.440450px;}
.y206a_c00000{bottom:1093.620450px;}
.y57c_c00000{bottom:1093.800450px;}
.y2047_c00000{bottom:1093.890729px;}
.y2196_c00000{bottom:1094.340450px;}
.y2db_c00000{bottom:1094.430450px;}
.ybe2_c00000{bottom:1094.610270px;}
.y217f_c00000{bottom:1094.880450px;}
.y468_c00000{bottom:1095.600450px;}
.y49a_c00000{bottom:1096.050450px;}
.y111d_c00000{bottom:1096.320450px;}
.y86a_c00000{bottom:1096.410747px;}
.y114c_c00000{bottom:1096.500450px;}
.y1c67_c00000{bottom:1096.770450px;}
.yf6e_c00000{bottom:1097.310450px;}
.y172f_c00000{bottom:1097.760450px;}
.y191a_c00000{bottom:1097.763744px;}
.y1c48_c00000{bottom:1097.850225px;}
.y35b_c00000{bottom:1097.850450px;}
.y222_c00000{bottom:1097.940450px;}
.y1af4_c00000{bottom:1098.030450px;}
.y14bc_c00000{bottom:1098.570450px;}
.yc2d_c00000{bottom:1098.750450px;}
.y214b_c00000{bottom:1100.280450px;}
.y898_c00000{bottom:1100.370450px;}
.y164e_c00000{bottom:1101.180450px;}
.y19e3_c00000{bottom:1101.180729px;}
.y1fe8_c00000{bottom:1101.360450px;}
.y17d3_c00000{bottom:1101.809937px;}
.y1bbe_c00000{bottom:1101.810450px;}
.y7be_c00000{bottom:1102.080450px;}
.y4ea_c00000{bottom:1102.081368px;}
.y18b4_c00000{bottom:1102.620450px;}
.y1f2f_c00000{bottom:1102.980450px;}
.ydec_c00000{bottom:1103.070450px;}
.y16c4_c00000{bottom:1103.340450px;}
.y1a9e_c00000{bottom:1103.610450px;}
.yc06_c00000{bottom:1103.611125px;}
.yc38_c00000{bottom:1103.611215px;}
.y1a27_c00000{bottom:1103.611431px;}
.y1945_c00000{bottom:1103.970450px;}
.y1429_c00000{bottom:1104.150450px;}
.y161d_c00000{bottom:1104.780450px;}
.y697_c00000{bottom:1106.490450px;}
.ye18_c00000{bottom:1107.029847px;}
.y12e8_c00000{bottom:1107.030450px;}
.y1c9c_c00000{bottom:1107.120450px;}
.y977_c00000{bottom:1107.210540px;}
.y477_c00000{bottom:1107.480450px;}
.y9fb_c00000{bottom:1107.570450px;}
.y4c6_c00000{bottom:1107.660450px;}
.ycb3_c00000{bottom:1107.840450px;}
.y11f1_c00000{bottom:1108.290450px;}
.ya0b_c00000{bottom:1108.830450px;}
.yea_c00000{bottom:1108.920450px;}
.ybc9_c00000{bottom:1109.010450px;}
.yc4_c00000{bottom:1109.100450px;}
.ya2_c00000{bottom:1109.730450px;}
.y132d_c00000{bottom:1110.270450px;}
.y1330_c00000{bottom:1110.270972px;}
.y14fa_c00000{bottom:1110.360450px;}
.yf52_c00000{bottom:1110.450450px;}
.y1bde_c00000{bottom:1110.630450px;}
.y1eb7_c00000{bottom:1110.900450px;}
.y1f6e_c00000{bottom:1112.250450px;}
.yada_c00000{bottom:1112.610450px;}
.ye3a_c00000{bottom:1112.881116px;}
.y3a_c00000{bottom:1112.970756px;}
.y1_c00000{bottom:1113.000000px;}
.y6d6_c00000{bottom:1113.150450px;}
.y57b_c00000{bottom:1113.330450px;}
.y703_c00000{bottom:1113.420450px;}
.y1d0_c00000{bottom:1113.690450px;}
.yfa9_c00000{bottom:1114.320450px;}
.y1059_c00000{bottom:1114.500450px;}
.y10b_c00000{bottom:1114.590450px;}
.y1e35_c00000{bottom:1114.770450px;}
.yb56_c00000{bottom:1114.860450px;}
.y1e8b_c00000{bottom:1115.400450px;}
.y164d_c00000{bottom:1115.760450px;}
.ya84_c00000{bottom:1116.030450px;}
.y18e_c00000{bottom:1116.120450px;}
.y13b_c00000{bottom:1116.300450px;}
.y2069_c00000{bottom:1117.290600px;}
.y1fb7_c00000{bottom:1117.470450px;}
.y111c_c00000{bottom:1117.830450px;}
.y7e8_c00000{bottom:1118.010450px;}
.y214a_c00000{bottom:1118.190450px;}
.y869_c00000{bottom:1118.190675px;}
.y14f6_c00000{bottom:1118.550450px;}
.y1af3_c00000{bottom:1118.730450px;}
.yd59_c00000{bottom:1119.270450px;}
.y467_c00000{bottom:1119.360450px;}
.y1230_c00000{bottom:1119.450450px;}
.y35a_c00000{bottom:1119.720450px;}
.y1c47_c00000{bottom:1119.720738px;}
.yad9_c00000{bottom:1120.260450px;}
.y499_c00000{bottom:1120.350450px;}
.y897_c00000{bottom:1120.530450px;}
.y16c3_c00000{bottom:1120.620450px;}
.y1bbd_c00000{bottom:1120.710450px;}
.y17d2_c00000{bottom:1120.799847px;}
.y1c9b_c00000{bottom:1120.980450px;}
.y7bd_c00000{bottom:1121.070450px;}
.y4e9_c00000{bottom:1121.071278px;}
.y19e2_c00000{bottom:1121.880450px;}
.ydeb_c00000{bottom:1122.240450px;}
.ybaa_c00000{bottom:1122.510450px;}
.yc37_c00000{bottom:1122.510540px;}
.y1a26_c00000{bottom:1122.510756px;}
.y11f0_c00000{bottom:1122.960450px;}
.y14f9_c00000{bottom:1124.130450px;}
.y1bdd_c00000{bottom:1124.400450px;}
.y13bd_c00000{bottom:1124.850450px;}
.y161c_c00000{bottom:1125.120450px;}
.y1d79_c00000{bottom:1126.020450px;}
.y132c_c00000{bottom:1127.910450px;}
.yc2c_c00000{bottom:1129.800450px;}
.y164c_c00000{bottom:1130.250450px;}
.y1944_c00000{bottom:1135.020450px;}
.yfa8_c00000{bottom:1135.830450px;}
.y39_c00000{bottom:1137.090450px;}
.y498_c00000{bottom:1138.440450px;}
.y476_c00000{bottom:1138.530450px;}
.y896_c00000{bottom:1138.620450px;}
.y518_c00000{bottom:1138.710450px;}
.y1cf_c00000{bottom:1138.800450px;}
.y2149_c00000{bottom:1139.160450px;}
.yf6d_c00000{bottom:1139.250450px;}
.y13a_c00000{bottom:1139.880450px;}
.ye9_c00000{bottom:1139.970450px;}
.y1b5_c00000{bottom:1140.060450px;}
.y4e8_c00000{bottom:1140.061188px;}
.yc3_c00000{bottom:1140.150450px;}
.y1fe7_c00000{bottom:1140.690450px;}
.ydea_c00000{bottom:1141.320450px;}
.y1f6d_c00000{bottom:1141.321143px;}
.ye39_c00000{bottom:1141.410450px;}
.y359_c00000{bottom:1141.500450px;}
.y1a25_c00000{bottom:1141.500666px;}
.y132b_c00000{bottom:1143.480450px;}
.y976_c00000{bottom:1144.380450px;}
.y7e7_c00000{bottom:1144.470450px;}
.y164b_c00000{bottom:1144.830450px;}
.ye17_c00000{bottom:1145.820450px;}
.y1d78_c00000{bottom:1148.520450px;}
.yc2b_c00000{bottom:1151.310450px;}
.yfa7_c00000{bottom:1154.010450px;}
.y475_c00000{bottom:1176.150450px;}
.yad6_c00000{bottom:1178.670450px;}
.y203f_c00000{bottom:1178.670459px;}
.yad5_c00000{bottom:1195.860450px;}
.y295_c00000{bottom:1195.950450px;}
.y17_c00000{bottom:1245.000000px;}
.y33_c00000{bottom:1468.500000px;}
.y32_c00000{bottom:1605.000000px;}
.he_c00000{height:0.000000px;}
.h84_c00000{height:7.918066px;}
.h44_c00000{height:11.659570px;}
.h65_c00000{height:11.972812px;}
.h83_c00000{height:16.076074px;}
.h4d_c00000{height:16.747383px;}
.h8c_c00000{height:16.920000px;}
.h17_c00000{height:22.500000px;}
.h33_c00000{height:23.672461px;}
.h2b_c00000{height:24.308437px;}
.h4a_c00000{height:24.996094px;}
.h8_c00000{height:25.500000px;}
.h13_c00000{height:27.000000px;}
.ha_c00000{height:28.500000px;}
.h3c_c00000{height:29.325586px;}
.h15_c00000{height:30.000000px;}
.h8b_c00000{height:31.912207px;}
.h4b_c00000{height:33.244805px;}
.h11_c00000{height:34.500000px;}
.h43_c00000{height:35.314453px;}
.h32_c00000{height:35.332031px;}
.h3a_c00000{height:36.281250px;}
.h16_c00000{height:37.500000px;}
.h3f_c00000{height:37.546875px;}
.h62_c00000{height:39.923437px;}
.h21_c00000{height:40.070215px;}
.h3e_c00000{height:41.338477px;}
.h2f_c00000{height:43.909277px;}
.h10_c00000{height:43.989258px;}
.h7f_c00000{height:46.968223px;}
.h26_c00000{height:46.991602px;}
.h22_c00000{height:47.988281px;}
.h5_c00000{height:48.000000px;}
.h2a_c00000{height:48.254063px;}
.h9b_c00000{height:48.678047px;}
.h9d_c00000{height:48.678647px;}
.h9e_c00000{height:49.021875px;}
.h97_c00000{height:49.429087px;}
.h95_c00000{height:49.429687px;}
.h30_c00000{height:49.581387px;}
.h3d_c00000{height:49.937344px;}
.h49_c00000{height:49.992188px;}
.h9_c00000{height:51.987305px;}
.h3b_c00000{height:52.998047px;}
.h2e_c00000{height:54.331699px;}
.h58_c00000{height:54.421875px;}
.hb2_c00000{height:55.234087px;}
.hb1_c00000{height:55.234687px;}
.h23_c00000{height:55.906348px;}
.hc_c00000{height:55.986328px;}
.h9a_c00000{height:56.598047px;}
.h9f_c00000{height:56.941875px;}
.h9c_c00000{height:56.958047px;}
.hb_c00000{height:58.500000px;}
.h2d_c00000{height:58.975137px;}
.h59_c00000{height:59.002692px;}
.h40_c00000{height:59.004492px;}
.h78_c00000{height:59.867492px;}
.h7a_c00000{height:59.867611px;}
.h7b_c00000{height:59.868212px;}
.h79_c00000{height:59.868812px;}
.h90_c00000{height:59.869688px;}
.h31_c00000{height:60.589687px;}
.h1f_c00000{height:60.903105px;}
.ha1_c00000{height:60.994087px;}
.ha0_c00000{height:60.994687px;}
.ha2_c00000{height:60.995288px;}
.h1_c00000{height:61.500000px;}
.h45_c00000{height:62.703281px;}
.h42_c00000{height:64.625449px;}
.h89_c00000{height:64.653549px;}
.h34_c00000{height:64.657617px;}
.ha3_c00000{height:64.954687px;}
.h98_c00000{height:65.269688px;}
.h99_c00000{height:65.270288px;}
.h96_c00000{height:65.630288px;}
.ha7_c00000{height:65.674688px;}
.h19_c00000{height:65.707031px;}
.h38_c00000{height:66.394687px;}
.haa_c00000{height:67.162500px;}
.h39_c00000{height:67.837500px;}
.h4c_c00000{height:68.710781px;}
.h24_c00000{height:69.176426px;}
.h7e_c00000{height:70.624286px;}
.h29_c00000{height:70.628906px;}
.h7d_c00000{height:70.658842px;}
.h5a_c00000{height:70.659563px;}
.h7c_c00000{height:70.659922px;}
.h36_c00000{height:70.660642px;}
.h48_c00000{height:70.661002px;}
.h41_c00000{height:70.662083px;}
.h35_c00000{height:70.662442px;}
.h8a_c00000{height:70.662622px;}
.h63_c00000{height:70.662707px;}
.h94_c00000{height:70.662803px;}
.h64_c00000{height:70.663270px;}
.h93_c00000{height:70.663943px;}
.h27_c00000{height:70.664062px;}
.h91_c00000{height:71.215057px;}
.h92_c00000{height:71.217517px;}
.h4e_c00000{height:71.842500px;}
.h4f_c00000{height:71.843100px;}
.hf_c00000{height:71.982422px;}
.h28_c00000{height:72.562500px;}
.ha6_c00000{height:73.594088px;}
.ha5_c00000{height:73.594688px;}
.h2c_c00000{height:75.093750px;}
.h66_c00000{height:75.614062px;}
.h67_c00000{height:75.974063px;}
.h6c_c00000{height:75.974663px;}
.h69_c00000{height:75.976582px;}
.h14_c00000{height:76.500000px;}
.h37_c00000{height:80.111602px;}
.h47_c00000{height:81.373463px;}
.h46_c00000{height:81.374062px;}
.h25_c00000{height:82.323633px;}
.h1a_c00000{height:84.535312px;}
.ha8_c00000{height:85.334062px;}
.ha4_c00000{height:85.694063px;}
.h18_c00000{height:87.484219px;}
.h20_c00000{height:89.068359px;}
.h3_c00000{height:93.000000px;}
.h57_c00000{height:93.563892px;}
.h55_c00000{height:93.564492px;}
.h56_c00000{height:94.429688px;}
.h61_c00000{height:94.791956px;}
.h6_c00000{height:95.976562px;}
.h1e_c00000{height:96.870938px;}
.h80_c00000{height:98.604492px;}
.h81_c00000{height:98.964492px;}
.hae_c00000{height:99.829688px;}
.hac_c00000{height:100.189688px;}
.h68_c00000{height:103.334062px;}
.h6f_c00000{height:103.334663px;}
.h6b_c00000{height:103.693462px;}
.h5c_c00000{height:103.694063px;}
.h6a_c00000{height:103.694662px;}
.h6d_c00000{height:104.869688px;}
.h1d_c00000{height:108.960293px;}
.hd_c00000{height:109.500000px;}
.h5b_c00000{height:116.701875px;}
.ha9_c00000{height:117.014063px;}
.h1b_c00000{height:118.757812px;}
.h2_c00000{height:119.970703px;}
.h74_c00000{height:127.763736px;}
.h76_c00000{height:127.763892px;}
.h75_c00000{height:128.124456px;}
.h77_c00000{height:128.125092px;}
.h87_c00000{height:128.484492px;}
.h5e_c00000{height:128.627491px;}
.h53_c00000{height:128.629688px;}
.h5f_c00000{height:128.988211px;}
.h52_c00000{height:128.989688px;}
.h8f_c00000{height:129.348932px;}
.h5d_c00000{height:129.349687px;}
.h8e_c00000{height:129.354944px;}
.h60_c00000{height:129.709652px;}
.h50_c00000{height:129.709687px;}
.h82_c00000{height:138.564492px;}
.hab_c00000{height:139.069687px;}
.had_c00000{height:139.429688px;}
.h88_c00000{height:140.554087px;}
.h86_c00000{height:141.084492px;}
.h8d_c00000{height:141.949688px;}
.haf_c00000{height:142.354687px;}
.hb0_c00000{height:142.355288px;}
.h1c_c00000{height:145.125000px;}
.h85_c00000{height:152.744063px;}
.h51_c00000{height:154.642500px;}
.h72_c00000{height:155.002500px;}
.h73_c00000{height:155.361900px;}
.h71_c00000{height:155.362500px;}
.h6e_c00000{height:157.694063px;}
.h70_c00000{height:158.413463px;}
.h54_c00000{height:163.190288px;}
.h4_c00000{height:199.951172px;}
.h12_c00000{height:217.500000px;}
.h7_c00000{height:393.000000px;}
.h0_c00000{height:1263.000000px;}
.w7_c00000{width:0.000000px;}
.w13_c00000{width:3.780000px;}
.we_c00000{width:69.000000px;}
.wa_c00000{width:102.000000px;}
.wf_c00000{width:118.500000px;}
.w1_c00000{width:120.000000px;}
.w5_c00000{width:124.500000px;}
.w2_c00000{width:135.000000px;}
.wd_c00000{width:172.500000px;}
.w11_c00000{width:304.500000px;}
.w6_c00000{width:421.500000px;}
.w10_c00000{width:603.000000px;}
.w9_c00000{width:651.000000px;}
.w8_c00000{width:673.500000px;}
.wc_c00000{width:675.000000px;}
.wb_c00000{width:687.000000px;}
.w3_c00000{width:697.500000px;}
.w4_c00000{width:699.000000px;}
.w0_c00000{width:892.500000px;}
.w12_c00000{width:892.830000px;}
.xfc_c00000{left:-1.260000px;}
.x0_c00000{left:0.000000px;}
.xf_c00000{left:1.500000px;}
.x2_c00000{left:9.960000px;}
.xb_c00000{left:11.490000px;}
.x10_c00000{left:18.000000px;}
.x1a_c00000{left:24.234000px;}
.x4_c00000{left:25.800000px;}
.x21_c00000{left:29.226000px;}
.x9_c00000{left:46.410000px;}
.x16_c00000{left:54.000000px;}
.x1b_c00000{left:65.449500px;}
.xe_c00000{left:70.500000px;}
.xd_c00000{left:72.000000px;}
.xa_c00000{left:93.885000px;}
.x1c_c00000{left:106.500000px;}
.x7_c00000{left:112.500000px;}
.x5_c00000{left:114.000000px;}
.x14_c00000{left:115.887000px;}
.x63_c00000{left:117.000000px;}
.x17_c00000{left:121.500000px;}
.xb6_c00000{left:125.010000px;}
.x24_c00000{left:127.620000px;}
.x10b_c00000{left:128.970000px;}
.x3c_c00000{left:130.140000px;}
.x77_c00000{left:132.300000px;}
.x19_c00000{left:133.500000px;}
.xf1_c00000{left:134.550000px;}
.x53_c00000{left:135.630000px;}
.x12a_c00000{left:136.890000px;}
.x71_c00000{left:138.150000px;}
.xee_c00000{left:139.770000px;}
.x44_c00000{left:140.850000px;}
.x72_c00000{left:142.650000px;}
.x31_c00000{left:144.179514px;}
.x27_c00000{left:146.338476px;}
.xf2_c00000{left:147.600000px;}
.x35_c00000{left:148.950000px;}
.x60_c00000{left:150.120000px;}
.x26_c00000{left:151.740000px;}
.x97_c00000{left:152.820000px;}
.x56_c00000{left:154.620000px;}
.xef_c00000{left:155.700000px;}
.x5b_c00000{left:156.960000px;}
.x54_c00000{left:159.390000px;}
.xcf_c00000{left:161.910000px;}
.xb4_c00000{left:163.080000px;}
.xf6_c00000{left:164.610000px;}
.x13a_c00000{left:165.960000px;}
.x5f_c00000{left:168.120000px;}
.x39_c00000{left:170.190000px;}
.x68_c00000{left:171.450243px;}
.x3e_c00000{left:172.710000px;}
.x6a_c00000{left:175.050000px;}
.x7b_c00000{left:176.760000px;}
.x5c_c00000{left:178.200000px;}
.xd0_c00000{left:179.820000px;}
.x57_c00000{left:181.620000px;}
.x3d_c00000{left:183.330000px;}
.xd1_c00000{left:185.490000px;}
.x3b_c00000{left:188.190000px;}
.x29_c00000{left:190.702949px;}
.x18_c00000{left:192.016500px;}
.x3f_c00000{left:194.040000px;}
.x3a_c00000{left:197.190000px;}
.x43_c00000{left:198.900000px;}
.xb7_c00000{left:200.520000px;}
.x80_c00000{left:202.050000px;}
.x92_c00000{left:203.310000px;}
.x1e_c00000{left:207.415500px;}
.x8_c00000{left:209.040000px;}
.x42_c00000{left:212.670000px;}
.x40_c00000{left:215.190000px;}
.xad_c00000{left:216.450000px;}
.xcc_c00000{left:217.530000px;}
.x120_c00000{left:218.790000px;}
.x76_c00000{left:220.680000px;}
.x1d_c00000{left:222.598500px;}
.x137_c00000{left:223.650000px;}
.x81_c00000{left:224.729046px;}
.x138_c00000{left:227.790000px;}
.xd4_c00000{left:229.320000px;}
.x82_c00000{left:231.121053px;}
.x5d_c00000{left:232.199262px;}
.x64_c00000{left:234.000000px;}
.xce_c00000{left:235.260000px;}
.x41_c00000{left:236.520000px;}
.x85_c00000{left:237.870000px;}
.x8e_c00000{left:239.940000px;}
.xf0_c00000{left:242.010000px;}
.x135_c00000{left:243.450000px;}
.xcd_c00000{left:244.530000px;}
.x73_c00000{left:247.050000px;}
.x13c_c00000{left:248.220000px;}
.xbe_c00000{left:249.570000px;}
.xc_c00000{left:251.520000px;}
.xbf_c00000{left:252.630000px;}
.xec_c00000{left:254.160000px;}
.x93_c00000{left:255.600000px;}
.x28_c00000{left:258.654516px;}
.x133_c00000{left:259.740000px;}
.xb5_c00000{left:263.250000px;}
.x8d_c00000{left:265.320000px;}
.x15_c00000{left:267.252000px;}
.x118_c00000{left:269.190000px;}
.x78_c00000{left:272.250000px;}
.x134_c00000{left:273.780000px;}
.x109_c00000{left:275.310000px;}
.x136_c00000{left:276.570000px;}
.x70_c00000{left:278.190000px;}
.x74_c00000{left:280.530000px;}
.x4c_c00000{left:281.790000px;}
.x13b_c00000{left:283.680000px;}
.x22_c00000{left:285.000000px;}
.xc0_c00000{left:287.280000px;}
.x12b_c00000{left:288.360000px;}
.xba_c00000{left:289.710000px;}
.xd8_c00000{left:291.870000px;}
.xde_c00000{left:293.130000px;}
.x119_c00000{left:294.390000px;}
.x2f_c00000{left:295.833822px;}
.x96_c00000{left:297.720000px;}
.x105_c00000{left:299.250000px;}
.x130_c00000{left:301.860000px;}
.x6f_c00000{left:303.750000px;}
.x108_c00000{left:306.090000px;}
.xf3_c00000{left:308.070000px;}
.x2e_c00000{left:309.690000px;}
.x6_c00000{left:311.544000px;}
.x139_c00000{left:312.840000px;}
.x2c_c00000{left:313.920000px;}
.x48_c00000{left:315.270000px;}
.x106_c00000{left:317.340000px;}
.x99_c00000{left:318.510000px;}
.xf4_c00000{left:319.590000px;}
.x110_c00000{left:321.570000px;}
.x10e_c00000{left:323.638785px;}
.x98_c00000{left:325.530000px;}
.x10d_c00000{left:326.969433px;}
.x86_c00000{left:328.230000px;}
.xbc_c00000{left:332.190000px;}
.x25_c00000{left:333.448865px;}
.x10f_c00000{left:334.890000px;}
.x2a_c00000{left:336.405425px;}
.xed_c00000{left:338.310000px;}
.xff_c00000{left:340.200000px;}
.xfb_c00000{left:343.710000px;}
.xbb_c00000{left:345.510000px;}
.xb8_c00000{left:348.300000px;}
.x100_c00000{left:349.470000px;}
.x62_c00000{left:352.440000px;}
.x121_c00000{left:356.490000px;}
.x12_c00000{left:360.051000px;}
.x9a_c00000{left:362.070000px;}
.x52_c00000{left:363.420000px;}
.xc1_c00000{left:365.940000px;}
.x4f_c00000{left:367.470000px;}
.x58_c00000{left:368.910000px;}
.x34_c00000{left:370.710000px;}
.x47_c00000{left:372.240000px;}
.xcb_c00000{left:374.490000px;}
.x46_c00000{left:376.020000px;}
.x11_c00000{left:378.000000px;}
.x4d_c00000{left:382.950000px;}
.xf7_c00000{left:386.010000px;}
.x2d_c00000{left:387.720000px;}
.x20_c00000{left:390.000000px;}
.x117_c00000{left:391.050000px;}
.x33_c00000{left:393.120774px;}
.x13_c00000{left:396.000000px;}
.x6d_c00000{left:397.619289px;}
.xdf_c00000{left:399.510000px;}
.xab_c00000{left:401.490000px;}
.x13d_c00000{left:404.010000px;}
.xd7_c00000{left:405.630000px;}
.xc2_c00000{left:409.590000px;}
.x37_c00000{left:411.030000px;}
.x1f_c00000{left:412.500000px;}
.x38_c00000{left:414.000000px;}
.x2b_c00000{left:415.080000px;}
.x49_c00000{left:416.340000px;}
.x45_c00000{left:418.500000px;}
.x4a_c00000{left:420.840000px;}
.x4b_c00000{left:423.090000px;}
.x32_c00000{left:425.257800px;}
.x111_c00000{left:430.560000px;}
.x7e_c00000{left:432.629730px;}
.x65_c00000{left:433.980000px;}
.x9c_c00000{left:436.140000px;}
.xae_c00000{left:437.220000px;}
.x55_c00000{left:438.930765px;}
.x9b_c00000{left:440.910000px;}
.x51_c00000{left:442.350000px;}
.x12c_c00000{left:444.600000px;}
.x23_c00000{left:446.490000px;}
.x9d_c00000{left:449.370000px;}
.x95_c00000{left:451.710387px;}
.x79_c00000{left:453.780000px;}
.xd6_c00000{left:455.310000px;}
.x4e_c00000{left:457.200000px;}
.xac_c00000{left:458.550000px;}
.x69_c00000{left:460.080000px;}
.x102_c00000{left:461.520000px;}
.x107_c00000{left:462.960000px;}
.x7d_c00000{left:465.300000px;}
.x87_c00000{left:466.470000px;}
.xdc_c00000{left:467.821026px;}
.xe6_c00000{left:471.600000px;}
.x11f_c00000{left:473.489910px;}
.x6e_c00000{left:476.370000px;}
.x84_c00000{left:478.439739px;}
.xe5_c00000{left:480.510000px;}
.xe1_c00000{left:485.820000px;}
.x5a_c00000{left:487.080000px;}
.x125_c00000{left:488.610000px;}
.xea_c00000{left:489.960000px;}
.xd2_c00000{left:492.930000px;}
.xf8_c00000{left:495.000000px;}
.x13f_c00000{left:497.160000px;}
.x30_c00000{left:499.770976px;}
.x8f_c00000{left:500.850000px;}
.xd5_c00000{left:503.010000px;}
.x11a_c00000{left:504.360000px;}
.xe0_c00000{left:505.800000px;}
.xda_c00000{left:509.579820px;}
.x122_c00000{left:511.380000px;}
.x66_c00000{left:513.270000px;}
.xc3_c00000{left:516.870000px;}
.x7c_c00000{left:518.400000px;}
.x36_c00000{left:521.100000px;}
.xb0_c00000{left:522.720000px;}
.xf9_c00000{left:524.340000px;}
.x7f_c00000{left:529.020000px;}
.xdd_c00000{left:532.530000px;}
.x129_c00000{left:534.150000px;}
.x104_c00000{left:535.230000px;}
.xd3_c00000{left:537.840000px;}
.xaf_c00000{left:540.720000px;}
.x59_c00000{left:542.700000px;}
.x131_c00000{left:543.780000px;}
.x123_c00000{left:544.860000px;}
.x90_c00000{left:546.930000px;}
.x11b_c00000{left:548.190000px;}
.x6c_c00000{left:550.709586px;}
.xb1_c00000{left:554.760000px;}
.x126_c00000{left:555.840000px;}
.x127_c00000{left:557.730000px;}
.xc4_c00000{left:560.520000px;}
.x88_c00000{left:562.050000px;}
.xb9_c00000{left:563.580702px;}
.xe3_c00000{left:574.650000px;}
.xe8_c00000{left:576.270000px;}
.x94_c00000{left:578.520000px;}
.x83_c00000{left:582.930000px;}
.xe7_c00000{left:585.000000px;}
.x1_c00000{left:586.500000px;}
.xc5_c00000{left:587.610000px;}
.x101_c00000{left:589.590000px;}
.xc6_c00000{left:592.290000px;}
.x12d_c00000{left:593.460000px;}
.xfd_c00000{left:594.990054px;}
.x67_c00000{left:597.690000px;}
.x11c_c00000{left:600.120000px;}
.xfe_c00000{left:603.450441px;}
.x89_c00000{left:604.620000px;}
.x112_c00000{left:607.769838px;}
.xe2_c00000{left:612.180000px;}
.x113_c00000{left:613.890054px;}
.x13e_c00000{left:622.170000px;}
.xa1_c00000{left:625.050000px;}
.x9f_c00000{left:627.390000px;}
.x124_c00000{left:629.190000px;}
.x6b_c00000{left:631.799631px;}
.x9e_c00000{left:634.680000px;}
.xc7_c00000{left:636.030000px;}
.xa0_c00000{left:637.740000px;}
.x75_c00000{left:639.990000px;}
.x11d_c00000{left:641.070000px;}
.x103_c00000{left:642.150000px;}
.xb2_c00000{left:643.500000px;}
.x7a_c00000{left:645.120000px;}
.x10a_c00000{left:649.710000px;}
.xdb_c00000{left:651.060216px;}
.x8a_c00000{left:652.410000px;}
.x12e_c00000{left:658.260000px;}
.x61_c00000{left:663.570000px;}
.xd9_c00000{left:664.650000px;}
.xa4_c00000{left:667.710000px;}
.xa3_c00000{left:669.960000px;}
.x50_c00000{left:671.670000px;}
.xc8_c00000{left:673.830000px;}
.xf5_c00000{left:675.270000px;}
.xa2_c00000{left:677.340000px;}
.x91_c00000{left:679.680000px;}
.x116_c00000{left:683.819352px;}
.x115_c00000{left:687.150000px;}
.x114_c00000{left:688.410000px;}
.xe9_c00000{left:690.030000px;}
.xb3_c00000{left:691.380000px;}
.xe4_c00000{left:694.530000px;}
.xeb_c00000{left:697.140000px;}
.x10c_c00000{left:698.761809px;}
.x8b_c00000{left:700.290000px;}
.x128_c00000{left:704.160000px;}
.xc9_c00000{left:707.130000px;}
.xa6_c00000{left:710.280000px;}
.xa7_c00000{left:712.530000px;}
.x12f_c00000{left:714.600000px;}
.xa5_c00000{left:719.910000px;}
.x3_c00000{left:721.500000px;}
.x5e_c00000{left:722.970000px;}
.x11e_c00000{left:726.750000px;}
.x132_c00000{left:732.870000px;}
.x8c_c00000{left:742.860000px;}
.xca_c00000{left:747.360000px;}
.xbd_c00000{left:749.880000px;}
.xaa_c00000{left:752.580000px;}
.xa8_c00000{left:755.729850px;}
.xa9_c00000{left:758.790000px;}
.xfa_c00000{left:763.200000px;}
@media print{
.v2_c00000{vertical-align:-135.045312pt;}
.v3_c00000{vertical-align:-85.758912pt;}
.v1_c00000{vertical-align:-81.600000pt;}
.v4_c00000{vertical-align:-76.480619pt;}
.v25_c00000{vertical-align:-75.519467pt;}
.vc_c00000{vertical-align:-73.600000pt;}
.vf_c00000{vertical-align:-72.000000pt;}
.v24_c00000{vertical-align:-70.720000pt;}
.va_c00000{vertical-align:-69.120000pt;}
.v9_c00000{vertical-align:-66.879467pt;}
.v5_c00000{vertical-align:-64.639509pt;}
.v8_c00000{vertical-align:-63.040000pt;}
.vd_c00000{vertical-align:-62.080000pt;}
.v1f_c00000{vertical-align:-61.119328pt;}
.vb_c00000{vertical-align:-59.200000pt;}
.v16_c00000{vertical-align:-52.160000pt;}
.v1d_c00000{vertical-align:-49.280000pt;}
.v28_c00000{vertical-align:-41.280000pt;}
.v11_c00000{vertical-align:-31.680000pt;}
.v7_c00000{vertical-align:-29.440000pt;}
.ve_c00000{vertical-align:-26.559467pt;}
.v1b_c00000{vertical-align:-24.637984pt;}
.v21_c00000{vertical-align:-11.840000pt;}
.v2a_c00000{vertical-align:-9.920000pt;}
.v34_c00000{vertical-align:-8.640000pt;}
.v35_c00000{vertical-align:-6.400000pt;}
.v2f_c00000{vertical-align:-4.800000pt;}
.v2d_c00000{vertical-align:-3.840000pt;}
.v20_c00000{vertical-align:-2.560000pt;}
.v31_c00000{vertical-align:-1.280000pt;}
.v0_c00000{vertical-align:0.000000pt;}
.v2e_c00000{vertical-align:0.960000pt;}
.v30_c00000{vertical-align:2.240000pt;}
.v2c_c00000{vertical-align:3.200000pt;}
.v2b_c00000{vertical-align:4.480533pt;}
.v26_c00000{vertical-align:5.440000pt;}
.v33_c00000{vertical-align:6.400000pt;}
.v10_c00000{vertical-align:10.560000pt;}
.v19_c00000{vertical-align:24.320000pt;}
.v29_c00000{vertical-align:26.556960pt;}
.v6_c00000{vertical-align:29.440000pt;}
.v14_c00000{vertical-align:30.719467pt;}
.v32_c00000{vertical-align:33.280000pt;}
.v22_c00000{vertical-align:35.200000pt;}
.v1e_c00000{vertical-align:36.800000pt;}
.v1a_c00000{vertical-align:39.360000pt;}
.v1c_c00000{vertical-align:48.000000pt;}
.v18_c00000{vertical-align:49.280000pt;}
.v17_c00000{vertical-align:55.360000pt;}
.v15_c00000{vertical-align:60.480000pt;}
.v12_c00000{vertical-align:61.440000pt;}
.v27_c00000{vertical-align:65.919467pt;}
.v36_c00000{vertical-align:67.520000pt;}
.v23_c00000{vertical-align:70.720000pt;}
.v13_c00000{vertical-align:72.960000pt;}
.ls240_c00000{letter-spacing:-1.792000pt;}
.ls23f_c00000{letter-spacing:-1.702400pt;}
.ls1fa_c00000{letter-spacing:-1.657248pt;}
.lsb7_c00000{letter-spacing:-1.625600pt;}
.ls1f9_c00000{letter-spacing:-1.551840pt;}
.ls1f8_c00000{letter-spacing:-1.405440pt;}
.ls1fe_c00000{letter-spacing:-1.247328pt;}
.ls1fc_c00000{letter-spacing:-1.235616pt;}
.lse9_c00000{letter-spacing:-1.223904pt;}
.ls1fb_c00000{letter-spacing:-1.212192pt;}
.ls212_c00000{letter-spacing:-1.196800pt;}
.ls1fd_c00000{letter-spacing:-1.194624pt;}
.ls211_c00000{letter-spacing:-1.184000pt;}
.ls242_c00000{letter-spacing:-1.158400pt;}
.ls241_c00000{letter-spacing:-1.145600pt;}
.ls21f_c00000{letter-spacing:-1.088000pt;}
.ls210_c00000{letter-spacing:-1.062400pt;}
.lsed_c00000{letter-spacing:-1.024800pt;}
.lsf2_c00000{letter-spacing:-1.001376pt;}
.ls1f2_c00000{letter-spacing:-0.989664pt;}
.ls1f1_c00000{letter-spacing:-0.966240pt;}
.lsf1_c00000{letter-spacing:-0.960384pt;}
.lsbb_c00000{letter-spacing:-0.902400pt;}
.lsb9_c00000{letter-spacing:-0.896000pt;}
.lsb8_c00000{letter-spacing:-0.883200pt;}
.ls222_c00000{letter-spacing:-0.876800pt;}
.lsbc_c00000{letter-spacing:-0.870400pt;}
.ls228_c00000{letter-spacing:-0.844800pt;}
.lsba_c00000{letter-spacing:-0.825600pt;}
.ls1ec_c00000{letter-spacing:-0.819840pt;}
.ls1ed_c00000{letter-spacing:-0.802272pt;}
.ls1f4_c00000{letter-spacing:-0.778848pt;}
.lseb_c00000{letter-spacing:-0.737856pt;}
.lsf0_c00000{letter-spacing:-0.714432pt;}
.ls1ff_c00000{letter-spacing:-0.696864pt;}
.ls1f7_c00000{letter-spacing:-0.691008pt;}
.ls1f6_c00000{letter-spacing:-0.685152pt;}
.lsef_c00000{letter-spacing:-0.650016pt;}
.ls225_c00000{letter-spacing:-0.633600pt;}
.ls1e5_c00000{letter-spacing:-0.632448pt;}
.ls220_c00000{letter-spacing:-0.620800pt;}
.ls1f3_c00000{letter-spacing:-0.614880pt;}
.ls226_c00000{letter-spacing:-0.608000pt;}
.ls1e6_c00000{letter-spacing:-0.597312pt;}
.ls1df_c00000{letter-spacing:-0.595200pt;}
.ls1f0_c00000{letter-spacing:-0.579744pt;}
.ls1e7_c00000{letter-spacing:-0.562176pt;}
.ls1ca_c00000{letter-spacing:-0.555776pt;}
.ls1ef_c00000{letter-spacing:-0.544608pt;}
.ls1e8_c00000{letter-spacing:-0.515328pt;}
.lsdc_c00000{letter-spacing:-0.505600pt;}
.ls1e9_c00000{letter-spacing:-0.503616pt;}
.ls180_c00000{letter-spacing:-0.499200pt;}
.ls1ee_c00000{letter-spacing:-0.480192pt;}
.lsdd_c00000{letter-spacing:-0.460800pt;}
.ls184_c00000{letter-spacing:-0.448896pt;}
.ls1b5_c00000{letter-spacing:-0.428800pt;}
.lsa3_c00000{letter-spacing:-0.427488pt;}
.ls201_c00000{letter-spacing:-0.422400pt;}
.ls227_c00000{letter-spacing:-0.409600pt;}
.ls243_c00000{letter-spacing:-0.377600pt;}
.ls223_c00000{letter-spacing:-0.371200pt;}
.ls1d5_c00000{letter-spacing:-0.358048pt;}
.ls221_c00000{letter-spacing:-0.332800pt;}
.ls197_c00000{letter-spacing:-0.320640pt;}
.lsaa_c00000{letter-spacing:-0.320000pt;}
.ls208_c00000{letter-spacing:-0.315296pt;}
.ls1e1_c00000{letter-spacing:-0.313600pt;}
.ls1c_c00000{letter-spacing:-0.305344pt;}
.ls1de_c00000{letter-spacing:-0.299264pt;}
.ls113_c00000{letter-spacing:-0.298656pt;}
.lsf6_c00000{letter-spacing:-0.294400pt;}
.ls172_c00000{letter-spacing:-0.293920pt;}
.ls1bb_c00000{letter-spacing:-0.288576pt;}
.ls1d6_c00000{letter-spacing:-0.283232pt;}
.ls166_c00000{letter-spacing:-0.277888pt;}
.ls124_c00000{letter-spacing:-0.268800pt;}
.ls95_c00000{letter-spacing:-0.267200pt;}
.ls1ea_c00000{letter-spacing:-0.263520pt;}
.ls134_c00000{letter-spacing:-0.261856pt;}
.ls1e4_c00000{letter-spacing:-0.257664pt;}
.ls17e_c00000{letter-spacing:-0.256512pt;}
.lsfb_c00000{letter-spacing:-0.256000pt;}
.lsd7_c00000{letter-spacing:-0.249600pt;}
.ls17a_c00000{letter-spacing:-0.243200pt;}
.ls141_c00000{letter-spacing:-0.240480pt;}
.lsf9_c00000{letter-spacing:-0.240096pt;}
.ls1e3_c00000{letter-spacing:-0.236800pt;}
.ls1d7_c00000{letter-spacing:-0.235136pt;}
.ls1eb_c00000{letter-spacing:-0.228384pt;}
.ls66_c00000{letter-spacing:-0.224448pt;}
.lsd6_c00000{letter-spacing:-0.224000pt;}
.lsfa_c00000{letter-spacing:-0.217600pt;}
.ls200_c00000{letter-spacing:-0.216672pt;}
.ls209_c00000{letter-spacing:-0.211200pt;}
.ls155_c00000{letter-spacing:-0.208416pt;}
.ls109_c00000{letter-spacing:-0.204800pt;}
.ls1b7_c00000{letter-spacing:-0.197728pt;}
.ls1c7_c00000{letter-spacing:-0.192384pt;}
.lsac_c00000{letter-spacing:-0.192000pt;}
.ls1c9_c00000{letter-spacing:-0.187040pt;}
.lsd1_c00000{letter-spacing:-0.185600pt;}
.ls152_c00000{letter-spacing:-0.181696pt;}
.ls6d_c00000{letter-spacing:-0.179200pt;}
.ls168_c00000{letter-spacing:-0.177600pt;}
.ls16c_c00000{letter-spacing:-0.176352pt;}
.lsd2_c00000{letter-spacing:-0.172800pt;}
.ls16d_c00000{letter-spacing:-0.171008pt;}
.lsc4_c00000{letter-spacing:-0.166400pt;}
.ls140_c00000{letter-spacing:-0.165664pt;}
.ls165_c00000{letter-spacing:-0.160320pt;}
.lsf3_c00000{letter-spacing:-0.160000pt;}
.ls15b_c00000{letter-spacing:-0.158400pt;}
.ls224_c00000{letter-spacing:-0.158112pt;}
.ls1ba_c00000{letter-spacing:-0.154976pt;}
.lsd3_c00000{letter-spacing:-0.153600pt;}
.ls154_c00000{letter-spacing:-0.149632pt;}
.lsce_c00000{letter-spacing:-0.147200pt;}
.ls1a4_c00000{letter-spacing:-0.144704pt;}
.ls135_c00000{letter-spacing:-0.144288pt;}
.ls1b4_c00000{letter-spacing:-0.140800pt;}
.ls139_c00000{letter-spacing:-0.138944pt;}
.lscf_c00000{letter-spacing:-0.134400pt;}
.ls12f_c00000{letter-spacing:-0.133600pt;}
.ls19_c00000{letter-spacing:-0.129184pt;}
.ls137_c00000{letter-spacing:-0.128256pt;}
.lsa9_c00000{letter-spacing:-0.128000pt;}
.ls151_c00000{letter-spacing:-0.122912pt;}
.lsbe_c00000{letter-spacing:-0.121600pt;}
.ls267_c00000{letter-spacing:-0.120000pt;}
.ls20_c00000{letter-spacing:-0.119296pt;}
.ls14e_c00000{letter-spacing:-0.117568pt;}
.ls22e_c00000{letter-spacing:-0.117120pt;}
.lsf7_c00000{letter-spacing:-0.115200pt;}
.ls133_c00000{letter-spacing:-0.112224pt;}
.lsfe_c00000{letter-spacing:-0.108800pt;}
.ls119_c00000{letter-spacing:-0.106880pt;}
.ls27c_c00000{letter-spacing:-0.105600pt;}
.lse8_c00000{letter-spacing:-0.105408pt;}
.lsb2_c00000{letter-spacing:-0.102400pt;}
.ls64_c00000{letter-spacing:-0.101536pt;}
.ls268_c00000{letter-spacing:-0.100800pt;}
.ls1e_c00000{letter-spacing:-0.096928pt;}
.ls131_c00000{letter-spacing:-0.096192pt;}
.ls1d_c00000{letter-spacing:-0.096000pt;}
.lsec_c00000{letter-spacing:-0.093696pt;}
.ls1b2_c00000{letter-spacing:-0.093632pt;}
.ls266_c00000{letter-spacing:-0.091200pt;}
.ls6a_c00000{letter-spacing:-0.090848pt;}
.lscc_c00000{letter-spacing:-0.089600pt;}
.ls106_c00000{letter-spacing:-0.085504pt;}
.lsad_c00000{letter-spacing:-0.083200pt;}
.ls16_c00000{letter-spacing:-0.082208pt;}
.lsee_c00000{letter-spacing:-0.081984pt;}
.ls150_c00000{letter-spacing:-0.081600pt;}
.ls61_c00000{letter-spacing:-0.080864pt;}
.ls13a_c00000{letter-spacing:-0.080160pt;}
.ls36_c00000{letter-spacing:-0.076800pt;}
.ls26d_c00000{letter-spacing:-0.076608pt;}
.ls118_c00000{letter-spacing:-0.074816pt;}
.lsa5_c00000{letter-spacing:-0.070400pt;}
.ls218_c00000{letter-spacing:-0.070272pt;}
.ls169_c00000{letter-spacing:-0.069472pt;}
.ls269_c00000{letter-spacing:-0.067200pt;}
.ls125_c00000{letter-spacing:-0.064416pt;}
.ls138_c00000{letter-spacing:-0.064128pt;}
.ls42_c00000{letter-spacing:-0.064000pt;}
.ls1a2_c00000{letter-spacing:-0.063840pt;}
.ls274_c00000{letter-spacing:-0.059584pt;}
.ls132_c00000{letter-spacing:-0.058784pt;}
.ls17_c00000{letter-spacing:-0.058720pt;}
.ls1db_c00000{letter-spacing:-0.058560pt;}
.ls3b_c00000{letter-spacing:-0.057600pt;}
.ls26b_c00000{letter-spacing:-0.055328pt;}
.ls161_c00000{letter-spacing:-0.053440pt;}
.ls26a_c00000{letter-spacing:-0.052800pt;}
.lsa2_c00000{letter-spacing:-0.052704pt;}
.ls35_c00000{letter-spacing:-0.051200pt;}
.ls176_c00000{letter-spacing:-0.051072pt;}
.ls92_c00000{letter-spacing:-0.048096pt;}
.ls15a_c00000{letter-spacing:-0.048000pt;}
.ls14_c00000{letter-spacing:-0.046976pt;}
.ls1cf_c00000{letter-spacing:-0.046848pt;}
.ls1a1_c00000{letter-spacing:-0.046816pt;}
.ls4d_c00000{letter-spacing:-0.044800pt;}
.ls108_c00000{letter-spacing:-0.042752pt;}
.ls256_c00000{letter-spacing:-0.042560pt;}
.lsb3_c00000{letter-spacing:-0.040992pt;}
.ls50_c00000{letter-spacing:-0.038400pt;}
.ls26e_c00000{letter-spacing:-0.038304pt;}
.ls107_c00000{letter-spacing:-0.037408pt;}
.ls18_c00000{letter-spacing:-0.035232pt;}
.ls110_c00000{letter-spacing:-0.035136pt;}
.ls1bf_c00000{letter-spacing:-0.034048pt;}
.ls15d_c00000{letter-spacing:-0.033600pt;}
.ls105_c00000{letter-spacing:-0.032064pt;}
.ls3e_c00000{letter-spacing:-0.032000pt;}
.ls21_c00000{letter-spacing:-0.029824pt;}
.ls273_c00000{letter-spacing:-0.029792pt;}
.lsc7_c00000{letter-spacing:-0.029280pt;}
.ls15f_c00000{letter-spacing:-0.028800pt;}
.ls69_c00000{letter-spacing:-0.026720pt;}
.ls38_c00000{letter-spacing:-0.025600pt;}
.lsa1_c00000{letter-spacing:-0.024576pt;}
.ls167_c00000{letter-spacing:-0.024000pt;}
.ls1a_c00000{letter-spacing:-0.023488pt;}
.lscb_c00000{letter-spacing:-0.023424pt;}
.ls1f_c00000{letter-spacing:-0.022368pt;}
.ls93_c00000{letter-spacing:-0.021376pt;}
.ls1a5_c00000{letter-spacing:-0.021280pt;}
.ls34_c00000{letter-spacing:-0.019200pt;}
.lsa6_c00000{letter-spacing:-0.017568pt;}
.ls258_c00000{letter-spacing:-0.017024pt;}
.ls6b_c00000{letter-spacing:-0.016032pt;}
.ls23_c00000{letter-spacing:-0.014912pt;}
.ls153_c00000{letter-spacing:-0.014400pt;}
.ls13_c00000{letter-spacing:-0.012800pt;}
.ls1c0_c00000{letter-spacing:-0.012768pt;}
.ls1b_c00000{letter-spacing:-0.011744pt;}
.lsb1_c00000{letter-spacing:-0.011712pt;}
.ls67_c00000{letter-spacing:-0.010688pt;}
.ls160_c00000{letter-spacing:-0.009600pt;}
.ls257_c00000{letter-spacing:-0.008512pt;}
.ls2a_c00000{letter-spacing:-0.007456pt;}
.ls37_c00000{letter-spacing:-0.006400pt;}
.ls83_c00000{letter-spacing:-0.005856pt;}
.ls104_c00000{letter-spacing:-0.005344pt;}
.ls14f_c00000{letter-spacing:-0.004800pt;}
.ls62_c00000{letter-spacing:-0.004256pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ls89_c00000{letter-spacing:0.004256pt;}
.ls14a_c00000{letter-spacing:0.004800pt;}
.ls88_c00000{letter-spacing:0.005344pt;}
.ls74_c00000{letter-spacing:0.005856pt;}
.ls2f_c00000{letter-spacing:0.006400pt;}
.ls9_c00000{letter-spacing:0.007456pt;}
.ls19e_c00000{letter-spacing:0.008512pt;}
.ls8_c00000{letter-spacing:0.009600pt;}
.ls8e_c00000{letter-spacing:0.010688pt;}
.ls7c_c00000{letter-spacing:0.011712pt;}
.ls46_c00000{letter-spacing:0.011840pt;}
.ls18c_c00000{letter-spacing:0.012768pt;}
.ls30_c00000{letter-spacing:0.012800pt;}
.ls142_c00000{letter-spacing:0.014400pt;}
.ls10_c00000{letter-spacing:0.014912pt;}
.ls8c_c00000{letter-spacing:0.016032pt;}
.ls19c_c00000{letter-spacing:0.017024pt;}
.ls72_c00000{letter-spacing:0.017568pt;}
.lsa_c00000{letter-spacing:0.019200pt;}
.ls18f_c00000{letter-spacing:0.021280pt;}
.ls103_c00000{letter-spacing:0.021376pt;}
.ls12_c00000{letter-spacing:0.022368pt;}
.ls75_c00000{letter-spacing:0.023424pt;}
.ls4_c00000{letter-spacing:0.023488pt;}
.ls146_c00000{letter-spacing:0.024000pt;}
.ls47_c00000{letter-spacing:0.025536pt;}
.ls2d_c00000{letter-spacing:0.025600pt;}
.ls60_c00000{letter-spacing:0.026720pt;}
.ls14d_c00000{letter-spacing:0.028800pt;}
.ls7b_c00000{letter-spacing:0.029280pt;}
.ls18a_c00000{letter-spacing:0.029792pt;}
.ls29_c00000{letter-spacing:0.029824pt;}
.ls31_c00000{letter-spacing:0.032000pt;}
.lsff_c00000{letter-spacing:0.032064pt;}
.ls144_c00000{letter-spacing:0.033600pt;}
.ls8a_c00000{letter-spacing:0.034048pt;}
.ls73_c00000{letter-spacing:0.035136pt;}
.ls5_c00000{letter-spacing:0.035232pt;}
.lsf_c00000{letter-spacing:0.037280pt;}
.ls5f_c00000{letter-spacing:0.037408pt;}
.ls187_c00000{letter-spacing:0.038304pt;}
.ls3_c00000{letter-spacing:0.038400pt;}
.ls77_c00000{letter-spacing:0.040992pt;}
.ls117_c00000{letter-spacing:0.042560pt;}
.ls100_c00000{letter-spacing:0.042752pt;}
.ls147_c00000{letter-spacing:0.043200pt;}
.ls28_c00000{letter-spacing:0.044736pt;}
.ls39_c00000{letter-spacing:0.044800pt;}
.ls18d_c00000{letter-spacing:0.046816pt;}
.ls7a_c00000{letter-spacing:0.046848pt;}
.ls156_c00000{letter-spacing:0.048000pt;}
.ls101_c00000{letter-spacing:0.048096pt;}
.ls190_c00000{letter-spacing:0.051072pt;}
.ls32_c00000{letter-spacing:0.051200pt;}
.ls26_c00000{letter-spacing:0.052192pt;}
.ls79_c00000{letter-spacing:0.052704pt;}
.ls163_c00000{letter-spacing:0.052800pt;}
.ls65_c00000{letter-spacing:0.053440pt;}
.ls194_c00000{letter-spacing:0.055328pt;}
.ls6_c00000{letter-spacing:0.057600pt;}
.ls76_c00000{letter-spacing:0.058560pt;}
.ls5b_c00000{letter-spacing:0.058784pt;}
.ls59_c00000{letter-spacing:0.059584pt;}
.lsd_c00000{letter-spacing:0.059648pt;}
.lsa0_c00000{letter-spacing:0.061440pt;}
.ls145_c00000{letter-spacing:0.062400pt;}
.ls18b_c00000{letter-spacing:0.063840pt;}
.ls3a_c00000{letter-spacing:0.064000pt;}
.ls8f_c00000{letter-spacing:0.064128pt;}
.ls78_c00000{letter-spacing:0.064416pt;}
.lsb_c00000{letter-spacing:0.067104pt;}
.ls149_c00000{letter-spacing:0.067200pt;}
.ls19a_c00000{letter-spacing:0.068096pt;}
.ls94_c00000{letter-spacing:0.069472pt;}
.ls48_c00000{letter-spacing:0.070272pt;}
.ls2c_c00000{letter-spacing:0.070400pt;}
.ls143_c00000{letter-spacing:0.072000pt;}
.ls177_c00000{letter-spacing:0.072352pt;}
.ls25_c00000{letter-spacing:0.074560pt;}
.ls5d_c00000{letter-spacing:0.074816pt;}
.ls7d_c00000{letter-spacing:0.076128pt;}
.ls188_c00000{letter-spacing:0.076608pt;}
.ls7_c00000{letter-spacing:0.076800pt;}
.ls5a_c00000{letter-spacing:0.080000pt;}
.ls68_c00000{letter-spacing:0.080160pt;}
.ls192_c00000{letter-spacing:0.080864pt;}
.ls157_c00000{letter-spacing:0.081600pt;}
.ls81_c00000{letter-spacing:0.081984pt;}
.ls27_c00000{letter-spacing:0.082016pt;}
.ls55_c00000{letter-spacing:0.083200pt;}
.ls18e_c00000{letter-spacing:0.085120pt;}
.ls5e_c00000{letter-spacing:0.085504pt;}
.ls148_c00000{letter-spacing:0.086400pt;}
.ls7f_c00000{letter-spacing:0.087840pt;}
.ls195_c00000{letter-spacing:0.089376pt;}
.ls24_c00000{letter-spacing:0.089472pt;}
.ls33_c00000{letter-spacing:0.089600pt;}
.ls6c_c00000{letter-spacing:0.090848pt;}
.ls158_c00000{letter-spacing:0.091200pt;}
.ls191_c00000{letter-spacing:0.093632pt;}
.ls87_c00000{letter-spacing:0.093696pt;}
.ls15_c00000{letter-spacing:0.093952pt;}
.ls71_c00000{letter-spacing:0.096000pt;}
.ls90_c00000{letter-spacing:0.096192pt;}
.ls189_c00000{letter-spacing:0.097888pt;}
.ls85_c00000{letter-spacing:0.099552pt;}
.ls14b_c00000{letter-spacing:0.100800pt;}
.ls8d_c00000{letter-spacing:0.101536pt;}
.ls19b_c00000{letter-spacing:0.102144pt;}
.ls4a_c00000{letter-spacing:0.102400pt;}
.lsb0_c00000{letter-spacing:0.105408pt;}
.ls162_c00000{letter-spacing:0.105600pt;}
.ls199_c00000{letter-spacing:0.106400pt;}
.ls91_c00000{letter-spacing:0.106880pt;}
.ls2e_c00000{letter-spacing:0.108800pt;}
.ls15e_c00000{letter-spacing:0.110400pt;}
.ls193_c00000{letter-spacing:0.110656pt;}
.ls97_c00000{letter-spacing:0.111264pt;}
.ls6e_c00000{letter-spacing:0.112224pt;}
.ls182_c00000{letter-spacing:0.114912pt;}
.lsd8_c00000{letter-spacing:0.115200pt;}
.lsaf_c00000{letter-spacing:0.117120pt;}
.ls5c_c00000{letter-spacing:0.117568pt;}
.ls183_c00000{letter-spacing:0.119168pt;}
.lsc_c00000{letter-spacing:0.119296pt;}
.ls164_c00000{letter-spacing:0.120000pt;}
.lsb5_c00000{letter-spacing:0.121600pt;}
.ls14c_c00000{letter-spacing:0.122912pt;}
.ls1dd_c00000{letter-spacing:0.122976pt;}
.ls1c2_c00000{letter-spacing:0.123424pt;}
.ls16e_c00000{letter-spacing:0.124480pt;}
.ls1a8_c00000{letter-spacing:0.127680pt;}
.ls4c_c00000{letter-spacing:0.128000pt;}
.ls130_c00000{letter-spacing:0.128256pt;}
.ls16f_c00000{letter-spacing:0.129600pt;}
.ls1c1_c00000{letter-spacing:0.131936pt;}
.ls136_c00000{letter-spacing:0.133600pt;}
.lsf4_c00000{letter-spacing:0.134400pt;}
.ls112_c00000{letter-spacing:0.134688pt;}
.ls245_c00000{letter-spacing:0.136320pt;}
.ls12e_c00000{letter-spacing:0.138944pt;}
.ls1bd_c00000{letter-spacing:0.140448pt;}
.lsc2_c00000{letter-spacing:0.140544pt;}
.lsb6_c00000{letter-spacing:0.140800pt;}
.ls1d9_c00000{letter-spacing:0.144288pt;}
.ls1be_c00000{letter-spacing:0.144704pt;}
.ls114_c00000{letter-spacing:0.146400pt;}
.ls179_c00000{letter-spacing:0.147200pt;}
.ls15c_c00000{letter-spacing:0.149632pt;}
.ls26c_c00000{letter-spacing:0.152256pt;}
.ls1a3_c00000{letter-spacing:0.153216pt;}
.lsc6_c00000{letter-spacing:0.153600pt;}
.ls12d_c00000{letter-spacing:0.154976pt;}
.ls25d_c00000{letter-spacing:0.157472pt;}
.ls9a_c00000{letter-spacing:0.158112pt;}
.ls10a_c00000{letter-spacing:0.160000pt;}
.ls8b_c00000{letter-spacing:0.160320pt;}
.ls175_c00000{letter-spacing:0.161728pt;}
.lsf5_c00000{letter-spacing:0.166400pt;}
.ls22_c00000{letter-spacing:0.171488pt;}
.ls17f_c00000{letter-spacing:0.172800pt;}
.ls23b_c00000{letter-spacing:0.175680pt;}
.lsbf_c00000{letter-spacing:0.179200pt;}
.ls1da_c00000{letter-spacing:0.181696pt;}
.ls23a_c00000{letter-spacing:0.185600pt;}
.ls1a6_c00000{letter-spacing:0.191520pt;}
.ls231_c00000{letter-spacing:0.192000pt;}
.ls121_c00000{letter-spacing:0.198400pt;}
.lse4_c00000{letter-spacing:0.199104pt;}
.lsd9_c00000{letter-spacing:0.204800pt;}
.lse3_c00000{letter-spacing:0.204960pt;}
.ls21d_c00000{letter-spacing:0.211200pt;}
.ls265_c00000{letter-spacing:0.212800pt;}
.ls173_c00000{letter-spacing:0.213760pt;}
.ls22c_c00000{letter-spacing:0.217600pt;}
.ls1f5_c00000{letter-spacing:0.222528pt;}
.lsfc_c00000{letter-spacing:0.224000pt;}
.lse5_c00000{letter-spacing:0.228384pt;}
.ls22a_c00000{letter-spacing:0.230400pt;}
.lsea_c00000{letter-spacing:0.234240pt;}
.ls232_c00000{letter-spacing:0.236800pt;}
.ls244_c00000{letter-spacing:0.240000pt;}
.lse0_c00000{letter-spacing:0.245952pt;}
.ls1e0_c00000{letter-spacing:0.249600pt;}
.ls22b_c00000{letter-spacing:0.256000pt;}
.ls270_c00000{letter-spacing:0.259616pt;}
.ls230_c00000{letter-spacing:0.268800pt;}
.lse2_c00000{letter-spacing:0.269376pt;}
.ls22f_c00000{letter-spacing:0.275200pt;}
.ls272_c00000{letter-spacing:0.280896pt;}
.lsc1_c00000{letter-spacing:0.281600pt;}
.ls22d_c00000{letter-spacing:0.288000pt;}
.lsdf_c00000{letter-spacing:0.294400pt;}
.lsdb_c00000{letter-spacing:0.300800pt;}
.ls56_c00000{letter-spacing:0.320000pt;}
.lse7_c00000{letter-spacing:0.332800pt;}
.lsde_c00000{letter-spacing:0.364800pt;}
.ls1c5_c00000{letter-spacing:0.366016pt;}
.lsd0_c00000{letter-spacing:0.384000pt;}
.ls27b_c00000{letter-spacing:0.398208pt;}
.ls11_c00000{letter-spacing:0.432448pt;}
.ls9d_c00000{letter-spacing:0.433344pt;}
.lse_c00000{letter-spacing:0.439904pt;}
.lsc5_c00000{letter-spacing:0.448000pt;}
.lse1_c00000{letter-spacing:0.462624pt;}
.lsae_c00000{letter-spacing:0.480192pt;}
.lsa8_c00000{letter-spacing:0.640000pt;}
.ls20c_c00000{letter-spacing:0.720288pt;}
.ls4e_c00000{letter-spacing:0.960000pt;}
.ls13b_c00000{letter-spacing:1.280000pt;}
.ls10f_c00000{letter-spacing:1.358592pt;}
.ls1d0_c00000{letter-spacing:1.600000pt;}
.ls7e_c00000{letter-spacing:1.920000pt;}
.ls128_c00000{letter-spacing:2.002752pt;}
.ls16a_c00000{letter-spacing:2.240000pt;}
.ls54_c00000{letter-spacing:2.560000pt;}
.ls204_c00000{letter-spacing:2.600064pt;}
.ls13e_c00000{letter-spacing:2.880000pt;}
.lsc0_c00000{letter-spacing:3.200000pt;}
.ls1d8_c00000{letter-spacing:3.520000pt;}
.ls10c_c00000{letter-spacing:3.601440pt;}
.ls20e_c00000{letter-spacing:3.648000pt;}
.ls10b_c00000{letter-spacing:3.840000pt;}
.ls159_c00000{letter-spacing:3.998400pt;}
.ls123_c00000{letter-spacing:4.160000pt;}
.ls1bc_c00000{letter-spacing:4.480000pt;}
.lsc3_c00000{letter-spacing:4.800000pt;}
.ls21b_c00000{letter-spacing:4.878048pt;}
.ls4b_c00000{letter-spacing:5.120000pt;}
.lsf8_c00000{letter-spacing:5.440000pt;}
.ls17b_c00000{letter-spacing:5.760000pt;}
.ls23e_c00000{letter-spacing:6.000000pt;}
.ls51_c00000{letter-spacing:6.080000pt;}
.ls4f_c00000{letter-spacing:6.720000pt;}
.ls82_c00000{letter-spacing:6.958560pt;}
.lsab_c00000{letter-spacing:7.360000pt;}
.ls57_c00000{letter-spacing:7.680000pt;}
.lsd5_c00000{letter-spacing:8.000000pt;}
.lsfd_c00000{letter-spacing:8.320000pt;}
.ls12b_c00000{letter-spacing:8.719584pt;}
.ls11e_c00000{letter-spacing:9.280000pt;}
.ls58_c00000{letter-spacing:9.600000pt;}
.ls24a_c00000{letter-spacing:9.728000pt;}
.lscd_c00000{letter-spacing:9.920000pt;}
.lsa7_c00000{letter-spacing:10.560000pt;}
.lse6_c00000{letter-spacing:11.200000pt;}
.ls127_c00000{letter-spacing:12.160000pt;}
.ls49_c00000{letter-spacing:12.800000pt;}
.ls205_c00000{letter-spacing:12.877344pt;}
.ls214_c00000{letter-spacing:13.120000pt;}
.ls13d_c00000{letter-spacing:13.440000pt;}
.ls238_c00000{letter-spacing:14.481888pt;}
.ls52_c00000{letter-spacing:14.720000pt;}
.ls216_c00000{letter-spacing:15.079200pt;}
.ls20f_c00000{letter-spacing:15.360000pt;}
.ls12a_c00000{letter-spacing:15.442272pt;}
.ls13f_c00000{letter-spacing:15.680000pt;}
.lsc9_c00000{letter-spacing:16.000000pt;}
.ls206_c00000{letter-spacing:16.184160pt;}
.ls239_c00000{letter-spacing:16.320000pt;}
.ls129_c00000{letter-spacing:17.679264pt;}
.ls12c_c00000{letter-spacing:17.840000pt;}
.ls16b_c00000{letter-spacing:17.920000pt;}
.ls53_c00000{letter-spacing:18.560000pt;}
.ls215_c00000{letter-spacing:18.598656pt;}
.ls1ce_c00000{letter-spacing:18.880000pt;}
.ls1b3_c00000{letter-spacing:19.520000pt;}
.ls10e_c00000{letter-spacing:19.600032pt;}
.ls249_c00000{letter-spacing:19.840000pt;}
.ls126_c00000{letter-spacing:20.480000pt;}
.ls45_c00000{letter-spacing:21.440000pt;}
.ls70_c00000{letter-spacing:21.568000pt;}
.lsbd_c00000{letter-spacing:22.080000pt;}
.ls13c_c00000{letter-spacing:22.720000pt;}
.lsca_c00000{letter-spacing:23.360000pt;}
.ls10d_c00000{letter-spacing:23.441568pt;}
.ls23d_c00000{letter-spacing:24.320000pt;}
.ls120_c00000{letter-spacing:24.768000pt;}
.ls217_c00000{letter-spacing:24.999264pt;}
.ls6f_c00000{letter-spacing:25.408000pt;}
.ls248_c00000{letter-spacing:25.600000pt;}
.ls170_c00000{letter-spacing:25.840000pt;}
.ls122_c00000{letter-spacing:26.560000pt;}
.ls11f_c00000{letter-spacing:28.608000pt;}
.ls1dc_c00000{letter-spacing:29.120000pt;}
.ls11d_c00000{letter-spacing:30.400000pt;}
.ls24b_c00000{letter-spacing:31.688672pt;}
.ls207_c00000{letter-spacing:34.603104pt;}
.ls247_c00000{letter-spacing:35.648000pt;}
.ls41_c00000{letter-spacing:39.168000pt;}
.lsd4_c00000{letter-spacing:41.600000pt;}
.ls246_c00000{letter-spacing:41.728000pt;}
.ls115_c00000{letter-spacing:45.568000pt;}
.ls40_c00000{letter-spacing:48.768000pt;}
.ls102_c00000{letter-spacing:56.502112pt;}
.ls21e_c00000{letter-spacing:59.200000pt;}
.ls9f_c00000{letter-spacing:59.840000pt;}
.ls111_c00000{letter-spacing:60.878976pt;}
.ls21c_c00000{letter-spacing:62.480000pt;}
.ls43_c00000{letter-spacing:64.650304pt;}
.lsda_c00000{letter-spacing:64.880000pt;}
.ls9b_c00000{letter-spacing:65.200000pt;}
.ls1e2_c00000{letter-spacing:67.520000pt;}
.ls98_c00000{letter-spacing:67.840000pt;}
.ls234_c00000{letter-spacing:68.558944pt;}
.ls1cd_c00000{letter-spacing:70.160000pt;}
.ls185_c00000{letter-spacing:70.480000pt;}
.ls86_c00000{letter-spacing:70.480224pt;}
.ls11b_c00000{letter-spacing:73.200000pt;}
.ls203_c00000{letter-spacing:75.008000pt;}
.ls3f_c00000{letter-spacing:76.800000pt;}
.ls21a_c00000{letter-spacing:79.040000pt;}
.ls20b_c00000{letter-spacing:84.519648pt;}
.ls1af_c00000{letter-spacing:94.000000pt;}
.ls96_c00000{letter-spacing:96.960000pt;}
.ls219_c00000{letter-spacing:97.280000pt;}
.ls1c4_c00000{letter-spacing:98.159467pt;}
.ls3d_c00000{letter-spacing:108.800000pt;}
.ls25c_c00000{letter-spacing:119.920000pt;}
.ls25b_c00000{letter-spacing:120.240000pt;}
.ls181_c00000{letter-spacing:121.840000pt;}
.ls11a_c00000{letter-spacing:133.040000pt;}
.ls262_c00000{letter-spacing:133.040608pt;}
.ls1cc_c00000{letter-spacing:135.360000pt;}
.ls9e_c00000{letter-spacing:140.720000pt;}
.ls1ac_c00000{letter-spacing:140.721792pt;}
.ls25a_c00000{letter-spacing:141.360000pt;}
.ls259_c00000{letter-spacing:141.680000pt;}
.ls1ae_c00000{letter-spacing:144.238048pt;}
.ls1b1_c00000{letter-spacing:144.238080pt;}
.ls11c_c00000{letter-spacing:145.520000pt;}
.ls25f_c00000{letter-spacing:151.922176pt;}
.ls25e_c00000{letter-spacing:152.241376pt;}
.ls19d_c00000{letter-spacing:160.561856pt;}
.ls1d3_c00000{letter-spacing:167.762112pt;}
.ls3c_c00000{letter-spacing:172.800000pt;}
.ls9c_c00000{letter-spacing:174.157440pt;}
.ls63_c00000{letter-spacing:175.438176pt;}
.lsc8_c00000{letter-spacing:179.440000pt;}
.ls1d2_c00000{letter-spacing:189.840960pt;}
.ls233_c00000{letter-spacing:200.404064pt;}
.ls174_c00000{letter-spacing:206.960000pt;}
.ls1d4_c00000{letter-spacing:209.040128pt;}
.lsa4_c00000{letter-spacing:210.880000pt;}
.ls99_c00000{letter-spacing:215.920000pt;}
.ls80_c00000{letter-spacing:216.240000pt;}
.lsb4_c00000{letter-spacing:218.880000pt;}
.ls84_c00000{letter-spacing:221.520000pt;}
.ls213_c00000{letter-spacing:224.240000pt;}
.ls26f_c00000{letter-spacing:235.358496pt;}
.ls178_c00000{letter-spacing:245.840000pt;}
.ls1c6_c00000{letter-spacing:257.680000pt;}
.ls1d1_c00000{letter-spacing:260.241888pt;}
.ls198_c00000{letter-spacing:284.400000pt;}
.ls2_c00000{letter-spacing:287.402433pt;}
.ls186_c00000{letter-spacing:296.320000pt;}
.ls1a9_c00000{letter-spacing:299.759200pt;}
.ls23c_c00000{letter-spacing:308.720000pt;}
.ls237_c00000{letter-spacing:320.880000pt;}
.ls260_c00000{letter-spacing:321.198368pt;}
.ls252_c00000{letter-spacing:344.879648pt;}
.ls263_c00000{letter-spacing:370.798208pt;}
.ls1ad_c00000{letter-spacing:400.561952pt;}
.ls235_c00000{letter-spacing:430.159456pt;}
.ls271_c00000{letter-spacing:442.560000pt;}
.ls251_c00000{letter-spacing:458.800000pt;}
.ls264_c00000{letter-spacing:487.280256pt;}
.ls236_c00000{letter-spacing:501.838240pt;}
.ls255_c00000{letter-spacing:508.401568pt;}
.ls24f_c00000{letter-spacing:509.678368pt;}
.ls24e_c00000{letter-spacing:530.798752pt;}
.ls261_c00000{letter-spacing:538.160736pt;}
.ls253_c00000{letter-spacing:542.638944pt;}
.ls1aa_c00000{letter-spacing:666.481088pt;}
.ls116_c00000{letter-spacing:680.000000pt;}
.ls1a0_c00000{letter-spacing:682.479392pt;}
.ls19f_c00000{letter-spacing:693.038528pt;}
.ls1b0_c00000{letter-spacing:703.601920pt;}
.ls20a_c00000{letter-spacing:715.120000pt;}
.ls250_c00000{letter-spacing:726.640736pt;}
.ls202_c00000{letter-spacing:743.760000pt;}
.ls1b8_c00000{letter-spacing:762.000960pt;}
.ls1b9_c00000{letter-spacing:770.640000pt;}
.ls229_c00000{letter-spacing:777.840000pt;}
.ls20d_c00000{letter-spacing:780.800000pt;}
.ls24d_c00000{letter-spacing:790.321120pt;}
.ls1ab_c00000{letter-spacing:829.358208pt;}
.ls1a7_c00000{letter-spacing:829.360000pt;}
.ls279_c00000{letter-spacing:843.279136pt;}
.ls278_c00000{letter-spacing:932.559712pt;}
.ls27a_c00000{letter-spacing:988.238560pt;}
.ls254_c00000{letter-spacing:1001.518752pt;}
.ls275_c00000{letter-spacing:1035.279808pt;}
.ls277_c00000{letter-spacing:1079.439904pt;}
.ls24c_c00000{letter-spacing:1091.440000pt;}
.ls1b6_c00000{letter-spacing:1111.440000pt;}
.ls2b_c00000{letter-spacing:1115.119360pt;}
.ls1_c00000{letter-spacing:1118.645685pt;}
.ls44_c00000{letter-spacing:1123.120000pt;}
.ls276_c00000{letter-spacing:1151.117344pt;}
.ls196_c00000{letter-spacing:1151.920000pt;}
.ls17c_c00000{letter-spacing:1178.640576pt;}
.ls17d_c00000{letter-spacing:1187.281824pt;}
.ls1c3_c00000{letter-spacing:1566.480000pt;}
.ls1c8_c00000{letter-spacing:1588.240000pt;}
.ls1cb_c00000{letter-spacing:1614.800000pt;}
.ls171_c00000{letter-spacing:1949.440000pt;}
.ws2_c00000{word-spacing:-128.000000pt;}
.wsb_c00000{word-spacing:-117.440000pt;}
.wsc2_c00000{word-spacing:-64.000000pt;}
.wsc9a_c00000{word-spacing:-58.560000pt;}
.wsd4_c00000{word-spacing:-42.560000pt;}
.ws18a9_c00000{word-spacing:-16.275200pt;}
.ws1866_c00000{word-spacing:-16.217600pt;}
.wsa77_c00000{word-spacing:-16.140800pt;}
.ws12b7_c00000{word-spacing:-16.128000pt;}
.ws17bb_c00000{word-spacing:-16.115200pt;}
.wsad0_c00000{word-spacing:-16.108800pt;}
.ws9a3_c00000{word-spacing:-16.102400pt;}
.ws738_c00000{word-spacing:-16.096000pt;}
.ws644_c00000{word-spacing:-16.089600pt;}
.ws688_c00000{word-spacing:-16.083200pt;}
.ws30b_c00000{word-spacing:-16.076800pt;}
.ws3bd_c00000{word-spacing:-16.070400pt;}
.ws5c6_c00000{word-spacing:-16.064000pt;}
.ws67d_c00000{word-spacing:-16.057600pt;}
.ws156_c00000{word-spacing:-16.051200pt;}
.ws490_c00000{word-spacing:-16.044800pt;}
.ws1fd_c00000{word-spacing:-16.038400pt;}
.ws491_c00000{word-spacing:-16.032000pt;}
.ws2b5_c00000{word-spacing:-16.025600pt;}
.ws55d_c00000{word-spacing:-16.019200pt;}
.ws55b_c00000{word-spacing:-16.012800pt;}
.ws1fe_c00000{word-spacing:-16.006400pt;}
.wsa7_c00000{word-spacing:-16.000000pt;}
.ws410_c00000{word-spacing:-15.993600pt;}
.ws5c5_c00000{word-spacing:-15.987200pt;}
.ws621_c00000{word-spacing:-15.980800pt;}
.ws82b_c00000{word-spacing:-15.974400pt;}
.wsdb_c00000{word-spacing:-15.968000pt;}
.ws5a1_c00000{word-spacing:-15.961600pt;}
.ws67c_c00000{word-spacing:-15.955200pt;}
.ws937_c00000{word-spacing:-15.948800pt;}
.ws55a_c00000{word-spacing:-15.942400pt;}
.ws795_c00000{word-spacing:-15.936000pt;}
.ws687_c00000{word-spacing:-15.929600pt;}
.ws1bf_c00000{word-spacing:-15.923200pt;}
.ws689_c00000{word-spacing:-15.916800pt;}
.ws17ea_c00000{word-spacing:-15.910400pt;}
.wse56_c00000{word-spacing:-15.904000pt;}
.ws8db_c00000{word-spacing:-15.897600pt;}
.wsb2a_c00000{word-spacing:-15.865600pt;}
.wsce3_c00000{word-spacing:-15.840000pt;}
.wsaef_c00000{word-spacing:-15.827200pt;}
.ws2b4_c00000{word-spacing:-15.820800pt;}
.wsacf_c00000{word-spacing:-15.814400pt;}
.ws1a44_c00000{word-spacing:-15.808000pt;}
.ws1802_c00000{word-spacing:-15.500800pt;}
.ws55c_c00000{word-spacing:-15.360000pt;}
.wsd97_c00000{word-spacing:-14.798112pt;}
.ws16a5_c00000{word-spacing:-14.780544pt;}
.ws1686_c00000{word-spacing:-14.774688pt;}
.ws1678_c00000{word-spacing:-14.762976pt;}
.ws161c_c00000{word-spacing:-14.751264pt;}
.ws1757_c00000{word-spacing:-14.739552pt;}
.ws5ca_c00000{word-spacing:-14.727840pt;}
.ws5cb_c00000{word-spacing:-14.721984pt;}
.ws57f_c00000{word-spacing:-14.716128pt;}
.ws6b6_c00000{word-spacing:-14.710272pt;}
.ws16a6_c00000{word-spacing:-14.704416pt;}
.ws1679_c00000{word-spacing:-14.698560pt;}
.ws5cc_c00000{word-spacing:-14.686848pt;}
.wsd9d_c00000{word-spacing:-14.680992pt;}
.ws5c9_c00000{word-spacing:-14.675136pt;}
.ws5ce_c00000{word-spacing:-14.669280pt;}
.ws5c7_c00000{word-spacing:-14.663424pt;}
.wsf95_c00000{word-spacing:-14.657568pt;}
.ws168a_c00000{word-spacing:-14.651712pt;}
.ws6b7_c00000{word-spacing:-14.645856pt;}
.ws1502_c00000{word-spacing:-14.640000pt;}
.ws5cd_c00000{word-spacing:-14.634144pt;}
.ws7bb_c00000{word-spacing:-14.628288pt;}
.ws1ac2_c00000{word-spacing:-14.622432pt;}
.ws16a7_c00000{word-spacing:-14.610720pt;}
.ws1682_c00000{word-spacing:-14.599008pt;}
.ws5c8_c00000{word-spacing:-14.587296pt;}
.ws170a_c00000{word-spacing:-14.569728pt;}
.ws1645_c00000{word-spacing:-13.650336pt;}
.ws526_c00000{word-spacing:-13.520320pt;}
.ws12fc_c00000{word-spacing:-13.514976pt;}
.ws1687_c00000{word-spacing:-13.488256pt;}
.ws152a_c00000{word-spacing:-13.461536pt;}
.ws1688_c00000{word-spacing:-13.450848pt;}
.ws107a_c00000{word-spacing:-13.445504pt;}
.ws102b_c00000{word-spacing:-13.440160pt;}
.ws1021_c00000{word-spacing:-13.434816pt;}
.ws1683_c00000{word-spacing:-13.424128pt;}
.ws152b_c00000{word-spacing:-13.413440pt;}
.ws152c_c00000{word-spacing:-13.402752pt;}
.ws101f_c00000{word-spacing:-13.386720pt;}
.ws170f_c00000{word-spacing:-13.370688pt;}
.ws525_c00000{word-spacing:-13.365344pt;}
.ws237_c00000{word-spacing:-13.360000pt;}
.ws1237_c00000{word-spacing:-13.343968pt;}
.ws1022_c00000{word-spacing:-13.338624pt;}
.ws1053_c00000{word-spacing:-13.333280pt;}
.ws1023_c00000{word-spacing:-13.322592pt;}
.ws1710_c00000{word-spacing:-13.317248pt;}
.ws152d_c00000{word-spacing:-13.311904pt;}
.ws1029_c00000{word-spacing:-13.301216pt;}
.ws1020_c00000{word-spacing:-13.285184pt;}
.ws18b8_c00000{word-spacing:-13.263808pt;}
.ws1a60_c00000{word-spacing:-13.258464pt;}
.ws107b_c00000{word-spacing:-13.237088pt;}
.ws1689_c00000{word-spacing:-13.226400pt;}
.wsfaf_c00000{word-spacing:-13.221056pt;}
.ws1685_c00000{word-spacing:-13.205024pt;}
.ws101e_c00000{word-spacing:-13.194336pt;}
.ws168b_c00000{word-spacing:-13.178304pt;}
.ws1448_c00000{word-spacing:-13.167616pt;}
.ws1684_c00000{word-spacing:-13.044704pt;}
.ws102a_c00000{word-spacing:-12.100800pt;}
.ws1a72_c00000{word-spacing:-12.081600pt;}
.ws1a70_c00000{word-spacing:-12.052800pt;}
.ws1a73_c00000{word-spacing:-12.043200pt;}
.ws1a71_c00000{word-spacing:-12.038400pt;}
.ws13e4_c00000{word-spacing:-12.004800pt;}
.ws13e3_c00000{word-spacing:-12.000000pt;}
.ws13e5_c00000{word-spacing:-11.985600pt;}
.ws1a51_c00000{word-spacing:-10.801728pt;}
.ws179b_c00000{word-spacing:-10.695328pt;}
.wsda_c00000{word-spacing:-10.665536pt;}
.ws19d0_c00000{word-spacing:-10.635744pt;}
.ws11df_c00000{word-spacing:-0.460800pt;}
.wscf9_c00000{word-spacing:-0.416000pt;}
.wsb59_c00000{word-spacing:-0.409600pt;}
.ws97e_c00000{word-spacing:-0.403200pt;}
.ws145b_c00000{word-spacing:-0.400800pt;}
.ws945_c00000{word-spacing:-0.396800pt;}
.ws1530_c00000{word-spacing:-0.395456pt;}
.wsc70_c00000{word-spacing:-0.390400pt;}
.ws1aa0_c00000{word-spacing:-0.390112pt;}
.wseae_c00000{word-spacing:-0.384000pt;}
.ws1273_c00000{word-spacing:-0.379424pt;}
.wsaea_c00000{word-spacing:-0.377600pt;}
.ws18c1_c00000{word-spacing:-0.374080pt;}
.ws651_c00000{word-spacing:-0.371200pt;}
.ws1612_c00000{word-spacing:-0.368736pt;}
.wsf0d_c00000{word-spacing:-0.364800pt;}
.ws152f_c00000{word-spacing:-0.363392pt;}
.ws1aaa_c00000{word-spacing:-0.361760pt;}
.ws1831_c00000{word-spacing:-0.358400pt;}
.wsfc8_c00000{word-spacing:-0.358048pt;}
.ws1405_c00000{word-spacing:-0.352704pt;}
.wsd23_c00000{word-spacing:-0.352000pt;}
.ws59d_c00000{word-spacing:-0.351360pt;}
.ws557_c00000{word-spacing:-0.347360pt;}
.wsa6e_c00000{word-spacing:-0.345600pt;}
.ws1153_c00000{word-spacing:-0.342016pt;}
.ws1aab_c00000{word-spacing:-0.340480pt;}
.wscb9_c00000{word-spacing:-0.339648pt;}
.ws629_c00000{word-spacing:-0.339200pt;}
.wse8f_c00000{word-spacing:-0.336672pt;}
.ws11f7_c00000{word-spacing:-0.333792pt;}
.ws909_c00000{word-spacing:-0.332800pt;}
.wse8a_c00000{word-spacing:-0.331328pt;}
.wscb_c00000{word-spacing:-0.326400pt;}
.ws1042_c00000{word-spacing:-0.325984pt;}
.wsc7e_c00000{word-spacing:-0.322080pt;}
.ws246_c00000{word-spacing:-0.320640pt;}
.ws297_c00000{word-spacing:-0.320000pt;}
.ws54a_c00000{word-spacing:-0.315296pt;}
.wsb8_c00000{word-spacing:-0.313600pt;}
.ws19b6_c00000{word-spacing:-0.310368pt;}
.wsd78_c00000{word-spacing:-0.309952pt;}
.ws134d_c00000{word-spacing:-0.307200pt;}
.wsd86_c00000{word-spacing:-0.304608pt;}
.ws1666_c00000{word-spacing:-0.304512pt;}
.wsd1_c00000{word-spacing:-0.300800pt;}
.ws552_c00000{word-spacing:-0.299264pt;}
.ws11fa_c00000{word-spacing:-0.298656pt;}
.wsa11_c00000{word-spacing:-0.294400pt;}
.ws547_c00000{word-spacing:-0.293920pt;}
.ws160e_c00000{word-spacing:-0.292800pt;}
.wsd7d_c00000{word-spacing:-0.288576pt;}
.wsb55_c00000{word-spacing:-0.288000pt;}
.ws19a1_c00000{word-spacing:-0.286944pt;}
.wsd7c_c00000{word-spacing:-0.283232pt;}
.wsb6f_c00000{word-spacing:-0.281600pt;}
.ws1051_c00000{word-spacing:-0.277888pt;}
.ws8b6_c00000{word-spacing:-0.275200pt;}
.wsd79_c00000{word-spacing:-0.272544pt;}
.ws1391_c00000{word-spacing:-0.272384pt;}
.wsee0_c00000{word-spacing:-0.268800pt;}
.ws24a_c00000{word-spacing:-0.267200pt;}
.ws14bf_c00000{word-spacing:-0.263520pt;}
.ws12b8_c00000{word-spacing:-0.262400pt;}
.wsd83_c00000{word-spacing:-0.261856pt;}
.ws10cd_c00000{word-spacing:-0.259200pt;}
.wsd84_c00000{word-spacing:-0.256512pt;}
.wsd9c_c00000{word-spacing:-0.256000pt;}
.ws109e_c00000{word-spacing:-0.254400pt;}
.ws1026_c00000{word-spacing:-0.251168pt;}
.ws11d5_c00000{word-spacing:-0.249600pt;}
.ws1a_c00000{word-spacing:-0.246048pt;}
.ws1077_c00000{word-spacing:-0.245824pt;}
.ws15f_c00000{word-spacing:-0.243200pt;}
.ws143d_c00000{word-spacing:-0.242592pt;}
.ws248_c00000{word-spacing:-0.240480pt;}
.ws1681_c00000{word-spacing:-0.240096pt;}
.ws10ad_c00000{word-spacing:-0.240000pt;}
.ws1a79_c00000{word-spacing:-0.238336pt;}
.wsd32_c00000{word-spacing:-0.236800pt;}
.wsd85_c00000{word-spacing:-0.235136pt;}
.ws9ef_c00000{word-spacing:-0.234240pt;}
.ws137_c00000{word-spacing:-0.230400pt;}
.wsd81_c00000{word-spacing:-0.229792pt;}
.ws1441_c00000{word-spacing:-0.225568pt;}
.ws24b_c00000{word-spacing:-0.224448pt;}
.ws83a_c00000{word-spacing:-0.224000pt;}
.ws143c_c00000{word-spacing:-0.221312pt;}
.wsd76_c00000{word-spacing:-0.219104pt;}
.wscc_c00000{word-spacing:-0.217600pt;}
.ws10ca_c00000{word-spacing:-0.213760pt;}
.ws143f_c00000{word-spacing:-0.212800pt;}
.ws5_c00000{word-spacing:-0.211392pt;}
.ws47a_c00000{word-spacing:-0.211200pt;}
.ws139b_c00000{word-spacing:-0.208544pt;}
.ws108e_c00000{word-spacing:-0.208416pt;}
.ws10c1_c00000{word-spacing:-0.206400pt;}
.wsd9_c00000{word-spacing:-0.204800pt;}
.ws1442_c00000{word-spacing:-0.204288pt;}
.wsd80_c00000{word-spacing:-0.203072pt;}
.ws12fe_c00000{word-spacing:-0.200032pt;}
.ws3c6_c00000{word-spacing:-0.198400pt;}
.ws1112_c00000{word-spacing:-0.197728pt;}
.ws10a8_c00000{word-spacing:-0.196800pt;}
.ws12fd_c00000{word-spacing:-0.195776pt;}
.ws1082_c00000{word-spacing:-0.192384pt;}
.ws974_c00000{word-spacing:-0.192000pt;}
.ws137a_c00000{word-spacing:-0.191520pt;}
.ws1384_c00000{word-spacing:-0.187264pt;}
.ws107d_c00000{word-spacing:-0.187200pt;}
.ws1091_c00000{word-spacing:-0.187040pt;}
.wsbd_c00000{word-spacing:-0.185600pt;}
.ws138b_c00000{word-spacing:-0.183008pt;}
.ws1098_c00000{word-spacing:-0.182400pt;}
.ws1095_c00000{word-spacing:-0.181696pt;}
.ws13b_c00000{word-spacing:-0.179200pt;}
.ws1365_c00000{word-spacing:-0.178752pt;}
.ws109d_c00000{word-spacing:-0.177600pt;}
.ws1a85_c00000{word-spacing:-0.176352pt;}
.ws1377_c00000{word-spacing:-0.174496pt;}
.wsc6_c00000{word-spacing:-0.172800pt;}
.ws10ab_c00000{word-spacing:-0.171008pt;}
.ws137c_c00000{word-spacing:-0.170240pt;}
.ws1074_c00000{word-spacing:-0.168000pt;}
.ws1_c00000{word-spacing:-0.166400pt;}
.ws1372_c00000{word-spacing:-0.165984pt;}
.ws2b3_c00000{word-spacing:-0.165664pt;}
.ws109c_c00000{word-spacing:-0.163200pt;}
.ws1378_c00000{word-spacing:-0.161728pt;}
.ws1123_c00000{word-spacing:-0.160320pt;}
.wsd5_c00000{word-spacing:-0.160000pt;}
.ws104c_c00000{word-spacing:-0.158400pt;}
.ws1364_c00000{word-spacing:-0.157472pt;}
.ws1f_c00000{word-spacing:-0.156576pt;}
.wsd7f_c00000{word-spacing:-0.154976pt;}
.wse_c00000{word-spacing:-0.153600pt;}
.ws138e_c00000{word-spacing:-0.153216pt;}
.ws103b_c00000{word-spacing:-0.149632pt;}
.ws1438_c00000{word-spacing:-0.148960pt;}
.ws85_c00000{word-spacing:-0.147200pt;}
.ws1368_c00000{word-spacing:-0.144704pt;}
.ws104f_c00000{word-spacing:-0.144288pt;}
.ws12_c00000{word-spacing:-0.141664pt;}
.wsb5_c00000{word-spacing:-0.140800pt;}
.ws527_c00000{word-spacing:-0.140544pt;}
.ws239_c00000{word-spacing:-0.140448pt;}
.ws1064_c00000{word-spacing:-0.138944pt;}
.ws137b_c00000{word-spacing:-0.136192pt;}
.ws5f_c00000{word-spacing:-0.134400pt;}
.ws14_c00000{word-spacing:-0.134208pt;}
.ws1081_c00000{word-spacing:-0.133600pt;}
.ws1374_c00000{word-spacing:-0.131936pt;}
.ws106e_c00000{word-spacing:-0.129600pt;}
.ws1094_c00000{word-spacing:-0.128256pt;}
.wsaf_c00000{word-spacing:-0.128000pt;}
.ws137d_c00000{word-spacing:-0.127680pt;}
.ws24_c00000{word-spacing:-0.126752pt;}
.ws1366_c00000{word-spacing:-0.123424pt;}
.ws1083_c00000{word-spacing:-0.122912pt;}
.ws40_c00000{word-spacing:-0.121600pt;}
.ws1369_c00000{word-spacing:-0.119168pt;}
.ws1041_c00000{word-spacing:-0.117568pt;}
.ws3_c00000{word-spacing:-0.115200pt;}
.ws529_c00000{word-spacing:-0.114912pt;}
.ws1078_c00000{word-spacing:-0.112224pt;}
.ws17_c00000{word-spacing:-0.111840pt;}
.wsbf8_c00000{word-spacing:-0.111264pt;}
.ws1367_c00000{word-spacing:-0.110656pt;}
.ws75_c00000{word-spacing:-0.108800pt;}
.ws1305_c00000{word-spacing:-0.106880pt;}
.ws136a_c00000{word-spacing:-0.106400pt;}
.wsc_c00000{word-spacing:-0.105696pt;}
.wsf_c00000{word-spacing:-0.105600pt;}
.ws20_c00000{word-spacing:-0.104384pt;}
.wsca_c00000{word-spacing:-0.102400pt;}
.ws1371_c00000{word-spacing:-0.102144pt;}
.ws110a_c00000{word-spacing:-0.101536pt;}
.ws138c_c00000{word-spacing:-0.097888pt;}
.ws1b_c00000{word-spacing:-0.096928pt;}
.ws193a_c00000{word-spacing:-0.096192pt;}
.ws11_c00000{word-spacing:-0.096000pt;}
.wsa_c00000{word-spacing:-0.093952pt;}
.ws19a0_c00000{word-spacing:-0.093696pt;}
.ws136b_c00000{word-spacing:-0.093632pt;}
.ws1096_c00000{word-spacing:-0.090848pt;}
.wsae_c00000{word-spacing:-0.089600pt;}
.ws19_c00000{word-spacing:-0.089472pt;}
.ws1390_c00000{word-spacing:-0.089376pt;}
.ws152e_c00000{word-spacing:-0.085504pt;}
.ws52a_c00000{word-spacing:-0.085120pt;}
.wsc9_c00000{word-spacing:-0.083200pt;}
.ws8_c00000{word-spacing:-0.082208pt;}
.ws10_c00000{word-spacing:-0.082016pt;}
.ws1aac_c00000{word-spacing:-0.080864pt;}
.ws1097_c00000{word-spacing:-0.080160pt;}
.ws33_c00000{word-spacing:-0.076800pt;}
.ws23a_c00000{word-spacing:-0.076608pt;}
.ws1406_c00000{word-spacing:-0.074816pt;}
.wsd_c00000{word-spacing:-0.074560pt;}
.ws1a6d_c00000{word-spacing:-0.072352pt;}
.ws4_c00000{word-spacing:-0.070464pt;}
.ws3f_c00000{word-spacing:-0.070400pt;}
.ws1066_c00000{word-spacing:-0.069472pt;}
.ws143a_c00000{word-spacing:-0.068096pt;}
.ws110b_c00000{word-spacing:-0.064128pt;}
.wsb0_c00000{word-spacing:-0.064000pt;}
.ws1a6e_c00000{word-spacing:-0.063840pt;}
.ws1c_c00000{word-spacing:-0.059648pt;}
.ws1389_c00000{word-spacing:-0.059584pt;}
.ws7_c00000{word-spacing:-0.058720pt;}
.ws1593_c00000{word-spacing:-0.058560pt;}
.wsb6_c00000{word-spacing:-0.057600pt;}
.ws9d2_c00000{word-spacing:-0.056000pt;}
.ws238_c00000{word-spacing:-0.053440pt;}
.wsdf1_c00000{word-spacing:-0.052704pt;}
.ws15_c00000{word-spacing:-0.052192pt;}
.wsc8_c00000{word-spacing:-0.051200pt;}
.ws1aad_c00000{word-spacing:-0.051072pt;}
.ws1090_c00000{word-spacing:-0.048096pt;}
.ws84_c00000{word-spacing:-0.044800pt;}
.ws18_c00000{word-spacing:-0.044736pt;}
.ws104d_c00000{word-spacing:-0.042752pt;}
.wsb3_c00000{word-spacing:-0.038400pt;}
.ws145d_c00000{word-spacing:-0.037408pt;}
.ws6_c00000{word-spacing:-0.035232pt;}
.ws146f_c00000{word-spacing:-0.034048pt;}
.ws1240_c00000{word-spacing:-0.032064pt;}
.ws5e_c00000{word-spacing:-0.032000pt;}
.ws1a84_c00000{word-spacing:-0.029792pt;}
.wsd98_c00000{word-spacing:-0.029280pt;}
.ws1065_c00000{word-spacing:-0.026720pt;}
.ws6b_c00000{word-spacing:-0.025600pt;}
.wse91_c00000{word-spacing:-0.025536pt;}
.ws550_c00000{word-spacing:-0.021376pt;}
.ws1aae_c00000{word-spacing:-0.021280pt;}
.ws34_c00000{word-spacing:-0.019200pt;}
.ws4a1_c00000{word-spacing:-0.017568pt;}
.wsee1_c00000{word-spacing:-0.016032pt;}
.wsad_c00000{word-spacing:-0.012800pt;}
.wsa33_c00000{word-spacing:-0.011712pt;}
.wsd7b_c00000{word-spacing:-0.010688pt;}
.wsab_c00000{word-spacing:-0.006400pt;}
.ws605_c00000{word-spacing:-0.005856pt;}
.ws242_c00000{word-spacing:-0.005344pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.ws54f_c00000{word-spacing:0.005344pt;}
.ws3eb_c00000{word-spacing:0.005856pt;}
.wsac_c00000{word-spacing:0.006400pt;}
.ws54e_c00000{word-spacing:0.010688pt;}
.ws590_c00000{word-spacing:0.011712pt;}
.ws9_c00000{word-spacing:0.011744pt;}
.wsbb_c00000{word-spacing:0.012800pt;}
.ws555_c00000{word-spacing:0.016032pt;}
.ws418_c00000{word-spacing:0.017568pt;}
.wsc1_c00000{word-spacing:0.019200pt;}
.wsd7e_c00000{word-spacing:0.021376pt;}
.ws13_c00000{word-spacing:0.022368pt;}
.ws3ef_c00000{word-spacing:0.023424pt;}
.ws5e9_c00000{word-spacing:0.024576pt;}
.wsa8_c00000{word-spacing:0.025600pt;}
.ws23f_c00000{word-spacing:0.026720pt;}
.ws3ee_c00000{word-spacing:0.029280pt;}
.ws21_c00000{word-spacing:0.029824pt;}
.wsc7_c00000{word-spacing:0.032000pt;}
.wsd8c_c00000{word-spacing:0.032064pt;}
.ws3f6_c00000{word-spacing:0.035136pt;}
.ws1e_c00000{word-spacing:0.037280pt;}
.wsd88_c00000{word-spacing:0.037408pt;}
.wsc4_c00000{word-spacing:0.038400pt;}
.ws509_c00000{word-spacing:0.040992pt;}
.ws244_c00000{word-spacing:0.042752pt;}
.ws16_c00000{word-spacing:0.044736pt;}
.wsbe_c00000{word-spacing:0.044800pt;}
.ws37f_c00000{word-spacing:0.046848pt;}
.ws10fc_c00000{word-spacing:0.048096pt;}
.ws1620_c00000{word-spacing:0.051200pt;}
.ws46b_c00000{word-spacing:0.052704pt;}
.ws108c_c00000{word-spacing:0.052800pt;}
.ws1030_c00000{word-spacing:0.053440pt;}
.wscd_c00000{word-spacing:0.057600pt;}
.ws487_c00000{word-spacing:0.058560pt;}
.ws1050_c00000{word-spacing:0.058784pt;}
.ws105d_c00000{word-spacing:0.062400pt;}
.ws364_c00000{word-spacing:0.064000pt;}
.ws549_c00000{word-spacing:0.064128pt;}
.ws3ed_c00000{word-spacing:0.064416pt;}
.ws1060_c00000{word-spacing:0.067200pt;}
.wsd82_c00000{word-spacing:0.069472pt;}
.ws438_c00000{word-spacing:0.070272pt;}
.wsc81_c00000{word-spacing:0.070400pt;}
.ws1048_c00000{word-spacing:0.072000pt;}
.ws104e_c00000{word-spacing:0.074816pt;}
.ws1610_c00000{word-spacing:0.076128pt;}
.ws31f_c00000{word-spacing:0.076800pt;}
.ws241_c00000{word-spacing:0.080160pt;}
.ws1056_c00000{word-spacing:0.081600pt;}
.ws754_c00000{word-spacing:0.081984pt;}
.ws27f_c00000{word-spacing:0.083200pt;}
.wsd77_c00000{word-spacing:0.085504pt;}
.ws108b_c00000{word-spacing:0.086400pt;}
.ws7f3_c00000{word-spacing:0.087840pt;}
.ws5f8_c00000{word-spacing:0.089600pt;}
.ws245_c00000{word-spacing:0.090848pt;}
.ws1049_c00000{word-spacing:0.091200pt;}
.wse80_c00000{word-spacing:0.093696pt;}
.ws57b_c00000{word-spacing:0.096000pt;}
.wsd87_c00000{word-spacing:0.096192pt;}
.ws1235_c00000{word-spacing:0.099552pt;}
.ws1238_c00000{word-spacing:0.100800pt;}
.ws558_c00000{word-spacing:0.101536pt;}
.ws11db_c00000{word-spacing:0.102400pt;}
.ws1594_c00000{word-spacing:0.105408pt;}
.ws108d_c00000{word-spacing:0.105600pt;}
.ws247_c00000{word-spacing:0.106880pt;}
.wse87_c00000{word-spacing:0.108800pt;}
.ws1062_c00000{word-spacing:0.110400pt;}
.ws9af_c00000{word-spacing:0.111264pt;}
.wsd7a_c00000{word-spacing:0.112224pt;}
.wse95_c00000{word-spacing:0.115200pt;}
.ws19ad_c00000{word-spacing:0.117120pt;}
.wsee2_c00000{word-spacing:0.117568pt;}
.ws23_c00000{word-spacing:0.119296pt;}
.ws103f_c00000{word-spacing:0.120000pt;}
.wsb03_c00000{word-spacing:0.121600pt;}
.wsd89_c00000{word-spacing:0.122912pt;}
.ws160b_c00000{word-spacing:0.122976pt;}
.ws1038_c00000{word-spacing:0.124800pt;}
.ws412_c00000{word-spacing:0.128000pt;}
.ws102d_c00000{word-spacing:0.128256pt;}
.ws19b1_c00000{word-spacing:0.128832pt;}
.ws1052_c00000{word-spacing:0.129600pt;}
.ws1079_c00000{word-spacing:0.133600pt;}
.ws1d_c00000{word-spacing:0.134208pt;}
.ws411_c00000{word-spacing:0.134400pt;}
.ws1071_c00000{word-spacing:0.138944pt;}
.ws103d_c00000{word-spacing:0.139200pt;}
.ws1fa_c00000{word-spacing:0.140800pt;}
.ws1040_c00000{word-spacing:0.144000pt;}
.ws1130_c00000{word-spacing:0.144288pt;}
.ws9b_c00000{word-spacing:0.147200pt;}
.ws1047_c00000{word-spacing:0.148800pt;}
.ws1551_c00000{word-spacing:0.149632pt;}
.wsa48_c00000{word-spacing:0.153600pt;}
.ws1151_c00000{word-spacing:0.154976pt;}
.ws104b_c00000{word-spacing:0.158400pt;}
.wsd8e_c00000{word-spacing:0.160000pt;}
.ws103a_c00000{word-spacing:0.160320pt;}
.ws103c_c00000{word-spacing:0.163200pt;}
.ws108f_c00000{word-spacing:0.165664pt;}
.ws6f3_c00000{word-spacing:0.166400pt;}
.ws107f_c00000{word-spacing:0.168000pt;}
.ws249_c00000{word-spacing:0.171008pt;}
.ws255_c00000{word-spacing:0.172800pt;}
.ws551_c00000{word-spacing:0.176352pt;}
.ws10a3_c00000{word-spacing:0.177600pt;}
.wsc5e_c00000{word-spacing:0.179200pt;}
.wsbff_c00000{word-spacing:0.181536pt;}
.ws1044_c00000{word-spacing:0.181696pt;}
.ws10a9_c00000{word-spacing:0.182400pt;}
.ws1397_c00000{word-spacing:0.183008pt;}
.ws72d_c00000{word-spacing:0.185600pt;}
.ws1063_c00000{word-spacing:0.187040pt;}
.ws1a78_c00000{word-spacing:0.187264pt;}
.ws40f_c00000{word-spacing:0.192000pt;}
.ws1093_c00000{word-spacing:0.192384pt;}
.ws1092_c00000{word-spacing:0.197728pt;}
.wsa1c_c00000{word-spacing:0.198400pt;}
.ws115d_c00000{word-spacing:0.203072pt;}
.ws143e_c00000{word-spacing:0.204288pt;}
.ws8bc_c00000{word-spacing:0.204800pt;}
.ws1057_c00000{word-spacing:0.206400pt;}
.ws1039_c00000{word-spacing:0.208416pt;}
.ws148_c00000{word-spacing:0.211200pt;}
.ws1159_c00000{word-spacing:0.213760pt;}
.ws1655_c00000{word-spacing:0.216672pt;}
.ws1440_c00000{word-spacing:0.217056pt;}
.ws97_c00000{word-spacing:0.217600pt;}
.ws1045_c00000{word-spacing:0.219104pt;}
.ws5b_c00000{word-spacing:0.224000pt;}
.wsfbe_c00000{word-spacing:0.224448pt;}
.ws104a_c00000{word-spacing:0.229792pt;}
.ws159_c00000{word-spacing:0.230400pt;}
.ws528_c00000{word-spacing:0.234080pt;}
.ws201_c00000{word-spacing:0.236800pt;}
.ws103e_c00000{word-spacing:0.240000pt;}
.ws10f4_c00000{word-spacing:0.240480pt;}
.ws96_c00000{word-spacing:0.243200pt;}
.ws1103_c00000{word-spacing:0.245824pt;}
.ws3a6_c00000{word-spacing:0.249600pt;}
.ws1613_c00000{word-spacing:0.251168pt;}
.wse1e_c00000{word-spacing:0.251808pt;}
.ws107c_c00000{word-spacing:0.254400pt;}
.ws254_c00000{word-spacing:0.256000pt;}
.ws1906_c00000{word-spacing:0.256512pt;}
.ws186c_c00000{word-spacing:0.257664pt;}
.ws1a7a_c00000{word-spacing:0.259200pt;}
.ws17af_c00000{word-spacing:0.259616pt;}
.wsfc4_c00000{word-spacing:0.261856pt;}
.ws1f9_c00000{word-spacing:0.262400pt;}
.wsf2f_c00000{word-spacing:0.263520pt;}
.wsc5c_c00000{word-spacing:0.268800pt;}
.ws5c_c00000{word-spacing:0.275200pt;}
.wscd4_c00000{word-spacing:0.281088pt;}
.ws9c_c00000{word-spacing:0.281600pt;}
.ws1340_c00000{word-spacing:0.283232pt;}
.ws1656_c00000{word-spacing:0.286944pt;}
.ws82_c00000{word-spacing:0.288000pt;}
.ws1614_c00000{word-spacing:0.288576pt;}
.wse2a_c00000{word-spacing:0.292800pt;}
.ws1fb_c00000{word-spacing:0.294400pt;}
.ws809_c00000{word-spacing:0.298656pt;}
.ws149_c00000{word-spacing:0.300800pt;}
.ws14a4_c00000{word-spacing:0.304512pt;}
.ws240_c00000{word-spacing:0.304608pt;}
.ws3ab_c00000{word-spacing:0.307200pt;}
.ws425_c00000{word-spacing:0.310368pt;}
.ws256_c00000{word-spacing:0.313600pt;}
.ws45a_c00000{word-spacing:0.316224pt;}
.ws105b_c00000{word-spacing:0.316800pt;}
.ws7c9_c00000{word-spacing:0.320000pt;}
.ws1922_c00000{word-spacing:0.320640pt;}
.ws9c9_c00000{word-spacing:0.322080pt;}
.ws8ef_c00000{word-spacing:0.326400pt;}
.wse1d_c00000{word-spacing:0.327936pt;}
.ws69f_c00000{word-spacing:0.332800pt;}
.ws1519_c00000{word-spacing:0.333792pt;}
.ws10aa_c00000{word-spacing:0.336000pt;}
.ws12bb_c00000{word-spacing:0.336672pt;}
.wsc5b_c00000{word-spacing:0.339200pt;}
.wsa5a_c00000{word-spacing:0.339648pt;}
.wsfba_c00000{word-spacing:0.342016pt;}
.ws5c4_c00000{word-spacing:0.345504pt;}
.ws81_c00000{word-spacing:0.345600pt;}
.ws559_c00000{word-spacing:0.347360pt;}
.wsf31_c00000{word-spacing:0.351360pt;}
.ws140a_c00000{word-spacing:0.352000pt;}
.ws426_c00000{word-spacing:0.357216pt;}
.ws1111_c00000{word-spacing:0.358048pt;}
.ws129e_c00000{word-spacing:0.358400pt;}
.wsabb_c00000{word-spacing:0.363072pt;}
.ws141f_c00000{word-spacing:0.368736pt;}
.wsaaf_c00000{word-spacing:0.368928pt;}
.ws29_c00000{word-spacing:0.371200pt;}
.ws1242_c00000{word-spacing:0.374080pt;}
.ws603_c00000{word-spacing:0.374784pt;}
.ws8e6_c00000{word-spacing:0.380640pt;}
.wsacd_c00000{word-spacing:0.384000pt;}
.ws158e_c00000{word-spacing:0.386496pt;}
.ws17d4_c00000{word-spacing:0.390400pt;}
.ws45b_c00000{word-spacing:0.392352pt;}
.ws1791_c00000{word-spacing:0.395456pt;}
.wsb08_c00000{word-spacing:0.396800pt;}
.ws457_c00000{word-spacing:0.398208pt;}
.ws1363_c00000{word-spacing:0.400800pt;}
.ws1923_c00000{word-spacing:0.406144pt;}
.ws15ad_c00000{word-spacing:0.409600pt;}
.ws19a4_c00000{word-spacing:0.409920pt;}
.ws10e2_c00000{word-spacing:0.411488pt;}
.ws19a5_c00000{word-spacing:0.415776pt;}
.wsf9f_c00000{word-spacing:0.421632pt;}
.ws1792_c00000{word-spacing:0.422176pt;}
.wsc6e_c00000{word-spacing:0.422400pt;}
.ws173b_c00000{word-spacing:0.427488pt;}
.ws353_c00000{word-spacing:0.428800pt;}
.ws164c_c00000{word-spacing:0.433344pt;}
.ws7a8_c00000{word-spacing:0.435200pt;}
.ws10cf_c00000{word-spacing:0.436800pt;}
.ws8fb_c00000{word-spacing:0.441600pt;}
.ws19b7_c00000{word-spacing:0.445056pt;}
.ws7a7_c00000{word-spacing:0.448000pt;}
.ws19a6_c00000{word-spacing:0.450912pt;}
.ws118a_c00000{word-spacing:0.451200pt;}
.ws12f8_c00000{word-spacing:0.454400pt;}
.ws1ae0_c00000{word-spacing:0.459584pt;}
.ws14d3_c00000{word-spacing:0.460800pt;}
.wsf30_c00000{word-spacing:0.462624pt;}
.ws1913_c00000{word-spacing:0.464928pt;}
.ws7a6_c00000{word-spacing:0.467200pt;}
.ws159a_c00000{word-spacing:0.473600pt;}
.wsf6f_c00000{word-spacing:0.480000pt;}
.ws5de_c00000{word-spacing:0.486400pt;}
.ws8fa_c00000{word-spacing:0.492800pt;}
.ws13a_c00000{word-spacing:0.499200pt;}
.ws64e_c00000{word-spacing:0.505600pt;}
.ws99c_c00000{word-spacing:0.512000pt;}
.ws139d_c00000{word-spacing:0.514976pt;}
.ws1790_c00000{word-spacing:0.518368pt;}
.ws3b0_c00000{word-spacing:0.518400pt;}
.ws99b_c00000{word-spacing:0.524800pt;}
.ws80e_c00000{word-spacing:0.531200pt;}
.ws1f0_c00000{word-spacing:0.537600pt;}
.ws3aa_c00000{word-spacing:0.544000pt;}
.ws108_c00000{word-spacing:0.550400pt;}
.wsa58_c00000{word-spacing:0.556800pt;}
.ws4f7_c00000{word-spacing:0.563200pt;}
.ws27_c00000{word-spacing:0.569600pt;}
.ws4ae_c00000{word-spacing:0.576000pt;}
.ws2d9_c00000{word-spacing:0.582400pt;}
.ws1ef_c00000{word-spacing:0.588800pt;}
.wsae3_c00000{word-spacing:0.595200pt;}
.ws3af_c00000{word-spacing:0.601600pt;}
.ws1845_c00000{word-spacing:0.603168pt;}
.ws2d5_c00000{word-spacing:0.608000pt;}
.ws831_c00000{word-spacing:0.614400pt;}
.ws139_c00000{word-spacing:0.620800pt;}
.ws169c_c00000{word-spacing:0.625248pt;}
.ws7cd_c00000{word-spacing:0.626592pt;}
.ws2a0_c00000{word-spacing:0.627200pt;}
.ws1218_c00000{word-spacing:0.632448pt;}
.ws354_c00000{word-spacing:0.633600pt;}
.ws145c_c00000{word-spacing:0.635936pt;}
.ws212_c00000{word-spacing:0.640000pt;}
.ws1953_c00000{word-spacing:0.641280pt;}
.wscfa_c00000{word-spacing:0.644160pt;}
.ws29f_c00000{word-spacing:0.646400pt;}
.ws854_c00000{word-spacing:0.650016pt;}
.ws65_c00000{word-spacing:0.652800pt;}
.wsa30_c00000{word-spacing:0.655872pt;}
.ws138_c00000{word-spacing:0.659200pt;}
.ws853_c00000{word-spacing:0.661728pt;}
.ws1a9a_c00000{word-spacing:0.662656pt;}
.ws3ba_c00000{word-spacing:0.665600pt;}
.wsbcb_c00000{word-spacing:0.667584pt;}
.wscac_c00000{word-spacing:0.672000pt;}
.ws1188_c00000{word-spacing:0.673344pt;}
.wsb37_c00000{word-spacing:0.673440pt;}
.wsa5f_c00000{word-spacing:0.678400pt;}
.ws77c_c00000{word-spacing:0.679296pt;}
.ws64_c00000{word-spacing:0.684800pt;}
.ws42e_c00000{word-spacing:0.685152pt;}
.ws18ba_c00000{word-spacing:0.689376pt;}
.wsa2a_c00000{word-spacing:0.691008pt;}
.ws1a3a_c00000{word-spacing:0.691200pt;}
.ws6cc_c00000{word-spacing:0.696864pt;}
.ws16d5_c00000{word-spacing:0.697600pt;}
.ws970_c00000{word-spacing:0.702720pt;}
.ws1838_c00000{word-spacing:0.704000pt;}
.ws1ae2_c00000{word-spacing:0.705408pt;}
.wsbcc_c00000{word-spacing:0.708576pt;}
.ws134b_c00000{word-spacing:0.710400pt;}
.ws130c_c00000{word-spacing:0.710752pt;}
.ws1985_c00000{word-spacing:0.714432pt;}
.ws1170_c00000{word-spacing:0.715200pt;}
.wsf18_c00000{word-spacing:0.716800pt;}
.wsdef_c00000{word-spacing:0.720288pt;}
.wseb5_c00000{word-spacing:0.723200pt;}
.ws1768_c00000{word-spacing:0.726144pt;}
.wsbb0_c00000{word-spacing:0.729600pt;}
.ws988_c00000{word-spacing:0.742400pt;}
.wse28_c00000{word-spacing:0.748800pt;}
.ws1ae1_c00000{word-spacing:0.753504pt;}
.wsf85_c00000{word-spacing:0.755200pt;}
.ws28_c00000{word-spacing:0.761600pt;}
.ws941_c00000{word-spacing:0.768000pt;}
.ws90f_c00000{word-spacing:0.774400pt;}
.ws10ac_c00000{word-spacing:0.777600pt;}
.ws1879_c00000{word-spacing:0.780800pt;}
.wsafb_c00000{word-spacing:0.787200pt;}
.ws1304_c00000{word-spacing:0.790912pt;}
.ws19d_c00000{word-spacing:0.793600pt;}
.ws9e3_c00000{word-spacing:0.800000pt;}
.wsa72_c00000{word-spacing:0.806400pt;}
.ws132_c00000{word-spacing:0.812800pt;}
.ws8a4_c00000{word-spacing:0.819200pt;}
.ws20c_c00000{word-spacing:0.825600pt;}
.ws18d_c00000{word-spacing:0.832000pt;}
.ws4e2_c00000{word-spacing:0.838400pt;}
.ws860_c00000{word-spacing:0.844800pt;}
.ws3d7_c00000{word-spacing:0.851200pt;}
.ws5b2_c00000{word-spacing:0.857600pt;}
.ws20d_c00000{word-spacing:0.864000pt;}
.ws9a1_c00000{word-spacing:0.870400pt;}
.ws7dc_c00000{word-spacing:0.876800pt;}
.ws41_c00000{word-spacing:0.883200pt;}
.ws7dd_c00000{word-spacing:0.889600pt;}
.wsafc_c00000{word-spacing:0.896000pt;}
.ws251_c00000{word-spacing:0.902400pt;}
.ws5b3_c00000{word-spacing:0.908800pt;}
.wsd71_c00000{word-spacing:0.915200pt;}
.ws131_c00000{word-spacing:0.921600pt;}
.ws51_c00000{word-spacing:0.928000pt;}
.ws250_c00000{word-spacing:0.934400pt;}
.ws3d0_c00000{word-spacing:0.940800pt;}
.ws5ef_c00000{word-spacing:0.942816pt;}
.ws826_c00000{word-spacing:0.947200pt;}
.ws19c_c00000{word-spacing:0.953600pt;}
.ws183d_c00000{word-spacing:0.954528pt;}
.ws52_c00000{word-spacing:0.960000pt;}
.wsa32_c00000{word-spacing:0.960384pt;}
.ws7d6_c00000{word-spacing:0.966240pt;}
.ws59e_c00000{word-spacing:0.966400pt;}
.ws1203_c00000{word-spacing:0.972096pt;}
.ws18e_c00000{word-spacing:0.972800pt;}
.ws1145_c00000{word-spacing:0.977952pt;}
.ws18f_c00000{word-spacing:0.979200pt;}
.ws11af_c00000{word-spacing:0.983296pt;}
.wsac7_c00000{word-spacing:0.983808pt;}
.ws825_c00000{word-spacing:0.985600pt;}
.ws173e_c00000{word-spacing:0.988640pt;}
.wsa31_c00000{word-spacing:0.989664pt;}
.ws12db_c00000{word-spacing:0.992000pt;}
.ws4c5_c00000{word-spacing:0.995520pt;}
.ws42_c00000{word-spacing:0.998400pt;}
.ws7d5_c00000{word-spacing:1.001376pt;}
.wsd6f_c00000{word-spacing:1.004800pt;}
.wsc77_c00000{word-spacing:1.007232pt;}
.ws367_c00000{word-spacing:1.011200pt;}
.ws1513_c00000{word-spacing:1.013088pt;}
.ws3ce_c00000{word-spacing:1.017600pt;}
.wsdb0_c00000{word-spacing:1.018944pt;}
.wsfea_c00000{word-spacing:1.020704pt;}
.wsdae_c00000{word-spacing:1.024800pt;}
.ws1a61_c00000{word-spacing:1.030400pt;}
.wsbd7_c00000{word-spacing:1.030656pt;}
.ws10a7_c00000{word-spacing:1.031392pt;}
.wsac5_c00000{word-spacing:1.036512pt;}
.wsb6d_c00000{word-spacing:1.036800pt;}
.ws17ab_c00000{word-spacing:1.042080pt;}
.wsc54_c00000{word-spacing:1.043200pt;}
.ws11da_c00000{word-spacing:1.049600pt;}
.ws193b_c00000{word-spacing:1.052768pt;}
.ws12dc_c00000{word-spacing:1.056000pt;}
.ws13ba_c00000{word-spacing:1.062400pt;}
.ws193c_c00000{word-spacing:1.063456pt;}
.ws10a6_c00000{word-spacing:1.068800pt;}
.wsdaf_c00000{word-spacing:1.071648pt;}
.wsf8_c00000{word-spacing:1.075200pt;}
.ws1783_c00000{word-spacing:1.076768pt;}
.ws3fc_c00000{word-spacing:1.081600pt;}
.ws990_c00000{word-spacing:1.088000pt;}
.ws316_c00000{word-spacing:1.094400pt;}
.ws12e3_c00000{word-spacing:1.100800pt;}
.ws871_c00000{word-spacing:1.107200pt;}
.ws1ad4_c00000{word-spacing:1.111552pt;}
.ws878_c00000{word-spacing:1.113600pt;}
.ws1780_c00000{word-spacing:1.119328pt;}
.wsc3b_c00000{word-spacing:1.120000pt;}
.ws668_c00000{word-spacing:1.126400pt;}
.ws1310_c00000{word-spacing:1.127584pt;}
.ws1781_c00000{word-spacing:1.127840pt;}
.ws5e7_c00000{word-spacing:1.132800pt;}
.ws317_c00000{word-spacing:1.139200pt;}
.ws1445_c00000{word-spacing:1.144864pt;}
.wsae7_c00000{word-spacing:1.145600pt;}
.ws1743_c00000{word-spacing:1.149120pt;}
.ws25c_c00000{word-spacing:1.152000pt;}
.ws136c_c00000{word-spacing:1.153376pt;}
.wsae6_c00000{word-spacing:1.158400pt;}
.ws1742_c00000{word-spacing:1.161888pt;}
.ws4e8_c00000{word-spacing:1.164800pt;}
.ws1782_c00000{word-spacing:1.166144pt;}
.ws602_c00000{word-spacing:1.171200pt;}
.ws879_c00000{word-spacing:1.177600pt;}
.ws1444_c00000{word-spacing:1.178912pt;}
.ws495_c00000{word-spacing:1.184000pt;}
.ws312_c00000{word-spacing:1.190400pt;}
.ws1443_c00000{word-spacing:1.195936pt;}
.ws3c2_c00000{word-spacing:1.196800pt;}
.wsf7_c00000{word-spacing:1.203200pt;}
.ws9bf_c00000{word-spacing:1.209600pt;}
.ws30_c00000{word-spacing:1.216000pt;}
.ws142_c00000{word-spacing:1.222400pt;}
.ws735_c00000{word-spacing:1.228800pt;}
.ws89_c00000{word-spacing:1.235200pt;}
.ws26d_c00000{word-spacing:1.241600pt;}
.ws374_c00000{word-spacing:1.248000pt;}
.ws25d_c00000{word-spacing:1.254400pt;}
.ws388_c00000{word-spacing:1.260800pt;}
.ws654_c00000{word-spacing:1.267200pt;}
.ws2f_c00000{word-spacing:1.273600pt;}
.wsce1_c00000{word-spacing:1.276608pt;}
.ws174f_c00000{word-spacing:1.277216pt;}
.ws5e8_c00000{word-spacing:1.280000pt;}
.ws120c_c00000{word-spacing:1.282464pt;}
.wsf9_c00000{word-spacing:1.286400pt;}
.ws1907_c00000{word-spacing:1.287904pt;}
.wsce0_c00000{word-spacing:1.288320pt;}
.ws4e9_c00000{word-spacing:1.292800pt;}
.wsdb1_c00000{word-spacing:1.294176pt;}
.wsa47_c00000{word-spacing:1.299200pt;}
.ws599_c00000{word-spacing:1.300032pt;}
.wsb94_c00000{word-spacing:1.305600pt;}
.ws7b8_c00000{word-spacing:1.305888pt;}
.ws17a1_c00000{word-spacing:1.309280pt;}
.ws7fd_c00000{word-spacing:1.311744pt;}
.wsb6e_c00000{word-spacing:1.312000pt;}
.ws1940_c00000{word-spacing:1.314624pt;}
.ws47d_c00000{word-spacing:1.317600pt;}
.ws11c1_c00000{word-spacing:1.318400pt;}
.ws431_c00000{word-spacing:1.323456pt;}
.ws653_c00000{word-spacing:1.324800pt;}
.ws47c_c00000{word-spacing:1.329312pt;}
.ws146e_c00000{word-spacing:1.331200pt;}
.ws417_c00000{word-spacing:1.335168pt;}
.ws50a_c00000{word-spacing:1.337600pt;}
.ws9c5_c00000{word-spacing:1.341024pt;}
.wsffd_c00000{word-spacing:1.344000pt;}
.ws177d_c00000{word-spacing:1.346688pt;}
.wse2b_c00000{word-spacing:1.346880pt;}
.wsa26_c00000{word-spacing:1.350400pt;}
.ws108a_c00000{word-spacing:1.352032pt;}
.ws416_c00000{word-spacing:1.352736pt;}
.ws1547_c00000{word-spacing:1.356800pt;}
.ws1904_c00000{word-spacing:1.357376pt;}
.ws477_c00000{word-spacing:1.363200pt;}
.ws5ee_c00000{word-spacing:1.364448pt;}
.ws155d_c00000{word-spacing:1.368064pt;}
.wsbe7_c00000{word-spacing:1.369600pt;}
.ws1903_c00000{word-spacing:1.373408pt;}
.wsed9_c00000{word-spacing:1.376000pt;}
.wsb13_c00000{word-spacing:1.382400pt;}
.ws11b1_c00000{word-spacing:1.384096pt;}
.wsfa7_c00000{word-spacing:1.388800pt;}
.ws177c_c00000{word-spacing:1.389440pt;}
.ws8c0_c00000{word-spacing:1.395200pt;}
.ws68c_c00000{word-spacing:1.401600pt;}
.ws1add_c00000{word-spacing:1.405472pt;}
.ws10ce_c00000{word-spacing:1.406400pt;}
.ws31_c00000{word-spacing:1.408000pt;}
.ws193e_c00000{word-spacing:1.410816pt;}
.ws1996_c00000{word-spacing:1.414400pt;}
.ws1546_c00000{word-spacing:1.420800pt;}
.ws14e_c00000{word-spacing:1.427200pt;}
.ws8c1_c00000{word-spacing:1.433600pt;}
.wsef_c00000{word-spacing:1.440000pt;}
.wsd24_c00000{word-spacing:1.446400pt;}
.wsf86_c00000{word-spacing:1.452800pt;}
.ws1ae7_c00000{word-spacing:1.458912pt;}
.wsbe6_c00000{word-spacing:1.459200pt;}
.wsdda_c00000{word-spacing:1.465600pt;}
.ws14f_c00000{word-spacing:1.472000pt;}
.ws133d_c00000{word-spacing:1.474944pt;}
.wscca_c00000{word-spacing:1.478400pt;}
.ws39c_c00000{word-spacing:1.484800pt;}
.ws220_c00000{word-spacing:1.491200pt;}
.ws571_c00000{word-spacing:1.497600pt;}
.ws8ac_c00000{word-spacing:1.504000pt;}
.ws889_c00000{word-spacing:1.510400pt;}
.ws91a_c00000{word-spacing:1.516800pt;}
.ws39d_c00000{word-spacing:1.523200pt;}
.ws8c2_c00000{word-spacing:1.529600pt;}
.wsaf5_c00000{word-spacing:1.536000pt;}
.ws1741_c00000{word-spacing:1.540672pt;}
.ws10a_c00000{word-spacing:1.542400pt;}
.ws8ab_c00000{word-spacing:1.548800pt;}
.ws476_c00000{word-spacing:1.555200pt;}
.ws4ab_c00000{word-spacing:1.561600pt;}
.ws429_c00000{word-spacing:1.568000pt;}
.ws337_c00000{word-spacing:1.574400pt;}
.wsee_c00000{word-spacing:1.580800pt;}
.ws336_c00000{word-spacing:1.587200pt;}
.wse82_c00000{word-spacing:1.592832pt;}
.ws160_c00000{word-spacing:1.593600pt;}
.ws16a8_c00000{word-spacing:1.598688pt;}
.ws21f_c00000{word-spacing:1.600000pt;}
.ws14d_c00000{word-spacing:1.606400pt;}
.wsc09_c00000{word-spacing:1.610400pt;}
.ws109_c00000{word-spacing:1.612800pt;}
.ws16a9_c00000{word-spacing:1.616256pt;}
.ws965_c00000{word-spacing:1.619200pt;}
.ws5f1_c00000{word-spacing:1.622112pt;}
.ws8cd_c00000{word-spacing:1.625600pt;}
.ws9eb_c00000{word-spacing:1.627968pt;}
.ws161_c00000{word-spacing:1.632000pt;}
.ws4c9_c00000{word-spacing:1.633824pt;}
.ws17a3_c00000{word-spacing:1.635264pt;}
.ws1a3f_c00000{word-spacing:1.638400pt;}
.ws7e3_c00000{word-spacing:1.639680pt;}
.ws221_c00000{word-spacing:1.644800pt;}
.wsaba_c00000{word-spacing:1.645536pt;}
.ws1938_c00000{word-spacing:1.651296pt;}
.ws7e2_c00000{word-spacing:1.651392pt;}
.wse1b_c00000{word-spacing:1.657248pt;}
.ws1473_c00000{word-spacing:1.657600pt;}
.ws18ee_c00000{word-spacing:1.661984pt;}
.ws462_c00000{word-spacing:1.663104pt;}
.ws181c_c00000{word-spacing:1.664000pt;}
.wsa5d_c00000{word-spacing:1.668960pt;}
.ws1231_c00000{word-spacing:1.674816pt;}
.ws6a9_c00000{word-spacing:1.676800pt;}
.ws11b0_c00000{word-spacing:1.678016pt;}
.ws5f2_c00000{word-spacing:1.680672pt;}
.wse6_c00000{word-spacing:1.683200pt;}
.ws17a2_c00000{word-spacing:1.683360pt;}
.ws1058_c00000{word-spacing:1.684800pt;}
.wsa5c_c00000{word-spacing:1.686528pt;}
.ws1659_c00000{word-spacing:1.692384pt;}
.wscb2_c00000{word-spacing:1.696000pt;}
.ws18ef_c00000{word-spacing:1.699392pt;}
.ws8d8_c00000{word-spacing:1.702400pt;}
.ws13e6_c00000{word-spacing:1.708800pt;}
.ws110e_c00000{word-spacing:1.710080pt;}
.ws1028_c00000{word-spacing:1.715200pt;}
.wsf0b_c00000{word-spacing:1.721600pt;}
.ws1937_c00000{word-spacing:1.726112pt;}
.wsb16_c00000{word-spacing:1.728000pt;}
.ws1558_c00000{word-spacing:1.731456pt;}
.ws109a_c00000{word-spacing:1.732800pt;}
.ws202_c00000{word-spacing:1.734400pt;}
.ws1061_c00000{word-spacing:1.737600pt;}
.wscbb_c00000{word-spacing:1.740800pt;}
.ws1099_c00000{word-spacing:1.742400pt;}
.ws204_c00000{word-spacing:1.747200pt;}
.ws1a9_c00000{word-spacing:1.753600pt;}
.ws62e_c00000{word-spacing:1.760000pt;}
.ws71d_c00000{word-spacing:1.766400pt;}
.ws13bd_c00000{word-spacing:1.772800pt;}
.ws139c_c00000{word-spacing:1.779008pt;}
.ws7ab_c00000{word-spacing:1.779200pt;}
.ws1245_c00000{word-spacing:1.779552pt;}
.ws385_c00000{word-spacing:1.785600pt;}
.ws384_c00000{word-spacing:1.792000pt;}
.ws1bd_c00000{word-spacing:1.798400pt;}
.ws207_c00000{word-spacing:1.804800pt;}
.ws697_c00000{word-spacing:1.811200pt;}
.ws530_c00000{word-spacing:1.817600pt;}
.ws2a4_c00000{word-spacing:1.824000pt;}
.ws3fa_c00000{word-spacing:1.830400pt;}
.ws3d3_c00000{word-spacing:1.836800pt;}
.ws5bd_c00000{word-spacing:1.843200pt;}
.ws3d4_c00000{word-spacing:1.849600pt;}
.wse4_c00000{word-spacing:1.856000pt;}
.wse5_c00000{word-spacing:1.862400pt;}
.ws383_c00000{word-spacing:1.868800pt;}
.ws279_c00000{word-spacing:1.875200pt;}
.ws140_c00000{word-spacing:1.881600pt;}
.wsc84_c00000{word-spacing:1.885632pt;}
.ws318_c00000{word-spacing:1.888000pt;}
.ws88_c00000{word-spacing:1.894400pt;}
.ws203_c00000{word-spacing:1.900800pt;}
.wsceb_c00000{word-spacing:1.903200pt;}
.ws1be_c00000{word-spacing:1.907200pt;}
.ws58c_c00000{word-spacing:1.909056pt;}
.ws1744_c00000{word-spacing:1.913152pt;}
.ws43b_c00000{word-spacing:1.913600pt;}
.ws38c_c00000{word-spacing:1.920000pt;}
.wsfa0_c00000{word-spacing:1.920768pt;}
.ws141_c00000{word-spacing:1.926400pt;}
.ws6e3_c00000{word-spacing:1.926624pt;}
.ws1909_c00000{word-spacing:1.929184pt;}
.ws58b_c00000{word-spacing:1.932480pt;}
.ws3f8_c00000{word-spacing:1.932800pt;}
.ws70a_c00000{word-spacing:1.938336pt;}
.ws3fb_c00000{word-spacing:1.939200pt;}
.ws595_c00000{word-spacing:1.944192pt;}
.ws732_c00000{word-spacing:1.945600pt;}
.ws596_c00000{word-spacing:1.950048pt;}
.ws62d_c00000{word-spacing:1.952000pt;}
.ws618_c00000{word-spacing:1.955904pt;}
.ws797_c00000{word-spacing:1.958400pt;}
.ws6e2_c00000{word-spacing:1.961760pt;}
.ws9a6_c00000{word-spacing:1.964800pt;}
.ws1797_c00000{word-spacing:1.966592pt;}
.ws447_c00000{word-spacing:1.967616pt;}
.wsd45_c00000{word-spacing:1.971200pt;}
.ws448_c00000{word-spacing:1.973472pt;}
.ws15a2_c00000{word-spacing:1.977600pt;}
.ws14e6_c00000{word-spacing:1.979328pt;}
.wsf46_c00000{word-spacing:1.984000pt;}
.ws846_c00000{word-spacing:1.985184pt;}
.ws10c8_c00000{word-spacing:1.987968pt;}
.wsedc_c00000{word-spacing:1.990400pt;}
.wsef5_c00000{word-spacing:1.991040pt;}
.ws1054_c00000{word-spacing:1.992000pt;}
.ws1a15_c00000{word-spacing:1.996800pt;}
.wsbdc_c00000{word-spacing:1.996896pt;}
.wscf8_c00000{word-spacing:2.003200pt;}
.ws177e_c00000{word-spacing:2.004000pt;}
.wsbf6_c00000{word-spacing:2.008608pt;}
.ws124a_c00000{word-spacing:2.009344pt;}
.ws113e_c00000{word-spacing:2.020032pt;}
.wse27_c00000{word-spacing:2.020320pt;}
.ws18d6_c00000{word-spacing:2.022400pt;}
.ws111d_c00000{word-spacing:2.025376pt;}
.ws4c2_c00000{word-spacing:2.028800pt;}
.ws266_c00000{word-spacing:2.035200pt;}
.wsbf7_c00000{word-spacing:2.037888pt;}
.ws1171_c00000{word-spacing:2.040000pt;}
.ws8b_c00000{word-spacing:2.041600pt;}
.ws32e_c00000{word-spacing:2.048000pt;}
.ws15d_c00000{word-spacing:2.054400pt;}
.wsbf5_c00000{word-spacing:2.055456pt;}
.ws1a19_c00000{word-spacing:2.060800pt;}
.ws8e1_c00000{word-spacing:2.067200pt;}
.ws258_c00000{word-spacing:2.073600pt;}
.ws280_c00000{word-spacing:2.080000pt;}
.ws5ab_c00000{word-spacing:2.086400pt;}
.wsc29_c00000{word-spacing:2.092800pt;}
.ws9da_c00000{word-spacing:2.099200pt;}
.wsfb4_c00000{word-spacing:2.105536pt;}
.ws969_c00000{word-spacing:2.105600pt;}
.ws26_c00000{word-spacing:2.112000pt;}
.ws16e6_c00000{word-spacing:2.118400pt;}
.ws276_c00000{word-spacing:2.124800pt;}
.ws278_c00000{word-spacing:2.131200pt;}
.ws5e2_c00000{word-spacing:2.137600pt;}
.ws82a_c00000{word-spacing:2.144000pt;}
.ws257_c00000{word-spacing:2.150400pt;}
.ws8a_c00000{word-spacing:2.156800pt;}
.ws15c_c00000{word-spacing:2.163200pt;}
.ws5e3_c00000{word-spacing:2.169600pt;}
.ws1a2_c00000{word-spacing:2.176000pt;}
.ws393_c00000{word-spacing:2.182400pt;}
.ws5b1_c00000{word-spacing:2.188800pt;}
.ws25e_c00000{word-spacing:2.195200pt;}
.ws60_c00000{word-spacing:2.201600pt;}
.ws380_c00000{word-spacing:2.208000pt;}
.ws1aa_c00000{word-spacing:2.214400pt;}
.wsbe0_c00000{word-spacing:2.219424pt;}
.ws25_c00000{word-spacing:2.220800pt;}
.ws7b1_c00000{word-spacing:2.225280pt;}
.ws25f_c00000{word-spacing:2.227200pt;}
.ws1849_c00000{word-spacing:2.231136pt;}
.ws340_c00000{word-spacing:2.233600pt;}
.ws186d_c00000{word-spacing:2.236992pt;}
.ws531_c00000{word-spacing:2.240000pt;}
.ws7ac_c00000{word-spacing:2.242848pt;}
.ws1a1_c00000{word-spacing:2.246400pt;}
.wsbd3_c00000{word-spacing:2.248704pt;}
.ws124c_c00000{word-spacing:2.249824pt;}
.ws3b3_c00000{word-spacing:2.252800pt;}
.wsbdf_c00000{word-spacing:2.254560pt;}
.ws1736_c00000{word-spacing:2.255168pt;}
.ws277_c00000{word-spacing:2.259200pt;}
.ws15e7_c00000{word-spacing:2.260416pt;}
.ws61_c00000{word-spacing:2.265600pt;}
.ws480_c00000{word-spacing:2.266272pt;}
.ws9f2_c00000{word-spacing:2.272000pt;}
.ws7b2_c00000{word-spacing:2.272128pt;}
.ws505_c00000{word-spacing:2.277984pt;}
.ws95e_c00000{word-spacing:2.278400pt;}
.ws132a_c00000{word-spacing:2.281888pt;}
.ws617_c00000{word-spacing:2.283840pt;}
.ws3a3_c00000{word-spacing:2.284800pt;}
.ws47f_c00000{word-spacing:2.289696pt;}
.ws12cb_c00000{word-spacing:2.291200pt;}
.wsdb6_c00000{word-spacing:2.295552pt;}
.ws18b0_c00000{word-spacing:2.297600pt;}
.ws615_c00000{word-spacing:2.301408pt;}
.ws124d_c00000{word-spacing:2.303264pt;}
.ws9f1_c00000{word-spacing:2.304000pt;}
.wsac4_c00000{word-spacing:2.307264pt;}
.ws119d_c00000{word-spacing:2.308608pt;}
.ws614_c00000{word-spacing:2.313120pt;}
.ws173f_c00000{word-spacing:2.313952pt;}
.ws12be_c00000{word-spacing:2.316800pt;}
.ws105f_c00000{word-spacing:2.318400pt;}
.wsf81_c00000{word-spacing:2.318976pt;}
.ws1264_c00000{word-spacing:2.324640pt;}
.wsf94_c00000{word-spacing:2.324832pt;}
.wsf5f_c00000{word-spacing:2.329600pt;}
.ws111e_c00000{word-spacing:2.335328pt;}
.ws19f4_c00000{word-spacing:2.336000pt;}
.wsb0a_c00000{word-spacing:2.342400pt;}
.ws1740_c00000{word-spacing:2.346016pt;}
.ws1ea_c00000{word-spacing:2.348800pt;}
.wsddb_c00000{word-spacing:2.355200pt;}
.ws159f_c00000{word-spacing:2.361600pt;}
.ws95f_c00000{word-spacing:2.368000pt;}
.ws177f_c00000{word-spacing:2.372736pt;}
.ws1832_c00000{word-spacing:2.374400pt;}
.ws770_c00000{word-spacing:2.380800pt;}
.wsdca_c00000{word-spacing:2.387200pt;}
.ws35b_c00000{word-spacing:2.393600pt;}
.ws112e_c00000{word-spacing:2.399456pt;}
.ws905_c00000{word-spacing:2.400000pt;}
.wsd41_c00000{word-spacing:2.406400pt;}
.ws86e_c00000{word-spacing:2.412800pt;}
.ws52f_c00000{word-spacing:2.419200pt;}
.ws9d9_c00000{word-spacing:2.425600pt;}
.ws10ee_c00000{word-spacing:2.426176pt;}
.ws1ec_c00000{word-spacing:2.432000pt;}
.ws1031_c00000{word-spacing:2.436864pt;}
.ws71c_c00000{word-spacing:2.438400pt;}
.ws11a_c00000{word-spacing:2.444800pt;}
.ws11b_c00000{word-spacing:2.451200pt;}
.ws196_c00000{word-spacing:2.457600pt;}
.ws293_c00000{word-spacing:2.464000pt;}
.ws311_c00000{word-spacing:2.470400pt;}
.wse3d_c00000{word-spacing:2.476800pt;}
.ws3c7_c00000{word-spacing:2.483200pt;}
.ws52e_c00000{word-spacing:2.489600pt;}
.ws35a_c00000{word-spacing:2.496000pt;}
.ws78d_c00000{word-spacing:2.502400pt;}
.ws18b_c00000{word-spacing:2.508800pt;}
.ws1fc_c00000{word-spacing:2.515200pt;}
.ws15cb_c00000{word-spacing:2.518080pt;}
.ws8d_c00000{word-spacing:2.521600pt;}
.ws50_c00000{word-spacing:2.528000pt;}
.ws292_c00000{word-spacing:2.534400pt;}
.ws33e_c00000{word-spacing:2.540800pt;}
.ws2dc_c00000{word-spacing:2.547200pt;}
.ws16b4_c00000{word-spacing:2.553216pt;}
.ws11c_c00000{word-spacing:2.553600pt;}
.ws7fe_c00000{word-spacing:2.559072pt;}
.ws359_c00000{word-spacing:2.560000pt;}
.ws1671_c00000{word-spacing:2.564928pt;}
.ws17a6_c00000{word-spacing:2.565120pt;}
.ws18c_c00000{word-spacing:2.566400pt;}
.ws194e_c00000{word-spacing:2.570464pt;}
.ws6fc_c00000{word-spacing:2.570784pt;}
.ws76d_c00000{word-spacing:2.572800pt;}
.wsc71_c00000{word-spacing:2.576640pt;}
.ws8e_c00000{word-spacing:2.579200pt;}
.wsefe_c00000{word-spacing:2.582496pt;}
.ws1a3_c00000{word-spacing:2.585600pt;}
.ws1adc_c00000{word-spacing:2.586496pt;}
.ws1215_c00000{word-spacing:2.588352pt;}
.ws1eb_c00000{word-spacing:2.592000pt;}
.wseff_c00000{word-spacing:2.594208pt;}
.ws10c9_c00000{word-spacing:2.597184pt;}
.ws97b_c00000{word-spacing:2.598400pt;}
.ws604_c00000{word-spacing:2.600064pt;}
.wsf8d_c00000{word-spacing:2.604800pt;}
.ws6e1_c00000{word-spacing:2.605920pt;}
.ws274_c00000{word-spacing:2.611200pt;}
.ws3f2_c00000{word-spacing:2.611776pt;}
.ws1172_c00000{word-spacing:2.613216pt;}
.wsacb_c00000{word-spacing:2.617600pt;}
.ws6fd_c00000{word-spacing:2.617632pt;}
.wsac3_c00000{word-spacing:2.623488pt;}
.ws132e_c00000{word-spacing:2.623904pt;}
.ws587_c00000{word-spacing:2.629344pt;}
.wscc8_c00000{word-spacing:2.630400pt;}
.wsfd3_c00000{word-spacing:2.634592pt;}
.ws10e4_c00000{word-spacing:2.635200pt;}
.ws5d7_c00000{word-spacing:2.636800pt;}
.wsb6b_c00000{word-spacing:2.649600pt;}
.ws18f1_c00000{word-spacing:2.655968pt;}
.ws1567_c00000{word-spacing:2.661312pt;}
.ws163b_c00000{word-spacing:2.662400pt;}
.ws546_c00000{word-spacing:2.668800pt;}
.ws10e3_c00000{word-spacing:2.673600pt;}
.ws1533_c00000{word-spacing:2.675200pt;}
.ws960_c00000{word-spacing:2.688000pt;}
.ws18f2_c00000{word-spacing:2.688032pt;}
.wscef_c00000{word-spacing:2.694400pt;}
.ws90a_c00000{word-spacing:2.700800pt;}
.ws105e_c00000{word-spacing:2.702400pt;}
.ws12d3_c00000{word-spacing:2.707200pt;}
.wsf2d_c00000{word-spacing:2.711328pt;}
.wsa63_c00000{word-spacing:2.713600pt;}
.ws155c_c00000{word-spacing:2.714752pt;}
.ws6d9_c00000{word-spacing:2.720000pt;}
.ws114_c00000{word-spacing:2.726400pt;}
.ws4be_c00000{word-spacing:2.732800pt;}
.ws97a_c00000{word-spacing:2.739200pt;}
.ws88a_c00000{word-spacing:2.745600pt;}
.ws169_c00000{word-spacing:2.752000pt;}
.ws1e2_c00000{word-spacing:2.758400pt;}
.ws1e3_c00000{word-spacing:2.764800pt;}
.ws216_c00000{word-spacing:2.771200pt;}
.wse72_c00000{word-spacing:2.777600pt;}
.ws1df_c00000{word-spacing:2.784000pt;}
.ws67_c00000{word-spacing:2.790400pt;}
.wsc28_c00000{word-spacing:2.796800pt;}
.ws6f8_c00000{word-spacing:2.803200pt;}
.ws86f_c00000{word-spacing:2.809600pt;}
.ws94d_c00000{word-spacing:2.816000pt;}
.ws5d8_c00000{word-spacing:2.822400pt;}
.ws545_c00000{word-spacing:2.828800pt;}
.wsa34_c00000{word-spacing:2.835200pt;}
.ws188_c00000{word-spacing:2.841600pt;}
.ws168_c00000{word-spacing:2.848000pt;}
.ws1853_c00000{word-spacing:2.851872pt;}
.ws189f_c00000{word-spacing:2.853696pt;}
.ws53_c00000{word-spacing:2.854400pt;}
.ws56_c00000{word-spacing:2.860800pt;}
.ws4f5_c00000{word-spacing:2.863584pt;}
.ws68_c00000{word-spacing:2.867200pt;}
.wsbf2_c00000{word-spacing:2.869440pt;}
.ws1725_c00000{word-spacing:2.869728pt;}
.ws54_c00000{word-spacing:2.873600pt;}
.ws14e7_c00000{word-spacing:2.875296pt;}
.ws55_c00000{word-spacing:2.880000pt;}
.ws1276_c00000{word-spacing:2.880416pt;}
.ws14b4_c00000{word-spacing:2.881152pt;}
.ws1970_c00000{word-spacing:2.885760pt;}
.wsad3_c00000{word-spacing:2.886400pt;}
.ws7d0_c00000{word-spacing:2.887008pt;}
.ws870_c00000{word-spacing:2.892800pt;}
.ws4f6_c00000{word-spacing:2.892864pt;}
.ws45d_c00000{word-spacing:2.898720pt;}
.ws68b_c00000{word-spacing:2.899200pt;}
.ws752_c00000{word-spacing:2.904576pt;}
.ws2c7_c00000{word-spacing:2.905600pt;}
.ws84d_c00000{word-spacing:2.910432pt;}
.ws68a_c00000{word-spacing:2.912000pt;}
.ws753_c00000{word-spacing:2.916288pt;}
.wscee_c00000{word-spacing:2.918400pt;}
.ws45c_c00000{word-spacing:2.922144pt;}
.ws1e0_c00000{word-spacing:2.924800pt;}
.ws5ec_c00000{word-spacing:2.928000pt;}
.ws1779_c00000{word-spacing:2.928512pt;}
.ws1b8_c00000{word-spacing:2.931200pt;}
.wsab4_c00000{word-spacing:2.933856pt;}
.ws182e_c00000{word-spacing:2.937600pt;}
.ws1266_c00000{word-spacing:2.939200pt;}
.ws84c_c00000{word-spacing:2.939712pt;}
.wseab_c00000{word-spacing:2.944000pt;}
.wsf2e_c00000{word-spacing:2.945568pt;}
.ws140c_c00000{word-spacing:2.949888pt;}
.ws104_c00000{word-spacing:2.950400pt;}
.wsc83_c00000{word-spacing:2.951424pt;}
.ws1abb_c00000{word-spacing:2.956800pt;}
.ws5ed_c00000{word-spacing:2.957280pt;}
.ws171f_c00000{word-spacing:2.960576pt;}
.ws5fa_c00000{word-spacing:2.963200pt;}
.ws13a3_c00000{word-spacing:2.969600pt;}
.ws1882_c00000{word-spacing:2.971264pt;}
.ws151b_c00000{word-spacing:2.976000pt;}
.ws17ac_c00000{word-spacing:2.976608pt;}
.ws300_c00000{word-spacing:2.982400pt;}
.wsfc5_c00000{word-spacing:2.987296pt;}
.wse9e_c00000{word-spacing:2.988800pt;}
.ws155b_c00000{word-spacing:2.992640pt;}
.ws148a_c00000{word-spacing:2.995200pt;}
.ws1148_c00000{word-spacing:2.997984pt;}
.ws956_c00000{word-spacing:3.001600pt;}
.ws53c_c00000{word-spacing:3.008000pt;}
.ws215_c00000{word-spacing:3.014400pt;}
.ws95b_c00000{word-spacing:3.020800pt;}
.ws1032_c00000{word-spacing:3.024000pt;}
.ws1b7_c00000{word-spacing:3.027200pt;}
.ws1745_c00000{word-spacing:3.030048pt;}
.wsc64_c00000{word-spacing:3.033600pt;}
.wsf1d_c00000{word-spacing:3.040000pt;}
.ws1314_c00000{word-spacing:3.040736pt;}
.wsfb1_c00000{word-spacing:3.046400pt;}
.ws1789_c00000{word-spacing:3.051424pt;}
.wsf04_c00000{word-spacing:3.052800pt;}
.ws132f_c00000{word-spacing:3.056768pt;}
.wse85_c00000{word-spacing:3.059200pt;}
.ws442_c00000{word-spacing:3.065600pt;}
.ws1af0_c00000{word-spacing:3.067456pt;}
.ws369_c00000{word-spacing:3.072000pt;}
.ws136e_c00000{word-spacing:3.077088pt;}
.ws301_c00000{word-spacing:3.078400pt;}
.ws38d_c00000{word-spacing:3.084800pt;}
.ws136d_c00000{word-spacing:3.089856pt;}
.ws342_c00000{word-spacing:3.091200pt;}
.ws5fb_c00000{word-spacing:3.097600pt;}
.ws6f0_c00000{word-spacing:3.104000pt;}
.ws165e_c00000{word-spacing:3.109536pt;}
.ws1147_c00000{word-spacing:3.110208pt;}
.ws38e_c00000{word-spacing:3.110400pt;}
.ws214_c00000{word-spacing:3.116800pt;}
.ws593_c00000{word-spacing:3.121248pt;}
.wsadb_c00000{word-spacing:3.123200pt;}
.ws95c_c00000{word-spacing:3.129600pt;}
.ws294_c00000{word-spacing:3.136000pt;}
.ws6ef_c00000{word-spacing:3.142400pt;}
.ws92d_c00000{word-spacing:3.148800pt;}
.ws8f7_c00000{word-spacing:3.155200pt;}
.ws165f_c00000{word-spacing:3.156384pt;}
.ws35d_c00000{word-spacing:3.161600pt;}
.ws36a_c00000{word-spacing:3.168000pt;}
.ws17e_c00000{word-spacing:3.174400pt;}
.ws158a_c00000{word-spacing:3.179808pt;}
.wsaa9_c00000{word-spacing:3.180800pt;}
.ws7ba_c00000{word-spacing:3.185664pt;}
.ws8d1_c00000{word-spacing:3.187200pt;}
.ws35c_c00000{word-spacing:3.193600pt;}
.ws594_c00000{word-spacing:3.197376pt;}
.ws53b_c00000{word-spacing:3.200000pt;}
.ws482_c00000{word-spacing:3.203232pt;}
.ws105_c00000{word-spacing:3.206400pt;}
.ws7f6_c00000{word-spacing:3.209088pt;}
.ws1281_c00000{word-spacing:3.211744pt;}
.ws570_c00000{word-spacing:3.212800pt;}
.ws9ae_c00000{word-spacing:3.214944pt;}
.ws1250_c00000{word-spacing:3.217088pt;}
.ws295_c00000{word-spacing:3.219200pt;}
.ws414_c00000{word-spacing:3.220800pt;}
.ws957_c00000{word-spacing:3.225600pt;}
.ws592_c00000{word-spacing:3.226656pt;}
.ws14ee_c00000{word-spacing:3.232000pt;}
.ws4c6_c00000{word-spacing:3.232512pt;}
.ws1971_c00000{word-spacing:3.233120pt;}
.ws49f_c00000{word-spacing:3.238368pt;}
.wsca4_c00000{word-spacing:3.238400pt;}
.ws481_c00000{word-spacing:3.244224pt;}
.wsb60_c00000{word-spacing:3.244800pt;}
.ws4d5_c00000{word-spacing:3.250080pt;}
.ws95d_c00000{word-spacing:3.251200pt;}
.wsf00_c00000{word-spacing:3.255936pt;}
.wsca3_c00000{word-spacing:3.257600pt;}
.ws49e_c00000{word-spacing:3.261792pt;}
.wsfb0_c00000{word-spacing:3.264000pt;}
.ws1972_c00000{word-spacing:3.265184pt;}
.wsa04_c00000{word-spacing:3.267648pt;}
.wsace_c00000{word-spacing:3.270400pt;}
.ws746_c00000{word-spacing:3.273504pt;}
.ws1817_c00000{word-spacing:3.276800pt;}
.ws413_c00000{word-spacing:3.279360pt;}
.wsfd4_c00000{word-spacing:3.281216pt;}
.ws1494_c00000{word-spacing:3.283200pt;}
.ws1211_c00000{word-spacing:3.285216pt;}
.ws171e_c00000{word-spacing:3.286560pt;}
.wsa2e_c00000{word-spacing:3.289600pt;}
.wsaec_c00000{word-spacing:3.291072pt;}
.ws1778_c00000{word-spacing:3.291904pt;}
.ws343_c00000{word-spacing:3.296000pt;}
.ws1167_c00000{word-spacing:3.302400pt;}
.ws1723_c00000{word-spacing:3.302592pt;}
.ws11e3_c00000{word-spacing:3.302784pt;}
.ws134_c00000{word-spacing:3.308800pt;}
.wsc3c_c00000{word-spacing:3.315200pt;}
.ws118c_c00000{word-spacing:3.321600pt;}
.ws17ad_c00000{word-spacing:3.323968pt;}
.ws1166_c00000{word-spacing:3.326400pt;}
.ws92c_c00000{word-spacing:3.328000pt;}
.ws1b4_c00000{word-spacing:3.334400pt;}
.ws171a_c00000{word-spacing:3.334656pt;}
.ws3bf_c00000{word-spacing:3.340800pt;}
.ws6da_c00000{word-spacing:3.347200pt;}
.ws52d_c00000{word-spacing:3.353600pt;}
.ws118b_c00000{word-spacing:3.355200pt;}
.ws1447_c00000{word-spacing:3.360000pt;}
.ws97d_c00000{word-spacing:3.366400pt;}
.ws1724_c00000{word-spacing:3.366720pt;}
.ws1d7_c00000{word-spacing:3.372800pt;}
.ws672_c00000{word-spacing:3.379200pt;}
.ws4e4_c00000{word-spacing:3.385600pt;}
.ws17a8_c00000{word-spacing:3.388096pt;}
.ws136_c00000{word-spacing:3.392000pt;}
.wsa14_c00000{word-spacing:3.398400pt;}
.ws3c1_c00000{word-spacing:3.404800pt;}
.ws671_c00000{word-spacing:3.411200pt;}
.ws8f9_c00000{word-spacing:3.417600pt;}
.ws8e5_c00000{word-spacing:3.424000pt;}
.ws1d6_c00000{word-spacing:3.430400pt;}
.ws1b5_c00000{word-spacing:3.436800pt;}
.wscc3_c00000{word-spacing:3.443200pt;}
.ws720_c00000{word-spacing:3.449600pt;}
.ws4e3_c00000{word-spacing:3.456000pt;}
.ws71f_c00000{word-spacing:3.462400pt;}
.ws488_c00000{word-spacing:3.468800pt;}
.ws669_c00000{word-spacing:3.475200pt;}
.wsbfd_c00000{word-spacing:3.478464pt;}
.ws1b3_c00000{word-spacing:3.481600pt;}
.ws2db_c00000{word-spacing:3.488000pt;}
.ws2da_c00000{word-spacing:3.494400pt;}
.ws48e_c00000{word-spacing:3.500800pt;}
.ws121_c00000{word-spacing:3.507200pt;}
.ws122_c00000{word-spacing:3.513600pt;}
.wsda3_c00000{word-spacing:3.519456pt;}
.ws9d8_c00000{word-spacing:3.520000pt;}
.ws1522_c00000{word-spacing:3.525312pt;}
.ws88b_c00000{word-spacing:3.526400pt;}
.ws70e_c00000{word-spacing:3.531168pt;}
.ws190b_c00000{word-spacing:3.532384pt;}
.ws9d7_c00000{word-spacing:3.532800pt;}
.ws1516_c00000{word-spacing:3.537024pt;}
.ws135_c00000{word-spacing:3.539200pt;}
.ws610_c00000{word-spacing:3.542880pt;}
.ws3c0_c00000{word-spacing:3.545600pt;}
.ws15c3_c00000{word-spacing:3.548736pt;}
.ws5cf_c00000{word-spacing:3.552000pt;}
.ws134e_c00000{word-spacing:3.554592pt;}
.ws98c_c00000{word-spacing:3.558400pt;}
.ws1690_c00000{word-spacing:3.560448pt;}
.ws2ba_c00000{word-spacing:3.564800pt;}
.wsc1d_c00000{word-spacing:3.566304pt;}
.ws5af_c00000{word-spacing:3.571200pt;}
.ws70d_c00000{word-spacing:3.572160pt;}
.ws817_c00000{word-spacing:3.577600pt;}
.ws611_c00000{word-spacing:3.578016pt;}
.ws9c8_c00000{word-spacing:3.583872pt;}
.wsc6d_c00000{word-spacing:3.584000pt;}
.wsbad_c00000{word-spacing:3.589728pt;}
.ws15dc_c00000{word-spacing:3.590400pt;}
.ws1232_c00000{word-spacing:3.595584pt;}
.ws1287_c00000{word-spacing:3.596800pt;}
.ws586_c00000{word-spacing:3.601440pt;}
.ws89b_c00000{word-spacing:3.603200pt;}
.ws1233_c00000{word-spacing:3.607296pt;}
.ws1532_c00000{word-spacing:3.609600pt;}
.ws140e_c00000{word-spacing:3.617888pt;}
.ws932_c00000{word-spacing:3.622400pt;}
.ws8a3_c00000{word-spacing:3.635200pt;}
.ws962_c00000{word-spacing:3.641600pt;}
.ws118e_c00000{word-spacing:3.643200pt;}
.wsa08_c00000{word-spacing:3.648000pt;}
.ws7ca_c00000{word-spacing:3.654400pt;}
.ws165b_c00000{word-spacing:3.660000pt;}
.ws356_c00000{word-spacing:3.660800pt;}
.ws1691_c00000{word-spacing:3.665984pt;}
.ws6a5_c00000{word-spacing:3.667200pt;}
.ws355_c00000{word-spacing:3.673600pt;}
.ws65a_c00000{word-spacing:3.680000pt;}
.ws97c_c00000{word-spacing:3.686400pt;}
.wsa71_c00000{word-spacing:3.692800pt;}
.ws190a_c00000{word-spacing:3.698048pt;}
.ws4c3_c00000{word-spacing:3.699200pt;}
.wsa09_c00000{word-spacing:3.705600pt;}
.wsed4_c00000{word-spacing:3.712000pt;}
.wsafa_c00000{word-spacing:3.718400pt;}
.ws313_c00000{word-spacing:3.724800pt;}
.ws627_c00000{word-spacing:3.731200pt;}
.ws928_c00000{word-spacing:3.737600pt;}
.ws1b2_c00000{word-spacing:3.744000pt;}
.ws71_c00000{word-spacing:3.750400pt;}
.ws153_c00000{word-spacing:3.756800pt;}
.ws5b9_c00000{word-spacing:3.763200pt;}
.ws2bc_c00000{word-spacing:3.769600pt;}
.ws281_c00000{word-spacing:3.776000pt;}
.ws1b1_c00000{word-spacing:3.782400pt;}
.ws5d_c00000{word-spacing:3.788800pt;}
.ws963_c00000{word-spacing:3.795200pt;}
.ws5e4_c00000{word-spacing:3.801600pt;}
.ws152_c00000{word-spacing:3.808000pt;}
.wsa6_c00000{word-spacing:3.814400pt;}
.ws64f_c00000{word-spacing:3.820800pt;}
.ws1703_c00000{word-spacing:3.823968pt;}
.ws626_c00000{word-spacing:3.827200pt;}
.ws2bb_c00000{word-spacing:3.833600pt;}
.wse18_c00000{word-spacing:3.835680pt;}
.ws80b_c00000{word-spacing:3.840000pt;}
.ws121a_c00000{word-spacing:3.841536pt;}
.ws1917_c00000{word-spacing:3.842336pt;}
.ws315_c00000{word-spacing:3.846400pt;}
.ws9ec_c00000{word-spacing:3.847392pt;}
.ws1775_c00000{word-spacing:3.847680pt;}
.ws92b_c00000{word-spacing:3.852800pt;}
.ws193d_c00000{word-spacing:3.853024pt;}
.ws3f4_c00000{word-spacing:3.853248pt;}
.ws77b_c00000{word-spacing:3.859104pt;}
.ws5ba_c00000{word-spacing:3.859200pt;}
.ws9ed_c00000{word-spacing:3.864960pt;}
.ws5b0_c00000{word-spacing:3.865600pt;}
.ws7df_c00000{word-spacing:3.870816pt;}
.wsb3c_c00000{word-spacing:3.872000pt;}
.ws1141_c00000{word-spacing:3.874400pt;}
.ws585_c00000{word-spacing:3.876672pt;}
.ws37a_c00000{word-spacing:3.878400pt;}
.ws3f3_c00000{word-spacing:3.882528pt;}
.ws314_c00000{word-spacing:3.884800pt;}
.wsbe3_c00000{word-spacing:3.888384pt;}
.ws172f_c00000{word-spacing:3.890432pt;}
.ws1a5c_c00000{word-spacing:3.891200pt;}
.ws7d3_c00000{word-spacing:3.894240pt;}
.ws5bb_c00000{word-spacing:3.897600pt;}
.ws19b5_c00000{word-spacing:3.900096pt;}
.ws1257_c00000{word-spacing:3.901120pt;}
.ws650_c00000{word-spacing:3.904000pt;}
.ws7d8_c00000{word-spacing:3.905952pt;}
.wsf14_c00000{word-spacing:3.910400pt;}
.ws121b_c00000{word-spacing:3.911808pt;}
.ws32f_c00000{word-spacing:3.916800pt;}
.wsfc9_c00000{word-spacing:3.917152pt;}
.ws1353_c00000{word-spacing:3.917664pt;}
.ws1142_c00000{word-spacing:3.922496pt;}
.ws174e_c00000{word-spacing:3.933184pt;}
.wsc04_c00000{word-spacing:3.936000pt;}
.ws174d_c00000{word-spacing:3.938528pt;}
.ws1075_c00000{word-spacing:3.940800pt;}
.ws8a8_c00000{word-spacing:3.942400pt;}
.ws1256_c00000{word-spacing:3.943872pt;}
.ws1055_c00000{word-spacing:3.945600pt;}
.ws1730_c00000{word-spacing:3.949216pt;}
.ws10a0_c00000{word-spacing:3.955200pt;}
.ws1101_c00000{word-spacing:3.960000pt;}
.ws2b2_c00000{word-spacing:3.961600pt;}
.ws12a7_c00000{word-spacing:3.968000pt;}
.ws1189_c00000{word-spacing:3.969600pt;}
.ws156f_c00000{word-spacing:3.970592pt;}
.ws99a_c00000{word-spacing:3.974400pt;}
.ws935_c00000{word-spacing:3.980800pt;}
.ws12cc_c00000{word-spacing:3.987200pt;}
.ws395_c00000{word-spacing:3.993600pt;}
.ws118d_c00000{word-spacing:3.998400pt;}
.ws2a5_c00000{word-spacing:4.000000pt;}
.ws330_c00000{word-spacing:4.006400pt;}
.wsdc_c00000{word-spacing:4.012800pt;}
.ws209_c00000{word-spacing:4.019200pt;}
.ws125b_c00000{word-spacing:4.024032pt;}
.wsfaa_c00000{word-spacing:4.025600pt;}
.wsad4_c00000{word-spacing:4.032000pt;}
.wsde4_c00000{word-spacing:4.038400pt;}
.ws28c_c00000{word-spacing:4.044800pt;}
.ws46e_c00000{word-spacing:4.051200pt;}
.ws331_c00000{word-spacing:4.057600pt;}
.ws1adb_c00000{word-spacing:4.061440pt;}
.ws208_c00000{word-spacing:4.064000pt;}
.ws786_c00000{word-spacing:4.070400pt;}
.ws404_c00000{word-spacing:4.076800pt;}
.ws178_c00000{word-spacing:4.083200pt;}
.wsbf3_c00000{word-spacing:4.087488pt;}
.ws28b_c00000{word-spacing:4.089600pt;}
.wse79_c00000{word-spacing:4.096000pt;}
.wsa19_c00000{word-spacing:4.102400pt;}
.wsc96_c00000{word-spacing:4.108800pt;}
.ws5d2_c00000{word-spacing:4.115200pt;}
.ws3d6_c00000{word-spacing:4.121600pt;}
.ws2a6_c00000{word-spacing:4.128000pt;}
.ws351_c00000{word-spacing:4.134400pt;}
.ws1657_c00000{word-spacing:4.140192pt;}
.ws9a0_c00000{word-spacing:4.140800pt;}
.ws19b4_c00000{word-spacing:4.146048pt;}
.ws177_c00000{word-spacing:4.147200pt;}
.ws11e9_c00000{word-spacing:4.151904pt;}
.ws2e8_c00000{word-spacing:4.153600pt;}
.ws178f_c00000{word-spacing:4.157632pt;}
.wsc85_c00000{word-spacing:4.157760pt;}
.wsde_c00000{word-spacing:4.160000pt;}
.ws1338_c00000{word-spacing:4.162976pt;}
.ws60c_c00000{word-spacing:4.163616pt;}
.wsdd_c00000{word-spacing:4.166400pt;}
.wsdc7_c00000{word-spacing:4.169472pt;}
.ws28d_c00000{word-spacing:4.172800pt;}
.ws1155_c00000{word-spacing:4.173664pt;}
.wsdc6_c00000{word-spacing:4.175328pt;}
.ws56e_c00000{word-spacing:4.179200pt;}
.wsbe1_c00000{word-spacing:4.181184pt;}
.wsa73_c00000{word-spacing:4.185600pt;}
.wse76_c00000{word-spacing:4.187040pt;}
.ws56f_c00000{word-spacing:4.192000pt;}
.ws4de_c00000{word-spacing:4.192896pt;}
.wsfab_c00000{word-spacing:4.198400pt;}
.ws60b_c00000{word-spacing:4.198752pt;}
.wse4b_c00000{word-spacing:4.204608pt;}
.wsb69_c00000{word-spacing:4.204800pt;}
.wsf11_c00000{word-spacing:4.210464pt;}
.wsbc4_c00000{word-spacing:4.211200pt;}
.wsac6_c00000{word-spacing:4.216320pt;}
.ws150b_c00000{word-spacing:4.217600pt;}
.ws122f_c00000{word-spacing:4.222176pt;}
.wsa88_c00000{word-spacing:4.224000pt;}
.ws1191_c00000{word-spacing:4.227104pt;}
.wsf8a_c00000{word-spacing:4.228032pt;}
.ws2e7_c00000{word-spacing:4.230400pt;}
.ws171c_c00000{word-spacing:4.232448pt;}
.ws402_c00000{word-spacing:4.236800pt;}
.wsd0f_c00000{word-spacing:4.243200pt;}
.ws186f_c00000{word-spacing:4.245600pt;}
.ws1ae5_c00000{word-spacing:4.248480pt;}
.wsa74_c00000{word-spacing:4.249600pt;}
.wsdf0_c00000{word-spacing:4.251456pt;}
.ws119a_c00000{word-spacing:4.253824pt;}
.wsce4_c00000{word-spacing:4.256000pt;}
.ws171d_c00000{word-spacing:4.259168pt;}
.ws4bc_c00000{word-spacing:4.262400pt;}
.ws171b_c00000{word-spacing:4.264512pt;}
.wsf89_c00000{word-spacing:4.274880pt;}
.ws1528_c00000{word-spacing:4.275200pt;}
.wsf79_c00000{word-spacing:4.281600pt;}
.wsa99_c00000{word-spacing:4.288000pt;}
.ws1446_c00000{word-spacing:4.294400pt;}
.ws117_c00000{word-spacing:4.300800pt;}
.wsb89_c00000{word-spacing:4.307200pt;}
.ws1905_c00000{word-spacing:4.312608pt;}
.wsa98_c00000{word-spacing:4.313600pt;}
.ws165a_c00000{word-spacing:4.315872pt;}
.ws78e_c00000{word-spacing:4.320000pt;}
.ws42b_c00000{word-spacing:4.326400pt;}
.ws5bc_c00000{word-spacing:4.332800pt;}
.ws1a98_c00000{word-spacing:4.333984pt;}
.ws29c_c00000{word-spacing:4.339200pt;}
.ws130_c00000{word-spacing:4.345600pt;}
.ws32a_c00000{word-spacing:4.352000pt;}
.wsb90_c00000{word-spacing:4.358400pt;}
.ws62f_c00000{word-spacing:4.364800pt;}
.ws132b_c00000{word-spacing:4.366048pt;}
.ws4aa_c00000{word-spacing:4.371200pt;}
.ws787_c00000{word-spacing:4.377600pt;}
.ws3d2_c00000{word-spacing:4.384000pt;}
.ws116_c00000{word-spacing:4.390400pt;}
.ws3ff_c00000{word-spacing:4.396800pt;}
.ws62_c00000{word-spacing:4.403200pt;}
.ws4bd_c00000{word-spacing:4.409600pt;}
.wsb8a_c00000{word-spacing:4.416000pt;}
.ws4d_c00000{word-spacing:4.422400pt;}
.ws12f_c00000{word-spacing:4.428800pt;}
.ws695_c00000{word-spacing:4.435200pt;}
.ws323_c00000{word-spacing:4.441600pt;}
.ws29a_c00000{word-spacing:4.448000pt;}
.ws3d1_c00000{word-spacing:4.454400pt;}
.ws1a4_c00000{word-spacing:4.460800pt;}
.ws29b_c00000{word-spacing:4.467200pt;}
.ws164f_c00000{word-spacing:4.468128pt;}
.ws12e_c00000{word-spacing:4.473600pt;}
.wsefd_c00000{word-spacing:4.479840pt;}
.ws400_c00000{word-spacing:4.480000pt;}
.ws119b_c00000{word-spacing:4.483616pt;}
.wsc1c_c00000{word-spacing:4.485696pt;}
.ws4c_c00000{word-spacing:4.486400pt;}
.ws10b1_c00000{word-spacing:4.488960pt;}
.wsba9_c00000{word-spacing:4.491552pt;}
.ws401_c00000{word-spacing:4.492800pt;}
.ws60f_c00000{word-spacing:4.497408pt;}
.ws408_c00000{word-spacing:4.499200pt;}
.ws196c_c00000{word-spacing:4.499648pt;}
.ws714_c00000{word-spacing:4.503264pt;}
.ws3b2_c00000{word-spacing:4.505600pt;}
.ws506_c00000{word-spacing:4.509120pt;}
.ws11fc_c00000{word-spacing:4.512000pt;}
.ws3f5_c00000{word-spacing:4.514976pt;}
.ws63_c00000{word-spacing:4.518400pt;}
.wsbd8_c00000{word-spacing:4.520832pt;}
.ws11d2_c00000{word-spacing:4.524800pt;}
.ws7b4_c00000{word-spacing:4.526688pt;}
.wsbb7_c00000{word-spacing:4.531200pt;}
.ws713_c00000{word-spacing:4.532544pt;}
.ws938_c00000{word-spacing:4.537600pt;}
.ws1855_c00000{word-spacing:4.538400pt;}
.ws13c2_c00000{word-spacing:4.544000pt;}
.ws781_c00000{word-spacing:4.544256pt;}
.ws1936_c00000{word-spacing:4.547744pt;}
.ws1925_c00000{word-spacing:4.550112pt;}
.ws5f6_c00000{word-spacing:4.550400pt;}
.wsb31_c00000{word-spacing:4.555968pt;}
.ws83d_c00000{word-spacing:4.556800pt;}
.wse32_c00000{word-spacing:4.563200pt;}
.ws1935_c00000{word-spacing:4.563776pt;}
.ws1952_c00000{word-spacing:4.569120pt;}
.wsd19_c00000{word-spacing:4.569600pt;}
.ws1921_c00000{word-spacing:4.574464pt;}
.ws200_c00000{word-spacing:4.576000pt;}
.ws1951_c00000{word-spacing:4.579808pt;}
.ws19b8_c00000{word-spacing:4.582400pt;}
.ws1865_c00000{word-spacing:4.601600pt;}
.ws1839_c00000{word-spacing:4.608000pt;}
.ws930_c00000{word-spacing:4.614400pt;}
.ws1192_c00000{word-spacing:4.617216pt;}
.wsc8c_c00000{word-spacing:4.620800pt;}
.wsf63_c00000{word-spacing:4.627200pt;}
.ws11b4_c00000{word-spacing:4.627904pt;}
.ws843_c00000{word-spacing:4.633600pt;}
.ws194a_c00000{word-spacing:4.638592pt;}
.ws91d_c00000{word-spacing:4.640000pt;}
.ws625_c00000{word-spacing:4.646400pt;}
.wsf08_c00000{word-spacing:4.652800pt;}
.wse4c_c00000{word-spacing:4.659200pt;}
.ws194b_c00000{word-spacing:4.659968pt;}
.ws842_c00000{word-spacing:4.665600pt;}
.wsab1_c00000{word-spacing:4.672000pt;}
.ws1595_c00000{word-spacing:4.678400pt;}
.ws9b3_c00000{word-spacing:4.684800pt;}
.ws5f5_c00000{word-spacing:4.691200pt;}
.ws3e_c00000{word-spacing:4.697600pt;}
.ws8a5_c00000{word-spacing:4.704000pt;}
.ws659_c00000{word-spacing:4.710400pt;}
.ws1ab_c00000{word-spacing:4.716800pt;}
.ws381_c00000{word-spacing:4.723200pt;}
.ws382_c00000{word-spacing:4.729600pt;}
.ws8a6_c00000{word-spacing:4.736000pt;}
.ws36d_c00000{word-spacing:4.742400pt;}
.ws20a_c00000{word-spacing:4.748800pt;}
.ws20b_c00000{word-spacing:4.755200pt;}
.ws48f_c00000{word-spacing:4.761600pt;}
.ws7c2_c00000{word-spacing:4.768000pt;}
.ws12f3_c00000{word-spacing:4.772640pt;}
.ws3d8_c00000{word-spacing:4.774400pt;}
.ws1ff_c00000{word-spacing:4.780800pt;}
.ws188b_c00000{word-spacing:4.782880pt;}
.ws3c_c00000{word-spacing:4.787200pt;}
.ws127f_c00000{word-spacing:4.788224pt;}
.ws3db_c00000{word-spacing:4.793600pt;}
.ws616_c00000{word-spacing:4.796064pt;}
.ws3d_c00000{word-spacing:4.800000pt;}
.ws11ce_c00000{word-spacing:4.801920pt;}
.ws1ac_c00000{word-spacing:4.806400pt;}
.ws4cb_c00000{word-spacing:4.807776pt;}
.ws3b1_c00000{word-spacing:4.812800pt;}
.ws598_c00000{word-spacing:4.813632pt;}
.ws844_c00000{word-spacing:4.819200pt;}
.ws597_c00000{word-spacing:4.819488pt;}
.ws15b3_c00000{word-spacing:4.825344pt;}
.ws6b5_c00000{word-spacing:4.825600pt;}
.ws7f9_c00000{word-spacing:4.831200pt;}
.ws999_c00000{word-spacing:4.832000pt;}
.ws110c_c00000{word-spacing:4.836320pt;}
.ws4cc_c00000{word-spacing:4.837056pt;}
.ws942_c00000{word-spacing:4.838400pt;}
.ws7f8_c00000{word-spacing:4.842912pt;}
.ws6d3_c00000{word-spacing:4.844800pt;}
.ws82d_c00000{word-spacing:4.851200pt;}
.ws3e0_c00000{word-spacing:4.854624pt;}
.ws1a4b_c00000{word-spacing:4.857600pt;}
.wscfe_c00000{word-spacing:4.860480pt;}
.ws7c3_c00000{word-spacing:4.864000pt;}
.ws3e8_c00000{word-spacing:4.866336pt;}
.wsea1_c00000{word-spacing:4.870400pt;}
.ws3e7_c00000{word-spacing:4.872192pt;}
.ws133c_c00000{word-spacing:4.873728pt;}
.wsf09_c00000{word-spacing:4.876800pt;}
.wsda7_c00000{word-spacing:4.878048pt;}
.ws12a1_c00000{word-spacing:4.883200pt;}
.ws1946_c00000{word-spacing:4.884416pt;}
.ws18cf_c00000{word-spacing:4.889600pt;}
.ws176e_c00000{word-spacing:4.889760pt;}
.ws1954_c00000{word-spacing:4.900448pt;}
.ws1234_c00000{word-spacing:4.901472pt;}
.wsb99_c00000{word-spacing:4.902400pt;}
.wsaf2_c00000{word-spacing:4.908800pt;}
.ws464_c00000{word-spacing:4.915200pt;}
.ws7db_c00000{word-spacing:4.921600pt;}
.ws18d0_c00000{word-spacing:4.928000pt;}
.ws363_c00000{word-spacing:4.934400pt;}
.ws4db_c00000{word-spacing:4.940800pt;}
.wsfac_c00000{word-spacing:4.947200pt;}
.ws4e5_c00000{word-spacing:4.953600pt;}
.wsf2c_c00000{word-spacing:4.954176pt;}
.ws156d_c00000{word-spacing:4.959232pt;}
.ws16e2_c00000{word-spacing:4.960000pt;}
.ws4e7_c00000{word-spacing:4.966400pt;}
.ws9c4_c00000{word-spacing:4.972800pt;}
.ws72f_c00000{word-spacing:4.979200pt;}
.ws1955_c00000{word-spacing:4.980608pt;}
.wsf0a_c00000{word-spacing:4.985600pt;}
.wsde6_c00000{word-spacing:4.992000pt;}
.ws1947_c00000{word-spacing:4.996640pt;}
.ws1349_c00000{word-spacing:4.998400pt;}
.ws7cc_c00000{word-spacing:5.004800pt;}
.ws463_c00000{word-spacing:5.011200pt;}
.ws186_c00000{word-spacing:5.017600pt;}
.ws1267_c00000{word-spacing:5.018016pt;}
.ws2cf_c00000{word-spacing:5.024000pt;}
.ws682_c00000{word-spacing:5.030400pt;}
.ws53e_c00000{word-spacing:5.036800pt;}
.ws13f_c00000{word-spacing:5.043200pt;}
.ws9a_c00000{word-spacing:5.049600pt;}
.ws165c_c00000{word-spacing:5.053728pt;}
.ws71b_c00000{word-spacing:5.056000pt;}
.ws165d_c00000{word-spacing:5.059584pt;}
.ws18a_c00000{word-spacing:5.062400pt;}
.ws185_c00000{word-spacing:5.068800pt;}
.ws7aa_c00000{word-spacing:5.075200pt;}
.ws13e_c00000{word-spacing:5.081600pt;}
.ws1578_c00000{word-spacing:5.082144pt;}
.ws2d0_c00000{word-spacing:5.088000pt;}
.ws189_c00000{word-spacing:5.094400pt;}
.ws4dc_c00000{word-spacing:5.100800pt;}
.ws27e_c00000{word-spacing:5.107200pt;}
.ws1e6_c00000{word-spacing:5.113600pt;}
.ws807_c00000{word-spacing:5.118144pt;}
.ws1716_c00000{word-spacing:5.119552pt;}
.ws187_c00000{word-spacing:5.120000pt;}
.wsda8_c00000{word-spacing:5.124000pt;}
.ws4e6_c00000{word-spacing:5.126400pt;}
.ws749_c00000{word-spacing:5.129856pt;}
.ws1901_c00000{word-spacing:5.130240pt;}
.ws8d6_c00000{word-spacing:5.132800pt;}
.wse45_c00000{word-spacing:5.135712pt;}
.ws76f_c00000{word-spacing:5.139200pt;}
.ws470_c00000{word-spacing:5.141568pt;}
.wsc4c_c00000{word-spacing:5.145600pt;}
.wsf2b_c00000{word-spacing:5.147424pt;}
.wsa45_c00000{word-spacing:5.152000pt;}
.ws471_c00000{word-spacing:5.153280pt;}
.ws72e_c00000{word-spacing:5.158400pt;}
.ws4ca_c00000{word-spacing:5.159136pt;}
.ws106a_c00000{word-spacing:5.162304pt;}
.ws12fa_c00000{word-spacing:5.164800pt;}
.ws4f4_c00000{word-spacing:5.164992pt;}
.ws748_c00000{word-spacing:5.170848pt;}
.ws153a_c00000{word-spacing:5.171200pt;}
.ws1603_c00000{word-spacing:5.176704pt;}
.ws1280_c00000{word-spacing:5.178336pt;}
.ws37b_c00000{word-spacing:5.182560pt;}
.ws19ef_c00000{word-spacing:5.184000pt;}
.ws808_c00000{word-spacing:5.188416pt;}
.wsaf1_c00000{word-spacing:5.190400pt;}
.ws49c_c00000{word-spacing:5.200128pt;}
.wse2f_c00000{word-spacing:5.203200pt;}
.ws1086_c00000{word-spacing:5.205056pt;}
.ws17e4_c00000{word-spacing:5.205984pt;}
.ws18d8_c00000{word-spacing:5.209600pt;}
.ws8f2_c00000{word-spacing:5.216000pt;}
.ws1606_c00000{word-spacing:5.217696pt;}
.ws1804_c00000{word-spacing:5.222400pt;}
.wsf2a_c00000{word-spacing:5.223552pt;}
.wsfa8_c00000{word-spacing:5.228800pt;}
.ws81e_c00000{word-spacing:5.235200pt;}
.ws946_c00000{word-spacing:5.241600pt;}
.ws577_c00000{word-spacing:5.248000pt;}
.ws322_c00000{word-spacing:5.254400pt;}
.ws1403_c00000{word-spacing:5.260800pt;}
.wsf29_c00000{word-spacing:5.264544pt;}
.ws109f_c00000{word-spacing:5.265600pt;}
.ws101_c00000{word-spacing:5.267200pt;}
.ws578_c00000{word-spacing:5.273600pt;}
.ws1746_c00000{word-spacing:5.274528pt;}
.wsb67_c00000{word-spacing:5.280000pt;}
.ws8d2_c00000{word-spacing:5.286400pt;}
.ws106b_c00000{word-spacing:5.290560pt;}
.ws4bf_c00000{word-spacing:5.292800pt;}
.ws85d_c00000{word-spacing:5.299200pt;}
.wsbeb_c00000{word-spacing:5.305600pt;}
.wsfe_c00000{word-spacing:5.312000pt;}
.wsa13_c00000{word-spacing:5.318400pt;}
.ws829_c00000{word-spacing:5.324800pt;}
.wsff_c00000{word-spacing:5.331200pt;}
.ws2c2_c00000{word-spacing:5.337600pt;}
.ws9ca_c00000{word-spacing:5.344000pt;}
.ws84a_c00000{word-spacing:5.350400pt;}
.ws260_c00000{word-spacing:5.356800pt;}
.ws100_c00000{word-spacing:5.363200pt;}
.ws4d2_c00000{word-spacing:5.369600pt;}
.ws64c_c00000{word-spacing:5.376000pt;}
.ws3b_c00000{word-spacing:5.382400pt;}
.ws287_c00000{word-spacing:5.388800pt;}
.ws1e7_c00000{word-spacing:5.395200pt;}
.ws46c_c00000{word-spacing:5.401600pt;}
.ws4c0_c00000{word-spacing:5.408000pt;}
.ws6e_c00000{word-spacing:5.414400pt;}
.ws350_c00000{word-spacing:5.420800pt;}
.ws261_c00000{word-spacing:5.427200pt;}
.ws3a_c00000{word-spacing:5.433600pt;}
.ws186b_c00000{word-spacing:5.434368pt;}
.ws81f_c00000{word-spacing:5.440000pt;}
.wsf9d_c00000{word-spacing:5.440224pt;}
.ws130a_c00000{word-spacing:5.445536pt;}
.ws133_c00000{word-spacing:5.446400pt;}
.ws96d_c00000{word-spacing:5.451936pt;}
.ws2c1_c00000{word-spacing:5.452800pt;}
.ws1750_c00000{word-spacing:5.456224pt;}
.wsbde_c00000{word-spacing:5.457792pt;}
.ws1e5_c00000{word-spacing:5.459200pt;}
.ws451_c00000{word-spacing:5.463648pt;}
.wsa1a_c00000{word-spacing:5.465600pt;}
.wsf9c_c00000{word-spacing:5.469504pt;}
.ws1e4_c00000{word-spacing:5.472000pt;}
.ws768_c00000{word-spacing:5.475360pt;}
.ws288_c00000{word-spacing:5.478400pt;}
.ws42f_c00000{word-spacing:5.481216pt;}
.ws8e2_c00000{word-spacing:5.484800pt;}
.wsb3a_c00000{word-spacing:5.487072pt;}
.ws1721_c00000{word-spacing:5.488288pt;}
.ws6f4_c00000{word-spacing:5.491200pt;}
.ws450_c00000{word-spacing:5.492928pt;}
.ws1309_c00000{word-spacing:5.493632pt;}
.ws83f_c00000{word-spacing:5.497600pt;}
.ws5f0_c00000{word-spacing:5.498784pt;}
.wscd6_c00000{word-spacing:5.504000pt;}
.ws14a7_c00000{word-spacing:5.504640pt;}
.ws13fa_c00000{word-spacing:5.510400pt;}
.wsef6_c00000{word-spacing:5.510496pt;}
.ws1a97_c00000{word-spacing:5.515008pt;}
.wsf9e_c00000{word-spacing:5.516352pt;}
.ws14e8_c00000{word-spacing:5.522208pt;}
.wsd03_c00000{word-spacing:5.523200pt;}
.ws19c8_c00000{word-spacing:5.529600pt;}
.ws1489_c00000{word-spacing:5.536000pt;}
.ws1722_c00000{word-spacing:5.536384pt;}
.wsc9c_c00000{word-spacing:5.542400pt;}
.ws19e8_c00000{word-spacing:5.548800pt;}
.ws10c2_c00000{word-spacing:5.552416pt;}
.wsdcc_c00000{word-spacing:5.555200pt;}
.ws11d0_c00000{word-spacing:5.561600pt;}
.ws183a_c00000{word-spacing:5.568000pt;}
.ws1100_c00000{word-spacing:5.572800pt;}
.ws980_c00000{word-spacing:5.574400pt;}
.ws13b7_c00000{word-spacing:5.580800pt;}
.wsc53_c00000{word-spacing:5.587200pt;}
.ws61f_c00000{word-spacing:5.593600pt;}
.ws10ff_c00000{word-spacing:5.596800pt;}
.ws48_c00000{word-spacing:5.600000pt;}
.ws1720_c00000{word-spacing:5.600512pt;}
.ws1387_c00000{word-spacing:5.605152pt;}
.ws97f_c00000{word-spacing:5.606400pt;}
.ws1449_c00000{word-spacing:5.612800pt;}
.ws167_c00000{word-spacing:5.619200pt;}
.ws140b_c00000{word-spacing:5.625600pt;}
.ws12b1_c00000{word-spacing:5.632000pt;}
.ws1412_c00000{word-spacing:5.637920pt;}
.ws6d8_c00000{word-spacing:5.638400pt;}
.ws12af_c00000{word-spacing:5.644800pt;}
.ws166_c00000{word-spacing:5.651200pt;}
.wsc00_c00000{word-spacing:5.657600pt;}
.ws83_c00000{word-spacing:5.664000pt;}
.ws46d_c00000{word-spacing:5.670400pt;}
.ws9a5_c00000{word-spacing:5.676800pt;}
.ws87e_c00000{word-spacing:5.683200pt;}
.ws12a_c00000{word-spacing:5.689600pt;}
.ws9bd_c00000{word-spacing:5.696000pt;}
.ws1653_c00000{word-spacing:5.697888pt;}
.ws6af_c00000{word-spacing:5.702400pt;}
.ws874_c00000{word-spacing:5.708800pt;}
.ws658_c00000{word-spacing:5.715200pt;}
.ws2bd_c00000{word-spacing:5.721600pt;}
.ws41f_c00000{word-spacing:5.728000pt;}
.ws16f8_c00000{word-spacing:5.733024pt;}
.ws4a_c00000{word-spacing:5.734400pt;}
.ws129_c00000{word-spacing:5.740800pt;}
.ws733_c00000{word-spacing:5.747200pt;}
.ws1328_c00000{word-spacing:5.750144pt;}
.wsab6_c00000{word-spacing:5.750592pt;}
.ws620_c00000{word-spacing:5.753600pt;}
.wsab7_c00000{word-spacing:5.756448pt;}
.ws32_c00000{word-spacing:5.760000pt;}
.ws9a8_c00000{word-spacing:5.762304pt;}
.ws1959_c00000{word-spacing:5.766176pt;}
.ws9a4_c00000{word-spacing:5.766400pt;}
.wsef7_c00000{word-spacing:5.768160pt;}
.ws172d_c00000{word-spacing:5.771520pt;}
.ws4ec_c00000{word-spacing:5.772800pt;}
.ws164a_c00000{word-spacing:5.774016pt;}
.ws4eb_c00000{word-spacing:5.779200pt;}
.ws1927_c00000{word-spacing:5.779872pt;}
.ws49_c00000{word-spacing:5.785600pt;}
.ws750_c00000{word-spacing:5.785728pt;}
.wsef8_c00000{word-spacing:5.791584pt;}
.ws319_c00000{word-spacing:5.792000pt;}
.ws18a6_c00000{word-spacing:5.792896pt;}
.wsf3f_c00000{word-spacing:5.797440pt;}
.wse21_c00000{word-spacing:5.798400pt;}
.wsc82_c00000{word-spacing:5.803296pt;}
.ws16ee_c00000{word-spacing:5.804800pt;}
.ws16d2_c00000{word-spacing:5.809152pt;}
.ws1b6_c00000{word-spacing:5.811200pt;}
.ws1898_c00000{word-spacing:5.814272pt;}
.wscbd_c00000{word-spacing:5.815008pt;}
.wsf76_c00000{word-spacing:5.817600pt;}
.ws1622_c00000{word-spacing:5.820864pt;}
.ws2c_c00000{word-spacing:5.824000pt;}
.wsab9_c00000{word-spacing:5.826720pt;}
.ws1552_c00000{word-spacing:5.830304pt;}
.ws924_c00000{word-spacing:5.830400pt;}
.wsf40_c00000{word-spacing:5.832576pt;}
.wse61_c00000{word-spacing:5.836800pt;}
.ws15b7_c00000{word-spacing:5.838432pt;}
.wsa9f_c00000{word-spacing:5.843200pt;}
.ws1910_c00000{word-spacing:5.846336pt;}
.wsdee_c00000{word-spacing:5.849600pt;}
.ws172e_c00000{word-spacing:5.851680pt;}
.wsa4c_c00000{word-spacing:5.856000pt;}
.wsb7a_c00000{word-spacing:5.862400pt;}
.ws623_c00000{word-spacing:5.868800pt;}
.ws13bf_c00000{word-spacing:5.875200pt;}
.ws13b9_c00000{word-spacing:5.881600pt;}
.ws16c5_c00000{word-spacing:5.888000pt;}
.ws923_c00000{word-spacing:5.894400pt;}
.ws624_c00000{word-spacing:5.900800pt;}
.ws190f_c00000{word-spacing:5.905120pt;}
.ws146b_c00000{word-spacing:5.907200pt;}
.ws2a_c00000{word-spacing:5.913600pt;}
.ws1902_c00000{word-spacing:5.915808pt;}
.ws55f_c00000{word-spacing:5.920000pt;}
.ws102f_c00000{word-spacing:5.921152pt;}
.ws8a0_c00000{word-spacing:5.926400pt;}
.ws1339_c00000{word-spacing:5.926496pt;}
.ws1553_c00000{word-spacing:5.931840pt;}
.ws8b5_c00000{word-spacing:5.932800pt;}
.wsaa0_c00000{word-spacing:5.945600pt;}
.ws1960_c00000{word-spacing:5.947872pt;}
.wsdd6_c00000{word-spacing:5.952000pt;}
.wsb3e_c00000{word-spacing:5.958400pt;}
.ws5db_c00000{word-spacing:5.964800pt;}
.wsebc_c00000{word-spacing:5.971200pt;}
.ws8b4_c00000{word-spacing:5.977600pt;}
.ws56d_c00000{word-spacing:5.984000pt;}
.ws299_c00000{word-spacing:5.990400pt;}
.ws38b_c00000{word-spacing:5.996800pt;}
.ws12b_c00000{word-spacing:6.003200pt;}
.ws4b1_c00000{word-spacing:6.009600pt;}
.ws27d_c00000{word-spacing:6.016000pt;}
.ws1650_c00000{word-spacing:6.019968pt;}
.ws80a_c00000{word-spacing:6.022400pt;}
.ws5da_c00000{word-spacing:6.028800pt;}
.ws1c3_c00000{word-spacing:6.035200pt;}
.ws656_c00000{word-spacing:6.041600pt;}
.ws2b_c00000{word-spacing:6.048000pt;}
.ws1c2_c00000{word-spacing:6.054400pt;}
.ws560_c00000{word-spacing:6.060800pt;}
.ws1719_c00000{word-spacing:6.065440pt;}
.ws298_c00000{word-spacing:6.067200pt;}
.ws1628_c00000{word-spacing:6.072672pt;}
.ws13d_c00000{word-spacing:6.073600pt;}
.ws7f7_c00000{word-spacing:6.078528pt;}
.ws50e_c00000{word-spacing:6.080000pt;}
.ws6f9_c00000{word-spacing:6.084384pt;}
.ws13c_c00000{word-spacing:6.086400pt;}
.ws15d7_c00000{word-spacing:6.090240pt;}
.ws3ae_c00000{word-spacing:6.092800pt;}
.ws459_c00000{word-spacing:6.096096pt;}
.ws1580_c00000{word-spacing:6.097504pt;}
.ws4b4_c00000{word-spacing:6.099200pt;}
.ws458_c00000{word-spacing:6.101952pt;}
.wsb3d_c00000{word-spacing:6.105600pt;}
.ws15da_c00000{word-spacing:6.107808pt;}
.wsddc_c00000{word-spacing:6.112000pt;}
.ws3e5_c00000{word-spacing:6.113664pt;}
.ws657_c00000{word-spacing:6.118400pt;}
.wscd0_c00000{word-spacing:6.119520pt;}
.ws790_c00000{word-spacing:6.124800pt;}
.wsab0_c00000{word-spacing:6.125376pt;}
.wseb3_c00000{word-spacing:6.131200pt;}
.ws3e6_c00000{word-spacing:6.131232pt;}
.ws114b_c00000{word-spacing:6.134912pt;}
.ws778_c00000{word-spacing:6.137088pt;}
.ws1298_c00000{word-spacing:6.137600pt;}
.ws976_c00000{word-spacing:6.142944pt;}
.ws21e_c00000{word-spacing:6.144000pt;}
.ws119f_c00000{word-spacing:6.145600pt;}
.wsc5f_c00000{word-spacing:6.150400pt;}
.ws1302_c00000{word-spacing:6.150944pt;}
.wsf3e_c00000{word-spacing:6.154656pt;}
.ws1875_c00000{word-spacing:6.156800pt;}
.ws1908_c00000{word-spacing:6.161632pt;}
.ws17d0_c00000{word-spacing:6.163200pt;}
.ws1178_c00000{word-spacing:6.166976pt;}
.ws117c_c00000{word-spacing:6.169600pt;}
.ws114a_c00000{word-spacing:6.172320pt;}
.ws813_c00000{word-spacing:6.176000pt;}
.ws1ae8_c00000{word-spacing:6.177664pt;}
.ws19c4_c00000{word-spacing:6.178080pt;}
.ws90b_c00000{word-spacing:6.182400pt;}
.ws1299_c00000{word-spacing:6.188800pt;}
.ws1433_c00000{word-spacing:6.201600pt;}
.wsf32_c00000{word-spacing:6.208000pt;}
.ws906_c00000{word-spacing:6.214400pt;}
.ws19d9_c00000{word-spacing:6.220800pt;}
.wsb44_c00000{word-spacing:6.227200pt;}
.wsbfa_c00000{word-spacing:6.230784pt;}
.wsc8e_c00000{word-spacing:6.233600pt;}
.wscc4_c00000{word-spacing:6.240000pt;}
.ws371_c00000{word-spacing:6.246400pt;}
.ws1388_c00000{word-spacing:6.252064pt;}
.wsb43_c00000{word-spacing:6.252800pt;}
.ws9f5_c00000{word-spacing:6.259200pt;}
.wscd9_c00000{word-spacing:6.265600pt;}
.ws814_c00000{word-spacing:6.272000pt;}
.ws622_c00000{word-spacing:6.278400pt;}
.ws16a2_c00000{word-spacing:6.284800pt;}
.ws489_c00000{word-spacing:6.291200pt;}
.ws15e_c00000{word-spacing:6.297600pt;}
.ws4a4_c00000{word-spacing:6.304000pt;}
.ws4fd_c00000{word-spacing:6.310400pt;}
.ws4d1_c00000{word-spacing:6.316800pt;}
.ws40e_c00000{word-spacing:6.323200pt;}
.ws1651_c00000{word-spacing:6.324480pt;}
.ws875_c00000{word-spacing:6.329600pt;}
.wsb28_c00000{word-spacing:6.336000pt;}
.wscad_c00000{word-spacing:6.342400pt;}
.ws4d0_c00000{word-spacing:6.348800pt;}
.ws758_c00000{word-spacing:6.355200pt;}
.ws40d_c00000{word-spacing:6.361600pt;}
.ws4a5_c00000{word-spacing:6.368000pt;}
.ws6bc_c00000{word-spacing:6.374400pt;}
.ws19cc_c00000{word-spacing:6.377184pt;}
.ws26e_c00000{word-spacing:6.380800pt;}
.ws7af_c00000{word-spacing:6.383040pt;}
.ws115_c00000{word-spacing:6.387200pt;}
.ws39_c00000{word-spacing:6.393600pt;}
.ws191e_c00000{word-spacing:6.396768pt;}
.ws38_c00000{word-spacing:6.400000pt;}
.wsb45_c00000{word-spacing:6.406400pt;}
.ws11c6_c00000{word-spacing:6.406464pt;}
.ws9e8_c00000{word-spacing:6.412800pt;}
.ws3e3_c00000{word-spacing:6.418176pt;}
.wsd6d_c00000{word-spacing:6.419200pt;}
.ws1503_c00000{word-spacing:6.424032pt;}
.ws4fc_c00000{word-spacing:6.425600pt;}
.ws3e4_c00000{word-spacing:6.429888pt;}
.wscc0_c00000{word-spacing:6.432000pt;}
.ws65f_c00000{word-spacing:6.435744pt;}
.ws133f_c00000{word-spacing:6.439520pt;}
.ws5bf_c00000{word-spacing:6.441600pt;}
.ws8de_c00000{word-spacing:6.444800pt;}
.ws415_c00000{word-spacing:6.447456pt;}
.ws4ef_c00000{word-spacing:6.453312pt;}
.ws194f_c00000{word-spacing:6.455552pt;}
.wsb27_c00000{word-spacing:6.457600pt;}
.ws15ff_c00000{word-spacing:6.459168pt;}
.ws18d5_c00000{word-spacing:6.464000pt;}
.ws660_c00000{word-spacing:6.465024pt;}
.ws162c_c00000{word-spacing:6.470880pt;}
.ws6f5_c00000{word-spacing:6.476800pt;}
.ws1128_c00000{word-spacing:6.482272pt;}
.ws1488_c00000{word-spacing:6.483200pt;}
.ws1085_c00000{word-spacing:6.487616pt;}
.ws16f5_c00000{word-spacing:6.488448pt;}
.ws62b_c00000{word-spacing:6.489600pt;}
.ws162b_c00000{word-spacing:6.494304pt;}
.ws10f5_c00000{word-spacing:6.494400pt;}
.ws1ac1_c00000{word-spacing:6.508800pt;}
.ws1950_c00000{word-spacing:6.508992pt;}
.ws265_c00000{word-spacing:6.515200pt;}
.ws761_c00000{word-spacing:6.521600pt;}
.ws18a1_c00000{word-spacing:6.525024pt;}
.ws1a25_c00000{word-spacing:6.528000pt;}
.ws10a2_c00000{word-spacing:6.532800pt;}
.ws565_c00000{word-spacing:6.534400pt;}
.ws1995_c00000{word-spacing:6.540800pt;}
.ws6ab_c00000{word-spacing:6.547200pt;}
.ws7a2_c00000{word-spacing:6.553600pt;}
.ws873_c00000{word-spacing:6.560000pt;}
.ws1463_c00000{word-spacing:6.566400pt;}
.wsf5a_c00000{word-spacing:6.572800pt;}
.ws18c2_c00000{word-spacing:6.573120pt;}
.ws10f6_c00000{word-spacing:6.576000pt;}
.ws82c_c00000{word-spacing:6.579200pt;}
.ws124b_c00000{word-spacing:6.583808pt;}
.ws7a4_c00000{word-spacing:6.585600pt;}
.ws18a0_c00000{word-spacing:6.589152pt;}
.ws264_c00000{word-spacing:6.592000pt;}
.ws2e1_c00000{word-spacing:6.598400pt;}
.ws40c_c00000{word-spacing:6.604800pt;}
.ws725_c00000{word-spacing:6.611200pt;}
.ws619_c00000{word-spacing:6.617600pt;}
.ws1117_c00000{word-spacing:6.621216pt;}
.ws564_c00000{word-spacing:6.624000pt;}
.wsc3e_c00000{word-spacing:6.630400pt;}
.ws65c_c00000{word-spacing:6.636800pt;}
.ws726_c00000{word-spacing:6.643200pt;}
.wse2_c00000{word-spacing:6.649600pt;}
.ws17d_c00000{word-spacing:6.656000pt;}
.ws6de_c00000{word-spacing:6.662400pt;}
.wse3_c00000{word-spacing:6.668800pt;}
.ws5fe_c00000{word-spacing:6.675200pt;}
.ws7a3_c00000{word-spacing:6.681600pt;}
.ws60e_c00000{word-spacing:6.687552pt;}
.ws6a6_c00000{word-spacing:6.688000pt;}
.ws62a_c00000{word-spacing:6.694400pt;}
.ws2be_c00000{word-spacing:6.700800pt;}
.ws1556_c00000{word-spacing:6.706720pt;}
.ws2e0_c00000{word-spacing:6.707200pt;}
.ws872_c00000{word-spacing:6.713600pt;}
.ws83e_c00000{word-spacing:6.720000pt;}
.ws60d_c00000{word-spacing:6.722688pt;}
.wsfec_c00000{word-spacing:6.722752pt;}
.ws6dd_c00000{word-spacing:6.726400pt;}
.wse89_c00000{word-spacing:6.728096pt;}
.wsac8_c00000{word-spacing:6.728544pt;}
.wse49_c00000{word-spacing:6.732800pt;}
.ws7ce_c00000{word-spacing:6.734400pt;}
.ws17c_c00000{word-spacing:6.739200pt;}
.wsbe4_c00000{word-spacing:6.740256pt;}
.ws65b_c00000{word-spacing:6.745600pt;}
.wsc7d_c00000{word-spacing:6.746112pt;}
.ws18fb_c00000{word-spacing:6.749472pt;}
.wsccf_c00000{word-spacing:6.751968pt;}
.wsa80_c00000{word-spacing:6.752000pt;}
.ws1517_c00000{word-spacing:6.757824pt;}
.ws5d4_c00000{word-spacing:6.758400pt;}
.ws37d_c00000{word-spacing:6.763680pt;}
.wsff9_c00000{word-spacing:6.764800pt;}
.wsc72_c00000{word-spacing:6.769536pt;}
.ws37c_c00000{word-spacing:6.775392pt;}
.ws961_c00000{word-spacing:6.777600pt;}
.ws7d2_c00000{word-spacing:6.781248pt;}
.ws18fa_c00000{word-spacing:6.781536pt;}
.wsed3_c00000{word-spacing:6.784000pt;}
.ws1919_c00000{word-spacing:6.786880pt;}
.ws15d5_c00000{word-spacing:6.787104pt;}
.ws5ff_c00000{word-spacing:6.790400pt;}
.ws1a99_c00000{word-spacing:6.792224pt;}
.ws375_c00000{word-spacing:6.796800pt;}
.ws14e5_c00000{word-spacing:6.798816pt;}
.ws117b_c00000{word-spacing:6.806400pt;}
.wsfbc_c00000{word-spacing:6.808256pt;}
.ws43f_c00000{word-spacing:6.809600pt;}
.ws155f_c00000{word-spacing:6.813600pt;}
.ws10d1_c00000{word-spacing:6.816000pt;}
.ws1013_c00000{word-spacing:6.828800pt;}
.ws174a_c00000{word-spacing:6.829632pt;}
.ws15a8_c00000{word-spacing:6.835200pt;}
.wsbef_c00000{word-spacing:6.841600pt;}
.ws1a23_c00000{word-spacing:6.848000pt;}
.wsdc2_c00000{word-spacing:6.854400pt;}
.ws1073_c00000{word-spacing:6.859200pt;}
.ws12bf_c00000{word-spacing:6.860800pt;}
.ws1072_c00000{word-spacing:6.868800pt;}
.ws1572_c00000{word-spacing:6.872384pt;}
.ws5e1_c00000{word-spacing:6.873600pt;}
.ws1431_c00000{word-spacing:6.880000pt;}
.ws19e_c00000{word-spacing:6.886400pt;}
.ws1918_c00000{word-spacing:6.888416pt;}
.ws855_c00000{word-spacing:6.892800pt;}
.wsfff_c00000{word-spacing:6.899200pt;}
.ws8c8_c00000{word-spacing:6.905600pt;}
.wsbf0_c00000{word-spacing:6.912000pt;}
.ws35_c00000{word-spacing:6.918400pt;}
.ws8c9_c00000{word-spacing:6.924800pt;}
.ws1718_c00000{word-spacing:6.925824pt;}
.wsc23_c00000{word-spacing:6.931200pt;}
.ws6d5_c00000{word-spacing:6.937600pt;}
.ws39a_c00000{word-spacing:6.944000pt;}
.ws925_c00000{word-spacing:6.950400pt;}
.ws19f_c00000{word-spacing:6.956800pt;}
.ws157_c00000{word-spacing:6.963200pt;}
.ws224_c00000{word-spacing:6.969600pt;}
.ws158_c00000{word-spacing:6.976000pt;}
.wsa1b_c00000{word-spacing:6.982400pt;}
.ws225_c00000{word-spacing:6.988800pt;}
.ws73c_c00000{word-spacing:6.995200pt;}
.ws1b0_c00000{word-spacing:7.001600pt;}
.ws37_c00000{word-spacing:7.008000pt;}
.ws1af_c00000{word-spacing:7.014400pt;}
.ws39b_c00000{word-spacing:7.020800pt;}
.ws1177_c00000{word-spacing:7.022016pt;}
.ws5aa_c00000{word-spacing:7.027200pt;}
.ws155e_c00000{word-spacing:7.032704pt;}
.ws1a0_c00000{word-spacing:7.033600pt;}
.ws64b_c00000{word-spacing:7.040000pt;}
.ws1129_c00000{word-spacing:7.043392pt;}
.ws19aa_c00000{word-spacing:7.044768pt;}
.ws36_c00000{word-spacing:7.046400pt;}
.ws6b0_c00000{word-spacing:7.052800pt;}
.wsa59_c00000{word-spacing:7.056480pt;}
.ws377_c00000{word-spacing:7.059200pt;}
.ws6fb_c00000{word-spacing:7.062336pt;}
.ws83c_c00000{word-spacing:7.065600pt;}
.ws1209_c00000{word-spacing:7.068192pt;}
.ws376_c00000{word-spacing:7.072000pt;}
.ws805_c00000{word-spacing:7.074048pt;}
.ws5d3_c00000{word-spacing:7.078400pt;}
.ws9c7_c00000{word-spacing:7.079904pt;}
.wsc5d_c00000{word-spacing:7.084800pt;}
.ws1201_c00000{word-spacing:7.085760pt;}
.ws133e_c00000{word-spacing:7.086144pt;}
.ws1534_c00000{word-spacing:7.091200pt;}
.ws1208_c00000{word-spacing:7.091616pt;}
.ws3dc_c00000{word-spacing:7.097472pt;}
.ws583_c00000{word-spacing:7.103328pt;}
.ws9be_c00000{word-spacing:7.104000pt;}
.wsf93_c00000{word-spacing:7.109184pt;}
.wsbdd_c00000{word-spacing:7.115040pt;}
.ws1604_c00000{word-spacing:7.120896pt;}
.wse37_c00000{word-spacing:7.123200pt;}
.wsbab_c00000{word-spacing:7.126752pt;}
.ws99d_c00000{word-spacing:7.129600pt;}
.wsd6c_c00000{word-spacing:7.136000pt;}
.wsf62_c00000{word-spacing:7.148800pt;}
.ws541_c00000{word-spacing:7.155200pt;}
.ws30c_c00000{word-spacing:7.161600pt;}
.wsfad_c00000{word-spacing:7.168000pt;}
.ws9c2_c00000{word-spacing:7.174400pt;}
.ws368_c00000{word-spacing:7.180800pt;}
.ws542_c00000{word-spacing:7.187200pt;}
.ws10bf_c00000{word-spacing:7.190400pt;}
.ws303_c00000{word-spacing:7.193600pt;}
.ws1243_c00000{word-spacing:7.198368pt;}
.ws34d_c00000{word-spacing:7.200000pt;}
.ws199_c00000{word-spacing:7.206400pt;}
.ws670_c00000{word-spacing:7.212800pt;}
.ws110f_c00000{word-spacing:7.214400pt;}
.ws13d6_c00000{word-spacing:7.219200pt;}
.ws1274_c00000{word-spacing:7.219744pt;}
.wsafe_c00000{word-spacing:7.225600pt;}
.ws8ae_c00000{word-spacing:7.232000pt;}
.wsf03_c00000{word-spacing:7.238400pt;}
.ws112b_c00000{word-spacing:7.241120pt;}
.ws197_c00000{word-spacing:7.244800pt;}
.wsafd_c00000{word-spacing:7.251200pt;}
.ws69a_c00000{word-spacing:7.257600pt;}
.ws69b_c00000{word-spacing:7.264000pt;}
.ws30d_c00000{word-spacing:7.270400pt;}
.ws34e_c00000{word-spacing:7.276800pt;}
.wsaa1_c00000{word-spacing:7.283200pt;}
.ws43e_c00000{word-spacing:7.289600pt;}
.ws35f_c00000{word-spacing:7.296000pt;}
.ws302_c00000{word-spacing:7.302400pt;}
.ws306_c00000{word-spacing:7.308800pt;}
.ws5a7_c00000{word-spacing:7.315200pt;}
.ws33d_c00000{word-spacing:7.321600pt;}
.ws394_c00000{word-spacing:7.328000pt;}
.ws42a_c00000{word-spacing:7.334400pt;}
.ws1aec_c00000{word-spacing:7.337312pt;}
.ws333_c00000{word-spacing:7.340800pt;}
.ws332_c00000{word-spacing:7.347200pt;}
.wsd8a_c00000{word-spacing:7.353344pt;}
.ws307_c00000{word-spacing:7.353600pt;}
.ws1747_c00000{word-spacing:7.358688pt;}
.ws691_c00000{word-spacing:7.360000pt;}
.ws11fb_c00000{word-spacing:7.360992pt;}
.ws360_c00000{word-spacing:7.366400pt;}
.wse00_c00000{word-spacing:7.366848pt;}
.wsf3d_c00000{word-spacing:7.372704pt;}
.wsd6b_c00000{word-spacing:7.372800pt;}
.ws9c6_c00000{word-spacing:7.378560pt;}
.ws145f_c00000{word-spacing:7.379200pt;}
.ws190d_c00000{word-spacing:7.380064pt;}
.wsff5_c00000{word-spacing:7.384416pt;}
.ws1565_c00000{word-spacing:7.385408pt;}
.ws198_c00000{word-spacing:7.385600pt;}
.ws507_c00000{word-spacing:7.390272pt;}
.ws692_c00000{word-spacing:7.392000pt;}
.ws665_c00000{word-spacing:7.396128pt;}
.ws715_c00000{word-spacing:7.398400pt;}
.ws7d7_c00000{word-spacing:7.401984pt;}
.ws964_c00000{word-spacing:7.404800pt;}
.ws162d_c00000{word-spacing:7.407840pt;}
.ws690_c00000{word-spacing:7.411200pt;}
.ws606_c00000{word-spacing:7.413696pt;}
.ws149a_c00000{word-spacing:7.417600pt;}
.wsff4_c00000{word-spacing:7.419552pt;}
.ws7cf_c00000{word-spacing:7.425408pt;}
.ws1ae3_c00000{word-spacing:7.428160pt;}
.ws508_c00000{word-spacing:7.431264pt;}
.ws1115_c00000{word-spacing:7.433504pt;}
.ws1632_c00000{word-spacing:7.436800pt;}
.ws14f8_c00000{word-spacing:7.442976pt;}
.ws66a_c00000{word-spacing:7.443200pt;}
.wsaa2_c00000{word-spacing:7.449600pt;}
.wsd8b_c00000{word-spacing:7.454880pt;}
.ws9b2_c00000{word-spacing:7.462400pt;}
.ws1455_c00000{word-spacing:7.475200pt;}
.wscf5_c00000{word-spacing:7.481600pt;}
.ws1748_c00000{word-spacing:7.486944pt;}
.wscd8_c00000{word-spacing:7.488000pt;}
.ws1004_c00000{word-spacing:7.494400pt;}
.wsce6_c00000{word-spacing:7.500800pt;}
.ws6ac_c00000{word-spacing:7.507200pt;}
.ws61b_c00000{word-spacing:7.513600pt;}
.ws26b_c00000{word-spacing:7.520000pt;}
.ws8d5_c00000{word-spacing:7.526400pt;}
.ws92_c00000{word-spacing:7.539200pt;}
.ws66b_c00000{word-spacing:7.545600pt;}
.ws2e9_c00000{word-spacing:7.552000pt;}
.ws321_c00000{word-spacing:7.558400pt;}
.ws283_c00000{word-spacing:7.564800pt;}
.ws285_c00000{word-spacing:7.571200pt;}
.ws2af_c00000{word-spacing:7.577600pt;}
.ws286_c00000{word-spacing:7.584000pt;}
.ws93_c00000{word-spacing:7.590400pt;}
.ws91_c00000{word-spacing:7.596800pt;}
.ws206_c00000{word-spacing:7.603200pt;}
.ws205_c00000{word-spacing:7.609600pt;}
.wsfd_c00000{word-spacing:7.616000pt;}
.ws61a_c00000{word-spacing:7.622400pt;}
.ws9f0_c00000{word-spacing:7.628800pt;}
.ws26c_c00000{word-spacing:7.635200pt;}
.ws2f7_c00000{word-spacing:7.641600pt;}
.ws320_c00000{word-spacing:7.648000pt;}
.ws31e_c00000{word-spacing:7.654400pt;}
.ws2f8_c00000{word-spacing:7.660800pt;}
.ws131a_c00000{word-spacing:7.663296pt;}
.ws50b_c00000{word-spacing:7.667200pt;}
.ws53a_c00000{word-spacing:7.673600pt;}
.ws561_c00000{word-spacing:7.680000pt;}
.wscb4_c00000{word-spacing:7.683072pt;}
.ws1793_c00000{word-spacing:7.684672pt;}
.ws2b6_c00000{word-spacing:7.686400pt;}
.ws14c6_c00000{word-spacing:7.692800pt;}
.ws16d4_c00000{word-spacing:7.694784pt;}
.wse64_c00000{word-spacing:7.699200pt;}
.ws8e9_c00000{word-spacing:7.700640pt;}
.ws6d4_c00000{word-spacing:7.705600pt;}
.ws44c_c00000{word-spacing:7.706496pt;}
.ws757_c00000{word-spacing:7.712000pt;}
.wscb5_c00000{word-spacing:7.712352pt;}
.ws7b3_c00000{word-spacing:7.718208pt;}
.wsfc_c00000{word-spacing:7.718400pt;}
.ws435_c00000{word-spacing:7.724064pt;}
.wsb1e_c00000{word-spacing:7.724800pt;}
.ws436_c00000{word-spacing:7.729920pt;}
.ws16a4_c00000{word-spacing:7.731200pt;}
.ws1269_c00000{word-spacing:7.732768pt;}
.ws44b_c00000{word-spacing:7.735776pt;}
.ws1496_c00000{word-spacing:7.737600pt;}
.ws1854_c00000{word-spacing:7.741632pt;}
.ws1874_c00000{word-spacing:7.744000pt;}
.ws13ca_c00000{word-spacing:7.750400pt;}
.wsf3b_c00000{word-spacing:7.753344pt;}
.ws17d1_c00000{word-spacing:7.756800pt;}
.ws47e_c00000{word-spacing:7.759200pt;}
.ws11ac_c00000{word-spacing:7.759488pt;}
.ws1727_c00000{word-spacing:7.764832pt;}
.ws44d_c00000{word-spacing:7.765056pt;}
.wsf27_c00000{word-spacing:7.769600pt;}
.ws1726_c00000{word-spacing:7.770176pt;}
.ws1187_c00000{word-spacing:7.775520pt;}
.ws112c_c00000{word-spacing:7.780864pt;}
.ws1800_c00000{word-spacing:7.788800pt;}
.ws10cb_c00000{word-spacing:7.790400pt;}
.ws112d_c00000{word-spacing:7.791552pt;}
.ws185a_c00000{word-spacing:7.795200pt;}
.ws1adf_c00000{word-spacing:7.796896pt;}
.wscf7_c00000{word-spacing:7.801600pt;}
.ws197b_c00000{word-spacing:7.808000pt;}
.ws12cd_c00000{word-spacing:7.814400pt;}
.ws10cc_c00000{word-spacing:7.819200pt;}
.ws1226_c00000{word-spacing:7.820800pt;}
.wsf19_c00000{word-spacing:7.827200pt;}
.wsd4f_c00000{word-spacing:7.833600pt;}
.wsa60_c00000{word-spacing:7.840000pt;}
.ws1d2_c00000{word-spacing:7.846400pt;}
.ws841_c00000{word-spacing:7.852800pt;}
.wsc38_c00000{word-spacing:7.865600pt;}
.ws1d0_c00000{word-spacing:7.872000pt;}
.ws8b0_c00000{word-spacing:7.878400pt;}
.ws9cc_c00000{word-spacing:7.884800pt;}
.wsba1_c00000{word-spacing:7.891200pt;}
.ws90c_c00000{word-spacing:7.897600pt;}
.ws5d9_c00000{word-spacing:7.904000pt;}
.ws3ca_c00000{word-spacing:7.910400pt;}
.ws8af_c00000{word-spacing:7.916800pt;}
.ws1d1_c00000{word-spacing:7.923200pt;}
.wsb2c_c00000{word-spacing:7.929600pt;}
.ws76e_c00000{word-spacing:7.936000pt;}
.ws1c7_c00000{word-spacing:7.942400pt;}
.ws8f_c00000{word-spacing:7.948800pt;}
.ws673_c00000{word-spacing:7.955200pt;}
.ws9a7_c00000{word-spacing:7.961600pt;}
.wsb29_c00000{word-spacing:7.968000pt;}
.ws398_c00000{word-spacing:7.974400pt;}
.ws90_c00000{word-spacing:7.980800pt;}
.ws1157_c00000{word-spacing:7.983936pt;}
.ws1c8_c00000{word-spacing:7.987200pt;}
.ws151f_c00000{word-spacing:7.987584pt;}
.ws6f2_c00000{word-spacing:7.993600pt;}
.ws16e4_c00000{word-spacing:7.999296pt;}
.ws1179_c00000{word-spacing:7.999968pt;}
.wsb18_c00000{word-spacing:8.000000pt;}
.ws868_c00000{word-spacing:8.005152pt;}
.ws397_c00000{word-spacing:8.006400pt;}
.ws1767_c00000{word-spacing:8.011008pt;}
.wsf1a_c00000{word-spacing:8.012800pt;}
.ws3e2_c00000{word-spacing:8.016864pt;}
.ws3c9_c00000{word-spacing:8.019200pt;}
.wse05_c00000{word-spacing:8.022720pt;}
.wsf26_c00000{word-spacing:8.025600pt;}
.ws58e_c00000{word-spacing:8.028576pt;}
.ws3c8_c00000{word-spacing:8.032000pt;}
.ws869_c00000{word-spacing:8.034432pt;}
.ws3e1_c00000{word-spacing:8.040288pt;}
.wsf37_c00000{word-spacing:8.044800pt;}
.wsbac_c00000{word-spacing:8.046144pt;}
.wsf28_c00000{word-spacing:8.051200pt;}
.ws58f_c00000{word-spacing:8.052000pt;}
.ws399_c00000{word-spacing:8.057600pt;}
.ws15bf_c00000{word-spacing:8.057856pt;}
.ws84b_c00000{word-spacing:8.063712pt;}
.wsabe_c00000{word-spacing:8.069568pt;}
.wsd18_c00000{word-spacing:8.076800pt;}
.ws199f_c00000{word-spacing:8.087136pt;}
.wsc8b_c00000{word-spacing:8.089600pt;}
.ws10b9_c00000{word-spacing:8.090816pt;}
.ws68e_c00000{word-spacing:8.096000pt;}
.ws1a28_c00000{word-spacing:8.102400pt;}
.wsecd_c00000{word-spacing:8.108800pt;}
.ws10ba_c00000{word-spacing:8.112192pt;}
.ws69d_c00000{word-spacing:8.115200pt;}
.ws10e5_c00000{word-spacing:8.121600pt;}
.wsb4d_c00000{word-spacing:8.128000pt;}
.wsd17_c00000{word-spacing:8.134400pt;}
.wsd3b_c00000{word-spacing:8.140800pt;}
.wsbaf_c00000{word-spacing:8.147200pt;}
.ws10e6_c00000{word-spacing:8.150400pt;}
.wscbe_c00000{word-spacing:8.153600pt;}
.ws756_c00000{word-spacing:8.160000pt;}
.wsb4c_c00000{word-spacing:8.166400pt;}
.ws1152_c00000{word-spacing:8.170976pt;}
.wsd70_c00000{word-spacing:8.172800pt;}
.wsbae_c00000{word-spacing:8.179200pt;}
.ws172b_c00000{word-spacing:8.181664pt;}
.ws915_c00000{word-spacing:8.185600pt;}
.wsa49_c00000{word-spacing:8.192000pt;}
.ws2d_c00000{word-spacing:8.198400pt;}
.ws7e9_c00000{word-spacing:8.204800pt;}
.ws39e_c00000{word-spacing:8.211200pt;}
.ws6b2_c00000{word-spacing:8.217600pt;}
.ws721_c00000{word-spacing:8.224000pt;}
.ws1199_c00000{word-spacing:8.229760pt;}
.ws755_c00000{word-spacing:8.230400pt;}
.ws2e3_c00000{word-spacing:8.236800pt;}
.ws6c1_c00000{word-spacing:8.239392pt;}
.ws9f_c00000{word-spacing:8.243200pt;}
.ws2e2_c00000{word-spacing:8.249600pt;}
.ws69e_c00000{word-spacing:8.256000pt;}
.ws2fa_c00000{word-spacing:8.262400pt;}
.wse60_c00000{word-spacing:8.268800pt;}
.ws236_c00000{word-spacing:8.275200pt;}
.ws39f_c00000{word-spacing:8.281600pt;}
.wsa0_c00000{word-spacing:8.288000pt;}
.wsc3f_c00000{word-spacing:8.294400pt;}
.ws150_c00000{word-spacing:8.300800pt;}
.ws2f9_c00000{word-spacing:8.307200pt;}
.wsbe2_c00000{word-spacing:8.309664pt;}
.ws235_c00000{word-spacing:8.313600pt;}
.ws16fc_c00000{word-spacing:8.315520pt;}
.ws916_c00000{word-spacing:8.320000pt;}
.ws151_c00000{word-spacing:8.326400pt;}
.ws87b_c00000{word-spacing:8.332800pt;}
.wsf83_c00000{word-spacing:8.333088pt;}
.ws1941_c00000{word-spacing:8.336640pt;}
.ws1601_c00000{word-spacing:8.338944pt;}
.ws419_c00000{word-spacing:8.339200pt;}
.ws1244_c00000{word-spacing:8.341984pt;}
.ws70f_c00000{word-spacing:8.344800pt;}
.ws2e_c00000{word-spacing:8.345600pt;}
.wsb4e_c00000{word-spacing:8.352000pt;}
.ws1087_c00000{word-spacing:8.352672pt;}
.ws121e_c00000{word-spacing:8.356512pt;}
.wsef1_c00000{word-spacing:8.358400pt;}
.ws771_c00000{word-spacing:8.362368pt;}
.ws14b6_c00000{word-spacing:8.364800pt;}
.wsda4_c00000{word-spacing:8.368224pt;}
.ws1581_c00000{word-spacing:8.371200pt;}
.ws504_c00000{word-spacing:8.374080pt;}
.wsa1_c00000{word-spacing:8.377600pt;}
.ws1635_c00000{word-spacing:8.379936pt;}
.ws1a41_c00000{word-spacing:8.384000pt;}
.ws503_c00000{word-spacing:8.385792pt;}
.ws14ce_c00000{word-spacing:8.390400pt;}
.ws1222_c00000{word-spacing:8.391648pt;}
.ws3bc_c00000{word-spacing:8.396800pt;}
.ws11ad_c00000{word-spacing:8.406112pt;}
.ws13e8_c00000{word-spacing:8.409600pt;}
.ws3a1_c00000{word-spacing:8.416000pt;}
.wsc4a_c00000{word-spacing:8.422400pt;}
.ws1576_c00000{word-spacing:8.427488pt;}
.wsf60_c00000{word-spacing:8.428800pt;}
.ws718_c00000{word-spacing:8.435200pt;}
.ws11ae_c00000{word-spacing:8.438176pt;}
.ws16d6_c00000{word-spacing:8.438496pt;}
.ws173_c00000{word-spacing:8.441600pt;}
.ws144f_c00000{word-spacing:8.448000pt;}
.ws147_c00000{word-spacing:8.454400pt;}
.ws1a5f_c00000{word-spacing:8.460800pt;}
.ws796_c00000{word-spacing:8.467200pt;}
.wsc49_c00000{word-spacing:8.473600pt;}
.ws17f4_c00000{word-spacing:8.480000pt;}
.ws13f3_c00000{word-spacing:8.486400pt;}
.wsba5_c00000{word-spacing:8.492800pt;}
.wsfa9_c00000{word-spacing:8.499200pt;}
.ws32b_c00000{word-spacing:8.505600pt;}
.ws1132_c00000{word-spacing:8.507648pt;}
.wsde9_c00000{word-spacing:8.512000pt;}
.ws22b_c00000{word-spacing:8.518400pt;}
.wsba6_c00000{word-spacing:8.524800pt;}
.ws3bb_c00000{word-spacing:8.531200pt;}
.ws1c6_c00000{word-spacing:8.537600pt;}
.ws140f_c00000{word-spacing:8.539712pt;}
.ws146_c00000{word-spacing:8.544000pt;}
.ws3f7_c00000{word-spacing:8.550400pt;}
.ws3a0_c00000{word-spacing:8.556800pt;}
.ws22c_c00000{word-spacing:8.563200pt;}
.ws7e8_c00000{word-spacing:8.569600pt;}
.ws173a_c00000{word-spacing:8.571776pt;}
.ws1c5_c00000{word-spacing:8.576000pt;}
.ws5d1_c00000{word-spacing:8.582400pt;}
.wscba_c00000{word-spacing:8.588800pt;}
.ws75c_c00000{word-spacing:8.595200pt;}
.ws11d_c00000{word-spacing:8.601600pt;}
.ws5d0_c00000{word-spacing:8.608000pt;}
.ws11e_c00000{word-spacing:8.614400pt;}
.ws172_c00000{word-spacing:8.620800pt;}
.wsac0_c00000{word-spacing:8.625888pt;}
.ws8ad_c00000{word-spacing:8.627200pt;}
.ws32c_c00000{word-spacing:8.633600pt;}
.wsce2_c00000{word-spacing:8.637600pt;}
.ws719_c00000{word-spacing:8.640000pt;}
.wsac1_c00000{word-spacing:8.643456pt;}
.ws839_c00000{word-spacing:8.646400pt;}
.ws8ec_c00000{word-spacing:8.649312pt;}
.ws32d_c00000{word-spacing:8.652800pt;}
.ws6c0_c00000{word-spacing:8.655168pt;}
.ws1311_c00000{word-spacing:8.657280pt;}
.wsa0f_c00000{word-spacing:8.659200pt;}
.wsd74_c00000{word-spacing:8.661024pt;}
.ws168f_c00000{word-spacing:8.662624pt;}
.ws145_c00000{word-spacing:8.665600pt;}
.ws780_c00000{word-spacing:8.666880pt;}
.ws33f_c00000{word-spacing:8.672000pt;}
.wsac2_c00000{word-spacing:8.672736pt;}
.ws1313_c00000{word-spacing:8.673312pt;}
.wsd6a_c00000{word-spacing:8.678400pt;}
.ws76a_c00000{word-spacing:8.678592pt;}
.wse84_c00000{word-spacing:8.684448pt;}
.wsea0_c00000{word-spacing:8.684800pt;}
.ws6c2_c00000{word-spacing:8.690304pt;}
.ws3a2_c00000{word-spacing:8.691200pt;}
.wse73_c00000{word-spacing:8.696160pt;}
.ws1135_c00000{word-spacing:8.700032pt;}
.ws1665_c00000{word-spacing:8.702016pt;}
.wsa10_c00000{word-spacing:8.704000pt;}
.ws15ee_c00000{word-spacing:8.707872pt;}
.ws1121_c00000{word-spacing:8.721408pt;}
.wsf24_c00000{word-spacing:8.723200pt;}
.ws12c5_c00000{word-spacing:8.729600pt;}
.ws193f_c00000{word-spacing:8.732096pt;}
.ws1461_c00000{word-spacing:8.742400pt;}
.ws1134_c00000{word-spacing:8.742784pt;}
.ws11aa_c00000{word-spacing:8.748128pt;}
.wse63_c00000{word-spacing:8.748800pt;}
.ws11a9_c00000{word-spacing:8.753472pt;}
.ws16bf_c00000{word-spacing:8.755200pt;}
.wsb1c_c00000{word-spacing:8.761600pt;}
.ws10b3_c00000{word-spacing:8.764800pt;}
.ws14ac_c00000{word-spacing:8.768000pt;}
.ws15bd_c00000{word-spacing:8.774400pt;}
.ws1a92_c00000{word-spacing:8.780800pt;}
.ws1a5e_c00000{word-spacing:8.787200pt;}
.ws179c_c00000{word-spacing:8.788640pt;}
.ws231_c00000{word-spacing:8.793600pt;}
.wsea_c00000{word-spacing:8.800000pt;}
.ws1739_c00000{word-spacing:8.801568pt;}
.ws179e_c00000{word-spacing:8.805664pt;}
.ws112_c00000{word-spacing:8.806400pt;}
.ws628_c00000{word-spacing:8.812800pt;}
.ws179d_c00000{word-spacing:8.814176pt;}
.wsc8f_c00000{word-spacing:8.819200pt;}
.ws14c7_c00000{word-spacing:8.825600pt;}
.ws699_c00000{word-spacing:8.832000pt;}
.ws698_c00000{word-spacing:8.838400pt;}
.ws131b_c00000{word-spacing:8.838976pt;}
.wsb1d_c00000{word-spacing:8.844800pt;}
.wsa4d_c00000{word-spacing:8.851200pt;}
.wse68_c00000{word-spacing:8.857600pt;}
.wsa00_c00000{word-spacing:8.864000pt;}
.wsa2_c00000{word-spacing:8.870400pt;}
.ws403_c00000{word-spacing:8.876800pt;}
.wsa01_c00000{word-spacing:8.883200pt;}
.ws4d9_c00000{word-spacing:8.889600pt;}
.wsfae_c00000{word-spacing:8.896000pt;}
.ws164e_c00000{word-spacing:8.901120pt;}
.wsb4f_c00000{word-spacing:8.902400pt;}
.wsa3_c00000{word-spacing:8.908800pt;}
.ws164d_c00000{word-spacing:8.912832pt;}
.wsb5a_c00000{word-spacing:8.915200pt;}
.wseb_c00000{word-spacing:8.921600pt;}
.ws919_c00000{word-spacing:8.928000pt;}
.ws14f9_c00000{word-spacing:8.930400pt;}
.ws4da_c00000{word-spacing:8.934400pt;}
.ws6b3_c00000{word-spacing:8.940800pt;}
.wsa07_c00000{word-spacing:8.947200pt;}
.ws111_c00000{word-spacing:8.953600pt;}
.wsfd7_c00000{word-spacing:8.956544pt;}
.ws867_c00000{word-spacing:8.959680pt;}
.wsf1c_c00000{word-spacing:8.960000pt;}
.ws111c_c00000{word-spacing:8.961888pt;}
.wsa6c_c00000{word-spacing:8.966400pt;}
.ws6e7_c00000{word-spacing:8.971392pt;}
.wsc52_c00000{word-spacing:8.972800pt;}
.ws866_c00000{word-spacing:8.977248pt;}
.ws14ab_c00000{word-spacing:8.979200pt;}
.ws15de_c00000{word-spacing:8.983104pt;}
.ws230_c00000{word-spacing:8.985600pt;}
.ws664_c00000{word-spacing:8.988960pt;}
.ws16e8_c00000{word-spacing:8.992000pt;}
.ws432_c00000{word-spacing:8.994816pt;}
.ws135f_c00000{word-spacing:8.998400pt;}
.ws44f_c00000{word-spacing:9.000672pt;}
.wsb7b_c00000{word-spacing:9.004800pt;}
.ws17c0_c00000{word-spacing:9.006528pt;}
.ws1174_c00000{word-spacing:9.009984pt;}
.ws747_c00000{word-spacing:9.012384pt;}
.ws769_c00000{word-spacing:9.018240pt;}
.ws14de_c00000{word-spacing:9.024000pt;}
.ws151d_c00000{word-spacing:9.024096pt;}
.wse83_c00000{word-spacing:9.029952pt;}
.ws10e7_c00000{word-spacing:9.033600pt;}
.ws1872_c00000{word-spacing:9.036800pt;}
.ws151e_c00000{word-spacing:9.041664pt;}
.ws1109_c00000{word-spacing:9.042048pt;}
.ws16ff_c00000{word-spacing:9.043200pt;}
.ws130f_c00000{word-spacing:9.052736pt;}
.ws1154_c00000{word-spacing:9.058080pt;}
.ws63a_c00000{word-spacing:9.062400pt;}
.ws1173_c00000{word-spacing:9.063424pt;}
.ws1846_c00000{word-spacing:9.068800pt;}
.ws1236_c00000{word-spacing:9.075200pt;}
.ws1abf_c00000{word-spacing:9.081600pt;}
.ws1005_c00000{word-spacing:9.088000pt;}
.wse57_c00000{word-spacing:9.094400pt;}
.ws501_c00000{word-spacing:9.100800pt;}
.ws14cc_c00000{word-spacing:9.107200pt;}
.ws13cf_c00000{word-spacing:9.111520pt;}
.ws6f7_c00000{word-spacing:9.113600pt;}
.wsa3c_c00000{word-spacing:9.120000pt;}
.ws63b_c00000{word-spacing:9.126400pt;}
.wsf4d_c00000{word-spacing:9.132800pt;}
.ws64d_c00000{word-spacing:9.139200pt;}
.ws1253_c00000{word-spacing:9.143584pt;}
.ws1ce_c00000{word-spacing:9.145600pt;}
.ws1122_c00000{word-spacing:9.148928pt;}
.ws1a0b_c00000{word-spacing:9.152000pt;}
.ws14cf_c00000{word-spacing:9.158400pt;}
.ws5f4_c00000{word-spacing:9.164800pt;}
.ws9e_c00000{word-spacing:9.171200pt;}
.ws41c_c00000{word-spacing:9.177600pt;}
.ws502_c00000{word-spacing:9.184000pt;}
.ws24f_c00000{word-spacing:9.190400pt;}
.ws6f6_c00000{word-spacing:9.196800pt;}
.ws785_c00000{word-spacing:9.203200pt;}
.ws90d_c00000{word-spacing:9.209600pt;}
.ws14df_c00000{word-spacing:9.216000pt;}
.wsa42_c00000{word-spacing:9.222400pt;}
.ws890_c00000{word-spacing:9.228800pt;}
.ws41b_c00000{word-spacing:9.235200pt;}
.ws8c3_c00000{word-spacing:9.241600pt;}
.ws15b_c00000{word-spacing:9.248000pt;}
.ws9d_c00000{word-spacing:9.254400pt;}
.ws85a_c00000{word-spacing:9.260800pt;}
.ws764_c00000{word-spacing:9.267200pt;}
.ws15a_c00000{word-spacing:9.273600pt;}
.wsbd5_c00000{word-spacing:9.275904pt;}
.ws14c_c00000{word-spacing:9.280000pt;}
.ws85b_c00000{word-spacing:9.286400pt;}
.wse1a_c00000{word-spacing:9.287616pt;}
.ws3cb_c00000{word-spacing:9.292800pt;}
.ws3cd_c00000{word-spacing:9.299200pt;}
.ws1479_c00000{word-spacing:9.299328pt;}
.wsbb2_c00000{word-spacing:9.305184pt;}
.ws308_c00000{word-spacing:9.305600pt;}
.ws15e6_c00000{word-spacing:9.311040pt;}
.ws3cc_c00000{word-spacing:9.312000pt;}
.wsff1_c00000{word-spacing:9.316896pt;}
.wsa3d_c00000{word-spacing:9.318400pt;}
.ws168e_c00000{word-spacing:9.319936pt;}
.ws6c7_c00000{word-spacing:9.322752pt;}
.ws50d_c00000{word-spacing:9.324800pt;}
.ws6e6_c00000{word-spacing:9.328608pt;}
.wsf07_c00000{word-spacing:9.331200pt;}
.ws15ed_c00000{word-spacing:9.334464pt;}
.wsb92_c00000{word-spacing:9.337600pt;}
.ws15f9_c00000{word-spacing:9.340320pt;}
.ws1423_c00000{word-spacing:9.341312pt;}
.ws14d0_c00000{word-spacing:9.344000pt;}
.ws1354_c00000{word-spacing:9.346176pt;}
.ws1110_c00000{word-spacing:9.346656pt;}
.wsb0c_c00000{word-spacing:9.356800pt;}
.ws102e_c00000{word-spacing:9.357344pt;}
.ws1884_c00000{word-spacing:9.362688pt;}
.wsbca_c00000{word-spacing:9.363200pt;}
.ws115f_c00000{word-spacing:9.368032pt;}
.wsc5a_c00000{word-spacing:9.369600pt;}
.ws818_c00000{word-spacing:9.376000pt;}
.ws1cf_c00000{word-spacing:9.382400pt;}
.wsdd1_c00000{word-spacing:9.388800pt;}
.ws51f_c00000{word-spacing:9.395200pt;}
.wsd94_c00000{word-spacing:9.401600pt;}
.ws1161_c00000{word-spacing:9.408000pt;}
.ws12f6_c00000{word-spacing:9.414400pt;}
.ws686_c00000{word-spacing:9.420800pt;}
.wsdd2_c00000{word-spacing:9.427200pt;}
.ws14b_c00000{word-spacing:9.433600pt;}
.ws499_c00000{word-spacing:9.440000pt;}
.ws929_c00000{word-spacing:9.446400pt;}
.ws1428_c00000{word-spacing:9.452800pt;}
.wsc01_c00000{word-spacing:9.459200pt;}
.ws12f9_c00000{word-spacing:9.465600pt;}
.ws90e_c00000{word-spacing:9.472000pt;}
.wsa17_c00000{word-spacing:9.478400pt;}
.ws49b_c00000{word-spacing:9.484800pt;}
.wsb7e_c00000{word-spacing:9.491200pt;}
.ws7e_c00000{word-spacing:9.497600pt;}
.ws521_c00000{word-spacing:9.504000pt;}
.wsb0b_c00000{word-spacing:9.510400pt;}
.wsdbf_c00000{word-spacing:9.516800pt;}
.ws31b_c00000{word-spacing:9.523200pt;}
.ws543_c00000{word-spacing:9.529600pt;}
.ws36b_c00000{word-spacing:9.536000pt;}
.wsc56_c00000{word-spacing:9.542400pt;}
.wsdd0_c00000{word-spacing:9.548800pt;}
.ws4ad_c00000{word-spacing:9.555200pt;}
.ws6dc_c00000{word-spacing:9.561600pt;}
.ws392_c00000{word-spacing:9.568000pt;}
.ws7d_c00000{word-spacing:9.574400pt;}
.ws49a_c00000{word-spacing:9.580800pt;}
.ws520_c00000{word-spacing:9.587200pt;}
.ws36c_c00000{word-spacing:9.593600pt;}
.ws14a_c00000{word-spacing:9.600000pt;}
.ws1749_c00000{word-spacing:9.603168pt;}
.wsb91_c00000{word-spacing:9.606400pt;}
.ws1331_c00000{word-spacing:9.608512pt;}
.ws15b9_c00000{word-spacing:9.609696pt;}
.ws15f3_c00000{word-spacing:9.612800pt;}
.wscb7_c00000{word-spacing:9.615552pt;}
.ws31a_c00000{word-spacing:9.619200pt;}
.ws1670_c00000{word-spacing:9.621408pt;}
.ws6db_c00000{word-spacing:9.625600pt;}
.ws150e_c00000{word-spacing:9.627264pt;}
.ws1609_c00000{word-spacing:9.633120pt;}
.ws19f0_c00000{word-spacing:9.638400pt;}
.ws93a_c00000{word-spacing:9.644800pt;}
.ws47b_c00000{word-spacing:9.650688pt;}
.ws14d4_c00000{word-spacing:9.651200pt;}
.wsf54_c00000{word-spacing:9.656544pt;}
.wscb6_c00000{word-spacing:9.662400pt;}
.wsc3d_c00000{word-spacing:9.664000pt;}
.wsb36_c00000{word-spacing:9.668256pt;}
.ws1183_c00000{word-spacing:9.672640pt;}
.wse6b_c00000{word-spacing:9.679968pt;}
.ws12d9_c00000{word-spacing:9.683200pt;}
.ws1944_c00000{word-spacing:9.694016pt;}
.ws105c_c00000{word-spacing:9.696000pt;}
.ws154e_c00000{word-spacing:9.702400pt;}
.ws1160_c00000{word-spacing:9.704704pt;}
.ws1076_c00000{word-spacing:9.715200pt;}
.ws1818_c00000{word-spacing:9.721600pt;}
.wsab2_c00000{word-spacing:9.734400pt;}
.ws1a54_c00000{word-spacing:9.740800pt;}
.ws14c8_c00000{word-spacing:9.753600pt;}
.ws5d6_c00000{word-spacing:9.760000pt;}
.wsae9_c00000{word-spacing:9.766400pt;}
.ws638_c00000{word-spacing:9.772800pt;}
.ws146c_c00000{word-spacing:9.779200pt;}
.ws1566_c00000{word-spacing:9.784864pt;}
.ws1928_c00000{word-spacing:9.785600pt;}
.ws1392_c00000{word-spacing:9.788800pt;}
.ws4a3_c00000{word-spacing:9.792000pt;}
.ws193_c00000{word-spacing:9.798400pt;}
.ws1e1_c00000{word-spacing:9.804800pt;}
.ws1945_c00000{word-spacing:9.806240pt;}
.ws146d_c00000{word-spacing:9.811200pt;}
.ws16f_c00000{word-spacing:9.817600pt;}
.ws171_c00000{word-spacing:9.824000pt;}
.wsd9b_c00000{word-spacing:9.830400pt;}
.wsc02_c00000{word-spacing:9.836800pt;}
.wse2c_c00000{word-spacing:9.843200pt;}
.ws226_c00000{word-spacing:9.849600pt;}
.ws78_c00000{word-spacing:9.856000pt;}
.ws348_c00000{word-spacing:9.862400pt;}
.wsae8_c00000{word-spacing:9.868800pt;}
.ws6d1_c00000{word-spacing:9.875200pt;}
.ws637_c00000{word-spacing:9.881600pt;}
.ws4ea_c00000{word-spacing:9.888000pt;}
.ws48c_c00000{word-spacing:9.894400pt;}
.ws48d_c00000{word-spacing:9.900800pt;}
.ws170_c00000{word-spacing:9.907200pt;}
.ws192_c00000{word-spacing:9.913600pt;}
.ws75d_c00000{word-spacing:9.920000pt;}
.ws7e1_c00000{word-spacing:9.920064pt;}
.wsb39_c00000{word-spacing:9.925920pt;}
.ws5d5_c00000{word-spacing:9.926400pt;}
.wsb38_c00000{word-spacing:9.931776pt;}
.wscae_c00000{word-spacing:9.932800pt;}
.wsdff_c00000{word-spacing:9.937632pt;}
.ws79_c00000{word-spacing:9.939200pt;}
.ws179f_c00000{word-spacing:9.939840pt;}
.ws74f_c00000{word-spacing:9.943488pt;}
.ws1693_c00000{word-spacing:9.945184pt;}
.ws228_c00000{word-spacing:9.945600pt;}
.wsbbc_c00000{word-spacing:9.949344pt;}
.ws227_c00000{word-spacing:9.952000pt;}
.ws7e0_c00000{word-spacing:9.955200pt;}
.ws683_c00000{word-spacing:9.958400pt;}
.wsef9_c00000{word-spacing:9.961056pt;}
.wsd64_c00000{word-spacing:9.964800pt;}
.ws3f0_c00000{word-spacing:9.966912pt;}
.wsab3_c00000{word-spacing:9.971200pt;}
.ws3f1_c00000{word-spacing:9.972768pt;}
.wsa38_c00000{word-spacing:9.977600pt;}
.wsbc0_c00000{word-spacing:9.978624pt;}
.ws1337_c00000{word-spacing:9.982592pt;}
.ws347_c00000{word-spacing:9.984000pt;}
.ws514_c00000{word-spacing:9.984480pt;}
.wsbbf_c00000{word-spacing:9.990336pt;}
.ws1426_c00000{word-spacing:9.990400pt;}
.wsa9a_c00000{word-spacing:10.003200pt;}
.ws156a_c00000{word-spacing:10.003968pt;}
.wsfd9_c00000{word-spacing:10.009312pt;}
.ws93b_c00000{word-spacing:10.009600pt;}
.ws824_c00000{word-spacing:10.016000pt;}
.ws13a1_c00000{word-spacing:10.022400pt;}
.ws17a0_c00000{word-spacing:10.025344pt;}
.ws186a_c00000{word-spacing:10.028800pt;}
.ws1084_c00000{word-spacing:10.046720pt;}
.wsb49_c00000{word-spacing:10.048000pt;}
.ws1555_c00000{word-spacing:10.052064pt;}
.wsfb3_c00000{word-spacing:10.054400pt;}
.ws16e0_c00000{word-spacing:10.060800pt;}
.ws655_c00000{word-spacing:10.067200pt;}
.ws10b6_c00000{word-spacing:10.070400pt;}
.ws222_c00000{word-spacing:10.073600pt;}
.ws1711_c00000{word-spacing:10.073952pt;}
.ws10b7_c00000{word-spacing:10.075200pt;}
.ws1713_c00000{word-spacing:10.078208pt;}
.ws6d2_c00000{word-spacing:10.080000pt;}
.ws79b_c00000{word-spacing:10.086400pt;}
.wsb48_c00000{word-spacing:10.092800pt;}
.wsa92_c00000{word-spacing:10.099200pt;}
.ws1712_c00000{word-spacing:10.099488pt;}
.ws169b_c00000{word-spacing:10.100160pt;}
.wsc42_c00000{word-spacing:10.105600pt;}
.wsb98_c00000{word-spacing:10.112000pt;}
.ws106_c00000{word-spacing:10.118400pt;}
.ws11ab_c00000{word-spacing:10.121536pt;}
.ws7f_c00000{word-spacing:10.124800pt;}
.wsdfb_c00000{word-spacing:10.131200pt;}
.ws973_c00000{word-spacing:10.137600pt;}
.ws9d5_c00000{word-spacing:10.144000pt;}
.ws253_c00000{word-spacing:10.150400pt;}
.wsba7_c00000{word-spacing:10.156800pt;}
.ws160f_c00000{word-spacing:10.160160pt;}
.wse31_c00000{word-spacing:10.163200pt;}
.wsa0b_c00000{word-spacing:10.169600pt;}
.ws144e_c00000{word-spacing:10.176000pt;}
.ws61e_c00000{word-spacing:10.182400pt;}
.ws61d_c00000{word-spacing:10.188800pt;}
.ws27c_c00000{word-spacing:10.195200pt;}
.wsb7d_c00000{word-spacing:10.201600pt;}
.ws223_c00000{word-spacing:10.208000pt;}
.ws346_c00000{word-spacing:10.214400pt;}
.ws107_c00000{word-spacing:10.220800pt;}
.ws16f2_c00000{word-spacing:10.224576pt;}
.ws823_c00000{word-spacing:10.227200pt;}
.ws110_c00000{word-spacing:10.233600pt;}
.wsddf_c00000{word-spacing:10.236288pt;}
.wsa3e_c00000{word-spacing:10.240000pt;}
.wsa02_c00000{word-spacing:10.242144pt;}
.ws68f_c00000{word-spacing:10.246400pt;}
.ws8eb_c00000{word-spacing:10.248000pt;}
.ws9ff_c00000{word-spacing:10.252800pt;}
.ws11cb_c00000{word-spacing:10.253856pt;}
.wse4a_c00000{word-spacing:10.259200pt;}
.ws8ea_c00000{word-spacing:10.259712pt;}
.ws7ad_c00000{word-spacing:10.265568pt;}
.ws252_c00000{word-spacing:10.265600pt;}
.wsfdc_c00000{word-spacing:10.271168pt;}
.wsab8_c00000{word-spacing:10.271424pt;}
.ws15a0_c00000{word-spacing:10.272000pt;}
.ws845_c00000{word-spacing:10.277280pt;}
.ws11f0_c00000{word-spacing:10.278400pt;}
.ws7ae_c00000{word-spacing:10.283136pt;}
.ws185c_c00000{word-spacing:10.284800pt;}
.ws122e_c00000{word-spacing:10.288992pt;}
.wsb97_c00000{word-spacing:10.291200pt;}
.ws11cc_c00000{word-spacing:10.294848pt;}
.ws10f_c00000{word-spacing:10.297600pt;}
.ws150a_c00000{word-spacing:10.300704pt;}
.ws517_c00000{word-spacing:10.304000pt;}
.ws1505_c00000{word-spacing:10.306560pt;}
.ws3ec_c00000{word-spacing:10.312416pt;}
.ws1623_c00000{word-spacing:10.318272pt;}
.ws1139_c00000{word-spacing:10.324608pt;}
.ws153d_c00000{word-spacing:10.329600pt;}
.ws1333_c00000{word-spacing:10.340640pt;}
.ws9e9_c00000{word-spacing:10.341696pt;}
.ws15bc_c00000{word-spacing:10.342400pt;}
.ws1967_c00000{word-spacing:10.356672pt;}
.wsc86_c00000{word-spacing:10.361600pt;}
.ws19e9_c00000{word-spacing:10.368000pt;}
.wsce7_c00000{word-spacing:10.374400pt;}
.ws1a42_c00000{word-spacing:10.380800pt;}
.ws1980_c00000{word-spacing:10.387200pt;}
.wse2d_c00000{word-spacing:10.393600pt;}
.ws782_c00000{word-spacing:10.400000pt;}
.ws1ad5_c00000{word-spacing:10.404768pt;}
.ws361_c00000{word-spacing:10.406400pt;}
.wsa12_c00000{word-spacing:10.412800pt;}
.ws390_c00000{word-spacing:10.419200pt;}
.ws794_c00000{word-spacing:10.425600pt;}
.ws1968_c00000{word-spacing:10.426144pt;}
.ws931_c00000{word-spacing:10.432000pt;}
.ws38f_c00000{word-spacing:10.438400pt;}
.ws717_c00000{word-spacing:10.444800pt;}
.ws516_c00000{word-spacing:10.451200pt;}
.ws57a_c00000{word-spacing:10.457600pt;}
.ws705_c00000{word-spacing:10.464000pt;}
.ws28e_c00000{word-spacing:10.470400pt;}
.ws3da_c00000{word-spacing:10.476800pt;}
.wsade_c00000{word-spacing:10.483200pt;}
.ws4b_c00000{word-spacing:10.489600pt;}
.wsf10_c00000{word-spacing:10.496000pt;}
.ws8e8_c00000{word-spacing:10.499808pt;}
.ws61c_c00000{word-spacing:10.502400pt;}
.ws639_c00000{word-spacing:10.508800pt;}
.ws652_c00000{word-spacing:10.515200pt;}
.ws8bf_c00000{word-spacing:10.521600pt;}
.ws6a0_c00000{word-spacing:10.528000pt;}
.ws62c_c00000{word-spacing:10.534400pt;}
.ws515_c00000{word-spacing:10.540800pt;}
.ws1202_c00000{word-spacing:10.546656pt;}
.ws28f_c00000{word-spacing:10.547200pt;}
.ws362_c00000{word-spacing:10.553600pt;}
.ws1798_c00000{word-spacing:10.554400pt;}
.ws172c_c00000{word-spacing:10.559744pt;}
.ws3d9_c00000{word-spacing:10.560000pt;}
.ws1762_c00000{word-spacing:10.564224pt;}
.ws1ad2_c00000{word-spacing:10.565088pt;}
.ws706_c00000{word-spacing:10.566400pt;}
.ws16df_c00000{word-spacing:10.570080pt;}
.wsc7c_c00000{word-spacing:10.572800pt;}
.ws16aa_c00000{word-spacing:10.575936pt;}
.ws579_c00000{word-spacing:10.579200pt;}
.ws613_c00000{word-spacing:10.581792pt;}
.wsb07_c00000{word-spacing:10.585600pt;}
.ws612_c00000{word-spacing:10.587648pt;}
.wsa7d_c00000{word-spacing:10.592000pt;}
.ws16ed_c00000{word-spacing:10.593504pt;}
.ws9bc_c00000{word-spacing:10.598400pt;}
.wsac9_c00000{word-spacing:10.599360pt;}
.wse94_c00000{word-spacing:10.604800pt;}
.wsa2b_c00000{word-spacing:10.605216pt;}
.wsa2c_c00000{word-spacing:10.611072pt;}
.ws1a1b_c00000{word-spacing:10.611200pt;}
.wsaca_c00000{word-spacing:10.616928pt;}
.ws14e0_c00000{word-spacing:10.617600pt;}
.ws1319_c00000{word-spacing:10.618528pt;}
.ws584_c00000{word-spacing:10.622784pt;}
.ws18b4_c00000{word-spacing:10.624000pt;}
.wsa2f_c00000{word-spacing:10.628640pt;}
.wsdd9_c00000{word-spacing:10.630400pt;}
.ws1794_c00000{word-spacing:10.639904pt;}
.ws1297_c00000{word-spacing:10.643200pt;}
.ws1796_c00000{word-spacing:10.645248pt;}
.ws1350_c00000{word-spacing:10.646208pt;}
.ws18ca_c00000{word-spacing:10.650592pt;}
.ws1795_c00000{word-spacing:10.655936pt;}
.ws8e4_c00000{word-spacing:10.656000pt;}
.ws2cb_c00000{word-spacing:10.675200pt;}
.ws1811_c00000{word-spacing:10.681600pt;}
.ws1268_c00000{word-spacing:10.682656pt;}
.ws984_c00000{word-spacing:10.688000pt;}
.ws10bb_c00000{word-spacing:10.689600pt;}
.ws154f_c00000{word-spacing:10.700800pt;}
.ws14dd_c00000{word-spacing:10.707200pt;}
.ws1646_c00000{word-spacing:10.713600pt;}
.ws983_c00000{word-spacing:10.720000pt;}
.wsb9c_c00000{word-spacing:10.726400pt;}
.ws165_c00000{word-spacing:10.732800pt;}
.wsd65_c00000{word-spacing:10.739200pt;}
.ws10f8_c00000{word-spacing:10.741440pt;}
.ws765_c00000{word-spacing:10.745600pt;}
.ws10ed_c00000{word-spacing:10.746784pt;}
.ws92a_c00000{word-spacing:10.752000pt;}
.ws799_c00000{word-spacing:10.758400pt;}
.ws1886_c00000{word-spacing:10.762816pt;}
.ws13b5_c00000{word-spacing:10.771200pt;}
.wsbee_c00000{word-spacing:10.777600pt;}
.ws4cf_c00000{word-spacing:10.784000pt;}
.ws123_c00000{word-spacing:10.790400pt;}
.ws2cc_c00000{word-spacing:10.796800pt;}
.wsaa5_c00000{word-spacing:10.803200pt;}
.wsb65_c00000{word-spacing:10.809600pt;}
.ws30a_c00000{word-spacing:10.816000pt;}
.wsefc_c00000{word-spacing:10.822400pt;}
.wscf3_c00000{word-spacing:10.828800pt;}
.ws798_c00000{word-spacing:10.835200pt;}
.ws309_c00000{word-spacing:10.841600pt;}
.ws163_c00000{word-spacing:10.848000pt;}
.wsb12_c00000{word-spacing:10.854400pt;}
.wsb61_c00000{word-spacing:10.860800pt;}
.ws838_c00000{word-spacing:10.867200pt;}
.ws11b2_c00000{word-spacing:10.869696pt;}
.ws162_c00000{word-spacing:10.873600pt;}
.wse26_c00000{word-spacing:10.874592pt;}
.ws124_c00000{word-spacing:10.880000pt;}
.ws4e0_c00000{word-spacing:10.886304pt;}
.ws8e3_c00000{word-spacing:10.886400pt;}
.ws123e_c00000{word-spacing:10.891072pt;}
.ws8e7_c00000{word-spacing:10.892160pt;}
.ws647_c00000{word-spacing:10.892800pt;}
.ws1717_c00000{word-spacing:10.896416pt;}
.wsb35_c00000{word-spacing:10.898016pt;}
.wsb09_c00000{word-spacing:10.899200pt;}
.ws4df_c00000{word-spacing:10.903872pt;}
.ws79a_c00000{word-spacing:10.905600pt;}
.ws975_c00000{word-spacing:10.909728pt;}
.ws164_c00000{word-spacing:10.912000pt;}
.wsbc1_c00000{word-spacing:10.915584pt;}
.ws9f9_c00000{word-spacing:10.918400pt;}
.ws469_c00000{word-spacing:10.921440pt;}
.ws9f8_c00000{word-spacing:10.924800pt;}
.ws430_c00000{word-spacing:10.927296pt;}
.ws96e_c00000{word-spacing:10.933152pt;}
.ws178d_c00000{word-spacing:10.933824pt;}
.ws96f_c00000{word-spacing:10.939008pt;}
.ws886_c00000{word-spacing:10.944000pt;}
.ws766_c00000{word-spacing:10.944864pt;}
.ws591_c00000{word-spacing:10.950720pt;}
.ws11a2_c00000{word-spacing:10.955200pt;}
.wscd3_c00000{word-spacing:10.956576pt;}
.ws19cf_c00000{word-spacing:10.956800pt;}
.ws18c9_c00000{word-spacing:10.960544pt;}
.ws11c5_c00000{word-spacing:10.962432pt;}
.wsba8_c00000{word-spacing:10.963200pt;}
.ws178e_c00000{word-spacing:10.981920pt;}
.ws15bb_c00000{word-spacing:10.982400pt;}
.ws18d1_c00000{word-spacing:10.995200pt;}
.ws13d7_c00000{word-spacing:11.001600pt;}
.ws191f_c00000{word-spacing:11.008640pt;}
.wsb51_c00000{word-spacing:11.014400pt;}
.ws446_c00000{word-spacing:11.020800pt;}
.ws996_c00000{word-spacing:11.027200pt;}
.ws887_c00000{word-spacing:11.033600pt;}
.ws7a1_c00000{word-spacing:11.040000pt;}
.wsa20_c00000{word-spacing:11.046400pt;}
.ws837_c00000{word-spacing:11.052800pt;}
.wsc03_c00000{word-spacing:11.059200pt;}
.ws863_c00000{word-spacing:11.065600pt;}
.ws1920_c00000{word-spacing:11.067424pt;}
.ws918_c00000{word-spacing:11.072000pt;}
.ws159d_c00000{word-spacing:11.078400pt;}
.ws83b_c00000{word-spacing:11.084800pt;}
.ws6a7_c00000{word-spacing:11.091200pt;}
.ws159e_c00000{word-spacing:11.097600pt;}
.ws445_c00000{word-spacing:11.104000pt;}
.ws15e3_c00000{word-spacing:11.110400pt;}
.ws567_c00000{word-spacing:11.116800pt;}
.ws828_c00000{word-spacing:11.123200pt;}
.ws861_c00000{word-spacing:11.129600pt;}
.ws568_c00000{word-spacing:11.136000pt;}
.ws96b_c00000{word-spacing:11.142400pt;}
.ws836_c00000{word-spacing:11.148800pt;}
.ws3a4_c00000{word-spacing:11.155200pt;}
.ws997_c00000{word-spacing:11.161600pt;}
.wsf2_c00000{word-spacing:11.168000pt;}
.wsf3_c00000{word-spacing:11.174400pt;}
.ws52b_c00000{word-spacing:11.180800pt;}
.ws16d3_c00000{word-spacing:11.184960pt;}
.ws6a8_c00000{word-spacing:11.187200pt;}
.ws5ea_c00000{word-spacing:11.190816pt;}
.wscf4_c00000{word-spacing:11.193600pt;}
.ws52c_c00000{word-spacing:11.200000pt;}
.ws1870_c00000{word-spacing:11.202528pt;}
.ws888_c00000{word-spacing:11.206400pt;}
.ws19a2_c00000{word-spacing:11.208384pt;}
.wsb52_c00000{word-spacing:11.212800pt;}
.ws779_c00000{word-spacing:11.214240pt;}
.ws1317_c00000{word-spacing:11.217056pt;}
.wsa50_c00000{word-spacing:11.219200pt;}
.ws710_c00000{word-spacing:11.220096pt;}
.ws174b_c00000{word-spacing:11.222400pt;}
.wsc9d_c00000{word-spacing:11.225600pt;}
.ws1204_c00000{word-spacing:11.225952pt;}
.wse42_c00000{word-spacing:11.232000pt;}
.ws711_c00000{word-spacing:11.237664pt;}
.wscb8_c00000{word-spacing:11.243520pt;}
.ws178b_c00000{word-spacing:11.243776pt;}
.ws134a_c00000{word-spacing:11.244800pt;}
.ws511_c00000{word-spacing:11.249376pt;}
.wsd5d_c00000{word-spacing:11.251200pt;}
.wsd00_c00000{word-spacing:11.261088pt;}
.ws96a_c00000{word-spacing:11.264000pt;}
.wsdde_c00000{word-spacing:11.266944pt;}
.wscff_c00000{word-spacing:11.272800pt;}
.wsc80_c00000{word-spacing:11.276800pt;}
.ws16fa_c00000{word-spacing:11.278656pt;}
.ws1316_c00000{word-spacing:11.281184pt;}
.ws77a_c00000{word-spacing:11.284512pt;}
.ws1258_c00000{word-spacing:11.286528pt;}
.ws18ab_c00000{word-spacing:11.296000pt;}
.ws123d_c00000{word-spacing:11.297216pt;}
.ws1a83_c00000{word-spacing:11.302400pt;}
.ws958_c00000{word-spacing:11.308800pt;}
.ws11a1_c00000{word-spacing:11.313248pt;}
.ws4d7_c00000{word-spacing:11.321600pt;}
.ws1642_c00000{word-spacing:11.328000pt;}
.wscdb_c00000{word-spacing:11.334400pt;}
.ws11d1_c00000{word-spacing:11.340800pt;}
.wsd4c_c00000{word-spacing:11.347200pt;}
.ws6a3_c00000{word-spacing:11.353600pt;}
.ws12c2_c00000{word-spacing:11.360000pt;}
.ws138a_c00000{word-spacing:11.363520pt;}
.ws2f0_c00000{word-spacing:11.366400pt;}
.ws1943_c00000{word-spacing:11.367776pt;}
.wse38_c00000{word-spacing:11.372800pt;}
.wsb5f_c00000{word-spacing:11.379200pt;}
.ws857_c00000{word-spacing:11.385600pt;}
.ws1942_c00000{word-spacing:11.389056pt;}
.wsc46_c00000{word-spacing:11.392000pt;}
.ws2fe_c00000{word-spacing:11.398400pt;}
.wsc66_c00000{word-spacing:11.404800pt;}
.ws6a2_c00000{word-spacing:11.411200pt;}
.ws13f5_c00000{word-spacing:11.417600pt;}
.ws78f_c00000{word-spacing:11.424000pt;}
.wsa9e_c00000{word-spacing:11.430400pt;}
.ws2ee_c00000{word-spacing:11.436800pt;}
.ws13b8_c00000{word-spacing:11.443200pt;}
.ws366_c00000{word-spacing:11.449600pt;}
.ws4d8_c00000{word-spacing:11.456000pt;}
.ws3be_c00000{word-spacing:11.462400pt;}
.wsfb_c00000{word-spacing:11.468800pt;}
.wsf1_c00000{word-spacing:11.475200pt;}
.wsa67_c00000{word-spacing:11.481600pt;}
.ws858_c00000{word-spacing:11.488000pt;}
.ws2ff_c00000{word-spacing:11.494400pt;}
.ws1957_c00000{word-spacing:11.500288pt;}
.ws365_c00000{word-spacing:11.500800pt;}
.wsfa_c00000{word-spacing:11.507200pt;}
.ws6ce_c00000{word-spacing:11.512896pt;}
.wsf0_c00000{word-spacing:11.513600pt;}
.ws46f_c00000{word-spacing:11.518752pt;}
.ws2ef_c00000{word-spacing:11.520000pt;}
.ws10c3_c00000{word-spacing:11.521664pt;}
.ws1504_c00000{word-spacing:11.524608pt;}
.wsb74_c00000{word-spacing:11.526400pt;}
.ws186e_c00000{word-spacing:11.530464pt;}
.ws80d_c00000{word-spacing:11.532800pt;}
.ws6cd_c00000{word-spacing:11.536320pt;}
.ws18f0_c00000{word-spacing:11.537696pt;}
.wsc45_c00000{word-spacing:11.539200pt;}
.wsf84_c00000{word-spacing:11.542176pt;}
.ws1641_c00000{word-spacing:11.545600pt;}
.ws9aa_c00000{word-spacing:11.548032pt;}
.ws1924_c00000{word-spacing:11.548384pt;}
.ws13bc_c00000{word-spacing:11.552000pt;}
.ws188f_c00000{word-spacing:11.553728pt;}
.ws9a9_c00000{word-spacing:11.553888pt;}
.ws16e3_c00000{word-spacing:11.558400pt;}
.ws1ac3_c00000{word-spacing:11.559744pt;}
.ws1737_c00000{word-spacing:11.564416pt;}
.wsa3b_c00000{word-spacing:11.564800pt;}
.ws170d_c00000{word-spacing:11.565600pt;}
.wsc7f_c00000{word-spacing:11.571200pt;}
.wse1c_c00000{word-spacing:11.571456pt;}
.wscfd_c00000{word-spacing:11.577312pt;}
.ws18aa_c00000{word-spacing:11.577600pt;}
.ws178c_c00000{word-spacing:11.580448pt;}
.wscfc_c00000{word-spacing:11.583168pt;}
.ws161b_c00000{word-spacing:11.584000pt;}
.ws1554_c00000{word-spacing:11.585792pt;}
.ws7b7_c00000{word-spacing:11.589024pt;}
.ws16f9_c00000{word-spacing:11.594880pt;}
.ws1799_c00000{word-spacing:11.596480pt;}
.wscfb_c00000{word-spacing:11.600736pt;}
.ws18f5_c00000{word-spacing:11.601824pt;}
.ws1738_c00000{word-spacing:11.607168pt;}
.ws1475_c00000{word-spacing:11.609600pt;}
.ws85e_c00000{word-spacing:11.616000pt;}
.ws1156_c00000{word-spacing:11.617856pt;}
.wsc6f_c00000{word-spacing:11.622400pt;}
.ws18c6_c00000{word-spacing:11.623200pt;}
.ws179a_c00000{word-spacing:11.628544pt;}
.ws85f_c00000{word-spacing:11.628800pt;}
.ws13e0_c00000{word-spacing:11.635200pt;}
.ws1637_c00000{word-spacing:11.641600pt;}
.ws4bb_c00000{word-spacing:11.648000pt;}
.wsb2d_c00000{word-spacing:11.654400pt;}
.wsc43_c00000{word-spacing:11.660800pt;}
.ws66f_c00000{word-spacing:11.680000pt;}
.ws18f6_c00000{word-spacing:11.681984pt;}
.wsd11_c00000{word-spacing:11.686400pt;}
.wsaf6_c00000{word-spacing:11.692800pt;}
.ws2d3_c00000{word-spacing:11.699200pt;}
.ws15e2_c00000{word-spacing:11.705600pt;}
.ws1396_c00000{word-spacing:11.708256pt;}
.wsdd7_c00000{word-spacing:11.712000pt;}
.ws7a0_c00000{word-spacing:11.718400pt;}
.wsaaa_c00000{word-spacing:11.724800pt;}
.wsa3a_c00000{word-spacing:11.731200pt;}
.ws427_c00000{word-spacing:11.737600pt;}
.ws8a7_c00000{word-spacing:11.744000pt;}
.ws87d_c00000{word-spacing:11.750400pt;}
.wsa35_c00000{word-spacing:11.756800pt;}
.wsaff_c00000{word-spacing:11.763200pt;}
.ws17cd_c00000{word-spacing:11.769600pt;}
.wsa39_c00000{word-spacing:11.776000pt;}
.wsaf7_c00000{word-spacing:11.782400pt;}
.ws7d9_c00000{word-spacing:11.788800pt;}
.ws79d_c00000{word-spacing:11.795200pt;}
.ws79c_c00000{word-spacing:11.801600pt;}
.ws4ba_c00000{word-spacing:11.808000pt;}
.ws112f_c00000{word-spacing:11.810240pt;}
.ws968_c00000{word-spacing:11.814400pt;}
.ws79f_c00000{word-spacing:11.820800pt;}
.ws17b7_c00000{word-spacing:11.826272pt;}
.ws7da_c00000{word-spacing:11.827200pt;}
.ws2d4_c00000{word-spacing:11.833600pt;}
.ws66e_c00000{word-spacing:11.840000pt;}
.wscd2_c00000{word-spacing:11.840832pt;}
.ws68d_c00000{word-spacing:11.846400pt;}
.ws17b5_c00000{word-spacing:11.847648pt;}
.wsc44_c00000{word-spacing:11.852800pt;}
.ws17b6_c00000{word-spacing:11.852992pt;}
.ws125a_c00000{word-spacing:11.858336pt;}
.ws7f2_c00000{word-spacing:11.858400pt;}
.ws79e_c00000{word-spacing:11.859200pt;}
.wscd1_c00000{word-spacing:11.864256pt;}
.wscc2_c00000{word-spacing:11.865600pt;}
.ws512_c00000{word-spacing:11.870112pt;}
.wscc1_c00000{word-spacing:11.872000pt;}
.wsabf_c00000{word-spacing:11.875968pt;}
.ws1476_c00000{word-spacing:11.878400pt;}
.wsbd6_c00000{word-spacing:11.881824pt;}
.wsdf7_c00000{word-spacing:11.884800pt;}
.ws468_c00000{word-spacing:11.887680pt;}
.ws1506_c00000{word-spacing:11.893536pt;}
.ws428_c00000{word-spacing:11.897600pt;}
.wsc0c_c00000{word-spacing:11.899392pt;}
.wsdf5_c00000{word-spacing:11.904000pt;}
.wsa37_c00000{word-spacing:11.910400pt;}
.ws1507_c00000{word-spacing:11.911104pt;}
.ws1070_c00000{word-spacing:11.917120pt;}
.ws195e_c00000{word-spacing:11.922464pt;}
.ws1926_c00000{word-spacing:11.922816pt;}
.wsb58_c00000{word-spacing:11.923200pt;}
.ws1127_c00000{word-spacing:11.927808pt;}
.wseac_c00000{word-spacing:11.929600pt;}
.ws17a7_c00000{word-spacing:11.938496pt;}
.wsbf9_c00000{word-spacing:11.940384pt;}
.ws13fe_c00000{word-spacing:11.942400pt;}
.wsfc7_c00000{word-spacing:11.943840pt;}
.ws1453_c00000{word-spacing:11.948800pt;}
.ws12ef_c00000{word-spacing:11.955200pt;}
.ws19bf_c00000{word-spacing:11.968000pt;}
.ws122d_c00000{word-spacing:11.974400pt;}
.ws19fe_c00000{word-spacing:11.987200pt;}
.ws1165_c00000{word-spacing:11.990400pt;}
.ws12ee_c00000{word-spacing:11.993600pt;}
.wsc8a_c00000{word-spacing:12.006400pt;}
.wsdf8_c00000{word-spacing:12.012800pt;}
.ws10f3_c00000{word-spacing:12.024000pt;}
.ws5eb_c00000{word-spacing:12.028224pt;}
.wsf5b_c00000{word-spacing:12.032000pt;}
.wsa5_c00000{word-spacing:12.038400pt;}
.wsa91_c00000{word-spacing:12.044800pt;}
.wsa90_c00000{word-spacing:12.051200pt;}
.ws20e_c00000{word-spacing:12.057600pt;}
.ws210_c00000{word-spacing:12.064000pt;}
.wsc88_c00000{word-spacing:12.070400pt;}
.wse0d_c00000{word-spacing:12.076800pt;}
.ws211_c00000{word-spacing:12.083200pt;}
.ws939_c00000{word-spacing:12.089600pt;}
.ws819_c00000{word-spacing:12.096000pt;}
.ws2f3_c00000{word-spacing:12.102400pt;}
.wsc89_c00000{word-spacing:12.108800pt;}
.ws2ea_c00000{word-spacing:12.115200pt;}
.wsc39_c00000{word-spacing:12.121600pt;}
.ws1c0_c00000{word-spacing:12.128000pt;}
.ws20f_c00000{word-spacing:12.134400pt;}
.ws1c1_c00000{word-spacing:12.140800pt;}
.ws2f4_c00000{word-spacing:12.147200pt;}
.ws405_c00000{word-spacing:12.153600pt;}
.wsa4_c00000{word-spacing:12.160000pt;}
.ws1335_c00000{word-spacing:12.162944pt;}
.ws34f_c00000{word-spacing:12.166400pt;}
.ws2eb_c00000{word-spacing:12.172800pt;}
.ws449_c00000{word-spacing:12.174624pt;}
.wsa36_c00000{word-spacing:12.179200pt;}
.ws6c4_c00000{word-spacing:12.180480pt;}
.wsc48_c00000{word-spacing:12.185600pt;}
.wsaae_c00000{word-spacing:12.186336pt;}
.ws91f_c00000{word-spacing:12.192000pt;}
.ws6c5_c00000{word-spacing:12.192192pt;}
.ws17b0_c00000{word-spacing:12.195008pt;}
.ws158d_c00000{word-spacing:12.198048pt;}
.wsdb9_c00000{word-spacing:12.198400pt;}
.ws17e5_c00000{word-spacing:12.203904pt;}
.ws3ad_c00000{word-spacing:12.204800pt;}
.ws44a_c00000{word-spacing:12.209760pt;}
.ws1361_c00000{word-spacing:12.211200pt;}
.wsf8b_c00000{word-spacing:12.215616pt;}
.ws81a_c00000{word-spacing:12.217600pt;}
.wscec_c00000{word-spacing:12.221472pt;}
.ws184d_c00000{word-spacing:12.224000pt;}
.ws1126_c00000{word-spacing:12.227072pt;}
.ws1731_c00000{word-spacing:12.232416pt;}
.wsced_c00000{word-spacing:12.233184pt;}
.wsacc_c00000{word-spacing:12.236800pt;}
.ws124f_c00000{word-spacing:12.237760pt;}
.wse7f_c00000{word-spacing:12.239040pt;}
.ws1136_c00000{word-spacing:12.243104pt;}
.wsf8e_c00000{word-spacing:12.243200pt;}
.ws12f2_c00000{word-spacing:12.244896pt;}
.ws18cb_c00000{word-spacing:12.249600pt;}
.ws1380_c00000{word-spacing:12.256000pt;}
.ws17ae_c00000{word-spacing:12.259136pt;}
.ws1977_c00000{word-spacing:12.268800pt;}
.ws2c3_c00000{word-spacing:12.275200pt;}
.ws696_c00000{word-spacing:12.294400pt;}
.ws6ae_c00000{word-spacing:12.300800pt;}
.ws17b1_c00000{word-spacing:12.301888pt;}
.ws12b5_c00000{word-spacing:12.307200pt;}
.ws91e_c00000{word-spacing:12.326400pt;}
.ws185b_c00000{word-spacing:12.332800pt;}
.ws1409_c00000{word-spacing:12.339200pt;}
.wse8_c00000{word-spacing:12.345600pt;}
.ws87_c00000{word-spacing:12.352000pt;}
.wseb1_c00000{word-spacing:12.358400pt;}
.ws138d_c00000{word-spacing:12.363680pt;}
.wsff8_c00000{word-spacing:12.364800pt;}
.wse9f_c00000{word-spacing:12.371200pt;}
.wsd35_c00000{word-spacing:12.377600pt;}
.ws12b0_c00000{word-spacing:12.384000pt;}
.wse86_c00000{word-spacing:12.390400pt;}
.ws1f1_c00000{word-spacing:12.396800pt;}
.ws86_c00000{word-spacing:12.403200pt;}
.ws66_c00000{word-spacing:12.409600pt;}
.ws71a_c00000{word-spacing:12.416000pt;}
.wscd7_c00000{word-spacing:12.422400pt;}
.ws1408_c00000{word-spacing:12.428800pt;}
.ws41a_c00000{word-spacing:12.435200pt;}
.ws1912_c00000{word-spacing:12.435488pt;}
.ws9ce_c00000{word-spacing:12.441600pt;}
.ws1f2_c00000{word-spacing:12.448000pt;}
.ws1761_c00000{word-spacing:12.449856pt;}
.wsc27_c00000{word-spacing:12.454400pt;}
.ws2c4_c00000{word-spacing:12.460800pt;}
.wsc58_c00000{word-spacing:12.467200pt;}
.ws6ad_c00000{word-spacing:12.473600pt;}
.ws6fe_c00000{word-spacing:12.479136pt;}
.wsf50_c00000{word-spacing:12.480000pt;}
.ws119c_c00000{word-spacing:12.483584pt;}
.ws6ff_c00000{word-spacing:12.484992pt;}
.wse7_c00000{word-spacing:12.486400pt;}
.ws4d6_c00000{word-spacing:12.490848pt;}
.ws13da_c00000{word-spacing:12.492800pt;}
.ws6c6_c00000{word-spacing:12.496704pt;}
.ws7f4_c00000{word-spacing:12.499200pt;}
.ws158f_c00000{word-spacing:12.502560pt;}
.wsc26_c00000{word-spacing:12.505600pt;}
.ws1602_c00000{word-spacing:12.508416pt;}
.wsaf3_c00000{word-spacing:12.512000pt;}
.wsaf4_c00000{word-spacing:12.518400pt;}
.ws4a0_c00000{word-spacing:12.520128pt;}
.ws9cf_c00000{word-spacing:12.524800pt;}
.wsdc8_c00000{word-spacing:12.525984pt;}
.ws56b_c00000{word-spacing:12.531200pt;}
.wsb32_c00000{word-spacing:12.531840pt;}
.ws588_c00000{word-spacing:12.537696pt;}
.ws1949_c00000{word-spacing:12.542368pt;}
.wsc08_c00000{word-spacing:12.543552pt;}
.wse3f_c00000{word-spacing:12.544000pt;}
.ws7b0_c00000{word-spacing:12.549408pt;}
.wsb01_c00000{word-spacing:12.550400pt;}
.ws37e_c00000{word-spacing:12.555264pt;}
.ws1948_c00000{word-spacing:12.558400pt;}
.ws15b8_c00000{word-spacing:12.563200pt;}
.ws113f_c00000{word-spacing:12.563744pt;}
.wsbf4_c00000{word-spacing:12.584544pt;}
.ws1140_c00000{word-spacing:12.585120pt;}
.ws357_c00000{word-spacing:12.588800pt;}
.ws169a_c00000{word-spacing:12.595808pt;}
.ws30f_c00000{word-spacing:12.601600pt;}
.ws185d_c00000{word-spacing:12.608000pt;}
.ws1549_c00000{word-spacing:12.614400pt;}
.ws358_c00000{word-spacing:12.620800pt;}
.wsb3b_c00000{word-spacing:12.627200pt;}
.ws1751_c00000{word-spacing:12.633216pt;}
.ws13f4_c00000{word-spacing:12.633600pt;}
.ws19ce_c00000{word-spacing:12.640000pt;}
.wsdc9_c00000{word-spacing:12.646400pt;}
.wsb00_c00000{word-spacing:12.652800pt;}
.wsbb6_c00000{word-spacing:12.659200pt;}
.ws80c_c00000{word-spacing:12.665600pt;}
.ws284_c00000{word-spacing:12.672000pt;}
.wsbbb_c00000{word-spacing:12.678400pt;}
.ws14a9_c00000{word-spacing:12.684800pt;}
.ws14f6_c00000{word-spacing:12.691200pt;}
.ws17b_c00000{word-spacing:12.697600pt;}
.wsc22_c00000{word-spacing:12.704000pt;}
.ws9cd_c00000{word-spacing:12.710400pt;}
.ws310_c00000{word-spacing:12.716800pt;}
.ws569_c00000{word-spacing:12.723200pt;}
.ws920_c00000{word-spacing:12.729600pt;}
.ws98d_c00000{word-spacing:12.736000pt;}
.wsfb8_c00000{word-spacing:12.740096pt;}
.wsc21_c00000{word-spacing:12.742400pt;}
.ws179_c00000{word-spacing:12.748800pt;}
.ws9b1_c00000{word-spacing:12.755200pt;}
.ws196d_c00000{word-spacing:12.761472pt;}
.ws56a_c00000{word-spacing:12.761600pt;}
.ws3f9_c00000{word-spacing:12.768000pt;}
.ws325_c00000{word-spacing:12.774400pt;}
.ws324_c00000{word-spacing:12.780800pt;}
.ws94a_c00000{word-spacing:12.787200pt;}
.wsa94_c00000{word-spacing:12.793600pt;}
.wsf3c_c00000{word-spacing:12.795360pt;}
.ws17a_c00000{word-spacing:12.800000pt;}
.ws175a_c00000{word-spacing:12.801216pt;}
.ws981_c00000{word-spacing:12.806400pt;}
.ws1911_c00000{word-spacing:12.809568pt;}
.ws98e_c00000{word-spacing:12.812800pt;}
.ws65d_c00000{word-spacing:12.812928pt;}
.ws7e5_c00000{word-spacing:12.818784pt;}
.ws9b0_c00000{word-spacing:12.819200pt;}
.ws190e_c00000{word-spacing:12.820256pt;}
.ws65e_c00000{word-spacing:12.824640pt;}
.wsb02_c00000{word-spacing:12.825600pt;}
.ws1667_c00000{word-spacing:12.830496pt;}
.ws982_c00000{word-spacing:12.832000pt;}
.ws1490_c00000{word-spacing:12.836352pt;}
.ws149c_c00000{word-spacing:12.838400pt;}
.ws46a_c00000{word-spacing:12.842208pt;}
.wsa7c_c00000{word-spacing:12.844800pt;}
.ws7e4_c00000{word-spacing:12.848064pt;}
.ws180f_c00000{word-spacing:12.851200pt;}
.ws7b5_c00000{word-spacing:12.853920pt;}
.wsf87_c00000{word-spacing:12.857600pt;}
.ws70b_c00000{word-spacing:12.859776pt;}
.wsc1f_c00000{word-spacing:12.865632pt;}
.ws55e_c00000{word-spacing:12.870400pt;}
.ws1125_c00000{word-spacing:12.900416pt;}
.ws8d9_c00000{word-spacing:12.902400pt;}
.ws1a33_c00000{word-spacing:12.908800pt;}
.wsa93_c00000{word-spacing:12.915200pt;}
.ws195c_c00000{word-spacing:12.932480pt;}
.wsa46_c00000{word-spacing:12.934400pt;}
.ws759_c00000{word-spacing:12.947200pt;}
.ws149d_c00000{word-spacing:12.960000pt;}
.wsaab_c00000{word-spacing:12.966400pt;}
.ws40a_c00000{word-spacing:12.972800pt;}
.wsaac_c00000{word-spacing:12.985600pt;}
.ws12c8_c00000{word-spacing:12.998400pt;}
.ws1398_c00000{word-spacing:13.002080pt;}
.ws1833_c00000{word-spacing:13.004800pt;}
.wsd9e_c00000{word-spacing:13.011200pt;}
.wsa53_c00000{word-spacing:13.017600pt;}
.wsd27_c00000{word-spacing:13.024000pt;}
.ws523_c00000{word-spacing:13.030400pt;}
.ws40b_c00000{word-spacing:13.036800pt;}
.ws681_c00000{word-spacing:13.043200pt;}
.ws5b8_c00000{word-spacing:13.049600pt;}
.wsa54_c00000{word-spacing:13.056000pt;}
.ws7e6_c00000{word-spacing:13.062400pt;}
.ws67e_c00000{word-spacing:13.068800pt;}
.ws370_c00000{word-spacing:13.075200pt;}
.wsf6_c00000{word-spacing:13.081600pt;}
.ws19a_c00000{word-spacing:13.088000pt;}
.ws524_c00000{word-spacing:13.094400pt;}
.ws10f2_c00000{word-spacing:13.098144pt;}
.ws345_c00000{word-spacing:13.100800pt;}
.ws344_c00000{word-spacing:13.107200pt;}
.ws19b_c00000{word-spacing:13.113600pt;}
.ws8b1_c00000{word-spacing:13.120000pt;}
.wsc1a_c00000{word-spacing:13.126400pt;}
.ws16ab_c00000{word-spacing:13.129152pt;}
.ws409_c00000{word-spacing:13.132800pt;}
.ws11e5_c00000{word-spacing:13.135008pt;}
.ws1754_c00000{word-spacing:13.139200pt;}
.ws5c2_c00000{word-spacing:13.140864pt;}
.ws1755_c00000{word-spacing:13.145600pt;}
.ws11e4_c00000{word-spacing:13.146720pt;}
.wsbaa_c00000{word-spacing:13.152576pt;}
.wsba0_c00000{word-spacing:13.158400pt;}
.wsdb2_c00000{word-spacing:13.158432pt;}
.ws5c3_c00000{word-spacing:13.164288pt;}
.ws199c_c00000{word-spacing:13.170144pt;}
.wsd02_c00000{word-spacing:13.171200pt;}
.ws14c4_c00000{word-spacing:13.176000pt;}
.wsdfe_c00000{word-spacing:13.177600pt;}
.wse29_c00000{word-spacing:13.181856pt;}
.ws7a5_c00000{word-spacing:13.184000pt;}
.ws14c2_c00000{word-spacing:13.187712pt;}
.ws1a74_c00000{word-spacing:13.190400pt;}
.ws14c3_c00000{word-spacing:13.193568pt;}
.ws1774_c00000{word-spacing:13.199680pt;}
.wsc4b_c00000{word-spacing:13.203200pt;}
.ws18b9_c00000{word-spacing:13.205024pt;}
.ws1a36_c00000{word-spacing:13.209600pt;}
.ws184e_c00000{word-spacing:13.216000pt;}
.ws1150_c00000{word-spacing:13.231744pt;}
.ws192f_c00000{word-spacing:13.241600pt;}
.ws1484_c00000{word-spacing:13.248000pt;}
.ws7bc_c00000{word-spacing:13.254400pt;}
.ws19f3_c00000{word-spacing:13.260800pt;}
.wsa25_c00000{word-spacing:13.267200pt;}
.ws13f6_c00000{word-spacing:13.273600pt;}
.ws2ac_c00000{word-spacing:13.280000pt;}
.ws8c5_c00000{word-spacing:13.292800pt;}
.wsc8d_c00000{word-spacing:13.299200pt;}
.ws372_c00000{word-spacing:13.305600pt;}
.ws1414_c00000{word-spacing:13.306560pt;}
.ws1382_c00000{word-spacing:13.312000pt;}
.ws7bd_c00000{word-spacing:13.318400pt;}
.ws2ab_c00000{word-spacing:13.324800pt;}
.wsc57_c00000{word-spacing:13.331200pt;}
.ws12a2_c00000{word-spacing:13.337600pt;}
.ws2cd_c00000{word-spacing:13.344000pt;}
.ws8c6_c00000{word-spacing:13.350400pt;}
.wsd1a_c00000{word-spacing:13.356800pt;}
.ws1c9_c00000{word-spacing:13.363200pt;}
.ws744_c00000{word-spacing:13.369600pt;}
.ws9c0_c00000{word-spacing:13.376000pt;}
.ws66c_c00000{word-spacing:13.382400pt;}
.wsc14_c00000{word-spacing:13.388800pt;}
.ws2ce_c00000{word-spacing:13.395200pt;}
.ws998_c00000{word-spacing:13.401600pt;}
.ws1138_c00000{word-spacing:13.402752pt;}
.ws743_c00000{word-spacing:13.408000pt;}
.wsb20_c00000{word-spacing:13.414400pt;}
.ws50c_c00000{word-spacing:13.420800pt;}
.ws8c4_c00000{word-spacing:13.427200pt;}
.ws66d_c00000{word-spacing:13.433600pt;}
.wsa24_c00000{word-spacing:13.440000pt;}
.ws1a3b_c00000{word-spacing:13.446400pt;}
.ws1356_c00000{word-spacing:13.452800pt;}
.ws100c_c00000{word-spacing:13.459200pt;}
.ws1357_c00000{word-spacing:13.465600pt;}
.ws7fa_c00000{word-spacing:13.468800pt;}
.ws1844_c00000{word-spacing:13.472000pt;}
.wsf90_c00000{word-spacing:13.474656pt;}
.wsd1b_c00000{word-spacing:13.478400pt;}
.ws1698_c00000{word-spacing:13.480512pt;}
.ws18bd_c00000{word-spacing:13.482912pt;}
.wsb53_c00000{word-spacing:13.484800pt;}
.ws15be_c00000{word-spacing:13.486368pt;}
.wsb54_c00000{word-spacing:13.491200pt;}
.ws7d4_c00000{word-spacing:13.492224pt;}
.ws1729_c00000{word-spacing:13.493600pt;}
.ws1668_c00000{word-spacing:13.498080pt;}
.wsf82_c00000{word-spacing:13.503936pt;}
.wsd1c_c00000{word-spacing:13.504000pt;}
.ws198d_c00000{word-spacing:13.509792pt;}
.ws1474_c00000{word-spacing:13.510400pt;}
.ws1728_c00000{word-spacing:13.514976pt;}
.ws11d6_c00000{word-spacing:13.515648pt;}
.ws1807_c00000{word-spacing:13.516800pt;}
.ws1773_c00000{word-spacing:13.520320pt;}
.ws7fb_c00000{word-spacing:13.521504pt;}
.wsa81_c00000{word-spacing:13.523200pt;}
.wse41_c00000{word-spacing:13.529600pt;}
.ws1772_c00000{word-spacing:13.536352pt;}
.ws13f7_c00000{word-spacing:13.542400pt;}
.wsa82_c00000{word-spacing:13.555200pt;}
.ws1822_c00000{word-spacing:13.574400pt;}
.ws13d1_c00000{word-spacing:13.580800pt;}
.wsf06_c00000{word-spacing:13.587200pt;}
.ws19ff_c00000{word-spacing:13.593600pt;}
.ws465_c00000{word-spacing:13.600000pt;}
.ws166e_c00000{word-spacing:13.606400pt;}
.ws139e_c00000{word-spacing:13.606432pt;}
.wsc59_c00000{word-spacing:13.612800pt;}
.ws1495_c00000{word-spacing:13.619200pt;}
.wse40_c00000{word-spacing:13.625600pt;}
.ws9f3_c00000{word-spacing:13.632000pt;}
.ws16fb_c00000{word-spacing:13.638400pt;}
.wsd7_c00000{word-spacing:13.644800pt;}
.ws494_c00000{word-spacing:13.651200pt;}
.ws8c_c00000{word-spacing:13.657600pt;}
.ws466_c00000{word-spacing:13.664000pt;}
.ws678_c00000{word-spacing:13.670400pt;}
.wsd2b_c00000{word-spacing:13.676800pt;}
.wsad7_c00000{word-spacing:13.683200pt;}
.ws9d3_c00000{word-spacing:13.689600pt;}
.ws1014_c00000{word-spacing:13.696000pt;}
.ws493_c00000{word-spacing:13.702400pt;}
.ws174_c00000{word-spacing:13.708800pt;}
.ws1348_c00000{word-spacing:13.715200pt;}
.ws11dc_c00000{word-spacing:13.721600pt;}
.ws9f4_c00000{word-spacing:13.728000pt;}
.ws88f_c00000{word-spacing:13.734400pt;}
.ws175_c00000{word-spacing:13.740800pt;}
.ws3ac_c00000{word-spacing:13.747200pt;}
.ws69c_c00000{word-spacing:13.753600pt;}
.ws88e_c00000{word-spacing:13.760000pt;}
.wsd6_c00000{word-spacing:13.766400pt;}
.ws77d_c00000{word-spacing:13.767456pt;}
.ws8da_c00000{word-spacing:13.772800pt;}
.wsc93_c00000{word-spacing:13.773312pt;}
.wsc92_c00000{word-spacing:13.779168pt;}
.ws9ba_c00000{word-spacing:13.779200pt;}
.ws45e_c00000{word-spacing:13.785024pt;}
.ws16a1_c00000{word-spacing:13.785600pt;}
.ws173c_c00000{word-spacing:13.787520pt;}
.ws775_c00000{word-spacing:13.790880pt;}
.ws1625_c00000{word-spacing:13.796736pt;}
.wsc50_c00000{word-spacing:13.798400pt;}
.wsab5_c00000{word-spacing:13.802592pt;}
.ws15b4_c00000{word-spacing:13.808448pt;}
.ws45f_c00000{word-spacing:13.814304pt;}
.ws176_c00000{word-spacing:13.817600pt;}
.ws16f0_c00000{word-spacing:13.820160pt;}
.ws1808_c00000{word-spacing:13.824000pt;}
.ws1961_c00000{word-spacing:13.830272pt;}
.ws1611_c00000{word-spacing:13.830400pt;}
.ws173d_c00000{word-spacing:13.840960pt;}
.ws116b_c00000{word-spacing:13.851648pt;}
.ws11f9_c00000{word-spacing:13.868800pt;}
.ws130d_c00000{word-spacing:13.894400pt;}
.ws10ec_c00000{word-spacing:13.905600pt;}
.ws532_c00000{word-spacing:13.913600pt;}
.ws540_c00000{word-spacing:13.920000pt;}
.ws1ed_c00000{word-spacing:13.932800pt;}
.ws1538_c00000{word-spacing:13.939200pt;}
.ws53f_c00000{word-spacing:13.945600pt;}
.ws1550_c00000{word-spacing:13.952000pt;}
.wsa61_c00000{word-spacing:13.958400pt;}
.ws1ee_c00000{word-spacing:13.964800pt;}
.wsca1_c00000{word-spacing:13.971200pt;}
.wsa62_c00000{word-spacing:13.977600pt;}
.ws2e4_c00000{word-spacing:13.984000pt;}
.ws880_c00000{word-spacing:13.990400pt;}
.ws3a5_c00000{word-spacing:13.996800pt;}
.wscb3_c00000{word-spacing:14.003200pt;}
.ws7c_c00000{word-spacing:14.009600pt;}
.ws2e6_c00000{word-spacing:14.016000pt;}
.ws473_c00000{word-spacing:14.022400pt;}
.ws862_c00000{word-spacing:14.028800pt;}
.wsc51_c00000{word-spacing:14.035200pt;}
.ws7a_c00000{word-spacing:14.041600pt;}
.wsca0_c00000{word-spacing:14.048000pt;}
.wsd47_c00000{word-spacing:14.054400pt;}
.ws87f_c00000{word-spacing:14.060800pt;}
.wse47_c00000{word-spacing:14.067200pt;}
.ws1027_c00000{word-spacing:14.073600pt;}
.ws9ad_c00000{word-spacing:14.077824pt;}
.ws7b_c00000{word-spacing:14.080000pt;}
.ws1251_c00000{word-spacing:14.081440pt;}
.ws533_c00000{word-spacing:14.086400pt;}
.ws1624_c00000{word-spacing:14.089536pt;}
.ws30e_c00000{word-spacing:14.092800pt;}
.ws9ac_c00000{word-spacing:14.095392pt;}
.ws13cb_c00000{word-spacing:14.099200pt;}
.wsd16_c00000{word-spacing:14.105600pt;}
.ws9ab_c00000{word-spacing:14.107104pt;}
.ws2e5_c00000{word-spacing:14.112000pt;}
.ws96c_c00000{word-spacing:14.112960pt;}
.ws16cb_c00000{word-spacing:14.118400pt;}
.ws607_c00000{word-spacing:14.118816pt;}
.ws608_c00000{word-spacing:14.124672pt;}
.wsd2f_c00000{word-spacing:14.124800pt;}
.ws1842_c00000{word-spacing:14.136384pt;}
.ws1a24_c00000{word-spacing:14.137600pt;}
.wsefa_c00000{word-spacing:14.142240pt;}
.ws434_c00000{word-spacing:14.148096pt;}
.ws1118_c00000{word-spacing:14.156256pt;}
.ws9c3_c00000{word-spacing:14.163200pt;}
.ws116c_c00000{word-spacing:14.182976pt;}
.ws1989_c00000{word-spacing:14.201600pt;}
.ws338_c00000{word-spacing:14.208000pt;}
.wsc87_c00000{word-spacing:14.220800pt;}
.wsfd2_c00000{word-spacing:14.225728pt;}
.ws8f0_c00000{word-spacing:14.227200pt;}
.ws1162_c00000{word-spacing:14.232000pt;}
.wsef0_c00000{word-spacing:14.240000pt;}
.ws1291_c00000{word-spacing:14.246400pt;}
.ws8f1_c00000{word-spacing:14.252800pt;}
.ws1163_c00000{word-spacing:14.256000pt;}
.ws13fd_c00000{word-spacing:14.259200pt;}
.ws14f2_c00000{word-spacing:14.265600pt;}
.ws43d_c00000{word-spacing:14.272000pt;}
.ws339_c00000{word-spacing:14.278400pt;}
.wse46_c00000{word-spacing:14.284800pt;}
.ws89e_c00000{word-spacing:14.291200pt;}
.ws7c7_c00000{word-spacing:14.297600pt;}
.ws727_c00000{word-spacing:14.304000pt;}
.ws1559_c00000{word-spacing:14.305888pt;}
.ws13db_c00000{word-spacing:14.310400pt;}
.wseba_c00000{word-spacing:14.316800pt;}
.wsc68_c00000{word-spacing:14.323200pt;}
.wsd2c_c00000{word-spacing:14.329600pt;}
.ws33a_c00000{word-spacing:14.336000pt;}
.wsb50_c00000{word-spacing:14.342400pt;}
.wsd42_c00000{word-spacing:14.348800pt;}
.ws89d_c00000{word-spacing:14.355200pt;}
.ws143_c00000{word-spacing:14.361600pt;}
.wsbce_c00000{word-spacing:14.368000pt;}
.ws6cf_c00000{word-spacing:14.374400pt;}
.ws43c_c00000{word-spacing:14.380800pt;}
.ws3d5_c00000{word-spacing:14.387200pt;}
.ws1ad1_c00000{word-spacing:14.391392pt;}
.wsd2d_c00000{word-spacing:14.393600pt;}
.ws7c8_c00000{word-spacing:14.400000pt;}
.ws1321_c00000{word-spacing:14.402080pt;}
.ws7c6_c00000{word-spacing:14.406400pt;}
.ws774_c00000{word-spacing:14.411616pt;}
.ws178a_c00000{word-spacing:14.412768pt;}
.ws144_c00000{word-spacing:14.412800pt;}
.ws18e8_c00000{word-spacing:14.419200pt;}
.wsd01_c00000{word-spacing:14.423328pt;}
.wsb30_c00000{word-spacing:14.425600pt;}
.ws19b3_c00000{word-spacing:14.429184pt;}
.ws728_c00000{word-spacing:14.432000pt;}
.ws7ef_c00000{word-spacing:14.435040pt;}
.ws13b2_c00000{word-spacing:14.438400pt;}
.ws111b_c00000{word-spacing:14.439488pt;}
.wsc10_c00000{word-spacing:14.440896pt;}
.wse6d_c00000{word-spacing:14.444800pt;}
.ws123a_c00000{word-spacing:14.444832pt;}
.ws14bd_c00000{word-spacing:14.452608pt;}
.ws7fc_c00000{word-spacing:14.458464pt;}
.ws17d8_c00000{word-spacing:14.464320pt;}
.ws150f_c00000{word-spacing:14.470176pt;}
.wsd3a_c00000{word-spacing:14.470400pt;}
.ws18e7_c00000{word-spacing:14.476800pt;}
.ws13d0_c00000{word-spacing:14.482240pt;}
.ws18c3_c00000{word-spacing:14.492928pt;}
.wsf80_c00000{word-spacing:14.496000pt;}
.wse7c_c00000{word-spacing:14.502400pt;}
.ws1464_c00000{word-spacing:14.508800pt;}
.ws4af_c00000{word-spacing:14.515200pt;}
.ws1da_c00000{word-spacing:14.521600pt;}
.ws18d4_c00000{word-spacing:14.528000pt;}
.ws12de_c00000{word-spacing:14.534400pt;}
.wsc63_c00000{word-spacing:14.540800pt;}
.wsc62_c00000{word-spacing:14.547200pt;}
.wsbb8_c00000{word-spacing:14.553600pt;}
.wsd68_c00000{word-spacing:14.560000pt;}
.wsf96_c00000{word-spacing:14.566400pt;}
.wsd75_c00000{word-spacing:14.579200pt;}
.ws1586_c00000{word-spacing:14.592000pt;}
.ws181e_c00000{word-spacing:14.598400pt;}
.ws891_c00000{word-spacing:14.604800pt;}
.wsd38_c00000{word-spacing:14.611200pt;}
.wsa89_c00000{word-spacing:14.617600pt;}
.ws936_c00000{word-spacing:14.624000pt;}
.ws1db_c00000{word-spacing:14.630400pt;}
.wsf97_c00000{word-spacing:14.636800pt;}
.ws78a_c00000{word-spacing:14.643200pt;}
.ws1539_c00000{word-spacing:14.649600pt;}
.ws1d9_c00000{word-spacing:14.656000pt;}
.wsbb9_c00000{word-spacing:14.662400pt;}
.wse66_c00000{word-spacing:14.668800pt;}
.ws75a_c00000{word-spacing:14.675200pt;}
.ws4b0_c00000{word-spacing:14.681600pt;}
.ws67b_c00000{word-spacing:14.688000pt;}
.ws1d8_c00000{word-spacing:14.694400pt;}
.wsb70_c00000{word-spacing:14.700800pt;}
.ws737_c00000{word-spacing:14.707200pt;}
.wsc25_c00000{word-spacing:14.713600pt;}
.wse30_c00000{word-spacing:14.720000pt;}
.wse67_c00000{word-spacing:14.726400pt;}
.ws75b_c00000{word-spacing:14.732800pt;}
.ws1766_c00000{word-spacing:14.733696pt;}
.ws13a2_c00000{word-spacing:14.739200pt;}
.ws3df_c00000{word-spacing:14.739552pt;}
.wse7d_c00000{word-spacing:14.745600pt;}
.ws1521_c00000{word-spacing:14.751264pt;}
.wsd39_c00000{word-spacing:14.752000pt;}
.ws1a46_c00000{word-spacing:14.758400pt;}
.ws3de_c00000{word-spacing:14.762976pt;}
.ws1288_c00000{word-spacing:14.771200pt;}
.ws11e1_c00000{word-spacing:14.774688pt;}
.ws1282_c00000{word-spacing:14.776160pt;}
.ws14ae_c00000{word-spacing:14.777600pt;}
.ws86d_c00000{word-spacing:14.780544pt;}
.ws581_c00000{word-spacing:14.786400pt;}
.ws111f_c00000{word-spacing:14.786848pt;}
.ws11e2_c00000{word-spacing:14.798112pt;}
.ws1164_c00000{word-spacing:14.798400pt;}
.ws1034_c00000{word-spacing:14.808000pt;}
.ws15c7_c00000{word-spacing:14.809600pt;}
.ws217_c00000{word-spacing:14.822400pt;}
.ws19fb_c00000{word-spacing:14.828800pt;}
.ws111a_c00000{word-spacing:14.834944pt;}
.ws1033_c00000{word-spacing:14.841600pt;}
.ws15c8_c00000{word-spacing:14.848000pt;}
.ws789_c00000{word-spacing:14.854400pt;}
.ws1878_c00000{word-spacing:14.860800pt;}
.ws1080_c00000{word-spacing:14.865600pt;}
.ws2ae_c00000{word-spacing:14.873600pt;}
.ws1252_c00000{word-spacing:14.877696pt;}
.ws9e7_c00000{word-spacing:14.880000pt;}
.ws1582_c00000{word-spacing:14.886400pt;}
.ws157f_c00000{word-spacing:14.888384pt;}
.ws1583_c00000{word-spacing:14.892800pt;}
.ws1124_c00000{word-spacing:14.893728pt;}
.ws1247_c00000{word-spacing:14.899072pt;}
.ws1615_c00000{word-spacing:14.899200pt;}
.wsa3f_c00000{word-spacing:14.905600pt;}
.wsa40_c00000{word-spacing:14.912000pt;}
.ws18ec_c00000{word-spacing:14.918400pt;}
.wsec_c00000{word-spacing:14.924800pt;}
.wsbe5_c00000{word-spacing:14.931200pt;}
.wsde2_c00000{word-spacing:14.937600pt;}
.wsf75_c00000{word-spacing:14.944000pt;}
.ws147a_c00000{word-spacing:14.950400pt;}
.ws908_c00000{word-spacing:14.956800pt;}
.ws9e6_c00000{word-spacing:14.963200pt;}
.ws219_c00000{word-spacing:14.969600pt;}
.wsed_c00000{word-spacing:14.976000pt;}
.wse62_c00000{word-spacing:14.982400pt;}
.ws57_c00000{word-spacing:14.988800pt;}
.ws1994_c00000{word-spacing:14.995200pt;}
.ws218_c00000{word-spacing:15.001600pt;}
.ws2ad_c00000{word-spacing:15.008000pt;}
.ws41e_c00000{word-spacing:15.014400pt;}
.wsbb1_c00000{word-spacing:15.020800pt;}
.ws157d_c00000{word-spacing:15.021984pt;}
.ws41d_c00000{word-spacing:15.027200pt;}
.ws949_c00000{word-spacing:15.033600pt;}
.ws1597_c00000{word-spacing:15.038208pt;}
.wsc2a_c00000{word-spacing:15.040000pt;}
.wse74_c00000{word-spacing:15.044064pt;}
.wsc2b_c00000{word-spacing:15.046400pt;}
.wsf9b_c00000{word-spacing:15.052800pt;}
.ws1939_c00000{word-spacing:15.054048pt;}
.wse08_c00000{word-spacing:15.055776pt;}
.wsde3_c00000{word-spacing:15.059200pt;}
.wse75_c00000{word-spacing:15.061632pt;}
.ws14b5_c00000{word-spacing:15.065600pt;}
.ws19bd_c00000{word-spacing:15.067488pt;}
.ws8d7_c00000{word-spacing:15.072000pt;}
.wseaf_c00000{word-spacing:15.078400pt;}
.ws1841_c00000{word-spacing:15.079200pt;}
.ws16b6_c00000{word-spacing:15.084800pt;}
.wse07_c00000{word-spacing:15.085056pt;}
.ws1575_c00000{word-spacing:15.086112pt;}
.ws14fa_c00000{word-spacing:15.090912pt;}
.ws1471_c00000{word-spacing:15.091200pt;}
.ws11ee_c00000{word-spacing:15.096768pt;}
.ws788_c00000{word-spacing:15.097600pt;}
.ws19e6_c00000{word-spacing:15.104000pt;}
.ws15c1_c00000{word-spacing:15.108480pt;}
.ws18d3_c00000{word-spacing:15.110400pt;}
.ws15c0_c00000{word-spacing:15.114336pt;}
.ws13bb_c00000{word-spacing:15.116800pt;}
.ws1af1_c00000{word-spacing:15.123200pt;}
.ws18d2_c00000{word-spacing:15.142400pt;}
.ws18df_c00000{word-spacing:15.155200pt;}
.ws10d3_c00000{word-spacing:15.158400pt;}
.ws1aee_c00000{word-spacing:15.160928pt;}
.wse9d_c00000{word-spacing:15.168000pt;}
.wsb0d_c00000{word-spacing:15.174400pt;}
.ws1ad8_c00000{word-spacing:15.176960pt;}
.ws18e0_c00000{word-spacing:15.180800pt;}
.ws10d4_c00000{word-spacing:15.182400pt;}
.ws1529_c00000{word-spacing:15.187200pt;}
.ws16cd_c00000{word-spacing:15.193600pt;}
.wse34_c00000{word-spacing:15.200000pt;}
.ws182_c00000{word-spacing:15.206400pt;}
.ws4a2_c00000{word-spacing:15.212800pt;}
.ws18d9_c00000{word-spacing:15.219200pt;}
.wsd51_c00000{word-spacing:15.225600pt;}
.ws72_c00000{word-spacing:15.232000pt;}
.ws181_c00000{word-spacing:15.238400pt;}
.wsb0e_c00000{word-spacing:15.244800pt;}
.wse2e_c00000{word-spacing:15.251200pt;}
.ws59f_c00000{word-spacing:15.257600pt;}
.wscbf_c00000{word-spacing:15.264000pt;}
.ws8d3_c00000{word-spacing:15.270400pt;}
.wsb66_c00000{word-spacing:15.276800pt;}
.wsffa_c00000{word-spacing:15.283200pt;}
.ws18b2_c00000{word-spacing:15.289600pt;}
.ws15af_c00000{word-spacing:15.296000pt;}
.wsd52_c00000{word-spacing:15.302400pt;}
.ws736_c00000{word-spacing:15.308800pt;}
.ws2b0_c00000{word-spacing:15.315200pt;}
.wsa69_c00000{word-spacing:15.321600pt;}
.wsa68_c00000{word-spacing:15.328000pt;}
.ws2b1_c00000{word-spacing:15.334400pt;}
.ws73_c00000{word-spacing:15.340800pt;}
.ws74_c00000{word-spacing:15.347200pt;}
.ws1241_c00000{word-spacing:15.347968pt;}
.ws1322_c00000{word-spacing:15.353312pt;}
.wsc73_c00000{word-spacing:15.353600pt;}
.ws8d4_c00000{word-spacing:15.360000pt;}
.ws467_c00000{word-spacing:15.366144pt;}
.ws834_c00000{word-spacing:15.366400pt;}
.ws15e0_c00000{word-spacing:15.372000pt;}
.ws474_c00000{word-spacing:15.372800pt;}
.ws86a_c00000{word-spacing:15.377856pt;}
.ws5a0_c00000{word-spacing:15.379200pt;}
.ws1563_c00000{word-spacing:15.380032pt;}
.ws15df_c00000{word-spacing:15.383712pt;}
.wse33_c00000{word-spacing:15.385600pt;}
.ws472_c00000{word-spacing:15.389568pt;}
.ws475_c00000{word-spacing:15.392000pt;}
.ws709_c00000{word-spacing:15.395424pt;}
.ws13f8_c00000{word-spacing:15.398400pt;}
.ws17a4_c00000{word-spacing:15.401408pt;}
.ws3e9_c00000{word-spacing:15.407136pt;}
.ws835_c00000{word-spacing:15.411200pt;}
.ws7f0_c00000{word-spacing:15.412992pt;}
.ws17a5_c00000{word-spacing:15.417440pt;}
.ws1af2_c00000{word-spacing:15.417600pt;}
.wsa5e_c00000{word-spacing:15.418848pt;}
.wsf70_c00000{word-spacing:15.424000pt;}
.ws9ea_c00000{word-spacing:15.424704pt;}
.ws7f1_c00000{word-spacing:15.430560pt;}
.ws172a_c00000{word-spacing:15.438816pt;}
.ws1932_c00000{word-spacing:15.443200pt;}
.ws127e_c00000{word-spacing:15.454848pt;}
.wsed6_c00000{word-spacing:15.456000pt;}
.ws1858_c00000{word-spacing:15.468800pt;}
.wsba4_c00000{word-spacing:15.488000pt;}
.ws182f_c00000{word-spacing:15.494400pt;}
.ws113_c00000{word-spacing:15.507200pt;}
.ws127d_c00000{word-spacing:15.518976pt;}
.ws904_c00000{word-spacing:15.520000pt;}
.wsfcc_c00000{word-spacing:15.524320pt;}
.ws677_c00000{word-spacing:15.526400pt;}
.wsfce_c00000{word-spacing:15.529664pt;}
.wsa57_c00000{word-spacing:15.539200pt;}
.ws1557_c00000{word-spacing:15.540352pt;}
.ws19d8_c00000{word-spacing:15.545600pt;}
.ws386_c00000{word-spacing:15.552000pt;}
.ws89c_c00000{word-spacing:15.558400pt;}
.ws492_c00000{word-spacing:15.564800pt;}
.ws290_c00000{word-spacing:15.571200pt;}
.wsed5_c00000{word-spacing:15.577600pt;}
.wsa83_c00000{word-spacing:15.584000pt;}
.ws3a8_c00000{word-spacing:15.590400pt;}
.ws676_c00000{word-spacing:15.596800pt;}
.ws387_c00000{word-spacing:15.603200pt;}
.ws59_c00000{word-spacing:15.609600pt;}
.wsa4b_c00000{word-spacing:15.616000pt;}
.ws291_c00000{word-spacing:15.622400pt;}
.wsb04_c00000{word-spacing:15.628800pt;}
.ws5a4_c00000{word-spacing:15.635200pt;}
.wsbed_c00000{word-spacing:15.641600pt;}
.wsa56_c00000{word-spacing:15.648000pt;}
.ws2b7_c00000{word-spacing:15.654400pt;}
.wse01_c00000{word-spacing:15.658944pt;}
.wse09_c00000{word-spacing:15.660800pt;}
.ws58_c00000{word-spacing:15.667200pt;}
.ws1662_c00000{word-spacing:15.670656pt;}
.ws5a_c00000{word-spacing:15.673600pt;}
.ws84f_c00000{word-spacing:15.676512pt;}
.ws106f_c00000{word-spacing:15.679296pt;}
.ws1997_c00000{word-spacing:15.680000pt;}
.wse8c_c00000{word-spacing:15.684640pt;}
.ws3a7_c00000{word-spacing:15.686400pt;}
.ws7d1_c00000{word-spacing:15.688224pt;}
.ws903_c00000{word-spacing:15.692800pt;}
.ws1515_c00000{word-spacing:15.694080pt;}
.wsb05_c00000{word-spacing:15.699200pt;}
.ws1ac9_c00000{word-spacing:15.699936pt;}
.ws6d0_c00000{word-spacing:15.705600pt;}
.ws84e_c00000{word-spacing:15.705792pt;}
.ws1320_c00000{word-spacing:15.711360pt;}
.ws16fe_c00000{word-spacing:15.711648pt;}
.ws16ef_c00000{word-spacing:15.712000pt;}
.ws49d_c00000{word-spacing:15.717504pt;}
.ws77e_c00000{word-spacing:15.723360pt;}
.ws4a8_c00000{word-spacing:15.724800pt;}
.ws1963_c00000{word-spacing:15.729216pt;}
.ws8ee_c00000{word-spacing:15.735072pt;}
.ws1aca_c00000{word-spacing:15.746784pt;}
.wsb06_c00000{word-spacing:15.750400pt;}
.ws19d3_c00000{word-spacing:15.769600pt;}
.ws10fd_c00000{word-spacing:15.770144pt;}
.wsa7e_c00000{word-spacing:15.776000pt;}
.ws7de_c00000{word-spacing:15.776064pt;}
.ws1456_c00000{word-spacing:15.788800pt;}
.ws1249_c00000{word-spacing:15.807552pt;}
.ws17b9_c00000{word-spacing:15.808000pt;}
.ws15db_c00000{word-spacing:15.814400pt;}
.wsb41_c00000{word-spacing:15.820800pt;}
.ws1734_c00000{word-spacing:15.839616pt;}
.ws1a0a_c00000{word-spacing:15.840000pt;}
.ws17ba_c00000{word-spacing:15.846400pt;}
.wsb93_c00000{word-spacing:15.852800pt;}
.ws196a_c00000{word-spacing:15.855648pt;}
.ws1933_c00000{word-spacing:15.859200pt;}
.ws1978_c00000{word-spacing:15.865600pt;}
.ws907_c00000{word-spacing:15.872000pt;}
.wsc6b_c00000{word-spacing:15.884800pt;}
.ws496_c00000{word-spacing:15.891200pt;}
.ws13eb_c00000{word-spacing:15.897600pt;}
.ws10b8_c00000{word-spacing:15.898400pt;}
.wsc30_c00000{word-spacing:15.904000pt;}
.ws4a9_c00000{word-spacing:15.910400pt;}
.wsb23_c00000{word-spacing:15.916800pt;}
.ws7ff_c00000{word-spacing:15.923200pt;}
.ws497_c00000{word-spacing:15.929600pt;}
.ws972_c00000{word-spacing:15.942400pt;}
.ws26a_c00000{word-spacing:15.948800pt;}
.ws897_c00000{word-spacing:15.955200pt;}
.wsa9b_c00000{word-spacing:15.961600pt;}
.ws1696_c00000{word-spacing:15.967872pt;}
.ws440_c00000{word-spacing:15.968000pt;}
.ws14b3_c00000{word-spacing:15.969312pt;}
.ws498_c00000{word-spacing:15.974400pt;}
.ws9d6_c00000{word-spacing:15.980800pt;}
.ws803_c00000{word-spacing:15.987200pt;}
.wsc07_c00000{word-spacing:15.993600pt;}
.ws1776_c00000{word-spacing:15.999936pt;}
.ws1541_c00000{word-spacing:16.000000pt;}
.wsf92_c00000{word-spacing:16.004448pt;}
.wscea_c00000{word-spacing:16.006400pt;}
.wsdcb_c00000{word-spacing:16.012800pt;}
.wsc20_c00000{word-spacing:16.016160pt;}
.ws898_c00000{word-spacing:16.019200pt;}
.wsb42_c00000{word-spacing:16.025600pt;}
.ws15ca_c00000{word-spacing:16.027872pt;}
.ws800_c00000{word-spacing:16.032000pt;}
.ws1605_c00000{word-spacing:16.033728pt;}
.wsa7f_c00000{word-spacing:16.038400pt;}
.ws483_c00000{word-spacing:16.039584pt;}
.ws804_c00000{word-spacing:16.044800pt;}
.ws1629_c00000{word-spacing:16.045440pt;}
.ws1695_c00000{word-spacing:16.057152pt;}
.ws1265_c00000{word-spacing:16.058720pt;}
.wsf91_c00000{word-spacing:16.063008pt;}
.ws1892_c00000{word-spacing:16.069408pt;}
.wsb24_c00000{word-spacing:16.070400pt;}
.ws1a0e_c00000{word-spacing:16.076800pt;}
.ws1969_c00000{word-spacing:16.080096pt;}
.ws816_c00000{word-spacing:16.083200pt;}
.wsfd8_c00000{word-spacing:16.090784pt;}
.wsea2_c00000{word-spacing:16.096000pt;}
.ws1571_c00000{word-spacing:16.096128pt;}
.ws1a2a_c00000{word-spacing:16.102400pt;}
.ws441_c00000{word-spacing:16.108800pt;}
.ws16b7_c00000{word-spacing:16.115200pt;}
.ws17dd_c00000{word-spacing:16.121600pt;}
.ws986_c00000{word-spacing:16.128000pt;}
.ws1777_c00000{word-spacing:16.128192pt;}
.wsf69_c00000{word-spacing:16.134400pt;}
.ws1430_c00000{word-spacing:16.140800pt;}
.ws1425_c00000{word-spacing:16.147200pt;}
.ws1a2b_c00000{word-spacing:16.153600pt;}
.ws19d4_c00000{word-spacing:16.160000pt;}
.ws1929_c00000{word-spacing:16.179200pt;}
.ws12d2_c00000{word-spacing:16.185600pt;}
.ws833_c00000{word-spacing:16.192000pt;}
.ws1630_c00000{word-spacing:16.198400pt;}
.wse11_c00000{word-spacing:16.204800pt;}
.ws815_c00000{word-spacing:16.211200pt;}
.wsa7a_c00000{word-spacing:16.217600pt;}
.ws5f7_c00000{word-spacing:16.224000pt;}
.wsb56_c00000{word-spacing:16.230400pt;}
.ws6df_c00000{word-spacing:16.236800pt;}
.wsbbe_c00000{word-spacing:16.243200pt;}
.ws6e0_c00000{word-spacing:16.249600pt;}
.ws95a_c00000{word-spacing:16.256000pt;}
.wsd06_c00000{word-spacing:16.262400pt;}
.ws832_c00000{word-spacing:16.268800pt;}
.ws167a_c00000{word-spacing:16.275200pt;}
.ws127_c00000{word-spacing:16.281600pt;}
.ws4e_c00000{word-spacing:16.288000pt;}
.ws35e_c00000{word-spacing:16.294400pt;}
.ws341_c00000{word-spacing:16.300800pt;}
.ws128_c00000{word-spacing:16.307200pt;}
.ws29e_c00000{word-spacing:16.313600pt;}
.ws987_c00000{word-spacing:16.320000pt;}
.wsa84_c00000{word-spacing:16.326400pt;}
.ws29d_c00000{word-spacing:16.332800pt;}
.ws14b8_c00000{word-spacing:16.338240pt;}
.ws13aa_c00000{word-spacing:16.339200pt;}
.ws19af_c00000{word-spacing:16.344096pt;}
.wsb57_c00000{word-spacing:16.345600pt;}
.ws16e5_c00000{word-spacing:16.349952pt;}
.ws1a50_c00000{word-spacing:16.352000pt;}
.ws19ae_c00000{word-spacing:16.355808pt;}
.ws11d3_c00000{word-spacing:16.358400pt;}
.ws1848_c00000{word-spacing:16.361664pt;}
.ws198a_c00000{word-spacing:16.364800pt;}
.ws847_c00000{word-spacing:16.367520pt;}
.ws4e1_c00000{word-spacing:16.373376pt;}
.ws1500_c00000{word-spacing:16.377600pt;}
.ws151c_c00000{word-spacing:16.379232pt;}
.ws4f_c00000{word-spacing:16.384000pt;}
.ws51c_c00000{word-spacing:16.385088pt;}
.ws15d3_c00000{word-spacing:16.396800pt;}
.ws848_c00000{word-spacing:16.402656pt;}
.ws1627_c00000{word-spacing:16.409600pt;}
.ws1867_c00000{word-spacing:16.422400pt;}
.ws14f1_c00000{word-spacing:16.428800pt;}
.wsd96_c00000{word-spacing:16.435200pt;}
.ws10ae_c00000{word-spacing:16.440000pt;}
.wsd95_c00000{word-spacing:16.448000pt;}
.ws1991_c00000{word-spacing:16.454400pt;}
.ws8bd_c00000{word-spacing:16.460800pt;}
.ws16a3_c00000{word-spacing:16.467200pt;}
.wsf4e_c00000{word-spacing:16.473600pt;}
.ws1ab8_c00000{word-spacing:16.480000pt;}
.ws1043_c00000{word-spacing:16.486240pt;}
.ws10af_c00000{word-spacing:16.488000pt;}
.ws17fa_c00000{word-spacing:16.492800pt;}
.ws10f9_c00000{word-spacing:16.496928pt;}
.wsef3_c00000{word-spacing:16.499200pt;}
.ws232_c00000{word-spacing:16.505600pt;}
.ws28a_c00000{word-spacing:16.512000pt;}
.ws15d2_c00000{word-spacing:16.518400pt;}
.ws1499_c00000{word-spacing:16.524800pt;}
.ws959_c00000{word-spacing:16.531200pt;}
.ws1393_c00000{word-spacing:16.534560pt;}
.wsb68_c00000{word-spacing:16.537600pt;}
.ws1f3_c00000{word-spacing:16.544000pt;}
.ws641_c00000{word-spacing:16.550400pt;}
.ws352_c00000{word-spacing:16.556800pt;}
.ws6be_c00000{word-spacing:16.560768pt;}
.ws234_c00000{word-spacing:16.563200pt;}
.ws1d3_c00000{word-spacing:16.569600pt;}
.wsef4_c00000{word-spacing:16.576000pt;}
.ws8be_c00000{word-spacing:16.582400pt;}
.ws19e7_c00000{word-spacing:16.588800pt;}
.wsc91_c00000{word-spacing:16.595200pt;}
.ws1f4_c00000{word-spacing:16.601600pt;}
.ws901_c00000{word-spacing:16.608000pt;}
.ws922_c00000{word-spacing:16.614400pt;}
.ws1206_c00000{word-spacing:16.619328pt;}
.ws289_c00000{word-spacing:16.620800pt;}
.wse77_c00000{word-spacing:16.627200pt;}
.wsb0f_c00000{word-spacing:16.633600pt;}
.ws6bf_c00000{word-spacing:16.636896pt;}
.ws1d4_c00000{word-spacing:16.640000pt;}
.ws1205_c00000{word-spacing:16.642752pt;}
.wse78_c00000{word-spacing:16.646400pt;}
.ws1312_c00000{word-spacing:16.646560pt;}
.ws902_c00000{word-spacing:16.652800pt;}
.wsef2_c00000{word-spacing:16.659200pt;}
.ws121f_c00000{word-spacing:16.660320pt;}
.ws18d7_c00000{word-spacing:16.665600pt;}
.ws6bd_c00000{word-spacing:16.666176pt;}
.ws197e_c00000{word-spacing:16.672000pt;}
.ws233_c00000{word-spacing:16.684800pt;}
.ws1524_c00000{word-spacing:16.689600pt;}
.wsfe0_c00000{word-spacing:16.694656pt;}
.ws1523_c00000{word-spacing:16.695456pt;}
.ws9d0_c00000{word-spacing:16.697600pt;}
.ws11e6_c00000{word-spacing:16.701312pt;}
.ws1d5_c00000{word-spacing:16.704000pt;}
.ws1213_c00000{word-spacing:16.707168pt;}
.ws15f7_c00000{word-spacing:16.710400pt;}
.wsf88_c00000{word-spacing:16.716800pt;}
.wsb2b_c00000{word-spacing:16.723200pt;}
.ws16c2_c00000{word-spacing:16.736000pt;}
.ws1214_c00000{word-spacing:16.748160pt;}
.ws1873_c00000{word-spacing:16.755200pt;}
.ws105a_c00000{word-spacing:16.761600pt;}
.ws631_c00000{word-spacing:16.768000pt;}
.ws1a0c_c00000{word-spacing:16.774400pt;}
.wsbba_c00000{word-spacing:16.780800pt;}
.ws17eb_c00000{word-spacing:16.787200pt;}
.ws1059_c00000{word-spacing:16.790400pt;}
.ws19e5_c00000{word-spacing:16.793600pt;}
.wscab_c00000{word-spacing:16.800000pt;}
.ws17b8_c00000{word-spacing:16.801536pt;}
.ws14ed_c00000{word-spacing:16.806400pt;}
.wsc9f_c00000{word-spacing:16.812800pt;}
.ws19d7_c00000{word-spacing:16.819200pt;}
.ws994_c00000{word-spacing:16.825600pt;}
.ws75f_c00000{word-spacing:16.832000pt;}
.ws1e8_c00000{word-spacing:16.844800pt;}
.ws13f2_c00000{word-spacing:16.851200pt;}
.ws12cf_c00000{word-spacing:16.857600pt;}
.ws12c3_c00000{word-spacing:16.864000pt;}
.ws882_c00000{word-spacing:16.870400pt;}
.wsdf4_c00000{word-spacing:16.876800pt;}
.wsb1b_c00000{word-spacing:16.883200pt;}
.ws630_c00000{word-spacing:16.889600pt;}
.ws12ce_c00000{word-spacing:16.896000pt;}
.ws12c7_c00000{word-spacing:16.902400pt;}
.wsd69_c00000{word-spacing:16.908800pt;}
.wse54_c00000{word-spacing:16.915200pt;}
.ws75e_c00000{word-spacing:16.921600pt;}
.ws17f_c00000{word-spacing:16.928000pt;}
.wsca2_c00000{word-spacing:16.934400pt;}
.ws9c1_c00000{word-spacing:16.940800pt;}
.ws180_c00000{word-spacing:16.947200pt;}
.ws1e9_c00000{word-spacing:16.953600pt;}
.ws881_c00000{word-spacing:16.960000pt;}
.ws125d_c00000{word-spacing:16.961856pt;}
.ws164b_c00000{word-spacing:16.964832pt;}
.ws993_c00000{word-spacing:16.966400pt;}
.ws166b_c00000{word-spacing:16.972800pt;}
.wsc0b_c00000{word-spacing:16.976544pt;}
.ws820_c00000{word-spacing:16.979200pt;}
.ws19e3_c00000{word-spacing:16.985600pt;}
.wsb17_c00000{word-spacing:16.992000pt;}
.wsc0a_c00000{word-spacing:16.994112pt;}
.ws16de_c00000{word-spacing:16.999968pt;}
.ws9d1_c00000{word-spacing:17.004800pt;}
.ws11cd_c00000{word-spacing:17.005824pt;}
.ws1352_c00000{word-spacing:17.011680pt;}
.ws160a_c00000{word-spacing:17.023392pt;}
.ws162a_c00000{word-spacing:17.024000pt;}
.ws14fe_c00000{word-spacing:17.030400pt;}
.ws191b_c00000{word-spacing:17.036672pt;}
.wsdf3_c00000{word-spacing:17.056000pt;}
.ws195a_c00000{word-spacing:17.058048pt;}
.ws19e4_c00000{word-spacing:17.062400pt;}
.wsa8f_c00000{word-spacing:17.068800pt;}
.ws1351_c00000{word-spacing:17.070240pt;}
.ws191a_c00000{word-spacing:17.074080pt;}
.wsed2_c00000{word-spacing:17.075200pt;}
.ws15f0_c00000{word-spacing:17.081600pt;}
.wsa8c_c00000{word-spacing:17.088000pt;}
.ws10e9_c00000{word-spacing:17.092800pt;}
.wsb8b_c00000{word-spacing:17.100800pt;}
.ws125e_c00000{word-spacing:17.106144pt;}
.wsce5_c00000{word-spacing:17.107200pt;}
.ws7bf_c00000{word-spacing:17.113600pt;}
.ws10e8_c00000{word-spacing:17.116800pt;}
.wsc9e_c00000{word-spacing:17.120000pt;}
.ws125f_c00000{word-spacing:17.127520pt;}
.ws1674_c00000{word-spacing:17.132800pt;}
.wsf7f_c00000{word-spacing:17.139200pt;}
.ws15a9_c00000{word-spacing:17.145600pt;}
.ws7c0_c00000{word-spacing:17.152000pt;}
.wsd5f_c00000{word-spacing:17.158400pt;}
.wsd3d_c00000{word-spacing:17.164800pt;}
.ws187b_c00000{word-spacing:17.164928pt;}
.wsa8b_c00000{word-spacing:17.171200pt;}
.ws114f_c00000{word-spacing:17.175616pt;}
.wsc75_c00000{word-spacing:17.177600pt;}
.ws1492_c00000{word-spacing:17.184000pt;}
.wsc76_c00000{word-spacing:17.190400pt;}
.ws15aa_c00000{word-spacing:17.196800pt;}
.wsb8c_c00000{word-spacing:17.203200pt;}
.wsc2f_c00000{word-spacing:17.209600pt;}
.wsd3e_c00000{word-spacing:17.216000pt;}
.ws51d_c00000{word-spacing:17.222400pt;}
.wsf4f_c00000{word-spacing:17.228800pt;}
.wsc74_c00000{word-spacing:17.235200pt;}
.wse48_c00000{word-spacing:17.241600pt;}
.ws6b9_c00000{word-spacing:17.248000pt;}
.wsb8d_c00000{word-spacing:17.254400pt;}
.ws6b8_c00000{word-spacing:17.260800pt;}
.ws7be_c00000{word-spacing:17.267200pt;}
.ws134c_c00000{word-spacing:17.273600pt;}
.ws11a3_c00000{word-spacing:17.277152pt;}
.wseb4_c00000{word-spacing:17.280000pt;}
.ws6fa_c00000{word-spacing:17.281056pt;}
.wse25_c00000{word-spacing:17.286400pt;}
.ws14be_c00000{word-spacing:17.286912pt;}
.wsa8e_c00000{word-spacing:17.292800pt;}
.ws5c0_c00000{word-spacing:17.298624pt;}
.wsc2e_c00000{word-spacing:17.299200pt;}
.ws115e_c00000{word-spacing:17.303872pt;}
.wsbcd_c00000{word-spacing:17.310336pt;}
.ws14d5_c00000{word-spacing:17.312000pt;}
.ws1658_c00000{word-spacing:17.316192pt;}
.ws5c1_c00000{word-spacing:17.322048pt;}
.wsa8d_c00000{word-spacing:17.324800pt;}
.wse04_c00000{word-spacing:17.327904pt;}
.wsd2a_c00000{word-spacing:17.331200pt;}
.wsb9a_c00000{word-spacing:17.344000pt;}
.ws3ea_c00000{word-spacing:17.345472pt;}
.ws7a9_c00000{word-spacing:17.363200pt;}
.ws10d0_c00000{word-spacing:17.371200pt;}
.wsb9b_c00000{word-spacing:17.376000pt;}
.ws1561_c00000{word-spacing:17.389376pt;}
.wsffe_c00000{word-spacing:17.395200pt;}
.ws762_c00000{word-spacing:17.401600pt;}
.ws73e_c00000{word-spacing:17.414400pt;}
.ws183b_c00000{word-spacing:17.427200pt;}
.ws10f7_c00000{word-spacing:17.428800pt;}
.ws4b5_c00000{word-spacing:17.433600pt;}
.ws73d_c00000{word-spacing:17.440000pt;}
.ws31d_c00000{word-spacing:17.446400pt;}
.wse10_c00000{word-spacing:17.452800pt;}
.ws1465_c00000{word-spacing:17.459200pt;}
.ws1133_c00000{word-spacing:17.464192pt;}
.ws791_c00000{word-spacing:17.465600pt;}
.wseb0_c00000{word-spacing:17.472000pt;}
.ws1025_c00000{word-spacing:17.478400pt;}
.ws3b4_c00000{word-spacing:17.484800pt;}
.wse43_c00000{word-spacing:17.491200pt;}
.ws3b5_c00000{word-spacing:17.497600pt;}
.ws262_c00000{word-spacing:17.504000pt;}
.ws8f8_c00000{word-spacing:17.510400pt;}
.ws1b9_c00000{word-spacing:17.516800pt;}
.ws89f_c00000{word-spacing:17.523200pt;}
.ws724_c00000{word-spacing:17.529600pt;}
.ws917_c00000{word-spacing:17.536000pt;}
.ws161d_c00000{word-spacing:17.542400pt;}
.wsd29_c00000{word-spacing:17.548800pt;}
.ws4b6_c00000{word-spacing:17.555200pt;}
.ws1ba_c00000{word-spacing:17.561600pt;}
.ws31c_c00000{word-spacing:17.568000pt;}
.ws194_c00000{word-spacing:17.574400pt;}
.ws51e_c00000{word-spacing:17.580800pt;}
.ws859_c00000{word-spacing:17.587200pt;}
.ws195_c00000{word-spacing:17.593600pt;}
.ws263_c00000{word-spacing:17.600000pt;}
.ws87a_c00000{word-spacing:17.606400pt;}
.wse6f_c00000{word-spacing:17.612800pt;}
.ws1216_c00000{word-spacing:17.619200pt;}
.wsfa1_c00000{word-spacing:17.626560pt;}
.ws7c1_c00000{word-spacing:17.632000pt;}
.ws44e_c00000{word-spacing:17.632416pt;}
.ws18c4_c00000{word-spacing:17.635200pt;}
.wsa05_c00000{word-spacing:17.638272pt;}
.ws147b_c00000{word-spacing:17.638400pt;}
.ws42d_c00000{word-spacing:17.644128pt;}
.wsdeb_c00000{word-spacing:17.644800pt;}
.ws1308_c00000{word-spacing:17.651232pt;}
.ws42c_c00000{word-spacing:17.655840pt;}
.wsdea_c00000{word-spacing:17.657600pt;}
.ws18c5_c00000{word-spacing:17.661920pt;}
.wsa06_c00000{word-spacing:17.667552pt;}
.ws1307_c00000{word-spacing:17.677952pt;}
.wse3b_c00000{word-spacing:17.702400pt;}
.ws76_c00000{word-spacing:17.721600pt;}
.wse65_c00000{word-spacing:17.728000pt;}
.ws12ca_c00000{word-spacing:17.734400pt;}
.ws192c_c00000{word-spacing:17.747200pt;}
.ws18fd_c00000{word-spacing:17.747424pt;}
.ws15f2_c00000{word-spacing:17.753600pt;}
.ws77_c00000{word-spacing:17.760000pt;}
.ws12da_c00000{word-spacing:17.766400pt;}
.ws1277_c00000{word-spacing:17.768800pt;}
.ws15f1_c00000{word-spacing:17.779200pt;}
.ws130e_c00000{word-spacing:17.779488pt;}
.wsc98_c00000{word-spacing:17.785600pt;}
.wsfa3_c00000{word-spacing:17.792000pt;}
.ws19ea_c00000{word-spacing:17.798400pt;}
.wse3c_c00000{word-spacing:17.804800pt;}
.ws10c_c00000{word-spacing:17.811200pt;}
.ws91c_c00000{word-spacing:17.817600pt;}
.ws1108_c00000{word-spacing:17.824000pt;}
.ws11c0_c00000{word-spacing:17.830400pt;}
.ws11c2_c00000{word-spacing:17.836800pt;}
.ws16c1_c00000{word-spacing:17.843200pt;}
.wsb7f_c00000{word-spacing:17.849600pt;}
.ws9f7_c00000{word-spacing:17.856000pt;}
.ws830_c00000{word-spacing:17.862400pt;}
.ws91b_c00000{word-spacing:17.868800pt;}
.ws2a9_c00000{word-spacing:17.875200pt;}
.wsc97_c00000{word-spacing:17.881600pt;}
.ws82f_c00000{word-spacing:17.888000pt;}
.ws1f6_c00000{word-spacing:17.894400pt;}
.wse0a_c00000{word-spacing:17.900800pt;}
.ws1f5_c00000{word-spacing:17.907200pt;}
.ws396_c00000{word-spacing:17.913600pt;}
.wsbd4_c00000{word-spacing:17.919360pt;}
.ws9f6_c00000{word-spacing:17.920000pt;}
.ws80f_c00000{word-spacing:17.926400pt;}
.ws810_c00000{word-spacing:17.932800pt;}
.ws18fe_c00000{word-spacing:17.934464pt;}
.ws120b_c00000{word-spacing:17.936928pt;}
.ws163c_c00000{word-spacing:17.939200pt;}
.ws5be_c00000{word-spacing:17.942784pt;}
.ws17a9_c00000{word-spacing:17.945152pt;}
.ws86c_c00000{word-spacing:17.948640pt;}
.ws10b_c00000{word-spacing:17.952000pt;}
.wsaed_c00000{word-spacing:17.954496pt;}
.wsb34_c00000{word-spacing:17.960352pt;}
.ws19dd_c00000{word-spacing:17.964800pt;}
.ws1702_c00000{word-spacing:17.966208pt;}
.wsaee_c00000{word-spacing:17.971200pt;}
.ws18ff_c00000{word-spacing:17.971872pt;}
.wsb33_c00000{word-spacing:17.972064pt;}
.ws86b_c00000{word-spacing:17.977920pt;}
.ws1694_c00000{word-spacing:17.983776pt;}
.ws199d_c00000{word-spacing:17.989632pt;}
.ws94e_c00000{word-spacing:18.003200pt;}
.wsfe5_c00000{word-spacing:18.003936pt;}
.ws177a_c00000{word-spacing:18.009280pt;}
.ws199e_c00000{word-spacing:18.013056pt;}
.ws17aa_c00000{word-spacing:18.025312pt;}
.ws71e_c00000{word-spacing:18.035200pt;}
.ws177b_c00000{word-spacing:18.041344pt;}
.ws17ec_c00000{word-spacing:18.041600pt;}
.ws1871_c00000{word-spacing:18.048000pt;}
.wsb21_c00000{word-spacing:18.054400pt;}
.ws1a1a_c00000{word-spacing:18.060800pt;}
.ws17ed_c00000{word-spacing:18.073600pt;}
.ws1a00_c00000{word-spacing:18.092800pt;}
.ws978_c00000{word-spacing:18.099200pt;}
.ws1836_c00000{word-spacing:18.105600pt;}
.wsb2e_c00000{word-spacing:18.112000pt;}
.wsbbd_c00000{word-spacing:18.118400pt;}
.wsd30_c00000{word-spacing:18.124800pt;}
.wsf33_c00000{word-spacing:18.131200pt;}
.ws563_c00000{word-spacing:18.137600pt;}
.wsa4a_c00000{word-spacing:18.144000pt;}
.wsf59_c00000{word-spacing:18.150400pt;}
.ws3fd_c00000{word-spacing:18.156800pt;}
.wsa0c_c00000{word-spacing:18.163200pt;}
.ws9b7_c00000{word-spacing:18.169600pt;}
.ws5dc_c00000{word-spacing:18.176000pt;}
.wsd31_c00000{word-spacing:18.182400pt;}
.wsf05_c00000{word-spacing:18.188800pt;}
.ws562_c00000{word-spacing:18.195200pt;}
.ws680_c00000{word-spacing:18.201600pt;}
.ws56c_c00000{word-spacing:18.208000pt;}
.ws11ef_c00000{word-spacing:18.212160pt;}
.ws8cf_c00000{word-spacing:18.214400pt;}
.ws11ca_c00000{word-spacing:18.218016pt;}
.ws3fe_c00000{word-spacing:18.220800pt;}
.ws67f_c00000{word-spacing:18.227200pt;}
.ws5dd_c00000{word-spacing:18.233600pt;}
.wsb22_c00000{word-spacing:18.240000pt;}
.ws1dd_c00000{word-spacing:18.246400pt;}
.ws120d_c00000{word-spacing:18.247296pt;}
.wse3e_c00000{word-spacing:18.252800pt;}
.ws4f1_c00000{word-spacing:18.253152pt;}
.ws460_c00000{word-spacing:18.259008pt;}
.wsc24_c00000{word-spacing:18.259200pt;}
.ws11c9_c00000{word-spacing:18.264864pt;}
.wsf58_c00000{word-spacing:18.265600pt;}
.ws461_c00000{word-spacing:18.270720pt;}
.ws1649_c00000{word-spacing:18.272000pt;}
.ws1607_c00000{word-spacing:18.276576pt;}
.ws979_c00000{word-spacing:18.278400pt;}
.wsfb9_c00000{word-spacing:18.281824pt;}
.ws175d_c00000{word-spacing:18.288288pt;}
.ws19e1_c00000{word-spacing:18.291200pt;}
.ws4f0_c00000{word-spacing:18.294144pt;}
.ws1608_c00000{word-spacing:18.300000pt;}
.ws60a_c00000{word-spacing:18.305856pt;}
.ws1805_c00000{word-spacing:18.329600pt;}
.ws609_c00000{word-spacing:18.335136pt;}
.ws1806_c00000{word-spacing:18.342400pt;}
.ws18b1_c00000{word-spacing:18.361600pt;}
.ws117f_c00000{word-spacing:18.361984pt;}
.ws1a49_c00000{word-spacing:18.368000pt;}
.ws1ac0_c00000{word-spacing:18.374400pt;}
.ws406_c00000{word-spacing:18.380800pt;}
.ws10d_c00000{word-spacing:18.387200pt;}
.wse35_c00000{word-spacing:18.400000pt;}
.ws12b6_c00000{word-spacing:18.412800pt;}
.ws122c_c00000{word-spacing:18.425600pt;}
.wsd8d_c00000{word-spacing:18.432000pt;}
.wsb71_c00000{word-spacing:18.438400pt;}
.ws12e1_c00000{word-spacing:18.444800pt;}
.ws15dd_c00000{word-spacing:18.451200pt;}
.ws328_c00000{word-spacing:18.457600pt;}
.wsd0c_c00000{word-spacing:18.464000pt;}
.ws6f1_c00000{word-spacing:18.470400pt;}
.ws94_c00000{word-spacing:18.476800pt;}
.ws649_c00000{word-spacing:18.483200pt;}
.ws407_c00000{word-spacing:18.489600pt;}
.ws329_c00000{word-spacing:18.496000pt;}
.ws53d_c00000{word-spacing:18.502400pt;}
.ws1dc_c00000{word-spacing:18.508800pt;}
.ws12e2_c00000{word-spacing:18.515200pt;}
.wsb72_c00000{word-spacing:18.521600pt;}
.ws10e_c00000{word-spacing:18.528000pt;}
.ws1de_c00000{word-spacing:18.534400pt;}
.ws149e_c00000{word-spacing:18.540800pt;}
.wsaa3_c00000{word-spacing:18.547200pt;}
.ws14a1_c00000{word-spacing:18.551808pt;}
.ws648_c00000{word-spacing:18.553600pt;}
.ws14a3_c00000{word-spacing:18.557664pt;}
.wsd59_c00000{word-spacing:18.560000pt;}
.ws17f2_c00000{word-spacing:18.566400pt;}
.ws95_c00000{word-spacing:18.572800pt;}
.wsc79_c00000{word-spacing:18.575232pt;}
.wscf6_c00000{word-spacing:18.579200pt;}
.ws14a2_c00000{word-spacing:18.581088pt;}
.ws162f_c00000{word-spacing:18.586944pt;}
.wsb73_c00000{word-spacing:18.592000pt;}
.ws8ed_c00000{word-spacing:18.592800pt;}
.ws1a26_c00000{word-spacing:18.598400pt;}
.wsda5_c00000{word-spacing:18.598656pt;}
.wsc78_c00000{word-spacing:18.604512pt;}
.ws122b_c00000{word-spacing:18.611200pt;}
.ws16b3_c00000{word-spacing:18.616224pt;}
.ws188a_c00000{word-spacing:18.623840pt;}
.wsc41_c00000{word-spacing:18.636800pt;}
.ws64a_c00000{word-spacing:18.643200pt;}
.ws1ad3_c00000{word-spacing:18.650560pt;}
.ws13c0_c00000{word-spacing:18.656000pt;}
.wsc2d_c00000{word-spacing:18.662400pt;}
.ws684_c00000{word-spacing:18.668800pt;}
.ws4fb_c00000{word-spacing:18.688000pt;}
.ws1342_c00000{word-spacing:18.700800pt;}
.ws17dc_c00000{word-spacing:18.707200pt;}
.ws8a2_c00000{word-spacing:18.726400pt;}
.wsf1b_c00000{word-spacing:18.732800pt;}
.ws15d0_c00000{word-spacing:18.739200pt;}
.ws16e9_c00000{word-spacing:18.752000pt;}
.ws8fd_c00000{word-spacing:18.758400pt;}
.wsc6c_c00000{word-spacing:18.764800pt;}
.ws1cd_c00000{word-spacing:18.771200pt;}
.ws9d4_c00000{word-spacing:18.777600pt;}
.wsdf6_c00000{word-spacing:18.784000pt;}
.ws760_c00000{word-spacing:18.790400pt;}
.ws129f_c00000{word-spacing:18.796800pt;}
.ws4fa_c00000{word-spacing:18.803200pt;}
.ws1bc_c00000{word-spacing:18.809600pt;}
.ws734_c00000{word-spacing:18.816000pt;}
.ws6d_c00000{word-spacing:18.822400pt;}
.ws6bb_c00000{word-spacing:18.828800pt;}
.ws685_c00000{word-spacing:18.835200pt;}
.ws910_c00000{word-spacing:18.841600pt;}
.ws1bb_c00000{word-spacing:18.848000pt;}
.ws1cc_c00000{word-spacing:18.854400pt;}
.ws6ba_c00000{word-spacing:18.860800pt;}
.ws1024_c00000{word-spacing:18.867200pt;}
.ws8a1_c00000{word-spacing:18.873600pt;}
.ws12ec_c00000{word-spacing:18.880000pt;}
.ws6c_c00000{word-spacing:18.886400pt;}
.ws74d_c00000{word-spacing:18.891456pt;}
.ws13ed_c00000{word-spacing:18.892800pt;}
.ws892_c00000{word-spacing:18.905600pt;}
.ws74e_c00000{word-spacing:18.909024pt;}
.wsaad_c00000{word-spacing:18.914880pt;}
.wsb8f_c00000{word-spacing:18.918400pt;}
.wsabd_c00000{word-spacing:18.920736pt;}
.ws16f4_c00000{word-spacing:18.926592pt;}
.ws8fe_c00000{word-spacing:18.931200pt;}
.ws18e3_c00000{word-spacing:18.937600pt;}
.wsabc_c00000{word-spacing:18.938304pt;}
.wsde1_c00000{word-spacing:18.944000pt;}
.ws18e2_c00000{word-spacing:18.950400pt;}
.ws1000_c00000{word-spacing:18.969600pt;}
.wsfa6_c00000{word-spacing:18.982400pt;}
.ws92f_c00000{word-spacing:19.008000pt;}
.ws1190_c00000{word-spacing:19.012800pt;}
.wseec_c00000{word-spacing:19.027200pt;}
.ws864_c00000{word-spacing:19.033600pt;}
.ws1ab6_c00000{word-spacing:19.040000pt;}
.ws118f_c00000{word-spacing:19.041600pt;}
.ws16e_c00000{word-spacing:19.046400pt;}
.wsc36_c00000{word-spacing:19.052800pt;}
.ws22e_c00000{word-spacing:19.059200pt;}
.ws865_c00000{word-spacing:19.065600pt;}
.ws169d_c00000{word-spacing:19.067392pt;}
.ws4ee_c00000{word-spacing:19.072000pt;}
.wseeb_c00000{word-spacing:19.078400pt;}
.ws478_c00000{word-spacing:19.084800pt;}
.ws10c5_c00000{word-spacing:19.091200pt;}
.wsc37_c00000{word-spacing:19.097600pt;}
.ws4ed_c00000{word-spacing:19.104000pt;}
.ws885_c00000{word-spacing:19.110400pt;}
.ws479_c00000{word-spacing:19.116800pt;}
.ws1001_c00000{word-spacing:19.123200pt;}
.wsb8e_c00000{word-spacing:19.129600pt;}
.ws14aa_c00000{word-spacing:19.136000pt;}
.ws92e_c00000{word-spacing:19.142400pt;}
.ws22d_c00000{word-spacing:19.148800pt;}
.ws11f8_c00000{word-spacing:19.155200pt;}
.ws16d_c00000{word-spacing:19.161600pt;}
.ws722_c00000{word-spacing:19.168000pt;}
.ws723_c00000{word-spacing:19.174400pt;}
.ws693_c00000{word-spacing:19.180800pt;}
.ws694_c00000{word-spacing:19.187200pt;}
.ws954_c00000{word-spacing:19.193600pt;}
.wsadf_c00000{word-spacing:19.200000pt;}
.ws955_c00000{word-spacing:19.206400pt;}
.ws19a3_c00000{word-spacing:19.207680pt;}
.ws15a1_c00000{word-spacing:19.212800pt;}
.ws198f_c00000{word-spacing:19.213536pt;}
.ws1131_c00000{word-spacing:19.217024pt;}
.ws1482_c00000{word-spacing:19.219200pt;}
.ws1587_c00000{word-spacing:19.219392pt;}
.ws50f_c00000{word-spacing:19.225248pt;}
.ws5ae_c00000{word-spacing:19.225600pt;}
.ws4c7_c00000{word-spacing:19.231104pt;}
.ws22f_c00000{word-spacing:19.232000pt;}
.ws14d6_c00000{word-spacing:19.238400pt;}
.ws1990_c00000{word-spacing:19.242816pt;}
.ws510_c00000{word-spacing:19.248672pt;}
.wsd33_c00000{word-spacing:19.251200pt;}
.ws806_c00000{word-spacing:19.254528pt;}
.ws15ec_c00000{word-spacing:19.260384pt;}
.ws18b7_c00000{word-spacing:19.302400pt;}
.ws18af_c00000{word-spacing:19.321600pt;}
.wsee4_c00000{word-spacing:19.328000pt;}
.wsf56_c00000{word-spacing:19.340800pt;}
.wsad9_c00000{word-spacing:19.353600pt;}
.ws12ea_c00000{word-spacing:19.366400pt;}
.ws120_c00000{word-spacing:19.372800pt;}
.ws1ab9_c00000{word-spacing:19.379200pt;}
.ws1914_c00000{word-spacing:19.388032pt;}
.wsf57_c00000{word-spacing:19.392000pt;}
.ws6a_c00000{word-spacing:19.398400pt;}
.ws48b_c00000{word-spacing:19.404800pt;}
.ws10fb_c00000{word-spacing:19.409408pt;}
.ws5ad_c00000{word-spacing:19.411200pt;}
.wsa85_c00000{word-spacing:19.417600pt;}
.wsa8a_c00000{word-spacing:19.424000pt;}
.ws8e0_c00000{word-spacing:19.430400pt;}
.ws991_c00000{word-spacing:19.436800pt;}
.ws27b_c00000{word-spacing:19.443200pt;}
.wsa86_c00000{word-spacing:19.449600pt;}
.ws27a_c00000{word-spacing:19.456000pt;}
.wsefb_c00000{word-spacing:19.462400pt;}
.ws8df_c00000{word-spacing:19.468800pt;}
.ws19c0_c00000{word-spacing:19.475200pt;}
.ws522_c00000{word-spacing:19.481600pt;}
.wsee3_c00000{word-spacing:19.488000pt;}
.ws87c_c00000{word-spacing:19.494400pt;}
.ws11f_c00000{word-spacing:19.500800pt;}
.ws4d3_c00000{word-spacing:19.506336pt;}
.ws48a_c00000{word-spacing:19.507200pt;}
.ws126c_c00000{word-spacing:19.510944pt;}
.wsd20_c00000{word-spacing:19.513600pt;}
.ws5ac_c00000{word-spacing:19.520000pt;}
.ws992_c00000{word-spacing:19.526400pt;}
.wsf3a_c00000{word-spacing:19.529760pt;}
.ws7cb_c00000{word-spacing:19.532800pt;}
.ws4d4_c00000{word-spacing:19.535616pt;}
.ws69_c00000{word-spacing:19.539200pt;}
.ws3dd_c00000{word-spacing:19.541472pt;}
.ws572_c00000{word-spacing:19.545600pt;}
.ws4c8_c00000{word-spacing:19.547328pt;}
.ws15fc_c00000{word-spacing:19.552000pt;}
.wsdb5_c00000{word-spacing:19.553184pt;}
.ws137e_c00000{word-spacing:19.558400pt;}
.wsdad_c00000{word-spacing:19.559040pt;}
.wsada_c00000{word-spacing:19.564800pt;}
.ws166f_c00000{word-spacing:19.564896pt;}
.ws121d_c00000{word-spacing:19.570752pt;}
.ws17b2_c00000{word-spacing:19.575072pt;}
.ws166d_c00000{word-spacing:19.576608pt;}
.ws573_c00000{word-spacing:19.577600pt;}
.ws167b_c00000{word-spacing:19.582464pt;}
.ws197c_c00000{word-spacing:19.588320pt;}
.ws157c_c00000{word-spacing:19.596448pt;}
.ws9db_c00000{word-spacing:19.596800pt;}
.ws1915_c00000{word-spacing:19.607136pt;}
.ws157b_c00000{word-spacing:19.633856pt;}
.ws12f5_c00000{word-spacing:19.635200pt;}
.wsd0b_c00000{word-spacing:19.648000pt;}
.wsee8_c00000{word-spacing:19.660800pt;}
.ws1621_c00000{word-spacing:19.673600pt;}
.wsd0a_c00000{word-spacing:19.680000pt;}
.wsc4e_c00000{word-spacing:19.692800pt;}
.wsc40_c00000{word-spacing:19.699200pt;}
.ws126_c00000{word-spacing:19.712000pt;}
.wsa55_c00000{word-spacing:19.718400pt;}
.ws8d0_c00000{word-spacing:19.724800pt;}
.ws4b2_c00000{word-spacing:19.731200pt;}
.ws14c5_c00000{word-spacing:19.737600pt;}
.ws33c_c00000{word-spacing:19.744000pt;}
.ws17e7_c00000{word-spacing:19.750400pt;}
.ws373_c00000{word-spacing:19.756800pt;}
.wscce_c00000{word-spacing:19.763200pt;}
.ws125_c00000{word-spacing:19.769600pt;}
.ws150c_c00000{word-spacing:19.776000pt;}
.ws33b_c00000{word-spacing:19.782400pt;}
.wsd28_c00000{word-spacing:19.788800pt;}
.ws119_c00000{word-spacing:19.795200pt;}
.wse71_c00000{word-spacing:19.801600pt;}
.ws8ca_c00000{word-spacing:19.808000pt;}
.wsba3_c00000{word-spacing:19.814400pt;}
.wsc4d_c00000{word-spacing:19.820800pt;}
.ws4b3_c00000{word-spacing:19.827200pt;}
.ws2a1_c00000{word-spacing:19.833600pt;}
.ws118_c00000{word-spacing:19.840000pt;}
.ws176a_c00000{word-spacing:19.840128pt;}
.wsb15_c00000{word-spacing:19.846400pt;}
.ws190c_c00000{word-spacing:19.847616pt;}
.wsb14_c00000{word-spacing:19.852800pt;}
.ws182b_c00000{word-spacing:19.857696pt;}
.ws15e4_c00000{word-spacing:19.859200pt;}
.wsee9_c00000{word-spacing:19.865600pt;}
.ws176b_c00000{word-spacing:19.869408pt;}
.wsb5e_c00000{word-spacing:19.872000pt;}
.wsf99_c00000{word-spacing:19.875264pt;}
.wsb5d_c00000{word-spacing:19.878400pt;}
.wsdac_c00000{word-spacing:19.881120pt;}
.ws18a7_c00000{word-spacing:19.885024pt;}
.ws513_c00000{word-spacing:19.886976pt;}
.ws182a_c00000{word-spacing:19.892832pt;}
.ws1510_c00000{word-spacing:19.898688pt;}
.ws17b4_c00000{word-spacing:19.901056pt;}
.ws15e5_c00000{word-spacing:19.904000pt;}
.ws433_c00000{word-spacing:19.904544pt;}
.ws18ae_c00000{word-spacing:19.916800pt;}
.ws1787_c00000{word-spacing:19.922432pt;}
.ws1786_c00000{word-spacing:19.927776pt;}
.ws17b3_c00000{word-spacing:19.933120pt;}
.ws24e_c00000{word-spacing:19.955200pt;}
.ws14b9_c00000{word-spacing:19.961600pt;}
.wsa23_c00000{word-spacing:19.968000pt;}
.ws1a59_c00000{word-spacing:19.974400pt;}
.wsa22_c00000{word-spacing:19.980800pt;}
.ws1a7_c00000{word-spacing:19.993600pt;}
.ws1788_c00000{word-spacing:20.002592pt;}
.wsbb5_c00000{word-spacing:20.012800pt;}
.wsf39_c00000{word-spacing:20.019200pt;}
.ws1aba_c00000{word-spacing:20.025600pt;}
.ws2f6_c00000{word-spacing:20.032000pt;}
.ws4f9_c00000{word-spacing:20.038400pt;}
.ws1ad_c00000{word-spacing:20.044800pt;}
.ws163e_c00000{word-spacing:20.051200pt;}
.ws13b0_c00000{word-spacing:20.057600pt;}
.ws1ae_c00000{word-spacing:20.070400pt;}
.ws24d_c00000{word-spacing:20.076800pt;}
.ws4c1_c00000{word-spacing:20.089600pt;}
.wsf38_c00000{word-spacing:20.096000pt;}
.ws1a8_c00000{word-spacing:20.102400pt;}
.ws25b_c00000{word-spacing:20.108800pt;}
.ws2f5_c00000{word-spacing:20.115200pt;}
.wsdf9_c00000{word-spacing:20.121600pt;}
.ws15d4_c00000{word-spacing:20.127072pt;}
.ws259_c00000{word-spacing:20.128000pt;}
.wsdfa_c00000{word-spacing:20.134400pt;}
.ws913_c00000{word-spacing:20.140800pt;}
.wsd04_c00000{word-spacing:20.147200pt;}
.ws114c_c00000{word-spacing:20.152224pt;}
.ws25a_c00000{word-spacing:20.153600pt;}
.ws18f4_c00000{word-spacing:20.157568pt;}
.ws544_c00000{word-spacing:20.160000pt;}
.wsfcd_c00000{word-spacing:20.162912pt;}
.ws6a1_c00000{word-spacing:20.166400pt;}
.ws4f2_c00000{word-spacing:20.168064pt;}
.wsba2_c00000{word-spacing:20.172800pt;}
.ws4f3_c00000{word-spacing:20.173920pt;}
.ws912_c00000{word-spacing:20.179200pt;}
.ws4ce_c00000{word-spacing:20.179776pt;}
.ws4f8_c00000{word-spacing:20.185600pt;}
.wscbc_c00000{word-spacing:20.191488pt;}
.ws977_c00000{word-spacing:20.197344pt;}
.ws13af_c00000{word-spacing:20.198400pt;}
.ws1569_c00000{word-spacing:20.205664pt;}
.ws4cd_c00000{word-spacing:20.209056pt;}
.ws7b9_c00000{word-spacing:20.238336pt;}
.ws1a45_c00000{word-spacing:20.294400pt;}
.ws1631_c00000{word-spacing:20.300800pt;}
.ws142a_c00000{word-spacing:20.307200pt;}
.ws144d_c00000{word-spacing:20.332800pt;}
.ws1701_c00000{word-spacing:20.345600pt;}
.ws13d9_c00000{word-spacing:20.352000pt;}
.wsb1f_c00000{word-spacing:20.358400pt;}
.wse59_c00000{word-spacing:20.364800pt;}
.wse5a_c00000{word-spacing:20.371200pt;}
.ws1195_c00000{word-spacing:20.371328pt;}
.wsa0a_c00000{word-spacing:20.384000pt;}
.wseb8_c00000{word-spacing:20.390400pt;}
.ws793_c00000{word-spacing:20.396800pt;}
.ws9b9_c00000{word-spacing:20.403200pt;}
.wsb25_c00000{word-spacing:20.409600pt;}
.ws13d8_c00000{word-spacing:20.416000pt;}
.ws1429_c00000{word-spacing:20.422400pt;}
.ws8dd_c00000{word-spacing:20.428800pt;}
.ws1217_c00000{word-spacing:20.435200pt;}
.ws1478_c00000{word-spacing:20.441600pt;}
.ws827_c00000{word-spacing:20.448000pt;}
.ws8dc_c00000{word-spacing:20.454400pt;}
.ws566_c00000{word-spacing:20.460800pt;}
.wsa18_c00000{word-spacing:20.467200pt;}
.ws792_c00000{word-spacing:20.473600pt;}
.ws1852_c00000{word-spacing:20.478432pt;}
.ws12c9_c00000{word-spacing:20.480000pt;}
.ws6cb_c00000{word-spacing:20.484288pt;}
.ws12d5_c00000{word-spacing:20.486400pt;}
.ws1735_c00000{word-spacing:20.488896pt;}
.ws751_c00000{word-spacing:20.496000pt;}
.ws6ca_c00000{word-spacing:20.501856pt;}
.ws1700_c00000{word-spacing:20.505600pt;}
.wse96_c00000{word-spacing:20.507712pt;}
.ws9b8_c00000{word-spacing:20.512000pt;}
.ws437_c00000{word-spacing:20.513568pt;}
.wsa03_c00000{word-spacing:20.525280pt;}
.ws1639_c00000{word-spacing:20.531136pt;}
.ws14b7_c00000{word-spacing:20.536992pt;}
.wseb9_c00000{word-spacing:20.550400pt;}
.ws1889_c00000{word-spacing:20.558368pt;}
.ws16ce_c00000{word-spacing:20.620800pt;}
.ws1501_c00000{word-spacing:20.627200pt;}
.ws9fa_c00000{word-spacing:20.633600pt;}
.ws10a5_c00000{word-spacing:20.635200pt;}
.ws1a4a_c00000{word-spacing:20.640000pt;}
.ws117e_c00000{word-spacing:20.643872pt;}
.ws16c7_c00000{word-spacing:20.646400pt;}
.ws420_c00000{word-spacing:20.665600pt;}
.ws5b5_c00000{word-spacing:20.672000pt;}
.ws601_c00000{word-spacing:20.678400pt;}
.ws5b4_c00000{word-spacing:20.684800pt;}
.ws3c3_c00000{word-spacing:20.691200pt;}
.ws1462_c00000{word-spacing:20.697600pt;}
.ws184_c00000{word-spacing:20.704000pt;}
.wse6e_c00000{word-spacing:20.710400pt;}
.ws183_c00000{word-spacing:20.716800pt;}
.ws15b0_c00000{word-spacing:20.723200pt;}
.wsd9f_c00000{word-spacing:20.729600pt;}
.wsb76_c00000{word-spacing:20.736000pt;}
.ws12f4_c00000{word-spacing:20.742400pt;}
.wsca5_c00000{word-spacing:20.748800pt;}
.ws421_c00000{word-spacing:20.755200pt;}
.ws600_c00000{word-spacing:20.761600pt;}
.ws536_c00000{word-spacing:20.768000pt;}
.wsb77_c00000{word-spacing:20.774400pt;}
.ws537_c00000{word-spacing:20.780800pt;}
.ws16c6_c00000{word-spacing:20.787200pt;}
.ws127c_c00000{word-spacing:20.788160pt;}
.wsd4e_c00000{word-spacing:20.793600pt;}
.ws1890_c00000{word-spacing:20.798848pt;}
.ws2aa_c00000{word-spacing:20.800000pt;}
.wsb75_c00000{word-spacing:20.806400pt;}
.ws196b_c00000{word-spacing:20.809536pt;}
.ws15fa_c00000{word-spacing:20.812224pt;}
.wsed7_c00000{word-spacing:20.812800pt;}
.ws3c4_c00000{word-spacing:20.819200pt;}
.ws19b0_c00000{word-spacing:20.823936pt;}
.wsbc7_c00000{word-spacing:20.825600pt;}
.ws1760_c00000{word-spacing:20.829792pt;}
.ws1acf_c00000{word-spacing:20.830912pt;}
.ws5b7_c00000{word-spacing:20.832000pt;}
.wsf1e_c00000{word-spacing:20.838400pt;}
.ws1765_c00000{word-spacing:20.841504pt;}
.ws15fb_c00000{word-spacing:20.847360pt;}
.ws176c_c00000{word-spacing:20.853216pt;}
.ws5b6_c00000{word-spacing:20.857600pt;}
.wse44_c00000{word-spacing:20.859072pt;}
.ws1069_c00000{word-spacing:20.862976pt;}
.ws194d_c00000{word-spacing:20.864928pt;}
.ws1315_c00000{word-spacing:20.873664pt;}
.ws10d2_c00000{word-spacing:20.894400pt;}
.ws1198_c00000{word-spacing:20.895040pt;}
.wsa21_c00000{word-spacing:20.896000pt;}
.ws1278_c00000{word-spacing:20.900384pt;}
.ws126a_c00000{word-spacing:20.905728pt;}
.ws1592_c00000{word-spacing:20.934400pt;}
.wscc5_c00000{word-spacing:20.947200pt;}
.wsf21_c00000{word-spacing:20.953600pt;}
.wse3a_c00000{word-spacing:20.979200pt;}
.wse6a_c00000{word-spacing:20.998400pt;}
.ws13b3_c00000{word-spacing:21.004800pt;}
.ws112a_c00000{word-spacing:21.007264pt;}
.ws921_c00000{word-spacing:21.011200pt;}
.wsf20_c00000{word-spacing:21.017600pt;}
.wse70_c00000{word-spacing:21.024000pt;}
.ws43a_c00000{word-spacing:21.030400pt;}
.ws46_c00000{word-spacing:21.036800pt;}
.wsa4f_c00000{word-spacing:21.043200pt;}
.wsf77_c00000{word-spacing:21.049600pt;}
.wsa4e_c00000{word-spacing:21.056000pt;}
.ws6b1_c00000{word-spacing:21.062400pt;}
.ws439_c00000{word-spacing:21.075200pt;}
.ws985_c00000{word-spacing:21.081600pt;}
.wsb2f_c00000{word-spacing:21.088000pt;}
.ws213_c00000{word-spacing:21.094400pt;}
.ws47_c00000{word-spacing:21.100800pt;}
.wsedd_c00000{word-spacing:21.107200pt;}
.ws6c9_c00000{word-spacing:21.110880pt;}
.ws1756_c00000{word-spacing:21.113600pt;}
.ws12bc_c00000{word-spacing:21.120000pt;}
.ws14e9_c00000{word-spacing:21.122592pt;}
.wsb26_c00000{word-spacing:21.126400pt;}
.ws19f8_c00000{word-spacing:21.132800pt;}
.ws14ea_c00000{word-spacing:21.140160pt;}
.ws6c8_c00000{word-spacing:21.146016pt;}
.ws19c5_c00000{word-spacing:21.151872pt;}
.ws1a91_c00000{word-spacing:21.152000pt;}
.ws1526_c00000{word-spacing:21.157728pt;}
.wse69_c00000{word-spacing:21.158400pt;}
.ws1207_c00000{word-spacing:21.163584pt;}
.wscc7_c00000{word-spacing:21.164800pt;}
.ws1525_c00000{word-spacing:21.169440pt;}
.ws11eb_c00000{word-spacing:21.175296pt;}
.ws1527_c00000{word-spacing:21.192864pt;}
.ws19fc_c00000{word-spacing:21.222400pt;}
.ws89a_c00000{word-spacing:21.241600pt;}
.ws2dd_c00000{word-spacing:21.248000pt;}
.wsec6_c00000{word-spacing:21.260800pt;}
.wse39_c00000{word-spacing:21.267200pt;}
.ws17cc_c00000{word-spacing:21.273600pt;}
.wse8e_c00000{word-spacing:21.274464pt;}
.ws3b8_c00000{word-spacing:21.280000pt;}
.ws899_c00000{word-spacing:21.286400pt;}
.ws1619_c00000{word-spacing:21.292800pt;}
.ws3b7_c00000{word-spacing:21.299200pt;}
.wscc6_c00000{word-spacing:21.305600pt;}
.ws73f_c00000{word-spacing:21.312000pt;}
.ws13be_c00000{word-spacing:21.318400pt;}
.ws2c6_c00000{word-spacing:21.324800pt;}
.ws14cb_c00000{word-spacing:21.331200pt;}
.ws170e_c00000{word-spacing:21.337600pt;}
.ws1986_c00000{word-spacing:21.344000pt;}
.ws36f_c00000{word-spacing:21.350400pt;}
.wsa0d_c00000{word-spacing:21.356800pt;}
.ws19cd_c00000{word-spacing:21.363200pt;}
.ws8ba_c00000{word-spacing:21.369600pt;}
.ws121c_c00000{word-spacing:21.376000pt;}
.ws1acc_c00000{word-spacing:21.388800pt;}
.ws8b9_c00000{word-spacing:21.395200pt;}
.ws11fe_c00000{word-spacing:21.401600pt;}
.ws2c5_c00000{word-spacing:21.408000pt;}
.ws12a6_c00000{word-spacing:21.414400pt;}
.ws740_c00000{word-spacing:21.420800pt;}
.ws36e_c00000{word-spacing:21.427200pt;}
.wsaf0_c00000{word-spacing:21.433600pt;}
.ws2de_c00000{word-spacing:21.440000pt;}
.ws1916_c00000{word-spacing:21.440128pt;}
.ws3b9_c00000{word-spacing:21.446400pt;}
.ws3b6_c00000{word-spacing:21.452800pt;}
.ws2df_c00000{word-spacing:21.459200pt;}
.wsec5_c00000{word-spacing:21.465600pt;}
.ws120e_c00000{word-spacing:21.473952pt;}
.wsa0e_c00000{word-spacing:21.478400pt;}
.ws1600_c00000{word-spacing:21.479808pt;}
.wse06_c00000{word-spacing:21.484800pt;}
.ws17e6_c00000{word-spacing:21.491520pt;}
.ws1224_c00000{word-spacing:21.497376pt;}
.ws1a14_c00000{word-spacing:21.503232pt;}
.ws11a0_c00000{word-spacing:21.536320pt;}
.ws21b_c00000{word-spacing:21.542400pt;}
.ws18e6_c00000{word-spacing:21.548800pt;}
.ws13b6_c00000{word-spacing:21.555200pt;}
.ws1acd_c00000{word-spacing:21.561600pt;}
.wsbfe_c00000{word-spacing:21.573504pt;}
.ws10b4_c00000{word-spacing:21.580800pt;}
.ws14f0_c00000{word-spacing:21.587200pt;}
.ws180a_c00000{word-spacing:21.593600pt;}
.ws21c_c00000{word-spacing:21.600000pt;}
.wsde8_c00000{word-spacing:21.606400pt;}
.wsad5_c00000{word-spacing:21.612800pt;}
.ws12fb_c00000{word-spacing:21.619200pt;}
.ws93d_c00000{word-spacing:21.625600pt;}
.wsd4d_c00000{word-spacing:21.632000pt;}
.wsddd_c00000{word-spacing:21.638400pt;}
.wsd6e_c00000{word-spacing:21.644800pt;}
.ws78b_c00000{word-spacing:21.651200pt;}
.wsc7a_c00000{word-spacing:21.657600pt;}
.ws1228_c00000{word-spacing:21.664000pt;}
.wsc13_c00000{word-spacing:21.670400pt;}
.wsc7b_c00000{word-spacing:21.676800pt;}
.ws1652_c00000{word-spacing:21.678912pt;}
.wsf25_c00000{word-spacing:21.683200pt;}
.ws21a_c00000{word-spacing:21.689600pt;}
.wsad6_c00000{word-spacing:21.696000pt;}
.ws1660_c00000{word-spacing:21.696480pt;}
.ws12c6_c00000{word-spacing:21.702400pt;}
.ws21d_c00000{word-spacing:21.708800pt;}
.wsd48_c00000{word-spacing:21.715200pt;}
.ws147c_c00000{word-spacing:21.721600pt;}
.ws1227_c00000{word-spacing:21.728000pt;}
.ws730_c00000{word-spacing:21.734400pt;}
.ws78c_c00000{word-spacing:21.740800pt;}
.ws1661_c00000{word-spacing:21.743328pt;}
.ws731_c00000{word-spacing:21.747200pt;}
.ws1770_c00000{word-spacing:21.749184pt;}
.ws1809_c00000{word-spacing:21.753600pt;}
.ws1509_c00000{word-spacing:21.755040pt;}
.wsde7_c00000{word-spacing:21.760000pt;}
.ws1715_c00000{word-spacing:21.766112pt;}
.ws1984_c00000{word-spacing:21.766400pt;}
.ws852_c00000{word-spacing:21.772608pt;}
.ws1104_c00000{word-spacing:21.772800pt;}
.ws667_c00000{word-spacing:21.778464pt;}
.ws914_c00000{word-spacing:21.779200pt;}
.ws851_c00000{word-spacing:21.784320pt;}
.wsdd8_c00000{word-spacing:21.785600pt;}
.wsaeb_c00000{word-spacing:21.790176pt;}
.ws19c9_c00000{word-spacing:21.792000pt;}
.ws1508_c00000{word-spacing:21.796032pt;}
.ws17f3_c00000{word-spacing:21.798400pt;}
.ws666_c00000{word-spacing:21.807744pt;}
.ws17d9_c00000{word-spacing:21.811200pt;}
.ws167c_c00000{word-spacing:21.813600pt;}
.ws176f_c00000{word-spacing:21.819456pt;}
.ws1548_c00000{word-spacing:21.824000pt;}
.ws1514_c00000{word-spacing:21.825312pt;}
.ws1714_c00000{word-spacing:21.835584pt;}
.ws17de_c00000{word-spacing:21.837024pt;}
.ws850_c00000{word-spacing:21.848736pt;}
.ws17da_c00000{word-spacing:21.849600pt;}
.ws1334_c00000{word-spacing:21.915744pt;}
.ws14d1_c00000{word-spacing:21.920000pt;}
.wsfe9_c00000{word-spacing:21.921088pt;}
.ws1616_c00000{word-spacing:21.926400pt;}
.ws149b_c00000{word-spacing:21.932800pt;}
.wsa41_c00000{word-spacing:21.939200pt;}
.ws443_c00000{word-spacing:21.952000pt;}
.wsfb7_c00000{word-spacing:21.953152pt;}
.ws11fd_c00000{word-spacing:21.958400pt;}
.ws444_c00000{word-spacing:21.964800pt;}
.ws181d_c00000{word-spacing:21.971200pt;}
.ws1359_c00000{word-spacing:21.984000pt;}
.ws14d2_c00000{word-spacing:21.990400pt;}
.wsdc1_c00000{word-spacing:21.996800pt;}
.ws5a3_c00000{word-spacing:22.003200pt;}
.ws85c_c00000{word-spacing:22.009600pt;}
.ws1402_c00000{word-spacing:22.028800pt;}
.ws378_c00000{word-spacing:22.035200pt;}
.ws4a7_c00000{word-spacing:22.041600pt;}
.wsebe_c00000{word-spacing:22.048000pt;}
.ws5a2_c00000{word-spacing:22.054400pt;}
.ws13f9_c00000{word-spacing:22.060800pt;}
.ws4a6_c00000{word-spacing:22.067200pt;}
.ws126b_c00000{word-spacing:22.070720pt;}
.wsdc0_c00000{word-spacing:22.073600pt;}
.ws8fc_c00000{word-spacing:22.080000pt;}
.ws379_c00000{word-spacing:22.086400pt;}
.ws700_c00000{word-spacing:22.088832pt;}
.ws8a9_c00000{word-spacing:22.092800pt;}
.ws17bd_c00000{word-spacing:22.099200pt;}
.ws1011_c00000{word-spacing:22.105600pt;}
.wsf9a_c00000{word-spacing:22.106400pt;}
.ws1518_c00000{word-spacing:22.118112pt;}
.ws8aa_c00000{word-spacing:22.118400pt;}
.ws16ec_c00000{word-spacing:22.124800pt;}
.ws18f7_c00000{word-spacing:22.134848pt;}
.ws701_c00000{word-spacing:22.141536pt;}
.ws18eb_c00000{word-spacing:22.144000pt;}
.ws1284_c00000{word-spacing:22.150400pt;}
.ws18f8_c00000{word-spacing:22.150880pt;}
.ws1859_c00000{word-spacing:22.169600pt;}
.wsf8f_c00000{word-spacing:22.182400pt;}
.ws9fb_c00000{word-spacing:22.188800pt;}
.ws18c0_c00000{word-spacing:22.236384pt;}
.ws15e8_c00000{word-spacing:22.240000pt;}
.wseb2_c00000{word-spacing:22.246400pt;}
.wsd37_c00000{word-spacing:22.252800pt;}
.ws1498_c00000{word-spacing:22.259200pt;}
.ws153b_c00000{word-spacing:22.265600pt;}
.ws1810_c00000{word-spacing:22.272000pt;}
.ws1497_c00000{word-spacing:22.278400pt;}
.wsf68_c00000{word-spacing:22.284800pt;}
.ws1983_c00000{word-spacing:22.297600pt;}
.ws9fc_c00000{word-spacing:22.304000pt;}
.ws19c1_c00000{word-spacing:22.310400pt;}
.ws8cc_c00000{word-spacing:22.329600pt;}
.wsc32_c00000{word-spacing:22.336000pt;}
.ws15b2_c00000{word-spacing:22.342400pt;}
.wsead_c00000{word-spacing:22.355200pt;}
.ws1002_c00000{word-spacing:22.361600pt;}
.wsc31_c00000{word-spacing:22.368000pt;}
.ws1012_c00000{word-spacing:22.374400pt;}
.wsfbd_c00000{word-spacing:22.375328pt;}
.ws9bb_c00000{word-spacing:22.380800pt;}
.wsfbb_c00000{word-spacing:22.386016pt;}
.wsd36_c00000{word-spacing:22.387200pt;}
.ws15b5_c00000{word-spacing:22.387488pt;}
.ws8cb_c00000{word-spacing:22.393600pt;}
.ws486_c00000{word-spacing:22.399200pt;}
.ws1535_c00000{word-spacing:22.400000pt;}
.ws642_c00000{word-spacing:22.406400pt;}
.ws1699_c00000{word-spacing:22.407392pt;}
.ws1965_c00000{word-spacing:22.416768pt;}
.ws643_c00000{word-spacing:22.419200pt;}
.wsda6_c00000{word-spacing:22.422624pt;}
.ws1ac8_c00000{word-spacing:22.428480pt;}
.wsc1b_c00000{word-spacing:22.434336pt;}
.ws166c_c00000{word-spacing:22.440192pt;}
.ws485_c00000{word-spacing:22.446048pt;}
.ws44_c00000{word-spacing:22.451200pt;}
.ws423_c00000{word-spacing:22.451904pt;}
.ws424_c00000{word-spacing:22.457760pt;}
.ws1784_c00000{word-spacing:22.460832pt;}
.wsc0f_c00000{word-spacing:22.463616pt;}
.wsd15_c00000{word-spacing:22.464000pt;}
.ws15b6_c00000{word-spacing:22.469472pt;}
.ws1260_c00000{word-spacing:22.476864pt;}
.ws11d7_c00000{word-spacing:22.481184pt;}
.ws120a_c00000{word-spacing:22.487040pt;}
.ws70c_c00000{word-spacing:22.492896pt;}
.wsc33_c00000{word-spacing:22.496000pt;}
.ws1785_c00000{word-spacing:22.498240pt;}
.ws1a27_c00000{word-spacing:22.502400pt;}
.wsda2_c00000{word-spacing:22.504608pt;}
.ws1585_c00000{word-spacing:22.508800pt;}
.ws1a29_c00000{word-spacing:22.515200pt;}
.wsf43_c00000{word-spacing:22.521600pt;}
.ws8f6_c00000{word-spacing:22.540800pt;}
.ws15e9_c00000{word-spacing:22.547200pt;}
.ws182d_c00000{word-spacing:22.553600pt;}
.ws136f_c00000{word-spacing:22.556800pt;}
.ws8f5_c00000{word-spacing:22.560000pt;}
.ws198c_c00000{word-spacing:22.566400pt;}
.wsd14_c00000{word-spacing:22.572800pt;}
.ws1584_c00000{word-spacing:22.579200pt;}
.ws11e0_c00000{word-spacing:22.592000pt;}
.wsf0e_c00000{word-spacing:22.598400pt;}
.ws12bd_c00000{word-spacing:22.604800pt;}
.ws43_c00000{word-spacing:22.611200pt;}
.wsc06_c00000{word-spacing:22.624000pt;}
.ws16b8_c00000{word-spacing:22.630400pt;}
.ws229_c00000{word-spacing:22.636800pt;}
.wsf0f_c00000{word-spacing:22.649600pt;}
.ws15b1_c00000{word-spacing:22.662400pt;}
.wsa87_c00000{word-spacing:22.668800pt;}
.wsc05_c00000{word-spacing:22.681600pt;}
.ws1a47_c00000{word-spacing:22.688000pt;}
.wse58_c00000{word-spacing:22.694400pt;}
.ws80_c00000{word-spacing:22.700800pt;}
.wsc55_c00000{word-spacing:22.707200pt;}
.ws18ed_c00000{word-spacing:22.712000pt;}
.ws9cb_c00000{word-spacing:22.713600pt;}
.wsdbd_c00000{word-spacing:22.715424pt;}
.ws22a_c00000{word-spacing:22.720000pt;}
.ws176d_c00000{word-spacing:22.721280pt;}
.ws45_c00000{word-spacing:22.726400pt;}
.ws16b9_c00000{word-spacing:22.732800pt;}
.ws1220_c00000{word-spacing:22.732992pt;}
.ws18fc_c00000{word-spacing:22.738720pt;}
.ws17e1_c00000{word-spacing:22.738848pt;}
.wsf34_c00000{word-spacing:22.739200pt;}
.wsdbe_c00000{word-spacing:22.744704pt;}
.ws1a48_c00000{word-spacing:22.745600pt;}
.ws1221_c00000{word-spacing:22.750560pt;}
.ws15d8_c00000{word-spacing:22.756416pt;}
.ws74a_c00000{word-spacing:22.762272pt;}
.ws18db_c00000{word-spacing:22.771200pt;}
.ws18e1_c00000{word-spacing:22.777600pt;}
.ws1708_c00000{word-spacing:22.790400pt;}
.wse92_c00000{word-spacing:22.796800pt;}
.wsdba_c00000{word-spacing:22.809120pt;}
.ws1812_c00000{word-spacing:22.816000pt;}
.ws154c_c00000{word-spacing:22.828800pt;}
.ws135a_c00000{word-spacing:22.841600pt;}
.ws535_c00000{word-spacing:22.854400pt;}
.ws19be_c00000{word-spacing:22.860800pt;}
.ws154b_c00000{word-spacing:22.867200pt;}
.ws18da_c00000{word-spacing:22.880000pt;}
.ws1633_c00000{word-spacing:22.886400pt;}
.wsc19_c00000{word-spacing:22.912000pt;}
.ws1707_c00000{word-spacing:22.918400pt;}
.ws1634_c00000{word-spacing:22.924800pt;}
.ws679_c00000{word-spacing:22.931200pt;}
.ws1706_c00000{word-spacing:22.937600pt;}
.ws12f0_c00000{word-spacing:22.950400pt;}
.ws534_c00000{word-spacing:22.963200pt;}
.ws183e_c00000{word-spacing:22.969600pt;}
.ws199b_c00000{word-spacing:22.976000pt;}
.ws9a2_c00000{word-spacing:22.982400pt;}
.ws1813_c00000{word-spacing:22.988800pt;}
.wsb6c_c00000{word-spacing:22.995200pt;}
.wsb7c_c00000{word-spacing:23.001600pt;}
.ws2d6_c00000{word-spacing:23.008000pt;}
.ws2d7_c00000{word-spacing:23.014400pt;}
.ws538_c00000{word-spacing:23.020800pt;}
.wsa27_c00000{word-spacing:23.027200pt;}
.ws16f3_c00000{word-spacing:23.031648pt;}
.ws1248_c00000{word-spacing:23.032640pt;}
.ws161a_c00000{word-spacing:23.033600pt;}
.ws539_c00000{word-spacing:23.040000pt;}
.wse50_c00000{word-spacing:23.046400pt;}
.wsdab_c00000{word-spacing:23.049216pt;}
.ws1472_c00000{word-spacing:23.052800pt;}
.ws1769_c00000{word-spacing:23.055072pt;}
.ws67a_c00000{word-spacing:23.059200pt;}
.ws170c_c00000{word-spacing:23.060928pt;}
.wse0c_c00000{word-spacing:23.065600pt;}
.ws167f_c00000{word-spacing:23.066784pt;}
.ws1a5b_c00000{word-spacing:23.072000pt;}
.ws1638_c00000{word-spacing:23.072640pt;}
.ws1212_c00000{word-spacing:23.078496pt;}
.wse99_c00000{word-spacing:23.084352pt;}
.wsd5c_c00000{word-spacing:23.084800pt;}
.ws4c4_c00000{word-spacing:23.090208pt;}
.ws180e_c00000{word-spacing:23.091200pt;}
.ws1aeb_c00000{word-spacing:23.102112pt;}
.wse9a_c00000{word-spacing:23.107776pt;}
.ws1327_c00000{word-spacing:23.112800pt;}
.ws1680_c00000{word-spacing:23.113632pt;}
.wsad8_c00000{word-spacing:23.116800pt;}
.ws18ea_c00000{word-spacing:23.123200pt;}
.wsf61_c00000{word-spacing:23.148800pt;}
.wsf35_c00000{word-spacing:23.187200pt;}
.wse1_c00000{word-spacing:23.193600pt;}
.wscda_c00000{word-spacing:23.206400pt;}
.wsc6a_c00000{word-spacing:23.212800pt;}
.wsbd2_c00000{word-spacing:23.225600pt;}
.wsf5_c00000{word-spacing:23.232000pt;}
.ws144b_c00000{word-spacing:23.238400pt;}
.wsdfd_c00000{word-spacing:23.244800pt;}
.wsf4_c00000{word-spacing:23.251200pt;}
.ws144a_c00000{word-spacing:23.257600pt;}
.wsc65_c00000{word-spacing:23.276800pt;}
.wsdf_c00000{word-spacing:23.283200pt;}
.wsdfc_c00000{word-spacing:23.289600pt;}
.ws1432_c00000{word-spacing:23.296000pt;}
.wsbd1_c00000{word-spacing:23.302400pt;}
.wsc69_c00000{word-spacing:23.308800pt;}
.ws783_c00000{word-spacing:23.315200pt;}
.ws1483_c00000{word-spacing:23.321600pt;}
.wse9_c00000{word-spacing:23.328000pt;}
.ws9dc_c00000{word-spacing:23.334400pt;}
.ws1962_c00000{word-spacing:23.337248pt;}
.ws645_c00000{word-spacing:23.340800pt;}
.ws9dd_c00000{word-spacing:23.347200pt;}
.ws646_c00000{word-spacing:23.353600pt;}
.wscaa_c00000{word-spacing:23.360000pt;}
.ws15fe_c00000{word-spacing:23.365440pt;}
.ws856_c00000{word-spacing:23.366400pt;}
.wse1f_c00000{word-spacing:23.371296pt;}
.ws784_c00000{word-spacing:23.372800pt;}
.ws15fd_c00000{word-spacing:23.377152pt;}
.wse0_c00000{word-spacing:23.379200pt;}
.ws1254_c00000{word-spacing:23.380000pt;}
.ws74b_c00000{word-spacing:23.388864pt;}
.ws18e9_c00000{word-spacing:23.392000pt;}
.wsf36_c00000{word-spacing:23.398400pt;}
.ws17e3_c00000{word-spacing:23.400576pt;}
.ws14f5_c00000{word-spacing:23.404800pt;}
.ws74c_c00000{word-spacing:23.406432pt;}
.ws17f9_c00000{word-spacing:23.411200pt;}
.ws16e1_c00000{word-spacing:23.412288pt;}
.ws191c_c00000{word-spacing:23.417408pt;}
.ws163d_c00000{word-spacing:23.417600pt;}
.wse20_c00000{word-spacing:23.418144pt;}
.ws812_c00000{word-spacing:23.424000pt;}
.ws191d_c00000{word-spacing:23.438784pt;}
.wsca9_c00000{word-spacing:23.481600pt;}
.ws18f3_c00000{word-spacing:23.492224pt;}
.ws811_c00000{word-spacing:23.520000pt;}
.ws12e9_c00000{word-spacing:23.526400pt;}
.wsce8_c00000{word-spacing:23.539200pt;}
.ws1826_c00000{word-spacing:23.571200pt;}
.ws4b7_c00000{word-spacing:23.577600pt;}
.wsb10_c00000{word-spacing:23.584000pt;}
.ws947_c00000{word-spacing:23.590400pt;}
.wsd05_c00000{word-spacing:23.603200pt;}
.ws895_c00000{word-spacing:23.609600pt;}
.wsb11_c00000{word-spacing:23.616000pt;}
.ws1675_c00000{word-spacing:23.635200pt;}
.ws14dc_c00000{word-spacing:23.641600pt;}
.ws270_c00000{word-spacing:23.648000pt;}
.ws7ec_c00000{word-spacing:23.652384pt;}
.ws14ef_c00000{word-spacing:23.654400pt;}
.wse36_c00000{word-spacing:23.660800pt;}
.wscdc_c00000{word-spacing:23.667200pt;}
.ws893_c00000{word-spacing:23.673600pt;}
.ws26f_c00000{word-spacing:23.680000pt;}
.ws18bb_c00000{word-spacing:23.684608pt;}
.ws4b8_c00000{word-spacing:23.686400pt;}
.wsce9_c00000{word-spacing:23.692800pt;}
.ws7eb_c00000{word-spacing:23.693376pt;}
.ws7ea_c00000{word-spacing:23.705088pt;}
.ws1598_c00000{word-spacing:23.705600pt;}
.ws7f5_c00000{word-spacing:23.710944pt;}
.ws1230_c00000{word-spacing:23.716800pt;}
.ws4b9_c00000{word-spacing:23.718400pt;}
.ws1801_c00000{word-spacing:23.722656pt;}
.ws14a8_c00000{word-spacing:23.724800pt;}
.ws454_c00000{word-spacing:23.734368pt;}
.ws174c_c00000{word-spacing:23.738048pt;}
.ws194c_c00000{word-spacing:23.740224pt;}
.ws1733_c00000{word-spacing:23.748736pt;}
.ws894_c00000{word-spacing:23.750400pt;}
.ws1279_c00000{word-spacing:23.764768pt;}
.ws1477_c00000{word-spacing:23.801600pt;}
.wsc67_c00000{word-spacing:23.814400pt;}
.ws1732_c00000{word-spacing:23.818208pt;}
.ws148d_c00000{word-spacing:23.820800pt;}
.ws116a_c00000{word-spacing:23.827200pt;}
.wsb6a_c00000{word-spacing:23.833600pt;}
.ws884_c00000{word-spacing:23.859200pt;}
.ws1abd_c00000{word-spacing:23.865600pt;}
.ws5e6_c00000{word-spacing:23.878400pt;}
.ws7c5_c00000{word-spacing:23.884800pt;}
.wsa9c_c00000{word-spacing:23.891200pt;}
.ws12ad_c00000{word-spacing:23.897600pt;}
.ws5e5_c00000{word-spacing:23.904000pt;}
.ws1404_c00000{word-spacing:23.910400pt;}
.ws13a0_c00000{word-spacing:23.916800pt;}
.ws98f_c00000{word-spacing:23.923200pt;}
.ws148c_c00000{word-spacing:23.936000pt;}
.ws11b8_c00000{word-spacing:23.948800pt;}
.ws883_c00000{word-spacing:23.955200pt;}
.wsdcd_c00000{word-spacing:23.961600pt;}
.wsf98_c00000{word-spacing:23.968000pt;}
.ws1420_c00000{word-spacing:23.973184pt;}
.ws5fc_c00000{word-spacing:23.974400pt;}
.ws142f_c00000{word-spacing:23.980800pt;}
.ws1427_c00000{word-spacing:23.987200pt;}
.ws7c4_c00000{word-spacing:23.993600pt;}
.ws6e8_c00000{word-spacing:23.997888pt;}
.ws5fd_c00000{word-spacing:24.000000pt;}
.wsd56_c00000{word-spacing:24.006400pt;}
.wsb86_c00000{word-spacing:24.019200pt;}
.ws1759_c00000{word-spacing:24.025600pt;}
.ws1520_c00000{word-spacing:24.038880pt;}
.ws14d7_c00000{word-spacing:24.044800pt;}
.ws6e9_c00000{word-spacing:24.062304pt;}
.wsa9d_c00000{word-spacing:24.064000pt;}
.ws1347_c00000{word-spacing:24.070400pt;}
.wsfdd_c00000{word-spacing:24.085408pt;}
.wsd5a_c00000{word-spacing:24.096000pt;}
.wse22_c00000{word-spacing:24.121600pt;}
.ws1186_c00000{word-spacing:24.149536pt;}
.ws17e8_c00000{word-spacing:24.153600pt;}
.ws99f_c00000{word-spacing:24.172800pt;}
.ws1930_c00000{word-spacing:24.185600pt;}
.ws17e9_c00000{word-spacing:24.198400pt;}
.ws11cf_c00000{word-spacing:24.204800pt;}
.ws967_c00000{word-spacing:24.211200pt;}
.ws1185_c00000{word-spacing:24.213664pt;}
.ws2d1_c00000{word-spacing:24.217600pt;}
.ws94b_c00000{word-spacing:24.224000pt;}
.ws966_c00000{word-spacing:24.230400pt;}
.ws2a2_c00000{word-spacing:24.236800pt;}
.ws15ea_c00000{word-spacing:24.243200pt;}
.ws13ff_c00000{word-spacing:24.249600pt;}
.ws1820_c00000{word-spacing:24.256000pt;}
.wse23_c00000{word-spacing:24.262400pt;}
.wse0b_c00000{word-spacing:24.268800pt;}
.ws7e7_c00000{word-spacing:24.275200pt;}
.ws2a3_c00000{word-spacing:24.281600pt;}
.ws2d2_c00000{word-spacing:24.288000pt;}
.ws161f_c00000{word-spacing:24.294400pt;}
.ws1843_c00000{word-spacing:24.300800pt;}
.ws94c_c00000{word-spacing:24.307200pt;}
.ws99e_c00000{word-spacing:24.313600pt;}
.wsa7b_c00000{word-spacing:24.320000pt;}
.wsc12_c00000{word-spacing:24.325824pt;}
.ws101b_c00000{word-spacing:24.326400pt;}
.ws12c4_c00000{word-spacing:24.332800pt;}
.ws142b_c00000{word-spacing:24.339200pt;}
.ws1511_c00000{word-spacing:24.343392pt;}
.ws1421_c00000{word-spacing:24.347264pt;}
.ws15eb_c00000{word-spacing:24.352000pt;}
.wsd5b_c00000{word-spacing:24.358400pt;}
.ws1512_c00000{word-spacing:24.360960pt;}
.ws453_c00000{word-spacing:24.366816pt;}
.ws452_c00000{word-spacing:24.372672pt;}
.ws1a2f_c00000{word-spacing:24.377600pt;}
.wsc11_c00000{word-spacing:24.378528pt;}
.ws11ea_c00000{word-spacing:24.396096pt;}
.ws141a_c00000{word-spacing:24.409600pt;}
.ws187a_c00000{word-spacing:24.416000pt;}
.wse14_c00000{word-spacing:24.428800pt;}
.ws14ca_c00000{word-spacing:24.441600pt;}
.ws185e_c00000{word-spacing:24.473600pt;}
.wse5c_c00000{word-spacing:24.512000pt;}
.ws13ea_c00000{word-spacing:24.518400pt;}
.ws1394_c00000{word-spacing:24.527328pt;}
.wse15_c00000{word-spacing:24.531200pt;}
.wsa16_c00000{word-spacing:24.537600pt;}
.wsa78_c00000{word-spacing:24.544000pt;}
.wsa15_c00000{word-spacing:24.550400pt;}
.wse12_c00000{word-spacing:24.556800pt;}
.ws9b6_c00000{word-spacing:24.563200pt;}
.wsa79_c00000{word-spacing:24.569600pt;}
.ws18b6_c00000{word-spacing:24.576000pt;}
.wse98_c00000{word-spacing:24.582400pt;}
.ws141b_c00000{word-spacing:24.588800pt;}
.ws1a4c_c00000{word-spacing:24.595200pt;}
.wsd10_c00000{word-spacing:24.601600pt;}
.ws1837_c00000{word-spacing:24.608000pt;}
.ws9b4_c00000{word-spacing:24.614400pt;}
.wse5b_c00000{word-spacing:24.620800pt;}
.ws19dc_c00000{word-spacing:24.627200pt;}
.ws187d_c00000{word-spacing:24.630496pt;}
.wse13_c00000{word-spacing:24.633600pt;}
.wseea_c00000{word-spacing:24.640000pt;}
.ws1672_c00000{word-spacing:24.642048pt;}
.ws14c9_c00000{word-spacing:24.646400pt;}
.wsf41_c00000{word-spacing:24.647904pt;}
.ws18f9_c00000{word-spacing:24.651872pt;}
.ws9b5_c00000{word-spacing:24.652800pt;}
.wsf42_c00000{word-spacing:24.653760pt;}
.wsbb4_c00000{word-spacing:24.665472pt;}
.wse97_c00000{word-spacing:24.665600pt;}
.ws59b_c00000{word-spacing:24.671328pt;}
.wsbb3_c00000{word-spacing:24.677184pt;}
.ws13e9_c00000{word-spacing:24.678400pt;}
.ws1974_c00000{word-spacing:24.683936pt;}
.ws134f_c00000{word-spacing:24.688896pt;}
.ws1973_c00000{word-spacing:24.689280pt;}
.ws19d2_c00000{word-spacing:24.691200pt;}
.ws59a_c00000{word-spacing:24.712320pt;}
.ws18b5_c00000{word-spacing:24.716800pt;}
.ws13c4_c00000{word-spacing:24.723200pt;}
.ws1275_c00000{word-spacing:24.732032pt;}
.ws14f3_c00000{word-spacing:24.736000pt;}
.ws13d5_c00000{word-spacing:24.748800pt;}
.ws142d_c00000{word-spacing:24.755200pt;}
.ws1a43_c00000{word-spacing:24.825600pt;}
.ws12b2_c00000{word-spacing:24.832000pt;}
.ws16d0_c00000{word-spacing:24.838400pt;}
.ws11ba_c00000{word-spacing:24.844800pt;}
.wsfcb_c00000{word-spacing:24.849600pt;}
.ws16d1_c00000{word-spacing:24.864000pt;}
.ws13c3_c00000{word-spacing:24.883200pt;}
.ws11bb_c00000{word-spacing:24.889600pt;}
.ws1abe_c00000{word-spacing:24.896000pt;}
.ws13d4_c00000{word-spacing:24.902400pt;}
.ws197f_c00000{word-spacing:24.908800pt;}
.wsa95_c00000{word-spacing:24.921600pt;}
.ws12b4_c00000{word-spacing:24.934400pt;}
.wsa28_c00000{word-spacing:24.940800pt;}
.ws12b3_c00000{word-spacing:24.947200pt;}
.wsd57_c00000{word-spacing:24.953600pt;}
.wsa29_c00000{word-spacing:24.960000pt;}
.ws1219_c00000{word-spacing:24.964128pt;}
.wsd58_c00000{word-spacing:24.966400pt;}
.ws1697_c00000{word-spacing:24.967168pt;}
.ws15c6_c00000{word-spacing:24.972800pt;}
.ws6e5_c00000{word-spacing:24.975840pt;}
.ws6e4_c00000{word-spacing:24.981696pt;}
.ws19d1_c00000{word-spacing:24.985600pt;}
.wsfb6_c00000{word-spacing:24.993888pt;}
.ws1a08_c00000{word-spacing:24.998400pt;}
.ws7b6_c00000{word-spacing:24.999264pt;}
.ws19b2_c00000{word-spacing:25.005120pt;}
.wsc1e_c00000{word-spacing:25.010976pt;}
.ws1194_c00000{word-spacing:25.015264pt;}
.ws1a09_c00000{word-spacing:25.017600pt;}
.ws148f_c00000{word-spacing:25.034400pt;}
.ws1318_c00000{word-spacing:25.036640pt;}
.ws1868_c00000{word-spacing:25.049600pt;}
.wsf16_c00000{word-spacing:25.068800pt;}
.ws18dc_c00000{word-spacing:25.088000pt;}
.ws100d_c00000{word-spacing:25.107200pt;}
.ws1869_c00000{word-spacing:25.113600pt;}
.ws2fb_c00000{word-spacing:25.120000pt;}
.ws1a52_c00000{word-spacing:25.132800pt;}
.ws1a53_c00000{word-spacing:25.139200pt;}
.ws4fe_c00000{word-spacing:25.145600pt;}
.ws5df_c00000{word-spacing:25.152000pt;}
.wsd09_c00000{word-spacing:25.158400pt;}
.ws5a8_c00000{word-spacing:25.171200pt;}
.wsd07_c00000{word-spacing:25.177600pt;}
.ws93c_c00000{word-spacing:25.184000pt;}
.wse5f_c00000{word-spacing:25.196800pt;}
.wsa2d_c00000{word-spacing:25.203200pt;}
.ws5e0_c00000{word-spacing:25.216000pt;}
.ws500_c00000{word-spacing:25.222400pt;}
.ws5a9_c00000{word-spacing:25.228800pt;}
.wsd08_c00000{word-spacing:25.235200pt;}
.wse5e_c00000{word-spacing:25.241600pt;}
.ws13c1_c00000{word-spacing:25.248000pt;}
.ws15e1_c00000{word-spacing:25.254400pt;}
.ws707_c00000{word-spacing:25.256928pt;}
.wsf53_c00000{word-spacing:25.260800pt;}
.ws13d3_c00000{word-spacing:25.267200pt;}
.ws4ff_c00000{word-spacing:25.273600pt;}
.wsc47_c00000{word-spacing:25.280000pt;}
.ws708_c00000{word-spacing:25.286208pt;}
.wsc3a_c00000{word-spacing:25.286400pt;}
.wse17_c00000{word-spacing:25.303776pt;}
.ws17fb_c00000{word-spacing:25.309632pt;}
.ws1abc_c00000{word-spacing:25.324800pt;}
.wse16_c00000{word-spacing:25.333056pt;}
.ws633_c00000{word-spacing:25.337600pt;}
.ws18e5_c00000{word-spacing:25.344000pt;}
.ws18e4_c00000{word-spacing:25.363200pt;}
.ws1180_c00000{word-spacing:25.367968pt;}
.ws1181_c00000{word-spacing:25.384000pt;}
.ws1469_c00000{word-spacing:25.395200pt;}
.ws146a_c00000{word-spacing:25.420800pt;}
.ws70_c00000{word-spacing:25.433600pt;}
.ws267_c00000{word-spacing:25.459200pt;}
.ws1a56_c00000{word-spacing:25.472000pt;}
.ws16ca_c00000{word-spacing:25.484800pt;}
.ws632_c00000{word-spacing:25.491200pt;}
.wsd9a_c00000{word-spacing:25.504000pt;}
.wse5d_c00000{word-spacing:25.516800pt;}
.ws8f4_c00000{word-spacing:25.523200pt;}
.ws12aa_c00000{word-spacing:25.529600pt;}
.ws150d_c00000{word-spacing:25.536000pt;}
.ws19fd_c00000{word-spacing:25.542400pt;}
.ws12eb_c00000{word-spacing:25.548800pt;}
.ws16e7_c00000{word-spacing:25.555200pt;}
.ws8f3_c00000{word-spacing:25.561600pt;}
.ws6f_c00000{word-spacing:25.568000pt;}
.ws634_c00000{word-spacing:25.574400pt;}
.wsad1_c00000{word-spacing:25.580800pt;}
.ws1894_c00000{word-spacing:25.581728pt;}
.ws137f_c00000{word-spacing:25.587200pt;}
.wsc2c_c00000{word-spacing:25.593600pt;}
.ws1a2e_c00000{word-spacing:25.600000pt;}
.ws1ae6_c00000{word-spacing:25.603104pt;}
.wsae4_c00000{word-spacing:25.606400pt;}
.ws100e_c00000{word-spacing:25.612800pt;}
.ws1381_c00000{word-spacing:25.619200pt;}
.wsae5_c00000{word-spacing:25.625600pt;}
.wsd99_c00000{word-spacing:25.632000pt;}
.wsff3_c00000{word-spacing:25.637568pt;}
.ws269_c00000{word-spacing:25.644800pt;}
.wsff2_c00000{word-spacing:25.655136pt;}
.ws1210_c00000{word-spacing:25.666848pt;}
.ws268_c00000{word-spacing:25.670400pt;}
.ws17db_c00000{word-spacing:25.689600pt;}
.ws1487_c00000{word-spacing:25.696000pt;}
.ws107e_c00000{word-spacing:25.718400pt;}
.ws13a4_c00000{word-spacing:25.721600pt;}
.ws162e_c00000{word-spacing:25.728000pt;}
.ws15ae_c00000{word-spacing:25.740800pt;}
.ws19da_c00000{word-spacing:25.747200pt;}
.wse8d_c00000{word-spacing:25.752736pt;}
.wscb0_c00000{word-spacing:25.766400pt;}
.ws11ff_c00000{word-spacing:25.779200pt;}
.ws1283_c00000{word-spacing:25.779456pt;}
.ws14cd_c00000{word-spacing:25.792000pt;}
.ws13a5_c00000{word-spacing:25.817600pt;}
.ws12ac_c00000{word-spacing:25.824000pt;}
.wsf8c_c00000{word-spacing:25.830400pt;}
.wscaf_c00000{word-spacing:25.836800pt;}
.wsa75_c00000{word-spacing:25.856000pt;}
.wsd90_c00000{word-spacing:25.868800pt;}
.wscb1_c00000{word-spacing:25.875200pt;}
.wsd8f_c00000{word-spacing:25.881600pt;}
.wsb96_c00000{word-spacing:25.888000pt;}
.wscc9_c00000{word-spacing:25.894400pt;}
.ws12ab_c00000{word-spacing:25.900800pt;}
.wse93_c00000{word-spacing:25.907200pt;}
.ws273_c00000{word-spacing:25.920000pt;}
.ws12ba_c00000{word-spacing:25.926400pt;}
.ws175f_c00000{word-spacing:25.930368pt;}
.ws1664_c00000{word-spacing:25.936224pt;}
.ws175e_c00000{word-spacing:25.942080pt;}
.wsdbb_c00000{word-spacing:25.959648pt;}
.wsbe8_c00000{word-spacing:25.964800pt;}
.wse02_c00000{word-spacing:25.965504pt;}
.ws10dc_c00000{word-spacing:25.966496pt;}
.ws1663_c00000{word-spacing:25.977216pt;}
.wsdbc_c00000{word-spacing:25.994784pt;}
.ws17bc_c00000{word-spacing:25.996800pt;}
.wse7e_c00000{word-spacing:26.006496pt;}
.ws576_c00000{word-spacing:26.009600pt;}
.wsa76_c00000{word-spacing:26.016000pt;}
.ws17c5_c00000{word-spacing:26.028800pt;}
.ws1168_c00000{word-spacing:26.049600pt;}
.ws574_c00000{word-spacing:26.054400pt;}
.wsb88_c00000{word-spacing:26.060800pt;}
.ws197d_c00000{word-spacing:26.067200pt;}
.ws1239_c00000{word-spacing:26.068032pt;}
.wsb87_c00000{word-spacing:26.073600pt;}
.ws17c4_c00000{word-spacing:26.099200pt;}
.ws10b2_c00000{word-spacing:26.110784pt;}
.ws271_c00000{word-spacing:26.112000pt;}
.wsf51_c00000{word-spacing:26.124800pt;}
.ws13e1_c00000{word-spacing:26.131200pt;}
.ws19de_c00000{word-spacing:26.137600pt;}
.wsb4b_c00000{word-spacing:26.144000pt;}
.ws1a3c_c00000{word-spacing:26.150400pt;}
.ws13e2_c00000{word-spacing:26.163200pt;}
.wsf52_c00000{word-spacing:26.176000pt;}
.ws3c5_c00000{word-spacing:26.195200pt;}
.ws389_c00000{word-spacing:26.201600pt;}
.ws391_c00000{word-spacing:26.208000pt;}
.ws995_c00000{word-spacing:26.214400pt;}
.ws38a_c00000{word-spacing:26.227200pt;}
.ws154a_c00000{word-spacing:26.233600pt;}
.ws272_c00000{word-spacing:26.240000pt;}
.ws11ed_c00000{word-spacing:26.240736pt;}
.ws575_c00000{word-spacing:26.246400pt;}
.ws663_c00000{word-spacing:26.252448pt;}
.wsd34_c00000{word-spacing:26.259200pt;}
.wsb95_c00000{word-spacing:26.265600pt;}
.ws971_c00000{word-spacing:26.270016pt;}
.ws153c_c00000{word-spacing:26.272000pt;}
.ws16d7_c00000{word-spacing:26.275872pt;}
.ws11ec_c00000{word-spacing:26.281728pt;}
.ws51b_c00000{word-spacing:26.287584pt;}
.wse03_c00000{word-spacing:26.299296pt;}
.ws51a_c00000{word-spacing:26.305152pt;}
.ws184a_c00000{word-spacing:26.311008pt;}
.wsdd3_c00000{word-spacing:26.316800pt;}
.ws14a6_c00000{word-spacing:26.316864pt;}
.ws14a5_c00000{word-spacing:26.328576pt;}
.ws139f_c00000{word-spacing:26.342400pt;}
.ws2f1_c00000{word-spacing:26.361600pt;}
.ws1169_c00000{word-spacing:26.376000pt;}
.wsbc8_c00000{word-spacing:26.380800pt;}
.ws1931_c00000{word-spacing:26.387200pt;}
.ws3a9_c00000{word-spacing:26.393600pt;}
.wsbc9_c00000{word-spacing:26.406400pt;}
.ws19c3_c00000{word-spacing:26.412800pt;}
.ws19c2_c00000{word-spacing:26.419200pt;}
.ws1834_c00000{word-spacing:26.425600pt;}
.ws1830_c00000{word-spacing:26.432000pt;}
.ws2f2_c00000{word-spacing:26.444800pt;}
.ws19f6_c00000{word-spacing:26.451200pt;}
.ws948_c00000{word-spacing:26.464000pt;}
.ws3cf_c00000{word-spacing:26.476800pt;}
.wsdd5_c00000{word-spacing:26.483200pt;}
.wsb79_c00000{word-spacing:26.489600pt;}
.wsa6d_c00000{word-spacing:26.496000pt;}
.wsed8_c00000{word-spacing:26.502400pt;}
.ws911_c00000{word-spacing:26.508800pt;}
.wsf13_c00000{word-spacing:26.515200pt;}
.ws1c4_c00000{word-spacing:26.521600pt;}
.ws2d8_c00000{word-spacing:26.528000pt;}
.wsfeb_c00000{word-spacing:26.532960pt;}
.wse55_c00000{word-spacing:26.534400pt;}
.ws9de_c00000{word-spacing:26.540800pt;}
.ws14fd_c00000{word-spacing:26.547200pt;}
.ws1286_c00000{word-spacing:26.553600pt;}
.ws11c8_c00000{word-spacing:26.556960pt;}
.ws9df_c00000{word-spacing:26.560000pt;}
.wsf5e_c00000{word-spacing:26.566400pt;}
.ws1068_c00000{word-spacing:26.570368pt;}
.wsdaa_c00000{word-spacing:26.574528pt;}
.wsf12_c00000{word-spacing:26.579200pt;}
.ws1589_c00000{word-spacing:26.580384pt;}
.wsfca_c00000{word-spacing:26.581056pt;}
.ws19a9_c00000{word-spacing:26.586240pt;}
.wsdd4_c00000{word-spacing:26.592000pt;}
.ws11c7_c00000{word-spacing:26.597952pt;}
.wsfef_c00000{word-spacing:26.603808pt;}
.ws15f8_c00000{word-spacing:26.621376pt;}
.wsda9_c00000{word-spacing:26.633088pt;}
.wsb78_c00000{word-spacing:26.636800pt;}
.ws1285_c00000{word-spacing:26.643200pt;}
.ws1a5a_c00000{word-spacing:26.681600pt;}
.wsd5e_c00000{word-spacing:26.700800pt;}
.wsd73_c00000{word-spacing:26.739200pt;}
.ws13ab_c00000{word-spacing:26.752000pt;}
.ws1410_c00000{word-spacing:26.752064pt;}
.wsd72_c00000{word-spacing:26.758400pt;}
.ws34c_c00000{word-spacing:26.790400pt;}
.ws1531_c00000{word-spacing:26.796800pt;}
.ws14ff_c00000{word-spacing:26.828800pt;}
.wsec7_c00000{word-spacing:26.841600pt;}
.wsaa8_c00000{word-spacing:26.854400pt;}
.ws34b_c00000{word-spacing:26.860800pt;}
.ws1460_c00000{word-spacing:26.867200pt;}
.ws877_c00000{word-spacing:26.873600pt;}
.ws1a40_c00000{word-spacing:26.880000pt;}
.ws17ff_c00000{word-spacing:26.884896pt;}
.ws876_c00000{word-spacing:26.886400pt;}
.ws17fe_c00000{word-spacing:26.896608pt;}
.ws198e_c00000{word-spacing:26.902464pt;}
.ws13ac_c00000{word-spacing:26.918400pt;}
.ws1588_c00000{word-spacing:26.943456pt;}
.ws1958_c00000{word-spacing:26.960480pt;}
.ws11a7_c00000{word-spacing:26.971168pt;}
.ws1999_c00000{word-spacing:26.995200pt;}
.ws1998_c00000{word-spacing:27.008000pt;}
.ws10eb_c00000{word-spacing:27.033600pt;}
.ws10ea_c00000{word-spacing:27.038400pt;}
.wsd49_c00000{word-spacing:27.046400pt;}
.ws199a_c00000{word-spacing:27.052800pt;}
.ws181b_c00000{word-spacing:27.072000pt;}
.wsb5b_c00000{word-spacing:27.091200pt;}
.ws1821_c00000{word-spacing:27.097600pt;}
.ws1a37_c00000{word-spacing:27.104000pt;}
.ws944_c00000{word-spacing:27.110400pt;}
.ws674_c00000{word-spacing:27.116800pt;}
.ws943_c00000{word-spacing:27.123200pt;}
.ws1a55_c00000{word-spacing:27.136000pt;}
.ws1644_c00000{word-spacing:27.142400pt;}
.wsf55_c00000{word-spacing:27.148800pt;}
.wsaa4_c00000{word-spacing:27.155200pt;}
.ws326_c00000{word-spacing:27.168000pt;}
.wsb5c_c00000{word-spacing:27.174400pt;}
.ws12d4_c00000{word-spacing:27.180800pt;}
.ws1643_c00000{word-spacing:27.187200pt;}
.ws327_c00000{word-spacing:27.193600pt;}
.ws181f_c00000{word-spacing:27.200000pt;}
.wsf47_c00000{word-spacing:27.212800pt;}
.ws1705_c00000{word-spacing:27.212832pt;}
.ws675_c00000{word-spacing:27.219200pt;}
.ws16ae_c00000{word-spacing:27.230400pt;}
.ws16ad_c00000{word-spacing:27.242112pt;}
.ws1815_c00000{word-spacing:27.257600pt;}
.ws1422_c00000{word-spacing:27.275776pt;}
.ws1814_c00000{word-spacing:27.276800pt;}
.wsf71_c00000{word-spacing:27.283200pt;}
.ws1262_c00000{word-spacing:27.302496pt;}
.wsb84_c00000{word-spacing:27.315200pt;}
.ws1a11_c00000{word-spacing:27.321600pt;}
.ws10fe_c00000{word-spacing:27.336000pt;}
.wsb83_c00000{word-spacing:27.353600pt;}
.ws1ab5_c00000{word-spacing:27.366400pt;}
.wsf72_c00000{word-spacing:27.379200pt;}
.ws113a_c00000{word-spacing:27.385600pt;}
.wsae2_c00000{word-spacing:27.398400pt;}
.ws1261_c00000{word-spacing:27.398688pt;}
.ws1579_c00000{word-spacing:27.404032pt;}
.ws14bb_c00000{word-spacing:27.404800pt;}
.ws151a_c00000{word-spacing:27.411200pt;}
.ws1647_c00000{word-spacing:27.424000pt;}
.ws185f_c00000{word-spacing:27.430400pt;}
.ws739_c00000{word-spacing:27.436800pt;}
.ws2c0_c00000{word-spacing:27.443200pt;}
.ws161e_c00000{word-spacing:27.449600pt;}
.ws12a3_c00000{word-spacing:27.456000pt;}
.wsa44_c00000{word-spacing:27.462400pt;}
.ws73a_c00000{word-spacing:27.468800pt;}
.ws2bf_c00000{word-spacing:27.481600pt;}
.ws82e_c00000{word-spacing:27.488000pt;}
.ws1a5_c00000{word-spacing:27.494400pt;}
.ws1a4f_c00000{word-spacing:27.500800pt;}
.ws1a6_c00000{word-spacing:27.507200pt;}
.ws1860_c00000{word-spacing:27.513600pt;}
.wsa43_c00000{word-spacing:27.520000pt;}
.ws15a5_c00000{word-spacing:27.526400pt;}
.ws19ba_c00000{word-spacing:27.529056pt;}
.wsc0d_c00000{word-spacing:27.540768pt;}
.ws19b9_c00000{word-spacing:27.546624pt;}
.ws896_c00000{word-spacing:27.552000pt;}
.ws19bb_c00000{word-spacing:27.552480pt;}
.wsc0e_c00000{word-spacing:27.558336pt;}
.ws15d9_c00000{word-spacing:27.570048pt;}
.ws73b_c00000{word-spacing:27.571200pt;}
.wsbc2_c00000{word-spacing:27.575904pt;}
.wsb85_c00000{word-spacing:27.577600pt;}
.ws1a13_c00000{word-spacing:27.593472pt;}
.ws122a_c00000{word-spacing:27.628800pt;}
.wsca6_c00000{word-spacing:27.635200pt;}
.ws18bf_c00000{word-spacing:27.639168pt;}
.ws19e0_c00000{word-spacing:27.641600pt;}
.ws11bc_c00000{word-spacing:27.673600pt;}
.ws18be_c00000{word-spacing:27.681920pt;}
.wsdb4_c00000{word-spacing:27.686400pt;}
.ws19fa_c00000{word-spacing:27.692800pt;}
.wsdb3_c00000{word-spacing:27.718400pt;}
.ws1411_c00000{word-spacing:27.719328pt;}
.wsea6_c00000{word-spacing:27.724800pt;}
.ws8b3_c00000{word-spacing:27.731200pt;}
.wsea7_c00000{word-spacing:27.737600pt;}
.ws8b2_c00000{word-spacing:27.744000pt;}
.wsd2e_c00000{word-spacing:27.750400pt;}
.wsea8_c00000{word-spacing:27.756800pt;}
.ws1229_c00000{word-spacing:27.763200pt;}
.wsf7e_c00000{word-spacing:27.769600pt;}
.ws103_c00000{word-spacing:27.788800pt;}
.wsca7_c00000{word-spacing:27.795200pt;}
.wsea5_c00000{word-spacing:27.808000pt;}
.wsd4b_c00000{word-spacing:27.814400pt;}
.ws1435_c00000{word-spacing:27.820800pt;}
.ws102_c00000{word-spacing:27.827200pt;}
.wsbda_c00000{word-spacing:27.827712pt;}
.wsd4a_c00000{word-spacing:27.833600pt;}
.ws1434_c00000{word-spacing:27.840000pt;}
.ws1a22_c00000{word-spacing:27.852800pt;}
.ws10de_c00000{word-spacing:27.852928pt;}
.wsbd9_c00000{word-spacing:27.856992pt;}
.wsf7d_c00000{word-spacing:27.859200pt;}
.ws1a18_c00000{word-spacing:27.865600pt;}
.ws1ac7_c00000{word-spacing:27.868704pt;}
.ws1ac6_c00000{word-spacing:27.874560pt;}
.ws16b_c00000{word-spacing:27.904000pt;}
.ws1336_c00000{word-spacing:27.927744pt;}
.ws149f_c00000{word-spacing:27.980800pt;}
.ws16a_c00000{word-spacing:27.987200pt;}
.ws147d_c00000{word-spacing:28.000000pt;}
.ws14a0_c00000{word-spacing:28.006400pt;}
.ws1ab2_c00000{word-spacing:28.012800pt;}
.ws802_c00000{word-spacing:28.019200pt;}
.ws1ad0_c00000{word-spacing:28.039968pt;}
.ws14bc_c00000{word-spacing:28.044800pt;}
.ws5f9_c00000{word-spacing:28.051200pt;}
.ws1010_c00000{word-spacing:28.057600pt;}
.wsf0c_c00000{word-spacing:28.070400pt;}
.ws198b_c00000{word-spacing:28.076800pt;}
.ws190_c00000{word-spacing:28.096000pt;}
.ws12b9_c00000{word-spacing:28.108800pt;}
.ws147f_c00000{word-spacing:28.115200pt;}
.ws163a_c00000{word-spacing:28.128000pt;}
.ws100f_c00000{word-spacing:28.134400pt;}
.ws147e_c00000{word-spacing:28.140800pt;}
.ws801_c00000{word-spacing:28.153600pt;}
.ws12ff_c00000{word-spacing:28.157536pt;}
.ws170b_c00000{word-spacing:28.161504pt;}
.wsca8_c00000{word-spacing:28.172800pt;}
.ws191_c00000{word-spacing:28.185600pt;}
.ws148e_c00000{word-spacing:28.192000pt;}
.ws16c_c00000{word-spacing:28.204800pt;}
.ws12dd_c00000{word-spacing:28.211200pt;}
.ws1564_c00000{word-spacing:28.291136pt;}
.ws1303_c00000{word-spacing:28.317856pt;}
.wsede_c00000{word-spacing:28.320000pt;}
.ws304_c00000{word-spacing:28.358400pt;}
.ws2a7_c00000{word-spacing:28.364800pt;}
.ws16cf_c00000{word-spacing:28.403200pt;}
.ws11f3_c00000{word-spacing:28.409600pt;}
.wsbec_c00000{word-spacing:28.416000pt;}
.ws2a8_c00000{word-spacing:28.422400pt;}
.ws13b1_c00000{word-spacing:28.428800pt;}
.wse4f_c00000{word-spacing:28.441600pt;}
.wsc90_c00000{word-spacing:28.448000pt;}
.ws1362_c00000{word-spacing:28.454400pt;}
.wsd1d_c00000{word-spacing:28.467200pt;}
.ws305_c00000{word-spacing:28.480000pt;}
.ws18a2_c00000{word-spacing:28.483520pt;}
.wsc9b_c00000{word-spacing:28.499200pt;}
.ws15d6_c00000{word-spacing:28.512864pt;}
.wsf1f_c00000{word-spacing:28.524800pt;}
.ws175c_c00000{word-spacing:28.536288pt;}
.ws14b2_c00000{word-spacing:28.553856pt;}
.ws1ad7_c00000{word-spacing:28.569024pt;}
.ws1457_c00000{word-spacing:28.652800pt;}
.ws1182_c00000{word-spacing:28.665216pt;}
.wsc18_c00000{word-spacing:28.672000pt;}
.wsb80_c00000{word-spacing:28.697600pt;}
.ws1a0d_c00000{word-spacing:28.704000pt;}
.wsa1f_c00000{word-spacing:28.710400pt;}
.ws1a2c_c00000{word-spacing:28.716800pt;}
.ws183c_c00000{word-spacing:28.723200pt;}
.ws11f4_c00000{word-spacing:28.729600pt;}
.ws1617_c00000{word-spacing:28.748800pt;}
.wsf6b_c00000{word-spacing:28.755200pt;}
.wsf6a_c00000{word-spacing:28.761600pt;}
.ws716_c00000{word-spacing:28.774400pt;}
.wsb81_c00000{word-spacing:28.780800pt;}
.ws8c7_c00000{word-spacing:28.787200pt;}
.wsf6c_c00000{word-spacing:28.793600pt;}
.wsb82_c00000{word-spacing:28.800000pt;}
.ws1596_c00000{word-spacing:28.805664pt;}
.ws1a2d_c00000{word-spacing:28.806400pt;}
.ws1272_c00000{word-spacing:28.809504pt;}
.ws13d2_c00000{word-spacing:28.819200pt;}
.wsa1d_c00000{word-spacing:28.825600pt;}
.ws519_c00000{word-spacing:28.829088pt;}
.ws116d_c00000{word-spacing:28.830880pt;}
.wsa1e_c00000{word-spacing:28.832000pt;}
.wsbdb_c00000{word-spacing:28.840800pt;}
.ws19a8_c00000{word-spacing:28.852512pt;}
.ws518_c00000{word-spacing:28.858368pt;}
.ws19a7_c00000{word-spacing:28.864224pt;}
.ws16b5_c00000{word-spacing:28.870400pt;}
.wsf22_c00000{word-spacing:28.889600pt;}
.ws1113_c00000{word-spacing:28.889664pt;}
.ws1324_c00000{word-spacing:28.900352pt;}
.ws101a_c00000{word-spacing:28.947200pt;}
.ws16ea_c00000{word-spacing:28.953600pt;}
.ws1a39_c00000{word-spacing:28.992000pt;}
.wsece_c00000{word-spacing:29.017600pt;}
.wsf23_c00000{word-spacing:29.024000pt;}
.ws1343_c00000{word-spacing:29.030400pt;}
.ws19f7_c00000{word-spacing:29.056000pt;}
.ws1292_c00000{word-spacing:29.075200pt;}
.ws1293_c00000{word-spacing:29.081600pt;}
.ws159b_c00000{word-spacing:29.088000pt;}
.ws16eb_c00000{word-spacing:29.094400pt;}
.ws19bc_c00000{word-spacing:29.104320pt;}
.ws1a38_c00000{word-spacing:29.107200pt;}
.wsecf_c00000{word-spacing:29.113600pt;}
.ws1344_c00000{word-spacing:29.120000pt;}
.ws159c_c00000{word-spacing:29.126400pt;}
.ws59c_c00000{word-spacing:29.139456pt;}
.ws131e_c00000{word-spacing:29.146176pt;}
.ws17fd_c00000{word-spacing:29.162880pt;}
.ws1acb_c00000{word-spacing:29.168736pt;}
.ws1654_c00000{word-spacing:29.174592pt;}
.ws17fc_c00000{word-spacing:29.180448pt;}
.wsd43_c00000{word-spacing:29.273600pt;}
.ws1f7_c00000{word-spacing:29.286400pt;}
.ws14ba_c00000{word-spacing:29.299200pt;}
.ws1137_c00000{word-spacing:29.327872pt;}
.ws184c_c00000{word-spacing:29.331200pt;}
.ws1599_c00000{word-spacing:29.337600pt;}
.ws1a3d_c00000{word-spacing:29.363200pt;}
.ws1987_c00000{word-spacing:29.369600pt;}
.ws1f8_c00000{word-spacing:29.376000pt;}
.wsc4f_c00000{word-spacing:29.388800pt;}
.ws1485_c00000{word-spacing:29.395200pt;}
.ws1466_c00000{word-spacing:29.401600pt;}
.ws1200_c00000{word-spacing:29.408000pt;}
.ws1486_c00000{word-spacing:29.414400pt;}
.ws275_c00000{word-spacing:29.420800pt;}
.ws1636_c00000{word-spacing:29.427200pt;}
.wsd44_c00000{word-spacing:29.433600pt;}
.ws1753_c00000{word-spacing:29.440000pt;}
.ws10e0_c00000{word-spacing:29.440096pt;}
.ws1988_c00000{word-spacing:29.446400pt;}
.ws1626_c00000{word-spacing:29.455680pt;}
.ws10bc_c00000{word-spacing:29.456128pt;}
.ws17be_c00000{word-spacing:29.461536pt;}
.ws1345_c00000{word-spacing:29.465600pt;}
.ws712_c00000{word-spacing:29.467392pt;}
.wsbc3_c00000{word-spacing:29.484960pt;}
.ws1223_c00000{word-spacing:29.496672pt;}
.ws17bf_c00000{word-spacing:29.531808pt;}
.wsbc6_c00000{word-spacing:29.536000pt;}
.ws195b_c00000{word-spacing:29.541632pt;}
.ws1a3e_c00000{word-spacing:29.568000pt;}
.ws13ec_c00000{word-spacing:29.606400pt;}
.wsbc5_c00000{word-spacing:29.612800pt;}
.ws76c_c00000{word-spacing:29.625600pt;}
.ws1346_c00000{word-spacing:29.632000pt;}
.wsb4a_c00000{word-spacing:29.670400pt;}
.ws15ac_c00000{word-spacing:29.676800pt;}
.ws1a34_c00000{word-spacing:29.683200pt;}
.ws12d8_c00000{word-spacing:29.696000pt;}
.ws12d1_c00000{word-spacing:29.708800pt;}
.ws12d0_c00000{word-spacing:29.715200pt;}
.wse4d_c00000{word-spacing:29.721600pt;}
.wse4e_c00000{word-spacing:29.728000pt;}
.wsf5d_c00000{word-spacing:29.734400pt;}
.ws12c0_c00000{word-spacing:29.740800pt;}
.ws1407_c00000{word-spacing:29.747200pt;}
.ws15ab_c00000{word-spacing:29.760000pt;}
.ws1829_c00000{word-spacing:29.760192pt;}
.ws1570_c00000{word-spacing:29.766080pt;}
.ws1a35_c00000{word-spacing:29.766400pt;}
.ws76b_c00000{word-spacing:29.792000pt;}
.ws1828_c00000{word-spacing:29.795328pt;}
.ws1067_c00000{word-spacing:29.835552pt;}
.ws142e_c00000{word-spacing:29.932800pt;}
.ws1373_c00000{word-spacing:29.936704pt;}
.ws6d6_c00000{word-spacing:29.952000pt;}
.ws81c_c00000{word-spacing:29.964800pt;}
.ws900_c00000{word-spacing:29.971200pt;}
.ws81b_c00000{word-spacing:29.977600pt;}
.wsb9e_c00000{word-spacing:29.984000pt;}
.wsf15_c00000{word-spacing:29.996800pt;}
.ws8ff_c00000{word-spacing:30.003200pt;}
.wsf6d_c00000{word-spacing:30.009600pt;}
.ws135d_c00000{word-spacing:30.016000pt;}
.ws1360_c00000{word-spacing:30.022400pt;}
.ws763_c00000{word-spacing:30.028800pt;}
.ws1758_c00000{word-spacing:30.035200pt;}
.ws282_c00000{word-spacing:30.041600pt;}
.wsb9d_c00000{word-spacing:30.048000pt;}
.ws135e_c00000{word-spacing:30.054400pt;}
.ws12c1_c00000{word-spacing:30.060800pt;}
.wse7a_c00000{word-spacing:30.067200pt;}
.ws184f_c00000{word-spacing:30.073600pt;}
.wse7b_c00000{word-spacing:30.080000pt;}
.wsb9f_c00000{word-spacing:30.099200pt;}
.ws81d_c00000{word-spacing:30.105600pt;}
.ws16d8_c00000{word-spacing:30.111552pt;}
.ws767_c00000{word-spacing:30.123264pt;}
.ws6eb_c00000{word-spacing:30.134976pt;}
.ws6ea_c00000{word-spacing:30.158400pt;}
.wsd13_c00000{word-spacing:30.176000pt;}
.wsad2_c00000{word-spacing:30.252800pt;}
.ws145e_c00000{word-spacing:30.272000pt;}
.ws11b9_c00000{word-spacing:30.284800pt;}
.ws16c0_c00000{word-spacing:30.297600pt;}
.wsdec_c00000{word-spacing:30.304000pt;}
.ws4ac_c00000{word-spacing:30.310400pt;}
.wsde5_c00000{word-spacing:30.342400pt;}
.ws1ab3_c00000{word-spacing:30.355200pt;}
.ws11bf_c00000{word-spacing:30.361600pt;}
.ws13ad_c00000{word-spacing:30.368000pt;}
.ws88c_c00000{word-spacing:30.374400pt;}
.wseed_c00000{word-spacing:30.380800pt;}
.ws1481_c00000{word-spacing:30.387200pt;}
.wsded_c00000{word-spacing:30.393600pt;}
.ws13ae_c00000{word-spacing:30.400000pt;}
.ws142c_c00000{word-spacing:30.406400pt;}
.ws1ac4_c00000{word-spacing:30.416064pt;}
.ws88d_c00000{word-spacing:30.438400pt;}
.ws1ac5_c00000{word-spacing:30.451200pt;}
.ws1416_c00000{word-spacing:30.460800pt;}
.wsfa2_c00000{word-spacing:30.476800pt;}
.wsd12_c00000{word-spacing:30.515200pt;}
.wsed0_c00000{word-spacing:30.560000pt;}
.ws14f4_c00000{word-spacing:30.585600pt;}
.ws1480_c00000{word-spacing:30.598400pt;}
.wseee_c00000{word-spacing:30.604800pt;}
.ws1803_c00000{word-spacing:30.611200pt;}
.ws1a4d_c00000{word-spacing:30.617600pt;}
.ws1a5d_c00000{word-spacing:30.624000pt;}
.ws15f5_c00000{word-spacing:30.636800pt;}
.ws1006_c00000{word-spacing:30.649600pt;}
.ws13c5_c00000{word-spacing:30.656000pt;}
.ws163f_c00000{word-spacing:30.662400pt;}
.ws12a4_c00000{word-spacing:30.675200pt;}
.ws12a5_c00000{word-spacing:30.681600pt;}
.wsc35_c00000{word-spacing:30.688000pt;}
.ws19f9_c00000{word-spacing:30.694400pt;}
.ws2b8_c00000{word-spacing:30.700800pt;}
.ws15f6_c00000{word-spacing:30.707200pt;}
.ws148b_c00000{word-spacing:30.713600pt;}
.ws1007_c00000{word-spacing:30.720000pt;}
.ws2b9_c00000{word-spacing:30.726400pt;}
.wseef_c00000{word-spacing:30.732800pt;}
.ws1640_c00000{word-spacing:30.739200pt;}
.ws456_c00000{word-spacing:30.744000pt;}
.wsed1_c00000{word-spacing:30.745600pt;}
.ws455_c00000{word-spacing:30.767424pt;}
.ws1225_c00000{word-spacing:30.779136pt;}
.wsfc0_c00000{word-spacing:30.786784pt;}
.ws1295_c00000{word-spacing:30.822400pt;}
.wsfd0_c00000{word-spacing:30.824192pt;}
.ws1a31_c00000{word-spacing:30.880000pt;}
.ws1116_c00000{word-spacing:30.893664pt;}
.ws16c4_c00000{word-spacing:30.905600pt;}
.wsd61_c00000{word-spacing:30.924800pt;}
.ws17f1_c00000{word-spacing:30.937600pt;}
.ws1294_c00000{word-spacing:30.950400pt;}
.ws12a0_c00000{word-spacing:30.956800pt;}
.ws1a30_c00000{word-spacing:30.976000pt;}
.wsd53_c00000{word-spacing:30.982400pt;}
.ws19f2_c00000{word-spacing:30.995200pt;}
.ws849_c00000{word-spacing:31.001600pt;}
.ws195f_c00000{word-spacing:31.005888pt;}
.ws14f7_c00000{word-spacing:31.008000pt;}
.wsd60_c00000{word-spacing:31.014400pt;}
.ws13dc_c00000{word-spacing:31.020800pt;}
.ws703_c00000{word-spacing:31.025088pt;}
.ws12ae_c00000{word-spacing:31.027200pt;}
.ws16c3_c00000{word-spacing:31.033600pt;}
.ws1296_c00000{word-spacing:31.040000pt;}
.ws19f1_c00000{word-spacing:31.046400pt;}
.ws1704_c00000{word-spacing:31.077792pt;}
.ws704_c00000{word-spacing:31.083648pt;}
.ws13dd_c00000{word-spacing:31.084800pt;}
.ws702_c00000{word-spacing:31.107072pt;}
.ws187f_c00000{word-spacing:31.134144pt;}
.ws1019_c00000{word-spacing:31.174400pt;}
.wsea3_c00000{word-spacing:31.212800pt;}
.ws17f0_c00000{word-spacing:31.219200pt;}
.ws1850_c00000{word-spacing:31.225600pt;}
.ws16f6_c00000{word-spacing:31.238400pt;}
.ws1a12_c00000{word-spacing:31.264000pt;}
.ws15cf_c00000{word-spacing:31.270400pt;}
.wsea4_c00000{word-spacing:31.276800pt;}
.ws635_c00000{word-spacing:31.302400pt;}
.wsd66_c00000{word-spacing:31.315200pt;}
.ws1018_c00000{word-spacing:31.328000pt;}
.ws15ce_c00000{word-spacing:31.334400pt;}
.ws102c_c00000{word-spacing:31.340800pt;}
.ws10e1_c00000{word-spacing:31.347904pt;}
.ws636_c00000{word-spacing:31.353600pt;}
.wsa5b_c00000{word-spacing:31.364736pt;}
.ws1648_c00000{word-spacing:31.372800pt;}
.ws1119_c00000{word-spacing:31.379968pt;}
.ws12ed_c00000{word-spacing:31.385600pt;}
.ws119e_c00000{word-spacing:31.406688pt;}
.ws4dd_c00000{word-spacing:31.429152pt;}
.ws16f1_c00000{word-spacing:31.435008pt;}
.ws110d_c00000{word-spacing:31.460128pt;}
.ws1450_c00000{word-spacing:31.513600pt;}
.ws131c_c00000{word-spacing:31.518912pt;}
.ws57d_c00000{word-spacing:31.520000pt;}
.ws926_c00000{word-spacing:31.526400pt;}
.ws169f_c00000{word-spacing:31.571200pt;}
.ws16a0_c00000{word-spacing:31.584000pt;}
.wscdf_c00000{word-spacing:31.596800pt;}
.ws15c9_c00000{word-spacing:31.616000pt;}
.ws5a5_c00000{word-spacing:31.622400pt;}
.ws349_c00000{word-spacing:31.628800pt;}
.ws8bb_c00000{word-spacing:31.635200pt;}
.ws927_c00000{word-spacing:31.641600pt;}
.wsebd_c00000{word-spacing:31.648000pt;}
.ws14ad_c00000{word-spacing:31.654400pt;}
.ws12f7_c00000{word-spacing:31.660800pt;}
.ws34a_c00000{word-spacing:31.667200pt;}
.ws1aaf_c00000{word-spacing:31.673600pt;}
.wsfee_c00000{word-spacing:31.679232pt;}
.ws1452_c00000{word-spacing:31.680000pt;}
.ws57c_c00000{word-spacing:31.686400pt;}
.ws5a6_c00000{word-spacing:31.692800pt;}
.ws169e_c00000{word-spacing:31.705600pt;}
.ws1451_c00000{word-spacing:31.724800pt;}
.ws484_c00000{word-spacing:31.739520pt;}
.ws141e_c00000{word-spacing:31.788800pt;}
.ws115c_c00000{word-spacing:31.796800pt;}
.ws189b_c00000{word-spacing:31.802144pt;}
.ws141d_c00000{word-spacing:31.808000pt;}
.wsbd0_c00000{word-spacing:31.814400pt;}
.ws12e7_c00000{word-spacing:31.878400pt;}
.wsbcf_c00000{word-spacing:31.916800pt;}
.ws1493_c00000{word-spacing:31.929600pt;}
.ws1a32_c00000{word-spacing:31.936000pt;}
.ws15d1_c00000{word-spacing:31.961600pt;}
.ws745_c00000{word-spacing:31.968000pt;}
.wsd1e_c00000{word-spacing:31.974400pt;}
.wsd1f_c00000{word-spacing:31.980800pt;}
.ws12e6_c00000{word-spacing:31.987200pt;}
.ws1752_c00000{word-spacing:31.993600pt;}
.ws822_c00000{word-spacing:32.006400pt;}
.ws1880_c00000{word-spacing:32.015904pt;}
.ws821_c00000{word-spacing:32.032000pt;}
.ws1355_c00000{word-spacing:32.038176pt;}
.ws7ee_c00000{word-spacing:32.073312pt;}
.ws19e2_c00000{word-spacing:32.076800pt;}
.ws15a4_c00000{word-spacing:32.096000pt;}
.ws10c4_c00000{word-spacing:32.096064pt;}
.ws1270_c00000{word-spacing:32.133472pt;}
.ws19db_c00000{word-spacing:32.140800pt;}
.ws11d8_c00000{word-spacing:32.172800pt;}
.ws1017_c00000{word-spacing:32.185600pt;}
.ws14fb_c00000{word-spacing:32.192000pt;}
.ws1015_c00000{word-spacing:32.204800pt;}
.ws12a9_c00000{word-spacing:32.230400pt;}
.wscdd_c00000{word-spacing:32.243200pt;}
.wsf49_c00000{word-spacing:32.262400pt;}
.wsf48_c00000{word-spacing:32.275200pt;}
.wsc34_c00000{word-spacing:32.288000pt;}
.ws72a_c00000{word-spacing:32.294400pt;}
.ws12a8_c00000{word-spacing:32.300800pt;}
.ws9e4_c00000{word-spacing:32.307200pt;}
.ws729_c00000{word-spacing:32.313600pt;}
.ws1a1f_c00000{word-spacing:32.320000pt;}
.ws9e5_c00000{word-spacing:32.326400pt;}
.ws15a3_c00000{word-spacing:32.332800pt;}
.ws17df_c00000{word-spacing:32.342688pt;}
.ws1016_c00000{word-spacing:32.345600pt;}
.ws11d9_c00000{word-spacing:32.352000pt;}
.wscde_c00000{word-spacing:32.358400pt;}
.ws14fc_c00000{word-spacing:32.377600pt;}
.ws7ed_c00000{word-spacing:32.389536pt;}
.ws144c_c00000{word-spacing:32.492800pt;}
.wsb46_c00000{word-spacing:32.499200pt;}
.ws16c9_c00000{word-spacing:32.505600pt;}
.ws1673_c00000{word-spacing:32.518400pt;}
.wsfa4_c00000{word-spacing:32.531200pt;}
.ws98_c00000{word-spacing:32.550400pt;}
.ws1542_c00000{word-spacing:32.563200pt;}
.wse51_c00000{word-spacing:32.576000pt;}
.ws99_c00000{word-spacing:32.595200pt;}
.wsfa5_c00000{word-spacing:32.601600pt;}
.ws1537_c00000{word-spacing:32.608000pt;}
.wse52_c00000{word-spacing:32.620800pt;}
.wse53_c00000{word-spacing:32.627200pt;}
.wsb47_c00000{word-spacing:32.633600pt;}
.ws182c_c00000{word-spacing:32.640000pt;}
.ws1301_c00000{word-spacing:32.641152pt;}
.ws1543_c00000{word-spacing:32.646400pt;}
.ws6ed_c00000{word-spacing:32.653056pt;}
.ws6ee_c00000{word-spacing:32.670624pt;}
.ws6ec_c00000{word-spacing:32.676480pt;}
.ws9ee_c00000{word-spacing:32.705760pt;}
.ws1536_c00000{word-spacing:32.710400pt;}
.ws640_c00000{word-spacing:32.736000pt;}
.ws14b0_c00000{word-spacing:32.755200pt;}
.ws63f_c00000{word-spacing:32.774400pt;}
.ws14af_c00000{word-spacing:32.806400pt;}
.ws93f_c00000{word-spacing:32.819200pt;}
.wsfb2_c00000{word-spacing:32.857600pt;}
.ws2ed_c00000{word-spacing:32.864000pt;}
.ws13a8_c00000{word-spacing:32.870400pt;}
.wsaa7_c00000{word-spacing:32.876800pt;}
.ws2ec_c00000{word-spacing:32.883200pt;}
.wscf0_c00000{word-spacing:32.889600pt;}
.wscf1_c00000{word-spacing:32.915200pt;}
.ws6b4_c00000{word-spacing:32.921600pt;}
.ws940_c00000{word-spacing:32.934400pt;}
.wsd3f_c00000{word-spacing:32.947200pt;}
.wsaa6_c00000{word-spacing:32.953600pt;}
.ws93e_c00000{word-spacing:32.960000pt;}
.wsd40_c00000{word-spacing:32.966400pt;}
.wscf2_c00000{word-spacing:32.985600pt;}
.ws13a9_c00000{word-spacing:32.998400pt;}
.ws14b1_c00000{word-spacing:33.004800pt;}
.ws16f7_c00000{word-spacing:33.010272pt;}
.wse81_c00000{word-spacing:33.021984pt;}
.wsda0_c00000{word-spacing:33.126400pt;}
.ws17f5_c00000{word-spacing:33.158400pt;}
.ws1105_c00000{word-spacing:33.171200pt;}
.ws934_c00000{word-spacing:33.190400pt;}
.ws19d6_c00000{word-spacing:33.196800pt;}
.wsd21_c00000{word-spacing:33.216000pt;}
.ws6a4_c00000{word-spacing:33.222400pt;}
.ws166a_c00000{word-spacing:33.228800pt;}
.wsa6a_c00000{word-spacing:33.241600pt;}
.wsd22_c00000{word-spacing:33.248000pt;}
.ws933_c00000{word-spacing:33.254400pt;}
.ws17f6_c00000{word-spacing:33.260800pt;}
.wsda1_c00000{word-spacing:33.267200pt;}
.ws1ab7_c00000{word-spacing:33.273600pt;}
.ws1436_c00000{word-spacing:33.280000pt;}
.ws1437_c00000{word-spacing:33.299200pt;}
.wsa6b_c00000{word-spacing:33.331200pt;}
.wseca_c00000{word-spacing:33.459200pt;}
.wsb3f_c00000{word-spacing:33.497600pt;}
.wsb40_c00000{word-spacing:33.510400pt;}
.ws16cc_c00000{word-spacing:33.516800pt;}
.ws1a57_c00000{word-spacing:33.536000pt;}
.wsec9_c00000{word-spacing:33.548800pt;}
.ws101d_c00000{word-spacing:33.580800pt;}
.wsc16_c00000{word-spacing:33.587200pt;}
.ws1a58_c00000{word-spacing:33.600000pt;}
.ws19ab_c00000{word-spacing:33.601728pt;}
.ws123c_c00000{word-spacing:33.608416pt;}
.ws1763_c00000{word-spacing:33.613440pt;}
.ws1764_c00000{word-spacing:33.636864pt;}
.wsc15_c00000{word-spacing:33.657600pt;}
.ws19ac_c00000{word-spacing:33.660288pt;}
.wsc17_c00000{word-spacing:33.664000pt;}
.ws101c_c00000{word-spacing:33.683200pt;}
.ws10c0_c00000{word-spacing:33.720000pt;}
.ws1ab1_c00000{word-spacing:33.721600pt;}
.wsee7_c00000{word-spacing:33.728000pt;}
.ws113d_c00000{word-spacing:33.758048pt;}
.wsf01_c00000{word-spacing:33.804800pt;}
.wsf4b_c00000{word-spacing:33.811200pt;}
.ws19ca_c00000{word-spacing:33.836800pt;}
.ws13c7_c00000{word-spacing:33.843200pt;}
.ws13c8_c00000{word-spacing:33.849600pt;}
.ws63c_c00000{word-spacing:33.856000pt;}
.ws13c6_c00000{word-spacing:33.875200pt;}
.ws1851_c00000{word-spacing:33.881600pt;}
.ws13c9_c00000{word-spacing:33.888000pt;}
.ws1ab0_c00000{word-spacing:33.894400pt;}
.wsf4a_c00000{word-spacing:33.900800pt;}
.ws63d_c00000{word-spacing:33.907200pt;}
.ws63e_c00000{word-spacing:33.913600pt;}
.ws1847_c00000{word-spacing:33.926400pt;}
.ws14e4_c00000{word-spacing:33.935520pt;}
.ws19cb_c00000{word-spacing:33.939200pt;}
.wsf02_c00000{word-spacing:33.945600pt;}
.ws15ba_c00000{word-spacing:33.953088pt;}
.ws422_c00000{word-spacing:33.970656pt;}
.wsdc4_c00000{word-spacing:33.996800pt;}
.ws1332_c00000{word-spacing:34.003872pt;}
.ws11b7_c00000{word-spacing:34.009216pt;}
.ws8b8_c00000{word-spacing:34.041600pt;}
.ws16dd_c00000{word-spacing:34.067200pt;}
.ws19df_c00000{word-spacing:34.105600pt;}
.ws13df_c00000{word-spacing:34.112000pt;}
.ws1771_c00000{word-spacing:34.121440pt;}
.ws1876_c00000{word-spacing:34.131200pt;}
.ws1400_c00000{word-spacing:34.144000pt;}
.ws2ca_c00000{word-spacing:34.176000pt;}
.ws296_c00000{word-spacing:34.201600pt;}
.ws989_c00000{word-spacing:34.208000pt;}
.ws16dc_c00000{word-spacing:34.214400pt;}
.wsdc3_c00000{word-spacing:34.220800pt;}
.ws12e8_c00000{word-spacing:34.227200pt;}
.ws13de_c00000{word-spacing:34.233600pt;}
.wsfde_c00000{word-spacing:34.233664pt;}
.ws14db_c00000{word-spacing:34.240000pt;}
.ws1877_c00000{word-spacing:34.252800pt;}
.ws1401_c00000{word-spacing:34.265600pt;}
.wsdc5_c00000{word-spacing:34.272000pt;}
.ws153e_c00000{word-spacing:34.278400pt;}
.ws662_c00000{word-spacing:34.281024pt;}
.ws16db_c00000{word-spacing:34.284800pt;}
.ws14e3_c00000{word-spacing:34.292736pt;}
.ws1975_c00000{word-spacing:34.323200pt;}
.ws100b_c00000{word-spacing:34.374400pt;}
.ws139a_c00000{word-spacing:34.418272pt;}
.ws192d_c00000{word-spacing:34.432000pt;}
.ws14da_c00000{word-spacing:34.444800pt;}
.ws100a_c00000{word-spacing:34.464000pt;}
.ws192e_c00000{word-spacing:34.470400pt;}
.ws1835_c00000{word-spacing:34.489600pt;}
.ws1467_c00000{word-spacing:34.528000pt;}
.ws154d_c00000{word-spacing:34.534400pt;}
.ws1900_c00000{word-spacing:34.538272pt;}
.ws2c8_c00000{word-spacing:34.540800pt;}
.wsa6f_c00000{word-spacing:34.547200pt;}
.ws2c9_c00000{word-spacing:34.553600pt;}
.ws1468_c00000{word-spacing:34.560000pt;}
.ws58d_c00000{word-spacing:34.579680pt;}
.wsff7_c00000{word-spacing:34.597248pt;}
.ws16af_c00000{word-spacing:34.603104pt;}
.wsa70_c00000{word-spacing:34.617600pt;}
.ws16b0_c00000{word-spacing:34.626528pt;}
.wsff6_c00000{word-spacing:34.638240pt;}
.ws1709_c00000{word-spacing:34.643200pt;}
.ws1976_c00000{word-spacing:34.656000pt;}
.ws1540_c00000{word-spacing:34.720000pt;}
.wsbfb_c00000{word-spacing:34.767072pt;}
.ws16bb_c00000{word-spacing:34.777600pt;}
.wsffc_c00000{word-spacing:34.828800pt;}
.wsbfc_c00000{word-spacing:34.831488pt;}
.wsffb_c00000{word-spacing:34.835200pt;}
.wsec8_c00000{word-spacing:34.841600pt;}
.ws153f_c00000{word-spacing:34.848000pt;}
.ws16d9_c00000{word-spacing:34.880000pt;}
.ws16ba_c00000{word-spacing:34.886400pt;}
.ws16da_c00000{word-spacing:34.899200pt;}
.wsff0_c00000{word-spacing:34.925184pt;}
.ws16bc_c00000{word-spacing:35.040000pt;}
.ws17c7_c00000{word-spacing:35.072000pt;}
.wse24_c00000{word-spacing:35.129600pt;}
.wsccd_c00000{word-spacing:35.148800pt;}
.ws1a4e_c00000{word-spacing:35.155200pt;}
.wsccb_c00000{word-spacing:35.161600pt;}
.ws1a21_c00000{word-spacing:35.168000pt;}
.wsccc_c00000{word-spacing:35.174400pt;}
.ws17c6_c00000{word-spacing:35.180800pt;}
.ws156c_c00000{word-spacing:35.184896pt;}
.ws168d_c00000{word-spacing:35.206272pt;}
.ws120f_c00000{word-spacing:35.229696pt;}
.ws168c_c00000{word-spacing:35.247264pt;}
.ws1a20_c00000{word-spacing:35.251200pt;}
.ws10b0_c00000{word-spacing:35.352000pt;}
.ws1a1e_c00000{word-spacing:35.366400pt;}
.wsd67_c00000{word-spacing:35.379200pt;}
.ws1692_c00000{word-spacing:35.398656pt;}
.wsec0_c00000{word-spacing:35.404800pt;}
.ws840_c00000{word-spacing:35.475200pt;}
.ws8ce_c00000{word-spacing:35.481600pt;}
.ws1897_c00000{word-spacing:35.505536pt;}
.ws19ec_c00000{word-spacing:35.507200pt;}
.wsebf_c00000{word-spacing:35.513600pt;}
.ws1a1c_c00000{word-spacing:35.520000pt;}
.ws1a1d_c00000{word-spacing:35.532800pt;}
.ws11a4_c00000{word-spacing:35.591040pt;}
.ws11a5_c00000{word-spacing:35.617760pt;}
.wsf73_c00000{word-spacing:35.648000pt;}
.ws10da_c00000{word-spacing:35.708608pt;}
.ws1341_c00000{word-spacing:35.713952pt;}
.ws14eb_c00000{word-spacing:35.724800pt;}
.ws1491_c00000{word-spacing:35.838720pt;}
.wsec1_c00000{word-spacing:35.840000pt;}
.ws130b_c00000{word-spacing:35.847552pt;}
.ws11c4_c00000{word-spacing:35.850432pt;}
.wsf74_c00000{word-spacing:35.852800pt;}
.ws14ec_c00000{word-spacing:35.859200pt;}
.ws11c3_c00000{word-spacing:35.862144pt;}
.wsfc2_c00000{word-spacing:35.895648pt;}
.wse0e_c00000{word-spacing:36.025600pt;}
.ws19eb_c00000{word-spacing:36.064000pt;}
.ws12d6_c00000{word-spacing:36.121600pt;}
.ws1827_c00000{word-spacing:36.147200pt;}
.ws184b_c00000{word-spacing:36.160000pt;}
.wse0f_c00000{word-spacing:36.172800pt;}
.ws132c_c00000{word-spacing:36.189568pt;}
.ws12d7_c00000{word-spacing:36.211200pt;}
.ws1891_c00000{word-spacing:36.264384pt;}
.wsf66_c00000{word-spacing:36.275200pt;}
.wsf67_c00000{word-spacing:36.313600pt;}
.ws11bd_c00000{word-spacing:36.320000pt;}
.ws10d6_c00000{word-spacing:36.344544pt;}
.ws1a17_c00000{word-spacing:36.352000pt;}
.ws1370_c00000{word-spacing:36.359008pt;}
.wsf65_c00000{word-spacing:36.384000pt;}
.ws1856_c00000{word-spacing:36.416000pt;}
.ws11f5_c00000{word-spacing:36.428800pt;}
.ws19f5_c00000{word-spacing:36.441600pt;}
.ws11be_c00000{word-spacing:36.448000pt;}
.ws1a16_c00000{word-spacing:36.460800pt;}
.ws106d_c00000{word-spacing:36.547616pt;}
.ws10c7_c00000{word-spacing:36.585024pt;}
.wsfd5_c00000{word-spacing:36.601056pt;}
.ws114d_c00000{word-spacing:36.638464pt;}
.ws1a06_c00000{word-spacing:36.646400pt;}
.ws10c6_c00000{word-spacing:36.659840pt;}
.ws11dd_c00000{word-spacing:36.678400pt;}
.ws11de_c00000{word-spacing:36.697600pt;}
.wsae0_c00000{word-spacing:36.710400pt;}
.wsae1_c00000{word-spacing:36.716800pt;}
.ws17cb_c00000{word-spacing:36.736000pt;}
.ws1a07_c00000{word-spacing:36.742400pt;}
.wsedf_c00000{word-spacing:36.755200pt;}
.ws334_c00000{word-spacing:36.761600pt;}
.wsa97_c00000{word-spacing:36.768000pt;}
.ws335_c00000{word-spacing:36.787200pt;}
.wsa96_c00000{word-spacing:36.800000pt;}
.ws13ee_c00000{word-spacing:36.819200pt;}
.ws175b_c00000{word-spacing:36.851808pt;}
.wsdf2_c00000{word-spacing:36.857664pt;}
.ws1816_c00000{word-spacing:36.864000pt;}
.ws13ef_c00000{word-spacing:36.876800pt;}
.ws126d_c00000{word-spacing:36.905664pt;}
.ws1106_c00000{word-spacing:36.921600pt;}
.ws16bd_c00000{word-spacing:37.004800pt;}
.ws1175_c00000{word-spacing:37.007200pt;}
.wsd0d_c00000{word-spacing:37.011200pt;}
.ws742_c00000{word-spacing:37.024000pt;}
.ws17c3_c00000{word-spacing:37.030400pt;}
.ws741_c00000{word-spacing:37.036800pt;}
.wsd0e_c00000{word-spacing:37.056000pt;}
.wsd3c_c00000{word-spacing:37.075200pt;}
.ws1107_c00000{word-spacing:37.094400pt;}
.ws12f1_c00000{word-spacing:37.107200pt;}
.ws16be_c00000{word-spacing:37.120000pt;}
.ws11d4_c00000{word-spacing:37.228800pt;}
.ws10a4_c00000{word-spacing:37.252800pt;}
.ws15cc_c00000{word-spacing:37.267200pt;}
.ws1424_c00000{word-spacing:37.331200pt;}
.wsa52_c00000{word-spacing:37.363200pt;}
.ws15cd_c00000{word-spacing:37.382400pt;}
.ws9fe_c00000{word-spacing:37.414400pt;}
.ws14c1_c00000{word-spacing:37.420800pt;}
.wsa51_c00000{word-spacing:37.427200pt;}
.ws9fd_c00000{word-spacing:37.433600pt;}
.ws14c0_c00000{word-spacing:37.465600pt;}
.ws109b_c00000{word-spacing:37.477472pt;}
.wsdb7_c00000{word-spacing:37.478400pt;}
.wsdb8_c00000{word-spacing:37.484256pt;}
.wsfe3_c00000{word-spacing:37.632448pt;}
.wsee5_c00000{word-spacing:37.683200pt;}
.wsbea_c00000{word-spacing:37.728000pt;}
.ws1271_c00000{word-spacing:37.733984pt;}
.wsbe9_c00000{word-spacing:37.740800pt;}
.ws13e7_c00000{word-spacing:37.747200pt;}
.wsee6_c00000{word-spacing:37.766400pt;}
.ws1046_c00000{word-spacing:37.840864pt;}
.ws94f_c00000{word-spacing:37.958400pt;}
.ws1824_c00000{word-spacing:37.971200pt;}
.ws1825_c00000{word-spacing:38.003200pt;}
.ws1823_c00000{word-spacing:38.022400pt;}
.ws18b3_c00000{word-spacing:38.060800pt;}
.ws950_c00000{word-spacing:38.086400pt;}
.ws951_c00000{word-spacing:38.105600pt;}
.ws15c2_c00000{word-spacing:38.145984pt;}
.ws11a6_c00000{word-spacing:38.172192pt;}
.ws11b6_c00000{word-spacing:38.182880pt;}
.ws11b5_c00000{word-spacing:38.193568pt;}
.ws1560_c00000{word-spacing:38.198912pt;}
.ws1840_c00000{word-spacing:38.291200pt;}
.wsbf1_c00000{word-spacing:38.350944pt;}
.ws183f_c00000{word-spacing:38.361600pt;}
.ws1255_c00000{word-spacing:38.380608pt;}
.ws17e0_c00000{word-spacing:38.462208pt;}
.ws1676_c00000{word-spacing:38.617600pt;}
.ws158c_c00000{word-spacing:38.675200pt;}
.ws1677_c00000{word-spacing:38.700800pt;}
.ws114e_c00000{word-spacing:38.722624pt;}
.ws772_c00000{word-spacing:38.725728pt;}
.ws773_c00000{word-spacing:38.743296pt;}
.ws11f2_c00000{word-spacing:38.745600pt;}
.ws158b_c00000{word-spacing:38.790400pt;}
.ws116f_c00000{word-spacing:38.798400pt;}
.wsebb_c00000{word-spacing:38.944000pt;}
.wsadc_c00000{word-spacing:39.008000pt;}
.wsf6e_c00000{word-spacing:39.020800pt;}
.ws11f1_c00000{word-spacing:39.027200pt;}
.ws1143_c00000{word-spacing:39.075328pt;}
.wsadd_c00000{word-spacing:39.110400pt;}
.ws1a03_c00000{word-spacing:39.200000pt;}
.ws117a_c00000{word-spacing:39.201600pt;}
.ws1a04_c00000{word-spacing:39.238400pt;}
.ws17f8_c00000{word-spacing:39.276800pt;}
.ws1a05_c00000{word-spacing:39.302400pt;}
.ws17f7_c00000{word-spacing:39.340800pt;}
.ws16fd_c00000{word-spacing:39.399168pt;}
.ws1144_c00000{word-spacing:39.417344pt;}
.ws17d7_c00000{word-spacing:39.494400pt;}
.wsde0_c00000{word-spacing:39.622400pt;}
.ws1981_c00000{word-spacing:39.673600pt;}
.ws17d6_c00000{word-spacing:39.692800pt;}
.ws1982_c00000{word-spacing:39.737600pt;}
.ws1193_c00000{word-spacing:39.764704pt;}
.ws1618_c00000{word-spacing:39.846400pt;}
.wsf7c_c00000{word-spacing:39.891200pt;}
.wsf7a_c00000{word-spacing:39.904000pt;}
.ws17c9_c00000{word-spacing:39.923200pt;}
.ws17ca_c00000{word-spacing:39.955200pt;}
.wsd92_c00000{word-spacing:39.968000pt;}
.wsd93_c00000{word-spacing:39.987200pt;}
.wsf7b_c00000{word-spacing:40.019200pt;}
.wsd91_c00000{word-spacing:40.076800pt;}
.ws1036_c00000{word-spacing:40.142400pt;}
.ws16c8_c00000{word-spacing:40.204800pt;}
.wsf44_c00000{word-spacing:40.224000pt;}
.ws192b_c00000{word-spacing:40.249600pt;}
.ws135b_c00000{word-spacing:40.256000pt;}
.ws192a_c00000{word-spacing:40.281600pt;}
.ws123f_c00000{word-spacing:40.293760pt;}
.ws1008_c00000{word-spacing:40.294400pt;}
.wsf45_c00000{word-spacing:40.300800pt;}
.ws15ef_c00000{word-spacing:40.307200pt;}
.ws135c_c00000{word-spacing:40.364800pt;}
.ws1009_c00000{word-spacing:40.377600pt;}
.wsec4_c00000{word-spacing:40.486400pt;}
.ws189e_c00000{word-spacing:40.512864pt;}
.ws1289_c00000{word-spacing:40.601600pt;}
.wsaf8_c00000{word-spacing:40.627200pt;}
.wsd8_c00000{word-spacing:40.633600pt;}
.wsaf9_c00000{word-spacing:40.640000pt;}
.ws1330_c00000{word-spacing:40.812128pt;}
.ws13fb_c00000{word-spacing:40.928000pt;}
.ws9e2_c00000{word-spacing:40.940800pt;}
.ws1329_c00000{word-spacing:40.961760pt;}
.ws58a_c00000{word-spacing:40.962720pt;}
.ws9e0_c00000{word-spacing:40.972800pt;}
.ws9e1_c00000{word-spacing:40.985600pt;}
.ws1966_c00000{word-spacing:40.997856pt;}
.ws589_c00000{word-spacing:41.003712pt;}
.ws1a02_c00000{word-spacing:41.248000pt;}
.ws1a01_c00000{word-spacing:41.260800pt;}
.ws1863_c00000{word-spacing:41.286400pt;}
.wse6c_c00000{word-spacing:41.296512pt;}
.ws1864_c00000{word-spacing:41.305600pt;}
.ws6c3_c00000{word-spacing:41.308224pt;}
.ws16ac_c00000{word-spacing:41.319936pt;}
.wsec2_c00000{word-spacing:41.388800pt;}
.wsb1a_c00000{word-spacing:41.414400pt;}
.ws1395_c00000{word-spacing:41.457696pt;}
.ws1246_c00000{word-spacing:41.464096pt;}
.wsb19_c00000{word-spacing:41.478400pt;}
.ws1a9b_c00000{word-spacing:41.504000pt;}
.ws1a9c_c00000{word-spacing:41.574400pt;}
.ws1ab4_c00000{word-spacing:41.580800pt;}
.wse9c_c00000{word-spacing:41.618592pt;}
.wsec3_c00000{word-spacing:41.625600pt;}
.wse9b_c00000{word-spacing:41.642016pt;}
.wsb62_c00000{word-spacing:41.779200pt;}
.wsb64_c00000{word-spacing:41.785600pt;}
.ws181a_c00000{word-spacing:41.804800pt;}
.ws1819_c00000{word-spacing:41.849600pt;}
.ws155_c00000{word-spacing:41.900800pt;}
.ws1454_c00000{word-spacing:41.907200pt;}
.ws154_c00000{word-spacing:41.926400pt;}
.wsb63_c00000{word-spacing:41.952000pt;}
.wse19_c00000{word-spacing:41.964096pt;}
.ws196f_c00000{word-spacing:41.982464pt;}
.ws17c1_c00000{word-spacing:42.060800pt;}
.ws1544_c00000{word-spacing:42.092800pt;}
.ws17c2_c00000{word-spacing:42.099200pt;}
.ws1545_c00000{word-spacing:42.105600pt;}
.ws1ca_c00000{word-spacing:42.156800pt;}
.wsf4c_c00000{word-spacing:42.176000pt;}
.wsd26_c00000{word-spacing:42.182400pt;}
.ws5f3_c00000{word-spacing:42.195200pt;}
.ws1cb_c00000{word-spacing:42.220800pt;}
.wsd25_c00000{word-spacing:42.233600pt;}
.ws18dd_c00000{word-spacing:42.272000pt;}
.ws18cc_c00000{word-spacing:42.291200pt;}
.ws18ce_c00000{word-spacing:42.329600pt;}
.ws17ef_c00000{word-spacing:42.361600pt;}
.ws18cd_c00000{word-spacing:42.387200pt;}
.ws18de_c00000{word-spacing:42.419200pt;}
.wsa66_c00000{word-spacing:42.464000pt;}
.wsdce_c00000{word-spacing:42.470400pt;}
.wsf17_c00000{word-spacing:42.489600pt;}
.ws1003_c00000{word-spacing:42.502400pt;}
.ws12e4_c00000{word-spacing:42.515200pt;}
.ws12e5_c00000{word-spacing:42.528000pt;}
.wsa64_c00000{word-spacing:42.553600pt;}
.ws1979_c00000{word-spacing:42.566400pt;}
.ws17ee_c00000{word-spacing:42.579200pt;}
.ws197a_c00000{word-spacing:42.585600pt;}
.wsa65_c00000{word-spacing:42.598400pt;}
.ws77f_c00000{word-spacing:42.619968pt;}
.ws18a4_c00000{word-spacing:42.725280pt;}
.wsd50_c00000{word-spacing:42.739200pt;}
.ws1399_c00000{word-spacing:42.755776pt;}
.wsedb_c00000{word-spacing:42.841600pt;}
.wseda_c00000{word-spacing:42.873600pt;}
.ws17e2_c00000{word-spacing:42.901056pt;}
.ws195d_c00000{word-spacing:42.960416pt;}
.ws11a8_c00000{word-spacing:43.163488pt;}
.ws160c_c00000{word-spacing:43.240704pt;}
.wsd63_c00000{word-spacing:43.276800pt;}
.ws160d_c00000{word-spacing:43.281696pt;}
.ws1ade_c00000{word-spacing:43.350528pt;}
.wsd62_c00000{word-spacing:43.360000pt;}
.wsea9_c00000{word-spacing:43.379200pt;}
.ws19c6_c00000{word-spacing:43.404800pt;}
.ws15c4_c00000{word-spacing:43.436800pt;}
.wseaa_c00000{word-spacing:43.494400pt;}
.ws15c5_c00000{word-spacing:43.507200pt;}
.ws19c7_c00000{word-spacing:43.526400pt;}
.ws16b2_c00000{word-spacing:43.562784pt;}
.ws16b1_c00000{word-spacing:43.574496pt;}
.ws116e_c00000{word-spacing:43.574976pt;}
.ws187e_c00000{word-spacing:43.601696pt;}
.ws2fc_c00000{word-spacing:43.840000pt;}
.ws2fd_c00000{word-spacing:43.846400pt;}
.ws138f_c00000{word-spacing:43.994272pt;}
.ws18ac_c00000{word-spacing:44.006400pt;}
.ws1375_c00000{word-spacing:44.032576pt;}
.ws6d7_c00000{word-spacing:44.057600pt;}
.ws1376_c00000{word-spacing:44.058112pt;}
.ws1a90_c00000{word-spacing:44.114720pt;}
.ws1ae4_c00000{word-spacing:44.184192pt;}
.ws10d5_c00000{word-spacing:44.210912pt;}
.ws18ad_c00000{word-spacing:44.326400pt;}
.wsf78_c00000{word-spacing:44.358400pt;}
.wsc60_c00000{word-spacing:44.384000pt;}
.ws19d5_c00000{word-spacing:44.409600pt;}
.ws1993_c00000{word-spacing:44.422400pt;}
.wsc61_c00000{word-spacing:44.435200pt;}
.ws1992_c00000{word-spacing:44.467200pt;}
.ws115b_c00000{word-spacing:44.552928pt;}
.wscd5_c00000{word-spacing:44.755200pt;}
.ws132d_c00000{word-spacing:44.793408pt;}
.ws1857_c00000{word-spacing:44.812800pt;}
.ws98b_c00000{word-spacing:44.864000pt;}
.ws1862_c00000{word-spacing:45.017600pt;}
.ws13ce_c00000{word-spacing:45.062400pt;}
.ws13b4_c00000{word-spacing:45.088000pt;}
.ws1861_c00000{word-spacing:45.107200pt;}
.ws131d_c00000{word-spacing:45.124736pt;}
.ws98a_c00000{word-spacing:45.126400pt;}
.ws13a6_c00000{word-spacing:45.280000pt;}
.ws1417_c00000{word-spacing:45.290400pt;}
.ws13fc_c00000{word-spacing:45.433600pt;}
.ws17c8_c00000{word-spacing:45.440000pt;}
.ws13a7_c00000{word-spacing:45.446400pt;}
.wsfc3_c00000{word-spacing:45.493472pt;}
.ws1669_c00000{word-spacing:45.644800pt;}
.ws72b_c00000{word-spacing:45.753600pt;}
.ws72c_c00000{word-spacing:45.779200pt;}
.ws11b3_c00000{word-spacing:45.851520pt;}
.ws1146_c00000{word-spacing:45.894272pt;}
.ws157e_c00000{word-spacing:46.059936pt;}
.wsd55_c00000{word-spacing:46.208000pt;}
.wsfe6_c00000{word-spacing:46.423328pt;}
.wsd54_c00000{word-spacing:46.425600pt;}
.ws17d3_c00000{word-spacing:46.470400pt;}
.ws17d2_c00000{word-spacing:46.707200pt;}
.ws10f0_c00000{word-spacing:46.722592pt;}
.ws1934_c00000{word-spacing:46.818720pt;}
.wsf5c_c00000{word-spacing:46.969600pt;}
.ws1577_c00000{word-spacing:47.000480pt;}
.wsdcf_c00000{word-spacing:47.001600pt;}
.ws15a6_c00000{word-spacing:47.027200pt;}
.ws15a7_c00000{word-spacing:47.046400pt;}
.ws155a_c00000{word-spacing:47.048576pt;}
.ws1037_c00000{word-spacing:47.164800pt;}
.ws1158_c00000{word-spacing:47.203552pt;}
.ws15f4_c00000{word-spacing:47.283200pt;}
.ws11e8_c00000{word-spacing:47.369184pt;}
.ws11e7_c00000{word-spacing:47.380896pt;}
.wsf64_c00000{word-spacing:47.603200pt;}
.ws156b_c00000{word-spacing:47.695200pt;}
.ws952_c00000{word-spacing:48.000000pt;}
.ws953_c00000{word-spacing:48.012800pt;}
.ws19ed_c00000{word-spacing:48.294400pt;}
.ws19ee_c00000{word-spacing:48.313600pt;}
.ws777_c00000{word-spacing:48.622368pt;}
.ws776_c00000{word-spacing:48.680928pt;}
.wsfd6_c00000{word-spacing:48.721248pt;}
.ws1035_c00000{word-spacing:48.787200pt;}
.ws1ace_c00000{word-spacing:49.068608pt;}
.ws1a10_c00000{word-spacing:49.120000pt;}
.ws1323_c00000{word-spacing:49.127392pt;}
.ws1a0f_c00000{word-spacing:49.267200pt;}
.ws127b_c00000{word-spacing:49.432000pt;}
.wsfed_c00000{word-spacing:49.469408pt;}
.ws11f6_c00000{word-spacing:49.510400pt;}
.ws10d8_c00000{word-spacing:49.661792pt;}
.ws10d9_c00000{word-spacing:49.704544pt;}
.wsfe4_c00000{word-spacing:49.977088pt;}
.ws156e_c00000{word-spacing:50.067936pt;}
.ws10f1_c00000{word-spacing:50.132064pt;}
.ws1325_c00000{word-spacing:50.303072pt;}
.ws1326_c00000{word-spacing:50.655776pt;}
.ws125c_c00000{word-spacing:50.880224pt;}
.ws117d_c00000{word-spacing:51.361184pt;}
.ws17d5_c00000{word-spacing:51.462400pt;}
.ws1383_c00000{word-spacing:51.740192pt;}
.ws180d_c00000{word-spacing:52.076800pt;}
.ws180b_c00000{word-spacing:52.140800pt;}
.ws180c_c00000{word-spacing:52.179200pt;}
.wsfe1_c00000{word-spacing:52.248288pt;}
.ws18c8_c00000{word-spacing:52.467392pt;}
.wsecc_c00000{word-spacing:52.678400pt;}
.wsecb_c00000{word-spacing:52.768000pt;}
.ws1259_c00000{word-spacing:52.814752pt;}
.ws1a6c_c00000{word-spacing:53.065920pt;}
.ws1887_c00000{word-spacing:53.188832pt;}
.ws1a69_c00000{word-spacing:53.252960pt;}
.ws10b5_c00000{word-spacing:53.280000pt;}
.ws1a6a_c00000{word-spacing:53.322432pt;}
.ws12e0_c00000{word-spacing:53.433600pt;}
.ws12df_c00000{word-spacing:53.446400pt;}
.ws188e_c00000{word-spacing:54.166784pt;}
.wsc94_c00000{word-spacing:54.214400pt;}
.wsc95_c00000{word-spacing:54.297600pt;}
.ws127a_c00000{word-spacing:54.417952pt;}
.ws133a_c00000{word-spacing:54.423296pt;}
.ws1149_c00000{word-spacing:54.524832pt;}
.ws187c_c00000{word-spacing:54.562240pt;}
.ws1385_c00000{word-spacing:54.604480pt;}
.ws133b_c00000{word-spacing:54.610336pt;}
.ws113b_c00000{word-spacing:54.681600pt;}
.ws113c_c00000{word-spacing:54.726400pt;}
.ws1956_c00000{word-spacing:54.741888pt;}
.ws14d9_c00000{word-spacing:55.046400pt;}
.ws14d8_c00000{word-spacing:55.136000pt;}
.ws1114_c00000{word-spacing:55.433312pt;}
.ws1a65_c00000{word-spacing:55.620352pt;}
.ws1590_c00000{word-spacing:56.627200pt;}
.ws1591_c00000{word-spacing:56.659200pt;}
.ws10be_c00000{word-spacing:56.764800pt;}
.ws196e_c00000{word-spacing:56.812064pt;}
.ws1885_c00000{word-spacing:57.036512pt;}
.ws1120_c00000{word-spacing:57.127360pt;}
.ws124e_c00000{word-spacing:57.619008pt;}
.ws1a6f_c00000{word-spacing:58.132032pt;}
.ws167e_c00000{word-spacing:58.571712pt;}
.ws167d_c00000{word-spacing:58.600992pt;}
.wse90_c00000{word-spacing:58.746592pt;}
.ws1ad6_c00000{word-spacing:58.880192pt;}
.ws1ad9_c00000{word-spacing:58.955008pt;}
.ws157a_c00000{word-spacing:59.200832pt;}
.ws1ada_c00000{word-spacing:59.243584pt;}
.wseb7_c00000{word-spacing:59.392000pt;}
.ws1358_c00000{word-spacing:59.456000pt;}
.ws13f0_c00000{word-spacing:59.462400pt;}
.wseb6_c00000{word-spacing:59.507200pt;}
.ws13f1_c00000{word-spacing:59.520000pt;}
.ws17cf_c00000{word-spacing:59.814400pt;}
.ws17ce_c00000{word-spacing:59.827200pt;}
.ws1386_c00000{word-spacing:60.035136pt;}
.ws18a5_c00000{word-spacing:60.248256pt;}
.ws1263_c00000{word-spacing:60.558208pt;}
.ws661_c00000{word-spacing:60.843840pt;}
.ws10bd_c00000{word-spacing:60.940800pt;}
.wsfe7_c00000{word-spacing:61.220864pt;}
.ws1306_c00000{word-spacing:61.343776pt;}
.ws1573_c00000{word-spacing:61.450656pt;}
.ws1089_c00000{word-spacing:62.198816pt;}
.ws12c_c00000{word-spacing:62.252800pt;}
.ws12d_c00000{word-spacing:62.361600pt;}
.ws1196_c00000{word-spacing:62.455328pt;}
.ws1088_c00000{word-spacing:62.519456pt;}
.wsfdb_c00000{word-spacing:62.797344pt;}
.ws131f_c00000{word-spacing:62.856128pt;}
.wse88_c00000{word-spacing:63.692800pt;}
.wsfe2_c00000{word-spacing:64.624992pt;}
.wse8b_c00000{word-spacing:65.378496pt;}
.ws1415_c00000{word-spacing:65.442624pt;}
.ws1895_c00000{word-spacing:66.869472pt;}
.ws1574_c00000{word-spacing:67.345088pt;}
.ws189a_c00000{word-spacing:67.916896pt;}
.ws123b_c00000{word-spacing:69.119296pt;}
.ws188c_c00000{word-spacing:69.418560pt;}
.wsfe8_c00000{word-spacing:69.600256pt;}
.ws1379_c00000{word-spacing:69.645184pt;}
.ws1888_c00000{word-spacing:70.166720pt;}
.ws1a64_c00000{word-spacing:70.957632pt;}
.ws1a66_c00000{word-spacing:70.984352pt;}
.ws18a3_c00000{word-spacing:71.347744pt;}
.ws1184_c00000{word-spacing:72.395168pt;}
.ws115a_c00000{word-spacing:72.721152pt;}
.ws10db_c00000{word-spacing:72.844064pt;}
.ws18bc_c00000{word-spacing:73.057824pt;}
.ws10a1_c00000{word-spacing:73.406400pt;}
.ws14e2_c00000{word-spacing:73.542400pt;}
.ws14e1_c00000{word-spacing:73.548800pt;}
.ws126e_c00000{word-spacing:74.030432pt;}
.ws126f_c00000{word-spacing:74.089216pt;}
.wsfb5_c00000{word-spacing:75.339712pt;}
.ws1aef_c00000{word-spacing:76.510048pt;}
.ws129c_c00000{word-spacing:78.091872pt;}
.ws10fa_c00000{word-spacing:80.202752pt;}
.ws1418_c00000{word-spacing:80.218784pt;}
.ws1197_c00000{word-spacing:80.710432pt;}
.ws18a8_c00000{word-spacing:80.747840pt;}
.ws128d_c00000{word-spacing:81.202080pt;}
.ws128c_c00000{word-spacing:81.522720pt;}
.ws1a62_c00000{word-spacing:82.185376pt;}
.ws1a67_c00000{word-spacing:82.196064pt;}
.ws1300_c00000{word-spacing:82.885440pt;}
.ws1568_c00000{word-spacing:82.960256pt;}
.wsfdf_c00000{word-spacing:83.633600pt;}
.wsfcf_c00000{word-spacing:84.013024pt;}
.ws1a8e_c00000{word-spacing:84.077152pt;}
.ws1176_c00000{word-spacing:84.258848pt;}
.ws1419_c00000{word-spacing:85.033728pt;}
.ws188d_c00000{word-spacing:85.888768pt;}
.ws1a9f_c00000{word-spacing:86.018784pt;}
.ws1a96_c00000{word-spacing:86.329152pt;}
.ws143b_c00000{word-spacing:86.796864pt;}
.ws128e_c00000{word-spacing:88.010336pt;}
.ws1883_c00000{word-spacing:88.416480pt;}
.ws1893_c00000{word-spacing:88.432512pt;}
.ws13cc_c00000{word-spacing:88.947200pt;}
.ws10df_c00000{word-spacing:90.671648pt;}
.ws1a68_c00000{word-spacing:93.076448pt;}
.ws128f_c00000{word-spacing:94.321600pt;}
.ws128b_c00000{word-spacing:94.642240pt;}
.wsfd1_c00000{word-spacing:95.705696pt;}
.ws8b7_c00000{word-spacing:98.361600pt;}
.ws1a7b_c00000{word-spacing:106.675200pt;}
.ws1439_c00000{word-spacing:108.238592pt;}
.ws1a6b_c00000{word-spacing:109.038976pt;}
.ws1ae9_c00000{word-spacing:109.717664pt;}
.ws1964_c00000{word-spacing:109.829280pt;}
.ws1a63_c00000{word-spacing:111.278112pt;}
.wsfbf_c00000{word-spacing:112.079712pt;}
.wsfda_c00000{word-spacing:114.730336pt;}
.ws1a93_c00000{word-spacing:115.761408pt;}
.ws1a94_c00000{word-spacing:115.767264pt;}
.ws1102_c00000{word-spacing:117.637472pt;}
.ws1a89_c00000{word-spacing:119.887296pt;}
.wsfc1_c00000{word-spacing:125.193888pt;}
.wsc99_c00000{word-spacing:127.680000pt;}
.ws1899_c00000{word-spacing:127.796416pt;}
.ws140d_c00000{word-spacing:128.742304pt;}
.ws1a80_c00000{word-spacing:130.656000pt;}
.ws1a7d_c00000{word-spacing:130.665600pt;}
.ws1aa4_c00000{word-spacing:132.427584pt;}
.ws1a88_c00000{word-spacing:133.375552pt;}
.wsd46_c00000{word-spacing:134.668800pt;}
.ws10d7_c00000{word-spacing:135.229920pt;}
.ws1562_c00000{word-spacing:137.591968pt;}
.ws1a95_c00000{word-spacing:144.883296pt;}
.ws1881_c00000{word-spacing:145.971360pt;}
.wsfc6_c00000{word-spacing:146.505760pt;}
.ws106c_c00000{word-spacing:147.611968pt;}
.ws189c_c00000{word-spacing:153.955296pt;}
.ws13cd_c00000{word-spacing:155.846400pt;}
.ws1a8b_c00000{word-spacing:159.919200pt;}
.ws1a86_c00000{word-spacing:159.940576pt;}
.ws1a8a_c00000{word-spacing:160.261216pt;}
.ws22_c00000{word-spacing:170.108640pt;}
.ws1aa9_c00000{word-spacing:170.503296pt;}
.ws6aa_c00000{word-spacing:172.697600pt;}
.wsc0_c00000{word-spacing:172.723200pt;}
.wscf_c00000{word-spacing:172.736000pt;}
.wsbf_c00000{word-spacing:172.742400pt;}
.wsce_c00000{word-spacing:172.748800pt;}
.wsc5_c00000{word-spacing:172.755200pt;}
.wsd3_c00000{word-spacing:172.761600pt;}
.wsd0_c00000{word-spacing:172.768000pt;}
.wsaa_c00000{word-spacing:172.774400pt;}
.wsb9_c00000{word-spacing:172.780800pt;}
.wsb1_c00000{word-spacing:172.787200pt;}
.wsb2_c00000{word-spacing:172.793600pt;}
.wsa9_c00000{word-spacing:172.800000pt;}
.wsb4_c00000{word-spacing:172.806400pt;}
.wsba_c00000{word-spacing:172.812800pt;}
.wsc3_c00000{word-spacing:172.819200pt;}
.wsb7_c00000{word-spacing:172.825600pt;}
.wsbc_c00000{word-spacing:172.832000pt;}
.wsd2_c00000{word-spacing:172.864000pt;}
.ws57e_c00000{word-spacing:174.046176pt;}
.ws580_c00000{word-spacing:174.057888pt;}
.ws582_c00000{word-spacing:174.087168pt;}
.ws23d_c00000{word-spacing:175.320608pt;}
.ws54d_c00000{word-spacing:175.336640pt;}
.ws556_c00000{word-spacing:175.341984pt;}
.ws24c_c00000{word-spacing:175.347328pt;}
.ws54c_c00000{word-spacing:175.352672pt;}
.ws23e_c00000{word-spacing:175.363360pt;}
.ws23c_c00000{word-spacing:175.379392pt;}
.ws553_c00000{word-spacing:175.438176pt;}
.ws243_c00000{word-spacing:175.448864pt;}
.ws54b_c00000{word-spacing:175.459552pt;}
.ws554_c00000{word-spacing:175.464896pt;}
.ws1470_c00000{word-spacing:175.480928pt;}
.ws548_c00000{word-spacing:175.486272pt;}
.ws23b_c00000{word-spacing:175.539712pt;}
.ws18c7_c00000{word-spacing:176.314592pt;}
.ws1a82_c00000{word-spacing:176.716800pt;}
.ws1a81_c00000{word-spacing:176.736000pt;}
.ws1a7f_c00000{word-spacing:176.745600pt;}
.ws129d_c00000{word-spacing:178.655264pt;}
.ws1459_c00000{word-spacing:184.560384pt;}
.ws145a_c00000{word-spacing:184.907744pt;}
.ws1a8c_c00000{word-spacing:186.799520pt;}
.ws1a87_c00000{word-spacing:186.815552pt;}
.ws1290_c00000{word-spacing:188.573728pt;}
.ws129a_c00000{word-spacing:190.577728pt;}
.ws189d_c00000{word-spacing:191.186944pt;}
.ws1a7c_c00000{word-spacing:192.758400pt;}
.ws1a9e_c00000{word-spacing:195.120128pt;}
.ws1aa3_c00000{word-spacing:197.679904pt;}
.ws128a_c00000{word-spacing:200.496192pt;}
.ws1a75_c00000{word-spacing:202.636672pt;}
.ws1896_c00000{word-spacing:205.925696pt;}
.ws10ef_c00000{word-spacing:209.789408pt;}
.ws1458_c00000{word-spacing:211.120064pt;}
.ws1a7e_c00000{word-spacing:212.616000pt;}
.ws1a8f_c00000{word-spacing:213.038560pt;}
.ws1a77_c00000{word-spacing:217.038976pt;}
.ws1a76_c00000{word-spacing:238.157248pt;}
.ws1aa8_c00000{word-spacing:242.721600pt;}
.ws1413_c00000{word-spacing:256.105856pt;}
.ws10dd_c00000{word-spacing:259.702368pt;}
.ws129b_c00000{word-spacing:266.045696pt;}
.ws1a8d_c00000{word-spacing:283.750368pt;}
.ws1aea_c00000{word-spacing:289.265376pt;}
.ws1aed_c00000{word-spacing:310.117664pt;}
.ws1aa2_c00000{word-spacing:323.145792pt;}
.ws1aa1_c00000{word-spacing:388.401920pt;}
.ws1aa6_c00000{word-spacing:510.660768pt;}
.ws1aa5_c00000{word-spacing:575.917536pt;}
.ws1aa7_c00000{word-spacing:576.238176pt;}
.ws1a9d_c00000{word-spacing:578.477312pt;}
.ws141c_c00000{word-spacing:762.113184pt;}
._10c_c00000{margin-left:-1816.640000pt;}
._10d_c00000{margin-left:-1776.640000pt;}
._181_c00000{margin-left:-638.909696pt;}
._21f_c00000{margin-left:-483.519776pt;}
._22b_c00000{margin-left:-443.519936pt;}
._22d_c00000{margin-left:-442.237376pt;}
._221_c00000{margin-left:-292.279488pt;}
._21c_c00000{margin-left:-234.827840pt;}
._1cc_c00000{margin-left:-212.326400pt;}
._1cb_c00000{margin-left:-211.069312pt;}
._84_c00000{margin-left:-187.955200pt;}
._9a_c00000{margin-left:-185.702400pt;}
._45_c00000{margin-left:-183.980800pt;}
._88_c00000{margin-left:-182.822400pt;}
._1c_c00000{margin-left:-178.970240pt;}
._50_c00000{margin-left:-177.958400pt;}
._73_c00000{margin-left:-176.089600pt;}
._a9_c00000{margin-left:-175.112192pt;}
._43_c00000{margin-left:-173.772800pt;}
._6_c00000{margin-left:-172.748800pt;}
._3_c00000{margin-left:-170.980992pt;}
._2_c00000{margin-left:-169.922240pt;}
._7_c00000{margin-left:-167.411200pt;}
._49_c00000{margin-left:-166.502400pt;}
._1b_c00000{margin-left:-165.004800pt;}
._8a_c00000{margin-left:-163.724800pt;}
._7e_c00000{margin-left:-162.291200pt;}
._53_c00000{margin-left:-161.382400pt;}
._34_c00000{margin-left:-156.499200pt;}
._9b_c00000{margin-left:-154.547200pt;}
._5d_c00000{margin-left:-152.102400pt;}
._78_c00000{margin-left:-150.988800pt;}
._80_c00000{margin-left:-148.211200pt;}
._70_c00000{margin-left:-146.342400pt;}
._7c_c00000{margin-left:-144.653440pt;}
._3c_c00000{margin-left:-142.092800pt;}
._a1_c00000{margin-left:-138.240000pt;}
._4a_c00000{margin-left:-136.844800pt;}
._e3_c00000{margin-left:-135.040000pt;}
._61_c00000{margin-left:-133.337600pt;}
._8e_c00000{margin-left:-130.982400pt;}
._d_c00000{margin-left:-129.907200pt;}
._77_c00000{margin-left:-127.731200pt;}
._c_c00000{margin-left:-126.553600pt;}
._7d_c00000{margin-left:-125.209600pt;}
._51_c00000{margin-left:-124.300800pt;}
._60_c00000{margin-left:-122.412800pt;}
._2e_c00000{margin-left:-120.307200pt;}
._a0_c00000{margin-left:-118.489600pt;}
._9e_c00000{margin-left:-117.491200pt;}
._48_c00000{margin-left:-116.582400pt;}
._8f_c00000{margin-left:-115.609600pt;}
._112_c00000{margin-left:-111.990880pt;}
._ad_c00000{margin-left:-108.513216pt;}
._b4_c00000{margin-left:-106.097184pt;}
._44_c00000{margin-left:-104.960000pt;}
._75_c00000{margin-left:-103.680000pt;}
._94_c00000{margin-left:-102.707840pt;}
._2c_c00000{margin-left:-100.448000pt;}
._220_c00000{margin-left:-98.718560pt;}
._36_c00000{margin-left:-97.753600pt;}
._82_c00000{margin-left:-95.129600pt;}
._4d_c00000{margin-left:-91.980800pt;}
._21d_c00000{margin-left:-90.955104pt;}
._2b_c00000{margin-left:-89.753600pt;}
._b6_c00000{margin-left:-87.810592pt;}
._1d_c00000{margin-left:-86.771200pt;}
._b_c00000{margin-left:-85.696000pt;}
._91_c00000{margin-left:-84.531200pt;}
._96_c00000{margin-left:-81.280640pt;}
._98_c00000{margin-left:-79.888992pt;}
._32_c00000{margin-left:-78.604800pt;}
._223_c00000{margin-left:-77.365664pt;}
._ba_c00000{margin-left:-75.840000pt;}
._30_c00000{margin-left:-72.793600pt;}
._12e_c00000{margin-left:-69.760096pt;}
._71_c00000{margin-left:-66.854400pt;}
._7a_c00000{margin-left:-63.360000pt;}
._93_c00000{margin-left:-61.862400pt;}
._37_c00000{margin-left:-59.513600pt;}
._4f_c00000{margin-left:-58.329600pt;}
._22_c00000{margin-left:-56.390400pt;}
._2a_c00000{margin-left:-54.924800pt;}
._4e_c00000{margin-left:-53.632000pt;}
._aa_c00000{margin-left:-51.710752pt;}
._56_c00000{margin-left:-50.278400pt;}
._224_c00000{margin-left:-48.553728pt;}
._6f_c00000{margin-left:-46.182400pt;}
._86_c00000{margin-left:-44.972800pt;}
._63_c00000{margin-left:-43.622400pt;}
._b0_c00000{margin-left:-40.670016pt;}
._218_c00000{margin-left:-39.630784pt;}
._47_c00000{margin-left:-38.080000pt;}
._95_c00000{margin-left:-35.929600pt;}
._1fe_c00000{margin-left:-34.777600pt;}
._e_c00000{margin-left:-33.753600pt;}
._1fb_c00000{margin-left:-29.914880pt;}
._85_c00000{margin-left:-28.902400pt;}
._b5_c00000{margin-left:-27.662240pt;}
._ef_c00000{margin-left:-25.920000pt;}
._209_c00000{margin-left:-24.409600pt;}
._b2_c00000{margin-left:-22.656448pt;}
._b1_c00000{margin-left:-20.941088pt;}
._5e_c00000{margin-left:-19.622400pt;}
._bb_c00000{margin-left:-17.919360pt;}
._111_c00000{margin-left:-16.886816pt;}
._87_c00000{margin-left:-15.731200pt;}
._18_c00000{margin-left:-13.632000pt;}
._a7_c00000{margin-left:-12.480000pt;}
._1a_c00000{margin-left:-11.360000pt;}
._59_c00000{margin-left:-9.799040pt;}
._5_c00000{margin-left:-8.846720pt;}
._1f_c00000{margin-left:-7.833600pt;}
._4_c00000{margin-left:-6.931200pt;}
._bc_c00000{margin-left:-5.408000pt;}
._12_c00000{margin-left:-4.281600pt;}
._bd_c00000{margin-left:-3.191392pt;}
._5f_c00000{margin-left:-2.099200pt;}
._1_c00000{margin-left:-1.036160pt;}
._0_c00000{width:1.092192pt;}
._52_c00000{width:2.009600pt;}
._20a_c00000{width:2.937600pt;}
._9d_c00000{width:3.840000pt;}
._76_c00000{width:4.800000pt;}
._8d_c00000{width:6.297600pt;}
._232_c00000{width:7.219200pt;}
._b8_c00000{width:8.204352pt;}
._bf_c00000{width:9.312000pt;}
._3f_c00000{width:10.284800pt;}
._6d_c00000{width:11.840000pt;}
._7b_c00000{width:12.800000pt;}
._be_c00000{width:14.348800pt;}
._1fd_c00000{width:16.591648pt;}
._13_c00000{width:17.548800pt;}
._20_c00000{width:18.688000pt;}
._f7_c00000{width:19.724800pt;}
._6b_c00000{width:20.709120pt;}
._b9_c00000{width:21.930752pt;}
._b7_c00000{width:23.564320pt;}
._6c_c00000{width:24.550400pt;}
._e6_c00000{width:25.510400pt;}
._17_c00000{width:26.880000pt;}
._54_c00000{width:28.288000pt;}
._e2_c00000{width:29.440000pt;}
._e4_c00000{width:31.040000pt;}
._e5_c00000{width:32.640000pt;}
._15_c00000{width:34.259200pt;}
._6a_c00000{width:35.723520pt;}
._42_c00000{width:37.888000pt;}
._20b_c00000{width:39.157440pt;}
._55_c00000{width:40.473600pt;}
._231_c00000{width:41.548800pt;}
._ac_c00000{width:42.781920pt;}
._92_c00000{width:44.659200pt;}
._81_c00000{width:46.976000pt;}
._90_c00000{width:47.923200pt;}
._99_c00000{width:49.100160pt;}
._f4_c00000{width:51.519360pt;}
._2f_c00000{width:52.480000pt;}
._ed_c00000{width:53.708800pt;}
._8_c00000{width:54.694400pt;}
._20c_c00000{width:55.868704pt;}
._c0_c00000{width:57.600000pt;}
._33_c00000{width:58.688000pt;}
._b3_c00000{width:60.379552pt;}
._97_c00000{width:61.440000pt;}
._113_c00000{width:62.865568pt;}
._38_c00000{width:63.776000pt;}
._1ff_c00000{width:65.489024pt;}
._f_c00000{width:67.168000pt;}
._4c_c00000{width:68.940800pt;}
._39_c00000{width:70.080000pt;}
._110_c00000{width:71.111360pt;}
._57_c00000{width:72.128000pt;}
._67_c00000{width:73.676800pt;}
._83_c00000{width:74.636800pt;}
._5b_c00000{width:75.686400pt;}
._3b_c00000{width:77.081600pt;}
._65_c00000{width:78.616960pt;}
._a2_c00000{width:79.884800pt;}
._58_c00000{width:81.612800pt;}
._72_c00000{width:82.880000pt;}
._a5_c00000{width:84.294400pt;}
._ae_c00000{width:85.229152pt;}
._188_c00000{width:86.610688pt;}
._64_c00000{width:87.551360pt;}
._46_c00000{width:89.139200pt;}
._200_c00000{width:90.252800pt;}
._40_c00000{width:92.339200pt;}
._a3_c00000{width:94.451200pt;}
._6e_c00000{width:95.424000pt;}
._20d_c00000{width:96.542272pt;}
._a6_c00000{width:97.862400pt;}
._12c_c00000{width:98.859968pt;}
._5a_c00000{width:100.563200pt;}
._222_c00000{width:101.664992pt;}
._8b_c00000{width:102.592000pt;}
._89_c00000{width:103.795200pt;}
._29_c00000{width:105.331200pt;}
._21_c00000{width:106.291200pt;}
._8c_c00000{width:107.641600pt;}
._13d_c00000{width:108.900896pt;}
._153_c00000{width:110.093568pt;}
._1de_c00000{width:111.045621pt;}
._3a_c00000{width:112.051200pt;}
._79_c00000{width:113.139200pt;}
._fa_c00000{width:114.387392pt;}
._21a_c00000{width:115.351424pt;}
._3e_c00000{width:116.837760pt;}
._41_c00000{width:118.719360pt;}
._66_c00000{width:120.434560pt;}
._25_c00000{width:122.169600pt;}
._69_c00000{width:124.172160pt;}
._1fc_c00000{width:125.414080pt;}
._152_c00000{width:126.736000pt;}
._178_c00000{width:128.403712pt;}
._a8_c00000{width:130.944000pt;}
._68_c00000{width:132.172160pt;}
._35_c00000{width:133.791360pt;}
._7f_c00000{width:135.161600pt;}
._16_c00000{width:136.704000pt;}
._28_c00000{width:137.984000pt;}
._21e_c00000{width:138.875552pt;}
._5c_c00000{width:139.840000pt;}
._a_c00000{width:140.774400pt;}
._11_c00000{width:142.131200pt;}
._131_c00000{width:143.224512pt;}
._207_c00000{width:144.121056pt;}
._62_c00000{width:145.120000pt;}
._27_c00000{width:146.291200pt;}
._26_c00000{width:147.392000pt;}
._9c_c00000{width:148.563200pt;}
._2d_c00000{width:149.824000pt;}
._22e_c00000{width:150.715200pt;}
._fb_c00000{width:151.660800pt;}
._10_c00000{width:152.972160pt;}
._14_c00000{width:154.514560pt;}
._169_c00000{width:155.648000pt;}
._31_c00000{width:156.800000pt;}
._24_c00000{width:158.335360pt;}
._4b_c00000{width:159.987200pt;}
._1e_c00000{width:161.100800pt;}
._228_c00000{width:163.119008pt;}
._19_c00000{width:164.390400pt;}
._23_c00000{width:166.220800pt;}
._a4_c00000{width:168.460800pt;}
._1c9_c00000{width:169.490816pt;}
._fc_c00000{width:170.880000pt;}
._74_c00000{width:171.813760pt;}
._9_c00000{width:172.774400pt;}
._3d_c00000{width:173.695360pt;}
._af_c00000{width:174.606656pt;}
._ab_c00000{width:176.109376pt;}
._109_c00000{width:177.784896pt;}
._119_c00000{width:180.559936pt;}
._160_c00000{width:181.760000pt;}
._9f_c00000{width:183.027200pt;}
._149_c00000{width:183.931552pt;}
._100_c00000{width:185.737152pt;}
._156_c00000{width:188.170528pt;}
._c8_c00000{width:189.440000pt;}
._205_c00000{width:190.419200pt;}
._179_c00000{width:191.343104pt;}
._164_c00000{width:193.830400pt;}
._166_c00000{width:195.481600pt;}
._144_c00000{width:197.282624pt;}
._165_c00000{width:198.636896pt;}
._155_c00000{width:200.872768pt;}
._204_c00000{width:201.959424pt;}
._148_c00000{width:205.604896pt;}
._219_c00000{width:206.624224pt;}
._15c_c00000{width:208.512000pt;}
._130_c00000{width:211.561504pt;}
._206_c00000{width:215.251680pt;}
._15f_c00000{width:217.000672pt;}
._f5_c00000{width:218.265600pt;}
._f6_c00000{width:220.275200pt;}
._115_c00000{width:222.887744pt;}
._122_c00000{width:224.316736pt;}
._13c_c00000{width:225.704224pt;}
._212_c00000{width:227.264288pt;}
._16f_c00000{width:230.227328pt;}
._15b_c00000{width:233.280000pt;}
._21b_c00000{width:235.539392pt;}
._f0_c00000{width:237.760000pt;}
._f1_c00000{width:239.648000pt;}
._e0_c00000{width:240.960000pt;}
._173_c00000{width:242.941440pt;}
._138_c00000{width:244.928544pt;}
._150_c00000{width:247.350720pt;}
._203_c00000{width:248.679424pt;}
._c3_c00000{width:249.715200pt;}
._140_c00000{width:250.946528pt;}
._f3_c00000{width:253.964800pt;}
._fd_c00000{width:257.472864pt;}
._f2_c00000{width:259.232000pt;}
._163_c00000{width:263.142304pt;}
._15a_c00000{width:264.279328pt;}
._124_c00000{width:267.640160pt;}
._1f7_c00000{width:274.605909pt;}
._133_c00000{width:275.815936pt;}
._fe_c00000{width:279.035648pt;}
._ee_c00000{width:282.009600pt;}
._216_c00000{width:286.721632pt;}
._217_c00000{width:290.237984pt;}
._16d_c00000{width:292.127616pt;}
._139_c00000{width:293.068160pt;}
._ff_c00000{width:295.232864pt;}
._182_c00000{width:296.946688pt;}
._dd_c00000{width:297.958400pt;}
._103_c00000{width:299.600000pt;}
._d8_c00000{width:301.408000pt;}
._1ca_c00000{width:303.104000pt;}
._141_c00000{width:307.053376pt;}
._114_c00000{width:309.303936pt;}
._1f4_c00000{width:310.299136pt;}
._1d8_c00000{width:311.220896pt;}
._ea_c00000{width:315.562272pt;}
._17d_c00000{width:317.294880pt;}
._210_c00000{width:321.457920pt;}
._d5_c00000{width:329.817600pt;}
._13e_c00000{width:330.806112pt;}
._11e_c00000{width:333.708800pt;}
._14f_c00000{width:339.007424pt;}
._22f_c00000{width:340.720608pt;}
._16e_c00000{width:345.541696pt;}
._1d7_c00000{width:349.324800pt;}
._c7_c00000{width:356.313600pt;}
._214_c00000{width:358.957696pt;}
._20e_c00000{width:366.267520pt;}
._208_c00000{width:367.538304pt;}
._ca_c00000{width:372.857600pt;}
._d4_c00000{width:374.387200pt;}
._145_c00000{width:375.577056pt;}
._146_c00000{width:377.121856pt;}
._11d_c00000{width:378.060128pt;}
._16c_c00000{width:381.048000pt;}
._da_c00000{width:383.398400pt;}
._174_c00000{width:384.333408pt;}
._230_c00000{width:386.691200pt;}
._1ef_c00000{width:387.927488pt;}
._df_c00000{width:390.169600pt;}
._1e8_c00000{width:392.976213pt;}
._14d_c00000{width:396.659200pt;}
._116_c00000{width:397.726208pt;}
._22c_c00000{width:400.199424pt;}
._121_c00000{width:406.154336pt;}
._1f8_c00000{width:408.564608pt;}
._14a_c00000{width:410.137952pt;}
._cb_c00000{width:411.468160pt;}
._1f3_c00000{width:412.506912pt;}
._16a_c00000{width:414.265600pt;}
._dc_c00000{width:415.302400pt;}
._123_c00000{width:417.289632pt;}
._14c_c00000{width:418.867008pt;}
._1d9_c00000{width:421.054560pt;}
._143_c00000{width:426.706560pt;}
._d3_c00000{width:429.056000pt;}
._d7_c00000{width:431.436800pt;}
._c6_c00000{width:432.844800pt;}
._e1_c00000{width:435.520000pt;}
._177_c00000{width:437.035648pt;}
._1e4_c00000{width:438.856469pt;}
._d6_c00000{width:440.000000pt;}
._19f_c00000{width:441.119008pt;}
._14b_c00000{width:442.649536pt;}
._11c_c00000{width:444.310848pt;}
._183_c00000{width:448.060128pt;}
._de_c00000{width:450.816000pt;}
._102_c00000{width:454.160000pt;}
._193_c00000{width:455.391904pt;}
._1e9_c00000{width:458.198037pt;}
._f9_c00000{width:460.078912pt;}
._135_c00000{width:461.045568pt;}
._20f_c00000{width:462.506176pt;}
._1e6_c00000{width:463.908597pt;}
._18d_c00000{width:464.868960pt;}
._186_c00000{width:469.376768pt;}
._1d4_c00000{width:470.906197pt;}
._ce_c00000{width:472.006400pt;}
._213_c00000{width:473.810112pt;}
._cc_c00000{width:475.545600pt;}
._1c8_c00000{width:479.312352pt;}
._e7_c00000{width:480.760832pt;}
._161_c00000{width:485.312000pt;}
._cf_c00000{width:486.329600pt;}
._d9_c00000{width:488.544000pt;}
._185_c00000{width:492.078656pt;}
._1e5_c00000{width:493.413760pt;}
._14e_c00000{width:495.981472pt;}
._1e0_c00000{width:496.981589pt;}
._c2_c00000{width:500.492800pt;}
._120_c00000{width:503.037920pt;}
._f8_c00000{width:504.137024pt;}
._1f9_c00000{width:505.295285pt;}
._158_c00000{width:507.583328pt;}
._201_c00000{width:509.030400pt;}
._1ea_c00000{width:510.502325pt;}
._127_c00000{width:511.728672pt;}
._1c6_c00000{width:513.716256pt;}
._170_c00000{width:514.993920pt;}
._c4_c00000{width:520.038400pt;}
._d1_c00000{width:521.907200pt;}
._d2_c00000{width:525.100800pt;}
._11f_c00000{width:526.603392pt;}
._19c_c00000{width:531.774464pt;}
._10f_c00000{width:534.359360pt;}
._202_c00000{width:535.686400pt;}
._180_c00000{width:536.620800pt;}
._172_c00000{width:538.238176pt;}
._134_c00000{width:539.933184pt;}
._1ee_c00000{width:541.938933pt;}
._17e_c00000{width:543.347200pt;}
._18f_c00000{width:544.823232pt;}
._1bb_c00000{width:546.280512pt;}
._c5_c00000{width:547.174400pt;}
._15e_c00000{width:548.102400pt;}
._13a_c00000{width:551.696768pt;}
._12d_c00000{width:555.297344pt;}
._cd_c00000{width:556.940800pt;}
._d0_c00000{width:557.868800pt;}
._101_c00000{width:560.192864pt;}
._15d_c00000{width:561.881600pt;}
._136_c00000{width:563.668896pt;}
._129_c00000{width:565.945856pt;}
._1df_c00000{width:569.286325pt;}
._1ab_c00000{width:572.080384pt;}
._1aa_c00000{width:574.412672pt;}
._12f_c00000{width:575.521856pt;}
._17f_c00000{width:577.446400pt;}
._ec_c00000{width:578.617600pt;}
._1b1_c00000{width:584.155008pt;}
._1e7_c00000{width:585.644309pt;}
._225_c00000{width:588.507424pt;}
._157_c00000{width:591.681888pt;}
._db_c00000{width:596.377600pt;}
._13f_c00000{width:597.933952pt;}
._215_c00000{width:599.058112pt;}
._1b5_c00000{width:601.038560pt;}
._171_c00000{width:602.877024pt;}
._175_c00000{width:604.001792pt;}
._126_c00000{width:606.454016pt;}
._1bd_c00000{width:608.443648pt;}
._196_c00000{width:609.584256pt;}
._187_c00000{width:610.617600pt;}
._147_c00000{width:614.102496pt;}
._1b8_c00000{width:615.070240pt;}
._11b_c00000{width:616.520672pt;}
._18e_c00000{width:618.331264pt;}
._1bf_c00000{width:625.365856pt;}
._11a_c00000{width:628.389696pt;}
._1db_c00000{width:629.996544pt;}
._17c_c00000{width:631.464832pt;}
._159_c00000{width:636.914656pt;}
._176_c00000{width:637.965568pt;}
._125_c00000{width:639.557632pt;}
._1a8_c00000{width:646.134784pt;}
._1b9_c00000{width:649.092704pt;}
._106_c00000{width:651.054880pt;}
._168_c00000{width:654.490368pt;}
._19a_c00000{width:657.839712pt;}
._211_c00000{width:659.192960pt;}
._13b_c00000{width:661.139808pt;}
._10a_c00000{width:666.130304pt;}
._1f6_c00000{width:670.031989pt;}
._142_c00000{width:671.120128pt;}
._1a4_c00000{width:674.126496pt;}
._10b_c00000{width:683.054880pt;}
._1c4_c00000{width:693.766336pt;}
._1e2_c00000{width:695.775744pt;}
._1b2_c00000{width:697.428448pt;}
._17b_c00000{width:701.560544pt;}
._12b_c00000{width:703.158848pt;}
._137_c00000{width:708.160096pt;}
._eb_c00000{width:716.283808pt;}
._117_c00000{width:721.907200pt;}
._1b0_c00000{width:725.716128pt;}
._229_c00000{width:729.071232pt;}
._18c_c00000{width:730.542304pt;}
._1be_c00000{width:734.434368pt;}
._128_c00000{width:736.717856pt;}
._1e3_c00000{width:737.803360pt;}
._18a_c00000{width:739.318528pt;}
._12a_c00000{width:740.446112pt;}
._226_c00000{width:742.564256pt;}
._191_c00000{width:744.087552pt;}
._1a1_c00000{width:745.665600pt;}
._c9_c00000{width:749.440000pt;}
._1b7_c00000{width:752.977408pt;}
._1a5_c00000{width:754.675904pt;}
._1f5_c00000{width:756.465504pt;}
._1e1_c00000{width:757.515392pt;}
._184_c00000{width:762.000000pt;}
._227_c00000{width:764.430464pt;}
._105_c00000{width:767.214880pt;}
._19d_c00000{width:771.127648pt;}
._167_c00000{width:781.977600pt;}
._194_c00000{width:788.292096pt;}
._154_c00000{width:793.777856pt;}
._1f2_c00000{width:795.992320pt;}
._1dc_c00000{width:801.057984pt;}
._107_c00000{width:804.974880pt;}
._1cd_c00000{width:807.386016pt;}
._151_c00000{width:808.713664pt;}
._17a_c00000{width:810.310144pt;}
._1b3_c00000{width:815.028288pt;}
._162_c00000{width:817.561600pt;}
._1ed_c00000{width:824.675669pt;}
._1fa_c00000{width:829.739200pt;}
._1f0_c00000{width:830.869696pt;}
._1d1_c00000{width:834.999776pt;}
._190_c00000{width:838.992096pt;}
._1ce_c00000{width:842.137632pt;}
._199_c00000{width:854.322208pt;}
._1c5_c00000{width:866.304576pt;}
._118_c00000{width:873.348544pt;}
._1a7_c00000{width:874.390976pt;}
._1d5_c00000{width:876.781845pt;}
._e9_c00000{width:885.005568pt;}
._132_c00000{width:888.312320pt;}
._1a3_c00000{width:890.448864pt;}
._22a_c00000{width:900.683104pt;}
._192_c00000{width:903.667872pt;}
._1c0_c00000{width:912.009760pt;}
._1a0_c00000{width:916.959488pt;}
._1dd_c00000{width:919.211680pt;}
._1ac_c00000{width:920.428128pt;}
._1c2_c00000{width:921.687904pt;}
._1ae_c00000{width:927.473408pt;}
._19e_c00000{width:931.136224pt;}
._233_c00000{width:932.026816pt;}
._198_c00000{width:933.643008pt;}
._18b_c00000{width:936.135296pt;}
._195_c00000{width:941.744704pt;}
._19b_c00000{width:944.355360pt;}
._1c7_c00000{width:954.837888pt;}
._104_c00000{width:956.014880pt;}
._1a9_c00000{width:959.634400pt;}
._1f1_c00000{width:967.184192pt;}
._189_c00000{width:982.657632pt;}
._1ec_c00000{width:987.683541pt;}
._108_c00000{width:993.774880pt;}
._1a6_c00000{width:995.556640pt;}
._1d2_c00000{width:999.873205pt;}
._10e_c00000{width:1012.068992pt;}
._1d0_c00000{width:1014.212885pt;}
._16b_c00000{width:1022.612032pt;}
._1d6_c00000{width:1031.098016pt;}
._1bc_c00000{width:1041.347296pt;}
._1b4_c00000{width:1046.141856pt;}
._1c1_c00000{width:1065.234272pt;}
._1af_c00000{width:1080.084448pt;}
._1ad_c00000{width:1086.860608pt;}
._1c3_c00000{width:1090.706432pt;}
._1da_c00000{width:1127.819168pt;}
._1eb_c00000{width:1195.986976pt;}
._197_c00000{width:1201.200704pt;}
._e8_c00000{width:1232.289792pt;}
._1ba_c00000{width:1235.525344pt;}
._1d3_c00000{width:1284.005333pt;}
._1b6_c00000{width:1310.831008pt;}
._1cf_c00000{width:1383.529888pt;}
._1a2_c00000{width:1391.731008pt;}
._c1_c00000{width:1867.520000pt;}
.fs15_c00000{font-size:10.560000pt;}
.fse_c00000{font-size:21.440000pt;}
.fs13_c00000{font-size:26.560000pt;}
.fs10_c00000{font-size:32.000000pt;}
.fs14_c00000{font-size:37.440000pt;}
.fsd_c00000{font-size:42.560000pt;}
.fs12_c00000{font-size:48.000000pt;}
.fsb_c00000{font-size:53.440000pt;}
.fs8_c00000{font-size:56.000000pt;}
.fsf_c00000{font-size:58.560000pt;}
.fs6_c00000{font-size:58.666667pt;}
.fs11_c00000{font-size:61.440000pt;}
.fsc_c00000{font-size:64.000000pt;}
.fs3_c00000{font-size:69.333333pt;}
.fs7_c00000{font-size:74.560000pt;}
.fs4_c00000{font-size:74.666667pt;}
.fsa_c00000{font-size:85.440000pt;}
.fs5_c00000{font-size:96.000000pt;}
.fs9_c00000{font-size:117.440000pt;}
.fs2_c00000{font-size:128.000000pt;}
.fs0_c00000{font-size:160.000000pt;}
.fs1_c00000{font-size:266.666667pt;}
.y1b_c00000{bottom:-2161.333333pt;}
.y1c_c00000{bottom:-1872.000000pt;}
.y18_c00000{bottom:-1668.000000pt;}
.y1a_c00000{bottom:-1554.666667pt;}
.y19_c00000{bottom:-1264.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.y1dee_c00000{bottom:3.040400pt;}
.y1e22_c00000{bottom:3.040533pt;}
.ye_c00000{bottom:5.333333pt;}
.y10_c00000{bottom:6.666667pt;}
.y20_c00000{bottom:8.000000pt;}
.y2f_c00000{bottom:10.666667pt;}
.y13_c00000{bottom:13.334400pt;}
.y6_c00000{bottom:14.666667pt;}
.y2_c00000{bottom:17.333333pt;}
.y37_c00000{bottom:20.000000pt;}
.y4_c00000{bottom:21.333333pt;}
.y28_c00000{bottom:25.333333pt;}
.y2b_c00000{bottom:29.334400pt;}
.y30_c00000{bottom:30.666667pt;}
.y12_c00000{bottom:34.666667pt;}
.yad8_c00000{bottom:41.627067pt;}
.y2046_c00000{bottom:41.946763pt;}
.y2a_c00000{bottom:50.666667pt;}
.y2da_c00000{bottom:57.387723pt;}
.y297_c00000{bottom:57.947651pt;}
.y16_c00000{bottom:58.667733pt;}
.y2045_c00000{bottom:59.787067pt;}
.yad7_c00000{bottom:60.027067pt;}
.y15_c00000{bottom:80.000000pt;}
.y25_c00000{bottom:82.668267pt;}
.y2d9_c00000{bottom:89.467755pt;}
.y296_c00000{bottom:91.867067pt;}
.y18ad_c00000{bottom:97.547067pt;}
.ye0d_c00000{bottom:98.507067pt;}
.yc82_c00000{bottom:98.586888pt;}
.y1943_c00000{bottom:98.587067pt;}
.y15a3_c00000{bottom:98.667067pt;}
.y1389_c00000{bottom:98.667315pt;}
.yc2a_c00000{bottom:98.907067pt;}
.yd13_c00000{bottom:98.907200pt;}
.yd8b_c00000{bottom:99.307067pt;}
.yc05_c00000{bottom:99.387827pt;}
.y1288_c00000{bottom:99.388667pt;}
.y217e_c00000{bottom:99.467067pt;}
.y156a_c00000{bottom:99.707067pt;}
.y1385_c00000{bottom:99.867067pt;}
.y1058_c00000{bottom:99.867403pt;}
.ye65_c00000{bottom:100.107067pt;}
.y216f_c00000{bottom:100.107568pt;}
.y1524_c00000{bottom:100.187067pt;}
.y1754_c00000{bottom:100.267067pt;}
.y1b4_c00000{bottom:100.347067pt;}
.ye9a_c00000{bottom:100.427067pt;}
.yfa3_c00000{bottom:100.747067pt;}
.y1481_c00000{bottom:100.908200pt;}
.ycef_c00000{bottom:101.227067pt;}
.yb55_c00000{bottom:101.627067pt;}
.ycd6_c00000{bottom:101.627200pt;}
.y114b_c00000{bottom:101.947067pt;}
.y172e_c00000{bottom:102.027200pt;}
.y164a_c00000{bottom:102.107200pt;}
.yc74_c00000{bottom:102.747067pt;}
.y1600_c00000{bottom:102.747200pt;}
.y181a_c00000{bottom:102.827147pt;}
.y170c_c00000{bottom:103.147067pt;}
.y20e_c00000{bottom:103.467067pt;}
.y18e4_c00000{bottom:103.707067pt;}
.y14f5_c00000{bottom:103.787067pt;}
.y1ce_c00000{bottom:103.787200pt;}
.yf51_c00000{bottom:103.867563pt;}
.y2160_c00000{bottom:103.947067pt;}
.y190f_c00000{bottom:104.107200pt;}
.yf6c_c00000{bottom:104.187067pt;}
.y1974_c00000{bottom:104.267067pt;}
.yf19_c00000{bottom:104.667067pt;}
.yc36_c00000{bottom:104.746243pt;}
.y135e_c00000{bottom:104.907067pt;}
.yffa_c00000{bottom:105.067067pt;}
.y1590_c00000{bottom:105.627067pt;}
.y466_c00000{bottom:105.787067pt;}
.y16a5_c00000{bottom:105.867067pt;}
.y13bc_c00000{bottom:106.187067pt;}
.ye71_c00000{bottom:106.266755pt;}
.yecc_c00000{bottom:106.747811pt;}
.y294_c00000{bottom:106.827067pt;}
.y10a3_c00000{bottom:106.907067pt;}
.y129a_c00000{bottom:106.988387pt;}
.ye4e_c00000{bottom:106.989987pt;}
.y212d_c00000{bottom:107.146443pt;}
.y358_c00000{bottom:107.147200pt;}
.yee9_c00000{bottom:107.227315pt;}
.y30f_c00000{bottom:107.387067pt;}
.y1768_c00000{bottom:107.387200pt;}
.yd58_c00000{bottom:107.546243pt;}
.y207e_c00000{bottom:107.629547pt;}
.yeb7_c00000{bottom:107.707067pt;}
.y1fb6_c00000{bottom:107.867067pt;}
.y11a4_c00000{bottom:107.867200pt;}
.y2068_c00000{bottom:107.868555pt;}
.y2117_c00000{bottom:107.875184pt;}
.y34d_c00000{bottom:107.947067pt;}
.y1982_c00000{bottom:108.027067pt;}
.y271_c00000{bottom:108.187200pt;}
.y11c8_c00000{bottom:108.347067pt;}
.yd3e_c00000{bottom:108.907067pt;}
.y1c9a_c00000{bottom:109.067067pt;}
.y82_c00000{bottom:109.236515pt;}
.y16f8_c00000{bottom:109.307067pt;}
.y136f_c00000{bottom:109.387067pt;}
.ye8_c00000{bottom:109.471715pt;}
.y161b_c00000{bottom:109.628123pt;}
.ycb2_c00000{bottom:109.787563pt;}
.y1b49_c00000{bottom:110.107200pt;}
.y111b_c00000{bottom:110.187200pt;}
.y12e7_c00000{bottom:110.427067pt;}
.y64f_c00000{bottom:110.587067pt;}
.y91d_c00000{bottom:110.587200pt;}
.y167_c00000{bottom:110.667067pt;}
.y209d_c00000{bottom:110.827067pt;}
.yc81_c00000{bottom:110.827144pt;}
.y1d53_c00000{bottom:110.827200pt;}
.y18d_c00000{bottom:110.987067pt;}
.y52c_c00000{bottom:111.067067pt;}
.y85a_c00000{bottom:111.147200pt;}
.y196e_c00000{bottom:111.307067pt;}
.yde9_c00000{bottom:111.387067pt;}
.y1942_c00000{bottom:111.628747pt;}
.y1f69_c00000{bottom:111.707067pt;}
.y2148_c00000{bottom:111.787067pt;}
.y1428_c00000{bottom:111.867067pt;}
.y1f9_c00000{bottom:111.947067pt;}
.ye36_c00000{bottom:111.947200pt;}
.y24_c00000{bottom:112.001067pt;}
.y702_c00000{bottom:112.027067pt;}
.y68c_c00000{bottom:112.187200pt;}
.y400_c00000{bottom:112.267067pt;}
.y18aa_c00000{bottom:112.507315pt;}
.y1af2_c00000{bottom:112.587200pt;}
.y10a0_c00000{bottom:112.907067pt;}
.y13f7_c00000{bottom:113.067067pt;}
.y1567_c00000{bottom:113.147067pt;}
.y1fe6_c00000{bottom:113.147240pt;}
.y39e_c00000{bottom:113.148907pt;}
.y2060_c00000{bottom:113.387067pt;}
.y1248_c00000{bottom:113.467067pt;}
.ye16_c00000{bottom:113.467200pt;}
.y1b98_c00000{bottom:113.627067pt;}
.y1ad7_c00000{bottom:113.707067pt;}
.y41d_c00000{bottom:113.787067pt;}
.y139_c00000{bottom:113.867067pt;}
.yd2b_c00000{bottom:113.867200pt;}
.y1898_c00000{bottom:114.027067pt;}
.y1424_c00000{bottom:114.027315pt;}
.y1fb5_c00000{bottom:114.267280pt;}
.y10ee_c00000{bottom:114.347283pt;}
.y16c2_c00000{bottom:114.427067pt;}
.yb54_c00000{bottom:114.667520pt;}
.y17ec_c00000{bottom:114.667987pt;}
.ybe1_c00000{bottom:114.906387pt;}
.y15c7_c00000{bottom:114.987067pt;}
.yc4a_c00000{bottom:114.987200pt;}
.y1055_c00000{bottom:115.067075pt;}
.y1b5a_c00000{bottom:115.147200pt;}
.ya97_c00000{bottom:115.227067pt;}
.yacd_c00000{bottom:115.227200pt;}
.y1057_c00000{bottom:115.227395pt;}
.y1c99_c00000{bottom:115.229211pt;}
.y1e52_c00000{bottom:115.307067pt;}
.y6c0_c00000{bottom:115.387067pt;}
.y216e_c00000{bottom:115.467560pt;}
.y217d_c00000{bottom:115.547067pt;}
.y1d22_c00000{bottom:115.707067pt;}
.ya57_c00000{bottom:115.707448pt;}
.ya0a_c00000{bottom:115.787067pt;}
.y18f2_c00000{bottom:115.867067pt;}
.y10a2_c00000{bottom:115.947067pt;}
.ya27_c00000{bottom:116.027067pt;}
.yfa2_c00000{bottom:116.107200pt;}
.y1fe5_c00000{bottom:116.187200pt;}
.yc04_c00000{bottom:116.187227pt;}
.y1287_c00000{bottom:116.188067pt;}
.y200f_c00000{bottom:116.188987pt;}
.ydc6_c00000{bottom:116.267067pt;}
.y53e_c00000{bottom:116.347067pt;}
.y696_c00000{bottom:116.427067pt;}
.y1f0f_c00000{bottom:116.507067pt;}
.yba9_c00000{bottom:116.587067pt;}
.y630_c00000{bottom:116.747067pt;}
.y3bf_c00000{bottom:116.827067pt;}
.y1934_c00000{bottom:116.827315pt;}
.y1cc3_c00000{bottom:116.907067pt;}
.yc35_c00000{bottom:116.986499pt;}
.yc71_c00000{bottom:117.067067pt;}
.y211c_c00000{bottom:117.067811pt;}
.ya54_c00000{bottom:117.067987pt;}
.y10ed_c00000{bottom:117.387243pt;}
.y245_c00000{bottom:117.547200pt;}
.y1d92_c00000{bottom:117.787907pt;}
.y1480_c00000{bottom:117.788120pt;}
.y1585_c00000{bottom:117.867067pt;}
.yc6a_c00000{bottom:118.027067pt;}
.y895_c00000{bottom:118.106283pt;}
.y122f_c00000{bottom:118.107067pt;}
.y1d15_c00000{bottom:118.107200pt;}
.y794_c00000{bottom:118.267067pt;}
.ye70_c00000{bottom:118.507011pt;}
.y1957_c00000{bottom:118.507067pt;}
.y1d2d_c00000{bottom:118.587067pt;}
.y4e7_c00000{bottom:118.746499pt;}
.y1da1_c00000{bottom:118.827067pt;}
.y161a_c00000{bottom:118.828027pt;}
.y7e0_c00000{bottom:118.907067pt;}
.y5a_c00000{bottom:119.065560pt;}
.y16a4_c00000{bottom:119.067067pt;}
.y84c_c00000{bottom:119.227067pt;}
.y1e31_c00000{bottom:119.387067pt;}
.y9fa_c00000{bottom:119.467067pt;}
.y975_c00000{bottom:119.468907pt;}
.y1267_c00000{bottom:119.627067pt;}
.yd57_c00000{bottom:119.786499pt;}
.y57a_c00000{bottom:119.787067pt;}
.ya1_c00000{bottom:119.956379pt;}
.yc_c00000{bottom:120.000000pt;}
.y17af_c00000{bottom:120.027067pt;}
.y18b3_c00000{bottom:120.027200pt;}
.ya72_c00000{bottom:120.107811pt;}
.y114a_c00000{bottom:120.347067pt;}
.ya8f_c00000{bottom:120.507067pt;}
.y10ec_c00000{bottom:120.507195pt;}
.y16e8_c00000{bottom:120.507315pt;}
.y18e3_c00000{bottom:120.827067pt;}
.y1773_c00000{bottom:120.987067pt;}
.y221_c00000{bottom:121.067067pt;}
.y10a_c00000{bottom:121.147067pt;}
.y350_c00000{bottom:121.147200pt;}
.y2028_c00000{bottom:121.227067pt;}
.y1b3_c00000{bottom:121.307067pt;}
.y14_c00000{bottom:121.333333pt;}
.y270_c00000{bottom:121.627067pt;}
.y190e_c00000{bottom:121.787067pt;}
.y2065_c00000{bottom:121.867067pt;}
.y1840_c00000{bottom:122.027067pt;}
.ya83_c00000{bottom:122.107200pt;}
.y14f4_c00000{bottom:122.187067pt;}
.yf50_c00000{bottom:122.267315pt;}
.y1a6b_c00000{bottom:122.347067pt;}
.y1c04_c00000{bottom:122.427067pt;}
.y1fe4_c00000{bottom:122.587467pt;}
.y9ab_c00000{bottom:122.588667pt;}
.ye33_c00000{bottom:122.667067pt;}
.ybc8_c00000{bottom:122.667200pt;}
.y1a85_c00000{bottom:122.667987pt;}
.yc80_c00000{bottom:123.147200pt;}
.y148b_c00000{bottom:123.227067pt;}
.ya61_c00000{bottom:123.387067pt;}
.yff9_c00000{bottom:123.467067pt;}
.y10eb_c00000{bottom:123.547155pt;}
.y1d73_c00000{bottom:123.547811pt;}
.yfa6_c00000{bottom:123.627067pt;}
.y1b12_c00000{bottom:123.707067pt;}
.y1299_c00000{bottom:123.868307pt;}
.ye4d_c00000{bottom:123.869907pt;}
.y441_c00000{bottom:123.947067pt;}
.y20f6_c00000{bottom:124.027067pt;}
.y669_c00000{bottom:124.107747pt;}
.y52b_c00000{bottom:124.108067pt;}
.y1a14_c00000{bottom:124.187067pt;}
.y2219_c00000{bottom:124.187200pt;}
.y1b33_c00000{bottom:124.267067pt;}
.y59f_c00000{bottom:124.427067pt;}
.y1c1d_c00000{bottom:124.507200pt;}
.y139e_c00000{bottom:124.587067pt;}
.y20d_c00000{bottom:124.747067pt;}
.y611_c00000{bottom:124.827067pt;}
.y63a_c00000{bottom:124.907067pt;}
.yabd_c00000{bottom:124.907315pt;}
.y1d47_c00000{bottom:124.987067pt;}
.yecb_c00000{bottom:125.147563pt;}
.yb3b_c00000{bottom:125.307067pt;}
.y1acb_c00000{bottom:125.547067pt;}
.yee8_c00000{bottom:125.627067pt;}
.y1ee3_c00000{bottom:125.707235pt;}
.y1227_c00000{bottom:125.787067pt;}
.y70e_c00000{bottom:125.947067pt;}
.y8c4_c00000{bottom:125.947200pt;}
.y207d_c00000{bottom:126.029299pt;}
.ye0c_c00000{bottom:126.107067pt;}
.y1cd_c00000{bottom:126.107200pt;}
.y1f6c_c00000{bottom:126.267067pt;}
.y11a3_c00000{bottom:126.267200pt;}
.y1cd0_c00000{bottom:126.267315pt;}
.y6d5_c00000{bottom:126.268307pt;}
.y1537_c00000{bottom:126.270787pt;}
.y2116_c00000{bottom:126.274936pt;}
.y1bdc_c00000{bottom:126.347067pt;}
.y1323_c00000{bottom:126.427067pt;}
.yc29_c00000{bottom:126.507067pt;}
.yd12_c00000{bottom:126.507200pt;}
.y357_c00000{bottom:126.587067pt;}
.y10ea_c00000{bottom:126.587115pt;}
.y99f_c00000{bottom:126.667067pt;}
.y11c7_c00000{bottom:126.747067pt;}
.y959_c00000{bottom:126.907067pt;}
.y18e2_c00000{bottom:126.987419pt;}
.y1569_c00000{bottom:127.307067pt;}
.y5ed_c00000{bottom:127.467067pt;}
.y1d65_c00000{bottom:127.547067pt;}
.ye64_c00000{bottom:127.707067pt;}
.y1523_c00000{bottom:127.787067pt;}
.y1753_c00000{bottom:127.867067pt;}
.y1649_c00000{bottom:127.947067pt;}
.y293_c00000{bottom:128.027067pt;}
.y1619_c00000{bottom:128.027931pt;}
.y109f_c00000{bottom:128.187200pt;}
.ycb1_c00000{bottom:128.187315pt;}
.y1941_c00000{bottom:128.508667pt;}
.y1c03_c00000{bottom:128.587067pt;}
.y1119_c00000{bottom:128.667067pt;}
.ycee_c00000{bottom:128.827067pt;}
.y18f1_c00000{bottom:128.908747pt;}
.y497_c00000{bottom:128.987067pt;}
.y72c_c00000{bottom:128.987200pt;}
.yc34_c00000{bottom:129.226755pt;}
.y17d1_c00000{bottom:129.227067pt;}
.ycd5_c00000{bottom:129.227200pt;}
.y1f47_c00000{bottom:129.467504pt;}
.ya09_c00000{bottom:129.547067pt;}
.y10a1_c00000{bottom:129.707067pt;}
.y172d_c00000{bottom:129.787200pt;}
.y12b5_c00000{bottom:129.947067pt;}
.y2003_c00000{bottom:130.027067pt;}
.y39d_c00000{bottom:130.028827pt;}
.y1981_c00000{bottom:130.028987pt;}
.y21c2_c00000{bottom:130.187067pt;}
.y68b_c00000{bottom:130.190067pt;}
.y2c7_c00000{bottom:130.347067pt;}
.y2d8_c00000{bottom:130.347200pt;}
.y1054_c00000{bottom:130.427067pt;}
.y810_c00000{bottom:130.587200pt;}
.y1c98_c00000{bottom:130.589203pt;}
.y1c29_c00000{bottom:130.667067pt;}
.y81_c00000{bottom:130.676243pt;}
.y170b_c00000{bottom:130.747067pt;}
.ye6f_c00000{bottom:130.827067pt;}
.y216d_c00000{bottom:130.827552pt;}
.y18a9_c00000{bottom:130.907067pt;}
.ye7_c00000{bottom:130.911443pt;}
.y4e6_c00000{bottom:130.986755pt;}
.y14b5_c00000{bottom:131.067067pt;}
.y1fb4_c00000{bottom:131.147200pt;}
.y8b4_c00000{bottom:131.467067pt;}
.yb53_c00000{bottom:131.547440pt;}
.y17eb_c00000{bottom:131.547907pt;}
.y1d2c_c00000{bottom:131.548067pt;}
.y166_c00000{bottom:131.787067pt;}
.y1973_c00000{bottom:131.867067pt;}
.y1b59_c00000{bottom:132.027067pt;}
.yd56_c00000{bottom:132.106555pt;}
.ya46_c00000{bottom:132.107067pt;}
.yf18_c00000{bottom:132.267067pt;}
.y1f0e_c00000{bottom:132.347067pt;}
.y1423_c00000{bottom:132.427067pt;}
.y135d_c00000{bottom:132.507067pt;}
.y73d_c00000{bottom:132.587067pt;}
.y2195_c00000{bottom:132.747067pt;}
.yc03_c00000{bottom:133.067147pt;}
.y1286_c00000{bottom:133.067987pt;}
.y200e_c00000{bottom:133.068907pt;}
.y1f8_c00000{bottom:133.147067pt;}
.y18c_c00000{bottom:133.307067pt;}
.y465_c00000{bottom:133.387067pt;}
.y567_c00000{bottom:133.627067pt;}
.y3be_c00000{bottom:133.707067pt;}
.y13bb_c00000{bottom:133.787067pt;}
.ya53_c00000{bottom:133.867387pt;}
.y517_c00000{bottom:134.107067pt;}
.y758_c00000{bottom:134.107200pt;}
.y203c_c00000{bottom:134.587067pt;}
.y1d91_c00000{bottom:134.587307pt;}
.y147f_c00000{bottom:134.587520pt;}
.y16a3_c00000{bottom:134.587555pt;}
.y15f7_c00000{bottom:134.827067pt;}
.y30e_c00000{bottom:134.987067pt;}
.yc2_c00000{bottom:134.987200pt;}
.y138_c00000{bottom:135.147067pt;}
.y1a9d_c00000{bottom:135.147200pt;}
.y1819_c00000{bottom:135.227067pt;}
.yeb6_c00000{bottom:135.307067pt;}
.y4c5_c00000{bottom:135.467067pt;}
.y211b_c00000{bottom:135.467563pt;}
.y34c_c00000{bottom:135.547067pt;}
.y10e9_c00000{bottom:135.867067pt;}
.yb0c_c00000{bottom:136.107067pt;}
.y1a43_c00000{bottom:136.187987pt;}
.ya60_c00000{bottom:136.347907pt;}
.y974_c00000{bottom:136.348827pt;}
.y7fd_c00000{bottom:136.427067pt;}
.yd3d_c00000{bottom:136.507067pt;}
.y7bc_c00000{bottom:136.587067pt;}
.y77b_c00000{bottom:136.667067pt;}
.y16c1_c00000{bottom:136.907067pt;}
.y136e_c00000{bottom:136.987067pt;}
.y1772_c00000{bottom:137.227067pt;}
.y1618_c00000{bottom:137.227835pt;}
.yfa5_c00000{bottom:137.387067pt;}
.y894_c00000{bottom:137.466219pt;}
.y1b48_c00000{bottom:137.707067pt;}
.y12e6_c00000{bottom:138.027067pt;}
.ya8e_c00000{bottom:138.107067pt;}
.y5b7_c00000{bottom:138.187067pt;}
.y610_c00000{bottom:138.187200pt;}
.ye38_c00000{bottom:138.347659pt;}
.y1d21_c00000{bottom:138.427067pt;}
.y1d52_c00000{bottom:138.427200pt;}
.ya71_c00000{bottom:138.507563pt;}
.y244_c00000{bottom:138.667200pt;}
.y1146_c00000{bottom:138.828256pt;}
.y16e7_c00000{bottom:138.907067pt;}
.yde8_c00000{bottom:138.987067pt;}
.y1dc6_c00000{bottom:139.147200pt;}
.y1f68_c00000{bottom:139.307067pt;}
.y2147_c00000{bottom:139.387067pt;}
.y9aa_c00000{bottom:139.388067pt;}
.y1fe3_c00000{bottom:139.467387pt;}
.y2ac_c00000{bottom:139.547067pt;}
.yb17_c00000{bottom:139.547200pt;}
.y1a84_c00000{bottom:139.547907pt;}
.y701_c00000{bottom:139.627067pt;}
.ydc5_c00000{bottom:139.708803pt;}
.ya82_c00000{bottom:139.787067pt;}
.y26f_c00000{bottom:140.027067pt;}
.y1af1_c00000{bottom:140.187200pt;}
.y1584_c00000{bottom:140.267067pt;}
.y14f3_c00000{bottom:140.587067pt;}
.yf4f_c00000{bottom:140.667067pt;}
.y1566_c00000{bottom:140.747067pt;}
.y1298_c00000{bottom:140.748227pt;}
.ye4c_c00000{bottom:140.749827pt;}
.y1648_c00000{bottom:140.907067pt;}
.y1c46_c00000{bottom:140.987067pt;}
.y668_c00000{bottom:140.987667pt;}
.y52a_c00000{bottom:140.987987pt;}
.y1247_c00000{bottom:141.067067pt;}
.y1bd0_c00000{bottom:141.067200pt;}
.y1b97_c00000{bottom:141.227067pt;}
.y1ad6_c00000{bottom:141.307067pt;}
.y23_c00000{bottom:141.333867pt;}
.y41c_c00000{bottom:141.387067pt;}
.yd73_c00000{bottom:141.467067pt;}
.yd2a_c00000{bottom:141.467200pt;}
.yc33_c00000{bottom:141.546811pt;}
.yee7_c00000{bottom:141.547067pt;}
.y1897_c00000{bottom:141.627067pt;}
.y1322_c00000{bottom:141.787067pt;}
.y59_c00000{bottom:141.866008pt;}
.yff8_c00000{bottom:141.867067pt;}
.y20d1_c00000{bottom:141.867200pt;}
.y1d72_c00000{bottom:141.947563pt;}
.y1a56_c00000{bottom:142.027067pt;}
.y18e1_c00000{bottom:142.267251pt;}
.y1dcb_c00000{bottom:142.427067pt;}
.y15c6_c00000{bottom:142.587067pt;}
.yc49_c00000{bottom:142.587200pt;}
.y1b2_c00000{bottom:142.667067pt;}
.ya96_c00000{bottom:142.827067pt;}
.yacc_c00000{bottom:142.827200pt;}
.y1e51_c00000{bottom:142.907067pt;}
.y20f0_c00000{bottom:142.987067pt;}
.y8fe_c00000{bottom:143.067200pt;}
.y4e5_c00000{bottom:143.227011pt;}
.y639_c00000{bottom:143.307067pt;}
.ya08_c00000{bottom:143.387067pt;}
.y109e_c00000{bottom:143.547067pt;}
.yeca_c00000{bottom:143.547315pt;}
.ya26_c00000{bottom:143.627067pt;}
.ye6e_c00000{bottom:143.787387pt;}
.y1c02_c00000{bottom:143.867067pt;}
.y53d_c00000{bottom:143.947067pt;}
.y1118_c00000{bottom:144.027067pt;}
.y20f5_c00000{bottom:144.107200pt;}
.y3ff_c00000{bottom:144.187067pt;}
.yd55_c00000{bottom:144.346811pt;}
.y62f_c00000{bottom:144.347067pt;}
.y146d_c00000{bottom:144.427563pt;}
.y207c_c00000{bottom:144.429051pt;}
.y1cc2_c00000{bottom:144.507067pt;}
.y328_c00000{bottom:144.667067pt;}
.y11a2_c00000{bottom:144.667200pt;}
.y6d4_c00000{bottom:144.668059pt;}
.y1536_c00000{bottom:144.670539pt;}
.y2115_c00000{bottom:144.674688pt;}
.y1bdb_c00000{bottom:144.747067pt;}
.y769_c00000{bottom:144.907067pt;}
.y11ef_c00000{bottom:145.147067pt;}
.y944_c00000{bottom:145.147200pt;}
.y1b11_c00000{bottom:145.307067pt;}
.y1940_c00000{bottom:145.388587pt;}
.y1771_c00000{bottom:145.388827pt;}
.yc69_c00000{bottom:145.627067pt;}
.y1056_c00000{bottom:145.706899pt;}
.yc7f_c00000{bottom:145.707067pt;}
.y18f0_c00000{bottom:145.708147pt;}
.y793_c00000{bottom:145.867067pt;}
.y1c97_c00000{bottom:145.869035pt;}
.y20c_c00000{bottom:145.947067pt;}
.y1956_c00000{bottom:146.107067pt;}
.y216c_c00000{bottom:146.107384pt;}
.y1f46_c00000{bottom:146.347400pt;}
.ye83_c00000{bottom:146.427067pt;}
.y1617_c00000{bottom:146.427739pt;}
.y7df_c00000{bottom:146.507067pt;}
.ycb0_c00000{bottom:146.587067pt;}
.yfa1_c00000{bottom:146.747067pt;}
.y84b_c00000{bottom:146.827067pt;}
.y1e8a_c00000{bottom:146.836411pt;}
.y39c_c00000{bottom:146.908747pt;}
.y1980_c00000{bottom:146.908907pt;}
.y1558_c00000{bottom:146.987200pt;}
.y9f9_c00000{bottom:147.067067pt;}
.y68a_c00000{bottom:147.069987pt;}
.y1266_c00000{bottom:147.227067pt;}
.y9ec_c00000{bottom:147.307360pt;}
.y579_c00000{bottom:147.387067pt;}
.y17ae_c00000{bottom:147.627067pt;}
.y18b2_c00000{bottom:147.627200pt;}
.y9d0_c00000{bottom:147.787067pt;}
.y3e4_c00000{bottom:148.027067pt;}
.y1bb5_c00000{bottom:148.107200pt;}
.y19fd_c00000{bottom:148.427067pt;}
.y1cc_c00000{bottom:148.427200pt;}
.yb52_c00000{bottom:148.427360pt;}
.y17ea_c00000{bottom:148.427827pt;}
.y1d2b_c00000{bottom:148.427987pt;}
.y158a_c00000{bottom:148.507067pt;}
.y1f0d_c00000{bottom:148.507419pt;}
.y220_c00000{bottom:148.667067pt;}
.y109_c00000{bottom:148.747067pt;}
.y153b_c00000{bottom:148.747200pt;}
.y1b58_c00000{bottom:148.907067pt;}
.y292_c00000{bottom:149.147067pt;}
.y190d_c00000{bottom:149.387067pt;}
.y183f_c00000{bottom:149.627067pt;}
.y19d4_c00000{bottom:149.787067pt;}
.y16a2_c00000{bottom:149.867528pt;}
.yc02_c00000{bottom:149.947067pt;}
.y1285_c00000{bottom:149.947907pt;}
.y19a6_c00000{bottom:149.948067pt;}
.y200d_c00000{bottom:149.948827pt;}
.yc28_c00000{bottom:150.027067pt;}
.y695_c00000{bottom:150.187200pt;}
.yab8_c00000{bottom:150.267067pt;}
.ybc7_c00000{bottom:150.267200pt;}
.y1eb6_c00000{bottom:150.427075pt;}
.y3bd_c00000{bottom:150.587067pt;}
.ya52_c00000{bottom:150.747307pt;}
.y1568_c00000{bottom:150.827067pt;}
.y1469_c00000{bottom:150.907067pt;}
.y1384_c00000{bottom:150.987067pt;}
.y1d77_c00000{bottom:151.067200pt;}
.y10e8_c00000{bottom:151.147200pt;}
.ye63_c00000{bottom:151.227067pt;}
.y1d90_c00000{bottom:151.467227pt;}
.y147e_c00000{bottom:151.467440pt;}
.y440_c00000{bottom:151.547067pt;}
.y168f_c00000{bottom:151.627067pt;}
.y1a13_c00000{bottom:151.787067pt;}
.y1b32_c00000{bottom:151.867067pt;}
.y59e_c00000{bottom:152.027067pt;}
.y1c1c_c00000{bottom:152.107200pt;}
.y139d_c00000{bottom:152.187067pt;}
.y2194_c00000{bottom:152.187200pt;}
.y80_c00000{bottom:152.196123pt;}
.y19a3_c00000{bottom:152.347067pt;}
.ye6_c00000{bottom:152.431323pt;}
.y1d46_c00000{bottom:152.587067pt;}
.y165_c00000{bottom:152.827067pt;}
.yb3a_c00000{bottom:152.907067pt;}
.y1a42_c00000{bottom:152.987387pt;}
.y1aca_c00000{bottom:153.147067pt;}
.ya5f_c00000{bottom:153.227827pt;}
.y973_c00000{bottom:153.228747pt;}
.y217c_c00000{bottom:153.307067pt;}
.y1226_c00000{bottom:153.387067pt;}
.y70d_c00000{bottom:153.547067pt;}
.y8c3_c00000{bottom:153.547200pt;}
.ye0b_c00000{bottom:153.707067pt;}
.yc32_c00000{bottom:153.787067pt;}
.y211a_c00000{bottom:153.867315pt;}
.yf4d_c00000{bottom:154.027067pt;}
.y120c_c00000{bottom:154.107067pt;}
.y8fc_c00000{bottom:154.107200pt;}
.y1145_c00000{bottom:154.188248pt;}
.y1f7_c00000{bottom:154.267067pt;}
.y11c6_c00000{bottom:154.347067pt;}
.y215f_c00000{bottom:154.427067pt;}
.y958_c00000{bottom:154.507067pt;}
.y15f6_c00000{bottom:154.827243pt;}
.y122e_c00000{bottom:154.907067pt;}
.y1dae_c00000{bottom:154.907200pt;}
.y83a_c00000{bottom:155.067067pt;}
.y5ec_c00000{bottom:155.067200pt;}
.y1d64_c00000{bottom:155.147200pt;}
.yf01_c00000{bottom:155.307067pt;}
.y1522_c00000{bottom:155.387067pt;}
.y1752_c00000{bottom:155.467067pt;}
.y4e4_c00000{bottom:155.547067pt;}
.y18b_c00000{bottom:155.627067pt;}
.y1616_c00000{bottom:155.627643pt;}
.y8da_c00000{bottom:156.027067pt;}
.y212c_c00000{bottom:156.187200pt;}
.y9a9_c00000{bottom:156.267987pt;}
.y60f_c00000{bottom:156.268307pt;}
.y137_c00000{bottom:156.347067pt;}
.y1fe2_c00000{bottom:156.347307pt;}
.yced_c00000{bottom:156.427067pt;}
.y1a83_c00000{bottom:156.427827pt;}
.y496_c00000{bottom:156.587067pt;}
.y72b_c00000{bottom:156.587200pt;}
.y17d0_c00000{bottom:156.827067pt;}
.ycd4_c00000{bottom:156.827200pt;}
.y893_c00000{bottom:156.906675pt;}
.ya70_c00000{bottom:156.907315pt;}
.y1321_c00000{bottom:157.067200pt;}
.ya07_c00000{bottom:157.147067pt;}
.y90b_c00000{bottom:157.147200pt;}
.y26e_c00000{bottom:157.227067pt;}
.yac4_c00000{bottom:157.307067pt;}
.y172c_c00000{bottom:157.387200pt;}
.y2002_c00000{bottom:157.627067pt;}
.y18e0_c00000{bottom:157.627243pt;}
.y1297_c00000{bottom:157.628147pt;}
.ye4b_c00000{bottom:157.629747pt;}
.y2fe_c00000{bottom:157.707067pt;}
.y529_c00000{bottom:157.787387pt;}
.y2be_c00000{bottom:157.947067pt;}
.y2d7_c00000{bottom:157.947200pt;}
.y19d3_c00000{bottom:158.030120pt;}
.ydc4_c00000{bottom:158.108555pt;}
.y80f_c00000{bottom:158.187200pt;}
.y1c28_c00000{bottom:158.267067pt;}
.y170a_c00000{bottom:158.347067pt;}
.ye15_c00000{bottom:158.427067pt;}
.y9cf_c00000{bottom:158.427987pt;}
.y14b4_c00000{bottom:158.667067pt;}
.y729_c00000{bottom:158.907067pt;}
.y14f2_c00000{bottom:158.987067pt;}
.y7bb_c00000{bottom:159.067067pt;}
.y34b_c00000{bottom:159.067200pt;}
.y1c01_c00000{bottom:159.227067pt;}
.yf6b_c00000{bottom:159.387067pt;}
.y1972_c00000{bottom:159.467067pt;}
.ya45_c00000{bottom:159.707067pt;}
.yf17_c00000{bottom:159.867067pt;}
.y243_c00000{bottom:159.867200pt;}
.y2027_c00000{bottom:160.027067pt;}
.y37d_c00000{bottom:160.107200pt;}
.y10e2_c00000{bottom:160.187200pt;}
.yff7_c00000{bottom:160.267067pt;}
.y1dc5_c00000{bottom:160.347067pt;}
.y1d71_c00000{bottom:160.347315pt;}
.y1b10_c00000{bottom:160.667067pt;}
.ye6d_c00000{bottom:160.667307pt;}
.y1cf3_c00000{bottom:160.667907pt;}
.y6bf_c00000{bottom:160.907067pt;}
.y464_c00000{bottom:160.987067pt;}
.y1c45_c00000{bottom:161.147067pt;}
.y566_c00000{bottom:161.227067pt;}
.y1c96_c00000{bottom:161.229027pt;}
.y13ba_c00000{bottom:161.387067pt;}
.y216b_c00000{bottom:161.467376pt;}
.y516_c00000{bottom:161.707067pt;}
.y1046_c00000{bottom:161.707083pt;}
.y1053_c00000{bottom:161.867579pt;}
.yec9_c00000{bottom:161.947067pt;}
.yfa0_c00000{bottom:162.107200pt;}
.y203b_c00000{bottom:162.187067pt;}
.y193f_c00000{bottom:162.187987pt;}
.y1770_c00000{bottom:162.188227pt;}
.y159c_c00000{bottom:162.427067pt;}
.y30d_c00000{bottom:162.587067pt;}
.yc1_c00000{bottom:162.587200pt;}
.y18ef_c00000{bottom:162.588067pt;}
.yee6_c00000{bottom:162.667067pt;}
.y6e1_c00000{bottom:162.747067pt;}
.y146c_c00000{bottom:162.827315pt;}
.y207b_c00000{bottom:162.828803pt;}
.yeb5_c00000{bottom:162.907067pt;}
.y4c4_c00000{bottom:163.067067pt;}
.y11a1_c00000{bottom:163.067200pt;}
.y6d3_c00000{bottom:163.067811pt;}
.y1535_c00000{bottom:163.070291pt;}
.y2114_c00000{bottom:163.074440pt;}
.y1bda_c00000{bottom:163.147067pt;}
.y1f45_c00000{bottom:163.147304pt;}
.ya81_c00000{bottom:163.307067pt;}
.y2209_c00000{bottom:163.467067pt;}
.y11ee_c00000{bottom:163.547067pt;}
.yb0b_c00000{bottom:163.707067pt;}
.y1b1_c00000{bottom:163.787067pt;}
.y1f0c_c00000{bottom:163.787251pt;}
.y39b_c00000{bottom:163.788667pt;}
.y197f_c00000{bottom:163.788827pt;}
.y689_c00000{bottom:163.949907pt;}
.yd3c_c00000{bottom:164.107067pt;}
.y9eb_c00000{bottom:164.187280pt;}
.y77a_c00000{bottom:164.267067pt;}
.y16c0_c00000{bottom:164.507067pt;}
.y136d_c00000{bottom:164.587067pt;}
.y58_c00000{bottom:164.666456pt;}
.yc68_c00000{bottom:164.747067pt;}
.y2099_c00000{bottom:164.827067pt;}
.y1615_c00000{bottom:164.827547pt;}
.yfa4_c00000{bottom:164.987067pt;}
.y16a1_c00000{bottom:165.227395pt;}
.y1b47_c00000{bottom:165.307067pt;}
.yb51_c00000{bottom:165.307280pt;}
.y17e9_c00000{bottom:165.307747pt;}
.y1d2a_c00000{bottom:165.307907pt;}
.y356_c00000{bottom:165.387067pt;}
.y1fb3_c00000{bottom:165.467067pt;}
.y12e5_c00000{bottom:165.627067pt;}
.y1b57_c00000{bottom:165.707067pt;}
.y5b6_c00000{bottom:165.787067pt;}
.y91c_c00000{bottom:165.787200pt;}
.y19fc_c00000{bottom:166.027067pt;}
.y1d51_c00000{bottom:166.027200pt;}
.yda9_c00000{bottom:166.107200pt;}
.ya95_c00000{bottom:166.347067pt;}
.y10e7_c00000{bottom:166.507067pt;}
.yde7_c00000{bottom:166.587067pt;}
.y1647_c00000{bottom:166.747067pt;}
.yc01_c00000{bottom:166.827067pt;}
.y1284_c00000{bottom:166.827827pt;}
.y19a5_c00000{bottom:166.827987pt;}
.y200c_c00000{bottom:166.828747pt;}
.y1f67_c00000{bottom:166.907067pt;}
.y694_c00000{bottom:166.987067pt;}
.y8fb_c00000{bottom:166.987307pt;}
.y20b_c00000{bottom:167.067067pt;}
.y2ab_c00000{bottom:167.147067pt;}
.y2ca_c00000{bottom:167.147200pt;}
.y700_c00000{bottom:167.227067pt;}
.y768_c00000{bottom:167.387067pt;}
.y3bc_c00000{bottom:167.467067pt;}
.ya51_c00000{bottom:167.627227pt;}
.y1af0_c00000{bottom:167.787200pt;}
.y1583_c00000{bottom:167.867067pt;}
.yab7_c00000{bottom:167.947067pt;}
.yb_c00000{bottom:168.000000pt;}
.y13f6_c00000{bottom:168.267067pt;}
.y1565_c00000{bottom:168.347067pt;}
.y1d8f_c00000{bottom:168.347147pt;}
.y147d_c00000{bottom:168.347360pt;}
.y1265_c00000{bottom:168.427067pt;}
.y205f_c00000{bottom:168.587067pt;}
.y4e3_c00000{bottom:168.587667pt;}
.y943_c00000{bottom:168.667067pt;}
.y1bcf_c00000{bottom:168.667200pt;}
.y1a9c_c00000{bottom:168.827067pt;}
.y1ad5_c00000{bottom:168.907067pt;}
.y41b_c00000{bottom:168.987067pt;}
.yd72_c00000{bottom:169.067067pt;}
.ycaf_c00000{bottom:169.067200pt;}
.y1896_c00000{bottom:169.227067pt;}
.yf4c_c00000{bottom:169.387067pt;}
.y20d0_c00000{bottom:169.467200pt;}
.y1144_c00000{bottom:169.468080pt;}
.y1a55_c00000{bottom:169.627067pt;}
.y164_c00000{bottom:169.867067pt;}
.y1a41_c00000{bottom:169.867307pt;}
.ya5e_c00000{bottom:170.107747pt;}
.y972_c00000{bottom:170.108667pt;}
.y17c4_c00000{bottom:170.187067pt;}
.yc48_c00000{bottom:170.187200pt;}
.y15f5_c00000{bottom:170.187235pt;}
.y212b_c00000{bottom:170.267067pt;}
.y291_c00000{bottom:170.347067pt;}
.yad1_c00000{bottom:170.427067pt;}
.yacb_c00000{bottom:170.427200pt;}
.y3e3_c00000{bottom:170.507067pt;}
.y20ef_c00000{bottom:170.587067pt;}
.y22_c00000{bottom:170.666667pt;}
.y1cb_c00000{bottom:170.667200pt;}
.y217b_c00000{bottom:170.907067pt;}
.ya06_c00000{bottom:170.987067pt;}
.y1c66_c00000{bottom:171.147067pt;}
.ya25_c00000{bottom:171.227067pt;}
.y20f4_c00000{bottom:171.707200pt;}
.y3fe_c00000{bottom:171.787067pt;}
.y62e_c00000{bottom:171.947067pt;}
.y21f_c00000{bottom:172.107200pt;}
.y2a8_c00000{bottom:172.267067pt;}
.y1320_c00000{bottom:172.427067pt;}
.yc27_c00000{bottom:172.507067pt;}
.y667_c00000{bottom:172.667067pt;}
.y11c5_c00000{bottom:172.747067pt;}
.y18df_c00000{bottom:172.987235pt;}
.y1ee2_c00000{bottom:172.987259pt;}
.y9a8_c00000{bottom:173.147907pt;}
.y60e_c00000{bottom:173.148227pt;}
.y911_c00000{bottom:173.227067pt;}
.y1a82_c00000{bottom:173.227227pt;}
.yc7e_c00000{bottom:173.307067pt;}
.y792_c00000{bottom:173.467067pt;}
.y1383_c00000{bottom:173.467200pt;}
.y7f_c00000{bottom:173.635851pt;}
.ye62_c00000{bottom:173.707067pt;}
.ye32_c00000{bottom:173.787067pt;}
.ye5_c00000{bottom:173.871051pt;}
.ye82_c00000{bottom:174.027067pt;}
.y10e1_c00000{bottom:174.027200pt;}
.y1614_c00000{bottom:174.027451pt;}
.y7de_c00000{bottom:174.107067pt;}
.y8e7_c00000{bottom:174.427067pt;}
.y1117_c00000{bottom:174.507067pt;}
.y1296_c00000{bottom:174.508067pt;}
.ye4a_c00000{bottom:174.509667pt;}
.y1c00_c00000{bottom:174.587067pt;}
.y1557_c00000{bottom:174.587200pt;}
.y9f8_c00000{bottom:174.667067pt;}
.y528_c00000{bottom:174.667307pt;}
.y109d_c00000{bottom:174.827067pt;}
.y19d2_c00000{bottom:174.910040pt;}
.y578_c00000{bottom:174.987067pt;}
.y17ad_c00000{bottom:175.227067pt;}
.y18b1_c00000{bottom:175.227200pt;}
.ya6f_c00000{bottom:175.307067pt;}
.y9ce_c00000{bottom:175.307907pt;}
.y1463_c00000{bottom:175.467067pt;}
.y9f2_c00000{bottom:175.547067pt;}
.y1f6_c00000{bottom:175.627067pt;}
.y1bb4_c00000{bottom:175.707067pt;}
.y1b0f_c00000{bottom:175.947067pt;}
.ya80_c00000{bottom:176.188067pt;}
.y892_c00000{bottom:176.266611pt;}
.y868_c00000{bottom:176.347011pt;}
.y108_c00000{bottom:176.347067pt;}
.y175c_c00000{bottom:176.347200pt;}
.y1c95_c00000{bottom:176.428699pt;}
.ydc3_c00000{bottom:176.508307pt;}
.y1e78_c00000{bottom:176.747067pt;}
.y216a_c00000{bottom:176.827368pt;}
.y190c_c00000{bottom:176.987067pt;}
.y1045_c00000{bottom:177.067075pt;}
.y70c_c00000{bottom:177.067200pt;}
.y2218_c00000{bottom:177.147200pt;}
.y183e_c00000{bottom:177.227067pt;}
.y80e_c00000{bottom:177.227163pt;}
.y1052_c00000{bottom:177.227571pt;}
.y14f1_c00000{bottom:177.387067pt;}
.y136_c00000{bottom:177.467067pt;}
.y1a6a_c00000{bottom:177.547067pt;}
.ye6c_c00000{bottom:177.547227pt;}
.y1cf2_c00000{bottom:177.547827pt;}
.yd11_c00000{bottom:177.627067pt;}
.y18a_c00000{bottom:177.867067pt;}
.ybc6_c00000{bottom:177.867200pt;}
.yff6_c00000{bottom:178.667067pt;}
.y1d70_c00000{bottom:178.747067pt;}
.ya44_c00000{bottom:178.827067pt;}
.y1264_c00000{bottom:179.067307pt;}
.y193e_c00000{bottom:179.067907pt;}
.y176f_c00000{bottom:179.068147pt;}
.y1f25_c00000{bottom:179.147067pt;}
.y43f_c00000{bottom:179.147200pt;}
.y1f0b_c00000{bottom:179.147243pt;}
.yb78_c00000{bottom:179.227067pt;}
.y2026_c00000{bottom:179.387067pt;}
.ybe0_c00000{bottom:179.467067pt;}
.y18ee_c00000{bottom:179.467987pt;}
.y59d_c00000{bottom:179.627067pt;}
.y1646_c00000{bottom:179.707067pt;}
.y6db_c00000{bottom:179.947067pt;}
.y6be_c00000{bottom:180.027200pt;}
.y91f_c00000{bottom:180.107200pt;}
.y1d45_c00000{bottom:180.187067pt;}
.y755_c00000{bottom:180.347067pt;}
.yb39_c00000{bottom:180.507067pt;}
.y2203_c00000{bottom:180.587067pt;}
.y16a0_c00000{bottom:180.587555pt;}
.y39a_c00000{bottom:180.588067pt;}
.y197e_c00000{bottom:180.588227pt;}
.y1ac9_c00000{bottom:180.747067pt;}
.y1e89_c00000{bottom:180.755827pt;}
.y688_c00000{bottom:180.829827pt;}
.ye14_c00000{bottom:180.987067pt;}
.y242_c00000{bottom:180.987200pt;}
.y9ea_c00000{bottom:181.067200pt;}
.y163_c00000{bottom:181.147067pt;}
.y8c2_c00000{bottom:181.147200pt;}
.y146b_c00000{bottom:181.227067pt;}
.y207a_c00000{bottom:181.228555pt;}
.ye0a_c00000{bottom:181.307067pt;}
.y1f81_c00000{bottom:181.387067pt;}
.y119d_c00000{bottom:181.387251pt;}
.y4c3_c00000{bottom:181.467067pt;}
.y6d2_c00000{bottom:181.467563pt;}
.y1534_c00000{bottom:181.470043pt;}
.y2113_c00000{bottom:181.474192pt;}
.y34a_c00000{bottom:181.547067pt;}
.y942_c00000{bottom:181.547387pt;}
.y1eb5_c00000{bottom:181.627067pt;}
.y120b_c00000{bottom:181.707067pt;}
.y10e6_c00000{bottom:181.867067pt;}
.y1670_c00000{bottom:181.947067pt;}
.y11ea_c00000{bottom:182.027200pt;}
.y957_c00000{bottom:182.107067pt;}
.yb50_c00000{bottom:182.187200pt;}
.y17e8_c00000{bottom:182.187667pt;}
.y1d29_c00000{bottom:182.187827pt;}
.yc67_c00000{bottom:182.427067pt;}
.y1422_c00000{bottom:182.507067pt;}
.y1dad_c00000{bottom:182.507200pt;}
.y1b46_c00000{bottom:182.587067pt;}
.y5eb_c00000{bottom:182.667067pt;}
.y73c_c00000{bottom:182.667200pt;}
.y1d63_c00000{bottom:182.747067pt;}
.yb0a_c00000{bottom:182.747163pt;}
.yf00_c00000{bottom:182.907067pt;}
.y1521_c00000{bottom:182.987067pt;}
.y1751_c00000{bottom:183.067067pt;}
.y1fb2_c00000{bottom:183.067227pt;}
.ye99_c00000{bottom:183.227067pt;}
.y1613_c00000{bottom:183.227355pt;}
.y8d9_c00000{bottom:183.627067pt;}
.y19fb_c00000{bottom:183.707067pt;}
.y1283_c00000{bottom:183.707747pt;}
.y19a4_c00000{bottom:183.707907pt;}
.y200b_c00000{bottom:183.708667pt;}
.ye37_c00000{bottom:183.787067pt;}
.y693_c00000{bottom:183.867067pt;}
.y8fa_c00000{bottom:183.867227pt;}
.ycec_c00000{bottom:184.027067pt;}
.y829_c00000{bottom:184.027200pt;}
.y495_c00000{bottom:184.187067pt;}
.y638_c00000{bottom:184.187200pt;}
.y3bb_c00000{bottom:184.267067pt;}
.y212a_c00000{bottom:184.347067pt;}
.ya0_c00000{bottom:184.355715pt;}
.yec8_c00000{bottom:184.427067pt;}
.ycd3_c00000{bottom:184.427200pt;}
.ya50_c00000{bottom:184.507147pt;}
.yf4b_c00000{bottom:184.667067pt;}
.y1149_c00000{bottom:184.667752pt;}
.y355_c00000{bottom:184.747067pt;}
.y1143_c00000{bottom:184.828072pt;}
.y1a22_c00000{bottom:184.907067pt;}
.y1b0_c00000{bottom:184.987067pt;}
.y172b_c00000{bottom:184.987200pt;}
.y1d8e_c00000{bottom:185.227067pt;}
.y147c_c00000{bottom:185.227280pt;}
.y2fd_c00000{bottom:185.307067pt;}
.y4e2_c00000{bottom:185.387067pt;}
.y15f4_c00000{bottom:185.467067pt;}
.y2bd_c00000{bottom:185.547067pt;}
.y2d6_c00000{bottom:185.547200pt;}
.y109a_c00000{bottom:185.627067pt;}
.y1a9b_c00000{bottom:185.707067pt;}
.y1c27_c00000{bottom:185.867067pt;}
.y1709_c00000{bottom:185.947067pt;}
.y11a0_c00000{bottom:186.027067pt;}
.y1f44_c00000{bottom:186.107200pt;}
.y159b_c00000{bottom:186.107315pt;}
.y14b3_c00000{bottom:186.267067pt;}
.y80d_c00000{bottom:186.427067pt;}
.y728_c00000{bottom:186.507067pt;}
.y1ccf_c00000{bottom:186.507075pt;}
.y8b3_c00000{bottom:186.587067pt;}
.y7ba_c00000{bottom:186.667067pt;}
.yd54_c00000{bottom:186.747067pt;}
.y1a40_c00000{bottom:186.747227pt;}
.yf6a_c00000{bottom:186.987067pt;}
.ya5d_c00000{bottom:186.987667pt;}
.y971_c00000{bottom:186.988587pt;}
.y1971_c00000{bottom:187.067067pt;}
.y5b5_c00000{bottom:187.067200pt;}
.y57_c00000{bottom:187.466904pt;}
.yf16_c00000{bottom:187.467067pt;}
.yc47_c00000{bottom:187.547067pt;}
.y37c_c00000{bottom:187.707067pt;}
.y779_c00000{bottom:187.787067pt;}
.y20a_c00000{bottom:188.267067pt;}
.y1ee1_c00000{bottom:188.347251pt;}
.y463_c00000{bottom:188.587067pt;}
.yda8_c00000{bottom:188.587200pt;}
.y867_c00000{bottom:188.667067pt;}
.y1c44_c00000{bottom:188.747067pt;}
.y565_c00000{bottom:188.827067pt;}
.y13b9_c00000{bottom:188.987067pt;}
.y26d_c00000{bottom:189.067200pt;}
.y515_c00000{bottom:189.307067pt;}
.y2208_c00000{bottom:189.546195pt;}
.y2205_c00000{bottom:189.547067pt;}
.y203a_c00000{bottom:189.787067pt;}
.y1116_c00000{bottom:189.867067pt;}
.y53c_c00000{bottom:189.947067pt;}
.y111a_c00000{bottom:190.027200pt;}
.y9a7_c00000{bottom:190.027827pt;}
.y70b_c00000{bottom:190.028067pt;}
.y60d_c00000{bottom:190.028147pt;}
.y1a81_c00000{bottom:190.107147pt;}
.y30c_c00000{bottom:190.187067pt;}
.yc0_c00000{bottom:190.187200pt;}
.y666_c00000{bottom:190.347067pt;}
.yeb4_c00000{bottom:190.507067pt;}
.yd10_c00000{bottom:190.587907pt;}
.ye35_c00000{bottom:190.667067pt;}
.y1de6_c00000{bottom:190.747067pt;}
.y1462_c00000{bottom:190.827067pt;}
.ya05_c00000{bottom:191.147067pt;}
.y1295_c00000{bottom:191.387987pt;}
.ye49_c00000{bottom:191.389587pt;}
.y290_c00000{bottom:191.467067pt;}
.y1b0e_c00000{bottom:191.547067pt;}
.y527_c00000{bottom:191.547227pt;}
.yd3b_c00000{bottom:191.707067pt;}
.y19d1_c00000{bottom:191.709440pt;}
.y1ca_c00000{bottom:191.867200pt;}
.y1c94_c00000{bottom:191.868851pt;}
.yb09_c00000{bottom:191.947067pt;}
.y16bf_c00000{bottom:192.107067pt;}
.y2169_c00000{bottom:192.107200pt;}
.y136c_c00000{bottom:192.187067pt;}
.y9cd_c00000{bottom:192.187827pt;}
.y1044_c00000{bottom:192.427067pt;}
.y1612_c00000{bottom:192.427259pt;}
.yf9f_c00000{bottom:192.587067pt;}
.y1051_c00000{bottom:192.587563pt;}
.y84a_c00000{bottom:192.827067pt;}
.yb77_c00000{bottom:192.987067pt;}
.ya7f_c00000{bottom:193.067987pt;}
.y6bd_c00000{bottom:193.068067pt;}
.y12e4_c00000{bottom:193.227067pt;}
.y64e_c00000{bottom:193.387067pt;}
.y91b_c00000{bottom:193.387200pt;}
.y1d20_c00000{bottom:193.627067pt;}
.y1d50_c00000{bottom:193.627200pt;}
.y1c1b_c00000{bottom:193.787067pt;}
.yde6_c00000{bottom:194.187200pt;}
.y20c4_c00000{bottom:194.347067pt;}
.ya24_c00000{bottom:194.427067pt;}
.ye6b_c00000{bottom:194.427147pt;}
.y1cf1_c00000{bottom:194.427747pt;}
.y1f66_c00000{bottom:194.507067pt;}
.y1f0a_c00000{bottom:194.507235pt;}
.y2146_c00000{bottom:194.587067pt;}
.y80c_c00000{bottom:194.587307pt;}
.y21e_c00000{bottom:194.667067pt;}
.y2a7_c00000{bottom:194.747067pt;}
.yb16_c00000{bottom:194.747200pt;}
.y6ff_c00000{bottom:194.827067pt;}
.ydc2_c00000{bottom:194.908059pt;}
.y767_c00000{bottom:194.987067pt;}
.y7e_c00000{bottom:195.075579pt;}
.ye4_c00000{bottom:195.310779pt;}
.y1aef_c00000{bottom:195.387200pt;}
.y32b_c00000{bottom:195.467067pt;}
.yab6_c00000{bottom:195.547067pt;}
.ybdf_c00000{bottom:195.627067pt;}
.y891_c00000{bottom:195.707067pt;}
.y14f0_c00000{bottom:195.787067pt;}
.y13f5_c00000{bottom:195.867067pt;}
.y169f_c00000{bottom:195.867528pt;}
.y1564_c00000{bottom:195.947067pt;}
.y1263_c00000{bottom:195.947227pt;}
.y193d_c00000{bottom:195.947827pt;}
.y176e_c00000{bottom:195.948067pt;}
.y205e_c00000{bottom:196.187067pt;}
.y2025_c00000{bottom:196.187200pt;}
.ye31_c00000{bottom:196.267067pt;}
.y1bce_c00000{bottom:196.267200pt;}
.y18ed_c00000{bottom:196.347907pt;}
.y41a_c00000{bottom:196.427067pt;}
.ya43_c00000{bottom:196.507067pt;}
.yd71_c00000{bottom:196.667067pt;}
.ycae_c00000{bottom:196.667200pt;}
.y1f5_c00000{bottom:196.747067pt;}
.y119c_c00000{bottom:196.747243pt;}
.y1895_c00000{bottom:196.827067pt;}
.y177b_c00000{bottom:196.907067pt;}
.yff0_c00000{bottom:196.987067pt;}
.y20cf_c00000{bottom:197.067200pt;}
.y10e5_c00000{bottom:197.147200pt;}
.y1a54_c00000{bottom:197.227067pt;}
.y11e9_c00000{bottom:197.387067pt;}
.y399_c00000{bottom:197.467987pt;}
.y197d_c00000{bottom:197.468147pt;}
.y687_c00000{bottom:197.709747pt;}
.y17c3_c00000{bottom:197.787067pt;}
.y1eb4_c00000{bottom:197.787920pt;}
.y21d5_c00000{bottom:197.947067pt;}
.y754_c00000{bottom:198.027067pt;}
.yaca_c00000{bottom:198.027200pt;}
.y3e2_c00000{bottom:198.107067pt;}
.y2217_c00000{bottom:198.107200pt;}
.y20ee_c00000{bottom:198.187067pt;}
.y9f7_c00000{bottom:198.187200pt;}
.y941_c00000{bottom:198.427307pt;}
.y914_c00000{bottom:198.507067pt;}
.y135_c00000{bottom:198.667067pt;}
.y1c65_c00000{bottom:198.747067pt;}
.y9e9_c00000{bottom:198.907067pt;}
.y1d28_c00000{bottom:198.987227pt;}
.y1225_c00000{bottom:198.989067pt;}
.y189_c00000{bottom:199.067067pt;}
.yb97_c00000{bottom:199.147200pt;}
.y1bb3_c00000{bottom:199.227067pt;}
.y8c1_c00000{bottom:199.228067pt;}
.y20f3_c00000{bottom:199.307200pt;}
.y3fd_c00000{bottom:199.387067pt;}
.y1b56_c00000{bottom:199.467067pt;}
.y62d_c00000{bottom:199.547067pt;}
.y2079_c00000{bottom:199.628307pt;}
.y1cc1_c00000{bottom:199.707067pt;}
.yb08_c00000{bottom:199.787067pt;}
.y119f_c00000{bottom:199.787467pt;}
.y4c2_c00000{bottom:199.867067pt;}
.y6d1_c00000{bottom:199.867315pt;}
.y1533_c00000{bottom:199.869795pt;}
.y2112_c00000{bottom:199.873944pt;}
.y1bd9_c00000{bottom:199.947067pt;}
.y1fb1_c00000{bottom:199.947147pt;}
.yf4a_c00000{bottom:200.027200pt;}
.y1148_c00000{bottom:200.027744pt;}
.yc26_c00000{bottom:200.107067pt;}
.y1142_c00000{bottom:200.188064pt;}
.y13df_c00000{bottom:200.347067pt;}
.y1282_c00000{bottom:200.587667pt;}
.yc46_c00000{bottom:200.587827pt;}
.y200a_c00000{bottom:200.588587pt;}
.y692_c00000{bottom:200.747067pt;}
.y8f9_c00000{bottom:200.747147pt;}
.y1d06_c00000{bottom:200.827067pt;}
.yc7d_c00000{bottom:200.907067pt;}
.y791_c00000{bottom:201.067067pt;}
.y1382_c00000{bottom:201.067200pt;}
.ye61_c00000{bottom:201.307067pt;}
.y1d6f_c00000{bottom:201.387067pt;}
.y15f0_c00000{bottom:201.467067pt;}
.yc66_c00000{bottom:201.547067pt;}
.ye81_c00000{bottom:201.627067pt;}
.y1611_c00000{bottom:201.627163pt;}
.y7dd_c00000{bottom:201.707067pt;}
.y866_c00000{bottom:201.707987pt;}
.y1cce_c00000{bottom:201.867067pt;}
.yee5_c00000{bottom:201.947067pt;}
.y8e6_c00000{bottom:202.027067pt;}
.yeff_c00000{bottom:202.027200pt;}
.y147b_c00000{bottom:202.107200pt;}
.y241_c00000{bottom:202.187200pt;}
.y3ba_c00000{bottom:202.267067pt;}
.y162_c00000{bottom:202.347067pt;}
.yc00_c00000{bottom:202.427067pt;}
.ya69_c00000{bottom:202.507067pt;}
.y577_c00000{bottom:202.587067pt;}
.y1dc4_c00000{bottom:202.667067pt;}
.y17ac_c00000{bottom:202.827067pt;}
.y18b0_c00000{bottom:202.827200pt;}
.y131f_c00000{bottom:203.067200pt;}
.y59c_c00000{bottom:203.147200pt;}
.yd53_c00000{bottom:203.627067pt;}
.y1a3f_c00000{bottom:203.627147pt;}
.yb76_c00000{bottom:203.628507pt;}
.y1ee0_c00000{bottom:203.707243pt;}
.ya5c_c00000{bottom:203.787067pt;}
.y970_c00000{bottom:203.787987pt;}
.y107_c00000{bottom:203.947067pt;}
.y153a_c00000{bottom:203.947200pt;}
.y18de_c00000{bottom:204.107200pt;}
.y354_c00000{bottom:204.187200pt;}
.y1e77_c00000{bottom:204.347067pt;}
.y159a_c00000{bottom:204.507067pt;}
.y183d_c00000{bottom:204.827067pt;}
.y1a69_c00000{bottom:205.147200pt;}
.y177a_c00000{bottom:205.148067pt;}
.y1115_c00000{bottom:205.227067pt;}
.y84e_c00000{bottom:205.467067pt;}
.ybc5_c00000{bottom:205.467200pt;}
.y1645_c00000{bottom:205.547067pt;}
.y1d76_c00000{bottom:206.027200pt;}
.y1af_c00000{bottom:206.107067pt;}
.y1043_c00000{bottom:206.107200pt;}
.y1461_c00000{bottom:206.187200pt;}
.y1468_c00000{bottom:206.187235pt;}
.y26c_c00000{bottom:206.267067pt;}
.yf9e_c00000{bottom:206.427067pt;}
.y43e_c00000{bottom:206.747067pt;}
.y1401_c00000{bottom:206.827067pt;}
.y9a6_c00000{bottom:206.907747pt;}
.y70a_c00000{bottom:206.907987pt;}
.y60c_c00000{bottom:206.908067pt;}
.y1fe1_c00000{bottom:206.987067pt;}
.y1b31_c00000{bottom:207.067200pt;}
.y2207_c00000{bottom:207.146659pt;}
.y168d_c00000{bottom:207.147067pt;}
.y2204_c00000{bottom:207.147200pt;}
.y5b4_c00000{bottom:207.227067pt;}
.y1c93_c00000{bottom:207.228843pt;}
.yd0f_c00000{bottom:207.387307pt;}
.y217a_c00000{bottom:207.467067pt;}
.y4e1_c00000{bottom:207.707067pt;}
.y828_c00000{bottom:207.707315pt;}
.y1d44_c00000{bottom:207.787067pt;}
.y1050_c00000{bottom:207.867395pt;}
.y53b_c00000{bottom:208.029040pt;}
.yb38_c00000{bottom:208.107067pt;}
.y1294_c00000{bottom:208.187387pt;}
.ye48_c00000{bottom:208.188987pt;}
.y1ac8_c00000{bottom:208.347067pt;}
.y1b0d_c00000{bottom:208.427067pt;}
.y526_c00000{bottom:208.427147pt;}
.yb4f_c00000{bottom:208.587067pt;}
.y19d0_c00000{bottom:208.589360pt;}
.ye09_c00000{bottom:208.907067pt;}
.y1f80_c00000{bottom:208.987067pt;}
.y1932_c00000{bottom:209.067200pt;}
.y9cc_c00000{bottom:209.067747pt;}
.y349_c00000{bottom:209.147200pt;}
.y120a_c00000{bottom:209.307067pt;}
.y209_c00000{bottom:209.387067pt;}
.y15c5_c00000{bottom:209.467067pt;}
.y166f_c00000{bottom:209.547067pt;}
.y956_c00000{bottom:209.707067pt;}
.y1f09_c00000{bottom:209.787067pt;}
.ya7e_c00000{bottom:209.947907pt;}
.y6bc_c00000{bottom:209.947987pt;}
.y122d_c00000{bottom:210.107067pt;}
.y1dac_c00000{bottom:210.107200pt;}
.y56_c00000{bottom:210.187200pt;}
.y5ea_c00000{bottom:210.267067pt;}
.y73b_c00000{bottom:210.267200pt;}
.y2193_c00000{bottom:210.267227pt;}
.y1d62_c00000{bottom:210.347067pt;}
.y1818_c00000{bottom:210.427067pt;}
.y1520_c00000{bottom:210.587067pt;}
.y2e_c00000{bottom:210.666667pt;}
.y1750_c00000{bottom:210.667067pt;}
.yfef_c00000{bottom:210.826667pt;}
.ye98_c00000{bottom:210.827067pt;}
.yf15_c00000{bottom:210.987067pt;}
.y8d8_c00000{bottom:211.227067pt;}
.y169e_c00000{bottom:211.227395pt;}
.ye6a_c00000{bottom:211.307067pt;}
.y1cf0_c00000{bottom:211.307667pt;}
.y80b_c00000{bottom:211.467227pt;}
.yceb_c00000{bottom:211.627067pt;}
.y494_c00000{bottom:211.787067pt;}
.y7fc_c00000{bottom:211.787200pt;}
.yec7_c00000{bottom:212.027067pt;}
.ycd2_c00000{bottom:212.027200pt;}
.y1a9a_c00000{bottom:212.107200pt;}
.y119b_c00000{bottom:212.107235pt;}
.yabc_c00000{bottom:212.507067pt;}
.y172a_c00000{bottom:212.587200pt;}
.y28f_c00000{bottom:212.667067pt;}
.y2001_c00000{bottom:212.827067pt;}
.y1262_c00000{bottom:212.827147pt;}
.y193c_c00000{bottom:212.827747pt;}
.y176d_c00000{bottom:212.827987pt;}
.y2fc_c00000{bottom:212.907067pt;}
.y2064_c00000{bottom:212.987067pt;}
.y1eb3_c00000{bottom:213.067752pt;}
.y2bc_c00000{bottom:213.147067pt;}
.y2d5_c00000{bottom:213.147200pt;}
.y1099_c00000{bottom:213.227067pt;}
.y18ec_c00000{bottom:213.227827pt;}
.y1c26_c00000{bottom:213.307067pt;}
.ydc1_c00000{bottom:213.307811pt;}
.y1708_c00000{bottom:213.547067pt;}
.y9f6_c00000{bottom:213.626283pt;}
.y119e_c00000{bottom:213.627067pt;}
.ybf_c00000{bottom:213.707067pt;}
.y2074_c00000{bottom:213.787067pt;}
.y1042_c00000{bottom:213.866667pt;}
.y14b2_c00000{bottom:213.867067pt;}
.y727_c00000{bottom:214.107200pt;}
.y14ef_c00000{bottom:214.187067pt;}
.y1c9_c00000{bottom:214.187200pt;}
.y7b9_c00000{bottom:214.267067pt;}
.y398_c00000{bottom:214.347907pt;}
.y197c_c00000{bottom:214.348067pt;}
.yf69_c00000{bottom:214.587067pt;}
.y686_c00000{bottom:214.589667pt;}
.y1e_c00000{bottom:214.666667pt;}
.y179f_c00000{bottom:214.667067pt;}
.y1e88_c00000{bottom:214.675243pt;}
.y20e5_c00000{bottom:214.827067pt;}
.yb07_c00000{bottom:215.067200pt;}
.y17e7_c00000{bottom:215.146811pt;}
.yd3a_c00000{bottom:215.227067pt;}
.y37b_c00000{bottom:215.307067pt;}
.y940_c00000{bottom:215.307227pt;}
.yf49_c00000{bottom:215.387067pt;}
.y1141_c00000{bottom:215.467896pt;}
.yee4_c00000{bottom:215.627067pt;}
.y890_c00000{bottom:215.707067pt;}
.y2202_c00000{bottom:215.867067pt;}
.y1d27_c00000{bottom:215.867147pt;}
.y1224_c00000{bottom:215.868987pt;}
.ya_c00000{bottom:216.000000pt;}
.y8c0_c00000{bottom:216.107987pt;}
.y462_c00000{bottom:216.187067pt;}
.yda7_c00000{bottom:216.187200pt;}
.y109c_c00000{bottom:216.267067pt;}
.y1c43_c00000{bottom:216.347067pt;}
.y564_c00000{bottom:216.427067pt;}
.y13b8_c00000{bottom:216.587067pt;}
.y7d_c00000{bottom:216.595459pt;}
.y9e8_c00000{bottom:216.667200pt;}
.y15f3_c00000{bottom:216.827059pt;}
.y15ef_c00000{bottom:216.827067pt;}
.ye3_c00000{bottom:216.830659pt;}
.ya4f_c00000{bottom:217.067200pt;}
.ya23_c00000{bottom:217.147067pt;}
.y21d4_c00000{bottom:217.307067pt;}
.y1281_c00000{bottom:217.387067pt;}
.yc45_c00000{bottom:217.387227pt;}
.y1ccd_c00000{bottom:217.387387pt;}
.y2009_c00000{bottom:217.387987pt;}
.y30b_c00000{bottom:217.627067pt;}
.y31b_c00000{bottom:217.787067pt;}
.y1767_c00000{bottom:217.787200pt;}
.y190b_c00000{bottom:217.866627pt;}
.y1f4_c00000{bottom:217.947067pt;}
.y2078_c00000{bottom:218.028059pt;}
.y21d_c00000{bottom:218.107200pt;}
.y3b9_c00000{bottom:218.267067pt;}
.y1532_c00000{bottom:218.269547pt;}
.y2111_c00000{bottom:218.273696pt;}
.y1bd8_c00000{bottom:218.347067pt;}
.y131e_c00000{bottom:218.427067pt;}
.y1644_c00000{bottom:218.507067pt;}
.y6fe_c00000{bottom:218.507315pt;}
.y865_c00000{bottom:218.507387pt;}
.y691_c00000{bottom:218.667067pt;}
.ya04_c00000{bottom:218.747067pt;}
.y1edf_c00000{bottom:218.987075pt;}
.y19fa_c00000{bottom:218.987200pt;}
.y147a_c00000{bottom:219.147067pt;}
.yac9_c00000{bottom:219.227067pt;}
.yb96_c00000{bottom:219.307067pt;}
.yefe_c00000{bottom:219.627067pt;}
.y16be_c00000{bottom:219.707067pt;}
.y134_c00000{bottom:219.787067pt;}
.y419_c00000{bottom:219.867067pt;}
.y26b_c00000{bottom:219.867200pt;}
.y188_c00000{bottom:220.187067pt;}
.y18dd_c00000{bottom:220.267435pt;}
.y849_c00000{bottom:220.427067pt;}
.ybde_c00000{bottom:220.507067pt;}
.yb75_c00000{bottom:220.508427pt;}
.y1bff_c00000{bottom:220.587067pt;}
.y96f_c00000{bottom:220.667907pt;}
.y12e3_c00000{bottom:220.827067pt;}
.y64d_c00000{bottom:220.987067pt;}
.y91a_c00000{bottom:220.987200pt;}
.y1d1f_c00000{bottom:221.227067pt;}
.y1d4f_c00000{bottom:221.227200pt;}
.y1114_c00000{bottom:221.387067pt;}
.y1460_c00000{bottom:221.467067pt;}
.ya5b_c00000{bottom:221.707067pt;}
.yde5_c00000{bottom:221.787067pt;}
.y21c1_c00000{bottom:222.027067pt;}
.y1779_c00000{bottom:222.027987pt;}
.y1f65_c00000{bottom:222.107067pt;}
.yc98_c00000{bottom:222.187067pt;}
.y2a6_c00000{bottom:222.347067pt;}
.yb15_c00000{bottom:222.347200pt;}
.y1a80_c00000{bottom:222.507067pt;}
.y766_c00000{bottom:222.587067pt;}
.y1c92_c00000{bottom:222.588835pt;}
.y1aee_c00000{bottom:222.987200pt;}
.y104f_c00000{bottom:223.067067pt;}
.yab5_c00000{bottom:223.147067pt;}
.y240_c00000{bottom:223.307200pt;}
.y161_c00000{bottom:223.467067pt;}
.y353_c00000{bottom:223.547067pt;}
.y1dc3_c00000{bottom:223.787067pt;}
.y9a5_c00000{bottom:223.787667pt;}
.y709_c00000{bottom:223.787907pt;}
.y60b_c00000{bottom:223.787987pt;}
.ye30_c00000{bottom:223.867067pt;}
.y1bcd_c00000{bottom:223.867200pt;}
.yf14_c00000{bottom:223.947987pt;}
.yf_c00000{bottom:224.000000pt;}
.y1b96_c00000{bottom:224.027067pt;}
.ya42_c00000{bottom:224.107067pt;}
.yd70_c00000{bottom:224.267067pt;}
.ycad_c00000{bottom:224.267200pt;}
.yd0e_c00000{bottom:224.267227pt;}
.y1894_c00000{bottom:224.347067pt;}
.y1fe0_c00000{bottom:224.427067pt;}
.yfee_c00000{bottom:224.587067pt;}
.y15c4_c00000{bottom:224.827067pt;}
.y2206_c00000{bottom:224.827283pt;}
.y53a_c00000{bottom:224.908960pt;}
.y1293_c00000{bottom:225.067307pt;}
.ye47_c00000{bottom:225.068907pt;}
.ye80_c00000{bottom:225.147067pt;}
.y2192_c00000{bottom:225.227067pt;}
.y1a12_c00000{bottom:225.307067pt;}
.y17c2_c00000{bottom:225.387067pt;}
.y19cf_c00000{bottom:225.469280pt;}
.y59b_c00000{bottom:225.627067pt;}
.y3e1_c00000{bottom:225.707067pt;}
.y20ed_c00000{bottom:225.787067pt;}
.yb4e_c00000{bottom:225.867067pt;}
.y9cb_c00000{bottom:225.867147pt;}
.y5ce_c00000{bottom:226.107067pt;}
.y1c64_c00000{bottom:226.347067pt;}
.y2087_c00000{bottom:226.347315pt;}
.y1b81_c00000{bottom:226.587067pt;}
.y169d_c00000{bottom:226.587555pt;}
.y20bc_c00000{bottom:226.747067pt;}
.ya7d_c00000{bottom:226.827827pt;}
.y6bb_c00000{bottom:226.827907pt;}
.y3fc_c00000{bottom:226.907067pt;}
.y1599_c00000{bottom:226.907200pt;}
.y1098_c00000{bottom:226.987067pt;}
.y62c_c00000{bottom:227.147067pt;}
.y1ae_c00000{bottom:227.227067pt;}
.y1cc0_c00000{bottom:227.307067pt;}
.y119a_c00000{bottom:227.387067pt;}
.y1dd9_c00000{bottom:227.387075pt;}
.y2044_c00000{bottom:227.467067pt;}
.y1041_c00000{bottom:227.627067pt;}
.yc25_c00000{bottom:227.707067pt;}
.y10e4_c00000{bottom:227.787067pt;}
.y13de_c00000{bottom:227.947067pt;}
.y11e8_c00000{bottom:228.027067pt;}
.y1cef_c00000{bottom:228.107067pt;}
.y80a_c00000{bottom:228.347147pt;}
.y1d05_c00000{bottom:228.427067pt;}
.y1eb2_c00000{bottom:228.427744pt;}
.yc7c_c00000{bottom:228.507067pt;}
.y1610_c00000{bottom:228.507200pt;}
.y790_c00000{bottom:228.667067pt;}
.y1381_c00000{bottom:228.667200pt;}
.ye60_c00000{bottom:228.827067pt;}
.y1ac7_c00000{bottom:228.987067pt;}
.y10e0_c00000{bottom:229.147067pt;}
.y7dc_c00000{bottom:229.307067pt;}
.y1b45_c00000{bottom:229.387067pt;}
.y8e5_c00000{bottom:229.627067pt;}
.y1261_c00000{bottom:229.707067pt;}
.y193b_c00000{bottom:229.707667pt;}
.y176c_c00000{bottom:229.707907pt;}
.y1556_c00000{bottom:229.787200pt;}
.ybff_c00000{bottom:230.027067pt;}
.y18eb_c00000{bottom:230.027227pt;}
.ya68_c00000{bottom:230.107067pt;}
.y576_c00000{bottom:230.187067pt;}
.y4e0_c00000{bottom:230.187200pt;}
.y1f7f_c00000{bottom:230.267067pt;}
.yb06_c00000{bottom:230.427067pt;}
.y18af_c00000{bottom:230.427200pt;}
.y208_c00000{bottom:230.507067pt;}
.yf4e_c00000{bottom:230.667067pt;}
.y1140_c00000{bottom:230.827888pt;}
.y20a9_c00000{bottom:230.907067pt;}
.y397_c00000{bottom:231.227827pt;}
.y197b_c00000{bottom:231.227987pt;}
.y1643_c00000{bottom:231.387067pt;}
.y685_c00000{bottom:231.389067pt;}
.y106_c00000{bottom:231.547067pt;}
.y175b_c00000{bottom:231.547200pt;}
.ydc0_c00000{bottom:231.707563pt;}
.y1e76_c00000{bottom:231.947067pt;}
.y1f43_c00000{bottom:232.107067pt;}
.y15f2_c00000{bottom:232.187051pt;}
.y15ee_c00000{bottom:232.187067pt;}
.y93f_c00000{bottom:232.187147pt;}
.y55_c00000{bottom:232.267067pt;}
.y183c_c00000{bottom:232.427067pt;}
.y14ee_c00000{bottom:232.587067pt;}
.y1a68_c00000{bottom:232.747067pt;}
.y1223_c00000{bottom:232.748907pt;}
.y1280_c00000{bottom:232.907067pt;}
.y9f5_c00000{bottom:232.986219pt;}
.y8bf_c00000{bottom:232.987907pt;}
.y179e_c00000{bottom:233.067067pt;}
.ybc4_c00000{bottom:233.067200pt;}
.ycd1_c00000{bottom:233.227067pt;}
.y28e_c00000{bottom:233.787067pt;}
.y1e2f_c00000{bottom:233.867067pt;}
.y151f_c00000{bottom:234.107067pt;}
.y21c_c00000{bottom:234.187067pt;}
.y43d_c00000{bottom:234.267067pt;}
.yc44_c00000{bottom:234.267147pt;}
.y1ccc_c00000{bottom:234.267307pt;}
.y2008_c00000{bottom:234.267907pt;}
.y1dd1_c00000{bottom:234.347067pt;}
.y215e_c00000{bottom:234.427067pt;}
.y1b30_c00000{bottom:234.667067pt;}
.y690_c00000{bottom:234.747067pt;}
.y5b3_c00000{bottom:234.827067pt;}
.y20e4_c00000{bottom:234.987067pt;}
.y1d43_c00000{bottom:235.387067pt;}
.y864_c00000{bottom:235.387307pt;}
.y18dc_c00000{bottom:235.627427pt;}
.yb37_c00000{bottom:235.707067pt;}
.y88f_c00000{bottom:235.867067pt;}
.ybe_c00000{bottom:236.107067pt;}
.ye08_c00000{bottom:236.427067pt;}
.y2077_c00000{bottom:236.427811pt;}
.yda6_c00000{bottom:236.507067pt;}
.y1c8_c00000{bottom:236.507200pt;}
.y19f9_c00000{bottom:236.587067pt;}
.y4c1_c00000{bottom:236.667067pt;}
.y1531_c00000{bottom:236.669299pt;}
.y2110_c00000{bottom:236.673448pt;}
.y348_c00000{bottom:236.747067pt;}
.y1c25_c00000{bottom:236.747315pt;}
.y145f_c00000{bottom:236.827067pt;}
.y6fd_c00000{bottom:236.907067pt;}
.yf9d_c00000{bottom:237.067067pt;}
.y166e_c00000{bottom:237.147067pt;}
.y955_c00000{bottom:237.307067pt;}
.yb74_c00000{bottom:237.307827pt;}
.y14b1_c00000{bottom:237.387067pt;}
.y96e_c00000{bottom:237.547827pt;}
.yd39_c00000{bottom:237.707067pt;}
.y1dab_c00000{bottom:237.707200pt;}
.y5e9_c00000{bottom:237.867067pt;}
.y73a_c00000{bottom:237.867200pt;}
.y1c91_c00000{bottom:237.868667pt;}
.y1d61_c00000{bottom:237.947067pt;}
.y1817_c00000{bottom:238.027067pt;}
.y7c_c00000{bottom:238.035187pt;}
.y1cdf_c00000{bottom:238.107067pt;}
.y418_c00000{bottom:238.267067pt;}
.y26a_c00000{bottom:238.267200pt;}
.ye2_c00000{bottom:238.270387pt;}
.yfed_c00000{bottom:238.347467pt;}
.ye97_c00000{bottom:238.427067pt;}
.yefd_c00000{bottom:238.747067pt;}
.y8d7_c00000{bottom:238.827067pt;}
.yb4d_c00000{bottom:238.907747pt;}
.y1778_c00000{bottom:238.907907pt;}
.y1f3_c00000{bottom:239.067067pt;}
.ycea_c00000{bottom:239.227067pt;}
.y493_c00000{bottom:239.387067pt;}
.y7fb_c00000{bottom:239.387200pt;}
.y3b8_c00000{bottom:239.467067pt;}
.yec6_c00000{bottom:239.627067pt;}
.y1b80_c00000{bottom:239.628360pt;}
.y1a99_c00000{bottom:239.707067pt;}
.y1c42_c00000{bottom:239.867315pt;}
.y8f8_c00000{bottom:239.947067pt;}
.y525_c00000{bottom:240.107067pt;}
.y1729_c00000{bottom:240.187200pt;}
.y15c3_c00000{bottom:240.187235pt;}
.y1582_c00000{bottom:240.427067pt;}
.y2fb_c00000{bottom:240.507067pt;}
.y9a4_c00000{bottom:240.587067pt;}
.y708_c00000{bottom:240.587307pt;}
.y60a_c00000{bottom:240.587387pt;}
.y2bb_c00000{bottom:240.747067pt;}
.y2d4_c00000{bottom:240.747200pt;}
.y1097_c00000{bottom:240.827067pt;}
.yf13_c00000{bottom:240.827907pt;}
.y133_c00000{bottom:240.987067pt;}
.y1707_c00000{bottom:241.147067pt;}
.yd0d_c00000{bottom:241.147147pt;}
.y827_c00000{bottom:241.227067pt;}
.yc94_c00000{bottom:241.227315pt;}
.y187_c00000{bottom:241.387067pt;}
.y352_c00000{bottom:241.467067pt;}
.y1040_c00000{bottom:241.467075pt;}
.y726_c00000{bottom:241.707067pt;}
.y8b2_c00000{bottom:241.787067pt;}
.y1f08_c00000{bottom:241.787427pt;}
.y539_c00000{bottom:241.788880pt;}
.y7b8_c00000{bottom:241.867067pt;}
.y169c_c00000{bottom:241.867395pt;}
.y1292_c00000{bottom:241.947227pt;}
.ye46_c00000{bottom:241.948827pt;}
.y1fdf_c00000{bottom:242.027147pt;}
.yf68_c00000{bottom:242.187067pt;}
.yab4_c00000{bottom:242.267067pt;}
.y19ce_c00000{bottom:242.349200pt;}
.y1a7f_c00000{bottom:242.587067pt;}
.y37a_c00000{bottom:242.907067pt;}
.y10df_c00000{bottom:242.987067pt;}
.y2201_c00000{bottom:243.065731pt;}
.y21fd_c00000{bottom:243.067067pt;}
.y10e3_c00000{bottom:243.147067pt;}
.y136b_c00000{bottom:243.307067pt;}
.y118f_c00000{bottom:243.386667pt;}
.y11e7_c00000{bottom:243.387067pt;}
.yc97_c00000{bottom:243.547067pt;}
.ya7c_c00000{bottom:243.707747pt;}
.y6ba_c00000{bottom:243.707827pt;}
.y461_c00000{bottom:243.787067pt;}
.y1eb1_c00000{bottom:243.787736pt;}
.y109b_c00000{bottom:243.867067pt;}
.ycd0_c00000{bottom:243.868880pt;}
.y2024_c00000{bottom:243.947067pt;}
.y563_c00000{bottom:244.027067pt;}
.y9bc_c00000{bottom:244.027200pt;}
.y13b7_c00000{bottom:244.187067pt;}
.y9e7_c00000{bottom:244.267200pt;}
.y1642_c00000{bottom:244.347067pt;}
.y8fd_c00000{bottom:244.507067pt;}
.y23f_c00000{bottom:244.507200pt;}
.y160_c00000{bottom:244.667067pt;}
.y104e_c00000{bottom:244.667395pt;}
.ya22_c00000{bottom:244.747067pt;}
.y1dc2_c00000{bottom:244.987067pt;}
.y30a_c00000{bottom:245.147067pt;}
.y809_c00000{bottom:245.227067pt;}
.y31a_c00000{bottom:245.307067pt;}
.y1766_c00000{bottom:245.307200pt;}
.y665_c00000{bottom:245.547067pt;}
.y209c_c00000{bottom:245.627563pt;}
.yeb3_c00000{bottom:245.707067pt;}
.yb05_c00000{bottom:245.787067pt;}
.y514_c00000{bottom:245.867067pt;}
.y1de5_c00000{bottom:245.947067pt;}
.y113f_c00000{bottom:246.187880pt;}
.y1b44_c00000{bottom:246.267067pt;}
.y11c4_c00000{bottom:246.347067pt;}
.y193a_c00000{bottom:246.507067pt;}
.y176b_c00000{bottom:246.507307pt;}
.yf48_c00000{bottom:246.667067pt;}
.yc65_c00000{bottom:246.827067pt;}
.yb95_c00000{bottom:246.907067pt;}
.y18ea_c00000{bottom:246.907147pt;}
.y2179_c00000{bottom:246.987067pt;}
.y1563_c00000{bottom:247.067067pt;}
.y199a_c00000{bottom:247.227067pt;}
.y16bd_c00000{bottom:247.307067pt;}
.y15f1_c00000{bottom:247.466883pt;}
.y15ed_c00000{bottom:247.467067pt;}
.y1b95_c00000{bottom:247.547067pt;}
.ya41_c00000{bottom:247.627067pt;}
.yff5_c00000{bottom:247.627427pt;}
.y848_c00000{bottom:248.027067pt;}
.y396_c00000{bottom:248.107747pt;}
.y197a_c00000{bottom:248.107907pt;}
.y168e_c00000{bottom:248.187067pt;}
.y684_c00000{bottom:248.268987pt;}
.y1ad_c00000{bottom:248.427067pt;}
.y64c_c00000{bottom:248.587067pt;}
.y5cd_c00000{bottom:248.587200pt;}
.y1e87_c00000{bottom:248.594659pt;}
.y9f_c00000{bottom:248.755051pt;}
.y1d1e_c00000{bottom:248.827067pt;}
.y1d4e_c00000{bottom:248.827200pt;}
.y1c1a_c00000{bottom:248.987067pt;}
.y93e_c00000{bottom:249.067067pt;}
.y132a_c00000{bottom:249.067851pt;}
.y14b0_c00000{bottom:249.227067pt;}
.y9c6_c00000{bottom:249.307067pt;}
.yde4_c00000{bottom:249.387067pt;}
.y2145_c00000{bottom:249.627067pt;}
.y1222_c00000{bottom:249.628827pt;}
.y1260_c00000{bottom:249.707067pt;}
.y8be_c00000{bottom:249.787307pt;}
.y2a5_c00000{bottom:249.947067pt;}
.yb14_c00000{bottom:249.947200pt;}
.ydbf_c00000{bottom:250.107315pt;}
.y765_c00000{bottom:250.187067pt;}
.y20bb_c00000{bottom:250.187315pt;}
.y2216_c00000{bottom:250.267067pt;}
.y1f7e_c00000{bottom:250.427067pt;}
.y1aed_c00000{bottom:250.587200pt;}
.y14ed_c00000{bottom:250.987067pt;}
.y18db_c00000{bottom:250.987419pt;}
.y13f4_c00000{bottom:251.067067pt;}
.yc43_c00000{bottom:251.147067pt;}
.y1ccb_c00000{bottom:251.147227pt;}
.y2007_c00000{bottom:251.147827pt;}
.y1bfe_c00000{bottom:251.227067pt;}
.y205d_c00000{bottom:251.387067pt;}
.y417_c00000{bottom:251.467067pt;}
.y1bcc_c00000{bottom:251.467200pt;}
.y207_c00000{bottom:251.707067pt;}
.y54_c00000{bottom:251.787067pt;}
.yd6f_c00000{bottom:251.867067pt;}
.y1fb0_c00000{bottom:251.867147pt;}
.ycac_c00000{bottom:251.867200pt;}
.y1893_c00000{bottom:251.947067pt;}
.y1113_c00000{bottom:252.027067pt;}
.y68f_c00000{bottom:252.107067pt;}
.yfec_c00000{bottom:252.187067pt;}
.y1467_c00000{bottom:252.187243pt;}
.y190a_c00000{bottom:252.267067pt;}
.y863_c00000{bottom:252.267227pt;}
.y9f4_c00000{bottom:252.426675pt;}
.y1a53_c00000{bottom:252.427067pt;}
.y21b_c00000{bottom:252.747067pt;}
.y1a11_c00000{bottom:252.907067pt;}
.y17c1_c00000{bottom:252.987067pt;}
.yf9c_c00000{bottom:253.067067pt;}
.y59a_c00000{bottom:253.227067pt;}
.y1e2e_c00000{bottom:253.227243pt;}
.y1c90_c00000{bottom:253.228659pt;}
.y3e0_c00000{bottom:253.307067pt;}
.y20ec_c00000{bottom:253.387067pt;}
.y710_c00000{bottom:253.707067pt;}
.y1581_c00000{bottom:253.787067pt;}
.y1c63_c00000{bottom:253.947067pt;}
.yd52_c00000{bottom:254.187067pt;}
.ybdd_c00000{bottom:254.187387pt;}
.yb73_c00000{bottom:254.187747pt;}
.y96d_c00000{bottom:254.427747pt;}
.y3fb_c00000{bottom:254.507067pt;}
.y1598_c00000{bottom:254.507200pt;}
.y14af_c00000{bottom:254.587067pt;}
.y62b_c00000{bottom:254.747067pt;}
.y20d3_c00000{bottom:254.827315pt;}
.y2076_c00000{bottom:254.827563pt;}
.y1cbf_c00000{bottom:254.907067pt;}
.y28d_c00000{bottom:254.987067pt;}
.y4c0_c00000{bottom:255.067067pt;}
.y88e_c00000{bottom:255.067155pt;}
.y1530_c00000{bottom:255.069051pt;}
.y210f_c00000{bottom:255.073200pt;}
.y1bd7_c00000{bottom:255.147067pt;}
.yc24_c00000{bottom:255.307067pt;}
.y15c2_c00000{bottom:255.467067pt;}
.y13dd_c00000{bottom:255.547067pt;}
.yb4c_c00000{bottom:255.707147pt;}
.y1777_c00000{bottom:255.707307pt;}
.y5b2_c00000{bottom:255.867067pt;}
.y168c_c00000{bottom:255.947067pt;}
.yc7b_c00000{bottom:256.107067pt;}
.y160f_c00000{bottom:256.107200pt;}
.y78f_c00000{bottom:256.267067pt;}
.y1380_c00000{bottom:256.267200pt;}
.y1f8f_c00000{bottom:256.347067pt;}
.ye5f_c00000{bottom:256.427067pt;}
.y1b7f_c00000{bottom:256.508280pt;}
.y151e_c00000{bottom:256.587067pt;}
.y269_c00000{bottom:256.667200pt;}
.y103f_c00000{bottom:256.827067pt;}
.y7db_c00000{bottom:256.907067pt;}
.y118e_c00000{bottom:257.147067pt;}
.y1f07_c00000{bottom:257.147419pt;}
.y8e4_c00000{bottom:257.227067pt;}
.y169b_c00000{bottom:257.227395pt;}
.y1641_c00000{bottom:257.307067pt;}
.yc96_c00000{bottom:257.387067pt;}
.y1555_c00000{bottom:257.387200pt;}
.y1b0c_c00000{bottom:257.467067pt;}
.y707_c00000{bottom:257.467227pt;}
.y609_c00000{bottom:257.467307pt;}
.y575_c00000{bottom:257.627067pt;}
.yf12_c00000{bottom:257.627307pt;}
.y524_c00000{bottom:257.787067pt;}
.y4df_c00000{bottom:257.787200pt;}
.yee3_c00000{bottom:257.947067pt;}
.yd0c_c00000{bottom:258.027067pt;}
.y18ae_c00000{bottom:258.027200pt;}
.y1c41_c00000{bottom:258.267067pt;}
.y10de_c00000{bottom:258.347067pt;}
.y9ca_c00000{bottom:258.427067pt;}
.y9a3_c00000{bottom:258.507067pt;}
.y11e6_c00000{bottom:258.667067pt;}
.y538_c00000{bottom:258.668800pt;}
.y20c3_c00000{bottom:258.747067pt;}
.y1c7_c00000{bottom:258.747200pt;}
.ya03_c00000{bottom:258.827067pt;}
.y1291_c00000{bottom:258.827147pt;}
.ye45_c00000{bottom:258.828747pt;}
.y513_c00000{bottom:258.905955pt;}
.y1fde_c00000{bottom:258.907067pt;}
.y1eb0_c00000{bottom:259.067568pt;}
.y105_c00000{bottom:259.147067pt;}
.y175a_c00000{bottom:259.147200pt;}
.y19cd_c00000{bottom:259.229120pt;}
.y1816_c00000{bottom:259.307067pt;}
.y6fc_c00000{bottom:259.387067pt;}
.y7b_c00000{bottom:259.474915pt;}
.y1e75_c00000{bottom:259.547067pt;}
.yc93_c00000{bottom:259.627067pt;}
.ye1_c00000{bottom:259.710115pt;}
.y104d_c00000{bottom:259.867067pt;}
.yab3_c00000{bottom:259.947067pt;}
.y183b_c00000{bottom:260.027067pt;}
.y1f2_c00000{bottom:260.267067pt;}
.y1a67_c00000{bottom:260.347067pt;}
.y3b7_c00000{bottom:260.587067pt;}
.ya7b_c00000{bottom:260.587667pt;}
.y6b9_c00000{bottom:260.587747pt;}
.y19af_c00000{bottom:260.667067pt;}
.ybc3_c00000{bottom:260.667200pt;}
.y2200_c00000{bottom:260.746355pt;}
.y21fc_c00000{bottom:260.747067pt;}
.yccf_c00000{bottom:260.748800pt;}
.y1562_c00000{bottom:260.827067pt;}
.y15fd_c00000{bottom:260.987067pt;}
.yb04_c00000{bottom:261.067067pt;}
.y2191_c00000{bottom:261.307067pt;}
.y113e_c00000{bottom:261.467712pt;}
.y43c_c00000{bottom:261.867067pt;}
.ye96_c00000{bottom:261.947067pt;}
.yf46_c00000{bottom:262.027067pt;}
.y132_c00000{bottom:262.107067pt;}
.y127f_c00000{bottom:262.187067pt;}
.y1939_c00000{bottom:262.267067pt;}
.y7f3_c00000{bottom:262.427067pt;}
.y186_c00000{bottom:262.507067pt;}
.y20e3_c00000{bottom:262.587067pt;}
.y1f42_c00000{bottom:262.747067pt;}
.y712_c00000{bottom:262.907067pt;}
.y1b94_c00000{bottom:262.986219pt;}
.y1d42_c00000{bottom:262.987067pt;}
.yff4_c00000{bottom:263.067579pt;}
.y808_c00000{bottom:263.147067pt;}
.y1a98_c00000{bottom:263.227067pt;}
.yb36_c00000{bottom:263.307067pt;}
.y176a_c00000{bottom:263.387227pt;}
.y15ec_c00000{bottom:263.467075pt;}
.ybd_c00000{bottom:263.707067pt;}
.y18e9_c00000{bottom:263.787067pt;}
.y2000_c00000{bottom:263.946875pt;}
.y826_c00000{bottom:263.947067pt;}
.y9_c00000{bottom:264.000000pt;}
.ye07_c00000{bottom:264.027067pt;}
.y209b_c00000{bottom:264.027315pt;}
.y1479_c00000{bottom:264.187067pt;}
.yc73_c00000{bottom:264.267067pt;}
.yc95_c00000{bottom:264.267315pt;}
.y347_c00000{bottom:264.347067pt;}
.y131d_c00000{bottom:264.427067pt;}
.y1329_c00000{bottom:264.427843pt;}
.y1209_c00000{bottom:264.507067pt;}
.y1d34_c00000{bottom:264.667067pt;}
.yd8a_c00000{bottom:264.747067pt;}
.y954_c00000{bottom:264.827067pt;}
.y395_c00000{bottom:264.907147pt;}
.y1979_c00000{bottom:264.907307pt;}
.y683_c00000{bottom:265.148907pt;}
.ya94_c00000{bottom:265.227067pt;}
.yd38_c00000{bottom:265.307067pt;}
.y1daa_c00000{bottom:265.307200pt;}
.y5e8_c00000{bottom:265.467067pt;}
.y739_c00000{bottom:265.467200pt;}
.y1d60_c00000{bottom:265.547067pt;}
.y23e_c00000{bottom:265.627200pt;}
.y2168_c00000{bottom:265.707067pt;}
.y15f_c00000{bottom:265.787067pt;}
.y174f_c00000{bottom:265.867067pt;}
.yfeb_c00000{bottom:265.947467pt;}
.y122c_c00000{bottom:266.027067pt;}
.y1dc1_c00000{bottom:266.107067pt;}
.y18da_c00000{bottom:266.267251pt;}
.y1ede_c00000{bottom:266.347560pt;}
.y8d6_c00000{bottom:266.427067pt;}
.y1221_c00000{bottom:266.508747pt;}
.y319_c00000{bottom:266.587067pt;}
.y8bd_c00000{bottom:266.667227pt;}
.yce9_c00000{bottom:266.827067pt;}
.y492_c00000{bottom:266.987067pt;}
.y7fa_c00000{bottom:266.987200pt;}
.y1111_c00000{bottom:267.227067pt;}
.y2086_c00000{bottom:267.227200pt;}
.y1e2d_c00000{bottom:267.307155pt;}
.y1112_c00000{bottom:267.387067pt;}
.y145e_c00000{bottom:267.467067pt;}
.y1466_c00000{bottom:267.467075pt;}
.y14ae_c00000{bottom:267.547067pt;}
.y1a21_c00000{bottom:267.707067pt;}
.y1728_c00000{bottom:267.787200pt;}
.y2215_c00000{bottom:267.947067pt;}
.y1cca_c00000{bottom:268.027147pt;}
.y2006_c00000{bottom:268.027747pt;}
.y12d4_c00000{bottom:268.027827pt;}
.y2fa_c00000{bottom:268.107067pt;}
.y19ff_c00000{bottom:268.187200pt;}
.y2ba_c00000{bottom:268.347067pt;}
.y2d3_c00000{bottom:268.347200pt;}
.y6d0_c00000{bottom:268.507067pt;}
.y20ba_c00000{bottom:268.587067pt;}
.y1c8f_c00000{bottom:268.588651pt;}
.y1706_c00000{bottom:268.747067pt;}
.y309_c00000{bottom:268.827067pt;}
.y93d_c00000{bottom:269.067067pt;}
.y88d_c00000{bottom:269.147067pt;}
.y862_c00000{bottom:269.147147pt;}
.y21d3_c00000{bottom:269.227067pt;}
.y725_c00000{bottom:269.307067pt;}
.y27_c00000{bottom:269.333333pt;}
.y14ec_c00000{bottom:269.387067pt;}
.y7b7_c00000{bottom:269.467067pt;}
.y1ac_c00000{bottom:269.547067pt;}
.yf67_c00000{bottom:269.787067pt;}
.y179d_c00000{bottom:269.867067pt;}
.y125f_c00000{bottom:269.867200pt;}
.y1909_c00000{bottom:269.867227pt;}
.y1815_c00000{bottom:269.947907pt;}
.ya40_c00000{bottom:270.107067pt;}
.y1a7e_c00000{bottom:270.187067pt;}
.y1640_c00000{bottom:270.187200pt;}
.y1c19_c00000{bottom:270.267067pt;}
.y2129_c00000{bottom:270.347067pt;}
.y103e_c00000{bottom:270.427067pt;}
.y379_c00000{bottom:270.507067pt;}
.y15c1_c00000{bottom:270.827208pt;}
.y118d_c00000{bottom:270.986667pt;}
.yd51_c00000{bottom:271.067067pt;}
.ybdc_c00000{bottom:271.067307pt;}
.yb72_c00000{bottom:271.067667pt;}
.y53_c00000{bottom:271.307067pt;}
.y96c_c00000{bottom:271.307667pt;}
.y460_c00000{bottom:271.387067pt;}
.y1096_c00000{bottom:271.467067pt;}
.y2023_c00000{bottom:271.547067pt;}
.y562_c00000{bottom:271.627067pt;}
.y9bb_c00000{bottom:271.627200pt;}
.y9f3_c00000{bottom:271.786611pt;}
.y13b6_c00000{bottom:271.787067pt;}
.y19f8_c00000{bottom:271.867067pt;}
.y9e6_c00000{bottom:271.867200pt;}
.y2098_c00000{bottom:272.107315pt;}
.y1580_c00000{bottom:272.187067pt;}
.y21a_c00000{bottom:272.347067pt;}
.y1f06_c00000{bottom:272.427251pt;}
.yb4b_c00000{bottom:272.587067pt;}
.y1776_c00000{bottom:272.587227pt;}
.y169a_c00000{bottom:272.587555pt;}
.y17ce_c00000{bottom:272.588227pt;}
.y206_c00000{bottom:272.827067pt;}
.y1408_c00000{bottom:272.907067pt;}
.y1765_c00000{bottom:272.907200pt;}
.y664_c00000{bottom:273.147067pt;}
.y20d2_c00000{bottom:273.227067pt;}
.y2075_c00000{bottom:273.227315pt;}
.yeb2_c00000{bottom:273.307067pt;}
.y1cbe_c00000{bottom:273.387251pt;}
.y1b7e_c00000{bottom:273.388200pt;}
.y1388_c00000{bottom:273.467067pt;}
.y152f_c00000{bottom:273.468803pt;}
.y210e_c00000{bottom:273.472952pt;}
.y104c_c00000{bottom:273.627067pt;}
.y15fc_c00000{bottom:273.707067pt;}
.y1c3e_c00000{bottom:273.787067pt;}
.y11c3_c00000{bottom:273.947067pt;}
.y11e5_c00000{bottom:274.027067pt;}
.y1b0b_c00000{bottom:274.347067pt;}
.y706_c00000{bottom:274.347147pt;}
.y608_c00000{bottom:274.347227pt;}
.yc64_c00000{bottom:274.427067pt;}
.y1eaf_c00000{bottom:274.427560pt;}
.yb94_c00000{bottom:274.507067pt;}
.yf11_c00000{bottom:274.507227pt;}
.y1999_c00000{bottom:274.827067pt;}
.y16bc_c00000{bottom:274.907067pt;}
.y268_c00000{bottom:275.067200pt;}
.ye7f_c00000{bottom:275.227067pt;}
.y1892_c00000{bottom:275.467067pt;}
.y537_c00000{bottom:275.468200pt;}
.y847_c00000{bottom:275.627067pt;}
.y1290_c00000{bottom:275.707067pt;}
.ye44_c00000{bottom:275.708667pt;}
.y20b8_c00000{bottom:275.787067pt;}
.yd0b_c00000{bottom:276.027067pt;}
.y19cc_c00000{bottom:276.028520pt;}
.y28c_c00000{bottom:276.107067pt;}
.y168b_c00000{bottom:276.107200pt;}
.y5b1_c00000{bottom:276.187067pt;}
.y5cc_c00000{bottom:276.187200pt;}
.y1a97_c00000{bottom:276.267067pt;}
.y1fdd_c00000{bottom:276.347067pt;}
.yb03_c00000{bottom:276.427067pt;}
.y1d4d_c00000{bottom:276.427200pt;}
.y8b1_c00000{bottom:276.671219pt;}
.y113d_c00000{bottom:276.827704pt;}
.y1bb2_c00000{bottom:276.907067pt;}
.yde3_c00000{bottom:276.987067pt;}
.y1478_c00000{bottom:277.227987pt;}
.y1f64_c00000{bottom:277.307067pt;}
.ya7a_c00000{bottom:277.387067pt;}
.y6b8_c00000{bottom:277.387147pt;}
.y2a4_c00000{bottom:277.547067pt;}
.yb13_c00000{bottom:277.547200pt;}
.ycce_c00000{bottom:277.628720pt;}
.y764_c00000{bottom:277.707067pt;}
.y19ae_c00000{bottom:277.947067pt;}
.y3fa_c00000{bottom:278.027067pt;}
.y1aec_c00000{bottom:278.187200pt;}
.y1f41_c00000{bottom:278.267067pt;}
.y103d_c00000{bottom:278.267075pt;}
.y512_c00000{bottom:278.346411pt;}
.y21ff_c00000{bottom:278.346819pt;}
.y21fb_c00000{bottom:278.347067pt;}
.yff3_c00000{bottom:278.427571pt;}
.y13f3_c00000{bottom:278.507067pt;}
.y20a8_c00000{bottom:278.667067pt;}
.y1b6a_c00000{bottom:278.747067pt;}
.y15eb_c00000{bottom:278.827067pt;}
.y205c_c00000{bottom:278.907067pt;}
.ye2f_c00000{bottom:279.067067pt;}
.y1bcb_c00000{bottom:279.067200pt;}
.y1ad4_c00000{bottom:279.307067pt;}
.yd6e_c00000{bottom:279.467067pt;}
.ycab_c00000{bottom:279.467200pt;}
.y1f8e_c00000{bottom:279.627067pt;}
.yfea_c00000{bottom:279.787067pt;}
.y1c6_c00000{bottom:279.787200pt;}
.y1328_c00000{bottom:279.787835pt;}
.y1561_c00000{bottom:279.947067pt;}
.y1a52_c00000{bottom:280.027067pt;}
.y1769_c00000{bottom:280.267147pt;}
.y1dca_c00000{bottom:280.347067pt;}
.y7da_c00000{bottom:280.427067pt;}
.y14ad_c00000{bottom:280.507067pt;}
.y127e_c00000{bottom:280.587067pt;}
.yf9b_c00000{bottom:280.667067pt;}
.y599_c00000{bottom:280.827067pt;}
.y3df_c00000{bottom:280.907067pt;}
.y20eb_c00000{bottom:280.987067pt;}
.y7a_c00000{bottom:280.994795pt;}
.ye0_c00000{bottom:281.229995pt;}
.ya02_c00000{bottom:281.307067pt;}
.y574_c00000{bottom:281.307315pt;}
.y104b_c00000{bottom:281.307467pt;}
.y1f1_c00000{bottom:281.387067pt;}
.y1c62_c00000{bottom:281.547067pt;}
.yd89_c00000{bottom:281.627067pt;}
.y18d9_c00000{bottom:281.627243pt;}
.y1edd_c00000{bottom:281.627392pt;}
.yda5_c00000{bottom:281.787067pt;}
.y1978_c00000{bottom:281.787227pt;}
.y682_c00000{bottom:282.028827pt;}
.yba8_c00000{bottom:282.107067pt;}
.y1597_c00000{bottom:282.107200pt;}
.y88c_c00000{bottom:282.188067pt;}
.y62a_c00000{bottom:282.347067pt;}
.y1b93_c00000{bottom:282.426675pt;}
.y209a_c00000{bottom:282.427067pt;}
.y1110_c00000{bottom:282.507067pt;}
.y1e86_c00000{bottom:282.514075pt;}
.y1f24_c00000{bottom:282.587067pt;}
.y4bf_c00000{bottom:282.667067pt;}
.y145d_c00000{bottom:282.827067pt;}
.yc23_c00000{bottom:282.907067pt;}
.y13dc_c00000{bottom:283.147067pt;}
.y2167_c00000{bottom:283.227067pt;}
.y131_c00000{bottom:283.307067pt;}
.y1220_c00000{bottom:283.308147pt;}
.y8bc_c00000{bottom:283.547147pt;}
.y185_c00000{bottom:283.707067pt;}
.y160e_c00000{bottom:283.707200pt;}
.y78e_c00000{bottom:283.867067pt;}
.y137f_c00000{bottom:283.867200pt;}
.y1c8e_c00000{bottom:283.868483pt;}
.ye5e_c00000{bottom:284.027067pt;}
.y151d_c00000{bottom:284.187067pt;}
.y3b6_c00000{bottom:284.187200pt;}
.ye95_c00000{bottom:284.427067pt;}
.y13a9_c00000{bottom:284.427200pt;}
.y118c_c00000{bottom:284.747067pt;}
.y8e3_c00000{bottom:284.827067pt;}
.y1cc9_c00000{bottom:284.907067pt;}
.y2005_c00000{bottom:284.907667pt;}
.y12d3_c00000{bottom:284.907747pt;}
.y2014_c00000{bottom:284.987067pt;}
.y1554_c00000{bottom:284.987200pt;}
.y416_c00000{bottom:285.147067pt;}
.ybfe_c00000{bottom:285.227067pt;}
.ya67_c00000{bottom:285.307067pt;}
.y523_c00000{bottom:285.387067pt;}
.y4de_c00000{bottom:285.387200pt;}
.y2214_c00000{bottom:285.547067pt;}
.y17ab_c00000{bottom:285.627067pt;}
.yec5_c00000{bottom:285.627200pt;}
.y90a_c00000{bottom:285.947067pt;}
.y861_c00000{bottom:286.027067pt;}
.yac3_c00000{bottom:286.107067pt;}
.y15c0_c00000{bottom:286.187200pt;}
.y1fff_c00000{bottom:286.427067pt;}
.y1f2e_c00000{bottom:286.507067pt;}
.y104_c00000{bottom:286.747067pt;}
.y1908_c00000{bottom:286.747147pt;}
.y1759_c00000{bottom:286.747200pt;}
.y1095_c00000{bottom:286.827067pt;}
.y23d_c00000{bottom:286.827200pt;}
.y1814_c00000{bottom:286.827827pt;}
.y6fb_c00000{bottom:286.907067pt;}
.y15e_c00000{bottom:286.987067pt;}
.y1e74_c00000{bottom:287.147067pt;}
.y1dc0_c00000{bottom:287.307067pt;}
.yab2_c00000{bottom:287.547067pt;}
.y183a_c00000{bottom:287.627067pt;}
.y14eb_c00000{bottom:287.787067pt;}
.y1f05_c00000{bottom:287.787243pt;}
.y1699_c00000{bottom:287.867395pt;}
.yd50_c00000{bottom:287.947067pt;}
.ybdb_c00000{bottom:287.947227pt;}
.yce8_c00000{bottom:288.027067pt;}
.y179c_c00000{bottom:288.267067pt;}
.ybc2_c00000{bottom:288.267200pt;}
.yf90_c00000{bottom:288.507067pt;}
.y1cbd_c00000{bottom:288.667083pt;}
.y839_c00000{bottom:288.987067pt;}
.y15fb_c00000{bottom:289.067067pt;}
.y93c_c00000{bottom:289.227067pt;}
.y11_c00000{bottom:289.333333pt;}
.y11e4_c00000{bottom:289.387067pt;}
.y43b_c00000{bottom:289.467067pt;}
.y1775_c00000{bottom:289.467147pt;}
.y1798_c00000{bottom:289.468040pt;}
.y17cd_c00000{bottom:289.468147pt;}
.y1d33_c00000{bottom:289.547067pt;}
.yee2_c00000{bottom:289.627067pt;}
.y1eae_c00000{bottom:289.787552pt;}
.y1b2f_c00000{bottom:289.867067pt;}
.y7b6_c00000{bottom:290.023339pt;}
.y7f2_c00000{bottom:290.027067pt;}
.y1b7d_c00000{bottom:290.268120pt;}
.y953_c00000{bottom:290.347067pt;}
.y1c18_c00000{bottom:290.427067pt;}
.y79d_c00000{bottom:290.507067pt;}
.y157f_c00000{bottom:290.587067pt;}
.y219_c00000{bottom:290.667200pt;}
.y1ab_c00000{bottom:290.747067pt;}
.yd88_c00000{bottom:290.827067pt;}
.yb35_c00000{bottom:290.907067pt;}
.y19ad_c00000{bottom:290.987987pt;}
.y705_c00000{bottom:291.227067pt;}
.y607_c00000{bottom:291.227147pt;}
.ydbe_c00000{bottom:291.227200pt;}
.ybc_c00000{bottom:291.307067pt;}
.y1c3d_c00000{bottom:291.387067pt;}
.yf10_c00000{bottom:291.387147pt;}
.y825_c00000{bottom:291.547067pt;}
.y19fe_c00000{bottom:291.626851pt;}
.y2f9_c00000{bottom:291.627067pt;}
.yb02_c00000{bottom:291.787067pt;}
.y17cf_c00000{bottom:291.867067pt;}
.y152e_c00000{bottom:291.868555pt;}
.y210d_c00000{bottom:291.872704pt;}
.y346_c00000{bottom:291.947067pt;}
.y113c_c00000{bottom:292.027376pt;}
.y1208_c00000{bottom:292.107067pt;}
.y1147_c00000{bottom:292.187696pt;}
.y166d_c00000{bottom:292.347067pt;}
.y536_c00000{bottom:292.348120pt;}
.y1c24_c00000{bottom:292.507067pt;}
.ye43_c00000{bottom:292.508067pt;}
.yf45_c00000{bottom:292.667200pt;}
.y724_c00000{bottom:292.827067pt;}
.yd37_c00000{bottom:292.907067pt;}
.y1da9_c00000{bottom:292.907200pt;}
.y19cb_c00000{bottom:292.908440pt;}
.y52_c00000{bottom:292.987067pt;}
.y5e7_c00000{bottom:293.067067pt;}
.y738_c00000{bottom:293.067200pt;}
.y1d5f_c00000{bottom:293.147067pt;}
.y1a96_c00000{bottom:293.227067pt;}
.yf66_c00000{bottom:293.307067pt;}
.y136a_c00000{bottom:293.387067pt;}
.y139c_c00000{bottom:293.467067pt;}
.y267_c00000{bottom:293.467200pt;}
.y128f_c00000{bottom:293.547067pt;}
.y103c_c00000{bottom:293.627067pt;}
.yfe9_c00000{bottom:293.627243pt;}
.yd0a_c00000{bottom:293.707067pt;}
.yff2_c00000{bottom:293.787563pt;}
.y1fdc_c00000{bottom:293.947987pt;}
.y205_c00000{bottom:294.027067pt;}
.y1477_c00000{bottom:294.107907pt;}
.y1e27_c00000{bottom:294.187200pt;}
.y1e20_c00000{bottom:294.187560pt;}
.y6b7_c00000{bottom:294.267067pt;}
.ya5a_c00000{bottom:294.427067pt;}
.yccd_c00000{bottom:294.428120pt;}
.y491_c00000{bottom:294.587067pt;}
.y7f9_c00000{bottom:294.587200pt;}
.y15ea_c00000{bottom:294.827067pt;}
.y2085_c00000{bottom:294.827200pt;}
.y1327_c00000{bottom:294.907347pt;}
.y131c_c00000{bottom:295.067067pt;}
.y104a_c00000{bottom:295.147067pt;}
.ya79_c00000{bottom:295.307067pt;}
.y1727_c00000{bottom:295.387200pt;}
.y2144_c00000{bottom:295.787200pt;}
.y2b9_c00000{bottom:295.947067pt;}
.y2d2_c00000{bottom:295.947200pt;}
.y21fa_c00000{bottom:296.027067pt;}
.y21fe_c00000{bottom:296.027443pt;}
.y6cf_c00000{bottom:296.107067pt;}
.y1705_c00000{bottom:296.347067pt;}
.y1f8d_c00000{bottom:296.507067pt;}
.y18d8_c00000{bottom:296.987235pt;}
.y1edc_c00000{bottom:296.987384pt;}
.y3b5_c00000{bottom:297.147067pt;}
.y2190_c00000{bottom:297.227067pt;}
.y12b4_c00000{bottom:297.307067pt;}
.y1970_c00000{bottom:297.467067pt;}
.y125e_c00000{bottom:297.467200pt;}
.y511_c00000{bottom:297.706347pt;}
.ya3f_c00000{bottom:297.707067pt;}
.y1a7d_c00000{bottom:297.787067pt;}
.yefc_c00000{bottom:297.867067pt;}
.y394_c00000{bottom:297.946944pt;}
.yc63_c00000{bottom:297.947067pt;}
.y378_c00000{bottom:298.107067pt;}
.y145c_c00000{bottom:298.187200pt;}
.y215d_c00000{bottom:298.427067pt;}
.y118b_c00000{bottom:298.586667pt;}
.y1977_c00000{bottom:298.667147pt;}
.yce7_c00000{bottom:298.668120pt;}
.y14bb_c00000{bottom:298.747067pt;}
.y127d_c00000{bottom:298.827067pt;}
.y681_c00000{bottom:298.908747pt;}
.y45f_c00000{bottom:298.987067pt;}
.y88b_c00000{bottom:299.067987pt;}
.y2022_c00000{bottom:299.147067pt;}
.y561_c00000{bottom:299.227067pt;}
.y9ba_c00000{bottom:299.227200pt;}
.y1c8d_c00000{bottom:299.228475pt;}
.y21c0_c00000{bottom:299.307067pt;}
.y16e6_c00000{bottom:299.387067pt;}
.y9e5_c00000{bottom:299.467200pt;}
.y573_c00000{bottom:299.707067pt;}
.y753_c00000{bottom:299.947067pt;}
.y2039_c00000{bottom:300.187067pt;}
.y121f_c00000{bottom:300.188067pt;}
.y1589_c00000{bottom:300.347067pt;}
.y8bb_c00000{bottom:300.427067pt;}
.y13b5_c00000{bottom:300.507067pt;}
.y3f9_c00000{bottom:300.507200pt;}
.y663_c00000{bottom:300.747067pt;}
.y2166_c00000{bottom:300.827067pt;}
.y1d26_c00000{bottom:300.827315pt;}
.yeb1_c00000{bottom:300.907067pt;}
.y2096_c00000{bottom:301.067067pt;}
.y1c5_c00000{bottom:301.067200pt;}
.y15bf_c00000{bottom:301.467403pt;}
.y11c2_c00000{bottom:301.547067pt;}
.y2004_c00000{bottom:301.707067pt;}
.y12d2_c00000{bottom:301.707147pt;}
.y1b92_c00000{bottom:301.786611pt;}
.y2178_c00000{bottom:301.787067pt;}
.ybfd_c00000{bottom:301.947067pt;}
.y415_c00000{bottom:302.027067pt;}
.yb93_c00000{bottom:302.107067pt;}
.y13f2_c00000{bottom:302.187200pt;}
.y1f0_c00000{bottom:302.347067pt;}
.y1998_c00000{bottom:302.427067pt;}
.y79_c00000{bottom:302.434523pt;}
.y16bb_c00000{bottom:302.507067pt;}
.y1246_c00000{bottom:302.587067pt;}
.ydf_c00000{bottom:302.669723pt;}
.y1094_c00000{bottom:302.747067pt;}
.ye7e_c00000{bottom:302.827067pt;}
.y7d9_c00000{bottom:302.907067pt;}
.y21d2_c00000{bottom:302.987067pt;}
.y1f04_c00000{bottom:303.147235pt;}
.y846_c00000{bottom:303.227067pt;}
.y1698_c00000{bottom:303.227395pt;}
.yba7_c00000{bottom:303.387067pt;}
.y10db_c00000{bottom:303.467067pt;}
.y550_c00000{bottom:303.469987pt;}
.y1417_c00000{bottom:303.627067pt;}
.y1813_c00000{bottom:303.627227pt;}
.y1faf_c00000{bottom:303.707067pt;}
.y168a_c00000{bottom:303.707200pt;}
.y5b0_c00000{bottom:303.787067pt;}
.y5cb_c00000{bottom:303.787200pt;}
.y860_c00000{bottom:303.947296pt;}
.yb71_c00000{bottom:304.027067pt;}
.y1cbc_c00000{bottom:304.027075pt;}
.y1d4c_c00000{bottom:304.027200pt;}
.y130_c00000{bottom:304.267067pt;}
.y1bb1_c00000{bottom:304.507067pt;}
.yde2_c00000{bottom:304.587067pt;}
.y184_c00000{bottom:304.667067pt;}
.y11e3_c00000{bottom:304.667200pt;}
.yd4f_c00000{bottom:304.827067pt;}
.y1f63_c00000{bottom:304.907067pt;}
.y1199_c00000{bottom:304.908240pt;}
.y1ead_c00000{bottom:305.067384pt;}
.y2a3_c00000{bottom:305.147067pt;}
.yb12_c00000{bottom:305.147200pt;}
.y763_c00000{bottom:305.307067pt;}
.y1cee_c00000{bottom:305.627067pt;}
.y1839_c00000{bottom:305.709667pt;}
.y1aeb_c00000{bottom:305.787200pt;}
.y952_c00000{bottom:305.947907pt;}
.y108e_c00000{bottom:306.027067pt;}
.y14ea_c00000{bottom:306.187067pt;}
.y20a7_c00000{bottom:306.267067pt;}
.y14ac_c00000{bottom:306.347067pt;}
.y1797_c00000{bottom:306.347960pt;}
.y17cc_c00000{bottom:306.348067pt;}
.y12e2_c00000{bottom:306.349067pt;}
.y205b_c00000{bottom:306.507067pt;}
.ye2e_c00000{bottom:306.667067pt;}
.yf65_c00000{bottom:306.667200pt;}
.y1ad3_c00000{bottom:306.907067pt;}
.yb01_c00000{bottom:307.067067pt;}
.ycaa_c00000{bottom:307.067200pt;}
.y1b7c_c00000{bottom:307.067520pt;}
.y19f7_c00000{bottom:307.147200pt;}
.y103b_c00000{bottom:307.227067pt;}
.y113b_c00000{bottom:307.307208pt;}
.y20ce_c00000{bottom:307.467200pt;}
.y1a51_c00000{bottom:307.627067pt;}
.y19ac_c00000{bottom:307.867907pt;}
.y23c_c00000{bottom:307.947200pt;}
.yf44_c00000{bottom:308.027067pt;}
.y15d_c00000{bottom:308.107067pt;}
.y17c0_c00000{bottom:308.187067pt;}
.y12b3_c00000{bottom:308.187200pt;}
.yf0f_c00000{bottom:308.267067pt;}
.y598_c00000{bottom:308.427067pt;}
.y3de_c00000{bottom:308.507067pt;}
.y20ea_c00000{bottom:308.587067pt;}
.y1c40_c00000{bottom:308.667200pt;}
.yabb_c00000{bottom:308.907067pt;}
.yfe8_c00000{bottom:308.907075pt;}
.y157e_c00000{bottom:308.987067pt;}
.y1c61_c00000{bottom:309.147067pt;}
.y535_c00000{bottom:309.228040pt;}
.yda4_c00000{bottom:309.307067pt;}
.y38_c00000{bottom:309.333333pt;}
.y7b5_c00000{bottom:309.383275pt;}
.ye42_c00000{bottom:309.387987pt;}
.y1e26_c00000{bottom:309.547067pt;}
.y1e2c_c00000{bottom:309.547192pt;}
.y1e1f_c00000{bottom:309.547552pt;}
.yc92_c00000{bottom:309.707067pt;}
.y1596_c00000{bottom:309.707200pt;}
.y10dd_c00000{bottom:309.787067pt;}
.y19ca_c00000{bottom:309.788360pt;}
.y629_c00000{bottom:309.947067pt;}
.y1a95_c00000{bottom:310.107067pt;}
.y393_c00000{bottom:310.187200pt;}
.y4be_c00000{bottom:310.267067pt;}
.y218_c00000{bottom:310.267200pt;}
.y1326_c00000{bottom:310.267339pt;}
.y152d_c00000{bottom:310.268307pt;}
.y210c_c00000{bottom:310.272456pt;}
.y131b_c00000{bottom:310.427067pt;}
.yc22_c00000{bottom:310.507067pt;}
.y8b0_c00000{bottom:310.590635pt;}
.y13db_c00000{bottom:310.747067pt;}
.yee1_c00000{bottom:310.827067pt;}
.y1fdb_c00000{bottom:310.827907pt;}
.yd87_c00000{bottom:310.907067pt;}
.y1476_c00000{bottom:310.907307pt;}
.yab1_c00000{bottom:311.067067pt;}
.y704_c00000{bottom:311.227067pt;}
.yc7a_c00000{bottom:311.307067pt;}
.y160d_c00000{bottom:311.307200pt;}
.yccc_c00000{bottom:311.308040pt;}
.y78d_c00000{bottom:311.467067pt;}
.y137e_c00000{bottom:311.467200pt;}
.ye5d_c00000{bottom:311.627067pt;}
.y151c_c00000{bottom:311.787067pt;}
.y1aa_c00000{bottom:311.867067pt;}
.y266_c00000{bottom:311.867200pt;}
.y8_c00000{bottom:312.000000pt;}
.ye94_c00000{bottom:312.027067pt;}
.y13a8_c00000{bottom:312.027200pt;}
.y8e2_c00000{bottom:312.267067pt;}
.y118a_c00000{bottom:312.347067pt;}
.y1edb_c00000{bottom:312.347376pt;}
.y2119_c00000{bottom:312.427067pt;}
.ybfc_c00000{bottom:312.507960pt;}
.y1553_c00000{bottom:312.587200pt;}
.y1a20_c00000{bottom:312.667200pt;}
.y1807_c00000{bottom:312.827067pt;}
.ya66_c00000{bottom:312.907067pt;}
.y522_c00000{bottom:312.987067pt;}
.y4dd_c00000{bottom:312.987200pt;}
.y28b_c00000{bottom:313.147067pt;}
.y85f_c00000{bottom:313.147200pt;}
.y9e_c00000{bottom:313.154387pt;}
.y17aa_c00000{bottom:313.227067pt;}
.yec4_c00000{bottom:313.227200pt;}
.y1f8c_c00000{bottom:313.307067pt;}
.y145b_c00000{bottom:313.467067pt;}
.y8f7_c00000{bottom:313.547067pt;}
.y1c23_c00000{bottom:313.627067pt;}
.y110f_c00000{bottom:313.867067pt;}
.y3b4_c00000{bottom:314.027067pt;}
.y2f8_c00000{bottom:314.107067pt;}
.y21f9_c00000{bottom:314.265979pt;}
.y103_c00000{bottom:314.347067pt;}
.y1758_c00000{bottom:314.347200pt;}
.y6fa_c00000{bottom:314.507067pt;}
.y1c8c_c00000{bottom:314.588467pt;}
.y1e73_c00000{bottom:314.747067pt;}
.y204_c00000{bottom:314.987067pt;}
.y103a_c00000{bottom:315.066667pt;}
.y1891_c00000{bottom:315.067315pt;}
.y1d41_c00000{bottom:315.227067pt;}
.y723_c00000{bottom:315.307067pt;}
.y1976_c00000{bottom:315.547067pt;}
.yce6_c00000{bottom:315.548040pt;}
.y127c_c00000{bottom:315.707067pt;}
.y680_c00000{bottom:315.708147pt;}
.y166c_c00000{bottom:315.867067pt;}
.ybc1_c00000{bottom:315.867200pt;}
.y88a_c00000{bottom:315.867387pt;}
.y218f_c00000{bottom:316.107067pt;}
.y135c_c00000{bottom:316.347067pt;}
.y1421_c00000{bottom:316.427067pt;}
.y1e85_c00000{bottom:316.433491pt;}
.y6b6_c00000{bottom:316.587067pt;}
.y1d11_c00000{bottom:316.747067pt;}
.y93b_c00000{bottom:316.827067pt;}
.y15be_c00000{bottom:316.827395pt;}
.y139b_c00000{bottom:316.907067pt;}
.y43a_c00000{bottom:317.067067pt;}
.y45e_c00000{bottom:317.067907pt;}
.y121e_c00000{bottom:317.067987pt;}
.y510_c00000{bottom:317.146803pt;}
.y10da_c00000{bottom:317.227067pt;}
.y96b_c00000{bottom:317.307827pt;}
.yb70_c00000{bottom:317.387067pt;}
.y15fa_c00000{bottom:317.467067pt;}
.y752_c00000{bottom:317.627067pt;}
.ya59_c00000{bottom:317.867315pt;}
.y1560_c00000{bottom:318.027067pt;}
.y490_c00000{bottom:318.107067pt;}
.y859_c00000{bottom:318.347067pt;}
.y1f03_c00000{bottom:318.427067pt;}
.yb34_c00000{bottom:318.507067pt;}
.y12d1_c00000{bottom:318.587067pt;}
.y1697_c00000{bottom:318.587555pt;}
.y1ced_c00000{bottom:318.589227pt;}
.y31_c00000{bottom:318.666667pt;}
.ydbd_c00000{bottom:318.827200pt;}
.ybb_c00000{bottom:318.907067pt;}
.y824_c00000{bottom:319.147067pt;}
.yf8f_c00000{bottom:319.147200pt;}
.y1d25_c00000{bottom:319.227067pt;}
.y14ab_c00000{bottom:319.307067pt;}
.y1cbb_c00000{bottom:319.387067pt;}
.yf5b_c00000{bottom:319.467067pt;}
.y345_c00000{bottom:319.547067pt;}
.y1207_c00000{bottom:319.707067pt;}
.y21d1_c00000{bottom:319.867067pt;}
.y11e2_c00000{bottom:320.027067pt;}
.y1198_c00000{bottom:320.188072pt;}
.y8ba_c00000{bottom:320.267067pt;}
.y13e0_c00000{bottom:320.347067pt;}
.y54f_c00000{bottom:320.349907pt;}
.yc62_c00000{bottom:320.427067pt;}
.y1eac_c00000{bottom:320.427376pt;}
.yd36_c00000{bottom:320.507067pt;}
.y1812_c00000{bottom:320.507147pt;}
.y1da8_c00000{bottom:320.507200pt;}
.y778_c00000{bottom:320.667067pt;}
.y5e6_c00000{bottom:320.667200pt;}
.y1d5e_c00000{bottom:320.747067pt;}
.y2213_c00000{bottom:320.827067pt;}
.y1f23_c00000{bottom:320.907067pt;}
.y1369_c00000{bottom:320.987067pt;}
.y174e_c00000{bottom:321.067067pt;}
.y1b91_c00000{bottom:321.227067pt;}
.y2095_c00000{bottom:321.227200pt;}
.y12f_c00000{bottom:321.307067pt;}
.y1fae_c00000{bottom:321.308067pt;}
.y108d_c00000{bottom:321.387067pt;}
.y8d5_c00000{bottom:321.627067pt;}
.ybda_c00000{bottom:321.707067pt;}
.y1dc9_c00000{bottom:321.787067pt;}
.y163f_c00000{bottom:321.947067pt;}
.yf9a_c00000{bottom:322.027067pt;}
.y572_c00000{bottom:322.187067pt;}
.y637_c00000{bottom:322.187200pt;}
.y51_c00000{bottom:322.267067pt;}
.y1c4_c00000{bottom:322.267200pt;}
.yb00_c00000{bottom:322.427067pt;}
.y2084_c00000{bottom:322.427200pt;}
.yb4a_c00000{bottom:322.507067pt;}
.y1838_c00000{bottom:322.509067pt;}
.y1049_c00000{bottom:322.587067pt;}
.y113a_c00000{bottom:322.667200pt;}
.y1a24_c00000{bottom:322.747067pt;}
.y951_c00000{bottom:322.827827pt;}
.yac2_c00000{bottom:322.907067pt;}
.y1726_c00000{bottom:322.987200pt;}
.y20c2_c00000{bottom:323.147200pt;}
.y1796_c00000{bottom:323.227880pt;}
.y17cb_c00000{bottom:323.227987pt;}
.y12e1_c00000{bottom:323.228987pt;}
.yf2e_c00000{bottom:323.307067pt;}
.yf43_c00000{bottom:323.387067pt;}
.y2143_c00000{bottom:323.387200pt;}
.yba6_c00000{bottom:323.467067pt;}
.y2b8_c00000{bottom:323.547067pt;}
.y2d1_c00000{bottom:323.547200pt;}
.y1ef_c00000{bottom:323.707067pt;}
.y78_c00000{bottom:323.874251pt;}
.y1704_c00000{bottom:323.947067pt;}
.y1b7b_c00000{bottom:323.947440pt;}
.yde_c00000{bottom:324.109451pt;}
.y606_c00000{bottom:324.187200pt;}
.yfe7_c00000{bottom:324.267067pt;}
.y414_c00000{bottom:324.347067pt;}
.y14e9_c00000{bottom:324.587067pt;}
.y13f1_c00000{bottom:324.667067pt;}
.y179b_c00000{bottom:324.667200pt;}
.y19f6_c00000{bottom:324.747067pt;}
.y19ab_c00000{bottom:324.747827pt;}
.y1e2b_c00000{bottom:324.827024pt;}
.y1e25_c00000{bottom:324.827067pt;}
.y1e1e_c00000{bottom:324.827384pt;}
.y5af_c00000{bottom:325.067067pt;}
.y125d_c00000{bottom:325.067200pt;}
.ya3e_c00000{bottom:325.307067pt;}
.y1a7c_c00000{bottom:325.387067pt;}
.yefb_c00000{bottom:325.467067pt;}
.y1c3f_c00000{bottom:325.547067pt;}
.y131a_c00000{bottom:325.627067pt;}
.y1a1f_c00000{bottom:325.627520pt;}
.y377_c00000{bottom:325.707067pt;}
.y1325_c00000{bottom:325.787651pt;}
.y183_c00000{bottom:325.867067pt;}
.y215c_c00000{bottom:326.107067pt;}
.y534_c00000{bottom:326.107960pt;}
.y1189_c00000{bottom:326.186667pt;}
.y15e9_c00000{bottom:326.187200pt;}
.y12b2_c00000{bottom:326.267227pt;}
.ye41_c00000{bottom:326.267907pt;}
.y127b_c00000{bottom:326.268067pt;}
.y2013_c00000{bottom:326.347067pt;}
.y8f6_c00000{bottom:326.508747pt;}
.y1784_c00000{bottom:326.587067pt;}
.y1c3c_c00000{bottom:326.667200pt;}
.y19c9_c00000{bottom:326.668280pt;}
.y2021_c00000{bottom:326.747067pt;}
.y560_c00000{bottom:326.827067pt;}
.y9b9_c00000{bottom:326.827200pt;}
.y16e5_c00000{bottom:326.987067pt;}
.y1a94_c00000{bottom:327.067067pt;}
.y9e4_c00000{bottom:327.067200pt;}
.ya8d_c00000{bottom:327.307067pt;}
.y157d_c00000{bottom:327.387200pt;}
.ya21_c00000{bottom:327.547067pt;}
.y1eda_c00000{bottom:327.627208pt;}
.y1fda_c00000{bottom:327.707827pt;}
.y2038_c00000{bottom:327.787067pt;}
.y1475_c00000{bottom:327.787227pt;}
.y1407_c00000{bottom:328.107067pt;}
.y3f8_c00000{bottom:328.107200pt;}
.yccb_c00000{bottom:328.187960pt;}
.y662_c00000{bottom:328.347067pt;}
.yeb0_c00000{bottom:328.507067pt;}
.y1bfd_c00000{bottom:328.587067pt;}
.y17a0_c00000{bottom:328.667200pt;}
.y152c_c00000{bottom:328.668059pt;}
.y210b_c00000{bottom:328.672208pt;}
.y1f40_c00000{bottom:328.747067pt;}
.y7b4_c00000{bottom:328.823731pt;}
.y1039_c00000{bottom:328.827067pt;}
.y11c1_c00000{bottom:329.147067pt;}
.y23b_c00000{bottom:329.147200pt;}
.y110e_c00000{bottom:329.227067pt;}
.y15c_c00000{bottom:329.307067pt;}
.y1420_c00000{bottom:329.307307pt;}
.ybfb_c00000{bottom:329.307360pt;}
.y1d04_c00000{bottom:329.627067pt;}
.yda3_c00000{bottom:329.627200pt;}
.yb92_c00000{bottom:329.707067pt;}
.y217_c00000{bottom:329.787200pt;}
.y1c8b_c00000{bottom:329.868299pt;}
.y1997_c00000{bottom:330.027067pt;}
.y16ba_c00000{bottom:330.107067pt;}
.y1bca_c00000{bottom:330.187200pt;}
.y265_c00000{bottom:330.267200pt;}
.y1093_c00000{bottom:330.347067pt;}
.y1048_c00000{bottom:330.347600pt;}
.ye7d_c00000{bottom:330.427067pt;}
.y7d8_c00000{bottom:330.507067pt;}
.yf0e_c00000{bottom:330.587067pt;}
.y845_c00000{bottom:330.827067pt;}
.y3b3_c00000{bottom:330.907067pt;}
.y1400_c00000{bottom:330.987067pt;}
.y10d9_c00000{bottom:331.067067pt;}
.y1416_c00000{bottom:331.227067pt;}
.y1689_c00000{bottom:331.307200pt;}
.y64b_c00000{bottom:331.387067pt;}
.y5ca_c00000{bottom:331.387200pt;}
.y18e8_c00000{bottom:331.627067pt;}
.y1d4b_c00000{bottom:331.627200pt;}
.y21f5_c00000{bottom:331.787067pt;}
.y21f8_c00000{bottom:331.946603pt;}
.yee0_c00000{bottom:331.947067pt;}
.y15bd_c00000{bottom:332.027067pt;}
.y1bb0_c00000{bottom:332.107067pt;}
.yde1_c00000{bottom:332.187200pt;}
.yce5_c00000{bottom:332.427960pt;}
.y1f62_c00000{bottom:332.507067pt;}
.yc70_c00000{bottom:332.587067pt;}
.y67f_c00000{bottom:332.588067pt;}
.y12e_c00000{bottom:332.667067pt;}
.y2a2_c00000{bottom:332.747067pt;}
.yb11_c00000{bottom:332.747200pt;}
.y889_c00000{bottom:332.747307pt;}
.y762_c00000{bottom:332.907067pt;}
.y1a9_c00000{bottom:333.067067pt;}
.y1f7d_c00000{bottom:333.227067pt;}
.y1aea_c00000{bottom:333.387200pt;}
.y15a2_c00000{bottom:333.467067pt;}
.y20a6_c00000{bottom:333.867067pt;}
.y1696_c00000{bottom:333.867528pt;}
.yf2d_c00000{bottom:333.868227pt;}
.y1b69_c00000{bottom:333.947067pt;}
.y45d_c00000{bottom:333.947827pt;}
.y121d_c00000{bottom:333.947907pt;}
.y96a_c00000{bottom:334.107227pt;}
.ye2d_c00000{bottom:334.267067pt;}
.yf8e_c00000{bottom:334.507067pt;}
.yd6d_c00000{bottom:334.587067pt;}
.yca9_c00000{bottom:334.667200pt;}
.yb6f_c00000{bottom:334.747067pt;}
.y122b_c00000{bottom:334.827067pt;}
.y163e_c00000{bottom:334.907067pt;}
.y20cd_c00000{bottom:335.067200pt;}
.y1a50_c00000{bottom:335.227067pt;}
.y11e1_c00000{bottom:335.387067pt;}
.yb49_c00000{bottom:335.467227pt;}
.y1cec_c00000{bottom:335.469147pt;}
.y1e34_c00000{bottom:335.547067pt;}
.y1197_c00000{bottom:335.548064pt;}
.ya01_c00000{bottom:335.627227pt;}
.y1a10_c00000{bottom:335.707067pt;}
.y1d8d_c00000{bottom:335.787067pt;}
.y1eab_c00000{bottom:335.787368pt;}
.yf99_c00000{bottom:335.867067pt;}
.y8e1_c00000{bottom:335.947067pt;}
.y1d_c00000{bottom:336.000000pt;}
.y597_c00000{bottom:336.027067pt;}
.y3dd_c00000{bottom:336.107067pt;}
.y20e9_c00000{bottom:336.187067pt;}
.ya58_c00000{bottom:336.267067pt;}
.y203_c00000{bottom:336.347067pt;}
.y50f_c00000{bottom:336.506739pt;}
.ya65_c00000{bottom:336.507067pt;}
.y218e_c00000{bottom:336.587067pt;}
.y108c_c00000{bottom:336.667200pt;}
.y19b0_c00000{bottom:336.747067pt;}
.y1e24_c00000{bottom:337.146667pt;}
.y155f_c00000{bottom:337.147200pt;}
.y54e_c00000{bottom:337.229827pt;}
.yc91_c00000{bottom:337.307067pt;}
.y1595_c00000{bottom:337.307200pt;}
.y1811_c00000{bottom:337.387067pt;}
.y628_c00000{bottom:337.547067pt;}
.y1d40_c00000{bottom:337.707067pt;}
.yaff_c00000{bottom:337.787067pt;}
.y4bd_c00000{bottom:337.867067pt;}
.y1907_c00000{bottom:337.947067pt;}
.yf64_c00000{bottom:338.027067pt;}
.yc21_c00000{bottom:338.107067pt;}
.y1fad_c00000{bottom:338.187987pt;}
.y13da_c00000{bottom:338.347067pt;}
.y2212_c00000{bottom:338.427067pt;}
.ybd9_c00000{bottom:338.507067pt;}
.yf42_c00000{bottom:338.667200pt;}
.yc79_c00000{bottom:338.907067pt;}
.y160c_c00000{bottom:338.907200pt;}
.y6b5_c00000{bottom:339.067067pt;}
.y137d_c00000{bottom:339.067200pt;}
.ye5c_c00000{bottom:339.227067pt;}
.y2128_c00000{bottom:339.307067pt;}
.y151b_c00000{bottom:339.387067pt;}
.y1837_c00000{bottom:339.388987pt;}
.ye93_c00000{bottom:339.627067pt;}
.yfe6_c00000{bottom:339.627200pt;}
.y950_c00000{bottom:339.627227pt;}
.yff1_c00000{bottom:339.627779pt;}
.y1188_c00000{bottom:339.947067pt;}
.y1795_c00000{bottom:340.107800pt;}
.y17ca_c00000{bottom:340.107907pt;}
.y12e0_c00000{bottom:340.108907pt;}
.y1e2a_c00000{bottom:340.187016pt;}
.y1552_c00000{bottom:340.187200pt;}
.y1e1d_c00000{bottom:340.187376pt;}
.y1b0a_c00000{bottom:340.267067pt;}
.yaa2_c00000{bottom:340.427067pt;}
.y1d1d_c00000{bottom:340.428120pt;}
.y48f_c00000{bottom:340.587067pt;}
.y4dc_c00000{bottom:340.587200pt;}
.y17a9_c00000{bottom:340.827067pt;}
.yec3_c00000{bottom:340.827200pt;}
.y1b7a_c00000{bottom:340.827360pt;}
.y12d0_c00000{bottom:340.907067pt;}
.y1324_c00000{bottom:340.907163pt;}
.y9c5_c00000{bottom:341.307067pt;}
.y15e8_c00000{bottom:341.467067pt;}
.y1ffe_c00000{bottom:341.627067pt;}
.y19aa_c00000{bottom:341.627747pt;}
.y2f7_c00000{bottom:341.707067pt;}
.y34f_c00000{bottom:341.787067pt;}
.y1a23_c00000{bottom:341.867155pt;}
.y102_c00000{bottom:341.947067pt;}
.y1427_c00000{bottom:341.947200pt;}
.yb33_c00000{bottom:342.027067pt;}
.y6f9_c00000{bottom:342.107067pt;}
.y14e8_c00000{bottom:342.347067pt;}
.ye13_c00000{bottom:342.427067pt;}
.y1a1e_c00000{bottom:342.507440pt;}
.y1038_c00000{bottom:342.667075pt;}
.y722_c00000{bottom:342.907067pt;}
.y1ed9_c00000{bottom:342.987200pt;}
.y533_c00000{bottom:342.987880pt;}
.y12b1_c00000{bottom:343.147147pt;}
.y1a66_c00000{bottom:343.147200pt;}
.ye40_c00000{bottom:343.147827pt;}
.y127a_c00000{bottom:343.147987pt;}
.y8f5_c00000{bottom:343.308147pt;}
.y1c3_c00000{bottom:343.387200pt;}
.y1cde_c00000{bottom:343.467067pt;}
.ybc0_c00000{bottom:343.467200pt;}
.y19c8_c00000{bottom:343.548200pt;}
.y1bfc_c00000{bottom:343.867067pt;}
.y1a93_c00000{bottom:344.027067pt;}
.y737_c00000{bottom:344.187200pt;}
.y1465_c00000{bottom:344.187376pt;}
.y18d7_c00000{bottom:344.267560pt;}
.y93a_c00000{bottom:344.427067pt;}
.y1fd9_c00000{bottom:344.507227pt;}
.y1c3b_c00000{bottom:344.587067pt;}
.y8af_c00000{bottom:344.590571pt;}
.y1474_c00000{bottom:344.667147pt;}
.y439_c00000{bottom:344.667200pt;}
.y1ee_c00000{bottom:344.827067pt;}
.y10d8_c00000{bottom:344.827200pt;}
.y182_c00000{bottom:344.987200pt;}
.y1b2e_c00000{bottom:345.067200pt;}
.ycca_c00000{bottom:345.067880pt;}
.y14aa_c00000{bottom:345.147200pt;}
.y751_c00000{bottom:345.227067pt;}
.y5ae_c00000{bottom:345.227200pt;}
.y1c8a_c00000{bottom:345.228291pt;}
.y110d_c00000{bottom:345.387067pt;}
.y77_c00000{bottom:345.394131pt;}
.ydd_c00000{bottom:345.629331pt;}
.y157c_c00000{bottom:345.787200pt;}
.y141f_c00000{bottom:346.187227pt;}
.ydbc_c00000{bottom:346.427200pt;}
.yba_c00000{bottom:346.507067pt;}
.yd_c00000{bottom:346.666667pt;}
.y2177_c00000{bottom:346.667200pt;}
.y605_c00000{bottom:346.747067pt;}
.y413_c00000{bottom:346.827200pt;}
.y2c6_c00000{bottom:347.067200pt;}
.y152b_c00000{bottom:347.067811pt;}
.y210a_c00000{bottom:347.071960pt;}
.y1de4_c00000{bottom:347.147067pt;}
.y344_c00000{bottom:347.147200pt;}
.y1206_c00000{bottom:347.307067pt;}
.yda2_c00000{bottom:347.307200pt;}
.y15bc_c00000{bottom:347.467216pt;}
.y3b2_c00000{bottom:347.707067pt;}
.yb6e_c00000{bottom:347.707307pt;}
.y163d_c00000{bottom:347.787067pt;}
.yc61_c00000{bottom:348.027067pt;}
.yd35_c00000{bottom:348.107067pt;}
.y1da7_c00000{bottom:348.107200pt;}
.y7b3_c00000{bottom:348.183667pt;}
.y5e5_c00000{bottom:348.267067pt;}
.y1d5d_c00000{bottom:348.347067pt;}
.y264_c00000{bottom:348.507200pt;}
.y1368_c00000{bottom:348.587067pt;}
.y174d_c00000{bottom:348.667067pt;}
.y2094_c00000{bottom:348.827200pt;}
.yd09_c00000{bottom:348.907067pt;}
.y8d4_c00000{bottom:349.227067pt;}
.y1695_c00000{bottom:349.227395pt;}
.y216_c00000{bottom:349.307200pt;}
.yce4_c00000{bottom:349.307880pt;}
.y21f4_c00000{bottom:349.387067pt;}
.y67e_c00000{bottom:349.467987pt;}
.y21f6_c00000{bottom:349.547067pt;}
.yf98_c00000{bottom:349.627067pt;}
.y888_c00000{bottom:349.627227pt;}
.y571_c00000{bottom:349.787067pt;}
.y7f8_c00000{bottom:349.787200pt;}
.y2083_c00000{bottom:350.027200pt;}
.yedf_c00000{bottom:350.107200pt;}
.y50_c00000{bottom:350.187200pt;}
.y28a_c00000{bottom:350.267067pt;}
.y23a_c00000{bottom:350.267200pt;}
.y1b55_c00000{bottom:350.347067pt;}
.y1e84_c00000{bottom:350.352907pt;}
.y15b_c00000{bottom:350.427067pt;}
.y1f02_c00000{bottom:350.427435pt;}
.yaba_c00000{bottom:350.507067pt;}
.y1725_c00000{bottom:350.587200pt;}
.y11e0_c00000{bottom:350.667200pt;}
.y1dbf_c00000{bottom:350.747200pt;}
.yf2c_c00000{bottom:350.748147pt;}
.y45c_c00000{bottom:350.827747pt;}
.y121c_c00000{bottom:350.827827pt;}
.y1196_c00000{bottom:350.908056pt;}
.y969_c00000{bottom:350.987147pt;}
.y2142_c00000{bottom:350.987200pt;}
.y1eaa_c00000{bottom:351.067200pt;}
.y2b7_c00000{bottom:351.147067pt;}
.y2d0_c00000{bottom:351.147200pt;}
.y6ce_c00000{bottom:351.307067pt;}
.y1703_c00000{bottom:351.547067pt;}
.y1f9a_c00000{bottom:351.867067pt;}
.yab0_c00000{bottom:351.947067pt;}
.y108b_c00000{bottom:352.027067pt;}
.y1cba_c00000{bottom:352.187200pt;}
.y13f0_c00000{bottom:352.267067pt;}
.yb48_c00000{bottom:352.347147pt;}
.y1ceb_c00000{bottom:352.349067pt;}
.ya00_c00000{bottom:352.426627pt;}
.y1ab6_c00000{bottom:352.587067pt;}
.y1245_c00000{bottom:352.667067pt;}
.y125c_c00000{bottom:352.667200pt;}
.ya3d_c00000{bottom:352.907067pt;}
.y1a7b_c00000{bottom:352.987067pt;}
.yefa_c00000{bottom:353.067067pt;}
.yafe_c00000{bottom:353.067200pt;}
.y17bf_c00000{bottom:353.147200pt;}
.yf63_c00000{bottom:353.227067pt;}
.y376_c00000{bottom:353.307067pt;}
.y3dc_c00000{bottom:353.387067pt;}
.y1187_c00000{bottom:353.786667pt;}
.y12d_c00000{bottom:353.787067pt;}
.y1a8_c00000{bottom:354.027067pt;}
.y2127_c00000{bottom:354.107200pt;}
.y54d_c00000{bottom:354.109747pt;}
.y1783_c00000{bottom:354.187067pt;}
.y21d0_c00000{bottom:354.267067pt;}
.y55f_c00000{bottom:354.427067pt;}
.y9b8_c00000{bottom:354.427200pt;}
.y14e7_c00000{bottom:354.587067pt;}
.y9e3_c00000{bottom:354.667200pt;}
.y73f_c00000{bottom:354.907200pt;}
.y1fac_c00000{bottom:355.067907pt;}
.ya20_c00000{bottom:355.147067pt;}
.yd4e_c00000{bottom:355.387067pt;}
.y1e29_c00000{bottom:355.547008pt;}
.y1e23_c00000{bottom:355.547067pt;}
.y1e1c_c00000{bottom:355.547368pt;}
.yfe5_c00000{bottom:355.547467pt;}
.y1406_c00000{bottom:355.707067pt;}
.y3f7_c00000{bottom:355.707200pt;}
.y10dc_c00000{bottom:355.787067pt;}
.y661_c00000{bottom:355.947067pt;}
.y50e_c00000{bottom:355.947195pt;}
.y15f9_c00000{bottom:356.026984pt;}
.y1f61_c00000{bottom:356.027067pt;}
.yc6f_c00000{bottom:356.027315pt;}
.yeaf_c00000{bottom:356.107200pt;}
.y148a_c00000{bottom:356.187200pt;}
.y21c3_c00000{bottom:356.267067pt;}
.y1836_c00000{bottom:356.268907pt;}
.ybd8_c00000{bottom:356.427067pt;}
.y94f_c00000{bottom:356.507147pt;}
.y11c0_c00000{bottom:356.747067pt;}
.y17c9_c00000{bottom:356.907307pt;}
.y12df_c00000{bottom:356.908307pt;}
.y1312_c00000{bottom:357.067200pt;}
.y13fe_c00000{bottom:357.147200pt;}
.y736_c00000{bottom:357.148907pt;}
.y1d03_c00000{bottom:357.227067pt;}
.yb91_c00000{bottom:357.307067pt;}
.y1d1c_c00000{bottom:357.308040pt;}
.y202_c00000{bottom:357.467067pt;}
.y1996_c00000{bottom:357.627067pt;}
.y16b9_c00000{bottom:357.707067pt;}
.y1b79_c00000{bottom:357.707280pt;}
.y1092_c00000{bottom:357.947067pt;}
.ye7c_c00000{bottom:358.027067pt;}
.y7d7_c00000{bottom:358.107067pt;}
.y14a9_c00000{bottom:358.107200pt;}
.y1b90_c00000{bottom:358.187200pt;}
.y844_c00000{bottom:358.427067pt;}
.y8e0_c00000{bottom:358.427200pt;}
.y19a9_c00000{bottom:358.507667pt;}
.y10d7_c00000{bottom:358.667200pt;}
.y1415_c00000{bottom:358.827067pt;}
.y1ed8_c00000{bottom:358.827200pt;}
.y1688_c00000{bottom:358.907200pt;}
.y64a_c00000{bottom:358.987067pt;}
.y5c9_c00000{bottom:358.987200pt;}
.y18e7_c00000{bottom:359.227067pt;}
.y1d4a_c00000{bottom:359.227200pt;}
.y1c17_c00000{bottom:359.387067pt;}
.y1a1d_c00000{bottom:359.387360pt;}
.y145a_c00000{bottom:359.467067pt;}
.y1464_c00000{bottom:359.467208pt;}
.y909_c00000{bottom:359.547067pt;}
.y18d6_c00000{bottom:359.627552pt;}
.y910_c00000{bottom:359.707067pt;}
.yde0_c00000{bottom:359.787067pt;}
.y532_c00000{bottom:359.787280pt;}
.y20c1_c00000{bottom:359.947067pt;}
.y12b0_c00000{bottom:360.027067pt;}
.ye3f_c00000{bottom:360.027747pt;}
.y1279_c00000{bottom:360.027907pt;}
.y1f99_c00000{bottom:360.027987pt;}
.yb10_c00000{bottom:360.187200pt;}
.y8f4_c00000{bottom:360.188067pt;}
.y2a1_c00000{bottom:360.347067pt;}
.y189e_c00000{bottom:360.347200pt;}
.y19c7_c00000{bottom:360.428120pt;}
.y761_c00000{bottom:360.507067pt;}
.y1c89_c00000{bottom:360.588283pt;}
.ye06_c00000{bottom:360.667067pt;}
.y110c_c00000{bottom:360.667200pt;}
.y163c_c00000{bottom:360.747200pt;}
.y1f7c_c00000{bottom:360.827067pt;}
.y1a92_c00000{bottom:360.907200pt;}
.y1ae9_c00000{bottom:360.987200pt;}
.y181_c00000{bottom:361.227067pt;}
.y1fd8_c00000{bottom:361.387147pt;}
.y20a5_c00000{bottom:361.467067pt;}
.y1473_c00000{bottom:361.547067pt;}
.ye2c_c00000{bottom:361.867067pt;}
.ycc9_c00000{bottom:361.947800pt;}
.yd29_c00000{bottom:362.107200pt;}
.yca8_c00000{bottom:362.267200pt;}
.y1c3a_c00000{bottom:362.587067pt;}
.y20cc_c00000{bottom:362.667200pt;}
.y2176_c00000{bottom:362.747200pt;}
.y1a4f_c00000{bottom:362.827067pt;}
.y15bb_c00000{bottom:362.827208pt;}
.y1b43_c00000{bottom:362.987200pt;}
.y141e_c00000{bottom:363.067147pt;}
.ybfa_c00000{bottom:363.067200pt;}
.y1dc8_c00000{bottom:363.147200pt;}
.y1a0f_c00000{bottom:363.307067pt;}
.y1d8c_c00000{bottom:363.387067pt;}
.y12cf_c00000{bottom:363.387200pt;}
.yf97_c00000{bottom:363.467067pt;}
.y1e50_c00000{bottom:363.547067pt;}
.y596_c00000{bottom:363.627067pt;}
.y1551_c00000{bottom:363.707067pt;}
.yede_c00000{bottom:363.707200pt;}
.y20e8_c00000{bottom:363.787067pt;}
.y1f8b_c00000{bottom:363.947067pt;}
.y91e_c00000{bottom:364.107200pt;}
.yaa1_c00000{bottom:364.107315pt;}
.y157b_c00000{bottom:364.187200pt;}
.y1c60_c00000{bottom:364.347067pt;}
.yb32_c00000{bottom:364.507067pt;}
.y3b1_c00000{bottom:364.587067pt;}
.y1c2_c00000{bottom:364.587200pt;}
.yb6d_c00000{bottom:364.587227pt;}
.y1694_c00000{bottom:364.587555pt;}
.yc90_c00000{bottom:364.907067pt;}
.y1594_c00000{bottom:364.907200pt;}
.y627_c00000{bottom:365.147067pt;}
.yf8d_c00000{bottom:365.147200pt;}
.y1d3f_c00000{bottom:365.307067pt;}
.y34e_c00000{bottom:365.467067pt;}
.y152a_c00000{bottom:365.467563pt;}
.y2109_c00000{bottom:365.471712pt;}
.yc20_c00000{bottom:365.547067pt;}
.y206f_c00000{bottom:365.627067pt;}
.y2020_c00000{bottom:365.787067pt;}
.y1f01_c00000{bottom:365.787427pt;}
.y1e72_c00000{bottom:365.867067pt;}
.y13d9_c00000{bottom:365.947067pt;}
.y1ed_c00000{bottom:366.027067pt;}
.yd86_c00000{bottom:366.107067pt;}
.yce3_c00000{bottom:366.107280pt;}
.y1195_c00000{bottom:366.187888pt;}
.y67d_c00000{bottom:366.347907pt;}
.y3db_c00000{bottom:366.427067pt;}
.yc78_c00000{bottom:366.507067pt;}
.y887_c00000{bottom:366.507147pt;}
.y160b_c00000{bottom:366.507200pt;}
.y6b4_c00000{bottom:366.667067pt;}
.ye5b_c00000{bottom:366.827067pt;}
.y1d10_c00000{bottom:366.827200pt;}
.y76_c00000{bottom:366.833859pt;}
.y263_c00000{bottom:366.907200pt;}
.y151a_c00000{bottom:366.987067pt;}
.y1bf7_c00000{bottom:367.067200pt;}
.ydc_c00000{bottom:367.069059pt;}
.ye92_c00000{bottom:367.227067pt;}
.y139a_c00000{bottom:367.227200pt;}
.y21f7_c00000{bottom:367.227691pt;}
.y108a_c00000{bottom:367.387067pt;}
.y1186_c00000{bottom:367.547067pt;}
.y7b2_c00000{bottom:367.624123pt;}
.yf2b_c00000{bottom:367.628067pt;}
.y45b_c00000{bottom:367.707667pt;}
.y121b_c00000{bottom:367.707747pt;}
.y1e21_c00000{bottom:367.786667pt;}
.y1806_c00000{bottom:368.027067pt;}
.y48e_c00000{bottom:368.187067pt;}
.y4db_c00000{bottom:368.187200pt;}
.y17a8_c00000{bottom:368.347067pt;}
.yec2_c00000{bottom:368.347200pt;}
.yafd_c00000{bottom:368.427067pt;}
.y1b1e_c00000{bottom:368.507067pt;}
.yb47_c00000{bottom:369.227067pt;}
.y1cea_c00000{bottom:369.228987pt;}
.y2f6_c00000{bottom:369.307067pt;}
.y318_c00000{bottom:369.387067pt;}
.y1ab5_c00000{bottom:369.467067pt;}
.y101_c00000{bottom:369.547067pt;}
.y1426_c00000{bottom:369.547200pt;}
.y6f8_c00000{bottom:369.707067pt;}
.y21bf_c00000{bottom:369.787067pt;}
.y32a_c00000{bottom:370.267067pt;}
.yaaf_c00000{bottom:370.347067pt;}
.y721_c00000{bottom:370.507067pt;}
.y1a65_c00000{bottom:370.747200pt;}
.y1e28_c00000{bottom:370.826840pt;}
.y1e1b_c00000{bottom:370.827200pt;}
.y2165_c00000{bottom:370.907200pt;}
.y54c_c00000{bottom:370.909147pt;}
.y14a8_c00000{bottom:370.987200pt;}
.y1cdd_c00000{bottom:371.067067pt;}
.ybbf_c00000{bottom:371.067200pt;}
.y289_c00000{bottom:371.467067pt;}
.y215_c00000{bottom:371.467200pt;}
.y9e2_c00000{bottom:371.547067pt;}
.y15a_c00000{bottom:371.627067pt;}
.y1091_c00000{bottom:371.787067pt;}
.y1dbe_c00000{bottom:371.947067pt;}
.y1fab_c00000{bottom:371.947827pt;}
.y939_c00000{bottom:372.027067pt;}
.y438_c00000{bottom:372.107200pt;}
.y4f_c00000{bottom:372.187200pt;}
.yd4d_c00000{bottom:372.267067pt;}
.y1dd0_c00000{bottom:372.347067pt;}
.y10d6_c00000{bottom:372.427067pt;}
.y1b2d_c00000{bottom:372.507067pt;}
.yd6c_c00000{bottom:372.587200pt;}
.y750_c00000{bottom:372.827067pt;}
.y5ad_c00000{bottom:372.827200pt;}
.y1794_c00000{bottom:373.067200pt;}
.y1835_c00000{bottom:373.148827pt;}
.y6e0_c00000{bottom:373.227067pt;}
.y1047_c00000{bottom:373.306771pt;}
.y5c4_c00000{bottom:373.307067pt;}
.y94e_c00000{bottom:373.387067pt;}
.y163b_c00000{bottom:373.627067pt;}
.y1139_c00000{bottom:373.787067pt;}
.y17c8_c00000{bottom:373.787227pt;}
.y12de_c00000{bottom:373.788227pt;}
.y125b_c00000{bottom:373.947067pt;}
.ydbb_c00000{bottom:374.027200pt;}
.y735_c00000{bottom:374.028827pt;}
.yb9_c00000{bottom:374.107067pt;}
.ybd7_c00000{bottom:374.107200pt;}
.y1d1b_c00000{bottom:374.187960pt;}
.y604_c00000{bottom:374.347067pt;}
.y412_c00000{bottom:374.427067pt;}
.y2141_c00000{bottom:374.507067pt;}
.y1bfb_c00000{bottom:374.587200pt;}
.y2cf_c00000{bottom:374.667200pt;}
.y1de3_c00000{bottom:374.747067pt;}
.y343_c00000{bottom:374.747200pt;}
.y12c_c00000{bottom:374.827200pt;}
.y1205_c00000{bottom:374.907067pt;}
.y1ed7_c00000{bottom:374.987259pt;}
.y18d5_c00000{bottom:374.987544pt;}
.y1a7_c00000{bottom:375.227067pt;}
.y19a8_c00000{bottom:375.307067pt;}
.y50d_c00000{bottom:375.307131pt;}
.yc60_c00000{bottom:375.627067pt;}
.yd34_c00000{bottom:375.707067pt;}
.y1da6_c00000{bottom:375.707200pt;}
.y5e4_c00000{bottom:375.867067pt;}
.y1c88_c00000{bottom:375.868115pt;}
.y1d5c_c00000{bottom:375.947067pt;}
.y110b_c00000{bottom:376.027067pt;}
.y1367_c00000{bottom:376.187067pt;}
.y2093_c00000{bottom:376.187200pt;}
.y174c_c00000{bottom:376.267067pt;}
.y1a1c_c00000{bottom:376.267280pt;}
.yb90_c00000{bottom:376.427067pt;}
.yd08_c00000{bottom:376.507067pt;}
.y8d3_c00000{bottom:376.827067pt;}
.ye3e_c00000{bottom:376.907667pt;}
.y1278_c00000{bottom:376.907827pt;}
.y1f98_c00000{bottom:376.907907pt;}
.yf62_c00000{bottom:376.987200pt;}
.y2211_c00000{bottom:377.067200pt;}
.y8f3_c00000{bottom:377.067987pt;}
.y1c22_c00000{bottom:377.147200pt;}
.yf96_c00000{bottom:377.227067pt;}
.y19c6_c00000{bottom:377.227520pt;}
.y570_c00000{bottom:377.387067pt;}
.y7f7_c00000{bottom:377.387200pt;}
.y1810_c00000{bottom:377.547067pt;}
.y2082_c00000{bottom:377.547200pt;}
.y9d_c00000{bottom:377.553723pt;}
.y1a91_c00000{bottom:377.867067pt;}
.y1b54_c00000{bottom:377.947067pt;}
.y5c8_c00000{bottom:378.107200pt;}
.y15ba_c00000{bottom:378.187200pt;}
.y1fd7_c00000{bottom:378.267067pt;}
.y1bd5_c00000{bottom:378.427067pt;}
.y1f60_c00000{bottom:378.507067pt;}
.y8ae_c00000{bottom:378.509987pt;}
.y19f5_c00000{bottom:378.587200pt;}
.y201_c00000{bottom:378.667067pt;}
.y2b6_c00000{bottom:378.747067pt;}
.ycc8_c00000{bottom:378.747200pt;}
.y6cd_c00000{bottom:378.907200pt;}
.y1c39_c00000{bottom:378.987200pt;}
.y1e71_c00000{bottom:379.067243pt;}
.y1702_c00000{bottom:379.147067pt;}
.y1a3e_c00000{bottom:379.147200pt;}
.y1472_c00000{bottom:379.467067pt;}
.yeae_c00000{bottom:379.627067pt;}
.y1693_c00000{bottom:379.707208pt;}
.y13ef_c00000{bottom:379.867067pt;}
.y1244_c00000{bottom:380.267067pt;}
.y14e6_c00000{bottom:380.427067pt;}
.ya3c_c00000{bottom:380.507067pt;}
.y1a7a_c00000{bottom:380.587067pt;}
.yef9_c00000{bottom:380.667067pt;}
.y1f8a_c00000{bottom:380.827200pt;}
.y13fd_c00000{bottom:380.827248pt;}
.y375_c00000{bottom:380.907200pt;}
.y1e4f_c00000{bottom:380.986811pt;}
.y1b42_c00000{bottom:381.147200pt;}
.y1f00_c00000{bottom:381.147419pt;}
.y11df_c00000{bottom:381.307067pt;}
.y1185_c00000{bottom:381.387560pt;}
.y3b0_c00000{bottom:381.467067pt;}
.yb6c_c00000{bottom:381.467147pt;}
.y1e30_c00000{bottom:381.547067pt;}
.y1194_c00000{bottom:381.547880pt;}
.y1782_c00000{bottom:381.787067pt;}
.y55e_c00000{bottom:382.027067pt;}
.y908_c00000{bottom:382.027200pt;}
.y16e4_c00000{bottom:382.187067pt;}
.y196d_c00000{bottom:382.187200pt;}
.y9e1_c00000{bottom:382.266808pt;}
.y2175_c00000{bottom:382.267067pt;}
.y180_c00000{bottom:382.427067pt;}
.y8b8_c00000{bottom:382.507067pt;}
.y157a_c00000{bottom:382.587200pt;}
.y1089_c00000{bottom:382.667200pt;}
.ya1f_c00000{bottom:382.747067pt;}
.yce2_c00000{bottom:382.987200pt;}
.y1cb9_c00000{bottom:383.067200pt;}
.y1ea9_c00000{bottom:383.067435pt;}
.yfe4_c00000{bottom:383.147467pt;}
.y67c_c00000{bottom:383.227827pt;}
.y3da_c00000{bottom:383.307067pt;}
.y3f6_c00000{bottom:383.307200pt;}
.y886_c00000{bottom:383.387067pt;}
.y218d_c00000{bottom:383.467067pt;}
.y660_c00000{bottom:383.547067pt;}
.yb0f_c00000{bottom:383.627448pt;}
.yafc_c00000{bottom:383.787067pt;}
.y327_c00000{bottom:383.867067pt;}
.y1529_c00000{bottom:383.867315pt;}
.y2108_c00000{bottom:383.871464pt;}
.y968_c00000{bottom:383.947067pt;}
.y760_c00000{bottom:384.027067pt;}
.y262_c00000{bottom:384.187200pt;}
.y1e83_c00000{bottom:384.272323pt;}
.y11bf_c00000{bottom:384.347067pt;}
.yf2a_c00000{bottom:384.427467pt;}
.y45a_c00000{bottom:384.507067pt;}
.y121a_c00000{bottom:384.507147pt;}
.y17be_c00000{bottom:384.507987pt;}
.y125a_c00000{bottom:384.508227pt;}
.yf47_c00000{bottom:384.667200pt;}
.y122a_c00000{bottom:384.827067pt;}
.yedd_c00000{bottom:384.827200pt;}
.y201f_c00000{bottom:385.147200pt;}
.y16b8_c00000{bottom:385.227067pt;}
.y1b1d_c00000{bottom:385.387067pt;}
.y21f3_c00000{bottom:385.464776pt;}
.y1090_c00000{bottom:385.547067pt;}
.yd28_c00000{bottom:385.547448pt;}
.ye7b_c00000{bottom:385.627067pt;}
.y7d6_c00000{bottom:385.707067pt;}
.y1c1_c00000{bottom:385.707200pt;}
.y1b8f_c00000{bottom:385.787067pt;}
.y843_c00000{bottom:386.027067pt;}
.y8df_c00000{bottom:386.027200pt;}
.y1ce9_c00000{bottom:386.028387pt;}
.y10d5_c00000{bottom:386.267067pt;}
.yb46_c00000{bottom:386.427067pt;}
.y2126_c00000{bottom:386.507067pt;}
.y1687_c00000{bottom:386.507200pt;}
.y649_c00000{bottom:386.587067pt;}
.y90e_c00000{bottom:386.587200pt;}
.y18e6_c00000{bottom:386.747067pt;}
.y1d49_c00000{bottom:386.747200pt;}
.y20e2_c00000{bottom:386.827200pt;}
.y7b1_c00000{bottom:386.984059pt;}
.y1c16_c00000{bottom:386.987067pt;}
.y1355_c00000{bottom:387.067200pt;}
.y1ec_c00000{bottom:387.147067pt;}
.y1baf_c00000{bottom:387.307067pt;}
.yddf_c00000{bottom:387.387067pt;}
.y21be_c00000{bottom:387.467067pt;}
.y1da0_c00000{bottom:387.628827pt;}
.y1311_c00000{bottom:387.707067pt;}
.y2073_c00000{bottom:387.787067pt;}
.y54b_c00000{bottom:387.789067pt;}
.y2a0_c00000{bottom:387.947067pt;}
.y189d_c00000{bottom:387.947200pt;}
.y1906_c00000{bottom:388.027067pt;}
.ye05_c00000{bottom:388.267067pt;}
.y75_c00000{bottom:388.273587pt;}
.y1f7b_c00000{bottom:388.427067pt;}
.ydb_c00000{bottom:388.508787pt;}
.y15e7_c00000{bottom:388.587200pt;}
.y1f91_c00000{bottom:388.667200pt;}
.y1faa_c00000{bottom:388.827747pt;}
.yaae_c00000{bottom:388.907200pt;}
.yc1f_c00000{bottom:388.987315pt;}
.y20a4_c00000{bottom:389.067067pt;}
.y1b68_c00000{bottom:389.147067pt;}
.yd4c_c00000{bottom:389.147200pt;}
.y1b78_c00000{bottom:389.227067pt;}
.y1b09_c00000{bottom:389.307067pt;}
.ye2b_c00000{bottom:389.467067pt;}
.y1037_c00000{bottom:389.468179pt;}
.y2140_c00000{bottom:389.547067pt;}
.y1ba6_c00000{bottom:389.627067pt;}
.y1bfa_c00000{bottom:389.867067pt;}
.yca7_c00000{bottom:389.867200pt;}
.y1f3f_c00000{bottom:390.027067pt;}
.y1834_c00000{bottom:390.028747pt;}
.y18d4_c00000{bottom:390.267376pt;}
.y1a4e_c00000{bottom:390.347067pt;}
.y1ed6_c00000{bottom:390.347251pt;}
.y17c7_c00000{bottom:390.667147pt;}
.y12dd_c00000{bottom:390.668147pt;}
.y317_c00000{bottom:390.747067pt;}
.y144d_c00000{bottom:390.827200pt;}
.y1a0e_c00000{bottom:390.907067pt;}
.y734_c00000{bottom:390.908747pt;}
.y1d8b_c00000{bottom:390.987067pt;}
.y12ce_c00000{bottom:390.987200pt;}
.y4e_c00000{bottom:391.067200pt;}
.y1d1a_c00000{bottom:391.067880pt;}
.y1109_c00000{bottom:391.147200pt;}
.y595_c00000{bottom:391.227067pt;}
.y1c87_c00000{bottom:391.228107pt;}
.y110a_c00000{bottom:391.307067pt;}
.y20e7_c00000{bottom:391.387067pt;}
.y4bc_c00000{bottom:391.627067pt;}
.ya78_c00000{bottom:391.707067pt;}
.y1550_c00000{bottom:391.707083pt;}
.y12b_c00000{bottom:391.867067pt;}
.y1c5f_c00000{bottom:391.947067pt;}
.yb31_c00000{bottom:392.027067pt;}
.y1138_c00000{bottom:392.187200pt;}
.ybbe_c00000{bottom:392.267067pt;}
.y2063_c00000{bottom:392.347067pt;}
.yc8f_c00000{bottom:392.507067pt;}
.y1dcf_c00000{bottom:392.507200pt;}
.y159_c00000{bottom:392.587067pt;}
.y214_c00000{bottom:392.587200pt;}
.y626_c00000{bottom:392.747067pt;}
.y14e5_c00000{bottom:392.747200pt;}
.y531_c00000{bottom:392.827200pt;}
.y1d3e_c00000{bottom:392.907067pt;}
.yd6b_c00000{bottom:392.907200pt;}
.y100_c00000{bottom:393.067200pt;}
.y331_c00000{bottom:393.067315pt;}
.y1a1b_c00000{bottom:393.147200pt;}
.y1e4e_c00000{bottom:393.227067pt;}
.y15b9_c00000{bottom:393.467067pt;}
.y13d8_c00000{bottom:393.547067pt;}
.yd85_c00000{bottom:393.707067pt;}
.y1277_c00000{bottom:393.707227pt;}
.y1f97_c00000{bottom:393.707307pt;}
.y1459_c00000{bottom:393.867243pt;}
.y8f2_c00000{bottom:393.947907pt;}
.yb8f_c00000{bottom:394.027067pt;}
.y160a_c00000{bottom:394.027200pt;}
.y19c5_c00000{bottom:394.107440pt;}
.y6b3_c00000{bottom:394.267067pt;}
.y2210_c00000{bottom:394.347067pt;}
.y1e70_c00000{bottom:394.347075pt;}
.ye5a_c00000{bottom:394.427067pt;}
.y1519_c00000{bottom:394.587067pt;}
.ye91_c00000{bottom:394.827067pt;}
.y1399_c00000{bottom:394.827200pt;}
.y1692_c00000{bottom:395.067235pt;}
.yda1_c00000{bottom:395.147200pt;}
.y19a7_c00000{bottom:395.387067pt;}
.y1023_c00000{bottom:395.466667pt;}
.y437_c00000{bottom:395.547536pt;}
.y1793_c00000{bottom:395.627067pt;}
.y1fd6_c00000{bottom:395.707067pt;}
.y48d_c00000{bottom:395.787067pt;}
.y4da_c00000{bottom:395.787200pt;}
.y1c38_c00000{bottom:395.867067pt;}
.y17a7_c00000{bottom:395.947067pt;}
.yec1_c00000{bottom:395.947200pt;}
.y1b2c_c00000{bottom:395.947315pt;}
.y1930_c00000{bottom:396.027067pt;}
.ybf9_c00000{bottom:396.027200pt;}
.y1a6_c00000{bottom:396.347067pt;}
.y1eff_c00000{bottom:396.427251pt;}
.y90f_c00000{bottom:396.507067pt;}
.ycc7_c00000{bottom:396.667067pt;}
.y1184_c00000{bottom:396.747552pt;}
.y1ffd_c00000{bottom:396.827067pt;}
.y14a7_c00000{bottom:396.827200pt;}
.y2f5_c00000{bottom:396.907067pt;}
.y1193_c00000{bottom:396.907872pt;}
.yfe3_c00000{bottom:396.987067pt;}
.y967_c00000{bottom:396.987307pt;}
.y75f_c00000{bottom:396.988067pt;}
.y2ce_c00000{bottom:397.147067pt;}
.y2c5_c00000{bottom:397.147200pt;}
.y19f4_c00000{bottom:397.227067pt;}
.y6f7_c00000{bottom:397.307067pt;}
.y1e5d_c00000{bottom:397.467368pt;}
.y1f89_c00000{bottom:397.627067pt;}
.y261_c00000{bottom:397.707067pt;}
.y603_c00000{bottom:397.867067pt;}
.y1b41_c00000{bottom:398.027200pt;}
.y720_c00000{bottom:398.107067pt;}
.y1c21_c00000{bottom:398.267067pt;}
.y3af_c00000{bottom:398.347067pt;}
.y1ea8_c00000{bottom:398.427427pt;}
.y9bf_c00000{bottom:398.667067pt;}
.y1e65_c00000{bottom:398.987075pt;}
.yafb_c00000{bottom:399.067200pt;}
.y13fc_c00000{bottom:399.147200pt;}
.y108f_c00000{bottom:399.387067pt;}
.y163a_c00000{bottom:399.547067pt;}
.y938_c00000{bottom:399.627067pt;}
.y200_c00000{bottom:399.787067pt;}
.yf61_c00000{bottom:399.867067pt;}
.y1bd6_c00000{bottom:400.027200pt;}
.y67b_c00000{bottom:400.107747pt;}
.y3d9_c00000{bottom:400.187200pt;}
.y74f_c00000{bottom:400.427067pt;}
.y5ac_c00000{bottom:400.427200pt;}
.y2174_c00000{bottom:400.507067pt;}
.yf40_c00000{bottom:400.667067pt;}
.y1bf6_c00000{bottom:400.747200pt;}
.y1cb8_c00000{bottom:400.827200pt;}
.ya8c_c00000{bottom:400.907200pt;}
.y1579_c00000{bottom:400.987067pt;}
.y2092_c00000{bottom:401.067315pt;}
.y885_c00000{bottom:401.307067pt;}
.yf29_c00000{bottom:401.307387pt;}
.y1219_c00000{bottom:401.387067pt;}
.y17bd_c00000{bottom:401.387907pt;}
.y1259_c00000{bottom:401.388147pt;}
.y201c_c00000{bottom:401.467067pt;}
.y10d4_c00000{bottom:401.547067pt;}
.ydba_c00000{bottom:401.627200pt;}
.yb8_c00000{bottom:401.707067pt;}
.ybd6_c00000{bottom:401.707200pt;}
.y9e0_c00000{bottom:401.707264pt;}
.y823_c00000{bottom:401.947067pt;}
.y411_c00000{bottom:402.027200pt;}
.yead_c00000{bottom:402.107067pt;}
.y1528_c00000{bottom:402.267067pt;}
.y2107_c00000{bottom:402.271216pt;}
.y342_c00000{bottom:402.347067pt;}
.y1354_c00000{bottom:402.427067pt;}
.y1204_c00000{bottom:402.507067pt;}
.y1ce8_c00000{bottom:402.908307pt;}
.y1310_c00000{bottom:403.067200pt;}
.y21f2_c00000{bottom:403.145400pt;}
.y12a_c00000{bottom:403.147067pt;}
.y12af_c00000{bottom:403.147200pt;}
.yc5f_c00000{bottom:403.227067pt;}
.y1da5_c00000{bottom:403.227200pt;}
.y5e3_c00000{bottom:403.467067pt;}
.y17f_c00000{bottom:403.547067pt;}
.yb45_c00000{bottom:403.707067pt;}
.y1366_c00000{bottom:403.787067pt;}
.y174b_c00000{bottom:403.867067pt;}
.yd27_c00000{bottom:403.947200pt;}
.yd07_c00000{bottom:404.027067pt;}
.ya3b_c00000{bottom:404.027200pt;}
.y8d2_c00000{bottom:404.427067pt;}
.y1d9f_c00000{bottom:404.428227pt;}
.y201e_c00000{bottom:404.507067pt;}
.y1b77_c00000{bottom:404.507200pt;}
.y316_c00000{bottom:404.587067pt;}
.y1e13_c00000{bottom:404.587251pt;}
.y54a_c00000{bottom:404.668987pt;}
.y8b7_c00000{bottom:404.827200pt;}
.y1036_c00000{bottom:404.828171pt;}
.y56f_c00000{bottom:404.987067pt;}
.y636_c00000{bottom:404.987200pt;}
.y21bd_c00000{bottom:405.067200pt;}
.y180f_c00000{bottom:405.147067pt;}
.y2081_c00000{bottom:405.147200pt;}
.y1bf9_c00000{bottom:405.227067pt;}
.y1f3e_c00000{bottom:405.387067pt;}
.y1ba5_c00000{bottom:405.467067pt;}
.y1b53_c00000{bottom:405.547067pt;}
.y14e4_c00000{bottom:405.627067pt;}
.y1ed5_c00000{bottom:405.627083pt;}
.y1fa9_c00000{bottom:405.627147pt;}
.y18d3_c00000{bottom:405.627368pt;}
.y1724_c00000{bottom:405.787200pt;}
.y2164_c00000{bottom:405.947200pt;}
.y1f5f_c00000{bottom:406.027067pt;}
.yd4b_c00000{bottom:406.027200pt;}
.y144c_c00000{bottom:406.107200pt;}
.y15ff_c00000{bottom:406.187200pt;}
.y15a1_c00000{bottom:406.267067pt;}
.y2b5_c00000{bottom:406.347067pt;}
.y1539_c00000{bottom:406.347200pt;}
.y7b0_c00000{bottom:406.424515pt;}
.y6cc_c00000{bottom:406.507067pt;}
.y1c86_c00000{bottom:406.507939pt;}
.y1e4d_c00000{bottom:406.667067pt;}
.y1c0_c00000{bottom:406.667200pt;}
.y1701_c00000{bottom:406.747067pt;}
.y1a3d_c00000{bottom:406.747200pt;}
.y459_c00000{bottom:406.827200pt;}
.y1833_c00000{bottom:406.828147pt;}
.y4bb_c00000{bottom:406.987200pt;}
.y154f_c00000{bottom:407.067075pt;}
.y15e6_c00000{bottom:407.147200pt;}
.yaad_c00000{bottom:407.307067pt;}
.yc1e_c00000{bottom:407.387067pt;}
.y13ee_c00000{bottom:407.467067pt;}
.y17c6_c00000{bottom:407.547067pt;}
.y12dc_c00000{bottom:407.548067pt;}
.y733_c00000{bottom:407.708147pt;}
.y1243_c00000{bottom:407.867067pt;}
.y1d19_c00000{bottom:407.947800pt;}
.y20e1_c00000{bottom:408.027200pt;}
.y1a79_c00000{bottom:408.187067pt;}
.yef8_c00000{bottom:408.267067pt;}
.y1eb_c00000{bottom:408.347067pt;}
.y374_c00000{bottom:408.507067pt;}
.y15b8_c00000{bottom:408.827755pt;}
.ye7a_c00000{bottom:409.147200pt;}
.y1022_c00000{bottom:409.227067pt;}
.y1458_c00000{bottom:409.227235pt;}
.y1781_c00000{bottom:409.387067pt;}
.y158_c00000{bottom:409.627067pt;}
.y907_c00000{bottom:409.627200pt;}
.y1e6f_c00000{bottom:409.707067pt;}
.y74_c00000{bottom:409.713315pt;}
.y14a6_c00000{bottom:409.786944pt;}
.y16e3_c00000{bottom:409.787067pt;}
.y1414_c00000{bottom:409.947200pt;}
.yda_c00000{bottom:409.948515pt;}
.y93_c00000{bottom:409.953771pt;}
.y4d_c00000{bottom:410.187200pt;}
.y1d48_c00000{bottom:410.267067pt;}
.ya1e_c00000{bottom:410.347067pt;}
.y50c_c00000{bottom:410.427067pt;}
.yd6a_c00000{bottom:410.587067pt;}
.y1276_c00000{bottom:410.587147pt;}
.y1f96_c00000{bottom:410.587227pt;}
.yfe2_c00000{bottom:410.747467pt;}
.y8f1_c00000{bottom:410.827827pt;}
.y1405_c00000{bottom:410.907067pt;}
.y3f5_c00000{bottom:410.907200pt;}
.y19c4_c00000{bottom:410.987360pt;}
.y218c_c00000{bottom:411.067067pt;}
.y1a1a_c00000{bottom:411.067200pt;}
.y65f_c00000{bottom:411.147067pt;}
.yf8c_c00000{bottom:411.147200pt;}
.y1609_c00000{bottom:411.387067pt;}
.y330_c00000{bottom:411.467067pt;}
.y2072_c00000{bottom:411.467315pt;}
.ye3d_c00000{bottom:411.627067pt;}
.y1a90_c00000{bottom:411.707067pt;}
.y21ec_c00000{bottom:411.787067pt;}
.y1efe_c00000{bottom:411.787243pt;}
.y11de_c00000{bottom:411.867067pt;}
.y11be_c00000{bottom:411.947067pt;}
.y11ed_c00000{bottom:412.027200pt;}
.y1183_c00000{bottom:412.027384pt;}
.y1d14_c00000{bottom:412.107200pt;}
.y201b_c00000{bottom:412.107227pt;}
.y17bb_c00000{bottom:412.109307pt;}
.y1192_c00000{bottom:412.187704pt;}
.ybbd_c00000{bottom:412.347067pt;}
.y1229_c00000{bottom:412.427067pt;}
.y8ad_c00000{bottom:412.429403pt;}
.y1c37_c00000{bottom:412.747200pt;}
.yda0_c00000{bottom:412.827067pt;}
.ye2a_c00000{bottom:412.987200pt;}
.y1088_c00000{bottom:413.147200pt;}
.y13b4_c00000{bottom:413.227067pt;}
.y7d5_c00000{bottom:413.307067pt;}
.y1fd5_c00000{bottom:413.307440pt;}
.y155e_c00000{bottom:413.387067pt;}
.y842_c00000{bottom:413.627067pt;}
.y8de_c00000{bottom:413.627200pt;}
.y1ea7_c00000{bottom:413.707259pt;}
.y288_c00000{bottom:413.787067pt;}
.y213_c00000{bottom:413.787200pt;}
.y966_c00000{bottom:413.867227pt;}
.y75e_c00000{bottom:413.867987pt;}
.y436_c00000{bottom:413.947288pt;}
.y1686_c00000{bottom:414.107200pt;}
.y648_c00000{bottom:414.187067pt;}
.y90d_c00000{bottom:414.187200pt;}
.ycc6_c00000{bottom:414.347067pt;}
.yafa_c00000{bottom:414.427067pt;}
.y12cd_c00000{bottom:414.507067pt;}
.y1c15_c00000{bottom:414.587067pt;}
.y807_c00000{bottom:414.747200pt;}
.y530_c00000{bottom:414.747323pt;}
.y1bae_c00000{bottom:414.907067pt;}
.ya93_c00000{bottom:414.907200pt;}
.ydde_c00000{bottom:414.987200pt;}
.y1f22_c00000{bottom:415.227067pt;}
.y137c_c00000{bottom:415.307067pt;}
.y1d75_c00000{bottom:415.387067pt;}
.yff_c00000{bottom:415.547067pt;}
.y189c_c00000{bottom:415.547200pt;}
.y1905_c00000{bottom:415.627067pt;}
.y19f3_c00000{bottom:415.787067pt;}
.ye04_c00000{bottom:415.867067pt;}
.y1f7a_c00000{bottom:416.027067pt;}
.yf3f_c00000{bottom:416.027200pt;}
.y260_c00000{bottom:416.107067pt;}
.y3ae_c00000{bottom:416.267067pt;}
.y20a3_c00000{bottom:416.507067pt;}
.y1b67_c00000{bottom:416.747067pt;}
.yb44_c00000{bottom:416.747200pt;}
.y1e16_c00000{bottom:416.826667pt;}
.y67a_c00000{bottom:416.907147pt;}
.ya3a_c00000{bottom:416.908067pt;}
.y1f2d_c00000{bottom:417.067067pt;}
.y3d8_c00000{bottom:417.067200pt;}
.yca6_c00000{bottom:417.467200pt;}
.y10cc_c00000{bottom:417.547067pt;}
.y1bf5_c00000{bottom:417.627067pt;}
.y1a5_c00000{bottom:417.707067pt;}
.y205a_c00000{bottom:417.787067pt;}
.y1a4d_c00000{bottom:417.947067pt;}
.y14e3_c00000{bottom:417.947200pt;}
.y2173_c00000{bottom:418.187200pt;}
.y1e82_c00000{bottom:418.191739pt;}
.yf28_c00000{bottom:418.267827pt;}
.y1258_c00000{bottom:418.268067pt;}
.y215b_c00000{bottom:418.347067pt;}
.y130f_c00000{bottom:418.427067pt;}
.y1a0d_c00000{bottom:418.507067pt;}
.yce1_c00000{bottom:418.587067pt;}
.yf95_c00000{bottom:418.667200pt;}
.y594_c00000{bottom:418.827067pt;}
.y884_c00000{bottom:418.987067pt;}
.y1cb7_c00000{bottom:418.987200pt;}
.y19a2_c00000{bottom:419.147200pt;}
.y1218_c00000{bottom:419.307067pt;}
.y1578_c00000{bottom:419.387067pt;}
.yec0_c00000{bottom:419.467067pt;}
.y1c5e_c00000{bottom:419.547067pt;}
.yb30_c00000{bottom:419.627067pt;}
.y1ce7_c00000{bottom:419.788227pt;}
.y1e1a_c00000{bottom:419.866899pt;}
.y1e17_c00000{bottom:419.867067pt;}
.y1e12_c00000{bottom:419.867083pt;}
.y1ab4_c00000{bottom:420.027200pt;}
.yc8e_c00000{bottom:420.107067pt;}
.y1dce_c00000{bottom:420.107200pt;}
.y1035_c00000{bottom:420.108003pt;}
.y602_c00000{bottom:420.347067pt;}
.y1bf8_c00000{bottom:420.507067pt;}
.y351_c00000{bottom:420.667200pt;}
.y2106_c00000{bottom:420.670968pt;}
.y21f1_c00000{bottom:420.745864pt;}
.y21ee_c00000{bottom:420.747200pt;}
.y18d2_c00000{bottom:420.907200pt;}
.y157_c00000{bottom:420.987067pt;}
.y1ed4_c00000{bottom:420.987075pt;}
.y13d7_c00000{bottom:421.147067pt;}
.yd84_c00000{bottom:421.307067pt;}
.y1d9e_c00000{bottom:421.308147pt;}
.y2163_c00000{bottom:421.387067pt;}
.y144b_c00000{bottom:421.467067pt;}
.y549_c00000{bottom:421.548907pt;}
.yb8e_c00000{bottom:421.627067pt;}
.y50b_c00000{bottom:421.627200pt;}
.y6b2_c00000{bottom:421.867067pt;}
.y1c85_c00000{bottom:421.867931pt;}
.ye59_c00000{bottom:422.027067pt;}
.y14a5_c00000{bottom:422.027200pt;}
.y1518_c00000{bottom:422.187067pt;}
.y4ba_c00000{bottom:422.267067pt;}
.ye90_c00000{bottom:422.427067pt;}
.y1398_c00000{bottom:422.427200pt;}
.y1108_c00000{bottom:422.507067pt;}
.y21bc_c00000{bottom:422.667200pt;}
.y94d_c00000{bottom:422.747067pt;}
.yd4a_c00000{bottom:422.827200pt;}
.y158f_c00000{bottom:422.987200pt;}
.y1021_c00000{bottom:423.066667pt;}
.y1b08_c00000{bottom:423.067200pt;}
.y1792_c00000{bottom:423.227067pt;}
.y1e6e_c00000{bottom:423.386971pt;}
.y48c_c00000{bottom:423.387067pt;}
.y4d9_c00000{bottom:423.387200pt;}
.y17a6_c00000{bottom:423.547067pt;}
.y1938_c00000{bottom:423.547200pt;}
.y192f_c00000{bottom:423.627067pt;}
.y1832_c00000{bottom:423.708067pt;}
.y213f_c00000{bottom:423.787067pt;}
.y74e_c00000{bottom:423.947200pt;}
.yedc_c00000{bottom:424.107200pt;}
.y15b7_c00000{bottom:424.107587pt;}
.y129_c00000{bottom:424.347067pt;}
.y1ffc_c00000{bottom:424.427067pt;}
.y12db_c00000{bottom:424.427987pt;}
.y1457_c00000{bottom:424.507067pt;}
.y17e_c00000{bottom:424.587067pt;}
.y732_c00000{bottom:424.588067pt;}
.y2cd_c00000{bottom:424.747067pt;}
.y2c4_c00000{bottom:424.747200pt;}
.y1ba4_c00000{bottom:424.827200pt;}
.y6f6_c00000{bottom:424.907067pt;}
.yb7_c00000{bottom:425.227067pt;}
.y1639_c00000{bottom:425.387067pt;}
.y17c5_c00000{bottom:425.467067pt;}
.y15e5_c00000{bottom:425.547067pt;}
.y71f_c00000{bottom:425.707067pt;}
.y7af_c00000{bottom:425.784451pt;}
.y1a64_c00000{bottom:425.947200pt;}
.ybf8_c00000{bottom:425.947747pt;}
.y1203_c00000{bottom:426.027200pt;}
.yfda_c00000{bottom:426.107611pt;}
.yaa0_c00000{bottom:426.267067pt;}
.y1e5c_c00000{bottom:426.426760pt;}
.yf8b_c00000{bottom:426.507067pt;}
.yd26_c00000{bottom:426.667067pt;}
.y141d_c00000{bottom:426.667200pt;}
.y1b2b_c00000{bottom:427.067200pt;}
.y11dd_c00000{bottom:427.147200pt;}
.y1efd_c00000{bottom:427.147235pt;}
.y937_c00000{bottom:427.227067pt;}
.y11ec_c00000{bottom:427.307067pt;}
.y1182_c00000{bottom:427.387376pt;}
.y1275_c00000{bottom:427.467067pt;}
.y1f95_c00000{bottom:427.467147pt;}
.y12cc_c00000{bottom:427.470827pt;}
.y1191_c00000{bottom:427.547696pt;}
.y8f0_c00000{bottom:427.627227pt;}
.y1bf_c00000{bottom:427.867200pt;}
.y19c3_c00000{bottom:427.867280pt;}
.y1e64_c00000{bottom:427.946952pt;}
.ya4e_c00000{bottom:428.027067pt;}
.y435_c00000{bottom:428.027200pt;}
.y20e0_c00000{bottom:428.187067pt;}
.y1f21_c00000{bottom:428.187467pt;}
.y7f6_c00000{bottom:428.507067pt;}
.y1a8f_c00000{bottom:428.667200pt;}
.y2080_c00000{bottom:428.667448pt;}
.y2037_c00000{bottom:428.907067pt;}
.y201a_c00000{bottom:428.987147pt;}
.y1d13_c00000{bottom:428.987200pt;}
.y17ba_c00000{bottom:428.989227pt;}
.y1ea6_c00000{bottom:429.067251pt;}
.ydb9_c00000{bottom:429.147200pt;}
.y308_c00000{bottom:429.307067pt;}
.ybd5_c00000{bottom:429.307200pt;}
.y21eb_c00000{bottom:429.387067pt;}
.y1e6d_c00000{bottom:429.466819pt;}
.y1ea_c00000{bottom:429.467067pt;}
.y822_c00000{bottom:429.547067pt;}
.y410_c00000{bottom:429.627067pt;}
.yaf9_c00000{bottom:429.707067pt;}
.ye34_c00000{bottom:429.867067pt;}
.y15fe_c00000{bottom:429.867315pt;}
.y1de2_c00000{bottom:429.947067pt;}
.y341_c00000{bottom:429.947200pt;}
.y20b9_c00000{bottom:430.027200pt;}
.yc1d_c00000{bottom:430.107067pt;}
.y1fd4_c00000{bottom:430.187360pt;}
.y12ae_c00000{bottom:430.507387pt;}
.ye29_c00000{bottom:430.587067pt;}
.y137b_c00000{bottom:430.667200pt;}
.y965_c00000{bottom:430.747147pt;}
.y75d_c00000{bottom:430.747907pt;}
.yc5e_c00000{bottom:430.827067pt;}
.y14e2_c00000{bottom:430.827200pt;}
.y777_c00000{bottom:431.067067pt;}
.y5e2_c00000{bottom:431.067200pt;}
.yf60_c00000{bottom:431.147200pt;}
.y1cb6_c00000{bottom:431.227067pt;}
.y73_c00000{bottom:431.233195pt;}
.yf3e_c00000{bottom:431.307067pt;}
.y10cb_c00000{bottom:431.387067pt;}
.yd9_c00000{bottom:431.468395pt;}
.y92_c00000{bottom:431.473651pt;}
.yd06_c00000{bottom:431.627067pt;}
.y1b40_c00000{bottom:431.787067pt;}
.y8d1_c00000{bottom:431.947067pt;}
.y19a1_c00000{bottom:432.027387pt;}
.y1b76_c00000{bottom:432.107200pt;}
.yf94_c00000{bottom:432.427067pt;}
.y1b8e_c00000{bottom:432.507067pt;}
.y1e5b_c00000{bottom:432.587008pt;}
.y56e_c00000{bottom:432.587067pt;}
.y180e_c00000{bottom:432.747067pt;}
.y20c0_c00000{bottom:432.747200pt;}
.y1353_c00000{bottom:433.067200pt;}
.y9c4_c00000{bottom:433.307067pt;}
.y19f2_c00000{bottom:433.387067pt;}
.y1723_c00000{bottom:433.387200pt;}
.yb43_c00000{bottom:433.627067pt;}
.y130e_c00000{bottom:433.707067pt;}
.y68e_c00000{bottom:433.787067pt;}
.ya39_c00000{bottom:433.787987pt;}
.y2b4_c00000{bottom:433.947067pt;}
.y3ad_c00000{bottom:433.947200pt;}
.y6cb_c00000{bottom:434.107200pt;}
.y1700_c00000{bottom:434.347067pt;}
.y19e1_c00000{bottom:434.427067pt;}
.y25f_c00000{bottom:434.507067pt;}
.y287_c00000{bottom:434.907067pt;}
.y212_c00000{bottom:434.907200pt;}
.y14a4_c00000{bottom:434.987200pt;}
.y13ed_c00000{bottom:435.067067pt;}
.yf27_c00000{bottom:435.147747pt;}
.y1257_c00000{bottom:435.147987pt;}
.y1e19_c00000{bottom:435.226891pt;}
.y1e15_c00000{bottom:435.227067pt;}
.y1e11_c00000{bottom:435.227075pt;}
.y1dbd_c00000{bottom:435.387067pt;}
.y1242_c00000{bottom:435.467067pt;}
.y1034_c00000{bottom:435.467995pt;}
.y1e6c_c00000{bottom:435.627067pt;}
.y1a78_c00000{bottom:435.787067pt;}
.yce0_c00000{bottom:435.867067pt;}
.y1b1c_c00000{bottom:436.027200pt;}
.y373_c00000{bottom:436.107200pt;}
.y1f3d_c00000{bottom:436.187200pt;}
.y1ed3_c00000{bottom:436.347067pt;}
.y154e_c00000{bottom:436.667200pt;}
.y1ce6_c00000{bottom:436.668147pt;}
.y9df_c00000{bottom:436.747200pt;}
.y1020_c00000{bottom:436.827067pt;}
.y144a_c00000{bottom:436.827200pt;}
.y1ab3_c00000{bottom:436.907200pt;}
.yb6b_c00000{bottom:436.987067pt;}
.y14e1_c00000{bottom:436.987200pt;}
.y9b7_c00000{bottom:437.067200pt;}
.y55d_c00000{bottom:437.227067pt;}
.y906_c00000{bottom:437.227200pt;}
.y1c84_c00000{bottom:437.227923pt;}
.y1e4c_c00000{bottom:437.307067pt;}
.y29_c00000{bottom:437.333333pt;}
.y16e2_c00000{bottom:437.387067pt;}
.y4b9_c00000{bottom:437.627067pt;}
.y90c_c00000{bottom:437.707067pt;}
.y1413_c00000{bottom:437.787067pt;}
.yedb_c00000{bottom:437.787200pt;}
.ya1d_c00000{bottom:437.947067pt;}
.y4c_c00000{bottom:438.107200pt;}
.yd69_c00000{bottom:438.187067pt;}
.y1d9d_c00000{bottom:438.188067pt;}
.y18a8_c00000{bottom:438.188227pt;}
.y1638_c00000{bottom:438.347067pt;}
.yfe1_c00000{bottom:438.347467pt;}
.y21f0_c00000{bottom:438.426488pt;}
.y21ed_c00000{bottom:438.427067pt;}
.y548_c00000{bottom:438.428827pt;}
.y1404_c00000{bottom:438.507067pt;}
.y3f4_c00000{bottom:438.507200pt;}
.y213e_c00000{bottom:438.587067pt;}
.y7_c00000{bottom:438.666667pt;}
.y1e5a_c00000{bottom:438.666856pt;}
.y218b_c00000{bottom:438.667067pt;}
.y65e_c00000{bottom:438.747067pt;}
.y1a4_c00000{bottom:438.827067pt;}
.y320_c00000{bottom:439.067200pt;}
.y1d74_c00000{bottom:439.067315pt;}
.y2105_c00000{bottom:439.070720pt;}
.y1107_c00000{bottom:439.227067pt;}
.y15b6_c00000{bottom:439.467579pt;}
.y11bd_c00000{bottom:439.547067pt;}
.yd49_c00000{bottom:439.707067pt;}
.y141c_c00000{bottom:439.707307pt;}
.y1456_c00000{bottom:439.867067pt;}
.y1c36_c00000{bottom:439.947200pt;}
.ybbc_c00000{bottom:440.027067pt;}
.y21bb_c00000{bottom:440.347067pt;}
.yd9f_c00000{bottom:440.427067pt;}
.y1c20_c00000{bottom:440.587067pt;}
.y1831_c00000{bottom:440.587987pt;}
.y128e_c00000{bottom:440.747200pt;}
.y7d4_c00000{bottom:440.907067pt;}
.y8dd_c00000{bottom:440.987200pt;}
.y841_c00000{bottom:441.147067pt;}
.y434_c00000{bottom:441.227067pt;}
.y12da_c00000{bottom:441.227387pt;}
.y1dcd_c00000{bottom:441.387067pt;}
.y20a2_c00000{bottom:441.387315pt;}
.yfd9_c00000{bottom:441.467603pt;}
.y731_c00000{bottom:441.467987pt;}
.ya64_c00000{bottom:441.707067pt;}
.y52f_c00000{bottom:441.787067pt;}
.y919_c00000{bottom:441.787200pt;}
.ycc5_c00000{bottom:441.947067pt;}
.y1e63_c00000{bottom:441.947200pt;}
.y9c_c00000{bottom:441.953059pt;}
.y13b3_c00000{bottom:442.027067pt;}
.y156_c00000{bottom:442.107067pt;}
.y1691_c00000{bottom:442.267067pt;}
.y1efc_c00000{bottom:442.427067pt;}
.y11dc_c00000{bottom:442.507067pt;}
.yddd_c00000{bottom:442.587067pt;}
.y11eb_c00000{bottom:442.667200pt;}
.y1181_c00000{bottom:442.747368pt;}
.y50a_c00000{bottom:442.827200pt;}
.ybf7_c00000{bottom:442.827667pt;}
.y1190_c00000{bottom:442.907688pt;}
.y1274_c00000{bottom:442.987200pt;}
.yfe_c00000{bottom:443.147067pt;}
.y2c9_c00000{bottom:443.147200pt;}
.y1904_c00000{bottom:443.227067pt;}
.y201d_c00000{bottom:443.307067pt;}
.y1e6b_c00000{bottom:443.467067pt;}
.y1f79_c00000{bottom:443.627067pt;}
.y15e4_c00000{bottom:443.947200pt;}
.yaac_c00000{bottom:444.107200pt;}
.y1ba3_c00000{bottom:444.267067pt;}
.y1b66_c00000{bottom:444.347067pt;}
.y12cb_c00000{bottom:444.350747pt;}
.y1cb5_c00000{bottom:444.427067pt;}
.y1ea5_c00000{bottom:444.427243pt;}
.y1083_c00000{bottom:444.507067pt;}
.y8ef_c00000{bottom:444.507147pt;}
.y1f2c_c00000{bottom:444.667067pt;}
.y9ff_c00000{bottom:444.667200pt;}
.y19c2_c00000{bottom:444.747200pt;}
.y1e59_c00000{bottom:444.827104pt;}
.yca5_c00000{bottom:444.827200pt;}
.y1ae8_c00000{bottom:444.987200pt;}
.yaf8_c00000{bottom:445.067200pt;}
.y1f20_c00000{bottom:445.067387pt;}
.y10ca_c00000{bottom:445.147200pt;}
.y7ae_c00000{bottom:445.224907pt;}
.y128_c00000{bottom:445.307067pt;}
.y1a4c_c00000{bottom:445.547067pt;}
.y1a8e_c00000{bottom:445.627067pt;}
.y17d_c00000{bottom:445.867067pt;}
.y2019_c00000{bottom:445.867280pt;}
.y17b9_c00000{bottom:445.869147pt;}
.y215a_c00000{bottom:445.947067pt;}
.y137a_c00000{bottom:445.947200pt;}
.y14ba_c00000{bottom:446.027200pt;}
.y1a0c_c00000{bottom:446.107067pt;}
.y1d8a_c00000{bottom:446.187067pt;}
.yf93_c00000{bottom:446.267067pt;}
.y8ac_c00000{bottom:446.348819pt;}
.y593_c00000{bottom:446.427067pt;}
.y883_c00000{bottom:446.587067pt;}
.yf3d_c00000{bottom:446.667200pt;}
.y1bd3_c00000{bottom:446.827200pt;}
.y711_c00000{bottom:446.907200pt;}
.y1d18_c00000{bottom:447.067200pt;}
.y1fd3_c00000{bottom:447.067280pt;}
.y1c5d_c00000{bottom:447.147067pt;}
.yb2f_c00000{bottom:447.227067pt;}
.yf5f_c00000{bottom:447.307067pt;}
.y12ad_c00000{bottom:447.387307pt;}
.y19e0_c00000{bottom:447.387987pt;}
.y1e14_c00000{bottom:447.546667pt;}
.y1087_c00000{bottom:447.547067pt;}
.y964_c00000{bottom:447.627067pt;}
.y75c_c00000{bottom:447.627827pt;}
.yb6_c00000{bottom:447.707067pt;}
.y2125_c00000{bottom:447.787067pt;}
.y2f4_c00000{bottom:447.787248pt;}
.y601_c00000{bottom:447.947067pt;}
.y14a3_c00000{bottom:447.947200pt;}
.y154d_c00000{bottom:448.027200pt;}
.y1d3d_c00000{bottom:448.107067pt;}
.y1da4_c00000{bottom:448.187200pt;}
.y1425_c00000{bottom:448.267067pt;}
.y1352_c00000{bottom:448.427067pt;}
.y135b_c00000{bottom:448.428035pt;}
.y1202_c00000{bottom:448.507067pt;}
.y1137_c00000{bottom:448.587067pt;}
.y13d6_c00000{bottom:448.747067pt;}
.yd83_c00000{bottom:448.907067pt;}
.y19a0_c00000{bottom:448.907307pt;}
.ycdf_c00000{bottom:448.908067pt;}
.y1be_c00000{bottom:448.987200pt;}
.y130d_c00000{bottom:449.067200pt;}
.yb8d_c00000{bottom:449.227067pt;}
.y679_c00000{bottom:449.307067pt;}
.y6b1_c00000{bottom:449.467067pt;}
.y3d7_c00000{bottom:449.627067pt;}
.y1bd4_c00000{bottom:449.707067pt;}
.y1517_c00000{bottom:449.787067pt;}
.ye8f_c00000{bottom:450.027067pt;}
.y1397_c00000{bottom:450.027200pt;}
.y94c_c00000{bottom:450.347067pt;}
.yb42_c00000{bottom:450.427067pt;}
.y1e18_c00000{bottom:450.586883pt;}
.y1e10_c00000{bottom:450.587067pt;}
.y101f_c00000{bottom:450.666667pt;}
.y1e9_c00000{bottom:450.667067pt;}
.ya38_c00000{bottom:450.667907pt;}
.y1791_c00000{bottom:450.827067pt;}
.y1033_c00000{bottom:450.827987pt;}
.y48b_c00000{bottom:450.987067pt;}
.y4d8_c00000{bottom:450.987200pt;}
.y1e58_c00000{bottom:450.987352pt;}
.y17a5_c00000{bottom:451.147067pt;}
.y1937_c00000{bottom:451.147200pt;}
.y1637_c00000{bottom:451.227067pt;}
.y155d_c00000{bottom:451.467067pt;}
.y5ab_c00000{bottom:451.547067pt;}
.y68d_c00000{bottom:451.707067pt;}
.y1bf4_c00000{bottom:451.867067pt;}
.y211_c00000{bottom:451.947200pt;}
.y1ffb_c00000{bottom:452.027067pt;}
.y19f1_c00000{bottom:452.027200pt;}
.yf26_c00000{bottom:452.027667pt;}
.y1256_c00000{bottom:452.027907pt;}
.y1449_c00000{bottom:452.107200pt;}
.y1e81_c00000{bottom:452.111155pt;}
.yfe0_c00000{bottom:452.187067pt;}
.y1757_c00000{bottom:452.187200pt;}
.y6ca_c00000{bottom:452.188067pt;}
.y2c3_c00000{bottom:452.347067pt;}
.y1c83_c00000{bottom:452.507755pt;}
.y1e4b_c00000{bottom:452.667200pt;}
.y72_c00000{bottom:452.672923pt;}
.y1b1b_c00000{bottom:452.827200pt;}
.y25e_c00000{bottom:452.907067pt;}
.y20cb_c00000{bottom:452.907200pt;}
.y18d1_c00000{bottom:452.907435pt;}
.yd8_c00000{bottom:452.908123pt;}
.y91_c00000{bottom:452.913379pt;}
.y4b8_c00000{bottom:452.987200pt;}
.y1f3c_c00000{bottom:453.067200pt;}
.y1412_c00000{bottom:453.147200pt;}
.y71e_c00000{bottom:453.307067pt;}
.y1a3c_c00000{bottom:453.467067pt;}
.y1ce5_c00000{bottom:453.548067pt;}
.y1ab2_c00000{bottom:453.787067pt;}
.y1273_c00000{bottom:453.867067pt;}
.y239_c00000{bottom:454.027355pt;}
.y1b3f_c00000{bottom:454.107200pt;}
.yd25_c00000{bottom:454.267067pt;}
.ye28_c00000{bottom:454.347067pt;}
.y9de_c00000{bottom:454.507067pt;}
.y174a_c00000{bottom:454.747315pt;}
.y936_c00000{bottom:454.827067pt;}
.y15b5_c00000{bottom:454.827571pt;}
.y1d9c_c00000{bottom:455.067987pt;}
.y18a7_c00000{bottom:455.068147pt;}
.y2041_c00000{bottom:455.147200pt;}
.y1b07_c00000{bottom:455.227067pt;}
.y1455_c00000{bottom:455.227435pt;}
.y547_c00000{bottom:455.228227pt;}
.y1e62_c00000{bottom:455.547067pt;}
.ya4d_c00000{bottom:455.627067pt;}
.y20df_c00000{bottom:455.787067pt;}
.y16b7_c00000{bottom:455.867067pt;}
.y21ef_c00000{bottom:456.026952pt;}
.y1c14_c00000{bottom:456.027067pt;}
.y14e0_c00000{bottom:456.027200pt;}
.y286_c00000{bottom:456.107067pt;}
.y1577_c00000{bottom:456.187200pt;}
.y1a63_c00000{bottom:456.267067pt;}
.y858_c00000{bottom:456.347067pt;}
.y2036_c00000{bottom:456.507067pt;}
.yd48_c00000{bottom:456.587067pt;}
.y141b_c00000{bottom:456.587227pt;}
.ydb8_c00000{bottom:456.747200pt;}
.yfd8_c00000{bottom:456.747435pt;}
.y307_c00000{bottom:456.907067pt;}
.ybd4_c00000{bottom:456.907200pt;}
.y1e6a_c00000{bottom:457.066819pt;}
.y1e57_c00000{bottom:457.067200pt;}
.y821_c00000{bottom:457.147067pt;}
.yf8a_c00000{bottom:457.147200pt;}
.y40f_c00000{bottom:457.227067pt;}
.yeac_c00000{bottom:457.307067pt;}
.y3ac_c00000{bottom:457.467067pt;}
.y2067_c00000{bottom:457.467315pt;}
.y1830_c00000{bottom:457.467907pt;}
.y2104_c00000{bottom:457.470472pt;}
.y340_c00000{bottom:457.547067pt;}
.y1106_c00000{bottom:457.627067pt;}
.y1fa8_c00000{bottom:457.627667pt;}
.yc1c_c00000{bottom:457.707067pt;}
.y11db_c00000{bottom:457.867067pt;}
.y21ba_c00000{bottom:457.947200pt;}
.y1180_c00000{bottom:458.027200pt;}
.y433_c00000{bottom:458.107200pt;}
.y12d9_c00000{bottom:458.107307pt;}
.y1082_c00000{bottom:458.267067pt;}
.y730_c00000{bottom:458.347907pt;}
.y806_c00000{bottom:458.427067pt;}
.y776_c00000{bottom:458.667067pt;}
.y5e1_c00000{bottom:458.667200pt;}
.y1d5b_c00000{bottom:458.747200pt;}
.y1b2a_c00000{bottom:458.827200pt;}
.yeda_c00000{bottom:458.907200pt;}
.y1365_c00000{bottom:458.987067pt;}
.y10c9_c00000{bottom:458.987200pt;}
.yd05_c00000{bottom:459.227067pt;}
.y8d0_c00000{bottom:459.547067pt;}
.y509_c00000{bottom:459.627067pt;}
.y1ea4_c00000{bottom:459.707075pt;}
.y20a1_c00000{bottom:459.787067pt;}
.y1a3_c00000{bottom:460.027067pt;}
.yf92_c00000{bottom:460.027200pt;}
.y1685_c00000{bottom:460.107067pt;}
.y56d_c00000{bottom:460.187067pt;}
.y635_c00000{bottom:460.187200pt;}
.y180d_c00000{bottom:460.347067pt;}
.y8dc_c00000{bottom:460.347155pt;}
.y4b_c00000{bottom:460.427067pt;}
.y10d3_c00000{bottom:460.667200pt;}
.y20b4_c00000{bottom:460.667315pt;}
.y3d6_c00000{bottom:460.827200pt;}
.y1722_c00000{bottom:460.987200pt;}
.y1a19_c00000{bottom:461.227067pt;}
.y12ca_c00000{bottom:461.230667pt;}
.y8ee_c00000{bottom:461.387067pt;}
.y1608_c00000{bottom:461.467067pt;}
.y2b3_c00000{bottom:461.547067pt;}
.y1b52_c00000{bottom:461.787067pt;}
.y16b6_c00000{bottom:461.867067pt;}
.y16ff_c00000{bottom:461.947067pt;}
.y1379_c00000{bottom:461.947200pt;}
.y1f1f_c00000{bottom:461.947307pt;}
.yf3c_c00000{bottom:462.027200pt;}
.y15e3_c00000{bottom:462.187200pt;}
.y1f94_c00000{bottom:462.267067pt;}
.y127_c00000{bottom:462.427067pt;}
.yaab_c00000{bottom:462.507067pt;}
.y13ec_c00000{bottom:462.667067pt;}
.y1d12_c00000{bottom:462.747200pt;}
.y2018_c00000{bottom:462.747827pt;}
.y17b8_c00000{bottom:462.749067pt;}
.y1241_c00000{bottom:463.067067pt;}
.y1bc9_c00000{bottom:463.067200pt;}
.y210_c00000{bottom:463.147067pt;}
.y1a77_c00000{bottom:463.227067pt;}
.y155_c00000{bottom:463.307067pt;}
.y1e61_c00000{bottom:463.386944pt;}
.yca4_c00000{bottom:463.466755pt;}
.yef7_c00000{bottom:463.467067pt;}
.y1a8a_c00000{bottom:463.547315pt;}
.y135a_c00000{bottom:463.547547pt;}
.y55c_c00000{bottom:463.627067pt;}
.y372_c00000{bottom:463.707067pt;}
.y1b75_c00000{bottom:463.947200pt;}
.y1636_c00000{bottom:464.187200pt;}
.y1319_c00000{bottom:464.266915pt;}
.y12ac_c00000{bottom:464.267227pt;}
.y19df_c00000{bottom:464.267907pt;}
.y101e_c00000{bottom:464.427067pt;}
.y75b_c00000{bottom:464.427227pt;}
.y7ad_c00000{bottom:464.584843pt;}
.yb6a_c00000{bottom:464.587067pt;}
.y19c1_c00000{bottom:464.747200pt;}
.y9f1_c00000{bottom:464.827067pt;}
.y905_c00000{bottom:464.827200pt;}
.y1e5f_c00000{bottom:464.907312pt;}
.y1e56_c00000{bottom:464.907675pt;}
.y16e1_c00000{bottom:464.987067pt;}
.y1f88_c00000{bottom:465.147200pt;}
.y647_c00000{bottom:465.307067pt;}
.y963_c00000{bottom:465.547067pt;}
.yd68_c00000{bottom:465.707067pt;}
.y199f_c00000{bottom:465.787227pt;}
.ycde_c00000{bottom:465.787987pt;}
.y1764_c00000{bottom:465.947200pt;}
.yfdf_c00000{bottom:465.947467pt;}
.y1403_c00000{bottom:466.107067pt;}
.y2f3_c00000{bottom:466.107200pt;}
.y1032_c00000{bottom:466.107819pt;}
.y218a_c00000{bottom:466.267067pt;}
.y65d_c00000{bottom:466.347067pt;}
.y154c_c00000{bottom:466.427067pt;}
.y1e4a_c00000{bottom:466.667200pt;}
.y189b_c00000{bottom:466.667315pt;}
.y17c_c00000{bottom:467.067067pt;}
.y11bc_c00000{bottom:467.147067pt;}
.y1bf3_c00000{bottom:467.227067pt;}
.y1448_c00000{bottom:467.467067pt;}
.ya37_c00000{bottom:467.547827pt;}
.ya9f_c00000{bottom:467.627067pt;}
.y1136_c00000{bottom:467.787067pt;}
.y1c82_c00000{bottom:467.867747pt;}
.y192e_c00000{bottom:467.947067pt;}
.yd9e_c00000{bottom:468.027067pt;}
.y1bd_c00000{bottom:468.187067pt;}
.y4b7_c00000{bottom:468.267067pt;}
.y18d0_c00000{bottom:468.267427pt;}
.yb41_c00000{bottom:468.347067pt;}
.y1411_c00000{bottom:468.427067pt;}
.y7d3_c00000{bottom:468.507067pt;}
.y840_c00000{bottom:468.747067pt;}
.yf25_c00000{bottom:468.827067pt;}
.y1255_c00000{bottom:468.827307pt;}
.y1a3b_c00000{bottom:468.985891pt;}
.y6c9_c00000{bottom:469.067987pt;}
.y52e_c00000{bottom:469.387067pt;}
.y918_c00000{bottom:469.387200pt;}
.ycc4_c00000{bottom:469.547067pt;}
.y1b1a_c00000{bottom:469.707067pt;}
.y6f5_c00000{bottom:469.866811pt;}
.y155c_c00000{bottom:469.867067pt;}
.y74d_c00000{bottom:469.947067pt;}
.y1bad_c00000{bottom:470.107067pt;}
.y508_c00000{bottom:470.107387pt;}
.y15b4_c00000{bottom:470.107403pt;}
.yddc_c00000{bottom:470.187067pt;}
.y3ab_c00000{bottom:470.427067pt;}
.y1ce4_c00000{bottom:470.427987pt;}
.y1454_c00000{bottom:470.507267pt;}
.y19f0_c00000{bottom:470.587067pt;}
.yfd_c00000{bottom:470.747067pt;}
.ye03_c00000{bottom:470.748827pt;}
.y1903_c00000{bottom:470.827067pt;}
.y1e69_c00000{bottom:471.067067pt;}
.ye12_c00000{bottom:471.227067pt;}
.y25d_c00000{bottom:471.307067pt;}
.ye69_c00000{bottom:471.467067pt;}
.y1e8_c00000{bottom:471.787067pt;}
.y1b65_c00000{bottom:471.947067pt;}
.y1d9b_c00000{bottom:471.947907pt;}
.y18a6_c00000{bottom:471.948067pt;}
.y1081_c00000{bottom:472.107067pt;}
.yfd7_c00000{bottom:472.107427pt;}
.y546_c00000{bottom:472.108147pt;}
.y1272_c00000{bottom:472.267067pt;}
.yf89_c00000{bottom:472.507067pt;}
.yc77_c00000{bottom:472.747067pt;}
.y6b0_c00000{bottom:472.987067pt;}
.y1ab1_c00000{bottom:473.067067pt;}
.y11da_c00000{bottom:473.147067pt;}
.y1516_c00000{bottom:473.307067pt;}
.yd47_c00000{bottom:473.467067pt;}
.y141a_c00000{bottom:473.467147pt;}
.y126_c00000{bottom:473.547067pt;}
.y1a0b_c00000{bottom:473.707067pt;}
.y14a2_c00000{bottom:473.787067pt;}
.yf91_c00000{bottom:473.867067pt;}
.y1178_c00000{bottom:474.026667pt;}
.y592_c00000{bottom:474.027067pt;}
.y71_c00000{bottom:474.112651pt;}
.y882_c00000{bottom:474.187067pt;}
.y21ea_c00000{bottom:474.345731pt;}
.y21e7_c00000{bottom:474.347067pt;}
.y182f_c00000{bottom:474.347827pt;}
.yd7_c00000{bottom:474.347851pt;}
.y90_c00000{bottom:474.353107pt;}
.y8db_c00000{bottom:474.427067pt;}
.y4d7_c00000{bottom:474.507067pt;}
.y1576_c00000{bottom:474.587067pt;}
.y1936_c00000{bottom:474.667067pt;}
.y1c5c_c00000{bottom:474.747067pt;}
.yb2e_c00000{bottom:474.827067pt;}
.y432_c00000{bottom:474.987067pt;}
.y12d8_c00000{bottom:474.987227pt;}
.y1ea3_c00000{bottom:475.067067pt;}
.y1086_c00000{bottom:475.147067pt;}
.y72f_c00000{bottom:475.227827pt;}
.yb5_c00000{bottom:475.307067pt;}
.y600_c00000{bottom:475.547067pt;}
.y21b9_c00000{bottom:475.627067pt;}
.y1756_c00000{bottom:475.627315pt;}
.yaf7_c00000{bottom:475.707067pt;}
.yca3_c00000{bottom:475.786811pt;}
.y1471_c00000{bottom:475.867067pt;}
.y2103_c00000{bottom:475.870224pt;}
.y10d2_c00000{bottom:476.027067pt;}
.y1201_c00000{bottom:476.107067pt;}
.y13d5_c00000{bottom:476.187067pt;}
.y166b_c00000{bottom:476.347067pt;}
.ybf6_c00000{bottom:476.507067pt;}
.y1105_c00000{bottom:476.587067pt;}
.ya4c_c00000{bottom:476.827067pt;}
.yed9_c00000{bottom:476.987067pt;}
.y78c_c00000{bottom:477.067067pt;}
.yf3b_c00000{bottom:477.147067pt;}
.y285_c00000{bottom:477.227067pt;}
.yf41_c00000{bottom:477.307067pt;}
.y1d6e_c00000{bottom:477.387067pt;}
.ye8e_c00000{bottom:477.627067pt;}
.y94b_c00000{bottom:477.947067pt;}
.ye27_c00000{bottom:478.027067pt;}
.y16b5_c00000{bottom:478.027555pt;}
.y12c9_c00000{bottom:478.030067pt;}
.y101d_c00000{bottom:478.266667pt;}
.y646_c00000{bottom:478.268987pt;}
.y677_c00000{bottom:478.427067pt;}
.y192d_c00000{bottom:478.427307pt;}
.y48a_c00000{bottom:478.587067pt;}
.y1b51_c00000{bottom:478.667067pt;}
.y1e60_c00000{bottom:478.746936pt;}
.y17a4_c00000{bottom:478.747067pt;}
.y1f1e_c00000{bottom:478.827227pt;}
.y1359_c00000{bottom:478.907539pt;}
.y1351_c00000{bottom:479.067067pt;}
.yf5e_c00000{bottom:479.227067pt;}
.y1b8d_c00000{bottom:479.307067pt;}
.y1a8d_c00000{bottom:479.467067pt;}
.y1bf1_c00000{bottom:479.627067pt;}
.y2017_c00000{bottom:479.627747pt;}
.y17b7_c00000{bottom:479.628987pt;}
.y130c_c00000{bottom:479.707067pt;}
.yfde_c00000{bottom:479.787067pt;}
.y2c2_c00000{bottom:479.947067pt;}
.y3d5_c00000{bottom:480.027067pt;}
.y117f_c00000{bottom:480.187067pt;}
.y1a4b_c00000{bottom:480.267067pt;}
.y1e5e_c00000{bottom:480.267304pt;}
.y8ab_c00000{bottom:480.268235pt;}
.ybd3_c00000{bottom:480.427067pt;}
.y40e_c00000{bottom:480.747067pt;}
.y1b74_c00000{bottom:480.827067pt;}
.y15e2_c00000{bottom:480.827235pt;}
.y71d_c00000{bottom:480.907067pt;}
.y1ae7_c00000{bottom:481.067067pt;}
.y1a2_c00000{bottom:481.147067pt;}
.y12ab_c00000{bottom:481.147147pt;}
.y19de_c00000{bottom:481.147827pt;}
.y1e0a_c00000{bottom:481.226667pt;}
.y14df_c00000{bottom:481.227067pt;}
.y75a_c00000{bottom:481.307147pt;}
.y1cdc_c00000{bottom:481.467067pt;}
.y1031_c00000{bottom:481.467811pt;}
.y213d_c00000{bottom:481.547067pt;}
.y1721_c00000{bottom:481.627067pt;}
.yd24_c00000{bottom:481.867067pt;}
.y1a89_c00000{bottom:481.947067pt;}
.y1cb4_c00000{bottom:482.027067pt;}
.y6f4_c00000{bottom:482.107067pt;}
.y220f_c00000{bottom:482.187067pt;}
.y1d5a_c00000{bottom:482.267067pt;}
.y935_c00000{bottom:482.427067pt;}
.y1bf2_c00000{bottom:482.507067pt;}
.yef6_c00000{bottom:482.587067pt;}
.y199e_c00000{bottom:482.667147pt;}
.ycdd_c00000{bottom:482.667907pt;}
.y2040_c00000{bottom:482.747067pt;}
.y1447_c00000{bottom:482.827067pt;}
.y1c1f_c00000{bottom:482.907067pt;}
.y21e5_c00000{bottom:482.987067pt;}
.y962_c00000{bottom:483.227067pt;}
.y1c81_c00000{bottom:483.227739pt;}
.y1e55_c00000{bottom:483.307067pt;}
.y4b6_c00000{bottom:483.627067pt;}
.y18cf_c00000{bottom:483.627419pt;}
.y8ed_c00000{bottom:483.707067pt;}
.y1410_c00000{bottom:483.787067pt;}
.y7ac_c00000{bottom:483.944779pt;}
.y1e49_c00000{bottom:484.027067pt;}
.y2035_c00000{bottom:484.107067pt;}
.y1bc_c00000{bottom:484.267067pt;}
.y1dff_c00000{bottom:484.267619pt;}
.y154_c00000{bottom:484.427067pt;}
.ya36_c00000{bottom:484.427747pt;}
.y306_c00000{bottom:484.507067pt;}
.y1e68_c00000{bottom:484.666819pt;}
.y820_c00000{bottom:484.747067pt;}
.yeab_c00000{bottom:484.907067pt;}
.y17bc_c00000{bottom:484.987067pt;}
.y2b2_c00000{bottom:485.067067pt;}
.y1933_c00000{bottom:485.067315pt;}
.y33f_c00000{bottom:485.147067pt;}
.yc1b_c00000{bottom:485.307067pt;}
.y154b_c00000{bottom:485.467067pt;}
.y15b3_c00000{bottom:485.467395pt;}
.y11bb_c00000{bottom:485.547067pt;}
.y1254_c00000{bottom:485.707227pt;}
.y1080_c00000{bottom:485.867067pt;}
.y1453_c00000{bottom:485.867259pt;}
.y6c8_c00000{bottom:485.947907pt;}
.y6af_c00000{bottom:485.949747pt;}
.y9fe_c00000{bottom:486.027067pt;}
.y1e80_c00000{bottom:486.030571pt;}
.y1135_c00000{bottom:486.187067pt;}
.y5e0_c00000{bottom:486.267067pt;}
.y10c8_c00000{bottom:486.587067pt;}
.y14a1_c00000{bottom:486.747067pt;}
.yd04_c00000{bottom:486.827067pt;}
.y2059_c00000{bottom:486.987067pt;}
.y507_c00000{bottom:486.987307pt;}
.y8cf_c00000{bottom:487.147067pt;}
.y3aa_c00000{bottom:487.227067pt;}
.y1ce3_c00000{bottom:487.227387pt;}
.yfd6_c00000{bottom:487.467419pt;}
.ye02_c00000{bottom:487.548227pt;}
.ybef_c00000{bottom:487.627067pt;}
.y1684_c00000{bottom:487.707067pt;}
.y56c_c00000{bottom:487.787067pt;}
.y1177_c00000{bottom:487.866267pt;}
.y180c_c00000{bottom:487.947067pt;}
.yca2_c00000{bottom:488.027067pt;}
.y17b_c00000{bottom:488.187067pt;}
.y4a_c00000{bottom:488.266603pt;}
.y155a_c00000{bottom:488.267067pt;}
.y904_c00000{bottom:488.347067pt;}
.y1a3a_c00000{bottom:488.426347pt;}
.yabf_c00000{bottom:488.507067pt;}
.y2f2_c00000{bottom:488.827067pt;}
.y1d9a_c00000{bottom:488.827827pt;}
.y18a5_c00000{bottom:488.827987pt;}
.yf24_c00000{bottom:488.907067pt;}
.yba5_c00000{bottom:488.987067pt;}
.y545_c00000{bottom:488.988067pt;}
.y31f_c00000{bottom:489.147067pt;}
.y1bac_c00000{bottom:489.227067pt;}
.y1763_c00000{bottom:489.387315pt;}
.y16fe_c00000{bottom:489.547067pt;}
.y3f3_c00000{bottom:489.627067pt;}
.y25c_c00000{bottom:489.707067pt;}
.y1635_c00000{bottom:490.027067pt;}
.y55b_c00000{bottom:490.107067pt;}
.y13eb_c00000{bottom:490.267067pt;}
.yd46_c00000{bottom:490.347067pt;}
.y1240_c00000{bottom:490.507067pt;}
.y125_c00000{bottom:490.587067pt;}
.ya77_c00000{bottom:490.667067pt;}
.yef5_c00000{bottom:490.747907pt;}
.y1e67_c00000{bottom:490.827067pt;}
.y1ea2_c00000{bottom:490.907067pt;}
.yaf6_c00000{bottom:491.067067pt;}
.y182e_c00000{bottom:491.227747pt;}
.y371_c00000{bottom:491.307067pt;}
.y1396_c00000{bottom:491.467067pt;}
.y1995_c00000{bottom:491.547067pt;}
.y431_c00000{bottom:491.867067pt;}
.y12d7_c00000{bottom:491.867147pt;}
.y21e9_c00000{bottom:491.946195pt;}
.y1fa7_c00000{bottom:491.947067pt;}
.y101c_c00000{bottom:492.027067pt;}
.y72e_c00000{bottom:492.027227pt;}
.yb69_c00000{bottom:492.187067pt;}
.y3d4_c00000{bottom:492.347067pt;}
.y74c_c00000{bottom:492.427067pt;}
.y16e0_c00000{bottom:492.587067pt;}
.y1378_c00000{bottom:492.667067pt;}
.yd9d_c00000{bottom:492.747067pt;}
.y1e7_c00000{bottom:492.827067pt;}
.y1575_c00000{bottom:492.987067pt;}
.ya1c_c00000{bottom:493.147067pt;}
.y21b8_c00000{bottom:493.227067pt;}
.y881_c00000{bottom:493.307067pt;}
.y16b4_c00000{bottom:493.307395pt;}
.y14de_c00000{bottom:493.547067pt;}
.yfdd_c00000{bottom:493.547467pt;}
.y40d_c00000{bottom:493.707067pt;}
.y2189_c00000{bottom:493.867067pt;}
.y65c_c00000{bottom:493.947067pt;}
.y117e_c00000{bottom:493.947467pt;}
.y1755_c00000{bottom:494.027067pt;}
.y146a_c00000{bottom:494.267067pt;}
.y1d24_c00000{bottom:494.267315pt;}
.y2102_c00000{bottom:494.269976pt;}
.y1350_c00000{bottom:494.427067pt;}
.y1358_c00000{bottom:494.427851pt;}
.y1b29_c00000{bottom:494.587067pt;}
.ydb7_c00000{bottom:494.747067pt;}
.y2172_c00000{bottom:494.907067pt;}
.y12c8_c00000{bottom:494.909987pt;}
.y2124_c00000{bottom:494.987067pt;}
.y130b_c00000{bottom:495.067067pt;}
.y6f3_c00000{bottom:495.148667pt;}
.y645_c00000{bottom:495.148907pt;}
.ybbb_c00000{bottom:495.227067pt;}
.y192c_c00000{bottom:495.307227pt;}
.y1b50_c00000{bottom:495.547067pt;}
.y1104_c00000{bottom:495.627067pt;}
.y70_c00000{bottom:495.632531pt;}
.y1f1d_c00000{bottom:495.707147pt;}
.y1515_c00000{bottom:495.787067pt;}
.yb8c_c00000{bottom:495.867067pt;}
.yd6_c00000{bottom:495.867731pt;}
.y8f_c00000{bottom:495.872987pt;}
.y13a7_c00000{bottom:496.027067pt;}
.y7d2_c00000{bottom:496.107067pt;}
.y1b8c_c00000{bottom:496.187067pt;}
.y83f_c00000{bottom:496.347067pt;}
.y1a8c_c00000{bottom:496.427067pt;}
.y2016_c00000{bottom:496.427147pt;}
.y17b6_c00000{bottom:496.428387pt;}
.y1bf0_c00000{bottom:496.507067pt;}
.ybf5_c00000{bottom:496.587067pt;}
.y1030_c00000{bottom:496.827803pt;}
.y4d6_c00000{bottom:496.987067pt;}
.y917_c00000{bottom:496.987200pt;}
.ycc3_c00000{bottom:497.147067pt;}
.yf5d_c00000{bottom:497.467067pt;}
.y9c3_c00000{bottom:497.707067pt;}
.yddb_c00000{bottom:497.787067pt;}
.y1ae6_c00000{bottom:497.947067pt;}
.y1cc8_c00000{bottom:498.027067pt;}
.y19dd_c00000{bottom:498.027747pt;}
.y1446_c00000{bottom:498.107067pt;}
.y759_c00000{bottom:498.187067pt;}
.y13b2_c00000{bottom:498.267067pt;}
.yfc_c00000{bottom:498.347067pt;}
.y284_c00000{bottom:498.427067pt;}
.y1c80_c00000{bottom:498.507571pt;}
.y1e54_c00000{bottom:498.667067pt;}
.y1e66_c00000{bottom:498.667371pt;}
.y1f87_c00000{bottom:498.827067pt;}
.y18ce_c00000{bottom:498.907251pt;}
.y4b5_c00000{bottom:498.987067pt;}
.y140f_c00000{bottom:499.147067pt;}
.y1720_c00000{bottom:499.227067pt;}
.yaaa_c00000{bottom:499.307067pt;}
.y199d_c00000{bottom:499.547067pt;}
.ycdc_c00000{bottom:499.547827pt;}
.y14a0_c00000{bottom:499.627011pt;}
.y1e09_c00000{bottom:499.627067pt;}
.y1dfe_c00000{bottom:499.627611pt;}
.y107f_c00000{bottom:499.707067pt;}
.y220e_c00000{bottom:499.787067pt;}
.y1f2b_c00000{bottom:499.867067pt;}
.y10c7_c00000{bottom:500.347067pt;}
.y1cb3_c00000{bottom:500.507067pt;}
.y20ca_c00000{bottom:500.587067pt;}
.y15b2_c00000{bottom:500.667067pt;}
.yca1_c00000{bottom:501.068147pt;}
.y1e33_c00000{bottom:501.147067pt;}
.ya35_c00000{bottom:501.227147pt;}
.y1452_c00000{bottom:501.227251pt;}
.y1a0a_c00000{bottom:501.307067pt;}
.y1d89_c00000{bottom:501.387067pt;}
.y880_c00000{bottom:501.389067pt;}
.y1176_c00000{bottom:501.626667pt;}
.y591_c00000{bottom:501.627067pt;}
.y124_c00000{bottom:501.787067pt;}
.y676_c00000{bottom:501.866851pt;}
.y458_c00000{bottom:501.867067pt;}
.y1805_c00000{bottom:501.947067pt;}
.yb40_c00000{bottom:502.027067pt;}
.y72a_c00000{bottom:502.107067pt;}
.y79c_c00000{bottom:502.107315pt;}
.y1a1_c00000{bottom:502.187067pt;}
.y1bab_c00000{bottom:502.267067pt;}
.yb2d_c00000{bottom:502.427067pt;}
.y1253_c00000{bottom:502.587147pt;}
.y1085_c00000{bottom:502.747067pt;}
.yfd5_c00000{bottom:502.747251pt;}
.ybd2_c00000{bottom:502.827067pt;}
.y6c7_c00000{bottom:502.827827pt;}
.y6ae_c00000{bottom:502.829667pt;}
.yb4_c00000{bottom:502.907067pt;}
.y99e_c00000{bottom:502.987067pt;}
.y5ff_c00000{bottom:503.147067pt;}
.y1cd2_c00000{bottom:503.227067pt;}
.y1d3c_c00000{bottom:503.307067pt;}
.y7ab_c00000{bottom:503.385235pt;}
.yc6e_c00000{bottom:503.467067pt;}
.yd67_c00000{bottom:503.707067pt;}
.y1ba2_c00000{bottom:503.867067pt;}
.y506_c00000{bottom:503.867227pt;}
.y13d4_c00000{bottom:503.947067pt;}
.y11ba_c00000{bottom:504.027067pt;}
.y3a9_c00000{bottom:504.107067pt;}
.y1ce2_c00000{bottom:504.107307pt;}
.y1b3e_c00000{bottom:504.187067pt;}
.y13fb_c00000{bottom:504.427067pt;}
.ye01_c00000{bottom:504.428147pt;}
.y1134_c00000{bottom:504.507067pt;}
.y154a_c00000{bottom:504.587067pt;}
.y78b_c00000{bottom:504.667067pt;}
.y1d59_c00000{bottom:504.747067pt;}
.ye58_c00000{bottom:504.827067pt;}
.y1d32_c00000{bottom:504.987067pt;}
.ye8d_c00000{bottom:505.227067pt;}
.y3d3_c00000{bottom:505.387067pt;}
.y153_c00000{bottom:505.467067pt;}
.y94a_c00000{bottom:505.547067pt;}
.y1bb_c00000{bottom:505.627067pt;}
.y1d99_c00000{bottom:505.627227pt;}
.y18a4_c00000{bottom:505.627387pt;}
.y20de_c00000{bottom:505.787067pt;}
.y101b_c00000{bottom:505.866667pt;}
.y1b06_c00000{bottom:505.867067pt;}
.y544_c00000{bottom:505.867987pt;}
.y1790_c00000{bottom:506.027067pt;}
.y489_c00000{bottom:506.187067pt;}
.y17a3_c00000{bottom:506.347067pt;}
.y9b_c00000{bottom:506.352395pt;}
.y14dd_c00000{bottom:506.427067pt;}
.y1ed2_c00000{bottom:506.427435pt;}
.y1efb_c00000{bottom:506.427611pt;}
.y10d1_c00000{bottom:506.667067pt;}
.yac8_c00000{bottom:506.907067pt;}
.y1ea1_c00000{bottom:507.067243pt;}
.yd45_c00000{bottom:507.227067pt;}
.y313_c00000{bottom:507.387067pt;}
.y2b1_c00000{bottom:507.547067pt;}
.yef4_c00000{bottom:507.547307pt;}
.y1a39_c00000{bottom:507.786283pt;}
.y117d_c00000{bottom:507.787067pt;}
.y1377_c00000{bottom:507.947067pt;}
.y182d_c00000{bottom:508.027147pt;}
.y25b_c00000{bottom:508.107067pt;}
.yeaa_c00000{bottom:508.427067pt;}
.y71c_c00000{bottom:508.507067pt;}
.yf39_c00000{bottom:508.667067pt;}
.y16b3_c00000{bottom:508.667395pt;}
.y430_c00000{bottom:508.747067pt;}
.y72d_c00000{bottom:508.907147pt;}
.ybee_c00000{bottom:509.067067pt;}
.y21cf_c00000{bottom:509.307067pt;}
.y17a_c00000{bottom:509.387067pt;}
.yd23_c00000{bottom:509.467067pt;}
.y21e8_c00000{bottom:509.546659pt;}
.y21e6_c00000{bottom:509.547067pt;}
.y1fa6_c00000{bottom:509.547747pt;}
.y9dd_c00000{bottom:509.707067pt;}
.y1357_c00000{bottom:509.707683pt;}
.y196f_c00000{bottom:509.787067pt;}
.y934_c00000{bottom:510.027067pt;}
.yba4_c00000{bottom:510.187067pt;}
.yb3f_c00000{bottom:510.267147pt;}
.y2042_c00000{bottom:510.347067pt;}
.y130a_c00000{bottom:510.427067pt;}
.y1318_c00000{bottom:510.427739pt;}
.y40c_c00000{bottom:510.587067pt;}
.y903_c00000{bottom:510.827067pt;}
.y1c13_c00000{bottom:511.227067pt;}
.y1574_c00000{bottom:511.387067pt;}
.y65b_c00000{bottom:511.547067pt;}
.y2034_c00000{bottom:511.707067pt;}
.yed8_c00000{bottom:511.787067pt;}
.y15e1_c00000{bottom:511.867067pt;}
.y149f_c00000{bottom:511.947067pt;}
.y6f2_c00000{bottom:512.028587pt;}
.y644_c00000{bottom:512.028827pt;}
.y305_c00000{bottom:512.107067pt;}
.y102f_c00000{bottom:512.107635pt;}
.y140e_c00000{bottom:512.187067pt;}
.y192b_c00000{bottom:512.187147pt;}
.y81f_c00000{bottom:512.347067pt;}
.y1b4f_c00000{bottom:512.427067pt;}
.y19c0_c00000{bottom:512.507067pt;}
.y1f78_c00000{bottom:512.587067pt;}
.y1419_c00000{bottom:512.667067pt;}
.y1975_c00000{bottom:512.667315pt;}
.y2101_c00000{bottom:512.669728pt;}
.y33e_c00000{bottom:512.747067pt;}
.yc1a_c00000{bottom:512.907067pt;}
.y1b8b_c00000{bottom:512.987067pt;}
.y1a8b_c00000{bottom:513.307067pt;}
.y17b5_c00000{bottom:513.308307pt;}
.y34_c00000{bottom:513.333333pt;}
.yb8b_c00000{bottom:513.467067pt;}
.y107e_c00000{bottom:513.547067pt;}
.yc5d_c00000{bottom:513.627067pt;}
.y2171_c00000{bottom:513.787067pt;}
.y5df_c00000{bottom:513.867067pt;}
.y1c7f_c00000{bottom:513.867563pt;}
.y1e6_c00000{bottom:513.947067pt;}
.y1994_c00000{bottom:514.027200pt;}
.y12aa_c00000{bottom:514.107067pt;}
.y10c6_c00000{bottom:514.187067pt;}
.y123f_c00000{bottom:514.187315pt;}
.y8aa_c00000{bottom:514.187651pt;}
.y4b4_c00000{bottom:514.267067pt;}
.y18cd_c00000{bottom:514.267243pt;}
.yd03_c00000{bottom:514.427067pt;}
.y1b73_c00000{bottom:514.587067pt;}
.y1103_c00000{bottom:514.667067pt;}
.y1e53_c00000{bottom:514.668403pt;}
.y8ce_c00000{bottom:514.747067pt;}
.y1ae5_c00000{bottom:514.827067pt;}
.y19dc_c00000{bottom:514.827147pt;}
.y457_c00000{bottom:514.828067pt;}
.y1804_c00000{bottom:514.828387pt;}
.y14b9_c00000{bottom:514.987067pt;}
.y1dfd_c00000{bottom:514.987603pt;}
.yd9c_c00000{bottom:515.227067pt;}
.y1683_c00000{bottom:515.307067pt;}
.y56b_c00000{bottom:515.387067pt;}
.y180b_c00000{bottom:515.547067pt;}
.y1489_c00000{bottom:515.627067pt;}
.y1175_c00000{bottom:515.627739pt;}
.y1cb2_c00000{bottom:515.867067pt;}
.y1fd2_c00000{bottom:515.867987pt;}
.y1634_c00000{bottom:515.947067pt;}
.ya92_c00000{bottom:516.107067pt;}
.y15b1_c00000{bottom:516.107627pt;}
.y2f1_c00000{bottom:516.427067pt;}
.ycdb_c00000{bottom:516.427747pt;}
.y1451_c00000{bottom:516.507083pt;}
.y1084_c00000{bottom:516.587067pt;}
.y31e_c00000{bottom:516.747067pt;}
.y1dd8_c00000{bottom:516.747200pt;}
.y140d_c00000{bottom:516.907067pt;}
.y196c_c00000{bottom:516.987067pt;}
.y6f_c00000{bottom:517.072259pt;}
.y16fd_c00000{bottom:517.147067pt;}
.y8e_c00000{bottom:517.312715pt;}
.y199c_c00000{bottom:517.467067pt;}
.y55a_c00000{bottom:517.707067pt;}
.y171f_c00000{bottom:517.787067pt;}
.y13ea_c00000{bottom:517.867067pt;}
.yca0_c00000{bottom:517.948067pt;}
.ya34_c00000{bottom:518.107067pt;}
.yfd4_c00000{bottom:518.107243pt;}
.y87f_c00000{bottom:518.268987pt;}
.yf88_c00000{bottom:518.347067pt;}
.y1ac6_c00000{bottom:518.507315pt;}
.yf0d_c00000{bottom:518.667067pt;}
.y370_c00000{bottom:518.747067pt;}
.y1f2a_c00000{bottom:518.987067pt;}
.y1395_c00000{bottom:519.067067pt;}
.y1baa_c00000{bottom:519.147067pt;}
.y11b9_c00000{bottom:519.307067pt;}
.y1252_c00000{bottom:519.467067pt;}
.y283_c00000{bottom:519.547067pt;}
.y101a_c00000{bottom:519.627067pt;}
.y6c6_c00000{bottom:519.627227pt;}
.y6ad_c00000{bottom:519.629067pt;}
.yb68_c00000{bottom:519.787067pt;}
.y1133_c00000{bottom:519.867067pt;}
.y1e7f_c00000{bottom:519.949987pt;}
.y74b_c00000{bottom:520.027067pt;}
.y1b19_c00000{bottom:520.347067pt;}
.y675_c00000{bottom:520.507067pt;}
.y1d17_c00000{bottom:520.667067pt;}
.ya1b_c00000{bottom:520.747067pt;}
.y505_c00000{bottom:520.747147pt;}
.y3a8_c00000{bottom:520.987067pt;}
.y1ce1_c00000{bottom:520.987227pt;}
.y1762_c00000{bottom:520.988067pt;}
.y185a_c00000{bottom:521.068531pt;}
.yfdc_c00000{bottom:521.147467pt;}
.ye11_c00000{bottom:521.307067pt;}
.ye00_c00000{bottom:521.308067pt;}
.y2188_c00000{bottom:521.467067pt;}
.y117c_c00000{bottom:521.547467pt;}
.y1ed1_c00000{bottom:521.787427pt;}
.y1efa_c00000{bottom:521.787603pt;}
.y392_c00000{bottom:521.867067pt;}
.y10d0_c00000{bottom:522.027067pt;}
.y3d2_c00000{bottom:522.187067pt;}
.ydb6_c00000{bottom:522.267067pt;}
.y1ea0_c00000{bottom:522.427235pt;}
.y152_c00000{bottom:522.507067pt;}
.y1d98_c00000{bottom:522.507147pt;}
.y18a3_c00000{bottom:522.507307pt;}
.y26_c00000{bottom:522.666667pt;}
.y1d02_c00000{bottom:522.667067pt;}
.y7aa_c00000{bottom:522.745171pt;}
.y1b05_c00000{bottom:522.747067pt;}
.y543_c00000{bottom:522.747907pt;}
.ybba_c00000{bottom:522.827067pt;}
.y123_c00000{bottom:522.907067pt;}
.y16f7_c00000{bottom:523.227067pt;}
.y1a0_c00000{bottom:523.307067pt;}
.y1514_c00000{bottom:523.387067pt;}
.y1749_c00000{bottom:523.467067pt;}
.yaf5_c00000{bottom:523.627067pt;}
.y7d1_c00000{bottom:523.707067pt;}
.y83e_c00000{bottom:523.787067pt;}
.y85e_c00000{bottom:523.947067pt;}
.yd44_c00000{bottom:524.027067pt;}
.y16b2_c00000{bottom:524.027555pt;}
.y49_c00000{bottom:524.106355pt;}
.y1c35_c00000{bottom:524.107067pt;}
.y1955_c00000{bottom:524.427067pt;}
.yef3_c00000{bottom:524.427227pt;}
.y213c_c00000{bottom:524.507067pt;}
.y4d5_c00000{bottom:524.587067pt;}
.y916_c00000{bottom:524.587200pt;}
.ycc2_c00000{bottom:524.747067pt;}
.y149e_c00000{bottom:524.827067pt;}
.y134f_c00000{bottom:524.907067pt;}
.y1356_c00000{bottom:524.907355pt;}
.y155b_c00000{bottom:525.067067pt;}
.ydda_c00000{bottom:525.227067pt;}
.ye26_c00000{bottom:525.547067pt;}
.y42f_c00000{bottom:525.627067pt;}
.y1309_c00000{bottom:525.707067pt;}
.y1317_c00000{bottom:525.707571pt;}
.y65a_c00000{bottom:525.787067pt;}
.yfb_c00000{bottom:525.947067pt;}
.y1902_c00000{bottom:526.027067pt;}
.y19ef_c00000{bottom:526.347067pt;}
.y1fa5_c00000{bottom:526.427667pt;}
.y25a_c00000{bottom:526.507067pt;}
.y238_c00000{bottom:526.587067pt;}
.y99d_c00000{bottom:526.667315pt;}
.y1ba_c00000{bottom:526.747067pt;}
.y13b1_c00000{bottom:527.067067pt;}
.yb3e_c00000{bottom:527.147067pt;}
.y1e07_c00000{bottom:527.226667pt;}
.y1a38_c00000{bottom:527.226739pt;}
.y1bd2_c00000{bottom:527.227067pt;}
.y166a_c00000{bottom:527.465731pt;}
.y40b_c00000{bottom:527.467067pt;}
.y102e_c00000{bottom:527.467627pt;}
.y21e4_c00000{bottom:527.867315pt;}
.y10c5_c00000{bottom:527.947067pt;}
.yd5_c00000{bottom:528.027323pt;}
.y1f1c_c00000{bottom:528.107067pt;}
.y838_c00000{bottom:528.187067pt;}
.y1d6d_c00000{bottom:528.507067pt;}
.y12c7_c00000{bottom:528.669827pt;}
.y1604_c00000{bottom:528.747067pt;}
.y9dc_c00000{bottom:528.827067pt;}
.y6f1_c00000{bottom:528.827987pt;}
.y643_c00000{bottom:528.828227pt;}
.y1488_c00000{bottom:528.987067pt;}
.ybed_c00000{bottom:529.067067pt;}
.y590_c00000{bottom:529.227067pt;}
.y1c7e_c00000{bottom:529.227555pt;}
.y20b3_c00000{bottom:529.387067pt;}
.y4b3_c00000{bottom:529.627067pt;}
.y18cc_c00000{bottom:529.627235pt;}
.ya8b_c00000{bottom:529.707067pt;}
.y1573_c00000{bottom:529.787067pt;}
.y1d31_c00000{bottom:529.867067pt;}
.yed7_c00000{bottom:529.947067pt;}
.yb2c_c00000{bottom:530.027067pt;}
.y17b4_c00000{bottom:530.188227pt;}
.y196b_c00000{bottom:530.190747pt;}
.y1e08_c00000{bottom:530.267067pt;}
.y1dfc_c00000{bottom:530.267435pt;}
.yc8d_c00000{bottom:530.347067pt;}
.y15e0_c00000{bottom:530.427067pt;}
.yb3_c00000{bottom:530.507067pt;}
.y5fe_c00000{bottom:530.747067pt;}
.y1174_c00000{bottom:530.747251pt;}
.yea9_c00000{bottom:530.907067pt;}
.y12d6_c00000{bottom:531.067067pt;}
.yc72_c00000{bottom:531.067315pt;}
.y2100_c00000{bottom:531.069480pt;}
.y1cb1_c00000{bottom:531.227067pt;}
.yd66_c00000{bottom:531.307067pt;}
.y1b72_c00000{bottom:531.387067pt;}
.y1ba1_c00000{bottom:531.467067pt;}
.y15b0_c00000{bottom:531.467619pt;}
.y13d3_c00000{bottom:531.547067pt;}
.y14dc_c00000{bottom:531.627067pt;}
.yd82_c00000{bottom:531.707067pt;}
.y456_c00000{bottom:531.707987pt;}
.y1803_c00000{bottom:531.708307pt;}
.y1b3d_c00000{bottom:531.787067pt;}
.y1c5b_c00000{bottom:531.867067pt;}
.y1450_c00000{bottom:531.867075pt;}
.y13fa_c00000{bottom:532.027067pt;}
.y78a_c00000{bottom:532.267067pt;}
.y1d58_c00000{bottom:532.347067pt;}
.ye57_c00000{bottom:532.427067pt;}
.y1f86_c00000{bottom:532.507067pt;}
.y123e_c00000{bottom:532.587067pt;}
.yb8a_c00000{bottom:532.747067pt;}
.y1fd1_c00000{bottom:532.747907pt;}
.ye8c_c00000{bottom:532.827067pt;}
.y949_c00000{bottom:533.147067pt;}
.y1a76_c00000{bottom:533.227067pt;}
.ycda_c00000{bottom:533.227147pt;}
.y1593_c00000{bottom:533.387067pt;}
.y1019_c00000{bottom:533.466667pt;}
.yfd3_c00000{bottom:533.467235pt;}
.y79b_c00000{bottom:533.467987pt;}
.y151_c00000{bottom:533.627067pt;}
.y488_c00000{bottom:533.787067pt;}
.y1102_c00000{bottom:533.947067pt;}
.yc19_c00000{bottom:534.107067pt;}
.y2170_c00000{bottom:534.187067pt;}
.yf87_c00000{bottom:534.267067pt;}
.y11b8_c00000{bottom:534.667067pt;}
.y1ffa_c00000{bottom:534.827067pt;}
.y391_c00000{bottom:534.827827pt;}
.yc9f_c00000{bottom:534.827987pt;}
.y312_c00000{bottom:534.987067pt;}
.y220d_c00000{bottom:535.067067pt;}
.y1e5_c00000{bottom:535.147067pt;}
.y87e_c00000{bottom:535.148907pt;}
.y1132_c00000{bottom:535.307067pt;}
.y117b_c00000{bottom:535.387067pt;}
.ya33_c00000{bottom:536.027067pt;}
.y71b_c00000{bottom:536.107067pt;}
.y1ab0_c00000{bottom:536.347067pt;}
.y171e_c00000{bottom:536.427067pt;}
.y1859_c00000{bottom:536.428523pt;}
.y6c5_c00000{bottom:536.507147pt;}
.y6ac_c00000{bottom:536.508987pt;}
.ya9e_c00000{bottom:536.667067pt;}
.y1ac5_c00000{bottom:536.907067pt;}
.yd22_c00000{bottom:537.067067pt;}
.y1ed0_c00000{bottom:537.067259pt;}
.y1ef9_c00000{bottom:537.067435pt;}
.y128d_c00000{bottom:537.147067pt;}
.y20a0_c00000{bottom:537.227067pt;}
.y10cf_c00000{bottom:537.307067pt;}
.y933_c00000{bottom:537.467067pt;}
.y1364_c00000{bottom:537.707067pt;}
.y149d_c00000{bottom:537.787067pt;}
.y3a7_c00000{bottom:537.867067pt;}
.y1ce0_c00000{bottom:537.867147pt;}
.y1761_c00000{bottom:537.867987pt;}
.y1d88_c00000{bottom:537.869667pt;}
.ye79_c00000{bottom:537.947067pt;}
.y2123_c00000{bottom:538.187067pt;}
.ydff_c00000{bottom:538.187987pt;}
.y902_c00000{bottom:538.427067pt;}
.y1a4a_c00000{bottom:538.507067pt;}
.y6e_c00000{bottom:538.511987pt;}
.y213b_c00000{bottom:538.667067pt;}
.y1c12_c00000{bottom:538.747067pt;}
.y8d_c00000{bottom:538.752443pt;}
.y56a_c00000{bottom:538.907067pt;}
.y3d1_c00000{bottom:539.067067pt;}
.y74a_c00000{bottom:539.147067pt;}
.yf3a_c00000{bottom:539.307067pt;}
.y16b1_c00000{bottom:539.307395pt;}
.y1d97_c00000{bottom:539.387067pt;}
.y18a2_c00000{bottom:539.387227pt;}
.y1251_c00000{bottom:539.467067pt;}
.y304_c00000{bottom:539.547067pt;}
.y1669_c00000{bottom:539.626187pt;}
.y1b04_c00000{bottom:539.627067pt;}
.y542_c00000{bottom:539.627827pt;}
.y3f2_c00000{bottom:539.707067pt;}
.y81e_c00000{bottom:539.947067pt;}
.y19bf_c00000{bottom:540.107067pt;}
.y1228_c00000{bottom:540.187067pt;}
.y1527_c00000{bottom:540.267067pt;}
.y33d_c00000{bottom:540.347067pt;}
.y1a62_c00000{bottom:540.587067pt;}
.y282_c00000{bottom:540.667067pt;}
.yd43_c00000{bottom:540.827067pt;}
.y1308_c00000{bottom:541.067067pt;}
.y21a5_c00000{bottom:541.067315pt;}
.y1316_c00000{bottom:541.067563pt;}
.yc5c_c00000{bottom:541.227067pt;}
.yef2_c00000{bottom:541.307147pt;}
.y5de_c00000{bottom:541.467067pt;}
.y1993_c00000{bottom:541.627200pt;}
.y10c4_c00000{bottom:541.787067pt;}
.yd02_c00000{bottom:542.027067pt;}
.y7a9_c00000{bottom:542.185627pt;}
.y36f_c00000{bottom:542.347067pt;}
.y1e05_c00000{bottom:542.586667pt;}
.y1f93_c00000{bottom:542.587067pt;}
.y659_c00000{bottom:542.667067pt;}
.yd9b_c00000{bottom:542.747067pt;}
.y182c_c00000{bottom:542.827067pt;}
.y102d_c00000{bottom:542.827619pt;}
.y1682_c00000{bottom:542.907067pt;}
.y634_c00000{bottom:542.987067pt;}
.y1217_c00000{bottom:543.067315pt;}
.y180a_c00000{bottom:543.147067pt;}
.y83d_c00000{bottom:543.147155pt;}
.y1fa4_c00000{bottom:543.227067pt;}
.yed6_c00000{bottom:543.547067pt;}
.y1376_c00000{bottom:543.627067pt;}
.y20bf_c00000{bottom:543.867067pt;}
.y14db_c00000{bottom:543.947067pt;}
.y12a9_c00000{bottom:543.947227pt;}
.y2f0_c00000{bottom:544.027067pt;}
.y122_c00000{bottom:544.107067pt;}
.y107d_c00000{bottom:544.187067pt;}
.y40a_c00000{bottom:544.267067pt;}
.y31d_c00000{bottom:544.347067pt;}
.y1dd7_c00000{bottom:544.347200pt;}
.y19f_c00000{bottom:544.507067pt;}
.y259_c00000{bottom:544.747067pt;}
.yc18_c00000{bottom:544.747907pt;}
.y20f2_c00000{bottom:544.826875pt;}
.y18cb_c00000{bottom:544.907067pt;}
.y4b2_c00000{bottom:544.987067pt;}
.y99c_c00000{bottom:545.067067pt;}
.y559_c00000{bottom:545.307067pt;}
.y13e9_c00000{bottom:545.387067pt;}
.y21e3_c00000{bottom:545.546603pt;}
.y12c6_c00000{bottom:545.549747pt;}
.y1e06_c00000{bottom:545.627067pt;}
.y1dfb_c00000{bottom:545.627427pt;}
.y237_c00000{bottom:545.707067pt;}
.y6f0_c00000{bottom:545.707907pt;}
.y642_c00000{bottom:545.708147pt;}
.y1271_c00000{bottom:545.867067pt;}
.y1f3b_c00000{bottom:545.947067pt;}
.y21b7_c00000{bottom:546.107067pt;}
.y1173_c00000{bottom:546.107243pt;}
.yf0c_c00000{bottom:546.267067pt;}
.y1cb0_c00000{bottom:546.507067pt;}
.y1a37_c00000{bottom:546.586675pt;}
.y1394_c00000{bottom:546.587067pt;}
.y15af_c00000{bottom:546.827611pt;}
.y17b3_c00000{bottom:547.068147pt;}
.y196a_c00000{bottom:547.070667pt;}
.y158e_c00000{bottom:547.147067pt;}
.y1018_c00000{bottom:547.227067pt;}
.yb67_c00000{bottom:547.387067pt;}
.y805_c00000{bottom:547.627067pt;}
.y140c_c00000{bottom:547.786755pt;}
.y1ff_c00000{bottom:547.787067pt;}
.y42e_c00000{bottom:547.867067pt;}
.y1b9_c00000{bottom:547.947067pt;}
.y8a9_c00000{bottom:548.107067pt;}
.y1b71_c00000{bottom:548.267067pt;}
.ya1a_c00000{bottom:548.347067pt;}
.y1ae4_c00000{bottom:548.507067pt;}
.y455_c00000{bottom:548.587907pt;}
.y1802_c00000{bottom:548.588227pt;}
.ydd9_c00000{bottom:548.667067pt;}
.yfd2_c00000{bottom:548.747067pt;}
.y15df_c00000{bottom:548.827067pt;}
.ye10_c00000{bottom:548.907067pt;}
.y2187_c00000{bottom:549.067067pt;}
.y117a_c00000{bottom:549.147467pt;}
.ye25_c00000{bottom:549.227067pt;}
.y2aa_c00000{bottom:549.467067pt;}
.y2118_c00000{bottom:549.467315pt;}
.y20ff_c00000{bottom:549.469232pt;}
.y1fd0_c00000{bottom:549.547307pt;}
.y11b5_c00000{bottom:549.867067pt;}
.y11b7_c00000{bottom:550.027067pt;}
.ycd9_c00000{bottom:550.107067pt;}
.y1ac4_c00000{bottom:550.108067pt;}
.y79a_c00000{bottom:550.347907pt;}
.y5aa_c00000{bottom:550.427067pt;}
.y11d9_c00000{bottom:550.507067pt;}
.y837_c00000{bottom:550.667067pt;}
.y149c_c00000{bottom:550.747067pt;}
.y16f6_c00000{bottom:550.827067pt;}
.y1d6c_c00000{bottom:550.907067pt;}
.y1513_c00000{bottom:550.987067pt;}
.y1748_c00000{bottom:551.067067pt;}
.y13a6_c00000{bottom:551.227067pt;}
.y7d0_c00000{bottom:551.307067pt;}
.y9db_c00000{bottom:551.387067pt;}
.y179_c00000{bottom:551.547067pt;}
.y390_c00000{bottom:551.627227pt;}
.yc9e_c00000{bottom:551.627387pt;}
.y1858_c00000{bottom:551.708355pt;}
.y1668_c00000{bottom:551.866443pt;}
.y1954_c00000{bottom:551.947067pt;}
.y87d_c00000{bottom:552.028827pt;}
.y4d4_c00000{bottom:552.187067pt;}
.y915_c00000{bottom:552.187200pt;}
.y2122_c00000{bottom:552.267067pt;}
.ycc1_c00000{bottom:552.347067pt;}
.y14b8_c00000{bottom:552.427067pt;}
.y1ecf_c00000{bottom:552.427251pt;}
.y1ef8_c00000{bottom:552.427427pt;}
.y10ce_c00000{bottom:552.667067pt;}
.ya6e_c00000{bottom:552.747067pt;}
.y150_c00000{bottom:552.827067pt;}
.y1ba9_c00000{bottom:552.907067pt;}
.yad4_c00000{bottom:552.987067pt;}
.y1572_c00000{bottom:553.307067pt;}
.y6c4_c00000{bottom:553.387067pt;}
.y6ab_c00000{bottom:553.388907pt;}
.yfa_c00000{bottom:553.547067pt;}
.y1901_c00000{bottom:553.627067pt;}
.y504_c00000{bottom:553.707067pt;}
.y1e7e_c00000{bottom:553.869403pt;}
.y1b18_c00000{bottom:553.947067pt;}
.yc8c_c00000{bottom:554.027067pt;}
.y625_c00000{bottom:554.267067pt;}
.y1a75_c00000{bottom:554.347067pt;}
.yea8_c00000{bottom:554.427067pt;}
.yaa9_c00000{bottom:554.507067pt;}
.y13b0_c00000{bottom:554.667067pt;}
.y16b0_c00000{bottom:554.667395pt;}
.y3a6_c00000{bottom:554.747067pt;}
.y1760_c00000{bottom:554.747907pt;}
.y1d87_c00000{bottom:554.749587pt;}
.y171d_c00000{bottom:554.987067pt;}
.y123d_c00000{bottom:555.067067pt;}
.ydfe_c00000{bottom:555.067907pt;}
.yf36_c00000{bottom:555.147067pt;}
.y10c3_c00000{bottom:555.547067pt;}
.y3d0_c00000{bottom:555.947067pt;}
.yaf4_c00000{bottom:556.187067pt;}
.y18a1_c00000{bottom:556.267147pt;}
.y1315_c00000{bottom:556.267235pt;}
.y2071_c00000{bottom:556.347067pt;}
.y1e4_c00000{bottom:556.427067pt;}
.y541_c00000{bottom:556.427227pt;}
.y1a09_c00000{bottom:556.507067pt;}
.ybec_c00000{bottom:556.747067pt;}
.y932_c00000{bottom:556.747443pt;}
.y58f_c00000{bottom:556.827067pt;}
.y1b28_c00000{bottom:556.987067pt;}
.y83c_c00000{bottom:557.227067pt;}
.y6da_c00000{bottom:557.307067pt;}
.yb2b_c00000{bottom:557.627067pt;}
.y1e47_c00000{bottom:557.787067pt;}
.y1dbc_c00000{bottom:557.787907pt;}
.y206e_c00000{bottom:557.947067pt;}
.yb2_c00000{bottom:558.107067pt;}
.y102c_c00000{bottom:558.107451pt;}
.yef1_c00000{bottom:558.187067pt;}
.y1d3b_c00000{bottom:558.267067pt;}
.y5fd_c00000{bottom:558.347067pt;}
.y2cc_c00000{bottom:558.427067pt;}
.y311_c00000{bottom:558.667067pt;}
.yd65_c00000{bottom:558.907067pt;}
.y1ba0_c00000{bottom:559.067067pt;}
.y13d2_c00000{bottom:559.147067pt;}
.y1b3c_c00000{bottom:559.307067pt;}
.y1445_c00000{bottom:559.467067pt;}
.y658_c00000{bottom:559.547067pt;}
.y1250_c00000{bottom:559.627067pt;}
.y48_c00000{bottom:559.866835pt;}
.y789_c00000{bottom:559.867067pt;}
.y1d57_c00000{bottom:559.947067pt;}
.y1c7d_c00000{bottom:560.026811pt;}
.ye56_c00000{bottom:560.027067pt;}
.y6d_c00000{bottom:560.031867pt;}
.y140b_c00000{bottom:560.106811pt;}
.y1070_c00000{bottom:560.187067pt;}
.yd4_c00000{bottom:560.267067pt;}
.y8c_c00000{bottom:560.272323pt;}
.ye78_c00000{bottom:560.427067pt;}
.y182b_c00000{bottom:560.507067pt;}
.y1e48_c00000{bottom:560.667067pt;}
.y36e_c00000{bottom:560.747067pt;}
.y12a8_c00000{bottom:560.827147pt;}
.y1e0f_c00000{bottom:560.986867pt;}
.y1e04_c00000{bottom:560.987067pt;}
.y1dfa_c00000{bottom:560.987419pt;}
.y1017_c00000{bottom:560.987467pt;}
.y409_c00000{bottom:561.147067pt;}
.y8e9_c00000{bottom:561.227067pt;}
.y2058_c00000{bottom:561.307067pt;}
.y487_c00000{bottom:561.387067pt;}
.y1216_c00000{bottom:561.467067pt;}
.y1172_c00000{bottom:561.467235pt;}
.y7a8_c00000{bottom:561.545563pt;}
.y17a2_c00000{bottom:561.547067pt;}
.yc17_c00000{bottom:561.627827pt;}
.y1549_c00000{bottom:561.787067pt;}
.y281_c00000{bottom:561.867067pt;}
.y236_c00000{bottom:562.027067pt;}
.y209f_c00000{bottom:562.107315pt;}
.y15ae_c00000{bottom:562.107443pt;}
.y1ff9_c00000{bottom:562.347067pt;}
.y12c5_c00000{bottom:562.349147pt;}
.y144f_c00000{bottom:562.507067pt;}
.y6ef_c00000{bottom:562.587827pt;}
.y641_c00000{bottom:562.588067pt;}
.y2b0_c00000{bottom:562.747067pt;}
.y1c1e_c00000{bottom:562.827067pt;}
.y1a61_c00000{bottom:562.907067pt;}
.y1179_c00000{bottom:562.987067pt;}
.y258_c00000{bottom:563.147067pt;}
.y19ee_c00000{bottom:563.547067pt;}
.y149b_c00000{bottom:563.627067pt;}
.y71a_c00000{bottom:563.707067pt;}
.y21b6_c00000{bottom:563.787067pt;}
.y1aaf_c00000{bottom:563.947067pt;}
.y17b2_c00000{bottom:563.948067pt;}
.y1969_c00000{bottom:563.950587pt;}
.yfdb_c00000{bottom:564.107059pt;}
.yfd1_c00000{bottom:564.107067pt;}
.y1667_c00000{bottom:564.186499pt;}
.yf23_c00000{bottom:564.267067pt;}
.yf38_c00000{bottom:564.347067pt;}
.yd21_c00000{bottom:564.667067pt;}
.yed5_c00000{bottom:564.747067pt;}
.y1f3a_c00000{bottom:565.067067pt;}
.y11b4_c00000{bottom:565.147067pt;}
.y121_c00000{bottom:565.227067pt;}
.y11b6_c00000{bottom:565.307067pt;}
.y1ae3_c00000{bottom:565.387067pt;}
.y1b8a_c00000{bottom:565.467067pt;}
.y454_c00000{bottom:565.467827pt;}
.y1801_c00000{bottom:565.468147pt;}
.y19e_c00000{bottom:565.627067pt;}
.ya6d_c00000{bottom:565.627227pt;}
.y1487_c00000{bottom:565.787067pt;}
.y1131_c00000{bottom:565.867067pt;}
.y901_c00000{bottom:566.027067pt;}
.y1a36_c00000{bottom:566.027131pt;}
.y1681_c00000{bottom:566.427067pt;}
.y1fcf_c00000{bottom:566.427227pt;}
.y84d_c00000{bottom:566.507067pt;}
.yf84_c00000{bottom:566.667067pt;}
.y503_c00000{bottom:566.747827pt;}
.y2033_c00000{bottom:566.907067pt;}
.y16df_c00000{bottom:566.907395pt;}
.y1f6b_c00000{bottom:566.987067pt;}
.y1ac3_c00000{bottom:566.987987pt;}
.y15de_c00000{bottom:567.067067pt;}
.y1857_c00000{bottom:567.068347pt;}
.y186f_c00000{bottom:567.069683pt;}
.y303_c00000{bottom:567.147067pt;}
.y799_c00000{bottom:567.227827pt;}
.y624_c00000{bottom:567.228667pt;}
.y3f1_c00000{bottom:567.307067pt;}
.y81d_c00000{bottom:567.547067pt;}
.ybf4_c00000{bottom:567.627067pt;}
.y19be_c00000{bottom:567.707067pt;}
.y1f77_c00000{bottom:567.787067pt;}
.y1ece_c00000{bottom:567.787243pt;}
.y1ef7_c00000{bottom:567.787419pt;}
.y13ff_c00000{bottom:567.867067pt;}
.y20fe_c00000{bottom:567.868984pt;}
.y33c_c00000{bottom:567.947067pt;}
.ycd8_c00000{bottom:568.027067pt;}
.y38f_c00000{bottom:568.507147pt;}
.yc9d_c00000{bottom:568.507307pt;}
.yc5b_c00000{bottom:568.587067pt;}
.yd33_c00000{bottom:568.827067pt;}
.y1fe_c00000{bottom:568.907067pt;}
.y87c_c00000{bottom:568.908747pt;}
.y14f_c00000{bottom:569.067067pt;}
.y14da_c00000{bottom:569.147067pt;}
.y1992_c00000{bottom:569.227200pt;}
.y10c2_c00000{bottom:569.387067pt;}
.yd01_c00000{bottom:569.627067pt;}
.y1ba8_c00000{bottom:569.707067pt;}
.y8cd_c00000{bottom:569.947067pt;}
.y16af_c00000{bottom:570.027555pt;}
.y1e9f_c00000{bottom:570.187067pt;}
.y6aa_c00000{bottom:570.268827pt;}
.y42d_c00000{bottom:570.347067pt;}
.yf35_c00000{bottom:570.507067pt;}
.y5a9_c00000{bottom:570.587067pt;}
.y1d16_c00000{bottom:570.747067pt;}
.y9a_c00000{bottom:570.751731pt;}
.y1101_c00000{bottom:570.827067pt;}
.yb66_c00000{bottom:570.907067pt;}
.y931_c00000{bottom:570.907155pt;}
.ydd8_c00000{bottom:571.387067pt;}
.y3a5_c00000{bottom:571.547067pt;}
.y175f_c00000{bottom:571.547307pt;}
.y1d86_c00000{bottom:571.548987pt;}
.y2ef_c00000{bottom:571.627067pt;}
.y1307_c00000{bottom:571.707067pt;}
.y134e_c00000{bottom:571.708411pt;}
.y1559_c00000{bottom:571.787067pt;}
.ydfd_c00000{bottom:571.867307pt;}
.y2a9_c00000{bottom:571.947067pt;}
.y1dd6_c00000{bottom:571.947200pt;}
.y1c7c_c00000{bottom:572.267067pt;}
.y140a_c00000{bottom:572.347067pt;}
.yaf3_c00000{bottom:572.507067pt;}
.y171c_c00000{bottom:572.587067pt;}
.yb3d_c00000{bottom:572.667067pt;}
.y178_c00000{bottom:572.827067pt;}
.y558_c00000{bottom:572.907067pt;}
.ye24_c00000{bottom:572.987067pt;}
.y18a0_c00000{bottom:573.147067pt;}
.y1e02_c00000{bottom:573.226667pt;}
.y1b03_c00000{bottom:573.307067pt;}
.y540_c00000{bottom:573.307147pt;}
.y1d6b_c00000{bottom:573.387067pt;}
.y102b_c00000{bottom:573.467443pt;}
.yd42_c00000{bottom:573.627011pt;}
.yf0b_c00000{bottom:573.787067pt;}
.y192a_c00000{bottom:573.867067pt;}
.y106f_c00000{bottom:573.947067pt;}
.y1e46_c00000{bottom:574.667067pt;}
.y1780_c00000{bottom:574.667827pt;}
.y8a8_c00000{bottom:574.747067pt;}
.y1016_c00000{bottom:574.827067pt;}
.y1cc7_c00000{bottom:574.987067pt;}
.y804_c00000{bottom:575.227067pt;}
.y1393_c00000{bottom:575.387067pt;}
.y1a74_c00000{bottom:575.547067pt;}
.y4b1_c00000{bottom:575.627067pt;}
.y6c3_c00000{bottom:575.707067pt;}
.y1571_c00000{bottom:575.787067pt;}
.yebf_c00000{bottom:575.867067pt;}
.y2091_c00000{bottom:575.867315pt;}
.ya19_c00000{bottom:575.947067pt;}
.yd81_c00000{bottom:576.027067pt;}
.y1e0e_c00000{bottom:576.266699pt;}
.y1e03_c00000{bottom:576.267067pt;}
.y1df9_c00000{bottom:576.267251pt;}
.y1666_c00000{bottom:576.426755pt;}
.y657_c00000{bottom:576.427067pt;}
.yc8b_c00000{bottom:576.507067pt;}
.y149a_c00000{bottom:576.587067pt;}
.y1171_c00000{bottom:576.747067pt;}
.yea7_c00000{bottom:576.907067pt;}
.y18ca_c00000{bottom:576.907443pt;}
.y107c_c00000{bottom:576.987067pt;}
.y29f_c00000{bottom:577.067067pt;}
.y1bd1_c00000{bottom:577.067315pt;}
.y21a4_c00000{bottom:577.307067pt;}
.y15ad_c00000{bottom:577.467435pt;}
.y1e3_c00000{bottom:577.627067pt;}
.y12a7_c00000{bottom:577.707067pt;}
.y144e_c00000{bottom:577.867075pt;}
.y408_c00000{bottom:578.027067pt;}
.y836_c00000{bottom:578.267067pt;}
.y1fa3_c00000{bottom:578.347827pt;}
.y16f5_c00000{bottom:578.427067pt;}
.yc16_c00000{bottom:578.507747pt;}
.y1512_c00000{bottom:578.587067pt;}
.y1747_c00000{bottom:578.667067pt;}
.y7cf_c00000{bottom:578.827067pt;}
.y85d_c00000{bottom:578.987067pt;}
.y12c4_c00000{bottom:579.229067pt;}
.y2043_c00000{bottom:579.387067pt;}
.y6ee_c00000{bottom:579.467747pt;}
.y640_c00000{bottom:579.467987pt;}
.y1953_c00000{bottom:579.547067pt;}
.yf37_c00000{bottom:579.707067pt;}
.y4d3_c00000{bottom:579.787067pt;}
.y6d9_c00000{bottom:579.787200pt;}
.ycc0_c00000{bottom:579.947067pt;}
.y948_c00000{bottom:579.947155pt;}
.yfc0_c00000{bottom:580.106667pt;}
.y1c11_c00000{bottom:580.187067pt;}
.y257_c00000{bottom:580.427067pt;}
.yef0_c00000{bottom:580.507067pt;}
.y1633_c00000{bottom:580.587067pt;}
.y21e1_c00000{bottom:580.747067pt;}
.y17b1_c00000{bottom:580.747467pt;}
.y21e2_c00000{bottom:580.747531pt;}
.y1968_c00000{bottom:580.749987pt;}
.y1548_c00000{bottom:580.827067pt;}
.y1f5e_c00000{bottom:580.907067pt;}
.y7a7_c00000{bottom:580.986019pt;}
.y2088_c00000{bottom:580.987067pt;}
.yf9_c00000{bottom:581.147067pt;}
.y1900_c00000{bottom:581.227067pt;}
.ya32_c00000{bottom:581.307067pt;}
.y21b5_c00000{bottom:581.387067pt;}
.y6c_c00000{bottom:581.471595pt;}
.y206d_c00000{bottom:581.627067pt;}
.y8b_c00000{bottom:581.712051pt;}
.yf83_c00000{bottom:582.027067pt;}
.y13af_c00000{bottom:582.107067pt;}
.y1ae2_c00000{bottom:582.267067pt;}
.y16de_c00000{bottom:582.267395pt;}
.y1b64_c00000{bottom:582.347067pt;}
.y453_c00000{bottom:582.347747pt;}
.y1800_c00000{bottom:582.348067pt;}
.y1856_c00000{bottom:582.428339pt;}
.y186e_c00000{bottom:582.429675pt;}
.y1270_c00000{bottom:582.507067pt;}
.ya6c_c00000{bottom:582.507147pt;}
.y123c_c00000{bottom:582.667067pt;}
.y1c34_c00000{bottom:582.747067pt;}
.y1d3a_c00000{bottom:582.907067pt;}
.y235_c00000{bottom:582.987067pt;}
.y1b70_c00000{bottom:583.067067pt;}
.y1ecd_c00000{bottom:583.067075pt;}
.y1ef6_c00000{bottom:583.067251pt;}
.y10c1_c00000{bottom:583.147067pt;}
.y36d_c00000{bottom:583.227067pt;}
.y10cd_c00000{bottom:583.307067pt;}
.y1fce_c00000{bottom:583.307147pt;}
.y502_c00000{bottom:583.627747pt;}
.y2159_c00000{bottom:583.787067pt;}
.y1f6a_c00000{bottom:583.867067pt;}
.yb65_c00000{bottom:583.867147pt;}
.y1ac2_c00000{bottom:583.867907pt;}
.y798_c00000{bottom:584.027227pt;}
.y623_c00000{bottom:584.028067pt;}
.y1a08_c00000{bottom:584.107067pt;}
.y1215_c00000{bottom:584.187067pt;}
.y58e_c00000{bottom:584.347067pt;}
.y20b2_c00000{bottom:584.587067pt;}
.y8e8_c00000{bottom:584.907315pt;}
.y930_c00000{bottom:584.987067pt;}
.y1f39_c00000{bottom:584.987443pt;}
.ya76_c00000{bottom:585.147067pt;}
.yb2a_c00000{bottom:585.227067pt;}
.y16ae_c00000{bottom:585.307395pt;}
.y1f_c00000{bottom:585.333333pt;}
.y38e_c00000{bottom:585.387067pt;}
.yc9c_c00000{bottom:585.387227pt;}
.yf22_c00000{bottom:585.467067pt;}
.yb1_c00000{bottom:585.707067pt;}
.y15dd_c00000{bottom:585.707083pt;}
.y15da_c00000{bottom:585.707251pt;}
.y87b_c00000{bottom:585.708147pt;}
.yed4_c00000{bottom:585.867067pt;}
.y5fc_c00000{bottom:585.947067pt;}
.y1100_c00000{bottom:586.107067pt;}
.y1dc7_c00000{bottom:586.267067pt;}
.y20fd_c00000{bottom:586.268736pt;}
.y120_c00000{bottom:586.427067pt;}
.y1200_c00000{bottom:586.507067pt;}
.y1ba7_c00000{bottom:586.587067pt;}
.y1b9f_c00000{bottom:586.667067pt;}
.y13d1_c00000{bottom:586.747067pt;}
.y19d_c00000{bottom:586.827067pt;}
.y1b3b_c00000{bottom:586.907067pt;}
.y1306_c00000{bottom:587.067067pt;}
.y134d_c00000{bottom:587.068403pt;}
.y6a9_c00000{bottom:587.148747pt;}
.y128c_c00000{bottom:587.227067pt;}
.y788_c00000{bottom:587.467067pt;}
.y1d56_c00000{bottom:587.547067pt;}
.ye55_c00000{bottom:587.627067pt;}
.y106e_c00000{bottom:587.787067pt;}
.y1e7d_c00000{bottom:587.788819pt;}
.y220c_c00000{bottom:587.947067pt;}
.ye77_c00000{bottom:588.027067pt;}
.y182a_c00000{bottom:588.107067pt;}
.y3a4_c00000{bottom:588.427067pt;}
.y175e_c00000{bottom:588.427227pt;}
.y1d85_c00000{bottom:588.428907pt;}
.y302_c00000{bottom:588.587067pt;}
.y1665_c00000{bottom:588.667011pt;}
.y1015_c00000{bottom:588.667435pt;}
.yd00_c00000{bottom:588.747067pt;}
.ydfc_c00000{bottom:588.747227pt;}
.yaf2_c00000{bottom:588.827067pt;}
.y102a_c00000{bottom:588.827435pt;}
.y1680_c00000{bottom:588.907067pt;}
.y486_c00000{bottom:588.987067pt;}
.y18ac_c00000{bottom:589.147067pt;}
.y961_c00000{bottom:589.467067pt;}
.y1499_c00000{bottom:589.547067pt;}
.y9c2_c00000{bottom:589.707067pt;}
.y1fd_c00000{bottom:590.107067pt;}
.yf31_c00000{bottom:590.187067pt;}
.y14e_c00000{bottom:590.267067pt;}
.yd3_c00000{bottom:590.347067pt;}
.y1444_c00000{bottom:590.587067pt;}
.y1bef_c00000{bottom:590.667067pt;}
.y3cf_c00000{bottom:590.747067pt;}
.y107b_c00000{bottom:590.827067pt;}
.y4b0_c00000{bottom:590.907067pt;}
.y1f90_c00000{bottom:590.987067pt;}
.ye68_c00000{bottom:591.067067pt;}
.y171b_c00000{bottom:591.227067pt;}
.yaa8_c00000{bottom:591.307067pt;}
.y177f_c00000{bottom:591.547747pt;}
.y1e0d_c00000{bottom:591.626691pt;}
.y1e01_c00000{bottom:591.627067pt;}
.y1df8_c00000{bottom:591.627243pt;}
.y1cdb_c00000{bottom:591.867067pt;}
.yc5a_c00000{bottom:592.027067pt;}
.y1d01_c00000{bottom:592.107067pt;}
.yd20_c00000{bottom:592.267067pt;}
.y18c9_c00000{bottom:592.267435pt;}
.y1caf_c00000{bottom:592.507067pt;}
.y775_c00000{bottom:592.587315pt;}
.y1b27_c00000{bottom:592.667067pt;}
.y116e_c00000{bottom:592.747083pt;}
.y15ac_c00000{bottom:592.827427pt;}
.y1170_c00000{bottom:592.907403pt;}
.y1b89_c00000{bottom:593.067067pt;}
.y15a0_c00000{bottom:593.147067pt;}
.y656_c00000{bottom:593.227067pt;}
.y900_c00000{bottom:593.547067pt;}
.yd9a_c00000{bottom:593.867067pt;}
.y177_c00000{bottom:594.027067pt;}
.y2057_c00000{bottom:594.267067pt;}
.y14d9_c00000{bottom:594.347067pt;}
.y2032_c00000{bottom:594.507067pt;}
.y3f0_c00000{bottom:594.907067pt;}
.y2186_c00000{bottom:595.067067pt;}
.y81c_c00000{bottom:595.147067pt;}
.y1fa2_c00000{bottom:595.147227pt;}
.y19bd_c00000{bottom:595.307067pt;}
.y1de1_c00000{bottom:595.387067pt;}
.yc15_c00000{bottom:595.387667pt;}
.y189f_c00000{bottom:595.467067pt;}
.y1809_c00000{bottom:595.467315pt;}
.y33b_c00000{bottom:595.547067pt;}
.y47_c00000{bottom:595.706587pt;}
.ycff_c00000{bottom:596.027067pt;}
.yd80_c00000{bottom:596.107067pt;}
.y1d39_c00000{bottom:596.107307pt;}
.yf21_c00000{bottom:596.108067pt;}
.y12c3_c00000{bottom:596.108987pt;}
.y1f5d_c00000{bottom:596.267067pt;}
.y6ed_c00000{bottom:596.347667pt;}
.y63f_c00000{bottom:596.347907pt;}
.y803_c00000{bottom:596.427067pt;}
.y1130_c00000{bottom:596.507067pt;}
.y5dd_c00000{bottom:596.667067pt;}
.ye23_c00000{bottom:596.747067pt;}
.y1991_c00000{bottom:596.827200pt;}
.y20c9_c00000{bottom:597.227067pt;}
.yf82_c00000{bottom:597.307067pt;}
.y8cc_c00000{bottom:597.547067pt;}
.y17b0_c00000{bottom:597.627387pt;}
.y16dd_c00000{bottom:597.627555pt;}
.y1967_c00000{bottom:597.629907pt;}
.y21a3_c00000{bottom:597.707067pt;}
.y1855_c00000{bottom:597.708171pt;}
.y186d_c00000{bottom:597.709507pt;}
.y1603_c00000{bottom:597.787067pt;}
.y42c_c00000{bottom:597.947067pt;}
.ya63_c00000{bottom:598.107067pt;}
.y5a8_c00000{bottom:598.187067pt;}
.yebe_c00000{bottom:598.347067pt;}
.y1ecc_c00000{bottom:598.427067pt;}
.y1ef5_c00000{bottom:598.427243pt;}
.y10c0_c00000{bottom:598.507067pt;}
.y1e2_c00000{bottom:598.587067pt;}
.ya4b_c00000{bottom:598.907067pt;}
.ydd7_c00000{bottom:598.987067pt;}
.y21e0_c00000{bottom:599.065979pt;}
.y1ae1_c00000{bottom:599.147067pt;}
.y452_c00000{bottom:599.147147pt;}
.y1f38_c00000{bottom:599.147155pt;}
.y17ff_c00000{bottom:599.147467pt;}
.y2ee_c00000{bottom:599.227067pt;}
.ya6b_c00000{bottom:599.387067pt;}
.y29e_c00000{bottom:599.547067pt;}
.y1dd5_c00000{bottom:599.547200pt;}
.y19ed_c00000{bottom:599.787067pt;}
.y1547_c00000{bottom:599.867067pt;}
.y16fc_c00000{bottom:599.947067pt;}
.ye0f_c00000{bottom:600.027067pt;}
.y1fcd_c00000{bottom:600.187067pt;}
.y7a6_c00000{bottom:600.345955pt;}
.y501_c00000{bottom:600.427147pt;}
.y1aae_c00000{bottom:600.427907pt;}
.y92f_c00000{bottom:600.505827pt;}
.y557_c00000{bottom:600.507067pt;}
.y13e8_c00000{bottom:600.587067pt;}
.y16ad_c00000{bottom:600.667395pt;}
.y1b6f_c00000{bottom:600.747067pt;}
.y1ac1_c00000{bottom:600.747827pt;}
.y1f54_c00000{bottom:600.827067pt;}
.y797_c00000{bottom:600.907147pt;}
.y622_c00000{bottom:600.907987pt;}
.ya8a_c00000{bottom:600.987067pt;}
.y15db_c00000{bottom:601.067075pt;}
.y15d9_c00000{bottom:601.067243pt;}
.y10ff_c00000{bottom:601.307067pt;}
.yf0a_c00000{bottom:601.467067pt;}
.yb89_c00000{bottom:601.547067pt;}
.y1a18_c00000{bottom:601.947907pt;}
.y1305_c00000{bottom:602.267067pt;}
.yc9b_c00000{bottom:602.267147pt;}
.y7ce_c00000{bottom:602.347067pt;}
.y1347_c00000{bottom:602.427067pt;}
.y1314_c00000{bottom:602.427608pt;}
.y134c_c00000{bottom:602.428395pt;}
.y8a7_c00000{bottom:602.507067pt;}
.y1486_c00000{bottom:602.587067pt;}
.y87a_c00000{bottom:602.588067pt;}
.y85c_c00000{bottom:602.667243pt;}
.y9b6_c00000{bottom:602.747067pt;}
.y1392_c00000{bottom:602.907067pt;}
.y6b_c00000{bottom:602.911323pt;}
.yeef_c00000{bottom:602.987067pt;}
.y1952_c00000{bottom:603.067067pt;}
.y8a_c00000{bottom:603.151779pt;}
.y1a07_c00000{bottom:603.227067pt;}
.y38d_c00000{bottom:603.307067pt;}
.y1570_c00000{bottom:603.387067pt;}
.y749_c00000{bottom:603.467067pt;}
.ya18_c00000{bottom:603.547067pt;}
.y1e9e_c00000{bottom:603.947067pt;}
.y1014_c00000{bottom:603.947267pt;}
.y6a8_c00000{bottom:603.948147pt;}
.yc8a_c00000{bottom:604.107067pt;}
.y1029_c00000{bottom:604.107267pt;}
.y234_c00000{bottom:604.187067pt;}
.yea6_c00000{bottom:604.507067pt;}
.yf34_c00000{bottom:604.587067pt;}
.y15f8_c00000{bottom:604.667067pt;}
.y20fc_c00000{bottom:604.668488pt;}
.yaf1_c00000{bottom:605.067067pt;}
.y3a3_c00000{bottom:605.307067pt;}
.y175d_c00000{bottom:605.307147pt;}
.y1d84_c00000{bottom:605.308827pt;}
.y13ae_c00000{bottom:605.547067pt;}
.ybb9_c00000{bottom:605.627067pt;}
.ydfb_c00000{bottom:605.627147pt;}
.y835_c00000{bottom:605.867067pt;}
.ydb5_c00000{bottom:606.027067pt;}
.y4af_c00000{bottom:606.267067pt;}
.y13a5_c00000{bottom:606.427067pt;}
.y9da_c00000{bottom:606.587067pt;}
.yd64_c00000{bottom:606.747067pt;}
.y1b02_c00000{bottom:606.827067pt;}
.y1e0c_c00000{bottom:606.986683pt;}
.yed3_c00000{bottom:606.987067pt;}
.y1df7_c00000{bottom:606.987235pt;}
.y947_c00000{bottom:607.067747pt;}
.y14d8_c00000{bottom:607.227067pt;}
.y1e45_c00000{bottom:607.307067pt;}
.y4d2_c00000{bottom:607.387067pt;}
.y6d8_c00000{bottom:607.387200pt;}
.y2158_c00000{bottom:607.467067pt;}
.ycbf_c00000{bottom:607.547067pt;}
.y18c8_c00000{bottom:607.627427pt;}
.yfbf_c00000{bottom:607.706667pt;}
.y11f_c00000{bottom:607.707067pt;}
.y1c10_c00000{bottom:607.787067pt;}
.y1cae_c00000{bottom:607.867067pt;}
.y19c_c00000{bottom:607.947067pt;}
.y5c7_c00000{bottom:608.107067pt;}
.y116d_c00000{bottom:608.107075pt;}
.y15ab_c00000{bottom:608.107259pt;}
.y1375_c00000{bottom:608.187067pt;}
.y116f_c00000{bottom:608.267395pt;}
.y1ff8_c00000{bottom:608.347067pt;}
.y177e_c00000{bottom:608.347147pt;}
.y20dd_c00000{bottom:608.667067pt;}
.yf8_c00000{bottom:608.747067pt;}
.ya31_c00000{bottom:608.907067pt;}
.y220b_c00000{bottom:608.987067pt;}
.y1c31_c00000{bottom:609.147067pt;}
.yb0_c00000{bottom:609.227067pt;}
.yaa7_c00000{bottom:609.707067pt;}
.y171a_c00000{bottom:609.787067pt;}
.y126f_c00000{bottom:609.948587pt;}
.ycfe_c00000{bottom:610.027067pt;}
.y655_c00000{bottom:610.107067pt;}
.y123b_c00000{bottom:610.267067pt;}
.y2056_c00000{bottom:610.587067pt;}
.y36c_c00000{bottom:610.827067pt;}
.y774_c00000{bottom:610.987067pt;}
.y1fc_c00000{bottom:611.227067pt;}
.y14d_c00000{bottom:611.387067pt;}
.ye76_c00000{bottom:611.547067pt;}
.y1f5c_c00000{bottom:611.627067pt;}
.y407_c00000{bottom:611.787067pt;}
.y11b2_c00000{bottom:611.867067pt;}
.y58d_c00000{bottom:611.947067pt;}
.y1fa1_c00000{bottom:612.027147pt;}
.yc14_c00000{bottom:612.187067pt;}
.y1c5a_c00000{bottom:612.347067pt;}
.y256_c00000{bottom:612.427067pt;}
.y485_c00000{bottom:612.507067pt;}
.yf81_c00000{bottom:612.667067pt;}
.y21ce_c00000{bottom:612.747067pt;}
.yb29_c00000{bottom:612.827067pt;}
.y16dc_c00000{bottom:612.907395pt;}
.y1a60_c00000{bottom:612.987067pt;}
.y1d38_c00000{bottom:612.987227pt;}
.yf20_c00000{bottom:612.987987pt;}
.y12c2_c00000{bottom:612.988907pt;}
.y1854_c00000{bottom:613.068163pt;}
.y186c_c00000{bottom:613.069499pt;}
.y63e_c00000{bottom:613.147307pt;}
.y1d00_c00000{bottom:613.227067pt;}
.y3ce_c00000{bottom:613.307067pt;}
.y5fb_c00000{bottom:613.547067pt;}
.y17a1_c00000{bottom:613.627067pt;}
.y1ef4_c00000{bottom:613.787235pt;}
.y10bf_c00000{bottom:613.867067pt;}
.yf30_c00000{bottom:613.867315pt;}
.y11ff_c00000{bottom:614.107067pt;}
.y1664_c00000{bottom:614.267067pt;}
.y13d0_c00000{bottom:614.347067pt;}
.y1b3a_c00000{bottom:614.507067pt;}
.yb88_c00000{bottom:614.507307pt;}
.y1966_c00000{bottom:614.509827pt;}
.y213a_c00000{bottom:614.667067pt;}
.y1de0_c00000{bottom:614.667443pt;}
.yc59_c00000{bottom:614.747067pt;}
.y8ff_c00000{bottom:614.827067pt;}
.ye54_c00000{bottom:614.987067pt;}
.y787_c00000{bottom:615.067067pt;}
.y176_c00000{bottom:615.147067pt;}
.y1d0f_c00000{bottom:615.227067pt;}
.y1498_c00000{bottom:615.386811pt;}
.y106d_c00000{bottom:615.387067pt;}
.yb64_c00000{bottom:615.547067pt;}
.ye8b_c00000{bottom:615.627067pt;}
.y1829_c00000{bottom:615.707067pt;}
.y451_c00000{bottom:616.027067pt;}
.y17fe_c00000{bottom:616.027387pt;}
.y16ac_c00000{bottom:616.027555pt;}
.y1951_c00000{bottom:616.028147pt;}
.y203e_c00000{bottom:616.107067pt;}
.y158d_c00000{bottom:616.187067pt;}
.yd99_c00000{bottom:616.347067pt;}
.y8ec_c00000{bottom:616.427067pt;}
.y15d8_c00000{bottom:616.427235pt;}
.y167f_c00000{bottom:616.507067pt;}
.y521_c00000{bottom:616.587067pt;}
.y719_c00000{bottom:616.587200pt;}
.y10fe_c00000{bottom:616.667067pt;}
.y21df_c00000{bottom:616.746603pt;}
.y2090_c00000{bottom:616.747067pt;}
.y85b_c00000{bottom:616.747155pt;}
.yf86_c00000{bottom:617.067067pt;}
.y500_c00000{bottom:617.307067pt;}
.y1aad_c00000{bottom:617.307827pt;}
.y19ec_c00000{bottom:617.387067pt;}
.y1304_c00000{bottom:617.547067pt;}
.y1313_c00000{bottom:617.547120pt;}
.y1ac0_c00000{bottom:617.547227pt;}
.y134b_c00000{bottom:617.547907pt;}
.y124f_c00000{bottom:617.548987pt;}
.y1fcc_c00000{bottom:617.627067pt;}
.y1346_c00000{bottom:617.707067pt;}
.y796_c00000{bottom:617.787067pt;}
.y1e9d_c00000{bottom:617.787251pt;}
.y621_c00000{bottom:617.787907pt;}
.y1a73_c00000{bottom:617.867067pt;}
.yd2_c00000{bottom:617.947067pt;}
.y107a_c00000{bottom:618.427067pt;}
.y81b_c00000{bottom:618.667067pt;}
.y19bc_c00000{bottom:618.827067pt;}
.y1a17_c00000{bottom:618.827827pt;}
.y1546_c00000{bottom:618.987067pt;}
.yc9a_c00000{bottom:619.147067pt;}
.y1e00_c00000{bottom:619.226667pt;}
.y1013_c00000{bottom:619.307259pt;}
.y857_c00000{bottom:619.387067pt;}
.ye22_c00000{bottom:619.467067pt;}
.y1028_c00000{bottom:619.467259pt;}
.y879_c00000{bottom:619.467987pt;}
.y14d7_c00000{bottom:619.547067pt;}
.y1c7b_c00000{bottom:619.627067pt;}
.y7a5_c00000{bottom:619.786411pt;}
.y1e1_c00000{bottom:619.787067pt;}
.yd1f_c00000{bottom:619.867067pt;}
.y92e_c00000{bottom:619.946283pt;}
.y1b88_c00000{bottom:620.667067pt;}
.y1607_c00000{bottom:620.747067pt;}
.y6a7_c00000{bottom:620.828067pt;}
.y38c_c00000{bottom:620.987067pt;}
.y1d6a_c00000{bottom:621.067067pt;}
.y748_c00000{bottom:621.147067pt;}
.yaf0_c00000{bottom:621.387067pt;}
.yfbe_c00000{bottom:621.467067pt;}
.y4ae_c00000{bottom:621.627067pt;}
.ya62_c00000{bottom:621.707067pt;}
.y1e7c_c00000{bottom:621.708235pt;}
.y1b01_c00000{bottom:622.107067pt;}
.y3a2_c00000{bottom:622.187067pt;}
.y1d83_c00000{bottom:622.188747pt;}
.y1e0b_c00000{bottom:622.266515pt;}
.y1df6_c00000{bottom:622.267067pt;}
.y3ef_c00000{bottom:622.507067pt;}
.y1e44_c00000{bottom:622.667067pt;}
.y99b_c00000{bottom:622.747067pt;}
.y1387_c00000{bottom:622.827315pt;}
.y18c7_c00000{bottom:622.907259pt;}
.y1f76_c00000{bottom:622.987067pt;}
.y31c_c00000{bottom:623.067067pt;}
.y20fb_c00000{bottom:623.068240pt;}
.y33a_c00000{bottom:623.147067pt;}
.y1cad_c00000{bottom:623.227067pt;}
.y116c_c00000{bottom:623.467067pt;}
.y15aa_c00000{bottom:623.467251pt;}
.yd7f_c00000{bottom:623.707067pt;}
.y946_c00000{bottom:623.947667pt;}
.yd32_c00000{bottom:624.027067pt;}
.y5dc_c00000{bottom:624.267067pt;}
.yd63_c00000{bottom:624.427067pt;}
.y1990_c00000{bottom:624.427200pt;}
.y6a_c00000{bottom:624.431203pt;}
.y143d_c00000{bottom:624.507067pt;}
.y89_c00000{bottom:624.671659pt;}
.y7cd_c00000{bottom:624.827067pt;}
.y8cb_c00000{bottom:625.147067pt;}
.y1dbb_c00000{bottom:625.227067pt;}
.y233_c00000{bottom:625.307067pt;}
.y42b_c00000{bottom:625.547067pt;}
.y633_c00000{bottom:625.627067pt;}
.y5a7_c00000{bottom:625.787067pt;}
.yebd_c00000{bottom:625.947067pt;}
.yfd0_c00000{bottom:626.108163pt;}
.y220a_c00000{bottom:626.267067pt;}
.ydd6_c00000{bottom:626.507067pt;}
.y36_c00000{bottom:626.666667pt;}
.y17e6_c00000{bottom:626.747067pt;}
.y126e_c00000{bottom:626.747987pt;}
.y2ed_c00000{bottom:626.827067pt;}
.y1f5b_c00000{bottom:626.907067pt;}
.y654_c00000{bottom:626.987067pt;}
.y29d_c00000{bottom:627.147067pt;}
.y1dd4_c00000{bottom:627.147200pt;}
.y11b3_c00000{bottom:627.307067pt;}
.y1497_c00000{bottom:627.627067pt;}
.y1a06_c00000{bottom:627.787067pt;}
.yf80_c00000{bottom:627.867067pt;}
.ya30_c00000{bottom:628.027067pt;}
.y556_c00000{bottom:628.107067pt;}
.y13ad_c00000{bottom:628.187067pt;}
.y16db_c00000{bottom:628.267395pt;}
.y1b63_c00000{bottom:628.347067pt;}
.y1719_c00000{bottom:628.427067pt;}
.y1853_c00000{bottom:628.428155pt;}
.y186b_c00000{bottom:628.429491pt;}
.y1880_c00000{bottom:628.430827pt;}
.y406_c00000{bottom:628.587067pt;}
.y6ec_c00000{bottom:628.667067pt;}
.ycfd_c00000{bottom:628.667075pt;}
.y1ddf_c00000{bottom:628.747355pt;}
.yf09_c00000{bottom:628.827067pt;}
.y11e_c00000{bottom:628.907067pt;}
.y20dc_c00000{bottom:628.987067pt;}
.y1929_c00000{bottom:629.067067pt;}
.y19b_c00000{bottom:629.147067pt;}
.y11d8_c00000{bottom:629.387067pt;}
.y2139_c00000{bottom:629.467067pt;}
.y1663_c00000{bottom:629.627067pt;}
.y10be_c00000{bottom:629.867067pt;}
.y1d37_c00000{bottom:629.867147pt;}
.yf1f_c00000{bottom:629.867907pt;}
.y12c1_c00000{bottom:629.868827pt;}
.y1592_c00000{bottom:629.947067pt;}
.y2157_c00000{bottom:629.947200pt;}
.y63d_c00000{bottom:630.027227pt;}
.y8a6_c00000{bottom:630.107067pt;}
.y1a35_c00000{bottom:630.187067pt;}
.y9b5_c00000{bottom:630.347067pt;}
.y1ecb_c00000{bottom:630.427443pt;}
.yeee_c00000{bottom:630.587067pt;}
.y255_c00000{bottom:630.827067pt;}
.y73e_c00000{bottom:630.907067pt;}
.ya17_c00000{bottom:630.987067pt;}
.y16ab_c00000{bottom:631.147075pt;}
.y1c0f_c00000{bottom:631.307067pt;}
.yb87_c00000{bottom:631.387227pt;}
.y1965_c00000{bottom:631.389747pt;}
.y46_c00000{bottom:631.467067pt;}
.yc89_c00000{bottom:631.547067pt;}
.y15dc_c00000{bottom:631.706899pt;}
.yaf_c00000{bottom:631.707067pt;}
.y1c7a_c00000{bottom:631.867067pt;}
.yea5_c00000{bottom:632.107067pt;}
.y1079_c00000{bottom:632.187067pt;}
.yf2f_c00000{bottom:632.267067pt;}
.y1632_c00000{bottom:632.347067pt;}
.y1fb_c00000{bottom:632.427067pt;}
.y14c_c00000{bottom:632.587067pt;}
.y10fd_c00000{bottom:632.827067pt;}
.y17fd_c00000{bottom:632.907307pt;}
.y1950_c00000{bottom:632.908067pt;}
.y1345_c00000{bottom:633.067067pt;}
.y1e9c_c00000{bottom:633.067083pt;}
.y134a_c00000{bottom:633.068219pt;}
.yad0_c00000{bottom:633.227067pt;}
.y1c33_c00000{bottom:633.307067pt;}
.y4ff_c00000{bottom:633.467067pt;}
.y16f4_c00000{bottom:633.627067pt;}
.y12ff_c00000{bottom:633.707067pt;}
.ye75_c00000{bottom:634.027067pt;}
.y20c8_c00000{bottom:634.027200pt;}
.y1aac_c00000{bottom:634.107227pt;}
.y9d9_c00000{bottom:634.187067pt;}
.y21b4_c00000{bottom:634.267067pt;}
.y21dd_c00000{bottom:634.347067pt;}
.y1cff_c00000{bottom:634.427067pt;}
.y1abf_c00000{bottom:634.427147pt;}
.y124e_c00000{bottom:634.428907pt;}
.ycd7_c00000{bottom:634.587067pt;}
.y2d_c00000{bottom:634.666667pt;}
.y1c59_c00000{bottom:634.667067pt;}
.y1012_c00000{bottom:634.667251pt;}
.y620_c00000{bottom:634.667827pt;}
.y1027_c00000{bottom:634.827251pt;}
.y484_c00000{bottom:634.987067pt;}
.y5c3_c00000{bottom:634.987200pt;}
.ycbe_c00000{bottom:635.147067pt;}
.y99_c00000{bottom:635.151067pt;}
.y1fcb_c00000{bottom:635.227067pt;}
.yfbd_c00000{bottom:635.306667pt;}
.y1a16_c00000{bottom:635.707747pt;}
.y1374_c00000{bottom:635.787067pt;}
.y1ff7_c00000{bottom:635.947067pt;}
.y1511_c00000{bottom:636.187067pt;}
.ya2f_c00000{bottom:636.188067pt;}
.yf7_c00000{bottom:636.347067pt;}
.y878_c00000{bottom:636.347907pt;}
.y18ff_c00000{bottom:636.747227pt;}
.y4ad_c00000{bottom:636.907067pt;}
.yc99_c00000{bottom:637.067067pt;}
.y1bee_c00000{bottom:637.386811pt;}
.yaef_c00000{bottom:637.707067pt;}
.y6a6_c00000{bottom:637.707987pt;}
.y6eb_c00000{bottom:637.867067pt;}
.y1545_c00000{bottom:638.027067pt;}
.y1485_c00000{bottom:638.267067pt;}
.y18c6_c00000{bottom:638.267251pt;}
.y450_c00000{bottom:638.347067pt;}
.y36b_c00000{bottom:638.427067pt;}
.y1cac_c00000{bottom:638.507067pt;}
.yed2_c00000{bottom:638.747067pt;}
.y15a9_c00000{bottom:638.827243pt;}
.y1a72_c00000{bottom:638.987067pt;}
.y3a1_c00000{bottom:639.067067pt;}
.y1d82_c00000{bottom:639.068667pt;}
.y7a4_c00000{bottom:639.146347pt;}
.y1828_c00000{bottom:639.227067pt;}
.y92d_c00000{bottom:639.306219pt;}
.y1214_c00000{bottom:639.387067pt;}
.y1169_c00000{bottom:639.467243pt;}
.y58c_c00000{bottom:639.547067pt;}
.y116b_c00000{bottom:639.627563pt;}
.y20b1_c00000{bottom:639.787067pt;}
.y7f5_c00000{bottom:639.867067pt;}
.y1dba_c00000{bottom:640.027067pt;}
.y795_c00000{bottom:640.107067pt;}
.y8eb_c00000{bottom:640.107315pt;}
.y177d_c00000{bottom:640.107355pt;}
.y21cd_c00000{bottom:640.347067pt;}
.yb28_c00000{bottom:640.427067pt;}
.y1496_c00000{bottom:640.586755pt;}
.y1a5f_c00000{bottom:640.587067pt;}
.y945_c00000{bottom:640.747067pt;}
.y1e0_c00000{bottom:640.907067pt;}
.y5fa_c00000{bottom:641.147067pt;}
.y1386_c00000{bottom:641.227067pt;}
.y19bb_c00000{bottom:641.307067pt;}
.ycfc_c00000{bottom:641.387067pt;}
.yf33_c00000{bottom:641.467067pt;}
.y1931_c00000{bottom:641.467315pt;}
.y20fa_c00000{bottom:641.467992pt;}
.yfcf_c00000{bottom:641.628475pt;}
.y11fe_c00000{bottom:641.707067pt;}
.y1b26_c00000{bottom:641.787067pt;}
.y1b9e_c00000{bottom:641.867067pt;}
.y13cf_c00000{bottom:641.947067pt;}
.y1b39_c00000{bottom:642.107067pt;}
.y1f5a_c00000{bottom:642.267067pt;}
.yc58_c00000{bottom:642.347067pt;}
.ya89_c00000{bottom:642.427067pt;}
.y11b1_c00000{bottom:642.507067pt;}
.y1662_c00000{bottom:642.587067pt;}
.y786_c00000{bottom:642.667067pt;}
.y1d55_c00000{bottom:642.747067pt;}
.y1dde_c00000{bottom:642.907067pt;}
.y106c_c00000{bottom:642.987067pt;}
.yf7f_c00000{bottom:643.147067pt;}
.ye8a_c00000{bottom:643.227067pt;}
.y112d_c00000{bottom:643.307067pt;}
.y1d69_c00000{bottom:643.547067pt;}
.y16da_c00000{bottom:643.627555pt;}
.y126d_c00000{bottom:643.627907pt;}
.y17e5_c00000{bottom:643.628227pt;}
.y1852_c00000{bottom:643.707987pt;}
.y186a_c00000{bottom:643.709323pt;}
.y187f_c00000{bottom:643.710659pt;}
.y1890_c00000{bottom:643.711995pt;}
.y653_c00000{bottom:643.867067pt;}
.y178f_c00000{bottom:643.947067pt;}
.y167e_c00000{bottom:644.107067pt;}
.y520_c00000{bottom:644.187067pt;}
.y718_c00000{bottom:644.187200pt;}
.y208f_c00000{bottom:644.347067pt;}
.y232_c00000{bottom:644.507243pt;}
.yf85_c00000{bottom:644.667067pt;}
.y14d6_c00000{bottom:644.747067pt;}
.y16fb_c00000{bottom:644.827067pt;}
.y1ef3_c00000{bottom:644.907067pt;}
.y1c79_c00000{bottom:645.067067pt;}
.y1631_c00000{bottom:645.227067pt;}
.y10bd_c00000{bottom:645.307067pt;}
.y405_c00000{bottom:645.467067pt;}
.yd1_c00000{bottom:645.547067pt;}
.y1eca_c00000{bottom:645.787435pt;}
.y69_c00000{bottom:645.870931pt;}
.y1078_c00000{bottom:646.027067pt;}
.y88_c00000{bottom:646.111387pt;}
.y177c_c00000{bottom:646.267067pt;}
.y1fa0_c00000{bottom:646.347067pt;}
.y4fe_c00000{bottom:646.427307pt;}
.y280_c00000{bottom:646.507067pt;}
.y16aa_c00000{bottom:646.507075pt;}
.y20db_c00000{bottom:646.667067pt;}
.y1d36_c00000{bottom:646.747067pt;}
.yf1e_c00000{bottom:646.747827pt;}
.y12c0_c00000{bottom:646.748747pt;}
.y1f53_c00000{bottom:646.827067pt;}
.y63c_c00000{bottom:646.907147pt;}
.ya9d_c00000{bottom:646.987067pt;}
.ye21_c00000{bottom:647.067067pt;}
.yd1e_c00000{bottom:647.467067pt;}
.y5db_c00000{bottom:647.787067pt;}
.y10fc_c00000{bottom:648.107067pt;}
.y19a_c00000{bottom:648.267067pt;}
.yb86_c00000{bottom:648.267147pt;}
.y1db9_c00000{bottom:648.267987pt;}
.y1964_c00000{bottom:648.269667pt;}
.y1344_c00000{bottom:648.427067pt;}
.y1e9b_c00000{bottom:648.427075pt;}
.y1349_c00000{bottom:648.428211pt;}
.y38b_c00000{bottom:648.587067pt;}
.y747_c00000{bottom:648.747067pt;}
.yfbc_c00000{bottom:649.067067pt;}
.y632_c00000{bottom:649.067315pt;}
.y254_c00000{bottom:649.227067pt;}
.yebc_c00000{bottom:649.467067pt;}
.y1bed_c00000{bottom:649.627067pt;}
.y1ae0_c00000{bottom:649.707067pt;}
.y17fc_c00000{bottom:649.787227pt;}
.y194f_c00000{bottom:649.787987pt;}
.y1011_c00000{bottom:649.947083pt;}
.y11d_c00000{bottom:650.027067pt;}
.y3ee_c00000{bottom:650.107067pt;}
.y1026_c00000{bottom:650.107083pt;}
.y1c32_c00000{bottom:650.187067pt;}
.y2185_c00000{bottom:650.267067pt;}
.y99a_c00000{bottom:650.347067pt;}
.y1f75_c00000{bottom:650.587067pt;}
.y1526_c00000{bottom:650.667067pt;}
.y339_c00000{bottom:650.747067pt;}
.y1aab_c00000{bottom:650.987147pt;}
.yd7e_c00000{bottom:651.227067pt;}
.y1abe_c00000{bottom:651.307067pt;}
.y124d_c00000{bottom:651.308827pt;}
.y61f_c00000{bottom:651.547747pt;}
.yd31_c00000{bottom:651.627067pt;}
.y986_c00000{bottom:651.867067pt;}
.y21b3_c00000{bottom:651.947067pt;}
.y21de_c00000{bottom:651.947531pt;}
.yd62_c00000{bottom:652.027067pt;}
.y198f_c00000{bottom:652.027200pt;}
.y1fca_c00000{bottom:652.107067pt;}
.y4ac_c00000{bottom:652.267067pt;}
.y7cc_c00000{bottom:652.427067pt;}
.y1746_c00000{bottom:652.507067pt;}
.y1a15_c00000{bottom:652.507147pt;}
.y19eb_c00000{bottom:652.667067pt;}
.y8ca_c00000{bottom:652.747067pt;}
.y1495_c00000{bottom:652.827011pt;}
.y10b3_c00000{bottom:652.827067pt;}
.ya2e_c00000{bottom:653.067987pt;}
.y42a_c00000{bottom:653.147067pt;}
.y877_c00000{bottom:653.227827pt;}
.y1e43_c00000{bottom:653.307067pt;}
.y5a6_c00000{bottom:653.387067pt;}
.y1b8_c00000{bottom:653.547067pt;}
.y18fe_c00000{bottom:653.627147pt;}
.y18c5_c00000{bottom:653.627243pt;}
.y14b_c00000{bottom:653.707067pt;}
.ya75_c00000{bottom:653.867067pt;}
.yaee_c00000{bottom:653.947067pt;}
.yac1_c00000{bottom:654.107067pt;}
.y15a8_c00000{bottom:654.107075pt;}
.y2ec_c00000{bottom:654.267067pt;}
.y156f_c00000{bottom:654.427067pt;}
.ybb8_c00000{bottom:654.507067pt;}
.y1b00_c00000{bottom:654.587067pt;}
.y6a5_c00000{bottom:654.587907pt;}
.y29c_c00000{bottom:654.747067pt;}
.y1168_c00000{bottom:654.747075pt;}
.y1dd3_c00000{bottom:654.747200pt;}
.y1a05_c00000{bottom:654.907067pt;}
.y116a_c00000{bottom:654.907395pt;}
.y1b25_c00000{bottom:655.147067pt;}
.y143c_c00000{bottom:655.227067pt;}
.yc88_c00000{bottom:655.227315pt;}
.y1661_c00000{bottom:655.547067pt;}
.y1e7b_c00000{bottom:655.627651pt;}
.y555_c00000{bottom:655.707067pt;}
.y13e7_c00000{bottom:655.787067pt;}
.y3a0_c00000{bottom:655.947067pt;}
.y1d81_c00000{bottom:655.948587pt;}
.y1df1_c00000{bottom:656.027067pt;}
.y1dec_c00000{bottom:656.027419pt;}
.y1928_c00000{bottom:656.667067pt;}
.y106b_c00000{bottom:656.747067pt;}
.yfce_c00000{bottom:656.908307pt;}
.y13ac_c00000{bottom:656.987067pt;}
.y1544_c00000{bottom:657.067067pt;}
.y1c58_c00000{bottom:657.147067pt;}
.y175_c00000{bottom:657.467067pt;}
.y2156_c00000{bottom:657.547200pt;}
.y14d5_c00000{bottom:657.627067pt;}
.y8a5_c00000{bottom:657.707067pt;}
.y1a34_c00000{bottom:657.787067pt;}
.y11b0_c00000{bottom:657.867067pt;}
.y9b4_c00000{bottom:657.947067pt;}
.y6ea_c00000{bottom:657.947200pt;}
.ydfa_c00000{bottom:658.107067pt;}
.y1630_c00000{bottom:658.187067pt;}
.y2138_c00000{bottom:658.347067pt;}
.y7a3_c00000{bottom:658.506283pt;}
.y8ea_c00000{bottom:658.507067pt;}
.y231_c00000{bottom:658.587155pt;}
.y112c_c00000{bottom:658.667067pt;}
.y92c_c00000{bottom:658.746675pt;}
.y16d9_c00000{bottom:658.907395pt;}
.y1851_c00000{bottom:659.067979pt;}
.y1869_c00000{bottom:659.069315pt;}
.y187e_c00000{bottom:659.070651pt;}
.y188f_c00000{bottom:659.071987pt;}
.y2070_c00000{bottom:659.147067pt;}
.yae_c00000{bottom:659.307067pt;}
.y2055_c00000{bottom:659.467067pt;}
.yea4_c00000{bottom:659.707067pt;}
.y1077_c00000{bottom:659.787067pt;}
.y2c8_c00000{bottom:659.867067pt;}
.y20f9_c00000{bottom:659.867744pt;}
.yed1_c00000{bottom:659.947067pt;}
.y1c0e_c00000{bottom:660.027067pt;}
.ycfb_c00000{bottom:660.027235pt;}
.y1a71_c00000{bottom:660.187067pt;}
.y1827_c00000{bottom:660.188147pt;}
.y126c_c00000{bottom:660.507827pt;}
.y17e4_c00000{bottom:660.508147pt;}
.y10bc_c00000{bottom:660.667067pt;}
.y652_c00000{bottom:660.747067pt;}
.y5da_c00000{bottom:660.748907pt;}
.y44f_c00000{bottom:660.827067pt;}
.y1363_c00000{bottom:660.987067pt;}
.y773_c00000{bottom:661.067067pt;}
.y1ec9_c00000{bottom:661.067267pt;}
.y1ef2_c00000{bottom:661.067435pt;}
.y16f3_c00000{bottom:661.227067pt;}
.yd98_c00000{bottom:661.307067pt;}
.y1510_c00000{bottom:661.387067pt;}
.ye74_c00000{bottom:661.627067pt;}
.y20c7_c00000{bottom:661.627200pt;}
.y9d8_c00000{bottom:661.787067pt;}
.y16a9_c00000{bottom:661.867235pt;}
.y1f52_c00000{bottom:662.187067pt;}
.y1df_c00000{bottom:662.267067pt;}
.ye53_c00000{bottom:662.347067pt;}
.y21a2_c00000{bottom:662.507067pt;}
.y483_c00000{bottom:662.587067pt;}
.y5c2_c00000{bottom:662.587200pt;}
.ycbd_c00000{bottom:662.747067pt;}
.yfbb_c00000{bottom:662.906667pt;}
.y1bec_c00000{bottom:663.067067pt;}
.y1c78_c00000{bottom:663.227067pt;}
.y20b0_c00000{bottom:663.307067pt;}
.y4fd_c00000{bottom:663.307227pt;}
.y45_c00000{bottom:663.387067pt;}
.y10fb_c00000{bottom:663.467067pt;}
.y1343_c00000{bottom:663.547067pt;}
.yf1d_c00000{bottom:663.547227pt;}
.y1348_c00000{bottom:663.547723pt;}
.y12bf_c00000{bottom:663.548147pt;}
.y1718_c00000{bottom:663.627067pt;}
.y1a04_c00000{bottom:663.707067pt;}
.y63b_c00000{bottom:663.787067pt;}
.y158c_c00000{bottom:663.867067pt;}
.yf6_c00000{bottom:663.947067pt;}
.y1f9f_c00000{bottom:663.947387pt;}
.y12fe_c00000{bottom:664.427067pt;}
.y199_c00000{bottom:664.587067pt;}
.y1d35_c00000{bottom:664.667067pt;}
.yaa6_c00000{bottom:664.907067pt;}
.y1494_c00000{bottom:665.147067pt;}
.y1db8_c00000{bottom:665.147907pt;}
.y1963_c00000{bottom:665.149587pt;}
.y1010_c00000{bottom:665.307075pt;}
.y123a_c00000{bottom:665.467067pt;}
.y1025_c00000{bottom:665.467075pt;}
.y1e41_c00000{bottom:665.787067pt;}
.y36a_c00000{bottom:666.027067pt;}
.ya16_c00000{bottom:666.187067pt;}
.y10b2_c00000{bottom:666.587067pt;}
.y17fb_c00000{bottom:666.667147pt;}
.y194e_c00000{bottom:666.667907pt;}
.y1213_c00000{bottom:666.987067pt;}
.yeed_c00000{bottom:667.067747pt;}
.y58b_c00000{bottom:667.147067pt;}
.y1d0e_c00000{bottom:667.227315pt;}
.y68_c00000{bottom:667.310659pt;}
.y631_c00000{bottom:667.467067pt;}
.y87_c00000{bottom:667.551115pt;}
.y253_c00000{bottom:667.627067pt;}
.y9bd_c00000{bottom:667.707067pt;}
.y746_c00000{bottom:667.867067pt;}
.y1443_c00000{bottom:668.027067pt;}
.y1a5e_c00000{bottom:668.187067pt;}
.y124c_c00000{bottom:668.188747pt;}
.yba3_c00000{bottom:668.347067pt;}
.y61e_c00000{bottom:668.347147pt;}
.y1606_c00000{bottom:668.427067pt;}
.y3cd_c00000{bottom:668.507067pt;}
.y1e42_c00000{bottom:668.667067pt;}
.y5f9_c00000{bottom:668.747067pt;}
.y19ba_c00000{bottom:668.907067pt;}
.y18c4_c00000{bottom:668.907075pt;}
.y1fc9_c00000{bottom:668.987067pt;}
.y2c1_c00000{bottom:669.067067pt;}
.y2097_c00000{bottom:669.067315pt;}
.y1abd_c00000{bottom:669.227067pt;}
.yaed_c00000{bottom:669.307067pt;}
.y1745_c00000{bottom:669.387067pt;}
.y15a7_c00000{bottom:669.467067pt;}
.y13ce_c00000{bottom:669.547067pt;}
.y1b38_c00000{bottom:669.707067pt;}
.yc57_c00000{bottom:669.947067pt;}
.ya2d_c00000{bottom:669.947907pt;}
.y128b_c00000{bottom:670.027067pt;}
.y876_c00000{bottom:670.027227pt;}
.y1167_c00000{bottom:670.107067pt;}
.y21dc_c00000{bottom:670.265731pt;}
.y785_c00000{bottom:670.267067pt;}
.y143b_c00000{bottom:670.507067pt;}
.ye89_c00000{bottom:670.587067pt;}
.y162f_c00000{bottom:671.147067pt;}
.y11c_c00000{bottom:671.227067pt;}
.y1df5_c00000{bottom:671.387059pt;}
.y1409_c00000{bottom:671.387067pt;}
.y1deb_c00000{bottom:671.387411pt;}
.y6a4_c00000{bottom:671.467827pt;}
.yad3_c00000{bottom:671.467987pt;}
.yd7d_c00000{bottom:671.547067pt;}
.y167d_c00000{bottom:671.707067pt;}
.y51f_c00000{bottom:671.787067pt;}
.y717_c00000{bottom:671.787200pt;}
.y208e_c00000{bottom:671.947067pt;}
.yebb_c00000{bottom:671.947200pt;}
.y1b17_c00000{bottom:672.107067pt;}
.yfcd_c00000{bottom:672.268299pt;}
.y2137_c00000{bottom:672.427067pt;}
.y230_c00000{bottom:672.667067pt;}
.y1bc8_c00000{bottom:672.747067pt;}
.y1d80_c00000{bottom:672.747987pt;}
.y1f59_c00000{bottom:672.907067pt;}
.yd0_c00000{bottom:673.147067pt;}
.y1b24_c00000{bottom:673.547067pt;}
.yc87_c00000{bottom:673.627067pt;}
.y39f_c00000{bottom:673.867067pt;}
.y112b_c00000{bottom:674.027067pt;}
.yb27_c00000{bottom:674.267067pt;}
.y16d8_c00000{bottom:674.267395pt;}
.yd97_c00000{bottom:674.347067pt;}
.y1850_c00000{bottom:674.427971pt;}
.y1868_c00000{bottom:674.429307pt;}
.y187d_c00000{bottom:674.430643pt;}
.y188e_c00000{bottom:674.431979pt;}
.y11d7_c00000{bottom:674.507067pt;}
.y21_c00000{bottom:674.666667pt;}
.ybb7_c00000{bottom:674.667067pt;}
.y14a_c00000{bottom:674.907067pt;}
.yd1d_c00000{bottom:675.067067pt;}
.yd30_c00000{bottom:675.147067pt;}
.y1c0d_c00000{bottom:675.307067pt;}
.yc13_c00000{bottom:675.387067pt;}
.y2054_c00000{bottom:675.707067pt;}
.y1b87_c00000{bottom:675.867067pt;}
.ydb4_c00000{bottom:675.947067pt;}
.y10bb_c00000{bottom:676.027067pt;}
.y38a_c00000{bottom:676.187067pt;}
.y1362_c00000{bottom:676.267067pt;}
.ya74_c00000{bottom:676.347067pt;}
.y1ec8_c00000{bottom:676.427259pt;}
.y1ef1_c00000{bottom:676.427427pt;}
.yfba_c00000{bottom:676.667067pt;}
.y1c77_c00000{bottom:676.667971pt;}
.y1cfe_c00000{bottom:676.747067pt;}
.y5a5_c00000{bottom:676.907067pt;}
.y1740_c00000{bottom:677.067067pt;}
.y1826_c00000{bottom:677.068067pt;}
.y16a8_c00000{bottom:677.147067pt;}
.y21a1_c00000{bottom:677.227067pt;}
.y2031_c00000{bottom:677.307067pt;}
.y126b_c00000{bottom:677.387747pt;}
.y17e3_c00000{bottom:677.388067pt;}
.y651_c00000{bottom:677.547067pt;}
.y5d9_c00000{bottom:677.548307pt;}
.y3ed_c00000{bottom:677.707067pt;}
.y2184_c00000{bottom:677.867067pt;}
.y7a2_c00000{bottom:677.946739pt;}
.y999_c00000{bottom:677.947067pt;}
.y2eb_c00000{bottom:677.947315pt;}
.y1493_c00000{bottom:678.027011pt;}
.y404_c00000{bottom:678.027067pt;}
.y92b_c00000{bottom:678.106611pt;}
.y326_c00000{bottom:678.267067pt;}
.y20f8_c00000{bottom:678.267496pt;}
.y338_c00000{bottom:678.347067pt;}
.y1beb_c00000{bottom:678.427067pt;}
.y174_c00000{bottom:678.507067pt;}
.y10fa_c00000{bottom:678.667067pt;}
.y21d8_c00000{bottom:678.907067pt;}
.y1ad2_c00000{bottom:679.307067pt;}
.y209e_c00000{bottom:679.387067pt;}
.y985_c00000{bottom:679.467067pt;}
.yd61_c00000{bottom:679.627067pt;}
.y198e_c00000{bottom:679.627200pt;}
.y12fd_c00000{bottom:679.707067pt;}
.y1470_c00000{bottom:679.867067pt;}
.yb85_c00000{bottom:679.947067pt;}
.y7cb_c00000{bottom:680.027067pt;}
.y4fc_c00000{bottom:680.187147pt;}
.y8c9_c00000{bottom:680.347067pt;}
.y10b1_c00000{bottom:680.427067pt;}
.yf1c_c00000{bottom:680.427147pt;}
.y12be_c00000{bottom:680.428067pt;}
.y100f_c00000{bottom:680.667067pt;}
.yb26_c00000{bottom:680.667747pt;}
.y429_c00000{bottom:680.747067pt;}
.y1024_c00000{bottom:680.827067pt;}
.y1f9e_c00000{bottom:680.827307pt;}
.y5c6_c00000{bottom:680.987067pt;}
.yed0_c00000{bottom:681.067067pt;}
.y18e5_c00000{bottom:681.147067pt;}
.y1a70_c00000{bottom:681.307067pt;}
.y1660_c00000{bottom:681.387067pt;}
.y9f0_c00000{bottom:681.467067pt;}
.yac7_c00000{bottom:681.707067pt;}
.y1db7_c00000{bottom:681.947307pt;}
.y1962_c00000{bottom:681.948987pt;}
.y1717_c00000{bottom:682.267067pt;}
.y29b_c00000{bottom:682.347067pt;}
.y1dd2_c00000{bottom:682.347200pt;}
.y1e40_c00000{bottom:682.667067pt;}
.y14d4_c00000{bottom:682.827067pt;}
.y4ab_c00000{bottom:682.907067pt;}
.y20b7_c00000{bottom:683.067067pt;}
.y554_c00000{bottom:683.307067pt;}
.y1de_c00000{bottom:683.387067pt;}
.y17fa_c00000{bottom:683.547067pt;}
.y194d_c00000{bottom:683.547827pt;}
.ya88_c00000{bottom:683.787067pt;}
.yeec_c00000{bottom:683.867147pt;}
.y162e_c00000{bottom:684.027067pt;}
.y18c3_c00000{bottom:684.267067pt;}
.y106a_c00000{bottom:684.347067pt;}
.y15d7_c00000{bottom:684.427067pt;}
.y960_c00000{bottom:684.507067pt;}
.y1c30_c00000{bottom:684.587067pt;}
.yaec_c00000{bottom:684.667067pt;}
.y1c57_c00000{bottom:684.747067pt;}
.y15a6_c00000{bottom:684.827563pt;}
.y403_c00000{bottom:685.067067pt;}
.y124b_c00000{bottom:685.068667pt;}
.y2155_c00000{bottom:685.147200pt;}
.y61d_c00000{bottom:685.227067pt;}
.y8a4_c00000{bottom:685.307067pt;}
.y1cc6_c00000{bottom:685.387067pt;}
.y745_c00000{bottom:685.547067pt;}
.y6e9_c00000{bottom:685.547200pt;}
.y1d0d_c00000{bottom:685.627067pt;}
.ydf9_c00000{bottom:685.707067pt;}
.y1aaa_c00000{bottom:685.787067pt;}
.y143a_c00000{bottom:685.867067pt;}
.y1442_c00000{bottom:685.867368pt;}
.y1f1b_c00000{bottom:685.947067pt;}
.y252_c00000{bottom:686.027067pt;}
.y4d1_c00000{bottom:686.107067pt;}
.y1163_c00000{bottom:686.107251pt;}
.y1744_c00000{bottom:686.267067pt;}
.y1166_c00000{bottom:686.267571pt;}
.ya15_c00000{bottom:686.347067pt;}
.y1fc8_c00000{bottom:686.427067pt;}
.y150f_c00000{bottom:686.587067pt;}
.y1df4_c00000{bottom:686.666891pt;}
.y1df0_c00000{bottom:686.667067pt;}
.y1dea_c00000{bottom:686.667243pt;}
.ya2c_c00000{bottom:686.747307pt;}
.y1391_c00000{bottom:686.827067pt;}
.yad_c00000{bottom:686.907067pt;}
.y875_c00000{bottom:686.907147pt;}
.y21b2_c00000{bottom:687.147200pt;}
.y2135_c00000{bottom:687.227067pt;}
.yea3_c00000{bottom:687.307067pt;}
.y1076_c00000{bottom:687.387067pt;}
.yc6d_c00000{bottom:687.467067pt;}
.yfcc_c00000{bottom:687.628291pt;}
.y21db_c00000{bottom:687.866195pt;}
.y44_c00000{bottom:687.867067pt;}
.y18fd_c00000{bottom:687.947067pt;}
.y1f58_c00000{bottom:688.267067pt;}
.y6a3_c00000{bottom:688.347747pt;}
.yad2_c00000{bottom:688.347907pt;}
.y784_c00000{bottom:688.348667pt;}
.y44e_c00000{bottom:688.427067pt;}
.y1b9d_c00000{bottom:688.587067pt;}
.y772_c00000{bottom:688.667067pt;}
.y21cc_c00000{bottom:688.747067pt;}
.y27f_c00000{bottom:688.827067pt;}
.y67_c00000{bottom:688.830539pt;}
.y22f_c00000{bottom:688.987200pt;}
.y86_c00000{bottom:689.070995pt;}
.y112f_c00000{bottom:689.147200pt;}
.yd7c_c00000{bottom:689.227067pt;}
.y112a_c00000{bottom:689.307067pt;}
.y9d7_c00000{bottom:689.387067pt;}
.y1e7a_c00000{bottom:689.547067pt;}
.yba2_c00000{bottom:689.627067pt;}
.y16d7_c00000{bottom:689.627555pt;}
.y1d7f_c00000{bottom:689.627907pt;}
.y184f_c00000{bottom:689.707803pt;}
.y1867_c00000{bottom:689.709139pt;}
.y187c_c00000{bottom:689.710475pt;}
.y188d_c00000{bottom:689.711811pt;}
.yf7e_c00000{bottom:689.787067pt;}
.y11d6_c00000{bottom:689.867067pt;}
.ye52_c00000{bottom:689.947067pt;}
.y482_c00000{bottom:690.187067pt;}
.y5c1_c00000{bottom:690.187200pt;}
.ycbc_c00000{bottom:690.347067pt;}
.yfb9_c00000{bottom:690.506667pt;}
.y1c0c_c00000{bottom:690.667067pt;}
.y1a02_c00000{bottom:690.827067pt;}
.ya4a_c00000{bottom:690.907067pt;}
.y1373_c00000{bottom:690.987067pt;}
.y1ff6_c00000{bottom:691.147067pt;}
.yd96_c00000{bottom:691.147200pt;}
.y1d68_c00000{bottom:691.227067pt;}
.y10ba_c00000{bottom:691.307067pt;}
.ycfa_c00000{bottom:691.307243pt;}
.yf5_c00000{bottom:691.547067pt;}
.y1361_c00000{bottom:691.627067pt;}
.y1ec7_c00000{bottom:691.787251pt;}
.y1ef0_c00000{bottom:691.787419pt;}
.y1b23_c00000{bottom:691.947067pt;}
.y2053_c00000{bottom:692.027067pt;}
.y1c76_c00000{bottom:692.027963pt;}
.y402_c00000{bottom:692.187067pt;}
.y11b_c00000{bottom:692.347067pt;}
.y16a7_c00000{bottom:692.507067pt;}
.y1f51_c00000{bottom:692.827067pt;}
.y173f_c00000{bottom:692.987200pt;}
.y1239_c00000{bottom:693.067067pt;}
.y21a0_c00000{bottom:693.147200pt;}
.y369_c00000{bottom:693.627067pt;}
.y1bea_c00000{bottom:693.707067pt;}
.y1825_c00000{bottom:693.867467pt;}
.y10f9_c00000{bottom:693.947067pt;}
.y10b0_c00000{bottom:694.187067pt;}
.y165f_c00000{bottom:694.267067pt;}
.y126a_c00000{bottom:694.267667pt;}
.y17e2_c00000{bottom:694.267987pt;}
.y5d8_c00000{bottom:694.428227pt;}
.y1543_c00000{bottom:694.507067pt;}
.y1212_c00000{bottom:694.587067pt;}
.y7f1_c00000{bottom:694.747067pt;}
.y12fc_c00000{bottom:695.067067pt;}
.y1303_c00000{bottom:695.067243pt;}
.y14d3_c00000{bottom:695.147200pt;}
.y802_c00000{bottom:695.307067pt;}
.ye88_c00000{bottom:695.467067pt;}
.y1a5d_c00000{bottom:695.787067pt;}
.y1e9a_c00000{bottom:695.787603pt;}
.y12a6_c00000{bottom:695.788147pt;}
.y100e_c00000{bottom:695.947067pt;}
.y149_c00000{bottom:696.027067pt;}
.y3cc_c00000{bottom:696.107067pt;}
.y2ea_c00000{bottom:696.347067pt;}
.y19b9_c00000{bottom:696.507067pt;}
.y21d7_c00000{bottom:696.587067pt;}
.y199b_c00000{bottom:696.667067pt;}
.y20f7_c00000{bottom:696.667248pt;}
.y11fd_c00000{bottom:696.907067pt;}
.y162d_c00000{bottom:696.987200pt;}
.y4fb_c00000{bottom:697.067067pt;}
.y7a1_c00000{bottom:697.306675pt;}
.yf1b_c00000{bottom:697.307067pt;}
.y12bd_c00000{bottom:697.307987pt;}
.y92a_c00000{bottom:697.547067pt;}
.yb25_c00000{bottom:697.547667pt;}
.y650_c00000{bottom:697.627067pt;}
.y1f9d_c00000{bottom:697.707227pt;}
.y1cfd_c00000{bottom:697.867067pt;}
.y95f_c00000{bottom:697.867507pt;}
.y1069_c00000{bottom:698.187067pt;}
.y4aa_c00000{bottom:698.267067pt;}
.ydb3_c00000{bottom:698.427067pt;}
.y150e_c00000{bottom:698.827067pt;}
.y1db6_c00000{bottom:698.827227pt;}
.y1961_c00000{bottom:698.828907pt;}
.y2066_c00000{bottom:698.987200pt;}
.y178e_c00000{bottom:699.147067pt;}
.y6df_c00000{bottom:699.227067pt;}
.y167c_c00000{bottom:699.307067pt;}
.y51e_c00000{bottom:699.387067pt;}
.y716_c00000{bottom:699.387200pt;}
.y208d_c00000{bottom:699.547067pt;}
.yeba_c00000{bottom:699.547200pt;}
.y98_c00000{bottom:699.550403pt;}
.y173_c00000{bottom:699.627067pt;}
.y1a01_c00000{bottom:699.707067pt;}
.y1cab_c00000{bottom:699.867067pt;}
.yaeb_c00000{bottom:699.947067pt;}
.y1e3f_c00000{bottom:700.027067pt;}
.yacf_c00000{bottom:700.107067pt;}
.y15a5_c00000{bottom:700.107395pt;}
.y194c_c00000{bottom:700.347227pt;}
.y315_c00000{bottom:700.507067pt;}
.ycf_c00000{bottom:700.667067pt;}
.yeeb_c00000{bottom:700.747067pt;}
.y1716_c00000{bottom:700.827067pt;}
.y1743_c00000{bottom:701.067067pt;}
.y1439_c00000{bottom:701.147200pt;}
.y1075_c00000{bottom:701.227067pt;}
.y2134_c00000{bottom:701.307067pt;}
.y1162_c00000{bottom:701.387083pt;}
.y17f9_c00000{bottom:701.467067pt;}
.y1165_c00000{bottom:701.547403pt;}
.y1b9c_c00000{bottom:701.627827pt;}
.y20da_c00000{bottom:701.787067pt;}
.y337_c00000{bottom:701.867067pt;}
.y124a_c00000{bottom:701.868067pt;}
.y1df3_c00000{bottom:702.026883pt;}
.y1def_c00000{bottom:702.027067pt;}
.y1de9_c00000{bottom:702.027235pt;}
.y856_c00000{bottom:702.187067pt;}
.ybb6_c00000{bottom:702.267067pt;}
.yaa5_c00000{bottom:702.347067pt;}
.y1a6f_c00000{bottom:702.427067pt;}
.yd1c_c00000{bottom:702.587067pt;}
.y15d6_c00000{bottom:702.667067pt;}
.yfcb_c00000{bottom:702.908123pt;}
.yc12_c00000{bottom:702.987067pt;}
.y1ad1_c00000{bottom:702.987315pt;}
.y1492_c00000{bottom:703.227067pt;}
.y1b86_c00000{bottom:703.467067pt;}
.y1aa9_c00000{bottom:703.467200pt;}
.y1f57_c00000{bottom:703.547067pt;}
.yf7d_c00000{bottom:703.627067pt;}
.ya2b_c00000{bottom:703.627227pt;}
.y389_c00000{bottom:703.787067pt;}
.y9ef_c00000{bottom:703.947067pt;}
.y1fc7_c00000{bottom:704.027987pt;}
.y251_c00000{bottom:704.187067pt;}
.yfb8_c00000{bottom:704.267067pt;}
.y7e6_c00000{bottom:704.507067pt;}
.y1dd_c00000{bottom:704.587067pt;}
.y1129_c00000{bottom:704.667067pt;}
.y21b1_c00000{bottom:704.827067pt;}
.y2030_c00000{bottom:704.907067pt;}
.y16d6_c00000{bottom:704.907395pt;}
.y184e_c00000{bottom:705.067795pt;}
.y1866_c00000{bottom:705.069131pt;}
.y187b_c00000{bottom:705.070467pt;}
.y188c_c00000{bottom:705.071803pt;}
.y6a2_c00000{bottom:705.147147pt;}
.y998_c00000{bottom:705.147200pt;}
.y997_c00000{bottom:705.147307pt;}
.y783_c00000{bottom:705.148067pt;}
.ybd1_c00000{bottom:705.307067pt;}
.y21da_c00000{bottom:705.546819pt;}
.y21d9_c00000{bottom:705.547067pt;}
.y18fc_c00000{bottom:705.547227pt;}
.y1b16_c00000{bottom:705.867067pt;}
.y834_c00000{bottom:705.946811pt;}
.y1c0b_c00000{bottom:705.947067pt;}
.y173e_c00000{bottom:706.187067pt;}
.y1bc7_c00000{bottom:706.507067pt;}
.y1d7e_c00000{bottom:706.507827pt;}
.y10b9_c00000{bottom:706.667067pt;}
.ycf9_c00000{bottom:706.667235pt;}
.y146f_c00000{bottom:706.747067pt;}
.y1484_c00000{bottom:706.827067pt;}
.y984_c00000{bottom:707.067067pt;}
.y1ec6_c00000{bottom:707.067083pt;}
.y1eef_c00000{bottom:707.067251pt;}
.yd60_c00000{bottom:707.227067pt;}
.y198d_c00000{bottom:707.227200pt;}
.y219f_c00000{bottom:707.307067pt;}
.y1c75_c00000{bottom:707.307795pt;}
.y61c_c00000{bottom:707.547067pt;}
.y7ca_c00000{bottom:707.627067pt;}
.y8c8_c00000{bottom:707.947067pt;}
.yd95_c00000{bottom:708.027067pt;}
.y1f50_c00000{bottom:708.187067pt;}
.y1c56_c00000{bottom:708.267067pt;}
.y428_c00000{bottom:708.347067pt;}
.y757_c00000{bottom:708.427067pt;}
.y1a03_c00000{bottom:708.507067pt;}
.y4d0_c00000{bottom:708.587067pt;}
.y2154_c00000{bottom:708.667067pt;}
.yecf_c00000{bottom:708.747067pt;}
.y1aff_c00000{bottom:708.907067pt;}
.y16a6_c00000{bottom:709.067067pt;}
.y198_c00000{bottom:709.147067pt;}
.y1742_c00000{bottom:709.227067pt;}
.ydd5_c00000{bottom:709.307067pt;}
.y1f1a_c00000{bottom:709.387067pt;}
.y32f_c00000{bottom:709.707067pt;}
.y1e79_c00000{bottom:709.787067pt;}
.y29a_c00000{bottom:709.867067pt;}
.yba1_c00000{bottom:709.867200pt;}
.y27e_c00000{bottom:709.947067pt;}
.y22e_c00000{bottom:709.947200pt;}
.y10f8_c00000{bottom:710.107067pt;}
.y1302_c00000{bottom:710.186755pt;}
.y66_c00000{bottom:710.270267pt;}
.y12fb_c00000{bottom:710.347067pt;}
.y1342_c00000{bottom:710.348403pt;}
.y1402_c00000{bottom:710.427067pt;}
.y85_c00000{bottom:710.510723pt;}
.y1824_c00000{bottom:710.747387pt;}
.yea2_c00000{bottom:710.827067pt;}
.y553_c00000{bottom:710.907067pt;}
.y13e6_c00000{bottom:710.987067pt;}
.y1269_c00000{bottom:711.067067pt;}
.y17e1_c00000{bottom:711.067387pt;}
.y1e99_c00000{bottom:711.067435pt;}
.y1cda_c00000{bottom:711.068067pt;}
.y1b62_c00000{bottom:711.147067pt;}
.y1b6e_c00000{bottom:711.147200pt;}
.y5d7_c00000{bottom:711.308147pt;}
.y150d_c00000{bottom:711.787067pt;}
.y2e9_c00000{bottom:711.867067pt;}
.yb63_c00000{bottom:711.947067pt;}
.y100c_c00000{bottom:711.947075pt;}
.y58a_c00000{bottom:712.106811pt;}
.y12a5_c00000{bottom:712.668067pt;}
.y8a3_c00000{bottom:712.907067pt;}
.y1cc5_c00000{bottom:712.987067pt;}
.y744_c00000{bottom:713.147067pt;}
.y4fa_c00000{bottom:713.147200pt;}
.ydf8_c00000{bottom:713.307067pt;}
.y20af_c00000{bottom:713.387067pt;}
.y11a_c00000{bottom:713.467067pt;}
.y4a9_c00000{bottom:713.627067pt;}
.y678_c00000{bottom:713.707067pt;}
.y1935_c00000{bottom:713.867067pt;}
.y20c6_c00000{bottom:713.867315pt;}
.ya14_c00000{bottom:713.947067pt;}
.y12bc_c00000{bottom:714.187907pt;}
.y1ded_c00000{bottom:714.266667pt;}
.yb24_c00000{bottom:714.347067pt;}
.y13ab_c00000{bottom:714.427067pt;}
.yac_c00000{bottom:714.507067pt;}
.y1f9c_c00000{bottom:714.587147pt;}
.y1a88_c00000{bottom:714.907067pt;}
.yf4_c00000{bottom:714.987200pt;}
.y1caa_c00000{bottom:715.147200pt;}
.yaea_c00000{bottom:715.307067pt;}
.y2133_c00000{bottom:715.467067pt;}
.y1390_c00000{bottom:715.627067pt;}
.y1d0c_c00000{bottom:715.707067pt;}
.y1db5_c00000{bottom:715.707147pt;}
.y1a33_c00000{bottom:715.708040pt;}
.y1960_c00000{bottom:715.708827pt;}
.y95e_c00000{bottom:715.947907pt;}
.y44d_c00000{bottom:716.027067pt;}
.y1491_c00000{bottom:716.187067pt;}
.y771_c00000{bottom:716.267067pt;}
.y18c2_c00000{bottom:716.267419pt;}
.y16f2_c00000{bottom:716.427067pt;}
.y1438_c00000{bottom:716.507067pt;}
.y6de_c00000{bottom:716.666755pt;}
.y172_c00000{bottom:716.667067pt;}
.y1161_c00000{bottom:716.747075pt;}
.y7a0_c00000{bottom:716.747131pt;}
.yd7b_c00000{bottom:716.827067pt;}
.y1164_c00000{bottom:716.907395pt;}
.y20f_c00000{bottom:716.987067pt;}
.y1a49_c00000{bottom:716.987200pt;}
.y148_c00000{bottom:717.147067pt;}
.y203d_c00000{bottom:717.147200pt;}
.y194b_c00000{bottom:717.227147pt;}
.y1df2_c00000{bottom:717.306715pt;}
.y336_c00000{bottom:717.306739pt;}
.yf1a_c00000{bottom:717.307067pt;}
.yf7c_c00000{bottom:717.387067pt;}
.y7e5_c00000{bottom:717.467987pt;}
.ye51_c00000{bottom:717.547067pt;}
.y481_c00000{bottom:717.787067pt;}
.y5c0_c00000{bottom:717.787200pt;}
.ycbb_c00000{bottom:717.947067pt;}
.yfb7_c00000{bottom:718.106667pt;}
.y833_c00000{bottom:718.187067pt;}
.y7f0_c00000{bottom:718.267067pt;}
.yfca_c00000{bottom:718.268115pt;}
.y1b9b_c00000{bottom:718.427227pt;}
.yac6_c00000{bottom:718.507067pt;}
.y1372_c00000{bottom:718.587067pt;}
.yeea_c00000{bottom:718.667067pt;}
.y1ff5_c00000{bottom:718.747067pt;}
.y1249_c00000{bottom:718.747987pt;}
.y1cd1_c00000{bottom:718.907067pt;}
.y1cfc_c00000{bottom:718.987200pt;}
.y2c0_c00000{bottom:719.067067pt;}
.y17f8_c00000{bottom:719.067200pt;}
.ycf8_c00000{bottom:719.307067pt;}
.y1715_c00000{bottom:719.387067pt;}
.y1f74_c00000{bottom:719.547067pt;}
.y11af_c00000{bottom:719.787067pt;}
.y929_c00000{bottom:719.867067pt;}
.y1128_c00000{bottom:719.947067pt;}
.y165e_c00000{bottom:720.187067pt;}
.y16d5_c00000{bottom:720.267555pt;}
.y184d_c00000{bottom:720.347627pt;}
.y1865_c00000{bottom:720.348963pt;}
.y187a_c00000{bottom:720.350299pt;}
.y188b_c00000{bottom:720.351635pt;}
.y14b7_c00000{bottom:720.507067pt;}
.ya2a_c00000{bottom:720.507147pt;}
.y13cd_c00000{bottom:720.587067pt;}
.y1238_c00000{bottom:720.667067pt;}
.y1fc6_c00000{bottom:720.907907pt;}
.y14d2_c00000{bottom:720.987200pt;}
.y11d5_c00000{bottom:721.147200pt;}
.y368_c00000{bottom:721.227067pt;}
.y15d5_c00000{bottom:721.307067pt;}
.y15d4_c00000{bottom:721.307075pt;}
.y1ad0_c00000{bottom:721.387067pt;}
.y3ec_c00000{bottom:721.387219pt;}
.y250_c00000{bottom:721.707067pt;}
.y10af_c00000{bottom:721.787067pt;}
.y10b8_c00000{bottom:721.947067pt;}
.y6a1_c00000{bottom:722.027067pt;}
.y996_c00000{bottom:722.027227pt;}
.y782_c00000{bottom:722.027987pt;}
.y173d_c00000{bottom:722.107067pt;}
.y474_c00000{bottom:722.187067pt;}
.y855_c00000{bottom:722.347067pt;}
.y21b0_c00000{bottom:722.427067pt;}
.y1ec5_c00000{bottom:722.427075pt;}
.y18fb_c00000{bottom:722.427147pt;}
.y1eee_c00000{bottom:722.427243pt;}
.yaa4_c00000{bottom:722.587067pt;}
.y1b15_c00000{bottom:722.667067pt;}
.y1c74_c00000{bottom:722.667787pt;}
.y162c_c00000{bottom:722.827200pt;}
.y569_c00000{bottom:722.907067pt;}
.y1f19_c00000{bottom:723.227067pt;}
.y1a5c_c00000{bottom:723.387067pt;}
.y1d7d_c00000{bottom:723.387747pt;}
.y1f4f_c00000{bottom:723.547067pt;}
.y1a6e_c00000{bottom:723.627067pt;}
.y3cb_c00000{bottom:723.707067pt;}
.y1c55_c00000{bottom:723.785099pt;}
.y5f8_c00000{bottom:723.947067pt;}
.y150c_c00000{bottom:724.027067pt;}
.y19b8_c00000{bottom:724.107067pt;}
.y1525_c00000{bottom:724.187067pt;}
.y314_c00000{bottom:724.187315pt;}
.y589_c00000{bottom:724.347067pt;}
.y11fc_c00000{bottom:724.507067pt;}
.y2052_c00000{bottom:724.587067pt;}
.y1741_c00000{bottom:724.667067pt;}
.yd94_c00000{bottom:724.907067pt;}
.yb62_c00000{bottom:724.907147pt;}
.y128a_c00000{bottom:725.067067pt;}
.yc56_c00000{bottom:725.147067pt;}
.yb84_c00000{bottom:725.227067pt;}
.y10f6_c00000{bottom:725.307067pt;}
.y10f7_c00000{bottom:725.467067pt;}
.y1dc_c00000{bottom:725.547067pt;}
.y1068_c00000{bottom:725.707067pt;}
.y1341_c00000{bottom:725.708395pt;}
.y1afe_c00000{bottom:725.787067pt;}
.ydb2_c00000{bottom:726.027067pt;}
.y4f9_c00000{bottom:726.187827pt;}
.y2012_c00000{bottom:726.347067pt;}
.y1268_c00000{bottom:726.427067pt;}
.y1e98_c00000{bottom:726.427427pt;}
.ye0e_c00000{bottom:726.507067pt;}
.y178d_c00000{bottom:726.747067pt;}
.y167b_c00000{bottom:726.907067pt;}
.y51d_c00000{bottom:726.987067pt;}
.y715_c00000{bottom:726.987200pt;}
.y2132_c00000{bottom:727.067067pt;}
.y208c_c00000{bottom:727.147067pt;}
.yeb9_c00000{bottom:727.147200pt;}
.y100b_c00000{bottom:727.307067pt;}
.y3eb_c00000{bottom:727.467067pt;}
.y1a00_c00000{bottom:727.627067pt;}
.y1823_c00000{bottom:727.627307pt;}
.yab9_c00000{bottom:727.707067pt;}
.y17e0_c00000{bottom:727.947307pt;}
.y1cd9_c00000{bottom:727.947987pt;}
.y171_c00000{bottom:728.027067pt;}
.yb3c_c00000{bottom:728.107067pt;}
.y43_c00000{bottom:728.187067pt;}
.y5d6_c00000{bottom:728.188067pt;}
.yce_c00000{bottom:728.267067pt;}
.y1074_c00000{bottom:728.827200pt;}
.y4a8_c00000{bottom:728.907067pt;}
.y6dd_c00000{bottom:728.986811pt;}
.yc6c_c00000{bottom:728.987200pt;}
.y1490_c00000{bottom:729.067067pt;}
.y27d_c00000{bottom:729.147200pt;}
.y2e8_c00000{bottom:729.467067pt;}
.y12a4_c00000{bottom:729.467467pt;}
.y2136_c00000{bottom:729.547067pt;}
.ybb5_c00000{bottom:729.867067pt;}
.y61b_c00000{bottom:730.027067pt;}
.yd1b_c00000{bottom:730.187067pt;}
.y6e8_c00000{bottom:730.506811pt;}
.y1ca9_c00000{bottom:730.507067pt;}
.yae9_c00000{bottom:730.587067pt;}
.y1e3d_c00000{bottom:730.667067pt;}
.y1aa8_c00000{bottom:731.067200pt;}
.y12bb_c00000{bottom:731.067827pt;}
.y22d_c00000{bottom:731.147200pt;}
.yf7b_c00000{bottom:731.227067pt;}
.yb23_c00000{bottom:731.227147pt;}
.y7ef_c00000{bottom:731.227987pt;}
.y832_c00000{bottom:731.228227pt;}
.y388_c00000{bottom:731.387067pt;}
.y197_c00000{bottom:731.467067pt;}
.y9ee_c00000{bottom:731.547067pt;}
.y18c1_c00000{bottom:731.547251pt;}
.y65_c00000{bottom:731.709995pt;}
.yfb6_c00000{bottom:731.867067pt;}
.y1441_c00000{bottom:731.867251pt;}
.y84_c00000{bottom:731.950451pt;}
.y714_c00000{bottom:732.107067pt;}
.y756_c00000{bottom:732.107315pt;}
.y20c5_c00000{bottom:732.267067pt;}
.y202f_c00000{bottom:732.507067pt;}
.y1d0b_c00000{bottom:732.587067pt;}
.y1a32_c00000{bottom:732.587960pt;}
.y195f_c00000{bottom:732.588747pt;}
.y1542_c00000{bottom:732.667067pt;}
.y95d_c00000{bottom:732.747307pt;}
.ybd0_c00000{bottom:732.907067pt;}
.y165d_c00000{bottom:733.067067pt;}
.y32e_c00000{bottom:733.147200pt;}
.yea1_c00000{bottom:733.307067pt;}
.yfc9_c00000{bottom:733.547947pt;}
.y14d1_c00000{bottom:733.867067pt;}
.y194a_c00000{bottom:734.107067pt;}
.y1f56_c00000{bottom:734.267067pt;}
.y7e4_c00000{bottom:734.347907pt;}
.y119_c00000{bottom:734.667067pt;}
.yd5f_c00000{bottom:734.747067pt;}
.y198c_c00000{bottom:734.827200pt;}
.y11d4_c00000{bottom:734.907067pt;}
.y24f_c00000{bottom:735.067067pt;}
.y11ae_c00000{bottom:735.147200pt;}
.y7c9_c00000{bottom:735.227067pt;}
.y1127_c00000{bottom:735.307067pt;}
.y1b9a_c00000{bottom:735.307147pt;}
.y8c7_c00000{bottom:735.387067pt;}
.y219e_c00000{bottom:735.467067pt;}
.y1adf_c00000{bottom:735.547067pt;}
.y16d4_c00000{bottom:735.547395pt;}
.y10ae_c00000{bottom:735.627067pt;}
.y3ea_c00000{bottom:735.627907pt;}
.y184c_c00000{bottom:735.707619pt;}
.y1864_c00000{bottom:735.708955pt;}
.y1879_c00000{bottom:735.710291pt;}
.y188a_c00000{bottom:735.711627pt;}
.y162b_c00000{bottom:735.787067pt;}
.y427_c00000{bottom:735.947067pt;}
.yaa3_c00000{bottom:736.027067pt;}
.y79f_c00000{bottom:736.107067pt;}
.y4cf_c00000{bottom:736.187067pt;}
.yece_c00000{bottom:736.347067pt;}
.y15d3_c00000{bottom:736.667067pt;}
.y335_c00000{bottom:736.747195pt;}
.ydd4_c00000{bottom:736.907067pt;}
.y150b_c00000{bottom:736.987200pt;}
.y1714_c00000{bottom:737.067067pt;}
.yc42_c00000{bottom:737.307067pt;}
.ya29_c00000{bottom:737.387067pt;}
.y588_c00000{bottom:737.388747pt;}
.yf3_c00000{bottom:737.467067pt;}
.yba0_c00000{bottom:737.467200pt;}
.y1f37_c00000{bottom:737.547067pt;}
.y1ec4_c00000{bottom:737.787067pt;}
.y1eed_c00000{bottom:737.787235pt;}
.y1fc5_c00000{bottom:737.787827pt;}
.y1360_c00000{bottom:737.867067pt;}
.ycf7_c00000{bottom:737.947075pt;}
.y1c73_c00000{bottom:737.947619pt;}
.y1b7_c00000{bottom:738.187067pt;}
.y147_c00000{bottom:738.347067pt;}
.y552_c00000{bottom:738.507067pt;}
.y13e5_c00000{bottom:738.587067pt;}
.y1b61_c00000{bottom:738.747067pt;}
.y1f4e_c00000{bottom:738.827200pt;}
.y995_c00000{bottom:738.907147pt;}
.y781_c00000{bottom:738.907907pt;}
.yf77_c00000{bottom:739.067067pt;}
.y367_c00000{bottom:739.307067pt;}
.y874_c00000{bottom:739.387067pt;}
.y1927_c00000{bottom:739.467067pt;}
.y1067_c00000{bottom:739.547067pt;}
.y20d9_c00000{bottom:739.787067pt;}
.y1b85_c00000{bottom:739.947067pt;}
.y2183_c00000{bottom:740.027067pt;}
.y1f18_c00000{bottom:740.107067pt;}
.y1cfb_c00000{bottom:740.187067pt;}
.y1bc6_c00000{bottom:740.267067pt;}
.y1d7c_c00000{bottom:740.267667pt;}
.y1be9_c00000{bottom:740.347067pt;}
.y8a2_c00000{bottom:740.427067pt;}
.y10f5_c00000{bottom:740.587067pt;}
.y743_c00000{bottom:740.747067pt;}
.ydf7_c00000{bottom:740.907067pt;}
.y20ae_c00000{bottom:740.987067pt;}
.y1b22_c00000{bottom:740.987200pt;}
.y473_c00000{bottom:741.067067pt;}
.y1301_c00000{bottom:741.068027pt;}
.y1340_c00000{bottom:741.068387pt;}
.y6dc_c00000{bottom:741.227067pt;}
.y53f_c00000{bottom:741.307067pt;}
.ya13_c00000{bottom:741.547067pt;}
.yb61_c00000{bottom:741.787067pt;}
.y1e97_c00000{bottom:741.787419pt;}
.y148f_c00000{bottom:742.027067pt;}
.yab_c00000{bottom:742.107067pt;}
.y21cb_c00000{bottom:742.187067pt;}
.y928_c00000{bottom:742.267067pt;}
.y20be_c00000{bottom:742.346984pt;}
.y1289_c00000{bottom:742.507067pt;}
.y100d_c00000{bottom:742.586899pt;}
.y310_c00000{bottom:742.587067pt;}
.y6e7_c00000{bottom:742.747067pt;}
.y1ff4_c00000{bottom:742.827200pt;}
.y13cc_c00000{bottom:743.067067pt;}
.y4f8_c00000{bottom:743.067747pt;}
.y1c54_c00000{bottom:743.145035pt;}
.y2051_c00000{bottom:743.147200pt;}
.y138f_c00000{bottom:743.227067pt;}
.y1ddd_c00000{bottom:743.387067pt;}
.y44c_c00000{bottom:743.627067pt;}
.y770_c00000{bottom:743.867067pt;}
.y1237_c00000{bottom:744.187067pt;}
.y4a7_c00000{bottom:744.267067pt;}
.y6a0_c00000{bottom:744.347067pt;}
.yd7a_c00000{bottom:744.427067pt;}
.y2131_c00000{bottom:744.587067pt;}
.y1a6d_c00000{bottom:744.747067pt;}
.y17df_c00000{bottom:744.827227pt;}
.y1cd8_c00000{bottom:744.827907pt;}
.y1dcc_c00000{bottom:744.907067pt;}
.yf7a_c00000{bottom:744.987200pt;}
.y5d5_c00000{bottom:745.067987pt;}
.ye50_c00000{bottom:745.147067pt;}
.y27c_c00000{bottom:745.227067pt;}
.y480_c00000{bottom:745.387067pt;}
.y5bf_c00000{bottom:745.387200pt;}
.ycba_c00000{bottom:745.547067pt;}
.y19ea_c00000{bottom:745.627067pt;}
.yfb5_c00000{bottom:745.706667pt;}
.y21d6_c00000{bottom:745.787067pt;}
.y1ca8_c00000{bottom:745.867067pt;}
.yae8_c00000{bottom:745.947067pt;}
.y165c_c00000{bottom:746.027067pt;}
.y1371_c00000{bottom:746.187067pt;}
.y1b37_c00000{bottom:746.347067pt;}
.y12a3_c00000{bottom:746.347387pt;}
.y2bf_c00000{bottom:746.667067pt;}
.y17f7_c00000{bottom:746.667200pt;}
.y1db_c00000{bottom:746.907067pt;}
.y18c0_c00000{bottom:746.907243pt;}
.y1f73_c00000{bottom:747.147067pt;}
.y1440_c00000{bottom:747.147083pt;}
.y2e7_c00000{bottom:747.147200pt;}
.y1db4_c00000{bottom:747.307067pt;}
.y5f7_c00000{bottom:747.387067pt;}
.y12ba_c00000{bottom:747.867227pt;}
.yc11_c00000{bottom:747.947067pt;}
.y11fb_c00000{bottom:748.027067pt;}
.yb22_c00000{bottom:748.107067pt;}
.y115d_c00000{bottom:748.107251pt;}
.y7ee_c00000{bottom:748.107907pt;}
.y831_c00000{bottom:748.108147pt;}
.y1f85_c00000{bottom:748.267067pt;}
.y1160_c00000{bottom:748.267571pt;}
.y162a_c00000{bottom:748.667067pt;}
.y11d3_c00000{bottom:748.747067pt;}
.y1f9b_c00000{bottom:748.907067pt;}
.yfc8_c00000{bottom:748.907939pt;}
.y1f29_c00000{bottom:748.987200pt;}
.y170_c00000{bottom:749.147067pt;}
.y150a_c00000{bottom:749.227067pt;}
.y10ad_c00000{bottom:749.387067pt;}
.y1d0a_c00000{bottom:749.467067pt;}
.y1a31_c00000{bottom:749.467880pt;}
.yf08_c00000{bottom:749.467907pt;}
.y195e_c00000{bottom:749.468667pt;}
.ydb1_c00000{bottom:749.547067pt;}
.y219d_c00000{bottom:749.627067pt;}
.y95c_c00000{bottom:749.627227pt;}
.ybeb_c00000{bottom:749.787067pt;}
.y854_c00000{bottom:749.947067pt;}
.y135f_c00000{bottom:750.187067pt;}
.y22c_c00000{bottom:750.507067pt;}
.ycf6_c00000{bottom:750.667067pt;}
.y16d3_c00000{bottom:750.907395pt;}
.y1a5b_c00000{bottom:750.987200pt;}
.y1541_c00000{bottom:751.067067pt;}
.y184b_c00000{bottom:751.067611pt;}
.y1863_c00000{bottom:751.068947pt;}
.y1878_c00000{bottom:751.070283pt;}
.y1889_c00000{bottom:751.071619pt;}
.y11ab_c00000{bottom:751.147200pt;}
.y7e3_c00000{bottom:751.147307pt;}
.y159f_c00000{bottom:751.227067pt;}
.y3ca_c00000{bottom:751.307067pt;}
.y81a_c00000{bottom:751.467067pt;}
.y32d_c00000{bottom:751.547067pt;}
.y19b7_c00000{bottom:751.707067pt;}
.ycd_c00000{bottom:751.787067pt;}
.y207f_c00000{bottom:751.787315pt;}
.y1c2f_c00000{bottom:752.027067pt;}
.y198b_c00000{bottom:752.107067pt;}
.y1b99_c00000{bottom:752.187067pt;}
.y1ade_c00000{bottom:752.427067pt;}
.y3e9_c00000{bottom:752.507827pt;}
.y1822_c00000{bottom:752.507987pt;}
.y196_c00000{bottom:752.667067pt;}
.y15d2_c00000{bottom:752.667235pt;}
.yc55_c00000{bottom:752.747067pt;}
.yb83_c00000{bottom:752.827067pt;}
.ya73_c00000{bottom:752.827200pt;}
.y1eec_c00000{bottom:753.067067pt;}
.y64_c00000{bottom:753.149723pt;}
.y1066_c00000{bottom:753.307067pt;}
.y1c72_c00000{bottom:753.307611pt;}
.y83_c00000{bottom:753.390179pt;}
.y24e_c00000{bottom:753.467067pt;}
.y1ec3_c00000{bottom:753.627067pt;}
.y1f4d_c00000{bottom:754.187067pt;}
.y587_c00000{bottom:754.268667pt;}
.yf76_c00000{bottom:754.347067pt;}
.y167a_c00000{bottom:754.507067pt;}
.y51c_c00000{bottom:754.587067pt;}
.y1713_c00000{bottom:754.667067pt;}
.y8c6_c00000{bottom:754.667488pt;}
.y1fc4_c00000{bottom:754.667747pt;}
.y208b_c00000{bottom:754.747067pt;}
.y148e_c00000{bottom:754.987200pt;}
.yd5e_c00000{bottom:755.067067pt;}
.ya28_c00000{bottom:755.307067pt;}
.y2153_c00000{bottom:755.387067pt;}
.y1db3_c00000{bottom:755.547307pt;}
.y118_c00000{bottom:755.627067pt;}
.y15a4_c00000{bottom:755.707067pt;}
.y994_c00000{bottom:755.787067pt;}
.y992_c00000{bottom:755.787747pt;}
.y780_c00000{bottom:755.787827pt;}
.y6e6_c00000{bottom:755.787907pt;}
.y2af_c00000{bottom:755.867067pt;}
.y10f4_c00000{bottom:755.947067pt;}
.y79e_c00000{bottom:756.027067pt;}
.y334_c00000{bottom:756.107131pt;}
.y366_c00000{bottom:756.187067pt;}
.y1300_c00000{bottom:756.187539pt;}
.y133f_c00000{bottom:756.187899pt;}
.y133b_c00000{bottom:756.347067pt;}
.y1073_c00000{bottom:756.427067pt;}
.y18fa_c00000{bottom:756.747067pt;}
.yea0_c00000{bottom:756.827200pt;}
.y1f17_c00000{bottom:756.987200pt;}
.y1bc5_c00000{bottom:757.067067pt;}
.y1e96_c00000{bottom:757.067251pt;}
.y1236_c00000{bottom:757.067307pt;}
.y1ff3_c00000{bottom:757.067747pt;}
.ybb4_c00000{bottom:757.467067pt;}
.ydd3_c00000{bottom:757.547067pt;}
.y61a_c00000{bottom:757.627067pt;}
.y21af_c00000{bottom:757.707067pt;}
.yd1a_c00000{bottom:757.787067pt;}
.y1b6d_c00000{bottom:757.867067pt;}
.y1d67_c00000{bottom:758.187067pt;}
.y2050_c00000{bottom:758.507067pt;}
.y1926_c00000{bottom:758.587067pt;}
.y1003_c00000{bottom:758.587467pt;}
.y2130_c00000{bottom:758.667200pt;}
.yd93_c00000{bottom:758.827200pt;}
.y387_c00000{bottom:758.987067pt;}
.y165b_c00000{bottom:758.987200pt;}
.y14d0_c00000{bottom:759.067067pt;}
.y9ed_c00000{bottom:759.147067pt;}
.y1abc_c00000{bottom:759.387067pt;}
.y146_c00000{bottom:759.467067pt;}
.y4a6_c00000{bottom:759.627067pt;}
.y156e_c00000{bottom:759.707067pt;}
.y742_c00000{bottom:759.867067pt;}
.y4f7_c00000{bottom:759.947667pt;}
.y202e_c00000{bottom:760.107067pt;}
.y5f6_c00000{bottom:760.347067pt;}
.ybcf_c00000{bottom:760.507067pt;}
.y21c9_c00000{bottom:760.587067pt;}
.yc41_c00000{bottom:760.747067pt;}
.yc10_c00000{bottom:760.907307pt;}
.y20bd_c00000{bottom:760.987200pt;}
.y1ca7_c00000{bottom:761.147200pt;}
.y16f1_c00000{bottom:761.306499pt;}
.yae7_c00000{bottom:761.307067pt;}
.y1509_c00000{bottom:761.467067pt;}
.y1629_c00000{bottom:761.627067pt;}
.y17de_c00000{bottom:761.707147pt;}
.y1cd7_c00000{bottom:761.707827pt;}
.y5d4_c00000{bottom:761.867387pt;}
.y1483_c00000{bottom:762.027067pt;}
.y472_c00000{bottom:762.267067pt;}
.y18bf_c00000{bottom:762.267235pt;}
.y993_c00000{bottom:762.427067pt;}
.y1c53_c00000{bottom:762.504971pt;}
.y11d2_c00000{bottom:762.507067pt;}
.y143f_c00000{bottom:762.507075pt;}
.y9d6_c00000{bottom:762.587067pt;}
.y7c8_c00000{bottom:762.827067pt;}
.y10ac_c00000{bottom:763.227067pt;}
.y12a2_c00000{bottom:763.227307pt;}
.y1aa7_c00000{bottom:763.228067pt;}
.y115c_c00000{bottom:763.387083pt;}
.y426_c00000{bottom:763.547067pt;}
.y115f_c00000{bottom:763.547403pt;}
.y913_c00000{bottom:763.627067pt;}
.y219c_c00000{bottom:763.707067pt;}
.y1a48_c00000{bottom:763.707155pt;}
.y4ce_c00000{bottom:763.787067pt;}
.yecd_c00000{bottom:763.947067pt;}
.y97_c00000{bottom:763.949739pt;}
.yb60_c00000{bottom:764.107067pt;}
.yfc7_c00000{bottom:764.267931pt;}
.y2e6_c00000{bottom:764.747067pt;}
.y12b9_c00000{bottom:764.747147pt;}
.y551_c00000{bottom:764.907067pt;}
.y100a_c00000{bottom:764.907763pt;}
.y7ed_c00000{bottom:764.987827pt;}
.y830_c00000{bottom:764.988067pt;}
.yf2_c00000{bottom:765.067067pt;}
.yb9f_c00000{bottom:765.067200pt;}
.yb21_c00000{bottom:765.147200pt;}
.y198a_c00000{bottom:765.148067pt;}
.yc6b_c00000{bottom:765.787067pt;}
.y112e_c00000{bottom:765.947067pt;}
.y13e4_c00000{bottom:766.187067pt;}
.y1d09_c00000{bottom:766.267067pt;}
.y1a30_c00000{bottom:766.267280pt;}
.yf07_c00000{bottom:766.267307pt;}
.y16d2_c00000{bottom:766.267555pt;}
.y195d_c00000{bottom:766.268067pt;}
.y13cb_c00000{bottom:766.347067pt;}
.y184a_c00000{bottom:766.347443pt;}
.y1862_c00000{bottom:766.348779pt;}
.y1877_c00000{bottom:766.350115pt;}
.y1888_c00000{bottom:766.351451pt;}
.y27b_c00000{bottom:766.427067pt;}
.y11aa_c00000{bottom:766.507067pt;}
.y95b_c00000{bottom:766.507147pt;}
.y22b_c00000{bottom:766.587067pt;}
.y11ad_c00000{bottom:766.667200pt;}
.y69f_c00000{bottom:766.827067pt;}
.y873_c00000{bottom:766.987067pt;}
.y1065_c00000{bottom:767.147200pt;}
.ybea_c00000{bottom:767.307067pt;}
.y20d8_c00000{bottom:767.387067pt;}
.y148d_c00000{bottom:767.867067pt;}
.y10b7_c00000{bottom:767.947067pt;}
.y8a1_c00000{bottom:768.027067pt;}
.y7e2_c00000{bottom:768.027227pt;}
.y1d96_c00000{bottom:768.187067pt;}
.y9b3_c00000{bottom:768.347067pt;}
.ydf6_c00000{bottom:768.507067pt;}
.y20ad_c00000{bottom:768.587067pt;}
.y1c71_c00000{bottom:768.667603pt;}
.y8c5_c00000{bottom:768.827200pt;}
.y52d_c00000{bottom:768.907067pt;}
.y853_c00000{bottom:769.067067pt;}
.ya12_c00000{bottom:769.147067pt;}
.y1da_c00000{bottom:769.227067pt;}
.y1add_c00000{bottom:769.307067pt;}
.y3e8_c00000{bottom:769.387747pt;}
.y1821_c00000{bottom:769.387907pt;}
.y21ca_c00000{bottom:769.467067pt;}
.y1f4c_c00000{bottom:769.547067pt;}
.yaa_c00000{bottom:769.707067pt;}
.y1ec2_c00000{bottom:769.787595pt;}
.y927_c00000{bottom:769.867067pt;}
.y1540_c00000{bottom:770.107067pt;}
.y1072_c00000{bottom:770.187067pt;}
.y16f_c00000{bottom:770.347067pt;}
.y206c_c00000{bottom:770.427067pt;}
.y11fa_c00000{bottom:770.507067pt;}
.y138e_c00000{bottom:770.827067pt;}
.y1b6c_c00000{bottom:770.907067pt;}
.y1be8_c00000{bottom:771.067067pt;}
.y586_c00000{bottom:771.068067pt;}
.y44b_c00000{bottom:771.227067pt;}
.y14cf_c00000{bottom:771.387067pt;}
.y76f_c00000{bottom:771.467067pt;}
.y1fc3_c00000{bottom:771.467147pt;}
.y133a_c00000{bottom:771.707067pt;}
.y133e_c00000{bottom:771.708211pt;}
.ye73_c00000{bottom:771.787067pt;}
.y24d_c00000{bottom:771.867067pt;}
.yd79_c00000{bottom:771.947067pt;}
.ydb0_c00000{bottom:772.027067pt;}
.y1712_c00000{bottom:772.347067pt;}
.y12fa_c00000{bottom:772.347075pt;}
.y1002_c00000{bottom:772.427067pt;}
.y1db2_c00000{bottom:772.427227pt;}
.y1e95_c00000{bottom:772.427243pt;}
.y1abb_c00000{bottom:772.427907pt;}
.y19db_c00000{bottom:772.428907pt;}
.y212f_c00000{bottom:772.507067pt;}
.yf79_c00000{bottom:772.587067pt;}
.y991_c00000{bottom:772.667667pt;}
.y77f_c00000{bottom:772.667747pt;}
.y6e5_c00000{bottom:772.667827pt;}
.y117_c00000{bottom:772.747067pt;}
.y9a2_c00000{bottom:772.827200pt;}
.y47f_c00000{bottom:772.987067pt;}
.y5be_c00000{bottom:772.987200pt;}
.y365_c00000{bottom:773.067067pt;}
.ye87_c00000{bottom:773.147067pt;}
.y1d30_c00000{bottom:773.147200pt;}
.y9d5_c00000{bottom:773.227387pt;}
.yfb4_c00000{bottom:773.306667pt;}
.y1b14_c00000{bottom:773.307067pt;}
.y16f0_c00000{bottom:773.626555pt;}
.y1b84_c00000{bottom:773.627067pt;}
.y1370_c00000{bottom:773.867067pt;}
.y1ff2_c00000{bottom:773.867147pt;}
.y1f28_c00000{bottom:773.947067pt;}
.y1235_c00000{bottom:773.947227pt;}
.yd41_c00000{bottom:774.107067pt;}
.y12d5_c00000{bottom:774.187067pt;}
.ycc_c00000{bottom:774.267067pt;}
.y17f6_c00000{bottom:774.267200pt;}
.y18f9_c00000{bottom:774.347147pt;}
.y1508_c00000{bottom:774.427067pt;}
.y1628_c00000{bottom:774.587067pt;}
.y63_c00000{bottom:774.669603pt;}
.ye20_c00000{bottom:774.747067pt;}
.y204f_c00000{bottom:774.827200pt;}
.y195_c00000{bottom:774.907067pt;}
.y14b6_c00000{bottom:774.987200pt;}
.ydd2_c00000{bottom:775.227067pt;}
.y21ae_c00000{bottom:775.307067pt;}
.y333_c00000{bottom:775.467067pt;}
.ycf5_c00000{bottom:775.467235pt;}
.y1f84_c00000{bottom:775.867067pt;}
.y11d1_c00000{bottom:776.347067pt;}
.y1ca6_c00000{bottom:776.507067pt;}
.yae6_c00000{bottom:776.587067pt;}
.y1b21_c00000{bottom:776.667200pt;}
.y4f6_c00000{bottom:776.747067pt;}
.y13ca_c00000{bottom:776.907067pt;}
.y10ab_c00000{bottom:776.987200pt;}
.y211e_c00000{bottom:777.147200pt;}
.y5f5_c00000{bottom:777.227067pt;}
.y741_c00000{bottom:777.547067pt;}
.y1a47_c00000{bottom:777.787067pt;}
.yc0f_c00000{bottom:777.787227pt;}
.y1437_c00000{bottom:777.867067pt;}
.y713_c00000{bottom:778.107067pt;}
.y1a5a_c00000{bottom:778.587067pt;}
.y1cd6_c00000{bottom:778.587747pt;}
.y3c9_c00000{bottom:778.747067pt;}
.y115b_c00000{bottom:778.747075pt;}
.y5d3_c00000{bottom:778.747307pt;}
.yc86_c00000{bottom:778.907067pt;}
.y115e_c00000{bottom:778.907395pt;}
.y819_c00000{bottom:779.067067pt;}
.y1774_c00000{bottom:779.147315pt;}
.ye9f_c00000{bottom:779.307067pt;}
.y2ae_c00000{bottom:779.387067pt;}
.y1808_c00000{bottom:779.387315pt;}
.yfc6_c00000{bottom:779.547763pt;}
.y1b36_c00000{bottom:780.107067pt;}
.y12a1_c00000{bottom:780.107227pt;}
.y1aa6_c00000{bottom:780.107987pt;}
.y13f9_c00000{bottom:780.267067pt;}
.y1009_c00000{bottom:780.267755pt;}
.yc54_c00000{bottom:780.347067pt;}
.yb82_c00000{bottom:780.427067pt;}
.y1d66_c00000{bottom:780.587067pt;}
.y145_c00000{bottom:780.667067pt;}
.y1b6_c00000{bottom:780.667200pt;}
.y19e9_c00000{bottom:780.827200pt;}
.y1064_c00000{bottom:780.907067pt;}
.y674_c00000{bottom:781.067067pt;}
.y619_c00000{bottom:781.147200pt;}
.y16d1_c00000{bottom:781.547395pt;}
.y1bbc_c00000{bottom:781.627067pt;}
.y1849_c00000{bottom:781.707435pt;}
.y1861_c00000{bottom:781.708771pt;}
.y1876_c00000{bottom:781.710107pt;}
.y1887_c00000{bottom:781.711443pt;}
.y11a9_c00000{bottom:781.787067pt;}
.y7ec_c00000{bottom:781.867747pt;}
.y82f_c00000{bottom:781.867987pt;}
.y1c52_c00000{bottom:781.945427pt;}
.y11ac_c00000{bottom:781.947067pt;}
.y51b_c00000{bottom:782.027067pt;}
.y1989_c00000{bottom:782.027987pt;}
.y1679_c00000{bottom:782.107067pt;}
.y5a4_c00000{bottom:782.187067pt;}
.y208a_c00000{bottom:782.347067pt;}
.y2e5_c00000{bottom:782.427067pt;}
.y1cfa_c00000{bottom:782.507067pt;}
.y5c5_c00000{bottom:782.907067pt;}
.y13c9_c00000{bottom:782.907739pt;}
.y1d08_c00000{bottom:783.147200pt;}
.yf06_c00000{bottom:783.147227pt;}
.y195c_c00000{bottom:783.147987pt;}
.yb0e_c00000{bottom:783.307067pt;}
.y471_c00000{bottom:783.387067pt;}
.y325_c00000{bottom:783.467067pt;}
.y1f36_c00000{bottom:783.547067pt;}
.y15ce_c00000{bottom:783.947067pt;}
.y1c70_c00000{bottom:783.947435pt;}
.y116_c00000{bottom:784.027067pt;}
.y14ce_c00000{bottom:784.267067pt;}
.yb20_c00000{bottom:784.347067pt;}
.y165a_c00000{bottom:784.827200pt;}
.y7e1_c00000{bottom:784.907147pt;}
.ybb3_c00000{bottom:785.067067pt;}
.y1ec1_c00000{bottom:785.067427pt;}
.y1eeb_c00000{bottom:785.067435pt;}
.yd19_c00000{bottom:785.227067pt;}
.y1cc4_c00000{bottom:785.466811pt;}
.y2152_c00000{bottom:785.467067pt;}
.y27a_c00000{bottom:785.547067pt;}
.y173c_c00000{bottom:785.627067pt;}
.y1de8_c00000{bottom:785.787067pt;}
.y16ef_c00000{bottom:785.866811pt;}
.y1adc_c00000{bottom:786.187067pt;}
.y1001_c00000{bottom:786.187467pt;}
.y3e7_c00000{bottom:786.267667pt;}
.y1820_c00000{bottom:786.267827pt;}
.y1690_c00000{bottom:786.347067pt;}
.yf78_c00000{bottom:786.427067pt;}
.y386_c00000{bottom:786.587067pt;}
.y1507_c00000{bottom:786.667200pt;}
.y852_c00000{bottom:786.747067pt;}
.y212e_c00000{bottom:786.907067pt;}
.yfb3_c00000{bottom:787.067067pt;}
.y133d_c00000{bottom:787.068203pt;}
.y926_c00000{bottom:787.227067pt;}
.ya56_c00000{bottom:787.307067pt;}
.y1627_c00000{bottom:787.467067pt;}
.y22a_c00000{bottom:787.547067pt;}
.y12f9_c00000{bottom:787.707067pt;}
.y1b6b_c00000{bottom:787.787067pt;}
.y1e94_c00000{bottom:787.787235pt;}
.y585_c00000{bottom:787.947987pt;}
.ybce_c00000{bottom:788.107067pt;}
.y1fc2_c00000{bottom:788.347067pt;}
.y1588_c00000{bottom:788.507067pt;}
.y10f3_c00000{bottom:788.667200pt;}
.y153f_c00000{bottom:789.227067pt;}
.y1db1_c00000{bottom:789.307147pt;}
.y1aba_c00000{bottom:789.307827pt;}
.y19da_c00000{bottom:789.308827pt;}
.y990_c00000{bottom:789.467067pt;}
.y77e_c00000{bottom:789.467147pt;}
.y6e4_c00000{bottom:789.467227pt;}
.y1be4_c00000{bottom:789.627067pt;}
.y983_c00000{bottom:789.707067pt;}
.y364_c00000{bottom:789.947067pt;}
.y1b20_c00000{bottom:790.027067pt;}
.y11d0_c00000{bottom:790.107067pt;}
.y9d4_c00000{bottom:790.107307pt;}
.y1b13_c00000{bottom:790.187067pt;}
.y24c_c00000{bottom:790.267067pt;}
.y1925_c00000{bottom:790.352435pt;}
.y7c7_c00000{bottom:790.427067pt;}
.y1b83_c00000{bottom:790.507067pt;}
.y13c8_c00000{bottom:790.587067pt;}
.ycf4_c00000{bottom:790.747067pt;}
.y1234_c00000{bottom:790.827147pt;}
.y10aa_c00000{bottom:790.827200pt;}
.y178c_c00000{bottom:790.828067pt;}
.y1bc4_c00000{bottom:790.987200pt;}
.y204e_c00000{bottom:791.067067pt;}
.y425_c00000{bottom:791.147200pt;}
.y18f8_c00000{bottom:791.227067pt;}
.y4cd_c00000{bottom:791.387067pt;}
.y1d9_c00000{bottom:791.547067pt;}
.y1b4e_c00000{bottom:791.627067pt;}
.y1ca5_c00000{bottom:791.867067pt;}
.yae5_c00000{bottom:791.947067pt;}
.y4f5_c00000{bottom:792.267067pt;}
.yc40_c00000{bottom:792.347147pt;}
.yc31_c00000{bottom:792.507067pt;}
.y1a87_c00000{bottom:792.587067pt;}
.yf1_c00000{bottom:792.667067pt;}
.y401_c00000{bottom:792.667200pt;}
.ydd1_c00000{bottom:792.827200pt;}
.y21ad_c00000{bottom:792.987200pt;}
.y20e6_c00000{bottom:792.987315pt;}
.y1436_c00000{bottom:793.147200pt;}
.y1afd_c00000{bottom:793.227067pt;}
.y18be_c00000{bottom:793.387067pt;}
.y13e3_c00000{bottom:793.787067pt;}
.y1b60_c00000{bottom:793.947067pt;}
.y5f4_c00000{bottom:794.107067pt;}
.y618_c00000{bottom:794.108147pt;}
.y673_c00000{bottom:794.109803pt;}
.y5bd_c00000{bottom:794.187067pt;}
.yd92_c00000{bottom:794.426811pt;}
.y69e_c00000{bottom:794.427067pt;}
.y872_c00000{bottom:794.587067pt;}
.yc0e_c00000{bottom:794.667147pt;}
.y17dd_c00000{bottom:794.667200pt;}
.y1063_c00000{bottom:794.747067pt;}
.yfc5_c00000{bottom:794.907755pt;}
.y20d7_c00000{bottom:794.987067pt;}
.y1cd5_c00000{bottom:795.467667pt;}
.y1008_c00000{bottom:795.547587pt;}
.y8a0_c00000{bottom:795.627067pt;}
.y5d2_c00000{bottom:795.627227pt;}
.y21c8_c00000{bottom:795.707067pt;}
.y1211_c00000{bottom:795.787067pt;}
.y9b2_c00000{bottom:795.947067pt;}
.ydf5_c00000{bottom:796.107067pt;}
.y62_c00000{bottom:796.109331pt;}
.y20ac_c00000{bottom:796.187067pt;}
.y9a1_c00000{bottom:796.267315pt;}
.y83b_c00000{bottom:796.507067pt;}
.ye72_c00000{bottom:796.667067pt;}
.ya11_c00000{bottom:796.747067pt;}
.y16d0_c00000{bottom:796.907395pt;}
.y1b35_c00000{bottom:796.987067pt;}
.y12a0_c00000{bottom:796.987147pt;}
.y1aa5_c00000{bottom:796.987907pt;}
.y1848_c00000{bottom:797.067427pt;}
.y1860_c00000{bottom:797.068763pt;}
.y1875_c00000{bottom:797.070099pt;}
.y1886_c00000{bottom:797.071435pt;}
.y1125_c00000{bottom:797.147200pt;}
.y194_c00000{bottom:797.227067pt;}
.ya9_c00000{bottom:797.307067pt;}
.y13f8_c00000{bottom:797.547067pt;}
.y12b8_c00000{bottom:797.707067pt;}
.y332_c00000{bottom:797.787067pt;}
.y11f9_c00000{bottom:798.027067pt;}
.y16ee_c00000{bottom:798.107067pt;}
.y138d_c00000{bottom:798.427067pt;}
.y19e8_c00000{bottom:798.507067pt;}
.y10b6_c00000{bottom:798.667067pt;}
.y7eb_c00000{bottom:798.667147pt;}
.y82e_c00000{bottom:798.667387pt;}
.y44a_c00000{bottom:798.827067pt;}
.y1988_c00000{bottom:798.907907pt;}
.y76e_c00000{bottom:799.067067pt;}
.y15d1_c00000{bottom:799.307059pt;}
.y15cd_c00000{bottom:799.307067pt;}
.y1c6f_c00000{bottom:799.307427pt;}
.y13a4_c00000{bottom:799.467067pt;}
.ydaf_c00000{bottom:799.627067pt;}
.y1506_c00000{bottom:799.867067pt;}
.y2e4_c00000{bottom:800.027067pt;}
.yf05_c00000{bottom:800.027147pt;}
.y195b_c00000{bottom:800.027907pt;}
.yf5c_c00000{bottom:800.107067pt;}
.ye4f_c00000{bottom:800.187067pt;}
.y925_c00000{bottom:800.267987pt;}
.y1626_c00000{bottom:800.427067pt;}
.y1ec0_c00000{bottom:800.427419pt;}
.y1eea_c00000{bottom:800.427427pt;}
.y47e_c00000{bottom:800.587067pt;}
.y13aa_c00000{bottom:800.667067pt;}
.ye86_c00000{bottom:800.747067pt;}
.yfb2_c00000{bottom:800.906667pt;}
.y148c_c00000{bottom:801.067067pt;}
.y1c51_c00000{bottom:801.305363pt;}
.y95a_c00000{bottom:801.307067pt;}
.y42_c00000{bottom:801.468395pt;}
.y1fa_c00000{bottom:801.627067pt;}
.y301_c00000{bottom:801.707067pt;}
.y144_c00000{bottom:801.787067pt;}
.ycb_c00000{bottom:801.867067pt;}
.y1339_c00000{bottom:802.187067pt;}
.y133c_c00000{bottom:802.187715pt;}
.y1f72_c00000{bottom:802.347067pt;}
.y3c8_c00000{bottom:802.427067pt;}
.yb1f_c00000{bottom:802.428067pt;}
.y173b_c00000{bottom:802.507067pt;}
.y1f92_c00000{bottom:802.587067pt;}
.y3e6_c00000{bottom:803.067067pt;}
.y181f_c00000{bottom:803.067227pt;}
.y12f8_c00000{bottom:803.067251pt;}
.y1678_c00000{bottom:803.307067pt;}
.y1f83_c00000{bottom:803.467067pt;}
.y1cf9_c00000{bottom:803.627067pt;}
.y11cf_c00000{bottom:803.947067pt;}
.y470_c00000{bottom:804.587067pt;}
.y1b4d_c00000{bottom:804.667067pt;}
.y584_c00000{bottom:804.827907pt;}
.y9be_c00000{bottom:805.147067pt;}
.ybe9_c00000{bottom:805.147147pt;}
.y115_c00000{bottom:805.227067pt;}
.y51a_c00000{bottom:805.466851pt;}
.y4a5_c00000{bottom:805.627067pt;}
.y9fd_c00000{bottom:805.707067pt;}
.yabe_c00000{bottom:805.707315pt;}
.y1fc1_c00000{bottom:805.787067pt;}
.ybb2_c00000{bottom:806.107067pt;}
.y1a59_c00000{bottom:806.187067pt;}
.y1ab9_c00000{bottom:806.187747pt;}
.y19d9_c00000{bottom:806.188747pt;}
.y77d_c00000{bottom:806.347067pt;}
.y6e3_c00000{bottom:806.347147pt;}
.y98f_c00000{bottom:806.348307pt;}
.yc85_c00000{bottom:806.507067pt;}
.y818_c00000{bottom:806.667067pt;}
.yb0d_c00000{bottom:806.746851pt;}
.y363_c00000{bottom:806.747067pt;}
.y229_c00000{bottom:806.907067pt;}
.y9d3_c00000{bottom:806.987227pt;}
.y10f2_c00000{bottom:807.067067pt;}
.y982_c00000{bottom:807.146811pt;}
.y1ca4_c00000{bottom:807.147200pt;}
.ycf3_c00000{bottom:807.227067pt;}
.y1919_c00000{bottom:807.229427pt;}
.y1924_c00000{bottom:807.232355pt;}
.yae4_c00000{bottom:807.307067pt;}
.y1b82_c00000{bottom:807.387067pt;}
.y1711_c00000{bottom:807.547067pt;}
.y1f16_c00000{bottom:807.627067pt;}
.y1233_c00000{bottom:807.707067pt;}
.y178b_c00000{bottom:807.707987pt;}
.yc53_c00000{bottom:807.947067pt;}
.yb81_c00000{bottom:808.027067pt;}
.y1a6c_c00000{bottom:808.107067pt;}
.y1ff1_c00000{bottom:808.187067pt;}
.y153e_c00000{bottom:808.267067pt;}
.y1b1f_c00000{bottom:808.427067pt;}
.y1062_c00000{bottom:808.507067pt;}
.y24b_c00000{bottom:808.667067pt;}
.yc3f_c00000{bottom:809.227067pt;}
.y14cd_c00000{bottom:809.467067pt;}
.y1bc3_c00000{bottom:809.547067pt;}
.y18bd_c00000{bottom:809.547267pt;}
.y7c6_c00000{bottom:809.627067pt;}
.y204d_c00000{bottom:809.707067pt;}
.y5a3_c00000{bottom:809.787067pt;}
.yd78_c00000{bottom:809.947067pt;}
.yd18_c00000{bottom:810.107067pt;}
.y851_c00000{bottom:810.267067pt;}
.y115a_c00000{bottom:810.267739pt;}
.yfc4_c00000{bottom:810.267747pt;}
.ydd0_c00000{bottom:810.427067pt;}
.y21ac_c00000{bottom:810.587067pt;}
.y1659_c00000{bottom:810.667067pt;}
.y17f5_c00000{bottom:810.748227pt;}
.y1602_c00000{bottom:810.907067pt;}
.y1007_c00000{bottom:810.907579pt;}
.y5f3_c00000{bottom:810.987067pt;}
.y617_c00000{bottom:810.988067pt;}
.y672_c00000{bottom:810.989723pt;}
.y324_c00000{bottom:811.067067pt;}
.y16ed_c00000{bottom:811.387067pt;}
.yc0d_c00000{bottom:811.547067pt;}
.y1071_c00000{bottom:811.627067pt;}
.y1505_c00000{bottom:812.107067pt;}
.y1cd4_c00000{bottom:812.267067pt;}
.y16cf_c00000{bottom:812.267555pt;}
.y13e2_c00000{bottom:812.347067pt;}
.y1847_c00000{bottom:812.347259pt;}
.y185f_c00000{bottom:812.348595pt;}
.y1874_c00000{bottom:812.349931pt;}
.y1885_c00000{bottom:812.351267pt;}
.y11a8_c00000{bottom:812.507067pt;}
.y5d1_c00000{bottom:812.507147pt;}
.y1f55_c00000{bottom:812.587067pt;}
.y1124_c00000{bottom:812.667067pt;}
.y1210_c00000{bottom:813.387067pt;}
.y2151_c00000{bottom:813.707067pt;}
.y1677_c00000{bottom:813.707571pt;}
.y1d8_c00000{bottom:813.787067pt;}
.y1000_c00000{bottom:813.787467pt;}
.y129f_c00000{bottom:813.867067pt;}
.y1aa4_c00000{bottom:813.867827pt;}
.yb9e_c00000{bottom:813.947067pt;}
.y385_c00000{bottom:814.187067pt;}
.y5bc_c00000{bottom:814.347067pt;}
.y15d0_c00000{bottom:814.667051pt;}
.y9a0_c00000{bottom:814.667067pt;}
.y15cc_c00000{bottom:814.667235pt;}
.y1c6e_c00000{bottom:814.667419pt;}
.y156d_c00000{bottom:814.907067pt;}
.y16e_c00000{bottom:814.987067pt;}
.y202d_c00000{bottom:815.307067pt;}
.y1bbb_c00000{bottom:815.387067pt;}
.y7ea_c00000{bottom:815.547067pt;}
.y82d_c00000{bottom:815.547307pt;}
.ybcd_c00000{bottom:815.707067pt;}
.y20f1_c00000{bottom:815.707347pt;}
.y1ebf_c00000{bottom:815.787411pt;}
.y1ee9_c00000{bottom:815.787419pt;}
.y1987_c00000{bottom:815.787827pt;}
.yc30_c00000{bottom:815.947315pt;}
.y449_c00000{bottom:816.107067pt;}
.yf04_c00000{bottom:816.907067pt;}
.y195a_c00000{bottom:816.907827pt;}
.y1be7_c00000{bottom:817.067067pt;}
.y924_c00000{bottom:817.067387pt;}
.y1482_c00000{bottom:817.227067pt;}
.y61_c00000{bottom:817.549059pt;}
.y2e3_c00000{bottom:817.627067pt;}
.yd5d_c00000{bottom:817.707067pt;}
.y1acf_c00000{bottom:818.187067pt;}
.y12f7_c00000{bottom:818.347083pt;}
.y1338_c00000{bottom:818.347259pt;}
.y10a9_c00000{bottom:818.427067pt;}
.y424_c00000{bottom:818.747067pt;}
.y170e_c00000{bottom:818.827067pt;}
.y9c1_c00000{bottom:818.907067pt;}
.y4cc_c00000{bottom:818.987067pt;}
.ycb9_c00000{bottom:819.147067pt;}
.y1d23_c00000{bottom:819.147200pt;}
.y2011_c00000{bottom:819.226811pt;}
.yb1e_c00000{bottom:819.307987pt;}
.y981_c00000{bottom:819.387067pt;}
.y193_c00000{bottom:819.547067pt;}
.y4f4_c00000{bottom:819.867067pt;}
.yd91_c00000{bottom:819.947067pt;}
.y181e_c00000{bottom:819.947147pt;}
.y1a86_c00000{bottom:820.187067pt;}
.yf0_c00000{bottom:820.267067pt;}
.y1c50_c00000{bottom:820.745819pt;}
.y1ddc_c00000{bottom:820.747067pt;}
.y3c7_c00000{bottom:820.827067pt;}
.y4a4_c00000{bottom:820.907067pt;}
.y1da3_c00000{bottom:820.987067pt;}
.y1c2c_c00000{bottom:821.307067pt;}
.y1b4c_c00000{bottom:821.467067pt;}
.y1b5f_c00000{bottom:821.547067pt;}
.y583_c00000{bottom:821.707827pt;}
.y1a2f_c00000{bottom:821.867067pt;}
.y69d_c00000{bottom:822.027067pt;}
.y871_c00000{bottom:822.187067pt;}
.y1061_c00000{bottom:822.347067pt;}
.y14cc_c00000{bottom:822.427067pt;}
.y1ca3_c00000{bottom:822.507067pt;}
.yae3_c00000{bottom:822.587067pt;}
.y1e3e_c00000{bottom:822.667067pt;}
.y279_c00000{bottom:822.827067pt;}
.y41_c00000{bottom:822.908123pt;}
.y143_c00000{bottom:822.987067pt;}
.y1ab8_c00000{bottom:823.067667pt;}
.y19d8_c00000{bottom:823.068667pt;}
.y1de7_c00000{bottom:823.147067pt;}
.y89f_c00000{bottom:823.227067pt;}
.y98e_c00000{bottom:823.228227pt;}
.y146e_c00000{bottom:823.387067pt;}
.y1fc0_c00000{bottom:823.468747pt;}
.y9b1_c00000{bottom:823.547067pt;}
.y362_c00000{bottom:823.627067pt;}
.ydf4_c00000{bottom:823.707067pt;}
.y1435_c00000{bottom:823.867067pt;}
.y9d2_c00000{bottom:823.867147pt;}
.y143e_c00000{bottom:823.867368pt;}
.y519_c00000{bottom:824.107067pt;}
.y1918_c00000{bottom:824.109347pt;}
.y1923_c00000{bottom:824.112275pt;}
.ya10_c00000{bottom:824.347067pt;}
.y1504_c00000{bottom:824.427067pt;}
.y1a46_c00000{bottom:824.587067pt;}
.y178a_c00000{bottom:824.587907pt;}
.y1cf8_c00000{bottom:824.827067pt;}
.ya8_c00000{bottom:824.907067pt;}
.y18bc_c00000{bottom:824.907259pt;}
.y2015_c00000{bottom:825.147200pt;}
.yb80_c00000{bottom:825.307067pt;}
.y5_c00000{bottom:825.333333pt;}
.y3e5_c00000{bottom:825.387067pt;}
.y1154_c00000{bottom:825.387251pt;}
.y10f1_c00000{bottom:825.467067pt;}
.y1159_c00000{bottom:825.547571pt;}
.yfc3_c00000{bottom:825.547579pt;}
.y11f8_c00000{bottom:825.627067pt;}
.y46f_c00000{bottom:825.707067pt;}
.y1ff0_c00000{bottom:825.867987pt;}
.y138c_c00000{bottom:826.027067pt;}
.yc3e_c00000{bottom:826.107067pt;}
.y1710_c00000{bottom:826.187067pt;}
.ybb1_c00000{bottom:826.267067pt;}
.y18f7_c00000{bottom:826.267307pt;}
.y1006_c00000{bottom:826.267571pt;}
.y114_c00000{bottom:826.347067pt;}
.y77c_c00000{bottom:826.427067pt;}
.y76d_c00000{bottom:826.667067pt;}
.y1afc_c00000{bottom:826.747067pt;}
.y1f82_c00000{bottom:826.987067pt;}
.y24a_c00000{bottom:827.067067pt;}
.ydae_c00000{bottom:827.227067pt;}
.y153d_c00000{bottom:827.307067pt;}
.y16ce_c00000{bottom:827.547395pt;}
.yfff_c00000{bottom:827.627067pt;}
.y17f4_c00000{bottom:827.628147pt;}
.y1232_c00000{bottom:827.707067pt;}
.y1846_c00000{bottom:827.707251pt;}
.y185e_c00000{bottom:827.708587pt;}
.y1873_c00000{bottom:827.709923pt;}
.y1884_c00000{bottom:827.711259pt;}
.y5f2_c00000{bottom:827.867067pt;}
.y616_c00000{bottom:827.867987pt;}
.y671_c00000{bottom:827.869643pt;}
.y1123_c00000{bottom:827.947067pt;}
.ydcf_c00000{bottom:828.107067pt;}
.y47d_c00000{bottom:828.187067pt;}
.y21ab_c00000{bottom:828.267067pt;}
.ye85_c00000{bottom:828.347067pt;}
.y96_c00000{bottom:828.349075pt;}
.y219a_c00000{bottom:828.427067pt;}
.yfb1_c00000{bottom:828.506667pt;}
.y11a7_c00000{bottom:828.507067pt;}
.y120f_c00000{bottom:828.747067pt;}
.ya9c_c00000{bottom:828.907067pt;}
.y1676_c00000{bottom:829.067563pt;}
.y448_c00000{bottom:829.147200pt;}
.y1db0_c00000{bottom:829.147227pt;}
.y12b7_c00000{bottom:829.147987pt;}
.y300_c00000{bottom:829.307067pt;}
.y5d0_c00000{bottom:829.387067pt;}
.yca_c00000{bottom:829.467067pt;}
.y1f35_c00000{bottom:829.547067pt;}
.y15cf_c00000{bottom:829.946883pt;}
.y15cb_c00000{bottom:829.947067pt;}
.y1c6d_c00000{bottom:829.947251pt;}
.y13c7_c00000{bottom:830.187067pt;}
.y1b34_c00000{bottom:830.667067pt;}
.y1aa3_c00000{bottom:830.667227pt;}
.y1f4b_c00000{bottom:830.827067pt;}
.yf75_c00000{bottom:830.907067pt;}
.y1ebe_c00000{bottom:831.067243pt;}
.y1ee8_c00000{bottom:831.067251pt;}
.y2010_c00000{bottom:831.467067pt;}
.y11ce_c00000{bottom:831.547067pt;}
.y173a_c00000{bottom:831.627067pt;}
.y7c5_c00000{bottom:831.787067pt;}
.ycf2_c00000{bottom:831.947067pt;}
.y10a8_c00000{bottom:832.187067pt;}
.y1bba_c00000{bottom:832.267067pt;}
.y1be6_c00000{bottom:832.347067pt;}
.y82c_c00000{bottom:832.427227pt;}
.y980_c00000{bottom:832.428907pt;}
.yb5f_c00000{bottom:832.587067pt;}
.y1986_c00000{bottom:832.587227pt;}
.y850_c00000{bottom:832.747067pt;}
.y20d6_c00000{bottom:832.907067pt;}
.y4f3_c00000{bottom:832.987067pt;}
.ya91_c00000{bottom:833.307123pt;}
.y12f0_c00000{bottom:833.707067pt;}
.y12f6_c00000{bottom:833.707075pt;}
.y1337_c00000{bottom:833.707251pt;}
.y3c6_c00000{bottom:833.787067pt;}
.y1959_c00000{bottom:833.787747pt;}
.y923_c00000{bottom:833.947307pt;}
.y159e_c00000{bottom:834.027067pt;}
.yb9d_c00000{bottom:834.107067pt;}
.y817_c00000{bottom:834.267067pt;}
.yc2f_c00000{bottom:834.347067pt;}
.ye9e_c00000{bottom:834.507067pt;}
.y1cd3_c00000{bottom:834.587067pt;}
.y1601_c00000{bottom:834.587315pt;}
.y14cb_c00000{bottom:834.667067pt;}
.ybcc_c00000{bottom:834.827067pt;}
.y219b_c00000{bottom:834.907067pt;}
.y1e93_c00000{bottom:835.067251pt;}
.y2e2_c00000{bottom:835.307067pt;}
.yc52_c00000{bottom:835.547067pt;}
.y7e9_c00000{bottom:835.627067pt;}
.y1ace_c00000{bottom:835.867067pt;}
.y1d7_c00000{bottom:836.107067pt;}
.yb1d_c00000{bottom:836.187907pt;}
.y4a3_c00000{bottom:836.267067pt;}
.y17dc_c00000{bottom:836.347067pt;}
.y1658_c00000{bottom:836.587067pt;}
.y1adb_c00000{bottom:836.747067pt;}
.yd90_c00000{bottom:836.827067pt;}
.y1591_c00000{bottom:836.907067pt;}
.y1503_c00000{bottom:837.067067pt;}
.y16d_c00000{bottom:837.307067pt;}
.y5a2_c00000{bottom:837.387067pt;}
.yd77_c00000{bottom:837.547067pt;}
.yae2_c00000{bottom:837.947067pt;}
.y1ca2_c00000{bottom:838.027067pt;}
.yac0_c00000{bottom:838.107067pt;}
.y1b4b_c00000{bottom:838.347067pt;}
.yb7f_c00000{bottom:838.347987pt;}
.y2062_c00000{bottom:838.507067pt;}
.y1587_c00000{bottom:838.587067pt;}
.y582_c00000{bottom:838.587747pt;}
.y323_c00000{bottom:838.667067pt;}
.y1c2b_c00000{bottom:838.907067pt;}
.ybe8_c00000{bottom:838.907147pt;}
.y60_c00000{bottom:839.068939pt;}
.y1434_c00000{bottom:839.147200pt;}
.ye3c_c00000{bottom:839.227067pt;}
.y6e2_c00000{bottom:839.307011pt;}
.y1ab7_c00000{bottom:839.867067pt;}
.y19d7_c00000{bottom:839.868067pt;}
.y1c4f_c00000{bottom:840.105755pt;}
.y98d_c00000{bottom:840.108147pt;}
.y1c0a_c00000{bottom:840.187067pt;}
.yd5c_c00000{bottom:840.267067pt;}
.y18bb_c00000{bottom:840.267251pt;}
.y1fbf_c00000{bottom:840.268147pt;}
.y2182_c00000{bottom:840.347067pt;}
.y192_c00000{bottom:840.507067pt;}
.y11ca_c00000{bottom:840.747067pt;}
.y1153_c00000{bottom:840.747243pt;}
.y1158_c00000{bottom:840.907563pt;}
.yfc2_c00000{bottom:840.907571pt;}
.y1917_c00000{bottom:840.989267pt;}
.y1922_c00000{bottom:840.992195pt;}
.y1f15_c00000{bottom:841.307067pt;}
.yffe_c00000{bottom:841.387083pt;}
.y1a45_c00000{bottom:841.467067pt;}
.y1789_c00000{bottom:841.467827pt;}
.y158b_c00000{bottom:841.547067pt;}
.y1005_c00000{bottom:841.547403pt;}
.y384_c00000{bottom:841.787067pt;}
.y278_c00000{bottom:841.947067pt;}
.y1afb_c00000{bottom:842.027067pt;}
.y423_c00000{bottom:842.267067pt;}
.y6c2_c00000{bottom:842.507067pt;}
.y2150_c00000{bottom:842.587067pt;}
.y1fef_c00000{bottom:842.667387pt;}
.y202c_c00000{bottom:842.907067pt;}
.y16cd_c00000{bottom:842.907395pt;}
.yc3d_c00000{bottom:842.987067pt;}
.y1845_c00000{bottom:843.067243pt;}
.y185d_c00000{bottom:843.068579pt;}
.y1872_c00000{bottom:843.069915pt;}
.y1883_c00000{bottom:843.071251pt;}
.y18f6_c00000{bottom:843.147227pt;}
.yf03_c00000{bottom:843.307067pt;}
.y228_c00000{bottom:843.947067pt;}
.y142_c00000{bottom:844.107067pt;}
.y1675_c00000{bottom:844.187075pt;}
.y10f0_c00000{bottom:844.427067pt;}
.y40_c00000{bottom:844.428003pt;}
.y7c4_c00000{bottom:844.507067pt;}
.y17f3_c00000{bottom:844.508067pt;}
.y17db_c00000{bottom:844.508291pt;}
.y5f1_c00000{bottom:844.667067pt;}
.y615_c00000{bottom:844.667387pt;}
.y670_c00000{bottom:844.669043pt;}
.y170f_c00000{bottom:844.747067pt;}
.ybb0_c00000{bottom:844.827067pt;}
.y1f34_c00000{bottom:844.987067pt;}
.y11a6_c00000{bottom:845.227067pt;}
.y11cd_c00000{bottom:845.307067pt;}
.y1c6c_c00000{bottom:845.307243pt;}
.y249_c00000{bottom:845.467067pt;}
.ydce_c00000{bottom:845.707067pt;}
.y21aa_c00000{bottom:845.867067pt;}
.y1cf7_c00000{bottom:845.947067pt;}
.y447_c00000{bottom:846.027067pt;}
.y1daf_c00000{bottom:846.027147pt;}
.y12b6_c00000{bottom:846.027907pt;}
.y13c6_c00000{bottom:846.187067pt;}
.y1f4a_c00000{bottom:846.347067pt;}
.y9c9_c00000{bottom:846.427067pt;}
.y1ebd_c00000{bottom:846.427235pt;}
.y1ee7_c00000{bottom:846.427243pt;}
.y9c0_c00000{bottom:846.507067pt;}
.y4cb_c00000{bottom:846.587067pt;}
.ycb8_c00000{bottom:846.747067pt;}
.y46e_c00000{bottom:846.907067pt;}
.yc0c_c00000{bottom:847.147067pt;}
.yac5_c00000{bottom:847.307067pt;}
.y113_c00000{bottom:847.547067pt;}
.y1aa2_c00000{bottom:847.547147pt;}
.y14ca_c00000{bottom:847.627067pt;}
.yeb8_c00000{bottom:847.707067pt;}
.yef_c00000{bottom:847.867067pt;}
.y20ab_c00000{bottom:848.187315pt;}
.y12ef_c00000{bottom:849.067067pt;}
.y1336_c00000{bottom:849.067243pt;}
.y1b5e_c00000{bottom:849.147067pt;}
.y82b_c00000{bottom:849.307147pt;}
.y97f_c00000{bottom:849.308827pt;}
.y1502_c00000{bottom:849.387067pt;}
.y1657_c00000{bottom:849.467067pt;}
.y1985_c00000{bottom:849.467147pt;}
.y69c_c00000{bottom:849.627067pt;}
.y870_c00000{bottom:849.787067pt;}
.y1060_c00000{bottom:849.947067pt;}
.y21c7_c00000{bottom:850.107067pt;}
.y2199_c00000{bottom:850.187067pt;}
.y1e92_c00000{bottom:850.427243pt;}
.y3c5_c00000{bottom:850.667067pt;}
.y1958_c00000{bottom:850.667667pt;}
.yb5e_c00000{bottom:850.668667pt;}
.y89e_c00000{bottom:850.827067pt;}
.y922_c00000{bottom:850.827227pt;}
.y1d95_c00000{bottom:850.987067pt;}
.y9b0_c00000{bottom:851.147067pt;}
.ydf3_c00000{bottom:851.307067pt;}
.y19e7_c00000{bottom:851.387067pt;}
.y4a2_c00000{bottom:851.627067pt;}
.ya90_c00000{bottom:851.706875pt;}
.y5cf_c00000{bottom:851.707067pt;}
.ya0f_c00000{bottom:851.947067pt;}
.y1625_c00000{bottom:852.187067pt;}
.y4f2_c00000{bottom:852.347067pt;}
.ya7_c00000{bottom:852.507067pt;}
.y329_c00000{bottom:852.747067pt;}
.y13e1_c00000{bottom:852.827067pt;}
.y2e1_c00000{bottom:852.907067pt;}
.y2ff_c00000{bottom:852.987067pt;}
.yb1c_c00000{bottom:853.067827pt;}
.y11f7_c00000{bottom:853.227067pt;}
.y6c1_c00000{bottom:853.307067pt;}
.y1ada_c00000{bottom:853.627067pt;}
.yd8f_c00000{bottom:853.707067pt;}
.y14c9_c00000{bottom:853.787067pt;}
.y1c2e_c00000{bottom:853.867067pt;}
.y1e3b_c00000{bottom:853.947067pt;}
.yc76_c00000{bottom:854.027067pt;}
.y76c_c00000{bottom:854.267067pt;}
.y13a3_c00000{bottom:854.667067pt;}
.ydad_c00000{bottom:854.747067pt;}
.y1ca1_c00000{bottom:854.907067pt;}
.y1433_c00000{bottom:855.147200pt;}
.y1b4a_c00000{bottom:855.227067pt;}
.yb7e_c00000{bottom:855.227907pt;}
.y581_c00000{bottom:855.467667pt;}
.y18ba_c00000{bottom:855.547083pt;}
.y7f4_c00000{bottom:855.627067pt;}
.y18ab_c00000{bottom:855.707067pt;}
.y47c_c00000{bottom:855.787067pt;}
.ye84_c00000{bottom:855.947067pt;}
.yf5a_c00000{bottom:856.027067pt;}
.y11c9_c00000{bottom:856.107067pt;}
.y1152_c00000{bottom:856.107235pt;}
.yfb0_c00000{bottom:856.107243pt;}
.y1157_c00000{bottom:856.267555pt;}
.yfc1_c00000{bottom:856.267563pt;}
.y9d1_c00000{bottom:856.427067pt;}
.y214f_c00000{bottom:856.667067pt;}
.yffd_c00000{bottom:856.747075pt;}
.y19d6_c00000{bottom:856.747987pt;}
.yf32_c00000{bottom:856.987067pt;}
.y98c_c00000{bottom:856.988067pt;}
.yc9_c00000{bottom:857.067067pt;}
.y1fbe_c00000{bottom:857.148067pt;}
.y361_c00000{bottom:857.387067pt;}
.y1afa_c00000{bottom:857.627067pt;}
.y816_c00000{bottom:857.787067pt;}
.y1916_c00000{bottom:857.788667pt;}
.y1921_c00000{bottom:857.791595pt;}
.y277_c00000{bottom:858.107067pt;}
.y1f14_c00000{bottom:858.187067pt;}
.y1a44_c00000{bottom:858.267067pt;}
.y1788_c00000{bottom:858.267227pt;}
.y16cc_c00000{bottom:858.267555pt;}
.y1844_c00000{bottom:858.347075pt;}
.y185c_c00000{bottom:858.348411pt;}
.y1871_c00000{bottom:858.349747pt;}
.y1882_c00000{bottom:858.351083pt;}
.y1d6_c00000{bottom:858.427067pt;}
.yc3c_c00000{bottom:858.507067pt;}
.y383_c00000{bottom:859.067067pt;}
.y11cc_c00000{bottom:859.147200pt;}
.y120e_c00000{bottom:859.387067pt;}
.y1c4e_c00000{bottom:859.546211pt;}
.y16c_c00000{bottom:859.547067pt;}
.y1fee_c00000{bottom:859.547307pt;}
.y10a7_c00000{bottom:859.787067pt;}
.y10b5_c00000{bottom:859.947067pt;}
.y18f5_c00000{bottom:860.027147pt;}
.yd17_c00000{bottom:860.187067pt;}
.y84f_c00000{bottom:860.347067pt;}
.y1be3_c00000{bottom:860.427067pt;}
.y20d5_c00000{bottom:860.507067pt;}
.y5f_c00000{bottom:860.508667pt;}
.y422_c00000{bottom:860.667067pt;}
.y1c6b_c00000{bottom:860.667235pt;}
.y1a58_c00000{bottom:861.387067pt;}
.y17f2_c00000{bottom:861.387987pt;}
.y17da_c00000{bottom:861.388211pt;}
.y5f0_c00000{bottom:861.547067pt;}
.y614_c00000{bottom:861.547307pt;}
.y66f_c00000{bottom:861.548963pt;}
.yb9c_c00000{bottom:861.707067pt;}
.y1ee6_c00000{bottom:861.707075pt;}
.y191_c00000{bottom:861.867067pt;}
.y2061_c00000{bottom:861.947315pt;}
.ye9d_c00000{bottom:862.107067pt;}
.y322_c00000{bottom:862.187067pt;}
.y1501_c00000{bottom:862.267067pt;}
.y1734_c00000{bottom:862.347067pt;}
.y1656_c00000{bottom:862.427067pt;}
.y204c_c00000{bottom:862.587067pt;}
.y446_c00000{bottom:862.907067pt;}
.ybaf_c00000{bottom:862.907827pt;}
.y1be5_c00000{bottom:863.067067pt;}
.yd2f_c00000{bottom:863.227067pt;}
.ydcd_c00000{bottom:863.307067pt;}
.y1acd_c00000{bottom:863.467067pt;}
.yf74_c00000{bottom:863.627067pt;}
.y248_c00000{bottom:863.707067pt;}
.y7c3_c00000{bottom:863.947067pt;}
.y15ca_c00000{bottom:864.107067pt;}
.y12ee_c00000{bottom:864.347067pt;}
.y1335_c00000{bottom:864.347075pt;}
.y1aa1_c00000{bottom:864.427067pt;}
.y8b9_c00000{bottom:864.827067pt;}
.y2089_c00000{bottom:864.907067pt;}
.y5a1_c00000{bottom:864.987067pt;}
.y1624_c00000{bottom:865.067067pt;}
.yd76_c00000{bottom:865.147067pt;}
.y141_c00000{bottom:865.307067pt;}
.y5bb_c00000{bottom:865.467067pt;}
.y740_c00000{bottom:865.707067pt;}
.y1e91_c00000{bottom:865.707075pt;}
.y3f_c00000{bottom:865.867731pt;}
.yc51_c00000{bottom:865.867987pt;}
.y1bb9_c00000{bottom:865.947067pt;}
.y19b6_c00000{bottom:865.947987pt;}
.ycf1_c00000{bottom:866.107067pt;}
.y82a_c00000{bottom:866.187067pt;}
.y97e_c00000{bottom:866.188747pt;}
.ybf3_c00000{bottom:866.267067pt;}
.y1984_c00000{bottom:866.347067pt;}
.y20aa_c00000{bottom:866.587067pt;}
.y1a2e_c00000{bottom:866.747067pt;}
.yf02_c00000{bottom:866.827067pt;}
.y4a1_c00000{bottom:866.907067pt;}
.y20b6_c00000{bottom:866.987067pt;}
.y1cf6_c00000{bottom:867.147200pt;}
.y3c4_c00000{bottom:867.467067pt;}
.y1ddb_c00000{bottom:867.467227pt;}
.yb5d_c00000{bottom:867.468067pt;}
.y21c6_c00000{bottom:867.547067pt;}
.y9c8_c00000{bottom:867.627067pt;}
.yc3b_c00000{bottom:867.707067pt;}
.y921_c00000{bottom:867.707147pt;}
.y912_c00000{bottom:867.787067pt;}
.y46d_c00000{bottom:868.027067pt;}
.y112_c00000{bottom:868.507067pt;}
.yae1_c00000{bottom:868.587067pt;}
.y19e6_c00000{bottom:868.987067pt;}
.yf59_c00000{bottom:868.988147pt;}
.y4f1_c00000{bottom:869.227067pt;}
.y1e3a_c00000{bottom:869.307067pt;}
.y2e0_c00000{bottom:869.467067pt;}
.y801_c00000{bottom:869.547067pt;}
.ye1f_c00000{bottom:869.787067pt;}
.yb1b_c00000{bottom:869.867227pt;}
.y156c_c00000{bottom:870.107067pt;}
.ydf2_c00000{bottom:870.427067pt;}
.y1430_c00000{bottom:870.507067pt;}
.yd8e_c00000{bottom:870.587067pt;}
.y1c2d_c00000{bottom:870.747067pt;}
.y815_c00000{bottom:870.747307pt;}
.y1949_c00000{bottom:870.907067pt;}
.y18b9_c00000{bottom:870.907075pt;}
.y1151_c00000{bottom:871.387067pt;}
.yfaf_c00000{bottom:871.387075pt;}
.y214e_c00000{bottom:871.467067pt;}
.y1156_c00000{bottom:871.547387pt;}
.yffc_c00000{bottom:872.107067pt;}
.yb7d_c00000{bottom:872.107827pt;}
.y580_c00000{bottom:872.267067pt;}
.y181d_c00000{bottom:872.427067pt;}
.y382_c00000{bottom:872.427427pt;}
.ybe7_c00000{bottom:872.586467pt;}
.y14c8_c00000{bottom:872.827067pt;}
.y11cb_c00000{bottom:872.907067pt;}
.y16fa_c00000{bottom:873.387075pt;}
.y16cb_c00000{bottom:873.547395pt;}
.y421_c00000{bottom:873.627067pt;}
.y19d5_c00000{bottom:873.627907pt;}
.y1843_c00000{bottom:873.707067pt;}
.y185b_c00000{bottom:873.708403pt;}
.y1870_c00000{bottom:873.709739pt;}
.y1881_c00000{bottom:873.711075pt;}
.y1122_c00000{bottom:873.787067pt;}
.y98b_c00000{bottom:873.867987pt;}
.y1126_c00000{bottom:873.947067pt;}
.y1fbd_c00000{bottom:874.027987pt;}
.y4ca_c00000{bottom:874.187067pt;}
.y360_c00000{bottom:874.267067pt;}
.ycb7_c00000{bottom:874.347067pt;}
.y1af9_c00000{bottom:874.507067pt;}
.y1500_c00000{bottom:874.587067pt;}
.y1915_c00000{bottom:874.668587pt;}
.y1920_c00000{bottom:874.671515pt;}
.yc0b_c00000{bottom:874.747067pt;}
.ya49_c00000{bottom:874.907067pt;}
.ydac_c00000{bottom:875.067067pt;}
.y1787_c00000{bottom:875.147147pt;}
.y10a6_c00000{bottom:875.147200pt;}
.y10b4_c00000{bottom:875.307067pt;}
.y1655_c00000{bottom:875.387067pt;}
.yee_c00000{bottom:875.467067pt;}
.y1c6a_c00000{bottom:875.947067pt;}
.ye67_c00000{bottom:876.187067pt;}
.y1fed_c00000{bottom:876.427227pt;}
.y1b5d_c00000{bottom:876.747067pt;}
.y18f4_c00000{bottom:876.907067pt;}
.y1ee5_c00000{bottom:877.067067pt;}
.y69b_c00000{bottom:877.227067pt;}
.y86f_c00000{bottom:877.387067pt;}
.yc75_c00000{bottom:877.547067pt;}
.y1674_c00000{bottom:877.947067pt;}
.y1623_c00000{bottom:878.027067pt;}
.y1bc2_c00000{bottom:878.107067pt;}
.y13c5_c00000{bottom:878.187067pt;}
.y17f1_c00000{bottom:878.187387pt;}
.y17d9_c00000{bottom:878.187611pt;}
.y13a2_c00000{bottom:878.347067pt;}
.y5ef_c00000{bottom:878.427067pt;}
.y613_c00000{bottom:878.427227pt;}
.y66e_c00000{bottom:878.428883pt;}
.ydf1_c00000{bottom:878.507067pt;}
.y170d_c00000{bottom:878.587067pt;}
.y9af_c00000{bottom:878.747067pt;}
.y1c4d_c00000{bottom:878.906147pt;}
.y1be1_c00000{bottom:878.907067pt;}
.y14c7_c00000{bottom:878.987067pt;}
.y1be2_c00000{bottom:879.067067pt;}
.y276_c00000{bottom:879.227067pt;}
.y1d5_c00000{bottom:879.547067pt;}
.y12f5_c00000{bottom:879.706883pt;}
.y12ed_c00000{bottom:879.707067pt;}
.y445_c00000{bottom:879.787067pt;}
.ybae_c00000{bottom:879.787747pt;}
.y1a2d_c00000{bottom:879.788939pt;}
.ya6_c00000{bottom:880.107067pt;}
.y204b_c00000{bottom:880.187067pt;}
.y1538_c00000{bottom:880.347067pt;}
.y1785_c00000{bottom:880.507067pt;}
.y32c_c00000{bottom:880.587067pt;}
.y11f6_c00000{bottom:880.827067pt;}
.ydcc_c00000{bottom:880.987067pt;}
.y1e90_c00000{bottom:881.067067pt;}
.y21a9_c00000{bottom:881.147200pt;}
.y9c7_c00000{bottom:881.467067pt;}
.y16b_c00000{bottom:881.867067pt;}
.y5e_c00000{bottom:881.948395pt;}
.yf73_c00000{bottom:882.027067pt;}
.y247_c00000{bottom:882.107067pt;}
.y4a0_c00000{bottom:882.267067pt;}
.y1aa0_c00000{bottom:882.347067pt;}
.y10ef_c00000{bottom:882.507067pt;}
.y15c9_c00000{bottom:882.667067pt;}
.yc50_c00000{bottom:882.747907pt;}
.y1bb8_c00000{bottom:882.827067pt;}
.ye1e_c00000{bottom:882.827531pt;}
.y19b5_c00000{bottom:882.827907pt;}
.y1605_c00000{bottom:882.907067pt;}
.y97d_c00000{bottom:883.068667pt;}
.y7c2_c00000{bottom:883.307067pt;}
.y47b_c00000{bottom:883.387067pt;}
.y138b_c00000{bottom:883.547067pt;}
.y1739_c00000{bottom:883.787067pt;}
.y153c_c00000{bottom:883.867067pt;}
.yae0_c00000{bottom:883.947067pt;}
.y5a0_c00000{bottom:884.107067pt;}
.y190_c00000{bottom:884.187067pt;}
.y1983_c00000{bottom:884.267067pt;}
.y3c3_c00000{bottom:884.347067pt;}
.y1dda_c00000{bottom:884.347147pt;}
.yb5c_c00000{bottom:884.347987pt;}
.y129e_c00000{bottom:884.507067pt;}
.y920_c00000{bottom:884.587067pt;}
.yc8_c00000{bottom:884.667067pt;}
.y4f0_c00000{bottom:884.747067pt;}
.ycf0_c00000{bottom:885.387067pt;}
.y111_c00000{bottom:885.547067pt;}
.y142f_c00000{bottom:885.867067pt;}
.yf58_c00000{bottom:885.868067pt;}
.y227_c00000{bottom:886.267067pt;}
.y140_c00000{bottom:886.427067pt;}
.y21c5_c00000{bottom:886.507067pt;}
.y19e5_c00000{bottom:886.667067pt;}
.y1155_c00000{bottom:886.747059pt;}
.yfae_c00000{bottom:886.747067pt;}
.yb1a_c00000{bottom:886.747147pt;}
.y3e_c00000{bottom:887.307459pt;}
.y1004_c00000{bottom:887.386819pt;}
.yd8d_c00000{bottom:887.387067pt;}
.y14ff_c00000{bottom:887.467067pt;}
.y814_c00000{bottom:887.627227pt;}
.y1ca0_c00000{bottom:887.707067pt;}
.yd16_c00000{bottom:887.787067pt;}
.y5ba_c00000{bottom:887.947067pt;}
.y20d4_c00000{bottom:888.107067pt;}
.y1654_c00000{bottom:888.267067pt;}
.y1c2a_c00000{bottom:888.427067pt;}
.y8b6_c00000{bottom:888.507067pt;}
.ya6a_c00000{bottom:888.507315pt;}
.y16f9_c00000{bottom:888.747075pt;}
.y16ca_c00000{bottom:888.907395pt;}
.y1a57_c00000{bottom:888.987067pt;}
.yb7c_c00000{bottom:888.987747pt;}
.y1121_c00000{bottom:889.147067pt;}
.y46c_c00000{bottom:889.227067pt;}
.yb9b_c00000{bottom:889.307067pt;}
.ybe6_c00000{bottom:889.466387pt;}
.y2162_c00000{bottom:889.547067pt;}
.ye9c_c00000{bottom:889.707067pt;}
.y1586_c00000{bottom:889.787067pt;}
.y1418_c00000{bottom:889.787315pt;}
.y420_c00000{bottom:890.507067pt;}
.y381_c00000{bottom:890.507827pt;}
.y98a_c00000{bottom:890.667387pt;}
.yd2e_c00000{bottom:890.827067pt;}
.y1fbc_c00000{bottom:890.907907pt;}
.y1622_c00000{bottom:890.987067pt;}
.y35f_c00000{bottom:891.067067pt;}
.y1af8_c00000{bottom:891.387067pt;}
.y1c08_c00000{bottom:891.467067pt;}
.y1c69_c00000{bottom:891.467147pt;}
.y1914_c00000{bottom:891.548507pt;}
.y191f_c00000{bottom:891.551435pt;}
.y1f13_c00000{bottom:891.947067pt;}
.y1f27_c00000{bottom:892.027067pt;}
.ya48_c00000{bottom:892.587067pt;}
.y95_c00000{bottom:892.668259pt;}
.yd75_c00000{bottom:892.747067pt;}
.y1ee4_c00000{bottom:892.907067pt;}
.y800_c00000{bottom:893.067067pt;}
.y1fec_c00000{bottom:893.307147pt;}
.y13c4_c00000{bottom:893.547067pt;}
.y179a_c00000{bottom:893.707067pt;}
.y1ebc_c00000{bottom:893.707259pt;}
.ybf2_c00000{bottom:893.867067pt;}
.y1be0_c00000{bottom:894.187067pt;}
.y1c09_c00000{bottom:894.347067pt;}
.y57f_c00000{bottom:894.587067pt;}
.y12f4_c00000{bottom:894.906555pt;}
.y12ec_c00000{bottom:895.067067pt;}
.y17f0_c00000{bottom:895.067307pt;}
.y17d8_c00000{bottom:895.067531pt;}
.y4ef_c00000{bottom:895.307067pt;}
.y612_c00000{bottom:895.307147pt;}
.y66d_c00000{bottom:895.308803pt;}
.y129d_c00000{bottom:895.387067pt;}
.ydf0_c00000{bottom:895.547067pt;}
.y1f33_c00000{bottom:895.627067pt;}
.y1733_c00000{bottom:896.107067pt;}
.y444_c00000{bottom:896.587067pt;}
.ybad_c00000{bottom:896.587147pt;}
.y1a2c_c00000{bottom:896.588339pt;}
.y110_c00000{bottom:896.747067pt;}
.y1673_c00000{bottom:896.907067pt;}
.yd5b_c00000{bottom:896.987067pt;}
.ya87_c00000{bottom:897.147067pt;}
.y49f_c00000{bottom:897.547067pt;}
.y89d_c00000{bottom:897.627067pt;}
.ya9b_c00000{bottom:897.707067pt;}
.y204a_c00000{bottom:897.867067pt;}
.y202b_c00000{bottom:897.947067pt;}
.y14c6_c00000{bottom:898.027067pt;}
.y105f_c00000{bottom:898.107067pt;}
.y1c4c_c00000{bottom:898.346603pt;}
.y275_c00000{bottom:898.347067pt;}
.y1948_c00000{bottom:898.507067pt;}
.ydcb_c00000{bottom:898.587067pt;}
.y120d_c00000{bottom:898.747067pt;}
.y1842_c00000{bottom:899.147067pt;}
.y14c0_c00000{bottom:899.227067pt;}
.yadf_c00000{bottom:899.307067pt;}
.yc4f_c00000{bottom:899.627827pt;}
.y1bb7_c00000{bottom:899.707067pt;}
.ye1d_c00000{bottom:899.707451pt;}
.y19b4_c00000{bottom:899.707827pt;}
.y14fe_c00000{bottom:899.787067pt;}
.y97c_c00000{bottom:899.868067pt;}
.y1e39_c00000{bottom:899.947067pt;}
.y181c_c00000{bottom:900.027067pt;}
.y2181_c00000{bottom:900.187067pt;}
.yf72_c00000{bottom:900.427067pt;}
.y246_c00000{bottom:900.507067pt;}
.y1738_c00000{bottom:900.667067pt;}
.y1d4_c00000{bottom:900.747067pt;}
.y13a1_c00000{bottom:900.827067pt;}
.y86e_c00000{bottom:900.907067pt;}
.y15c8_c00000{bottom:901.067067pt;}
.y1432_c00000{bottom:901.146891pt;}
.y142e_c00000{bottom:901.147067pt;}
.y3c2_c00000{bottom:901.227067pt;}
.yb5b_c00000{bottom:901.227907pt;}
.y211d_c00000{bottom:901.307067pt;}
.y4c9_c00000{bottom:901.787067pt;}
.ycb6_c00000{bottom:901.947067pt;}
.yfad_c00000{bottom:902.107067pt;}
.y2df_c00000{bottom:902.267067pt;}
.yc0a_c00000{bottom:902.347067pt;}
.y1150_c00000{bottom:902.747067pt;}
.yf57_c00000{bottom:902.747987pt;}
.yd40_c00000{bottom:902.907067pt;}
.yed_c00000{bottom:903.067067pt;}
.yffb_c00000{bottom:903.387067pt;}
.y5d_c00000{bottom:903.468275pt;}
.yb19_c00000{bottom:903.627067pt;}
.y1621_c00000{bottom:903.867067pt;}
.y16c9_c00000{bottom:904.107235pt;}
.y16a_c00000{bottom:904.187067pt;}
.yd8c_c00000{bottom:904.267067pt;}
.y16ec_c00000{bottom:904.267555pt;}
.y1b5c_c00000{bottom:904.347067pt;}
.y1120_c00000{bottom:904.507067pt;}
.y813_c00000{bottom:904.507147pt;}
.y2198_c00000{bottom:904.507227pt;}
.y1ad9_c00000{bottom:904.587067pt;}
.y69a_c00000{bottom:904.827067pt;}
.y1c9f_c00000{bottom:905.067075pt;}
.y226_c00000{bottom:905.467155pt;}
.y10a5_c00000{bottom:905.787067pt;}
.yb7b_c00000{bottom:905.787147pt;}
.y21c4_c00000{bottom:905.867067pt;}
.y1d94_c00000{bottom:906.187067pt;}
.y9ae_c00000{bottom:906.347067pt;}
.y18f_c00000{bottom:906.507067pt;}
.y568_c00000{bottom:906.907067pt;}
.ya0e_c00000{bottom:907.147067pt;}
.y41f_c00000{bottom:907.387067pt;}
.y380_c00000{bottom:907.387747pt;}
.y989_c00000{bottom:907.547307pt;}
.y13f_c00000{bottom:907.627067pt;}
.ya5_c00000{bottom:907.707067pt;}
.y1fbb_c00000{bottom:907.787827pt;}
.y1e32_c00000{bottom:907.947067pt;}
.y1786_c00000{bottom:908.107067pt;}
.y2cb_c00000{bottom:908.187067pt;}
.y1c07_c00000{bottom:908.347067pt;}
.y1913_c00000{bottom:908.347907pt;}
.y191e_c00000{bottom:908.350835pt;}
.y11f5_c00000{bottom:908.427067pt;}
.y1f12_c00000{bottom:908.747067pt;}
.y3d_c00000{bottom:908.827339pt;}
.y1f26_c00000{bottom:908.907067pt;}
.y1ebb_c00000{bottom:909.067251pt;}
.y76b_c00000{bottom:909.387067pt;}
.y1cf5_c00000{bottom:909.467067pt;}
.y13c3_c00000{bottom:909.547067pt;}
.y13c2_c00000{bottom:909.707067pt;}
.y1feb_c00000{bottom:910.187067pt;}
.y14c4_c00000{bottom:910.267067pt;}
.y12f3_c00000{bottom:910.346707pt;}
.y46b_c00000{bottom:910.347067pt;}
.y105c_c00000{bottom:910.427067pt;}
.y159d_c00000{bottom:910.507067pt;}
.y18f3_c00000{bottom:910.587067pt;}
.y89c_c00000{bottom:910.587387pt;}
.y8b5_c00000{bottom:910.827067pt;}
.y47a_c00000{bottom:910.987067pt;}
.y138a_c00000{bottom:911.067067pt;}
.y1d2f_c00000{bottom:911.147067pt;}
.y1acc_c00000{bottom:911.627067pt;}
.y105e_c00000{bottom:911.947067pt;}
.y17ef_c00000{bottom:911.947227pt;}
.y17d7_c00000{bottom:911.947451pt;}
.y2161_c00000{bottom:912.107067pt;}
.y4ee_c00000{bottom:912.187067pt;}
.y66c_c00000{bottom:912.188723pt;}
.yc7_c00000{bottom:912.267067pt;}
.ydef_c00000{bottom:912.507067pt;}
.y14fd_c00000{bottom:912.667067pt;}
.y49e_c00000{bottom:912.907067pt;}
.y2121_c00000{bottom:912.987067pt;}
.y1e8f_c00000{bottom:913.067251pt;}
.y443_c00000{bottom:913.467067pt;}
.y129c_c00000{bottom:913.468067pt;}
.y1a2b_c00000{bottom:913.468259pt;}
.y1f49_c00000{bottom:913.787067pt;}
.y1e38_c00000{bottom:913.947067pt;}
.y1653_c00000{bottom:914.187067pt;}
.ybe5_c00000{bottom:914.347067pt;}
.y274_c00000{bottom:914.507067pt;}
.yade_c00000{bottom:914.587067pt;}
.y1f71_c00000{bottom:914.907067pt;}
.y1e3c_c00000{bottom:915.307067pt;}
.yd15_c00000{bottom:915.387067pt;}
.y2049_c00000{bottom:915.467067pt;}
.y5b9_c00000{bottom:915.547067pt;}
.y1672_c00000{bottom:915.787067pt;}
.y10f_c00000{bottom:915.867067pt;}
.ya55_c00000{bottom:916.107067pt;}
.ydca_c00000{bottom:916.267067pt;}
.y86d_c00000{bottom:916.346483pt;}
.y21a8_c00000{bottom:916.427067pt;}
.y1431_c00000{bottom:916.506883pt;}
.y142d_c00000{bottom:916.507067pt;}
.yc4e_c00000{bottom:916.507747pt;}
.y1737_c00000{bottom:916.587067pt;}
.ye1c_c00000{bottom:916.587371pt;}
.y19b3_c00000{bottom:916.587747pt;}
.y97b_c00000{bottom:916.747987pt;}
.y1620_c00000{bottom:916.827067pt;}
.yb9a_c00000{bottom:916.907067pt;}
.y57e_c00000{bottom:917.067067pt;}
.y189a_c00000{bottom:917.147315pt;}
.ye9b_c00000{bottom:917.307067pt;}
.y35_c00000{bottom:917.333333pt;}
.y1da2_c00000{bottom:917.387067pt;}
.y1799_c00000{bottom:917.387315pt;}
.y35e_c00000{bottom:917.467067pt;}
.y14bf_c00000{bottom:917.627067pt;}
.y1c4b_c00000{bottom:917.706539pt;}
.y3c1_c00000{bottom:918.107067pt;}
.yb5a_c00000{bottom:918.107827pt;}
.y18b8_c00000{bottom:918.267251pt;}
.yd2d_c00000{bottom:918.427067pt;}
.yf71_c00000{bottom:918.827067pt;}
.y11a5_c00000{bottom:919.307067pt;}
.y16c8_c00000{bottom:919.387075pt;}
.y114f_c00000{bottom:919.467067pt;}
.y225_c00000{bottom:919.547067pt;}
.y16eb_c00000{bottom:919.547395pt;}
.yf56_c00000{bottom:919.627907pt;}
.y2180_c00000{bottom:919.707067pt;}
.y2de_c00000{bottom:919.947067pt;}
.ya9a_c00000{bottom:920.107067pt;}
.ya47_c00000{bottom:920.187067pt;}
.yd74_c00000{bottom:920.267067pt;}
.ydab_c00000{bottom:920.347067pt;}
.y1c9e_c00000{bottom:920.427067pt;}
.y111f_c00000{bottom:920.507067pt;}
.y7c1_c00000{bottom:920.587067pt;}
.ya86_c00000{bottom:920.667067pt;}
.ybf1_c00000{bottom:921.307067pt;}
.y812_c00000{bottom:921.387067pt;}
.yd5a_c00000{bottom:921.467067pt;}
.y202a_c00000{bottom:921.627067pt;}
.y10a4_c00000{bottom:921.787067pt;}
.y19e4_c00000{bottom:921.947067pt;}
.y14c3_c00000{bottom:922.587067pt;}
.yb7a_c00000{bottom:922.667067pt;}
.y1d3_c00000{bottom:923.067067pt;}
.y41e_c00000{bottom:924.187067pt;}
.y37f_c00000{bottom:924.187147pt;}
.y1d07_c00000{bottom:924.347067pt;}
.y988_c00000{bottom:924.427227pt;}
.y1eba_c00000{bottom:924.427243pt;}
.y1fba_c00000{bottom:924.587227pt;}
.y13c1_c00000{bottom:924.907067pt;}
.y5c_c00000{bottom:924.908003pt;}
.y14fc_c00000{bottom:924.987067pt;}
.y1af7_c00000{bottom:925.067067pt;}
.y1912_c00000{bottom:925.308347pt;}
.y191d_c00000{bottom:925.311275pt;}
.y2c_c00000{bottom:925.333333pt;}
.y1c68_c00000{bottom:925.546755pt;}
.y1f11_c00000{bottom:925.627067pt;}
.y12f2_c00000{bottom:925.706699pt;}
.y105d_c00000{bottom:925.707067pt;}
.y1334_c00000{bottom:925.708043pt;}
.yc09_c00000{bottom:925.867067pt;}
.y1947_c00000{bottom:926.107067pt;}
.y169_c00000{bottom:926.507067pt;}
.y1231_c00000{bottom:926.587067pt;}
.ybcb_c00000{bottom:926.747067pt;}
.y206b_c00000{bottom:926.827067pt;}
.y1652_c00000{bottom:927.067067pt;}
.y89b_c00000{bottom:927.467307pt;}
.y181b_c00000{bottom:927.627067pt;}
.y1732_c00000{bottom:927.787067pt;}
.y49d_c00000{bottom:928.267067pt;}
.y13a0_c00000{bottom:928.427067pt;}
.y1e8e_c00000{bottom:928.427243pt;}
.y13e_c00000{bottom:928.747067pt;}
.y1bc1_c00000{bottom:928.827067pt;}
.y17ee_c00000{bottom:928.827147pt;}
.y17d6_c00000{bottom:928.827371pt;}
.y1736_c00000{bottom:928.907067pt;}
.y4ed_c00000{bottom:928.987067pt;}
.y66b_c00000{bottom:928.988123pt;}
.y4c8_c00000{bottom:929.387067pt;}
.ycb5_c00000{bottom:929.547067pt;}
.y161f_c00000{bottom:929.787067pt;}
.yadd_c00000{bottom:929.947067pt;}
.ybac_c00000{bottom:930.347067pt;}
.y129b_c00000{bottom:930.347987pt;}
.y1a2a_c00000{bottom:930.348179pt;}
.y1cf4_c00000{bottom:930.427067pt;}
.y2120_c00000{bottom:930.507067pt;}
.yec_c00000{bottom:930.587067pt;}
.y299_c00000{bottom:930.667067pt;}
.ybe4_c00000{bottom:931.226307pt;}
.y20b5_c00000{bottom:931.387067pt;}
.y46a_c00000{bottom:931.547067pt;}
.y1f48_c00000{bottom:931.627067pt;}
.y1e37_c00000{bottom:931.707067pt;}
.y1f32_c00000{bottom:931.867067pt;}
.y10e_c00000{bottom:931.947067pt;}
.y142b_c00000{bottom:932.027067pt;}
.y699_c00000{bottom:932.427067pt;}
.y7c0_c00000{bottom:932.827067pt;}
.y76a_c00000{bottom:932.907067pt;}
.y1f70_c00000{bottom:933.147067pt;}
.ye1b_c00000{bottom:933.386771pt;}
.y1bb6_c00000{bottom:933.387067pt;}
.y19b2_c00000{bottom:933.387147pt;}
.yc4d_c00000{bottom:933.387667pt;}
.y18b7_c00000{bottom:933.547083pt;}
.y97a_c00000{bottom:933.627907pt;}
.y1d93_c00000{bottom:933.787067pt;}
.ydc9_c00000{bottom:933.867067pt;}
.y9ad_c00000{bottom:933.947067pt;}
.y21a7_c00000{bottom:934.027067pt;}
.yc84_c00000{bottom:934.187067pt;}
.y5ee_c00000{bottom:934.507067pt;}
.y16c7_c00000{bottom:934.747075pt;}
.yfac_c00000{bottom:934.827067pt;}
.y16ea_c00000{bottom:934.907395pt;}
.yb59_c00000{bottom:934.987747pt;}
.ya4_c00000{bottom:935.307067pt;}
.y1899_c00000{bottom:935.547067pt;}
.y224_c00000{bottom:935.627067pt;}
.y1841_c00000{bottom:935.707067pt;}
.y86c_c00000{bottom:935.786939pt;}
.y442_c00000{bottom:935.787067pt;}
.y1731_c00000{bottom:935.947067pt;}
.y14be_c00000{bottom:936.027067pt;}
.y2197_c00000{bottom:936.107067pt;}
.yf55_c00000{bottom:936.507827pt;}
.yd14_c00000{bottom:936.587067pt;}
.y5b8_c00000{bottom:936.827067pt;}
.y1c4a_c00000{bottom:937.066475pt;}
.y2029_c00000{bottom:937.067067pt;}
.yf70_c00000{bottom:937.227067pt;}
.y2dd_c00000{bottom:937.547067pt;}
.y114e_c00000{bottom:937.867067pt;}
.yd3f_c00000{bottom:937.947067pt;}
.y3c0_c00000{bottom:938.107067pt;}
.y1d2e_c00000{bottom:938.507067pt;}
.y479_c00000{bottom:938.587067pt;}
.y1d54_c00000{bottom:938.667067pt;}
.y14f8_c00000{bottom:939.067067pt;}
.yace_c00000{bottom:939.227067pt;}
.y811_c00000{bottom:939.307067pt;}
.y105b_c00000{bottom:939.547067pt;}
.y321_c00000{bottom:939.707067pt;}
.y1eb9_c00000{bottom:939.707075pt;}
.yc6_c00000{bottom:939.867067pt;}
.y1651_c00000{bottom:940.027067pt;}
.y1ad8_c00000{bottom:940.507067pt;}
.yb79_c00000{bottom:940.587067pt;}
.y12f1_c00000{bottom:940.906371pt;}
.y13c0_c00000{bottom:940.906747pt;}
.y12eb_c00000{bottom:940.907067pt;}
.y1333_c00000{bottom:940.907715pt;}
.y35d_c00000{bottom:940.987067pt;}
.y37e_c00000{bottom:941.067067pt;}
.y987_c00000{bottom:941.307147pt;}
.y1fb9_c00000{bottom:941.467147pt;}
.y1af6_c00000{bottom:941.947067pt;}
.y1735_c00000{bottom:942.107067pt;}
.y1911_c00000{bottom:942.188267pt;}
.y191c_c00000{bottom:942.191195pt;}
.y11f4_c00000{bottom:942.267067pt;}
.y156b_c00000{bottom:942.587067pt;}
.y161e_c00000{bottom:942.667067pt;}
.y7ff_c00000{bottom:943.147067pt;}
.y1f10_c00000{bottom:943.387067pt;}
.y49c_c00000{bottom:943.547067pt;}
.ya0d_c00000{bottom:943.627835pt;}
.y1e8d_c00000{bottom:943.707075pt;}
.ybca_c00000{bottom:944.347067pt;}
.y89a_c00000{bottom:944.347227pt;}
.yb99_c00000{bottom:944.507067pt;}
.y57d_c00000{bottom:944.667067pt;}
.ybf0_c00000{bottom:944.747315pt;}
.yb18_c00000{bottom:944.987315pt;}
.y142a_c00000{bottom:945.227067pt;}
.y1fea_c00000{bottom:945.227227pt;}
.yadc_c00000{bottom:945.307067pt;}
.y1d2_c00000{bottom:945.387067pt;}
.y1bc0_c00000{bottom:945.627067pt;}
.y17ed_c00000{bottom:945.707067pt;}
.y17d5_c00000{bottom:945.707291pt;}
.y4ec_c00000{bottom:945.867067pt;}
.y66a_c00000{bottom:945.868043pt;}
.y5b_c00000{bottom:946.347731pt;}
.ydee_c00000{bottom:946.507067pt;}
.y214d_c00000{bottom:946.827067pt;}
.y14c2_c00000{bottom:947.067067pt;}
.yc08_c00000{bottom:947.147307pt;}
.yc3a_c00000{bottom:947.227067pt;}
.yc83_c00000{bottom:947.227907pt;}
.y1a29_c00000{bottom:947.228099pt;}
.ya99_c00000{bottom:947.707067pt;}
.ydaa_c00000{bottom:947.867067pt;}
.ybe3_c00000{bottom:948.106227pt;}
.y168_c00000{bottom:948.827067pt;}
.y18b6_c00000{bottom:948.907075pt;}
.ye66_c00000{bottom:949.067067pt;}
.y11f3_c00000{bottom:949.867067pt;}
.y13d_c00000{bottom:949.947067pt;}
.y1e36_c00000{bottom:950.107067pt;}
.y16c6_c00000{bottom:950.107235pt;}
.yc4c_c00000{bottom:950.187067pt;}
.ye1a_c00000{bottom:950.266691pt;}
.y1d7b_c00000{bottom:950.267067pt;}
.y16e9_c00000{bottom:950.267555pt;}
.y979_c00000{bottom:950.507827pt;}
.y3c_c00000{bottom:950.667067pt;}
.y2048_c00000{bottom:950.747067pt;}
.y1b5b_c00000{bottom:951.067067pt;}
.y10d_c00000{bottom:951.147067pt;}
.y1f31_c00000{bottom:951.307067pt;}
.ydc8_c00000{bottom:951.467067pt;}
.y21a6_c00000{bottom:951.627067pt;}
.yb58_c00000{bottom:951.787147pt;}
.y211f_c00000{bottom:951.947067pt;}
.y469_c00000{bottom:952.667067pt;}
.y1730_c00000{bottom:952.827067pt;}
.y1650_c00000{bottom:952.987067pt;}
.yfab_c00000{bottom:953.227067pt;}
.yf54_c00000{bottom:953.387747pt;}
.y1c06_c00000{bottom:953.467067pt;}
.y1946_c00000{bottom:953.707067pt;}
.y14c5_c00000{bottom:954.427067pt;}
.y273_c00000{bottom:954.827067pt;}
.y1eb8_c00000{bottom:955.067067pt;}
.y86b_c00000{bottom:955.146875pt;}
.y2dc_c00000{bottom:955.147067pt;}
.y105a_c00000{bottom:955.547067pt;}
.y111e_c00000{bottom:955.627067pt;}
.y139f_c00000{bottom:955.947067pt;}
.yf6f_c00000{bottom:956.107067pt;}
.y13bf_c00000{bottom:956.187067pt;}
.y1332_c00000{bottom:956.187547pt;}
.y114d_c00000{bottom:956.267067pt;}
.y132f_c00000{bottom:956.347067pt;}
.y1c49_c00000{bottom:956.506931pt;}
.y35c_c00000{bottom:956.507067pt;}
.y12ea_c00000{bottom:956.587067pt;}
.y223_c00000{bottom:956.827067pt;}
.y9fc_c00000{bottom:956.907067pt;}
.y4c7_c00000{bottom:956.987067pt;}
.y94_c00000{bottom:957.067595pt;}
.ycb4_c00000{bottom:957.147067pt;}
.y14f7_c00000{bottom:957.467067pt;}
.y298_c00000{bottom:958.187067pt;}
.yeb_c00000{bottom:958.267067pt;}
.y1fb8_c00000{bottom:958.347067pt;}
.y1af5_c00000{bottom:958.827067pt;}
.y49b_c00000{bottom:958.907067pt;}
.yc2e_c00000{bottom:958.987067pt;}
.y1910_c00000{bottom:958.987667pt;}
.y191b_c00000{bottom:958.990595pt;}
.y1e8c_c00000{bottom:959.067067pt;}
.y14c1_c00000{bottom:959.387067pt;}
.y1671_c00000{bottom:959.947067pt;}
.y698_c00000{bottom:960.027067pt;}
.ya0c_c00000{bottom:960.427235pt;}
.yadb_c00000{bottom:960.587067pt;}
.y899_c00000{bottom:961.227147pt;}
.y9ac_c00000{bottom:961.547067pt;}
.y478_c00000{bottom:961.867067pt;}
.y70f_c00000{bottom:962.107067pt;}
.y1fe9_c00000{bottom:962.107147pt;}
.y214c_c00000{bottom:962.187067pt;}
.y14fb_c00000{bottom:962.427067pt;}
.y1bbf_c00000{bottom:962.587067pt;}
.y17d4_c00000{bottom:962.587211pt;}
.y7bf_c00000{bottom:962.747067pt;}
.y4eb_c00000{bottom:962.747963pt;}
.ya3_c00000{bottom:962.907067pt;}
.y2ad_c00000{bottom:963.147067pt;}
.yd2c_c00000{bottom:963.307067pt;}
.yc5_c00000{bottom:963.387067pt;}
.yded_c00000{bottom:963.547067pt;}
.y142c_c00000{bottom:963.627067pt;}
.y1a9f_c00000{bottom:964.107067pt;}
.ybab_c00000{bottom:964.107147pt;}
.yc07_c00000{bottom:964.107747pt;}
.yc39_c00000{bottom:964.107827pt;}
.y1a28_c00000{bottom:964.108019pt;}
.y18b5_c00000{bottom:964.267067pt;}
.y7fe_c00000{bottom:964.427067pt;}
.y3_c00000{bottom:965.333333pt;}
.y16c5_c00000{bottom:965.387075pt;}
.yb98_c00000{bottom:965.707067pt;}
.y19b1_c00000{bottom:965.787067pt;}
.y164f_c00000{bottom:965.867067pt;}
.y6d7_c00000{bottom:966.187067pt;}
.ya98_c00000{bottom:966.907067pt;}
.ye19_c00000{bottom:967.146611pt;}
.y1d7a_c00000{bottom:967.147067pt;}
.y10c_c00000{bottom:967.227067pt;}
.y978_c00000{bottom:967.387747pt;}
.y11f2_c00000{bottom:967.467067pt;}
.y1d1_c00000{bottom:967.627067pt;}
.y3b_c00000{bottom:967.867611pt;}
.ye3b_c00000{bottom:968.027067pt;}
.y1f30_c00000{bottom:968.107067pt;}
.yc4b_c00000{bottom:968.187067pt;}
.yb57_c00000{bottom:968.667067pt;}
.y1bdf_c00000{bottom:969.067067pt;}
.ydc7_c00000{bottom:969.147067pt;}
.y1f6f_c00000{bottom:969.787067pt;}
.yf53_c00000{bottom:970.187147pt;}
.y1c05_c00000{bottom:970.347067pt;}
.y12e9_c00000{bottom:970.427067pt;}
.y14bd_c00000{bottom:970.507067pt;}
.ya85_c00000{bottom:970.747067pt;}
.y272_c00000{bottom:970.907067pt;}
.y13c_c00000{bottom:971.067067pt;}
.yfaa_c00000{bottom:971.627067pt;}
.y132e_c00000{bottom:971.707067pt;}
.y1331_c00000{bottom:971.707859pt;}
.y1c9d_c00000{bottom:971.867067pt;}
.y13be_c00000{bottom:971.947067pt;}
.y206a_c00000{bottom:972.107067pt;}
.y57c_c00000{bottom:972.267067pt;}
.y2047_c00000{bottom:972.347315pt;}
.y2196_c00000{bottom:972.747067pt;}
.y2db_c00000{bottom:972.827067pt;}
.ybe2_c00000{bottom:972.986907pt;}
.y217f_c00000{bottom:973.227067pt;}
.y468_c00000{bottom:973.867067pt;}
.y49a_c00000{bottom:974.267067pt;}
.y111d_c00000{bottom:974.507067pt;}
.y86a_c00000{bottom:974.587331pt;}
.y114c_c00000{bottom:974.667067pt;}
.y1c67_c00000{bottom:974.907067pt;}
.yf6e_c00000{bottom:975.387067pt;}
.y172f_c00000{bottom:975.787067pt;}
.y191a_c00000{bottom:975.789995pt;}
.y1c48_c00000{bottom:975.866867pt;}
.y35b_c00000{bottom:975.867067pt;}
.y222_c00000{bottom:975.947067pt;}
.y1af4_c00000{bottom:976.027067pt;}
.y14bc_c00000{bottom:976.507067pt;}
.yc2d_c00000{bottom:976.667067pt;}
.y214b_c00000{bottom:978.027067pt;}
.y898_c00000{bottom:978.107067pt;}
.y164e_c00000{bottom:978.827067pt;}
.y19e3_c00000{bottom:978.827315pt;}
.y1fe8_c00000{bottom:978.987067pt;}
.y17d3_c00000{bottom:979.386611pt;}
.y1bbe_c00000{bottom:979.387067pt;}
.y7be_c00000{bottom:979.627067pt;}
.y4ea_c00000{bottom:979.627883pt;}
.y18b4_c00000{bottom:980.107067pt;}
.y1f2f_c00000{bottom:980.427067pt;}
.ydec_c00000{bottom:980.507067pt;}
.y16c4_c00000{bottom:980.747067pt;}
.y1a9e_c00000{bottom:980.987067pt;}
.yc06_c00000{bottom:980.987667pt;}
.yc38_c00000{bottom:980.987747pt;}
.y1a27_c00000{bottom:980.987939pt;}
.y1945_c00000{bottom:981.307067pt;}
.y1429_c00000{bottom:981.467067pt;}
.y161d_c00000{bottom:982.027067pt;}
.y697_c00000{bottom:983.547067pt;}
.ye18_c00000{bottom:984.026531pt;}
.y12e8_c00000{bottom:984.027067pt;}
.y1c9c_c00000{bottom:984.107067pt;}
.y977_c00000{bottom:984.187147pt;}
.y477_c00000{bottom:984.427067pt;}
.y9fb_c00000{bottom:984.507067pt;}
.y4c6_c00000{bottom:984.587067pt;}
.ycb3_c00000{bottom:984.747067pt;}
.y11f1_c00000{bottom:985.147067pt;}
.ya0b_c00000{bottom:985.627067pt;}
.yea_c00000{bottom:985.707067pt;}
.ybc9_c00000{bottom:985.787067pt;}
.yc4_c00000{bottom:985.867067pt;}
.ya2_c00000{bottom:986.427067pt;}
.y132d_c00000{bottom:986.907067pt;}
.y1330_c00000{bottom:986.907531pt;}
.y14fa_c00000{bottom:986.987067pt;}
.yf52_c00000{bottom:987.067067pt;}
.y1bde_c00000{bottom:987.227067pt;}
.y1eb7_c00000{bottom:987.467067pt;}
.y1f6e_c00000{bottom:988.667067pt;}
.yada_c00000{bottom:988.987067pt;}
.ye3a_c00000{bottom:989.227659pt;}
.y3a_c00000{bottom:989.307339pt;}
.y1_c00000{bottom:989.333333pt;}
.y6d6_c00000{bottom:989.467067pt;}
.y57b_c00000{bottom:989.627067pt;}
.y703_c00000{bottom:989.707067pt;}
.y1d0_c00000{bottom:989.947067pt;}
.yfa9_c00000{bottom:990.507067pt;}
.y1059_c00000{bottom:990.667067pt;}
.y10b_c00000{bottom:990.747067pt;}
.y1e35_c00000{bottom:990.907067pt;}
.yb56_c00000{bottom:990.987067pt;}
.y1e8b_c00000{bottom:991.467067pt;}
.y164d_c00000{bottom:991.787067pt;}
.ya84_c00000{bottom:992.027067pt;}
.y18e_c00000{bottom:992.107067pt;}
.y13b_c00000{bottom:992.267067pt;}
.y2069_c00000{bottom:993.147200pt;}
.y1fb7_c00000{bottom:993.307067pt;}
.y111c_c00000{bottom:993.627067pt;}
.y7e8_c00000{bottom:993.787067pt;}
.y214a_c00000{bottom:993.947067pt;}
.y869_c00000{bottom:993.947267pt;}
.y14f6_c00000{bottom:994.267067pt;}
.y1af3_c00000{bottom:994.427067pt;}
.yd59_c00000{bottom:994.907067pt;}
.y467_c00000{bottom:994.987067pt;}
.y1230_c00000{bottom:995.067067pt;}
.y35a_c00000{bottom:995.307067pt;}
.y1c47_c00000{bottom:995.307323pt;}
.yad9_c00000{bottom:995.787067pt;}
.y499_c00000{bottom:995.867067pt;}
.y897_c00000{bottom:996.027067pt;}
.y16c3_c00000{bottom:996.107067pt;}
.y1bbd_c00000{bottom:996.187067pt;}
.y17d2_c00000{bottom:996.266531pt;}
.y1c9b_c00000{bottom:996.427067pt;}
.y7bd_c00000{bottom:996.507067pt;}
.y4e9_c00000{bottom:996.507803pt;}
.y19e2_c00000{bottom:997.227067pt;}
.ydeb_c00000{bottom:997.547067pt;}
.ybaa_c00000{bottom:997.787067pt;}
.yc37_c00000{bottom:997.787147pt;}
.y1a26_c00000{bottom:997.787339pt;}
.y11f0_c00000{bottom:998.187067pt;}
.y14f9_c00000{bottom:999.227067pt;}
.y1bdd_c00000{bottom:999.467067pt;}
.y13bd_c00000{bottom:999.867067pt;}
.y161c_c00000{bottom:1000.107067pt;}
.y1d79_c00000{bottom:1000.907067pt;}
.y132c_c00000{bottom:1002.587067pt;}
.yc2c_c00000{bottom:1004.267067pt;}
.y164c_c00000{bottom:1004.667067pt;}
.y1944_c00000{bottom:1008.907067pt;}
.yfa8_c00000{bottom:1009.627067pt;}
.y39_c00000{bottom:1010.747067pt;}
.y498_c00000{bottom:1011.947067pt;}
.y476_c00000{bottom:1012.027067pt;}
.y896_c00000{bottom:1012.107067pt;}
.y518_c00000{bottom:1012.187067pt;}
.y1cf_c00000{bottom:1012.267067pt;}
.y2149_c00000{bottom:1012.587067pt;}
.yf6d_c00000{bottom:1012.667067pt;}
.y13a_c00000{bottom:1013.227067pt;}
.ye9_c00000{bottom:1013.307067pt;}
.y1b5_c00000{bottom:1013.387067pt;}
.y4e8_c00000{bottom:1013.387723pt;}
.yc3_c00000{bottom:1013.467067pt;}
.y1fe7_c00000{bottom:1013.947067pt;}
.ydea_c00000{bottom:1014.507067pt;}
.y1f6d_c00000{bottom:1014.507683pt;}
.ye39_c00000{bottom:1014.587067pt;}
.y359_c00000{bottom:1014.667067pt;}
.y1a25_c00000{bottom:1014.667259pt;}
.y132b_c00000{bottom:1016.427067pt;}
.y976_c00000{bottom:1017.227067pt;}
.y7e7_c00000{bottom:1017.307067pt;}
.y164b_c00000{bottom:1017.627067pt;}
.ye17_c00000{bottom:1018.507067pt;}
.y1d78_c00000{bottom:1020.907067pt;}
.yc2b_c00000{bottom:1023.387067pt;}
.yfa7_c00000{bottom:1025.787067pt;}
.y475_c00000{bottom:1045.467067pt;}
.yad6_c00000{bottom:1047.707067pt;}
.y203f_c00000{bottom:1047.707075pt;}
.yad5_c00000{bottom:1062.987067pt;}
.y295_c00000{bottom:1063.067067pt;}
.y17_c00000{bottom:1106.666667pt;}
.y33_c00000{bottom:1305.333333pt;}
.y32_c00000{bottom:1426.666667pt;}
.he_c00000{height:0.000000pt;}
.h84_c00000{height:7.038281pt;}
.h44_c00000{height:10.364062pt;}
.h65_c00000{height:10.642500pt;}
.h83_c00000{height:14.289844pt;}
.h4d_c00000{height:14.886562pt;}
.h8c_c00000{height:15.040000pt;}
.h17_c00000{height:20.000000pt;}
.h33_c00000{height:21.042187pt;}
.h2b_c00000{height:21.607500pt;}
.h4a_c00000{height:22.218750pt;}
.h8_c00000{height:22.666667pt;}
.h13_c00000{height:24.000000pt;}
.ha_c00000{height:25.333333pt;}
.h3c_c00000{height:26.067187pt;}
.h15_c00000{height:26.666667pt;}
.h8b_c00000{height:28.366406pt;}
.h4b_c00000{height:29.550937pt;}
.h11_c00000{height:30.666667pt;}
.h43_c00000{height:31.390625pt;}
.h32_c00000{height:31.406250pt;}
.h3a_c00000{height:32.250000pt;}
.h16_c00000{height:33.333333pt;}
.h3f_c00000{height:33.375000pt;}
.h62_c00000{height:35.487500pt;}
.h21_c00000{height:35.617969pt;}
.h3e_c00000{height:36.745312pt;}
.h2f_c00000{height:39.030469pt;}
.h10_c00000{height:39.101562pt;}
.h7f_c00000{height:41.749531pt;}
.h26_c00000{height:41.770312pt;}
.h22_c00000{height:42.656250pt;}
.h5_c00000{height:42.666667pt;}
.h2a_c00000{height:42.892500pt;}
.h9b_c00000{height:43.269375pt;}
.h9d_c00000{height:43.269908pt;}
.h9e_c00000{height:43.575000pt;}
.h97_c00000{height:43.936967pt;}
.h95_c00000{height:43.937500pt;}
.h30_c00000{height:44.072344pt;}
.h3d_c00000{height:44.388750pt;}
.h49_c00000{height:44.437500pt;}
.h9_c00000{height:46.210938pt;}
.h3b_c00000{height:47.109375pt;}
.h2e_c00000{height:48.294844pt;}
.h58_c00000{height:48.375000pt;}
.hb2_c00000{height:49.096967pt;}
.hb1_c00000{height:49.097500pt;}
.h23_c00000{height:49.694531pt;}
.hc_c00000{height:49.765625pt;}
.h9a_c00000{height:50.309375pt;}
.h9f_c00000{height:50.615000pt;}
.h9c_c00000{height:50.629375pt;}
.hb_c00000{height:52.000000pt;}
.h2d_c00000{height:52.422344pt;}
.h59_c00000{height:52.446837pt;}
.h40_c00000{height:52.448437pt;}
.h78_c00000{height:53.215548pt;}
.h7a_c00000{height:53.215655pt;}
.h7b_c00000{height:53.216188pt;}
.h79_c00000{height:53.216721pt;}
.h90_c00000{height:53.217500pt;}
.h31_c00000{height:53.857500pt;}
.h1f_c00000{height:54.136094pt;}
.ha1_c00000{height:54.216967pt;}
.ha0_c00000{height:54.217500pt;}
.ha2_c00000{height:54.218033pt;}
.h1_c00000{height:54.666667pt;}
.h45_c00000{height:55.736250pt;}
.h42_c00000{height:57.444844pt;}
.h89_c00000{height:57.469822pt;}
.h34_c00000{height:57.473437pt;}
.ha3_c00000{height:57.737500pt;}
.h98_c00000{height:58.017500pt;}
.h99_c00000{height:58.018033pt;}
.h96_c00000{height:58.338033pt;}
.ha7_c00000{height:58.377500pt;}
.h19_c00000{height:58.406250pt;}
.h38_c00000{height:59.017500pt;}
.haa_c00000{height:59.700000pt;}
.h39_c00000{height:60.300000pt;}
.h4c_c00000{height:61.076250pt;}
.h24_c00000{height:61.490156pt;}
.h7e_c00000{height:62.777143pt;}
.h29_c00000{height:62.781250pt;}
.h7d_c00000{height:62.807860pt;}
.h5a_c00000{height:62.808500pt;}
.h7c_c00000{height:62.808820pt;}
.h36_c00000{height:62.809460pt;}
.h48_c00000{height:62.809780pt;}
.h41_c00000{height:62.810740pt;}
.h35_c00000{height:62.811060pt;}
.h8a_c00000{height:62.811220pt;}
.h63_c00000{height:62.811295pt;}
.h94_c00000{height:62.811380pt;}
.h64_c00000{height:62.811796pt;}
.h93_c00000{height:62.812393pt;}
.h27_c00000{height:62.812500pt;}
.h91_c00000{height:63.302273pt;}
.h92_c00000{height:63.304459pt;}
.h4e_c00000{height:63.860000pt;}
.h4f_c00000{height:63.860533pt;}
.hf_c00000{height:63.984375pt;}
.h28_c00000{height:64.500000pt;}
.ha6_c00000{height:65.416967pt;}
.ha5_c00000{height:65.417500pt;}
.h2c_c00000{height:66.750000pt;}
.h66_c00000{height:67.212500pt;}
.h67_c00000{height:67.532500pt;}
.h6c_c00000{height:67.533033pt;}
.h69_c00000{height:67.534740pt;}
.h14_c00000{height:68.000000pt;}
.h37_c00000{height:71.210312pt;}
.h47_c00000{height:72.331967pt;}
.h46_c00000{height:72.332500pt;}
.h25_c00000{height:73.176562pt;}
.h1a_c00000{height:75.142500pt;}
.ha8_c00000{height:75.852500pt;}
.ha4_c00000{height:76.172500pt;}
.h18_c00000{height:77.763750pt;}
.h20_c00000{height:79.171875pt;}
.h3_c00000{height:82.666667pt;}
.h57_c00000{height:83.167904pt;}
.h55_c00000{height:83.168437pt;}
.h56_c00000{height:83.937500pt;}
.h61_c00000{height:84.259516pt;}
.h6_c00000{height:85.312500pt;}
.h1e_c00000{height:86.107500pt;}
.h80_c00000{height:87.648437pt;}
.h81_c00000{height:87.968438pt;}
.hae_c00000{height:88.737500pt;}
.hac_c00000{height:89.057500pt;}
.h68_c00000{height:91.852500pt;}
.h6f_c00000{height:91.853033pt;}
.h6b_c00000{height:92.171967pt;}
.h5c_c00000{height:92.172500pt;}
.h6a_c00000{height:92.173033pt;}
.h6d_c00000{height:93.217500pt;}
.h1d_c00000{height:96.853594pt;}
.hd_c00000{height:97.333333pt;}
.h5b_c00000{height:103.735000pt;}
.ha9_c00000{height:104.012500pt;}
.h1b_c00000{height:105.562500pt;}
.h2_c00000{height:106.640625pt;}
.h74_c00000{height:113.567765pt;}
.h76_c00000{height:113.567904pt;}
.h75_c00000{height:113.888405pt;}
.h77_c00000{height:113.888971pt;}
.h87_c00000{height:114.208437pt;}
.h5e_c00000{height:114.335548pt;}
.h53_c00000{height:114.337500pt;}
.h5f_c00000{height:114.656188pt;}
.h52_c00000{height:114.657500pt;}
.h8f_c00000{height:114.976828pt;}
.h5d_c00000{height:114.977500pt;}
.h8e_c00000{height:114.982172pt;}
.h60_c00000{height:115.297468pt;}
.h50_c00000{height:115.297500pt;}
.h82_c00000{height:123.168437pt;}
.hab_c00000{height:123.617500pt;}
.had_c00000{height:123.937500pt;}
.h88_c00000{height:124.936967pt;}
.h86_c00000{height:125.408437pt;}
.h8d_c00000{height:126.177500pt;}
.haf_c00000{height:126.537500pt;}
.hb0_c00000{height:126.538033pt;}
.h1c_c00000{height:129.000000pt;}
.h85_c00000{height:135.772500pt;}
.h51_c00000{height:137.460000pt;}
.h72_c00000{height:137.780000pt;}
.h73_c00000{height:138.099467pt;}
.h71_c00000{height:138.100000pt;}
.h6e_c00000{height:140.172500pt;}
.h70_c00000{height:140.811967pt;}
.h54_c00000{height:145.058033pt;}
.h4_c00000{height:177.734375pt;}
.h12_c00000{height:193.333333pt;}
.h7_c00000{height:349.333333pt;}
.h0_c00000{height:1122.666667pt;}
.w7_c00000{width:0.000000pt;}
.w13_c00000{width:3.360000pt;}
.we_c00000{width:61.333333pt;}
.wa_c00000{width:90.666667pt;}
.wf_c00000{width:105.333333pt;}
.w1_c00000{width:106.666667pt;}
.w5_c00000{width:110.666667pt;}
.w2_c00000{width:120.000000pt;}
.wd_c00000{width:153.333333pt;}
.w11_c00000{width:270.666667pt;}
.w6_c00000{width:374.666667pt;}
.w10_c00000{width:536.000000pt;}
.w9_c00000{width:578.666667pt;}
.w8_c00000{width:598.666667pt;}
.wc_c00000{width:600.000000pt;}
.wb_c00000{width:610.666667pt;}
.w3_c00000{width:620.000000pt;}
.w4_c00000{width:621.333333pt;}
.w0_c00000{width:793.333333pt;}
.w12_c00000{width:793.626667pt;}
.xfc_c00000{left:-1.120000pt;}
.x0_c00000{left:0.000000pt;}
.xf_c00000{left:1.333333pt;}
.x2_c00000{left:8.853333pt;}
.xb_c00000{left:10.213333pt;}
.x10_c00000{left:16.000000pt;}
.x1a_c00000{left:21.541333pt;}
.x4_c00000{left:22.933333pt;}
.x21_c00000{left:25.978667pt;}
.x9_c00000{left:41.253333pt;}
.x16_c00000{left:48.000000pt;}
.x1b_c00000{left:58.177333pt;}
.xe_c00000{left:62.666667pt;}
.xd_c00000{left:64.000000pt;}
.xa_c00000{left:83.453333pt;}
.x1c_c00000{left:94.666667pt;}
.x7_c00000{left:100.000000pt;}
.x5_c00000{left:101.333333pt;}
.x14_c00000{left:103.010667pt;}
.x63_c00000{left:104.000000pt;}
.x17_c00000{left:108.000000pt;}
.xb6_c00000{left:111.120000pt;}
.x24_c00000{left:113.440000pt;}
.x10b_c00000{left:114.640000pt;}
.x3c_c00000{left:115.680000pt;}
.x77_c00000{left:117.600000pt;}
.x19_c00000{left:118.666667pt;}
.xf1_c00000{left:119.600000pt;}
.x53_c00000{left:120.560000pt;}
.x12a_c00000{left:121.680000pt;}
.x71_c00000{left:122.800000pt;}
.xee_c00000{left:124.240000pt;}
.x44_c00000{left:125.200000pt;}
.x72_c00000{left:126.800000pt;}
.x31_c00000{left:128.159568pt;}
.x27_c00000{left:130.078645pt;}
.xf2_c00000{left:131.200000pt;}
.x35_c00000{left:132.400000pt;}
.x60_c00000{left:133.440000pt;}
.x26_c00000{left:134.880000pt;}
.x97_c00000{left:135.840000pt;}
.x56_c00000{left:137.440000pt;}
.xef_c00000{left:138.400000pt;}
.x5b_c00000{left:139.520000pt;}
.x54_c00000{left:141.680000pt;}
.xcf_c00000{left:143.920000pt;}
.xb4_c00000{left:144.960000pt;}
.xf6_c00000{left:146.320000pt;}
.x13a_c00000{left:147.520000pt;}
.x5f_c00000{left:149.440000pt;}
.x39_c00000{left:151.280000pt;}
.x68_c00000{left:152.400216pt;}
.x3e_c00000{left:153.520000pt;}
.x6a_c00000{left:155.600000pt;}
.x7b_c00000{left:157.120000pt;}
.x5c_c00000{left:158.400000pt;}
.xd0_c00000{left:159.840000pt;}
.x57_c00000{left:161.440000pt;}
.x3d_c00000{left:162.960000pt;}
.xd1_c00000{left:164.880000pt;}
.x3b_c00000{left:167.280000pt;}
.x29_c00000{left:169.513732pt;}
.x18_c00000{left:170.681333pt;}
.x3f_c00000{left:172.480000pt;}
.x3a_c00000{left:175.280000pt;}
.x43_c00000{left:176.800000pt;}
.xb7_c00000{left:178.240000pt;}
.x80_c00000{left:179.600000pt;}
.x92_c00000{left:180.720000pt;}
.x1e_c00000{left:184.369333pt;}
.x8_c00000{left:185.813333pt;}
.x42_c00000{left:189.040000pt;}
.x40_c00000{left:191.280000pt;}
.xad_c00000{left:192.400000pt;}
.xcc_c00000{left:193.360000pt;}
.x120_c00000{left:194.480000pt;}
.x76_c00000{left:196.160000pt;}
.x1d_c00000{left:197.865333pt;}
.x137_c00000{left:198.800000pt;}
.x81_c00000{left:199.759152pt;}
.x138_c00000{left:202.480000pt;}
.xd4_c00000{left:203.840000pt;}
.x82_c00000{left:205.440936pt;}
.x5d_c00000{left:206.399344pt;}
.x64_c00000{left:208.000000pt;}
.xce_c00000{left:209.120000pt;}
.x41_c00000{left:210.240000pt;}
.x85_c00000{left:211.440000pt;}
.x8e_c00000{left:213.280000pt;}
.xf0_c00000{left:215.120000pt;}
.x135_c00000{left:216.400000pt;}
.xcd_c00000{left:217.360000pt;}
.x73_c00000{left:219.600000pt;}
.x13c_c00000{left:220.640000pt;}
.xbe_c00000{left:221.840000pt;}
.xc_c00000{left:223.573333pt;}
.xbf_c00000{left:224.560000pt;}
.xec_c00000{left:225.920000pt;}
.x93_c00000{left:227.200000pt;}
.x28_c00000{left:229.915125pt;}
.x133_c00000{left:230.880000pt;}
.xb5_c00000{left:234.000000pt;}
.x8d_c00000{left:235.840000pt;}
.x15_c00000{left:237.557333pt;}
.x118_c00000{left:239.280000pt;}
.x78_c00000{left:242.000000pt;}
.x134_c00000{left:243.360000pt;}
.x109_c00000{left:244.720000pt;}
.x136_c00000{left:245.840000pt;}
.x70_c00000{left:247.280000pt;}
.x74_c00000{left:249.360000pt;}
.x4c_c00000{left:250.480000pt;}
.x13b_c00000{left:252.160000pt;}
.x22_c00000{left:253.333333pt;}
.xc0_c00000{left:255.360000pt;}
.x12b_c00000{left:256.320000pt;}
.xba_c00000{left:257.520000pt;}
.xd8_c00000{left:259.440000pt;}
.xde_c00000{left:260.560000pt;}
.x119_c00000{left:261.680000pt;}
.x2f_c00000{left:262.963397pt;}
.x96_c00000{left:264.640000pt;}
.x105_c00000{left:266.000000pt;}
.x130_c00000{left:268.320000pt;}
.x6f_c00000{left:270.000000pt;}
.x108_c00000{left:272.080000pt;}
.xf3_c00000{left:273.840000pt;}
.x2e_c00000{left:275.280000pt;}
.x6_c00000{left:276.928000pt;}
.x139_c00000{left:278.080000pt;}
.x2c_c00000{left:279.040000pt;}
.x48_c00000{left:280.240000pt;}
.x106_c00000{left:282.080000pt;}
.x99_c00000{left:283.120000pt;}
.xf4_c00000{left:284.080000pt;}
.x110_c00000{left:285.840000pt;}
.x10e_c00000{left:287.678920pt;}
.x98_c00000{left:289.360000pt;}
.x10d_c00000{left:290.639496pt;}
.x86_c00000{left:291.760000pt;}
.xbc_c00000{left:295.280000pt;}
.x25_c00000{left:296.398991pt;}
.x10f_c00000{left:297.680000pt;}
.x2a_c00000{left:299.027045pt;}
.xed_c00000{left:300.720000pt;}
.xff_c00000{left:302.400000pt;}
.xfb_c00000{left:305.520000pt;}
.xbb_c00000{left:307.120000pt;}
.xb8_c00000{left:309.600000pt;}
.x100_c00000{left:310.640000pt;}
.x62_c00000{left:313.280000pt;}
.x121_c00000{left:316.880000pt;}
.x12_c00000{left:320.045333pt;}
.x9a_c00000{left:321.840000pt;}
.x52_c00000{left:323.040000pt;}
.xc1_c00000{left:325.280000pt;}
.x4f_c00000{left:326.640000pt;}
.x58_c00000{left:327.920000pt;}
.x34_c00000{left:329.520000pt;}
.x47_c00000{left:330.880000pt;}
.xcb_c00000{left:332.880000pt;}
.x46_c00000{left:334.240000pt;}
.x11_c00000{left:336.000000pt;}
.x4d_c00000{left:340.400000pt;}
.xf7_c00000{left:343.120000pt;}
.x2d_c00000{left:344.640000pt;}
.x20_c00000{left:346.666667pt;}
.x117_c00000{left:347.600000pt;}
.x33_c00000{left:349.440688pt;}
.x13_c00000{left:352.000000pt;}
.x6d_c00000{left:353.439368pt;}
.xdf_c00000{left:355.120000pt;}
.xab_c00000{left:356.880000pt;}
.x13d_c00000{left:359.120000pt;}
.xd7_c00000{left:360.560000pt;}
.xc2_c00000{left:364.080000pt;}
.x37_c00000{left:365.360000pt;}
.x1f_c00000{left:366.666667pt;}
.x38_c00000{left:368.000000pt;}
.x2b_c00000{left:368.960000pt;}
.x49_c00000{left:370.080000pt;}
.x45_c00000{left:372.000000pt;}
.x4a_c00000{left:374.080000pt;}
.x4b_c00000{left:376.080000pt;}
.x32_c00000{left:378.006934pt;}
.x111_c00000{left:382.720000pt;}
.x7e_c00000{left:384.559760pt;}
.x65_c00000{left:385.760000pt;}
.x9c_c00000{left:387.680000pt;}
.xae_c00000{left:388.640000pt;}
.x55_c00000{left:390.160680pt;}
.x9b_c00000{left:391.920000pt;}
.x51_c00000{left:393.200000pt;}
.x12c_c00000{left:395.200000pt;}
.x23_c00000{left:396.880000pt;}
.x9d_c00000{left:399.440000pt;}
.x95_c00000{left:401.520344pt;}
.x79_c00000{left:403.360000pt;}
.xd6_c00000{left:404.720000pt;}
.x4e_c00000{left:406.400000pt;}
.xac_c00000{left:407.600000pt;}
.x69_c00000{left:408.960000pt;}
.x102_c00000{left:410.240000pt;}
.x107_c00000{left:411.520000pt;}
.x7d_c00000{left:413.600000pt;}
.x87_c00000{left:414.640000pt;}
.xdc_c00000{left:415.840912pt;}
.xe6_c00000{left:419.200000pt;}
.x11f_c00000{left:420.879920pt;}
.x6e_c00000{left:423.440000pt;}
.x84_c00000{left:425.279768pt;}
.xe5_c00000{left:427.120000pt;}
.xe1_c00000{left:431.840000pt;}
.x5a_c00000{left:432.960000pt;}
.x125_c00000{left:434.320000pt;}
.xea_c00000{left:435.520000pt;}
.xd2_c00000{left:438.160000pt;}
.xf8_c00000{left:440.000000pt;}
.x13f_c00000{left:441.920000pt;}
.x30_c00000{left:444.240868pt;}
.x8f_c00000{left:445.200000pt;}
.xd5_c00000{left:447.120000pt;}
.x11a_c00000{left:448.320000pt;}
.xe0_c00000{left:449.600000pt;}
.xda_c00000{left:452.959840pt;}
.x122_c00000{left:454.560000pt;}
.x66_c00000{left:456.240000pt;}
.xc3_c00000{left:459.440000pt;}
.x7c_c00000{left:460.800000pt;}
.x36_c00000{left:463.200000pt;}
.xb0_c00000{left:464.640000pt;}
.xf9_c00000{left:466.080000pt;}
.x7f_c00000{left:470.240000pt;}
.xdd_c00000{left:473.360000pt;}
.x129_c00000{left:474.800000pt;}
.x104_c00000{left:475.760000pt;}
.xd3_c00000{left:478.080000pt;}
.xaf_c00000{left:480.640000pt;}
.x59_c00000{left:482.400000pt;}
.x131_c00000{left:483.360000pt;}
.x123_c00000{left:484.320000pt;}
.x90_c00000{left:486.160000pt;}
.x11b_c00000{left:487.280000pt;}
.x6c_c00000{left:489.519632pt;}
.xb1_c00000{left:493.120000pt;}
.x126_c00000{left:494.080000pt;}
.x127_c00000{left:495.760000pt;}
.xc4_c00000{left:498.240000pt;}
.x88_c00000{left:499.600000pt;}
.xb9_c00000{left:500.960624pt;}
.xe3_c00000{left:510.800000pt;}
.xe8_c00000{left:512.240000pt;}
.x94_c00000{left:514.240000pt;}
.x83_c00000{left:518.160000pt;}
.xe7_c00000{left:520.000000pt;}
.x1_c00000{left:521.333333pt;}
.xc5_c00000{left:522.320000pt;}
.x101_c00000{left:524.080000pt;}
.xc6_c00000{left:526.480000pt;}
.x12d_c00000{left:527.520000pt;}
.xfd_c00000{left:528.880048pt;}
.x67_c00000{left:531.280000pt;}
.x11c_c00000{left:533.440000pt;}
.xfe_c00000{left:536.400392pt;}
.x89_c00000{left:537.440000pt;}
.x112_c00000{left:540.239856pt;}
.xe2_c00000{left:544.160000pt;}
.x113_c00000{left:545.680048pt;}
.x13e_c00000{left:553.040000pt;}
.xa1_c00000{left:555.600000pt;}
.x9f_c00000{left:557.680000pt;}
.x124_c00000{left:559.280000pt;}
.x6b_c00000{left:561.599672pt;}
.x9e_c00000{left:564.160000pt;}
.xc7_c00000{left:565.360000pt;}
.xa0_c00000{left:566.880000pt;}
.x75_c00000{left:568.880000pt;}
.x11d_c00000{left:569.840000pt;}
.x103_c00000{left:570.800000pt;}
.xb2_c00000{left:572.000000pt;}
.x7a_c00000{left:573.440000pt;}
.x10a_c00000{left:577.520000pt;}
.xdb_c00000{left:578.720192pt;}
.x8a_c00000{left:579.920000pt;}
.x12e_c00000{left:585.120000pt;}
.x61_c00000{left:589.840000pt;}
.xd9_c00000{left:590.800000pt;}
.xa4_c00000{left:593.520000pt;}
.xa3_c00000{left:595.520000pt;}
.x50_c00000{left:597.040000pt;}
.xc8_c00000{left:598.960000pt;}
.xf5_c00000{left:600.240000pt;}
.xa2_c00000{left:602.080000pt;}
.x91_c00000{left:604.160000pt;}
.x116_c00000{left:607.839424pt;}
.x115_c00000{left:610.800000pt;}
.x114_c00000{left:611.920000pt;}
.xe9_c00000{left:613.360000pt;}
.xb3_c00000{left:614.560000pt;}
.xe4_c00000{left:617.360000pt;}
.xeb_c00000{left:619.680000pt;}
.x10c_c00000{left:621.121608pt;}
.x8b_c00000{left:622.480000pt;}
.x128_c00000{left:625.920000pt;}
.xc9_c00000{left:628.560000pt;}
.xa6_c00000{left:631.360000pt;}
.xa7_c00000{left:633.360000pt;}
.x12f_c00000{left:635.200000pt;}
.xa5_c00000{left:639.920000pt;}
.x3_c00000{left:641.333333pt;}
.x5e_c00000{left:642.640000pt;}
.x11e_c00000{left:646.000000pt;}
.x132_c00000{left:651.440000pt;}
.x8c_c00000{left:660.320000pt;}
.xca_c00000{left:664.320000pt;}
.xbd_c00000{left:666.560000pt;}
.xaa_c00000{left:668.960000pt;}
.xa8_c00000{left:671.759867pt;}
.xa9_c00000{left:674.480000pt;}
.xfa_c00000{left:678.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_77bc295847b7a863b85be6e3.woff2')format("woff");}.ff1_c00001{font-family:ff1_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:ff2_c00001;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff2_c00001{font-family:ff2_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:ff3_c00001;src:url('chunks/assets/font_ec6d7b252ba0223683a85c23.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff4_c00001{font-family:ff4_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:ff5_c00001;src:url('chunks/assets/font_f859001ea8ceb55cb58b32ac.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_a7c016c9d625746110a559cc.woff2')format("woff");}.ff6_c00001{font-family:ff6_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:ff7_c00001;src:url('chunks/assets/font_eb4210a210d9415ff6069a57.woff2')format("woff");}.ff7_c00001{font-family:ff7_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:ff8_c00001;src:url('chunks/assets/font_5b7030409920eaf01eae762a.woff2')format("woff");}.ff8_c00001{font-family:ff8_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:ff9_c00001;src:url('chunks/assets/font_10d6cb4b59f3af6fffd31a27.woff2')format("woff");}.ff9_c00001{font-family:ff9_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:ffa_c00001;src:url('chunks/assets/font_87e5e00c7a8e9e80a7c341d9.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ffb_c00001{font-family:ffb_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:ffc_c00001;src:url('chunks/assets/font_7f94ead900c22ad68031dd93.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00001;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ffd_c00001{font-family:ffd_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:ffe_c00001;src:url('chunks/assets/font_a84385c90a001b4028c18f9b.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_8344c2ec8d5fe9060c08cee8.woff2')format("woff");}.fff_c00001{font-family:fff_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:ff10_c00001;src:url('chunks/assets/font_f436fc360571638000921840.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff11_c00001{font-family:ff11_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:ff12_c00001;src:url('chunks/assets/font_36edb14b48749b46d7b575f7.woff2')format("woff");}.ff12_c00001{font-family:ff12_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:ff13_c00001;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff13_c00001{font-family:ff13_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:ff14_c00001;src:url('chunks/assets/font_551887d98240dd6e520dcd6f.woff2')format("woff");}.ff14_c00001{font-family:ff14_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:ff15_c00001;src:url('chunks/assets/font_5febd560da6c833372c75b32.woff2')format("woff");}.ff15_c00001{font-family:ff15_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:ff16_c00001;src:url('chunks/assets/font_fd64b1636922db878d0b0823.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff17_c00001{font-family:ff17_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:ff18_c00001;src:url('chunks/assets/font_8ffb24e298814e0d2e73be95.woff2')format("woff");}.ff18_c00001{font-family:ff18_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:ff19_c00001;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff19_c00001{font-family:ff19_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:ff1a_c00001;src:url('chunks/assets/font_14e2cff18f835e43673fcd4b.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_70824c75d5a2823f920d7290.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_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:ff1c_c00001;src:url('chunks/assets/font_1e6f5ec6db83a1d3e19eb8ee.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_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:ff1e_c00001;src:url('chunks/assets/font_fc450037f3bff0f5240868f1.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_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:ff1f_c00001;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_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:ff20_c00001;src:url('chunks/assets/font_c3a9b8d9bb4bb0ea3575a4e1.woff2')format("woff");}.ff20_c00001{font-family:ff20_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:ff21_c00001;src:url('chunks/assets/font_f29778372e26c0e24ef66a90.woff2')format("woff");}.ff21_c00001{font-family:ff21_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:ff22_c00001;src:url('chunks/assets/font_ea2b9a24fbd2bf7f4c197d3d.woff2')format("woff");}.ff22_c00001{font-family:ff22_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:ff23_c00001;src:url('chunks/assets/font_2238b48844686de4ef1a6586.woff2')format("woff");}.ff23_c00001{font-family:ff23_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:ff24_c00001;src:url('chunks/assets/font_ce762bdc4a6134635df0a67d.woff2')format("woff");}.ff24_c00001{font-family:ff24_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:ff25_c00001;src:url('chunks/assets/font_1022c344d79da41787d59101.woff2')format("woff");}.ff25_c00001{font-family:ff25_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:ff26_c00001;src:url('chunks/assets/font_62b447d7d392b705bd95e3fe.woff2')format("woff");}.ff26_c00001{font-family:ff26_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:ff27_c00001;src:url('chunks/assets/font_9f75534bd1199ed62f7e1388.woff2')format("woff");}.ff27_c00001{font-family:ff27_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:ff28_c00001;src:url('chunks/assets/font_862812c3b29bdea5f311bafa.woff2')format("woff");}.ff28_c00001{font-family:ff28_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:ff29_c00001;src:url('chunks/assets/font_b95b7b82bd4b2395124bef8b.woff2')format("woff");}.ff29_c00001{font-family:ff29_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:ff2a_c00001;src:url('chunks/assets/font_b869c137a547b79b1ba01298.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_e6ccd13592c2144a44d24b2e.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_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:ff2c_c00001;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_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:ff2d_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_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:ff2e_c00001;src:url('chunks/assets/font_4b055ddaa7d587c287d6ef4d.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;}
@font-face{font-family:ff2f_c00001;src:url('chunks/assets/font_7817e4a10bade63205acbd15.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_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:ff30_c00001;src:url('chunks/assets/font_2134dd0ae7a94ed7bffe1772.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00001;src:url('chunks/assets/font_9a93341a43518a1258553552.woff2')format("woff");}.ff31_c00001{font-family:ff31_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:ff32_c00001;src:url('chunks/assets/font_e5abedd80038a6fb19a8bb93.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00001;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff33_c00001{font-family:ff33_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:ff34_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff34_c00001{font-family:ff34_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:ff35_c00001;src:url('chunks/assets/font_69cf4ec3d778d5acad55e48c.woff2')format("woff");}.ff35_c00001{font-family:ff35_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:ff36_c00001;src:url('chunks/assets/font_fe6471c9c21bd131c636c487.woff2')format("woff");}.ff36_c00001{font-family:ff36_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:ff37_c00001;src:url('chunks/assets/font_cb3afae30238706d42137a00.woff2')format("woff");}.ff37_c00001{font-family:ff37_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:ff38_c00001;src:url('chunks/assets/font_f373e8d533891d47996d44af.woff2')format("woff");}.ff38_c00001{font-family:ff38_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:ff39_c00001;src:url('chunks/assets/font_59e23cf5256f1695f8b8ff81.woff2')format("woff");}.ff39_c00001{font-family:ff39_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:ff3a_c00001;src:url('chunks/assets/font_a6d9887666c54ccb287b91b7.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_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:ff3b_c00001;src:url('chunks/assets/font_e32c3067e820befd5e2faa96.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_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:ff3c_c00001;src:url('chunks/assets/font_81690fb6ab0a6b34cb5ecafd.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_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:ff3d_c00001;src:url('chunks/assets/font_51e7cb20f9afa3bc6a4470ff.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_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:ff3f_c00001;src:url('chunks/assets/font_1421360f1b60db54433e551f.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_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:ff40_c00001;src:url('chunks/assets/font_736da7a5836307c36ca28461.woff2')format("woff");}.ff40_c00001{font-family:ff40_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:ff41_c00001;src:url('chunks/assets/font_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff42_c00001{font-family:ff42_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:ff43_c00001;src:url('chunks/assets/font_e353c8efa259f3b30c5678da.woff2')format("woff");}.ff43_c00001{font-family:ff43_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:ff44_c00001;src:url('chunks/assets/font_abe385afab03417485a71f30.woff2')format("woff");}.ff44_c00001{font-family:ff44_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:ff45_c00001;src:url('chunks/assets/font_9dac6de4778079eb65d6990a.woff2')format("woff");}.ff45_c00001{font-family:ff45_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:ff46_c00001;src:url('chunks/assets/font_95fc3292f310cb164ae8d3fa.woff2')format("woff");}.ff46_c00001{font-family:ff46_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:ff47_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff47_c00001{font-family:ff47_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:ff48_c00001;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00001;src:url('chunks/assets/font_181d5a8a6ac4579e762d0f1d.woff2')format("woff");}.ff49_c00001{font-family:ff49_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:ff4a_c00001;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_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:ff4b_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_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:ff4c_c00001;src:url('chunks/assets/font_7c9dbfa055c0eeb0809c0edc.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_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:ff4d_c00001;src:url('chunks/assets/font_61ea8754f68844f1cb62be0f.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_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:ff4e_c00001;src:url('chunks/assets/font_dd6d5af70d0dae5424f7c457.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_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:ff4f_c00001;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff50_c00001{font-family:ff50_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:ff51_c00001;src:url('chunks/assets/font_7be712de948fcfac6014e83e.woff2')format("woff");}.ff51_c00001{font-family:ff51_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:ff52_c00001;src:url('chunks/assets/font_f0b49680bcdadde9e5fb614c.woff2')format("woff");}.ff52_c00001{font-family:ff52_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:ff53_c00001;src:url('chunks/assets/font_65abc7ab4505e162ae771dab.woff2')format("woff");}.ff53_c00001{font-family:ff53_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:ff54_c00001;src:url('chunks/assets/font_494ec066df2ae5b79c9a334e.woff2')format("woff");}.ff54_c00001{font-family:ff54_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:ff55_c00001;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff55_c00001{font-family:ff55_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:ff56_c00001;src:url('chunks/assets/font_b90d2a270c3c3216c5a382db.woff2')format("woff");}.ff56_c00001{font-family:ff56_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:ff57_c00001;src:url('chunks/assets/font_e043b5aeabc9185aec1cea06.woff2')format("woff");}.ff57_c00001{font-family:ff57_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:ff58_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff58_c00001{font-family:ff58_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:ff59_c00001;src:url('chunks/assets/font_1d5877a5fd12b9818e26ff94.woff2')format("woff");}.ff59_c00001{font-family:ff59_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:ff5a_c00001;src:url('chunks/assets/font_1d98ce8de0066b0b951585e0.woff2')format("woff");}.ff5a_c00001{font-family:ff5a_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:ff5b_c00001;src:url('chunks/assets/font_153ae7e64af12e9a1216be7d.woff2')format("woff");}.ff5b_c00001{font-family:ff5b_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:ff5c_c00001;src:url('chunks/assets/font_df1ade491083b7e16caee9f2.woff2')format("woff");}.ff5c_c00001{font-family:ff5c_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:ff5d_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff5d_c00001{font-family:ff5d_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:ff5e_c00001;src:url('chunks/assets/font_d287e8d4269919f627f5d76e.woff2')format("woff");}.ff5e_c00001{font-family:ff5e_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00001;src:url('chunks/assets/font_b9d1f698d0d9b631f82daada.woff2')format("woff");}.ff5f_c00001{font-family:ff5f_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:ff60_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff60_c00001{font-family:ff60_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:ff61_c00001;src:url('chunks/assets/font_59848e8dd092636766aec9f4.woff2')format("woff");}.ff61_c00001{font-family:ff61_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:ff62_c00001;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff62_c00001{font-family:ff62_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:ff63_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff63_c00001{font-family:ff63_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:ff64_c00001;src:url('chunks/assets/font_171849f8658afca73c9466f5.woff2')format("woff");}.ff64_c00001{font-family:ff64_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:ff65_c00001;src:url('chunks/assets/font_5fe16f15ac4583cbd23c29a1.woff2')format("woff");}.ff65_c00001{font-family:ff65_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:ff66_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff66_c00001{font-family:ff66_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:ff67_c00001;src:url('chunks/assets/font_a874a94eed35b55372ba58e8.woff2')format("woff");}.ff67_c00001{font-family:ff67_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:ff68_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff68_c00001{font-family:ff68_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:ff69_c00001;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff69_c00001{font-family:ff69_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:ff6a_c00001;src:url('chunks/assets/font_93e4a9c9a7abaf9a9ffb556d.woff2')format("woff");}.ff6a_c00001{font-family:ff6a_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:ff6b_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff6b_c00001{font-family:ff6b_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:ff6c_c00001;src:url('chunks/assets/font_f27761c282e8a18822f749a4.woff2')format("woff");}.ff6c_c00001{font-family:ff6c_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:ff6d_c00001;src:url('chunks/assets/font_7794df39d3728f75b72bbbfd.woff2')format("woff");}.ff6d_c00001{font-family:ff6d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff6e_c00001{font-family:ff6e_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:ff6f_c00001;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff6f_c00001{font-family:ff6f_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:ff70_c00001;src:url('chunks/assets/font_77e2184489558a662c563fb6.woff2')format("woff");}.ff70_c00001{font-family:ff70_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:ff71_c00001;src:url('chunks/assets/font_3bc10dffa24ae0c134d42c04.woff2')format("woff");}.ff71_c00001{font-family:ff71_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:ff72_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff72_c00001{font-family:ff72_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:ff73_c00001;src:url('chunks/assets/font_a6737bb62e02d1706f11c136.woff2')format("woff");}.ff73_c00001{font-family:ff73_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:ff74_c00001;src:url('chunks/assets/font_a86eeb03e23bdbe92b1db722.woff2')format("woff");}.ff74_c00001{font-family:ff74_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75_c00001;src:url('chunks/assets/font_7696944d8a654b865678d4dc.woff2')format("woff");}.ff75_c00001{font-family:ff75_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:ff76_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff76_c00001{font-family:ff76_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:ff77_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff77_c00001{font-family:ff77_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:ff78_c00001;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff78_c00001{font-family:ff78_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:ff79_c00001;src:url('chunks/assets/font_a31885272829bbda3f15c7c9.woff2')format("woff");}.ff79_c00001{font-family:ff79_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:ff7a_c00001;src:url('chunks/assets/font_fccbbd0c52f55fe0af990ba3.woff2')format("woff");}.ff7a_c00001{font-family:ff7a_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:ff7b_c00001;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff7b_c00001{font-family:ff7b_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:ff7c_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff7c_c00001{font-family:ff7c_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:ff7d_c00001;src:url('chunks/assets/font_640e4ca1945aa229feb4b6ad.woff2')format("woff");}.ff7d_c00001{font-family:ff7d_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:ff7e_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff7e_c00001{font-family:ff7e_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:ff7f_c00001;src:url('chunks/assets/font_c647f9a2be4a16d2929deadd.woff2')format("woff");}.ff7f_c00001{font-family:ff7f_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:ff80_c00001;src:url('chunks/assets/font_0042d900c14b32917b43342b.woff2')format("woff");}.ff80_c00001{font-family:ff80_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:ff81_c00001;src:url('chunks/assets/font_caf43cd0eee23ee95b5dd4f1.woff2')format("woff");}.ff81_c00001{font-family:ff81_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:ff82_c00001;src:url('chunks/assets/font_362598a27b194580a6824c51.woff2')format("woff");}.ff82_c00001{font-family:ff82_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:ff83_c00001;src:url('chunks/assets/font_8add4c84550f39b749f7f389.woff2')format("woff");}.ff83_c00001{font-family:ff83_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:ff84_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff84_c00001{font-family:ff84_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:ff85_c00001;src:url('chunks/assets/font_387423e9d132182b4c9f7152.woff2')format("woff");}.ff85_c00001{font-family:ff85_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:ff86_c00001;src:url('chunks/assets/font_a874a94eed35b55372ba58e8.woff2')format("woff");}.ff86_c00001{font-family:ff86_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:ff87_c00001;src:url('chunks/assets/font_599c477d26f89684b155d69a.woff2')format("woff");}.ff87_c00001{font-family:ff87_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:ff88_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff88_c00001{font-family:ff88_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:ff89_c00001;src:url('chunks/assets/font_4b45898a354f37d637a615d7.woff2')format("woff");}.ff89_c00001{font-family:ff89_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:ff8a_c00001;src:url('chunks/assets/font_9af406fac3cd408993556563.woff2')format("woff");}.ff8a_c00001{font-family:ff8a_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:ff8b_c00001;src:url('chunks/assets/font_e74a58e0d35f5ff11c80577b.woff2')format("woff");}.ff8b_c00001{font-family:ff8b_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:ff8c_c00001;src:url('chunks/assets/font_362598a27b194580a6824c51.woff2')format("woff");}.ff8c_c00001{font-family:ff8c_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:ff8d_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8d_c00001{font-family:ff8d_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:ff8e_c00001;src:url('chunks/assets/font_ba270a0da254bdebefcf6e03.woff2')format("woff");}.ff8e_c00001{font-family:ff8e_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:ff8f_c00001;src:url('chunks/assets/font_a874a94eed35b55372ba58e8.woff2')format("woff");}.ff8f_c00001{font-family:ff8f_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:ff90_c00001;src:url('chunks/assets/font_387423e9d132182b4c9f7152.woff2')format("woff");}.ff90_c00001{font-family:ff90_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:ff91_c00001;src:url('chunks/assets/font_6b479f10f57e6eda3f66be79.woff2')format("woff");}.ff91_c00001{font-family:ff91_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:ff92_c00001;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff92_c00001{font-family:ff92_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:ff93_c00001;src:url('chunks/assets/font_5d3b544e59c16ae1656900ea.woff2')format("woff");}.ff93_c00001{font-family:ff93_c00001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94_c00001;src:url('chunks/assets/font_cdc7abb9bebe9704d89e8587.woff2')format("woff");}.ff94_c00001{font-family:ff94_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:ff95_c00001;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff95_c00001{font-family:ff95_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:ff96_c00001;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff96_c00001{font-family:ff96_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:ff97_c00001;src:url('chunks/assets/font_17aa44d97c7396e7e0881e55.woff2')format("woff");}.ff97_c00001{font-family:ff97_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:ff98_c00001;src:url('chunks/assets/font_8a2f2fd5101d4294c5d62c27.woff2')format("woff");}.ff98_c00001{font-family:ff98_c00001;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99_c00001;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff99_c00001{font-family:ff99_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:ff9a_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9a_c00001{font-family:ff9a_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:ff9b_c00001;src:url('chunks/assets/font_fccbbd0c52f55fe0af990ba3.woff2')format("woff");}.ff9b_c00001{font-family:ff9b_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;}
.m4_c00001{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);}
.m1_c00001{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,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);}
.v40_c00001{vertical-align:-138.245616px;}
.v32_c00001{vertical-align:-129.600000px;}
.v3e_c00001{vertical-align:-115.853040px;}
.v3c_c00001{vertical-align:-108.720000px;}
.v34_c00001{vertical-align:-105.102720px;}
.v42_c00001{vertical-align:-103.476240px;}
.v38_c00001{vertical-align:-101.535840px;}
.v37_c00001{vertical-align:-99.383760px;}
.v33_c00001{vertical-align:-96.454800px;}
.v44_c00001{vertical-align:-94.320000px;}
.v3d_c00001{vertical-align:-92.115360px;}
.v3a_c00001{vertical-align:-89.280000px;}
.v28_c00001{vertical-align:-87.841800px;}
.v11_c00001{vertical-align:-86.760000px;}
.vd_c00001{vertical-align:-85.680000px;}
.v15_c00001{vertical-align:-83.880000px;}
.v12_c00001{vertical-align:-82.080000px;}
.v27_c00001{vertical-align:-79.200000px;}
.v10_c00001{vertical-align:-78.120000px;}
.v24_c00001{vertical-align:-76.680000px;}
.v1f_c00001{vertical-align:-75.240000px;}
.v14_c00001{vertical-align:-72.360000px;}
.v43_c00001{vertical-align:-70.560000px;}
.v19_c00001{vertical-align:-69.120000px;}
.v39_c00001{vertical-align:-61.212240px;}
.v2d_c00001{vertical-align:-55.081152px;}
.v23_c00001{vertical-align:-53.999064px;}
.v31_c00001{vertical-align:-48.600000px;}
.v22_c00001{vertical-align:-23.400000px;}
.v8_c00001{vertical-align:-22.320000px;}
.v20_c00001{vertical-align:-19.440000px;}
.v21_c00001{vertical-align:-18.000000px;}
.va_c00001{vertical-align:-16.560000px;}
.v48_c00001{vertical-align:-13.680000px;}
.v1_c00001{vertical-align:-11.160000px;}
.v2_c00001{vertical-align:-9.000000px;}
.v26_c00001{vertical-align:-6.838344px;}
.v6_c00001{vertical-align:-5.039400px;}
.v2b_c00001{vertical-align:-2.880000px;}
.v45_c00001{vertical-align:-1.440000px;}
.v0_c00001{vertical-align:0.000000px;}
.v4_c00001{vertical-align:1.080000px;}
.v1e_c00001{vertical-align:2.160000px;}
.v3_c00001{vertical-align:5.400000px;}
.v46_c00001{vertical-align:7.200000px;}
.v16_c00001{vertical-align:9.000000px;}
.v5_c00001{vertical-align:11.160000px;}
.v49_c00001{vertical-align:12.960600px;}
.v1a_c00001{vertical-align:14.401368px;}
.v9_c00001{vertical-align:16.559400px;}
.v41_c00001{vertical-align:18.720000px;}
.v7_c00001{vertical-align:22.320000px;}
.v29_c00001{vertical-align:29.880000px;}
.vf_c00001{vertical-align:32.760000px;}
.v35_c00001{vertical-align:36.720000px;}
.v36_c00001{vertical-align:39.239400px;}
.v1d_c00001{vertical-align:41.400000px;}
.v2e_c00001{vertical-align:42.480000px;}
.vb_c00001{vertical-align:43.560000px;}
.v3f_c00001{vertical-align:47.160000px;}
.v18_c00001{vertical-align:49.680000px;}
.v17_c00001{vertical-align:51.120000px;}
.v47_c00001{vertical-align:52.560000px;}
.v13_c00001{vertical-align:53.640000px;}
.ve_c00001{vertical-align:55.080000px;}
.v2a_c00001{vertical-align:61.200000px;}
.vc_c00001{vertical-align:64.080000px;}
.v2c_c00001{vertical-align:66.240000px;}
.v1b_c00001{vertical-align:67.322772px;}
.v4a_c00001{vertical-align:69.840000px;}
.v30_c00001{vertical-align:73.079640px;}
.v3b_c00001{vertical-align:74.880000px;}
.v25_c00001{vertical-align:75.959640px;}
.v2f_c00001{vertical-align:82.440000px;}
.v1c_c00001{vertical-align:106.923240px;}
.ls202_c00001{letter-spacing:-4.596624px;}
.ls27c_c00001{letter-spacing:-3.283200px;}
.ls27b_c00001{letter-spacing:-3.276000px;}
.ls27a_c00001{letter-spacing:-3.261600px;}
.ls27d_c00001{letter-spacing:-3.254400px;}
.ls2ef_c00001{letter-spacing:-2.160000px;}
.ls384_c00001{letter-spacing:-1.553760px;}
.ls2f7_c00001{letter-spacing:-1.457280px;}
.ls2a3_c00001{letter-spacing:-1.440000px;}
.ls2f3_c00001{letter-spacing:-1.192320px;}
.ls2e6_c00001{letter-spacing:-1.126080px;}
.ls2e3_c00001{letter-spacing:-1.059840px;}
.ls3b7_c00001{letter-spacing:-1.010880px;}
.ls2a5_c00001{letter-spacing:-1.008000px;}
.ls2a4_c00001{letter-spacing:-0.936000px;}
.ls397_c00001{letter-spacing:-0.918000px;}
.ls3be_c00001{letter-spacing:-0.916560px;}
.ls395_c00001{letter-spacing:-0.864000px;}
.ls2c8_c00001{letter-spacing:-0.861120px;}
.ls1ca_c00001{letter-spacing:-0.842400px;}
.ls2c5_c00001{letter-spacing:-0.792000px;}
.ls2c6_c00001{letter-spacing:-0.758160px;}
.ls2d9_c00001{letter-spacing:-0.728640px;}
.ls2e4_c00001{letter-spacing:-0.720000px;}
.ls2d4_c00001{letter-spacing:-0.673920px;}
.ls2ca_c00001{letter-spacing:-0.648000px;}
.ls2d8_c00001{letter-spacing:-0.596160px;}
.lse3_c00001{letter-spacing:-0.576000px;}
.ls337_c00001{letter-spacing:-0.561600px;}
.ls3bf_c00001{letter-spacing:-0.530640px;}
.ls2de_c00001{letter-spacing:-0.505440px;}
.ls387_c00001{letter-spacing:-0.504000px;}
.ls382_c00001{letter-spacing:-0.486000px;}
.ls404_c00001{letter-spacing:-0.480924px;}
.ls386_c00001{letter-spacing:-0.478080px;}
.ls290_c00001{letter-spacing:-0.468720px;}
.ls2f8_c00001{letter-spacing:-0.463680px;}
.ls272_c00001{letter-spacing:-0.450684px;}
.ls1f6_c00001{letter-spacing:-0.446400px;}
.ls38a_c00001{letter-spacing:-0.432000px;}
.ls1f7_c00001{letter-spacing:-0.417600px;}
.ls3fb_c00001{letter-spacing:-0.402804px;}
.ls2e7_c00001{letter-spacing:-0.397440px;}
.ls17c_c00001{letter-spacing:-0.388800px;}
.ls143_c00001{letter-spacing:-0.384768px;}
.ls256_c00001{letter-spacing:-0.366732px;}
.ls330_c00001{letter-spacing:-0.361800px;}
.ls351_c00001{letter-spacing:-0.360720px;}
.ls24_c00001{letter-spacing:-0.360000px;}
.ls2c4_c00001{letter-spacing:-0.358560px;}
.ls33f_c00001{letter-spacing:-0.351000px;}
.ls352_c00001{letter-spacing:-0.348696px;}
.ls291_c00001{letter-spacing:-0.336960px;}
.lsa4_c00001{letter-spacing:-0.334800px;}
.ls2cd_c00001{letter-spacing:-0.331200px;}
.ls133_c00001{letter-spacing:-0.324000px;}
.ls24f_c00001{letter-spacing:-0.318636px;}
.ls16c_c00001{letter-spacing:-0.306612px;}
.ls12e_c00001{letter-spacing:-0.302400px;}
.ls2f0_c00001{letter-spacing:-0.298800px;}
.ls31c_c00001{letter-spacing:-0.295200px;}
.ls131_c00001{letter-spacing:-0.291600px;}
.ls353_c00001{letter-spacing:-0.288576px;}
.ls2a2_c00001{letter-spacing:-0.288000px;}
.ls1c2_c00001{letter-spacing:-0.282492px;}
.ls350_c00001{letter-spacing:-0.280800px;}
.ls22_c00001{letter-spacing:-0.276552px;}
.ls3f9_c00001{letter-spacing:-0.273600px;}
.ls5a_c00001{letter-spacing:-0.270540px;}
.lsa9_c00001{letter-spacing:-0.270108px;}
.lsde_c00001{letter-spacing:-0.270000px;}
.ls2da_c00001{letter-spacing:-0.264960px;}
.ls255_c00001{letter-spacing:-0.264528px;}
.ls23b_c00001{letter-spacing:-0.259200px;}
.ls1d4_c00001{letter-spacing:-0.252000px;}
.lsa5_c00001{letter-spacing:-0.248400px;}
.ls215_c00001{letter-spacing:-0.246492px;}
.ls391_c00001{letter-spacing:-0.241200px;}
.ls374_c00001{letter-spacing:-0.240480px;}
.ls161_c00001{letter-spacing:-0.239400px;}
.ls3af_c00001{letter-spacing:-0.239040px;}
.ls267_c00001{letter-spacing:-0.237600px;}
.ls258_c00001{letter-spacing:-0.234468px;}
.ls194_c00001{letter-spacing:-0.229824px;}
.lsb4_c00001{letter-spacing:-0.228456px;}
.ls200_c00001{letter-spacing:-0.226800px;}
.ls114_c00001{letter-spacing:-0.223200px;}
.lscb_c00001{letter-spacing:-0.222444px;}
.ls146_c00001{letter-spacing:-0.216432px;}
.ls264_c00001{letter-spacing:-0.216000px;}
.ls12b_c00001{letter-spacing:-0.210600px;}
.ls33e_c00001{letter-spacing:-0.210420px;}
.ls1d5_c00001{letter-spacing:-0.208800px;}
.ls201_c00001{letter-spacing:-0.205200px;}
.ls216_c00001{letter-spacing:-0.204408px;}
.ls31_c00001{letter-spacing:-0.201600px;}
.ls191_c00001{letter-spacing:-0.201096px;}
.ls22c_c00001{letter-spacing:-0.198396px;}
.ls240_c00001{letter-spacing:-0.194400px;}
.ls3c0_c00001{letter-spacing:-0.192960px;}
.ls257_c00001{letter-spacing:-0.192384px;}
.ls2b0_c00001{letter-spacing:-0.192240px;}
.ls2fd_c00001{letter-spacing:-0.191520px;}
.ls35d_c00001{letter-spacing:-0.191052px;}
.ls242_c00001{letter-spacing:-0.189000px;}
.ls277_c00001{letter-spacing:-0.187200px;}
.ls16b_c00001{letter-spacing:-0.186372px;}
.ls12d_c00001{letter-spacing:-0.183600px;}
.ls15f_c00001{letter-spacing:-0.181944px;}
.lsc1_c00001{letter-spacing:-0.181116px;}
.lsdb_c00001{letter-spacing:-0.180360px;}
.lsa6_c00001{letter-spacing:-0.180000px;}
.ls130_c00001{letter-spacing:-0.178200px;}
.ls75_c00001{letter-spacing:-0.176904px;}
.ls16d_c00001{letter-spacing:-0.174348px;}
.ls2b4_c00001{letter-spacing:-0.173016px;}
.ls22a_c00001{letter-spacing:-0.172800px;}
.ls2b1_c00001{letter-spacing:-0.171288px;}
.ls2dc_c00001{letter-spacing:-0.168480px;}
.ls102_c00001{letter-spacing:-0.168336px;}
.ls217_c00001{letter-spacing:-0.165600px;}
.ls3e5_c00001{letter-spacing:-0.162792px;}
.ls1c3_c00001{letter-spacing:-0.162324px;}
.ls218_c00001{letter-spacing:-0.158400px;}
.ls20e_c00001{letter-spacing:-0.158004px;}
.ls1ff_c00001{letter-spacing:-0.156600px;}
.ls147_c00001{letter-spacing:-0.156312px;}
.ls193_c00001{letter-spacing:-0.153216px;}
.ls111_c00001{letter-spacing:-0.151200px;}
.lsf1_c00001{letter-spacing:-0.150300px;}
.ls2b5_c00001{letter-spacing:-0.147420px;}
.ls65_c00001{letter-spacing:-0.144288px;}
.lsfd_c00001{letter-spacing:-0.144000px;}
.ls23f_c00001{letter-spacing:-0.143640px;}
.ls1c8_c00001{letter-spacing:-0.140400px;}
.lsc0_c00001{letter-spacing:-0.138996px;}
.lsb7_c00001{letter-spacing:-0.138276px;}
.lse4_c00001{letter-spacing:-0.136800px;}
.ls159_c00001{letter-spacing:-0.134064px;}
.ls2c9_c00001{letter-spacing:-0.132480px;}
.ls62_c00001{letter-spacing:-0.132264px;}
.ls1c6_c00001{letter-spacing:-0.129600px;}
.ls15a_c00001{letter-spacing:-0.129276px;}
.ls64_c00001{letter-spacing:-0.126252px;}
.lsd6_c00001{letter-spacing:-0.125172px;}
.ls136_c00001{letter-spacing:-0.124200px;}
.ls326_c00001{letter-spacing:-0.122400px;}
.lsc9_c00001{letter-spacing:-0.120240px;}
.ls18f_c00001{letter-spacing:-0.119700px;}
.ls2be_c00001{letter-spacing:-0.119520px;}
.ls1b_c00001{letter-spacing:-0.118800px;}
.ls358_c00001{letter-spacing:-0.118584px;}
.ls306_c00001{letter-spacing:-0.115344px;}
.ls11a_c00001{letter-spacing:-0.115200px;}
.ls15e_c00001{letter-spacing:-0.114912px;}
.lsb8_c00001{letter-spacing:-0.114228px;}
.ls13b_c00001{letter-spacing:-0.113400px;}
.ls46_c00001{letter-spacing:-0.108216px;}
.ls3f_c00001{letter-spacing:-0.108000px;}
.ls15d_c00001{letter-spacing:-0.105336px;}
.ls243_c00001{letter-spacing:-0.102600px;}
.ls63_c00001{letter-spacing:-0.102204px;}
.ls112_c00001{letter-spacing:-0.100800px;}
.ls13d_c00001{letter-spacing:-0.097200px;}
.lsb9_c00001{letter-spacing:-0.096192px;}
.ls192_c00001{letter-spacing:-0.095760px;}
.ls1cb_c00001{letter-spacing:-0.093600px;}
.ls344_c00001{letter-spacing:-0.092232px;}
.ls241_c00001{letter-spacing:-0.091800px;}
.ls76_c00001{letter-spacing:-0.090972px;}
.ls58_c00001{letter-spacing:-0.090180px;}
.ls6a_c00001{letter-spacing:-0.086400px;}
.ls10a_c00001{letter-spacing:-0.086184px;}
.ls332_c00001{letter-spacing:-0.085644px;}
.ls292_c00001{letter-spacing:-0.084240px;}
.ls45_c00001{letter-spacing:-0.084168px;}
.ls169_c00001{letter-spacing:-0.083880px;}
.ls3fe_c00001{letter-spacing:-0.080028px;}
.lsef_c00001{letter-spacing:-0.079200px;}
.lsc3_c00001{letter-spacing:-0.079056px;}
.ls47_c00001{letter-spacing:-0.078156px;}
.ls2b3_c00001{letter-spacing:-0.076896px;}
.ls18d_c00001{letter-spacing:-0.076608px;}
.ls132_c00001{letter-spacing:-0.075600px;}
.ls343_c00001{letter-spacing:-0.072468px;}
.ls79_c00001{letter-spacing:-0.072144px;}
.ls32_c00001{letter-spacing:-0.072000px;}
.ls158_c00001{letter-spacing:-0.071820px;}
.ls134_c00001{letter-spacing:-0.070200px;}
.ls24e_c00001{letter-spacing:-0.067392px;}
.ls30b_c00001{letter-spacing:-0.067284px;}
.ls19_c00001{letter-spacing:-0.067032px;}
.ls56_c00001{letter-spacing:-0.066132px;}
.ls3d9_c00001{letter-spacing:-0.065880px;}
.ls17f_c00001{letter-spacing:-0.064800px;}
.ls10e_c00001{letter-spacing:-0.063180px;}
.ls6c_c00001{letter-spacing:-0.062244px;}
.ls6b_c00001{letter-spacing:-0.060120px;}
.ls2d5_c00001{letter-spacing:-0.059760px;}
.ls13c_c00001{letter-spacing:-0.059400px;}
.ls9c_c00001{letter-spacing:-0.059292px;}
.ls203_c00001{letter-spacing:-0.058716px;}
.ls30c_c00001{letter-spacing:-0.057672px;}
.ls29_c00001{letter-spacing:-0.057600px;}
.ls18c_c00001{letter-spacing:-0.057456px;}
.lsbe_c00001{letter-spacing:-0.054108px;}
.ls135_c00001{letter-spacing:-0.054000px;}
.ls61_c00001{letter-spacing:-0.052704px;}
.ls3e_c00001{letter-spacing:-0.050400px;}
.ls166_c00001{letter-spacing:-0.050328px;}
.ls23a_c00001{letter-spacing:-0.048600px;}
.ls385_c00001{letter-spacing:-0.048240px;}
.ls21_c00001{letter-spacing:-0.048096px;}
.ls307_c00001{letter-spacing:-0.048060px;}
.ls32f_c00001{letter-spacing:-0.047880px;}
.lsdc_c00001{letter-spacing:-0.046116px;}
.ls30_c00001{letter-spacing:-0.043200px;}
.ls85_c00001{letter-spacing:-0.043092px;}
.ls3ff_c00001{letter-spacing:-0.042120px;}
.ls1e_c00001{letter-spacing:-0.042084px;}
.lsb0_c00001{letter-spacing:-0.039528px;}
.ls305_c00001{letter-spacing:-0.038448px;}
.lsfc_c00001{letter-spacing:-0.038304px;}
.ls3fc_c00001{letter-spacing:-0.037908px;}
.lsdd_c00001{letter-spacing:-0.037800px;}
.ls78_c00001{letter-spacing:-0.036072px;}
.ls2f_c00001{letter-spacing:-0.036000px;}
.ls16a_c00001{letter-spacing:-0.033552px;}
.lsee_c00001{letter-spacing:-0.033516px;}
.lsff_c00001{letter-spacing:-0.032940px;}
.ls13a_c00001{letter-spacing:-0.032400px;}
.lsc8_c00001{letter-spacing:-0.030060px;}
.ls28_c00001{letter-spacing:-0.028800px;}
.ls116_c00001{letter-spacing:-0.028728px;}
.ls12f_c00001{letter-spacing:-0.027000px;}
.ls60_c00001{letter-spacing:-0.026352px;}
.ls3fd_c00001{letter-spacing:-0.025272px;}
.ls165_c00001{letter-spacing:-0.025164px;}
.ls20_c00001{letter-spacing:-0.024048px;}
.ls17b_c00001{letter-spacing:-0.023940px;}
.ls23_c00001{letter-spacing:-0.021600px;}
.ls93_c00001{letter-spacing:-0.019764px;}
.ls309_c00001{letter-spacing:-0.019224px;}
.ls162_c00001{letter-spacing:-0.019152px;}
.ls1d_c00001{letter-spacing:-0.018036px;}
.ls168_c00001{letter-spacing:-0.016776px;}
.ls1fd_c00001{letter-spacing:-0.016200px;}
.ls2a_c00001{letter-spacing:-0.014400px;}
.ls51_c00001{letter-spacing:-0.014364px;}
.ls86_c00001{letter-spacing:-0.013176px;}
.ls1c_c00001{letter-spacing:-0.012024px;}
.ls137_c00001{letter-spacing:-0.010800px;}
.ls308_c00001{letter-spacing:-0.009612px;}
.ls15c_c00001{letter-spacing:-0.009576px;}
.ls1f0_c00001{letter-spacing:-0.008424px;}
.ls167_c00001{letter-spacing:-0.008388px;}
.ls27_c00001{letter-spacing:-0.007200px;}
.ls77_c00001{letter-spacing:-0.006588px;}
.ls1f_c00001{letter-spacing:-0.006012px;}
.lsa3_c00001{letter-spacing:-0.005400px;}
.ls53_c00001{letter-spacing:-0.004788px;}
.ls18_c00001{letter-spacing:0.000000px;}
.ls2a9_c00001{letter-spacing:0.003600px;}
.lsf3_c00001{letter-spacing:0.004788px;}
.ls1f9_c00001{letter-spacing:0.005400px;}
.ls1_c00001{letter-spacing:0.006012px;}
.ls82_c00001{letter-spacing:0.006588px;}
.ls26_c00001{letter-spacing:0.007200px;}
.ls304_c00001{letter-spacing:0.008388px;}
.ls2ad_c00001{letter-spacing:0.008424px;}
.ls2d_c00001{letter-spacing:0.009576px;}
.ls2ff_c00001{letter-spacing:0.009612px;}
.lsa1_c00001{letter-spacing:0.010800px;}
.lsa_c00001{letter-spacing:0.012024px;}
.ls36_c00001{letter-spacing:0.013176px;}
.lsf5_c00001{letter-spacing:0.014364px;}
.ls16_c00001{letter-spacing:0.014400px;}
.ls125_c00001{letter-spacing:0.016200px;}
.ls30f_c00001{letter-spacing:0.016776px;}
.lsc2_c00001{letter-spacing:0.016848px;}
.lse_c00001{letter-spacing:0.018036px;}
.ls3_c00001{letter-spacing:0.019152px;}
.ls2ab_c00001{letter-spacing:0.019224px;}
.ls4c_c00001{letter-spacing:0.019764px;}
.ls11_c00001{letter-spacing:0.021600px;}
.ls180_c00001{letter-spacing:0.023940px;}
.lsd_c00001{letter-spacing:0.024048px;}
.ls37_c00001{letter-spacing:0.026352px;}
.ls105_c00001{letter-spacing:0.027000px;}
.ls18e_c00001{letter-spacing:0.028728px;}
.ls13_c00001{letter-spacing:0.028800px;}
.lsc6_c00001{letter-spacing:0.030060px;}
.ls238_c00001{letter-spacing:0.032400px;}
.ls35_c00001{letter-spacing:0.032940px;}
.lsec_c00001{letter-spacing:0.033516px;}
.ls15_c00001{letter-spacing:0.036000px;}
.lsb1_c00001{letter-spacing:0.036072px;}
.ls54_c00001{letter-spacing:0.037800px;}
.ls152_c00001{letter-spacing:0.038304px;}
.lse5_c00001{letter-spacing:0.038844px;}
.ls5_c00001{letter-spacing:0.039528px;}
.ls2a6_c00001{letter-spacing:0.041940px;}
.ls144_c00001{letter-spacing:0.042084px;}
.ls106_c00001{letter-spacing:0.043092px;}
.ls12_c00001{letter-spacing:0.043200px;}
.lsc_c00001{letter-spacing:0.046116px;}
.ls26f_c00001{letter-spacing:0.046332px;}
.lsf8_c00001{letter-spacing:0.047880px;}
.ls301_c00001{letter-spacing:0.048060px;}
.ls7_c00001{letter-spacing:0.048096px;}
.ls129_c00001{letter-spacing:0.048600px;}
.ls2b2_c00001{letter-spacing:0.050328px;}
.ls17_c00001{letter-spacing:0.050400px;}
.ls2ac_c00001{letter-spacing:0.050544px;}
.lsc4_c00001{letter-spacing:0.052668px;}
.ls8_c00001{letter-spacing:0.052704px;}
.ls128_c00001{letter-spacing:0.054000px;}
.lsca_c00001{letter-spacing:0.054108px;}
.ls2b_c00001{letter-spacing:0.057456px;}
.ls14_c00001{letter-spacing:0.057600px;}
.ls2ae_c00001{letter-spacing:0.058716px;}
.ls3f0_c00001{letter-spacing:0.058968px;}
.ls4b_c00001{letter-spacing:0.059292px;}
.ls1fa_c00001{letter-spacing:0.059400px;}
.ls2bf_c00001{letter-spacing:0.059760px;}
.ls312_c00001{letter-spacing:0.059940px;}
.lsf2_c00001{letter-spacing:0.060120px;}
.ls14f_c00001{letter-spacing:0.062244px;}
.ls293_c00001{letter-spacing:0.063360px;}
.ls3d_c00001{letter-spacing:0.064800px;}
.ls38_c00001{letter-spacing:0.065880px;}
.lsc7_c00001{letter-spacing:0.066132px;}
.ls0_c00001{letter-spacing:0.067032px;}
.ls2af_c00001{letter-spacing:0.067104px;}
.ls236_c00001{letter-spacing:0.070200px;}
.ls26d_c00001{letter-spacing:0.071604px;}
.ls183_c00001{letter-spacing:0.071820px;}
.ls10_c00001{letter-spacing:0.072000px;}
.lsb_c00001{letter-spacing:0.072144px;}
.ls3b_c00001{letter-spacing:0.072468px;}
.ls17a_c00001{letter-spacing:0.075492px;}
.ls1fb_c00001{letter-spacing:0.075600px;}
.ls188_c00001{letter-spacing:0.076608px;}
.ls6_c00001{letter-spacing:0.078156px;}
.ls3a_c00001{letter-spacing:0.079056px;}
.ls25_c00001{letter-spacing:0.079200px;}
.ls1fc_c00001{letter-spacing:0.081000px;}
.lsf6_c00001{letter-spacing:0.081396px;}
.ls4f_c00001{letter-spacing:0.084168px;}
.ls270_c00001{letter-spacing:0.084240px;}
.ls66_c00001{letter-spacing:0.085644px;}
.lsf0_c00001{letter-spacing:0.086184px;}
.ls3c_c00001{letter-spacing:0.086400px;}
.ls214_c00001{letter-spacing:0.086472px;}
.ls2a7_c00001{letter-spacing:0.089640px;}
.ls2c_c00001{letter-spacing:0.090000px;}
.lsf_c00001{letter-spacing:0.090180px;}
.ls413_c00001{letter-spacing:0.090432px;}
.ls213_c00001{letter-spacing:0.090648px;}
.ls142_c00001{letter-spacing:0.090972px;}
.ls415_c00001{letter-spacing:0.091656px;}
.ls418_c00001{letter-spacing:0.091692px;}
.ls246_c00001{letter-spacing:0.091800px;}
.ls4_c00001{letter-spacing:0.092232px;}
.ls44_c00001{letter-spacing:0.093600px;}
.ls18a_c00001{letter-spacing:0.095760px;}
.ls311_c00001{letter-spacing:0.095904px;}
.ls4e_c00001{letter-spacing:0.096192px;}
.ls127_c00001{letter-spacing:0.097200px;}
.ls4d_c00001{letter-spacing:0.098820px;}
.lsf7_c00001{letter-spacing:0.100548px;}
.ls33_c00001{letter-spacing:0.100656px;}
.ls41_c00001{letter-spacing:0.100800px;}
.ls9_c00001{letter-spacing:0.102204px;}
.ls1fe_c00001{letter-spacing:0.102600px;}
.lsfb_c00001{letter-spacing:0.105336px;}
.ls5c_c00001{letter-spacing:0.105408px;}
.ls10f_c00001{letter-spacing:0.108000px;}
.ls5e_c00001{letter-spacing:0.108216px;}
.ls30e_c00001{letter-spacing:0.109044px;}
.ls3b6_c00001{letter-spacing:0.109440px;}
.ls107_c00001{letter-spacing:0.110124px;}
.lsad_c00001{letter-spacing:0.111996px;}
.ls9e_c00001{letter-spacing:0.113400px;}
.ls26c_c00001{letter-spacing:0.113724px;}
.lsb6_c00001{letter-spacing:0.114228px;}
.ls6f_c00001{letter-spacing:0.114912px;}
.ls50_c00001{letter-spacing:0.115200px;}
.ls30d_c00001{letter-spacing:0.117432px;}
.ls83_c00001{letter-spacing:0.118584px;}
.ls294_c00001{letter-spacing:0.119520px;}
.lsba_c00001{letter-spacing:0.119700px;}
.lsc5_c00001{letter-spacing:0.120240px;}
.lsa7_c00001{letter-spacing:0.122400px;}
.ls239_c00001{letter-spacing:0.124200px;}
.ls14e_c00001{letter-spacing:0.124488px;}
.ls6d_c00001{letter-spacing:0.125172px;}
.ls156_c00001{letter-spacing:0.125820px;}
.lsb5_c00001{letter-spacing:0.126252px;}
.ls26b_c00001{letter-spacing:0.126360px;}
.lsaa_c00001{letter-spacing:0.129276px;}
.ls110_c00001{letter-spacing:0.129600px;}
.ls141_c00001{letter-spacing:0.130032px;}
.ls3f1_c00001{letter-spacing:0.130572px;}
.ls11f_c00001{letter-spacing:0.131760px;}
.ls43_c00001{letter-spacing:0.132264px;}
.ls2c7_c00001{letter-spacing:0.132480px;}
.ls154_c00001{letter-spacing:0.134064px;}
.ls333_c00001{letter-spacing:0.135000px;}
.ls2e_c00001{letter-spacing:0.136800px;}
.ls59_c00001{letter-spacing:0.138276px;}
.lsa8_c00001{letter-spacing:0.138348px;}
.ls7c_c00001{letter-spacing:0.138852px;}
.ls1b2_c00001{letter-spacing:0.140400px;}
.ls14d_c00001{letter-spacing:0.143640px;}
.ls42_c00001{letter-spacing:0.144000px;}
.ls57_c00001{letter-spacing:0.144288px;}
.ls1bb_c00001{letter-spacing:0.144936px;}
.ls49_c00001{letter-spacing:0.145800px;}
.ls185_c00001{letter-spacing:0.148428px;}
.ls32a_c00001{letter-spacing:0.150300px;}
.ls237_c00001{letter-spacing:0.151200px;}
.ls5b_c00001{letter-spacing:0.151524px;}
.ls3f2_c00001{letter-spacing:0.151632px;}
.ls187_c00001{letter-spacing:0.153216px;}
.ls2_c00001{letter-spacing:0.153360px;}
.ls376_c00001{letter-spacing:0.156240px;}
.lsb2_c00001{letter-spacing:0.156312px;}
.ls13e_c00001{letter-spacing:0.156600px;}
.ls323_c00001{letter-spacing:0.158004px;}
.lse7_c00001{letter-spacing:0.158112px;}
.ls6e_c00001{letter-spacing:0.158400px;}
.ls2c1_c00001{letter-spacing:0.162000px;}
.ls118_c00001{letter-spacing:0.162324px;}
.ls108_c00001{letter-spacing:0.164700px;}
.ls126_c00001{letter-spacing:0.167400px;}
.ls117_c00001{letter-spacing:0.167580px;}
.ls303_c00001{letter-spacing:0.167760px;}
.ls3b8_c00001{letter-spacing:0.168480px;}
.ls3bd_c00001{letter-spacing:0.170640px;}
.ls39_c00001{letter-spacing:0.171288px;}
.ls186_c00001{letter-spacing:0.172368px;}
.ls12a_c00001{letter-spacing:0.172800px;}
.ls37c_c00001{letter-spacing:0.174240px;}
.ls204_c00001{letter-spacing:0.176148px;}
.ls163_c00001{letter-spacing:0.177156px;}
.ls67_c00001{letter-spacing:0.177876px;}
.ls55_c00001{letter-spacing:0.178200px;}
.ls2c0_c00001{letter-spacing:0.179280px;}
.ls40_c00001{letter-spacing:0.180000px;}
.ls1a_c00001{letter-spacing:0.180360px;}
.lse9_c00001{letter-spacing:0.181116px;}
.ls52_c00001{letter-spacing:0.181944px;}
.ls139_c00001{letter-spacing:0.183600px;}
.lsf4_c00001{letter-spacing:0.186372px;}
.ls15b_c00001{letter-spacing:0.186732px;}
.ls150_c00001{letter-spacing:0.191520px;}
.ls22b_c00001{letter-spacing:0.192384px;}
.ls2e5_c00001{letter-spacing:0.192960px;}
.ls12c_c00001{letter-spacing:0.194400px;}
.ls164_c00001{letter-spacing:0.196308px;}
.ls3e3_c00001{letter-spacing:0.197640px;}
.ls189_c00001{letter-spacing:0.201096px;}
.ls286_c00001{letter-spacing:0.201600px;}
.ls331_c00001{letter-spacing:0.204228px;}
.ls254_c00001{letter-spacing:0.204408px;}
.ls182_c00001{letter-spacing:0.205884px;}
.ls145_c00001{letter-spacing:0.210420px;}
.ls74_c00001{letter-spacing:0.210672px;}
.ls24d_c00001{letter-spacing:0.210816px;}
.ls1c7_c00001{letter-spacing:0.216000px;}
.ls1cf_c00001{letter-spacing:0.216432px;}
.ls153_c00001{letter-spacing:0.225036px;}
.ls138_c00001{letter-spacing:0.226800px;}
.ls285_c00001{letter-spacing:0.230400px;}
.ls1d0_c00001{letter-spacing:0.230580px;}
.ls1c4_c00001{letter-spacing:0.232200px;}
.ls28f_c00001{letter-spacing:0.239040px;}
.ls71_c00001{letter-spacing:0.239400px;}
.ls30a_c00001{letter-spacing:0.240300px;}
.ls288_c00001{letter-spacing:0.240480px;}
.ls300_c00001{letter-spacing:0.249912px;}
.ls380_c00001{letter-spacing:0.252000px;}
.ls2dd_c00001{letter-spacing:0.252720px;}
.ls190_c00001{letter-spacing:0.253764px;}
.ls18b_c00001{letter-spacing:0.258552px;}
.ls2df_c00001{letter-spacing:0.264960px;}
.ls325_c00001{letter-spacing:0.268128px;}
.lsdf_c00001{letter-spacing:0.270000px;}
.ls35a_c00001{letter-spacing:0.276696px;}
.ls122_c00001{letter-spacing:0.288000px;}
.ls38c_c00001{letter-spacing:0.298800px;}
.ls20f_c00001{letter-spacing:0.302400px;}
.ls184_c00001{letter-spacing:0.307080px;}
.ls375_c00001{letter-spacing:0.312480px;}
.ls1c5_c00001{letter-spacing:0.324000px;}
.ls2ce_c00001{letter-spacing:0.331200px;}
.ls31a_c00001{letter-spacing:0.335988px;}
.ls2a1_c00001{letter-spacing:0.336960px;}
.ls2ea_c00001{letter-spacing:0.337680px;}
.ls14c_c00001{letter-spacing:0.339948px;}
.ls1c9_c00001{letter-spacing:0.340200px;}
.ls28e_c00001{letter-spacing:0.358560px;}
.ls104_c00001{letter-spacing:0.360000px;}
.ls2bd_c00001{letter-spacing:0.360720px;}
.ls32e_c00001{letter-spacing:0.368676px;}
.ls3c1_c00001{letter-spacing:0.369360px;}
.ls3a0_c00001{letter-spacing:0.378000px;}
.ls160_c00001{letter-spacing:0.378252px;}
.ls2b6_c00001{letter-spacing:0.383040px;}
.ls2e9_c00001{letter-spacing:0.385920px;}
.ls3a4_c00001{letter-spacing:0.396000px;}
.ls37e_c00001{letter-spacing:0.421200px;}
.ls373_c00001{letter-spacing:0.432000px;}
.lsbd_c00001{letter-spacing:0.447984px;}
.lsfa_c00001{letter-spacing:0.450900px;}
.ls3c9_c00001{letter-spacing:0.454572px;}
.ls2c3_c00001{letter-spacing:0.480960px;}
.ls155_c00001{letter-spacing:0.486504px;}
.ls389_c00001{letter-spacing:0.504000px;}
.ls80_c00001{letter-spacing:0.538704px;}
.ls7e_c00001{letter-spacing:0.541044px;}
.ls362_c00001{letter-spacing:0.546336px;}
.ls2e0_c00001{letter-spacing:0.567360px;}
.ls2ed_c00001{letter-spacing:0.574560px;}
.ls378_c00001{letter-spacing:0.576000px;}
.ls2d6_c00001{letter-spacing:0.596160px;}
.ls229_c00001{letter-spacing:0.629352px;}
.ls119_c00001{letter-spacing:0.648000px;}
.ls181_c00001{letter-spacing:0.699048px;}
.ls121_c00001{letter-spacing:0.720000px;}
.ls392_c00001{letter-spacing:0.728640px;}
.ls2e8_c00001{letter-spacing:0.792000px;}
.ls157_c00001{letter-spacing:0.847188px;}
.ls383_c00001{letter-spacing:0.896400px;}
.ls3bb_c00001{letter-spacing:0.931680px;}
.ls151_c00001{letter-spacing:1.058148px;}
.ls1e9_c00001{letter-spacing:1.080000px;}
.ls28a_c00001{letter-spacing:1.095120px;}
.ls3b3_c00001{letter-spacing:1.192320px;}
.ls37d_c00001{letter-spacing:1.195200px;}
.ls1ee_c00001{letter-spacing:1.350252px;}
.ls298_c00001{letter-spacing:1.440000px;}
.ls3a2_c00001{letter-spacing:1.457280px;}
.ls233_c00001{letter-spacing:1.710252px;}
.ls1b6_c00001{letter-spacing:1.800000px;}
.ls377_c00001{letter-spacing:2.160000px;}
.ls1e8_c00001{letter-spacing:2.430252px;}
.ls31d_c00001{letter-spacing:2.520000px;}
.ls299_c00001{letter-spacing:2.880000px;}
.ls253_c00001{letter-spacing:3.147840px;}
.ls1d2_c00001{letter-spacing:3.240000px;}
.ls262_c00001{letter-spacing:3.507408px;}
.ls1e7_c00001{letter-spacing:3.509352px;}
.ls252_c00001{letter-spacing:3.510252px;}
.ls3b0_c00001{letter-spacing:3.576960px;}
.ls211_c00001{letter-spacing:3.600000px;}
.ls228_c00001{letter-spacing:3.870252px;}
.ls124_c00001{letter-spacing:4.232196px;}
.ls275_c00001{letter-spacing:4.320000px;}
.ls1db_c00001{letter-spacing:4.592196px;}
.ls32b_c00001{letter-spacing:4.680000px;}
.ls1ea_c00001{letter-spacing:4.951728px;}
.ls3b4_c00001{letter-spacing:4.968000px;}
.ls3b2_c00001{letter-spacing:5.034240px;}
.ls1d3_c00001{letter-spacing:5.040000px;}
.ls34_c00001{letter-spacing:5.400000px;}
.ls251_c00001{letter-spacing:5.670252px;}
.ls399_c00001{letter-spacing:5.696640px;}
.ls29f_c00001{letter-spacing:5.760000px;}
.ls3b1_c00001{letter-spacing:5.762880px;}
.ls23e_c00001{letter-spacing:6.030000px;}
.ls2d3_c00001{letter-spacing:6.480000px;}
.ls2f1_c00001{letter-spacing:6.491520px;}
.ls1c1_c00001{letter-spacing:6.749352px;}
.ls281_c00001{letter-spacing:6.840000px;}
.ls14a_c00001{letter-spacing:7.110252px;}
.ls2db_c00001{letter-spacing:7.153920px;}
.ls2cf_c00001{letter-spacing:7.200000px;}
.ls3a5_c00001{letter-spacing:7.220160px;}
.ls3ad_c00001{letter-spacing:7.683840px;}
.ls296_c00001{letter-spacing:7.920000px;}
.ls3ae_c00001{letter-spacing:7.948800px;}
.ls1dc_c00001{letter-spacing:8.192196px;}
.ls29a_c00001{letter-spacing:8.640000px;}
.ls341_c00001{letter-spacing:8.729100px;}
.ls297_c00001{letter-spacing:9.360000px;}
.ls2b9_c00001{letter-spacing:10.080000px;}
.ls2cc_c00001{letter-spacing:10.800000px;}
.ls2fc_c00001{letter-spacing:10.980000px;}
.ls3bc_c00001{letter-spacing:10.995840px;}
.ls2c2_c00001{letter-spacing:11.520000px;}
.ls2d7_c00001{letter-spacing:12.240000px;}
.ls29e_c00001{letter-spacing:12.960000px;}
.ls3b9_c00001{letter-spacing:13.147200px;}
.ls1ef_c00001{letter-spacing:13.229352px;}
.ls1d8_c00001{letter-spacing:13.592196px;}
.ls2f5_c00001{letter-spacing:13.680000px;}
.ls3ba_c00001{letter-spacing:13.864320px;}
.lsed_c00001{letter-spacing:14.040000px;}
.ls1d9_c00001{letter-spacing:14.040600px;}
.lsa0_c00001{letter-spacing:14.400000px;}
.ls38d_c00001{letter-spacing:15.120000px;}
.ls1d1_c00001{letter-spacing:15.390252px;}
.ls2e1_c00001{letter-spacing:15.831360px;}
.ls284_c00001{letter-spacing:15.840000px;}
.ls210_c00001{letter-spacing:16.470252px;}
.ls2e2_c00001{letter-spacing:16.560000px;}
.ls37b_c00001{letter-spacing:17.280000px;}
.ls3b5_c00001{letter-spacing:17.288640px;}
.ls2d2_c00001{letter-spacing:18.000000px;}
.ls1e0_c00001{letter-spacing:18.540000px;}
.ls2bc_c00001{letter-spacing:18.720000px;}
.ls2f6_c00001{letter-spacing:18.745920px;}
.ls17e_c00001{letter-spacing:19.080000px;}
.ls29d_c00001{letter-spacing:19.440000px;}
.ls2a0_c00001{letter-spacing:19.964880px;}
.ls1f2_c00001{letter-spacing:20.070000px;}
.ls29b_c00001{letter-spacing:20.160000px;}
.ls38e_c00001{letter-spacing:21.600000px;}
.ls313_c00001{letter-spacing:21.960000px;}
.ls2b7_c00001{letter-spacing:22.320000px;}
.ls3a3_c00001{letter-spacing:23.040000px;}
.ls381_c00001{letter-spacing:23.760000px;}
.ls398_c00001{letter-spacing:23.940000px;}
.ls25a_c00001{letter-spacing:24.480000px;}
.ls1e6_c00001{letter-spacing:24.570000px;}
.ls388_c00001{letter-spacing:25.200000px;}
.ls25b_c00001{letter-spacing:25.471296px;}
.ls3c6_c00001{letter-spacing:25.920000px;}
.ls2d0_c00001{letter-spacing:26.640000px;}
.ls319_c00001{letter-spacing:27.360000px;}
.ls2f9_c00001{letter-spacing:28.080000px;}
.ls3c5_c00001{letter-spacing:28.224000px;}
.ls282_c00001{letter-spacing:28.440000px;}
.ls354_c00001{letter-spacing:28.800000px;}
.ls39d_c00001{letter-spacing:28.814400px;}
.ls14b_c00001{letter-spacing:29.790252px;}
.ls113_c00001{letter-spacing:29.880000px;}
.ls1b5_c00001{letter-spacing:30.509136px;}
.ls29c_c00001{letter-spacing:30.960000px;}
.ls38b_c00001{letter-spacing:31.680000px;}
.ls3c4_c00001{letter-spacing:31.824000px;}
.ls278_c00001{letter-spacing:32.760000px;}
.ls2d1_c00001{letter-spacing:34.560000px;}
.ls394_c00001{letter-spacing:35.280000px;}
.ls283_c00001{letter-spacing:36.360000px;}
.ls27f_c00001{letter-spacing:36.720000px;}
.ls3d6_c00001{letter-spacing:36.864000px;}
.ls3a1_c00001{letter-spacing:37.425600px;}
.ls27e_c00001{letter-spacing:37.440000px;}
.ls2f4_c00001{letter-spacing:37.800000px;}
.ls324_c00001{letter-spacing:38.160000px;}
.lsa2_c00001{letter-spacing:38.880000px;}
.ls3ac_c00001{letter-spacing:39.876480px;}
.ls3ca_c00001{letter-spacing:40.680000px;}
.ls3d5_c00001{letter-spacing:41.184000px;}
.ls48_c00001{letter-spacing:41.760000px;}
.ls390_c00001{letter-spacing:42.480000px;}
.ls2b8_c00001{letter-spacing:43.200000px;}
.ls34e_c00001{letter-spacing:50.130000px;}
.lseb_c00001{letter-spacing:50.760000px;}
.ls34d_c00001{letter-spacing:51.652800px;}
.ls359_c00001{letter-spacing:53.908560px;}
.ls274_c00001{letter-spacing:54.864000px;}
.ls365_c00001{letter-spacing:55.715292px;}
.ls103_c00001{letter-spacing:55.846476px;}
.ls41b_c00001{letter-spacing:56.429604px;}
.ls407_c00001{letter-spacing:56.610000px;}
.lsea_c00001{letter-spacing:56.787660px;}
.ls38f_c00001{letter-spacing:56.880000px;}
.ls3d7_c00001{letter-spacing:58.050000px;}
.ls33a_c00001{letter-spacing:58.233348px;}
.ls2fa_c00001{letter-spacing:58.320000px;}
.lsac_c00001{letter-spacing:58.593348px;}
.ls35f_c00001{letter-spacing:59.490000px;}
.ls5d_c00001{letter-spacing:60.210576px;}
.ls411_c00001{letter-spacing:62.009820px;}
.ls33d_c00001{letter-spacing:62.913420px;}
.ls41e_c00001{letter-spacing:63.271476px;}
.ls39b_c00001{letter-spacing:63.360000px;}
.ls268_c00001{letter-spacing:63.564876px;}
.ls40c_c00001{letter-spacing:63.628560px;}
.ls35b_c00001{letter-spacing:63.988560px;}
.ls11b_c00001{letter-spacing:64.080000px;}
.ls222_c00001{letter-spacing:64.440000px;}
.ls3ce_c00001{letter-spacing:64.620000px;}
.ls3cd_c00001{letter-spacing:64.980000px;}
.ls37a_c00001{letter-spacing:65.504160px;}
.ls23d_c00001{letter-spacing:66.600000px;}
.ls72_c00001{letter-spacing:66.960000px;}
.ls3a8_c00001{letter-spacing:67.093920px;}
.ls100_c00001{letter-spacing:67.320000px;}
.ls23c_c00001{letter-spacing:69.120000px;}
.ls2a8_c00001{letter-spacing:70.200000px;}
.ls32c_c00001{letter-spacing:70.829532px;}
.ls405_c00001{letter-spacing:71.010000px;}
.ls21b_c00001{letter-spacing:71.280000px;}
.ls2bb_c00001{letter-spacing:71.549280px;}
.ls173_c00001{letter-spacing:71.640000px;}
.lsd8_c00001{letter-spacing:72.000000px;}
.ls276_c00001{letter-spacing:72.731592px;}
.ls2cb_c00001{letter-spacing:72.900000px;}
.ls2ba_c00001{letter-spacing:72.911520px;}
.lsf9_c00001{letter-spacing:73.350000px;}
.ls3d3_c00001{letter-spacing:73.530576px;}
.ls280_c00001{letter-spacing:73.800000px;}
.ls81_c00001{letter-spacing:74.160000px;}
.lsd7_c00001{letter-spacing:74.969316px;}
.ls321_c00001{letter-spacing:75.330576px;}
.ls4a_c00001{letter-spacing:75.420000px;}
.ls3e9_c00001{letter-spacing:75.690000px;}
.ls88_c00001{letter-spacing:75.690576px;}
.ls3db_c00001{letter-spacing:76.410000px;}
.ls3d8_c00001{letter-spacing:78.570000px;}
.ls13f_c00001{letter-spacing:79.200000px;}
.ls149_c00001{letter-spacing:79.290000px;}
.ls356_c00001{letter-spacing:79.649676px;}
.ls28c_c00001{letter-spacing:80.079840px;}
.ls7f_c00001{letter-spacing:80.187660px;}
.lscc_c00001{letter-spacing:80.369496px;}
.ls393_c00001{letter-spacing:80.648640px;}
.ls36d_c00001{letter-spacing:81.090000px;}
.ls327_c00001{letter-spacing:81.276264px;}
.ls402_c00001{letter-spacing:81.636264px;}
.ls26e_c00001{letter-spacing:83.790000px;}
.ls400_c00001{letter-spacing:84.149532px;}
.ls3cb_c00001{letter-spacing:84.780000px;}
.ls314_c00001{letter-spacing:85.104000px;}
.ls320_c00001{letter-spacing:85.229532px;}
.ls3d1_c00001{letter-spacing:85.775796px;}
.ls3ef_c00001{letter-spacing:86.490000px;}
.ls35e_c00001{letter-spacing:86.671476px;}
.ls368_c00001{letter-spacing:86.844096px;}
.ls16f_c00001{letter-spacing:88.200000px;}
.ls346_c00001{letter-spacing:89.909460px;}
.ls3c3_c00001{letter-spacing:90.000000px;}
.ls406_c00001{letter-spacing:90.090000px;}
.lse6_c00001{letter-spacing:90.267660px;}
.ls363_c00001{letter-spacing:90.591120px;}
.ls317_c00001{letter-spacing:92.304000px;}
.ls36f_c00001{letter-spacing:92.970000px;}
.ls3dd_c00001{letter-spacing:93.330000px;}
.ls361_c00001{letter-spacing:93.515292px;}
.ls334_c00001{letter-spacing:94.229532px;}
.ls31e_c00001{letter-spacing:94.589532px;}
.ls315_c00001{letter-spacing:95.544000px;}
.ls2eb_c00001{letter-spacing:95.940000px;}
.ls244_c00001{letter-spacing:96.660000px;}
.ls25d_c00001{letter-spacing:97.200000px;}
.ls21a_c00001{letter-spacing:97.560000px;}
.ls3ed_c00001{letter-spacing:98.010000px;}
.ls11e_c00001{letter-spacing:99.720000px;}
.ls316_c00001{letter-spacing:102.384000px;}
.ls414_c00001{letter-spacing:102.690000px;}
.ls263_c00001{letter-spacing:103.320000px;}
.ls24a_c00001{letter-spacing:104.580000px;}
.ls172_c00001{letter-spacing:104.760000px;}
.ls417_c00001{letter-spacing:105.210000px;}
.ls419_c00001{letter-spacing:108.450000px;}
.ls416_c00001{letter-spacing:109.170000px;}
.ls318_c00001{letter-spacing:111.643128px;}
.ls3e4_c00001{letter-spacing:111.690216px;}
.lsae_c00001{letter-spacing:112.410000px;}
.ls1d6_c00001{letter-spacing:112.680000px;}
.ls1f4_c00001{letter-spacing:113.221368px;}
.ls11c_c00001{letter-spacing:113.760000px;}
.ls3de_c00001{letter-spacing:115.470000px;}
.ls261_c00001{letter-spacing:115.737984px;}
.ls3f5_c00001{letter-spacing:115.740000px;}
.ls338_c00001{letter-spacing:116.190000px;}
.lsb3_c00001{letter-spacing:116.368272px;}
.ls3e6_c00001{letter-spacing:119.430000px;}
.ls7d_c00001{letter-spacing:119.790000px;}
.ls41d_c00001{letter-spacing:124.740000px;}
.ls226_c00001{letter-spacing:125.102880px;}
.ls68_c00001{letter-spacing:125.370036px;}
.ls36b_c00001{letter-spacing:126.450000px;}
.ls11d_c00001{letter-spacing:128.520000px;}
.ls2aa_c00001{letter-spacing:128.968416px;}
.ls248_c00001{letter-spacing:129.780000px;}
.ls221_c00001{letter-spacing:130.139352px;}
.ls24b_c00001{letter-spacing:130.500000px;}
.ls1e1_c00001{letter-spacing:130.501692px;}
.ls179_c00001{letter-spacing:131.219856px;}
.ls3e0_c00001{letter-spacing:132.570000px;}
.ls36e_c00001{letter-spacing:132.930000px;}
.ls178_c00001{letter-spacing:134.098740px;}
.ls3f7_c00001{letter-spacing:136.980000px;}
.ls140_c00001{letter-spacing:140.040000px;}
.ls410_c00001{letter-spacing:142.650000px;}
.ls3da_c00001{letter-spacing:146.610000px;}
.ls247_c00001{letter-spacing:148.410000px;}
.ls20a_c00001{letter-spacing:149.400000px;}
.ls3a6_c00001{letter-spacing:149.940000px;}
.ls1b7_c00001{letter-spacing:150.840000px;}
.ls2ec_c00001{letter-spacing:157.860000px;}
.ls1ed_c00001{letter-spacing:158.219172px;}
.ls1ec_c00001{letter-spacing:158.221008px;}
.ls33b_c00001{letter-spacing:158.310000px;}
.ls401_c00001{letter-spacing:162.450000px;}
.ls1f3_c00001{letter-spacing:162.539136px;}
.ls40e_c00001{letter-spacing:165.330000px;}
.ls36a_c00001{letter-spacing:165.960000px;}
.lsbb_c00001{letter-spacing:166.596264px;}
.ls3e2_c00001{letter-spacing:166.770000px;}
.ls115_c00001{letter-spacing:167.310000px;}
.ls24c_c00001{letter-spacing:171.090000px;}
.ls1d7_c00001{letter-spacing:171.360000px;}
.ls1de_c00001{letter-spacing:171.808452px;}
.ls1b8_c00001{letter-spacing:172.800000px;}
.ls39f_c00001{letter-spacing:175.668480px;}
.ls1df_c00001{letter-spacing:176.130180px;}
.ls34c_c00001{letter-spacing:176.847120px;}
.ls3ee_c00001{letter-spacing:178.292700px;}
.ls225_c00001{letter-spacing:179.457120px;}
.ls1e2_c00001{letter-spacing:179.819460px;}
.ls249_c00001{letter-spacing:179.820000px;}
.ls370_c00001{letter-spacing:181.530000px;}
.ls28d_c00001{letter-spacing:182.283840px;}
.ls206_c00001{letter-spacing:182.520000px;}
.ls40b_c00001{letter-spacing:183.689892px;}
.ls37f_c00001{letter-spacing:185.436000px;}
.ls34b_c00001{letter-spacing:185.846328px;}
.ls245_c00001{letter-spacing:187.650000px;}
.ls31b_c00001{letter-spacing:194.400000px;}
.ls289_c00001{letter-spacing:194.768640px;}
.ls3fa_c00001{letter-spacing:204.928992px;}
.ls94_c00001{letter-spacing:209.880000px;}
.ls366_c00001{letter-spacing:216.449820px;}
.ls36c_c00001{letter-spacing:216.810000px;}
.ls403_c00001{letter-spacing:221.940000px;}
.ls3e7_c00001{letter-spacing:222.570648px;}
.ls3ec_c00001{letter-spacing:224.006832px;}
.ls1dd_c00001{letter-spacing:225.092196px;}
.ls39e_c00001{letter-spacing:228.925440px;}
.ls369_c00001{letter-spacing:231.120000px;}
.ls348_c00001{letter-spacing:231.567048px;}
.ls1cc_c00001{letter-spacing:232.650000px;}
.ls367_c00001{letter-spacing:238.407624px;}
.ls10b_c00001{letter-spacing:243.270000px;}
.ls2fe_c00001{letter-spacing:250.740000px;}
.ls349_c00001{letter-spacing:255.692304px;}
.ls3eb_c00001{letter-spacing:261.084096px;}
.lse0_c00001{letter-spacing:271.892088px;}
.lsbc_c00001{letter-spacing:314.731332px;}
.ls17d_c00001{letter-spacing:318.150000px;}
.ls347_c00001{letter-spacing:326.967876px;}
.ls3f8_c00001{letter-spacing:353.971332px;}
.ls1e3_c00001{letter-spacing:358.740000px;}
.ls2f2_c00001{letter-spacing:367.380000px;}
.ls1ce_c00001{letter-spacing:367.651836px;}
.ls1da_c00001{letter-spacing:383.040000px;}
.ls335_c00001{letter-spacing:389.611332px;}
.ls3e8_c00001{letter-spacing:390.689820px;}
.ls1e5_c00001{letter-spacing:401.580000px;}
.ls345_c00001{letter-spacing:404.007948px;}
.ls25f_c00001{letter-spacing:406.800000px;}
.ls123_c00001{letter-spacing:408.960000px;}
.ls3ea_c00001{letter-spacing:412.647624px;}
.ls355_c00001{letter-spacing:422.368596px;}
.ls372_c00001{letter-spacing:439.200000px;}
.ls1e4_c00001{letter-spacing:441.900000px;}
.ls148_c00001{letter-spacing:444.960000px;}
.lsab_c00001{letter-spacing:450.451512px;}
.ls120_c00001{letter-spacing:456.840000px;}
.ls3f6_c00001{letter-spacing:458.012448px;}
.ls101_c00001{letter-spacing:459.360000px;}
.ls10c_c00001{letter-spacing:462.330000px;}
.ls1f5_c00001{letter-spacing:463.860000px;}
.ls205_c00001{letter-spacing:465.210000px;}
.ls260_c00001{letter-spacing:481.680000px;}
.ls196_c00001{letter-spacing:482.400000px;}
.ls3f3_c00001{letter-spacing:482.489856px;}
.ls1a8_c00001{letter-spacing:484.560000px;}
.ls195_c00001{letter-spacing:486.000000px;}
.ls339_c00001{letter-spacing:493.291512px;}
.ls35c_c00001{letter-spacing:513.090792px;}
.ls34a_c00001{letter-spacing:519.568056px;}
.ls3a9_c00001{letter-spacing:520.704000px;}
.lsfe_c00001{letter-spacing:525.240000px;}
.ls1a2_c00001{letter-spacing:526.320000px;}
.ls223_c00001{letter-spacing:526.680000px;}
.ls250_c00001{letter-spacing:528.210000px;}
.ls109_c00001{letter-spacing:529.740000px;}
.ls19a_c00001{letter-spacing:530.280000px;}
.ls22f_c00001{letter-spacing:531.270000px;}
.ls224_c00001{letter-spacing:539.640000px;}
.ls1a4_c00001{letter-spacing:546.480000px;}
.ls227_c00001{letter-spacing:550.800000px;}
.ls199_c00001{letter-spacing:555.840000px;}
.ls360_c00001{letter-spacing:557.732232px;}
.ls19b_c00001{letter-spacing:559.080000px;}
.ls19f_c00001{letter-spacing:570.240000px;}
.ls273_c00001{letter-spacing:570.696984px;}
.ls25e_c00001{letter-spacing:572.760000px;}
.ls7a_c00001{letter-spacing:574.650000px;}
.ls287_c00001{letter-spacing:585.360000px;}
.ls1a0_c00001{letter-spacing:592.200000px;}
.ls21d_c00001{letter-spacing:595.080000px;}
.ls271_c00001{letter-spacing:598.680000px;}
.ls198_c00001{letter-spacing:599.760000px;}
.ls19c_c00001{letter-spacing:605.160000px;}
.ls16e_c00001{letter-spacing:605.430000px;}
.ls1a1_c00001{letter-spacing:610.920000px;}
.ls266_c00001{letter-spacing:612.090000px;}
.ls1a6_c00001{letter-spacing:612.360000px;}
.ls197_c00001{letter-spacing:614.520000px;}
.ls1a7_c00001{letter-spacing:620.280000px;}
.ls25c_c00001{letter-spacing:635.040000px;}
.ls3f4_c00001{letter-spacing:636.568848px;}
.ls412_c00001{letter-spacing:640.890792px;}
.ls269_c00001{letter-spacing:641.520000px;}
.ls1a3_c00001{letter-spacing:647.280000px;}
.ls22d_c00001{letter-spacing:664.920000px;}
.ls39c_c00001{letter-spacing:668.825280px;}
.ls21e_c00001{letter-spacing:675.360000px;}
.ls259_c00001{letter-spacing:686.880000px;}
.ls1a9_c00001{letter-spacing:687.960000px;}
.ls177_c00001{letter-spacing:689.760000px;}
.ls21c_c00001{letter-spacing:697.320000px;}
.ls21f_c00001{letter-spacing:699.480000px;}
.ls340_c00001{letter-spacing:724.051764px;}
.ls265_c00001{letter-spacing:724.911120px;}
.ls174_c00001{letter-spacing:734.400000px;}
.ls219_c00001{letter-spacing:737.640000px;}
.ls1a5_c00001{letter-spacing:740.520000px;}
.ls7b_c00001{letter-spacing:753.212808px;}
.ls2fb_c00001{letter-spacing:754.020000px;}
.ls3c7_c00001{letter-spacing:759.600000px;}
.ls22e_c00001{letter-spacing:771.120000px;}
.ls3aa_c00001{letter-spacing:786.384000px;}
.ls1be_c00001{letter-spacing:790.560000px;}
.ls170_c00001{letter-spacing:790.920000px;}
.ls19e_c00001{letter-spacing:795.600000px;}
.ls171_c00001{letter-spacing:799.560000px;}
.lsd5_c00001{letter-spacing:819.720000px;}
.ls175_c00001{letter-spacing:821.880000px;}
.ls87_c00001{letter-spacing:829.440000px;}
.lscf_c00001{letter-spacing:832.680000px;}
.ls379_c00001{letter-spacing:833.034240px;}
.ls234_c00001{letter-spacing:833.760000px;}
.ls1bf_c00001{letter-spacing:840.240000px;}
.lsce_c00001{letter-spacing:843.840000px;}
.ls92_c00001{letter-spacing:873.360000px;}
.ls89_c00001{letter-spacing:893.880000px;}
.ls1b9_c00001{letter-spacing:917.280000px;}
.lsd1_c00001{letter-spacing:920.880000px;}
.ls19d_c00001{letter-spacing:924.120000px;}
.ls1c0_c00001{letter-spacing:932.040000px;}
.ls8f_c00001{letter-spacing:950.760000px;}
.ls342_c00001{letter-spacing:962.370108px;}
.ls10d_c00001{letter-spacing:963.720000px;}
.ls1ba_c00001{letter-spacing:966.600000px;}
.ls1bc_c00001{letter-spacing:968.760000px;}
.ls1f8_c00001{letter-spacing:969.750000px;}
.ls1f1_c00001{letter-spacing:970.110000px;}
.lsd9_c00001{letter-spacing:980.280000px;}
.ls8b_c00001{letter-spacing:992.520000px;}
.ls8d_c00001{letter-spacing:994.680000px;}
.ls295_c00001{letter-spacing:995.760000px;}
.ls3ab_c00001{letter-spacing:999.540000px;}
.ls176_c00001{letter-spacing:999.720000px;}
.lsd4_c00001{letter-spacing:1001.520000px;}
.ls1b1_c00001{letter-spacing:1003.680000px;}
.ls409_c00001{letter-spacing:1005.210000px;}
.ls1bd_c00001{letter-spacing:1008.720000px;}
.lsd2_c00001{letter-spacing:1023.480000px;}
.lsd0_c00001{letter-spacing:1025.280000px;}
.ls9a_c00001{letter-spacing:1029.600000px;}
.ls371_c00001{letter-spacing:1037.069892px;}
.ls8a_c00001{letter-spacing:1051.200000px;}
.ls9b_c00001{letter-spacing:1068.120000px;}
.ls220_c00001{letter-spacing:1069.560000px;}
.ls8c_c00001{letter-spacing:1077.120000px;}
.ls96_c00001{letter-spacing:1082.520000px;}
.ls8e_c00001{letter-spacing:1082.880000px;}
.ls3d0_c00001{letter-spacing:1085.490000px;}
.lsd3_c00001{letter-spacing:1096.560000px;}
.ls302_c00001{letter-spacing:1109.162016px;}
.ls3c2_c00001{letter-spacing:1142.640000px;}
.ls1cd_c00001{letter-spacing:1145.880000px;}
.ls99_c00001{letter-spacing:1161.720000px;}
.ls3e1_c00001{letter-spacing:1170.810000px;}
.ls1b0_c00001{letter-spacing:1185.120000px;}
.ls1ab_c00001{letter-spacing:1199.520000px;}
.ls212_c00001{letter-spacing:1199.791404px;}
.ls20d_c00001{letter-spacing:1202.040000px;}
.lscd_c00001{letter-spacing:1208.520000px;}
.ls336_c00001{letter-spacing:1221.932664px;}
.ls95_c00001{letter-spacing:1231.200000px;}
.ls98_c00001{letter-spacing:1236.600000px;}
.ls97_c00001{letter-spacing:1242.360000px;}
.ls3a7_c00001{letter-spacing:1245.085200px;}
.ls209_c00001{letter-spacing:1246.680000px;}
.ls9d_c00001{letter-spacing:1251.360000px;}
.ls28b_c00001{letter-spacing:1251.722160px;}
.ls3c8_c00001{letter-spacing:1254.080880px;}
.ls310_c00001{letter-spacing:1257.480000px;}
.ls279_c00001{letter-spacing:1259.012916px;}
.ls90_c00001{letter-spacing:1260.360000px;}
.ls1eb_c00001{letter-spacing:1262.340000px;}
.ls1ae_c00001{letter-spacing:1278.720000px;}
.ls208_c00001{letter-spacing:1303.200000px;}
.ls91_c00001{letter-spacing:1311.840000px;}
.ls235_c00001{letter-spacing:1327.590000px;}
.ls207_c00001{letter-spacing:1328.400000px;}
.ls20c_c00001{letter-spacing:1334.160000px;}
.ls1aa_c00001{letter-spacing:1348.200000px;}
.ls1ad_c00001{letter-spacing:1353.600000px;}
.ls1ac_c00001{letter-spacing:1359.360000px;}
.ls1b4_c00001{letter-spacing:1368.360000px;}
.ls34f_c00001{letter-spacing:1390.950000px;}
.ls357_c00001{letter-spacing:1406.970000px;}
.ls41a_c00001{letter-spacing:1412.010000px;}
.ls32d_c00001{letter-spacing:1415.070000px;}
.ls3d4_c00001{letter-spacing:1430.370000px;}
.ls3cf_c00001{letter-spacing:1431.090000px;}
.ls26a_c00001{letter-spacing:1438.295292px;}
.ls3cc_c00001{letter-spacing:1471.770000px;}
.ls5f_c00001{letter-spacing:1472.850000px;}
.ls329_c00001{letter-spacing:1473.210000px;}
.ls328_c00001{letter-spacing:1473.570000px;}
.ls20b_c00001{letter-spacing:1512.000000px;}
.ls322_c00001{letter-spacing:1515.330000px;}
.ls3d2_c00001{letter-spacing:1557.810000px;}
.ls69_c00001{letter-spacing:1560.870000px;}
.ls3df_c00001{letter-spacing:1579.950000px;}
.lsaf_c00001{letter-spacing:1601.010000px;}
.ls40d_c00001{letter-spacing:1602.540000px;}
.ls364_c00001{letter-spacing:1619.370000px;}
.ls230_c00001{letter-spacing:1619.999400px;}
.ls31f_c00001{letter-spacing:1631.250000px;}
.lse1_c00001{letter-spacing:1643.490000px;}
.ls70_c00001{letter-spacing:1644.840000px;}
.lsda_c00001{letter-spacing:1645.020000px;}
.ls231_c00001{letter-spacing:1676.879400px;}
.lse2_c00001{letter-spacing:1685.970000px;}
.lsbf_c00001{letter-spacing:1709.730000px;}
.lse8_c00001{letter-spacing:1737.450000px;}
.ls40f_c00001{letter-spacing:1752.210000px;}
.ls73_c00001{letter-spacing:1770.570000px;}
.ls84_c00001{letter-spacing:1770.930000px;}
.ls9f_c00001{letter-spacing:1771.290000px;}
.ls33c_c00001{letter-spacing:1774.350000px;}
.ls2ee_c00001{letter-spacing:1777.320000px;}
.ls41c_c00001{letter-spacing:1803.690000px;}
.ls3dc_c00001{letter-spacing:1813.770000px;}
.ls39a_c00001{letter-spacing:1859.220000px;}
.ls1b3_c00001{letter-spacing:1885.320000px;}
.ls40a_c00001{letter-spacing:1886.850000px;}
.ls1af_c00001{letter-spacing:1895.760000px;}
.ls408_c00001{letter-spacing:1897.290000px;}
.ls396_c00001{letter-spacing:2156.580000px;}
.ls232_c00001{letter-spacing:2252.520000px;}
.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;}
}
.ws14f8_c00001{word-spacing:-153.450000px;}
.ws8a9_c00001{word-spacing:-146.971692px;}
.wsf37_c00001{word-spacing:-144.000000px;}
.ws93c_c00001{word-spacing:-129.691368px;}
.wsea4_c00001{word-spacing:-108.000000px;}
.wsea3_c00001{word-spacing:-96.120000px;}
.wsf09_c00001{word-spacing:-95.760000px;}
.ws603_c00001{word-spacing:-72.000000px;}
.ws9de_c00001{word-spacing:-71.920800px;}
.ws463_c00001{word-spacing:-65.880000px;}
.wsd9_c00001{word-spacing:-60.120000px;}
.wsa00_c00001{word-spacing:-59.849460px;}
.wsed_c00001{word-spacing:-54.000000px;}
.ws162_c00001{word-spacing:-47.880000px;}
.ws1396_c00001{word-spacing:-43.434720px;}
.ws13a0_c00001{word-spacing:-27.324000px;}
.wsf1d_c00001{word-spacing:-27.000000px;}
.ws13ac_c00001{word-spacing:-26.676000px;}
.ws13ad_c00001{word-spacing:-26.568000px;}
.wseb1_c00001{word-spacing:-24.323040px;}
.wsecd_c00001{word-spacing:-23.940000px;}
.wse9d_c00001{word-spacing:-21.396960px;}
.wsedf_c00001{word-spacing:-21.144240px;}
.ws8f_c00001{word-spacing:-21.070656px;}
.wsf05_c00001{word-spacing:-21.060000px;}
.wsf14_c00001{word-spacing:-20.975760px;}
.wsec1_c00001{word-spacing:-20.723040px;}
.wsed4_c00001{word-spacing:-20.386080px;}
.wsec2_c00001{word-spacing:-20.301840px;}
.ws13f9_c00001{word-spacing:-20.049120px;}
.ws13ae_c00001{word-spacing:-18.720000px;}
.ws139c_c00001{word-spacing:-18.576000px;}
.ws13f4_c00001{word-spacing:-18.432000px;}
.wse9a_c00001{word-spacing:-18.288000px;}
.ws102d_c00001{word-spacing:-18.230400px;}
.wsf19_c00001{word-spacing:-18.216000px;}
.wse9c_c00001{word-spacing:-18.144000px;}
.wsec_c00001{word-spacing:-18.115200px;}
.wsb7_c00001{word-spacing:-18.100800px;}
.ws19f_c00001{word-spacing:-18.093600px;}
.ws91_c00001{word-spacing:-18.086400px;}
.ws9c2_c00001{word-spacing:-18.079200px;}
.ws81e_c00001{word-spacing:-18.072000px;}
.ws9c1_c00001{word-spacing:-18.064800px;}
.ws3be_c00001{word-spacing:-18.057600px;}
.ws342_c00001{word-spacing:-18.050400px;}
.ws361_c00001{word-spacing:-18.043200px;}
.ws70a_c00001{word-spacing:-18.036000px;}
.ws4_c00001{word-spacing:-18.028800px;}
.wsce_c00001{word-spacing:-18.021600px;}
.ws403_c00001{word-spacing:-18.014400px;}
.ws81f_c00001{word-spacing:-18.007200px;}
.ws90_c00001{word-spacing:-18.000000px;}
.ws305_c00001{word-spacing:-17.992800px;}
.ws1fa_c00001{word-spacing:-17.985600px;}
.wseb_c00001{word-spacing:-17.978400px;}
.ws2a_c00001{word-spacing:-17.971200px;}
.wsd00_c00001{word-spacing:-17.964000px;}
.wsd81_c00001{word-spacing:-17.956800px;}
.ws311_c00001{word-spacing:-17.949600px;}
.wsca9_c00001{word-spacing:-17.942400px;}
.ws943_c00001{word-spacing:-17.935200px;}
.wsb34_c00001{word-spacing:-17.920800px;}
.wsea5_c00001{word-spacing:-17.913600px;}
.ws974_c00001{word-spacing:-17.906400px;}
.wsd0f_c00001{word-spacing:-17.884800px;}
.wsd10_c00001{word-spacing:-17.863200px;}
.ws584_c00001{word-spacing:-17.856000px;}
.ws54b_c00001{word-spacing:-17.848800px;}
.ws820_c00001{word-spacing:-17.791200px;}
.wseb2_c00001{word-spacing:-17.784000px;}
.ws14f1_c00001{word-spacing:-17.726400px;}
.wse99_c00001{word-spacing:-17.712000px;}
.ws1397_c00001{word-spacing:-17.677440px;}
.ws975_c00001{word-spacing:-17.582400px;}
.ws13a8_c00001{word-spacing:-17.496000px;}
.ws13ab_c00001{word-spacing:-17.424000px;}
.wsec0_c00001{word-spacing:-17.208000px;}
.wsed6_c00001{word-spacing:-17.156160px;}
.wse9b_c00001{word-spacing:-17.064000px;}
.wsecf_c00001{word-spacing:-16.992000px;}
.wsee2_c00001{word-spacing:-16.891200px;}
.wsf06_c00001{word-spacing:-16.824960px;}
.wsec4_c00001{word-spacing:-16.692480px;}
.ws1561_c00001{word-spacing:-16.667640px;}
.ws130_c00001{word-spacing:-16.647876px;}
.ws674_c00001{word-spacing:-16.628112px;}
.ws20e_c00001{word-spacing:-16.621524px;}
.ws363_c00001{word-spacing:-16.608348px;}
.ws60e_c00001{word-spacing:-16.601760px;}
.wsb5f_c00001{word-spacing:-16.595172px;}
.ws179_c00001{word-spacing:-16.588584px;}
.ws362_c00001{word-spacing:-16.581996px;}
.ws365_c00001{word-spacing:-16.575408px;}
.wsef_c00001{word-spacing:-16.568820px;}
.wsa0b_c00001{word-spacing:-16.562232px;}
.wsed5_c00001{word-spacing:-16.560000px;}
.ws316_c00001{word-spacing:-16.555644px;}
.ws11b_c00001{word-spacing:-16.549056px;}
.ws364_c00001{word-spacing:-16.542468px;}
.ws315_c00001{word-spacing:-16.535880px;}
.ws152_c00001{word-spacing:-16.529292px;}
.ws194_c00001{word-spacing:-16.522704px;}
.ws312_c00001{word-spacing:-16.516116px;}
.ws151_c00001{word-spacing:-16.509528px;}
.ws229_c00001{word-spacing:-16.502940px;}
.ws313_c00001{word-spacing:-16.496352px;}
.ws114a_c00001{word-spacing:-16.489764px;}
.wsb6_c00001{word-spacing:-16.483176px;}
.ws2f7_c00001{word-spacing:-16.476588px;}
.wsee_c00001{word-spacing:-16.470000px;}
.ws12a7_c00001{word-spacing:-16.463412px;}
.ws17a_c00001{word-spacing:-16.456824px;}
.ws195_c00001{word-spacing:-16.450236px;}
.ws12a5_c00001{word-spacing:-16.443648px;}
.ws60d_c00001{word-spacing:-16.437060px;}
.ws12a6_c00001{word-spacing:-16.430472px;}
.wsec5_c00001{word-spacing:-16.427520px;}
.ws314_c00001{word-spacing:-16.423884px;}
.ws11c_c00001{word-spacing:-16.417296px;}
.ws1b0_c00001{word-spacing:-16.410708px;}
.ws14ad_c00001{word-spacing:-16.390944px;}
.wsee1_c00001{word-spacing:-16.295040px;}
.wsece_c00001{word-spacing:-16.228800px;}
.wsf0b_c00001{word-spacing:-16.162560px;}
.ws13a1_c00001{word-spacing:-16.135200px;}
.wsf2e_c00001{word-spacing:-16.096320px;}
.wsee0_c00001{word-spacing:-15.963840px;}
.wsef8_c00001{word-spacing:-15.831360px;}
.wsef9_c00001{word-spacing:-15.698880px;}
.wsf0a_c00001{word-spacing:-15.433920px;}
.wsf1f_c00001{word-spacing:-15.367680px;}
.wse90_c00001{word-spacing:-15.298560px;}
.ws2_c00001{word-spacing:-15.210360px;}
.wseb4_c00001{word-spacing:-15.179040px;}
.ws3e2_c00001{word-spacing:-15.174288px;}
.wsf2d_c00001{word-spacing:-15.102720px;}
.ws14cd_c00001{word-spacing:-15.102144px;}
.wse72_c00001{word-spacing:-15.090120px;}
.wse91_c00001{word-spacing:-15.059520px;}
.wse62_c00001{word-spacing:-15.054048px;}
.ws1_c00001{word-spacing:-15.036012px;}
.ws0_c00001{word-spacing:-15.030000px;}
.ws149b_c00001{word-spacing:-15.011964px;}
.wse71_c00001{word-spacing:-15.005952px;}
.wse70_c00001{word-spacing:-14.999940px;}
.ws1410_c00001{word-spacing:-14.999760px;}
.ws12ca_c00001{word-spacing:-14.993928px;}
.ws3a3_c00001{word-spacing:-14.963868px;}
.wsde5_c00001{word-spacing:-14.951844px;}
.ws86e_c00001{word-spacing:-14.945832px;}
.wsf08_c00001{word-spacing:-14.940000px;}
.ws5e4_c00001{word-spacing:-14.939820px;}
.ws1351_c00001{word-spacing:-14.914800px;}
.wsde6_c00001{word-spacing:-14.909760px;}
.ws1398_c00001{word-spacing:-14.880240px;}
.ws86d_c00001{word-spacing:-14.861664px;}
.ws763_c00001{word-spacing:-14.849640px;}
.wseb3_c00001{word-spacing:-14.820480px;}
.ws13f3_c00001{word-spacing:-14.700960px;}
.ws13a7_c00001{word-spacing:-14.461920px;}
.ws317_c00001{word-spacing:-13.500000px;}
.wsebf_c00001{word-spacing:-13.392000px;}
.ws13a5_c00001{word-spacing:-13.386240px;}
.wsec3_c00001{word-spacing:-13.284000px;}
.ws13d6_c00001{word-spacing:-12.582000px;}
.wsf07_c00001{word-spacing:-12.252960px;}
.ws153_c00001{word-spacing:-12.151944px;}
.wsa4d_c00001{word-spacing:-12.089700px;}
.wse41_c00001{word-spacing:-12.065760px;}
.ws13af_c00001{word-spacing:-12.060000px;}
.ws3e1_c00001{word-spacing:-12.051396px;}
.wsdf7_c00001{word-spacing:-12.041820px;}
.wse17_c00001{word-spacing:-12.037032px;}
.wsd58_c00001{word-spacing:-12.032244px;}
.wsca8_c00001{word-spacing:-12.027456px;}
.wse16_c00001{word-spacing:-12.022668px;}
.wsdf6_c00001{word-spacing:-12.017880px;}
.wse40_c00001{word-spacing:-12.013092px;}
.ws13a6_c00001{word-spacing:-12.011760px;}
.wsd57_c00001{word-spacing:-12.008304px;}
.wsb17_c00001{word-spacing:-11.998728px;}
.wse42_c00001{word-spacing:-11.989152px;}
.ws3e0_c00001{word-spacing:-11.974788px;}
.ws3a4_c00001{word-spacing:-11.970000px;}
.ws330_c00001{word-spacing:-11.965212px;}
.wse43_c00001{word-spacing:-11.926908px;}
.ws8da_c00001{word-spacing:-11.874240px;}
.ws1404_c00001{word-spacing:-11.867040px;}
.ws14ce_c00001{word-spacing:-11.807208px;}
.ws964_c00001{word-spacing:-11.788056px;}
.wsb5e_c00001{word-spacing:-10.711116px;}
.wsbcc_c00001{word-spacing:-10.643724px;}
.ws14f2_c00001{word-spacing:-10.588968px;}
.ws1321_c00001{word-spacing:-10.546848px;}
.ws299_c00001{word-spacing:-10.530000px;}
.wsa44_c00001{word-spacing:-10.462608px;}
.ws178_c00001{word-spacing:-9.079200px;}
.ws1306_c00001{word-spacing:-8.863200px;}
.wsf18_c00001{word-spacing:-1.263600px;}
.wsed1_c00001{word-spacing:-1.059840px;}
.wsf11_c00001{word-spacing:-1.010880px;}
.wse98_c00001{word-spacing:-0.896400px;}
.wsed2_c00001{word-spacing:-0.861120px;}
.ws13c5_c00001{word-spacing:-0.842400px;}
.wsf1e_c00001{word-spacing:-0.841680px;}
.wsecc_c00001{word-spacing:-0.728640px;}
.wseb9_c00001{word-spacing:-0.721440px;}
.wsf15_c00001{word-spacing:-0.720000px;}
.wsec8_c00001{word-spacing:-0.717120px;}
.ws13a3_c00001{word-spacing:-0.657360px;}
.ws122a_c00001{word-spacing:-0.632016px;}
.ws36b_c00001{word-spacing:-0.631800px;}
.wseb8_c00001{word-spacing:-0.601200px;}
.wsede_c00001{word-spacing:-0.596160px;}
.ws13b1_c00001{word-spacing:-0.589680px;}
.ws14fb_c00001{word-spacing:-0.581256px;}
.wsef7_c00001{word-spacing:-0.537840px;}
.ws1412_c00001{word-spacing:-0.530640px;}
.wsf57_c00001{word-spacing:-0.520056px;}
.wse9e_c00001{word-spacing:-0.505440px;}
.ws137_c00001{word-spacing:-0.450900px;}
.ws10b1_c00001{word-spacing:-0.447984px;}
.wsdcf_c00001{word-spacing:-0.439200px;}
.ws4bf_c00001{word-spacing:-0.432000px;}
.wsc07_c00001{word-spacing:-0.428220px;}
.ws24e_c00001{word-spacing:-0.426852px;}
.ws6bb_c00001{word-spacing:-0.426132px;}
.ws28a_c00001{word-spacing:-0.424800px;}
.ws10ad_c00001{word-spacing:-0.420840px;}
.wsed8_c00001{word-spacing:-0.418320px;}
.ws360_c00001{word-spacing:-0.417600px;}
.wsea_c00001{word-spacing:-0.410400px;}
.ws111_c00001{word-spacing:-0.408816px;}
.wse19_c00001{word-spacing:-0.403200px;}
.wse2_c00001{word-spacing:-0.402804px;}
.wsf1c_c00001{word-spacing:-0.397440px;}
.ws11ad_c00001{word-spacing:-0.396792px;}
.ws569_c00001{word-spacing:-0.396000px;}
.wsfa0_c00001{word-spacing:-0.395280px;}
.ws7d8_c00001{word-spacing:-0.394200px;}
.wsbd_c00001{word-spacing:-0.388800px;}
.ws24c_c00001{word-spacing:-0.384768px;}
.wsed0_c00001{word-spacing:-0.383040px;}
.ws4e9_c00001{word-spacing:-0.381600px;}
.wse95_c00001{word-spacing:-0.380160px;}
.ws3a8_c00001{word-spacing:-0.378756px;}
.ws151e_c00001{word-spacing:-0.375516px;}
.ws167_c00001{word-spacing:-0.374400px;}
.ws177_c00001{word-spacing:-0.367200px;}
.ws3a9_c00001{word-spacing:-0.366732px;}
.ws793_c00001{word-spacing:-0.360720px;}
.ws226_c00001{word-spacing:-0.360000px;}
.wsf0d_c00001{word-spacing:-0.358560px;}
.ws3e7_c00001{word-spacing:-0.354708px;}
.ws5af_c00001{word-spacing:-0.352800px;}
.wsa_c00001{word-spacing:-0.348696px;}
.wsa64_c00001{word-spacing:-0.345600px;}
.ws2e7_c00001{word-spacing:-0.342684px;}
.ws1217_c00001{word-spacing:-0.342576px;}
.wscb_c00001{word-spacing:-0.338400px;}
.ws139e_c00001{word-spacing:-0.336960px;}
.ws2ec_c00001{word-spacing:-0.336672px;}
.ws10fa_c00001{word-spacing:-0.335988px;}
.wsf0e_c00001{word-spacing:-0.331200px;}
.ws3e8_c00001{word-spacing:-0.330660px;}
.ws2e9_c00001{word-spacing:-0.324648px;}
.wsc1e_c00001{word-spacing:-0.324000px;}
.wsb_c00001{word-spacing:-0.318636px;}
.ws3df_c00001{word-spacing:-0.316800px;}
.wsad7_c00001{word-spacing:-0.316224px;}
.ws139a_c00001{word-spacing:-0.312480px;}
.ws1287_c00001{word-spacing:-0.309636px;}
.ws562_c00001{word-spacing:-0.309600px;}
.ws762_c00001{word-spacing:-0.306612px;}
.ws747_c00001{word-spacing:-0.306432px;}
.ws84d_c00001{word-spacing:-0.303048px;}
.ws8f6_c00001{word-spacing:-0.302400px;}
.ws16e_c00001{word-spacing:-0.301644px;}
.wsff4_c00001{word-spacing:-0.296460px;}
.ws6ef_c00001{word-spacing:-0.295200px;}
.ws1301_c00001{word-spacing:-0.289872px;}
.ws13c6_c00001{word-spacing:-0.289440px;}
.ws250_c00001{word-spacing:-0.288576px;}
.wsd8_c00001{word-spacing:-0.288000px;}
.ws1571_c00001{word-spacing:-0.286200px;}
.ws2a5_c00001{word-spacing:-0.283284px;}
.ws1d_c00001{word-spacing:-0.282564px;}
.ws489_c00001{word-spacing:-0.280800px;}
.ws11cf_c00001{word-spacing:-0.276696px;}
.ws14_c00001{word-spacing:-0.276552px;}
.ws11bb_c00001{word-spacing:-0.275400px;}
.wscd_c00001{word-spacing:-0.273600px;}
.ws16c_c00001{word-spacing:-0.272916px;}
.ws13_c00001{word-spacing:-0.270540px;}
.ws7d7_c00001{word-spacing:-0.270000px;}
.ws77_c00001{word-spacing:-0.266400px;}
.wsef1_c00001{word-spacing:-0.264960px;}
.ws16_c00001{word-spacing:-0.264528px;}
.ws9b5_c00001{word-spacing:-0.260028px;}
.ws9e0_c00001{word-spacing:-0.259200px;}
.ws9_c00001{word-spacing:-0.258516px;}
.ws31f_c00001{word-spacing:-0.256932px;}
.ws751_c00001{word-spacing:-0.253764px;}
.wse94_c00001{word-spacing:-0.252720px;}
.ws1b_c00001{word-spacing:-0.252504px;}
.wsa6_c00001{word-spacing:-0.252000px;}
.ws75a_c00001{word-spacing:-0.248976px;}
.ws656_c00001{word-spacing:-0.248400px;}
.ws1b4_c00001{word-spacing:-0.246492px;}
.ws92_c00001{word-spacing:-0.244800px;}
.ws6c0_c00001{word-spacing:-0.244188px;}
.ws10c9_c00001{word-spacing:-0.243000px;}
.ws7eb_c00001{word-spacing:-0.240480px;}
.ws6a8_c00001{word-spacing:-0.239400px;}
.ws2c9_c00001{word-spacing:-0.237600px;}
.ws6ae_c00001{word-spacing:-0.234612px;}
.ws2e3_c00001{word-spacing:-0.234468px;}
.ws663_c00001{word-spacing:-0.232200px;}
.ws291_c00001{word-spacing:-0.230400px;}
.ws74f_c00001{word-spacing:-0.229824px;}
.ws12f_c00001{word-spacing:-0.228456px;}
.ws665_c00001{word-spacing:-0.226800px;}
.ws6be_c00001{word-spacing:-0.225036px;}
.ws20a_c00001{word-spacing:-0.223200px;}
.wsb18_c00001{word-spacing:-0.222444px;}
.ws658_c00001{word-spacing:-0.221400px;}
.ws230_c00001{word-spacing:-0.220248px;}
.ws6c_c00001{word-spacing:-0.216000px;}
.wsf47_c00001{word-spacing:-0.215784px;}
.ws757_c00001{word-spacing:-0.215460px;}
.ws66c_c00001{word-spacing:-0.210600px;}
.ws2eb_c00001{word-spacing:-0.210420px;}
.wsb4_c00001{word-spacing:-0.208800px;}
.ws16b_c00001{word-spacing:-0.205884px;}
.wsa25_c00001{word-spacing:-0.205200px;}
.ws2ea_c00001{word-spacing:-0.204408px;}
.wsdf_c00001{word-spacing:-0.201600px;}
.wsf41_c00001{word-spacing:-0.201312px;}
.ws755_c00001{word-spacing:-0.201096px;}
.ws10ca_c00001{word-spacing:-0.199800px;}
.ws170_c00001{word-spacing:-0.198396px;}
.ws750_c00001{word-spacing:-0.196308px;}
.ws113_c00001{word-spacing:-0.194400px;}
.wsf12_c00001{word-spacing:-0.192960px;}
.ws5e6_c00001{word-spacing:-0.192384px;}
.ws3e4_c00001{word-spacing:-0.191520px;}
.ws75_c00001{word-spacing:-0.187200px;}
.wsa3e_c00001{word-spacing:-0.183600px;}
.ws6c1_c00001{word-spacing:-0.181944px;}
.ws7dd_c00001{word-spacing:-0.180360px;}
.ws52_c00001{word-spacing:-0.180000px;}
.wse97_c00001{word-spacing:-0.179280px;}
.ws8ab_c00001{word-spacing:-0.178200px;}
.ws3a5_c00001{word-spacing:-0.177156px;}
.ws10b8_c00001{word-spacing:-0.174348px;}
.wsc3_c00001{word-spacing:-0.172800px;}
.ws6af_c00001{word-spacing:-0.172368px;}
.wseb5_c00001{word-spacing:-0.168480px;}
.ws127_c00001{word-spacing:-0.168336px;}
.ws6e0_c00001{word-spacing:-0.167760px;}
.ws6aa_c00001{word-spacing:-0.167580px;}
.ws9ae_c00001{word-spacing:-0.167400px;}
.ws120_c00001{word-spacing:-0.165600px;}
.ws6b1_c00001{word-spacing:-0.162792px;}
.ws677_c00001{word-spacing:-0.162324px;}
.ws65b_c00001{word-spacing:-0.162000px;}
.wsea8_c00001{word-spacing:-0.159372px;}
.ws63_c00001{word-spacing:-0.158400px;}
.ws3_c00001{word-spacing:-0.158112px;}
.ws5c_c00001{word-spacing:-0.158004px;}
.ws9ad_c00001{word-spacing:-0.156600px;}
.ws139b_c00001{word-spacing:-0.156240px;}
.ws6ab_c00001{word-spacing:-0.153216px;}
.ws176_c00001{word-spacing:-0.151200px;}
.wsea6_c00001{word-spacing:-0.150984px;}
.ws637_c00001{word-spacing:-0.150300px;}
.ws5a_c00001{word-spacing:-0.148428px;}
.wsa96_c00001{word-spacing:-0.145800px;}
.ws12a_c00001{word-spacing:-0.144288px;}
.wsf3e_c00001{word-spacing:-0.144180px;}
.wsd5_c00001{word-spacing:-0.144000px;}
.ws2b9_c00001{word-spacing:-0.143640px;}
.wseab_c00001{word-spacing:-0.142596px;}
.ws662_c00001{word-spacing:-0.140400px;}
.wseaf_c00001{word-spacing:-0.138996px;}
.ws74b_c00001{word-spacing:-0.138852px;}
.ws126_c00001{word-spacing:-0.138276px;}
.ws36_c00001{word-spacing:-0.136800px;}
.ws9b2_c00001{word-spacing:-0.135000px;}
.wsea7_c00001{word-spacing:-0.134208px;}
.ws6c2_c00001{word-spacing:-0.134064px;}
.wsec9_c00001{word-spacing:-0.132480px;}
.ws67f_c00001{word-spacing:-0.132264px;}
.ws53_c00001{word-spacing:-0.129600px;}
.ws6b7_c00001{word-spacing:-0.129276px;}
.ws5ff_c00001{word-spacing:-0.126252px;}
.ws7e0_c00001{word-spacing:-0.125172px;}
.ws389_c00001{word-spacing:-0.124488px;}
.wsa23_c00001{word-spacing:-0.124200px;}
.wsd1_c00001{word-spacing:-0.122400px;}
.ws679_c00001{word-spacing:-0.120240px;}
.ws753_c00001{word-spacing:-0.119700px;}
.wsa95_c00001{word-spacing:-0.118800px;}
.wsda_c00001{word-spacing:-0.115200px;}
.ws74e_c00001{word-spacing:-0.114912px;}
.ws680_c00001{word-spacing:-0.114228px;}
.ws9ac_c00001{word-spacing:-0.113400px;}
.ws14cb_c00001{word-spacing:-0.111996px;}
.ws7_c00001{word-spacing:-0.110124px;}
.ws9dc_c00001{word-spacing:-0.108216px;}
.ws76_c00001{word-spacing:-0.108000px;}
.wsf3b_c00001{word-spacing:-0.105732px;}
.ws14cc_c00001{word-spacing:-0.105408px;}
.ws3e3_c00001{word-spacing:-0.105336px;}
.ws667_c00001{word-spacing:-0.102600px;}
.ws67d_c00001{word-spacing:-0.102204px;}
.wsb5_c00001{word-spacing:-0.100800px;}
.ws5b_c00001{word-spacing:-0.100548px;}
.wsa4b_c00001{word-spacing:-0.098820px;}
.ws660_c00001{word-spacing:-0.097200px;}
.wseb0_c00001{word-spacing:-0.096876px;}
.ws67e_c00001{word-spacing:-0.096192px;}
.ws4a_c00001{word-spacing:-0.093600px;}
.ws7de_c00001{word-spacing:-0.092232px;}
.ws7d6_c00001{word-spacing:-0.091800px;}
.ws749_c00001{word-spacing:-0.090972px;}
.ws9dd_c00001{word-spacing:-0.090180px;}
.wsf3d_c00001{word-spacing:-0.086508px;}
.wsa3_c00001{word-spacing:-0.086400px;}
.ws185_c00001{word-spacing:-0.086184px;}
.ws1216_c00001{word-spacing:-0.085644px;}
.wsf17_c00001{word-spacing:-0.084240px;}
.ws636_c00001{word-spacing:-0.084168px;}
.ws746_c00001{word-spacing:-0.081396px;}
.ws65e_c00001{word-spacing:-0.081000px;}
.ws50_c00001{word-spacing:-0.079200px;}
.ws600_c00001{word-spacing:-0.078156px;}
.wsea9_c00001{word-spacing:-0.076896px;}
.ws74d_c00001{word-spacing:-0.076608px;}
.ws657_c00001{word-spacing:-0.075600px;}
.ws6c6_c00001{word-spacing:-0.075492px;}
.ws6cc_c00001{word-spacing:-0.072144px;}
.ws4b_c00001{word-spacing:-0.072000px;}
.ws748_c00001{word-spacing:-0.071820px;}
.ws654_c00001{word-spacing:-0.070200px;}
.ws6c7_c00001{word-spacing:-0.067104px;}
.ws6ba_c00001{word-spacing:-0.067032px;}
.ws5fe_c00001{word-spacing:-0.066132px;}
.ws59_c00001{word-spacing:-0.064800px;}
.ws6b3_c00001{word-spacing:-0.062244px;}
.ws638_c00001{word-spacing:-0.060120px;}
.ws13a2_c00001{word-spacing:-0.059760px;}
.ws9af_c00001{word-spacing:-0.059400px;}
.wseaa_c00001{word-spacing:-0.059292px;}
.ws6c4_c00001{word-spacing:-0.058716px;}
.wsf38_c00001{word-spacing:-0.057672px;}
.ws4c_c00001{word-spacing:-0.057600px;}
.ws6b0_c00001{word-spacing:-0.057456px;}
.ws249_c00001{word-spacing:-0.054108px;}
.ws668_c00001{word-spacing:-0.054000px;}
.ws785_c00001{word-spacing:-0.052704px;}
.ws27_c00001{word-spacing:-0.050400px;}
.ws9aa_c00001{word-spacing:-0.048600px;}
.ws67c_c00001{word-spacing:-0.048096px;}
.wsf3c_c00001{word-spacing:-0.048060px;}
.ws6a9_c00001{word-spacing:-0.047880px;}
.ws21b_c00001{word-spacing:-0.046116px;}
.ws48_c00001{word-spacing:-0.043200px;}
.ws6b6_c00001{word-spacing:-0.043092px;}
.ws67b_c00001{word-spacing:-0.042084px;}
.ws761_c00001{word-spacing:-0.039528px;}
.wsf40_c00001{word-spacing:-0.038448px;}
.ws6b4_c00001{word-spacing:-0.038304px;}
.ws9ab_c00001{word-spacing:-0.037800px;}
.ws24b_c00001{word-spacing:-0.036072px;}
.wsd4_c00001{word-spacing:-0.036000px;}
.ws6c5_c00001{word-spacing:-0.033552px;}
.ws6bf_c00001{word-spacing:-0.033516px;}
.ws15b_c00001{word-spacing:-0.032940px;}
.ws65c_c00001{word-spacing:-0.032400px;}
.ws601_c00001{word-spacing:-0.030060px;}
.wsf3f_c00001{word-spacing:-0.028836px;}
.ws78_c00001{word-spacing:-0.028800px;}
.ws140_c00001{word-spacing:-0.028728px;}
.ws65a_c00001{word-spacing:-0.027000px;}
.ws2a4_c00001{word-spacing:-0.026352px;}
.ws9b4_c00001{word-spacing:-0.025164px;}
.ws5fd_c00001{word-spacing:-0.024048px;}
.ws6_c00001{word-spacing:-0.023940px;}
.ws28_c00001{word-spacing:-0.021600px;}
.ws310_c00001{word-spacing:-0.019764px;}
.wsf39_c00001{word-spacing:-0.019224px;}
.wsafc_c00001{word-spacing:-0.019152px;}
.ws602_c00001{word-spacing:-0.018036px;}
.ws49_c00001{word-spacing:-0.014400px;}
.ws86f_c00001{word-spacing:-0.014364px;}
.ws214_c00001{word-spacing:-0.013176px;}
.wsd_c00001{word-spacing:-0.012024px;}
.wsa3c_c00001{word-spacing:-0.010800px;}
.wseac_c00001{word-spacing:-0.009612px;}
.ws38_c00001{word-spacing:-0.007200px;}
.ws100_c00001{word-spacing:-0.006588px;}
.ws106_c00001{word-spacing:-0.006012px;}
.wsa22_c00001{word-spacing:-0.005400px;}
.ws754_c00001{word-spacing:-0.004788px;}
.ws5_c00001{word-spacing:0.000000px;}
.ws66a_c00001{word-spacing:0.005400px;}
.ws107_c00001{word-spacing:0.006012px;}
.ws133_c00001{word-spacing:0.006588px;}
.ws4d_c00001{word-spacing:0.007200px;}
.ws74a_c00001{word-spacing:0.009576px;}
.wsa40_c00001{word-spacing:0.010800px;}
.ws108_c00001{word-spacing:0.012024px;}
.wsad_c00001{word-spacing:0.013176px;}
.ws6b2_c00001{word-spacing:0.014364px;}
.ws37_c00001{word-spacing:0.014400px;}
.ws664_c00001{word-spacing:0.016200px;}
.ws10_c00001{word-spacing:0.018036px;}
.ws756_c00001{word-spacing:0.019152px;}
.wsf3a_c00001{word-spacing:0.019224px;}
.wsae_c00001{word-spacing:0.019764px;}
.ws51_c00001{word-spacing:0.021600px;}
.ws6a7_c00001{word-spacing:0.023940px;}
.ws676_c00001{word-spacing:0.024048px;}
.wsf42_c00001{word-spacing:0.025164px;}
.wsac_c00001{word-spacing:0.026352px;}
.ws74c_c00001{word-spacing:0.028728px;}
.wscc_c00001{word-spacing:0.028800px;}
.ws3aa_c00001{word-spacing:0.030060px;}
.ws65f_c00001{word-spacing:0.032400px;}
.wsfd_c00001{word-spacing:0.032940px;}
.ws5d_c00001{word-spacing:0.036000px;}
.ws6cb_c00001{word-spacing:0.036072px;}
.wsa3d_c00001{word-spacing:0.037800px;}
.ws6c3_c00001{word-spacing:0.038304px;}
.wsc_c00001{word-spacing:0.039528px;}
.ws2e5_c00001{word-spacing:0.042084px;}
.ws6bd_c00001{word-spacing:0.043092px;}
.ws604_c00001{word-spacing:0.043200px;}
.ws12_c00001{word-spacing:0.046116px;}
.ws759_c00001{word-spacing:0.047880px;}
.ws678_c00001{word-spacing:0.048096px;}
.wsa41_c00001{word-spacing:0.048600px;}
.ws1162_c00001{word-spacing:0.050400px;}
.ws8_c00001{word-spacing:0.052704px;}
.ws66b_c00001{word-spacing:0.054000px;}
.ws24d_c00001{word-spacing:0.054108px;}
.ws6b5_c00001{word-spacing:0.057456px;}
.ws334_c00001{word-spacing:0.057600px;}
.ws101_c00001{word-spacing:0.059292px;}
.ws669_c00001{word-spacing:0.059400px;}
.wse96_c00001{word-spacing:0.059760px;}
.ws639_c00001{word-spacing:0.060120px;}
.wsf9_c00001{word-spacing:0.064800px;}
.wsfa_c00001{word-spacing:0.065880px;}
.ws17_c00001{word-spacing:0.066132px;}
.ws6b8_c00001{word-spacing:0.067032px;}
.ws666_c00001{word-spacing:0.070200px;}
.ws752_c00001{word-spacing:0.071820px;}
.ws285_c00001{word-spacing:0.072000px;}
.ws18_c00001{word-spacing:0.072144px;}
.wsfe_c00001{word-spacing:0.072468px;}
.ws145e_c00001{word-spacing:0.075600px;}
.wse_c00001{word-spacing:0.078156px;}
.wsfc_c00001{word-spacing:0.079056px;}
.ws4e5_c00001{word-spacing:0.079200px;}
.ws1485_c00001{word-spacing:0.081000px;}
.ws6ad_c00001{word-spacing:0.081396px;}
.ws1d5_c00001{word-spacing:0.084168px;}
.wsf1a_c00001{word-spacing:0.084240px;}
.ws281_c00001{word-spacing:0.085644px;}
.ws6ac_c00001{word-spacing:0.086184px;}
.ws2b6_c00001{word-spacing:0.086400px;}
.ws129_c00001{word-spacing:0.090180px;}
.ws138_c00001{word-spacing:0.092232px;}
.ws4ca_c00001{word-spacing:0.093600px;}
.ws15_c00001{word-spacing:0.096192px;}
.wsa26_c00001{word-spacing:0.097200px;}
.ws16d_c00001{word-spacing:0.098820px;}
.ws95e_c00001{word-spacing:0.100800px;}
.ws128_c00001{word-spacing:0.102204px;}
.ws9b0_c00001{word-spacing:0.102600px;}
.ws75b_c00001{word-spacing:0.105336px;}
.wsad9_c00001{word-spacing:0.105408px;}
.wsd9c_c00001{word-spacing:0.108000px;}
.wsf_c00001{word-spacing:0.108216px;}
.wsf43_c00001{word-spacing:0.109044px;}
.wsff2_c00001{word-spacing:0.111996px;}
.ws10cf_c00001{word-spacing:0.113400px;}
.ws19_c00001{word-spacing:0.114228px;}
.wscaa_c00001{word-spacing:0.115200px;}
.ws101b_c00001{word-spacing:0.118584px;}
.wsebe_c00001{word-spacing:0.119520px;}
.ws2e6_c00001{word-spacing:0.120240px;}
.wscbc_c00001{word-spacing:0.122400px;}
.ws65d_c00001{word-spacing:0.124200px;}
.ws10d3_c00001{word-spacing:0.125172px;}
.ws16f_c00001{word-spacing:0.126252px;}
.ws10c6_c00001{word-spacing:0.129276px;}
.ws32_c00001{word-spacing:0.129600px;}
.ws10d0_c00001{word-spacing:0.131760px;}
.ws11_c00001{word-spacing:0.132264px;}
.wsecb_c00001{word-spacing:0.132480px;}
.ws6b9_c00001{word-spacing:0.134064px;}
.wsa3f_c00001{word-spacing:0.135000px;}
.ws1bc_c00001{word-spacing:0.136800px;}
.ws1a_c00001{word-spacing:0.138276px;}
.ws152e_c00001{word-spacing:0.138348px;}
.wsfb_c00001{word-spacing:0.140400px;}
.ws804_c00001{word-spacing:0.144000px;}
.ws283_c00001{word-spacing:0.144288px;}
.ws1574_c00001{word-spacing:0.144936px;}
.ws10ce_c00001{word-spacing:0.145800px;}
.ws13c_c00001{word-spacing:0.150300px;}
.ws9b1_c00001{word-spacing:0.151200px;}
.ws758_c00001{word-spacing:0.153216px;}
.ws109_c00001{word-spacing:0.156312px;}
.ws655_c00001{word-spacing:0.156600px;}
.wsd17_c00001{word-spacing:0.158400px;}
.ws2e4_c00001{word-spacing:0.162324px;}
.ws22c_c00001{word-spacing:0.165600px;}
.ws202_c00001{word-spacing:0.167400px;}
.wse3_c00001{word-spacing:0.168336px;}
.wsedd_c00001{word-spacing:0.168480px;}
.ws2a3_c00001{word-spacing:0.171288px;}
.ws22f_c00001{word-spacing:0.172800px;}
.wse0_c00001{word-spacing:0.174348px;}
.ws14bf_c00001{word-spacing:0.177876px;}
.ws206_c00001{word-spacing:0.178200px;}
.wseb7_c00001{word-spacing:0.179280px;}
.wsf46_c00001{word-spacing:0.179820px;}
.ws541_c00001{word-spacing:0.180000px;}
.ws110_c00001{word-spacing:0.180360px;}
.ws75c_c00001{word-spacing:0.181944px;}
.ws201_c00001{word-spacing:0.183600px;}
.ws265_c00001{word-spacing:0.186372px;}
.ws222_c00001{word-spacing:0.187200px;}
.ws8aa_c00001{word-spacing:0.189000px;}
.ws6bc_c00001{word-spacing:0.191520px;}
.ws248_c00001{word-spacing:0.192384px;}
.wsf13_c00001{word-spacing:0.192960px;}
.ws61a_c00001{word-spacing:0.194400px;}
.wse1_c00001{word-spacing:0.198396px;}
.ws203_c00001{word-spacing:0.199800px;}
.ws329_c00001{word-spacing:0.201600px;}
.ws254_c00001{word-spacing:0.204408px;}
.wsa24_c00001{word-spacing:0.205200px;}
.ws31_c00001{word-spacing:0.208800px;}
.ws2e8_c00001{word-spacing:0.210420px;}
.ws327_c00001{word-spacing:0.216000px;}
.wsa73_c00001{word-spacing:0.216432px;}
.ws102e_c00001{word-spacing:0.221400px;}
.wsb60_c00001{word-spacing:0.222444px;}
.ws62_c00001{word-spacing:0.223200px;}
.ws24f_c00001{word-spacing:0.228456px;}
.wsd6_c00001{word-spacing:0.230400px;}
.ws12e_c00001{word-spacing:0.234468px;}
.ws10c5_c00001{word-spacing:0.234612px;}
.ws1e5_c00001{word-spacing:0.237600px;}
.wsedb_c00001{word-spacing:0.239040px;}
.ws3a7_c00001{word-spacing:0.240480px;}
.ws1e6_c00001{word-spacing:0.244800px;}
.ws6cd_c00001{word-spacing:0.246492px;}
.ws659_c00001{word-spacing:0.248400px;}
.ws82b_c00001{word-spacing:0.252000px;}
.ws461_c00001{word-spacing:0.258516px;}
.ws3a2_c00001{word-spacing:0.259200px;}
.wseae_c00001{word-spacing:0.259524px;}
.ws14c3_c00001{word-spacing:0.263340px;}
.wsee8_c00001{word-spacing:0.264960px;}
.ws53f_c00001{word-spacing:0.266400px;}
.ws141f_c00001{word-spacing:0.268128px;}
.ws661_c00001{word-spacing:0.270000px;}
.wsf3_c00001{word-spacing:0.273600px;}
.ws30_c00001{word-spacing:0.280800px;}
.ws11b7_c00001{word-spacing:0.282564px;}
.ws221_c00001{word-spacing:0.288000px;}
.wsead_c00001{word-spacing:0.289872px;}
.ws1e7_c00001{word-spacing:0.295200px;}
.wsebd_c00001{word-spacing:0.298800px;}
.wsf2_c00001{word-spacing:0.302400px;}
.ws14d8_c00001{word-spacing:0.303048px;}
.wsa74_c00001{word-spacing:0.306612px;}
.ws526_c00001{word-spacing:0.309600px;}
.ws184_c00001{word-spacing:0.311220px;}
.wse92_c00001{word-spacing:0.312480px;}
.ws93_c00001{word-spacing:0.316800px;}
.ws24a_c00001{word-spacing:0.318636px;}
.ws1124_c00001{word-spacing:0.322812px;}
.ws8f1_c00001{word-spacing:0.324000px;}
.ws67a_c00001{word-spacing:0.324648px;}
.wsd7_c00001{word-spacing:0.331200px;}
.ws1123_c00001{word-spacing:0.335988px;}
.ws13c3_c00001{word-spacing:0.336960px;}
.ws2f_c00001{word-spacing:0.338400px;}
.ws125_c00001{word-spacing:0.342576px;}
.ws540_c00001{word-spacing:0.345600px;}
.wsbc3_c00001{word-spacing:0.349164px;}
.ws61b_c00001{word-spacing:0.352800px;}
.wsf20_c00001{word-spacing:0.358560px;}
.ws29_c00001{word-spacing:0.360000px;}
.wseba_c00001{word-spacing:0.360720px;}
.ws111a_c00001{word-spacing:0.362340px;}
.ws1c_c00001{word-spacing:0.366732px;}
.ws957_c00001{word-spacing:0.367200px;}
.ws12cb_c00001{word-spacing:0.368928px;}
.ws561_c00001{word-spacing:0.374400px;}
.ws6e6_c00001{word-spacing:0.375516px;}
.wsec6_c00001{word-spacing:0.378000px;}
.ws1271_c00001{word-spacing:0.378756px;}
.ws98c_c00001{word-spacing:0.381600px;}
.ws1019_c00001{word-spacing:0.382104px;}
.ws1409_c00001{word-spacing:0.385920px;}
.ws111b_c00001{word-spacing:0.388692px;}
.wsc11_c00001{word-spacing:0.388800px;}
.ws11b9_c00001{word-spacing:0.394200px;}
.wsb45_c00001{word-spacing:0.395280px;}
.ws1bd_c00001{word-spacing:0.396000px;}
.wsf16_c00001{word-spacing:0.397440px;}
.ws10da_c00001{word-spacing:0.401868px;}
.wsff_c00001{word-spacing:0.408456px;}
.wsa4c_c00001{word-spacing:0.408816px;}
.ws80d_c00001{word-spacing:0.410400px;}
.ws10b0_c00001{word-spacing:0.415044px;}
.ws1415_c00001{word-spacing:0.418320px;}
.ws19e_c00001{word-spacing:0.421632px;}
.ws205_c00001{word-spacing:0.426600px;}
.wsfb1_c00001{word-spacing:0.428220px;}
.ws82a_c00001{word-spacing:0.432000px;}
.ws14fd_c00001{word-spacing:0.432864px;}
.ws1407_c00001{word-spacing:0.434160px;}
.ws136_c00001{word-spacing:0.434808px;}
.ws1be_c00001{word-spacing:0.439200px;}
.ws482_c00001{word-spacing:0.441396px;}
.ws709_c00001{word-spacing:0.446400px;}
.ws282_c00001{word-spacing:0.447984px;}
.ws328_c00001{word-spacing:0.448200px;}
.ws771_c00001{word-spacing:0.453600px;}
.ws1364_c00001{word-spacing:0.454572px;}
.ws10c8_c00001{word-spacing:0.461160px;}
.ws13e0_c00001{word-spacing:0.463680px;}
.wsd40_c00001{word-spacing:0.468000px;}
.wsf1b_c00001{word-spacing:0.478080px;}
.ws10c7_c00001{word-spacing:0.480600px;}
.ws1399_c00001{word-spacing:0.480960px;}
.ws11fd_c00001{word-spacing:0.482400px;}
.ws5ea_c00001{word-spacing:0.486972px;}
.ws14fa_c00001{word-spacing:0.492984px;}
.ws10d5_c00001{word-spacing:0.494100px;}
.ws451_c00001{word-spacing:0.496800px;}
.wse66_c00001{word-spacing:0.504000px;}
.wseda_c00001{word-spacing:0.505440px;}
.ws809_c00001{word-spacing:0.511200px;}
.ws204_c00001{word-spacing:0.513000px;}
.ws33f_c00001{word-spacing:0.518400px;}
.ws39e_c00001{word-spacing:0.525600px;}
.ws11ba_c00001{word-spacing:0.529200px;}
.ws1da_c00001{word-spacing:0.532800px;}
.wsec7_c00001{word-spacing:0.537840px;}
.ws39f_c00001{word-spacing:0.540000px;}
.ws60f_c00001{word-spacing:0.547200px;}
.ws2d7_c00001{word-spacing:0.554400px;}
.ws272_c00001{word-spacing:0.561600px;}
.ws6a4_c00001{word-spacing:0.568800px;}
.ws1513_c00001{word-spacing:0.573156px;}
.wseb6_c00001{word-spacing:0.574560px;}
.ws271_c00001{word-spacing:0.576000px;}
.ws866_c00001{word-spacing:0.583200px;}
.wsee3_c00001{word-spacing:0.589680px;}
.ws547_c00001{word-spacing:0.590400px;}
.wsf0f_c00001{word-spacing:0.596160px;}
.ws340_c00001{word-spacing:0.597600px;}
.wsa2a_c00001{word-spacing:0.604800px;}
.wsbb_c00001{word-spacing:0.612000px;}
.ws273_c00001{word-spacing:0.619200px;}
.ws240_c00001{word-spacing:0.626400px;}
.ws1b9_c00001{word-spacing:0.633600px;}
.ws8bd_c00001{word-spacing:0.640800px;}
.ws3d4_c00001{word-spacing:0.648000px;}
.ws7e4_c00001{word-spacing:0.655200px;}
.ws7a0_c00001{word-spacing:0.662400px;}
.ws450_c00001{word-spacing:0.669600px;}
.wse93_c00001{word-spacing:0.673920px;}
.ws4cd_c00001{word-spacing:0.676800px;}
.ws2d0_c00001{word-spacing:0.684000px;}
.ws4e8_c00001{word-spacing:0.691200px;}
.ws12c9_c00001{word-spacing:0.691740px;}
.ws2e_c00001{word-spacing:0.698400px;}
.ws29b_c00001{word-spacing:0.705600px;}
.wsbc_c00001{word-spacing:0.712800px;}
.wsfd6_c00001{word-spacing:0.718092px;}
.ws39d_c00001{word-spacing:0.720000px;}
.ws1406_c00001{word-spacing:0.723600px;}
.ws792_c00001{word-spacing:0.724680px;}
.ws1bb_c00001{word-spacing:0.727200px;}
.wsee4_c00001{word-spacing:0.728640px;}
.ws1235_c00001{word-spacing:0.731268px;}
.ws1d9_c00001{word-spacing:0.734400px;}
.ws10b6_c00001{word-spacing:0.737856px;}
.ws1ba_c00001{word-spacing:0.741600px;}
.wsbcf_c00001{word-spacing:0.744444px;}
.ws341_c00001{word-spacing:0.748800px;}
.ws11ea_c00001{word-spacing:0.751032px;}
.wscc7_c00001{word-spacing:0.756000px;}
.ws564_c00001{word-spacing:0.757620px;}
.ws139d_c00001{word-spacing:0.758160px;}
.ws548_c00001{word-spacing:0.763200px;}
.ws28e_c00001{word-spacing:0.764208px;}
.ws7d9_c00001{word-spacing:0.770400px;}
.ws844_c00001{word-spacing:0.770796px;}
.ws1401_c00001{word-spacing:0.776880px;}
.ws1152_c00001{word-spacing:0.777384px;}
.ws5b8_c00001{word-spacing:0.777600px;}
.wsb2a_c00001{word-spacing:0.783972px;}
.wsa17_c00001{word-spacing:0.784800px;}
.ws12b1_c00001{word-spacing:0.790560px;}
.ws13ee_c00001{word-spacing:0.792000px;}
.ws10a1_c00001{word-spacing:0.797148px;}
.ws79f_c00001{word-spacing:0.799200px;}
.ws853_c00001{word-spacing:0.803736px;}
.ws770_c00001{word-spacing:0.813600px;}
.ws12ff_c00001{word-spacing:0.816912px;}
.ws960_c00001{word-spacing:0.820800px;}
.ws76f_c00001{word-spacing:0.842400px;}
.wseca_c00001{word-spacing:0.861120px;}
.wseec_c00001{word-spacing:0.864000px;}
.ws1428_c00001{word-spacing:0.871200px;}
.ws29a_c00001{word-spacing:0.878400px;}
.wsa55_c00001{word-spacing:0.885600px;}
.ws791_c00001{word-spacing:0.889776px;}
.ws530_c00001{word-spacing:0.892800px;}
.wsc29_c00001{word-spacing:0.900000px;}
.wsce3_c00001{word-spacing:0.907200px;}
.wsa16_c00001{word-spacing:0.914400px;}
.ws790_c00001{word-spacing:0.921600px;}
.ws582_c00001{word-spacing:0.928800px;}
.ws5c6_c00001{word-spacing:0.936000px;}
.ws1cc_c00001{word-spacing:0.943200px;}
.ws117d_c00001{word-spacing:0.950400px;}
.ws5a3_c00001{word-spacing:0.957600px;}
.ws5a0_c00001{word-spacing:0.964800px;}
.ws5f0_c00001{word-spacing:0.972000px;}
.ws5cd_c00001{word-spacing:0.979200px;}
.ws5de_c00001{word-spacing:0.986400px;}
.ws3ac_c00001{word-spacing:0.993600px;}
.ws8e7_c00001{word-spacing:1.000800px;}
.ws841_c00001{word-spacing:1.008000px;}
.ws2af_c00001{word-spacing:1.015200px;}
.wsa2e_c00001{word-spacing:1.022400px;}
.ws5cc_c00001{word-spacing:1.029600px;}
.ws1cd_c00001{word-spacing:1.036800px;}
.ws738_c00001{word-spacing:1.044000px;}
.ws587_c00001{word-spacing:1.051200px;}
.ws12f5_c00001{word-spacing:1.054080px;}
.ws3bb_c00001{word-spacing:1.058400px;}
.wsf02_c00001{word-spacing:1.059840px;}
.ws52f_c00001{word-spacing:1.065600px;}
.ws1cb_c00001{word-spacing:1.072800px;}
.ws3ab_c00001{word-spacing:1.080000px;}
.ws1256_c00001{word-spacing:1.080432px;}
.wsf90_c00001{word-spacing:1.087020px;}
.ws533_c00001{word-spacing:1.087200px;}
.ws1370_c00001{word-spacing:1.093608px;}
.wsa33_c00001{word-spacing:1.094400px;}
.ws11fa_c00001{word-spacing:1.100196px;}
.ws29c_c00001{word-spacing:1.101600px;}
.ws799_c00001{word-spacing:1.106784px;}
.ws8e6_c00001{word-spacing:1.108800px;}
.ws1405_c00001{word-spacing:1.109520px;}
.ws107d_c00001{word-spacing:1.113372px;}
.ws8f7_c00001{word-spacing:1.119960px;}
.wsbd1_c00001{word-spacing:1.126548px;}
.ws893_c00001{word-spacing:1.130400px;}
.ws7c4_c00001{word-spacing:1.133136px;}
.ws12b4_c00001{word-spacing:1.137600px;}
.wsbd6_c00001{word-spacing:1.139724px;}
.ws139_c00001{word-spacing:1.146312px;}
.ws13a9_c00001{word-spacing:1.152000px;}
.ws10fe_c00001{word-spacing:1.152900px;}
.wse79_c00001{word-spacing:1.159200px;}
.ws11e3_c00001{word-spacing:1.159488px;}
.ws11a6_c00001{word-spacing:1.166076px;}
.wsac6_c00001{word-spacing:1.166400px;}
.ws634_c00001{word-spacing:1.202400px;}
.ws94c_c00001{word-spacing:1.224000px;}
.ws8dc_c00001{word-spacing:1.231200px;}
.ws832_c00001{word-spacing:1.238400px;}
.ws633_c00001{word-spacing:1.252800px;}
.ws78f_c00001{word-spacing:1.260000px;}
.ws66d_c00001{word-spacing:1.267200px;}
.wsb99_c00001{word-spacing:1.274400px;}
.ws349_c00001{word-spacing:1.281600px;}
.wsdf2_c00001{word-spacing:1.288800px;}
.ws833_c00001{word-spacing:1.296000px;}
.ws2b2_c00001{word-spacing:1.303200px;}
.wsb98_c00001{word-spacing:1.310400px;}
.ws935_c00001{word-spacing:1.317600px;}
.ws2b3_c00001{word-spacing:1.324800px;}
.ws1d6_c00001{word-spacing:1.332000px;}
.ws798_c00001{word-spacing:1.334664px;}
.ws731_c00001{word-spacing:1.339200px;}
.ws9f_c00001{word-spacing:1.346400px;}
.wsb9_c00001{word-spacing:1.353600px;}
.ws132_c00001{word-spacing:1.360800px;}
.wsa0_c00001{word-spacing:1.368000px;}
.wsb8_c00001{word-spacing:1.375200px;}
.ws8b_c00001{word-spacing:1.382400px;}
.ws545_c00001{word-spacing:1.389600px;}
.ws146a_c00001{word-spacing:1.390068px;}
.ws436_c00001{word-spacing:1.396800px;}
.ws4f6_c00001{word-spacing:1.404000px;}
.ws546_c00001{word-spacing:1.411200px;}
.ws284_c00001{word-spacing:1.418400px;}
.ws794_c00001{word-spacing:1.424844px;}
.ws521_c00001{word-spacing:1.425600px;}
.ws1122_c00001{word-spacing:1.429596px;}
.ws8c_c00001{word-spacing:1.432800px;}
.wsf64_c00001{word-spacing:1.436184px;}
.ws131_c00001{word-spacing:1.440000px;}
.ws11d_c00001{word-spacing:1.447200px;}
.wsfdc_c00001{word-spacing:1.449360px;}
.ws94d_c00001{word-spacing:1.454400px;}
.ws1121_c00001{word-spacing:1.455948px;}
.wsefb_c00001{word-spacing:1.457280px;}
.wsba_c00001{word-spacing:1.461600px;}
.ws7b3_c00001{word-spacing:1.462536px;}
.ws9db_c00001{word-spacing:1.468800px;}
.ws795_c00001{word-spacing:1.469124px;}
.wsad1_c00001{word-spacing:1.475712px;}
.ws1028_c00001{word-spacing:1.482300px;}
.wsd7b_c00001{word-spacing:1.483200px;}
.ws115d_c00001{word-spacing:1.488888px;}
.wsde3_c00001{word-spacing:1.490400px;}
.ws849_c00001{word-spacing:1.495476px;}
.ws532_c00001{word-spacing:1.497600px;}
.wsad2_c00001{word-spacing:1.502064px;}
.wsa8e_c00001{word-spacing:1.508652px;}
.wsb24_c00001{word-spacing:1.515240px;}
.ws496_c00001{word-spacing:1.526400px;}
.wsd7a_c00001{word-spacing:1.533600px;}
.ws154e_c00001{word-spacing:1.557108px;}
.ws114c_c00001{word-spacing:1.562400px;}
.ws96c_c00001{word-spacing:1.584000px;}
.ws13ca_c00001{word-spacing:1.589760px;}
.ws717_c00001{word-spacing:1.591200px;}
.ws286_c00001{word-spacing:1.598400px;}
.ws4c4_c00001{word-spacing:1.605600px;}
.wsc6d_c00001{word-spacing:1.612800px;}
.ws288_c00001{word-spacing:1.620000px;}
.ws98f_c00001{word-spacing:1.627200px;}
.wsba2_c00001{word-spacing:1.634400px;}
.wsff5_c00001{word-spacing:1.641600px;}
.wsc79_c00001{word-spacing:1.648800px;}
.wsa29_c00001{word-spacing:1.656000px;}
.wsa2f_c00001{word-spacing:1.663200px;}
.ws9a7_c00001{word-spacing:1.670400px;}
.ws48f_c00001{word-spacing:1.677600px;}
.ws287_c00001{word-spacing:1.684800px;}
.ws1ee_c00001{word-spacing:1.692000px;}
.wsb41_c00001{word-spacing:1.699200px;}
.wsc9_c00001{word-spacing:1.706400px;}
.ws425_c00001{word-spacing:1.713600px;}
.ws557_c00001{word-spacing:1.720800px;}
.wsca_c00001{word-spacing:1.728000px;}
.wse0d_c00001{word-spacing:1.735200px;}
.ws6e7_c00001{word-spacing:1.742400px;}
.ws5d7_c00001{word-spacing:1.749600px;}
.ws556_c00001{word-spacing:1.756800px;}
.ws1ef_c00001{word-spacing:1.764000px;}
.ws10e_c00001{word-spacing:1.771200px;}
.ws10f_c00001{word-spacing:1.778400px;}
.ws1201_c00001{word-spacing:1.778760px;}
.ws9c3_c00001{word-spacing:1.785600px;}
.ws41b_c00001{word-spacing:1.792800px;}
.ws14fe_c00001{word-spacing:1.797588px;}
.ws1206_c00001{word-spacing:1.798524px;}
.ws716_c00001{word-spacing:1.800000px;}
.ws1298_c00001{word-spacing:1.805112px;}
.ws94b_c00001{word-spacing:1.807200px;}
.ws47e_c00001{word-spacing:1.811700px;}
.ws764_c00001{word-spacing:1.814400px;}
.wsfdd_c00001{word-spacing:1.818288px;}
.wsdde_c00001{word-spacing:1.821600px;}
.ws1200_c00001{word-spacing:1.824876px;}
.ws96d_c00001{word-spacing:1.828800px;}
.ws47c_c00001{word-spacing:1.831464px;}
.wsbdb_c00001{word-spacing:1.836000px;}
.ws338_c00001{word-spacing:1.838052px;}
.wsb55_c00001{word-spacing:1.844640px;}
.wsc56_c00001{word-spacing:1.850400px;}
.wsbef_c00001{word-spacing:1.851228px;}
.wsba5_c00001{word-spacing:1.857600px;}
.ws4fa_c00001{word-spacing:1.857816px;}
.ws1016_c00001{word-spacing:1.864404px;}
.ws3c8_c00001{word-spacing:1.864800px;}
.wscdc_c00001{word-spacing:1.872000px;}
.wsfda_c00001{word-spacing:1.877580px;}
.wsf8d_c00001{word-spacing:1.886400px;}
.ws497_c00001{word-spacing:1.908000px;}
.wse0e_c00001{word-spacing:1.936800px;}
.wsddd_c00001{word-spacing:1.944000px;}
.ws53c_c00001{word-spacing:1.951200px;}
.ws114b_c00001{word-spacing:1.958400px;}
.ws498_c00001{word-spacing:1.965600px;}
.wsb93_c00001{word-spacing:1.972800px;}
.ws413_c00001{word-spacing:1.980000px;}
.ws9d4_c00001{word-spacing:1.987200px;}
.wse59_c00001{word-spacing:1.994400px;}
.ws78a_c00001{word-spacing:2.001600px;}
.ws6eb_c00001{word-spacing:2.008800px;}
.ws126f_c00001{word-spacing:2.016000px;}
.wsc92_c00001{word-spacing:2.023200px;}
.ws154_c00001{word-spacing:2.030400px;}
.ws3b3_c00001{word-spacing:2.037600px;}
.ws48a_c00001{word-spacing:2.044800px;}
.ws408_c00001{word-spacing:2.052000px;}
.wsf27_c00001{word-spacing:2.053440px;}
.wsbe_c00001{word-spacing:2.059200px;}
.ws2f3_c00001{word-spacing:2.066400px;}
.ws505_c00001{word-spacing:2.073600px;}
.ws414_c00001{word-spacing:2.080800px;}
.ws3b1_c00001{word-spacing:2.088000px;}
.wsbf_c00001{word-spacing:2.095200px;}
.ws53e_c00001{word-spacing:2.102400px;}
.wsa1d_c00001{word-spacing:2.109600px;}
.ws549_c00001{word-spacing:2.116800px;}
.ws28f_c00001{word-spacing:2.124000px;}
.ws2f2_c00001{word-spacing:2.131200px;}
.ws155_c00001{word-spacing:2.138400px;}
.ws17e_c00001{word-spacing:2.145600px;}
.ws703_c00001{word-spacing:2.152800px;}
.ws290_c00001{word-spacing:2.160000px;}
.ws17f_c00001{word-spacing:2.167200px;}
.ws973_c00001{word-spacing:2.174040px;}
.ws53d_c00001{word-spacing:2.174400px;}
.ws134_c00001{word-spacing:2.180628px;}
.ws54a_c00001{word-spacing:2.181600px;}
.wsefa_c00001{word-spacing:2.185920px;}
.wsb66_c00001{word-spacing:2.187216px;}
.ws3b2_c00001{word-spacing:2.188800px;}
.ws1098_c00001{word-spacing:2.193804px;}
.wsa3a_c00001{word-spacing:2.196000px;}
.ws135_c00001{word-spacing:2.200392px;}
.wsa1c_c00001{word-spacing:2.203200px;}
.ws3d9_c00001{word-spacing:2.210400px;}
.ws1419_c00001{word-spacing:2.211120px;}
.wsb65_c00001{word-spacing:2.213568px;}
.ws3c9_c00001{word-spacing:2.217600px;}
.wsb6a_c00001{word-spacing:2.220156px;}
.ws704_c00001{word-spacing:2.224800px;}
.ws8fa_c00001{word-spacing:2.226744px;}
.wsb58_c00001{word-spacing:2.233332px;}
.wsa8f_c00001{word-spacing:2.239920px;}
.ws941_c00001{word-spacing:2.246400px;}
.ws33b_c00001{word-spacing:2.246508px;}
.ws891_c00001{word-spacing:2.311200px;}
.wsab3_c00001{word-spacing:2.318400px;}
.wsa51_c00001{word-spacing:2.325600px;}
.ws23e_c00001{word-spacing:2.332800px;}
.ws71_c00001{word-spacing:2.347200px;}
.ws744_c00001{word-spacing:2.354400px;}
.wsda2_c00001{word-spacing:2.361600px;}
.ws1218_c00001{word-spacing:2.368800px;}
.ws8f3_c00001{word-spacing:2.376000px;}
.wsb3_c00001{word-spacing:2.383200px;}
.ws575_c00001{word-spacing:2.390400px;}
.ws348_c00001{word-spacing:2.397600px;}
.ws7c3_c00001{word-spacing:2.404800px;}
.ws2e2_c00001{word-spacing:2.412000px;}
.ws3f9_c00001{word-spacing:2.419200px;}
.wsd0_c00001{word-spacing:2.426400px;}
.ws4ce_c00001{word-spacing:2.433600px;}
.ws3b0_c00001{word-spacing:2.440800px;}
.ws698_c00001{word-spacing:2.448000px;}
.wsb2_c00001{word-spacing:2.455200px;}
.ws1ab_c00001{word-spacing:2.462400px;}
.ws347_c00001{word-spacing:2.469600px;}
.ws6f_c00001{word-spacing:2.476800px;}
.wscf_c00001{word-spacing:2.484000px;}
.ws1080_c00001{word-spacing:2.490264px;}
.ws651_c00001{word-spacing:2.491200px;}
.ws70_c00001{word-spacing:2.498400px;}
.ws23f_c00001{word-spacing:2.505600px;}
.ws813_c00001{word-spacing:2.512800px;}
.wsb3a_c00001{word-spacing:2.516616px;}
.ws4d9_c00001{word-spacing:2.520000px;}
.wsb29_c00001{word-spacing:2.523204px;}
.wsa56_c00001{word-spacing:2.527200px;}
.ws7ad_c00001{word-spacing:2.529792px;}
.ws987_c00001{word-spacing:2.534400px;}
.ws7b4_c00001{word-spacing:2.536380px;}
.ws5d3_c00001{word-spacing:2.541600px;}
.wsb39_c00001{word-spacing:2.542968px;}
.ws814_c00001{word-spacing:2.548800px;}
.ws14c1_c00001{word-spacing:2.549556px;}
.ws917_c00001{word-spacing:2.556000px;}
.wsbb8_c00001{word-spacing:2.556144px;}
.ws7ac_c00001{word-spacing:2.562732px;}
.ws1297_c00001{word-spacing:2.569320px;}
.ws6e8_c00001{word-spacing:2.570400px;}
.ws848_c00001{word-spacing:2.575908px;}
.wsbed_c00001{word-spacing:2.582496px;}
.wsa57_c00001{word-spacing:2.584800px;}
.ws112b_c00001{word-spacing:2.589084px;}
.wsf98_c00001{word-spacing:2.595672px;}
.ws91a_c00001{word-spacing:2.602260px;}
.ws7ef_c00001{word-spacing:2.642400px;}
.ws8ed_c00001{word-spacing:2.649600px;}
.ws486_c00001{word-spacing:2.671200px;}
.wsca2_c00001{word-spacing:2.678400px;}
.ws61e_c00001{word-spacing:2.685600px;}
.wse6c_c00001{word-spacing:2.692800px;}
.ws7ee_c00001{word-spacing:2.700000px;}
.ws8b5_c00001{word-spacing:2.707200px;}
.ws64b_c00001{word-spacing:2.714400px;}
.ws2ce_c00001{word-spacing:2.728800px;}
.ws9a9_c00001{word-spacing:2.736000px;}
.ws14c2_c00001{word-spacing:2.738736px;}
.ws8ec_c00001{word-spacing:2.750400px;}
.ws69b_c00001{word-spacing:2.757600px;}
.ws4ea_c00001{word-spacing:2.764800px;}
.ws635_c00001{word-spacing:2.772000px;}
.ws421_c00001{word-spacing:2.779200px;}
.wsf28_c00001{word-spacing:2.782080px;}
.wsd13_c00001{word-spacing:2.786400px;}
.ws82e_c00001{word-spacing:2.793600px;}
.wsa6d_c00001{word-spacing:2.800800px;}
.ws926_c00001{word-spacing:2.808000px;}
.ws2cf_c00001{word-spacing:2.815200px;}
.ws961_c00001{word-spacing:2.822400px;}
.ws82d_c00001{word-spacing:2.829600px;}
.ws31a_c00001{word-spacing:2.836800px;}
.ws81_c00001{word-spacing:2.844000px;}
.ws165_c00001{word-spacing:2.851200px;}
.ws1447_c00001{word-spacing:2.852604px;}
.ws21c_c00001{word-spacing:2.858400px;}
.ws8b4_c00001{word-spacing:2.865600px;}
.ws1446_c00001{word-spacing:2.872368px;}
.ws166_c00001{word-spacing:2.872800px;}
.wsb74_c00001{word-spacing:2.878956px;}
.ws199_c00001{word-spacing:2.880000px;}
.ws86_c00001{word-spacing:2.887200px;}
.ws319_c00001{word-spacing:2.894400px;}
.ws4a8_c00001{word-spacing:2.898720px;}
.ws95b_c00001{word-spacing:2.901600px;}
.wsb75_c00001{word-spacing:2.905308px;}
.wsab4_c00001{word-spacing:2.908800px;}
.ws4a7_c00001{word-spacing:2.911896px;}
.ws13d2_c00001{word-spacing:2.914560px;}
.ws117e_c00001{word-spacing:2.916000px;}
.wsb6f_c00001{word-spacing:2.918484px;}
.ws21d_c00001{word-spacing:2.923200px;}
.ws563_c00001{word-spacing:2.925072px;}
.ws13ff_c00001{word-spacing:2.928240px;}
.wsc02_c00001{word-spacing:2.931660px;}
.ws1385_c00001{word-spacing:2.938248px;}
.ws9a8_c00001{word-spacing:2.944800px;}
.wsfef_c00001{word-spacing:2.944836px;}
.ws12c1_c00001{word-spacing:2.951424px;}
.ws1107_c00001{word-spacing:2.964600px;}
.wsd6c_c00001{word-spacing:2.966400px;}
.ws120c_c00001{word-spacing:2.971188px;}
.ws476_c00001{word-spacing:2.973600px;}
.ws3ec_c00001{word-spacing:2.975940px;}
.wsd3a_c00001{word-spacing:2.980800px;}
.wsc0f_c00001{word-spacing:3.009600px;}
.wsc91_c00001{word-spacing:3.016800px;}
.ws13aa_c00001{word-spacing:3.024000px;}
.ws49d_c00001{word-spacing:3.038400px;}
.wse7a_c00001{word-spacing:3.045600px;}
.wseff_c00001{word-spacing:3.047040px;}
.ws8d6_c00001{word-spacing:3.052800px;}
.wsc3b_c00001{word-spacing:3.060000px;}
.ws585_c00001{word-spacing:3.067200px;}
.wsa82_c00001{word-spacing:3.074400px;}
.ws477_c00001{word-spacing:3.081600px;}
.ws2e0_c00001{word-spacing:3.088800px;}
.ws1f4_c00001{word-spacing:3.096000px;}
.ws5f7_c00001{word-spacing:3.103200px;}
.wsc42_c00001{word-spacing:3.110400px;}
.ws1f2_c00001{word-spacing:3.117600px;}
.ws596_c00001{word-spacing:3.124800px;}
.ws583_c00001{word-spacing:3.132000px;}
.ws475_c00001{word-spacing:3.139200px;}
.ws5a1_c00001{word-spacing:3.146400px;}
.ws50d_c00001{word-spacing:3.153600px;}
.ws183_c00001{word-spacing:3.160800px;}
.ws55c_c00001{word-spacing:3.168000px;}
.wsf0_c00001{word-spacing:3.175200px;}
.ws50e_c00001{word-spacing:3.182400px;}
.ws3ad_c00001{word-spacing:3.189600px;}
.ws4d8_c00001{word-spacing:3.196800px;}
.ws2c2_c00001{word-spacing:3.204000px;}
.ws1a4_c00001{word-spacing:3.211200px;}
.ws182_c00001{word-spacing:3.218400px;}
.ws1f3_c00001{word-spacing:3.225600px;}
.ws1a2_c00001{word-spacing:3.232800px;}
.wsa8b_c00001{word-spacing:3.234708px;}
.ws586_c00001{word-spacing:3.240000px;}
.ws148a_c00001{word-spacing:3.241296px;}
.ws536_c00001{word-spacing:3.247200px;}
.wsf1_c00001{word-spacing:3.254400px;}
.wsa8c_c00001{word-spacing:3.261060px;}
.ws19d_c00001{word-spacing:3.261600px;}
.ws10d7_c00001{word-spacing:3.267648px;}
.ws535_c00001{word-spacing:3.268800px;}
.ws7b5_c00001{word-spacing:3.274236px;}
.ws2df_c00001{word-spacing:3.276000px;}
.ws7b2_c00001{word-spacing:3.280824px;}
.ws944_c00001{word-spacing:3.283200px;}
.ws568_c00001{word-spacing:3.287412px;}
.ws11b3_c00001{word-spacing:3.300588px;}
.wsd86_c00001{word-spacing:3.304800px;}
.ws84b_c00001{word-spacing:3.313764px;}
.ws88f_c00001{word-spacing:3.319200px;}
.ws133f_c00001{word-spacing:3.320352px;}
.ws12ef_c00001{word-spacing:3.326940px;}
.ws10f4_c00001{word-spacing:3.333528px;}
.ws59b_c00001{word-spacing:3.369600px;}
.ws73a_c00001{word-spacing:3.376800px;}
.ws7f7_c00001{word-spacing:3.384000px;}
.wsc98_c00001{word-spacing:3.391200px;}
.wse09_c00001{word-spacing:3.398400px;}
.wsd2f_c00001{word-spacing:3.405600px;}
.wsc99_c00001{word-spacing:3.412800px;}
.ws8d1_c00001{word-spacing:3.420000px;}
.ws4c9_c00001{word-spacing:3.427200px;}
.ws94e_c00001{word-spacing:3.434400px;}
.ws1af_c00001{word-spacing:3.441600px;}
.ws13c0_c00001{word-spacing:3.444480px;}
.ws3b5_c00001{word-spacing:3.448800px;}
.ws3b6_c00001{word-spacing:3.456000px;}
.wsc43_c00001{word-spacing:3.463200px;}
.ws460_c00001{word-spacing:3.470400px;}
.wsc74_c00001{word-spacing:3.477600px;}
.ws5e1_c00001{word-spacing:3.484800px;}
.ws4f4_c00001{word-spacing:3.492000px;}
.ws3af_c00001{word-spacing:3.499200px;}
.ws1cf_c00001{word-spacing:3.506400px;}
.wsabd_c00001{word-spacing:3.513600px;}
.ws5e0_c00001{word-spacing:3.520800px;}
.wsc63_c00001{word-spacing:3.528000px;}
.ws1ae_c00001{word-spacing:3.535200px;}
.ws7c2_c00001{word-spacing:3.542400px;}
.ws3ae_c00001{word-spacing:3.549600px;}
.ws2c6_c00001{word-spacing:3.556800px;}
.ws1118_c00001{word-spacing:3.557520px;}
.ws3b4_c00001{word-spacing:3.564000px;}
.ws2c5_c00001{word-spacing:3.571200px;}
.wsefe_c00001{word-spacing:3.576960px;}
.ws10c_c00001{word-spacing:3.578400px;}
.ws1ce_c00001{word-spacing:3.585600px;}
.ws44d_c00001{word-spacing:3.592800px;}
.ws14aa_c00001{word-spacing:3.597048px;}
.ws739_c00001{word-spacing:3.600000px;}
.ws1134_c00001{word-spacing:3.610224px;}
.ws10d_c00001{word-spacing:3.614400px;}
.ws7ab_c00001{word-spacing:3.616812px;}
.ws9df_c00001{word-spacing:3.621600px;}
.wsb28_c00001{word-spacing:3.623400px;}
.ws577_c00001{word-spacing:3.628800px;}
.wsb27_c00001{word-spacing:3.629988px;}
.ws10e9_c00001{word-spacing:3.636576px;}
.wsc06_c00001{word-spacing:3.643164px;}
.ws13e4_c00001{word-spacing:3.643200px;}
.ws1062_c00001{word-spacing:3.649752px;}
.ws1026_c00001{word-spacing:3.656340px;}
.ws119f_c00001{word-spacing:3.662928px;}
.ws14b1_c00001{word-spacing:3.669516px;}
.wsfc6_c00001{word-spacing:3.676104px;}
.ws142_c00001{word-spacing:3.679200px;}
.ws14a5_c00001{word-spacing:3.682692px;}
.wsd31_c00001{word-spacing:3.686400px;}
.wsb02_c00001{word-spacing:3.693600px;}
.ws576_c00001{word-spacing:3.700800px;}
.ws12d7_c00001{word-spacing:3.702456px;}
.ws5e2_c00001{word-spacing:3.722400px;}
.ws56d_c00001{word-spacing:3.736800px;}
.ws62d_c00001{word-spacing:3.744000px;}
.wsd30_c00001{word-spacing:3.758400px;}
.wsc3d_c00001{word-spacing:3.765600px;}
.ws62c_c00001{word-spacing:3.772800px;}
.ws276_c00001{word-spacing:3.780000px;}
.ws560_c00001{word-spacing:3.787200px;}
.ws56c_c00001{word-spacing:3.794400px;}
.ws418_c00001{word-spacing:3.801600px;}
.ws75d_c00001{word-spacing:3.808800px;}
.wsb31_c00001{word-spacing:3.816000px;}
.ws419_c00001{word-spacing:3.823200px;}
.ws2d4_c00001{word-spacing:3.830400px;}
.ws2b7_c00001{word-spacing:3.837600px;}
.ws1270_c00001{word-spacing:3.844800px;}
.ws14f_c00001{word-spacing:3.852000px;}
.ws141_c00001{word-spacing:3.859200px;}
.ws3fa_c00001{word-spacing:3.866400px;}
.ws2f8_c00001{word-spacing:3.873600px;}
.ws308_c00001{word-spacing:3.880800px;}
.ws20f_c00001{word-spacing:3.888000px;}
.ws3c5_c00001{word-spacing:3.895200px;}
.ws598_c00001{word-spacing:3.902400px;}
.ws929_c00001{word-spacing:3.909600px;}
.ws4bc_c00001{word-spacing:3.916800px;}
.ws551_c00001{word-spacing:3.924000px;}
.ws8e_c00001{word-spacing:3.931200px;}
.ws55f_c00001{word-spacing:3.938400px;}
.ws2cd_c00001{word-spacing:3.945600px;}
.wsaa6_c00001{word-spacing:3.946212px;}
.ws8d_c00001{word-spacing:3.952800px;}
.ws2b8_c00001{word-spacing:3.960000px;}
.wsb2f_c00001{word-spacing:3.965976px;}
.ws367_c00001{word-spacing:3.967200px;}
.ws309_c00001{word-spacing:3.974400px;}
.ws7aa_c00001{word-spacing:3.979152px;}
.ws2d5_c00001{word-spacing:3.981600px;}
.ws14e6_c00001{word-spacing:3.985740px;}
.ws64c_c00001{word-spacing:3.988800px;}
.ws1345_c00001{word-spacing:3.992328px;}
.ws143_c00001{word-spacing:3.996000px;}
.ws4f3_c00001{word-spacing:3.998916px;}
.ws552_c00001{word-spacing:4.003200px;}
.ws4f2_c00001{word-spacing:4.005504px;}
.wsc1a_c00001{word-spacing:4.010400px;}
.ws14c5_c00001{word-spacing:4.012092px;}
.ws1384_c00001{word-spacing:4.025268px;}
.wsbfd_c00001{word-spacing:4.031856px;}
.ws85e_c00001{word-spacing:4.032000px;}
.ws1105_c00001{word-spacing:4.038444px;}
.ws275_c00001{word-spacing:4.039200px;}
.wsb42_c00001{word-spacing:4.045032px;}
.wscb7_c00001{word-spacing:4.075200px;}
.wsb00_c00001{word-spacing:4.088160px;}
.ws3ff_c00001{word-spacing:4.096800px;}
.ws9ec_c00001{word-spacing:4.104000px;}
.ws518_c00001{word-spacing:4.118400px;}
.ws934_c00001{word-spacing:4.125600px;}
.wscb8_c00001{word-spacing:4.132800px;}
.wsd45_c00001{word-spacing:4.140000px;}
.wsab5_c00001{word-spacing:4.147200px;}
.ws35a_c00001{word-spacing:4.154400px;}
.ws7da_c00001{word-spacing:4.161600px;}
.ws72b_c00001{word-spacing:4.168800px;}
.ws13d8_c00001{word-spacing:4.173120px;}
.ws437_c00001{word-spacing:4.176000px;}
.ws359_c00001{word-spacing:4.183200px;}
.ws4e3_c00001{word-spacing:4.190400px;}
.ws358_c00001{word-spacing:4.196376px;}
.ws68d_c00001{word-spacing:4.197600px;}
.ws9eb_c00001{word-spacing:4.204800px;}
.ws3fd_c00001{word-spacing:4.212000px;}
.ws48e_c00001{word-spacing:4.219200px;}
.ws33d_c00001{word-spacing:4.226400px;}
.ws23d_c00001{word-spacing:4.233600px;}
.ws948_c00001{word-spacing:4.240800px;}
.ws473_c00001{word-spacing:4.248000px;}
.ws3cf_c00001{word-spacing:4.255200px;}
.ws474_c00001{word-spacing:4.262400px;}
.ws26a_c00001{word-spacing:4.269600px;}
.ws580_c00001{word-spacing:4.276800px;}
.wsc8_c00001{word-spacing:4.284000px;}
.wsdb_c00001{word-spacing:4.291200px;}
.ws3fe_c00001{word-spacing:4.298400px;}
.ws62a_c00001{word-spacing:4.305600px;}
.ws899_c00001{word-spacing:4.312800px;}
.ws23c_c00001{word-spacing:4.320000px;}
.ws1135_c00001{word-spacing:4.321728px;}
.ws33e_c00001{word-spacing:4.327200px;}
.ws7b8_c00001{word-spacing:4.328316px;}
.ws26b_c00001{word-spacing:4.334400px;}
.ws4fc_c00001{word-spacing:4.334904px;}
.wsab_c00001{word-spacing:4.341492px;}
.wsc7_c00001{word-spacing:4.341600px;}
.ws111f_c00001{word-spacing:4.348080px;}
.wsbdf_c00001{word-spacing:4.348800px;}
.ws1130_c00001{word-spacing:4.354668px;}
.wsfb2_c00001{word-spacing:4.361256px;}
.ws1418_c00001{word-spacing:4.362480px;}
.ws95d_c00001{word-spacing:4.363200px;}
.ws143a_c00001{word-spacing:4.367844px;}
.ws4fb_c00001{word-spacing:4.374432px;}
.ws407_c00001{word-spacing:4.377600px;}
.ws47f_c00001{word-spacing:4.381020px;}
.wsc08_c00001{word-spacing:4.387608px;}
.ws11a8_c00001{word-spacing:4.394196px;}
.wse11_c00001{word-spacing:4.399200px;}
.wse20_c00001{word-spacing:4.413600px;}
.ws138b_c00001{word-spacing:4.413960px;}
.ws772_c00001{word-spacing:4.420800px;}
.wsf5c_c00001{word-spacing:4.428000px;}
.wsee5_c00001{word-spacing:4.438080px;}
.wsd24_c00001{word-spacing:4.449600px;}
.wse3f_c00001{word-spacing:4.456800px;}
.wsdc1_c00001{word-spacing:4.464000px;}
.wsd05_c00001{word-spacing:4.471200px;}
.wsf6f_c00001{word-spacing:4.478400px;}
.ws699_c00001{word-spacing:4.485600px;}
.wsd09_c00001{word-spacing:4.492800px;}
.ws225_c00001{word-spacing:4.500000px;}
.ws13e_c00001{word-spacing:4.507200px;}
.ws9b3_c00001{word-spacing:4.512744px;}
.ws1d1_c00001{word-spacing:4.514400px;}
.wsf6e_c00001{word-spacing:4.521600px;}
.ws296_c00001{word-spacing:4.528800px;}
.ws297_c00001{word-spacing:4.536000px;}
.ws22a_c00001{word-spacing:4.543200px;}
.ws2a1_c00001{word-spacing:4.550400px;}
.wsa97_c00001{word-spacing:4.557600px;}
.ws72d_c00001{word-spacing:4.564800px;}
.ws223_c00001{word-spacing:4.572000px;}
.ws89_c00001{word-spacing:4.579200px;}
.ws390_c00001{word-spacing:4.586400px;}
.ws44_c00001{word-spacing:4.593600px;}
.ws942_c00001{word-spacing:4.600800px;}
.ws1d0_c00001{word-spacing:4.608000px;}
.ws2a2_c00001{word-spacing:4.615200px;}
.ws78e_c00001{word-spacing:4.622400px;}
.ws43d_c00001{word-spacing:4.629600px;}
.ws43_c00001{word-spacing:4.636800px;}
.ws4e1_c00001{word-spacing:4.644000px;}
.ws13d_c00001{word-spacing:4.651200px;}
.ws13f_c00001{word-spacing:4.658400px;}
.ws32a_c00001{word-spacing:4.665600px;}
.ws1d2_c00001{word-spacing:4.672800px;}
.ws78d_c00001{word-spacing:4.680000px;}
.ws8a_c00001{word-spacing:4.687200px;}
.ws69a_c00001{word-spacing:4.694400px;}
.ws5d9_c00001{word-spacing:4.701600px;}
.ws13e3_c00001{word-spacing:4.703040px;}
.ws224_c00001{word-spacing:4.708800px;}
.wsfe7_c00001{word-spacing:4.710420px;}
.wsb2b_c00001{word-spacing:4.717008px;}
.ws4e2_c00001{word-spacing:4.723200px;}
.ws10df_c00001{word-spacing:4.723596px;}
.wsbca_c00001{word-spacing:4.730184px;}
.ws22b_c00001{word-spacing:4.730400px;}
.ws90c_c00001{word-spacing:4.737600px;}
.wsb2c_c00001{word-spacing:4.743360px;}
.wsbb1_c00001{word-spacing:4.744800px;}
.wsbd3_c00001{word-spacing:4.749948px;}
.ws20_c00001{word-spacing:4.752000px;}
.ws43e_c00001{word-spacing:4.756536px;}
.ws1068_c00001{word-spacing:4.759200px;}
.ws11a1_c00001{word-spacing:4.763124px;}
.wsba9_c00001{word-spacing:4.766400px;}
.ws1579_c00001{word-spacing:4.769712px;}
.ws8bc_c00001{word-spacing:4.788000px;}
.wsd2b_c00001{word-spacing:4.795200px;}
.ws729_c00001{word-spacing:4.816800px;}
.ws3d7_c00001{word-spacing:4.831200px;}
.wse8e_c00001{word-spacing:4.838400px;}
.ws11b8_c00001{word-spacing:4.845600px;}
.ws80c_c00001{word-spacing:4.852800px;}
.wsaf1_c00001{word-spacing:4.860000px;}
.ws1ec_c00001{word-spacing:4.867200px;}
.ws25c_c00001{word-spacing:4.874400px;}
.ws1c3_c00001{word-spacing:4.881600px;}
.ws83_c00001{word-spacing:4.888800px;}
.wsa76_c00001{word-spacing:4.896000px;}
.wsefc_c00001{word-spacing:4.901760px;}
.ws3d8_c00001{word-spacing:4.903200px;}
.ws8be_c00001{word-spacing:4.910400px;}
.ws1e8_c00001{word-spacing:4.917600px;}
.ws15e_c00001{word-spacing:4.924800px;}
.ws990_c00001{word-spacing:4.932000px;}
.ws615_c00001{word-spacing:4.939200px;}
.ws1e9_c00001{word-spacing:4.946400px;}
.ws51e_c00001{word-spacing:4.953600px;}
.ws626_c00001{word-spacing:4.960800px;}
.ws72a_c00001{word-spacing:4.968000px;}
.ws697_c00001{word-spacing:4.975200px;}
.ws1c2_c00001{word-spacing:4.982400px;}
.ws840_c00001{word-spacing:4.989600px;}
.ws9be_c00001{word-spacing:4.993704px;}
.ws7c_c00001{word-spacing:4.996800px;}
.wsa50_c00001{word-spacing:5.004000px;}
.ws289_c00001{word-spacing:5.011200px;}
.ws1f_c00001{word-spacing:5.018400px;}
.ws1112_c00001{word-spacing:5.020056px;}
.ws82_c00001{word-spacing:5.025600px;}
.ws51d_c00001{word-spacing:5.032800px;}
.ws14ac_c00001{word-spacing:5.033232px;}
.wsefd_c00001{word-spacing:5.034240px;}
.ws14ab_c00001{word-spacing:5.039820px;}
.ws9ed_c00001{word-spacing:5.040000px;}
.wsc00_c00001{word-spacing:5.046408px;}
.ws298_c00001{word-spacing:5.047200px;}
.ws10c4_c00001{word-spacing:5.052996px;}
.ws158_c00001{word-spacing:5.054400px;}
.wsb72_c00001{word-spacing:5.059584px;}
.ws8a4_c00001{word-spacing:5.061600px;}
.ws1057_c00001{word-spacing:5.066172px;}
.ws7ca_c00001{word-spacing:5.068800px;}
.wsbff_c00001{word-spacing:5.072760px;}
.ws73f_c00001{word-spacing:5.076000px;}
.ws970_c00001{word-spacing:5.079348px;}
.ws25d_c00001{word-spacing:5.083200px;}
.ws124_c00001{word-spacing:5.085936px;}
.wsbaa_c00001{word-spacing:5.090400px;}
.ws126a_c00001{word-spacing:5.092524px;}
.ws880_c00001{word-spacing:5.097600px;}
.ws11ec_c00001{word-spacing:5.099112px;}
.ws123_c00001{word-spacing:5.105700px;}
.wsdc5_c00001{word-spacing:5.112000px;}
.ws10a9_c00001{word-spacing:5.112288px;}
.ws1083_c00001{word-spacing:5.118876px;}
.ws10a2_c00001{word-spacing:5.125464px;}
.ws1069_c00001{word-spacing:5.126400px;}
.ws1084_c00001{word-spacing:5.132052px;}
.wse7b_c00001{word-spacing:5.133600px;}
.ws1f8_c00001{word-spacing:5.155200px;}
.ws1067_c00001{word-spacing:5.162400px;}
.ws89d_c00001{word-spacing:5.176800px;}
.ws3eb_c00001{word-spacing:5.182344px;}
.ws85d_c00001{word-spacing:5.191200px;}
.ws76d_c00001{word-spacing:5.205600px;}
.ws105_c00001{word-spacing:5.212800px;}
.ws9fd_c00001{word-spacing:5.220000px;}
.wsb0d_c00001{word-spacing:5.227200px;}
.ws12b_c00001{word-spacing:5.234400px;}
.ws59f_c00001{word-spacing:5.241600px;}
.wsa65_c00001{word-spacing:5.248800px;}
.ws3b_c00001{word-spacing:5.256000px;}
.wsa4_c00001{word-spacing:5.263200px;}
.ws422_c00001{word-spacing:5.270400px;}
.ws104_c00001{word-spacing:5.277600px;}
.ws1b6_c00001{word-spacing:5.284800px;}
.ws3c_c00001{word-spacing:5.292000px;}
.wsa34_c00001{word-spacing:5.299200px;}
.ws3cd_c00001{word-spacing:5.306400px;}
.ws2cb_c00001{word-spacing:5.313600px;}
.ws73e_c00001{word-spacing:5.320800px;}
.ws490_c00001{word-spacing:5.328000px;}
.ws1b5_c00001{word-spacing:5.335200px;}
.ws524_c00001{word-spacing:5.342400px;}
.ws12d4_c00001{word-spacing:5.349456px;}
.wsa5_c00001{word-spacing:5.349600px;}
.ws12ee_c00001{word-spacing:5.356044px;}
.ws5d6_c00001{word-spacing:5.356800px;}
.ws405_c00001{word-spacing:5.364000px;}
.ws491_c00001{word-spacing:5.371200px;}
.ws1119_c00001{word-spacing:5.375808px;}
.ws38f_c00001{word-spacing:5.378400px;}
.ws2cc_c00001{word-spacing:5.385600px;}
.ws1f9_c00001{word-spacing:5.392800px;}
.ws11e7_c00001{word-spacing:5.395572px;}
.ws404_c00001{word-spacing:5.400000px;}
.ws12f3_c00001{word-spacing:5.402160px;}
.ws241_c00001{word-spacing:5.407200px;}
.ws7b6_c00001{word-spacing:5.408748px;}
.ws544_c00001{word-spacing:5.414400px;}
.ws7b7_c00001{word-spacing:5.415336px;}
.ws87f_c00001{word-spacing:5.421600px;}
.ws1099_c00001{word-spacing:5.421924px;}
.ws10a_c00001{word-spacing:5.428512px;}
.ws95a_c00001{word-spacing:5.428800px;}
.wsef2_c00001{word-spacing:5.431680px;}
.ws96f_c00001{word-spacing:5.435100px;}
.ws3ce_c00001{word-spacing:5.436000px;}
.wsf99_c00001{word-spacing:5.441688px;}
.wsd2a_c00001{word-spacing:5.443200px;}
.wsad0_c00001{word-spacing:5.448276px;}
.ws1220_c00001{word-spacing:5.450400px;}
.ws10b_c00001{word-spacing:5.454864px;}
.ws2f5_c00001{word-spacing:5.461452px;}
.wsc6e_c00001{word-spacing:5.464800px;}
.ws12d3_c00001{word-spacing:5.468040px;}
.ws12c_c00001{word-spacing:5.470920px;}
.wsb57_c00001{word-spacing:5.474628px;}
.ws2f6_c00001{word-spacing:5.481216px;}
.wsdf1_c00001{word-spacing:5.486400px;}
.ws12d_c00001{word-spacing:5.488956px;}
.ws1228_c00001{word-spacing:5.493600px;}
.wsc84_c00001{word-spacing:5.508000px;}
.ws46_c00001{word-spacing:5.515200px;}
.wsd29_c00001{word-spacing:5.522400px;}
.wsc61_c00001{word-spacing:5.536800px;}
.ws9f4_c00001{word-spacing:5.558400px;}
.ws918_c00001{word-spacing:5.565600px;}
.ws7a6_c00001{word-spacing:5.580000px;}
.ws14f9_c00001{word-spacing:5.587200px;}
.ws6e9_c00001{word-spacing:5.594400px;}
.ws412_c00001{word-spacing:5.601600px;}
.ws47_c00001{word-spacing:5.616000px;}
.ws57_c00001{word-spacing:5.623200px;}
.ws9f0_c00001{word-spacing:5.630400px;}
.ws295_c00001{word-spacing:5.637600px;}
.ws280_c00001{word-spacing:5.644800px;}
.ws8a1_c00001{word-spacing:5.652000px;}
.ws66f_c00001{word-spacing:5.659200px;}
.ws5dd_c00001{word-spacing:5.666400px;}
.ws3bc_c00001{word-spacing:5.673600px;}
.ws411_c00001{word-spacing:5.680800px;}
.ws11f_c00001{word-spacing:5.688000px;}
.ws274_c00001{word-spacing:5.695200px;}
.ws35b_c00001{word-spacing:5.702400px;}
.ws159_c00001{word-spacing:5.709600px;}
.ws15a_c00001{word-spacing:5.716800px;}
.ws294_c00001{word-spacing:5.724000px;}
.ws1137_c00001{word-spacing:5.724972px;}
.ws2c_c00001{word-spacing:5.731200px;}
.ws11e_c00001{word-spacing:5.738400px;}
.ws27f_c00001{word-spacing:5.745600px;}
.ws3bd_c00001{word-spacing:5.752800px;}
.ws1280_c00001{word-spacing:5.757912px;}
.ws5dc_c00001{word-spacing:5.760000px;}
.wsef0_c00001{word-spacing:5.762880px;}
.ws2fe_c00001{word-spacing:5.764500px;}
.ws2d_c00001{word-spacing:5.767200px;}
.ws10de_c00001{word-spacing:5.771088px;}
.ws45_c00001{word-spacing:5.774400px;}
.wsbd2_c00001{word-spacing:5.777676px;}
.ws7d2_c00001{word-spacing:5.781600px;}
.ws2fd_c00001{word-spacing:5.784264px;}
.ws609_c00001{word-spacing:5.788800px;}
.ws107e_c00001{word-spacing:5.790852px;}
.wscca_c00001{word-spacing:5.796000px;}
.ws1400_c00001{word-spacing:5.796720px;}
.wsbfa_c00001{word-spacing:5.797440px;}
.ws581_c00001{word-spacing:5.803200px;}
.ws1377_c00001{word-spacing:5.804028px;}
.ws2b_c00001{word-spacing:5.810400px;}
.wsbcd_c00001{word-spacing:5.810616px;}
.ws2ff_c00001{word-spacing:5.817204px;}
.wsc26_c00001{word-spacing:5.817600px;}
.ws10d1_c00001{word-spacing:5.823792px;}
.ws56_c00001{word-spacing:5.824800px;}
.ws118f_c00001{word-spacing:5.830380px;}
.ws1538_c00001{word-spacing:5.836968px;}
.ws95f_c00001{word-spacing:5.839200px;}
.wsc53_c00001{word-spacing:5.846400px;}
.wsc85_c00001{word-spacing:5.853600px;}
.wsa84_c00001{word-spacing:5.860800px;}
.wse10_c00001{word-spacing:5.875200px;}
.ws13b3_c00001{word-spacing:5.895360px;}
.ws5a9_c00001{word-spacing:5.904000px;}
.wse7e_c00001{word-spacing:5.918400px;}
.ws456_c00001{word-spacing:5.925600px;}
.ws869_c00001{word-spacing:5.954400px;}
.ws7cf_c00001{word-spacing:5.961600px;}
.ws3f7_c00001{word-spacing:5.968800px;}
.wsd6d_c00001{word-spacing:5.976000px;}
.ws1e1_c00001{word-spacing:5.983200px;}
.wsa60_c00001{word-spacing:5.990400px;}
.ws455_c00001{word-spacing:5.997600px;}
.ws94_c00001{word-spacing:6.004800px;}
.ws6a1_c00001{word-spacing:6.012000px;}
.ws3da_c00001{word-spacing:6.019200px;}
.ws42b_c00001{word-spacing:6.026400px;}
.ws45b_c00001{word-spacing:6.033600px;}
.ws6a2_c00001{word-spacing:6.040800px;}
.ws9c5_c00001{word-spacing:6.048000px;}
.ws3f8_c00001{word-spacing:6.055200px;}
.ws962_c00001{word-spacing:6.069600px;}
.ws95_c00001{word-spacing:6.076800px;}
.ws1e2_c00001{word-spacing:6.084000px;}
.ws1e0_c00001{word-spacing:6.091200px;}
.ws628_c00001{word-spacing:6.098400px;}
.ws4bd_c00001{word-spacing:6.105600px;}
.ws1138_c00001{word-spacing:6.107076px;}
.ws7ce_c00001{word-spacing:6.112800px;}
.ws54c_c00001{word-spacing:6.120000px;}
.ws12d5_c00001{word-spacing:6.120252px;}
.ws1075_c00001{word-spacing:6.126840px;}
.ws9c6_c00001{word-spacing:6.127200px;}
.ws12b0_c00001{word-spacing:6.133428px;}
.ws520_c00001{word-spacing:6.134400px;}
.wsb67_c00001{word-spacing:6.140016px;}
.wsc48_c00001{word-spacing:6.141600px;}
.ws105f_c00001{word-spacing:6.146604px;}
.ws618_c00001{word-spacing:6.148800px;}
.ws12d6_c00001{word-spacing:6.153192px;}
.wsa66_c00001{word-spacing:6.156000px;}
.ws7a9_c00001{word-spacing:6.159780px;}
.ws13f6_c00001{word-spacing:6.160320px;}
.ws457_c00001{word-spacing:6.163200px;}
.ws4f1_c00001{word-spacing:6.166368px;}
.wsb4e_c00001{word-spacing:6.172956px;}
.wse08_c00001{word-spacing:6.177600px;}
.wsb4f_c00001{word-spacing:6.179544px;}
.wsbf2_c00001{word-spacing:6.186132px;}
.wsd80_c00001{word-spacing:6.192000px;}
.ws1380_c00001{word-spacing:6.192720px;}
.ws13a_c00001{word-spacing:6.198372px;}
.ws1432_c00001{word-spacing:6.199200px;}
.ws972_c00001{word-spacing:6.199308px;}
.ws13b_c00001{word-spacing:6.204384px;}
.ws971_c00001{word-spacing:6.205896px;}
.wsdce_c00001{word-spacing:6.206400px;}
.ws8ea_c00001{word-spacing:6.213600px;}
.wsc25_c00001{word-spacing:6.220800px;}
.wsbf1_c00001{word-spacing:6.225660px;}
.ws15f_c00001{word-spacing:6.249600px;}
.wsc5a_c00001{word-spacing:6.278400px;}
.wsd03_c00001{word-spacing:6.285600px;}
.ws619_c00001{word-spacing:6.292800px;}
.ws986_c00001{word-spacing:6.300000px;}
.ws3d_c00001{word-spacing:6.307200px;}
.ws415_c00001{word-spacing:6.314400px;}
.ws579_c00001{word-spacing:6.328800px;}
.ws4c3_c00001{word-spacing:6.336000px;}
.ws4c1_c00001{word-spacing:6.343200px;}
.ws2bf_c00001{word-spacing:6.350400px;}
.ws745_c00001{word-spacing:6.357600px;}
.wsef4_c00001{word-spacing:6.359040px;}
.ws595_c00001{word-spacing:6.364800px;}
.ws981_c00001{word-spacing:6.372000px;}
.ws5b4_c00001{word-spacing:6.379200px;}
.ws19a_c00001{word-spacing:6.386400px;}
.ws18e_c00001{word-spacing:6.393600px;}
.ws594_c00001{word-spacing:6.400800px;}
.ws3e_c00001{word-spacing:6.408000px;}
.wsc4d_c00001{word-spacing:6.422400px;}
.ws3f_c00001{word-spacing:6.429600px;}
.ws471_c00001{word-spacing:6.436800px;}
.ws69_c00001{word-spacing:6.444000px;}
.ws160_c00001{word-spacing:6.451200px;}
.ws409_c00001{word-spacing:6.458400px;}
.ws578_c00001{word-spacing:6.465600px;}
.ws4c2_c00001{word-spacing:6.472800px;}
.ws14ea_c00001{word-spacing:6.476004px;}
.ws2a6_c00001{word-spacing:6.480000px;}
.wsbf0_c00001{word-spacing:6.482592px;}
.ws617_c00001{word-spacing:6.487200px;}
.ws11de_c00001{word-spacing:6.489180px;}
.wsf33_c00001{word-spacing:6.491520px;}
.ws590_c00001{word-spacing:6.494400px;}
.wsffd_c00001{word-spacing:6.495768px;}
.ws6f0_c00001{word-spacing:6.501600px;}
.ws1183_c00001{word-spacing:6.502356px;}
.ws68_c00001{word-spacing:6.508800px;}
.ws1018_c00001{word-spacing:6.508944px;}
.wsf6a_c00001{word-spacing:6.515532px;}
.ws35c_c00001{word-spacing:6.516000px;}
.ws31b_c00001{word-spacing:6.522120px;}
.wscf7_c00001{word-spacing:6.523200px;}
.ws10a8_c00001{word-spacing:6.528708px;}
.ws11fe_c00001{word-spacing:6.530400px;}
.ws47d_c00001{word-spacing:6.535296px;}
.wsc24_c00001{word-spacing:6.537600px;}
.ws919_c00001{word-spacing:6.541884px;}
.ws653_c00001{word-spacing:6.544800px;}
.ws843_c00001{word-spacing:6.548472px;}
.ws1323_c00001{word-spacing:6.555060px;}
.ws842_c00001{word-spacing:6.561648px;}
.ws10ea_c00001{word-spacing:6.568236px;}
.wsc10_c00001{word-spacing:6.573600px;}
.ws1431_c00001{word-spacing:6.580800px;}
.ws7f3_c00001{word-spacing:6.588000px;}
.wsde0_c00001{word-spacing:6.609600px;}
.wsc4c_c00001{word-spacing:6.616800px;}
.ws2be_c00001{word-spacing:6.624000px;}
.wsb16_c00001{word-spacing:6.631200px;}
.wsd02_c00001{word-spacing:6.638400px;}
.wse1b_c00001{word-spacing:6.652800px;}
.wsdcd_c00001{word-spacing:6.660000px;}
.ws78b_c00001{word-spacing:6.667200px;}
.ws71a_c00001{word-spacing:6.674400px;}
.wsd7f_c00001{word-spacing:6.681600px;}
.ws71b_c00001{word-spacing:6.688800px;}
.wsdbe_c00001{word-spacing:6.696000px;}
.ws558_c00001{word-spacing:6.703200px;}
.wsdef_c00001{word-spacing:6.710400px;}
.wsaed_c00001{word-spacing:6.717600px;}
.ws3fb_c00001{word-spacing:6.724800px;}
.ws3fc_c00001{word-spacing:6.739200px;}
.ws7a_c00001{word-spacing:6.746400px;}
.ws88b_c00001{word-spacing:6.753600px;}
.ws4cf_c00001{word-spacing:6.760800px;}
.wsdc7_c00001{word-spacing:6.768000px;}
.ws559_c00001{word-spacing:6.775200px;}
.ws78c_c00001{word-spacing:6.782400px;}
.ws68c_c00001{word-spacing:6.789600px;}
.ws707_c00001{word-spacing:6.796800px;}
.ws112_c00001{word-spacing:6.804000px;}
.ws708_c00001{word-spacing:6.811200px;}
.ws21_c00001{word-spacing:6.818400px;}
.ws270_c00001{word-spacing:6.825600px;}
.ws136e_c00001{word-spacing:6.831756px;}
.ws79_c00001{word-spacing:6.832800px;}
.ws1101_c00001{word-spacing:6.838344px;}
.ws22_c00001{word-spacing:6.840000px;}
.wsbbc_c00001{word-spacing:6.844932px;}
.ws1dd_c00001{word-spacing:6.847200px;}
.ws1295_c00001{word-spacing:6.851520px;}
.ws719_c00001{word-spacing:6.854400px;}
.ws1de_c00001{word-spacing:6.861600px;}
.ws481_c00001{word-spacing:6.864696px;}
.ws8fb_c00001{word-spacing:6.868800px;}
.ws117f_c00001{word-spacing:6.871284px;}
.wsa0e_c00001{word-spacing:6.876000px;}
.ws480_c00001{word-spacing:6.877872px;}
.wsa68_c00001{word-spacing:6.883200px;}
.wsbbd_c00001{word-spacing:6.884460px;}
.ws1ea_c00001{word-spacing:6.890400px;}
.ws1388_c00001{word-spacing:6.891048px;}
.wse07_c00001{word-spacing:6.897600px;}
.ws37f_c00001{word-spacing:6.897636px;}
.ws955_c00001{word-spacing:6.904800px;}
.ws380_c00001{word-spacing:6.910812px;}
.ws13c2_c00001{word-spacing:6.912000px;}
.ws1180_c00001{word-spacing:6.917400px;}
.ws116f_c00001{word-spacing:6.923988px;}
.wsdbd_c00001{word-spacing:6.933600px;}
.wsc5d_c00001{word-spacing:6.955200px;}
.ws76e_c00001{word-spacing:6.969600px;}
.ws767_c00001{word-spacing:6.976800px;}
.wse22_c00001{word-spacing:6.984000px;}
.ws145_c00001{word-spacing:6.991200px;}
.ws72c_c00001{word-spacing:6.998400px;}
.ws426_c00001{word-spacing:7.005600px;}
.wsc45_c00001{word-spacing:7.012800px;}
.wse55_c00001{word-spacing:7.027200px;}
.ws144_c00001{word-spacing:7.034400px;}
.ws766_c00001{word-spacing:7.041600px;}
.wsded_c00001{word-spacing:7.048800px;}
.ws1222_c00001{word-spacing:7.056000px;}
.ws3ca_c00001{word-spacing:7.063200px;}
.wsa93_c00001{word-spacing:7.070400px;}
.ws2f0_c00001{word-spacing:7.077600px;}
.ws210_c00001{word-spacing:7.084800px;}
.wsef3_c00001{word-spacing:7.087680px;}
.ws542_c00001{word-spacing:7.092000px;}
.ws357_c00001{word-spacing:7.099200px;}
.ws60a_c00001{word-spacing:7.106400px;}
.ws454_c00001{word-spacing:7.113600px;}
.ws427_c00001{word-spacing:7.120800px;}
.ws803_c00001{word-spacing:7.128000px;}
.ws8e1_c00001{word-spacing:7.135200px;}
.ws7d_c00001{word-spacing:7.142400px;}
.ws67_c00001{word-spacing:7.149600px;}
.ws2ef_c00001{word-spacing:7.156800px;}
.ws458_c00001{word-spacing:7.164000px;}
.ws66_c00001{word-spacing:7.171200px;}
.ws356_c00001{word-spacing:7.178400px;}
.ws292_c00001{word-spacing:7.185600px;}
.ws543_c00001{word-spacing:7.192800px;}
.ws293_c00001{word-spacing:7.200000px;}
.ws5df_c00001{word-spacing:7.207200px;}
.ws106a_c00001{word-spacing:7.213860px;}
.ws60b_c00001{word-spacing:7.214400px;}
.wsef5_c00001{word-spacing:7.220160px;}
.ws146_c00001{word-spacing:7.221600px;}
.wsfce_c00001{word-spacing:7.227036px;}
.ws956_c00001{word-spacing:7.228800px;}
.ws1074_c00001{word-spacing:7.233624px;}
.ws7e_c00001{word-spacing:7.236000px;}
.ws137b_c00001{word-spacing:7.240212px;}
.wse6b_c00001{word-spacing:7.243200px;}
.ws79e_c00001{word-spacing:7.246800px;}
.ws91c_c00001{word-spacing:7.250400px;}
.ws14ae_c00001{word-spacing:7.253388px;}
.ws1353_c00001{word-spacing:7.257600px;}
.ws1386_c00001{word-spacing:7.266564px;}
.ws1025_c00001{word-spacing:7.273152px;}
.wse5b_c00001{word-spacing:7.286400px;}
.ws1417_c00001{word-spacing:7.290720px;}
.ws32c_c00001{word-spacing:7.300800px;}
.wse54_c00001{word-spacing:7.336800px;}
.ws958_c00001{word-spacing:7.358400px;}
.ws959_c00001{word-spacing:7.365600px;}
.wsa69_c00001{word-spacing:7.372800px;}
.wsb76_c00001{word-spacing:7.380000px;}
.ws88_c00001{word-spacing:7.416000px;}
.ws96_c00001{word-spacing:7.430400px;}
.ws83f_c00001{word-spacing:7.437600px;}
.ws9cf_c00001{word-spacing:7.444800px;}
.ws954_c00001{word-spacing:7.452000px;}
.ws2d8_c00001{word-spacing:7.459200px;}
.wsbdc_c00001{word-spacing:7.466400px;}
.ws2d9_c00001{word-spacing:7.473600px;}
.wsa31_c00001{word-spacing:7.480800px;}
.ws97_c00001{word-spacing:7.488000px;}
.ws817_c00001{word-spacing:7.495200px;}
.ws46d_c00001{word-spacing:7.502400px;}
.ws57e_c00001{word-spacing:7.509600px;}
.ws193_c00001{word-spacing:7.516800px;}
.ws87_c00001{word-spacing:7.524000px;}
.ws46c_c00001{word-spacing:7.531200px;}
.ws1196_c00001{word-spacing:7.536672px;}
.ws27b_c00001{word-spacing:7.538400px;}
.ws27c_c00001{word-spacing:7.545600px;}
.ws12c4_c00001{word-spacing:7.549848px;}
.ws725_c00001{word-spacing:7.552800px;}
.ws321_c00001{word-spacing:7.556436px;}
.wsb4a_c00001{word-spacing:7.560000px;}
.ws116e_c00001{word-spacing:7.563024px;}
.ws46e_c00001{word-spacing:7.567200px;}
.ws1215_c00001{word-spacing:7.569612px;}
.wse06_c00001{word-spacing:7.574400px;}
.ws57f_c00001{word-spacing:7.581600px;}
.ws4f0_c00001{word-spacing:7.582788px;}
.ws32b_c00001{word-spacing:7.588800px;}
.ws1214_c00001{word-spacing:7.595964px;}
.ws4ef_c00001{word-spacing:7.602552px;}
.ws952_c00001{word-spacing:7.603200px;}
.ws320_c00001{word-spacing:7.609140px;}
.wsf96_c00001{word-spacing:7.615728px;}
.wse32_c00001{word-spacing:7.617600px;}
.ws1100_c00001{word-spacing:7.622316px;}
.wsb23_c00001{word-spacing:7.628904px;}
.wsb01_c00001{word-spacing:7.629228px;}
.ws13b2_c00001{word-spacing:7.632000px;}
.ws1001_c00001{word-spacing:7.635492px;}
.ws151f_c00001{word-spacing:7.653600px;}
.wsfa1_c00001{word-spacing:7.655256px;}
.wsb77_c00001{word-spacing:7.668000px;}
.ws3f1_c00001{word-spacing:7.696800px;}
.ws11f0_c00001{word-spacing:7.718400px;}
.wsf52_c00001{word-spacing:7.725600px;}
.ws7d0_c00001{word-spacing:7.732800px;}
.ws81d_c00001{word-spacing:7.740000px;}
.ws97e_c00001{word-spacing:7.747200px;}
.ws19b_c00001{word-spacing:7.754400px;}
.wse87_c00001{word-spacing:7.761600px;}
.wsc77_c00001{word-spacing:7.768800px;}
.wsaa8_c00001{word-spacing:7.776000px;}
.wse18_c00001{word-spacing:7.783200px;}
.ws7e5_c00001{word-spacing:7.797600px;}
.ws8a3_c00001{word-spacing:7.804800px;}
.wse52_c00001{word-spacing:7.812000px;}
.wsef6_c00001{word-spacing:7.816320px;}
.ws30f_c00001{word-spacing:7.819200px;}
.ws7cb_c00001{word-spacing:7.826400px;}
.ws7e6_c00001{word-spacing:7.833600px;}
.ws172_c00001{word-spacing:7.840800px;}
.ws9d1_c00001{word-spacing:7.848000px;}
.ws244_c00001{word-spacing:7.855200px;}
.ws515_c00001{word-spacing:7.862400px;}
.wscb5_c00001{word-spacing:7.869600px;}
.ws884_c00001{word-spacing:7.876800px;}
.wsac3_c00001{word-spacing:7.884000px;}
.ws243_c00001{word-spacing:7.891200px;}
.ws12b7_c00001{word-spacing:7.892424px;}
.ws171_c00001{word-spacing:7.898400px;}
.ws442_c00001{word-spacing:7.899012px;}
.ws19c_c00001{word-spacing:7.905600px;}
.wsbf8_c00001{word-spacing:7.912188px;}
.ws4e4_c00001{word-spacing:7.912800px;}
.ws245_c00001{word-spacing:7.920000px;}
.ws12b6_c00001{word-spacing:7.925364px;}
.ws7d1_c00001{word-spacing:7.927200px;}
.ws9f7_c00001{word-spacing:7.934400px;}
.wsbf7_c00001{word-spacing:7.938540px;}
.wsbb2_c00001{word-spacing:7.941600px;}
.ws1247_c00001{word-spacing:7.945128px;}
.ws980_c00001{word-spacing:7.948800px;}
.ws1037_c00001{word-spacing:7.951716px;}
.ws1177_c00001{word-spacing:7.958304px;}
.wsfdb_c00001{word-spacing:7.964892px;}
.ws84f_c00001{word-spacing:7.971480px;}
.wsb03_c00001{word-spacing:7.977600px;}
.ws1326_c00001{word-spacing:7.978068px;}
.ws441_c00001{word-spacing:7.991244px;}
.ws1202_c00001{word-spacing:7.997832px;}
.ws8a2_c00001{word-spacing:7.999200px;}
.wse51_c00001{word-spacing:8.020800px;}
.ws97f_c00001{word-spacing:8.078400px;}
.ws13f5_c00001{word-spacing:8.081280px;}
.wse02_c00001{word-spacing:8.085600px;}
.wsa6b_c00001{word-spacing:8.100000px;}
.wsc83_c00001{word-spacing:8.114400px;}
.ws64_c00001{word-spacing:8.121600px;}
.ws333_c00001{word-spacing:8.128800px;}
.wsa6c_c00001{word-spacing:8.136000px;}
.ws897_c00001{word-spacing:8.143200px;}
.ws1e_c00001{word-spacing:8.157600px;}
.wsa59_c00001{word-spacing:8.164800px;}
.ws3a0_c00001{word-spacing:8.172000px;}
.ws4be_c00001{word-spacing:8.179200px;}
.ws3ba_c00001{word-spacing:8.186400px;}
.ws8eb_c00001{word-spacing:8.193600px;}
.ws332_c00001{word-spacing:8.200800px;}
.wsb1a_c00001{word-spacing:8.208000px;}
.ws531_c00001{word-spacing:8.215200px;}
.wsb5a_c00001{word-spacing:8.222400px;}
.ws953_c00001{word-spacing:8.229600px;}
.ws1ac_c00001{word-spacing:8.236800px;}
.ws1ad_c00001{word-spacing:8.244000px;}
.ws3b9_c00001{word-spacing:8.251200px;}
.ws1048_c00001{word-spacing:8.254764px;}
.ws65_c00001{word-spacing:8.258400px;}
.ws7cc_c00001{word-spacing:8.265600px;}
.ws149a_c00001{word-spacing:8.267940px;}
.ws765_c00001{word-spacing:8.272800px;}
.ws896_c00001{word-spacing:8.280000px;}
.ws10c2_c00001{word-spacing:8.281116px;}
.ws331_c00001{word-spacing:8.287200px;}
.wsbc7_c00001{word-spacing:8.294292px;}
.wsac4_c00001{word-spacing:8.294400px;}
.ws3a1_c00001{word-spacing:8.301600px;}
.wsacb_c00001{word-spacing:8.307468px;}
.ws9f5_c00001{word-spacing:8.308800px;}
.ws12da_c00001{word-spacing:8.314056px;}
.ws509_c00001{word-spacing:8.316000px;}
.wsacc_c00001{word-spacing:8.320644px;}
.ws1277_c00001{word-spacing:8.327232px;}
.ws733_c00001{word-spacing:8.330400px;}
.wsb4d_c00001{word-spacing:8.333820px;}
.ws1276_c00001{word-spacing:8.340408px;}
.wsb5b_c00001{word-spacing:8.344800px;}
.wsad8_c00001{word-spacing:8.346996px;}
.wsf29_c00001{word-spacing:8.352000px;}
.ws1318_c00001{word-spacing:8.353584px;}
.ws947_c00001{word-spacing:8.359200px;}
.wsd4c_c00001{word-spacing:8.373600px;}
.ws607_c00001{word-spacing:8.388000px;}
.ws77c_c00001{word-spacing:8.409600px;}
.wsdc2_c00001{word-spacing:8.416800px;}
.ws45f_c00001{word-spacing:8.431200px;}
.wsde1_c00001{word-spacing:8.445600px;}
.wsb1_c00001{word-spacing:8.452800px;}
.wse45_c00001{word-spacing:8.460000px;}
.wsb46_c00001{word-spacing:8.467200px;}
.ws1f0_c00001{word-spacing:8.474400px;}
.wsd4b_c00001{word-spacing:8.481600px;}
.wsf5_c00001{word-spacing:8.488800px;}
.ws77e_c00001{word-spacing:8.496000px;}
.wsf4_c00001{word-spacing:8.503200px;}
.ws857_c00001{word-spacing:8.517600px;}
.ws6a3_c00001{word-spacing:8.532000px;}
.wsaf_c00001{word-spacing:8.539200px;}
.ws45e_c00001{word-spacing:8.546400px;}
.ws66e_c00001{word-spacing:8.553600px;}
.ws606_c00001{word-spacing:8.560800px;}
.wsc8f_c00001{word-spacing:8.568000px;}
.ws21f_c00001{word-spacing:8.575200px;}
.ws5e3_c00001{word-spacing:8.582400px;}
.ws220_c00001{word-spacing:8.589600px;}
.ws3ea_c00001{word-spacing:8.591148px;}
.ws86c_c00001{word-spacing:8.596800px;}
.ws2a0_c00001{word-spacing:8.604000px;}
.ws555_c00001{word-spacing:8.611200px;}
.ws77d_c00001{word-spacing:8.618400px;}
.ws45c_c00001{word-spacing:8.625600px;}
.ws715_c00001{word-spacing:8.632800px;}
.wsb0_c00001{word-spacing:8.640000px;}
.ws147e_c00001{word-spacing:8.643456px;}
.ws45d_c00001{word-spacing:8.647200px;}
.ws112a_c00001{word-spacing:8.650044px;}
.ws1f1_c00001{word-spacing:8.654400px;}
.ws1349_c00001{word-spacing:8.656632px;}
.wsc19_c00001{word-spacing:8.661600px;}
.ws118a_c00001{word-spacing:8.663220px;}
.wsd8c_c00001{word-spacing:8.668800px;}
.ws100f_c00001{word-spacing:8.669808px;}
.wsbce_c00001{word-spacing:8.682984px;}
.wsb56_c00001{word-spacing:8.689572px;}
.wsace_c00001{word-spacing:8.696160px;}
.wsb3f_c00001{word-spacing:8.702748px;}
.wsbf5_c00001{word-spacing:8.709336px;}
.ws131d_c00001{word-spacing:8.715924px;}
.ws1559_c00001{word-spacing:8.735436px;}
.ws448_c00001{word-spacing:8.769600px;}
.ws9d8_c00001{word-spacing:8.798400px;}
.ws449_c00001{word-spacing:8.805600px;}
.ws98_c00001{word-spacing:8.834400px;}
.wsd06_c00001{word-spacing:8.841600px;}
.ws417_c00001{word-spacing:8.848800px;}
.ws777_c00001{word-spacing:8.856000px;}
.ws41e_c00001{word-spacing:8.863200px;}
.ws5ce_c00001{word-spacing:8.870400px;}
.ws5cf_c00001{word-spacing:8.877600px;}
.ws371_c00001{word-spacing:8.884800px;}
.ws622_c00001{word-spacing:8.892000px;}
.ws447_c00001{word-spacing:8.899200px;}
.ws3f2_c00001{word-spacing:8.906400px;}
.ws4dd_c00001{word-spacing:8.913600px;}
.ws41f_c00001{word-spacing:8.920800px;}
.ws806_c00001{word-spacing:8.928000px;}
.ws650_c00001{word-spacing:8.935200px;}
.wsac1_c00001{word-spacing:8.942400px;}
.ws3f3_c00001{word-spacing:8.949600px;}
.ws41d_c00001{word-spacing:8.956800px;}
.ws1c4_c00001{word-spacing:8.964000px;}
.ws776_c00001{word-spacing:8.971200px;}
.ws9a_c00001{word-spacing:8.978400px;}
.ws161_c00001{word-spacing:8.985600px;}
.wsc03_c00001{word-spacing:8.986032px;}
.ws123b_c00001{word-spacing:8.992620px;}
.ws99_c00001{word-spacing:8.992800px;}
.ws12f6_c00001{word-spacing:8.999208px;}
.ws894_c00001{word-spacing:9.000000px;}
.wsfdf_c00001{word-spacing:9.005796px;}
.ws416_c00001{word-spacing:9.007200px;}
.ws13c7_c00001{word-spacing:9.008640px;}
.ws11af_c00001{word-spacing:9.012384px;}
.ws132a_c00001{word-spacing:9.018972px;}
.wsa1e_c00001{word-spacing:9.021600px;}
.ws105a_c00001{word-spacing:9.025560px;}
.ws11b4_c00001{word-spacing:9.032148px;}
.ws1517_c00001{word-spacing:9.036000px;}
.ws1146_c00001{word-spacing:9.038736px;}
.wsb40_c00001{word-spacing:9.043200px;}
.ws4fd_c00001{word-spacing:9.045324px;}
.ws3f4_c00001{word-spacing:9.050400px;}
.wsbb5_c00001{word-spacing:9.051912px;}
.wsbb3_c00001{word-spacing:9.058500px;}
.ws805_c00001{word-spacing:9.064800px;}
.wsc01_c00001{word-spacing:9.065088px;}
.ws1153_c00001{word-spacing:9.071676px;}
.wsd07_c00001{word-spacing:9.072000px;}
.ws4fe_c00001{word-spacing:9.084852px;}
.ws12a0_c00001{word-spacing:9.098028px;}
.ws102_c00001{word-spacing:9.108000px;}
.ws196_c00001{word-spacing:9.115200px;}
.ws921_c00001{word-spacing:9.151200px;}
.ws855_c00001{word-spacing:9.180000px;}
.ws923_c00001{word-spacing:9.187200px;}
.ws922_c00001{word-spacing:9.194400px;}
.wseee_c00001{word-spacing:9.207360px;}
.ws1227_c00001{word-spacing:9.208800px;}
.ws5c3_c00001{word-spacing:9.216000px;}
.ws966_c00001{word-spacing:9.223200px;}
.ws256_c00001{word-spacing:9.230400px;}
.ws61_c00001{word-spacing:9.237600px;}
.ws7db_c00001{word-spacing:9.252000px;}
.ws4bb_c00001{word-spacing:9.259200px;}
.ws856_c00001{word-spacing:9.266400px;}
.wscc6_c00001{word-spacing:9.273600px;}
.ws7dc_c00001{word-spacing:9.280800px;}
.ws641_c00001{word-spacing:9.288000px;}
.wsa14_c00001{word-spacing:9.295200px;}
.ws89c_c00001{word-spacing:9.309600px;}
.ws60_c00001{word-spacing:9.316800px;}
.ws25_c00001{word-spacing:9.324000px;}
.ws7b_c00001{word-spacing:9.331200px;}
.ws466_c00001{word-spacing:9.338400px;}
.ws13f8_c00001{word-spacing:9.339840px;}
.ws26_c00001{word-spacing:9.345600px;}
.ws2f4_c00001{word-spacing:9.352800px;}
.wsf97_c00001{word-spacing:9.354960px;}
.ws14b_c00001{word-spacing:9.360000px;}
.ws8e3_c00001{word-spacing:9.367200px;}
.ws7b1_c00001{word-spacing:9.368136px;}
.ws103_c00001{word-spacing:9.374400px;}
.ws7b0_c00001{word-spacing:9.374724px;}
.wsfde_c00001{word-spacing:9.381312px;}
.wsdc8_c00001{word-spacing:9.381600px;}
.wsffc_c00001{word-spacing:9.387900px;}
.ws197_c00001{word-spacing:9.388800px;}
.ws1139_c00001{word-spacing:9.394488px;}
.ws14a_c00001{word-spacing:9.396000px;}
.ws11b1_c00001{word-spacing:9.401076px;}
.wsfe0_c00001{word-spacing:9.407664px;}
.ws470_c00001{word-spacing:9.410400px;}
.ws112d_c00001{word-spacing:9.414252px;}
.ws10a5_c00001{word-spacing:9.420840px;}
.ws91f_c00001{word-spacing:9.432000px;}
.ws148d_c00001{word-spacing:9.434016px;}
.ws140c_c00001{word-spacing:9.442080px;}
.wsde2_c00001{word-spacing:9.496800px;}
.wsd26_c00001{word-spacing:9.504000px;}
.wsb89_c00001{word-spacing:9.511200px;}
.ws25a_c00001{word-spacing:9.518400px;}
.ws2aa_c00001{word-spacing:9.525600px;}
.ws121a_c00001{word-spacing:9.532800px;}
.wsb8a_c00001{word-spacing:9.540000px;}
.ws91d_c00001{word-spacing:9.554400px;}
.ws924_c00001{word-spacing:9.561600px;}
.wscc4_c00001{word-spacing:9.576000px;}
.ws920_c00001{word-spacing:9.583200px;}
.ws26e_c00001{word-spacing:9.597600px;}
.ws5d0_c00001{word-spacing:9.604800px;}
.ws614_c00001{word-spacing:9.612000px;}
.ws1219_c00001{word-spacing:9.619200px;}
.ws3b8_c00001{word-spacing:9.626400px;}
.ws1aa_c00001{word-spacing:9.633600px;}
.ws1a9_c00001{word-spacing:9.640800px;}
.wsf0c_c00001{word-spacing:9.648000px;}
.ws695_c00001{word-spacing:9.655200px;}
.wsf44_c00001{word-spacing:9.662400px;}
.ws588_c00001{word-spacing:9.669600px;}
.ws25b_c00001{word-spacing:9.676800px;}
.ws613_c00001{word-spacing:9.684000px;}
.ws5d1_c00001{word-spacing:9.691200px;}
.ws52d_c00001{word-spacing:9.698400px;}
.ws3b7_c00001{word-spacing:9.705600px;}
.ws91e_c00001{word-spacing:9.712800px;}
.ws2a9_c00001{word-spacing:9.720000px;}
.ws1111_c00001{word-spacing:9.723888px;}
.ws26f_c00001{word-spacing:9.727200px;}
.ws111c_c00001{word-spacing:9.730476px;}
.ws36f_c00001{word-spacing:9.734400px;}
.ws1171_c00001{word-spacing:9.737064px;}
.ws895_c00001{word-spacing:9.741600px;}
.ws1073_c00001{word-spacing:9.743652px;}
.ws370_c00001{word-spacing:9.748800px;}
.wsf77_c00001{word-spacing:9.750240px;}
.ws589_c00001{word-spacing:9.756000px;}
.ws10c0_c00001{word-spacing:9.756828px;}
.ws696_c00001{word-spacing:9.763200px;}
.ws10f3_c00001{word-spacing:9.763416px;}
.ws1185_c00001{word-spacing:9.770004px;}
.wsc1_c00001{word-spacing:9.770400px;}
.ws1366_c00001{word-spacing:9.776592px;}
.wsbc0_c00001{word-spacing:9.783180px;}
.ws6fd_c00001{word-spacing:9.784800px;}
.ws1032_c00001{word-spacing:9.789768px;}
.ws1244_c00001{word-spacing:9.796356px;}
.ws1336_c00001{word-spacing:9.809532px;}
.wsc54_c00001{word-spacing:9.835200px;}
.wsc2_c00001{word-spacing:9.842400px;}
.wsd27_c00001{word-spacing:9.849600px;}
.wsa4e_c00001{word-spacing:9.871200px;}
.wsa91_c00001{word-spacing:9.892800px;}
.wsc38_c00001{word-spacing:9.900000px;}
.ws9f3_c00001{word-spacing:9.936000px;}
.wsb0e_c00001{word-spacing:9.943200px;}
.ws48c_c00001{word-spacing:9.950400px;}
.ws5b6_c00001{word-spacing:9.957600px;}
.ws2fc_c00001{word-spacing:9.964800px;}
.ws2bd_c00001{word-spacing:9.986400px;}
.ws48b_c00001{word-spacing:10.000800px;}
.ws1c1_c00001{word-spacing:10.008000px;}
.ws11d0_c00001{word-spacing:10.015200px;}
.ws43c_c00001{word-spacing:10.022400px;}
.ws991_c00001{word-spacing:10.029600px;}
.wsc39_c00001{word-spacing:10.036800px;}
.wsb0f_c00001{word-spacing:10.044000px;}
.ws2bc_c00001{word-spacing:10.051200px;}
.ws911_c00001{word-spacing:10.058400px;}
.ws1bf_c00001{word-spacing:10.065600px;}
.wseed_c00001{word-spacing:10.068480px;}
.ws1c0_c00001{word-spacing:10.072800px;}
.ws10f9_c00001{word-spacing:10.073052px;}
.wsc0_c00001{word-spacing:10.080000px;}
.ws137a_c00001{word-spacing:10.086228px;}
.ws3d3_c00001{word-spacing:10.087200px;}
.ws1232_c00001{word-spacing:10.092816px;}
.ws43b_c00001{word-spacing:10.094400px;}
.ws124a_c00001{word-spacing:10.099404px;}
.ws5b5_c00001{word-spacing:10.101600px;}
.wsf65_c00001{word-spacing:10.105992px;}
.ws623_c00001{word-spacing:10.108800px;}
.ws10bf_c00001{word-spacing:10.112580px;}
.wsa4f_c00001{word-spacing:10.116000px;}
.ws1000_c00001{word-spacing:10.119168px;}
.ws4a1_c00001{word-spacing:10.130400px;}
.wsacd_c00001{word-spacing:10.132344px;}
.ws111d_c00001{word-spacing:10.145520px;}
.wsb9d_c00001{word-spacing:10.152000px;}
.ws1448_c00001{word-spacing:10.158696px;}
.ws1204_c00001{word-spacing:10.165284px;}
.ws838_c00001{word-spacing:10.188000px;}
.wsc1d_c00001{word-spacing:10.195200px;}
.wseef_c00001{word-spacing:10.200960px;}
.wsd16_c00001{word-spacing:10.224000px;}
.wsbaf_c00001{word-spacing:10.231200px;}
.ws79a_c00001{word-spacing:10.238400px;}
.ws307_c00001{word-spacing:10.260000px;}
.ws1393_c00001{word-spacing:10.267200px;}
.ws14ee_c00001{word-spacing:10.274400px;}
.ws965_c00001{word-spacing:10.281600px;}
.wsc58_c00001{word-spacing:10.288800px;}
.ws168_c00001{word-spacing:10.303200px;}
.ws68e_c00001{word-spacing:10.310400px;}
.ws43a_c00001{word-spacing:10.324800px;}
.ws1d4_c00001{word-spacing:10.332000px;}
.ws8f0_c00001{word-spacing:10.339200px;}
.ws439_c00001{word-spacing:10.346400px;}
.ws255_c00001{word-spacing:10.353600px;}
.ws1d3_c00001{word-spacing:10.360800px;}
.ws525_c00001{word-spacing:10.368000px;}
.ws828_c00001{word-spacing:10.375200px;}
.ws1ed_c00001{word-spacing:10.382400px;}
.ws624_c00001{word-spacing:10.389600px;}
.ws4f5_c00001{word-spacing:10.396800px;}
.ws140f_c00001{word-spacing:10.398240px;}
.ws640_c00001{word-spacing:10.404000px;}
.ws4f7_c00001{word-spacing:10.411200px;}
.ws4f8_c00001{word-spacing:10.418400px;}
.ws627_c00001{word-spacing:10.425600px;}
.ws1003_c00001{word-spacing:10.428804px;}
.ws902_c00001{word-spacing:10.432800px;}
.ws169_c00001{word-spacing:10.440000px;}
.ws1004_c00001{word-spacing:10.441980px;}
.ws306_c00001{word-spacing:10.447200px;}
.ws9a3_c00001{word-spacing:10.454400px;}
.ws1240_c00001{word-spacing:10.455156px;}
.ws9a4_c00001{word-spacing:10.461600px;}
.ws135a_c00001{word-spacing:10.468332px;}
.ws16a_c00001{word-spacing:10.468800px;}
.wsfd4_c00001{word-spacing:10.474920px;}
.ws951_c00001{word-spacing:10.476000px;}
.wsbfc_c00001{word-spacing:10.481508px;}
.wsbfb_c00001{word-spacing:10.488096px;}
.ws7f0_c00001{word-spacing:10.490400px;}
.ws114f_c00001{word-spacing:10.494684px;}
.ws1f7_c00001{word-spacing:10.497600px;}
.ws1023_c00001{word-spacing:10.501272px;}
.wse64_c00001{word-spacing:10.504800px;}
.ws1002_c00001{word-spacing:10.507860px;}
.ws1411_c00001{word-spacing:10.517760px;}
.wsc70_c00001{word-spacing:10.519200px;}
.wse33_c00001{word-spacing:10.540800px;}
.ws1226_c00001{word-spacing:10.576800px;}
.ws538_c00001{word-spacing:10.584000px;}
.ws982_c00001{word-spacing:10.605600px;}
.ws58a_c00001{word-spacing:10.612800px;}
.ws51a_c00001{word-spacing:10.641600px;}
.ws519_c00001{word-spacing:10.648800px;}
.ws216_c00001{word-spacing:10.656000px;}
.ws58b_c00001{word-spacing:10.663200px;}
.wsf04_c00001{word-spacing:10.664640px;}
.ws671_c00001{word-spacing:10.670400px;}
.ws7a7_c00001{word-spacing:10.677600px;}
.ws89b_c00001{word-spacing:10.692000px;}
.ws88c_c00001{word-spacing:10.699200px;}
.ws1f5_c00001{word-spacing:10.706400px;}
.ws9a5_c00001{word-spacing:10.713600px;}
.ws537_c00001{word-spacing:10.720800px;}
.ws5cb_c00001{word-spacing:10.728000px;}
.ws599_c00001{word-spacing:10.735200px;}
.ws514_c00001{word-spacing:10.749600px;}
.ws215_c00001{word-spacing:10.756800px;}
.ws1279_c00001{word-spacing:10.758204px;}
.ws1f6_c00001{word-spacing:10.764000px;}
.ws3f5_c00001{word-spacing:10.771200px;}
.wsb62_c00001{word-spacing:10.777968px;}
.ws217_c00001{word-spacing:10.778400px;}
.ws5ca_c00001{word-spacing:10.785600px;}
.ws12c8_c00001{word-spacing:10.791144px;}
.ws62e_c00001{word-spacing:10.792800px;}
.wsf03_c00001{word-spacing:10.797120px;}
.ws1150_c00001{word-spacing:10.797732px;}
.ws73d_c00001{word-spacing:10.800000px;}
.ws7f8_c00001{word-spacing:10.807200px;}
.ws134b_c00001{word-spacing:10.810908px;}
.wsdff_c00001{word-spacing:10.814400px;}
.ws7ae_c00001{word-spacing:10.817496px;}
.ws9a6_c00001{word-spacing:10.821600px;}
.ws7af_c00001{word-spacing:10.824084px;}
.ws84e_c00001{word-spacing:10.830672px;}
.ws3f6_c00001{word-spacing:10.836000px;}
.ws14a3_c00001{word-spacing:10.837260px;}
.ws111e_c00001{word-spacing:10.843848px;}
.wsf48_c00001{word-spacing:10.850400px;}
.wsbd5_c00001{word-spacing:10.850436px;}
.wsb3d_c00001{word-spacing:10.863612px;}
.wse00_c00001{word-spacing:10.864800px;}
.ws567_c00001{word-spacing:10.870200px;}
.ws608_c00001{word-spacing:10.872000px;}
.wsbb4_c00001{word-spacing:10.876788px;}
.wsa42_c00001{word-spacing:10.879200px;}
.ws1303_c00001{word-spacing:10.883376px;}
.wscac_c00001{word-spacing:10.893600px;}
.ws1302_c00001{word-spacing:10.896552px;}
.ws4dc_c00001{word-spacing:10.900800px;}
.wsed3_c00001{word-spacing:10.944000px;}
.ws20b_c00001{word-spacing:10.958400px;}
.ws73_c00001{word-spacing:10.965600px;}
.wsac0_c00001{word-spacing:10.972800px;}
.ws92e_c00001{word-spacing:10.987200px;}
.ws92f_c00001{word-spacing:10.994400px;}
.wsb1d_c00001{word-spacing:11.001600px;}
.ws153c_c00001{word-spacing:11.008800px;}
.wsb15_c00001{word-spacing:11.016000px;}
.ws1395_c00001{word-spacing:11.023200px;}
.ws1394_c00001{word-spacing:11.030400px;}
.ws4da_c00001{word-spacing:11.037600px;}
.ws1483_c00001{word-spacing:11.044800px;}
.wsafa_c00001{word-spacing:11.052000px;}
.ws4cb_c00001{word-spacing:11.059200px;}
.ws98b_c00001{word-spacing:11.066400px;}
.ws2d6_c00001{word-spacing:11.073600px;}
.ws9fa_c00001{word-spacing:11.080800px;}
.ws7a2_c00001{word-spacing:11.088000px;}
.ws98a_c00001{word-spacing:11.095200px;}
.wsaf7_c00001{word-spacing:11.102400px;}
.ws517_c00001{word-spacing:11.109600px;}
.ws7a1_c00001{word-spacing:11.116800px;}
.ws14c_c00001{word-spacing:11.124000px;}
.ws516_c00001{word-spacing:11.131200px;}
.ws5a5_c00001{word-spacing:11.138400px;}
.ws5a4_c00001{word-spacing:11.145600px;}
.ws572_c00001{word-spacing:11.152800px;}
.ws4db_c00001{word-spacing:11.160000px;}
.wsfd9_c00001{word-spacing:11.160072px;}
.wsf54_c00001{word-spacing:11.167200px;}
.ws109a_c00001{word-spacing:11.173248px;}
.ws499_c00001{word-spacing:11.174400px;}
.ws109b_c00001{word-spacing:11.179836px;}
.ws49a_c00001{word-spacing:11.181600px;}
.wsf79_c00001{word-spacing:11.186424px;}
.ws72_c00001{word-spacing:11.188800px;}
.ws12fb_c00001{word-spacing:11.193012px;}
.wsa5b_c00001{word-spacing:11.196000px;}
.ws1172_c00001{word-spacing:11.199600px;}
.ws74_c00001{word-spacing:11.203200px;}
.ws4ee_c00001{word-spacing:11.206188px;}
.ws854_c00001{word-spacing:11.212776px;}
.ws4ed_c00001{word-spacing:11.219364px;}
.ws4cc_c00001{word-spacing:11.224800px;}
.ws11d3_c00001{word-spacing:11.225952px;}
.wsf9f_c00001{word-spacing:11.232540px;}
.wsb3e_c00001{word-spacing:11.245716px;}
.ws7c5_c00001{word-spacing:11.311200px;}
.ws4c8_c00001{word-spacing:11.318400px;}
.ws912_c00001{word-spacing:11.340000px;}
.ws35d_c00001{word-spacing:11.347200px;}
.ws10cd_c00001{word-spacing:11.354400px;}
.wsc2a_c00001{word-spacing:11.368800px;}
.ws83a_c00001{word-spacing:11.376000px;}
.ws374_c00001{word-spacing:11.383200px;}
.ws35f_c00001{word-spacing:11.386728px;}
.ws35e_c00001{word-spacing:11.390400px;}
.ws13e2_c00001{word-spacing:11.393280px;}
.ws375_c00001{word-spacing:11.397600px;}
.ws4c7_c00001{word-spacing:11.412000px;}
.wsa43_c00001{word-spacing:11.426400px;}
.wsaaa_c00001{word-spacing:11.433600px;}
.ws51c_c00001{word-spacing:11.440800px;}
.wsa38_c00001{word-spacing:11.455200px;}
.wsa21_c00001{word-spacing:11.462400px;}
.ws6ca_c00001{word-spacing:11.469600px;}
.ws6c9_c00001{word-spacing:11.484000px;}
.ws7c6_c00001{word-spacing:11.491200px;}
.ws51b_c00001{word-spacing:11.498400px;}
.ws4c6_c00001{word-spacing:11.505600px;}
.ws87e_c00001{word-spacing:11.512800px;}
.ws870_c00001{word-spacing:11.512980px;}
.ws7ed_c00001{word-spacing:11.520000px;}
.ws1491_c00001{word-spacing:11.522412px;}
.ws424_c00001{word-spacing:11.527200px;}
.ws8ff_c00001{word-spacing:11.534400px;}
.ws850_c00001{word-spacing:11.535588px;}
.ws87d_c00001{word-spacing:11.541600px;}
.ws129e_c00001{word-spacing:11.542176px;}
.ws31c_c00001{word-spacing:11.548764px;}
.wsa39_c00001{word-spacing:11.548800px;}
.ws1365_c00001{word-spacing:11.555352px;}
.wsdc4_c00001{word-spacing:11.556000px;}
.wsad3_c00001{word-spacing:11.561940px;}
.wse05_c00001{word-spacing:11.563200px;}
.wsaab_c00001{word-spacing:11.570400px;}
.ws1368_c00001{word-spacing:11.575116px;}
.wse44_c00001{word-spacing:11.577600px;}
.wsbf9_c00001{word-spacing:11.581704px;}
.ws31d_c00001{word-spacing:11.588292px;}
.ws13fc_c00001{word-spacing:11.593440px;}
.ws423_c00001{word-spacing:11.599200px;}
.wsad4_c00001{word-spacing:11.601468px;}
.wsccf_c00001{word-spacing:11.635200px;}
.ws13b6_c00001{word-spacing:11.658240px;}
.wscce_c00001{word-spacing:11.664000px;}
.wsd28_c00001{word-spacing:11.671200px;}
.wsbe8_c00001{word-spacing:11.678400px;}
.wsd35_c00001{word-spacing:11.692800px;}
.ws8e0_c00001{word-spacing:11.700000px;}
.wsac8_c00001{word-spacing:11.707200px;}
.ws180_c00001{word-spacing:11.721600px;}
.wse46_c00001{word-spacing:11.728800px;}
.wsac7_c00001{word-spacing:11.736000px;}
.wsbe4_c00001{word-spacing:11.743200px;}
.wsc46_c00001{word-spacing:11.750400px;}
.wsadb_c00001{word-spacing:11.764800px;}
.wsbe6_c00001{word-spacing:11.772000px;}
.ws29f_c00001{word-spacing:11.779200px;}
.ws318_c00001{word-spacing:11.786400px;}
.ws269_c00001{word-spacing:11.793600px;}
.ws625_c00001{word-spacing:11.800800px;}
.wsada_c00001{word-spacing:11.808000px;}
.ws7c1_c00001{word-spacing:11.829600px;}
.ws69f_c00001{word-spacing:11.836800px;}
.wsdd_c00001{word-spacing:11.851200px;}
.ws6f9_c00001{word-spacing:11.858400px;}
.wsde_c00001{word-spacing:11.865600px;}
.wse26_c00001{word-spacing:11.872800px;}
.ws12b3_c00001{word-spacing:11.878164px;}
.ws181_c00001{word-spacing:11.887200px;}
.ws119b_c00001{word-spacing:11.891340px;}
.ws6fa_c00001{word-spacing:11.894400px;}
.ws1065_c00001{word-spacing:11.897928px;}
.ws6e3_c00001{word-spacing:11.901600px;}
.ws9bd_c00001{word-spacing:11.904516px;}
.wsce4_c00001{word-spacing:11.908800px;}
.ws1203_c00001{word-spacing:11.911104px;}
.wsfb7_c00001{word-spacing:11.917692px;}
.wsadc_c00001{word-spacing:11.923200px;}
.ws9bc_c00001{word-spacing:11.924280px;}
.wsce5_c00001{word-spacing:11.930400px;}
.ws1144_c00001{word-spacing:11.930868px;}
.ws1059_c00001{word-spacing:11.937456px;}
.ws11f8_c00001{word-spacing:11.944044px;}
.wsb61_c00001{word-spacing:11.950632px;}
.ws12a3_c00001{word-spacing:11.957220px;}
.ws147b_c00001{word-spacing:11.966400px;}
.wsbe5_c00001{word-spacing:12.016800px;}
.ws643_c00001{word-spacing:12.031200px;}
.wsb79_c00001{word-spacing:12.052800px;}
.wsf45_c00001{word-spacing:12.060000px;}
.wscd0_c00001{word-spacing:12.067200px;}
.wsb78_c00001{word-spacing:12.081600px;}
.ws7e3_c00001{word-spacing:12.088800px;}
.ws92c_c00001{word-spacing:12.096000px;}
.wsb5c_c00001{word-spacing:12.110400px;}
.ws92b_c00001{word-spacing:12.117600px;}
.wseeb_c00001{word-spacing:12.121920px;}
.wse5f_c00001{word-spacing:12.132000px;}
.wsabb_c00001{word-spacing:12.139200px;}
.ws30e_c00001{word-spacing:12.146400px;}
.ws642_c00001{word-spacing:12.153600px;}
.ws465_c00001{word-spacing:12.160800px;}
.ws17c_c00001{word-spacing:12.168000px;}
.wsaba_c00001{word-spacing:12.175200px;}
.wsb86_c00001{word-spacing:12.182400px;}
.ws506_c00001{word-spacing:12.189600px;}
.ws7e2_c00001{word-spacing:12.196800px;}
.ws40c_c00001{word-spacing:12.204000px;}
.ws17b_c00001{word-spacing:12.211200px;}
.ws464_c00001{word-spacing:12.218400px;}
.ws209_c00001{word-spacing:12.225600px;}
.ws861_c00001{word-spacing:12.232800px;}
.ws12ce_c00001{word-spacing:12.233916px;}
.wsdc_c00001{word-spacing:12.240000px;}
.wsfea_c00001{word-spacing:12.247092px;}
.ws862_c00001{word-spacing:12.247200px;}
.ws1264_c00001{word-spacing:12.253680px;}
.ws92a_c00001{word-spacing:12.254400px;}
.ws1437_c00001{word-spacing:12.260268px;}
.wsd6f_c00001{word-spacing:12.261600px;}
.wsfe9_c00001{word-spacing:12.266856px;}
.wsa7b_c00001{word-spacing:12.268800px;}
.ws5e8_c00001{word-spacing:12.270492px;}
.ws1362_c00001{word-spacing:12.273444px;}
.wse50_c00001{word-spacing:12.276000px;}
.ws11f5_c00001{word-spacing:12.280032px;}
.ws997_c00001{word-spacing:12.282516px;}
.wsbbf_c00001{word-spacing:12.286620px;}
.ws10b4_c00001{word-spacing:12.293208px;}
.wse60_c00001{word-spacing:12.297600px;}
.wse4f_c00001{word-spacing:12.312000px;}
.wsfbe_c00001{word-spacing:12.312972px;}
.ws1320_c00001{word-spacing:12.319560px;}
.wsdbc_c00001{word-spacing:12.326400px;}
.ws12cf_c00001{word-spacing:12.332736px;}
.ws1463_c00001{word-spacing:12.339324px;}
.ws131f_c00001{word-spacing:12.352500px;}
.wsc8c_c00001{word-spacing:12.384000px;}
.wsda6_c00001{word-spacing:12.398400px;}
.ws14b5_c00001{word-spacing:12.405600px;}
.ws8b1_c00001{word-spacing:12.412800px;}
.ws127a_c00001{word-spacing:12.420000px;}
.wsaff_c00001{word-spacing:12.426804px;}
.ws927_c00001{word-spacing:12.427200px;}
.wsc8d_c00001{word-spacing:12.441600px;}
.wsd48_c00001{word-spacing:12.448800px;}
.ws147a_c00001{word-spacing:12.456000px;}
.ws3cc_c00001{word-spacing:12.463200px;}
.ws3ef_c00001{word-spacing:12.477600px;}
.ws8fc_c00001{word-spacing:12.484800px;}
.ws91b_c00001{word-spacing:12.492000px;}
.wsb94_c00001{word-spacing:12.499200px;}
.ws8b0_c00001{word-spacing:12.506400px;}
.wsaee_c00001{word-spacing:12.513600px;}
.ws1283_c00001{word-spacing:12.520800px;}
.wsf2f_c00001{word-spacing:12.528000px;}
.ws3f0_c00001{word-spacing:12.535200px;}
.ws420_c00001{word-spacing:12.542400px;}
.ws928_c00001{word-spacing:12.549600px;}
.ws3cb_c00001{word-spacing:12.556800px;}
.ws63d_c00001{word-spacing:12.564000px;}
.ws566_c00001{word-spacing:12.569904px;}
.ws9fc_c00001{word-spacing:12.571200px;}
.ws6ee_c00001{word-spacing:12.578400px;}
.wsdb9_c00001{word-spacing:12.585600px;}
.ws6ed_c00001{word-spacing:12.592800px;}
.wsaef_c00001{word-spacing:12.600000px;}
.wsdba_c00001{word-spacing:12.614400px;}
.ws1242_c00001{word-spacing:12.616020px;}
.ws14fc_c00001{word-spacing:12.619188px;}
.wsd49_c00001{word-spacing:12.621600px;}
.ws14c6_c00001{word-spacing:12.622608px;}
.wsbad_c00001{word-spacing:12.628800px;}
.ws565_c00001{word-spacing:12.629196px;}
.wsf9c_c00001{word-spacing:12.635784px;}
.ws6e5_c00001{word-spacing:12.636000px;}
.wsfa2_c00001{word-spacing:12.642372px;}
.wsa8_c00001{word-spacing:12.648960px;}
.ws13f7_c00001{word-spacing:12.651840px;}
.wsa7_c00001{word-spacing:12.655548px;}
.ws8b2_c00001{word-spacing:12.664800px;}
.wsbb9_c00001{word-spacing:12.668724px;}
.wsea0_c00001{word-spacing:12.672000px;}
.ws11b5_c00001{word-spacing:12.675312px;}
.wsba4_c00001{word-spacing:12.679200px;}
.ws9fb_c00001{word-spacing:12.700800px;}
.ws10e1_c00001{word-spacing:12.708252px;}
.ws950_c00001{word-spacing:12.729600px;}
.ws8ad_c00001{word-spacing:12.736800px;}
.ws478_c00001{word-spacing:12.744000px;}
.wsc1b_c00001{word-spacing:12.751200px;}
.ws3d0_c00001{word-spacing:12.758400px;}
.wsd6b_c00001{word-spacing:12.765600px;}
.ws56f_c00001{word-spacing:12.787200px;}
.ws1484_c00001{word-spacing:12.794400px;}
.ws89a_c00001{word-spacing:12.801600px;}
.wsabf_c00001{word-spacing:12.808800px;}
.ws391_c00001{word-spacing:12.816000px;}
.ws8ac_c00001{word-spacing:12.823200px;}
.ws18c_c00001{word-spacing:12.830400px;}
.wsaf0_c00001{word-spacing:12.837600px;}
.wsd9a_c00001{word-spacing:12.844800px;}
.wsf24_c00001{word-spacing:12.850560px;}
.ws9a0_c00001{word-spacing:12.852000px;}
.ws115_c00001{word-spacing:12.859200px;}
.ws90d_c00001{word-spacing:12.866400px;}
.ws479_c00001{word-spacing:12.873600px;}
.ws831_c00001{word-spacing:12.888000px;}
.ws192_c00001{word-spacing:12.895200px;}
.ws72e_c00001{word-spacing:12.902400px;}
.ws50f_c00001{word-spacing:12.909600px;}
.ws95c_c00001{word-spacing:12.916800px;}
.ws72f_c00001{word-spacing:12.924000px;}
.ws4b6_c00001{word-spacing:12.931200px;}
.ws15d_c00001{word-spacing:12.938400px;}
.ws797_c00001{word-spacing:12.938832px;}
.ws15c_c00001{word-spacing:12.945600px;}
.ws796_c00001{word-spacing:12.949848px;}
.ws1b1_c00001{word-spacing:12.952800px;}
.ws114_c00001{word-spacing:12.960000px;}
.ws3d1_c00001{word-spacing:12.967200px;}
.ws130b_c00001{word-spacing:12.971772px;}
.ws8db_c00001{word-spacing:12.974400px;}
.ws133a_c00001{word-spacing:12.978360px;}
.ws18b_c00001{word-spacing:12.981600px;}
.ws13e1_c00001{word-spacing:12.983040px;}
.ws1338_c00001{word-spacing:12.984948px;}
.ws18d_c00001{word-spacing:12.988800px;}
.ws8f2_c00001{word-spacing:12.996000px;}
.ws1525_c00001{word-spacing:12.998124px;}
.ws1096_c00001{word-spacing:13.004712px;}
.ws1548_c00001{word-spacing:13.017888px;}
.ws1267_c00001{word-spacing:13.024476px;}
.ws56e_c00001{word-spacing:13.024800px;}
.ws1408_c00001{word-spacing:13.027680px;}
.ws1379_c00001{word-spacing:13.031064px;}
.ws90f_c00001{word-spacing:13.032000px;}
.ws392_c00001{word-spacing:13.039200px;}
.ws14ec_c00001{word-spacing:13.057416px;}
.ws83e_c00001{word-spacing:13.082400px;}
.ws13dd_c00001{word-spacing:13.115520px;}
.wsa71_c00001{word-spacing:13.118400px;}
.ws1285_c00001{word-spacing:13.132800px;}
.ws1284_c00001{word-spacing:13.154400px;}
.ws431_c00001{word-spacing:13.168800px;}
.wse9_c00001{word-spacing:13.176000px;}
.wsa72_c00001{word-spacing:13.183200px;}
.ws5b0_c00001{word-spacing:13.190400px;}
.ws259_c00001{word-spacing:13.212000px;}
.ws591_c00001{word-spacing:13.219200px;}
.ws459_c00001{word-spacing:13.233600px;}
.wsa94_c00001{word-spacing:13.240800px;}
.ws910_c00001{word-spacing:13.248000px;}
.ws8d9_c00001{word-spacing:13.262400px;}
.ws1416_c00001{word-spacing:13.266720px;}
.ws783_c00001{word-spacing:13.269600px;}
.wsc57_c00001{word-spacing:13.276800px;}
.ws21e_c00001{word-spacing:13.284000px;}
.ws45a_c00001{word-spacing:13.291200px;}
.ws705_c00001{word-spacing:13.298400px;}
.ws706_c00001{word-spacing:13.305600px;}
.ws83d_c00001{word-spacing:13.312800px;}
.ws124b_c00001{word-spacing:13.320936px;}
.wse8_c00001{word-spacing:13.327200px;}
.ws1117_c00001{word-spacing:13.334112px;}
.ws257_c00001{word-spacing:13.334400px;}
.ws135b_c00001{word-spacing:13.340700px;}
.ws672_c00001{word-spacing:13.341600px;}
.ws258_c00001{word-spacing:13.348800px;}
.ws1120_c00001{word-spacing:13.353876px;}
.wse1f_c00001{word-spacing:13.356000px;}
.wsfbd_c00001{word-spacing:13.360464px;}
.ws46f_c00001{word-spacing:13.363200px;}
.ws10f8_c00001{word-spacing:13.367052px;}
.wsfa7_c00001{word-spacing:13.373640px;}
.ws10af_c00001{word-spacing:13.380228px;}
.wsfc1_c00001{word-spacing:13.392000px;}
.ws10ff_c00001{word-spacing:13.393404px;}
.wsfa8_c00001{word-spacing:13.399992px;}
.wsf9a_c00001{word-spacing:13.406580px;}
.ws136f_c00001{word-spacing:13.419756px;}
.ws574_c00001{word-spacing:13.420800px;}
.ws9b9_c00001{word-spacing:13.478400px;}
.ws2ba_c00001{word-spacing:13.514400px;}
.ws49c_c00001{word-spacing:13.528800px;}
.ws80_c00001{word-spacing:13.536000px;}
.ws40f_c00001{word-spacing:13.543200px;}
.wsc89_c00001{word-spacing:13.550400px;}
.ws7ba_c00001{word-spacing:13.557600px;}
.ws7bb_c00001{word-spacing:13.564800px;}
.wsc18_c00001{word-spacing:13.572000px;}
.ws410_c00001{word-spacing:13.579200px;}
.ws743_c00001{word-spacing:13.586400px;}
.ws903_c00001{word-spacing:13.593600px;}
.ws104d_c00001{word-spacing:13.604220px;}
.ws683_c00001{word-spacing:13.608000px;}
.ws573_c00001{word-spacing:13.615200px;}
.ws7f_c00001{word-spacing:13.622400px;}
.ws49b_c00001{word-spacing:13.629600px;}
.ws149_c00001{word-spacing:13.636800px;}
.ws279_c00001{word-spacing:13.644000px;}
.ws1072_c00001{word-spacing:13.650336px;}
.ws156_c00001{word-spacing:13.651200px;}
.ws157_c00001{word-spacing:13.658400px;}
.ws779_c00001{word-spacing:13.665600px;}
.ws778_c00001{word-spacing:13.672800px;}
.ws27a_c00001{word-spacing:13.680000px;}
.ws10d6_c00001{word-spacing:13.683276px;}
.ws384_c00001{word-spacing:13.687200px;}
.ws4a5_c00001{word-spacing:13.689864px;}
.ws915_c00001{word-spacing:13.694400px;}
.ws1071_c00001{word-spacing:13.696452px;}
.ws827_c00001{word-spacing:13.701600px;}
.ws1239_c00001{word-spacing:13.703040px;}
.ws383_c00001{word-spacing:13.708800px;}
.ws4a4_c00001{word-spacing:13.709628px;}
.wsf23_c00001{word-spacing:13.711680px;}
.ws826_c00001{word-spacing:13.716000px;}
.ws102b_c00001{word-spacing:13.716216px;}
.ws105d_c00001{word-spacing:13.722804px;}
.ws7b9_c00001{word-spacing:13.723200px;}
.wsf69_c00001{word-spacing:13.729392px;}
.ws1106_c00001{word-spacing:13.735980px;}
.wsa28_c00001{word-spacing:13.737600px;}
.wsc04_c00001{word-spacing:13.742568px;}
.wsa81_c00001{word-spacing:13.744800px;}
.wsd4e_c00001{word-spacing:13.759200px;}
.wse4b_c00001{word-spacing:13.766400px;}
.ws807_c00001{word-spacing:13.773600px;}
.wsc1f_c00001{word-spacing:13.838400px;}
.ws13cc_c00001{word-spacing:13.844160px;}
.ws68a_c00001{word-spacing:13.845600px;}
.wsca7_c00001{word-spacing:13.867200px;}
.ws8e2_c00001{word-spacing:13.874400px;}
.ws7f2_c00001{word-spacing:13.888800px;}
.ws4b9_c00001{word-spacing:13.896000px;}
.wsb59_c00001{word-spacing:13.903200px;}
.wsbea_c00001{word-spacing:13.910400px;}
.wsc15_c00001{word-spacing:13.917600px;}
.ws932_c00001{word-spacing:13.924800px;}
.ws36e_c00001{word-spacing:13.932000px;}
.ws68b_c00001{word-spacing:13.939200px;}
.ws682_c00001{word-spacing:13.946400px;}
.ws7f1_c00001{word-spacing:13.953600px;}
.ws681_c00001{word-spacing:13.960800px;}
.wsa80_c00001{word-spacing:13.968000px;}
.wsc64_c00001{word-spacing:13.975200px;}
.wsbe9_c00001{word-spacing:13.982400px;}
.ws191_c00001{word-spacing:13.989600px;}
.ws20c_c00001{word-spacing:13.996800px;}
.ws20d_c00001{word-spacing:14.004000px;}
.wsc9d_c00001{word-spacing:14.011200px;}
.ws63e_c00001{word-spacing:14.018400px;}
.wsc14_c00001{word-spacing:14.025600px;}
.ws28c_c00001{word-spacing:14.032440px;}
.ws30d_c00001{word-spacing:14.032800px;}
.ws36d_c00001{word-spacing:14.040000px;}
.ws11df_c00001{word-spacing:14.045616px;}
.ws867_c00001{word-spacing:14.047200px;}
.ws153d_c00001{word-spacing:14.054400px;}
.ws1129_c00001{word-spacing:14.058792px;}
.ws4ba_c00001{word-spacing:14.061600px;}
.ws933_c00001{word-spacing:14.076000px;}
.ws1178_c00001{word-spacing:14.078556px;}
.ws808_c00001{word-spacing:14.083200px;}
.ws108c_c00001{word-spacing:14.085144px;}
.wsc65_c00001{word-spacing:14.090400px;}
.wsa18_c00001{word-spacing:14.091732px;}
.ws996_c00001{word-spacing:14.092128px;}
.wsdb0_c00001{word-spacing:14.097600px;}
.ws28b_c00001{word-spacing:14.098320px;}
.ws847_c00001{word-spacing:14.111496px;}
.wsf84_c00001{word-spacing:14.112000px;}
.ws28d_c00001{word-spacing:14.124672px;}
.wse61_c00001{word-spacing:14.126400px;}
.wsc62_c00001{word-spacing:14.133600px;}
.ws1536_c00001{word-spacing:14.144436px;}
.wsdd8_c00001{word-spacing:14.169600px;}
.wsc5c_c00001{word-spacing:14.176800px;}
.ws154d_c00001{word-spacing:14.205600px;}
.ws13cb_c00001{word-spacing:14.241600px;}
.wsc5b_c00001{word-spacing:14.263200px;}
.wscb6_c00001{word-spacing:14.277600px;}
.ws18a_c00001{word-spacing:14.299200px;}
.wsd8e_c00001{word-spacing:14.306400px;}
.ws242_c00001{word-spacing:14.313600px;}
.ws81b_c00001{word-spacing:14.320800px;}
.ws9bf_c00001{word-spacing:14.328000px;}
.ws30b_c00001{word-spacing:14.335200px;}
.ws200_c00001{word-spacing:14.342400px;}
.wsc75_c00001{word-spacing:14.349600px;}
.ws644_c00001{word-spacing:14.356800px;}
.ws9c0_c00001{word-spacing:14.364000px;}
.ws605_c00001{word-spacing:14.371200px;}
.ws1034_c00001{word-spacing:14.375016px;}
.ws81a_c00001{word-spacing:14.378400px;}
.wsbd9_c00001{word-spacing:14.385600px;}
.ws1241_c00001{word-spacing:14.388192px;}
.ws1ff_c00001{word-spacing:14.392800px;}
.ws645_c00001{word-spacing:14.400000px;}
.wsc76_c00001{word-spacing:14.407200px;}
.ws89e_c00001{word-spacing:14.414400px;}
.ws103e_c00001{word-spacing:14.414544px;}
.ws1269_c00001{word-spacing:14.421132px;}
.ws189_c00001{word-spacing:14.428800px;}
.wsd72_c00001{word-spacing:14.436000px;}
.wsf91_c00001{word-spacing:14.440896px;}
.ws1049_c00001{word-spacing:14.447484px;}
.ws30c_c00001{word-spacing:14.450400px;}
.ws4a6_c00001{word-spacing:14.454072px;}
.ws89f_c00001{word-spacing:14.457600px;}
.ws121_c00001{word-spacing:14.460660px;}
.wse5a_c00001{word-spacing:14.464800px;}
.wsd71_c00001{word-spacing:14.472000px;}
.wsc09_c00001{word-spacing:14.480424px;}
.wse65_c00001{word-spacing:14.486400px;}
.wsce2_c00001{word-spacing:14.493600px;}
.ws1482_c00001{word-spacing:14.500800px;}
.ws122_c00001{word-spacing:14.513364px;}
.ws2c1_c00001{word-spacing:14.515200px;}
.ws397_c00001{word-spacing:14.551200px;}
.wsb04_c00001{word-spacing:14.558400px;}
.ws3c1_c00001{word-spacing:14.565600px;}
.ws4b4_c00001{word-spacing:14.580000px;}
.ws946_c00001{word-spacing:14.587200px;}
.ws396_c00001{word-spacing:14.594400px;}
.wse0f_c00001{word-spacing:14.608800px;}
.ws2b4_c00001{word-spacing:14.623200px;}
.ws90e_c00001{word-spacing:14.637600px;}
.ws5d4_c00001{word-spacing:14.644800px;}
.wsa15_c00001{word-spacing:14.652000px;}
.ws859_c00001{word-spacing:14.659200px;}
.wsd3f_c00001{word-spacing:14.666400px;}
.wsdee_c00001{word-spacing:14.673600px;}
.wsba3_c00001{word-spacing:14.680800px;}
.ws858_c00001{word-spacing:14.688000px;}
.wsa1f_c00001{word-spacing:14.695200px;}
.ws4b3_c00001{word-spacing:14.702400px;}
.wsa32_c00001{word-spacing:14.709600px;}
.ws2bb_c00001{word-spacing:14.716800px;}
.ws945_c00001{word-spacing:14.724000px;}
.ws92d_c00001{word-spacing:14.731200px;}
.wsa30_c00001{word-spacing:14.738400px;}
.ws395_c00001{word-spacing:14.745600px;}
.ws14e4_c00001{word-spacing:14.750532px;}
.ws2c0_c00001{word-spacing:14.752800px;}
.ws5d5_c00001{word-spacing:14.767200px;}
.ws846_c00001{word-spacing:14.770296px;}
.wse31_c00001{word-spacing:14.774400px;}
.ws1499_c00001{word-spacing:14.776884px;}
.ws898_c00001{word-spacing:14.781600px;}
.ws12be_c00001{word-spacing:14.783472px;}
.ws2b5_c00001{word-spacing:14.788800px;}
.ws1292_c00001{word-spacing:14.790060px;}
.wsae8_c00001{word-spacing:14.796000px;}
.ws10fd_c00001{word-spacing:14.796648px;}
.ws1372_c00001{word-spacing:14.803236px;}
.ws1371_c00001{word-spacing:14.816412px;}
.ws138f_c00001{word-spacing:14.823000px;}
.ws845_c00001{word-spacing:14.829588px;}
.ws141c_c00001{word-spacing:14.832000px;}
.ws130c_c00001{word-spacing:14.842764px;}
.ws106b_c00001{word-spacing:14.855940px;}
.wsd3e_c00001{word-spacing:14.860800px;}
.wsa20_c00001{word-spacing:14.875200px;}
.wsce8_c00001{word-spacing:14.918400px;}
.wsc40_c00001{word-spacing:14.925600px;}
.ws64e_c00001{word-spacing:14.932800px;}
.ws4e_c00001{word-spacing:14.940000px;}
.ws64f_c00001{word-spacing:14.961600px;}
.ws503_c00001{word-spacing:14.968800px;}
.ws13b7_c00001{word-spacing:14.970240px;}
.ws4f_c00001{word-spacing:14.976000px;}
.ws504_c00001{word-spacing:14.983200px;}
.ws1221_c00001{word-spacing:14.990400px;}
.wsf8a_c00001{word-spacing:14.997600px;}
.ws6f7_c00001{word-spacing:15.004800px;}
.ws2da_c00001{word-spacing:15.012000px;}
.ws6f8_c00001{word-spacing:15.019200px;}
.ws502_c00001{word-spacing:15.026400px;}
.wse68_c00001{word-spacing:15.033600px;}
.ws812_c00001{word-spacing:15.040800px;}
.ws64d_c00001{word-spacing:15.048000px;}
.ws647_c00001{word-spacing:15.055200px;}
.ws1286_c00001{word-spacing:15.069600px;}
.wsac5_c00001{word-spacing:15.076800px;}
.ws62b_c00001{word-spacing:15.084000px;}
.ws1a0_c00001{word-spacing:15.091200px;}
.ws14b8_c00001{word-spacing:15.098400px;}
.ws687_c00001{word-spacing:15.105600px;}
.ws129a_c00001{word-spacing:15.106284px;}
.ws646_c00001{word-spacing:15.112800px;}
.wsbf4_c00001{word-spacing:15.112872px;}
.ws34_c00001{word-spacing:15.120000px;}
.ws1359_c00001{word-spacing:15.126048px;}
.ws33_c00001{word-spacing:15.127200px;}
.ws1108_c00001{word-spacing:15.132636px;}
.wsd98_c00001{word-spacing:15.134400px;}
.ws100b_c00001{word-spacing:15.139224px;}
.ws689_c00001{word-spacing:15.141600px;}
.ws11d8_c00001{word-spacing:15.145812px;}
.wsd99_c00001{word-spacing:15.148800px;}
.ws137d_c00001{word-spacing:15.152400px;}
.ws144f_c00001{word-spacing:15.158988px;}
.ws688_c00001{word-spacing:15.163200px;}
.ws107b_c00001{word-spacing:15.165576px;}
.ws1166_c00001{word-spacing:15.172164px;}
.ws35_c00001{word-spacing:15.177600px;}
.ws10d9_c00001{word-spacing:15.178752px;}
.ws141a_c00001{word-spacing:15.179040px;}
.ws10b5_c00001{word-spacing:15.185340px;}
.wsffb_c00001{word-spacing:15.191928px;}
.ws12c6_c00001{word-spacing:15.198516px;}
.ws494_c00001{word-spacing:15.206400px;}
.ws2db_c00001{word-spacing:15.213600px;}
.wse67_c00001{word-spacing:15.220800px;}
.wsd01_c00001{word-spacing:15.235200px;}
.ws700_c00001{word-spacing:15.271200px;}
.ws7bf_c00001{word-spacing:15.285600px;}
.wsb8c_c00001{word-spacing:15.292800px;}
.ws701_c00001{word-spacing:15.300000px;}
.ws686_c00001{word-spacing:15.307200px;}
.ws7f5_c00001{word-spacing:15.328800px;}
.ws4b2_c00001{word-spacing:15.343200px;}
.ws63f_c00001{word-spacing:15.357600px;}
.ws9d6_c00001{word-spacing:15.364800px;}
.ws9d5_c00001{word-spacing:15.372000px;}
.wsd65_c00001{word-spacing:15.379200px;}
.wsca3_c00001{word-spacing:15.386400px;}
.wsdf3_c00001{word-spacing:15.393600px;}
.ws246_c00001{word-spacing:15.408000px;}
.ws7c0_c00001{word-spacing:15.415200px;}
.ws492_c00001{word-spacing:15.422400px;}
.ws4b1_c00001{word-spacing:15.436800px;}
.ws890_c00001{word-spacing:15.444000px;}
.ws58f_c00001{word-spacing:15.451200px;}
.ws9f6_c00001{word-spacing:15.458400px;}
.ws7f4_c00001{word-spacing:15.465600px;}
.wsb8d_c00001{word-spacing:15.472800px;}
.wsd04_c00001{word-spacing:15.480000px;}
.ws493_c00001{word-spacing:15.487200px;}
.ws131e_c00001{word-spacing:15.488388px;}
.wsdf4_c00001{word-spacing:15.494400px;}
.ws1343_c00001{word-spacing:15.494976px;}
.ws106d_c00001{word-spacing:15.501564px;}
.ws702_c00001{word-spacing:15.501600px;}
.wsdc3_c00001{word-spacing:15.508800px;}
.wsd64_c00001{word-spacing:15.523200px;}
.ws1031_c00001{word-spacing:15.527916px;}
.ws247_c00001{word-spacing:15.530400px;}
.ws1309_c00001{word-spacing:15.534504px;}
.ws11d7_c00001{word-spacing:15.547680px;}
.wscbb_c00001{word-spacing:15.552000px;}
.wsdad_c00001{word-spacing:15.580800px;}
.ws5ad_c00001{word-spacing:15.609600px;}
.ws913_c00001{word-spacing:15.616800px;}
.wse35_c00001{word-spacing:15.624000px;}
.wsd39_c00001{word-spacing:15.638400px;}
.wsdac_c00001{word-spacing:15.645600px;}
.ws56a_c00001{word-spacing:15.652800px;}
.ws12d9_c00001{word-spacing:15.653088px;}
.ws780_c00001{word-spacing:15.660000px;}
.ws914_c00001{word-spacing:15.681600px;}
.ws56b_c00001{word-spacing:15.688800px;}
.wse3c_c00001{word-spacing:15.696000px;}
.ws13dc_c00001{word-spacing:15.698880px;}
.ws8f4_c00001{word-spacing:15.703200px;}
.wse34_c00001{word-spacing:15.710400px;}
.ws82c_c00001{word-spacing:15.717600px;}
.ws8f5_c00001{word-spacing:15.724800px;}
.ws8e8_c00001{word-spacing:15.732000px;}
.ws979_c00001{word-spacing:15.739200px;}
.ws9c_c00001{word-spacing:15.746400px;}
.ws8e9_c00001{word-spacing:15.753600px;}
.ws1520_c00001{word-spacing:15.768000px;}
.wsb92_c00001{word-spacing:15.775200px;}
.ws592_c00001{word-spacing:15.789600px;}
.wsc28_c00001{word-spacing:15.796800px;}
.wsc4_c00001{word-spacing:15.804000px;}
.ws11e1_c00001{word-spacing:15.804612px;}
.ws77f_c00001{word-spacing:15.811200px;}
.ws9b_c00001{word-spacing:15.818400px;}
.ws3de_c00001{word-spacing:15.825600px;}
.ws13db_c00001{word-spacing:15.831360px;}
.ws85a_c00001{word-spacing:15.832800px;}
.ws1565_c00001{word-spacing:15.837552px;}
.ws5d8_c00001{word-spacing:15.840000px;}
.ws11e0_c00001{word-spacing:15.844140px;}
.wsb90_c00001{word-spacing:15.847200px;}
.ws107f_c00001{word-spacing:15.850728px;}
.wsc6_c00001{word-spacing:15.854400px;}
.ws112c_c00001{word-spacing:15.857316px;}
.ws1434_c00001{word-spacing:15.863904px;}
.wsd1c_c00001{word-spacing:15.868800px;}
.wsb26_c00001{word-spacing:15.870492px;}
.ws8bf_c00001{word-spacing:15.876000px;}
.wsb3b_c00001{word-spacing:15.877080px;}
.wse3b_c00001{word-spacing:15.883200px;}
.wsfc4_c00001{word-spacing:15.883668px;}
.ws11c8_c00001{word-spacing:15.890256px;}
.wsb91_c00001{word-spacing:15.890400px;}
.ws13fd_c00001{word-spacing:15.896160px;}
.wsb2e_c00001{word-spacing:15.896844px;}
.ws1435_c00001{word-spacing:15.907752px;}
.ws12d8_c00001{word-spacing:15.910020px;}
.wsb3c_c00001{word-spacing:15.916608px;}
.ws4ab_c00001{word-spacing:15.919200px;}
.ws186_c00001{word-spacing:15.923196px;}
.wsb25_c00001{word-spacing:15.929784px;}
.wsc5_c00001{word-spacing:15.933600px;}
.wsd70_c00001{word-spacing:15.940800px;}
.ws11c7_c00001{word-spacing:15.962724px;}
.wsc6b_c00001{word-spacing:16.020000px;}
.wsb10_c00001{word-spacing:16.027200px;}
.ws9b8_c00001{word-spacing:16.041600px;}
.ws6d0_c00001{word-spacing:16.048800px;}
.ws5a8_c00001{word-spacing:16.084800px;}
.wsa5e_c00001{word-spacing:16.092000px;}
.ws17d_c00001{word-spacing:16.106400px;}
.wsc6c_c00001{word-spacing:16.113600px;}
.wsb38_c00001{word-spacing:16.120800px;}
.ws6e4_c00001{word-spacing:16.128000px;}
.ws1b3_c00001{word-spacing:16.135200px;}
.wsc16_c00001{word-spacing:16.142400px;}
.ws40a_c00001{word-spacing:16.149600px;}
.ws4ac_c00001{word-spacing:16.156800px;}
.ws6cf_c00001{word-spacing:16.164000px;}
.ws9b7_c00001{word-spacing:16.171200px;}
.wsb37_c00001{word-spacing:16.178400px;}
.ws11be_c00001{word-spacing:16.185600px;}
.ws40b_c00001{word-spacing:16.192800px;}
.wsda4_c00001{word-spacing:16.200000px;}
.ws871_c00001{word-spacing:16.202340px;}
.ws149c_c00001{word-spacing:16.213068px;}
.ws12f1_c00001{word-spacing:16.219656px;}
.wsd76_c00001{word-spacing:16.221600px;}
.ws11dd_c00001{word-spacing:16.226244px;}
.wsa5f_c00001{word-spacing:16.228800px;}
.wsf95_c00001{word-spacing:16.232832px;}
.wsda5_c00001{word-spacing:16.236000px;}
.wsfc9_c00001{word-spacing:16.239420px;}
.ws121d_c00001{word-spacing:16.243200px;}
.ws10d8_c00001{word-spacing:16.246008px;}
.ws12c2_c00001{word-spacing:16.252596px;}
.wsc17_c00001{word-spacing:16.257600px;}
.ws103a_c00001{word-spacing:16.259184px;}
.ws1b2_c00001{word-spacing:16.264800px;}
.ws1440_c00001{word-spacing:16.265772px;}
.ws10a7_c00001{word-spacing:16.285536px;}
.wsb6c_c00001{word-spacing:16.292124px;}
.ws5ab_c00001{word-spacing:16.300800px;}
.ws1009_c00001{word-spacing:16.305300px;}
.wsddc_c00001{word-spacing:16.336800px;}
.wse2d_c00001{word-spacing:16.365600px;}
.ws5f1_c00001{word-spacing:16.372800px;}
.wsb19_c00001{word-spacing:16.387200px;}
.ws5ac_c00001{word-spacing:16.401600px;}
.ws1d8_c00001{word-spacing:16.408800px;}
.ws994_c00001{word-spacing:16.423200px;}
.wsf01_c00001{word-spacing:16.427520px;}
.wscf0_c00001{word-spacing:16.437600px;}
.wsa2d_c00001{word-spacing:16.452000px;}
.ws8ba_c00001{word-spacing:16.466400px;}
.wsf5e_c00001{word-spacing:16.473600px;}
.ws1d7_c00001{word-spacing:16.480800px;}
.wsf5d_c00001{word-spacing:16.488000px;}
.ws989_c00001{word-spacing:16.495200px;}
.ws7fa_c00001{word-spacing:16.502400px;}
.ws99d_c00001{word-spacing:16.509600px;}
.ws1fb_c00001{word-spacing:16.516800px;}
.ws59a_c00001{word-spacing:16.524000px;}
.ws99e_c00001{word-spacing:16.531200px;}
.ws5aa_c00001{word-spacing:16.538400px;}
.ws41a_c00001{word-spacing:16.545600px;}
.wsd18_c00001{word-spacing:16.552800px;}
.wsd19_c00001{word-spacing:16.560000px;}
.ws144b_c00001{word-spacing:16.562232px;}
.ws988_c00001{word-spacing:16.567200px;}
.wsd7c_c00001{word-spacing:16.574400px;}
.ws1461_c00001{word-spacing:16.575408px;}
.ws445_c00001{word-spacing:16.581600px;}
.wsaa7_c00001{word-spacing:16.581996px;}
.ws1535_c00001{word-spacing:16.588584px;}
.wsd7d_c00001{word-spacing:16.588800px;}
.ws113a_c00001{word-spacing:16.595172px;}
.ws446_c00001{word-spacing:16.596000px;}
.wsf6d_c00001{word-spacing:16.601760px;}
.wse3e_c00001{word-spacing:16.603200px;}
.ws142b_c00001{word-spacing:16.608348px;}
.ws8b9_c00001{word-spacing:16.610400px;}
.wsf6b_c00001{word-spacing:16.614936px;}
.ws156d_c00001{word-spacing:16.617168px;}
.wsfca_c00001{word-spacing:16.621524px;}
.wsf88_c00001{word-spacing:16.624800px;}
.ws142a_c00001{word-spacing:16.628112px;}
.wse3d_c00001{word-spacing:16.639200px;}
.wse1a_c00001{word-spacing:16.646400px;}
.wsddb_c00001{word-spacing:16.682400px;}
.ws7fe_c00001{word-spacing:16.725600px;}
.ws117_c00001{word-spacing:16.768800px;}
.ws116_c00001{word-spacing:16.776000px;}
.ws9cb_c00001{word-spacing:16.783200px;}
.wsc93_c00001{word-spacing:16.804800px;}
.wsc95_c00001{word-spacing:16.819200px;}
.ws7fd_c00001{word-spacing:16.826400px;}
.ws2a8_c00001{word-spacing:16.833600px;}
.ws52b_c00001{word-spacing:16.848000px;}
.ws523_c00001{word-spacing:16.855200px;}
.wsc94_c00001{word-spacing:16.862400px;}
.ws7ff_c00001{word-spacing:16.869600px;}
.ws52c_c00001{word-spacing:16.876800px;}
.ws9c4_c00001{word-spacing:16.884000px;}
.ws44c_c00001{word-spacing:16.891200px;}
.ws2a7_c00001{word-spacing:16.898400px;}
.wsaa4_c00001{word-spacing:16.905600px;}
.ws444_c00001{word-spacing:16.911396px;}
.ws394_c00001{word-spacing:16.912800px;}
.ws1314_c00001{word-spacing:16.917984px;}
.ws9cc_c00001{word-spacing:16.920000px;}
.ws50c_c00001{word-spacing:16.927200px;}
.ws1375_c00001{word-spacing:16.931160px;}
.ws118_c00001{word-spacing:16.934400px;}
.wsfb9_c00001{word-spacing:16.937748px;}
.ws393_c00001{word-spacing:16.948800px;}
.ws1438_c00001{word-spacing:16.950924px;}
.ws105e_c00001{word-spacing:16.964100px;}
.wsa83_c00001{word-spacing:16.970400px;}
.wsf7b_c00001{word-spacing:16.970688px;}
.wsc05_c00001{word-spacing:16.977276px;}
.wsa6e_c00001{word-spacing:16.977600px;}
.ws103d_c00001{word-spacing:16.983864px;}
.wsd25_c00001{word-spacing:16.984800px;}
.wsbcb_c00001{word-spacing:16.997040px;}
.ws50b_c00001{word-spacing:16.999200px;}
.wsceb_c00001{word-spacing:17.006400px;}
.ws14a0_c00001{word-spacing:17.016804px;}
.wsa92_c00001{word-spacing:17.049600px;}
.ws85c_c00001{word-spacing:17.064000px;}
.ws5a7_c00001{word-spacing:17.114400px;}
.wsa2c_c00001{word-spacing:17.121600px;}
.ws55b_c00001{word-spacing:17.128800px;}
.wsb80_c00001{word-spacing:17.143200px;}
.ws925_c00001{word-spacing:17.150400px;}
.wsf32_c00001{word-spacing:17.156160px;}
.ws6ff_c00001{word-spacing:17.157600px;}
.wsa2b_c00001{word-spacing:17.164800px;}
.ws119_c00001{word-spacing:17.172000px;}
.ws787_c00001{word-spacing:17.179200px;}
.ws5a6_c00001{word-spacing:17.193600px;}
.wsc6a_c00001{word-spacing:17.200800px;}
.ws55a_c00001{word-spacing:17.208000px;}
.ws816_c00001{word-spacing:17.229600px;}
.ws11a_c00001{word-spacing:17.236800px;}
.ws786_c00001{word-spacing:17.251200px;}
.wsd56_c00001{word-spacing:17.258400px;}
.wsb07_c00001{word-spacing:17.265600px;}
.ws50a_c00001{word-spacing:17.272800px;}
.wsc2b_c00001{word-spacing:17.280000px;}
.wsfc7_c00001{word-spacing:17.280324px;}
.ws6fe_c00001{word-spacing:17.287200px;}
.wsf00_c00001{word-spacing:17.288640px;}
.wsb7f_c00001{word-spacing:17.294400px;}
.wsd55_c00001{word-spacing:17.301600px;}
.wsdf0_c00001{word-spacing:17.308800px;}
.ws12f2_c00001{word-spacing:17.313264px;}
.ws12d1_c00001{word-spacing:17.319852px;}
.wsff1_c00001{word-spacing:17.326440px;}
.ws140a_c00001{word-spacing:17.330400px;}
.ws37e_c00001{word-spacing:17.333028px;}
.ws31e_c00001{word-spacing:17.339616px;}
.wsbee_c00001{word-spacing:17.352792px;}
.ws12d2_c00001{word-spacing:17.392320px;}
.wsd38_c00001{word-spacing:17.416800px;}
.wsde9_c00001{word-spacing:17.431200px;}
.ws153a_c00001{word-spacing:17.445600px;}
.wsaeb_c00001{word-spacing:17.452800px;}
.ws1087_c00001{word-spacing:17.474400px;}
.wse2a_c00001{word-spacing:17.496000px;}
.ws121c_c00001{word-spacing:17.503200px;}
.wse77_c00001{word-spacing:17.510400px;}
.wsd92_c00001{word-spacing:17.517600px;}
.ws6fb_c00001{word-spacing:17.524800px;}
.ws148_c00001{word-spacing:17.539200px;}
.ws629_c00001{word-spacing:17.546400px;}
.ws153b_c00001{word-spacing:17.553600px;}
.ws71f_c00001{word-spacing:17.568000px;}
.ws522_c00001{word-spacing:17.575200px;}
.ws142c_c00001{word-spacing:17.582400px;}
.ws4ec_c00001{word-spacing:17.589600px;}
.wsa58_c00001{word-spacing:17.596800px;}
.ws6fc_c00001{word-spacing:17.604000px;}
.wscab_c00001{word-spacing:17.611200px;}
.ws147_c00001{word-spacing:17.618400px;}
.ws1566_c00001{word-spacing:17.622900px;}
.ws71d_c00001{word-spacing:17.625600px;}
.ws4eb_c00001{word-spacing:17.632800px;}
.ws1392_c00001{word-spacing:17.636076px;}
.wsd93_c00001{word-spacing:17.647200px;}
.ws71e_c00001{word-spacing:17.654400px;}
.ws1360_c00001{word-spacing:17.655840px;}
.wsd1d_c00001{word-spacing:17.661600px;}
.wsfe8_c00001{word-spacing:17.662428px;}
.wse78_c00001{word-spacing:17.668800px;}
.ws1275_c00001{word-spacing:17.669016px;}
.ws1197_c00001{word-spacing:17.675604px;}
.ws1086_c00001{word-spacing:17.676000px;}
.wsb0a_c00001{word-spacing:17.683200px;}
.ws10b2_c00001{word-spacing:17.688780px;}
.ws71c_c00001{word-spacing:17.690400px;}
.wsdea_c00001{word-spacing:17.697600px;}
.ws1061_c00001{word-spacing:17.701956px;}
.ws142d_c00001{word-spacing:17.708544px;}
.ws1077_c00001{word-spacing:17.715132px;}
.ws153f_c00001{word-spacing:17.748000px;}
.ws1473_c00001{word-spacing:17.769600px;}
.ws782_c00001{word-spacing:17.812800px;}
.wsc82_c00001{word-spacing:17.827200px;}
.ws1493_c00001{word-spacing:17.863200px;}
.wsb09_c00001{word-spacing:17.870400px;}
.wsf2c_c00001{word-spacing:17.884800px;}
.wsbde_c00001{word-spacing:17.892000px;}
.wsa85_c00001{word-spacing:17.913600px;}
.wsb06_c00001{word-spacing:17.920800px;}
.ws1df_c00001{word-spacing:17.928000px;}
.wsb47_c00001{word-spacing:17.935200px;}
.ws79b_c00001{word-spacing:17.949600px;}
.ws3c2_c00001{word-spacing:17.956800px;}
.ws14f0_c00001{word-spacing:17.964000px;}
.ws2d3_c00001{word-spacing:17.971200px;}
.wsbdd_c00001{word-spacing:17.978400px;}
.ws2d2_c00001{word-spacing:17.985600px;}
.ws128c_c00001{word-spacing:17.991828px;}
.wsc3c_c00001{word-spacing:17.992800px;}
.wsedc_c00001{word-spacing:18.000000px;}
.ws11c4_c00001{word-spacing:18.005004px;}
.ws5b9_c00001{word-spacing:18.007200px;}
.ws1155_c00001{word-spacing:18.011592px;}
.ws3c3_c00001{word-spacing:18.014400px;}
.wsee6_c00001{word-spacing:18.017280px;}
.ws12e1_c00001{word-spacing:18.018180px;}
.ws79c_c00001{word-spacing:18.021600px;}
.ws377_c00001{word-spacing:18.024768px;}
.ws5ba_c00001{word-spacing:18.028800px;}
.ws128b_c00001{word-spacing:18.031356px;}
.ws1488_c00001{word-spacing:18.037944px;}
.ws1154_c00001{word-spacing:18.044532px;}
.ws1184_c00001{word-spacing:18.051120px;}
.ws1066_c00001{word-spacing:18.057708px;}
.ws376_c00001{word-spacing:18.064296px;}
.ws10ec_c00001{word-spacing:18.070884px;}
.ws11c3_c00001{word-spacing:18.077472px;}
.wsb63_c00001{word-spacing:18.097236px;}
.ws11c2_c00001{word-spacing:18.123588px;}
.wsee7_c00001{word-spacing:18.149760px;}
.wse12_c00001{word-spacing:18.151200px;}
.ws649_c00001{word-spacing:18.194400px;}
.wscd4_c00001{word-spacing:18.223200px;}
.ws9bb_c00001{word-spacing:18.230400px;}
.wsc41_c00001{word-spacing:18.237600px;}
.ws42e_c00001{word-spacing:18.252000px;}
.ws382_c00001{word-spacing:18.259200px;}
.ws648_c00001{word-spacing:18.266400px;}
.wsb8e_c00001{word-spacing:18.280800px;}
.ws64a_c00001{word-spacing:18.288000px;}
.ws32e_c00001{word-spacing:18.295200px;}
.ws9ba_c00001{word-spacing:18.302400px;}
.wsa67_c00001{word-spacing:18.309600px;}
.ws42d_c00001{word-spacing:18.316800px;}
.ws381_c00001{word-spacing:18.324000px;}
.wsaa5_c00001{word-spacing:18.331200px;}
.wsbe3_c00001{word-spacing:18.338400px;}
.ws262_c00001{word-spacing:18.345600px;}
.ws151d_c00001{word-spacing:18.352800px;}
.ws12e4_c00001{word-spacing:18.354168px;}
.ws32d_c00001{word-spacing:18.360000px;}
.ws37a_c00001{word-spacing:18.360756px;}
.wscd3_c00001{word-spacing:18.367200px;}
.wsb71_c00001{word-spacing:18.367344px;}
.ws37b_c00001{word-spacing:18.373932px;}
.ws8df_c00001{word-spacing:18.374400px;}
.ws440_c00001{word-spacing:18.380520px;}
.ws10bd_c00001{word-spacing:18.387108px;}
.ws1060_c00001{word-spacing:18.393696px;}
.ws131c_c00001{word-spacing:18.400284px;}
.ws261_c00001{word-spacing:18.403200px;}
.wscb3_c00001{word-spacing:18.417600px;}
.wsbec_c00001{word-spacing:18.420048px;}
.wsf34_c00001{word-spacing:18.432000px;}
.ws14af_c00001{word-spacing:18.446400px;}
.wsbc4_c00001{word-spacing:18.453600px;}
.wsde8_c00001{word-spacing:18.496800px;}
.ws5c8_c00001{word-spacing:18.518400px;}
.ws369_c00001{word-spacing:18.540000px;}
.ws94f_c00001{word-spacing:18.547200px;}
.ws80b_c00001{word-spacing:18.568800px;}
.ws5ae_c00001{word-spacing:18.576000px;}
.ws8c4_c00001{word-spacing:18.590400px;}
.ws151a_c00001{word-spacing:18.597600px;}
.wsc3a_c00001{word-spacing:18.604800px;}
.ws13c1_c00001{word-spacing:18.613440px;}
.ws5c7_c00001{word-spacing:18.619200px;}
.wse6_c00001{word-spacing:18.626400px;}
.ws8c5_c00001{word-spacing:18.633600px;}
.wsde7_c00001{word-spacing:18.648000px;}
.wsc27_c00001{word-spacing:18.655200px;}
.ws52e_c00001{word-spacing:18.662400px;}
.ws57b_c00001{word-spacing:18.669600px;}
.ws354_c00001{word-spacing:18.676800px;}
.ws1eb_c00001{word-spacing:18.684000px;}
.ws8c3_c00001{word-spacing:18.691200px;}
.ws36a_c00001{word-spacing:18.698400px;}
.ws57a_c00001{word-spacing:18.705600px;}
.ws1128_c00001{word-spacing:18.709920px;}
.ws5c9_c00001{word-spacing:18.712800px;}
.ws12e5_c00001{word-spacing:18.716508px;}
.ws355_c00001{word-spacing:18.720000px;}
.ws129f_c00001{word-spacing:18.723096px;}
.wsd0e_c00001{word-spacing:18.727200px;}
.ws1319_c00001{word-spacing:18.729684px;}
.ws865_c00001{word-spacing:18.734400px;}
.ws1469_c00001{word-spacing:18.736272px;}
.wsc30_c00001{word-spacing:18.741600px;}
.ws23a_c00001{word-spacing:18.742860px;}
.wsf2b_c00001{word-spacing:18.745920px;}
.wse7_c00001{word-spacing:18.748800px;}
.wsbd4_c00001{word-spacing:18.749448px;}
.wsa1a_c00001{word-spacing:18.756000px;}
.wsade_c00001{word-spacing:18.756036px;}
.wsbc8_c00001{word-spacing:18.762624px;}
.wsbd0_c00001{word-spacing:18.769212px;}
.wsdae_c00001{word-spacing:18.770400px;}
.ws1389_c00001{word-spacing:18.775800px;}
.ws76b_c00001{word-spacing:18.777600px;}
.wsd12_c00001{word-spacing:18.784800px;}
.ws104b_c00001{word-spacing:18.795564px;}
.ws14a6_c00001{word-spacing:18.802152px;}
.ws125a_c00001{word-spacing:18.828000px;}
.wsbe2_c00001{word-spacing:18.842400px;}
.wsb7e_c00001{word-spacing:18.871200px;}
.wsf2a_c00001{word-spacing:18.878400px;}
.ws93f_c00001{word-spacing:18.907200px;}
.wsb85_c00001{word-spacing:18.914400px;}
.wsac2_c00001{word-spacing:18.921600px;}
.ws96e_c00001{word-spacing:18.928800px;}
.wsd7e_c00001{word-spacing:18.950400px;}
.ws940_c00001{word-spacing:18.964800px;}
.ws208_c00001{word-spacing:18.972000px;}
.ws54e_c00001{word-spacing:18.979200px;}
.ws864_c00001{word-spacing:18.986400px;}
.ws6f2_c00001{word-spacing:18.993600px;}
.ws500_c00001{word-spacing:19.000800px;}
.ws93e_c00001{word-spacing:19.008000px;}
.ws7f9_c00001{word-spacing:19.015200px;}
.ws2fb_c00001{word-spacing:19.022400px;}
.ws207_c00001{word-spacing:19.029600px;}
.wsb7d_c00001{word-spacing:19.036800px;}
.ws85b_c00001{word-spacing:19.044000px;}
.ws501_c00001{word-spacing:19.051200px;}
.ws6f1_c00001{word-spacing:19.058400px;}
.wsd54_c00001{word-spacing:19.065600px;}
.ws2fa_c00001{word-spacing:19.080000px;}
.ws238_c00001{word-spacing:19.085436px;}
.wsa61_c00001{word-spacing:19.087200px;}
.ws1143_c00001{word-spacing:19.092024px;}
.ws2f9_c00001{word-spacing:19.094400px;}
.ws23b_c00001{word-spacing:19.098612px;}
.wsaf8_c00001{word-spacing:19.101600px;}
.ws1212_c00001{word-spacing:19.105200px;}
.ws892_c00001{word-spacing:19.108800px;}
.ws54d_c00001{word-spacing:19.116000px;}
.wsae5_c00001{word-spacing:19.118376px;}
.wsaf9_c00001{word-spacing:19.123200px;}
.ws143f_c00001{word-spacing:19.124964px;}
.ws1332_c00001{word-spacing:19.131552px;}
.ws784_c00001{word-spacing:19.137600px;}
.ws1142_c00001{word-spacing:19.144728px;}
.wsbe1_c00001{word-spacing:19.144800px;}
.ws239_c00001{word-spacing:19.157904px;}
.wsd53_c00001{word-spacing:19.180800px;}
.ws108f_c00001{word-spacing:19.188000px;}
.ws1333_c00001{word-spacing:19.190844px;}
.ws824_c00001{word-spacing:19.238400px;}
.ws44a_c00001{word-spacing:19.245600px;}
.ws44b_c00001{word-spacing:19.274400px;}
.ws41_c00001{word-spacing:19.281600px;}
.wsb9a_c00001{word-spacing:19.296000px;}
.wse01_c00001{word-spacing:19.310400px;}
.ws8bb_c00001{word-spacing:19.317600px;}
.ws1090_c00001{word-spacing:19.332000px;}
.ws685_c00001{word-spacing:19.339200px;}
.ws9d_c00001{word-spacing:19.346400px;}
.ws1c8_c00001{word-spacing:19.353600px;}
.wsa5a_c00001{word-spacing:19.368000px;}
.ws8d8_c00001{word-spacing:19.375200px;}
.ws5f6_c00001{word-spacing:19.382400px;}
.ws823_c00001{word-spacing:19.389600px;}
.ws684_c00001{word-spacing:19.396800px;}
.wsd67_c00001{word-spacing:19.404000px;}
.ws55d_c00001{word-spacing:19.411200px;}
.ws40_c00001{word-spacing:19.418400px;}
.ws9e_c00001{word-spacing:19.425600px;}
.ws5f5_c00001{word-spacing:19.432800px;}
.ws1127_c00001{word-spacing:19.434600px;}
.ws79d_c00001{word-spacing:19.440000px;}
.ws1c7_c00001{word-spacing:19.447200px;}
.ws42_c00001{word-spacing:19.461600px;}
.wsb70_c00001{word-spacing:19.474128px;}
.ws8d3_c00001{word-spacing:19.476000px;}
.wsf9e_c00001{word-spacing:19.480716px;}
.ws55e_c00001{word-spacing:19.483200px;}
.wsb52_c00001{word-spacing:19.487304px;}
.ws12e0_c00001{word-spacing:19.493892px;}
.wsb51_c00001{word-spacing:19.500480px;}
.wsfb5_c00001{word-spacing:19.507068px;}
.wse1e_c00001{word-spacing:19.540800px;}
.wse8f_c00001{word-spacing:19.576800px;}
.wsde4_c00001{word-spacing:19.620000px;}
.wsd34_c00001{word-spacing:19.627200px;}
.wsea1_c00001{word-spacing:19.627920px;}
.ws26d_c00001{word-spacing:19.641600px;}
.ws7d5_c00001{word-spacing:19.656000px;}
.ws9d7_c00001{word-spacing:19.663200px;}
.ws26c_c00001{word-spacing:19.670400px;}
.ws5b7_c00001{word-spacing:19.677600px;}
.ws726_c00001{word-spacing:19.692000px;}
.ws610_c00001{word-spacing:19.706400px;}
.ws9a2_c00001{word-spacing:19.713600px;}
.ws468_c00001{word-spacing:19.720800px;}
.wse9f_c00001{word-spacing:19.728000px;}
.wsd47_c00001{word-spacing:19.742400px;}
.ws9a1_c00001{word-spacing:19.749600px;}
.ws781_c00001{word-spacing:19.756800px;}
.ws467_c00001{word-spacing:19.764000px;}
.ws1038_c00001{word-spacing:19.770588px;}
.wscfd_c00001{word-spacing:19.771200px;}
.wsd33_c00001{word-spacing:19.778400px;}
.wsa7f_c00001{word-spacing:19.785600px;}
.wsc87_c00001{word-spacing:19.792800px;}
.ws1113_c00001{word-spacing:19.796940px;}
.wsa7e_c00001{word-spacing:19.800000px;}
.ws8d2_c00001{word-spacing:19.807200px;}
.ws1265_c00001{word-spacing:19.810116px;}
.ws7d3_c00001{word-spacing:19.814400px;}
.ws1294_c00001{word-spacing:19.816704px;}
.wsc88_c00001{word-spacing:19.828800px;}
.ws105b_c00001{word-spacing:19.829880px;}
.ws7d4_c00001{word-spacing:19.836000px;}
.ws1039_c00001{word-spacing:19.836468px;}
.wsfd3_c00001{word-spacing:19.843056px;}
.wsf73_c00001{word-spacing:19.849644px;}
.wsfc5_c00001{word-spacing:19.862820px;}
.wsd94_c00001{word-spacing:19.864800px;}
.ws84a_c00001{word-spacing:19.869408px;}
.ws611_c00001{word-spacing:19.872000px;}
.ws1293_c00001{word-spacing:19.889172px;}
.ws76a_c00001{word-spacing:19.929600px;}
.ws39a_c00001{word-spacing:19.936800px;}
.wse29_c00001{word-spacing:19.972800px;}
.ws7cd_c00001{word-spacing:19.980000px;}
.ws398_c00001{word-spacing:19.987200px;}
.ws13de_c00001{word-spacing:20.004480px;}
.ws769_c00001{word-spacing:20.016000px;}
.ws768_c00001{word-spacing:20.023200px;}
.ws39c_c00001{word-spacing:20.030400px;}
.wsc34_c00001{word-spacing:20.037600px;}
.ws1430_c00001{word-spacing:20.059200px;}
.ws18f_c00001{word-spacing:20.073600px;}
.ws550_c00001{word-spacing:20.080800px;}
.ws8ee_c00001{word-spacing:20.088000px;}
.wse53_c00001{word-spacing:20.095200px;}
.wscea_c00001{word-spacing:20.102400px;}
.ws54f_c00001{word-spacing:20.109600px;}
.wsf58_c00001{word-spacing:20.116800px;}
.ws42c_c00001{word-spacing:20.124000px;}
.ws13b5_c00001{word-spacing:20.136960px;}
.ws39b_c00001{word-spacing:20.138400px;}
.ws63a_c00001{word-spacing:20.145600px;}
.ws3c0_c00001{word-spacing:20.152800px;}
.ws399_c00001{word-spacing:20.160000px;}
.ws130e_c00001{word-spacing:20.165868px;}
.wsce9_c00001{word-spacing:20.167200px;}
.ws8ef_c00001{word-spacing:20.174400px;}
.ws136a_c00001{word-spacing:20.179044px;}
.wscc5_c00001{word-spacing:20.181600px;}
.ws3bf_c00001{word-spacing:20.188800px;}
.ws12ed_c00001{word-spacing:20.198808px;}
.ws14b4_c00001{word-spacing:20.211984px;}
.wsae0_c00001{word-spacing:20.231748px;}
.ws88e_c00001{word-spacing:20.282400px;}
.wsea2_c00001{word-spacing:20.301840px;}
.ws597_c00001{word-spacing:20.318400px;}
.wsdfc_c00001{word-spacing:20.325600px;}
.ws2dd_c00001{word-spacing:20.347200px;}
.ws25f_c00001{word-spacing:20.354400px;}
.wse25_c00001{word-spacing:20.361600px;}
.ws825_c00001{word-spacing:20.368800px;}
.wsc0c_c00001{word-spacing:20.383200px;}
.ws33c_c00001{word-spacing:20.390400px;}
.ws432_c00001{word-spacing:20.397600px;}
.ws7a3_c00001{word-spacing:20.404800px;}
.ws2dc_c00001{word-spacing:20.412000px;}
.ws49e_c00001{word-spacing:20.419200px;}
.wsc86_c00001{word-spacing:20.426400px;}
.ws7a5_c00001{word-spacing:20.433600px;}
.wsca6_c00001{word-spacing:20.440800px;}
.wsb7c_c00001{word-spacing:20.448000px;}
.ws1223_c00001{word-spacing:20.455200px;}
.wsc1c_c00001{word-spacing:20.469600px;}
.ws49f_c00001{word-spacing:20.476800px;}
.ws7a4_c00001{word-spacing:20.484000px;}
.ws58_c00001{word-spacing:20.491200px;}
.ws58e_c00001{word-spacing:20.498400px;}
.ws337_c00001{word-spacing:20.505600px;}
.ws368_c00001{word-spacing:20.512800px;}
.ws123d_c00001{word-spacing:20.528208px;}
.ws260_c00001{word-spacing:20.534400px;}
.ws4a0_c00001{word-spacing:20.541600px;}
.ws149f_c00001{word-spacing:20.547972px;}
.ws336_c00001{word-spacing:20.548800px;}
.ws155b_c00001{word-spacing:20.554560px;}
.ws2de_c00001{word-spacing:20.556000px;}
.ws11b2_c00001{word-spacing:20.561148px;}
.wse8c_c00001{word-spacing:20.563200px;}
.ws150b_c00001{word-spacing:20.567736px;}
.ws1104_c00001{word-spacing:20.574324px;}
.ws102a_c00001{word-spacing:20.594088px;}
.wscf1_c00001{word-spacing:20.599200px;}
.wse8b_c00001{word-spacing:20.606400px;}
.wse74_c00001{word-spacing:20.649600px;}
.ws47b_c00001{word-spacing:20.664000px;}
.ws593_c00001{word-spacing:20.678400px;}
.ws386_c00001{word-spacing:20.685600px;}
.ws39_c00001{word-spacing:20.728800px;}
.ws616_c00001{word-spacing:20.757600px;}
.ws175_c00001{word-spacing:20.764800px;}
.ws174_c00001{word-spacing:20.772000px;}
.ws51f_c00001{word-spacing:20.779200px;}
.ws385_c00001{word-spacing:20.786400px;}
.ws8a5_c00001{word-spacing:20.800800px;}
.ws47a_c00001{word-spacing:20.808000px;}
.ws3a_c00001{word-spacing:20.815200px;}
.wsa1b_c00001{word-spacing:20.822400px;}
.ws2f1_c00001{word-spacing:20.836800px;}
.wsc4b_c00001{word-spacing:20.844000px;}
.ws976_c00001{word-spacing:20.858400px;}
.ws4d6_c00001{word-spacing:20.865600px;}
.wsdbb_c00001{word-spacing:20.872800px;}
.ws4d7_c00001{word-spacing:20.887200px;}
.ws977_c00001{word-spacing:20.894400px;}
.ws1141_c00001{word-spacing:20.897136px;}
.ws173_c00001{word-spacing:20.901600px;}
.ws851_c00001{word-spacing:20.903724px;}
.ws387_c00001{word-spacing:20.908800px;}
.ws1543_c00001{word-spacing:20.910312px;}
.wsf72_c00001{word-spacing:20.916900px;}
.ws1210_c00001{word-spacing:20.923488px;}
.wsacf_c00001{word-spacing:20.930076px;}
.ws10d2_c00001{word-spacing:20.936664px;}
.wsffe_c00001{word-spacing:20.943252px;}
.wse73_c00001{word-spacing:20.944800px;}
.ws13b4_c00001{word-spacing:20.998080px;}
.ws12b5_c00001{word-spacing:21.031200px;}
.wsb4b_c00001{word-spacing:21.081600px;}
.ws6ea_c00001{word-spacing:21.096000px;}
.wsdd7_c00001{word-spacing:21.124800px;}
.ws554_c00001{word-spacing:21.132000px;}
.wsb4c_c00001{word-spacing:21.146400px;}
.ws1a6_c00001{word-spacing:21.153600px;}
.ws732_c00001{word-spacing:21.189600px;}
.ws3db_c00001{word-spacing:21.196800px;}
.ws741_c00001{word-spacing:21.204000px;}
.wsb1e_c00001{word-spacing:21.211200px;}
.ws736_c00001{word-spacing:21.218400px;}
.ws76c_c00001{word-spacing:21.225600px;}
.ws742_c00001{word-spacing:21.232800px;}
.ws12a8_c00001{word-spacing:21.239712px;}
.ws1a5_c00001{word-spacing:21.240000px;}
.wse5_c00001{word-spacing:21.247200px;}
.ws553_c00001{word-spacing:21.254400px;}
.wsdd6_c00001{word-spacing:21.261600px;}
.wsfc0_c00001{word-spacing:21.266064px;}
.ws134a_c00001{word-spacing:21.272652px;}
.ws187_c00001{word-spacing:21.279240px;}
.wse4_c00001{word-spacing:21.297600px;}
.ws188_c00001{word-spacing:21.299004px;}
.ws1167_c00001{word-spacing:21.305592px;}
.ws152d_c00001{word-spacing:21.319200px;}
.wsd4a_c00001{word-spacing:21.362400px;}
.wsc2d_c00001{word-spacing:21.369600px;}
.ws9ca_c00001{word-spacing:21.412800px;}
.wsf56_c00001{word-spacing:21.420000px;}
.wsfd8_c00001{word-spacing:21.427200px;}
.wscb1_c00001{word-spacing:21.448800px;}
.wsae9_c00001{word-spacing:21.456000px;}
.ws13c8_c00001{word-spacing:21.461760px;}
.ws5f2_c00001{word-spacing:21.477600px;}
.ws7c9_c00001{word-spacing:21.484800px;}
.wsd0d_c00001{word-spacing:21.492000px;}
.wsdeb_c00001{word-spacing:21.499200px;}
.wscb0_c00001{word-spacing:21.513600px;}
.wsc2c_c00001{word-spacing:21.528000px;}
.ws5f3_c00001{word-spacing:21.535200px;}
.ws400_c00001{word-spacing:21.549600px;}
.wsaea_c00001{word-spacing:21.556800px;}
.ws388_c00001{word-spacing:21.564000px;}
.ws7c8_c00001{word-spacing:21.571200px;}
.ws6a5_c00001{word-spacing:21.578400px;}
.wsd0c_c00001{word-spacing:21.585600px;}
.ws6a6_c00001{word-spacing:21.592800px;}
.wscd2_c00001{word-spacing:21.600000px;}
.ws402_c00001{word-spacing:21.607200px;}
.ws302_c00001{word-spacing:21.608640px;}
.ws5f4_c00001{word-spacing:21.614400px;}
.wscaf_c00001{word-spacing:21.621600px;}
.wsbb7_c00001{word-spacing:21.621816px;}
.ws303_c00001{word-spacing:21.634992px;}
.ws12d0_c00001{word-spacing:21.641580px;}
.wscb2_c00001{word-spacing:21.643200px;}
.wsbb6_c00001{word-spacing:21.648168px;}
.ws401_c00001{word-spacing:21.650400px;}
.ws14c7_c00001{word-spacing:21.654756px;}
.wsbf3_c00001{word-spacing:21.661344px;}
.wsda3_c00001{word-spacing:21.672000px;}
.wsf9b_c00001{word-spacing:21.674520px;}
.wscd1_c00001{word-spacing:21.700800px;}
.ws8b6_c00001{word-spacing:21.751200px;}
.wsab2_c00001{word-spacing:21.801600px;}
.ws304_c00001{word-spacing:21.812868px;}
.wsaaf_c00001{word-spacing:21.837600px;}
.ws937_c00001{word-spacing:21.844800px;}
.ws8b7_c00001{word-spacing:21.866400px;}
.wsabc_c00001{word-spacing:21.873600px;}
.wsdb2_c00001{word-spacing:21.888000px;}
.ws4e6_c00001{word-spacing:21.895200px;}
.wscdd_c00001{word-spacing:21.909600px;}
.wsb8f_c00001{word-spacing:21.931200px;}
.wsf4f_c00001{word-spacing:21.938400px;}
.ws350_c00001{word-spacing:21.944628px;}
.ws938_c00001{word-spacing:21.945600px;}
.ws936_c00001{word-spacing:21.952800px;}
.ws117b_c00001{word-spacing:21.957804px;}
.wsab1_c00001{word-spacing:21.960000px;}
.ws144a_c00001{word-spacing:21.964392px;}
.ws119c_c00001{word-spacing:21.970980px;}
.ws4e7_c00001{word-spacing:21.974400px;}
.ws14d0_c00001{word-spacing:21.977568px;}
.wsfee_c00001{word-spacing:21.984156px;}
.wsab0_c00001{word-spacing:21.988800px;}
.ws1300_c00001{word-spacing:21.996000px;}
.ws34f_c00001{word-spacing:22.003920px;}
.wsfd5_c00001{word-spacing:22.010508px;}
.ws1182_c00001{word-spacing:22.017096px;}
.ws1505_c00001{word-spacing:22.023684px;}
.ws1005_c00001{word-spacing:22.030272px;}
.wsddf_c00001{word-spacing:22.032000px;}
.ws10eb_c00001{word-spacing:22.043448px;}
.wsdb1_c00001{word-spacing:22.046400px;}
.ws143e_c00001{word-spacing:22.056624px;}
.wsabe_c00001{word-spacing:22.068000px;}
.ws69d_c00001{word-spacing:22.147200px;}
.wsc7a_c00001{word-spacing:22.176000px;}
.ws1224_c00001{word-spacing:22.183200px;}
.wsba1_c00001{word-spacing:22.197600px;}
.ws429_c00001{word-spacing:22.212000px;}
.ws69c_c00001{word-spacing:22.219200px;}
.wse63_c00001{word-spacing:22.226400px;}
.ws428_c00001{word-spacing:22.233600px;}
.ws77b_c00001{word-spacing:22.240800px;}
.wsc7b_c00001{word-spacing:22.248000px;}
.ws734_c00001{word-spacing:22.255200px;}
.ws632_c00001{word-spacing:22.262400px;}
.wsd23_c00001{word-spacing:22.269600px;}
.ws631_c00001{word-spacing:22.284000px;}
.wsf59_c00001{word-spacing:22.298400px;}
.wsba0_c00001{word-spacing:22.305600px;}
.ws1102_c00001{word-spacing:22.306968px;}
.ws829_c00001{word-spacing:22.312800px;}
.ws69e_c00001{word-spacing:22.320000px;}
.ws13bb_c00001{word-spacing:22.322880px;}
.ws735_c00001{word-spacing:22.327200px;}
.ws300_c00001{word-spacing:22.333320px;}
.wsc47_c00001{word-spacing:22.334400px;}
.ws1255_c00001{word-spacing:22.339908px;}
.ws77a_c00001{word-spacing:22.341600px;}
.wsfcb_c00001{word-spacing:22.346496px;}
.ws42a_c00001{word-spacing:22.348800px;}
.ws301_c00001{word-spacing:22.353084px;}
.wsd22_c00001{word-spacing:22.356000px;}
.ws11fc_c00001{word-spacing:22.359672px;}
.wsd8d_c00001{word-spacing:22.363200px;}
.ws122e_c00001{word-spacing:22.366260px;}
.ws11ae_c00001{word-spacing:22.372848px;}
.ws268_c00001{word-spacing:22.392000px;}
.ws101a_c00001{word-spacing:22.399200px;}
.ws1007_c00001{word-spacing:22.405788px;}
.ws13fe_c00001{word-spacing:22.410000px;}
.ws9d3_c00001{word-spacing:22.442400px;}
.ws14ca_c00001{word-spacing:22.449600px;}
.ws38b_c00001{word-spacing:22.456800px;}
.ws38a_c00001{word-spacing:22.478400px;}
.wsf35_c00001{word-spacing:22.492080px;}
.wsa0d_c00001{word-spacing:22.500000px;}
.ws4f9_c00001{word-spacing:22.514400px;}
.wse81_c00001{word-spacing:22.536000px;}
.ws267_c00001{word-spacing:22.572000px;}
.ws38e_c00001{word-spacing:22.579200px;}
.ws9d2_c00001{word-spacing:22.586400px;}
.ws141d_c00001{word-spacing:22.593600px;}
.ws147d_c00001{word-spacing:22.596372px;}
.ws1a3_c00001{word-spacing:22.600800px;}
.ws819_c00001{word-spacing:22.608000px;}
.ws3dc_c00001{word-spacing:22.615200px;}
.ws3dd_c00001{word-spacing:22.622400px;}
.ws141e_c00001{word-spacing:22.629600px;}
.ws253_c00001{word-spacing:22.636800px;}
.wsfd0_c00001{word-spacing:22.642956px;}
.ws252_c00001{word-spacing:22.651200px;}
.wsd60_c00001{word-spacing:22.658400px;}
.ws3c4_c00001{word-spacing:22.665600px;}
.ws25e_c00001{word-spacing:22.672800px;}
.ws818_c00001{word-spacing:22.680000px;}
.ws8b3_c00001{word-spacing:22.687200px;}
.wsa75_c00001{word-spacing:22.694400px;}
.ws12f7_c00001{word-spacing:22.702248px;}
.wse89_c00001{word-spacing:22.708800px;}
.wsfcf_c00001{word-spacing:22.715424px;}
.wsff0_c00001{word-spacing:22.722012px;}
.wse80_c00001{word-spacing:22.723200px;}
.ws127f_c00001{word-spacing:22.728600px;}
.wse88_c00001{word-spacing:22.730400px;}
.ws154c_c00001{word-spacing:22.735188px;}
.ws1441_c00001{word-spacing:22.741776px;}
.wsf7e_c00001{word-spacing:22.748364px;}
.wsd21_c00001{word-spacing:22.766400px;}
.wsa8a_c00001{word-spacing:22.809600px;}
.ws1519_c00001{word-spacing:22.874400px;}
.ws59c_c00001{word-spacing:22.881600px;}
.wscef_c00001{word-spacing:22.896000px;}
.ws8c6_c00001{word-spacing:22.917600px;}
.ws8c7_c00001{word-spacing:22.932000px;}
.wsb30_c00001{word-spacing:22.953600px;}
.ws346_c00001{word-spacing:22.960800px;}
.ws88d_c00001{word-spacing:22.975200px;}
.ws8de_c00001{word-spacing:22.989600px;}
.ws101d_c00001{word-spacing:22.996800px;}
.ws5c5_c00001{word-spacing:23.004000px;}
.ws101c_c00001{word-spacing:23.011200px;}
.ws8dd_c00001{word-spacing:23.018400px;}
.ws5c4_c00001{word-spacing:23.025600px;}
.ws345_c00001{word-spacing:23.032800px;}
.wscd5_c00001{word-spacing:23.040000px;}
.ws44f_c00001{word-spacing:23.047200px;}
.ws4d2_c00001{word-spacing:23.054400px;}
.ws44e_c00001{word-spacing:23.061600px;}
.ws103f_c00001{word-spacing:23.071176px;}
.ws120f_c00001{word-spacing:23.077764px;}
.wsf55_c00001{word-spacing:23.083200px;}
.ws4d3_c00001{word-spacing:23.090400px;}
.wsfff_c00001{word-spacing:23.090940px;}
.wsfc8_c00001{word-spacing:23.104116px;}
.wsb8b_c00001{word-spacing:23.104800px;}
.ws59d_c00001{word-spacing:23.112000px;}
.wsbeb_c00001{word-spacing:23.117292px;}
.ws1081_c00001{word-spacing:23.123880px;}
.ws83b_c00001{word-spacing:23.191200px;}
.ws620_c00001{word-spacing:23.198400px;}
.wsab7_c00001{word-spacing:23.212800px;}
.ws83c_c00001{word-spacing:23.234400px;}
.ws11ab_c00001{word-spacing:23.256000px;}
.ws713_c00001{word-spacing:23.263200px;}
.ws815_c00001{word-spacing:23.277600px;}
.ws1479_c00001{word-spacing:23.292000px;}
.ws621_c00001{word-spacing:23.299200px;}
.ws1c6_c00001{word-spacing:23.306400px;}
.ws9f1_c00001{word-spacing:23.313600px;}
.wse56_c00001{word-spacing:23.320800px;}
.ws730_c00001{word-spacing:23.328000px;}
.ws724_c00001{word-spacing:23.335200px;}
.wsa6a_c00001{word-spacing:23.342400px;}
.ws652_c00001{word-spacing:23.349600px;}
.wscc3_c00001{word-spacing:23.356800px;}
.ws38d_c00001{word-spacing:23.364000px;}
.wsa0f_c00001{word-spacing:23.371200px;}
.ws1c5_c00001{word-spacing:23.378400px;}
.ws38c_c00001{word-spacing:23.385600px;}
.ws61f_c00001{word-spacing:23.392800px;}
.ws9f2_c00001{word-spacing:23.400000px;}
.ws1331_c00001{word-spacing:23.400576px;}
.ws11aa_c00001{word-spacing:23.407200px;}
.ws711_c00001{word-spacing:23.414400px;}
.ws712_c00001{word-spacing:23.421600px;}
.ws1478_c00001{word-spacing:23.436000px;}
.ws714_c00001{word-spacing:23.443200px;}
.ws1036_c00001{word-spacing:23.459868px;}
.ws11a3_c00001{word-spacing:23.466456px;}
.ws13a4_c00001{word-spacing:23.472000px;}
.ws11e8_c00001{word-spacing:23.473044px;}
.ws1092_c00001{word-spacing:23.508000px;}
.wscc2_c00001{word-spacing:23.565600px;}
.wsb84_c00001{word-spacing:23.601600px;}
.wsafb_c00001{word-spacing:23.608800px;}
.wsb83_c00001{word-spacing:23.616000px;}
.wsc50_c00001{word-spacing:23.623200px;}
.ws1091_c00001{word-spacing:23.630400px;}
.ws5da_c00001{word-spacing:23.637600px;}
.wsb5d_c00001{word-spacing:23.644800px;}
.ws13fa_c00001{word-spacing:23.647680px;}
.ws278_c00001{word-spacing:23.666400px;}
.wsc4f_c00001{word-spacing:23.680800px;}
.ws277_c00001{word-spacing:23.688000px;}
.ws5db_c00001{word-spacing:23.695200px;}
.wsd2e_c00001{word-spacing:23.709600px;}
.wsc4e_c00001{word-spacing:23.724000px;}
.ws59e_c00001{word-spacing:23.731200px;}
.wscc1_c00001{word-spacing:23.738400px;}
.ws9b6_c00001{word-spacing:23.745600px;}
.ws1095_c00001{word-spacing:23.749740px;}
.ws1db_c00001{word-spacing:23.752800px;}
.ws11f4_c00001{word-spacing:23.756328px;}
.ws872_c00001{word-spacing:23.759424px;}
.ws1dc_c00001{word-spacing:23.760000px;}
.ws120e_c00001{word-spacing:23.762916px;}
.ws4c5_c00001{word-spacing:23.767200px;}
.ws11f3_c00001{word-spacing:23.776092px;}
.ws2d1_c00001{word-spacing:23.781600px;}
.ws740_c00001{word-spacing:23.788800px;}
.ws1466_c00001{word-spacing:23.789268px;}
.wsf76_c00001{word-spacing:23.802444px;}
.ws119a_c00001{word-spacing:23.815620px;}
.wsd2d_c00001{word-spacing:23.817600px;}
.ws118e_c00001{word-spacing:23.822208px;}
.ws378_c00001{word-spacing:23.828796px;}
.ws10f2_c00001{word-spacing:23.835384px;}
.wsd2c_c00001{word-spacing:23.875200px;}
.wsd44_c00001{word-spacing:23.954400px;}
.wsb1c_c00001{word-spacing:23.976000px;}
.wse13_c00001{word-spacing:23.997600px;}
.ws992_c00001{word-spacing:24.004800px;}
.ws4b7_c00001{word-spacing:24.019200px;}
.ws881_c00001{word-spacing:24.033600px;}
.ws985_c00001{word-spacing:24.048000px;}
.wsa19_c00001{word-spacing:24.062400px;}
.ws438_c00001{word-spacing:24.069600px;}
.ws3d6_c00001{word-spacing:24.076800px;}
.ws993_c00001{word-spacing:24.084000px;}
.ws3d5_c00001{word-spacing:24.098400px;}
.ws1070_c00001{word-spacing:24.105492px;}
.wsb1b_c00001{word-spacing:24.120000px;}
.wsd37_c00001{word-spacing:24.127200px;}
.ws4b8_c00001{word-spacing:24.134400px;}
.ws1006_c00001{word-spacing:24.145020px;}
.wsadd_c00001{word-spacing:24.151608px;}
.wsbf6_c00001{word-spacing:24.158196px;}
.wsd36_c00001{word-spacing:24.163200px;}
.ws379_c00001{word-spacing:24.197724px;}
.wsae3_c00001{word-spacing:24.204312px;}
.ws789_c00001{word-spacing:24.300000px;}
.wse37_c00001{word-spacing:24.307200px;}
.wsbd8_c00001{word-spacing:24.328800px;}
.ws983_c00001{word-spacing:24.357600px;}
.ws788_c00001{word-spacing:24.400800px;}
.wsc67_c00001{word-spacing:24.408000px;}
.wsd2_c00001{word-spacing:24.422400px;}
.wsbe7_c00001{word-spacing:24.429600px;}
.wsd3_c00001{word-spacing:24.444000px;}
.ws9ee_c00001{word-spacing:24.451200px;}
.ws7f6_c00001{word-spacing:24.458400px;}
.wsc68_c00001{word-spacing:24.480000px;}
.wsfb6_c00001{word-spacing:24.481008px;}
.ws984_c00001{word-spacing:24.487200px;}
.wsb54_c00001{word-spacing:24.494184px;}
.ws9ef_c00001{word-spacing:24.494400px;}
.wsa90_c00001{word-spacing:24.501600px;}
.ws1327_c00001{word-spacing:24.527124px;}
.ws36c_c00001{word-spacing:24.533712px;}
.ws21a_c00001{word-spacing:24.537600px;}
.wsb53_c00001{word-spacing:24.553476px;}
.ws219_c00001{word-spacing:24.645600px;}
.wse36_c00001{word-spacing:24.660000px;}
.ws690_c00001{word-spacing:24.667200px;}
.ws1570_c00001{word-spacing:24.681600px;}
.ws218_c00001{word-spacing:24.696000px;}
.ws885_c00001{word-spacing:24.710400px;}
.wsd11_c00001{word-spacing:24.717600px;}
.ws6e_c00001{word-spacing:24.724800px;}
.ws156f_c00001{word-spacing:24.732000px;}
.wsaf6_c00001{word-spacing:24.739200px;}
.wsaf5_c00001{word-spacing:24.760800px;}
.ws73b_c00001{word-spacing:24.768000px;}
.ws27d_c00001{word-spacing:24.782400px;}
.ws6d_c00001{word-spacing:24.796800px;}
.ws1225_c00001{word-spacing:24.804000px;}
.ws86a_c00001{word-spacing:24.811200px;}
.ws718_c00001{word-spacing:24.818400px;}
.ws691_c00001{word-spacing:24.825600px;}
.wsb50_c00001{word-spacing:24.830172px;}
.ws73c_c00001{word-spacing:24.832800px;}
.wsb44_c00001{word-spacing:24.836760px;}
.ws68f_c00001{word-spacing:24.840000px;}
.ws1564_c00001{word-spacing:24.847200px;}
.ws86b_c00001{word-spacing:24.854400px;}
.ws27e_c00001{word-spacing:24.861600px;}
.wsb43_c00001{word-spacing:24.863112px;}
.wsd9b_c00001{word-spacing:24.876000px;}
.ws10b7_c00001{word-spacing:24.876288px;}
.ws1497_c00001{word-spacing:24.882876px;}
.ws886_c00001{word-spacing:24.883200px;}
.ws14d5_c00001{word-spacing:24.889464px;}
.ws11a5_c00001{word-spacing:24.896052px;}
.ws5ef_c00001{word-spacing:24.925752px;}
.wsf6c_c00001{word-spacing:24.928992px;}
.ws1480_c00001{word-spacing:24.998400px;}
.wsd89_c00001{word-spacing:25.012800px;}
.ws1481_c00001{word-spacing:25.027200px;}
.wse21_c00001{word-spacing:25.034400px;}
.ws13fb_c00001{word-spacing:25.038720px;}
.ws372_c00001{word-spacing:25.056000px;}
.ws6a0_c00001{word-spacing:25.063200px;}
.wsf50_c00001{word-spacing:25.099200px;}
.wsbc6_c00001{word-spacing:25.113600px;}
.ws1173_c00001{word-spacing:25.142400px;}
.wsbc5_c00001{word-spacing:25.164000px;}
.ws694_c00001{word-spacing:25.171200px;}
.wsdd5_c00001{word-spacing:25.178400px;}
.wsdaf_c00001{word-spacing:25.185600px;}
.wse23_c00001{word-spacing:25.192800px;}
.ws12af_c00001{word-spacing:25.199100px;}
.wsf10_c00001{word-spacing:25.200000px;}
.wsfec_c00001{word-spacing:25.205688px;}
.wsdb8_c00001{word-spacing:25.207200px;}
.ws5ed_c00001{word-spacing:25.208316px;}
.ws12fc_c00001{word-spacing:25.225452px;}
.wse24_c00001{word-spacing:25.228800px;}
.ws373_c00001{word-spacing:25.236000px;}
.wsf94_c00001{word-spacing:25.238628px;}
.wsdb7_c00001{word-spacing:25.243200px;}
.wsb73_c00001{word-spacing:25.251804px;}
.wsad5_c00001{word-spacing:25.258392px;}
.wsd46_c00001{word-spacing:25.264800px;}
.wsb33_c00001{word-spacing:25.271568px;}
.wsf51_c00001{word-spacing:25.286400px;}
.wscbe_c00001{word-spacing:25.308000px;}
.ws710_c00001{word-spacing:25.329600px;}
.wscbd_c00001{word-spacing:25.365600px;}
.wsa11_c00001{word-spacing:25.372800px;}
.ws109c_c00001{word-spacing:25.387200px;}
.wsdd4_c00001{word-spacing:25.401600px;}
.wsa7d_c00001{word-spacing:25.408800px;}
.wsb08_c00001{word-spacing:25.416000px;}
.ws97d_c00001{word-spacing:25.437600px;}
.ws434_c00001{word-spacing:25.459200px;}
.wsa7c_c00001{word-spacing:25.473600px;}
.ws198_c00001{word-spacing:25.480800px;}
.ws508_c00001{word-spacing:25.488000px;}
.ws507_c00001{word-spacing:25.502400px;}
.ws435_c00001{word-spacing:25.516800px;}
.wsaec_c00001{word-spacing:25.524000px;}
.ws433_c00001{word-spacing:25.531200px;}
.wsd9f_c00001{word-spacing:25.538400px;}
.ws70f_c00001{word-spacing:25.545600px;}
.wsa10_c00001{word-spacing:25.552800px;}
.wsdf5_c00001{word-spacing:25.560000px;}
.ws1248_c00001{word-spacing:25.561440px;}
.wsd1e_c00001{word-spacing:25.567200px;}
.ws13da_c00001{word-spacing:25.568640px;}
.ws70e_c00001{word-spacing:25.574400px;}
.ws99c_c00001{word-spacing:25.575048px;}
.wsd1f_c00001{word-spacing:25.596000px;}
.wsf66_c00001{word-spacing:25.600968px;}
.ws115b_c00001{word-spacing:25.627320px;}
.wsfeb_c00001{word-spacing:25.633908px;}
.ws151c_c00001{word-spacing:25.639200px;}
.ws14d4_c00001{word-spacing:25.640496px;}
.ws106c_c00001{word-spacing:25.660260px;}
.wsdec_c00001{word-spacing:25.675200px;}
.ws151b_c00001{word-spacing:25.711200px;}
.wsc35_c00001{word-spacing:25.740000px;}
.wsca5_c00001{word-spacing:25.754400px;}
.ws13d9_c00001{word-spacing:25.767360px;}
.wse47_c00001{word-spacing:25.783200px;}
.ws4b0_c00001{word-spacing:25.790400px;}
.wse2c_c00001{word-spacing:25.804800px;}
.wsca4_c00001{word-spacing:25.812000px;}
.ws7be_c00001{word-spacing:25.819200px;}
.ws430_c00001{word-spacing:25.826400px;}
.wsd1b_c00001{word-spacing:25.833600px;}
.ws1192_c00001{word-spacing:25.840800px;}
.ws8a0_c00001{word-spacing:25.855200px;}
.ws42f_c00001{word-spacing:25.869600px;}
.ws4af_c00001{word-spacing:25.876800px;}
.ws612_c00001{word-spacing:25.891200px;}
.ws6f4_c00001{word-spacing:25.898400px;}
.wsd1a_c00001{word-spacing:25.905600px;}
.wse48_c00001{word-spacing:25.912800px;}
.wse2b_c00001{word-spacing:25.920000px;}
.ws143d_c00001{word-spacing:25.930368px;}
.ws150a_c00001{word-spacing:25.936956px;}
.ws339_c00001{word-spacing:25.969896px;}
.ws14a4_c00001{word-spacing:25.976484px;}
.ws33a_c00001{word-spacing:25.983072px;}
.wsf92_c00001{word-spacing:25.996248px;}
.wsdfd_c00001{word-spacing:26.042400px;}
.ws1477_c00001{word-spacing:26.071200px;}
.ws53a_c00001{word-spacing:26.107200px;}
.wsdfe_c00001{word-spacing:26.136000px;}
.ws53b_c00001{word-spacing:26.157600px;}
.ws11ef_c00001{word-spacing:26.164800px;}
.ws22e_c00001{word-spacing:26.179200px;}
.ws901_c00001{word-spacing:26.200800px;}
.ws5a2_c00001{word-spacing:26.222400px;}
.wsbae_c00001{word-spacing:26.236800px;}
.ws723_c00001{word-spacing:26.251200px;}
.wsff8_c00001{word-spacing:26.253180px;}
.ws22d_c00001{word-spacing:26.265600px;}
.ws211_c00001{word-spacing:26.266356px;}
.ws539_c00001{word-spacing:26.272800px;}
.ws11e9_c00001{word-spacing:26.286120px;}
.ws967_c00001{word-spacing:26.287200px;}
.ws1578_c00001{word-spacing:26.292708px;}
.wsdd9_c00001{word-spacing:26.294400px;}
.ws10f0_c00001{word-spacing:26.299296px;}
.ws1085_c00001{word-spacing:26.305884px;}
.ws900_c00001{word-spacing:26.308800px;}
.wsdda_c00001{word-spacing:26.316000px;}
.wsbbb_c00001{word-spacing:26.319060px;}
.ws32f_c00001{word-spacing:26.325648px;}
.wsbba_c00001{word-spacing:26.332236px;}
.ws11ce_c00001{word-spacing:26.338824px;}
.ws1157_c00001{word-spacing:26.345412px;}
.ws146b_c00001{word-spacing:26.352000px;}
.ws213_c00001{word-spacing:26.358588px;}
.ws212_c00001{word-spacing:26.384940px;}
.ws9ff_c00001{word-spacing:26.416800px;}
.wsc59_c00001{word-spacing:26.424000px;}
.ws1515_c00001{word-spacing:26.431200px;}
.ws1516_c00001{word-spacing:26.460000px;}
.wsc80_c00001{word-spacing:26.467200px;}
.ws9fe_c00001{word-spacing:26.488800px;}
.ws13e6_c00001{word-spacing:26.496000px;}
.ws882_c00001{word-spacing:26.503200px;}
.wsc81_c00001{word-spacing:26.510400px;}
.ws121b_c00001{word-spacing:26.517600px;}
.ws883_c00001{word-spacing:26.524800px;}
.ws887_c00001{word-spacing:26.539200px;}
.ws8d4_c00001{word-spacing:26.560800px;}
.ws888_c00001{word-spacing:26.575200px;}
.ws8d5_c00001{word-spacing:26.582400px;}
.ws10cb_c00001{word-spacing:26.589600px;}
.ws800_c00001{word-spacing:26.604000px;}
.ws62f_c00001{word-spacing:26.611200px;}
.ws13b9_c00001{word-spacing:26.628480px;}
.ws630_c00001{word-spacing:26.632800px;}
.wsed7_c00001{word-spacing:26.640000px;}
.wsd97_c00001{word-spacing:26.647200px;}
.ws802_c00001{word-spacing:26.654400px;}
.ws154f_c00001{word-spacing:26.655048px;}
.ws122f_c00001{word-spacing:26.668224px;}
.wsd96_c00001{word-spacing:26.676000px;}
.ws801_c00001{word-spacing:26.683200px;}
.ws10cc_c00001{word-spacing:26.704800px;}
.wsd95_c00001{word-spacing:26.719200px;}
.ws13b8_c00001{word-spacing:26.760960px;}
.ws4a2_c00001{word-spacing:26.784000px;}
.wsc13_c00001{word-spacing:26.820000px;}
.wsc12_c00001{word-spacing:26.848800px;}
.ws4a3_c00001{word-spacing:26.863200px;}
.ws969_c00001{word-spacing:26.906400px;}
.ws6c8_c00001{word-spacing:26.920800px;}
.wsebb_c00001{word-spacing:26.928000px;}
.wsa3b_c00001{word-spacing:26.949600px;}
.wsc90_c00001{word-spacing:26.956800px;}
.ws14b6_c00001{word-spacing:26.964000px;}
.wsd5a_c00001{word-spacing:26.971200px;}
.ws8fd_c00001{word-spacing:26.978400px;}
.ws968_c00001{word-spacing:26.985600px;}
.wsc0e_c00001{word-spacing:27.000000px;}
.wsc0d_c00001{word-spacing:27.014400px;}
.ws148b_c00001{word-spacing:27.017388px;}
.ws8fe_c00001{word-spacing:27.021600px;}
.ws1550_c00001{word-spacing:27.037152px;}
.wsfd7_c00001{word-spacing:27.083268px;}
.wsb6b_c00001{word-spacing:27.089856px;}
.wsd59_c00001{word-spacing:27.180000px;}
.ws1403_c00001{word-spacing:27.190800px;}
.ws737_c00001{word-spacing:27.216000px;}
.ws469_c00001{word-spacing:27.230400px;}
.ws14b7_c00001{word-spacing:27.259200px;}
.ws2e1_c00001{word-spacing:27.266400px;}
.wsd32_c00001{word-spacing:27.273600px;}
.ws46a_c00001{word-spacing:27.280800px;}
.ws488_c00001{word-spacing:27.295200px;}
.ws46b_c00001{word-spacing:27.309600px;}
.wsc6f_c00001{word-spacing:27.324000px;}
.ws487_c00001{word-spacing:27.331200px;}
.ws84_c00001{word-spacing:27.338400px;}
.ws13d1_c00001{word-spacing:27.357120px;}
.ws141b_c00001{word-spacing:27.360000px;}
.ws11fb_c00001{word-spacing:27.366552px;}
.ws14c8_c00001{word-spacing:27.367200px;}
.ws85_c00001{word-spacing:27.396000px;}
.ws1050_c00001{word-spacing:27.419256px;}
.ws105c_c00001{word-spacing:27.425844px;}
.ws1402_c00001{word-spacing:27.429840px;}
.ws1c9_c00001{word-spacing:27.439200px;}
.wsd0b_c00001{word-spacing:27.446400px;}
.ws14dc_c00001{word-spacing:27.465372px;}
.wsd75_c00001{word-spacing:27.568800px;}
.ws4de_c00001{word-spacing:27.597600px;}
.wsc9a_c00001{word-spacing:27.633600px;}
.wsf30_c00001{word-spacing:27.648000px;}
.wse69_c00001{word-spacing:27.669600px;}
.wsaae_c00001{word-spacing:27.698400px;}
.ws1ca_c00001{word-spacing:27.705600px;}
.wsaad_c00001{word-spacing:27.720000px;}
.wsd74_c00001{word-spacing:27.727200px;}
.ws4e0_c00001{word-spacing:27.734400px;}
.ws1381_c00001{word-spacing:27.735480px;}
.wsc9b_c00001{word-spacing:27.748800px;}
.ws103b_c00001{word-spacing:27.761832px;}
.ws4df_c00001{word-spacing:27.763200px;}
.ws1015_c00001{word-spacing:27.775008px;}
.ws84c_c00001{word-spacing:27.794772px;}
.ws1429_c00001{word-spacing:27.842400px;}
.wsc5f_c00001{word-spacing:27.864000px;}
.wsd73_c00001{word-spacing:27.885600px;}
.ws1509_c00001{word-spacing:27.921600px;}
.wsc60_c00001{word-spacing:27.943200px;}
.wsd51_c00001{word-spacing:27.964800px;}
.ws121e_c00001{word-spacing:27.986400px;}
.wsc44_c00001{word-spacing:28.000800px;}
.wsc5e_c00001{word-spacing:28.008000px;}
.wscbf_c00001{word-spacing:28.015200px;}
.ws4d0_c00001{word-spacing:28.022400px;}
.ws80f_c00001{word-spacing:28.036800px;}
.wsb95_c00001{word-spacing:28.044000px;}
.ws9c8_c00001{word-spacing:28.051200px;}
.wsd6e_c00001{word-spacing:28.058400px;}
.ws9c7_c00001{word-spacing:28.065600px;}
.ws1346_c00001{word-spacing:28.071468px;}
.ws80e_c00001{word-spacing:28.072800px;}
.ws4d1_c00001{word-spacing:28.080000px;}
.ws113d_c00001{word-spacing:28.084644px;}
.ws13e5_c00001{word-spacing:28.085760px;}
.wscc0_c00001{word-spacing:28.101600px;}
.wsd52_c00001{word-spacing:28.108800px;}
.ws113c_c00001{word-spacing:28.110996px;}
.wsb32_c00001{word-spacing:28.124172px;}
.ws9c9_c00001{word-spacing:28.130400px;}
.ws144e_c00001{word-spacing:28.143936px;}
.wse7d_c00001{word-spacing:28.245600px;}
.wsa88_c00001{word-spacing:28.252800px;}
.ws1452_c00001{word-spacing:28.260000px;}
.wsa89_c00001{word-spacing:28.281600px;}
.wsa87_c00001{word-spacing:28.296000px;}
.wsc4a_c00001{word-spacing:28.317600px;}
.wsa86_c00001{word-spacing:28.332000px;}
.ws7fb_c00001{word-spacing:28.353600px;}
.ws13c4_c00001{word-spacing:28.368000px;}
.ws7fc_c00001{word-spacing:28.375200px;}
.ws5d2_c00001{word-spacing:28.382400px;}
.wsc49_c00001{word-spacing:28.389600px;}
.ws1451_c00001{word-spacing:28.396800px;}
.ws251_c00001{word-spacing:28.404000px;}
.wscee_c00001{word-spacing:28.425600px;}
.wsc69_c00001{word-spacing:28.432800px;}
.wsd8b_c00001{word-spacing:28.440000px;}
.wse7c_c00001{word-spacing:28.454400px;}
.ws128a_c00001{word-spacing:28.486512px;}
.ws1289_c00001{word-spacing:28.493100px;}
.wsf78_c00001{word-spacing:28.499688px;}
.wsaa_c00001{word-spacing:28.506276px;}
.wsa9_c00001{word-spacing:28.519452px;}
.ws129d_c00001{word-spacing:28.545804px;}
.wsd8a_c00001{word-spacing:28.598400px;}
.ws916_c00001{word-spacing:28.641600px;}
.wsc2e_c00001{word-spacing:28.656000px;}
.ws860_c00001{word-spacing:28.663200px;}
.wsdca_c00001{word-spacing:28.670400px;}
.ws13c9_c00001{word-spacing:28.681920px;}
.ws1194_c00001{word-spacing:28.699200px;}
.ws1193_c00001{word-spacing:28.735200px;}
.ws6e2_c00001{word-spacing:28.742400px;}
.wse1d_c00001{word-spacing:28.749600px;}
.ws85f_c00001{word-spacing:28.756800px;}
.wsdbf_c00001{word-spacing:28.771200px;}
.wsd4d_c00001{word-spacing:28.778400px;}
.wsa63_c00001{word-spacing:28.792800px;}
.ws58d_c00001{word-spacing:28.800000px;}
.ws1125_c00001{word-spacing:28.802736px;}
.wsdc0_c00001{word-spacing:28.807200px;}
.ws148e_c00001{word-spacing:28.809324px;}
.wsc2f_c00001{word-spacing:28.814400px;}
.ws127b_c00001{word-spacing:28.821600px;}
.ws11cc_c00001{word-spacing:28.822500px;}
.ws58c_c00001{word-spacing:28.836000px;}
.ws11cd_c00001{word-spacing:28.842264px;}
.wsbfe_c00001{word-spacing:28.848852px;}
.ws8f8_c00001{word-spacing:28.862028px;}
.wsdc9_c00001{word-spacing:28.864800px;}
.ws12e2_c00001{word-spacing:28.868616px;}
.ws12e3_c00001{word-spacing:28.875204px;}
.ws11cb_c00001{word-spacing:28.894968px;}
.ws821_c00001{word-spacing:28.972800px;}
.ws512_c00001{word-spacing:28.994400px;}
.ws8ae_c00001{word-spacing:29.023200px;}
.wsba8_c00001{word-spacing:29.037600px;}
.wsaac_c00001{word-spacing:29.073600px;}
.wsba7_c00001{word-spacing:29.088000px;}
.ws6e1_c00001{word-spacing:29.109600px;}
.ws1a1_c00001{word-spacing:29.116800px;}
.ws822_c00001{word-spacing:29.124000px;}
.wsb82_c00001{word-spacing:29.131200px;}
.ws670_c00001{word-spacing:29.138400px;}
.wsb81_c00001{word-spacing:29.152800px;}
.wsf75_c00001{word-spacing:29.165076px;}
.ws511_c00001{word-spacing:29.167200px;}
.ws513_c00001{word-spacing:29.174400px;}
.ws1310_c00001{word-spacing:29.178252px;}
.wscae_c00001{word-spacing:29.181600px;}
.ws1190_c00001{word-spacing:29.184840px;}
.ws873_c00001{word-spacing:29.188260px;}
.ws8d7_c00001{word-spacing:29.196000px;}
.ws113e_c00001{word-spacing:29.198016px;}
.ws8af_c00001{word-spacing:29.210400px;}
.ws43f_c00001{word-spacing:29.217780px;}
.wsb2d_c00001{word-spacing:29.224368px;}
.ws10e2_c00001{word-spacing:29.270484px;}
.ws23_c00001{word-spacing:29.340000px;}
.ws836_c00001{word-spacing:29.376000px;}
.wscd6_c00001{word-spacing:29.383200px;}
.ws949_c00001{word-spacing:29.390400px;}
.wsba6_c00001{word-spacing:29.397600px;}
.ws24_c00001{word-spacing:29.404800px;}
.ws13e7_c00001{word-spacing:29.410560px;}
.wscad_c00001{word-spacing:29.412000px;}
.wsccc_c00001{word-spacing:29.419200px;}
.ws720_c00001{word-spacing:29.426400px;}
.ws14d_c00001{word-spacing:29.433600px;}
.wsd63_c00001{word-spacing:29.440800px;}
.wsbb0_c00001{word-spacing:29.448000px;}
.ws1470_c00001{word-spacing:29.462400px;}
.ws693_c00001{word-spacing:29.469600px;}
.ws692_c00001{word-spacing:29.476800px;}
.ws335_c00001{word-spacing:29.484000px;}
.ws1238_c00001{word-spacing:29.487888px;}
.wse7f_c00001{word-spacing:29.491200px;}
.ws406_c00001{word-spacing:29.498400px;}
.wsccb_c00001{word-spacing:29.505600px;}
.ws14e_c00001{word-spacing:29.512800px;}
.wsa54_c00001{word-spacing:29.520000px;}
.wsa52_c00001{word-spacing:29.527200px;}
.ws104a_c00001{word-spacing:29.527416px;}
.wsccd_c00001{word-spacing:29.534400px;}
.ws137f_c00001{word-spacing:29.540592px;}
.ws837_c00001{word-spacing:29.541600px;}
.ws1237_c00001{word-spacing:29.547180px;}
.wsa53_c00001{word-spacing:29.548800px;}
.ws94a_c00001{word-spacing:29.556000px;}
.ws10be_c00001{word-spacing:29.560356px;}
.ws4a9_c00001{word-spacing:29.563200px;}
.ws4aa_c00001{word-spacing:29.577600px;}
.ws11d9_c00001{word-spacing:29.580120px;}
.ws1236_c00001{word-spacing:29.586708px;}
.ws5e_c00001{word-spacing:29.606400px;}
.ws12f4_c00001{word-spacing:29.613060px;}
.ws96b_c00001{word-spacing:29.707200px;}
.ws2c4_c00001{word-spacing:29.714400px;}
.ws57c_c00001{word-spacing:29.736000px;}
.wsff7_c00001{word-spacing:29.779200px;}
.ws13d7_c00001{word-spacing:29.808000px;}
.wsff6_c00001{word-spacing:29.815200px;}
.ws2c3_c00001{word-spacing:29.829600px;}
.ws96a_c00001{word-spacing:29.836800px;}
.ws1518_c00001{word-spacing:29.844000px;}
.wsb13_c00001{word-spacing:29.851200px;}
.wsd61_c00001{word-spacing:29.858400px;}
.wsd15_c00001{word-spacing:29.865600px;}
.wsd62_c00001{word-spacing:29.872800px;}
.ws5f_c00001{word-spacing:29.880000px;}
.ws10aa_c00001{word-spacing:29.883168px;}
.ws57d_c00001{word-spacing:29.887200px;}
.ws8f9_c00001{word-spacing:29.889756px;}
.ws110b_c00001{word-spacing:29.896344px;}
.ws1357_c00001{word-spacing:29.902932px;}
.wsff3_c00001{word-spacing:29.909520px;}
.ws1024_c00001{word-spacing:29.916108px;}
.ws1436_c00001{word-spacing:29.927736px;}
.wsb14_c00001{word-spacing:29.930400px;}
.wsd14_c00001{word-spacing:29.959200px;}
.wse8a_c00001{word-spacing:29.980800px;}
.wsdd3_c00001{word-spacing:30.074400px;}
.wse15_c00001{word-spacing:30.081600px;}
.ws164_c00001{word-spacing:30.110400px;}
.ws70d_c00001{word-spacing:30.132000px;}
.wse14_c00001{word-spacing:30.139200px;}
.ws6f3_c00001{word-spacing:30.146400px;}
.ws2c7_c00001{word-spacing:30.175200px;}
.ws484_c00001{word-spacing:30.182400px;}
.wsd3c_c00001{word-spacing:30.189600px;}
.ws163_c00001{word-spacing:30.204000px;}
.ws70c_c00001{word-spacing:30.218400px;}
.ws485_c00001{word-spacing:30.225600px;}
.wsdf8_c00001{word-spacing:30.232800px;}
.wsdd2_c00001{word-spacing:30.240000px;}
.ws70b_c00001{word-spacing:30.247200px;}
.wsa1_c00001{word-spacing:30.254400px;}
.ws1492_c00001{word-spacing:30.258684px;}
.ws146f_c00001{word-spacing:30.271860px;}
.wsd3b_c00001{word-spacing:30.297600px;}
.wsfab_c00001{word-spacing:30.298212px;}
.ws14d6_c00001{word-spacing:30.311388px;}
.wsa2_c00001{word-spacing:30.319200px;}
.ws150e_c00001{word-spacing:30.456000px;}
.wse5c_c00001{word-spacing:30.463200px;}
.wsc7f_c00001{word-spacing:30.477600px;}
.ws9f8_c00001{word-spacing:30.492000px;}
.ws121f_c00001{word-spacing:30.542400px;}
.ws9f9_c00001{word-spacing:30.556800px;}
.ws510_c00001{word-spacing:30.578400px;}
.wsa62_c00001{word-spacing:30.600000px;}
.wsc7e_c00001{word-spacing:30.607200px;}
.ws12dc_c00001{word-spacing:30.640788px;}
.wsdc6_c00001{word-spacing:30.643200px;}
.ws1391_c00001{word-spacing:30.647376px;}
.ws12db_c00001{word-spacing:30.653964px;}
.wsb0b_c00001{word-spacing:30.801600px;}
.ws839_c00001{word-spacing:30.808800px;}
.wsce0_c00001{word-spacing:30.844800px;}
.ws1b8_c00001{word-spacing:30.866400px;}
.ws13f1_c00001{word-spacing:30.867840px;}
.wse04_c00001{word-spacing:30.873600px;}
.wsc66_c00001{word-spacing:30.888000px;}
.ws4b5_c00001{word-spacing:30.924000px;}
.ws1311_c00001{word-spacing:30.924072px;}
.wsce1_c00001{word-spacing:30.938400px;}
.ws1b7_c00001{word-spacing:30.952800px;}
.ws14db_c00001{word-spacing:30.957012px;}
.wscdf_c00001{word-spacing:30.960000px;}
.ws127c_c00001{word-spacing:30.963600px;}
.ws132e_c00001{word-spacing:30.970188px;}
.wsb0c_c00001{word-spacing:30.981600px;}
.ws127d_c00001{word-spacing:30.989952px;}
.ws1460_c00001{word-spacing:31.022892px;}
.wsf53_c00001{word-spacing:31.024800px;}
.ws14e3_c00001{word-spacing:31.029480px;}
.ws123a_c00001{word-spacing:31.036068px;}
.ws1103_c00001{word-spacing:31.042656px;}
.ws127e_c00001{word-spacing:31.062420px;}
.wse03_c00001{word-spacing:31.075200px;}
.wsd84_c00001{word-spacing:31.082400px;}
.wsb9e_c00001{word-spacing:31.183200px;}
.ws30a_c00001{word-spacing:31.197600px;}
.ws6ce_c00001{word-spacing:31.212000px;}
.wsa12_c00001{word-spacing:31.226400px;}
.wsd78_c00001{word-spacing:31.240800px;}
.ws13b0_c00001{word-spacing:31.248000px;}
.ws4ff_c00001{word-spacing:31.255200px;}
.wse5e_c00001{word-spacing:31.269600px;}
.wsa13_c00001{word-spacing:31.276800px;}
.wse5d_c00001{word-spacing:31.284000px;}
.wsd83_c00001{word-spacing:31.305600px;}
.ws728_c00001{word-spacing:31.312800px;}
.wsb9f_c00001{word-spacing:31.320000px;}
.ws1462_c00001{word-spacing:31.325940px;}
.ws727_c00001{word-spacing:31.327200px;}
.ws1369_c00001{word-spacing:31.339116px;}
.wsd77_c00001{word-spacing:31.341600px;}
.ws137e_c00001{word-spacing:31.358880px;}
.wsfb4_c00001{word-spacing:31.365468px;}
.wsd85_c00001{word-spacing:31.370400px;}
.ws147f_c00001{word-spacing:31.378644px;}
.wsce6_c00001{word-spacing:31.528800px;}
.ws2ed_c00001{word-spacing:31.572000px;}
.wsd50_c00001{word-spacing:31.579200px;}
.wsc0a_c00001{word-spacing:31.586400px;}
.ws1476_c00001{word-spacing:31.596372px;}
.ws7a8_c00001{word-spacing:31.600800px;}
.ws2ee_c00001{word-spacing:31.629600px;}
.ws12c5_c00001{word-spacing:31.642164px;}
.ws232_c00001{word-spacing:31.655340px;}
.wsee9_c00001{word-spacing:31.662720px;}
.wsc0b_c00001{word-spacing:31.665600px;}
.wsd4f_c00001{word-spacing:31.672800px;}
.ws1549_c00001{word-spacing:31.675104px;}
.wsf21_c00001{word-spacing:31.680000px;}
.ws1278_c00001{word-spacing:31.694868px;}
.wsf9d_c00001{word-spacing:31.701456px;}
.wsce7_c00001{word-spacing:31.701600px;}
.ws231_c00001{word-spacing:31.714632px;}
.ws110d_c00001{word-spacing:31.721220px;}
.wse1c_c00001{word-spacing:31.723200px;}
.ws1577_c00001{word-spacing:31.727808px;}
.wsad6_c00001{word-spacing:31.734396px;}
.ws155a_c00001{word-spacing:31.740984px;}
.ws1251_c00001{word-spacing:31.747572px;}
.ws1274_c00001{word-spacing:31.767336px;}
.wse0b_c00001{word-spacing:31.780800px;}
.ws7bc_c00001{word-spacing:31.903200px;}
.ws7bd_c00001{word-spacing:31.960800px;}
.wsbd7_c00001{word-spacing:31.968000px;}
.wsb9c_c00001{word-spacing:31.989600px;}
.wsb9b_c00001{word-spacing:32.011200px;}
.wscc9_c00001{word-spacing:32.018400px;}
.ws109d_c00001{word-spacing:32.025600px;}
.wscc8_c00001{word-spacing:32.032800px;}
.ws1008_c00001{word-spacing:32.044032px;}
.ws12cd_c00001{word-spacing:32.050620px;}
.ws1136_c00001{word-spacing:32.057208px;}
.wseea_c00001{word-spacing:32.060160px;}
.ws122d_c00001{word-spacing:32.063796px;}
.wse0a_c00001{word-spacing:32.068800px;}
.ws1387_c00001{word-spacing:32.076972px;}
.ws10fb_c00001{word-spacing:32.083560px;}
.wsb64_c00001{word-spacing:32.096736px;}
.ws12cc_c00001{word-spacing:32.103324px;}
.ws144c_c00001{word-spacing:32.123088px;}
.ws11e2_c00001{word-spacing:32.129676px;}
.ws113f_c00001{word-spacing:32.149440px;}
.wsdb3_c00001{word-spacing:32.220000px;}
.wse0c_c00001{word-spacing:32.227200px;}
.wsa5d_c00001{word-spacing:32.270400px;}
.wsda0_c00001{word-spacing:32.299200px;}
.ws483_c00001{word-spacing:32.313600px;}
.wsa5c_c00001{word-spacing:32.349600px;}
.wsd66_c00001{word-spacing:32.364000px;}
.wscb4_c00001{word-spacing:32.371200px;}
.ws6b_c00001{word-spacing:32.378400px;}
.ws3d2_c00001{word-spacing:32.385600px;}
.ws6a_c00001{word-spacing:32.392800px;}
.wsda1_c00001{word-spacing:32.400000px;}
.ws1367_c00001{word-spacing:32.412960px;}
.ws1211_c00001{word-spacing:32.432724px;}
.ws10f1_c00001{word-spacing:32.459076px;}
.ws11d6_c00001{word-spacing:32.465664px;}
.ws11a4_c00001{word-spacing:32.485428px;}
.wsb7b_c00001{word-spacing:32.644800px;}
.wsf22_c00001{word-spacing:32.688000px;}
.wsb7a_c00001{word-spacing:32.738400px;}
.ws12de_c00001{word-spacing:32.762124px;}
.ws1109_c00001{word-spacing:32.768712px;}
.wsb21_c00001{word-spacing:32.774400px;}
.ws12dd_c00001{word-spacing:32.781888px;}
.wsb22_c00001{word-spacing:32.803200px;}
.ws1126_c00001{word-spacing:32.834592px;}
.wsaf3_c00001{word-spacing:32.896800px;}
.wsaf4_c00001{word-spacing:32.961600px;}
.wsab6_c00001{word-spacing:33.004800px;}
.wsdaa_c00001{word-spacing:33.019200px;}
.wsaf2_c00001{word-spacing:33.033600px;}
.ws12df_c00001{word-spacing:33.038820px;}
.ws11ac_c00001{word-spacing:33.084000px;}
.ws863_c00001{word-spacing:33.112800px;}
.wscb9_c00001{word-spacing:33.120000px;}
.ws1013_c00001{word-spacing:33.131052px;}
.wsdab_c00001{word-spacing:33.148800px;}
.ws443_c00001{word-spacing:33.157404px;}
.wsd82_c00001{word-spacing:33.163200px;}
.ws132d_c00001{word-spacing:33.170580px;}
.ws1159_c00001{word-spacing:33.183756px;}
.ws1328_c00001{word-spacing:33.216696px;}
.wse4a_c00001{word-spacing:33.300000px;}
.ws878_c00001{word-spacing:33.354576px;}
.ws54_c00001{word-spacing:33.400800px;}
.ws1a7_c00001{word-spacing:33.429600px;}
.ws8b8_c00001{word-spacing:33.436800px;}
.wse49_c00001{word-spacing:33.458400px;}
.wsdf9_c00001{word-spacing:33.480000px;}
.ws1a8_c00001{word-spacing:33.487200px;}
.ws119d_c00001{word-spacing:33.493392px;}
.wsdfa_c00001{word-spacing:33.501600px;}
.ws135e_c00001{word-spacing:33.506568px;}
.ws55_c00001{word-spacing:33.508800px;}
.ws495_c00001{word-spacing:33.523200px;}
.wsbbe_c00001{word-spacing:33.526332px;}
.ws115c_c00001{word-spacing:33.532920px;}
.wsc3e_c00001{word-spacing:33.602400px;}
.wsb48_c00001{word-spacing:33.652800px;}
.wsc52_c00001{word-spacing:33.688800px;}
.wsb49_c00001{word-spacing:33.717600px;}
.wsc97_c00001{word-spacing:33.746400px;}
.wsc3f_c00001{word-spacing:33.760800px;}
.wsd79_c00001{word-spacing:33.789600px;}
.wsced_c00001{word-spacing:33.796800px;}
.ws29e_c00001{word-spacing:33.804000px;}
.ws118d_c00001{word-spacing:33.829380px;}
.ws29d_c00001{word-spacing:33.832800px;}
.wsc51_c00001{word-spacing:33.840000px;}
.ws149e_c00001{word-spacing:33.849144px;}
.ws534_c00001{word-spacing:33.854400px;}
.ws10e6_c00001{word-spacing:33.855732px;}
.ws1198_c00001{word-spacing:33.868908px;}
.ws12ad_c00001{word-spacing:33.875496px;}
.ws12ae_c00001{word-spacing:33.882084px;}
.wscec_c00001{word-spacing:33.904800px;}
.wse8d_c00001{word-spacing:33.919200px;}
.ws835_c00001{word-spacing:33.976800px;}
.wse30_c00001{word-spacing:34.041600px;}
.wse2e_c00001{word-spacing:34.070400px;}
.wsca0_c00001{word-spacing:34.092000px;}
.ws81c_c00001{word-spacing:34.120800px;}
.ws834_c00001{word-spacing:34.156800px;}
.ws227_c00001{word-spacing:34.171200px;}
.wse2f_c00001{word-spacing:34.178400px;}
.ws228_c00001{word-spacing:34.185600px;}
.wsca1_c00001{word-spacing:34.192800px;}
.ws129c_c00001{word-spacing:34.218072px;}
.ws13bd_c00001{word-spacing:34.246080px;}
.ws130d_c00001{word-spacing:34.257600px;}
.ws14e7_c00001{word-spacing:34.264188px;}
.ws453_c00001{word-spacing:34.286400px;}
.ws1563_c00001{word-spacing:34.293600px;}
.ws1562_c00001{word-spacing:34.351200px;}
.ws452_c00001{word-spacing:34.423200px;}
.wsf83_c00001{word-spacing:34.437600px;}
.wsdd0_c00001{word-spacing:34.509600px;}
.ws352_c00001{word-spacing:34.534296px;}
.wsdd1_c00001{word-spacing:34.545600px;}
.wsf49_c00001{word-spacing:34.560000px;}
.ws353_c00001{word-spacing:34.567236px;}
.ws13bc_c00001{word-spacing:34.577280px;}
.ws117c_c00001{word-spacing:34.580412px;}
.wsf93_c00001{word-spacing:34.587000px;}
.wsf4a_c00001{word-spacing:34.588800px;}
.ws11f1_c00001{word-spacing:34.593588px;}
.ws351_c00001{word-spacing:34.600176px;}
.ws1547_c00001{word-spacing:34.606764px;}
.wsf86_c00001{word-spacing:34.653600px;}
.wscfe_c00001{word-spacing:34.819200px;}
.wscff_c00001{word-spacing:34.840800px;}
.wsed9_c00001{word-spacing:34.848000px;}
.ws2ae_c00001{word-spacing:34.855200px;}
.wsf87_c00001{word-spacing:34.884000px;}
.wsf85_c00001{word-spacing:34.905600px;}
.ws107c_c00001{word-spacing:34.929576px;}
.ws1576_c00001{word-spacing:34.942752px;}
.ws103c_c00001{word-spacing:34.949340px;}
.ws237_c00001{word-spacing:34.955928px;}
.ws1208_c00001{word-spacing:34.962516px;}
.ws10d4_c00001{word-spacing:34.975692px;}
.ws12b2_c00001{word-spacing:34.982280px;}
.ws13d4_c00001{word-spacing:34.992000px;}
.ws14b0_c00001{word-spacing:35.002044px;}
.ws5ee_c00001{word-spacing:35.104068px;}
.wsa6f_c00001{word-spacing:35.193600px;}
.ws63c_c00001{word-spacing:35.208000px;}
.ws868_c00001{word-spacing:35.244000px;}
.ws63b_c00001{word-spacing:35.265600px;}
.ws139f_c00001{word-spacing:35.280000px;}
.wsa70_c00001{word-spacing:35.294400px;}
.ws1554_c00001{word-spacing:35.305092px;}
.ws1439_c00001{word-spacing:35.308476px;}
.ws1254_c00001{word-spacing:35.318268px;}
.ws1288_c00001{word-spacing:35.351208px;}
.ws5b1_c00001{word-spacing:35.366400px;}
.ws1078_c00001{word-spacing:35.370972px;}
.ws5b3_c00001{word-spacing:35.380800px;}
.ws153e_c00001{word-spacing:35.424000px;}
.wsc8e_c00001{word-spacing:35.488800px;}
.ws14c9_c00001{word-spacing:35.524800px;}
.wsf89_c00001{word-spacing:35.532000px;}
.wsc9c_c00001{word-spacing:35.596800px;}
.wsab8_c00001{word-spacing:35.604000px;}
.wsab9_c00001{word-spacing:35.618400px;}
.ws5b2_c00001{word-spacing:35.625600px;}
.ws110a_c00001{word-spacing:35.667432px;}
.wsf8c_c00001{word-spacing:35.733600px;}
.wsaca_c00001{word-spacing:35.798400px;}
.ws13ec_c00001{word-spacing:35.902080px;}
.wsb35_c00001{word-spacing:35.913600px;}
.wsb12_c00001{word-spacing:35.956800px;}
.ws40d_c00001{word-spacing:35.964000px;}
.wsb36_c00001{word-spacing:35.971200px;}
.wsb11_c00001{word-spacing:35.978400px;}
.ws1079_c00001{word-spacing:35.983656px;}
.wsf8b_c00001{word-spacing:35.985600px;}
.wsac9_c00001{word-spacing:36.000000px;}
.ws40e_c00001{word-spacing:36.007200px;}
.wsf7d_c00001{word-spacing:36.016596px;}
.ws1339_c00001{word-spacing:36.023184px;}
.ws107a_c00001{word-spacing:36.029772px;}
.ws11a0_c00001{word-spacing:36.036360px;}
.ws14e9_c00001{word-spacing:36.049536px;}
.ws1330_c00001{word-spacing:36.056124px;}
.ws13d5_c00001{word-spacing:36.144000px;}
.wsdb5_c00001{word-spacing:36.151200px;}
.wsdb6_c00001{word-spacing:36.180000px;}
.wsc73_c00001{word-spacing:36.223200px;}
.wsa35_c00001{word-spacing:36.266400px;}
.wsa37_c00001{word-spacing:36.338400px;}
.wsc71_c00001{word-spacing:36.360000px;}
.wsdb4_c00001{word-spacing:36.367200px;}
.ws1234_c00001{word-spacing:36.372348px;}
.ws1296_c00001{word-spacing:36.405288px;}
.wsc72_c00001{word-spacing:36.410400px;}
.wsa36_c00001{word-spacing:36.525600px;}
.ws1259_c00001{word-spacing:36.547200px;}
.ws1355_c00001{word-spacing:36.612000px;}
.wsc96_c00001{word-spacing:36.626400px;}
.wscdb_c00001{word-spacing:36.640800px;}
.ws88a_c00001{word-spacing:36.655200px;}
.ws1354_c00001{word-spacing:36.669600px;}
.wsd90_c00001{word-spacing:36.691200px;}
.ws13bf_c00001{word-spacing:36.696960px;}
.ws1258_c00001{word-spacing:36.698400px;}
.wsd08_c00001{word-spacing:36.705600px;}
.ws11f6_c00001{word-spacing:36.708336px;}
.ws7c7_c00001{word-spacing:36.712800px;}
.wsd91_c00001{word-spacing:36.720000px;}
.ws889_c00001{word-spacing:36.741600px;}
.wscda_c00001{word-spacing:36.936000px;}
.wsc20_c00001{word-spacing:36.986400px;}
.wsc21_c00001{word-spacing:37.000800px;}
.wsb87_c00001{word-spacing:37.008000px;}
.wsbda_c00001{word-spacing:37.029600px;}
.wsd20_c00001{word-spacing:37.036800px;}
.wsa8d_c00001{word-spacing:37.083852px;}
.wse86_c00001{word-spacing:37.087200px;}
.wsb88_c00001{word-spacing:37.101600px;}
.ws104e_c00001{word-spacing:37.103616px;}
.wsb68_c00001{word-spacing:37.110204px;}
.wse85_c00001{word-spacing:37.123200px;}
.wsb69_c00001{word-spacing:37.123380px;}
.ws1140_c00001{word-spacing:37.129968px;}
.wsda7_c00001{word-spacing:37.152000px;}
.ws4d4_c00001{word-spacing:37.245600px;}
.ws13ea_c00001{word-spacing:37.293120px;}
.ws4d5_c00001{word-spacing:37.303200px;}
.ws11c6_c00001{word-spacing:37.419840px;}
.ws1467_c00001{word-spacing:37.446192px;}
.ws14d1_c00001{word-spacing:37.452780px;}
.ws12ab_c00001{word-spacing:37.459368px;}
.ws12f0_c00001{word-spacing:37.472544px;}
.ws1304_c00001{word-spacing:37.479132px;}
.ws12e8_c00001{word-spacing:37.492308px;}
.ws12ac_c00001{word-spacing:37.505484px;}
.ws11c5_c00001{word-spacing:37.571364px;}
.wsc55_c00001{word-spacing:37.684800px;}
.ws721_c00001{word-spacing:37.728000px;}
.wsd3d_c00001{word-spacing:37.735200px;}
.ws14ef_c00001{word-spacing:37.742400px;}
.wscd9_c00001{word-spacing:37.749600px;}
.wsd8f_c00001{word-spacing:37.764000px;}
.wscd7_c00001{word-spacing:37.771200px;}
.wscd8_c00001{word-spacing:37.792800px;}
.ws9d0_c00001{word-spacing:37.807200px;}
.ws722_c00001{word-spacing:37.828800px;}
.ws12fd_c00001{word-spacing:37.841472px;}
.ws1533_c00001{word-spacing:37.854648px;}
.ws1164_c00001{word-spacing:37.861236px;}
.ws34a_c00001{word-spacing:37.874412px;}
.ws34c_c00001{word-spacing:37.881000px;}
.ws34b_c00001{word-spacing:37.894176px;}
.ws810_c00001{word-spacing:38.008800px;}
.wsc8a_c00001{word-spacing:38.016000px;}
.ws13eb_c00001{word-spacing:38.021760px;}
.ws1540_c00001{word-spacing:38.059200px;}
.ws1054_c00001{word-spacing:38.073600px;}
.ws1056_c00001{word-spacing:38.109600px;}
.ws1055_c00001{word-spacing:38.138400px;}
.ws266_c00001{word-spacing:38.152800px;}
.wsc8b_c00001{word-spacing:38.174400px;}
.ws811_c00001{word-spacing:38.188800px;}
.ws10ac_c00001{word-spacing:38.210400px;}
.ws12eb_c00001{word-spacing:38.236752px;}
.wsd88_c00001{word-spacing:38.512800px;}
.ws124e_c00001{word-spacing:38.526624px;}
.wsd87_c00001{word-spacing:38.548800px;}
.wsfe5_c00001{word-spacing:38.592504px;}
.ws80a_c00001{word-spacing:38.779200px;}
.wsd5f_c00001{word-spacing:38.808000px;}
.ws1fe_c00001{word-spacing:38.829600px;}
.ws1fd_c00001{word-spacing:38.836800px;}
.ws1fc_c00001{word-spacing:38.844000px;}
.ws9cd_c00001{word-spacing:38.851200px;}
.wsbe0_c00001{word-spacing:38.858400px;}
.ws13f0_c00001{word-spacing:38.882880px;}
.ws9ce_c00001{word-spacing:38.894400px;}
.ws1010_c00001{word-spacing:38.895552px;}
.ws155f_c00001{word-spacing:38.902140px;}
.ws108d_c00001{word-spacing:38.908728px;}
.ws1042_c00001{word-spacing:38.935080px;}
.ws11f7_c00001{word-spacing:38.941668px;}
.ws126d_c00001{word-spacing:38.954844px;}
.wsd5e_c00001{word-spacing:38.980800px;}
.ws4ad_c00001{word-spacing:39.016800px;}
.wsc23_c00001{word-spacing:39.074400px;}
.wsc22_c00001{word-spacing:39.096000px;}
.ws4ae_c00001{word-spacing:39.139200px;}
.ws190_c00001{word-spacing:39.182400px;}
.ws2c8_c00001{word-spacing:39.189600px;}
.ws12f9_c00001{word-spacing:39.231540px;}
.wsd41_c00001{word-spacing:39.240000px;}
.wsfd2_c00001{word-spacing:39.271068px;}
.ws1344_c00001{word-spacing:39.284244px;}
.ws1261_c00001{word-spacing:39.304008px;}
.wsfd1_c00001{word-spacing:39.323772px;}
.ws1305_c00001{word-spacing:39.363300px;}
.ws125b_c00001{word-spacing:39.427200px;}
.ws140b_c00001{word-spacing:39.441600px;}
.ws125c_c00001{word-spacing:39.448800px;}
.ws13e9_c00001{word-spacing:39.479040px;}
.wsd0a_c00001{word-spacing:39.542400px;}
.wsb6e_c00001{word-spacing:39.554352px;}
.wse39_c00001{word-spacing:39.571200px;}
.wse38_c00001{word-spacing:39.600000px;}
.ws116c_c00001{word-spacing:39.607056px;}
.ws13e8_c00001{word-spacing:39.611520px;}
.ws1209_c00001{word-spacing:39.620232px;}
.ws1468_c00001{word-spacing:39.626820px;}
.wse3a_c00001{word-spacing:39.628800px;}
.ws114e_c00001{word-spacing:39.633408px;}
.ws114d_c00001{word-spacing:39.646584px;}
.ws13ef_c00001{word-spacing:39.744000px;}
.wsbab_c00001{word-spacing:39.801600px;}
.wsd5c_c00001{word-spacing:39.830400px;}
.wsf36_c00001{word-spacing:39.845520px;}
.wsbac_c00001{word-spacing:39.873600px;}
.wsd5b_c00001{word-spacing:39.952800px;}
.wsfb3_c00001{word-spacing:39.962808px;}
.ws118b_c00001{word-spacing:39.969396px;}
.wsd5d_c00001{word-spacing:39.974400px;}
.ws12c3_c00001{word-spacing:39.989160px;}
.wsbc2_c00001{word-spacing:39.995748px;}
.wsbc1_c00001{word-spacing:40.015512px;}
.ws5ec_c00001{word-spacing:40.063968px;}
.ws145d_c00001{word-spacing:40.219200px;}
.ws6ec_c00001{word-spacing:40.276800px;}
.ws97a_c00001{word-spacing:40.291200px;}
.ws14b3_c00001{word-spacing:40.318560px;}
.ws1307_c00001{word-spacing:40.364676px;}
.ws10f5_c00001{word-spacing:40.391028px;}
.ws1458_c00001{word-spacing:40.399200px;}
.ws1455_c00001{word-spacing:40.644000px;}
.ws1456_c00001{word-spacing:40.651200px;}
.wsdfb_c00001{word-spacing:40.680000px;}
.wsf7a_c00001{word-spacing:40.680900px;}
.ws1243_c00001{word-spacing:40.687488px;}
.ws1457_c00001{word-spacing:40.694400px;}
.ws106f_c00001{word-spacing:40.700664px;}
.ws1199_c00001{word-spacing:40.733604px;}
.ws10a6_c00001{word-spacing:40.740192px;}
.ws157a_c00001{word-spacing:40.746780px;}
.wse82_c00001{word-spacing:40.881600px;}
.wse83_c00001{word-spacing:40.896000px;}
.wse84_c00001{word-spacing:40.982400px;}
.ws99f_c00001{word-spacing:41.018400px;}
.ws12bf_c00001{word-spacing:41.082768px;}
.ws1413_c00001{word-spacing:41.114880px;}
.wsf5b_c00001{word-spacing:41.198400px;}
.ws1414_c00001{word-spacing:41.294160px;}
.wsf5a_c00001{word-spacing:41.378400px;}
.ws119e_c00001{word-spacing:41.445108px;}
.ws1374_c00001{word-spacing:41.471460px;}
.ws9d9_c00001{word-spacing:41.536800px;}
.wsf8_c00001{word-spacing:41.659200px;}
.wsf7_c00001{word-spacing:41.709600px;}
.wsf6_c00001{word-spacing:41.724000px;}
.wse4c_c00001{word-spacing:41.731200px;}
.ws9da_c00001{word-spacing:41.752800px;}
.ws1358_c00001{word-spacing:41.781096px;}
.ws10e5_c00001{word-spacing:41.800860px;}
.ws1534_c00001{word-spacing:41.833800px;}
.wse6d_c00001{word-spacing:42.062400px;}
.ws930_c00001{word-spacing:42.091200px;}
.ws931_c00001{word-spacing:42.098400px;}
.ws8e5_c00001{word-spacing:42.105600px;}
.ws8e4_c00001{word-spacing:42.112800px;}
.ws13d3_c00001{word-spacing:42.128640px;}
.wsd9d_c00001{word-spacing:42.134400px;}
.ws146d_c00001{word-spacing:42.143436px;}
.ws1207_c00001{word-spacing:42.156612px;}
.wsd9e_c00001{word-spacing:42.163200px;}
.wse6e_c00001{word-spacing:42.170400px;}
.ws1161_c00001{word-spacing:42.176376px;}
.wse6f_c00001{word-spacing:42.177600px;}
.ws10b3_c00001{word-spacing:42.182964px;}
.ws1168_c00001{word-spacing:42.202728px;}
.wscf6_c00001{word-spacing:42.400800px;}
.ws3c7_c00001{word-spacing:42.458400px;}
.wscf5_c00001{word-spacing:42.465600px;}
.ws11c1_c00001{word-spacing:42.472836px;}
.wsdcc_c00001{word-spacing:42.487200px;}
.ws11eb_c00001{word-spacing:42.512364px;}
.ws12b8_c00001{word-spacing:42.518952px;}
.ws3c6_c00001{word-spacing:42.523200px;}
.ws14c4_c00001{word-spacing:42.532128px;}
.ws115e_c00001{word-spacing:42.538716px;}
.ws11c0_c00001{word-spacing:42.565068px;}
.wsdcb_c00001{word-spacing:42.566400px;}
.ws999_c00001{word-spacing:42.576984px;}
.ws11bf_c00001{word-spacing:42.617772px;}
.ws2ca_c00001{word-spacing:42.796800px;}
.wscf9_c00001{word-spacing:42.804000px;}
.ws1545_c00001{word-spacing:42.815412px;}
.ws140e_c00001{word-spacing:43.027200px;}
.wscf8_c00001{word-spacing:43.092000px;}
.wsc36_c00001{word-spacing:43.164000px;}
.ws472_c00001{word-spacing:43.171200px;}
.ws235_c00001{word-spacing:43.204104px;}
.wsc37_c00001{word-spacing:43.221600px;}
.ws1027_c00001{word-spacing:43.256808px;}
.wscfa_c00001{word-spacing:43.286400px;}
.ws236_c00001{word-spacing:43.289748px;}
.ws6f5_c00001{word-spacing:43.430400px;}
.ws6f6_c00001{word-spacing:43.473600px;}
.ws1e4_c00001{word-spacing:43.480800px;}
.wsebc_c00001{word-spacing:43.488000px;}
.wscf4_c00001{word-spacing:43.545600px;}
.ws1e3_c00001{word-spacing:43.552800px;}
.ws1442_c00001{word-spacing:43.573032px;}
.ws14be_c00001{word-spacing:43.592796px;}
.ws1022_c00001{word-spacing:43.599384px;}
.ws12ec_c00001{word-spacing:43.625736px;}
.wse6a_c00001{word-spacing:43.768800px;}
.ws1544_c00001{word-spacing:43.935372px;}
.ws11b0_c00001{word-spacing:43.974900px;}
.wsfb8_c00001{word-spacing:43.988076px;}
.wsc7d_c00001{word-spacing:44.013600px;}
.ws1317_c00001{word-spacing:44.040780px;}
.wscf2_c00001{word-spacing:44.172000px;}
.ws128e_c00001{word-spacing:44.258184px;}
.wsc7c_c00001{word-spacing:44.265600px;}
.wsf61_c00001{word-spacing:44.304300px;}
.ws128d_c00001{word-spacing:44.310888px;}
.ws1449_c00001{word-spacing:44.324064px;}
.ws1324_c00001{word-spacing:44.337240px;}
.wscf3_c00001{word-spacing:44.344800px;}
.ws1325_c00001{word-spacing:44.350416px;}
.ws128f_c00001{word-spacing:44.370180px;}
.wsb1f_c00001{word-spacing:44.625600px;}
.wsb20_c00001{word-spacing:44.654400px;}
.ws1555_c00001{word-spacing:44.673228px;}
.ws1556_c00001{word-spacing:44.679816px;}
.wse58_c00001{word-spacing:44.683200px;}
.ws102c_c00001{word-spacing:44.686404px;}
.wse57_c00001{word-spacing:44.690400px;}
.ws10e0_c00001{word-spacing:44.699580px;}
.ws1557_c00001{word-spacing:44.732520px;}
.ws98e_c00001{word-spacing:44.863200px;}
.ws1053_c00001{word-spacing:44.892000px;}
.ws1052_c00001{word-spacing:44.978400px;}
.ws98d_c00001{word-spacing:45.000000px;}
.ws233_c00001{word-spacing:45.002628px;}
.ws263_c00001{word-spacing:45.007200px;}
.ws1097_c00001{word-spacing:45.015804px;}
.ws264_c00001{word-spacing:45.036000px;}
.ws12e6_c00001{word-spacing:45.042156px;}
.ws12e7_c00001{word-spacing:45.048744px;}
.ws234_c00001{word-spacing:45.061920px;}
.ws124c_c00001{word-spacing:45.371556px;}
.ws10ab_c00001{word-spacing:45.384732px;}
.wsae4_c00001{word-spacing:45.404496px;}
.wsf4b_c00001{word-spacing:45.684000px;}
.ws14d3_c00001{word-spacing:45.740484px;}
.ws11e4_c00001{word-spacing:45.760248px;}
.ws1017_c00001{word-spacing:46.056708px;}
.ws138e_c00001{word-spacing:46.089648px;}
.ws1378_c00001{word-spacing:46.116000px;}
.ws12e9_c00001{word-spacing:46.155528px;}
.ws2b1_c00001{word-spacing:46.224000px;}
.ws1260_c00001{word-spacing:46.303200px;}
.ws125f_c00001{word-spacing:46.396800px;}
.ws2b0_c00001{word-spacing:46.411200px;}
.ws1382_c00001{word-spacing:46.412460px;}
.ws1383_c00001{word-spacing:46.438812px;}
.ws154b_c00001{word-spacing:46.451988px;}
.ws1558_c00001{word-spacing:46.471752px;}
.ws123c_c00001{word-spacing:46.491516px;}
.ws1329_c00001{word-spacing:46.504692px;}
.ws14b2_c00001{word-spacing:46.820916px;}
.ws1341_c00001{word-spacing:46.834092px;}
.ws1191_c00001{word-spacing:46.873620px;}
.wsc9e_c00001{word-spacing:47.138400px;}
.ws12a1_c00001{word-spacing:47.167200px;}
.ws11ca_c00001{word-spacing:47.183256px;}
.ws1213_c00001{word-spacing:47.189844px;}
.ws123e_c00001{word-spacing:47.196432px;}
.ws12ea_c00001{word-spacing:47.216196px;}
.ws150c_c00001{word-spacing:47.235960px;}
.wsc9f_c00001{word-spacing:47.239200px;}
.ws11c9_c00001{word-spacing:47.295252px;}
.ws13ed_c00001{word-spacing:47.361600px;}
.ws1475_c00001{word-spacing:47.449440px;}
.ws1553_c00001{word-spacing:47.506608px;}
.wsf81_c00001{word-spacing:47.539008px;}
.ws10f6_c00001{word-spacing:47.578536px;}
.ws10ef_c00001{word-spacing:47.585124px;}
.ws5bd_c00001{word-spacing:47.796372px;}
.ws5bf_c00001{word-spacing:47.798496px;}
.ws145c_c00001{word-spacing:47.809440px;}
.ws145a_c00001{word-spacing:47.866608px;}
.wsaa9_c00001{word-spacing:48.240000px;}
.ws110c_c00001{word-spacing:48.283452px;}
.ws1335_c00001{word-spacing:48.309804px;}
.ws133b_c00001{word-spacing:48.432960px;}
.ws1514_c00001{word-spacing:48.492000px;}
.ws12f8_c00001{word-spacing:48.632616px;}
.ws138a_c00001{word-spacing:48.672144px;}
.ws133c_c00001{word-spacing:48.677940px;}
.ws10b9_c00001{word-spacing:48.792960px;}
.ws145f_c00001{word-spacing:49.008132px;}
.ws10ba_c00001{word-spacing:49.037940px;}
.wsa77_c00001{word-spacing:49.197600px;}
.ws82f_c00001{word-spacing:49.219200px;}
.ws61c_c00001{word-spacing:49.276800px;}
.ws14ed_c00001{word-spacing:49.311180px;}
.ws830_c00001{word-spacing:49.312800px;}
.wsa78_c00001{word-spacing:49.327200px;}
.ws1342_c00001{word-spacing:49.370472px;}
.ws61d_c00001{word-spacing:49.384800px;}
.wsd68_c00001{word-spacing:49.500000px;}
.ws11ed_c00001{word-spacing:49.512960px;}
.ws147c_c00001{word-spacing:49.596372px;}
.ws34e_c00001{word-spacing:49.732812px;}
.ws97c_c00001{word-spacing:49.924800px;}
.ws97b_c00001{word-spacing:49.996800px;}
.ws1249_c00001{word-spacing:50.081976px;}
.ws1245_c00001{word-spacing:50.095152px;}
.ws34d_c00001{word-spacing:50.108328px;}
.ws1308_c00001{word-spacing:50.141268px;}
.ws1131_c00001{word-spacing:50.232960px;}
.ws133e_c00001{word-spacing:50.248800px;}
.wsd6a_c00001{word-spacing:50.299200px;}
.ws12bd_c00001{word-spacing:50.332320px;}
.ws133d_c00001{word-spacing:50.349600px;}
.wsd69_c00001{word-spacing:50.378400px;}
.ws1504_c00001{word-spacing:50.424552px;}
.ws12a2_c00001{word-spacing:50.431140px;}
.ws12bc_c00001{word-spacing:50.450904px;}
.wsb96_c00001{word-spacing:50.472000px;}
.ws11ee_c00001{word-spacing:50.477940px;}
.wsc78_c00001{word-spacing:50.702400px;}
.wsb97_c00001{word-spacing:50.745600px;}
.wsae2_c00001{word-spacing:50.806656px;}
.ws1246_c00001{word-spacing:50.826420px;}
.ws130a_c00001{word-spacing:50.833008px;}
.ws1040_c00001{word-spacing:50.852772px;}
.ws13cf_c00001{word-spacing:51.004800px;}
.ws1496_c00001{word-spacing:51.122880px;}
.ws106e_c00001{word-spacing:51.136056px;}
.ws13d0_c00001{word-spacing:51.137280px;}
.ws131a_c00001{word-spacing:51.175584px;}
.ws131b_c00001{word-spacing:51.188760px;}
.ws1282_c00001{word-spacing:51.312960px;}
.ws152f_c00001{word-spacing:51.422400px;}
.wsda9_c00001{word-spacing:51.472800px;}
.ws135d_c00001{word-spacing:51.518160px;}
.ws1132_c00001{word-spacing:51.557940px;}
.wsda8_c00001{word-spacing:51.624000px;}
.ws1033_c00001{word-spacing:51.887088px;}
.ws1281_c00001{word-spacing:51.917940px;}
.ws1229_c00001{word-spacing:52.032960px;}
.ws323_c00001{word-spacing:52.209900px;}
.ws1189_c00001{word-spacing:52.216488px;}
.ws322_c00001{word-spacing:52.229664px;}
.wsae7_c00001{word-spacing:52.249428px;}
.wsb6d_c00001{word-spacing:52.302132px;}
.ws11f9_c00001{word-spacing:52.598592px;}
.ws1158_c00001{word-spacing:52.605180px;}
.wsfad_c00001{word-spacing:52.624944px;}
.ws1551_c00001{word-spacing:52.941168px;}
.wsf82_c00001{word-spacing:53.112960px;}
.ws1376_c00001{word-spacing:53.283744px;}
.ws135c_c00001{word-spacing:53.316684px;}
.ws1552_c00001{word-spacing:53.349624px;}
.wsafe_c00001{word-spacing:53.639064px;}
.ws1181_c00001{word-spacing:53.646084px;}
.ws1498_c00001{word-spacing:53.685612px;}
.ws1322_c00001{word-spacing:53.832960px;}
.wsf4e_c00001{word-spacing:54.023832px;}
.ws109e_c00001{word-spacing:54.034776px;}
.ws136b_c00001{word-spacing:54.041364px;}
.ws10db_c00001{word-spacing:54.192960px;}
.wscfb_c00001{word-spacing:54.230400px;}
.ws1433_c00001{word-spacing:54.364176px;}
.wscfc_c00001{word-spacing:54.403200px;}
.ws124d_c00001{word-spacing:54.403704px;}
.wsfed_c00001{word-spacing:54.410292px;}
.ws14e8_c00001{word-spacing:54.746280px;}
.ws10fc_c00001{word-spacing:55.115208px;}
.ws11db_c00001{word-spacing:55.128384px;}
.ws1348_c00001{word-spacing:55.134972px;}
.ws1347_c00001{word-spacing:55.141560px;}
.ws1539_c00001{word-spacing:55.148148px;}
.ws1233_c00001{word-spacing:55.457784px;}
.ws115f_c00001{word-spacing:55.806948px;}
.wsfbc_c00001{word-spacing:55.826712px;}
.ws100e_c00001{word-spacing:55.846476px;}
.ws1160_c00001{word-spacing:55.866240px;}
.ws2ac_c00001{word-spacing:55.944000px;}
.ws125d_c00001{word-spacing:56.073600px;}
.ws2ad_c00001{word-spacing:56.109600px;}
.ws125e_c00001{word-spacing:56.160000px;}
.ws2ab_c00001{word-spacing:56.174400px;}
.ws1390_c00001{word-spacing:56.202228px;}
.ws12a4_c00001{word-spacing:56.564568px;}
.ws978_c00001{word-spacing:56.757600px;}
.ws13cd_c00001{word-spacing:56.767680px;}
.wscba_c00001{word-spacing:57.117600px;}
.ws101f_c00001{word-spacing:57.236544px;}
.ws1041_c00001{word-spacing:57.625236px;}
.ws13ce_c00001{word-spacing:57.628800px;}
.ws1012_c00001{word-spacing:57.658176px;}
.ws100c_c00001{word-spacing:58.027104px;}
.ws3ed_c00001{word-spacing:58.063896px;}
.wsf31_c00001{word-spacing:58.158720px;}
.ws14d7_c00001{word-spacing:58.336740px;}
.ws1231_c00001{word-spacing:58.343328px;}
.ws37c_c00001{word-spacing:58.376268px;}
.ws37d_c00001{word-spacing:58.382856px;}
.ws112e_c00001{word-spacing:59.107536px;}
.ws116b_c00001{word-spacing:59.403996px;}
.ws1252_c00001{word-spacing:59.469876px;}
.ws12bb_c00001{word-spacing:59.812452px;}
.ws137c_c00001{word-spacing:59.845392px;}
.ws143b_c00001{word-spacing:60.141852px;}
.ws14ff_c00001{word-spacing:60.144048px;}
.ws1257_c00001{word-spacing:60.155028px;}
.ws143c_c00001{word-spacing:60.174792px;}
.wsf25_c00001{word-spacing:60.344640px;}
.wsf26_c00001{word-spacing:60.477120px;}
.ws14a1_c00001{word-spacing:60.517368px;}
.ws1568_c00001{word-spacing:60.800652px;}
.wsfa9_c00001{word-spacing:60.932412px;}
.ws1567_c00001{word-spacing:60.945588px;}
.ws10a4_c00001{word-spacing:61.195932px;}
.ws1340_c00001{word-spacing:61.235460px;}
.ws14b9_c00001{word-spacing:61.476372px;}
.ws150d_c00001{word-spacing:61.617564px;}
.ws1337_c00001{word-spacing:61.993080px;}
.ws1501_c00001{word-spacing:62.254260px;}
.ws1502_c00001{word-spacing:62.272296px;}
.ws120b_c00001{word-spacing:62.282952px;}
.ws14d2_c00001{word-spacing:62.335656px;}
.wsf7f_c00001{word-spacing:62.744112px;}
.ws7e9_c00001{word-spacing:62.867484px;}
.ws939_c00001{word-spacing:62.954928px;}
.ws1268_c00001{word-spacing:62.994456px;}
.ws1312_c00001{word-spacing:63.099864px;}
.ws13be_c00001{word-spacing:63.259200px;}
.ws1575_c00001{word-spacing:63.315972px;}
.ws13df_c00001{word-spacing:63.391680px;}
.wsbc9_c00001{word-spacing:63.422676px;}
.wsc32_c00001{word-spacing:63.698400px;}
.wsc31_c00001{word-spacing:64.008000px;}
.wsc33_c00001{word-spacing:64.094400px;}
.ws156e_c00001{word-spacing:64.483344px;}
.ws3e6_c00001{word-spacing:64.502748px;}
.ws149d_c00001{word-spacing:64.792980px;}
.ws1151_c00001{word-spacing:64.825920px;}
.wsfcd_c00001{word-spacing:65.155320px;}
.ws1176_c00001{word-spacing:65.181672px;}
.ws14a8_c00001{word-spacing:65.247552px;}
.wsa7a_c00001{word-spacing:65.436372px;}
.wsa79_c00001{word-spacing:65.482380px;}
.wsa07_c00001{word-spacing:65.506608px;}
.wsafd_c00001{word-spacing:65.602944px;}
.ws1546_c00001{word-spacing:65.899764px;}
.wsa09_c00001{word-spacing:66.150000px;}
.wsaa1_c00001{word-spacing:66.150108px;}
.ws115a_c00001{word-spacing:66.248928px;}
.ws1149_c00001{word-spacing:66.295044px;}
.ws875_c00001{word-spacing:66.330396px;}
.ws14bb_c00001{word-spacing:66.516372px;}
.ws123f_c00001{word-spacing:66.598092px;}
.ws87b_c00001{word-spacing:66.715164px;}
.ws6d1_c00001{word-spacing:67.237128px;}
.ws116d_c00001{word-spacing:67.329360px;}
.wsae1_c00001{word-spacing:67.704876px;}
.ws1262_c00001{word-spacing:67.744404px;}
.ws14c0_c00001{word-spacing:67.757580px;}
.wse4d_c00001{word-spacing:68.040000px;}
.wse4e_c00001{word-spacing:68.047200px;}
.ws1014_c00001{word-spacing:68.073804px;}
.ws12a9_c00001{word-spacing:68.080392px;}
.ws12aa_c00001{word-spacing:68.119920px;}
.ws146c_c00001{word-spacing:68.126508px;}
.ws13f2_c00001{word-spacing:68.425920px;}
.ws1156_c00001{word-spacing:68.455908px;}
.ws1272_c00001{word-spacing:69.147648px;}
.ws108a_c00001{word-spacing:69.979680px;}
.ws104f_c00001{word-spacing:70.537716px;}
.ws1542_c00001{word-spacing:71.624736px;}
.ws11dc_c00001{word-spacing:71.684028px;}
.wsfcc_c00001{word-spacing:71.690616px;}
.ws1334_c00001{word-spacing:71.697204px;}
.ws154a_c00001{word-spacing:72.085896px;}
.ws1169_c00001{word-spacing:72.356004px;}
.ws1165_c00001{word-spacing:72.369180px;}
.ws6d8_c00001{word-spacing:72.678888px;}
.ws6da_c00001{word-spacing:72.679392px;}
.wsadf_c00001{word-spacing:72.698580px;}
.ws87c_c00001{word-spacing:73.141992px;}
.ws11a2_c00001{word-spacing:73.495728px;}
.ws1443_c00001{word-spacing:73.515492px;}
.wsd43_c00001{word-spacing:73.778400px;}
.wscde_c00001{word-spacing:73.792800px;}
.wsd42_c00001{word-spacing:73.807200px;}
.ws1373_c00001{word-spacing:73.864656px;}
.ws156c_c00001{word-spacing:74.449440px;}
.ws11da_c00001{word-spacing:74.543220px;}
.ws1148_c00001{word-spacing:74.958264px;}
.ws1489_c00001{word-spacing:76.684320px;}
.ws10ee_c00001{word-spacing:76.769964px;}
.ws11e5_c00001{word-spacing:77.059836px;}
.ws1521_c00001{word-spacing:77.316372px;}
.ws14e0_c00001{word-spacing:77.817456px;}
.ws1523_c00001{word-spacing:78.030000px;}
.ws1188_c00001{word-spacing:78.120504px;}
.ws1361_c00001{word-spacing:78.127092px;}
.ws12fe_c00001{word-spacing:78.133680px;}
.ws1186_c00001{word-spacing:78.146856px;}
.ws1094_c00001{word-spacing:78.199560px;}
.ws1187_c00001{word-spacing:78.219324px;}
.ws325_c00001{word-spacing:78.456492px;}
.ws324_c00001{word-spacing:78.502608px;}
.ws326_c00001{word-spacing:78.575076px;}
.ws155d_c00001{word-spacing:78.858360px;}
.ws13ba_c00001{word-spacing:79.223040px;}
.ws152b_c00001{word-spacing:79.344000px;}
.wsa49_c00001{word-spacing:79.476372px;}
.wsa02_c00001{word-spacing:79.515972px;}
.ws528_c00001{word-spacing:79.517160px;}
.wsa08_c00001{word-spacing:79.518096px;}
.ws8c9_c00001{word-spacing:79.560000px;}
.ws152c_c00001{word-spacing:79.567200px;}
.ws1263_c00001{word-spacing:79.615980px;}
.wsfa3_c00001{word-spacing:79.642332px;}
.ws9e3_c00001{word-spacing:79.833384px;}
.wsa9b_c00001{word-spacing:79.836372px;}
.wsaa0_c00001{word-spacing:79.836624px;}
.wsa98_c00001{word-spacing:79.838496px;}
.ws9e1_c00001{word-spacing:79.839972px;}
.ws905_c00001{word-spacing:79.872912px;}
.ws90b_c00001{word-spacing:79.879500px;}
.ws1170_c00001{word-spacing:79.945380px;}
.ws87a_c00001{word-spacing:80.049780px;}
.wsa03_c00001{word-spacing:80.196372px;}
.ws8d0_c00001{word-spacing:80.215488px;}
.ws529_c00001{word-spacing:80.235252px;}
.wsa9a_c00001{word-spacing:80.235756px;}
.wsa9e_c00001{word-spacing:80.235864px;}
.wsaa2_c00001{word-spacing:80.237988px;}
.ws1266_c00001{word-spacing:80.320896px;}
.ws1474_c00001{word-spacing:80.556372px;}
.wsf67_c00001{word-spacing:80.696412px;}
.ws1044_c00001{word-spacing:80.716176px;}
.ws5c1_c00001{word-spacing:80.916372px;}
.ws5e7_c00001{word-spacing:81.366408px;}
.ws1250_c00001{word-spacing:81.394740px;}
.ws1029_c00001{word-spacing:81.407916px;}
.ws14bd_c00001{word-spacing:83.076372px;}
.ws1035_c00001{word-spacing:83.199852px;}
.wse28_c00001{word-spacing:83.340000px;}
.ws148c_c00001{word-spacing:83.456784px;}
.wse27_c00001{word-spacing:83.520000px;}
.ws6d3_c00001{word-spacing:83.799360px;}
.ws1230_c00001{word-spacing:83.924532px;}
.wsf4c_c00001{word-spacing:84.005676px;}
.wsf4d_c00001{word-spacing:84.017700px;}
.ws12c0_c00001{word-spacing:84.346164px;}
.wsff9_c00001{word-spacing:84.636036px;}
.ws140d_c00001{word-spacing:85.994640px;}
.ws1253_c00001{word-spacing:86.843016px;}
.ws14f6_c00001{word-spacing:87.435972px;}
.wsa48_c00001{word-spacing:87.442380px;}
.wsa4a_c00001{word-spacing:87.466608px;}
.wsf62_c00001{word-spacing:87.561108px;}
.ws14f7_c00001{word-spacing:87.750000px;}
.ws1110_c00001{word-spacing:87.877332px;}
.ws11a9_c00001{word-spacing:88.911648px;}
.ws6d4_c00001{word-spacing:89.238888px;}
.ws6d6_c00001{word-spacing:89.239392px;}
.ws6d7_c00001{word-spacing:89.243748px;}
.ws6d2_c00001{word-spacing:89.245476px;}
.ws6dc_c00001{word-spacing:89.267472px;}
.ws1089_c00001{word-spacing:89.777196px;}
.ws99a_c00001{word-spacing:90.324288px;}
.ws156b_c00001{word-spacing:91.066608px;}
.ws8c8_c00001{word-spacing:91.368972px;}
.ws774_c00001{word-spacing:91.395324px;}
.ws11f2_c00001{word-spacing:91.487556px;}
.ws6d5_c00001{word-spacing:92.080476px;}
.ws7ea_c00001{word-spacing:92.428488px;}
.ws1114_c00001{word-spacing:92.528460px;}
.ws7ec_c00001{word-spacing:92.723076px;}
.ws3e9_c00001{word-spacing:92.891412px;}
.ws1093_c00001{word-spacing:93.628656px;}
.ws12b9_c00001{word-spacing:93.635244px;}
.ws12ba_c00001{word-spacing:93.687948px;}
.ws1076_c00001{word-spacing:94.340160px;}
.ws998_c00001{word-spacing:94.490604px;}
.ws14cf_c00001{word-spacing:94.610268px;}
.ws152a_c00001{word-spacing:96.795972px;}
.ws60c_c00001{word-spacing:96.810048px;}
.ws6db_c00001{word-spacing:97.476120px;}
.ws5bb_c00001{word-spacing:97.476372px;}
.ws5bc_c00001{word-spacing:97.478496px;}
.ws874_c00001{word-spacing:98.392392px;}
.wsa01_c00001{word-spacing:98.556372px;}
.wsa9d_c00001{word-spacing:98.556480px;}
.ws527_c00001{word-spacing:98.557740px;}
.ws8a6_c00001{word-spacing:98.558460px;}
.ws14f3_c00001{word-spacing:98.569440px;}
.wsa04_c00001{word-spacing:98.602380px;}
.wsa99_c00001{word-spacing:98.602596px;}
.wsa27_c00001{word-spacing:98.626608px;}
.ws1011_c00001{word-spacing:98.642124px;}
.ws1487_c00001{word-spacing:98.805600px;}
.ws8a8_c00001{word-spacing:98.920080px;}
.wsf63_c00001{word-spacing:99.755496px;}
.ws6dd_c00001{word-spacing:100.355004px;}
.ws1116_c00001{word-spacing:100.802988px;}
.ws995_c00001{word-spacing:101.139876px;}
.ws1464_c00001{word-spacing:101.204856px;}
.ws14ba_c00001{word-spacing:104.329440px;}
.ws10f7_c00001{word-spacing:104.459328px;}
.ws126b_c00001{word-spacing:105.124716px;}
.ws1495_c00001{word-spacing:105.137892px;}
.wsfaf_c00001{word-spacing:105.500232px;}
.ws8c2_c00001{word-spacing:106.200000px;}
.ws14e2_c00001{word-spacing:106.218324px;}
.ws3ee_c00001{word-spacing:106.406388px;}
.ws1047_c00001{word-spacing:107.338284px;}
.ws1573_c00001{word-spacing:107.569440px;}
.ws75f_c00001{word-spacing:107.929440px;}
.ws5c0_c00001{word-spacing:107.962380px;}
.ws90a_c00001{word-spacing:107.983548px;}
.ws9e9_c00001{word-spacing:107.985384px;}
.ws5c2_c00001{word-spacing:107.986608px;}
.ws9ea_c00001{word-spacing:108.632880px;}
.ws6d9_c00001{word-spacing:108.636120px;}
.ws155c_c00001{word-spacing:109.084104px;}
.ws130f_c00001{word-spacing:109.406916px;}
.ws879_c00001{word-spacing:109.905372px;}
.ws7e8_c00001{word-spacing:110.100060px;}
.ws101e_c00001{word-spacing:110.197476px;}
.ws1051_c00001{word-spacing:110.612520px;}
.ws8ca_c00001{word-spacing:110.880000px;}
.ws118c_c00001{word-spacing:112.384692px;}
.ws93b_c00001{word-spacing:112.595508px;}
.ws8a7_c00001{word-spacing:112.635036px;}
.wsa05_c00001{word-spacing:112.635972px;}
.wsa0a_c00001{word-spacing:112.638096px;}
.ws1459_c00001{word-spacing:112.956372px;}
.ws9e7_c00001{word-spacing:112.957848px;}
.ws93a_c00001{word-spacing:112.997376px;}
.ws10a3_c00001{word-spacing:113.155488px;}
.wsa06_c00001{word-spacing:113.316372px;}
.wsa9f_c00001{word-spacing:113.355756px;}
.ws1205_c00001{word-spacing:113.787936px;}
.ws6df_c00001{word-spacing:114.749856px;}
.ws3e5_c00001{word-spacing:115.009560px;}
.ws11ff_c00001{word-spacing:115.581600px;}
.ws11d4_c00001{word-spacing:115.593048px;}
.ws14bc_c00001{word-spacing:116.196372px;}
.ws876_c00001{word-spacing:116.308152px;}
.wsfa4_c00001{word-spacing:116.647128px;}
.ws136d_c00001{word-spacing:116.752536px;}
.ws1465_c00001{word-spacing:117.411336px;}
.ws8c0_c00001{word-spacing:117.646380px;}
.wsfba_c00001{word-spacing:117.819792px;}
.ws11d5_c00001{word-spacing:118.024020px;}
.ws1045_c00001{word-spacing:118.511532px;}
.wsf74_c00001{word-spacing:118.807992px;}
.ws1088_c00001{word-spacing:118.929384px;}
.ws1315_c00001{word-spacing:119.196684px;}
.ws1524_c00001{word-spacing:119.796372px;}
.ws11b6_c00001{word-spacing:119.901600px;}
.wsa46_c00001{word-spacing:120.156372px;}
.ws14f4_c00001{word-spacing:120.195972px;}
.wsa47_c00001{word-spacing:120.202380px;}
.ws14f5_c00001{word-spacing:120.510000px;}
.ws14df_c00001{word-spacing:120.639456px;}
.ws1522_c00001{word-spacing:120.870000px;}
.ws1526_c00001{word-spacing:120.889440px;}
.ws7df_c00001{word-spacing:122.521356px;}
.ws120a_c00001{word-spacing:122.800320px;}
.ws1179_c00001{word-spacing:122.853024px;}
.ws7e1_c00001{word-spacing:122.875632px;}
.ws8cf_c00001{word-spacing:123.050664px;}
.ws1427_c00001{word-spacing:123.057252px;}
.wsffa_c00001{word-spacing:123.538176px;}
.wsf68_c00001{word-spacing:123.900516px;}
.ws156a_c00001{word-spacing:124.129440px;}
.ws6de_c00001{word-spacing:124.836012px;}
.wse75_c00001{word-spacing:125.416800px;}
.wse76_c00001{word-spacing:125.668800px;}
.ws134c_c00001{word-spacing:125.982324px;}
.ws10ed_c00001{word-spacing:126.015264px;}
.wsfe3_c00001{word-spacing:126.035028px;}
.ws1500_c00001{word-spacing:126.089676px;}
.ws1273_c00001{word-spacing:126.443484px;}
.ws10c1_c00001{word-spacing:127.780848px;}
.ws1486_c00001{word-spacing:128.138400px;}
.ws9e5_c00001{word-spacing:129.513492px;}
.wsa9c_c00001{word-spacing:129.516624px;}
.wsa45_c00001{word-spacing:129.876372px;}
.ws760_c00001{word-spacing:129.889440px;}
.ws1529_c00001{word-spacing:129.915972px;}
.ws1527_c00001{word-spacing:129.918096px;}
.ws100d_c00001{word-spacing:131.114376px;}
.ws148f_c00001{word-spacing:131.397660px;}
.ws132b_c00001{word-spacing:131.430600px;}
.ws14eb_c00001{word-spacing:131.792940px;}
.ws144d_c00001{word-spacing:135.357048px;}
.ws12fa_c00001{word-spacing:135.765504px;}
.ws104c_c00001{word-spacing:136.206900px;}
.ws14a9_c00001{word-spacing:136.595592px;}
.ws108b_c00001{word-spacing:136.791036px;}
.ws134d_c00001{word-spacing:137.208276px;}
.ws135f_c00001{word-spacing:137.972484px;}
.ws126e_c00001{word-spacing:138.657636px;}
.ws108e_c00001{word-spacing:140.093820px;}
.ws1531_c00001{word-spacing:140.329440px;}
.ws1572_c00001{word-spacing:140.689440px;}
.ws112f_c00001{word-spacing:140.759208px;}
.ws675_c00001{word-spacing:141.034068px;}
.ws906_c00001{word-spacing:141.037668px;}
.ws909_c00001{word-spacing:141.039504px;}
.ws673_c00001{word-spacing:141.040656px;}
.ws75e_c00001{word-spacing:141.049440px;}
.ws9e2_c00001{word-spacing:141.080904px;}
.ws5be_c00001{word-spacing:141.082380px;}
.ws907_c00001{word-spacing:141.083316px;}
.ws904_c00001{word-spacing:141.083784px;}
.ws9e4_c00001{word-spacing:141.085368px;}
.ws9e6_c00001{word-spacing:141.085620px;}
.ws9e8_c00001{word-spacing:141.105132px;}
.ws1490_c00001{word-spacing:141.931872px;}
.ws10e4_c00001{word-spacing:142.590672px;}
.ws136c_c00001{word-spacing:144.020268px;}
.ws1316_c00001{word-spacing:146.536884px;}
.ws14d9_c00001{word-spacing:147.208860px;}
.ws100a_c00001{word-spacing:147.228624px;}
.ws99b_c00001{word-spacing:147.348108px;}
.ws14a7_c00001{word-spacing:147.676608px;}
.ws8c1_c00001{word-spacing:150.087816px;}
.ws1507_c00001{word-spacing:150.409440px;}
.wsae6_c00001{word-spacing:151.939044px;}
.ws775_c00001{word-spacing:152.209440px;}
.ws773_c00001{word-spacing:152.211240px;}
.ws1528_c00001{word-spacing:154.009440px;}
.ws1503_c00001{word-spacing:154.475424px;}
.ws138c_c00001{word-spacing:155.167164px;}
.ws120d_c00001{word-spacing:159.890760px;}
.ws1537_c00001{word-spacing:161.287416px;}
.ws145b_c00001{word-spacing:162.276372px;}
.wsaa3_c00001{word-spacing:162.276624px;}
.ws908_c00001{word-spacing:162.315144px;}
.wsfe6_c00001{word-spacing:162.789480px;}
.ws14dd_c00001{word-spacing:163.184760px;}
.ws1560_c00001{word-spacing:163.494396px;}
.ws132f_c00001{word-spacing:166.307472px;}
.ws1426_c00001{word-spacing:172.743948px;}
.ws116a_c00001{word-spacing:172.849356px;}
.ws1530_c00001{word-spacing:173.449440px;}
.ws12c7_c00001{word-spacing:173.534508px;}
.ws1064_c00001{word-spacing:176.821920px;}
.ws1058_c00001{word-spacing:178.231752px;}
.wsf7c_c00001{word-spacing:180.642960px;}
.ws1506_c00001{word-spacing:183.529440px;}
.ws1508_c00001{word-spacing:183.586608px;}
.ws852_c00001{word-spacing:183.693204px;}
.ws132c_c00001{word-spacing:184.734108px;}
.ws11a7_c00001{word-spacing:187.277076px;}
.ws8cd_c00001{word-spacing:188.280000px;}
.ws1510_c00001{word-spacing:188.556372px;}
.ws8cb_c00001{word-spacing:193.990248px;}
.ws8cc_c00001{word-spacing:194.754456px;}
.ws1569_c00001{word-spacing:195.409440px;}
.ws3a6_c00001{word-spacing:197.259732px;}
.ws5fb_c00001{word-spacing:200.347668px;}
.ws1423_c00001{word-spacing:205.539012px;}
.ws1425_c00001{word-spacing:205.545600px;}
.ws1422_c00001{word-spacing:205.558776px;}
.ws1421_c00001{word-spacing:205.565364px;}
.ws1424_c00001{word-spacing:205.571952px;}
.ws1420_c00001{word-spacing:205.578540px;}
.ws150f_c00001{word-spacing:207.649440px;}
.ws11e6_c00001{word-spacing:209.544516px;}
.wsfb0_c00001{word-spacing:211.659264px;}
.ws1046_c00001{word-spacing:211.692204px;}
.ws110e_c00001{word-spacing:214.294464px;}
.ws1115_c00001{word-spacing:221.429268px;}
.ws134e_c00001{word-spacing:221.449032px;}
.ws117a_c00001{word-spacing:221.495148px;}
.ws1350_c00001{word-spacing:221.760000px;}
.wsfaa_c00001{word-spacing:222.858864px;}
.ws1511_c00001{word-spacing:224.209440px;}
.ws1512_c00001{word-spacing:224.266608px;}
.ws5e5_c00001{word-spacing:224.566236px;}
.ws5eb_c00001{word-spacing:224.830764px;}
.ws14de_c00001{word-spacing:225.052668px;}
.ws1299_c00001{word-spacing:226.442736px;}
.ws5fa_c00001{word-spacing:226.627200px;}
.ws5e9_c00001{word-spacing:231.155388px;}
.ws5f8_c00001{word-spacing:232.029360px;}
.ws5f9_c00001{word-spacing:232.391700px;}
.ws14a2_c00001{word-spacing:234.447156px;}
.ws462_c00001{word-spacing:236.116800px;}
.wsa0c_c00001{word-spacing:236.160000px;}
.ws5fc_c00001{word-spacing:237.431520px;}
.ws1063_c00001{word-spacing:239.045580px;}
.ws14e5_c00001{word-spacing:241.581960px;}
.ws10e8_c00001{word-spacing:243.406836px;}
.ws1532_c00001{word-spacing:244.729440px;}
.wsfbb_c00001{word-spacing:244.803492px;}
.ws14da_c00001{word-spacing:247.030236px;}
.wsfe4_c00001{word-spacing:247.405752px;}
.ws1494_c00001{word-spacing:250.236000px;}
.ws10e3_c00001{word-spacing:250.963272px;}
.ws138d_c00001{word-spacing:253.842228px;}
.ws1195_c00001{word-spacing:258.840000px;}
.wsfac_c00001{word-spacing:259.514496px;}
.ws1133_c00001{word-spacing:259.560000px;}
.ws1313_c00001{word-spacing:260.351172px;}
.wsf8f_c00001{word-spacing:261.000000px;}
.ws343_c00001{word-spacing:261.547164px;}
.ws10dd_c00001{word-spacing:262.080000px;}
.ws10e7_c00001{word-spacing:263.552940px;}
.ws1147_c00001{word-spacing:265.694040px;}
.ws1145_c00001{word-spacing:268.902396px;}
.ws1471_c00001{word-spacing:269.198856px;}
.ws1472_c00001{word-spacing:269.205444px;}
.ws1445_c00001{word-spacing:270.266400px;}
.wsf80_c00001{word-spacing:270.358344px;}
.ws41c_c00001{word-spacing:272.160000px;}
.wsfae_c00001{word-spacing:275.872500px;}
.ws52a_c00001{word-spacing:276.406128px;}
.ws48d_c00001{word-spacing:276.445656px;}
.ws14e1_c00001{word-spacing:276.518124px;}
.ws1043_c00001{word-spacing:277.927956px;}
.ws142f_c00001{word-spacing:279.957600px;}
.ws1450_c00001{word-spacing:284.028444px;}
.ws126c_c00001{word-spacing:286.630704px;}
.ws1454_c00001{word-spacing:286.797600px;}
.ws1541_c00001{word-spacing:287.143200px;}
.ws110f_c00001{word-spacing:287.665020px;}
.ws1030_c00001{word-spacing:290.520000px;}
.ws1291_c00001{word-spacing:294.120000px;}
.ws1021_c00001{word-spacing:294.480000px;}
.ws10bc_c00001{word-spacing:294.840000px;}
.wsfe2_c00001{word-spacing:295.560000px;}
.ws1356_c00001{word-spacing:295.826472px;}
.ws10a0_c00001{word-spacing:295.920000px;}
.ws122c_c00001{word-spacing:296.280000px;}
.ws10ae_c00001{word-spacing:297.000000px;}
.ws113b_c00001{word-spacing:298.080000px;}
.ws1175_c00001{word-spacing:298.440000px;}
.ws11bd_c00001{word-spacing:298.800000px;}
.ws11d2_c00001{word-spacing:299.160000px;}
.ws1363_c00001{word-spacing:308.199816px;}
.ws1082_c00001{word-spacing:311.408172px;}
.wsf60_c00001{word-spacing:313.200000px;}
.wsfa6_c00001{word-spacing:315.360000px;}
.wsfc3_c00001{word-spacing:316.800000px;}
.wsf71_c00001{word-spacing:320.040000px;}
.ws1163_c00001{word-spacing:323.358804px;}
.ws134f_c00001{word-spacing:324.024192px;}
.wsfbf_c00001{word-spacing:336.607272px;}
.ws146e_c00001{word-spacing:339.446700px;}
.ws155e_c00001{word-spacing:346.719852px;}
.ws1352_c00001{word-spacing:347.774400px;}
.ws129b_c00001{word-spacing:349.243056px;}
.ws1453_c00001{word-spacing:357.480000px;}
.ws124f_c00001{word-spacing:358.604604px;}
.ws8ce_c00001{word-spacing:359.573040px;}
.wsb05_c00001{word-spacing:371.160000px;}
.ws877_c00001{word-spacing:381.365208px;}
.ws142e_c00001{word-spacing:393.480000px;}
.ws102f_c00001{word-spacing:398.520000px;}
.ws1290_c00001{word-spacing:402.120000px;}
.ws1020_c00001{word-spacing:402.480000px;}
.ws10bb_c00001{word-spacing:402.840000px;}
.wsfe1_c00001{word-spacing:403.560000px;}
.ws109f_c00001{word-spacing:403.920000px;}
.ws122b_c00001{word-spacing:404.280000px;}
.wsf8e_c00001{word-spacing:405.000000px;}
.ws10dc_c00001{word-spacing:406.080000px;}
.ws1174_c00001{word-spacing:406.440000px;}
.ws11bc_c00001{word-spacing:406.800000px;}
.ws11d1_c00001{word-spacing:407.160000px;}
.ws4c0_c00001{word-spacing:416.447244px;}
.wsf5f_c00001{word-spacing:421.200000px;}
.wsfa5_c00001{word-spacing:423.360000px;}
.wsfc2_c00001{word-spacing:424.800000px;}
.wsf70_c00001{word-spacing:428.040000px;}
.ws10c3_c00001{word-spacing:433.470636px;}
.ws93d_c00001{word-spacing:449.202780px;}
.ws963_c00001{word-spacing:460.402380px;}
.ws366_c00001{word-spacing:598.273668px;}
.ws1444_c00001{word-spacing:612.360000px;}
.ws344_c00001{word-spacing:640.554804px;}
.ws7e7_c00001{word-spacing:862.424136px;}
.ws571_c00001{word-spacing:1085.722164px;}
.ws570_c00001{word-spacing:1129.690476px;}
.ws150_c00001{word-spacing:1212.636420px;}
._1b1_c00001{margin-left:-798.909912px;}
._23b_c00001{margin-left:-354.245832px;}
._1bb_c00001{margin-left:-276.478596px;}
._25b_c00001{margin-left:-268.301232px;}
._264_c00001{margin-left:-265.098024px;}
._1e6_c00001{margin-left:-245.794680px;}
._269_c00001{margin-left:-243.867168px;}
._27c_c00001{margin-left:-238.660920px;}
._1cc_c00001{margin-left:-237.404448px;}
._1dd_c00001{margin-left:-234.129024px;}
._267_c00001{margin-left:-229.098024px;}
._256_c00001{margin-left:-225.364032px;}
._2ac_c00001{margin-left:-223.891920px;}
._29c_c00001{margin-left:-218.520000px;}
._1e4_c00001{margin-left:-217.021896px;}
._2a4_c00001{margin-left:-215.112960px;}
._1dc_c00001{margin-left:-205.901352px;}
._138_c00001{margin-left:-202.037184px;}
._ee_c00001{margin-left:-198.035280px;}
._ef_c00001{margin-left:-196.855020px;}
._2d2_c00001{margin-left:-186.120324px;}
._1e5_c00001{margin-left:-184.259772px;}
._30b_c00001{margin-left:-182.706264px;}
._2cc_c00001{margin-left:-180.118296px;}
._136_c00001{margin-left:-173.488392px;}
._2d9_c00001{margin-left:-171.500796px;}
._1b7_c00001{margin-left:-169.870716px;}
._280_c00001{margin-left:-166.660920px;}
._353_c00001{margin-left:-150.120576px;}
._2e7_c00001{margin-left:-147.120444px;}
._290_c00001{margin-left:-145.781712px;}
._30a_c00001{margin-left:-144.253296px;}
._2ca_c00001{margin-left:-143.112960px;}
._137_c00001{margin-left:-140.383692px;}
._1c1_c00001{margin-left:-130.191228px;}
._271_c00001{margin-left:-128.620800px;}
._334_c00001{margin-left:-125.283996px;}
._32c_c00001{margin-left:-124.045884px;}
._352_c00001{margin-left:-122.400000px;}
._337_c00001{margin-left:-120.117600px;}
._341_c00001{margin-left:-115.553520px;}
._1d7_c00001{margin-left:-113.104440px;}
._32a_c00001{margin-left:-109.241640px;}
._24a_c00001{margin-left:-108.069156px;}
._38c_c00001{margin-left:-94.039200px;}
._249_c00001{margin-left:-90.522684px;}
._33f_c00001{margin-left:-82.442232px;}
._32b_c00001{margin-left:-78.137964px;}
._329_c00001{margin-left:-76.598964px;}
._332_c00001{margin-left:-74.812392px;}
._32d_c00001{margin-left:-72.101916px;}
._246_c00001{margin-left:-68.070204px;}
._32e_c00001{margin-left:-67.063860px;}
._21b_c00001{margin-left:-65.422584px;}
._ff_c00001{margin-left:-64.006056px;}
._147_c00001{margin-left:-61.996068px;}
._254_c00001{margin-left:-54.599184px;}
._26f_c00001{margin-left:-49.317768px;}
._242_c00001{margin-left:-44.827200px;}
._243_c00001{margin-left:-42.197796px;}
._7c_c00001{margin-left:-39.873600px;}
._f0_c00001{margin-left:-38.855556px;}
._248_c00001{margin-left:-37.080000px;}
._336_c00001{margin-left:-35.755200px;}
._33c_c00001{margin-left:-34.465032px;}
._23f_c00001{margin-left:-31.680000px;}
._150_c00001{margin-left:-29.988000px;}
._125_c00001{margin-left:-28.843200px;}
._77_c00001{margin-left:-27.581796px;}
._244_c00001{margin-left:-25.862400px;}
._333_c00001{margin-left:-24.765984px;}
._32f_c00001{margin-left:-23.759424px;}
._247_c00001{margin-left:-22.505796px;}
._1b8_c00001{margin-left:-20.240604px;}
._80_c00001{margin-left:-19.002204px;}
._241_c00001{margin-left:-17.964000px;}
._23d_c00001{margin-left:-15.566400px;}
._13c_c00001{margin-left:-14.441796px;}
._214_c00001{margin-left:-12.501396px;}
._262_c00001{margin-left:-10.983276px;}
._5b_c00001{margin-left:-9.194400px;}
._1f4_c00001{margin-left:-6.292800px;}
._1f5_c00001{margin-left:-5.241600px;}
._89_c00001{margin-left:-3.412800px;}
._4_c00001{margin-left:-2.154204px;}
._3_c00001{margin-left:-1.100196px;}
._0_c00001{width:1.307880px;}
._44_c00001{width:3.153600px;}
._f6_c00001{width:4.680000px;}
._7_c00001{width:5.853600px;}
._42_c00001{width:7.358184px;}
._8_c00001{width:8.640000px;}
._3c_c00001{width:10.440000px;}
._43_c00001{width:11.880000px;}
._35_c00001{width:13.062168px;}
._6_c00001{width:14.760000px;}
._f7_c00001{width:15.840000px;}
._23e_c00001{width:16.920000px;}
._91_c00001{width:18.345672px;}
._5_c00001{width:19.959804px;}
._5a_c00001{width:22.116240px;}
._24f_c00001{width:23.308920px;}
._de_c00001{width:24.461244px;}
._331_c00001{width:25.504632px;}
._22e_c00001{width:27.132660px;}
._240_c00001{width:28.389600px;}
._20e_c00001{width:29.520000px;}
._8b_c00001{width:31.119804px;}
._23c_c00001{width:32.803200px;}
._8f_c00001{width:34.183224px;}
._123_c00001{width:36.000000px;}
._c5_c00001{width:37.440360px;}
._1e9_c00001{width:40.291200px;}
._245_c00001{width:41.904000px;}
._8e_c00001{width:43.355628px;}
._8c_c00001{width:44.434152px;}
._2cb_c00001{width:45.870912px;}
._2a_c00001{width:47.275200px;}
._394_c00001{width:48.433428px;}
._1e_c00001{width:49.450896px;}
._a1_c00001{width:51.245064px;}
._21_c00001{width:52.468920px;}
._261_c00001{width:53.892900px;}
._45_c00001{width:55.164168px;}
._25d_c00001{width:56.256948px;}
._9_c00001{width:57.488400px;}
._a9_c00001{width:58.810896px;}
._c_c00001{width:59.940000px;}
._ab_c00001{width:61.828920px;}
._a2_c00001{width:63.579888px;}
._389_c00001{width:64.633428px;}
._4b_c00001{width:65.791512px;}
._d0_c00001{width:67.044168px;}
._92_c00001{width:68.188104px;}
._29_c00001{width:69.909444px;}
._16e_c00001{width:71.700120px;}
._3d_c00001{width:73.130472px;}
._ec_c00001{width:74.556720px;}
._7d_c00001{width:76.044168px;}
._259_c00001{width:77.099220px;}
._d8_c00001{width:78.282180px;}
._a3_c00001{width:79.920360px;}
._1cb_c00001{width:80.970336px;}
._1da_c00001{width:82.488420px;}
._82_c00001{width:83.907072px;}
._7e_c00001{width:85.788648px;}
._84_c00001{width:87.036372px;}
._24e_c00001{width:88.171200px;}
._1d_c00001{width:89.653428px;}
._18_c00001{width:91.210896px;}
._28f_c00001{width:92.710944px;}
._1a_c00001{width:94.228920px;}
._253_c00001{width:95.512644px;}
._fc_c00001{width:96.810048px;}
._144_c00001{width:98.561844px;}
._14_c00001{width:99.968400px;}
._55_c00001{width:101.276676px;}
._16_c00001{width:102.420000px;}
._1d3_c00001{width:103.667688px;}
._f5_c00001{width:105.059700px;}
._12d_c00001{width:106.830000px;}
._263_c00001{width:108.337104px;}
._1ce_c00001{width:109.821600px;}
._1c6_c00001{width:111.625776px;}
._1be_c00001{width:112.950000px;}
._fa_c00001{width:114.953724px;}
._fd_c00001{width:116.438220px;}
._12e_c00001{width:118.427688px;}
._95_c00001{width:119.683692px;}
._d6_c00001{width:120.761604px;}
._4a_c00001{width:121.812120px;}
._da_c00001{width:122.839884px;}
._159_c00001{width:124.372872px;}
._c3_c00001{width:125.384184px;}
._152_c00001{width:127.134252px;}
._d3_c00001{width:128.201220px;}
._fb_c00001{width:129.525840px;}
._250_c00001{width:130.936680px;}
._34_c00001{width:132.115752px;}
._71_c00001{width:133.619472px;}
._176_c00001{width:135.363636px;}
._2_c00001{width:136.708920px;}
._69_c00001{width:138.105900px;}
._130_c00001{width:140.189760px;}
._9e_c00001{width:141.585732px;}
._73_c00001{width:143.304120px;}
._131_c00001{width:145.692972px;}
._1bf_c00001{width:147.429612px;}
._2aa_c00001{width:148.982400px;}
._1c7_c00001{width:150.238728px;}
._172_c00001{width:151.998336px;}
._350_c00001{width:153.000000px;}
._f1_c00001{width:154.746684px;}
._145_c00001{width:156.221244px;}
._3b_c00001{width:157.864680px;}
._178_c00001{width:158.999292px;}
._1c5_c00001{width:161.080812px;}
._c7_c00001{width:162.738144px;}
._dd_c00001{width:164.723328px;}
._46_c00001{width:166.570992px;}
._1b2_c00001{width:167.799960px;}
._156_c00001{width:168.899256px;}
._1b3_c00001{width:170.301240px;}
._146_c00001{width:172.454076px;}
._d7_c00001{width:174.677796px;}
._f3_c00001{width:175.961124px;}
._317_c00001{width:177.024096px;}
._a8_c00001{width:178.910316px;}
._284_c00001{width:179.935668px;}
._139_c00001{width:180.974592px;}
._339_c00001{width:182.244888px;}
._f2_c00001{width:183.766608px;}
._216_c00001{width:185.656428px;}
._cf_c00001{width:188.036640px;}
._c4_c00001{width:189.788472px;}
._251_c00001{width:191.414160px;}
._88_c00001{width:192.705732px;}
._1c_c00001{width:194.616000px;}
._1c9_c00001{width:195.660864px;}
._ed_c00001{width:196.696548px;}
._68_c00001{width:197.858988px;}
._33b_c00001{width:199.149480px;}
._e8_c00001{width:200.752632px;}
._1b_c00001{width:202.723200px;}
._200_c00001{width:203.780844px;}
._49_c00001{width:204.880212px;}
._1ca_c00001{width:206.445384px;}
._224_c00001{width:208.288800px;}
._30_c00001{width:210.242628px;}
._1c8_c00001{width:211.766328px;}
._335_c00001{width:213.284340px;}
._9f_c00001{width:214.676640px;}
._320_c00001{width:216.949572px;}
._52_c00001{width:218.661660px;}
._30f_c00001{width:219.787200px;}
._211_c00001{width:221.456448px;}
._303_c00001{width:222.702552px;}
._d5_c00001{width:223.988832px;}
._19f_c00001{width:226.304784px;}
._272_c00001{width:227.512728px;}
._7f_c00001{width:228.695544px;}
._313_c00001{width:230.179248px;}
._90_c00001{width:231.233904px;}
._19e_c00001{width:232.380000px;}
._1b5_c00001{width:233.624484px;}
._38e_c00001{width:235.314072px;}
._1b4_c00001{width:236.835360px;}
._316_c00001{width:237.899880px;}
._ca_c00001{width:239.156640px;}
._175_c00001{width:240.626700px;}
._174_c00001{width:242.247348px;}
._343_c00001{width:243.529884px;}
._1ab_c00001{width:244.800000px;}
._93_c00001{width:245.930688px;}
._2f7_c00001{width:247.129308px;}
._1d9_c00001{width:248.446656px;}
._1a6_c00001{width:249.598620px;}
._31_c00001{width:251.015760px;}
._340_c00001{width:252.728856px;}
._1f6_c00001{width:254.141028px;}
._198_c00001{width:255.392928px;}
._d9_c00001{width:256.711572px;}
._25c_c00001{width:257.845284px;}
._265_c00001{width:259.387200px;}
._285_c00001{width:260.645256px;}
._124_c00001{width:261.753372px;}
._129_c00001{width:264.653136px;}
._12_c00001{width:266.092632px;}
._1d4_c00001{width:267.354216px;}
._13a_c00001{width:269.336712px;}
._143_c00001{width:270.417564px;}
._153_c00001{width:272.568096px;}
._35d_c00001{width:273.661884px;}
._1f8_c00001{width:274.845528px;}
._1b6_c00001{width:275.954472px;}
._b0_c00001{width:277.849008px;}
._4f_c00001{width:279.383256px;}
._375_c00001{width:281.363472px;}
._165_c00001{width:282.493440px;}
._182_c00001{width:284.936292px;}
._2da_c00001{width:286.024572px;}
._27d_c00001{width:287.107200px;}
._1c0_c00001{width:288.363348px;}
._298_c00001{width:290.340000px;}
._173_c00001{width:291.617820px;}
._310_c00001{width:293.040000px;}
._81_c00001{width:294.089976px;}
._2b_c00001{width:295.804800px;}
._21c_c00001{width:297.505692px;}
._312_c00001{width:299.013516px;}
._c2_c00001{width:300.495456px;}
._7a_c00001{width:301.700484px;}
._201_c00001{width:302.917068px;}
._207_c00001{width:304.366428px;}
._177_c00001{width:306.256356px;}
._34c_c00001{width:307.469448px;}
._33e_c00001{width:308.843064px;}
._2e1_c00001{width:310.264524px;}
._24_c00001{width:311.948568px;}
._197_c00001{width:312.991812px;}
._19b_c00001{width:314.546580px;}
._1d5_c00001{width:315.696960px;}
._19d_c00001{width:317.600064px;}
._18a_c00001{width:319.568400px;}
._83_c00001{width:321.309072px;}
._17c_c00001{width:323.453736px;}
._28c_c00001{width:324.672984px;}
._25a_c00001{width:325.683360px;}
._25e_c00001{width:327.014568px;}
._1c3_c00001{width:328.541796px;}
._e7_c00001{width:330.250896px;}
._32_c00001{width:331.725348px;}
._2f6_c00001{width:332.997300px;}
._47_c00001{width:334.097244px;}
._270_c00001{width:335.260800px;}
._d4_c00001{width:336.511512px;}
._d1_c00001{width:337.640328px;}
._257_c00001{width:338.894568px;}
._1_c00001{width:340.448400px;}
._20f_c00001{width:341.502984px;}
._180_c00001{width:342.743400px;}
._29b_c00001{width:344.019996px;}
._58_c00001{width:345.908880px;}
._eb_c00001{width:347.404032px;}
._1f7_c00001{width:349.105536px;}
._1cf_c00001{width:350.988336px;}
._319_c00001{width:352.040616px;}
._281_c00001{width:354.034116px;}
._54_c00001{width:355.132080px;}
._21a_c00001{width:356.229720px;}
._48_c00001{width:357.254064px;}
._35a_c00001{width:358.396920px;}
._209_c00001{width:359.881380px;}
._d2_c00001{width:361.515240px;}
._2dc_c00001{width:363.370896px;}
._9b_c00001{width:364.385304px;}
._210_c00001{width:365.621652px;}
._db_c00001{width:366.648660px;}
._79_c00001{width:367.824240px;}
._1db_c00001{width:368.987292px;}
._31a_c00001{width:370.710180px;}
._19_c00001{width:372.031200px;}
._157_c00001{width:374.168232px;}
._f8_c00001{width:376.284600px;}
._67_c00001{width:378.073800px;}
._2ba_c00001{width:379.196640px;}
._37_c00001{width:381.171528px;}
._1a0_c00001{width:382.860000px;}
._dc_c00001{width:388.247580px;}
._17f_c00001{width:389.452320px;}
._2c4_c00001{width:390.524544px;}
._11a_c00001{width:391.998960px;}
._17b_c00001{width:395.236584px;}
._59_c00001{width:396.583776px;}
._10_c00001{width:398.399508px;}
._2c_c00001{width:400.436640px;}
._1d8_c00001{width:401.723064px;}
._26_c00001{width:403.194888px;}
._e1_c00001{width:406.437696px;}
._17e_c00001{width:407.852604px;}
._b_c00001{width:409.118400px;}
._fe_c00001{width:410.686128px;}
._60_c00001{width:412.196112px;}
._1fa_c00001{width:414.291672px;}
._97_c00001{width:415.363032px;}
._65_c00001{width:416.429136px;}
._7b_c00001{width:418.630896px;}
._4e_c00001{width:419.714244px;}
._34a_c00001{width:420.924960px;}
._2b8_c00001{width:422.751888px;}
._2ce_c00001{width:423.986436px;}
._275_c00001{width:425.291400px;}
._2d_c00001{width:426.866112px;}
._99_c00001{width:428.644440px;}
._155_c00001{width:430.258392px;}
._1f3_c00001{width:432.073980px;}
._15_c00001{width:433.776168px;}
._20_c00001{width:435.356640px;}
._b8_c00001{width:436.583844px;}
._17d_c00001{width:438.084936px;}
._302_c00001{width:441.835740px;}
._4c_c00001{width:443.031912px;}
._255_c00001{width:446.146632px;}
._1a1_c00001{width:448.740000px;}
._13_c00001{width:449.950608px;}
._39_c00001{width:451.610424px;}
._206_c00001{width:452.714940px;}
._cd_c00001{width:453.910032px;}
._e2_c00001{width:455.412888px;}
._252_c00001{width:457.336224px;}
._122_c00001{width:458.566128px;}
._2fa_c00001{width:460.264284px;}
._283_c00001{width:462.541104px;}
._33d_c00001{width:465.505704px;}
._38_c00001{width:467.276688px;}
._342_c00001{width:468.635256px;}
._f_c00001{width:472.112640px;}
._171_c00001{width:473.894604px;}
._21f_c00001{width:475.058340px;}
._357_c00001{width:476.688888px;}
._8a_c00001{width:477.761796px;}
._212_c00001{width:479.475468px;}
._22f_c00001{width:480.546036px;}
._6c_c00001{width:482.124672px;}
._1f9_c00001{width:483.757668px;}
._df_c00001{width:484.923672px;}
._85_c00001{width:485.957376px;}
._141_c00001{width:487.916928px;}
._a6_c00001{width:489.273984px;}
._23a_c00001{width:491.448456px;}
._28a_c00001{width:492.760800px;}
._22c_c00001{width:493.991820px;}
._196_c00001{width:495.360828px;}
._6a_c00001{width:497.263896px;}
._167_c00001{width:499.278168px;}
._50_c00001{width:500.990400px;}
._51_c00001{width:502.393644px;}
._2ef_c00001{width:503.606736px;}
._34d_c00001{width:505.795896px;}
._cb_c00001{width:507.384828px;}
._140_c00001{width:509.646960px;}
._37d_c00001{width:512.074584px;}
._18d_c00001{width:515.645280px;}
._5c_c00001{width:516.718260px;}
._2f3_c00001{width:518.001516px;}
._31d_c00001{width:520.003980px;}
._27f_c00001{width:521.603064px;}
._374_c00001{width:523.116720px;}
._e5_c00001{width:524.876760px;}
._162_c00001{width:527.133600px;}
._18f_c00001{width:528.636816px;}
._9d_c00001{width:531.219816px;}
._a7_c00001{width:532.847016px;}
._2f_c00001{width:534.929076px;}
._2e9_c00001{width:536.256864px;}
._70_c00001{width:538.517952px;}
._126_c00001{width:541.440000px;}
._b5_c00001{width:542.787732px;}
._322_c00001{width:543.832956px;}
._166_c00001{width:545.703804px;}
._3a_c00001{width:547.782048px;}
._e_c00001{width:549.505008px;}
._94_c00001{width:551.547072px;}
._274_c00001{width:553.467528px;}
._2f2_c00001{width:554.518800px;}
._19c_c00001{width:555.660000px;}
._158_c00001{width:557.644032px;}
._378_c00001{width:559.582020px;}
._2d4_c00001{width:560.685672px;}
._1ea_c00001{width:563.272740px;}
._306_c00001{width:564.464772px;}
._15a_c00001{width:565.572240px;}
._53_c00001{width:566.857224px;}
._154_c00001{width:569.041272px;}
._2a8_c00001{width:570.151512px;}
._a5_c00001{width:572.124672px;}
._307_c00001{width:574.076664px;}
._1d6_c00001{width:575.428860px;}
._1c2_c00001{width:576.884808px;}
._289_c00001{width:577.950228px;}
._2f0_c00001{width:579.197448px;}
._31e_c00001{width:580.231512px;}
._87_c00001{width:582.339816px;}
._34e_c00001{width:583.814448px;}
._31f_c00001{width:584.882784px;}
._26c_c00001{width:586.408860px;}
._2d5_c00001{width:587.909196px;}
._31b_c00001{width:589.629348px;}
._17a_c00001{width:590.797404px;}
._2b1_c00001{width:592.774992px;}
._26d_c00001{width:594.116820px;}
._c8_c00001{width:595.930896px;}
._28e_c00001{width:596.987820px;}
._ae_c00001{width:598.126284px;}
._1a2_c00001{width:599.411700px;}
._168_c00001{width:601.615440px;}
._63_c00001{width:603.706212px;}
._128_c00001{width:604.744524px;}
._62_c00001{width:606.822336px;}
._349_c00001{width:608.560920px;}
._c9_c00001{width:611.048196px;}
._2ab_c00001{width:613.492920px;}
._199_c00001{width:614.550924px;}
._61_c00001{width:615.992832px;}
._78_c00001{width:618.023304px;}
._72_c00001{width:620.116920px;}
._2dd_c00001{width:621.559944px;}
._311_c00001{width:622.803672px;}
._215_c00001{width:624.916800px;}
._20a_c00001{width:626.112000px;}
._391_c00001{width:627.362784px;}
._6b_c00001{width:628.971192px;}
._16f_c00001{width:630.432072px;}
._1e3_c00001{width:632.383200px;}
._18b_c00001{width:634.005288px;}
._385_c00001{width:635.259816px;}
._1ac_c00001{width:636.336000px;}
._279_c00001{width:638.067528px;}
._142_c00001{width:640.030788px;}
._25_c00001{width:641.987424px;}
._276_c00001{width:643.696776px;}
._5d_c00001{width:644.914080px;}
._151_c00001{width:647.757756px;}
._12b_c00001{width:651.139200px;}
._393_c00001{width:652.258800px;}
._36_c00001{width:653.796144px;}
._a_c00001{width:656.616168px;}
._bf_c00001{width:658.747188px;}
._d_c00001{width:659.910168px;}
._5f_c00001{width:661.410504px;}
._315_c00001{width:662.576256px;}
._b7_c00001{width:666.410580px;}
._11_c00001{width:667.618128px;}
._24c_c00001{width:669.463200px;}
._395_c00001{width:670.652496px;}
._e9_c00001{width:671.971896px;}
._98_c00001{width:674.192376px;}
._e6_c00001{width:677.626128px;}
._102_c00001{width:680.104656px;}
._2f4_c00001{width:683.030916px;}
._38d_c00001{width:684.575280px;}
._e4_c00001{width:685.999476px;}
._344_c00001{width:687.040632px;}
._226_c00001{width:688.718160px;}
._2e3_c00001{width:691.708536px;}
._2b7_c00001{width:693.637272px;}
._164_c00001{width:694.794384px;}
._323_c00001{width:695.920068px;}
._222_c00001{width:697.140000px;}
._2bd_c00001{width:698.591412px;}
._355_c00001{width:700.419816px;}
._345_c00001{width:702.783360px;}
._57_c00001{width:703.953504px;}
._6d_c00001{width:705.569868px;}
._76_c00001{width:707.882256px;}
._2ee_c00001{width:709.942896px;}
._324_c00001{width:711.354384px;}
._1e8_c00001{width:714.225600px;}
._2f1_c00001{width:716.471532px;}
._5e_c00001{width:717.704892px;}
._24d_c00001{width:719.150400px;}
._191_c00001{width:720.993240px;}
._2e_c00001{width:722.565036px;}
._c6_c00001{width:724.879008px;}
._364_c00001{width:726.299604px;}
._ad_c00001{width:727.494408px;}
._2b4_c00001{width:730.055736px;}
._36d_c00001{width:731.822112px;}
._14c_c00001{width:733.145580px;}
._4d_c00001{width:735.075216px;}
._1a7_c00001{width:737.403948px;}
._325_c00001{width:738.878472px;}
._31c_c00001{width:740.119104px;}
._2fd_c00001{width:742.324464px;}
._348_c00001{width:744.363360px;}
._19a_c00001{width:746.258220px;}
._2a9_c00001{width:748.268352px;}
._1d0_c00001{width:751.210308px;}
._1ef_c00001{width:752.906196px;}
._1ee_c00001{width:754.526844px;}
._30c_c00001{width:758.108988px;}
._22_c00001{width:759.558924px;}
._2ae_c00001{width:761.344056px;}
._2bf_c00001{width:763.054992px;}
._e0_c00001{width:765.681336px;}
._2ec_c00001{width:767.390256px;}
._14f_c00001{width:768.715200px;}
._75_c00001{width:770.329908px;}
._346_c00001{width:771.716736px;}
._368_c00001{width:772.895736px;}
._29f_c00001{width:777.046788px;}
._18e_c00001{width:778.697532px;}
._30d_c00001{width:779.831784px;}
._149_c00001{width:780.933600px;}
._1f1_c00001{width:782.585136px;}
._321_c00001{width:784.182960px;}
._10e_c00001{width:785.802528px;}
._36f_c00001{width:787.361400px;}
._15c_c00001{width:788.385000px;}
._2e0_c00001{width:789.810876px;}
._387_c00001{width:792.343800px;}
._309_c00001{width:795.832200px;}
._af_c00001{width:798.903036px;}
._b1_c00001{width:800.882892px;}
._14d_c00001{width:802.405224px;}
._1ed_c00001{width:803.897316px;}
._370_c00001{width:805.768272px;}
._383_c00001{width:808.185420px;}
._cc_c00001{width:810.159264px;}
._26b_c00001{width:811.387908px;}
._2de_c00001{width:812.783232px;}
._2c8_c00001{width:815.015736px;}
._6f_c00001{width:819.193104px;}
._1a3_c00001{width:821.756700px;}
._2f5_c00001{width:823.216968px;}
._1a9_c00001{width:825.169284px;}
._366_c00001{width:826.321752px;}
._a0_c00001{width:829.277208px;}
._132_c00001{width:833.276592px;}
._18c_c00001{width:834.991920px;}
._e3_c00001{width:836.933688px;}
._ea_c00001{width:839.092824px;}
._27_c00001{width:841.171824px;}
._66_c00001{width:844.708356px;}
._2eb_c00001{width:846.067284px;}
._64_c00001{width:848.377944px;}
._38b_c00001{width:850.688280px;}
._377_c00001{width:851.818392px;}
._189_c00001{width:854.799588px;}
._361_c00001{width:857.495736px;}
._b6_c00001{width:859.181256px;}
._aa_c00001{width:861.008904px;}
._2c3_c00001{width:863.917272px;}
._12f_c00001{width:865.794960px;}
._ce_c00001{width:870.100344px;}
._2d6_c00001{width:871.757208px;}
._2b9_c00001{width:873.354456px;}
._301_c00001{width:875.573352px;}
._347_c00001{width:876.617460px;}
._1af_c00001{width:879.629760px;}
._2a6_c00001{width:881.834616px;}
._108_c00001{width:883.001880px;}
._208_c00001{width:884.209248px;}
._2df_c00001{width:885.541104px;}
._1a8_c00001{width:887.616936px;}
._21e_c00001{width:889.970400px;}
._29a_c00001{width:893.646720px;}
._34f_c00001{width:894.873456px;}
._2e2_c00001{width:897.175080px;}
._135_c00001{width:898.919424px;}
._1f2_c00001{width:900.092088px;}
._2d0_c00001{width:902.418984px;}
._382_c00001{width:903.779424px;}
._106_c00001{width:906.178464px;}
._365_c00001{width:908.951904px;}
._112_c00001{width:910.500192px;}
._134_c00001{width:912.780576px;}
._27a_c00001{width:913.946616px;}
._29e_c00001{width:916.850736px;}
._292_c00001{width:918.125028px;}
._1f0_c00001{width:919.450836px;}
._8d_c00001{width:920.641752px;}
._3f_c00001{width:924.089544px;}
._187_c00001{width:926.457264px;}
._2bc_c00001{width:930.904056px;}
._193_c00001{width:933.069600px;}
._327_c00001{width:934.161228px;}
._35c_c00001{width:935.194896px;}
._1a5_c00001{width:936.480132px;}
._119_c00001{width:937.642752px;}
._2af_c00001{width:938.699604px;}
._295_c00001{width:940.901724px;}
._282_c00001{width:942.699816px;}
._379_c00001{width:943.987932px;}
._41_c00001{width:948.924000px;}
._c0_c00001{width:950.766156px;}
._299_c00001{width:952.102440px;}
._14e_c00001{width:955.925388px;}
._2f8_c00001{width:957.252960px;}
._195_c00001{width:959.841180px;}
._113_c00001{width:962.347752px;}
._74_c00001{width:964.175148px;}
._192_c00001{width:965.664972px;}
._390_c00001{width:966.894336px;}
._384_c00001{width:972.957168px;}
._6e_c00001{width:974.274624px;}
._96_c00001{width:976.370760px;}
._225_c00001{width:978.652800px;}
._367_c00001{width:980.819604px;}
._185_c00001{width:982.073160px;}
._11f_c00001{width:983.534760px;}
._bc_c00001{width:985.818024px;}
._188_c00001{width:987.198624px;}
._308_c00001{width:988.854012px;}
._294_c00001{width:990.186552px;}
._22b_c00001{width:991.991844px;}
._2b3_c00001{width:994.339944px;}
._181_c00001{width:996.836868px;}
._11d_c00001{width:997.909776px;}
._304_c00001{width:1000.129212px;}
._2c9_c00001{width:1001.930472px;}
._234_c00001{width:1003.939956px;}
._1bc_c00001{width:1007.568000px;}
._23_c00001{width:1008.600012px;}
._30e_c00001{width:1010.109672px;}
._296_c00001{width:1012.352400px;}
._ac_c00001{width:1013.723820px;}
._1fe_c00001{width:1018.510896px;}
._28d_c00001{width:1021.788648px;}
._2c5_c00001{width:1022.939604px;}
._f4_c00001{width:1024.198308px;}
._111_c00001{width:1027.061676px;}
._2bb_c00001{width:1029.206736px;}
._184_c00001{width:1032.721704px;}
._186_c00001{width:1036.595448px;}
._34b_c00001{width:1038.063960px;}
._1b9_c00001{width:1039.139352px;}
._20b_c00001{width:1043.517600px;}
._1de_c00001{width:1045.800000px;}
._2a7_c00001{width:1051.669800px;}
._36a_c00001{width:1053.244584px;}
._2e6_c00001{width:1054.410876px;}
._388_c00001{width:1056.324960px;}
._133_c00001{width:1062.492876px;}
._239_c00001{width:1065.633660px;}
._38f_c00001{width:1068.468120px;}
._170_c00001{width:1070.385228px;}
._f9_c00001{width:1071.720000px;}
._183_c00001{width:1072.934856px;}
._380_c00001{width:1075.164120px;}
._2e4_c00001{width:1077.383232px;}
._15b_c00001{width:1078.926600px;}
._286_c00001{width:1080.903960px;}
._20d_c00001{width:1082.685600px;}
._2ea_c00001{width:1084.352112px;}
._2b2_c00001{width:1087.019928px;}
._392_c00001{width:1088.500752px;}
._10f_c00001{width:1090.339416px;}
._1a4_c00001{width:1091.561652px;}
._56_c00001{width:1094.716152px;}
._2a0_c00001{width:1096.452792px;}
._11e_c00001{width:1101.084444px;}
._3e_c00001{width:1103.001768px;}
._376_c00001{width:1106.214012px;}
._203_c00001{width:1108.800000px;}
._300_c00001{width:1111.845384px;}
._291_c00001{width:1116.850320px;}
._a4_c00001{width:1119.304188px;}
._2b0_c00001{width:1120.631904px;}
._1aa_c00001{width:1122.436800px;}
._2c7_c00001{width:1124.269632px;}
._2fc_c00001{width:1125.821664px;}
._40_c00001{width:1126.828656px;}
._33_c00001{width:1128.816000px;}
._110_c00001{width:1135.667988px;}
._277_c00001{width:1137.821400px;}
._14a_c00001{width:1143.403200px;}
._9a_c00001{width:1147.513824px;}
._2e5_c00001{width:1150.141104px;}
._c1_c00001{width:1154.425392px;}
._297_c00001{width:1155.632112px;}
._38a_c00001{width:1156.640040px;}
._2d7_c00001{width:1160.750196px;}
._1ec_c00001{width:1162.699560px;}
._190_c00001{width:1164.793860px;}
._35f_c00001{width:1166.749632px;}
._386_c00001{width:1168.027920px;}
._2d1_c00001{width:1169.985132px;}
._b2_c00001{width:1172.218176px;}
._161_c00001{width:1175.040000px;}
._1f_c00001{width:1176.213600px;}
._2c6_c00001{width:1179.964584px;}
._118_c00001{width:1184.455584px;}
._213_c00001{width:1186.320996px;}
._114_c00001{width:1187.650764px;}
._28_c00001{width:1192.179780px;}
._37f_c00001{width:1200.856572px;}
._27b_c00001{width:1205.703360px;}
._1fb_c00001{width:1208.258472px;}
._2c0_c00001{width:1209.589632px;}
._37a_c00001{width:1211.296572px;}
._9c_c00001{width:1212.465132px;}
._360_c00001{width:1214.459928px;}
._35e_c00001{width:1222.444584px;}
._bb_c00001{width:1225.616760px;}
._373_c00001{width:1229.205384px;}
._2e8_c00001{width:1232.634816px;}
._359_c00001{width:1234.237680px;}
._258_c00001{width:1236.721104px;}
._2ed_c00001{width:1238.076504px;}
._20c_c00001{width:1241.337600px;}
._2cf_c00001{width:1244.145132px;}
._1e7_c00001{width:1247.731200px;}
._26e_c00001{width:1249.869600px;}
._338_c00001{width:1251.927972px;}
._227_c00001{width:1254.161376px;}
._2a1_c00001{width:1259.453088px;}
._10d_c00001{width:1261.706472px;}
._86_c00001{width:1263.585132px;}
._b9_c00001{width:1264.598568px;}
._2d8_c00001{width:1265.947056px;}
._1ae_c00001{width:1269.244800px;}
._1e0_c00001{width:1274.212800px;}
._2fb_c00001{width:1275.412248px;}
._2ff_c00001{width:1279.546056px;}
._36c_c00001{width:1280.997792px;}
._2fe_c00001{width:1286.717256px;}
._2a3_c00001{width:1288.809216px;}
._2be_c00001{width:1290.911904px;}
._15f_c00001{width:1292.680800px;}
._305_c00001{width:1294.500816px;}
._36e_c00001{width:1295.952552px;}
._2c1_c00001{width:1297.361556px;}
._1fc_c00001{width:1300.833048px;}
._2b5_c00001{width:1304.265816px;}
._328_c00001{width:1306.710000px;}
._2d3_c00001{width:1311.413904px;}
._36b_c00001{width:1312.702920px;}
._1ff_c00001{width:1314.179892px;}
._b3_c00001{width:1316.951064px;}
._330_c00001{width:1322.462556px;}
._372_c00001{width:1323.604836px;}
._179_c00001{width:1332.417600px;}
._273_c00001{width:1335.189600px;}
._25f_c00001{width:1337.896800px;}
._223_c00001{width:1339.128000px;}
._b4_c00001{width:1340.874720px;}
._314_c00001{width:1344.240000px;}
._ba_c00001{width:1345.766580px;}
._17_c00001{width:1347.300000px;}
._37e_c00001{width:1349.139276px;}
._2cd_c00001{width:1353.876696px;}
._2b6_c00001{width:1355.770800px;}
._2f9_c00001{width:1360.362960px;}
._16a_c00001{width:1362.960000px;}
._37c_c00001{width:1365.020964px;}
._1fd_c00001{width:1366.508820px;}
._381_c00001{width:1369.535724px;}
._37b_c00001{width:1370.884284px;}
._2ad_c00001{width:1375.493904px;}
._33a_c00001{width:1377.799272px;}
._148_c00001{width:1381.737600px;}
._278_c00001{width:1389.780000px;}
._318_c00001{width:1390.989600px;}
._10c_c00001{width:1392.109344px;}
._268_c00001{width:1393.869600px;}
._287_c00001{width:1396.029600px;}
._369_c00001{width:1398.610800px;}
._371_c00001{width:1404.077256px;}
._288_c00001{width:1406.114136px;}
._230_c00001{width:1413.361476px;}
._2a2_c00001{width:1417.334508px;}
._35b_c00001{width:1425.888000px;}
._231_c00001{width:1429.734708px;}
._362_c00001{width:1431.705816px;}
._120_c00001{width:1434.681720px;}
._219_c00001{width:1440.388800px;}
._238_c00001{width:1442.896056px;}
._220_c00001{width:1444.622400px;}
._1e1_c00001{width:1450.324800px;}
._22d_c00001{width:1451.368296px;}
._101_c00001{width:1456.705404px;}
._266_c00001{width:1462.816800px;}
._354_c00001{width:1464.470172px;}
._1ad_c00001{width:1468.872000px;}
._1e2_c00001{width:1470.765600px;}
._205_c00001{width:1474.884000px;}
._293_c00001{width:1476.934344px;}
._237_c00001{width:1478.230020px;}
._363_c00001{width:1483.210800px;}
._29d_c00001{width:1491.601104px;}
._16b_c00001{width:1498.586400px;}
._bd_c00001{width:1507.498128px;}
._358_c00001{width:1518.610320px;}
._2c2_c00001{width:1526.050800px;}
._260_c00001{width:1534.081104px;}
._107_c00001{width:1541.367792px;}
._351_c00001{width:1548.916920px;}
._326_c00001{width:1552.269600px;}
._be_c00001{width:1553.571360px;}
._26a_c00001{width:1555.869600px;}
._202_c00001{width:1564.502400px;}
._27e_c00001{width:1576.921104px;}
._10b_c00001{width:1578.557052px;}
._115_c00001{width:1580.736960px;}
._1eb_c00001{width:1582.664724px;}
._109_c00001{width:1587.641184px;}
._28b_c00001{width:1590.069600px;}
._160_c00001{width:1627.336800px;}
._10a_c00001{width:1629.053352px;}
._204_c00001{width:1652.688000px;}
._2db_c00001{width:1654.731900px;}
._116_c00001{width:1666.137924px;}
._103_c00001{width:1674.471024px;}
._1df_c00001{width:1702.800000px;}
._2a5_c00001{width:1704.361104px;}
._356_c00001{width:1719.800280px;}
._218_c00001{width:1722.888000px;}
._104_c00001{width:1729.454472px;}
._228_c00001{width:1739.808972px;}
._105_c00001{width:1749.396276px;}
._229_c00001{width:1757.906208px;}
._221_c00001{width:1766.901600px;}
._100_c00001{width:1791.288000px;}
._12a_c00001{width:1836.905472px;}
._217_c00001{width:1853.193600px;}
._11c_c00001{width:1863.982152px;}
._236_c00001{width:1876.590324px;}
._169_c00001{width:1882.327824px;}
._194_c00001{width:1911.064536px;}
._11b_c00001{width:1913.892120px;}
._24b_c00001{width:1963.368000px;}
._235_c00001{width:2019.966552px;}
._21d_c00001{width:2028.052800px;}
._22a_c00001{width:2042.303580px;}
._232_c00001{width:2083.831956px;}
._233_c00001{width:2099.052576px;}
._13d_c00001{width:2165.760000px;}
._127_c00001{width:2232.561600px;}
._15d_c00001{width:2236.521000px;}
._121_c00001{width:2247.861024px;}
._13b_c00001{width:2253.981024px;}
._13e_c00001{width:2268.561600px;}
._1c4_c00001{width:2306.026656px;}
._117_c00001{width:2337.764040px;}
._16c_c00001{width:2404.088316px;}
._16d_c00001{width:2432.880000px;}
._1b0_c00001{width:2451.527208px;}
._15e_c00001{width:2460.960000px;}
._14b_c00001{width:2463.120000px;}
._1d1_c00001{width:2476.079400px;}
._12c_c00001{width:2479.679400px;}
._1d2_c00001{width:2482.560000px;}
._1cd_c00001{width:2495.519400px;}
._1ba_c00001{width:2501.639400px;}
._163_c00001{width:2506.680792px;}
._1bd_c00001{width:2527.560000px;}
._13f_c00001{width:2541.600000px;}
.fcd_c00001{color:rgb(166,166,166);}
.fc0_c00001{color:rgb(0,0,0);}
.fc6_c00001{color:rgb(140,140,140);}
.fc2_c00001{color:rgb(89,89,89);}
.fc8_c00001{color:rgb(89,89,89);}
.fc7_c00001{color:rgb(0,128,0);}
.fc9_c00001{color:rgb(0,128,0);}
.fcc_c00001{color:rgb(153,51,0);}
.fc3_c00001{color:rgb(255,0,0);}
.fca_c00001{color:rgb(154,51,0);}
.fc5_c00001{color:rgb(153,153,153);}
.fc1_c00001{color:rgb(0,0,255);}
.fc4_c00001{color:transparent;}
.fcb_c00001{color:rgb(0,112,192);}
.fs6_c00001{font-size:2.880000px;}
.fse_c00001{font-size:6.120000px;}
.fs9_c00001{font-size:11.880000px;}
.fsc_c00001{font-size:18.000000px;}
.fsa_c00001{font-size:24.120000px;}
.fsb_c00001{font-size:29.880000px;}
.fs1a_c00001{font-size:30.240000px;}
.fs7_c00001{font-size:36.000000px;}
.fs8_c00001{font-size:42.120000px;}
.fs1_c00001{font-size:47.880000px;}
.fs17_c00001{font-size:48.240000px;}
.fs3_c00001{font-size:54.000000px;}
.fs15_c00001{font-size:59.760000px;}
.fs0_c00001{font-size:60.120000px;}
.fs13_c00001{font-size:63.360000px;}
.fsd_c00001{font-size:64.800000px;}
.fs2_c00001{font-size:65.880000px;}
.fs19_c00001{font-size:66.240000px;}
.fs4_c00001{font-size:72.000000px;}
.fsf_c00001{font-size:76.094487px;}
.fs5_c00001{font-size:83.880000px;}
.fs14_c00001{font-size:84.240000px;}
.fs16_c00001{font-size:95.760000px;}
.fs18_c00001{font-size:96.120000px;}
.fs12_c00001{font-size:108.000000px;}
.fs1c_c00001{font-size:119.880000px;}
.fs10_c00001{font-size:120.240000px;}
.fs1d_c00001{font-size:144.000000px;}
.fs1b_c00001{font-size:155.880000px;}
.fs11_c00001{font-size:156.240000px;}
.y0_c00001{bottom:0.000000px;}
.y1a53_c00001{bottom:1.980000px;}
.y19f7_c00001{bottom:2.160000px;}
.y1ac3_c00001{bottom:2.340000px;}
.y297_c00001{bottom:2.610450px;}
.y1bd3_c00001{bottom:2.700000px;}
.y19ae_c00001{bottom:2.880000px;}
.y1dd6_c00001{bottom:3.060000px;}
.y1aaa_c00001{bottom:3.240000px;}
.y62c_c00001{bottom:3.240450px;}
.y19e4_c00001{bottom:3.420000px;}
.y1a9f_c00001{bottom:3.600000px;}
.y370e_c00001{bottom:3.600450px;}
.y35fc_c00001{bottom:3.600600px;}
.y1b00_c00001{bottom:3.780000px;}
.y4cd_c00001{bottom:3.870450px;}
.y1b83_c00001{bottom:3.960000px;}
.y198b_c00001{bottom:4.140000px;}
.y19a4_c00001{bottom:4.500000px;}
.y19de_c00001{bottom:4.680000px;}
.y1979_c00001{bottom:4.860000px;}
.y1ce4_c00001{bottom:5.040000px;}
.y1986_c00001{bottom:5.220000px;}
.y2d96_c00001{bottom:5.400000px;}
.y19c7_c00001{bottom:5.760000px;}
.y1a0a_c00001{bottom:5.940000px;}
.y1d0f_c00001{bottom:6.120000px;}
.y1acc_c00001{bottom:6.480000px;}
.y197f_c00001{bottom:6.660000px;}
.y1a48_c00001{bottom:7.560000px;}
.y1b49_c00001{bottom:7.740000px;}
.y31a9_c00001{bottom:7.920000px;}
.y19c5_c00001{bottom:8.100000px;}
.y1a08_c00001{bottom:8.280000px;}
.y1df5_c00001{bottom:8.460000px;}
.y1a95_c00001{bottom:8.820000px;}
.y1b4a_c00001{bottom:9.000000px;}
.y1c21_c00001{bottom:9.720000px;}
.y19f8_c00001{bottom:9.900000px;}
.y19c3_c00001{bottom:10.980000px;}
.y1a06_c00001{bottom:11.160000px;}
.y1aca_c00001{bottom:11.520000px;}
.y1ab6_c00001{bottom:11.700000px;}
.y19c4_c00001{bottom:12.240000px;}
.y1a07_c00001{bottom:12.420000px;}
.y1cc3_c00001{bottom:12.600000px;}
.y19f5_c00001{bottom:12.780000px;}
.y1d68_c00001{bottom:12.960000px;}
.y1d72_c00001{bottom:13.320000px;}
.y1d6a_c00001{bottom:13.500000px;}
.y1c1f_c00001{bottom:13.860000px;}
.y19f6_c00001{bottom:14.040000px;}
.y1ac7_c00001{bottom:14.400000px;}
.y1a54_c00001{bottom:14.580000px;}
.y1a4d_c00001{bottom:14.760000px;}
.y2e16_c00001{bottom:14.940000px;}
.y1d3e_c00001{bottom:15.120000px;}
.y1db8_c00001{bottom:15.300000px;}
.y1bb1_c00001{bottom:15.660000px;}
.y1bad_c00001{bottom:15.840000px;}
.y1ac8_c00001{bottom:16.020000px;}
.y1ab4_c00001{bottom:16.200000px;}
.y1df2_c00001{bottom:16.380000px;}
.y314e_c00001{bottom:16.560000px;}
.y3170_c00001{bottom:16.740000px;}
.y3034_c00001{bottom:16.920000px;}
.y2f81_c00001{bottom:17.460000px;}
.y2f8f_c00001{bottom:17.640000px;}
.y1de5_c00001{bottom:17.820000px;}
.y1df3_c00001{bottom:18.000000px;}
.y1b84_c00001{bottom:18.360000px;}
.y1aa0_c00001{bottom:18.540000px;}
.y31f5_c00001{bottom:19.080000px;}
.y310c_c00001{bottom:19.260000px;}
.y19ac_c00001{bottom:19.620000px;}
.y1d9f_c00001{bottom:20.160000px;}
.y1db7_c00001{bottom:20.340000px;}
.y2e15_c00001{bottom:20.520000px;}
.y2e19_c00001{bottom:20.700000px;}
.y332c_c00001{bottom:20.880000px;}
.y1b81_c00001{bottom:21.240000px;}
.y1a9d_c00001{bottom:21.420000px;}
.y1d2d_c00001{bottom:21.600000px;}
.y3177_c00001{bottom:21.780000px;}
.y1ca3_c00001{bottom:21.960000px;}
.y1d2f_c00001{bottom:22.140000px;}
.y1b82_c00001{bottom:22.500000px;}
.y1a9e_c00001{bottom:22.680000px;}
.y1d0a_c00001{bottom:22.860000px;}
.y1d0d_c00001{bottom:23.040000px;}
.y1d7b_c00001{bottom:23.220000px;}
.y1abe_c00001{bottom:23.760000px;}
.y1ac5_c00001{bottom:23.940000px;}
.y2fbe_c00001{bottom:24.660000px;}
.y1ca2_c00001{bottom:24.840000px;}
.y3261_c00001{bottom:25.200000px;}
.y1b9e_c00001{bottom:25.380000px;}
.y2db9_c00001{bottom:26.100000px;}
.y2d9a_c00001{bottom:26.460000px;}
.y3033_c00001{bottom:26.640000px;}
.y3137_c00001{bottom:26.820000px;}
.y1b7b_c00001{bottom:27.000000px;}
.y1bf6_c00001{bottom:27.180000px;}
.y1e57_c00001{bottom:27.360000px;}
.y31c8_c00001{bottom:27.540000px;}
.y1b9b_c00001{bottom:28.260000px;}
.y1abc_c00001{bottom:28.800000px;}
.y1a7c_c00001{bottom:28.980000px;}
.y1bd2_c00001{bottom:29.880000px;}
.y1bf5_c00001{bottom:30.060000px;}
.y1b9c_c00001{bottom:30.960000px;}
.y1b7e_c00001{bottom:31.140000px;}
.y1a50_c00001{bottom:31.320000px;}
.y1a4a_c00001{bottom:31.500000px;}
.y1ab9_c00001{bottom:31.680000px;}
.y1ac0_c00001{bottom:31.860000px;}
.y305a_c00001{bottom:32.040000px;}
.y1a41_c00001{bottom:32.220000px;}
.y1a20_c00001{bottom:32.400000px;}
.y1aea_c00001{bottom:32.940000px;}
.y1aba_c00001{bottom:33.300000px;}
.y1ac1_c00001{bottom:33.480000px;}
.y31da_c00001{bottom:33.660000px;}
.y1daf_c00001{bottom:34.020000px;}
.y1d96_c00001{bottom:34.200000px;}
.y1a3e_c00001{bottom:35.100000px;}
.y1a1c_c00001{bottom:35.280000px;}
.y31e9_c00001{bottom:35.460000px;}
.y332b_c00001{bottom:35.640000px;}
.y32ab_c00001{bottom:36.360000px;}
.y32a0_c00001{bottom:36.540000px;}
.y1e64_c00001{bottom:36.720000px;}
.y1e54_c00001{bottom:36.900000px;}
.y2dc0_c00001{bottom:37.080000px;}
.y1a3f_c00001{bottom:37.800000px;}
.y1a1d_c00001{bottom:37.980000px;}
.y1d1e_c00001{bottom:38.160000px;}
.y1d20_c00001{bottom:38.340000px;}
.y1d2b_c00001{bottom:38.520000px;}
.y3265_c00001{bottom:38.700000px;}
.y1dad_c00001{bottom:39.060000px;}
.y1d95_c00001{bottom:39.240000px;}
.y3129_c00001{bottom:40.320000px;}
.y3057_c00001{bottom:40.500000px;}
.y3182_c00001{bottom:40.680000px;}
.y3184_c00001{bottom:40.860000px;}
.y1978_c00001{bottom:41.040000px;}
.y31dc_c00001{bottom:41.580000px;}
.y31d6_c00001{bottom:41.760000px;}
.y312a_c00001{bottom:41.940000px;}
.y3058_c00001{bottom:42.120000px;}
.y308e_c00001{bottom:42.480000px;}
.y30b2_c00001{bottom:42.660000px;}
.y31e2_c00001{bottom:43.380000px;}
.y1ae1_c00001{bottom:43.560000px;}
.y328b_c00001{bottom:43.920000px;}
.y1d81_c00001{bottom:44.100000px;}
.y1c52_c00001{bottom:44.280000px;}
.y1ba7_c00001{bottom:44.460000px;}
.y1a02_c00001{bottom:44.820000px;}
.y19bf_c00001{bottom:45.000000px;}
.y30b1_c00001{bottom:45.540000px;}
.y31bc_c00001{bottom:45.720000px;}
.y3268_c00001{bottom:45.900000px;}
.y56_c00001{bottom:46.830450px;}
.y16c9_c00001{bottom:47.190108px;}
.y1475_c00001{bottom:47.190657px;}
.y1baa_c00001{bottom:47.340000px;}
.y1a01_c00001{bottom:47.700000px;}
.y19be_c00001{bottom:47.880000px;}
.y19e5_c00001{bottom:49.680000px;}
.y1daa_c00001{bottom:50.220000px;}
.y1d90_c00001{bottom:50.400000px;}
.y1a03_c00001{bottom:50.580000px;}
.y19c0_c00001{bottom:50.760000px;}
.y2fb1_c00001{bottom:51.120000px;}
.y2fa2_c00001{bottom:51.300000px;}
.y1b10_c00001{bottom:51.840000px;}
.y1afc_c00001{bottom:52.020000px;}
.y19e0_c00001{bottom:52.560000px;}
.y2f9d_c00001{bottom:53.100000px;}
.y2fad_c00001{bottom:54.000000px;}
.y2f9e_c00001{bottom:54.180000px;}
.y19e1_c00001{bottom:55.260000px;}
.y32aa_c00001{bottom:55.440000px;}
.y1d80_c00001{bottom:55.620000px;}
.y2f9f_c00001{bottom:55.800000px;}
.y2f9a_c00001{bottom:55.980000px;}
.y1f9d_c00001{bottom:57.360450px;}
.y1977_c00001{bottom:57.600000px;}
.y1d4e_c00001{bottom:57.780000px;}
.y1d89_c00001{bottom:58.140000px;}
.y31b7_c00001{bottom:59.760000px;}
.y31b9_c00001{bottom:59.940000px;}
.y1d8a_c00001{bottom:61.020000px;}
.y31d5_c00001{bottom:61.200000px;}
.y31e5_c00001{bottom:62.280000px;}
.y31d8_c00001{bottom:62.460000px;}
.y1dd7_c00001{bottom:63.360000px;}
.y31df_c00001{bottom:63.720000px;}
.y31e8_c00001{bottom:63.900000px;}
.y4_c00001{bottom:65.191107px;}
.y1cdd_c00001{bottom:65.700000px;}
.y1988_c00001{bottom:66.240000px;}
.y1d4b_c00001{bottom:66.600000px;}
.y16c8_c00001{bottom:67.260450px;}
.y1474_c00001{bottom:67.260999px;}
.y55_c00001{bottom:67.530450px;}
.y1cdc_c00001{bottom:68.580000px;}
.y2fab_c00001{bottom:70.200000px;}
.y1cde_c00001{bottom:71.460000px;}
.y1dd1_c00001{bottom:72.000000px;}
.y32f9_c00001{bottom:72.360000px;}
.y32ec_c00001{bottom:72.720000px;}
.y2fa8_c00001{bottom:73.080000px;}
.y2de5_c00001{bottom:74.520000px;}
.y2fa9_c00001{bottom:74.700000px;}
.y32f4_c00001{bottom:75.240000px;}
.y3173_c00001{bottom:77.040000px;}
.y1f9c_c00001{bottom:78.060450px;}
.y31cf_c00001{bottom:79.920000px;}
.y2f7b_c00001{bottom:80.640000px;}
.y31d2_c00001{bottom:81.180000px;}
.y1e18_c00001{bottom:84.600000px;}
.y2dd4_c00001{bottom:86.940000px;}
.y1e17_c00001{bottom:87.480000px;}
.y1d03_c00001{bottom:88.200000px;}
.y32ea_c00001{bottom:90.000000px;}
.y1e1c_c00001{bottom:90.360000px;}
.y1d02_c00001{bottom:91.080000px;}
.y1d07_c00001{bottom:93.960000px;}
.y3_c00001{bottom:103.350450px;}
.y3304_c00001{bottom:107.100000px;}
.y32fe_c00001{bottom:107.280000px;}
.y1a8f_c00001{bottom:107.640000px;}
.y314f_c00001{bottom:107.820000px;}
.y1976_c00001{bottom:107.940450px;}
.y3349_c00001{bottom:108.000000px;}
.y3112_c00001{bottom:108.180000px;}
.yc59_c00001{bottom:108.300450px;}
.y312f_c00001{bottom:108.360000px;}
.y30ae_c00001{bottom:108.540000px;}
.y3685_c00001{bottom:108.840450px;}
.y2751_c00001{bottom:109.020450px;}
.y2481_c00001{bottom:109.200450px;}
.y1c05_c00001{bottom:109.260000px;}
.y31cb_c00001{bottom:109.263960px;}
.y2b73_c00001{bottom:109.471341px;}
.y22a6_c00001{bottom:109.560450px;}
.y1a90_c00001{bottom:109.620000px;}
.y1038_c00001{bottom:109.650738px;}
.y33f5_c00001{bottom:109.830450px;}
.y3011_c00001{bottom:109.980000px;}
.y2707_c00001{bottom:110.010450px;}
.y2a22_c00001{bottom:110.100450px;}
.y1345_c00001{bottom:110.190000px;}
.y2a7d_c00001{bottom:110.190450px;}
.y377c_c00001{bottom:110.370600px;}
.y1b2a_c00001{bottom:110.520000px;}
.yf64_c00001{bottom:110.550450px;}
.y2124_c00001{bottom:110.640450px;}
.y3150_c00001{bottom:110.880000px;}
.y221e_c00001{bottom:110.910450px;}
.yc58_c00001{bottom:111.000450px;}
.y10cb_c00001{bottom:111.090450px;}
.y35c3_c00001{bottom:111.094155px;}
.y37e4_c00001{bottom:111.450450px;}
.y2c1c_c00001{bottom:111.453732px;}
.y382a_c00001{bottom:111.628830px;}
.y128c_c00001{bottom:111.718533px;}
.y56a_c00001{bottom:111.720450px;}
.y1c79_c00001{bottom:111.780000px;}
.y622_c00001{bottom:111.990450px;}
.y2a98_c00001{bottom:111.990648px;}
.yb5e_c00001{bottom:112.170450px;}
.y1cfc_c00001{bottom:112.320000px;}
.y351f_c00001{bottom:112.439226px;}
.y7c1_c00001{bottom:112.440600px;}
.y75d_c00001{bottom:112.530600px;}
.y20cc_c00001{bottom:112.620450px;}
.y188c_c00001{bottom:112.710450px;}
.y393d_c00001{bottom:112.800450px;}
.y2f95_c00001{bottom:112.863060px;}
.y1f70_c00001{bottom:112.890450px;}
.y28a3_c00001{bottom:112.891296px;}
.y3959_c00001{bottom:113.067012px;}
.y1037_c00001{bottom:113.070693px;}
.y30af_c00001{bottom:113.220000px;}
.y2c37_c00001{bottom:113.250450px;}
.yf22_c00001{bottom:113.340450px;}
.y11a3_c00001{bottom:113.340720px;}
.y445_c00001{bottom:113.430450px;}
.y1bc8_c00001{bottom:113.580000px;}
.y1216_c00001{bottom:113.610450px;}
.y2605_c00001{bottom:113.700450px;}
.y1ff_c00001{bottom:113.790600px;}
.y39dc_c00001{bottom:113.880450px;}
.y1ede_c00001{bottom:113.940000px;}
.y34ef_c00001{bottom:113.970450px;}
.y1543_c00001{bottom:114.150450px;}
.y2047_c00001{bottom:114.234762px;}
.y3793_c00001{bottom:114.236256px;}
.y34c5_c00001{bottom:114.239937px;}
.y319e_c00001{bottom:114.300000px;}
.y8c6_c00001{bottom:114.510450px;}
.y3012_c00001{bottom:114.660000px;}
.y91b_c00001{bottom:114.690450px;}
.y1a3d_c00001{bottom:114.840000px;}
.y273a_c00001{bottom:114.872736px;}
.y286a_c00001{bottom:114.958686px;}
.y332d_c00001{bottom:115.020000px;}
.y6b2_c00001{bottom:115.048092px;}
.y1f2b_c00001{bottom:115.049649px;}
.y1b2c_c00001{bottom:115.200000px;}
.y289_c00001{bottom:115.230450px;}
.y4f0_c00001{bottom:115.230495px;}
.y398c_c00001{bottom:115.318200px;}
.y9ea_c00001{bottom:115.320450px;}
.y13bc_c00001{bottom:115.409532px;}
.y3868_c00001{bottom:115.500162px;}
.ye9a_c00001{bottom:115.590450px;}
.y1068_c00001{bottom:115.590600px;}
.y1dda_c00001{bottom:115.743960px;}
.y93f_c00001{bottom:115.770324px;}
.y3fe_c00001{bottom:115.770450px;}
.y712_c00001{bottom:115.950450px;}
.y3589_c00001{bottom:116.130450px;}
.yf41_c00001{bottom:116.220450px;}
.y3087_c00001{bottom:116.280000px;}
.y1975_c00001{bottom:116.400450px;}
.y1c7a_c00001{bottom:116.460000px;}
.y881_c00001{bottom:116.580450px;}
.y1036_c00001{bottom:116.580639px;}
.y160b_c00001{bottom:116.670450px;}
.y3432_c00001{bottom:116.758962px;}
.y321a_c00001{bottom:116.767170px;}
.y14a_c00001{bottom:116.850600px;}
.yacc_c00001{bottom:117.029811px;}
.yba3_c00001{bottom:117.120600px;}
.y2a0b_c00001{bottom:117.297900px;}
.y33c_c00001{bottom:117.300450px;}
.y32ef_c00001{bottom:117.360000px;}
.yfe0_c00001{bottom:117.390450px;}
.y376c_c00001{bottom:117.391917px;}
.y38c4_c00001{bottom:117.480450px;}
.y1a91_c00001{bottom:117.540000px;}
.y1237_c00001{bottom:117.564561px;}
.y221d_c00001{bottom:117.570450px;}
.y1312_c00001{bottom:117.657894px;}
.y24fc_c00001{bottom:117.659127px;}
.y3172_c00001{bottom:117.720000px;}
.y24fb_c00001{bottom:117.749712px;}
.y2f9_c00001{bottom:117.750450px;}
.y1281_c00001{bottom:117.750909px;}
.yfd7_c00001{bottom:117.835050px;}
.y2974_c00001{bottom:117.840081px;}
.y1375_c00001{bottom:117.930450px;}
.ycf_c00001{bottom:118.020450px;}
.y1240_c00001{bottom:118.200000px;}
.y2e47_c00001{bottom:118.447020px;}
.y10c5_c00001{bottom:118.560450px;}
.y191e_c00001{bottom:118.591380px;}
.y3337_c00001{bottom:118.620000px;}
.y4ef_c00001{bottom:118.650450px;}
.y107b_c00001{bottom:118.650600px;}
.y3317_c00001{bottom:118.800000px;}
.y3843_c00001{bottom:118.828614px;}
.yda6_c00001{bottom:118.920450px;}
.y1d7f_c00001{bottom:118.980000px;}
.ya19_c00001{bottom:119.010450px;}
.y1142_c00001{bottom:119.100000px;}
.y3065_c00001{bottom:119.160000px;}
.y303d_c00001{bottom:119.167020px;}
.y2061_c00001{bottom:119.190450px;}
.y2798_c00001{bottom:119.280009px;}
.y1b2b_c00001{bottom:119.340000px;}
.y194f_c00001{bottom:119.346300px;}
.y2b72_c00001{bottom:119.371332px;}
.y35f7_c00001{bottom:119.454762px;}
.y240b_c00001{bottom:119.640000px;}
.y3650_c00001{bottom:119.640450px;}
.y3a55_c00001{bottom:119.643159px;}
.y2de4_c00001{bottom:119.700000px;}
.y39ae_c00001{bottom:119.726328px;}
.y499_c00001{bottom:119.730450px;}
.y36b8_c00001{bottom:119.736894px;}
.y35a2_c00001{bottom:119.814474px;}
.y781_c00001{bottom:119.820450px;}
.y6d4_c00001{bottom:119.910450px;}
.y166c_c00001{bottom:119.913111px;}
.y1035_c00001{bottom:120.000594px;}
.y325f_c00001{bottom:120.060000px;}
.y2cb3_c00001{bottom:120.088182px;}
.y2ac2_c00001{bottom:120.091296px;}
.y2d8f_c00001{bottom:120.240000px;}
.ydee_c00001{bottom:120.270450px;}
.y112c_c00001{bottom:120.361755px;}
.y2fe7_c00001{bottom:120.420000px;}
.y2fc3_c00001{bottom:120.434940px;}
.y233b_c00001{bottom:120.445005px;}
.y2171_c00001{bottom:120.450450px;}
.y35de_c00001{bottom:120.450459px;}
.y38df_c00001{bottom:120.538821px;}
.y3703_c00001{bottom:120.540600px;}
.yf48_c00001{bottom:120.630450px;}
.y1782_c00001{bottom:120.720450px;}
.y1fe_c00001{bottom:120.810450px;}
.y228b_c00001{bottom:120.987804px;}
.y80c_c00001{bottom:120.990600px;}
.y1bc9_c00001{bottom:121.140000px;}
.y38ab_c00001{bottom:121.157094px;}
.y33f1_c00001{bottom:121.171755px;}
.y29a6_c00001{bottom:121.258200px;}
.y1eaf_c00001{bottom:121.320000px;}
.y12f5_c00001{bottom:121.350450px;}
.y11b9_c00001{bottom:121.354635px;}
.y102c_c00001{bottom:121.354914px;}
.y2093_c00001{bottom:121.440450px;}
.y604_c00001{bottom:121.530450px;}
.y19e_c00001{bottom:121.620450px;}
.y36d5_c00001{bottom:121.621494px;}
.y207e_c00001{bottom:121.795374px;}
.y20fa_c00001{bottom:121.797729px;}
.y5bd_c00001{bottom:121.800450px;}
.y1680_c00001{bottom:121.890450px;}
.y2650_c00001{bottom:121.978200px;}
.y3421_c00001{bottom:122.156607px;}
.y2912_c00001{bottom:122.160450px;}
.y1ae4_c00001{bottom:122.220000px;}
.y27c7_c00001{bottom:122.340450px;}
.y2d64_c00001{bottom:122.371380px;}
.y524_c00001{bottom:122.430450px;}
.y224a_c00001{bottom:122.700450px;}
.y2579_c00001{bottom:122.703732px;}
.y2d44_c00001{bottom:122.710752px;}
.y2e1c_c00001{bottom:122.760000px;}
.y3a3d_c00001{bottom:122.799945px;}
.y2436_c00001{bottom:122.879550px;}
.y361_c00001{bottom:122.880450px;}
.y31ca_c00001{bottom:122.940000px;}
.yaf8_c00001{bottom:123.060450px;}
.y327e_c00001{bottom:123.120000px;}
.y37c3_c00001{bottom:123.150099px;}
.y1012_c00001{bottom:123.150450px;}
.y1530_c00001{bottom:123.151305px;}
.y647_c00001{bottom:123.240450px;}
.y3619_c00001{bottom:123.330162px;}
.y33_c00001{bottom:123.330450px;}
.y2d17_c00001{bottom:123.335130px;}
.y1f8c_c00001{bottom:123.339882px;}
.y3fd_c00001{bottom:123.420450px;}
.y1034_c00001{bottom:123.420549px;}
.y23b7_c00001{bottom:123.600450px;}
.yafb_c00001{bottom:123.600915px;}
.y2e7a_c00001{bottom:123.660000px;}
.y22a5_c00001{bottom:123.689199px;}
.yf14_c00001{bottom:123.690450px;}
.yf81_c00001{bottom:123.780450px;}
.y30eb_c00001{bottom:123.840000px;}
.y14e1_c00001{bottom:123.870450px;}
.y2a62_c00001{bottom:123.870600px;}
.y7e_c00001{bottom:123.960600px;}
.y590_c00001{bottom:124.140450px;}
.y9bc_c00001{bottom:124.230450px;}
.y39f_c00001{bottom:124.321260px;}
.y1e83_c00001{bottom:124.380000px;}
.y25ea_c00001{bottom:124.498650px;}
.y2021_c00001{bottom:124.499640px;}
.y164c_c00001{bottom:124.500450px;}
.y15b7_c00001{bottom:124.500600px;}
.y2f5c_c00001{bottom:124.920000px;}
.y91a_c00001{bottom:125.040450px;}
.y169d_c00001{bottom:125.040729px;}
.y3664_c00001{bottom:125.041053px;}
.y21ab_c00001{bottom:125.128362px;}
.y9e9_c00001{bottom:125.130450px;}
.y396f_c00001{bottom:125.308245px;}
.y127_c00001{bottom:125.310450px;}
.y2adb_c00001{bottom:125.400648px;}
.y4ee_c00001{bottom:125.490450px;}
.y8ee_c00001{bottom:125.491287px;}
.y128b_c00001{bottom:125.578596px;}
.y336f_c00001{bottom:125.640000px;}
.y2625_c00001{bottom:125.668812px;}
.y1344_c00001{bottom:125.670450px;}
.y2bf5_c00001{bottom:125.672016px;}
.y36f_c00001{bottom:125.760450px;}
.y859_c00001{bottom:125.850450px;}
.ya4_c00001{bottom:125.940450px;}
.y895_c00001{bottom:125.940600px;}
.y18e9_c00001{bottom:126.030231px;}
.ye60_c00001{bottom:126.030450px;}
.y252b_c00001{bottom:126.030699px;}
.y2854_c00001{bottom:126.120150px;}
.y319d_c00001{bottom:126.180000px;}
.y22bd_c00001{bottom:126.300450px;}
.y16b5_c00001{bottom:126.390450px;}
.y292b_c00001{bottom:126.481170px;}
.y1b78_c00001{bottom:126.540000px;}
.y2f94_c00001{bottom:126.720000px;}
.y24cc_c00001{bottom:126.747039px;}
.y2b8a_c00001{bottom:126.750450px;}
.y2ed7_c00001{bottom:126.900000px;}
.y349c_c00001{bottom:126.928200px;}
.y84f_c00001{bottom:126.930450px;}
.y1033_c00001{bottom:126.930495px;}
.y17a_c00001{bottom:127.020450px;}
.y21de_c00001{bottom:127.020594px;}
.y35c2_c00001{bottom:127.023831px;}
.yc29_c00001{bottom:127.110600px;}
.y46f_c00001{bottom:127.200450px;}
.y138e_c00001{bottom:127.200900px;}
.yd05_c00001{bottom:127.201080px;}
.y23e4_c00001{bottom:127.287450px;}
.yf9_c00001{bottom:127.290450px;}
.y41c_c00001{bottom:127.380450px;}
.yf47_c00001{bottom:127.380600px;}
.y2c1b_c00001{bottom:127.383408px;}
.y3730_c00001{bottom:127.466967px;}
.y239a_c00001{bottom:127.468821px;}
.yd5a_c00001{bottom:127.560099px;}
.yb6f_c00001{bottom:127.648839px;}
.y2cf3_c00001{bottom:127.650450px;}
.y2a97_c00001{bottom:127.830549px;}
.y113c_c00001{bottom:127.917606px;}
.y2a7c_c00001{bottom:128.010450px;}
.y3903_c00001{bottom:128.100450px;}
.y2001_c00001{bottom:128.104722px;}
.y27f3_c00001{bottom:128.187408px;}
.y16c7_c00001{bottom:128.370450px;}
.y25bc_c00001{bottom:128.370600px;}
.y3759_c00001{bottom:128.377011px;}
.y355d_c00001{bottom:128.464875px;}
.y3242_c00001{bottom:128.485800px;}
.y3538_c00001{bottom:128.539245px;}
.y1cf_c00001{bottom:128.550450px;}
.y2c6_c00001{bottom:128.550600px;}
.y2552_c00001{bottom:128.635050px;}
.y17db_c00001{bottom:128.730450px;}
.y20b5_c00001{bottom:128.817612px;}
.y2cc7_c00001{bottom:128.819127px;}
.y11c2_c00001{bottom:128.819811px;}
.y2c92_c00001{bottom:128.820162px;}
.y28a2_c00001{bottom:128.820972px;}
.ye1a_c00001{bottom:128.999610px;}
.y174a_c00001{bottom:129.000450px;}
.y2aec_c00001{bottom:129.000459px;}
.y19aa_c00001{bottom:129.060000px;}
.y157d_c00001{bottom:129.180450px;}
.y2f09_c00001{bottom:129.240000px;}
.y3867_c00001{bottom:129.270450px;}
.y29bb_c00001{bottom:129.270522px;}
.y2b71_c00001{bottom:129.271323px;}
.y29cd_c00001{bottom:129.354924px;}
.ya2e_c00001{bottom:129.360450px;}
.y987_c00001{bottom:129.360600px;}
.y2837_c00001{bottom:129.365247px;}
.y1dd9_c00001{bottom:129.420000px;}
.ye45_c00001{bottom:129.540600px;}
.y154d_c00001{bottom:129.630450px;}
.yd2f_c00001{bottom:129.630540px;}
.y22f7_c00001{bottom:129.718812px;}
.y3811_c00001{bottom:129.720450px;}
.y3923_c00001{bottom:129.723681px;}
.y1974_c00001{bottom:129.810162px;}
.y21ff_c00001{bottom:129.810450px;}
.y2c5e_c00001{bottom:129.899550px;}
.y26b9_c00001{bottom:129.900450px;}
.y1618_c00001{bottom:129.990486px;}
.y12bb_c00001{bottom:129.990600px;}
.y29e4_c00001{bottom:129.992439px;}
.y1002_c00001{bottom:130.080450px;}
.y919_c00001{bottom:130.170450px;}
.yb24_c00001{bottom:130.260450px;}
.y1032_c00001{bottom:130.350450px;}
.y214a_c00001{bottom:130.440000px;}
.y68a_c00001{bottom:130.440450px;}
.y377b_c00001{bottom:130.530567px;}
.y14bd_c00001{bottom:130.620600px;}
.y10cc_c00001{bottom:130.710600px;}
.y2739_c00001{bottom:130.712637px;}
.yacb_c00001{bottom:130.800099px;}
.y277c_c00001{bottom:130.807236px;}
.y21c_c00001{bottom:130.890450px;}
.y145f_c00001{bottom:131.070450px;}
.yc5a_c00001{bottom:131.160450px;}
.y9a7_c00001{bottom:131.250450px;}
.y1236_c00001{bottom:131.334849px;}
.y24a0_c00001{bottom:131.340000px;}
.y1311_c00001{bottom:131.428182px;}
.y2819_c00001{bottom:131.516922px;}
.y32cf_c00001{bottom:131.580000px;}
.yfd6_c00001{bottom:131.605338px;}
.y3d4_c00001{bottom:131.610450px;}
.yc36_c00001{bottom:131.700450px;}
.y32b2_c00001{bottom:131.760000px;}
.y3449_c00001{bottom:131.790162px;}
.y2fe6_c00001{bottom:131.940000px;}
.y2de8_c00001{bottom:132.120000px;}
.y1728_c00001{bottom:132.150450px;}
.y2ba5_c00001{bottom:132.238758px;}
.y162f_c00001{bottom:132.240600px;}
.y28c5_c00001{bottom:132.241593px;}
.y336b_c00001{bottom:132.300000px;}
.y26a7_c00001{bottom:132.326562px;}
.y351e_c00001{bottom:132.329928px;}
.y13dc_c00001{bottom:132.420450px;}
.y1ae3_c00001{bottom:132.480000px;}
.y2e46_c00001{bottom:132.484860px;}
.y288_c00001{bottom:132.600450px;}
.y312e_c00001{bottom:132.660000px;}
.y621_c00001{bottom:132.690450px;}
.y303c_c00001{bottom:132.843060px;}
.y8fc_c00001{bottom:132.870450px;}
.yc82_c00001{bottom:132.870600px;}
.y3473_c00001{bottom:132.956850px;}
.yfdf_c00001{bottom:132.960000px;}
.yd2e_c00001{bottom:133.050495px;}
.y569_c00001{bottom:133.140450px;}
.y2121_c00001{bottom:133.229718px;}
.y376b_c00001{bottom:133.231818px;}
.y7c0_c00001{bottom:133.320600px;}
.y30ac_c00001{bottom:133.380000px;}
.y3829_c00001{bottom:133.408758px;}
.y39ad_c00001{bottom:133.496616px;}
.y6ec_c00001{bottom:133.500450px;}
.y163b_c00001{bottom:133.500600px;}
.y1f6f_c00001{bottom:133.590450px;}
.y123f_c00001{bottom:133.680450px;}
.y1fb6_c00001{bottom:133.860450px;}
.y2fc2_c00001{bottom:133.930080px;}
.y25a1_c00001{bottom:133.946400px;}
.y34db_c00001{bottom:134.034924px;}
.y3792_c00001{bottom:134.036778px;}
.y1d50_c00001{bottom:134.100000px;}
.y17ac_c00001{bottom:134.220450px;}
.y38de_c00001{bottom:134.309109px;}
.y444_c00001{bottom:134.310450px;}
.y288a_c00001{bottom:134.400450px;}
.y2b18_c00001{bottom:134.490774px;}
.y3588_c00001{bottom:134.580450px;}
.y1edd_c00001{bottom:134.640000px;}
.yd7b_c00001{bottom:134.670450px;}
.y300f_c00001{bottom:134.820000px;}
.y1876_c00001{bottom:134.850450px;}
.y38aa_c00001{bottom:134.927382px;}
.y38c3_c00001{bottom:135.030450px;}
.y2a0a_c00001{bottom:135.117900px;}
.yc04_c00001{bottom:135.120600px;}
.y3859_c00001{bottom:135.210600px;}
.yf3a_c00001{bottom:135.300450px;}
.y1a40_c00001{bottom:135.360000px;}
.y25f_c00001{bottom:135.390450px;}
.ya50_c00001{bottom:135.480450px;}
.y3637_c00001{bottom:135.480846px;}
.y3a54_c00001{bottom:135.483060px;}
.y15e4_c00001{bottom:135.571365px;}
.y36b7_c00001{bottom:135.576795px;}
.y3a06_c00001{bottom:135.660450px;}
.y711_c00001{bottom:135.750000px;}
.y16ea_c00001{bottom:135.840450px;}
.yd04_c00001{bottom:135.840882px;}
.y191d_c00001{bottom:135.876960px;}
.y3336_c00001{bottom:135.900000px;}
.y34b0_c00001{bottom:136.020450px;}
.y2ac1_c00001{bottom:136.020972px;}
.y234_c00001{bottom:136.110450px;}
.yf6e_c00001{bottom:136.110600px;}
.yc33_c00001{bottom:136.290450px;}
.yd2d_c00001{bottom:136.470450px;}
.y188b_c00001{bottom:136.560450px;}
.y1c77_c00001{bottom:136.620000px;}
.y1eae_c00001{bottom:136.812600px;}
.y2869_c00001{bottom:136.829199px;}
.y54b_c00001{bottom:136.920450px;}
.y37c2_c00001{bottom:137.010162px;}
.y33b_c00001{bottom:137.010900px;}
.ycd0_c00001{bottom:137.012961px;}
.y22e3_c00001{bottom:137.100000px;}
.y3618_c00001{bottom:137.100450px;}
.y1cfb_c00001{bottom:137.160000px;}
.ydc7_c00001{bottom:137.190600px;}
.y880_c00001{bottom:137.280450px;}
.y36d4_c00001{bottom:137.461395px;}
.y8da_c00001{bottom:137.550450px;}
.y1a8c_c00001{bottom:137.700000px;}
.y3504_c00001{bottom:137.817660px;}
.y329d_c00001{bottom:137.887920px;}
.y1b75_c00001{bottom:138.060000px;}
.y1fd_c00001{bottom:138.090450px;}
.y2bc5_c00001{bottom:138.177900px;}
.y17eb_c00001{bottom:138.180450px;}
.y30ad_c00001{bottom:138.240000px;}
.y2f92_c00001{bottom:138.420000px;}
.y724_c00001{bottom:138.450450px;}
.y145e_c00001{bottom:138.630450px;}
.y2578_c00001{bottom:138.633408px;}
.y3a3c_c00001{bottom:138.729621px;}
.y1174_c00001{bottom:138.897561px;}
.y2aeb_c00001{bottom:138.900450px;}
.y7e4_c00001{bottom:138.990450px;}
.y37af_c00001{bottom:138.998730px;}
.y396e_c00001{bottom:139.078533px;}
.y2d8e_c00001{bottom:139.140000px;}
.y29a5_c00001{bottom:139.168650px;}
.y2b70_c00001{bottom:139.171314px;}
.y128a_c00001{bottom:139.348884px;}
.y112b_c00001{bottom:139.351665px;}
.y24fa_c00001{bottom:139.529640px;}
.y2973_c00001{bottom:139.620009px;}
.y2d63_c00001{bottom:139.656960px;}
.y1a8d_c00001{bottom:139.680000px;}
.y3319_c00001{bottom:139.860000px;}
.y264f_c00001{bottom:139.888650px;}
.ybc7_c00001{bottom:139.980450px;}
.y2465_c00001{bottom:139.980900px;}
.y1b29_c00001{bottom:140.040000px;}
.y2a21_c00001{bottom:140.070450px;}
.y664_c00001{bottom:140.160450px;}
.y33f0_c00001{bottom:140.161665px;}
.y18cb_c00001{bottom:140.250450px;}
.y183c_c00001{bottom:140.250600px;}
.y1721_c00001{bottom:140.340450px;}
.y1878_c00001{bottom:140.340600px;}
.y780_c00001{bottom:140.520450px;}
.y2e78_c00001{bottom:140.580000px;}
.y6d3_c00001{bottom:140.610450px;}
.y166b_c00001{bottom:140.612832px;}
.y3842_c00001{bottom:140.699127px;}
.y218d_c00001{bottom:140.702250px;}
.ybcf_c00001{bottom:140.879244px;}
.y2435_c00001{bottom:140.969550px;}
.y1dd0_c00001{bottom:141.120000px;}
.y2797_c00001{bottom:141.150522px;}
.y372f_c00001{bottom:141.237255px;}
.y2399_c00001{bottom:141.239109px;}
.y1343_c00001{bottom:141.240000px;}
.y2ada_c00001{bottom:141.240549px;}
.y1bc5_c00001{bottom:141.300000px;}
.y2358_c00001{bottom:141.330000px;}
.yd59_c00001{bottom:141.330387px;}
.y1c78_c00001{bottom:141.480000px;}
.yb6e_c00001{bottom:141.508902px;}
.yd95_c00001{bottom:141.510450px;}
.y39e_c00001{bottom:141.511071px;}
.y2bf4_c00001{bottom:141.511917px;}
.yf63_c00001{bottom:141.600450px;}
.y2853_c00001{bottom:141.600600px;}
.y113b_c00001{bottom:141.687894px;}
.y11a2_c00001{bottom:141.781116px;}
.y1ae5_c00001{bottom:141.840000px;}
.y2cb2_c00001{bottom:141.868110px;}
.y252a_c00001{bottom:141.870600px;}
.y1e49_c00001{bottom:142.020000px;}
.y11b8_c00001{bottom:142.054356px;}
.y102b_c00001{bottom:142.054635px;}
.yf80_c00001{bottom:142.140450px;}
.y152f_c00001{bottom:142.141215px;}
.y603_c00001{bottom:142.230450px;}
.y3663_c00001{bottom:142.230864px;}
.y233a_c00001{bottom:142.315518px;}
.y25e9_c00001{bottom:142.318650px;}
.y19d_c00001{bottom:142.320450px;}
.y292a_c00001{bottom:142.321071px;}
.y2f49_c00001{bottom:142.380000px;}
.y5bc_c00001{bottom:142.500450px;}
.y11c1_c00001{bottom:142.590099px;}
.y3684_c00001{bottom:142.590450px;}
.y1b77_c00001{bottom:142.740000px;}
.y1f2a_c00001{bottom:142.769892px;}
.yedb_c00001{bottom:142.770450px;}
.y228a_c00001{bottom:142.858317px;}
.ye19_c00001{bottom:142.859673px;}
.y2911_c00001{bottom:142.860450px;}
.y35c1_c00001{bottom:142.863732px;}
.y2d43_c00001{bottom:142.870032px;}
.y1ae2_c00001{bottom:142.920000px;}
.y2060_c00001{bottom:143.040450px;}
.y26f1_c00001{bottom:143.128650px;}
.y523_c00001{bottom:143.130450px;}
.yeac_c00001{bottom:143.220450px;}
.y2c1a_c00001{bottom:143.223309px;}
.y14b8_c00001{bottom:143.309199px;}
.y36ef_c00001{bottom:143.388480px;}
.y2a5e_c00001{bottom:143.399937px;}
.y194e_c00001{bottom:143.460000px;}
.y6b1_c00001{bottom:143.488488px;}
.y4ed_c00001{bottom:143.490450px;}
.y1f8b_c00001{bottom:143.499162px;}
.y20f9_c00001{bottom:143.577657px;}
.y360_c00001{bottom:143.580450px;}
.y75c_c00001{bottom:143.580600px;}
.y2248_c00001{bottom:143.670450px;}
.y1cba_c00001{bottom:143.820000px;}
.y13bb_c00001{bottom:143.849928px;}
.y1011_c00001{bottom:143.850450px;}
.y646_c00001{bottom:143.940450px;}
.y19fa_c00001{bottom:144.000000px;}
.y7d_c00001{bottom:144.120600px;}
.y1b28_c00001{bottom:144.180000px;}
.y93e_c00001{bottom:144.210720px;}
.y3758_c00001{bottom:144.216912px;}
.y355c_c00001{bottom:144.304776px;}
.yf13_c00001{bottom:144.390450px;}
.y3fc_c00001{bottom:144.480450px;}
.yd03_c00001{bottom:144.480684px;}
.yaca_c00001{bottom:144.570387px;}
.y266b_c00001{bottom:144.570450px;}
.y35dd_c00001{bottom:144.660450px;}
.y28a1_c00001{bottom:144.660873px;}
.y2ed6_c00001{bottom:144.900000px;}
.y1bc6_c00001{bottom:145.080000px;}
.y1235_c00001{bottom:145.105137px;}
.y58f_c00001{bottom:145.110450px;}
.y23e3_c00001{bottom:145.197900px;}
.y1542_c00001{bottom:145.200450px;}
.y2836_c00001{bottom:145.205148px;}
.y2f54_c00001{bottom:145.260000px;}
.y1310_c00001{bottom:145.288245px;}
.yfd5_c00001{bottom:145.375626px;}
.y2e79_c00001{bottom:145.440000px;}
.y325e_c00001{bottom:145.443960px;}
.y22a4_c00001{bottom:145.469127px;}
.y12ba_c00001{bottom:145.471050px;}
.y8c5_c00001{bottom:145.560450px;}
.y3922_c00001{bottom:145.563582px;}
.y918_c00001{bottom:145.740450px;}
.y3241_c00001{bottom:145.771380px;}
.y1c04_c00001{bottom:145.800000px;}
.y1ce_c00001{bottom:145.830450px;}
.y29e3_c00001{bottom:145.832340px;}
.y2e45_c00001{bottom:145.980000px;}
.y179_c00001{bottom:146.010450px;}
.y1809_c00001{bottom:146.100450px;}
.y32cd_c00001{bottom:146.160000px;}
.y8ed_c00001{bottom:146.191008px;}
.y141f_c00001{bottom:146.280450px;}
.y3351_c00001{bottom:146.340000px;}
.y2020_c00001{bottom:146.370153px;}
.y2551_c00001{bottom:146.455050px;}
.y36e_c00001{bottom:146.460450px;}
.y2738_c00001{bottom:146.552538px;}
.ya3_c00001{bottom:146.640450px;}
.y1067_c00001{bottom:146.640600px;}
.y303b_c00001{bottom:146.700000px;}
.y277b_c00001{bottom:146.736912px;}
.y1b76_c00001{bottom:146.880000px;}
.y14fd_c00001{bottom:146.910450px;}
.y8ae_c00001{bottom:147.000450px;}
.y1a42_c00001{bottom:147.060000px;}
.yafc_c00001{bottom:147.090450px;}
.y10cd_c00001{bottom:147.270654px;}
.y1f55_c00001{bottom:147.280773px;}
.y39ac_c00001{bottom:147.356679px;}
.y1a8e_c00001{bottom:147.600000px;}
.y1109_c00001{bottom:147.720450px;}
.y312d_c00001{bottom:147.780000px;}
.y2fc1_c00001{bottom:147.787020px;}
.y18e8_c00001{bottom:147.810159px;}
.yd2c_c00001{bottom:147.810450px;}
.y10e3_c00001{bottom:147.810900px;}
.y46e_c00001{bottom:147.900450px;}
.y149_c00001{bottom:147.900600px;}
.y21fe_c00001{bottom:147.989496px;}
.y2750_c00001{bottom:148.080450px;}
.y28c4_c00001{bottom:148.081494px;}
.y3010_c00001{bottom:148.140000px;}
.y38dd_c00001{bottom:148.169172px;}
.y184c_c00001{bottom:148.260450px;}
.yb04_c00001{bottom:148.350450px;}
.yfde_c00001{bottom:148.440450px;}
.y24cb_c00001{bottom:148.617552px;}
.y3390_c00001{bottom:148.625121px;}
.y30ea_c00001{bottom:148.680000px;}
.y38a9_c00001{bottom:148.787445px;}
.y2f8_c00001{bottom:148.800450px;}
.y21dd_c00001{bottom:148.800522px;}
.y1495_c00001{bottom:148.890450px;}
.y1374_c00001{bottom:148.980450px;}
.yce_c00001{bottom:149.070450px;}
.y376a_c00001{bottom:149.161494px;}
.y2b6f_c00001{bottom:149.161692px;}
.y123e_c00001{bottom:149.250000px;}
.y249f_c00001{bottom:149.250450px;}
.yc5b_c00001{bottom:149.250558px;}
.y2c5_c00001{bottom:149.250600px;}
.y3463_c00001{bottom:149.340450px;}
.y1cbb_c00001{bottom:149.400000px;}
.y17da_c00001{bottom:149.430450px;}
.y10c4_c00001{bottom:149.610450px;}
.y1891_c00001{bottom:149.700450px;}
.y170d_c00001{bottom:149.700600px;}
.y3958_c00001{bottom:149.877462px;}
.yda5_c00001{bottom:149.880450px;}
.y27f2_c00001{bottom:150.057921px;}
.y2949_c00001{bottom:150.058812px;}
.y27ed_c00001{bottom:150.059568px;}
.ya18_c00001{bottom:150.060450px;}
.y32ee_c00001{bottom:150.120000px;}
.y23b6_c00001{bottom:150.150450px;}
.ye5b_c00001{bottom:150.240450px;}
.y157b_c00001{bottom:150.241755px;}
.y32ce_c00001{bottom:150.300000px;}
.y2480_c00001{bottom:150.420450px;}
.y2706_c00001{bottom:150.510450px;}
.y32a5_c00001{bottom:150.660000px;}
.ya75_c00001{bottom:150.689172px;}
.y2cc6_c00001{bottom:150.689640px;}
.y1617_c00001{bottom:150.690207px;}
.y498_c00001{bottom:150.780450px;}
.y917_c00001{bottom:150.870450px;}
.yb23_c00001{bottom:150.960450px;}
.y25bb_c00001{bottom:150.960600px;}
.yc83_c00001{bottom:150.960861px;}
.y2046_c00001{bottom:151.045212px;}
.y29ba_c00001{bottom:151.050450px;}
.y689_c00001{bottom:151.140450px;}
.y710_c00001{bottom:151.230450px;}
.yded_c00001{bottom:151.320450px;}
.y3a53_c00001{bottom:151.322961px;}
.y1fec_c00001{bottom:151.410600px;}
.y36b6_c00001{bottom:151.506471px;}
.y21b_c00001{bottom:151.590450px;}
.y1fb5_c00001{bottom:151.680450px;}
.y16b4_c00001{bottom:151.680600px;}
.y2f93_c00001{bottom:151.740000px;}
.y25a0_c00001{bottom:151.766400px;}
.y17c6_c00001{bottom:151.770450px;}
.y9cf_c00001{bottom:151.860450px;}
.y2ac0_c00001{bottom:151.860873px;}
.y2f11_c00001{bottom:151.920000px;}
.y80b_c00001{bottom:152.040600px;}
.y398b_c00001{bottom:152.128650px;}
.y351d_c00001{bottom:152.130450px;}
.ya09_c00001{bottom:152.220600px;}
.y3617_c00001{bottom:152.310450px;}
.y2888_c00001{bottom:152.400450px;}
.y33a_c00001{bottom:152.580450px;}
.y37d7_c00001{bottom:152.670450px;}
.y3636_c00001{bottom:152.670657px;}
.y1749_c00001{bottom:152.760450px;}
.y2de7_c00001{bottom:152.820000px;}
.y396d_c00001{bottom:152.848821px;}
.y3d3_c00001{bottom:152.850450px;}
.y167f_c00001{bottom:152.940450px;}
.y1bc7_c00001{bottom:153.000000px;}
.y2a09_c00001{bottom:153.028350px;}
.y1289_c00001{bottom:153.119172px;}
.yd02_c00001{bottom:153.120486px;}
.y191c_c00001{bottom:153.162540px;}
.y3335_c00001{bottom:153.180000px;}
.y3111_c00001{bottom:153.183060px;}
.y2bd5_c00001{bottom:153.210600px;}
.y287_c00001{bottom:153.300450px;}
.y36d3_c00001{bottom:153.301296px;}
.y32c4_c00001{bottom:153.360000px;}
.y2818_c00001{bottom:153.387435px;}
.y620_c00001{bottom:153.390450px;}
.y3431_c00001{bottom:153.569412px;}
.yb5d_c00001{bottom:153.570450px;}
.y28e3_c00001{bottom:153.660450px;}
.y15e5_c00001{bottom:153.840450px;}
.y19fb_c00001{bottom:153.900000px;}
.y3791_c00001{bottom:153.927480px;}
.y1280_c00001{bottom:153.930450px;}
.y7bf_c00001{bottom:154.020600px;}
.y1edc_c00001{bottom:154.080000px;}
.y2ba4_c00001{bottom:154.109271px;}
.y568_c00001{bottom:154.110450px;}
.y1644_c00001{bottom:154.200450px;}
.y1f6e_c00001{bottom:154.290450px;}
.y32_c00001{bottom:154.380450px;}
.y3064_c00001{bottom:154.440000px;}
.y15e3_c00001{bottom:154.470690px;}
.y2577_c00001{bottom:154.473309px;}
.y3a3b_c00001{bottom:154.569522px;}
.y31f4_c00001{bottom:154.620000px;}
.y2a3b_c00001{bottom:154.740450px;}
.y230e_c00001{bottom:154.830450px;}
.y14e0_c00001{bottom:154.920450px;}
.y3219_c00001{bottom:154.926513px;}
.y3086_c00001{bottom:154.980000px;}
.y372e_c00001{bottom:155.007543px;}
.y443_c00001{bottom:155.010450px;}
.y2398_c00001{bottom:155.099172px;}
.y2120_c00001{bottom:155.100231px;}
.yab0_c00001{bottom:155.100450px;}
.y3828_c00001{bottom:155.188686px;}
.yd58_c00001{bottom:155.190450px;}
.y38c2_c00001{bottom:155.191023px;}
.yb6d_c00001{bottom:155.279190px;}
.y9bb_c00001{bottom:155.280450px;}
.y2edd_c00001{bottom:155.340000px;}
.y1001_c00001{bottom:155.370450px;}
.y113a_c00001{bottom:155.458182px;}
.y1472_c00001{bottom:155.460450px;}
.y164b_c00001{bottom:155.550450px;}
.y15b6_c00001{bottom:155.550600px;}
.y2407_c00001{bottom:155.730450px;}
.y916_c00001{bottom:156.090450px;}
.y35f6_c00001{bottom:156.265212px;}
.y1fc_c00001{bottom:156.270450px;}
.y126_c00001{bottom:156.360450px;}
.y2ea8_c00001{bottom:156.420000px;}
.y11c0_c00001{bottom:156.450162px;}
.y3902_c00001{bottom:156.540600px;}
.ye18_c00001{bottom:156.629961px;}
.y35a1_c00001{bottom:156.713862px;}
.y1165_c00001{bottom:156.720135px;}
.y1342_c00001{bottom:156.720450px;}
.y2f5b_c00001{bottom:156.780000px;}
.y329c_c00001{bottom:156.782880px;}
.y2d62_c00001{bottom:156.942540px;}
.y29a4_c00001{bottom:156.988650px;}
.y820_c00001{bottom:156.990450px;}
.y894_c00001{bottom:156.990600px;}
.y25e_c00001{bottom:157.080450px;}
.y19a9_c00001{bottom:157.140000px;}
.y2852_c00001{bottom:157.170150px;}
.y393c_c00001{bottom:157.170450px;}
.y1cf9_c00001{bottom:157.320000px;}
.y26b8_c00001{bottom:157.350450px;}
.y216f_c00001{bottom:157.439937px;}
.y3a05_c00001{bottom:157.440450px;}
.y2bf3_c00001{bottom:157.441593px;}
.y1175_c00001{bottom:157.617426px;}
.y54a_c00001{bottom:157.620450px;}
.y264e_c00001{bottom:157.708650px;}
.yccf_c00001{bottom:157.712682px;}
.y2f33_c00001{bottom:157.860000px;}
.y18ad_c00001{bottom:157.890600px;}
.y84e_c00001{bottom:157.980450px;}
.y1dd5_c00001{bottom:158.040000px;}
.yc28_c00001{bottom:158.070600px;}
.y2929_c00001{bottom:158.160972px;}
.yf8_c00001{bottom:158.340450px;}
.y112a_c00001{bottom:158.341575px;}
.y30ab_c00001{bottom:158.400000px;}
.y41b_c00001{bottom:158.430450px;}
.y207d_c00001{bottom:158.605824px;}
.y2868_c00001{bottom:158.609127px;}
.y1875_c00001{bottom:158.610450px;}
.y107a_c00001{bottom:158.700600px;}
.y35c0_c00001{bottom:158.703633px;}
.y1c44_c00001{bottom:158.760000px;}
.y1444_c00001{bottom:158.790450px;}
.y39d_c00001{bottom:158.791062px;}
.y2434_c00001{bottom:158.880000px;}
.y1234_c00001{bottom:158.965200px;}
.y3420_c00001{bottom:158.967057px;}
.y130f_c00001{bottom:159.058533px;}
.y2b6e_c00001{bottom:159.061683px;}
.y2c19_c00001{bottom:159.063210px;}
.y325d_c00001{bottom:159.120000px;}
.y33ef_c00001{bottom:159.151575px;}
.yfd4_c00001{bottom:159.235689px;}
.y7c_c00001{bottom:159.240450px;}
.y2529_c00001{bottom:159.329496px;}
.y16c6_c00001{bottom:159.420450px;}
.y1e12_c00001{bottom:159.480000px;}
.y3662_c00001{bottom:159.510855px;}
.y1094_c00001{bottom:159.600324px;}
.y16e9_c00001{bottom:159.690450px;}
.y2d8d_c00001{bottom:159.840000px;}
.y87f_c00001{bottom:159.960600px;}
.yfa7_c00001{bottom:160.050450px;}
.y3757_c00001{bottom:160.056813px;}
.y1b25_c00001{bottom:160.200000px;}
.y25e8_c00001{bottom:160.229100px;}
.y20cb_c00001{bottom:160.230450px;}
.y355b_c00001{bottom:160.234452px;}
.y188a_c00001{bottom:160.320450px;}
.y2e18_c00001{bottom:160.380000px;}
.ya2d_c00001{bottom:160.410450px;}
.y986_c00001{bottom:160.410600px;}
.y13db_c00001{bottom:160.500450px;}
.y28a0_c00001{bottom:160.500774px;}
.y15ab_c00001{bottom:160.501215px;}
.y2f2a_c00001{bottom:160.560000px;}
.ye44_c00001{bottom:160.590600px;}
.y154c_c00001{bottom:160.680450px;}
.y2686_c00001{bottom:160.860450px;}
.y1c45_c00001{bottom:160.920000px;}
.y1ead_c00001{bottom:160.926300px;}
.y18ca_c00001{bottom:160.950450px;}
.y1765_c00001{bottom:161.040450px;}
.y12b9_c00001{bottom:161.040600px;}
.y2835_c00001{bottom:161.045049px;}
.y39ab_c00001{bottom:161.126967px;}
.y152e_c00001{bottom:161.131125px;}
.y77f_c00001{bottom:161.220450px;}
.y2247_c00001{bottom:161.220522px;}
.y24f9_c00001{bottom:161.309568px;}
.y6d2_c00001{bottom:161.310450px;}
.y166a_c00001{bottom:161.312553px;}
.y4ec_c00001{bottom:161.490450px;}
.y2972_c00001{bottom:161.490522px;}
.y3921_c00001{bottom:161.493258px;}
.y3858_c00001{bottom:161.580450px;}
.y1c75_c00001{bottom:161.640000px;}
.y2fc0_c00001{bottom:161.643960px;}
.yd01_c00001{bottom:161.670648px;}
.y29e2_c00001{bottom:161.762016px;}
.y21aa_c00001{bottom:161.938812px;}
.y38dc_c00001{bottom:161.939460px;}
.y2370_c00001{bottom:161.940450px;}
.y17ea_c00001{bottom:162.120600px;}
.y1cfa_c00001{bottom:162.180000px;}
.yfb7_c00001{bottom:162.210450px;}
.y2c36_c00001{bottom:162.300450px;}
.y602_c00001{bottom:162.390450px;}
.y2737_c00001{bottom:162.392439px;}
.y3841_c00001{bottom:162.479055px;}
.y2624_c00001{bottom:162.479262px;}
.y2f5a_c00001{bottom:162.540000px;}
.y38a8_c00001{bottom:162.557733px;}
.y277a_c00001{bottom:162.576813px;}
.y2d23_c00001{bottom:162.660450px;}
.y185a_c00001{bottom:162.750450px;}
.y11b7_c00001{bottom:162.754077px;}
.y102a_c00001{bottom:162.754356px;}
.y3702_c00001{bottom:162.840450px;}
.y2d42_c00001{bottom:162.940374px;}
.y23e2_c00001{bottom:163.017900px;}
.y19c_c00001{bottom:163.020450px;}
.y3240_c00001{bottom:163.056960px;}
.y1b73_c00001{bottom:163.080000px;}
.ybc8_c00001{bottom:163.200297px;}
.y5bb_c00001{bottom:163.200450px;}
.y162e_c00001{bottom:163.290600px;}
.y3537_c00001{bottom:163.369767px;}
.y9e8_c00001{bottom:163.470450px;}
.yf7f_c00001{bottom:163.560450px;}
.y1f8a_c00001{bottom:163.569504px;}
.y3350_c00001{bottom:163.620000px;}
.y2cb1_c00001{bottom:163.738623px;}
.y349b_c00001{bottom:163.738650px;}
.y10ce_c00001{bottom:163.740528px;}
.y2e1a_c00001{bottom:163.800000px;}
.y522_c00001{bottom:163.830450px;}
.y8fb_c00001{bottom:163.920450px;}
.ybd0_c00001{bottom:164.008911px;}
.yfdd_c00001{bottom:164.010000px;}
.y1cd_c00001{bottom:164.010450px;}
.y28c3_c00001{bottom:164.011170px;}
.y2339_c00001{bottom:164.095446px;}
.y1720_c00001{bottom:164.190450px;}
.y183b_c00001{bottom:164.190600px;}
.y2550_c00001{bottom:164.275050px;}
.y35f_c00001{bottom:164.280450px;}
.y1494_c00001{bottom:164.370450px;}
.y2796_c00001{bottom:164.370600px;}
.y10e4_c00001{bottom:164.371350px;}
.ya74_c00001{bottom:164.459460px;}
.y327d_c00001{bottom:164.520000px;}
.y6eb_c00001{bottom:164.550450px;}
.y163a_c00001{bottom:164.550600px;}
.y2289_c00001{bottom:164.638245px;}
.y3fb_c00001{bottom:164.640450px;}
.y3379_c00001{bottom:164.700000px;}
.y123d_c00001{bottom:164.730450px;}
.y1b27_c00001{bottom:164.880000px;}
.y1ae0_c00001{bottom:164.883060px;}
.y3769_c00001{bottom:165.001395px;}
.y1e44_c00001{bottom:165.060000px;}
.y14b7_c00001{bottom:165.179712px;}
.y2db8_c00001{bottom:165.240000px;}
.y58e_c00001{bottom:165.270450px;}
.y105d_c00001{bottom:165.360450px;}
.y2cf2_c00001{bottom:165.360594px;}
.y20f8_c00001{bottom:165.448170px;}
.y1973_c00001{bottom:165.450600px;}
.y2e76_c00001{bottom:165.600000px;}
.y20b4_c00001{bottom:165.628062px;}
.y178_c00001{bottom:165.630450px;}
.y2c91_c00001{bottom:165.630612px;}
.yd7a_c00001{bottom:165.720450px;}
.y1e82_c00001{bottom:165.780000px;}
.y1c02_c00001{bottom:165.960000px;}
.y2d16_c00001{bottom:166.084572px;}
.y29cc_c00001{bottom:166.165374px;}
.yc03_c00001{bottom:166.170600px;}
.y1c76_c00001{bottom:166.320000px;}
.y915_c00001{bottom:166.440450px;}
.y22f6_c00001{bottom:166.529262px;}
.ya4f_c00001{bottom:166.530450px;}
.y396c_c00001{bottom:166.708884px;}
.y2c5d_c00001{bottom:166.710000px;}
.y70f_c00001{bottom:166.800000px;}
.y205f_c00001{bottom:166.800450px;}
.y8ec_c00001{bottom:166.890729px;}
.y1288_c00001{bottom:166.979235px;}
.y8c4_c00001{bottom:166.980450px;}
.y3110_c00001{bottom:167.040000px;}
.y249e_c00001{bottom:167.070450px;}
.y233_c00001{bottom:167.160450px;}
.yf6d_c00001{bottom:167.160600px;}
.y1a3c_c00001{bottom:167.220000px;}
.yede_c00001{bottom:167.250450px;}
.yc5c_c00001{bottom:167.250486px;}
.y3a52_c00001{bottom:167.252637px;}
.y22a3_c00001{bottom:167.339640px;}
.ya2_c00001{bottom:167.340450px;}
.y17ed_c00001{bottom:167.340600px;}
.y36b5_c00001{bottom:167.346372px;}
.y32b5_c00001{bottom:167.400000px;}
.y39c8_c00001{bottom:167.520450px;}
.y194d_c00001{bottom:167.580000px;}
.y120e_c00001{bottom:167.700450px;}
.y2abf_c00001{bottom:167.700774px;}
.y1a89_c00001{bottom:167.760000px;}
.y2b19_c00001{bottom:167.880450px;}
.yb4d_c00001{bottom:167.970450px;}
.y339_c00001{bottom:168.060900px;}
.y201f_c00001{bottom:168.150081px;}
.y26cb_c00001{bottom:168.150450px;}
.ydc6_c00001{bottom:168.240600px;}
.y300d_c00001{bottom:168.300000px;}
.ya65_c00001{bottom:168.330450px;}
.y9a6_c00001{bottom:168.510450px;}
.y46d_c00001{bottom:168.600450px;}
.y3448_c00001{bottom:168.600612px;}
.y1c46_c00001{bottom:168.660000px;}
.y30e9_c00001{bottom:168.840000px;}
.y372d_c00001{bottom:168.867606px;}
.y2397_c00001{bottom:168.869460px;}
.y2092_c00001{bottom:168.870600px;}
.y2b6d_c00001{bottom:168.961674px;}
.y1b26_c00001{bottom:169.020000px;}
.yb6c_c00001{bottom:169.049478px;}
.yc84_c00001{bottom:169.051122px;}
.y26a6_c00001{bottom:169.137012px;}
.y37c1_c00001{bottom:169.230450px;}
.y36d2_c00001{bottom:169.230972px;}
.y157a_c00001{bottom:169.231665px;}
.y1139_c00001{bottom:169.318245px;}
.y2b17_c00001{bottom:169.320450px;}
.y32b0_c00001{bottom:169.380000px;}
.y723_c00001{bottom:169.500450px;}
.y32a3_c00001{bottom:169.560000px;}
.y259f_c00001{bottom:169.586400px;}
.yac9_c00001{bottom:169.590450px;}
.y18e7_c00001{bottom:169.680672px;}
.y1a8a_c00001{bottom:169.740000px;}
.y3472_c00001{bottom:169.767300px;}
.y27c6_c00001{bottom:169.770450px;}
.y2887_c00001{bottom:169.859640px;}
.y21fc_c00001{bottom:169.860009px;}
.y1808_c00001{bottom:169.860450px;}
.y37ae_c00001{bottom:169.868163px;}
.y2f10_c00001{bottom:169.920000px;}
.y2c4_c00001{bottom:169.950600px;}
.y3635_c00001{bottom:169.950648px;}
.y7e3_c00001{bottom:170.040450px;}
.y11bf_c00001{bottom:170.220450px;}
.y191b_c00001{bottom:170.268840px;}
.y2e77_c00001{bottom:170.280000px;}
.yd00_c00001{bottom:170.310450px;}
.y2576_c00001{bottom:170.313210px;}
.ye17_c00001{bottom:170.400249px;}
.y3a3a_c00001{bottom:170.409423px;}
.y3334_c00001{bottom:170.460000px;}
.y24ca_c00001{bottom:170.488065px;}
.y1f29_c00001{bottom:170.580306px;}
.y21df_c00001{bottom:170.580450px;}
.y182f_c00001{bottom:170.670450px;}
.y34da_c00001{bottom:170.845374px;}
.y2a08_c00001{bottom:170.848350px;}
.y247f_c00001{bottom:170.940450px;}
.y2000_c00001{bottom:170.944335px;}
.y1d4d_c00001{bottom:171.000000px;}
.y169c_c00001{bottom:171.030600px;}
.y2464_c00001{bottom:171.030900px;}
.y38c1_c00001{bottom:171.030924px;}
.y663_c00001{bottom:171.210450px;}
.y1f54_c00001{bottom:171.490638px;}
.y314d_c00001{bottom:171.540000px;}
.y914_c00001{bottom:171.570450px;}
.yb22_c00001{bottom:171.660450px;}
.y1dd4_c00001{bottom:171.720000px;}
.y27f1_c00001{bottom:171.837849px;}
.y27ec_c00001{bottom:171.839496px;}
.y688_c00001{bottom:171.840450px;}
.y1b74_c00001{bottom:171.900000px;}
.y6b0_c00001{bottom:171.928884px;}
.y21dc_c00001{bottom:172.020450px;}
.y184b_c00001{bottom:172.110450px;}
.y1fb4_c00001{bottom:172.200600px;}
.y2dba_c00001{bottom:172.260000px;}
.y13ba_c00001{bottom:172.290324px;}
.y21a_c00001{bottom:172.290450px;}
.y1799_c00001{bottom:172.380450px;}
.y19a8_c00001{bottom:172.440000px;}
.y2cc5_c00001{bottom:172.469568px;}
.y3587_c00001{bottom:172.470450px;}
.yd94_c00001{bottom:172.560450px;}
.y2dbb_c00001{bottom:172.620000px;}
.y3503_c00001{bottom:172.648182px;}
.yf62_c00001{bottom:172.650450px;}
.y2851_c00001{bottom:172.650600px;}
.y93d_c00001{bottom:172.651116px;}
.y1233_c00001{bottom:172.735488px;}
.y130e_c00001{bottom:172.828821px;}
.yfd3_c00001{bottom:173.005977px;}
.y17d9_c00001{bottom:173.100600px;}
.y1bc2_c00001{bottom:173.160000px;}
.y1341_c00001{bottom:173.280450px;}
.y2bf2_c00001{bottom:173.281494px;}
.y1e11_c00001{bottom:173.340000px;}
.y1890_c00001{bottom:173.460450px;}
.y170c_c00001{bottom:173.460600px;}
.y15e2_c00001{bottom:173.461125px;}
.y2de6_c00001{bottom:173.520000px;}
.y1727_c00001{bottom:173.550450px;}
.y218c_c00001{bottom:173.551800px;}
.y336a_c00001{bottom:173.700000px;}
.y3790_c00001{bottom:173.728002px;}
.yeda_c00001{bottom:173.820450px;}
.y1cb8_c00001{bottom:173.880000px;}
.y22e2_c00001{bottom:173.910450px;}
.ye7e_c00001{bottom:174.000450px;}
.y19f4_c00001{bottom:174.060000px;}
.y61f_c00001{bottom:174.090450px;}
.y2928_c00001{bottom:174.090648px;}
.y34ee_c00001{bottom:174.180450px;}
.y2d61_c00001{bottom:174.228120px;}
.y1c03_c00001{bottom:174.240000px;}
.y36ee_c00001{bottom:174.259110px;}
.y286_c00001{bottom:174.270450px;}
.y567_c00001{bottom:174.360450px;}
.y3171_c00001{bottom:174.420000px;}
.y3d2_c00001{bottom:174.450600px;}
.y2705_c00001{bottom:174.540600px;}
.y2ad9_c00001{bottom:174.630450px;}
.y75b_c00001{bottom:174.630600px;}
.y35bf_c00001{bottom:174.633309px;}
.y7be_c00001{bottom:174.720600px;}
.y2f91_c00001{bottom:174.780000px;}
.y29a3_c00001{bottom:174.808650px;}
.y39aa_c00001{bottom:174.897255px;}
.y2bc4_c00001{bottom:174.988350px;}
.y1f6d_c00001{bottom:174.990450px;}
.y2c18_c00001{bottom:174.992886px;}
.y2817_c00001{bottom:175.167363px;}
.y37d6_c00001{bottom:175.260450px;}
.y2fbf_c00001{bottom:175.320000px;}
.y1166_c00001{bottom:175.440000px;}
.yf12_c00001{bottom:175.440450px;}
.y2e1b_c00001{bottom:175.500000px;}
.y978_c00001{bottom:175.530450px;}
.y264d_c00001{bottom:175.619100px;}
.y17ab_c00001{bottom:175.620450px;}
.y38db_c00001{bottom:175.709748px;}
.y442_c00001{bottom:175.710450px;}
.y1fb_c00001{bottom:175.800450px;}
.y329b_c00001{bottom:175.860000px;}
.y2ba3_c00001{bottom:175.889199px;}
.y37fa_c00001{bottom:175.890450px;}
.y80a_c00001{bottom:175.980450px;}
.y3756_c00001{bottom:175.986489px;}
.y39c_c00001{bottom:176.071053px;}
.y355a_c00001{bottom:176.074353px;}
.y3487_c00001{bottom:176.160450px;}
.y1176_c00001{bottom:176.247111px;}
.y1541_c00001{bottom:176.250450px;}
.y38a7_c00001{bottom:176.328021px;}
.ycd_c00001{bottom:176.430450px;}
.y2ea7_c00001{bottom:176.580000px;}
.y2433_c00001{bottom:176.700000px;}
.y913_c00001{bottom:176.700450px;}
.y3385_c00001{bottom:176.701419px;}
.y3661_c00001{bottom:176.790846px;}
.y211f_c00001{bottom:176.880159px;}
.y2834_c00001{bottom:176.974725px;}
.y3827_c00001{bottom:177.059199px;}
.yafd_c00001{bottom:177.060270px;}
.y1bc3_c00001{bottom:177.120000px;}
.y13da_c00001{bottom:177.240450px;}
.y1129_c00001{bottom:177.331485px;}
.y3920_c00001{bottom:177.333159px;}
.y601_c00001{bottom:177.510450px;}
.y12b8_c00001{bottom:177.600450px;}
.y29e1_c00001{bottom:177.601917px;}
.y1a8b_c00001{bottom:177.660000px;}
.y308_c00001{bottom:177.690450px;}
.y1066_c00001{bottom:177.690600px;}
.y2f53_c00001{bottom:177.840000px;}
.y14fc_c00001{bottom:177.960450px;}
.y1f0f_c00001{bottom:178.020000px;}
.y25e7_c00001{bottom:178.049100px;}
.y25d_c00001{bottom:178.050450px;}
.y2357_c00001{bottom:178.140450px;}
.y33ee_c00001{bottom:178.141485px;}
.ya73_c00001{bottom:178.229748px;}
.y549_c00001{bottom:178.320450px;}
.y2736_c00001{bottom:178.322115px;}
.ycce_c00001{bottom:178.412403px;}
.y2779_c00001{bottom:178.416714px;}
.y41a_c00001{bottom:178.590450px;}
.y18ac_c00001{bottom:178.590600px;}
.y1adf_c00001{bottom:178.740000px;}
.y1108_c00001{bottom:178.770450px;}
.y2b6c_c00001{bottom:178.861665px;}
.y312c_c00001{bottom:178.920000px;}
.y148_c00001{bottom:178.950600px;}
.y3901_c00001{bottom:179.130450px;}
.y2170_c00001{bottom:179.310450px;}
.yc51_c00001{bottom:179.400450px;}
.y15aa_c00001{bottom:179.400540px;}
.y1cb9_c00001{bottom:179.460000px;}
.y4eb_c00001{bottom:179.490450px;}
.y393b_c00001{bottom:179.760450px;}
.y2f7_c00001{bottom:179.850450px;}
.y28c2_c00001{bottom:179.851071px;}
.y26f0_c00001{bottom:179.939100px;}
.y7b_c00001{bottom:179.940450px;}
.y1373_c00001{bottom:180.030450px;}
.y152d_c00001{bottom:180.031125px;}
.y33a5_c00001{bottom:180.120450px;}
.y1079_c00001{bottom:180.120600px;}
.y10cf_c00001{bottom:180.300582px;}
.y323f_c00001{bottom:180.342540px;}
.y3462_c00001{bottom:180.390450px;}
.y396b_c00001{bottom:180.479172px;}
.y2867_c00001{bottom:180.479640px;}
.y34c4_c00001{bottom:180.480450px;}
.y2d8c_c00001{bottom:180.540000px;}
.y2aea_c00001{bottom:180.570450px;}
.y791_c00001{bottom:180.660450px;}
.y334f_c00001{bottom:180.720000px;}
.y1287_c00001{bottom:180.749523px;}
.y216e_c00001{bottom:180.750450px;}
.y3768_c00001{bottom:180.841296px;}
.y10e5_c00001{bottom:180.841350px;}
.y23e1_c00001{bottom:180.928350px;}
.yda4_c00001{bottom:181.020450px;}
.y2a61_c00001{bottom:181.109649px;}
.ya17_c00001{bottom:181.110450px;}
.y2528_c00001{bottom:181.200009px;}
.y11be_c00001{bottom:181.380450px;}
.y87e_c00001{bottom:181.470450px;}
.y300e_c00001{bottom:181.620000px;}
.y1764_c00001{bottom:181.650450px;}
.y1e47_c00001{bottom:181.800000px;}
.y497_c00001{bottom:181.830450px;}
.y77e_c00001{bottom:181.920450px;}
.y6d1_c00001{bottom:182.010450px;}
.y1669_c00001{bottom:182.012274px;}
.y310f_c00001{bottom:182.160000px;}
.y254f_c00001{bottom:182.185500px;}
.y70e_c00001{bottom:182.280450px;}
.y1cf7_c00001{bottom:182.340000px;}
.y1874_c00001{bottom:182.460450px;}
.y9e7_c00001{bottom:182.460600px;}
.ye5f_c00001{bottom:182.550450px;}
.y372c_c00001{bottom:182.637894px;}
.y2396_c00001{bottom:182.639748px;}
.y1972_c00001{bottom:182.730450px;}
.y16b3_c00001{bottom:182.730600px;}
.yb6b_c00001{bottom:182.909541px;}
.y9ce_c00001{bottom:182.910450px;}
.y2249_c00001{bottom:183.000450px;}
.y1138_c00001{bottom:183.088533px;}
.y3a51_c00001{bottom:183.092538px;}
.y2d41_c00001{bottom:183.099654px;}
.y24f8_c00001{bottom:183.180081px;}
.y36b4_c00001{bottom:183.186273px;}
.y30aa_c00001{bottom:183.240000px;}
.y2971_c00001{bottom:183.270450px;}
.ya08_c00001{bottom:183.270600px;}
.y2685_c00001{bottom:183.360450px;}
.y32c8_c00001{bottom:183.420000px;}
.y16e8_c00001{bottom:183.450450px;}
.y11b6_c00001{bottom:183.453798px;}
.y1029_c00001{bottom:183.454077px;}
.y1cc_c00001{bottom:183.540600px;}
.y338_c00001{bottom:183.630450px;}
.y19b_c00001{bottom:183.720450px;}
.y1f89_c00001{bottom:183.728784px;}
.y5ba_c00001{bottom:183.900450px;}
.y19f9_c00001{bottom:183.960000px;}
.y167e_c00001{bottom:183.990450px;}
.y127f_c00001{bottom:183.990600px;}
.y20ca_c00001{bottom:184.080450px;}
.y1889_c00001{bottom:184.170450px;}
.ye16_c00001{bottom:184.260312px;}
.yf7e_c00001{bottom:184.260450px;}
.y3840_c00001{bottom:184.349568px;}
.y2246_c00001{bottom:184.440450px;}
.y32ed_c00001{bottom:184.500000px;}
.y521_c00001{bottom:184.530450px;}
.y1bc4_c00001{bottom:184.680000px;}
.y2262_c00001{bottom:184.710600px;}
.y249d_c00001{bottom:184.890450px;}
.y35e_c00001{bottom:184.980450px;}
.y1eac_c00001{bottom:185.040000px;}
.y36d1_c00001{bottom:185.070873px;}
.yaf7_c00001{bottom:185.160450px;}
.y1b24_c00001{bottom:185.220000px;}
.y1643_c00001{bottom:185.250450px;}
.y3fa_c00001{bottom:185.340450px;}
.yc5d_c00001{bottom:185.340594px;}
.y2f44_c00001{bottom:185.400000px;}
.y31_c00001{bottom:185.430450px;}
.y2cb0_c00001{bottom:185.518551px;}
.y1dd3_c00001{bottom:185.580000px;}
.ycff_c00001{bottom:185.610450px;}
.y2338_c00001{bottom:185.875374px;}
.y17e9_c00001{bottom:185.880450px;}
.y58d_c00001{bottom:185.970450px;}
.yd2b_c00001{bottom:186.060450px;}
.yaaf_c00001{bottom:186.150450px;}
.y2575_c00001{bottom:186.242886px;}
.y2ed5_c00001{bottom:186.300000px;}
.ybc9_c00001{bottom:186.329964px;}
.y9ba_c00001{bottom:186.330450px;}
.y3a39_c00001{bottom:186.339099px;}
.y1000_c00001{bottom:186.420450px;}
.y1c73_c00001{bottom:186.480000px;}
.y1232_c00001{bottom:186.505776px;}
.y2288_c00001{bottom:186.508758px;}
.y1471_c00001{bottom:186.510450px;}
.y164a_c00001{bottom:186.600450px;}
.y15b5_c00001{bottom:186.600600px;}
.y3084_c00001{bottom:186.660000px;}
.y3957_c00001{bottom:186.687912px;}
.y130d_c00001{bottom:186.688884px;}
.yfd2_c00001{bottom:186.776265px;}
.y338f_c00001{bottom:186.784464px;}
.y1edb_c00001{bottom:186.840000px;}
.y2948_c00001{bottom:186.869262px;}
.y14b6_c00001{bottom:186.959640px;}
.y2795_c00001{bottom:186.960600px;}
.y1cf8_c00001{bottom:187.020000px;}
.y912_c00001{bottom:187.050450px;}
.yc85_c00001{bottom:187.051608px;}
.y22bc_c00001{bottom:187.140450px;}
.y2cf1_c00001{bottom:187.140522px;}
.y20f7_c00001{bottom:187.228098px;}
.ybd1_c00001{bottom:187.228758px;}
.y3634_c00001{bottom:187.230639px;}
.y54_c00001{bottom:187.320450px;}
.y125_c00001{bottom:187.410450px;}
.y259e_c00001{bottom:187.496850px;}
.y191a_c00001{bottom:187.554420px;}
.y8eb_c00001{bottom:187.590450px;}
.y3333_c00001{bottom:187.740000px;}
.y2045_c00001{bottom:187.855662px;}
.y36d_c00001{bottom:187.860450px;}
.y1b70_c00001{bottom:187.920000px;}
.y171f_c00001{bottom:187.950450px;}
.y183a_c00001{bottom:187.950600px;}
.ya1_c00001{bottom:188.040450px;}
.y893_c00001{bottom:188.040600px;}
.y1093_c00001{bottom:188.040720px;}
.y2850_c00001{bottom:188.220150px;}
.y15ac_c00001{bottom:188.220450px;}
.y1579_c00001{bottom:188.221575px;}
.y194c_c00001{bottom:188.280000px;}
.y3616_c00001{bottom:188.310450px;}
.y8c3_c00001{bottom:188.400450px;}
.y39a9_c00001{bottom:188.667543px;}
.y2a07_c00001{bottom:188.668350px;}
.y2b6b_c00001{bottom:188.761656px;}
.y1c41_c00001{bottom:188.820000px;}
.y2b0b_c00001{bottom:188.850450px;}
.y398a_c00001{bottom:188.939100px;}
.y23b5_c00001{bottom:188.940450px;}
.y35dc_c00001{bottom:189.030450px;}
.y22a2_c00001{bottom:189.119568px;}
.yc27_c00001{bottom:189.120600px;}
.y2bf1_c00001{bottom:189.121395px;}
.y84d_c00001{bottom:189.210450px;}
.y46c_c00001{bottom:189.300450px;}
.yf7_c00001{bottom:189.390450px;}
.y38da_c00001{bottom:189.569811px;}
.y157c_c00001{bottom:189.660450px;}
.y3063_c00001{bottom:189.720000px;}
.y34af_c00001{bottom:189.750450px;}
.y1443_c00001{bottom:189.840450px;}
.y9a5_c00001{bottom:189.930450px;}
.y2927_c00001{bottom:189.930549px;}
.y201e_c00001{bottom:190.020594px;}
.y38a6_c00001{bottom:190.188084px;}
.y3430_c00001{bottom:190.379862px;}
.y2e74_c00001{bottom:190.440000px;}
.y16c5_c00001{bottom:190.470450px;}
.y35be_c00001{bottom:190.473210px;}
.y2f0f_c00001{bottom:190.620000px;}
.y205e_c00001{bottom:190.650450px;}
.y2c3_c00001{bottom:190.650600px;}
.y199b_c00001{bottom:190.800000px;}
.y2c17_c00001{bottom:190.832787px;}
.y1c42_c00001{bottom:190.980000px;}
.y123c_c00001{bottom:191.010450px;}
.yfa6_c00001{bottom:191.100450px;}
.y1c74_c00001{bottom:191.160000px;}
.y2d60_c00001{bottom:191.334420px;}
.ya2c_c00001{bottom:191.460450px;}
.y985_c00001{bottom:191.460600px;}
.y2edc_c00001{bottom:191.520000px;}
.y21db_c00001{bottom:191.550450px;}
.y21fb_c00001{bottom:191.639937px;}
.y2a20_c00001{bottom:191.640450px;}
.y1d4c_c00001{bottom:191.700000px;}
.y303a_c00001{bottom:191.703060px;}
.y1d7e_c00001{bottom:191.703960px;}
.y2886_c00001{bottom:191.730153px;}
.y154b_c00001{bottom:191.730450px;}
.y37c0_c00001{bottom:191.820450px;}
.y3755_c00001{bottom:191.826390px;}
.y3559_c00001{bottom:191.914254px;}
.ya72_c00001{bottom:192.089811px;}
.y1781_c00001{bottom:192.090450px;}
.y26ca_c00001{bottom:192.180450px;}
.y24c9_c00001{bottom:192.267993px;}
.y911_c00001{bottom:192.270450px;}
.y15e1_c00001{bottom:192.360450px;}
.y687_c00001{bottom:192.540450px;}
.y1b72_c00001{bottom:192.600000px;}
.y3857_c00001{bottom:192.630450px;}
.y29a2_c00001{bottom:192.719100px;}
.y3085_c00001{bottom:192.780000px;}
.yb21_c00001{bottom:192.810450px;}
.y2833_c00001{bottom:192.814626px;}
.y3586_c00001{bottom:192.900450px;}
.y219_c00001{bottom:192.990450px;}
.y35f5_c00001{bottom:193.075662px;}
.y1fa_c00001{bottom:193.080450px;}
.y3218_c00001{bottom:193.085856px;}
.y391f_c00001{bottom:193.173060px;}
.yfb6_c00001{bottom:193.260450px;}
.y39b_c00001{bottom:193.260864px;}
.y332e_c00001{bottom:193.320000px;}
.y264c_c00001{bottom:193.439100px;}
.y29e0_c00001{bottom:193.441818px;}
.y3340_c00001{bottom:193.500000px;}
.y35a0_c00001{bottom:193.524312px;}
.y378f_c00001{bottom:193.528524px;}
.y30e8_c00001{bottom:193.680000px;}
.y329a_c00001{bottom:193.683060px;}
.y27f0_c00001{bottom:193.708362px;}
.y27eb_c00001{bottom:193.710009px;}
.y419_c00001{bottom:193.710450px;}
.y3486_c00001{bottom:193.710600px;}
.y13c0_c00001{bottom:193.800450px;}
.y2f1e_c00001{bottom:193.860000px;}
.y27c5_c00001{bottom:193.890450px;}
.yd57_c00001{bottom:193.980450px;}
.y3660_c00001{bottom:193.980657px;}
.yad1_c00001{bottom:194.070540px;}
.y1167_c00001{bottom:194.159865px;}
.y3866_c00001{bottom:194.160450px;}
.y2735_c00001{bottom:194.162016px;}
.y396a_c00001{bottom:194.249460px;}
.y1726_c00001{bottom:194.250450px;}
.y2cc4_c00001{bottom:194.340081px;}
.y162d_c00001{bottom:194.340600px;}
.y2778_c00001{bottom:194.346390px;}
.y1c00_c00001{bottom:194.400000px;}
.y285_c00001{bottom:194.430450px;}
.y1286_c00001{bottom:194.519811px;}
.y2432_c00001{bottom:194.520000px;}
.y182e_c00001{bottom:194.520450px;}
.y32c3_c00001{bottom:194.760000px;}
.y61e_c00001{bottom:194.790450px;}
.y2704_c00001{bottom:194.790600px;}
.y22e1_c00001{bottom:194.880450px;}
.y1a3b_c00001{bottom:194.940000px;}
.y1177_c00001{bottom:194.966976px;}
.y8fa_c00001{bottom:194.970450px;}
.yfdc_c00001{bottom:195.060000px;}
.y566_c00001{bottom:195.060450px;}
.y2e75_c00001{bottom:195.120000px;}
.y3d1_c00001{bottom:195.150450px;}
.y2ad8_c00001{bottom:195.240450px;}
.y1f0e_c00001{bottom:195.300000px;}
.y207c_c00001{bottom:195.416274px;}
.y1493_c00001{bottom:195.420450px;}
.y7bd_c00001{bottom:195.420600px;}
.ye7d_c00001{bottom:195.510450px;}
.y6ea_c00001{bottom:195.600450px;}
.y1639_c00001{bottom:195.600600px;}
.y1f53_c00001{bottom:195.610332px;}
.y1e46_c00001{bottom:195.660000px;}
.y1f6c_c00001{bottom:195.690450px;}
.y28c1_c00001{bottom:195.690972px;}
.y341f_c00001{bottom:195.777507px;}
.y25e6_c00001{bottom:195.869100px;}
.y184a_c00001{bottom:195.870450px;}
.y25ba_c00001{bottom:196.050450px;}
.y1798_c00001{bottom:196.140450px;}
.y17aa_c00001{bottom:196.320450px;}
.y1128_c00001{bottom:196.321395px;}
.y372b_c00001{bottom:196.408182px;}
.y441_c00001{bottom:196.410450px;}
.y2395_c00001{bottom:196.499811px;}
.y12b7_c00001{bottom:196.500450px;}
.y39db_c00001{bottom:196.590450px;}
.yb6a_c00001{bottom:196.679829px;}
.y1b71_c00001{bottom:196.740000px;}
.yd79_c00001{bottom:196.770450px;}
.y3767_c00001{bottom:196.770972px;}
.y1137_c00001{bottom:196.858821px;}
.y10d0_c00001{bottom:196.860636px;}
.y1616_c00001{bottom:196.950450px;}
.y977_c00001{bottom:196.950600px;}
.y2816_c00001{bottom:197.037876px;}
.yc02_c00001{bottom:197.040600px;}
.y230d_c00001{bottom:197.130450px;}
.y33ed_c00001{bottom:197.131395px;}
.y170b_c00001{bottom:197.310450px;}
.y2ca8_c00001{bottom:197.400009px;}
.y910_c00001{bottom:197.400450px;}
.y10e6_c00001{bottom:197.401800px;}
.yf39_c00001{bottom:197.490450px;}
.y3405_c00001{bottom:197.580450px;}
.y323e_c00001{bottom:197.628120px;}
.y2ba2_c00001{bottom:197.759712px;}
.y221c_c00001{bottom:197.760450px;}
.y1a86_c00001{bottom:197.820000px;}
.y70d_c00001{bottom:197.850000px;}
.y334e_c00001{bottom:198.000000px;}
.ye15_c00001{bottom:198.030600px;}
.y4ea_c00001{bottom:198.120600px;}
.y3536_c00001{bottom:198.200289px;}
.y232_c00001{bottom:198.210450px;}
.y25c_c00001{bottom:198.210600px;}
.yedd_c00001{bottom:198.300450px;}
.y1f28_c00001{bottom:198.300549px;}
.yc32_c00001{bottom:198.390450px;}
.y15a9_c00001{bottom:198.391275px;}
.y37f9_c00001{bottom:198.480450px;}
.y2f52_c00001{bottom:198.540000px;}
.y8ad_c00001{bottom:198.570450px;}
.y809_c00001{bottom:198.660450px;}
.y1c43_c00001{bottom:198.720000px;}
.y23e0_c00001{bottom:198.748350px;}
.y2123_c00001{bottom:198.749025px;}
.y21a9_c00001{bottom:198.749262px;}
.y120d_c00001{bottom:198.750450px;}
.y211e_c00001{bottom:198.750672px;}
.y2b6a_c00001{bottom:198.752034px;}
.y3826_c00001{bottom:198.839127px;}
.y152c_c00001{bottom:198.930450px;}
.y3a50_c00001{bottom:198.932439px;}
.y548_c00001{bottom:199.020450px;}
.yccd_c00001{bottom:199.112124px;}
.y36b3_c00001{bottom:199.115949px;}
.ye5a_c00001{bottom:199.290450px;}
.ydc5_c00001{bottom:199.290600px;}
.y2623_c00001{bottom:199.378650px;}
.ya64_c00001{bottom:199.380450px;}
.y1dd2_c00001{bottom:199.440000px;}
.y28d3_c00001{bottom:199.470450px;}
.y8d9_c00001{bottom:199.650450px;}
.y1a87_c00001{bottom:199.800000px;}
.y254e_c00001{bottom:200.005500px;}
.y320d_c00001{bottom:200.160000px;}
.y216d_c00001{bottom:200.190450px;}
.yed9_c00001{bottom:200.280600px;}
.y2f59_c00001{bottom:200.340000px;}
.y1231_c00001{bottom:200.365839px;}
.y6af_c00001{bottom:200.369280px;}
.y130c_c00001{bottom:200.459172px;}
.y349a_c00001{bottom:200.549100px;}
.y722_c00001{bottom:200.550450px;}
.yfd1_c00001{bottom:200.636328px;}
.y7a_c00001{bottom:200.640450px;}
.y2356_c00001{bottom:200.729640px;}
.y1971_c00001{bottom:200.730450px;}
.y37ad_c00001{bottom:200.737596px;}
.y13b9_c00001{bottom:200.819658px;}
.y1cb_c00001{bottom:200.820450px;}
.y1e10_c00001{bottom:200.880000px;}
.y36d0_c00001{bottom:200.910774px;}
.y7e2_c00001{bottom:201.090450px;}
.y93c_c00001{bottom:201.180450px;}
.y2d8b_c00001{bottom:201.240000px;}
.y310e_c00001{bottom:201.420000px;}
.y1078_c00001{bottom:201.540600px;}
.y32eb_c00001{bottom:201.780000px;}
.y9e6_c00001{bottom:201.810450px;}
.y337_c00001{bottom:201.900450px;}
.y1cb5_c00001{bottom:201.960000px;}
.y169b_c00001{bottom:202.080600px;}
.y2463_c00001{bottom:202.080900px;}
.y2574_c00001{bottom:202.082787px;}
.y249c_c00001{bottom:202.170450px;}
.y3a38_c00001{bottom:202.179000px;}
.y2866_c00001{bottom:202.259568px;}
.y662_c00001{bottom:202.260450px;}
.y32c7_c00001{bottom:202.320000px;}
.y11db_c00001{bottom:202.350450px;}
.y1763_c00001{bottom:202.440450px;}
.y2c90_c00001{bottom:202.441062px;}
.y1c01_c00001{bottom:202.500000px;}
.y20b3_c00001{bottom:202.527450px;}
.y39a8_c00001{bottom:202.527606px;}
.y377a_c00001{bottom:202.530600px;}
.y77d_c00001{bottom:202.620450px;}
.y314c_c00001{bottom:202.680000px;}
.y6d0_c00001{bottom:202.710450px;}
.y1668_c00001{bottom:202.711995px;}
.y87d_c00001{bottom:202.890450px;}
.y29cb_c00001{bottom:202.975824px;}
.y2527_c00001{bottom:202.979937px;}
.y2a60_c00001{bottom:202.980162px;}
.y145d_c00001{bottom:202.980450px;}
.y2a5d_c00001{bottom:202.980522px;}
.ydec_c00001{bottom:203.070450px;}
.y23b4_c00001{bottom:203.160450px;}
.y11e7_c00001{bottom:203.166579px;}
.y2d40_c00001{bottom:203.258934px;}
.y22f5_c00001{bottom:203.339712px;}
.y38d9_c00001{bottom:203.340099px;}
.y8ea_c00001{bottom:203.340450px;}
.y2970_c00001{bottom:203.430450px;}
.yc5e_c00001{bottom:203.430702px;}
.y2c5c_c00001{bottom:203.520450px;}
.y1d4f_c00001{bottom:203.580000px;}
.yd93_c00001{bottom:203.610450px;}
.yf61_c00001{bottom:203.700450px;}
.y284f_c00001{bottom:203.700600px;}
.y236f_c00001{bottom:203.790600px;}
.y1f88_c00001{bottom:203.888064px;}
.y1cb6_c00001{bottom:203.940000px;}
.y38a5_c00001{bottom:203.958372px;}
.y19f3_c00001{bottom:204.120000px;}
.y11b5_c00001{bottom:204.153519px;}
.y1028_c00001{bottom:204.153798px;}
.y177_c00001{bottom:204.420450px;}
.y1dd8_c00001{bottom:204.480000px;}
.y5b9_c00001{bottom:204.600450px;}
.y2a7b_c00001{bottom:204.690450px;}
.y3683_c00001{bottom:204.780600px;}
.y1919_c00001{bottom:204.840000px;}
.y24f7_c00001{bottom:204.960009px;}
.y2910_c00001{bottom:204.960450px;}
.ycfe_c00001{bottom:204.960600px;}
.y1bc0_c00001{bottom:205.020000px;}
.yd2a_c00001{bottom:205.050450px;}
.y2bf0_c00001{bottom:205.051071px;}
.y36ed_c00001{bottom:205.129740px;}
.yc86_c00001{bottom:205.141869px;}
.y31c9_c00001{bottom:205.200000px;}
.y520_c00001{bottom:205.230450px;}
.y259d_c00001{bottom:205.316850px;}
.yeab_c00001{bottom:205.320450px;}
.y1d7d_c00001{bottom:205.380000px;}
.y13d9_c00001{bottom:205.410450px;}
.y3447_c00001{bottom:205.500000px;}
.y3039_c00001{bottom:205.560000px;}
.y2245_c00001{bottom:205.589199px;}
.y35d_c00001{bottom:205.680450px;}
.y75a_c00001{bottom:205.680600px;}
.y2926_c00001{bottom:205.770450px;}
.ya71_c00001{bottom:205.860099px;}
.y327c_c00001{bottom:205.920000px;}
.y26a5_c00001{bottom:205.947462px;}
.y2684_c00001{bottom:205.950600px;}
.y645_c00001{bottom:206.040450px;}
.y247e_c00001{bottom:206.040600px;}
.y1e13_c00001{bottom:206.100000px;}
.y383f_c00001{bottom:206.129496px;}
.y1873_c00001{bottom:206.220450px;}
.y2b0a_c00001{bottom:206.309127px;}
.y3f9_c00001{bottom:206.310450px;}
.y35bd_c00001{bottom:206.313111px;}
.y218b_c00001{bottom:206.401350px;}
.yf11_c00001{bottom:206.490450px;}
.y3471_c00001{bottom:206.577750px;}
.y2a06_c00001{bottom:206.578800px;}
.y2fe5_c00001{bottom:206.640000px;}
.y3615_c00001{bottom:206.670450px;}
.y2c16_c00001{bottom:206.672688px;}
.yac1_c00001{bottom:206.760450px;}
.ycc_c00001{bottom:206.940450px;}
.y1b23_c00001{bottom:207.000000px;}
.yafe_c00001{bottom:207.030090px;}
.y2149_c00001{bottom:207.120600px;}
.y1cf5_c00001{bottom:207.180000px;}
.y3485_c00001{bottom:207.210600px;}
.y1578_c00001{bottom:207.211485px;}
.y1540_c00001{bottom:207.300450px;}
.y2db6_c00001{bottom:207.360000px;}
.y2caf_c00001{bottom:207.389064px;}
.y3502_c00001{bottom:207.478704px;}
.yda3_c00001{bottom:207.480450px;}
.y3299_c00001{bottom:207.540000px;}
.yfdb_c00001{bottom:207.570450px;}
.y34d9_c00001{bottom:207.655824px;}
.y3754_c00001{bottom:207.666291px;}
.y1a88_c00001{bottom:207.720000px;}
.y2337_c00001{bottom:207.745887px;}
.y90f_c00001{bottom:207.750450px;}
.y3558_c00001{bottom:207.754155px;}
.y20c9_c00001{bottom:207.840450px;}
.y1888_c00001{bottom:207.930450px;}
.y30a8_c00001{bottom:208.080000px;}
.y3969_c00001{bottom:208.109523px;}
.y2794_c00001{bottom:208.110081px;}
.y2287_c00001{bottom:208.288686px;}
.y1285_c00001{bottom:208.290099px;}
.yb05_c00001{bottom:208.290450px;}
.y2f90_c00001{bottom:208.440000px;}
.y36c_c00001{bottom:208.560450px;}
.y2d5f_c00001{bottom:208.620000px;}
.y2b69_c00001{bottom:208.652025px;}
.y2832_c00001{bottom:208.654527px;}
.ya0_c00001{bottom:208.740450px;}
.y1065_c00001{bottom:208.740600px;}
.y1eab_c00001{bottom:208.800000px;}
.y14b5_c00001{bottom:208.830153px;}
.y13a4_c00001{bottom:208.830810px;}
.y2cf0_c00001{bottom:208.920450px;}
.y2d15_c00001{bottom:208.924185px;}
.y194b_c00001{bottom:208.980000px;}
.y14fb_c00001{bottom:209.010450px;}
.y391e_c00001{bottom:209.012961px;}
.y20f6_c00001{bottom:209.098611px;}
.y21da_c00001{bottom:209.100153px;}
.y2261_c00001{bottom:209.190450px;}
.y29df_c00001{bottom:209.371494px;}
.y1cb7_c00001{bottom:209.520000px;}
.ybca_c00001{bottom:209.549811px;}
.y17e8_c00001{bottom:209.730450px;}
.y1107_c00001{bottom:209.820450px;}
.y8c2_c00001{bottom:209.910450px;}
.y46b_c00001{bottom:210.000450px;}
.y147_c00001{bottom:210.000600px;}
.y2734_c00001{bottom:210.001917px;}
.y1a3a_c00001{bottom:210.060000px;}
.y26b7_c00001{bottom:210.090306px;}
.y13ad_c00001{bottom:210.090450px;}
.y2777_c00001{bottom:210.186291px;}
.y372a_c00001{bottom:210.268245px;}
.y2394_c00001{bottom:210.270099px;}
.y1f9_c00001{bottom:210.270450px;}
.ybd2_c00001{bottom:210.358425px;}
.y1859_c00001{bottom:210.360450px;}
.y319c_c00001{bottom:210.420000px;}
.yb69_c00001{bottom:210.450117px;}
.yc50_c00001{bottom:210.450450px;}
.y29a1_c00001{bottom:210.539100px;}
.y39a_c00001{bottom:210.540855px;}
.y2e17_c00001{bottom:210.600000px;}
.y1136_c00001{bottom:210.718884px;}
.y331e_c00001{bottom:210.780000px;}
.y18e6_c00001{bottom:210.810450px;}
.y2f6_c00001{bottom:210.900450px;}
.y22a1_c00001{bottom:210.990081px;}
.y1492_c00001{bottom:210.990450px;}
.ye61_c00001{bottom:211.080450px;}
.y2de3_c00001{bottom:211.140000px;}
.y33a4_c00001{bottom:211.170450px;}
.y264b_c00001{bottom:211.259100px;}
.y365f_c00001{bottom:211.260648px;}
.y1c71_c00001{bottom:211.320000px;}
.y9a4_c00001{bottom:211.350450px;}
.y2c2_c00001{bottom:211.350600px;}
.y3461_c00001{bottom:211.440450px;}
.y1340_c00001{bottom:211.620600px;}
.y28c0_c00001{bottom:211.620648px;}
.y10c3_c00001{bottom:211.710450px;}
.y2bc3_c00001{bottom:211.798800px;}
.yb20_c00001{bottom:211.800450px;}
.y201d_c00001{bottom:211.800522px;}
.y1839_c00001{bottom:211.800600px;}
.y1cf6_c00001{bottom:211.860000px;}
.y892_c00001{bottom:211.980450px;}
.ya16_c00001{bottom:212.160450px;}
.y15e0_c00001{bottom:212.160720px;}
.y266a_c00001{bottom:212.250450px;}
.ye43_c00001{bottom:212.340600px;}
.y22e0_c00001{bottom:212.430081px;}
.y236e_c00001{bottom:212.430450px;}
.y1f0d_c00001{bottom:212.580000px;}
.y3766_c00001{bottom:212.610873px;}
.y1b6f_c00001{bottom:212.760000px;}
.y1168_c00001{bottom:212.789550px;}
.y496_c00001{bottom:212.880450px;}
.y30a9_c00001{bottom:212.940000px;}
.y90e_c00001{bottom:212.970450px;}
.y2db7_c00001{bottom:213.120000px;}
.y686_c00001{bottom:213.240450px;}
.y1ade_c00001{bottom:213.300000px;}
.ye65_c00001{bottom:213.330000px;}
.y70c_c00001{bottom:213.330450px;}
.y10d1_c00001{bottom:213.330510px;}
.y378e_c00001{bottom:213.419226px;}
.y1fb3_c00001{bottom:213.420450px;}
.y2885_c00001{bottom:213.510081px;}
.y21fd_c00001{bottom:213.510450px;}
.y1178_c00001{bottom:213.596661px;}
.y274f_c00001{bottom:213.690450px;}
.ye14_c00001{bottom:213.692520px;}
.y1fff_c00001{bottom:213.693777px;}
.y25e5_c00001{bottom:213.779550px;}
.y16b2_c00001{bottom:213.780600px;}
.y10e7_c00001{bottom:213.871800px;}
.y9cd_c00001{bottom:213.960450px;}
.y24c8_c00001{bottom:214.047921px;}
.y24c3_c00001{bottom:214.049568px;}
.y27c4_c00001{bottom:214.050450px;}
.y1230_c00001{bottom:214.136127px;}
.y2f58_c00001{bottom:214.200000px;}
.y130b_c00001{bottom:214.229460px;}
.y37bf_c00001{bottom:214.320450px;}
.ya07_c00001{bottom:214.320600px;}
.yfd0_c00001{bottom:214.406616px;}
.y218_c00001{bottom:214.410450px;}
.y2ef7_c00001{bottom:214.560000px;}
.y323d_c00001{bottom:214.734420px;}
.y3a4f_c00001{bottom:214.772340px;}
.y1725_c00001{bottom:214.950450px;}
.y21fa_c00001{bottom:214.950600px;}
.y36b2_c00001{bottom:214.955850px;}
.y167d_c00001{bottom:215.040450px;}
.y127e_c00001{bottom:215.040600px;}
.y3369_c00001{bottom:215.100000px;}
.y284_c00001{bottom:215.130450px;}
.y2e72_c00001{bottom:215.280000px;}
.y2bd4_c00001{bottom:215.310450px;}
.y1127_c00001{bottom:215.311305px;}
.y1254_c00001{bottom:215.400450px;}
.y32c2_c00001{bottom:215.460000px;}
.y27ef_c00001{bottom:215.488290px;}
.y27ea_c00001{bottom:215.489937px;}
.y61d_c00001{bottom:215.490450px;}
.yc26_c00001{bottom:215.580450px;}
.yed3_c00001{bottom:215.581485px;}
.yb5c_c00001{bottom:215.670450px;}
.y28e2_c00001{bottom:215.760450px;}
.y325c_c00001{bottom:215.820000px;}
.y3d0_c00001{bottom:215.850450px;}
.y1780_c00001{bottom:215.940450px;}
.y565_c00001{bottom:216.030600px;}
.y33ec_c00001{bottom:216.030720px;}
.y2cc3_c00001{bottom:216.120009px;}
.y7bc_c00001{bottom:216.120600px;}
.y1c72_c00001{bottom:216.180000px;}
.yaf6_c00001{bottom:216.210450px;}
.y39a7_c00001{bottom:216.297894px;}
.y1642_c00001{bottom:216.300450px;}
.yc01_c00001{bottom:216.390099px;}
.y1f6b_c00001{bottom:216.390450px;}
.y30_c00001{bottom:216.480450px;}
.y1bc1_c00001{bottom:216.540000px;}
.y23df_c00001{bottom:216.568350px;}
.y1092_c00001{bottom:216.570054px;}
.y125e_c00001{bottom:216.660450px;}
.y26ef_c00001{bottom:216.749550px;}
.y3865_c00001{bottom:216.750450px;}
.y36cf_c00001{bottom:216.840450px;}
.y32c6_c00001{bottom:216.900000px;}
.yacd_c00001{bottom:216.930450px;}
.y14df_c00001{bottom:217.020450px;}
.y38d8_c00001{bottom:217.110387px;}
.yaae_c00001{bottom:217.200450px;}
.y39da_c00001{bottom:217.290450px;}
.y15a8_c00001{bottom:217.290600px;}
.y9b9_c00001{bottom:217.380450px;}
.yfff_c00001{bottom:217.470450px;}
.y1470_c00001{bottom:217.560450px;}
.y3128_c00001{bottom:217.620000px;}
.y19a7_c00001{bottom:217.626120px;}
.y341e_c00001{bottom:217.648020px;}
.y1649_c00001{bottom:217.650450px;}
.y15b4_c00001{bottom:217.650600px;}
.y38a4_c00001{bottom:217.728660px;}
.y216c_c00001{bottom:217.738098px;}
.y2abe_c00001{bottom:217.740081px;}
.y314b_c00001{bottom:217.800000px;}
.y254d_c00001{bottom:217.915950px;}
.y440_c00001{bottom:217.920450px;}
.y2573_c00001{bottom:217.922688px;}
.y1ca_c00001{bottom:218.010450px;}
.y3a37_c00001{bottom:218.018901px;}
.y90d_c00001{bottom:218.100450px;}
.ya4e_c00001{bottom:218.280450px;}
.y53_c00001{bottom:218.370450px;}
.y351c_c00001{bottom:218.370600px;}
.y124_c00001{bottom:218.460450px;}
.y976_c00001{bottom:218.460600px;}
.y3082_c00001{bottom:218.520000px;}
.y2b68_c00001{bottom:218.552016px;}
.yad2_c00001{bottom:218.640081px;}
.y25b9_c00001{bottom:218.640450px;}
.y30e6_c00001{bottom:218.700000px;}
.y152a_c00001{bottom:218.730630px;}
.y2815_c00001{bottom:218.817804px;}
.y4e9_c00001{bottom:218.820450px;}
.y1b22_c00001{bottom:218.880000px;}
.y25b_c00001{bottom:218.910450px;}
.y221b_c00001{bottom:219.000450px;}
.y3297_c00001{bottom:219.060000px;}
.y81f_c00001{bottom:219.090450px;}
.y2f51_c00001{bottom:219.240000px;}
.y284e_c00001{bottom:219.270150px;}
.y2ca7_c00001{bottom:219.270522px;}
.y2ba1_c00001{bottom:219.539640px;}
.ya70_c00001{bottom:219.630387px;}
.y547_c00001{bottom:219.720450px;}
.y1f52_c00001{bottom:219.730026px;}
.yccc_c00001{bottom:219.811845px;}
.y1797_c00001{bottom:219.990450px;}
.y18ab_c00001{bottom:219.990600px;}
.y2e73_c00001{bottom:220.140000px;}
.y84c_c00001{bottom:220.260450px;}
.y37d5_c00001{bottom:220.350450px;}
.yf6_c00001{bottom:220.440450px;}
.y2122_c00001{bottom:220.528953px;}
.y3825_c00001{bottom:220.709640px;}
.y790_c00001{bottom:220.710450px;}
.y17d8_c00001{bottom:220.710600px;}
.y9e5_c00001{bottom:220.800450px;}
.y3038_c00001{bottom:220.860000px;}
.y1442_c00001{bottom:220.890450px;}
.y2bef_c00001{bottom:220.890972px;}
.y296f_c00001{bottom:220.979271px;}
.y37f8_c00001{bottom:220.980450px;}
.y1c3f_c00001{bottom:221.040000px;}
.y170a_c00001{bottom:221.070450px;}
.y1eda_c00001{bottom:221.220000px;}
.y79_c00001{bottom:221.340450px;}
.y93b_c00001{bottom:221.430450px;}
.y16c4_c00001{bottom:221.520450px;}
.yc5f_c00001{bottom:221.520810px;}
.y336_c00001{bottom:221.610450px;}
.y3968_c00001{bottom:221.879811px;}
.y2d8a_c00001{bottom:221.940000px;}
.y211d_c00001{bottom:221.970450px;}
.y3332_c00001{bottom:222.120000px;}
.y1284_c00001{bottom:222.150162px;}
.yfa5_c00001{bottom:222.150450px;}
.y34ae_c00001{bottom:222.240450px;}
.y35bc_c00001{bottom:222.242787px;}
.y1215_c00001{bottom:222.330450px;}
.y8ac_c00001{bottom:222.420450px;}
.y2355_c00001{bottom:222.509568px;}
.ya2b_c00001{bottom:222.510450px;}
.y984_c00001{bottom:222.510600px;}
.y2c15_c00001{bottom:222.512589px;}
.y7e1_c00001{bottom:222.600450px;}
.y1bfe_c00001{bottom:222.660000px;}
.y29b9_c00001{bottom:222.690450px;}
.y154a_c00001{bottom:222.780450px;}
.y327a_c00001{bottom:222.840000px;}
.yf7d_c00001{bottom:222.870600px;}
.y11dc_c00001{bottom:222.870909px;}
.y3a04_c00001{bottom:222.960600px;}
.y1077_c00001{bottom:223.050450px;}
.y259c_c00001{bottom:223.136850px;}
.y17c5_c00001{bottom:223.140450px;}
.y1e45_c00001{bottom:223.200000px;}
.y3633_c00001{bottom:223.230450px;}
.yc87_c00001{bottom:223.232130px;}
.y77c_c00001{bottom:223.320450px;}
.y30e7_c00001{bottom:223.380000px;}
.y1918_c00001{bottom:223.386300px;}
.y6cf_c00001{bottom:223.410450px;}
.y1667_c00001{bottom:223.411716px;}
.y2d3f_c00001{bottom:223.418214px;}
.y3956_c00001{bottom:223.587300px;}
.y8d8_c00001{bottom:223.590450px;}
.y3753_c00001{bottom:223.595967px;}
.y2947_c00001{bottom:223.679712px;}
.y3856_c00001{bottom:223.680450px;}
.y3557_c00001{bottom:223.683831px;}
.y11e8_c00001{bottom:223.687038px;}
.ycfd_c00001{bottom:223.950600px;}
.y3729_c00001{bottom:224.038533px;}
.y2865_c00001{bottom:224.039496px;}
.y2393_c00001{bottom:224.040387px;}
.y176_c00001{bottom:224.040600px;}
.y1f87_c00001{bottom:224.047344px;}
.ydeb_c00001{bottom:224.136930px;}
.y2a1f_c00001{bottom:224.220450px;}
.yb68_c00001{bottom:224.310180px;}
.y87c_c00001{bottom:224.310450px;}
.y2a05_c00001{bottom:224.398800px;}
.y145c_c00001{bottom:224.400450px;}
.y3083_c00001{bottom:224.460000px;}
.y1135_c00001{bottom:224.489172px;}
.y8e9_c00001{bottom:224.490450px;}
.y2831_c00001{bottom:224.584203px;}
.y2044_c00001{bottom:224.666112px;}
.y2a5f_c00001{bottom:224.760090px;}
.y2d22_c00001{bottom:224.760450px;}
.y2cf5_c00001{bottom:224.849802px;}
.y252c_c00001{bottom:224.850450px;}
.y11b4_c00001{bottom:224.853240px;}
.y1027_c00001{bottom:224.853519px;}
.y391d_c00001{bottom:224.942637px;}
.y338e_c00001{bottom:224.943807px;}
.y1adb_c00001{bottom:225.000000px;}
.y19a_c00001{bottom:225.120450px;}
.y2a7a_c00001{bottom:225.210600px;}
.y29de_c00001{bottom:225.211395px;}
.y5b8_c00001{bottom:225.300450px;}
.y162c_c00001{bottom:225.390600px;}
.y3484_c00001{bottom:225.480450px;}
.yed8_c00001{bottom:225.480855px;}
.y290f_c00001{bottom:225.660450px;}
.y3989_c00001{bottom:225.749550px;}
.ydc4_c00001{bottom:225.750450px;}
.y1f27_c00001{bottom:225.840450px;}
.y51f_c00001{bottom:225.930450px;}
.y2733_c00001{bottom:225.931593px;}
.y8f9_c00001{bottom:226.020450px;}
.y2776_c00001{bottom:226.026192px;}
.y1e81_c00001{bottom:226.080000px;}
.y1577_c00001{bottom:226.110810px;}
.y1762_c00001{bottom:226.200450px;}
.y2a5c_c00001{bottom:226.200600px;}
.y2526_c00001{bottom:226.290600px;}
.y35c_c00001{bottom:226.380450px;}
.y3f8_c00001{bottom:226.470450px;}
.y5e4_c00001{bottom:226.560450px;}
.ycb_c00001{bottom:226.650450px;}
.y1638_c00001{bottom:226.650600px;}
.y644_c00001{bottom:226.740450px;}
.y2d5e_c00001{bottom:226.800000px;}
.y24f6_c00001{bottom:226.830522px;}
.y342f_c00001{bottom:227.279250px;}
.y2244_c00001{bottom:227.369127px;}
.y105c_c00001{bottom:227.460450px;}
.y28bf_c00001{bottom:227.460549px;}
.y1dcf_c00001{bottom:227.536200px;}
.y2ed4_c00001{bottom:227.700000px;}
.y3062_c00001{bottom:227.703060px;}
.yd78_c00001{bottom:227.820450px;}
.y399_c00001{bottom:227.820846px;}
.y1a83_c00001{bottom:227.880000px;}
.y122f_c00001{bottom:227.906415px;}
.y58c_c00001{bottom:227.910450px;}
.y383e_c00001{bottom:228.000009px;}
.y1615_c00001{bottom:228.000450px;}
.y130a_c00001{bottom:228.089523px;}
.y34c3_c00001{bottom:228.090450px;}
.yfcf_c00001{bottom:228.176904px;}
.y2b09_c00001{bottom:228.179640px;}
.y310d_c00001{bottom:228.240000px;}
.y29a0_c00001{bottom:228.359100px;}
.y2925_c00001{bottom:228.360450px;}
.y1e48_c00001{bottom:228.420000px;}
.y90c_c00001{bottom:228.450450px;}
.y3765_c00001{bottom:228.450774px;}
.y2b67_c00001{bottom:228.452007px;}
.yf38_c00001{bottom:228.540450px;}
.y1f8_c00001{bottom:228.540600px;}
.y365e_c00001{bottom:228.540639px;}
.y3404_c00001{bottom:228.630450px;}
.y364e_c00001{bottom:228.720450px;}
.y1c40_c00001{bottom:228.780000px;}
.y6ae_c00001{bottom:228.809676px;}
.y70b_c00001{bottom:228.900000px;}
.y1adc_c00001{bottom:228.960000px;}
.y1e0f_c00001{bottom:229.157100px;}
.y2cae_c00001{bottom:229.168992px;}
.y264a_c00001{bottom:229.169550px;}
.y18c9_c00001{bottom:229.170450px;}
.y13b8_c00001{bottom:229.260054px;}
.y231_c00001{bottom:229.260450px;}
.y2fbd_c00001{bottom:229.320000px;}
.yedc_c00001{bottom:229.350450px;}
.y33f4_c00001{bottom:229.351656px;}
.y9f_c00001{bottom:229.440450px;}
.yf6c_c00001{bottom:229.440600px;}
.y1eaa_c00001{bottom:229.500000px;}
.y2336_c00001{bottom:229.525815px;}
.y38c0_c00001{bottom:229.530600px;}
.y39c7_c00001{bottom:229.620600px;}
.y194a_c00001{bottom:229.680000px;}
.y808_c00001{bottom:229.710450px;}
.y120c_c00001{bottom:229.800450px;}
.y1f0c_c00001{bottom:229.860000px;}
.y35f4_c00001{bottom:229.886112px;}
.y2793_c00001{bottom:229.890009px;}
.y10d2_c00001{bottom:229.890564px;}
.y1a84_c00001{bottom:230.040000px;}
.y39a6_c00001{bottom:230.068182px;}
.yb4c_c00001{bottom:230.070450px;}
.y2286_c00001{bottom:230.159199px;}
.yc00_c00001{bottom:230.160387px;}
.y3585_c00001{bottom:230.160450px;}
.y2431_c00001{bottom:230.250450px;}
.y359f_c00001{bottom:230.334762px;}
.ye59_c00001{bottom:230.340450px;}
.y10e8_c00001{bottom:230.432250px;}
.y28d2_c00001{bottom:230.520450px;}
.y14bc_c00001{bottom:230.608434px;}
.y14b4_c00001{bottom:230.610081px;}
.y133f_c00001{bottom:230.610450px;}
.y46a_c00001{bottom:230.700450px;}
.y3a4e_c00001{bottom:230.702016px;}
.y36b1_c00001{bottom:230.795751px;}
.y20f5_c00001{bottom:230.878539px;}
.y21d9_c00001{bottom:230.880081px;}
.y1bff_c00001{bottom:230.940000px;}
.yc25_c00001{bottom:230.970450px;}
.y16e7_c00001{bottom:231.060450px;}
.y153f_c00001{bottom:231.150450px;}
.y15df_c00001{bottom:231.150630px;}
.y3217_c00001{bottom:231.245199px;}
.y8c1_c00001{bottom:231.330450px;}
.y2fe4_c00001{bottom:231.480000px;}
.y19a6_c00001{bottom:231.483060px;}
.y1169_c00001{bottom:231.509415px;}
.yb1f_c00001{bottom:231.510450px;}
.y38a3_c00001{bottom:231.588723px;}
.y25e4_c00001{bottom:231.599550px;}
.y721_c00001{bottom:231.600450px;}
.y37ac_c00001{bottom:231.607029px;}
.y20c8_c00001{bottom:231.690450px;}
.y1372_c00001{bottom:231.780450px;}
.yd56_c00001{bottom:231.960600px;}
.y1cb2_c00001{bottom:232.020000px;}
.y19f2_c00001{bottom:232.030080px;}
.y2c1_c00001{bottom:232.050600px;}
.y207b_c00001{bottom:232.226724px;}
.y1179_c00001{bottom:232.316526px;}
.y1d4a_c00001{bottom:232.394040px;}
.y1b6d_c00001{bottom:232.560000px;}
.y2260_c00001{bottom:232.680450px;}
.ye13_c00001{bottom:232.682430px;}
.ybcb_c00001{bottom:232.769658px;}
.y22a0_c00001{bottom:232.770009px;}
.yda2_c00001{bottom:232.770450px;}
.y9a3_c00001{bottom:232.860450px;}
.y3535_c00001{bottom:233.030811px;}
.ye42_c00001{bottom:233.040600px;}
.y30a7_c00001{bottom:233.100000px;}
.y22bb_c00001{bottom:233.130450px;}
.y169a_c00001{bottom:233.130600px;}
.y378d_c00001{bottom:233.219748px;}
.y661_c00001{bottom:233.310450px;}
.ya6f_c00001{bottom:233.490450px;}
.ybd3_c00001{bottom:233.578272px;}
.y201c_c00001{bottom:233.580450px;}
.y90b_c00001{bottom:233.670450px;}
.y165b_c00001{bottom:233.760450px;}
.y2572_c00001{bottom:233.852364px;}
.y685_c00001{bottom:233.940450px;}
.y3a36_c00001{bottom:233.948577px;}
.y1cb3_c00001{bottom:234.000000px;}
.y316f_c00001{bottom:234.003960px;}
.y1fb2_c00001{bottom:234.030600px;}
.y22df_c00001{bottom:234.210009px;}
.y2b89_c00001{bottom:234.210600px;}
.y1126_c00001{bottom:234.210630px;}
.y21f9_c00001{bottom:234.390450px;}
.y23de_c00001{bottom:234.478800px;}
.y12b6_c00001{bottom:234.480450px;}
.y2c35_c00001{bottom:234.570450px;}
.yed2_c00001{bottom:234.571395px;}
.y891_c00001{bottom:234.660450px;}
.y27c3_c00001{bottom:234.750450px;}
.y284d_c00001{bottom:234.750600px;}
.y2669_c00001{bottom:234.840450px;}
.y26b6_c00001{bottom:234.930450px;}
.y236d_c00001{bottom:235.020450px;}
.y33eb_c00001{bottom:235.020630px;}
.y217_c00001{bottom:235.110450px;}
.y2ed0_c00001{bottom:235.260000px;}
.y2884_c00001{bottom:235.290009px;}
.yf7c_c00001{bottom:235.290600px;}
.y300a_c00001{bottom:235.440000px;}
.y21a8_c00001{bottom:235.559712px;}
.y171e_c00001{bottom:235.560450px;}
.y1838_c00001{bottom:235.560600px;}
.y2db4_c00001{bottom:235.620000px;}
.y3967_c00001{bottom:235.650099px;}
.y1724_c00001{bottom:235.650450px;}
.y254c_c00001{bottom:235.735950px;}
.y3368_c00001{bottom:235.800000px;}
.y24c7_c00001{bottom:235.918434px;}
.y24c2_c00001{bottom:235.920081px;}
.y1283_c00001{bottom:235.920450px;}
.y36ec_c00001{bottom:236.000370px;}
.y274e_c00001{bottom:236.100774px;}
.y32c1_c00001{bottom:236.160000px;}
.y2622_c00001{bottom:236.189100px;}
.y1c9_c00001{bottom:236.190450px;}
.y34ed_c00001{bottom:236.280600px;}
.y1c6f_c00001{bottom:236.340000px;}
.yb5b_c00001{bottom:236.370450px;}
.y2ad7_c00001{bottom:236.370600px;}
.y283_c00001{bottom:236.460600px;}
.y1add_c00001{bottom:236.520000px;}
.y36ce_c00001{bottom:236.550450px;}
.y1bbd_c00001{bottom:236.700000px;}
.y759_c00001{bottom:236.730600px;}
.y2bee_c00001{bottom:236.730873px;}
.y7bb_c00001{bottom:236.820600px;}
.y564_c00001{bottom:236.910450px;}
.yaff_c00001{bottom:236.999910px;}
.y3cf_c00001{bottom:237.090450px;}
.y15a7_c00001{bottom:237.090540px;}
.y245f_c00001{bottom:237.180450px;}
.y314a_c00001{bottom:237.240000px;}
.ydc3_c00001{bottom:237.270450px;}
.y27ee_c00001{bottom:237.358803px;}
.y3499_c00001{bottom:237.359550px;}
.yf21_c00001{bottom:237.360450px;}
.y2604_c00001{bottom:237.539874px;}
.yf10_c00001{bottom:237.540450px;}
.y37f7_c00001{bottom:237.540600px;}
.y33a3_c00001{bottom:237.630450px;}
.y17a9_c00001{bottom:237.720450px;}
.y1529_c00001{bottom:237.720540px;}
.y1a85_c00001{bottom:237.780000px;}
.y3728_c00001{bottom:237.808821px;}
.y2392_c00001{bottom:237.900450px;}
.y39d9_c00001{bottom:237.990450px;}
.y2cc2_c00001{bottom:237.990522px;}
.y3632_c00001{bottom:238.080450px;}
.yb67_c00001{bottom:238.080468px;}
.y35bb_c00001{bottom:238.082688px;}
.ye7c_c00001{bottom:238.170450px;}
.y1134_c00001{bottom:238.259460px;}
.yb06_c00001{bottom:238.260450px;}
.y300b_c00001{bottom:238.320000px;}
.y2b66_c00001{bottom:238.351998px;}
.y8d7_c00001{bottom:238.352520px;}
.y2c14_c00001{bottom:238.442265px;}
.y1ed9_c00001{bottom:238.500000px;}
.y2406_c00001{bottom:238.710600px;}
.y90a_c00001{bottom:238.800450px;}
.y43f_c00001{bottom:238.890450px;}
.y2f8d_c00001{bottom:239.040000px;}
.y13a5_c00001{bottom:239.071170px;}
.y123_c00001{bottom:239.160450px;}
.y218a_c00001{bottom:239.250900px;}
.y20b2_c00001{bottom:239.337900px;}
.y141e_c00001{bottom:239.340450px;}
.y3331_c00001{bottom:239.400000px;}
.y341d_c00001{bottom:239.427948px;}
.y3752_c00001{bottom:239.435868px;}
.y216b_c00001{bottom:239.518026px;}
.y2abd_c00001{bottom:239.520009px;}
.y4e8_c00001{bottom:239.520450px;}
.y3556_c00001{bottom:239.523732px;}
.y1cb4_c00001{bottom:239.580000px;}
.y2ea6_c00001{bottom:239.586120px;}
.y600_c00001{bottom:239.610450px;}
.yc60_c00001{bottom:239.610918px;}
.y177f_c00001{bottom:239.700450px;}
.y975_c00001{bottom:239.700600px;}
.y29ca_c00001{bottom:239.786274px;}
.y307_c00001{bottom:239.790450px;}
.y1064_c00001{bottom:239.790600px;}
.y25a_c00001{bottom:239.880450px;}
.y2f50_c00001{bottom:239.940000px;}
.y14fa_c00001{bottom:240.060450px;}
.y1d7c_c00001{bottom:240.123060px;}
.y22f4_c00001{bottom:240.150162px;}
.y9e4_c00001{bottom:240.150450px;}
.y2e70_c00001{bottom:240.300000px;}
.y13ae_c00001{bottom:240.330450px;}
.y546_c00001{bottom:240.420450px;}
.y2830_c00001{bottom:240.424104px;}
.y2ee0_c00001{bottom:240.480000px;}
.yccb_c00001{bottom:240.511566px;}
.y1bbe_c00001{bottom:240.660000px;}
.y2814_c00001{bottom:240.688317px;}
.y391c_c00001{bottom:240.782538px;}
.y1e7f_c00001{bottom:240.840000px;}
.y1106_c00001{bottom:240.870450px;}
.ya63_c00001{bottom:240.960450px;}
.y393a_c00001{bottom:240.960600px;}
.y1c70_c00001{bottom:241.020000px;}
.y259b_c00001{bottom:241.047300px;}
.y13d8_c00001{bottom:241.050450px;}
.y146_c00001{bottom:241.050600px;}
.y29dd_c00001{bottom:241.051296px;}
.y25b8_c00001{bottom:241.230450px;}
.y335_c00001{bottom:241.320450px;}
.yc88_c00001{bottom:241.322391px;}
.y1dce_c00001{bottom:241.393140px;}
.y2ba0_c00001{bottom:241.410153px;}
.y230c_c00001{bottom:241.500000px;}
.yc4f_c00001{bottom:241.500450px;}
.y2db5_c00001{bottom:241.560000px;}
.y3a03_c00001{bottom:241.590450px;}
.y1255_c00001{bottom:241.680405px;}
.y122e_c00001{bottom:241.766478px;}
.y2732_c00001{bottom:241.771494px;}
.y1309_c00001{bottom:241.859811px;}
.y2f5_c00001{bottom:241.950450px;}
.y2775_c00001{bottom:241.955868px;}
.yfce_c00001{bottom:242.036967px;}
.y78_c00001{bottom:242.040450px;}
.y3298_c00001{bottom:242.100000px;}
.y182d_c00001{bottom:242.130450px;}
.y3037_c00001{bottom:242.280000px;}
.y3501_c00001{bottom:242.309226px;}
.y2a04_c00001{bottom:242.309250px;}
.y3446_c00001{bottom:242.310450px;}
.y2de2_c00001{bottom:242.460000px;}
.y3824_c00001{bottom:242.489568px;}
.y7e0_c00001{bottom:242.490450px;}
.y5e3_c00001{bottom:242.580450px;}
.y2d89_c00001{bottom:242.646300px;}
.yed7_c00001{bottom:242.670666px;}
.y26a4_c00001{bottom:242.757912px;}
.y296e_c00001{bottom:242.759199px;}
.y10c2_c00001{bottom:242.760450px;}
.y1e0e_c00001{bottom:242.833140px;}
.y29b8_c00001{bottom:242.850450px;}
.ycfc_c00001{bottom:242.940450px;}
.y125f_c00001{bottom:242.940900px;}
.y81e_c00001{bottom:243.030600px;}
.ydea_c00001{bottom:243.126840px;}
.y2edb_c00001{bottom:243.180000px;}
.ya15_c00001{bottom:243.210450px;}
.y2a96_c00001{bottom:243.210600px;}
.yad3_c00001{bottom:243.299802px;}
.y28be_c00001{bottom:243.300450px;}
.y3318_c00001{bottom:243.360000px;}
.y3470_c00001{bottom:243.388200px;}
.y1849_c00001{bottom:243.480450px;}
.y11dd_c00001{bottom:243.481548px;}
.y2d3e_c00001{bottom:243.577494px;}
.y18aa_c00001{bottom:243.660600px;}
.y1796_c00001{bottom:243.750450px;}
.y495_c00001{bottom:243.840450px;}
.y39a5_c00001{bottom:243.928245px;}
.y1f51_c00001{bottom:243.939891px;}
.y175_c00001{bottom:244.020450px;}
.y2147_c00001{bottom:244.108758px;}
.y6ce_c00001{bottom:244.110450px;}
.y289f_c00001{bottom:244.110600px;}
.y1666_c00001{bottom:244.111437px;}
.y643_c00001{bottom:244.200600px;}
.y1f86_c00001{bottom:244.206624px;}
.y11e9_c00001{bottom:244.297677px;}
.y2354_c00001{bottom:244.380081px;}
.y70a_c00001{bottom:244.380450px;}
.y34d8_c00001{bottom:244.466274px;}
.y1076_c00001{bottom:244.470450px;}
.y8e8_c00001{bottom:244.560450px;}
.ydc2_c00001{bottom:244.561305px;}
.ya6e_c00001{bottom:244.650450px;}
.y34ad_c00001{bottom:244.830450px;}
.y16b1_c00001{bottom:244.830600px;}
.y1709_c00001{bottom:244.920450px;}
.y2e71_c00001{bottom:244.980000px;}
.y1091_c00001{bottom:245.010054px;}
.y9cc_c00001{bottom:245.010450px;}
.y398_c00001{bottom:245.010657px;}
.y1576_c00001{bottom:245.100720px;}
.y3810_c00001{bottom:245.280600px;}
.y19a5_c00001{bottom:245.340000px;}
.y38a2_c00001{bottom:245.359011px;}
.ya06_c00001{bottom:245.370600px;}
.y11a6_c00001{bottom:245.550450px;}
.y11b3_c00001{bottom:245.552961px;}
.y1026_c00001{bottom:245.553240px;}
.yca_c00001{bottom:245.640450px;}
.y87b_c00001{bottom:245.730450px;}
.y2524_c00001{bottom:245.730774px;}
.y199_c00001{bottom:245.820450px;}
.y19f1_c00001{bottom:245.887020px;}
.y2864_c00001{bottom:245.910009px;}
.y2ae9_c00001{bottom:245.910450px;}
.y5b7_c00001{bottom:246.000450px;}
.y1d49_c00001{bottom:246.070080px;}
.y167c_c00001{bottom:246.090450px;}
.y127d_c00001{bottom:246.090600px;}
.y299f_c00001{bottom:246.269550px;}
.y8ab_c00001{bottom:246.270450px;}
.y290e_c00001{bottom:246.360450px;}
.y27af_c00001{bottom:246.360600px;}
.y30e5_c00001{bottom:246.420000px;}
.ya2a_c00001{bottom:246.450600px;}
.y10d3_c00001{bottom:246.450618px;}
.y152b_c00001{bottom:246.540600px;}
.y3a4d_c00001{bottom:246.541917px;}
.y1b6e_c00001{bottom:246.600000px;}
.y2cf4_c00001{bottom:246.629730px;}
.y51e_c00001{bottom:246.630450px;}
.y34c2_c00001{bottom:246.720450px;}
.y36b0_c00001{bottom:246.725427px;}
.y28f3_c00001{bottom:246.810450px;}
.y2649_c00001{bottom:246.989550px;}
.y17c4_c00001{bottom:246.990450px;}
.y10e9_c00001{bottom:246.992700px;}
.y35b_c00001{bottom:247.080450px;}
.y1f0b_c00001{bottom:247.140000px;}
.yaf5_c00001{bottom:247.260450px;}
.y1641_c00001{bottom:247.350450px;}
.y1917_c00001{bottom:247.500000px;}
.y2f_c00001{bottom:247.530450px;}
.y316e_c00001{bottom:247.680000px;}
.y3f7_c00001{bottom:247.980450px;}
.y327b_c00001{bottom:248.040000px;}
.y14de_c00001{bottom:248.070450px;}
.yfb5_c00001{bottom:248.160450px;}
.y1f7_c00001{bottom:248.250450px;}
.y2b65_c00001{bottom:248.342376px;}
.y1bbf_c00001{bottom:248.400000px;}
.y9b8_c00001{bottom:248.430450px;}
.yffe_c00001{bottom:248.520450px;}
.y2bc2_c00001{bottom:248.609250px;}
.y146f_c00001{bottom:248.610450px;}
.y1648_c00001{bottom:248.700450px;}
.y15b3_c00001{bottom:248.700600px;}
.y300c_c00001{bottom:248.760000px;}
.y3148_c00001{bottom:248.940000px;}
.y1c3d_c00001{bottom:249.120000px;}
.y909_c00001{bottom:249.150450px;}
.y2243_c00001{bottom:249.239640px;}
.y31f3_c00001{bottom:249.300000px;}
.ya4d_c00001{bottom:249.330450px;}
.y25e3_c00001{bottom:249.419550px;}
.y3966_c00001{bottom:249.420387px;}
.y52_c00001{bottom:249.420450px;}
.y312b_c00001{bottom:249.480000px;}
.y133e_c00001{bottom:249.600450px;}
.y323c_c00001{bottom:249.660000px;}
.y247d_c00001{bottom:249.690450px;}
.y2571_c00001{bottom:249.692265px;}
.y383d_c00001{bottom:249.779937px;}
.y3a35_c00001{bottom:249.788478px;}
.y334d_c00001{bottom:249.840000px;}
.yc24_c00001{bottom:249.870450px;}
.y2b08_c00001{bottom:249.959568px;}
.y36b_c00001{bottom:249.960450px;}
.y24f5_c00001{bottom:250.050450px;}
.y116a_c00001{bottom:250.139100px;}
.y9e_c00001{bottom:250.140450px;}
.y15de_c00001{bottom:250.140540px;}
.y1ea9_c00001{bottom:250.200000px;}
.y13d7_c00001{bottom:250.230450px;}
.y284c_c00001{bottom:250.320150px;}
.y1949_c00001{bottom:250.380000px;}
.y1a39_c00001{bottom:250.383060px;}
.y1970_c00001{bottom:250.410450px;}
.yb1e_c00001{bottom:250.500450px;}
.y3584_c00001{bottom:250.590450px;}
.y38bf_c00001{bottom:250.860450px;}
.y117a_c00001{bottom:250.946211px;}
.y2924_c00001{bottom:250.950450px;}
.y2cad_c00001{bottom:251.039505px;}
.y1bfc_c00001{bottom:251.100000px;}
.y2683_c00001{bottom:251.130450px;}
.y33f3_c00001{bottom:251.131584px;}
.yd55_c00001{bottom:251.220450px;}
.y310b_c00001{bottom:251.280000px;}
.y84b_c00001{bottom:251.310450px;}
.y2335_c00001{bottom:251.396328px;}
.y469_c00001{bottom:251.400450px;}
.y1e43_c00001{bottom:251.477100px;}
.yf5_c00001{bottom:251.490450px;}
.y3727_c00001{bottom:251.668884px;}
.ye12_c00001{bottom:251.672340px;}
.y2d14_c00001{bottom:251.673627px;}
.y2792_c00001{bottom:251.760522px;}
.y3149_c00001{bottom:251.820000px;}
.y11a1_c00001{bottom:251.850450px;}
.yb66_c00001{bottom:251.850756px;}
.y2285_c00001{bottom:251.939127px;}
.y21f8_c00001{bottom:251.939568px;}
.y1441_c00001{bottom:251.940450px;}
.y2f57_c00001{bottom:252.000000px;}
.y274d_c00001{bottom:252.030450px;}
.y1133_c00001{bottom:252.119523px;}
.ye66_c00001{bottom:252.119550px;}
.yf7b_c00001{bottom:252.210450px;}
.y23dd_c00001{bottom:252.298800px;}
.y2f8e_c00001{bottom:252.360000px;}
.y14bb_c00001{bottom:252.478947px;}
.y14b3_c00001{bottom:252.480594px;}
.y319b_c00001{bottom:252.540000px;}
.y16c3_c00001{bottom:252.570450px;}
.y2bed_c00001{bottom:252.570774px;}
.y20f4_c00001{bottom:252.658467px;}
.y21d8_c00001{bottom:252.660009px;}
.y2f0e_c00001{bottom:252.720000px;}
.y2c0_c00001{bottom:252.750600px;}
.y2391_c00001{bottom:252.930450px;}
.y18c8_c00001{bottom:253.020450px;}
.y2603_c00001{bottom:253.110450px;}
.yfa4_c00001{bottom:253.200450px;}
.y1125_c00001{bottom:253.200540px;}
.y8c0_c00001{bottom:253.380450px;}
.y2ea5_c00001{bottom:253.443060px;}
.y35db_c00001{bottom:253.470450px;}
.yed1_c00001{bottom:253.470720px;}
.y254b_c00001{bottom:253.555950px;}
.y26ee_c00001{bottom:253.560000px;}
.y983_c00001{bottom:253.560600px;}
.y32e9_c00001{bottom:253.620000px;}
.y1feb_c00001{bottom:253.650450px;}
.y12b5_c00001{bottom:253.830450px;}
.y39c6_c00001{bottom:253.920450px;}
.y35ba_c00001{bottom:253.922589px;}
.y3378_c00001{bottom:253.962540px;}
.y1b21_c00001{bottom:253.980000px;}
.y2ad6_c00001{bottom:254.010450px;}
.y33ea_c00001{bottom:254.010540px;}
.ye41_c00001{bottom:254.101395px;}
.y9a2_c00001{bottom:254.280450px;}
.y2c13_c00001{bottom:254.282166px;}
.y908_c00001{bottom:254.370450px;}
.y26b5_c00001{bottom:254.460450px;}
.y229f_c00001{bottom:254.549937px;}
.y1fb1_c00001{bottom:254.550450px;}
.y684_c00001{bottom:254.640450px;}
.y1e7e_c00001{bottom:254.700000px;}
.y3855_c00001{bottom:254.730450px;}
.y16e6_c00001{bottom:254.910450px;}
.y1dcd_c00001{bottom:255.250080px;}
.y3751_c00001{bottom:255.275769px;}
.y3555_c00001{bottom:255.363633px;}
.y2e44_c00001{bottom:255.420000px;}
.y20c7_c00001{bottom:255.450450px;}
.y122d_c00001{bottom:255.536766px;}
.y1c8_c00001{bottom:255.540450px;}
.y1308_c00001{bottom:255.630099px;}
.y22ba_c00001{bottom:255.720450px;}
.y1ed8_c00001{bottom:255.780000px;}
.yfcd_c00001{bottom:255.807255px;}
.y216_c00001{bottom:255.810450px;}
.ybcc_c00001{bottom:255.899325px;}
.y2eba_c00001{bottom:255.960000px;}
.y22de_c00001{bottom:255.989937px;}
.y3764_c00001{bottom:255.990450px;}
.y27c2_c00001{bottom:256.080450px;}
.y15a6_c00001{bottom:256.081125px;}
.y2de1_c00001{bottom:256.140000px;}
.y120b_c00001{bottom:256.260450px;}
.y282f_c00001{bottom:256.264005px;}
.y3081_c00001{bottom:256.320000px;}
.y1748_c00001{bottom:256.350450px;}
.y162b_c00001{bottom:256.440600px;}
.y1ffe_c00001{bottom:256.443219px;}
.y2fe3_c00001{bottom:256.500000px;}
.y201b_c00001{bottom:256.530450px;}
.y391b_c00001{bottom:256.622439px;}
.y1ad8_c00001{bottom:256.680000px;}
.y1e0d_c00001{bottom:256.690080px;}
.ybd4_c00001{bottom:256.707939px;}
.y33bb_c00001{bottom:256.710450px;}
.y1528_c00001{bottom:256.711125px;}
.y32c0_c00001{bottom:256.860000px;}
.y61c_c00001{bottom:256.890450px;}
.y29dc_c00001{bottom:256.980972px;}
.y199a_c00001{bottom:257.040000px;}
.y8f8_c00001{bottom:257.070450px;}
.y2883_c00001{bottom:257.160522px;}
.y325b_c00001{bottom:257.220000px;}
.y17e7_c00001{bottom:257.250450px;}
.y6ad_c00001{bottom:257.339010px;}
.y2668_c00001{bottom:257.430450px;}
.y34ec_c00001{bottom:257.520450px;}
.y7ba_c00001{bottom:257.520600px;}
.y236c_c00001{bottom:257.610450px;}
.y2731_c00001{bottom:257.611395px;}
.y24c6_c00001{bottom:257.698362px;}
.y39a4_c00001{bottom:257.698533px;}
.y24c1_c00001{bottom:257.700009px;}
.y6e9_c00001{bottom:257.700450px;}
.y1637_c00001{bottom:257.700600px;}
.yc61_c00001{bottom:257.701026px;}
.y1f6a_c00001{bottom:257.790450px;}
.y2774_c00001{bottom:257.795769px;}
.y1a80_c00001{bottom:257.940000px;}
.y282_c00001{bottom:258.060450px;}
.y38d7_c00001{bottom:258.150450px;}
.y27e9_c00001{bottom:258.240450px;}
.y2b64_c00001{bottom:258.242367px;}
.y105b_c00001{bottom:258.330450px;}
.ya95_c00001{bottom:258.410235px;}
.y17a8_c00001{bottom:258.420450px;}
.y890_c00001{bottom:258.510450px;}
.y2e14_c00001{bottom:258.670980px;}
.y39d8_c00001{bottom:258.690450px;}
.y3ce_c00001{bottom:258.780450px;}
.y1c3e_c00001{bottom:258.840000px;}
.y259a_c00001{bottom:258.867300px;}
.y23b3_c00001{bottom:258.870450px;}
.y211c_c00001{bottom:258.959790px;}
.y43e_c00001{bottom:259.050450px;}
.y38a1_c00001{bottom:259.129299px;}
.y563_c00001{bottom:259.140450px;}
.y1bfd_c00001{bottom:259.200000px;}
.yd29_c00001{bottom:259.230450px;}
.y974_c00001{bottom:259.320450px;}
.y1837_c00001{bottom:259.320600px;}
.y230b_c00001{bottom:259.410450px;}
.yc89_c00001{bottom:259.412652px;}
.y907_c00001{bottom:259.500450px;}
.yf37_c00001{bottom:259.590450px;}
.y28bd_c00001{bottom:259.680450px;}
.y19f0_c00001{bottom:259.743960px;}
.y1d48_c00001{bottom:259.746120px;}
.y2cc1_c00001{bottom:259.770450px;}
.y122_c00001{bottom:259.860450px;}
.y709_c00001{bottom:259.950000px;}
.y2a3a_c00001{bottom:259.950450px;}
.yed6_c00001{bottom:259.950657px;}
.y1a81_c00001{bottom:260.100000px;}
.y2a03_c00001{bottom:260.129250px;}
.y259_c00001{bottom:260.130450px;}
.y8d6_c00001{bottom:260.223033px;}
.y230_c00001{bottom:260.310450px;}
.y3955_c00001{bottom:260.397750px;}
.yac0_c00001{bottom:260.490450px;}
.yf6b_c00001{bottom:260.490600px;}
.y2946_c00001{bottom:260.579100px;}
.y1ad9_c00001{bottom:260.640000px;}
.y807_c00001{bottom:260.670450px;}
.y78f_c00001{bottom:260.760450px;}
.y4e7_c00001{bottom:260.940450px;}
.y334_c00001{bottom:261.030450px;}
.y545_c00001{bottom:261.120450px;}
.y1c6d_c00001{bottom:261.180000px;}
.ycca_c00001{bottom:261.211287px;}
.y341c_c00001{bottom:261.298461px;}
.y2ca6_c00001{bottom:261.300450px;}
.y216a_c00001{bottom:261.388539px;}
.y2abc_c00001{bottom:261.390522px;}
.y2043_c00001{bottom:261.476562px;}
.y30e4_c00001{bottom:261.540000px;}
.ya62_c00001{bottom:261.660450px;}
.y1cf4_c00001{bottom:261.720000px;}
.y2c8f_c00001{bottom:261.837408px;}
.y225f_c00001{bottom:261.840450px;}
.ycfb_c00001{bottom:261.930450px;}
.y205d_c00001{bottom:262.020450px;}
.yde9_c00001{bottom:262.026165px;}
.y1cb1_c00001{bottom:262.080000px;}
.y397_c00001{bottom:262.290648px;}
.y3a4c_c00001{bottom:262.381818px;}
.y37ab_c00001{bottom:262.386687px;}
.y2813_c00001{bottom:262.468245px;}
.y3988_c00001{bottom:262.560000px;}
.y36af_c00001{bottom:262.565328px;}
.y30a6_c00001{bottom:262.620000px;}
.y720_c00001{bottom:262.650450px;}
.y77_c00001{bottom:262.740450px;}
.y316d_c00001{bottom:262.800000px;}
.y1371_c00001{bottom:262.830450px;}
.y33a2_c00001{bottom:262.920450px;}
.y10d4_c00001{bottom:262.920492px;}
.y27ae_c00001{bottom:263.010450px;}
.y3a02_c00001{bottom:263.100450px;}
.y338d_c00001{bottom:263.103150px;}
.y2b9f_c00001{bottom:263.190081px;}
.y2a5b_c00001{bottom:263.190450px;}
.ybff_c00001{bottom:263.280450px;}
.y177e_c00001{bottom:263.460450px;}
.ydc1_c00001{bottom:263.460630px;}
.y10ea_c00001{bottom:263.462700px;}
.y3939_c00001{bottom:263.550450px;}
.y5e2_c00001{bottom:263.640450px;}
.y2d3d_c00001{bottom:263.647836px;}
.yf20_c00001{bottom:263.730450px;}
.yda1_c00001{bottom:263.820450px;}
.y11de_c00001{bottom:264.002007px;}
.y2db2_c00001{bottom:264.060000px;}
.y299e_c00001{bottom:264.089550px;}
.y342e_c00001{bottom:264.089700px;}
.y221a_c00001{bottom:264.090450px;}
.y1575_c00001{bottom:264.090630px;}
.y1699_c00001{bottom:264.180600px;}
.y1a38_c00001{bottom:264.240000px;}
.y1f85_c00001{bottom:264.276966px;}
.y3823_c00001{bottom:264.360081px;}
.y660_c00001{bottom:264.360450px;}
.y1f0a_c00001{bottom:264.420000px;}
.y296d_c00001{bottom:264.629712px;}
.y2a5a_c00001{bottom:264.630450px;}
.y77b_c00001{bottom:264.720450px;}
.y2648_c00001{bottom:264.809550px;}
.y6cd_c00001{bottom:264.810450px;}
.y1665_c00001{bottom:264.811158px;}
.y11ea_c00001{bottom:264.818136px;}
.y38d6_c00001{bottom:264.990450px;}
.yc9_c00001{bottom:265.080450px;}
.y2e6e_c00001{bottom:265.140000px;}
.y1e42_c00001{bottom:265.153140px;}
.y2b88_c00001{bottom:265.260450px;}
.y3726_c00001{bottom:265.439172px;}
.y1d79_c00001{bottom:265.500000px;}
.yd92_c00001{bottom:265.530450px;}
.y2570_c00001{bottom:265.532166px;}
.y174_c00001{bottom:265.620450px;}
.y81d_c00001{bottom:265.620600px;}
.y3a34_c00001{bottom:265.628379px;}
.yf60_c00001{bottom:265.710450px;}
.yb65_c00001{bottom:265.710819px;}
.y141d_c00001{bottom:265.800450px;}
.y284b_c00001{bottom:265.800600px;}
.y1c6e_c00001{bottom:265.860000px;}
.y1132_c00001{bottom:265.889811px;}
.y1075_c00001{bottom:265.890450px;}
.y2146_c00001{bottom:265.979271px;}
.y3763_c00001{bottom:266.070450px;}
.y2353_c00001{bottom:266.160009px;}
.y642_c00001{bottom:266.250450px;}
.y11b2_c00001{bottom:266.252682px;}
.y1025_c00001{bottom:266.252961px;}
.y8e7_c00001{bottom:266.520450px;}
.yace_c00001{bottom:266.610450px;}
.y35f3_c00001{bottom:266.696562px;}
.y5b6_c00001{bottom:266.700450px;}
.y2d88_c00001{bottom:266.760000px;}
.y36eb_c00001{bottom:266.871000px;}
.y3682_c00001{bottom:266.880450px;}
.y334c_c00001{bottom:266.940000px;}
.yb00_c00001{bottom:266.969730px;}
.y290d_c00001{bottom:267.060450px;}
.y359e_c00001{bottom:267.145212px;}
.y2c33_c00001{bottom:267.150450px;}
.y87a_c00001{bottom:267.240450px;}
.y2ea4_c00001{bottom:267.300000px;}
.y25e2_c00001{bottom:267.330000px;}
.y51d_c00001{bottom:267.330450px;}
.y198_c00001{bottom:267.420450px;}
.y3036_c00001{bottom:267.483960px;}
.y2ad5_c00001{bottom:267.510450px;}
.y18a9_c00001{bottom:267.510600px;}
.y1795_c00001{bottom:267.600450px;}
.y2863_c00001{bottom:267.689937px;}
.y35a_c00001{bottom:267.780450px;}
.y758_c00001{bottom:267.780600px;}
.y1a82_c00001{bottom:267.840000px;}
.y3534_c00001{bottom:267.861333px;}
.y380f_c00001{bottom:267.870450px;}
.yad4_c00001{bottom:267.959523px;}
.y1256_c00001{bottom:267.960360px;}
.y1f50_c00001{bottom:268.059585px;}
.y2b63_c00001{bottom:268.142358px;}
.yb07_c00001{bottom:268.230450px;}
.y17d7_c00001{bottom:268.320450px;}
.y1ada_c00001{bottom:268.380000px;}
.y1f6_c00001{bottom:268.410450px;}
.y133d_c00001{bottom:268.500450px;}
.y1bba_c00001{bottom:268.560000px;}
.yf0f_c00001{bottom:268.590450px;}
.y1708_c00001{bottom:268.680450px;}
.y320c_c00001{bottom:268.689060px;}
.y116b_c00001{bottom:268.858965px;}
.yc23_c00001{bottom:268.860450px;}
.y3009_c00001{bottom:268.920000px;}
.y1dcc_c00001{bottom:268.926120px;}
.y207a_c00001{bottom:269.037174px;}
.y2ed3_c00001{bottom:269.100000px;}
.y15dd_c00001{bottom:269.130063px;}
.ya29_c00001{bottom:269.130450px;}
.y13d6_c00001{bottom:269.220450px;}
.y1260_c00001{bottom:269.221350px;}
.y2db3_c00001{bottom:269.280000px;}
.y122c_c00001{bottom:269.307054px;}
.y3f6_c00001{bottom:269.310600px;}
.y13a6_c00001{bottom:269.311530px;}
.y3216_c00001{bottom:269.404542px;}
.y1307_c00001{bottom:269.490162px;}
.yfcc_c00001{bottom:269.577543px;}
.y24f4_c00001{bottom:269.580450px;}
.y117b_c00001{bottom:269.666076px;}
.y2602_c00001{bottom:269.760450px;}
.y2e6f_c00001{bottom:269.820000px;}
.y906_c00001{bottom:269.850450px;}
.y35b9_c00001{bottom:269.852265px;}
.y8aa_c00001{bottom:270.030450px;}
.y23dc_c00001{bottom:270.118800px;}
.y2c12_c00001{bottom:270.122067px;}
.yb1d_c00001{bottom:270.210450px;}
.y35da_c00001{bottom:270.300450px;}
.y323b_c00001{bottom:270.360000px;}
.y1e0c_c00001{bottom:270.366120px;}
.y13af_c00001{bottom:270.570450px;}
.ye11_c00001{bottom:270.571665px;}
.y36a_c00001{bottom:270.660450px;}
.y32e8_c00001{bottom:270.720000px;}
.y17c3_c00001{bottom:270.750450px;}
.y9d_c00001{bottom:270.840450px;}
.y1063_c00001{bottom:270.840600px;}
.y1ea8_c00001{bottom:270.900000px;}
.y2242_c00001{bottom:271.019568px;}
.y1916_c00001{bottom:271.080000px;}
.y14f9_c00001{bottom:271.110450px;}
.y3750_c00001{bottom:271.115670px;}
.y3377_c00001{bottom:271.248120px;}
.y3554_c00001{bottom:271.293309px;}
.y254a_c00001{bottom:271.466400px;}
.y39a3_c00001{bottom:271.468821px;}
.y58b_c00001{bottom:271.470450px;}
.y242a_c00001{bottom:271.650450px;}
.y2b07_c00001{bottom:271.739496px;}
.y196e_c00001{bottom:271.830450px;}
.y1105_c00001{bottom:271.920450px;}
.y196f_c00001{bottom:272.010450px;}
.y468_c00001{bottom:272.100450px;}
.y145_c00001{bottom:272.100600px;}
.y282e_c00001{bottom:272.103906px;}
.y1124_c00001{bottom:272.190450px;}
.y2e13_c00001{bottom:272.347020px;}
.y21a7_c00001{bottom:272.370162px;}
.y93a_c00001{bottom:272.370450px;}
.y33ba_c00001{bottom:272.460450px;}
.yed0_c00001{bottom:272.460630px;}
.y1bbb_c00001{bottom:272.520000px;}
.yc4e_c00001{bottom:272.550450px;}
.y391a_c00001{bottom:272.552115px;}
.y2cac_c00001{bottom:272.819433px;}
.y12b4_c00001{bottom:272.820450px;}
.y29db_c00001{bottom:272.820873px;}
.y38a0_c00001{bottom:272.899587px;}
.y2621_c00001{bottom:272.999550px;}
.y2f4_c00001{bottom:273.000450px;}
.y33f2_c00001{bottom:273.002097px;}
.y1ed7_c00001{bottom:273.060000px;}
.ye40_c00001{bottom:273.091305px;}
.y2334_c00001{bottom:273.176256px;}
.y2de0_c00001{bottom:273.240000px;}
.y38be_c00001{bottom:273.360873px;}
.y19ef_c00001{bottom:273.420000px;}
.y1090_c00001{bottom:273.450450px;}
.y2bf_c00001{bottom:273.450600px;}
.y7df_c00001{bottom:273.540450px;}
.y2730_c00001{bottom:273.541071px;}
.y1d47_c00001{bottom:273.603060px;}
.y2682_c00001{bottom:273.630450px;}
.y2773_c00001{bottom:273.635670px;}
.y21f7_c00001{bottom:273.719496px;}
.y10c1_c00001{bottom:273.720450px;}
.y2284_c00001{bottom:273.809640px;}
.y1761_c00001{bottom:273.810450px;}
.y3330_c00001{bottom:273.960000px;}
.y13bf_c00001{bottom:273.990450px;}
.y39c5_c00001{bottom:274.079811px;}
.y905_c00001{bottom:274.080450px;}
.y3498_c00001{bottom:274.170000px;}
.y14ba_c00001{bottom:274.258875px;}
.y1c7_c00001{bottom:274.260450px;}
.y14b2_c00001{bottom:274.260522px;}
.y33e9_c00001{bottom:274.440450px;}
.y20f3_c00001{bottom:274.528980px;}
.y21d7_c00001{bottom:274.530522px;}
.y8bf_c00001{bottom:274.710450px;}
.y365d_c00001{bottom:274.800450px;}
.y3315_c00001{bottom:274.860000px;}
.y494_c00001{bottom:274.890450px;}
.y15a5_c00001{bottom:274.980450px;}
.y2c5b_c00001{bottom:275.070450px;}
.y742_c00001{bottom:275.160450px;}
.y3127_c00001{bottom:275.220000px;}
.yf7a_c00001{bottom:275.340000px;}
.y683_c00001{bottom:275.340450px;}
.y708_c00001{bottom:275.430450px;}
.y3938_c00001{bottom:275.520000px;}
.y2f8b_c00001{bottom:275.580000px;}
.y1527_c00001{bottom:275.610450px;}
.y9a1_c00001{bottom:275.700450px;}
.y1a36_c00001{bottom:275.760000px;}
.ya4c_c00001{bottom:275.790450px;}
.y27e8_c00001{bottom:275.790522px;}
.yc62_c00001{bottom:275.791134px;}
.y18e5_c00001{bottom:275.880450px;}
.y16b0_c00001{bottom:275.880600px;}
.y9cb_c00001{bottom:275.970450px;}
.y2f1c_c00001{bottom:276.120000px;}
.y3061_c00001{bottom:276.123960px;}
.y20b1_c00001{bottom:276.148350px;}
.y28bc_c00001{bottom:276.330450px;}
.y1f26_c00001{bottom:276.420450px;}
.ya05_c00001{bottom:276.420600px;}
.y215_c00001{bottom:276.510450px;}
.y951_c00001{bottom:276.600450px;}
.ya94_c00001{bottom:276.680703px;}
.ya8b_c00001{bottom:276.683709px;}
.ya86_c00001{bottom:276.685212px;}
.y29c9_c00001{bottom:276.685662px;}
.ya81_c00001{bottom:276.686715px;}
.ya7c_c00001{bottom:276.688218px;}
.y2599_c00001{bottom:276.777750px;}
.y18c7_c00001{bottom:276.780450px;}
.yb64_c00001{bottom:276.870450px;}
.y37f6_c00001{bottom:276.960450px;}
.y22f3_c00001{bottom:276.960612px;}
.y1747_c00001{bottom:277.050450px;}
.y2cef_c00001{bottom:277.140450px;}
.y127c_c00001{bottom:277.140600px;}
.y3367_c00001{bottom:277.200000px;}
.y3500_c00001{bottom:277.229928px;}
.y1fea_c00001{bottom:277.230450px;}
.yed5_c00001{bottom:277.230648px;}
.y2bd3_c00001{bottom:277.410450px;}
.yd28_c00001{bottom:277.500450px;}
.yc8a_c00001{bottom:277.502913px;}
.y32bf_c00001{bottom:277.560000px;}
.y61b_c00001{bottom:277.590450px;}
.y1872_c00001{bottom:277.680450px;}
.yb5a_c00001{bottom:277.770450px;}
.y229e_c00001{bottom:277.860450px;}
.y325a_c00001{bottom:277.920000px;}
.y2a02_c00001{bottom:277.949250px;}
.y34eb_c00001{bottom:277.950450px;}
.y2b62_c00001{bottom:278.042349px;}
.y22b9_c00001{bottom:278.220450px;}
.y7b9_c00001{bottom:278.220600px;}
.yd77_c00001{bottom:278.222115px;}
.yaf4_c00001{bottom:278.310450px;}
.y3a4b_c00001{bottom:278.311494px;}
.y9e3_c00001{bottom:278.400450px;}
.y36ae_c00001{bottom:278.405229px;}
.y3296_c00001{bottom:278.460000px;}
.y1f69_c00001{bottom:278.490450px;}
.y2e_c00001{bottom:278.580450px;}
.y16e5_c00001{bottom:278.670450px;}
.y2ca5_c00001{bottom:278.759937px;}
.yf1f_c00001{bottom:278.760450px;}
.y2889_c00001{bottom:278.940450px;}
.y1e41_c00001{bottom:279.010080px;}
.ybcd_c00001{bottom:279.119172px;}
.y2523_c00001{bottom:279.119937px;}
.y27c1_c00001{bottom:279.120000px;}
.y14dd_c00001{bottom:279.120450px;}
.y1c3b_c00001{bottom:279.180000px;}
.y3725_c00001{bottom:279.209460px;}
.y3937_c00001{bottom:279.210450px;}
.y973_c00001{bottom:279.300450px;}
.y1bfa_c00001{bottom:279.360000px;}
.ye58_c00001{bottom:279.390450px;}
.y281_c00001{bottom:279.480450px;}
.y396_c00001{bottom:279.480459px;}
.y10d5_c00001{bottom:279.480546px;}
.y3316_c00001{bottom:279.540000px;}
.y26a3_c00001{bottom:279.568362px;}
.y24c5_c00001{bottom:279.568875px;}
.ye7b_c00001{bottom:279.570450px;}
.y24c0_c00001{bottom:279.570522px;}
.y1131_c00001{bottom:279.660099px;}
.y146e_c00001{bottom:279.660450px;}
.y1647_c00001{bottom:279.750450px;}
.y15b2_c00001{bottom:279.750600px;}
.y1d7a_c00001{bottom:279.900000px;}
.ybd5_c00001{bottom:279.927786px;}
.y2667_c00001{bottom:279.930450px;}
.y43d_c00001{bottom:280.020450px;}
.y10eb_c00001{bottom:280.023150px;}
.y1bbc_c00001{bottom:280.080000px;}
.y236b_c00001{bottom:280.110450px;}
.y346f_c00001{bottom:280.198650px;}
.y3cd_c00001{bottom:280.200450px;}
.y249b_c00001{bottom:280.290450px;}
.y1491_c00001{bottom:280.380450px;}
.y51_c00001{bottom:280.470450px;}
.y121_c00001{bottom:280.560450px;}
.y2e43_c00001{bottom:280.627020px;}
.y211b_c00001{bottom:280.830303px;}
.y333_c00001{bottom:280.830450px;}
.ycfa_c00001{bottom:280.920450px;}
.y30e3_c00001{bottom:280.983060px;}
.y5ff_c00001{bottom:281.010450px;}
.yde8_c00001{bottom:281.016075px;}
.y17e6_c00001{bottom:281.100450px;}
.y2eda_c00001{bottom:281.160000px;}
.y88f_c00001{bottom:281.190450px;}
.y2f4f_c00001{bottom:281.340000px;}
.y34d7_c00001{bottom:281.365662px;}
.y284a_c00001{bottom:281.370150px;}
.y120a_c00001{bottom:281.460450px;}
.y256f_c00001{bottom:281.461842px;}
.y3a33_c00001{bottom:281.468280px;}
.y1b6b_c00001{bottom:281.520000px;}
.y258_c00001{bottom:281.550450px;}
.y36cd_c00001{bottom:281.730450px;}
.y544_c00001{bottom:281.820450px;}
.y1cf2_c00001{bottom:281.880000px;}
.ycc9_c00001{bottom:281.911008px;}
.y299d_c00001{bottom:282.000000px;}
.y307f_c00001{bottom:282.060000px;}
.y37be_c00001{bottom:282.090450px;}
.y19a3_c00001{bottom:282.240000px;}
.y316c_c00001{bottom:282.243060px;}
.y84a_c00001{bottom:282.360450px;}
.y2ea3_c00001{bottom:282.420000px;}
.y4e6_c00001{bottom:282.450450px;}
.ydc0_c00001{bottom:282.450540px;}
.yf4_c00001{bottom:282.540450px;}
.y31c7_c00001{bottom:282.600000px;}
.y2647_c00001{bottom:282.720000px;}
.y30a5_c00001{bottom:282.780000px;}
.y1dcb_c00001{bottom:282.783060px;}
.y11a0_c00001{bottom:282.900450px;}
.y1440_c00001{bottom:282.990450px;}
.y341b_c00001{bottom:283.078389px;}
.y351b_c00001{bottom:283.080450px;}
.y1574_c00001{bottom:283.080540px;}
.y122b_c00001{bottom:283.167117px;}
.y2169_c00001{bottom:283.168467px;}
.y171d_c00001{bottom:283.170450px;}
.y1836_c00001{bottom:283.170600px;}
.y8d5_c00001{bottom:283.172331px;}
.y1306_c00001{bottom:283.260450px;}
.yfcb_c00001{bottom:283.437606px;}
.y76_c00001{bottom:283.440450px;}
.y16c2_c00001{bottom:283.620450px;}
.y1b6c_c00001{bottom:283.680000px;}
.y2c8e_c00001{bottom:283.707921px;}
.y5e1_c00001{bottom:283.800450px;}
.y2d3c_c00001{bottom:283.807116px;}
.y1a37_c00001{bottom:283.860000px;}
.y128d_c00001{bottom:283.890450px;}
.y3614_c00001{bottom:284.070450px;}
.y2a58_c00001{bottom:284.160450px;}
.y334b_c00001{bottom:284.220000px;}
.y1e0b_c00001{bottom:284.223060px;}
.y641_c00001{bottom:284.250450px;}
.y2812_c00001{bottom:284.338758px;}
.y2a39_c00001{bottom:284.340450px;}
.y1f84_c00001{bottom:284.436246px;}
.y351a_c00001{bottom:284.520450px;}
.y11df_c00001{bottom:284.522466px;}
.y806_c00001{bottom:284.610450px;}
.y982_c00001{bottom:284.610600px;}
.y3109_c00001{bottom:284.760000px;}
.ybfe_c00001{bottom:284.790450px;}
.y153e_c00001{bottom:284.880450px;}
.y2b9e_c00001{bottom:284.970009px;}
.y25e1_c00001{bottom:285.150000px;}
.y129c_c00001{bottom:285.150450px;}
.y39a2_c00001{bottom:285.328884px;}
.y2bc1_c00001{bottom:285.419700px;}
.y6cc_c00001{bottom:285.420450px;}
.y11eb_c00001{bottom:285.428775px;}
.y1664_c00001{bottom:285.510879px;}
.y2601_c00001{bottom:285.600450px;}
.y1b20_c00001{bottom:285.660000px;}
.yd54_c00001{bottom:285.690450px;}
.y35b8_c00001{bottom:285.692166px;}
.y6ac_c00001{bottom:285.779406px;}
.yc8_c00001{bottom:285.780450px;}
.y2f8c_c00001{bottom:285.840000px;}
.y205c_c00001{bottom:285.870450px;}
.y320b_c00001{bottom:285.974640px;}
.y1c6b_c00001{bottom:286.020000px;}
.y2c11_c00001{bottom:286.051743px;}
.y3822_c00001{bottom:286.140009px;}
.y8e6_c00001{bottom:286.140450px;}
.y2e12_c00001{bottom:286.203960px;}
.y3483_c00001{bottom:286.230450px;}
.y25b7_c00001{bottom:286.320450px;}
.y296c_c00001{bottom:286.409640px;}
.y2703_c00001{bottom:286.410450px;}
.y1cf3_c00001{bottom:286.560000px;}
.y3445_c00001{bottom:286.590450px;}
.y2219_c00001{bottom:286.680450px;}
.y173_c00001{bottom:286.681125px;}
.y389f_c00001{bottom:286.759650px;}
.y2d21_c00001{bottom:286.860450px;}
.y11b1_c00001{bottom:286.952403px;}
.y1024_c00001{bottom:286.952682px;}
.y24f3_c00001{bottom:287.033241px;}
.y240a_c00001{bottom:287.040450px;}
.y374f_c00001{bottom:287.045346px;}
.y3553_c00001{bottom:287.133210px;}
.y29b7_c00001{bottom:287.220000px;}
.y177d_c00001{bottom:287.310450px;}
.y5b5_c00001{bottom:287.400450px;}
.y1d46_c00001{bottom:287.460000px;}
.y116c_c00001{bottom:287.488650px;}
.y133c_c00001{bottom:287.490450px;}
.y162a_c00001{bottom:287.490600px;}
.yb4b_c00001{bottom:287.580450px;}
.y1bfb_c00001{bottom:287.640000px;}
.y3a01_c00001{bottom:287.670450px;}
.y2145_c00001{bottom:287.759199px;}
.y290c_c00001{bottom:287.760450px;}
.yc22_c00001{bottom:287.850450px;}
.y39c4_c00001{bottom:287.939874px;}
.y15dc_c00001{bottom:287.940450px;}
.y2b61_c00001{bottom:287.942340px;}
.y1a7d_c00001{bottom:288.000000px;}
.y23db_c00001{bottom:288.029250px;}
.y51c_c00001{bottom:288.030450px;}
.y2352_c00001{bottom:288.030522px;}
.y282d_c00001{bottom:288.033582px;}
.y197_c00001{bottom:288.120450px;}
.y3080_c00001{bottom:288.180000px;}
.y117c_c00001{bottom:288.295761px;}
.y3376_c00001{bottom:288.354420px;}
.y3919_c00001{bottom:288.392016px;}
.y359_c00001{bottom:288.480450px;}
.y1ad5_c00001{bottom:288.540000px;}
.y3762_c00001{bottom:288.570450px;}
.y879_c00001{bottom:288.660450px;}
.y29da_c00001{bottom:288.660774px;}
.y19ee_c00001{bottom:288.720000px;}
.y6e8_c00001{bottom:288.750450px;}
.y1636_c00001{bottom:288.750600px;}
.y1807_c00001{bottom:288.930450px;}
.y2c32_c00001{bottom:289.020450px;}
.y1c3c_c00001{bottom:289.080000px;}
.ye62_c00001{bottom:289.110450px;}
.yb1c_c00001{bottom:289.200450px;}
.y38bd_c00001{bottom:289.200774px;}
.y2549_c00001{bottom:289.286400px;}
.y289e_c00001{bottom:289.290450px;}
.y33a1_c00001{bottom:289.380450px;}
.y272f_c00001{bottom:289.380972px;}
.y105a_c00001{bottom:289.470450px;}
.y2772_c00001{bottom:289.475571px;}
.y2862_c00001{bottom:289.560450px;}
.ye10_c00001{bottom:289.561575px;}
.y182c_c00001{bottom:289.740450px;}
.y2ed2_c00001{bottom:289.800000px;}
.y1f5_c00001{bottom:289.830450px;}
.y34ac_c00001{bottom:289.920450px;}
.y2e6c_c00001{bottom:289.980000px;}
.y1cb0_c00001{bottom:289.983060px;}
.y3f5_c00001{bottom:290.010600px;}
.y1614_c00001{bottom:290.100450px;}
.y1a7e_c00001{bottom:290.160000px;}
.y230a_c00001{bottom:290.190450px;}
.y1ed6_c00001{bottom:290.340000px;}
.y26ed_c00001{bottom:290.370450px;}
.yf36_c00001{bottom:290.460450px;}
.y1c6c_c00001{bottom:290.700000px;}
.yf79_c00001{bottom:290.820450px;}
.y2d87_c00001{bottom:290.880000px;}
.ye67_c00001{bottom:290.909100px;}
.y707_c00001{bottom:291.000000px;}
.y141c_c00001{bottom:291.090450px;}
.y332f_c00001{bottom:291.240000px;}
.y18a8_c00001{bottom:291.270600px;}
.y22f_c00001{bottom:291.360450px;}
.y2d5d_c00001{bottom:291.421440px;}
.y3681_c00001{bottom:291.450450px;}
.yecf_c00001{bottom:291.450540px;}
.y9c_c00001{bottom:291.540450px;}
.yf6a_c00001{bottom:291.540600px;}
.yacf_c00001{bottom:291.720450px;}
.y1915_c00001{bottom:291.780000px;}
.y12b3_c00001{bottom:291.810450px;}
.y247c_c00001{bottom:291.900450px;}
.y2ae8_c00001{bottom:292.080450px;}
.ye3f_c00001{bottom:292.081215px;}
.y58a_c00001{bottom:292.170450px;}
.y1f4f_c00001{bottom:292.179279px;}
.y34c1_c00001{bottom:292.259937px;}
.y1123_c00001{bottom:292.350450px;}
.y1707_c00001{bottom:292.440450px;}
.y1ad6_c00001{bottom:292.500000px;}
.yad5_c00001{bottom:292.529064px;}
.y196d_c00001{bottom:292.530450px;}
.y33e7_c00001{bottom:292.711305px;}
.y467_c00001{bottom:292.800450px;}
.y1e40_c00001{bottom:292.867020px;}
.y2241_c00001{bottom:292.890081px;}
.y28bb_c00001{bottom:292.890450px;}
.y3032_c00001{bottom:293.040000px;}
.y3724_c00001{bottom:293.069523px;}
.y2a79_c00001{bottom:293.160450px;}
.y37aa_c00001{bottom:293.256120px;}
.y13d5_c00001{bottom:293.340450px;}
.y1130_c00001{bottom:293.520162px;}
.y2429_c00001{bottom:293.520450px;}
.y2b06_c00001{bottom:293.610009px;}
.y71f_c00001{bottom:293.700450px;}
.y8a9_c00001{bottom:293.880450px;}
.yc63_c00001{bottom:293.881242px;}
.y2f0d_c00001{bottom:294.120000px;}
.y2be_c00001{bottom:294.150600px;}
.y3a4a_c00001{bottom:294.151395px;}
.y1257_c00001{bottom:294.240315px;}
.y364d_c00001{bottom:294.240450px;}
.y2f1b_c00001{bottom:294.300000px;}
.y2e42_c00001{bottom:294.303060px;}
.y36ad_c00001{bottom:294.334905px;}
.y1305_c00001{bottom:294.420450px;}
.yed4_c00001{bottom:294.420459px;}
.y2d13_c00001{bottom:294.423069px;}
.y17c2_c00001{bottom:294.510450px;}
.y2598_c00001{bottom:294.597750px;}
.y2cab_c00001{bottom:294.599361px;}
.y15a4_c00001{bottom:294.780540px;}
.y2e6d_c00001{bottom:294.840000px;}
.yda0_c00001{bottom:294.870450px;}
.y741_c00001{bottom:294.960000px;}
.y2702_c00001{bottom:294.960450px;}
.y2ed9_c00001{bottom:295.020000px;}
.ya93_c00001{bottom:295.041351px;}
.ya8f_c00001{bottom:295.042854px;}
.ya8a_c00001{bottom:295.044357px;}
.ya85_c00001{bottom:295.045860px;}
.y2333_c00001{bottom:295.046769px;}
.ya80_c00001{bottom:295.047363px;}
.ya7b_c00001{bottom:295.048866px;}
.y310a_c00001{bottom:295.200000px;}
.y28d1_c00001{bottom:295.230450px;}
.y1698_c00001{bottom:295.230600px;}
.y65f_c00001{bottom:295.410450px;}
.y1526_c00001{bottom:295.410540px;}
.y8be_c00001{bottom:295.500450px;}
.y1261_c00001{bottom:295.501800px;}
.y2283_c00001{bottom:295.589568px;}
.y21f6_c00001{bottom:295.590009px;}
.y2cee_c00001{bottom:295.590450px;}
.yc8b_c00001{bottom:295.593174px;}
.y3779_c00001{bottom:295.680450px;}
.y1fb0_c00001{bottom:295.770450px;}
.y2a01_c00001{bottom:295.859700px;}
.y1c6_c00001{bottom:295.860450px;}
.y14b9_c00001{bottom:296.038803px;}
.y682_c00001{bottom:296.040450px;}
.y10d6_c00001{bottom:296.040600px;}
.y1e7d_c00001{bottom:296.100000px;}
.y2681_c00001{bottom:296.220450px;}
.y2fbc_c00001{bottom:296.280000px;}
.y20f2_c00001{bottom:296.308908px;}
.y1858_c00001{bottom:296.310450px;}
.y356e_c00001{bottom:296.310549px;}
.y26c9_c00001{bottom:296.580450px;}
.y10ec_c00001{bottom:296.583600px;}
.y1dca_c00001{bottom:296.640000px;}
.yd91_c00001{bottom:296.670450px;}
.y81c_c00001{bottom:296.670600px;}
.y395_c00001{bottom:296.760450px;}
.yf5f_c00001{bottom:296.850450px;}
.y2849_c00001{bottom:296.850600px;}
.y3384_c00001{bottom:296.855706px;}
.y122a_c00001{bottom:296.937405px;}
.y9a0_c00001{bottom:296.940450px;}
.yb01_c00001{bottom:297.029730px;}
.y27c0_c00001{bottom:297.030450px;}
.yfca_c00001{bottom:297.207894px;}
.y3954_c00001{bottom:297.208200px;}
.y214_c00001{bottom:297.210450px;}
.y11a5_c00001{bottom:297.300450px;}
.y256e_c00001{bottom:297.301743px;}
.yd76_c00001{bottom:297.302610px;}
.y2945_c00001{bottom:297.389550px;}
.y9e2_c00001{bottom:297.390450px;}
.y3a32_c00001{bottom:297.397956px;}
.y2cc0_c00001{bottom:297.479277px;}
.y9ca_c00001{bottom:297.480450px;}
.y319a_c00001{bottom:297.543060px;}
.y1760_c00001{bottom:297.570450px;}
.y36ea_c00001{bottom:297.741630px;}
.y1746_c00001{bottom:297.750450px;}
.y1a7f_c00001{bottom:297.900000px;}
.y2b60_c00001{bottom:297.932718px;}
.y1e0a_c00001{bottom:298.080000px;}
.yf1e_c00001{bottom:298.110450px;}
.yd27_c00001{bottom:298.200450px;}
.y32be_c00001{bottom:298.260000px;}
.y2042_c00001{bottom:298.287012px;}
.y61a_c00001{bottom:298.290450px;}
.yb08_c00001{bottom:298.290900px;}
.yb59_c00001{bottom:298.470450px;}
.y3259_c00001{bottom:298.620000px;}
.y108f_c00001{bottom:298.650450px;}
.y2bd2_c00001{bottom:298.740450px;}
.y1f09_c00001{bottom:298.800000px;}
.y22dd_c00001{bottom:298.830450px;}
.y757_c00001{bottom:298.830600px;}
.y7b8_c00001{bottom:298.920600px;}
.y31f0_c00001{bottom:298.980000px;}
.yc4d_c00001{bottom:299.010450px;}
.y39a1_c00001{bottom:299.099172px;}
.y1f68_c00001{bottom:299.190450px;}
.y1ffd_c00001{bottom:299.192661px;}
.y3987_c00001{bottom:299.370450px;}
.y2189_c00001{bottom:299.550450px;}
.y13a7_c00001{bottom:299.551890px;}
.y26b4_c00001{bottom:299.640450px;}
.y330e_c00001{bottom:299.700000px;}
.y18e4_c00001{bottom:299.730450px;}
.y299c_c00001{bottom:299.820000px;}
.ycf9_c00001{bottom:299.820450px;}
.y2e11_c00001{bottom:299.880000px;}
.y1f25_c00001{bottom:300.000450px;}
.y2091_c00001{bottom:300.000522px;}
.yde7_c00001{bottom:300.005985px;}
.y2ad4_c00001{bottom:300.090450px;}
.ya28_c00001{bottom:300.180450px;}
.y1ad7_c00001{bottom:300.240000px;}
.ye7a_c00001{bottom:300.270450px;}
.y1bb7_c00001{bottom:300.420000px;}
.y2390_c00001{bottom:300.450450px;}
.y389e_c00001{bottom:300.529938px;}
.y2646_c00001{bottom:300.540000px;}
.y332_c00001{bottom:300.540450px;}
.y2ca4_c00001{bottom:300.630450px;}
.y78e_c00001{bottom:300.810450px;}
.y342d_c00001{bottom:300.900150px;}
.y280_c00001{bottom:300.900450px;}
.y37f5_c00001{bottom:300.989496px;}
.y2525_c00001{bottom:300.990450px;}
.ya4b_c00001{bottom:301.080450px;}
.y1e80_c00001{bottom:301.140000px;}
.y562_c00001{bottom:301.170450px;}
.y120_c00001{bottom:301.260450px;}
.y3146_c00001{bottom:301.320000px;}
.y24c4_c00001{bottom:301.348803px;}
.y338c_c00001{bottom:301.353078px;}
.y43c_c00001{bottom:301.440450px;}
.y334a_c00001{bottom:301.500000px;}
.y2882_c00001{bottom:301.530009px;}
.y3cc_c00001{bottom:301.530450px;}
.y35b7_c00001{bottom:301.532067px;}
.y2a59_c00001{bottom:301.620450px;}
.y3060_c00001{bottom:301.680000px;}
.y2ea2_c00001{bottom:301.686120px;}
.y39c3_c00001{bottom:301.710162px;}
.y5fe_c00001{bottom:301.710450px;}
.y12f4_c00001{bottom:301.800450px;}
.y306_c00001{bottom:301.890450px;}
.y1062_c00001{bottom:301.890600px;}
.y2c10_c00001{bottom:301.891644px;}
.y1fe9_c00001{bottom:301.980450px;}
.y2f4e_c00001{bottom:302.040000px;}
.y14f8_c00001{bottom:302.070450px;}
.ybce_c00001{bottom:302.248839px;}
.y640_c00001{bottom:302.250450px;}
.y3007_c00001{bottom:302.400000px;}
.y1214_c00001{bottom:302.430450px;}
.y4e5_c00001{bottom:302.520450px;}
.y1d45_c00001{bottom:302.580000px;}
.y211a_c00001{bottom:302.610231px;}
.ycc8_c00001{bottom:302.610729px;}
.y3533_c00001{bottom:302.691855px;}
.y236a_c00001{bottom:302.700450px;}
.y24bf_c00001{bottom:302.790450px;}
.y257_c00001{bottom:302.880450px;}
.y374e_c00001{bottom:302.885247px;}
.y19a2_c00001{bottom:302.940000px;}
.y25e0_c00001{bottom:302.970000px;}
.y1104_c00001{bottom:302.970450px;}
.y3552_c00001{bottom:302.973111px;}
.ybd6_c00001{bottom:303.057453px;}
.y1fcd_c00001{bottom:303.060450px;}
.y1887_c00001{bottom:303.150450px;}
.y144_c00001{bottom:303.150600px;}
.y320a_c00001{bottom:303.260220px;}
.y939_c00001{bottom:303.420450px;}
.y3314_c00001{bottom:303.480000px;}
.y35f2_c00001{bottom:303.507012px;}
.y1554_c00001{bottom:303.600450px;}
.y3613_c00001{bottom:303.780450px;}
.y1caf_c00001{bottom:303.840000px;}
.y282c_c00001{bottom:303.873483px;}
.y359d_c00001{bottom:303.955662px;}
.yf78_c00001{bottom:303.960378px;}
.y2d3b_c00001{bottom:303.966396px;}
.y1a34_c00001{bottom:304.020000px;}
.y2f3_c00001{bottom:304.050450px;}
.y75_c00001{bottom:304.140450px;}
.y3918_c00001{bottom:304.231917px;}
.y27ad_c00001{bottom:304.320450px;}
.y1bb8_c00001{bottom:304.380000px;}
.y7de_c00001{bottom:304.590450px;}
.y1f83_c00001{bottom:304.595526px;}
.y5e0_c00001{bottom:304.770450px;}
.y17e5_c00001{bottom:304.860450px;}
.y167b_c00001{bottom:304.860729px;}
.y341a_c00001{bottom:304.948902px;}
.y2a95_c00001{bottom:304.950450px;}
.y2168_c00001{bottom:305.038980px;}
.y8d4_c00001{bottom:305.042844px;}
.y29b6_c00001{bottom:305.130450px;}
.y11e0_c00001{bottom:305.133105px;}
.y38d5_c00001{bottom:305.220450px;}
.y272e_c00001{bottom:305.220873px;}
.y3008_c00001{bottom:305.280000px;}
.ya14_c00001{bottom:305.310450px;}
.y23b2_c00001{bottom:305.400450px;}
.y2771_c00001{bottom:305.405247px;}
.y2c8d_c00001{bottom:305.487849px;}
.y2c89_c00001{bottom:305.489496px;}
.y172_c00001{bottom:305.580450px;}
.y225e_c00001{bottom:305.581296px;}
.y3375_c00001{bottom:305.640000px;}
.y3518_c00001{bottom:305.670450px;}
.y12ef_c00001{bottom:305.760450px;}
.y23da_c00001{bottom:305.849250px;}
.y365c_c00001{bottom:305.850450px;}
.y2079_c00001{bottom:305.936562px;}
.y493_c00001{bottom:305.940450px;}
.y128e_c00001{bottom:305.940963px;}
.y11ec_c00001{bottom:305.949234px;}
.y2f89_c00001{bottom:306.000000px;}
.y2811_c00001{bottom:306.118686px;}
.y6cb_c00001{bottom:306.120450px;}
.y2fe2_c00001{bottom:306.180000px;}
.y116d_c00001{bottom:306.208515px;}
.ybfd_c00001{bottom:306.210600px;}
.y77a_c00001{bottom:306.300450px;}
.y30e2_c00001{bottom:306.360000px;}
.yd53_c00001{bottom:306.390450px;}
.yc7_c00001{bottom:306.480450px;}
.y1e3f_c00001{bottom:306.543060px;}
.y8e5_c00001{bottom:306.660450px;}
.y1cf0_c00001{bottom:306.720000px;}
.y3723_c00001{bottom:306.839811px;}
.yc21_c00001{bottom:306.840450px;}
.y2b9d_c00001{bottom:306.840522px;}
.y171c_c00001{bottom:306.930450px;}
.y16af_c00001{bottom:306.930600px;}
.y117d_c00001{bottom:307.015626px;}
.y138a_c00001{bottom:307.020450px;}
.y2548_c00001{bottom:307.106400px;}
.y129d_c00001{bottom:307.200000px;}
.y805_c00001{bottom:307.290450px;}
.y1ed5_c00001{bottom:307.440000px;}
.ya04_c00001{bottom:307.470600px;}
.y2a77_c00001{bottom:307.560450px;}
.y3215_c00001{bottom:307.563885px;}
.y2ced_c00001{bottom:307.649127px;}
.y11b0_c00001{bottom:307.652124px;}
.y1023_c00001{bottom:307.652403px;}
.y1bf8_c00001{bottom:307.800000px;}
.y15da_c00001{bottom:307.831215px;}
.y2b5f_c00001{bottom:307.832709px;}
.y3821_c00001{bottom:308.010522px;}
.y5b4_c00001{bottom:308.100450px;}
.y2e41_c00001{bottom:308.160000px;}
.y13b7_c00001{bottom:308.190450px;}
.y127b_c00001{bottom:308.190600px;}
.y296b_c00001{bottom:308.280153px;}
.y290b_c00001{bottom:308.370450px;}
.ye0f_c00001{bottom:308.551485px;}
.y51b_c00001{bottom:308.730450px;}
.y196_c00001{bottom:308.820450px;}
.y24f2_c00001{bottom:308.903754px;}
.yb1b_c00001{bottom:308.910450px;}
.y3147_c00001{bottom:309.060000px;}
.y358_c00001{bottom:309.180450px;}
.y19ed_c00001{bottom:309.240000px;}
.y21a6_c00001{bottom:309.269550px;}
.y2218_c00001{bottom:309.270450px;}
.yaf3_c00001{bottom:309.360450px;}
.y1640_c00001{bottom:309.450450px;}
.y28ba_c00001{bottom:309.540450px;}
.y2d5c_c00001{bottom:309.605760px;}
.y2144_c00001{bottom:309.629712px;}
.y2d_c00001{bottom:309.630450px;}
.y3583_c00001{bottom:309.720450px;}
.y2620_c00001{bottom:309.810000px;}
.y17d6_c00001{bottom:309.810450px;}
.y3035_c00001{bottom:309.960000px;}
.y1b1f_c00001{bottom:309.970080px;}
.y3a49_c00001{bottom:309.991296px;}
.y878_c00001{bottom:310.080450px;}
.y2ed1_c00001{bottom:310.140000px;}
.y145b_c00001{bottom:310.170450px;}
.y36ac_c00001{bottom:310.174806px;}
.y28f2_c00001{bottom:310.260450px;}
.yaad_c00001{bottom:310.350450px;}
.y740_c00001{bottom:310.440450px;}
.y3279_c00001{bottom:310.500000px;}
.y9b7_c00001{bottom:310.530450px;}
.yffd_c00001{bottom:310.620450px;}
.y2ed8_c00001{bottom:310.680000px;}
.y1229_c00001{bottom:310.707693px;}
.y146d_c00001{bottom:310.710450px;}
.y3f4_c00001{bottom:310.710600px;}
.y12b2_c00001{bottom:310.800450px;}
.y15b1_c00001{bottom:310.800600px;}
.yfc9_c00001{bottom:310.978182px;}
.y3497_c00001{bottom:310.980450px;}
.y1c69_c00001{bottom:311.040000px;}
.y177c_c00001{bottom:311.070450px;}
.ye3e_c00001{bottom:311.071125px;}
.y3761_c00001{bottom:311.160450px;}
.y1f4_c00001{bottom:311.250450px;}
.yf1d_c00001{bottom:311.340450px;}
.y1cf1_c00001{bottom:311.400000px;}
.y1490_c00001{bottom:311.430450px;}
.y50_c00001{bottom:311.520450px;}
.y1dc9_c00001{bottom:311.580000px;}
.y589_c00001{bottom:311.700450px;}
.y33e6_c00001{bottom:311.701215px;}
.y323a_c00001{bottom:311.760000px;}
.y289d_c00001{bottom:311.790450px;}
.y1bb9_c00001{bottom:311.940000px;}
.y2791_c00001{bottom:311.969496px;}
.yf77_c00001{bottom:311.970450px;}
.yc64_c00001{bottom:311.971350px;}
.y369_c00001{bottom:312.060450px;}
.y1914_c00001{bottom:312.121440px;}
.y1019_c00001{bottom:312.150450px;}
.y9b_c00001{bottom:312.240450px;}
.y1a35_c00001{bottom:312.300000px;}
.y13d4_c00001{bottom:312.330450px;}
.y247b_c00001{bottom:312.330459px;}
.y2597_c00001{bottom:312.417750px;}
.y2848_c00001{bottom:312.420150px;}
.y196c_c00001{bottom:312.420450px;}
.y1948_c00001{bottom:312.480000px;}
.y1209_c00001{bottom:312.510450px;}
.y10d7_c00001{bottom:312.510474px;}
.y1806_c00001{bottom:312.690450px;}
.y39a0_c00001{bottom:312.869460px;}
.y2680_c00001{bottom:312.870450px;}
.yb4a_c00001{bottom:312.870600px;}
.y26ec_c00001{bottom:312.957480px;}
.y20b0_c00001{bottom:312.958800px;}
.y10ed_c00001{bottom:313.050450px;}
.y2bec_c00001{bottom:313.140450px;}
.y256d_c00001{bottom:313.141644px;}
.y3a31_c00001{bottom:313.237857px;}
.ya92_c00001{bottom:313.311819px;}
.ya8e_c00001{bottom:313.313322px;}
.ya89_c00001{bottom:313.314825px;}
.ya84_c00001{bottom:313.316328px;}
.ya7f_c00001{bottom:313.317831px;}
.ya7a_c00001{bottom:313.319334px;}
.y1b6a_c00001{bottom:313.380000px;}
.ya61_c00001{bottom:313.410450px;}
.y29c8_c00001{bottom:313.496112px;}
.y466_c00001{bottom:313.500450px;}
.yf3_c00001{bottom:313.590450px;}
.y2a00_c00001{bottom:313.679700px;}
.yc8c_c00001{bottom:313.683435px;}
.y15a3_c00001{bottom:313.771125px;}
.y22f2_c00001{bottom:313.860000px;}
.y307d_c00001{bottom:313.920000px;}
.y119f_c00001{bottom:313.950450px;}
.y143f_c00001{bottom:314.040450px;}
.y34c0_c00001{bottom:314.130450px;}
.y6ab_c00001{bottom:314.219802px;}
.y1313_c00001{bottom:314.220450px;}
.y389d_c00001{bottom:314.300226px;}
.y1525_c00001{bottom:314.401125px;}
.y1d76_c00001{bottom:314.460000px;}
.y2240_c00001{bottom:314.670009px;}
.y16c1_c00001{bottom:314.670450px;}
.y2f0c_c00001{bottom:314.820000px;}
.y229d_c00001{bottom:314.850081px;}
.y2bd_c00001{bottom:314.850600px;}
.y1848_c00001{bottom:314.940450px;}
.y2db1_c00001{bottom:315.000000px;}
.y1322_c00001{bottom:315.038082px;}
.y1794_c00001{bottom:315.120450px;}
.y18a7_c00001{bottom:315.120600px;}
.y33b9_c00001{bottom:315.210600px;}
.yfa3_c00001{bottom:315.300450px;}
.y2b05_c00001{bottom:315.389937px;}
.y39c2_c00001{bottom:315.480450px;}
.y3107_c00001{bottom:315.540000px;}
.y2ea1_c00001{bottom:315.543060px;}
.y981_c00001{bottom:315.660600px;}
.y1c6a_c00001{bottom:315.720000px;}
.y1bf9_c00001{bottom:315.900000px;}
.y153d_c00001{bottom:315.930450px;}
.y364c_c00001{bottom:316.020450px;}
.y1f08_c00001{bottom:316.080000px;}
.y22dc_c00001{bottom:316.287435px;}
.y1706_c00001{bottom:316.290450px;}
.yd75_c00001{bottom:316.292520px;}
.y26a2_c00001{bottom:316.378812px;}
.yad0_c00001{bottom:316.380171px;}
.y1faf_c00001{bottom:316.380450px;}
.y1f4e_c00001{bottom:316.389144px;}
.y2ddf_c00001{bottom:316.440000px;}
.y2caa_c00001{bottom:316.469874px;}
.y394_c00001{bottom:316.470450px;}
.y2f1a_c00001{bottom:316.620000px;}
.y99f_c00001{bottom:316.650450px;}
.y681_c00001{bottom:316.740450px;}
.y2332_c00001{bottom:316.826697px;}
.y2fbb_c00001{bottom:316.980000px;}
.y346e_c00001{bottom:317.009100px;}
.yad6_c00001{bottom:317.188785px;}
.y1c5_c00001{bottom:317.190450px;}
.y2282_c00001{bottom:317.369496px;}
.y21f5_c00001{bottom:317.369937px;}
.y9c9_c00001{bottom:317.370450px;}
.y35b6_c00001{bottom:317.371968px;}
.y2701_c00001{bottom:317.550450px;}
.y299b_c00001{bottom:317.640000px;}
.y8a8_c00001{bottom:317.640450px;}
.y2f56_c00001{bottom:317.700000px;}
.y4e4_c00001{bottom:317.730450px;}
.y2c0f_c00001{bottom:317.731545px;}
.y2b5e_c00001{bottom:317.732700px;}
.y27ac_c00001{bottom:317.820450px;}
.y31c5_c00001{bottom:317.880000px;}
.y213_c00001{bottom:317.910450px;}
.y1a7b_c00001{bottom:318.060000px;}
.y2600_c00001{bottom:318.090450px;}
.y34d6_c00001{bottom:318.176112px;}
.y20f1_c00001{bottom:318.179421px;}
.y18c6_c00001{bottom:318.270450px;}
.y2645_c00001{bottom:318.360000px;}
.y17c1_c00001{bottom:318.360450px;}
.y1d77_c00001{bottom:318.420000px;}
.y1745_c00001{bottom:318.450450px;}
.y27e7_c00001{bottom:318.540450px;}
.y1629_c00001{bottom:318.540600px;}
.y3366_c00001{bottom:318.600000px;}
.y2923_c00001{bottom:318.630450px;}
.y374d_c00001{bottom:318.725148px;}
.ycf8_c00001{bottom:318.810450px;}
.y21d6_c00001{bottom:318.899640px;}
.y3551_c00001{bottom:318.902787px;}
.y3295_c00001{bottom:318.960000px;}
.y619_c00001{bottom:318.990450px;}
.yde6_c00001{bottom:318.995895px;}
.yf0e_c00001{bottom:319.080450px;}
.y1c3a_c00001{bottom:319.140000px;}
.y8f7_c00001{bottom:319.170450px;}
.y2cbf_c00001{bottom:319.259205px;}
.y2f8a_c00001{bottom:319.320000px;}
.yf1c_c00001{bottom:319.620450px;}
.y7b7_c00001{bottom:319.620600px;}
.y282b_c00001{bottom:319.713384px;}
.y6e7_c00001{bottom:319.800450px;}
.y1635_c00001{bottom:319.800600px;}
.y307e_c00001{bottom:319.860000px;}
.y1f67_c00001{bottom:319.890450px;}
.yd26_c00001{bottom:320.070099px;}
.y1857_c00001{bottom:320.070450px;}
.y14dc_c00001{bottom:320.161455px;}
.y3917_c00001{bottom:320.161593px;}
.y331_c00001{bottom:320.250450px;}
.y1059_c00001{bottom:320.340450px;}
.y1ad1_c00001{bottom:320.400000px;}
.y1258_c00001{bottom:320.520270px;}
.y249a_c00001{bottom:320.520450px;}
.y3209_c00001{bottom:320.545800px;}
.y1d78_c00001{bottom:320.580000px;}
.y3722_c00001{bottom:320.610099px;}
.ydbf_c00001{bottom:320.610450px;}
.y3313_c00001{bottom:320.760000px;}
.y561_c00001{bottom:320.790450px;}
.y25df_c00001{bottom:320.880450px;}
.y972_c00001{bottom:320.970450px;}
.ye79_c00001{bottom:321.060450px;}
.y1613_c00001{bottom:321.150450px;}
.y272d_c00001{bottom:321.150549px;}
.y2770_c00001{bottom:321.245148px;}
.y31c6_c00001{bottom:321.300000px;}
.y1573_c00001{bottom:321.330450px;}
.y2309_c00001{bottom:321.420450px;}
.yf35_c00001{bottom:321.510450px;}
.y225d_c00001{bottom:321.510972px;}
.y2abb_c00001{bottom:321.600159px;}
.y27f_c00001{bottom:321.600450px;}
.y2090_c00001{bottom:321.780450px;}
.y1262_c00001{bottom:321.782250px;}
.y1d44_c00001{bottom:321.856200px;}
.y1f24_c00001{bottom:321.869874px;}
.y2522_c00001{bottom:321.870774px;}
.y11f_c00001{bottom:321.960450px;}
.y31f1_c00001{bottom:322.020000px;}
.y706_c00001{bottom:322.050000px;}
.y141b_c00001{bottom:322.140450px;}
.y1ea7_c00001{bottom:322.183260px;}
.y2bc0_c00001{bottom:322.230150px;}
.y3cb_c00001{bottom:322.230450px;}
.y22e_c00001{bottom:322.410450px;}
.y3612_c00001{bottom:322.499523px;}
.y1ad3_c00001{bottom:322.560000px;}
.yabf_c00001{bottom:322.590450px;}
.yf69_c00001{bottom:322.590600px;}
.y2f4d_c00001{bottom:322.740000px;}
.y2409_c00001{bottom:322.770450px;}
.y37f4_c00001{bottom:322.860009px;}
.y29b5_c00001{bottom:322.950450px;}
.y2666_c00001{bottom:323.130450px;}
.y543_c00001{bottom:323.220450px;}
.ycc7_c00001{bottom:323.310450px;}
.y22b8_c00001{bottom:323.400450px;}
.y2881_c00001{bottom:323.400522px;}
.y17a7_c00001{bottom:323.490450px;}
.y256_c00001{bottom:323.580450px;}
.y19a1_c00001{bottom:323.640000px;}
.y23d9_c00001{bottom:323.669250px;}
.y3374_c00001{bottom:323.826300px;}
.y1b1e_c00001{bottom:323.827020px;}
.y24be_c00001{bottom:323.937579px;}
.y108e_c00001{bottom:323.940450px;}
.yb70_c00001{bottom:324.120234px;}
.y37a9_c00001{bottom:324.125553px;}
.y2d3a_c00001{bottom:324.125676px;}
.y1e7c_c00001{bottom:324.203220px;}
.y238f_c00001{bottom:324.210450px;}
.yc4c_c00001{bottom:324.300450px;}
.y2119_c00001{bottom:324.390159px;}
.y38bc_c00001{bottom:324.390450px;}
.y245e_c00001{bottom:324.480450px;}
.y1228_c00001{bottom:324.567756px;}
.y1ed4_c00001{bottom:324.720000px;}
.y71e_c00001{bottom:324.750450px;}
.y1f82_c00001{bottom:324.754806px;}
.y116e_c00001{bottom:324.838200px;}
.yfc8_c00001{bottom:324.838245px;}
.y74_c00001{bottom:324.840450px;}
.y2547_c00001{bottom:325.016850px;}
.y38d4_c00001{bottom:325.020450px;}
.y2e40_c00001{bottom:325.260000px;}
.y1871_c00001{bottom:325.290450px;}
.y171_c00001{bottom:325.380450px;}
.y133b_c00001{bottom:325.470450px;}
.y167a_c00001{bottom:325.560450px;}
.y117e_c00001{bottom:325.645311px;}
.y1fe8_c00001{bottom:325.650450px;}
.y11e1_c00001{bottom:325.653564px;}
.y5df_c00001{bottom:325.740450px;}
.yb86_c00001{bottom:325.830450px;}
.y3a48_c00001{bottom:325.920972px;}
.y2405_c00001{bottom:326.010450px;}
.y36ab_c00001{bottom:326.014707px;}
.y28b9_c00001{bottom:326.100450px;}
.y28d0_c00001{bottom:326.190450px;}
.y16e4_c00001{bottom:326.280450px;}
.y1697_c00001{bottom:326.280600px;}
.y316b_c00001{bottom:326.340000px;}
.y65e_c00001{bottom:326.460450px;}
.y11ed_c00001{bottom:326.469693px;}
.y3199_c00001{bottom:326.520000px;}
.y588_c00001{bottom:326.640600px;}
.y3419_c00001{bottom:326.728830px;}
.y399f_c00001{bottom:326.729523px;}
.y3700_c00001{bottom:326.730450px;}
.y15d9_c00001{bottom:326.730540px;}
.y2167_c00001{bottom:326.818908px;}
.y6ca_c00001{bottom:326.820450px;}
.y2c5a_c00001{bottom:326.910450px;}
.yb02_c00001{bottom:326.999550px;}
.y779_c00001{bottom:327.000450px;}
.y1fcc_c00001{bottom:327.000600px;}
.yc6_c00001{bottom:327.180450px;}
.y2c8c_c00001{bottom:327.358362px;}
.y2c88_c00001{bottom:327.360009px;}
.y20c6_c00001{bottom:327.450450px;}
.y3517_c00001{bottom:327.540450px;}
.ye0e_c00001{bottom:327.541395px;}
.y2d5b_c00001{bottom:327.600000px;}
.ybfc_c00001{bottom:327.630450px;}
.y2b5d_c00001{bottom:327.632691px;}
.yd90_c00001{bottom:327.720450px;}
.y81b_c00001{bottom:327.720600px;}
.y2810_c00001{bottom:327.898614px;}
.yb1a_c00001{bottom:327.900450px;}
.y2847_c00001{bottom:327.900600px;}
.y23b1_c00001{bottom:327.990450px;}
.y128f_c00001{bottom:327.991476px;}
.y8d3_c00001{bottom:327.992142px;}
.y389c_c00001{bottom:328.160289px;}
.yb09_c00001{bottom:328.260900px;}
.yd52_c00001{bottom:328.349961px;}
.y3582_c00001{bottom:328.350450px;}
.y11af_c00001{bottom:328.351845px;}
.y1022_c00001{bottom:328.352124px;}
.y51a_c00001{bottom:328.440450px;}
.y36e9_c00001{bottom:328.612260px;}
.y185f_c00001{bottom:328.620450px;}
.y17e4_c00001{bottom:328.710450px;}
.y10c0_c00001{bottom:328.710600px;}
.ye63_c00001{bottom:328.980450px;}
.y290a_c00001{bottom:329.070450px;}
.y10d8_c00001{bottom:329.070528px;}
.y256c_c00001{bottom:329.071320px;}
.y3a30_c00001{bottom:329.077758px;}
.y129e_c00001{bottom:329.249550px;}
.y2ea0_c00001{bottom:329.400000px;}
.y2cec_c00001{bottom:329.429055px;}
.y1103_c00001{bottom:329.430450px;}
.yeaa_c00001{bottom:329.520450px;}
.y3864_c00001{bottom:329.610450px;}
.y10ee_c00001{bottom:329.610900px;}
.ye68_c00001{bottom:329.698650px;}
.yece_c00001{bottom:329.701053px;}
.y195_c00001{bottom:329.790450px;}
.y13a8_c00001{bottom:329.792250px;}
.y357_c00001{bottom:329.880450px;}
.y756_c00001{bottom:329.880600px;}
.ye3d_c00001{bottom:329.970450px;}
.y296a_c00001{bottom:330.060081px;}
.yc65_c00001{bottom:330.061458px;}
.y12b1_c00001{bottom:330.150450px;}
.y1074_c00001{bottom:330.240450px;}
.y1913_c00001{bottom:330.305760px;}
.y2596_c00001{bottom:330.328200px;}
.y3854_c00001{bottom:330.329673px;}
.y356d_c00001{bottom:330.420450px;}
.y2f19_c00001{bottom:330.480000px;}
.y2188_c00001{bottom:330.600450px;}
.y24f1_c00001{bottom:330.683682px;}
.y33e5_c00001{bottom:330.691125px;}
.y171b_c00001{bottom:330.780450px;}
.y1835_c00001{bottom:330.780600px;}
.y3444_c00001{bottom:330.960600px;}
.y2db0_c00001{bottom:331.020000px;}
.y1dc8_c00001{bottom:331.040160px;}
.y12ee_c00001{bottom:331.050450px;}
.y804_c00001{bottom:331.140450px;}
.y2fe1_c00001{bottom:331.200000px;}
.ya27_c00001{bottom:331.230450px;}
.y13d3_c00001{bottom:331.320450px;}
.y30e1_c00001{bottom:331.380000px;}
.y2143_c00001{bottom:331.409640px;}
.y3482_c00001{bottom:331.410450px;}
.y29ff_c00001{bottom:331.499700px;}
.y1663_c00001{bottom:331.500600px;}
.y877_c00001{bottom:331.590450px;}
.ya91_c00001{bottom:331.672467px;}
.ya8d_c00001{bottom:331.673970px;}
.ya88_c00001{bottom:331.675473px;}
.ya83_c00001{bottom:331.676976px;}
.ya7e_c00001{bottom:331.678479px;}
.ya79_c00001{bottom:331.679982px;}
.y145a_c00001{bottom:331.680450px;}
.y1cee_c00001{bottom:331.740000px;}
.y3f3_c00001{bottom:331.770450px;}
.yc8d_c00001{bottom:331.773696px;}
.y1f3_c00001{bottom:331.950450px;}
.y1bb4_c00001{bottom:332.100000px;}
.ya4a_c00001{bottom:332.130450px;}
.y2d86_c00001{bottom:332.280000px;}
.y2351_c00001{bottom:332.399718px;}
.y1a32_c00001{bottom:332.460000px;}
.y1e09_c00001{bottom:332.480160px;}
.y30a3_c00001{bottom:332.640000px;}
.y15a2_c00001{bottom:332.670450px;}
.y368_c00001{bottom:332.760450px;}
.y9a_c00001{bottom:332.940450px;}
.y1061_c00001{bottom:332.940600px;}
.y3345_c00001{bottom:333.000000px;}
.y2a38_c00001{bottom:333.030450px;}
.y383c_c00001{bottom:333.120450px;}
.y1947_c00001{bottom:333.180000px;}
.y14f7_c00001{bottom:333.210450px;}
.y37d4_c00001{bottom:333.210600px;}
.y1524_c00001{bottom:333.300450px;}
.y35b5_c00001{bottom:333.301644px;}
.y1f07_c00001{bottom:333.360000px;}
.y2a78_c00001{bottom:333.390450px;}
.y14b1_c00001{bottom:333.480450px;}
.y17d5_c00001{bottom:333.570450px;}
.y2c0e_c00001{bottom:333.661221px;}
.y201a_c00001{bottom:333.750600px;}
.y2790_c00001{bottom:333.840009px;}
.yd25_c00001{bottom:333.840387px;}
.y3108_c00001{bottom:333.900000px;}
.y2c31_c00001{bottom:333.930450px;}
.y3953_c00001{bottom:334.018650px;}
.y160a_c00001{bottom:334.020450px;}
.y2944_c00001{bottom:334.200000px;}
.y465_c00001{bottom:334.200450px;}
.y143_c00001{bottom:334.200600px;}
.y31f2_c00001{bottom:334.260000px;}
.y19ec_c00001{bottom:334.277100px;}
.y3721_c00001{bottom:334.380387px;}
.y938_c00001{bottom:334.380450px;}
.y2e10_c00001{bottom:334.447020px;}
.y1553_c00001{bottom:334.650450px;}
.y374c_c00001{bottom:334.654824px;}
.y26eb_c00001{bottom:334.737408px;}
.y25ff_c00001{bottom:334.740450px;}
.y3550_c00001{bottom:334.742688px;}
.y1ad2_c00001{bottom:334.800000px;}
.y177b_c00001{bottom:334.920450px;}
.y3144_c00001{bottom:334.980000px;}
.y3383_c00001{bottom:335.015049px;}
.y2f2_c00001{bottom:335.100450px;}
.y2041_c00001{bottom:335.186400px;}
.yd74_c00001{bottom:335.191845px;}
.y3a00_c00001{bottom:335.280450px;}
.y2a1e_c00001{bottom:335.370450px;}
.y1e3e_c00001{bottom:335.520000px;}
.y15db_c00001{bottom:335.550450px;}
.y2bc_c00001{bottom:335.550600px;}
.y1314_c00001{bottom:335.551026px;}
.y7dd_c00001{bottom:335.640450px;}
.y282a_c00001{bottom:335.643060px;}
.y302f_c00001{bottom:335.700000px;}
.y1d43_c00001{bottom:335.713140px;}
.y4e3_c00001{bottom:335.730450px;}
.yaf2_c00001{bottom:335.820450px;}
.y1c68_c00001{bottom:335.880000px;}
.y34e9_c00001{bottom:335.910450px;}
.y27e6_c00001{bottom:336.000009px;}
.y3916_c00001{bottom:336.001494px;}
.y1bb5_c00001{bottom:336.060000px;}
.y88e_c00001{bottom:336.090450px;}
.y27ab_c00001{bottom:336.090459px;}
.y393_c00001{bottom:336.180450px;}
.y2fba_c00001{bottom:336.246120px;}
.y3611_c00001{bottom:336.269811px;}
.y2644_c00001{bottom:336.270450px;}
.ya13_c00001{bottom:336.360450px;}
.y1323_c00001{bottom:336.368658px;}
.y1cef_c00001{bottom:336.420000px;}
.y223f_c00001{bottom:336.449937px;}
.y2ae7_c00001{bottom:336.450450px;}
.y1805_c00001{bottom:336.540450px;}
.y229c_c00001{bottom:336.630009px;}
.y971_c00001{bottom:336.630450px;}
.y2c34_c00001{bottom:336.720450px;}
.y365b_c00001{bottom:336.810450px;}
.y1fae_c00001{bottom:336.900450px;}
.y492_c00001{bottom:336.990450px;}
.y276f_c00001{bottom:337.085049px;}
.y2dde_c00001{bottom:337.140000px;}
.y2428_c00001{bottom:337.170450px;}
.y2d12_c00001{bottom:337.172511px;}
.y2b04_c00001{bottom:337.260450px;}
.y30a4_c00001{bottom:337.320000px;}
.y182b_c00001{bottom:337.350450px;}
.y225c_c00001{bottom:337.350873px;}
.y680_c00001{bottom:337.440450px;}
.y1b1d_c00001{bottom:337.503060px;}
.y3532_c00001{bottom:337.522377px;}
.y705_c00001{bottom:337.530450px;}
.y2b5c_c00001{bottom:337.532682px;}
.y205b_c00001{bottom:337.620450px;}
.y1b69_c00001{bottom:337.694040px;}
.y342c_c00001{bottom:337.710600px;}
.y8bd_c00001{bottom:337.800450px;}
.y3208_c00001{bottom:337.831380px;}
.y1c4_c00001{bottom:337.890450px;}
.y16ae_c00001{bottom:337.980600px;}
.yde5_c00001{bottom:337.985805px;}
.y3312_c00001{bottom:338.040000px;}
.y1e7b_c00001{bottom:338.060160px;}
.y22db_c00001{bottom:338.067363px;}
.ycf7_c00001{bottom:338.160450px;}
.y3965_c00001{bottom:338.161017px;}
.y2ca9_c00001{bottom:338.249802px;}
.y63f_c00001{bottom:338.250600px;}
.y1227_c00001{bottom:338.338044px;}
.ya03_c00001{bottom:338.520600px;}
.yfc7_c00001{bottom:338.608533px;}
.y212_c00001{bottom:338.610450px;}
.y2331_c00001{bottom:338.697210px;}
.y1847_c00001{bottom:338.700450px;}
.y9c8_c00001{bottom:338.880450px;}
.y18a6_c00001{bottom:338.880600px;}
.y1793_c00001{bottom:338.970450px;}
.y1744_c00001{bottom:339.150450px;}
.y14db_c00001{bottom:339.151365px;}
.y2281_c00001{bottom:339.240009px;}
.y13b6_c00001{bottom:339.240450px;}
.y127a_c00001{bottom:339.240600px;}
.y1c39_c00001{bottom:339.300000px;}
.ycc6_c00001{bottom:339.330450px;}
.y1ea6_c00001{bottom:339.468840px;}
.y2f88_c00001{bottom:339.480000px;}
.y1572_c00001{bottom:339.510450px;}
.y338b_c00001{bottom:339.512421px;}
.y32bd_c00001{bottom:339.660000px;}
.y618_c00001{bottom:339.690450px;}
.y1cae_c00001{bottom:339.840000px;}
.y1549_c00001{bottom:339.870450px;}
.y20f0_c00001{bottom:339.959349px;}
.y330_c00001{bottom:339.960600px;}
.y2a57_c00001{bottom:340.049568px;}
.y1705_c00001{bottom:340.050450px;}
.y2700_c00001{bottom:340.140450px;}
.y35f1_c00001{bottom:340.317462px;}
.y7b6_c00001{bottom:340.320600px;}
.y305d_c00001{bottom:340.380000px;}
.y399e_c00001{bottom:340.499811px;}
.y163f_c00001{bottom:340.500450px;}
.y1f4d_c00001{bottom:340.508838px;}
.y1a33_c00001{bottom:340.560000px;}
.y1f66_c00001{bottom:340.590450px;}
.y2c_c00001{bottom:340.680450px;}
.y2b87_c00001{bottom:340.680600px;}
.y359c_c00001{bottom:340.766112px;}
.y21d5_c00001{bottom:340.770153px;}
.y78d_c00001{bottom:340.860450px;}
.y3936_c00001{bottom:340.950450px;}
.y2462_c00001{bottom:341.040450px;}
.y2e9e_c00001{bottom:341.100000px;}
.y2cbe_c00001{bottom:341.129718px;}
.y28f1_c00001{bottom:341.220450px;}
.yaac_c00001{bottom:341.400450px;}
.y8a7_c00001{bottom:341.490450px;}
.y23d8_c00001{bottom:341.579700px;}
.y9b6_c00001{bottom:341.580450px;}
.y2bd1_c00001{bottom:341.580774px;}
.yffc_c00001{bottom:341.670450px;}
.y146c_c00001{bottom:341.760450px;}
.y3a47_c00001{bottom:341.760873px;}
.y3ca_c00001{bottom:341.850450px;}
.y15b0_c00001{bottom:341.850600px;}
.y389b_c00001{bottom:341.930577px;}
.y1ffc_c00001{bottom:341.942103px;}
.y36aa_c00001{bottom:341.944383px;}
.y1ed3_c00001{bottom:342.000000px;}
.yd51_c00001{bottom:342.120249px;}
.y17c0_c00001{bottom:342.120450px;}
.ydbe_c00001{bottom:342.210600px;}
.y27e_c00001{bottom:342.300450px;}
.y148f_c00001{bottom:342.480450px;}
.y4f_c00001{bottom:342.570450px;}
.y6aa_c00001{bottom:342.660198px;}
.y11e_c00001{bottom:342.660450px;}
.y2078_c00001{bottom:342.747012px;}
.y28b8_c00001{bottom:342.750600px;}
.y2546_c00001{bottom:342.836850px;}
.y2e6b_c00001{bottom:342.903960px;}
.y2665_c00001{bottom:342.930450px;}
.y2f4c_c00001{bottom:343.080000px;}
.y255_c00001{bottom:343.110450px;}
.y2499_c00001{bottom:343.110522px;}
.y305e_c00001{bottom:343.260000px;}
.yc35_c00001{bottom:343.290450px;}
.y519_c00001{bottom:343.380450px;}
.y3031_c00001{bottom:343.440000px;}
.y2846_c00001{bottom:343.470150px;}
.y2aba_c00001{bottom:343.470672px;}
.y116f_c00001{bottom:343.558065px;}
.y3030_c00001{bottom:343.620000px;}
.y1208_c00001{bottom:343.650450px;}
.y1bb6_c00001{bottom:343.800000px;}
.y542_c00001{bottom:343.920450px;}
.yb49_c00001{bottom:343.920600px;}
.y2308_c00001{bottom:344.010450px;}
.y3853_c00001{bottom:344.099961px;}
.y37e3_c00001{bottom:344.100450px;}
.y267f_c00001{bottom:344.190450px;}
.y2d39_c00001{bottom:344.284956px;}
.y19a0_c00001{bottom:344.340000px;}
.y117f_c00001{bottom:344.365176px;}
.ya60_c00001{bottom:344.460450px;}
.yf0d_c00001{bottom:344.460600px;}
.y37f3_c00001{bottom:344.639937px;}
.yf2_c00001{bottom:344.640450px;}
.yc20_c00001{bottom:344.730450px;}
.y1dc7_c00001{bottom:344.897100px;}
.y119e_c00001{bottom:344.910450px;}
.y170_c00001{bottom:344.910657px;}
.y256b_c00001{bottom:344.911221px;}
.y1f81_c00001{bottom:344.914086px;}
.y965_c00001{bottom:345.000450px;}
.y3a2f_c00001{bottom:345.007434px;}
.yd9f_c00001{bottom:345.090450px;}
.y175f_c00001{bottom:345.180450px;}
.y3701_c00001{bottom:345.270450px;}
.y10d9_c00001{bottom:345.540402px;}
.y1370_c00001{bottom:345.630450px;}
.y24bd_c00001{bottom:345.717507px;}
.y16c0_c00001{bottom:345.720450px;}
.y15d8_c00001{bottom:345.721125px;}
.y3214_c00001{bottom:345.723228px;}
.y2e9f_c00001{bottom:345.780000px;}
.y3198_c00001{bottom:345.786120px;}
.y22b7_c00001{bottom:345.990450px;}
.y21a5_c00001{bottom:346.080000px;}
.y2f18_c00001{bottom:346.140000px;}
.y10ef_c00001{bottom:346.171350px;}
.y2118_c00001{bottom:346.260672px;}
.y11e2_c00001{bottom:346.264203px;}
.y1d73_c00001{bottom:346.320000px;}
.y1e08_c00001{bottom:346.337100px;}
.yfa2_c00001{bottom:346.350450px;}
.y316a_c00001{bottom:346.500000px;}
.ye0d_c00001{bottom:346.531305px;}
.y6c9_c00001{bottom:346.620450px;}
.y2d5a_c00001{bottom:346.680000px;}
.y980_c00001{bottom:346.710600px;}
.y1058_c00001{bottom:346.710987px;}
.y1259_c00001{bottom:346.800225px;}
.yecd_c00001{bottom:346.890864px;}
.y153c_c00001{bottom:346.980450px;}
.y11ee_c00001{bottom:347.080332px;}
.y8e4_c00001{bottom:347.340450px;}
.y587_c00001{bottom:347.340600px;}
.y27bf_c00001{bottom:347.430450px;}
.y2b5b_c00001{bottom:347.523060px;}
.yb19_c00001{bottom:347.610450px;}
.y778_c00001{bottom:347.700450px;}
.y2404_c00001{bottom:347.790600px;}
.y5de_c00001{bottom:347.880450px;}
.y3373_c00001{bottom:347.940000px;}
.y238e_c00001{bottom:347.970450px;}
.yb71_c00001{bottom:348.060018px;}
.y970_c00001{bottom:348.060450px;}
.y9c7_c00001{bottom:348.061485px;}
.y1263_c00001{bottom:348.062700px;}
.y305f_c00001{bottom:348.120000px;}
.y19eb_c00001{bottom:348.134040px;}
.y2595_c00001{bottom:348.148200px;}
.yc66_c00001{bottom:348.151566px;}
.y3720_c00001{bottom:348.240450px;}
.y1912_c00001{bottom:348.300000px;}
.y2e0f_c00001{bottom:348.303960px;}
.yc5_c00001{bottom:348.420450px;}
.yfb4_c00001{bottom:348.420600px;}
.y3277_c00001{bottom:348.480000px;}
.y3418_c00001{bottom:348.508758px;}
.y2166_c00001{bottom:348.598836px;}
.yf5e_c00001{bottom:348.600450px;}
.yf2a_c00001{bottom:348.780450px;}
.y2d20_c00001{bottom:348.960450px;}
.y858_c00001{bottom:349.050450px;}
.y11ae_c00001{bottom:349.051566px;}
.y1021_c00001{bottom:349.051845px;}
.y2c8b_c00001{bottom:349.138290px;}
.y2c87_c00001{bottom:349.139937px;}
.ybfb_c00001{bottom:349.140450px;}
.y35b4_c00001{bottom:349.141545px;}
.y1ad4_c00001{bottom:349.200000px;}
.y3519_c00001{bottom:349.320450px;}
.y3006_c00001{bottom:349.380000px;}
.y29fe_c00001{bottom:349.410150px;}
.y36cc_c00001{bottom:349.410450px;}
.y2c0d_c00001{bottom:349.501122px;}
.y1d42_c00001{bottom:349.570080px;}
.y1628_c00001{bottom:349.590600px;}
.y33e8_c00001{bottom:349.592097px;}
.y1fcb_c00001{bottom:349.680450px;}
.y280f_c00001{bottom:349.769127px;}
.y20af_c00001{bottom:349.769250px;}
.y5fd_c00001{bottom:349.770450px;}
.y8d2_c00001{bottom:349.862655px;}
.yc8e_c00001{bottom:349.863957px;}
.ya90_c00001{bottom:349.942935px;}
.ya8c_c00001{bottom:349.944438px;}
.ya87_c00001{bottom:349.945941px;}
.ya82_c00001{bottom:349.947444px;}
.ya7d_c00001{bottom:349.948947px;}
.ya78_c00001{bottom:349.950450px;}
.y194_c00001{bottom:350.040600px;}
.y1290_c00001{bottom:350.041989px;}
.y2fb9_c00001{bottom:350.103060px;}
.y3610_c00001{bottom:350.129874px;}
.y16e3_c00001{bottom:350.130450px;}
.y8f6_c00001{bottom:350.220450px;}
.y29c7_c00001{bottom:350.306562px;}
.y1fe7_c00001{bottom:350.310450px;}
.y374b_c00001{bottom:350.494725px;}
.y356_c00001{bottom:350.580450px;}
.y354f_c00001{bottom:350.582589px;}
.y1f06_c00001{bottom:350.640000px;}
.y22f1_c00001{bottom:350.670450px;}
.y1886_c00001{bottom:350.760450px;}
.y6e6_c00001{bottom:350.850450px;}
.y1634_c00001{bottom:350.850600px;}
.y33e4_c00001{bottom:351.030450px;}
.y14b0_c00001{bottom:351.210600px;}
.y2ceb_c00001{bottom:351.299568px;}
.y3f2_c00001{bottom:351.300657px;}
.y1b1c_c00001{bottom:351.360000px;}
.y1b68_c00001{bottom:351.370080px;}
.y129f_c00001{bottom:351.389550px;}
.y10bf_c00001{bottom:351.390600px;}
.y25b6_c00001{bottom:351.480450px;}
.y2829_c00001{bottom:351.482961px;}
.y2b9c_c00001{bottom:351.570450px;}
.y1073_c00001{bottom:351.660450px;}
.y1d74_c00001{bottom:351.720000px;}
.y2969_c00001{bottom:351.840009px;}
.y3915_c00001{bottom:351.841395px;}
.y1e7a_c00001{bottom:351.917100px;}
.y20c5_c00001{bottom:352.020450px;}
.y32e1_c00001{bottom:352.080000px;}
.y1226_c00001{bottom:352.108332px;}
.y73_c00001{bottom:352.200450px;}
.y1d75_c00001{bottom:352.260000px;}
.y356c_c00001{bottom:352.290600px;}
.yfc6_c00001{bottom:352.378821px;}
.y25fe_c00001{bottom:352.380450px;}
.y1946_c00001{bottom:352.440000px;}
.y17e3_c00001{bottom:352.470450px;}
.y15a1_c00001{bottom:352.471365px;}
.y24f0_c00001{bottom:352.554195px;}
.y1f2_c00001{bottom:352.650450px;}
.y1bf7_c00001{bottom:352.800000px;}
.y196b_c00001{bottom:352.830450px;}
.y2d85_c00001{bottom:352.980000px;}
.y2e3f_c00001{bottom:352.983060px;}
.y876_c00001{bottom:353.010450px;}
.y276e_c00001{bottom:353.014725px;}
.y704_c00001{bottom:353.100000px;}
.y1459_c00001{bottom:353.100450px;}
.y1523_c00001{bottom:353.101215px;}
.y3239_c00001{bottom:353.160000px;}
.y26a1_c00001{bottom:353.189262px;}
.y141a_c00001{bottom:353.190450px;}
.y225b_c00001{bottom:353.190774px;}
.y2142_c00001{bottom:353.280153px;}
.y33b8_c00001{bottom:353.280450px;}
.y22d_c00001{bottom:353.460450px;}
.y3443_c00001{bottom:353.550450px;}
.y99_c00001{bottom:353.640450px;}
.yf68_c00001{bottom:353.640600px;}
.y4e2_c00001{bottom:353.730450px;}
.y346d_c00001{bottom:353.819550px;}
.y803_c00001{bottom:353.820450px;}
.y3258_c00001{bottom:353.880000px;}
.y3481_c00001{bottom:353.910450px;}
.y3347_c00001{bottom:354.054420px;}
.y2643_c00001{bottom:354.090450px;}
.y2350_c00001{bottom:354.179646px;}
.yd73_c00001{bottom:354.181755px;}
.y3105_c00001{bottom:354.240000px;}
.y399d_c00001{bottom:354.270099px;}
.ycf6_c00001{bottom:354.360450px;}
.y17ec_c00001{bottom:354.450450px;}
.y171a_c00001{bottom:354.540450px;}
.y1834_c00001{bottom:354.540600px;}
.y1102_c00001{bottom:354.630600px;}
.y2f1_c00001{bottom:354.810000px;}
.y464_c00001{bottom:354.900450px;}
.y34d5_c00001{bottom:354.986562px;}
.y108d_c00001{bottom:354.990450px;}
.y37a8_c00001{bottom:354.994986px;}
.y9e1_c00001{bottom:355.080450px;}
.y3207_c00001{bottom:355.116960px;}
.y3311_c00001{bottom:355.140000px;}
.y5b3_c00001{bottom:355.170450px;}
.y2521_c00001{bottom:355.253682px;}
.yc4b_c00001{bottom:355.350450px;}
.y13d2_c00001{bottom:355.440450px;}
.y278f_c00001{bottom:355.619937px;}
.y389a_c00001{bottom:355.700865px;}
.y1f23_c00001{bottom:355.710450px;}
.y71d_c00001{bottom:355.800450px;}
.y31c4_c00001{bottom:355.860000px;}
.ya12_c00001{bottom:355.890450px;}
.yd50_c00001{bottom:355.890537px;}
.y392_c00001{bottom:355.980450px;}
.y267e_c00001{bottom:356.070450px;}
.y1e3d_c00001{bottom:356.220000px;}
.y2bb_c00001{bottom:356.250600px;}
.y3760_c00001{bottom:356.340450px;}
.y560_c00001{bottom:356.430450px;}
.y1cec_c00001{bottom:356.580000px;}
.y26ea_c00001{bottom:356.607921px;}
.y2a1d_c00001{bottom:356.610450px;}
.y1ea5_c00001{bottom:356.754420px;}
.y3c9_c00001{bottom:356.790450px;}
.y39ff_c00001{bottom:356.880450px;}
.y1315_c00001{bottom:356.881602px;}
.y32e7_c00001{bottom:356.940000px;}
.yb03_c00001{bottom:356.969370px;}
.y289c_c00001{bottom:356.970450px;}
.yde4_c00001{bottom:356.975715px;}
.y1571_c00001{bottom:357.240450px;}
.y32f_c00001{bottom:357.330450px;}
.y1696_c00001{bottom:357.330600px;}
.y2b03_c00001{bottom:357.420450px;}
.y2b5a_c00001{bottom:357.423051px;}
.y30a1_c00001{bottom:357.480000px;}
.y65d_c00001{bottom:357.510450px;}
.y34ab_c00001{bottom:357.600450px;}
.y3a46_c00001{bottom:357.600774px;}
.y2ddd_c00001{bottom:357.660000px;}
.y1324_c00001{bottom:357.699234px;}
.y73f_c00001{bottom:357.780450px;}
.y36a9_c00001{bottom:357.784284px;}
.y3852_c00001{bottom:357.870249px;}
.y27e5_c00001{bottom:357.870522px;}
.y254_c00001{bottom:358.050450px;}
.y14da_c00001{bottom:358.050690px;}
.y67f_c00001{bottom:358.140450px;}
.y1cad_c00001{bottom:358.200000px;}
.ycc5_c00001{bottom:358.230450px;}
.yb0a_c00001{bottom:358.230900px;}
.y849_c00001{bottom:358.320450px;}
.y2408_c00001{bottom:358.410450px;}
.y229b_c00001{bottom:358.500522px;}
.y2b86_c00001{bottom:358.500600px;}
.y3126_c00001{bottom:358.560000px;}
.y1dc6_c00001{bottom:358.573140px;}
.y28cf_c00001{bottom:358.590450px;}
.y177a_c00001{bottom:358.680450px;}
.y2f55_c00001{bottom:358.740000px;}
.y88d_c00001{bottom:358.770450px;}
.y81a_c00001{bottom:358.770600px;}
.y1c3_c00001{bottom:358.950450px;}
.y2845_c00001{bottom:358.950600px;}
.y8bc_c00001{bottom:359.040600px;}
.y2fe0_c00001{bottom:359.107020px;}
.y5b2_c00001{bottom:359.220450px;}
.y1ed2_c00001{bottom:359.280000px;}
.y211_c00001{bottom:359.310450px;}
.y23d7_c00001{bottom:359.399700px;}
.y950_c00001{bottom:359.400450px;}
.y36e8_c00001{bottom:359.482890px;}
.ye57_c00001{bottom:359.490450px;}
.y3197_c00001{bottom:359.643060px;}
.y18c5_c00001{bottom:359.670450px;}
.y223e_c00001{bottom:359.760450px;}
.y1743_c00001{bottom:359.850450px;}
.y22da_c00001{bottom:359.937876px;}
.y3365_c00001{bottom:360.000000px;}
.y13a9_c00001{bottom:360.032610px;}
.y1e07_c00001{bottom:360.194040px;}
.y3820_c00001{bottom:360.210600px;}
.y1804_c00001{bottom:360.300450px;}
.y32bc_c00001{bottom:360.360000px;}
.y617_c00001{bottom:360.390450px;}
.y2330_c00001{bottom:360.477138px;}
.y28b7_c00001{bottom:360.480450px;}
.yea9_c00001{bottom:360.570450px;}
.y2545_c00001{bottom:360.656850px;}
.yd9e_c00001{bottom:360.660450px;}
.y1a30_c00001{bottom:360.720000px;}
.y1057_c00001{bottom:360.750600px;}
.y256a_c00001{bottom:360.751122px;}
.y3986_c00001{bottom:360.840450px;}
.y3a2e_c00001{bottom:360.847335px;}
.y30e0_c00001{bottom:360.900000px;}
.y755_c00001{bottom:360.930600px;}
.y2280_c00001{bottom:361.019937px;}
.y7b5_c00001{bottom:361.020600px;}
.yaf1_c00001{bottom:361.110450px;}
.y34bf_c00001{bottom:361.200450px;}
.y1ced_c00001{bottom:361.260000px;}
.y13b0_c00001{bottom:361.290450px;}
.y518_c00001{bottom:361.380450px;}
.y3145_c00001{bottom:361.620000px;}
.y2187_c00001{bottom:361.650450px;}
.y21f3_c00001{bottom:361.739937px;}
.y3348_c00001{bottom:361.800000px;}
.y19ea_c00001{bottom:361.810080px;}
.y20ef_c00001{bottom:361.829862px;}
.y2a56_c00001{bottom:361.920081px;}
.y2e0e_c00001{bottom:361.980000px;}
.y12ed_c00001{bottom:362.100450px;}
.y10da_c00001{bottom:362.100456px;}
.y16f_c00001{bottom:362.100468px;}
.y1170_c00001{bottom:362.187750px;}
.y39d7_c00001{bottom:362.190450px;}
.y2ae6_c00001{bottom:362.280450px;}
.y30a2_c00001{bottom:362.340000px;}
.y21d4_c00001{bottom:362.550081px;}
.y1548_c00001{bottom:362.550450px;}
.y1662_c00001{bottom:362.550600px;}
.ydbd_c00001{bottom:362.550870px;}
.y25b3_c00001{bottom:362.640450px;}
.y18a5_c00001{bottom:362.640600px;}
.y10f0_c00001{bottom:362.641350px;}
.y2f4b_c00001{bottom:362.700000px;}
.y1792_c00001{bottom:362.730450px;}
.y2cbd_c00001{bottom:362.909646px;}
.y1180_c00001{bottom:362.994861px;}
.y1b1a_c00001{bottom:363.060000px;}
.y371f_c00001{bottom:363.090000px;}
.y27be_c00001{bottom:363.090450px;}
.ya49_c00001{bottom:363.180450px;}
.y1d41_c00001{bottom:363.246120px;}
.y11d_c00001{bottom:363.360450px;}
.y2664_c00001{bottom:363.539928px;}
.y3935_c00001{bottom:363.540600px;}
.yf34_c00001{bottom:363.630450px;}
.yc1f_c00001{bottom:363.720450px;}
.y2922_c00001{bottom:363.810450px;}
.y360f_c00001{bottom:363.900162px;}
.y1704_c00001{bottom:363.900450px;}
.y1bb0_c00001{bottom:363.960000px;}
.y305_c00001{bottom:363.990450px;}
.y1060_c00001{bottom:363.990600px;}
.y2c59_c00001{bottom:364.170276px;}
.y383b_c00001{bottom:364.170450px;}
.yecc_c00001{bottom:364.170855px;}
.y1389_c00001{bottom:364.260450px;}
.y26c8_c00001{bottom:364.350450px;}
.y2d38_c00001{bottom:364.355298px;}
.y541_c00001{bottom:364.620450px;}
.y1f4c_c00001{bottom:364.628532px;}
.y2019_c00001{bottom:364.800450px;}
.y2498_c00001{bottom:364.890450px;}
.y35b3_c00001{bottom:364.981446px;}
.y1f80_c00001{bottom:364.984428px;}
.y199f_c00001{bottom:365.040000px;}
.y1609_c00001{bottom:365.070450px;}
.y1b67_c00001{bottom:365.227020px;}
.y8a6_c00001{bottom:365.250450px;}
.y142_c00001{bottom:365.250600px;}
.y2c0c_c00001{bottom:365.341023px;}
.y1c67_c00001{bottom:365.400000px;}
.y937_c00001{bottom:365.520450px;}
.ye0c_c00001{bottom:365.521215px;}
.y1e79_c00001{bottom:365.593140px;}
.y1552_c00001{bottom:365.700450px;}
.y2e9c_c00001{bottom:365.940000px;}
.y2594_c00001{bottom:365.968200px;}
.y1225_c00001{bottom:365.968395px;}
.y43b_c00001{bottom:365.970450px;}
.y38f2_c00001{bottom:366.060450px;}
.y2d59_c00001{bottom:366.120000px;}
.yfc5_c00001{bottom:366.238884px;}
.y38d2_c00001{bottom:366.240450px;}
.yc67_c00001{bottom:366.241674px;}
.y374a_c00001{bottom:366.334626px;}
.y2307_c00001{bottom:366.510450px;}
.y354e_c00001{bottom:366.512265px;}
.yb18_c00001{bottom:366.600450px;}
.y143e_c00001{bottom:366.600549px;}
.y7dc_c00001{bottom:366.690450px;}
.y11e3_c00001{bottom:366.784662px;}
.y2e3e_c00001{bottom:366.840000px;}
.y3900_c00001{bottom:366.960600px;}
.y9c6_c00001{bottom:367.051395px;}
.yd24_c00001{bottom:367.140450px;}
.y29fd_c00001{bottom:367.230150px;}
.y36ff_c00001{bottom:367.230450px;}
.y26b3_c00001{bottom:367.320450px;}
.y2828_c00001{bottom:367.322862px;}
.y2b59_c00001{bottom:367.323042px;}
.y1911_c00001{bottom:367.380000px;}
.y3106_c00001{bottom:367.560000px;}
.y24bc_c00001{bottom:367.588020px;}
.y2ad3_c00001{bottom:367.590450px;}
.y11ef_c00001{bottom:367.600791px;}
.y1945_c00001{bottom:367.740000px;}
.ye64_c00001{bottom:367.770000px;}
.y2880_c00001{bottom:367.770009px;}
.y3914_c00001{bottom:367.771071px;}
.y2a93_c00001{bottom:367.860450px;}
.y1bb2_c00001{bottom:367.920000px;}
.yc8f_c00001{bottom:367.954218px;}
.y491_c00001{bottom:368.040450px;}
.y586_c00001{bottom:368.040600px;}
.y399c_c00001{bottom:368.130162px;}
.y245d_c00001{bottom:368.130450px;}
.y2f17_c00001{bottom:368.460000px;}
.ye69_c00001{bottom:368.488200px;}
.y703_c00001{bottom:368.580450px;}
.y22b6_c00001{bottom:368.580600px;}
.y3f1_c00001{bottom:368.580648px;}
.y8e3_c00001{bottom:368.760450px;}
.y276d_c00001{bottom:368.854626px;}
.y148e_c00001{bottom:368.940450px;}
.y1a31_c00001{bottom:369.000000px;}
.y3964_c00001{bottom:369.030450px;}
.y16ad_c00001{bottom:369.030600px;}
.y225a_c00001{bottom:369.120450px;}
.y302e_c00001{bottom:369.180000px;}
.y5dd_c00001{bottom:369.300600px;}
.y1acd_c00001{bottom:369.360000px;}
.y25b5_c00001{bottom:369.390450px;}
.y33e1_c00001{bottom:369.391215px;}
.y272c_c00001{bottom:369.479550px;}
.y2117_c00001{bottom:369.480450px;}
.y3004_c00001{bottom:369.540000px;}
.y3899_c00001{bottom:369.560928px;}
.y2403_c00001{bottom:369.570450px;}
.ya02_c00001{bottom:369.570600px;}
.yd4f_c00001{bottom:369.750600px;}
.y11ad_c00001{bottom:369.751287px;}
.y1020_c00001{bottom:369.751566px;}
.yc4_c00001{bottom:369.840450px;}
.y3631_c00001{bottom:369.931125px;}
.y1a7a_c00001{bottom:370.080000px;}
.y1279_c00001{bottom:370.290450px;}
.y3417_c00001{bottom:370.379271px;}
.y2f0_c00001{bottom:370.379550px;}
.y2369_c00001{bottom:370.380450px;}
.y2165_c00001{bottom:370.469349px;}
.y2909_c00001{bottom:370.470450px;}
.ybfa_c00001{bottom:370.560450px;}
.ye3c_c00001{bottom:370.650450px;}
.y193_c00001{bottom:370.740450px;}
.y1cac_c00001{bottom:370.800000px;}
.y3952_c00001{bottom:370.829100px;}
.y371e_c00001{bottom:370.830600px;}
.y31c3_c00001{bottom:370.980000px;}
.y2c8a_c00001{bottom:371.008803px;}
.y2943_c00001{bottom:371.010450px;}
.y32e_c00001{bottom:371.100450px;}
.y6a9_c00001{bottom:371.189532px;}
.y355_c00001{bottom:371.280450px;}
.y3346_c00001{bottom:371.340000px;}
.y378c_c00001{bottom:371.370450px;}
.y3680_c00001{bottom:371.460600px;}
.y15a0_c00001{bottom:371.461275px;}
.y280e_c00001{bottom:371.549055px;}
.y163e_c00001{bottom:371.550450px;}
.y3851_c00001{bottom:371.730312px;}
.y2b_c00001{bottom:371.730450px;}
.y238d_c00001{bottom:371.820450px;}
.y1b1b_c00001{bottom:371.880000px;}
.y2642_c00001{bottom:371.910450px;}
.y2040_c00001{bottom:371.996850px;}
.yb72_c00001{bottom:371.999802px;}
.y36cb_c00001{bottom:372.000600px;}
.y1522_c00001{bottom:372.091125px;}
.y33a0_c00001{bottom:372.180450px;}
.y1291_c00001{bottom:372.182682px;}
.y3206_c00001{bottom:372.223260px;}
.y3372_c00001{bottom:372.240000px;}
.y34ff_c00001{bottom:372.270450px;}
.y3531_c00001{bottom:372.352899px;}
.yad8_c00001{bottom:372.360450px;}
.y3310_c00001{bottom:372.420000px;}
.y1dc5_c00001{bottom:372.430080px;}
.yaab_c00001{bottom:372.450450px;}
.y25de_c00001{bottom:372.540600px;}
.y9b5_c00001{bottom:372.630450px;}
.y875_c00001{bottom:372.720450px;}
.y2fdf_c00001{bottom:372.783060px;}
.y146b_c00001{bottom:372.810450px;}
.y8d1_c00001{bottom:372.811953px;}
.y1646_c00001{bottom:372.900450px;}
.y15af_c00001{bottom:372.900600px;}
.y1072_c00001{bottom:372.990450px;}
.y2cea_c00001{bottom:373.079496px;}
.y125a_c00001{bottom:373.080180px;}
.y2f85_c00001{bottom:373.140000px;}
.y3581_c00001{bottom:373.168854px;}
.y22f0_c00001{bottom:373.169568px;}
.y23b0_c00001{bottom:373.170450px;}
.yd72_c00001{bottom:373.171665px;}
.y3382_c00001{bottom:373.174392px;}
.y3278_c00001{bottom:373.320000px;}
.y12a0_c00001{bottom:373.439100px;}
.y196a_c00001{bottom:373.440450px;}
.y3196_c00001{bottom:373.500000px;}
.y1fca_c00001{bottom:373.530450px;}
.y4e_c00001{bottom:373.620450px;}
.y36a8_c00001{bottom:373.624185px;}
.y2d84_c00001{bottom:373.680000px;}
.yb87_c00001{bottom:373.710450px;}
.y2968_c00001{bottom:373.710522px;}
.y1f1_c00001{bottom:373.710600px;}
.y2e0c_c00001{bottom:373.860000px;}
.y1e06_c00001{bottom:373.870080px;}
.y16e2_c00001{bottom:373.890450px;}
.y1fe6_c00001{bottom:373.980450px;}
.y1ea4_c00001{bottom:374.040000px;}
.y9e0_c00001{bottom:374.070450px;}
.y424_c00001{bottom:374.160450px;}
.y32e6_c00001{bottom:374.220000px;}
.y63e_c00001{bottom:374.250600px;}
.y24ef_c00001{bottom:374.334123px;}
.y98_c00001{bottom:374.340450px;}
.y1264_c00001{bottom:374.343150px;}
.y13d1_c00001{bottom:374.430450px;}
.y2844_c00001{bottom:374.520150px;}
.y2a76_c00001{bottom:374.520450px;}
.y3257_c00001{bottom:374.580000px;}
.y1885_c00001{bottom:374.610450px;}
.y1458_c00001{bottom:374.700450px;}
.y3863_c00001{bottom:374.790600px;}
.y6c8_c00001{bottom:374.880450px;}
.y2b02_c00001{bottom:374.970303px;}
.yb48_c00001{bottom:374.970600px;}
.y2141_c00001{bottom:375.060081px;}
.y5fc_c00001{bottom:375.060600px;}
.y3442_c00001{bottom:375.330600px;}
.y38bb_c00001{bottom:375.420450px;}
.y1bb3_c00001{bottom:375.480000px;}
.y463_c00001{bottom:375.510450px;}
.yf0c_c00001{bottom:375.510600px;}
.y2fb6_c00001{bottom:375.660000px;}
.y19e9_c00001{bottom:375.667020px;}
.yf1_c00001{bottom:375.690450px;}
.y73e_c00001{bottom:375.780450px;}
.y119d_c00001{bottom:375.870450px;}
.yde3_c00001{bottom:375.875040px;}
.y2f86_c00001{bottom:376.020000px;}
.y234f_c00001{bottom:376.050159px;}
.y964_c00001{bottom:376.050450px;}
.y2b9b_c00001{bottom:376.140450px;}
.y1056_c00001{bottom:376.320450px;}
.y3480_c00001{bottom:376.500600px;}
.y1ed1_c00001{bottom:376.560000px;}
.y274c_c00001{bottom:376.590450px;}
.y2ca2_c00001{bottom:376.679127px;}
.y136f_c00001{bottom:376.680450px;}
.y2569_c00001{bottom:376.680798px;}
.y3a2d_c00001{bottom:376.687236px;}
.y16bf_c00001{bottom:376.770450px;}
.y1e3c_c00001{bottom:376.920000px;}
.y2217_c00001{bottom:376.950450px;}
.y2ba_c00001{bottom:376.950600px;}
.y2520_c00001{bottom:377.033610px;}
.y14d9_c00001{bottom:377.040600px;}
.y1d40_c00001{bottom:377.103060px;}
.y35f0_c00001{bottom:377.127912px;}
.ycc4_c00001{bottom:377.220450px;}
.y2b58_c00001{bottom:377.223033px;}
.y31ed_c00001{bottom:377.280000px;}
.y23d6_c00001{bottom:377.310150px;}
.yfa1_c00001{bottom:377.400450px;}
.y307b_c00001{bottom:377.460000px;}
.y3c8_c00001{bottom:377.490450px;}
.y72_c00001{bottom:377.490600px;}
.y359b_c00001{bottom:377.576562px;}
.y5b1_c00001{bottom:377.580600px;}
.y2f4a_c00001{bottom:377.640000px;}
.y360e_c00001{bottom:377.670450px;}
.y338a_c00001{bottom:377.671764px;}
.ya26_c00001{bottom:377.760450px;}
.y12ff_c00001{bottom:377.760600px;}
.y153b_c00001{bottom:378.030450px;}
.y3441_c00001{bottom:378.120450px;}
.y1d71_c00001{bottom:378.180000px;}
.y65c_c00001{bottom:378.210450px;}
.y1316_c00001{bottom:378.212178px;}
.y26e9_c00001{bottom:378.387849px;}
.y26e5_c00001{bottom:378.389496px;}
.y1719_c00001{bottom:378.390450px;}
.y1833_c00001{bottom:378.390600px;}
.y1c2_c00001{bottom:378.480657px;}
.y2e0d_c00001{bottom:378.540000px;}
.y2544_c00001{bottom:378.567300px;}
.y6c7_c00001{bottom:378.660450px;}
.y10db_c00001{bottom:378.660510px;}
.y99e_c00001{bottom:378.750600px;}
.y253_c00001{bottom:378.840450px;}
.y278e_c00001{bottom:378.930450px;}
.y1325_c00001{bottom:379.029810px;}
.y1b66_c00001{bottom:379.083960px;}
.y3934_c00001{bottom:379.110450px;}
.y1fad_c00001{bottom:379.200450px;}
.y10f1_c00001{bottom:379.201800px;}
.y1c38_c00001{bottom:379.260000px;}
.y223d_c00001{bottom:379.290600px;}
.y517_c00001{bottom:379.380450px;}
.y16e_c00001{bottom:379.380459px;}
.y2ec5_c00001{bottom:379.440000px;}
.y1e78_c00001{bottom:379.450080px;}
.y1213_c00001{bottom:379.470450px;}
.yfb3_c00001{bottom:379.470600px;}
.y2077_c00001{bottom:379.557462px;}
.y289b_c00001{bottom:379.560450px;}
.yf5d_c00001{bottom:379.650450px;}
.y1224_c00001{bottom:379.738683px;}
.y2a1c_c00001{bottom:379.740450px;}
.y247a_c00001{bottom:379.830600px;}
.y2c58_c00001{bottom:379.920402px;}
.y27bd_c00001{bottom:379.920450px;}
.y96f_c00001{bottom:379.920600px;}
.yfc4_c00001{bottom:380.009172px;}
.y418_c00001{bottom:380.010450px;}
.y2d11_c00001{bottom:380.012124px;}
.y802_c00001{bottom:380.280450px;}
.yd9d_c00001{bottom:380.370450px;}
.y1ace_c00001{bottom:380.520000px;}
.y1742_c00001{bottom:380.550450px;}
.y1627_c00001{bottom:380.640600px;}
.y3364_c00001{bottom:380.700000px;}
.y28b6_c00001{bottom:380.730450px;}
.y2427_c00001{bottom:380.820450px;}
.y1171_c00001{bottom:380.907615px;}
.y78c_c00001{bottom:380.910450px;}
.y35b2_c00001{bottom:380.911122px;}
.y30df_c00001{bottom:381.060000px;}
.y616_c00001{bottom:381.090450px;}
.y17d4_c00001{bottom:381.180450px;}
.y8f5_c00001{bottom:381.270450px;}
.y2c0b_c00001{bottom:381.270699px;}
.y1cea_c00001{bottom:381.420000px;}
.yecb_c00001{bottom:381.450846px;}
.y364f_c00001{bottom:381.540600px;}
.ydbc_c00001{bottom:381.540780px;}
.y1181_c00001{bottom:381.714726px;}
.y22d9_c00001{bottom:381.717804px;}
.y229a_c00001{bottom:381.720450px;}
.y7b4_c00001{bottom:381.720600px;}
.ye78_c00001{bottom:381.810450px;}
.y6e5_c00001{bottom:381.900450px;}
.y1633_c00001{bottom:381.900600px;}
.y1f65_c00001{bottom:381.990450px;}
.y2f16_c00001{bottom:382.140000px;}
.y232f_c00001{bottom:382.257066px;}
.y3749_c00001{bottom:382.264302px;}
.y2e3d_c00001{bottom:382.320000px;}
.y133a_c00001{bottom:382.350450px;}
.y354d_c00001{bottom:382.352166px;}
.ybd8_c00001{bottom:382.440450px;}
.y10be_c00001{bottom:382.440600px;}
.y309f_c00001{bottom:382.500000px;}
.y2ddc_c00001{bottom:382.502880px;}
.y1779_c00001{bottom:382.530450px;}
.yc1e_c00001{bottom:382.710600px;}
.y3005_c00001{bottom:382.860000px;}
.y21a4_c00001{bottom:382.890450px;}
.y27d_c00001{bottom:382.890657px;}
.y364b_c00001{bottom:382.980450px;}
.y1612_c00001{bottom:383.160450px;}
.y2ecf_c00001{bottom:383.220000px;}
.y165a_c00001{bottom:383.250450px;}
.y2827_c00001{bottom:383.252538px;}
.y3898_c00001{bottom:383.331216px;}
.y2663_c00001{bottom:383.340450px;}
.y307c_c00001{bottom:383.580000px;}
.y20ee_c00001{bottom:383.609790px;}
.y21f4_c00001{bottom:383.610450px;}
.y3913_c00001{bottom:383.610972px;}
.y2a55_c00001{bottom:383.700009px;}
.y1acf_c00001{bottom:383.760000px;}
.y2593_c00001{bottom:383.878650px;}
.y39d6_c00001{bottom:383.880450px;}
.y3213_c00001{bottom:383.882571px;}
.y11c_c00001{bottom:384.060450px;}
.y702_c00001{bottom:384.150000px;}
.y1803_c00001{bottom:384.150450px;}
.y1419_c00001{bottom:384.240450px;}
.y21d3_c00001{bottom:384.330009px;}
.yc68_c00001{bottom:384.331782px;}
.ye0b_c00001{bottom:384.420540px;}
.y15d6_c00001{bottom:384.420720px;}
.y2e9d_c00001{bottom:384.480000px;}
.y22c_c00001{bottom:384.510450px;}
.y2d37_c00001{bottom:384.514578px;}
.y12f3_c00001{bottom:384.600450px;}
.y109b_c00001{bottom:384.600600px;}
.yc31_c00001{bottom:384.690450px;}
.y94f_c00001{bottom:384.690600px;}
.y276c_c00001{bottom:384.694527px;}
.y2cbc_c00001{bottom:384.780159px;}
.y1ffb_c00001{bottom:384.781716px;}
.y32d_c00001{bottom:384.870450px;}
.y182a_c00001{bottom:384.960450px;}
.yd8f_c00001{bottom:384.960600px;}
.y1f05_c00001{bottom:385.020000px;}
.y29fc_c00001{bottom:385.050150px;}
.yf33_c00001{bottom:385.050450px;}
.y1f7f_c00001{bottom:385.143708px;}
.y3169_c00001{bottom:385.200000px;}
.y540_c00001{bottom:385.320450px;}
.y1a79_c00001{bottom:385.380000px;}
.y33e3_c00001{bottom:385.500522px;}
.y3850_c00001{bottom:385.500600px;}
.y1101_c00001{bottom:385.590600px;}
.y199e_c00001{bottom:385.740000px;}
.y3f0_c00001{bottom:385.770459px;}
.y2ef_c00001{bottom:385.860000px;}
.y37a7_c00001{bottom:385.864419px;}
.y108c_c00001{bottom:386.040450px;}
.y2018_c00001{bottom:386.040600px;}
.y9c5_c00001{bottom:386.041305px;}
.yc90_c00001{bottom:386.044479px;}
.y1ceb_c00001{bottom:386.100000px;}
.y29b4_c00001{bottom:386.130450px;}
.y27aa_c00001{bottom:386.220450px;}
.y1dc4_c00001{bottom:386.287020px;}
.yb17_c00001{bottom:386.310450px;}
.yc4a_c00001{bottom:386.400450px;}
.y8bb_c00001{bottom:386.400729px;}
.y2f87_c00001{bottom:386.460000px;}
.yd23_c00001{bottom:386.490450px;}
.y18a4_c00001{bottom:386.490600px;}
.y20ae_c00001{bottom:386.579700px;}
.y1791_c00001{bottom:386.580450px;}
.y2fde_c00001{bottom:386.640000px;}
.y43a_c00001{bottom:386.670450px;}
.y1910_c00001{bottom:386.820000px;}
.y141_c00001{bottom:386.850450px;}
.y12b0_c00001{bottom:387.030450px;}
.y29c6_c00001{bottom:387.117012px;}
.y2b57_c00001{bottom:387.123024px;}
.y30a0_c00001{bottom:387.180000px;}
.y25b4_c00001{bottom:387.210600px;}
.y3142_c00001{bottom:387.360000px;}
.y205a_c00001{bottom:387.390450px;}
.y11e4_c00001{bottom:387.395301px;}
.yd4e_c00001{bottom:387.480450px;}
.y1703_c00001{bottom:387.660450px;}
.y3103_c00001{bottom:387.720000px;}
.y1e05_c00001{bottom:387.727020px;}
.y38f3_c00001{bottom:387.840600px;}
.y2ab0_c00001{bottom:387.840672px;}
.y3460_c00001{bottom:387.930600px;}
.y1b17_c00001{bottom:388.080000px;}
.y1695_c00001{bottom:388.200600px;}
.y11f0_c00001{bottom:388.211430px;}
.y33e0_c00001{bottom:388.290540px;}
.y1856_c00001{bottom:388.380450px;}
.y1944_c00001{bottom:388.440000px;}
.y383a_c00001{bottom:388.470450px;}
.y25b2_c00001{bottom:388.560450px;}
.y38ff_c00001{bottom:388.740450px;}
.y3630_c00001{bottom:388.830450px;}
.y1f4b_c00001{bottom:388.838397px;}
.y2ad1_c00001{bottom:388.920450px;}
.y2115_c00001{bottom:389.010450px;}
.y585_c00001{bottom:389.100450px;}
.y1a2e_c00001{bottom:389.160000px;}
.y38d1_c00001{bottom:389.280450px;}
.y24bb_c00001{bottom:389.367948px;}
.y848_c00001{bottom:389.370450px;}
.y3205_c00001{bottom:389.508840px;}
.y19e8_c00001{bottom:389.523960px;}
.y287e_c00001{bottom:389.549937px;}
.y36a7_c00001{bottom:389.553861px;}
.yf40_c00001{bottom:389.640450px;}
.y330f_c00001{bottom:389.700000px;}
.y17bf_c00001{bottom:389.730450px;}
.y88c_c00001{bottom:389.820450px;}
.y819_c00001{bottom:389.820600px;}
.y22b5_c00001{bottom:389.910450px;}
.y26a0_c00001{bottom:389.999712px;}
.y5dc_c00001{bottom:390.000600px;}
.y2999_c00001{bottom:390.270600px;}
.y13aa_c00001{bottom:390.272970px;}
.y36e7_c00001{bottom:390.353520px;}
.y159f_c00001{bottom:390.361125px;}
.y1c66_c00001{bottom:390.420000px;}
.y31c2_c00001{bottom:390.423060px;}
.y4e1_c00001{bottom:390.450600px;}
.y11ac_c00001{bottom:390.451008px;}
.y101f_c00001{bottom:390.451287px;}
.y1870_c00001{bottom:390.540450px;}
.y346c_c00001{bottom:390.630000px;}
.y25fd_c00001{bottom:390.900450px;}
.y1d3f_c00001{bottom:390.960000px;}
.ye3b_c00001{bottom:390.989748px;}
.y2a92_c00001{bottom:390.990450px;}
.y1521_c00001{bottom:390.991125px;}
.y210_c00001{bottom:391.080600px;}
.y2368_c00001{bottom:391.170450px;}
.y381f_c00001{bottom:391.260450px;}
.y367f_c00001{bottom:391.350450px;}
.yc3_c00001{bottom:391.350600px;}
.y1cab_c00001{bottom:391.500000px;}
.yea8_c00001{bottom:391.620450px;}
.y2861_c00001{bottom:391.620600px;}
.y13b1_c00001{bottom:391.620900px;}
.y192_c00001{bottom:391.710600px;}
.y34d4_c00001{bottom:391.797012px;}
.ybf9_c00001{bottom:391.800450px;}
.y3985_c00001{bottom:391.890450px;}
.y354_c00001{bottom:391.980450px;}
.y754_c00001{bottom:391.980600px;}
.y31ef_c00001{bottom:392.040000px;}
.y38d3_c00001{bottom:392.070450px;}
.y3416_c00001{bottom:392.159199px;}
.yaf0_c00001{bottom:392.160450px;}
.yd71_c00001{bottom:392.161575px;}
.y1ea3_c00001{bottom:392.220000px;}
.y2164_c00001{bottom:392.249277px;}
.y63d_c00001{bottom:392.250600px;}
.y2568_c00001{bottom:392.520699px;}
.y2e6a_c00001{bottom:392.580000px;}
.y1071_c00001{bottom:392.610600px;}
.y3a2c_c00001{bottom:392.616912px;}
.y2186_c00001{bottom:392.700600px;}
.y1b19_c00001{bottom:392.760000px;}
.y175e_c00001{bottom:392.790450px;}
.y360d_c00001{bottom:392.880450px;}
.y3195_c00001{bottom:392.940000px;}
.y3580_c00001{bottom:392.969376px;}
.y9df_c00001{bottom:393.060450px;}
.y12ec_c00001{bottom:393.150450px;}
.y1f0_c00001{bottom:393.241005px;}
.y1e77_c00001{bottom:393.307020px;}
.y73d_c00001{bottom:393.330450px;}
.y280d_c00001{bottom:393.419568px;}
.y13d0_c00001{bottom:393.420450px;}
.y2fb7_c00001{bottom:393.480000px;}
.y1223_c00001{bottom:393.508971px;}
.y2c86_c00001{bottom:393.509568px;}
.y25dc_c00001{bottom:393.510450px;}
.yad7_c00001{bottom:393.600450px;}
.y1661_c00001{bottom:393.600600px;}
.yfc3_c00001{bottom:393.779460px;}
.y2a94_c00001{bottom:393.780450px;}
.y1ed0_c00001{bottom:393.840000px;}
.y2942_c00001{bottom:393.960600px;}
.y2402_c00001{bottom:394.140450px;}
.ya48_c00001{bottom:394.230450px;}
.y1292_c00001{bottom:394.233195px;}
.y2d83_c00001{bottom:394.380000px;}
.y6c6_c00001{bottom:394.590600px;}
.y8d0_c00001{bottom:394.682466px;}
.y423_c00001{bottom:394.860450px;}
.y37bd_c00001{bottom:394.860600px;}
.yde2_c00001{bottom:394.864950px;}
.y2ce9_c00001{bottom:394.950009px;}
.y17a6_c00001{bottom:394.950450px;}
.y22ef_c00001{bottom:395.040081px;}
.y97_c00001{bottom:395.040450px;}
.y105f_c00001{bottom:395.040600px;}
.y3143_c00001{bottom:395.100000px;}
.y23d5_c00001{bottom:395.130150px;}
.y10dc_c00001{bottom:395.130384px;}
.y3256_c00001{bottom:395.280000px;}
.y14f6_c00001{bottom:395.310450px;}
.y391_c00001{bottom:395.400450px;}
.y2daf_c00001{bottom:395.460000px;}
.y12a1_c00001{bottom:395.488650px;}
.y2967_c00001{bottom:395.490450px;}
.y238c_c00001{bottom:395.580450px;}
.y1bac_c00001{bottom:395.640000px;}
.y23af_c00001{bottom:395.670450px;}
.y10f2_c00001{bottom:395.671800px;}
.y1c1_c00001{bottom:395.760648px;}
.yb73_c00001{bottom:395.939586px;}
.y8e2_c00001{bottom:395.940450px;}
.y1bf4_c00001{bottom:396.000000px;}
.y1457_c00001{bottom:396.030450px;}
.y1608_c00001{bottom:396.120450px;}
.y2c57_c00001{bottom:396.120600px;}
.y24ee_c00001{bottom:396.204636px;}
.y462_c00001{bottom:396.210450px;}
.ycc3_c00001{bottom:396.210600px;}
.y2ddb_c00001{bottom:396.359820px;}
.y3371_c00001{bottom:396.372600px;}
.y2543_c00001{bottom:396.387300px;}
.y39c1_c00001{bottom:396.390450px;}
.y2479_c00001{bottom:396.480450px;}
.y5b0_c00001{bottom:396.570450px;}
.y16d_c00001{bottom:396.660450px;}
.y223c_c00001{bottom:396.747435px;}
.y2b01_c00001{bottom:396.750231px;}
.y35b1_c00001{bottom:396.751023px;}
.y2140_c00001{bottom:396.840009px;}
.y1b18_c00001{bottom:396.900000px;}
.y97f_c00001{bottom:397.020600px;}
.y55f_c00001{bottom:397.020807px;}
.y3897_c00001{bottom:397.101504px;}
.y2c0a_c00001{bottom:397.110600px;}
.y2b56_c00001{bottom:397.113402px;}
.y1a2f_c00001{bottom:397.260000px;}
.y380e_c00001{bottom:397.290600px;}
.y516_c00001{bottom:397.380450px;}
.y2ec4_c00001{bottom:397.440000px;}
.y2bbe_c00001{bottom:397.470087px;}
.y339f_c00001{bottom:397.470450px;}
.y7db_c00001{bottom:397.560450px;}
.y1e3b_c00001{bottom:397.620000px;}
.y2b9_c00001{bottom:397.650600px;}
.yb88_c00001{bottom:397.740225px;}
.y1055_c00001{bottom:397.740450px;}
.y2f15_c00001{bottom:397.800000px;}
.y234d_c00001{bottom:397.830087px;}
.y3440_c00001{bottom:397.920450px;}
.y2a37_c00001{bottom:398.010450px;}
.y143d_c00001{bottom:398.100450px;}
.y3748_c00001{bottom:398.104203px;}
.y2fdc_c00001{bottom:398.160000px;}
.y1122_c00001{bottom:398.190450px;}
.y354c_c00001{bottom:398.192067px;}
.y1ad0_c00001{bottom:398.340000px;}
.y1884_c00001{bottom:398.370450px;}
.y267d_c00001{bottom:398.370600px;}
.y2ca1_c00001{bottom:398.549640px;}
.y67e_c00001{bottom:398.550450px;}
.yeca_c00001{bottom:398.640657px;}
.y2e0a_c00001{bottom:398.700000px;}
.y1fe5_c00001{bottom:398.730450px;}
.y3c7_c00001{bottom:398.820450px;}
.y251f_c00001{bottom:398.904123px;}
.y65b_c00001{bottom:398.910450px;}
.y490_c00001{bottom:399.090450px;}
.y9b4_c00001{bottom:399.090600px;}
.y2826_c00001{bottom:399.092439px;}
.y342b_c00001{bottom:399.180450px;}
.y274b_c00001{bottom:399.180600px;}
.y125b_c00001{bottom:399.360135px;}
.y1c37_c00001{bottom:399.420000px;}
.y34aa_c00001{bottom:399.450600px;}
.y3912_c00001{bottom:399.450873px;}
.y1172_c00001{bottom:399.537300px;}
.y1317_c00001{bottom:399.542754px;}
.y332a_c00001{bottom:399.600000px;}
.y6a8_c00001{bottom:399.629928px;}
.y701_c00001{bottom:399.630450px;}
.y1bae_c00001{bottom:399.780000px;}
.y1212_c00001{bottom:399.810780px;}
.y252_c00001{bottom:399.900450px;}
.y31ee_c00001{bottom:399.960000px;}
.y1dc3_c00001{bottom:399.963060px;}
.y32c_c00001{bottom:400.080450px;}
.y27c_c00001{bottom:400.080468px;}
.y16ac_c00001{bottom:400.080600px;}
.y26e8_c00001{bottom:400.258362px;}
.y26e4_c00001{bottom:400.260009px;}
.y99d_c00001{bottom:400.260450px;}
.y1182_c00001{bottom:400.350135px;}
.y1f22_c00001{bottom:400.350450px;}
.y1326_c00001{bottom:400.360386px;}
.y3963_c00001{bottom:400.530450px;}
.ydbb_c00001{bottom:400.530690px;}
.yf29_c00001{bottom:400.530729px;}
.ya01_c00001{bottom:400.620600px;}
.y39fe_c00001{bottom:400.621071px;}
.y1265_c00001{bottom:400.623600px;}
.y276b_c00001{bottom:400.624203px;}
.y2beb_c00001{bottom:400.799406px;}
.yfa9_c00001{bottom:400.800450px;}
.y37d3_c00001{bottom:400.890450px;}
.y3104_c00001{bottom:401.040000px;}
.y1570_c00001{bottom:401.070450px;}
.y1278_c00001{bottom:401.250450px;}
.y3363_c00001{bottom:401.400000px;}
.y2ee_c00001{bottom:401.429550px;}
.y34ea_c00001{bottom:401.430600px;}
.y11b_c00001{bottom:401.520789px;}
.y1e04_c00001{bottom:401.583960px;}
.y2592_c00001{bottom:401.698650px;}
.yc1d_c00001{bottom:401.700600px;}
.y32bb_c00001{bottom:401.760000px;}
.y615_c00001{bottom:401.790450px;}
.y1fac_c00001{bottom:401.790600px;}
.y289a_c00001{bottom:402.060450px;}
.y14d8_c00001{bottom:402.150450px;}
.y1832_c00001{bottom:402.150600px;}
.y27dc_c00001{bottom:402.238389px;}
.y3933_c00001{bottom:402.240450px;}
.y1f04_c00001{bottom:402.300000px;}
.y2a1b_c00001{bottom:402.330450px;}
.yc69_c00001{bottom:402.331710px;}
.y7b3_c00001{bottom:402.420600px;}
.y777_c00001{bottom:402.600450px;}
.y1d3a_c00001{bottom:402.660000px;}
.y1f64_c00001{bottom:402.690450px;}
.y2a_c00001{bottom:402.780450px;}
.y2fdd_c00001{bottom:402.840000px;}
.y2299_c00001{bottom:402.870522px;}
.y2c30_c00001{bottom:402.870600px;}
.y29fb_c00001{bottom:402.960600px;}
.y3001_c00001{bottom:403.020000px;}
.y3ef_c00001{bottom:403.050450px;}
.y19e7_c00001{bottom:403.200000px;}
.ye77_c00001{bottom:403.320450px;}
.y2e0b_c00001{bottom:403.380000px;}
.ye0a_c00001{bottom:403.410450px;}
.y15d5_c00001{bottom:403.410630px;}
.y22d8_c00001{bottom:403.588317px;}
.y25b1_c00001{bottom:403.590600px;}
.y2e3c_c00001{bottom:403.740000px;}
.yffb_c00001{bottom:403.770450px;}
.y146a_c00001{bottom:403.860450px;}
.y1551_c00001{bottom:403.950450px;}
.y15ae_c00001{bottom:403.950600px;}
.y364a_c00001{bottom:404.040600px;}
.y232e_c00001{bottom:404.127579px;}
.yc91_c00001{bottom:404.134740px;}
.y1741_c00001{bottom:404.220450px;}
.y31c1_c00001{bottom:404.280000px;}
.ybd7_c00001{bottom:404.490450px;}
.y28f0_c00001{bottom:404.580450px;}
.y1b63_c00001{bottom:404.640000px;}
.y4d_c00001{bottom:404.670450px;}
.y2d36_c00001{bottom:404.673858px;}
.y1bf2_c00001{bottom:404.820000px;}
.ye3a_c00001{bottom:404.849811px;}
.y17d3_c00001{bottom:404.940450px;}
.y11a_c00001{bottom:404.940744px;}
.y22b4_c00001{bottom:405.030450px;}
.y9c4_c00001{bottom:405.031215px;}
.y39d5_c00001{bottom:405.120600px;}
.y857_c00001{bottom:405.210450px;}
.yb16_c00001{bottom:405.300450px;}
.y1f7e_c00001{bottom:405.302988px;}
.yabe_c00001{bottom:405.390450px;}
.y36a6_c00001{bottom:405.393762px;}
.y227f_c00001{bottom:405.480081px;}
.y20ed_c00001{bottom:405.480303px;}
.yd22_c00001{bottom:405.480450px;}
.y801_c00001{bottom:405.570450px;}
.y2a54_c00001{bottom:405.570522px;}
.y21a3_c00001{bottom:405.840600px;}
.y3002_c00001{bottom:405.900000px;}
.y2662_c00001{bottom:405.930600px;}
.y53f_c00001{bottom:406.020450px;}
.yb47_c00001{bottom:406.020600px;}
.y30dd_c00001{bottom:406.080000px;}
.y5fb_c00001{bottom:406.110600px;}
.y21d2_c00001{bottom:406.200522px;}
.y439_c00001{bottom:406.200600px;}
.y333f_c00001{bottom:406.260000px;}
.y272b_c00001{bottom:406.290000px;}
.y1778_c00001{bottom:406.290450px;}
.y199d_c00001{bottom:406.440000px;}
.y2114_c00001{bottom:406.469496px;}
.y2cc9_c00001{bottom:406.559325px;}
.y2cbb_c00001{bottom:406.560087px;}
.ya5f_c00001{bottom:406.560450px;}
.yf0b_c00001{bottom:406.560600px;}
.y2f83_c00001{bottom:406.620000px;}
.yf0_c00001{bottom:406.740450px;}
.y2497_c00001{bottom:406.740873px;}
.y3204_c00001{bottom:406.794420px;}
.yd4d_c00001{bottom:406.830450px;}
.y119c_c00001{bottom:406.920450px;}
.y1a78_c00001{bottom:406.980000px;}
.y1e76_c00001{bottom:406.983060px;}
.y2b55_c00001{bottom:407.013393px;}
.y417_c00001{bottom:407.100450px;}
.y3530_c00001{bottom:407.183421px;}
.y33e2_c00001{bottom:407.280450px;}
.y1baf_c00001{bottom:407.340000px;}
.y1222_c00001{bottom:407.369034px;}
.y2641_c00001{bottom:407.458758px;}
.y2ece_c00001{bottom:407.520000px;}
.yfc2_c00001{bottom:407.639523px;}
.y3951_c00001{bottom:407.639550px;}
.y136e_c00001{bottom:407.730450px;}
.y16be_c00001{bottom:407.820450px;}
.y2998_c00001{bottom:407.820522px;}
.y2fb8_c00001{bottom:407.880000px;}
.y1802_c00001{bottom:407.910450px;}
.y11e5_c00001{bottom:407.915760px;}
.y140_c00001{bottom:408.090600px;}
.y371d_c00001{bottom:408.180000px;}
.y37e2_c00001{bottom:408.270600px;}
.y2567_c00001{bottom:408.360600px;}
.yfa0_c00001{bottom:408.450450px;}
.y119_c00001{bottom:408.450690px;}
.y3a2b_c00001{bottom:408.456813px;}
.ye56_c00001{bottom:408.540450px;}
.y71_c00001{bottom:408.540600px;}
.y362f_c00001{bottom:408.630450px;}
.y1829_c00001{bottom:408.720450px;}
.y11f1_c00001{bottom:408.721059px;}
.y32e5_c00001{bottom:408.780000px;}
.y203f_c00001{bottom:408.807300px;}
.ya25_c00001{bottom:408.810450px;}
.y12fe_c00001{bottom:408.810600px;}
.y2921_c00001{bottom:408.900450px;}
.y2b85_c00001{bottom:408.990450px;}
.y153a_c00001{bottom:409.080450px;}
.y1943_c00001{bottom:409.140000px;}
.y159e_c00001{bottom:409.260450px;}
.y1b65_c00001{bottom:409.320000px;}
.y584_c00001{bottom:409.350450px;}
.y6c5_c00001{bottom:409.440450px;}
.y3839_c00001{bottom:409.530648px;}
.y13cf_c00001{bottom:409.620600px;}
.y1520_c00001{bottom:409.890450px;}
.y3344_c00001{bottom:410.040000px;}
.y2017_c00001{bottom:410.160231px;}
.y1846_c00001{bottom:410.160450px;}
.y63c_c00001{bottom:410.250600px;}
.y1790_c00001{bottom:410.340450px;}
.y302d_c00001{bottom:410.400000px;}
.y38f1_c00001{bottom:410.430600px;}
.y1ef_c00001{bottom:410.430816px;}
.yd8e_c00001{bottom:410.520450px;}
.yfb2_c00001{bottom:410.520600px;}
.y1c64_c00001{bottom:410.580000px;}
.y26ff_c00001{bottom:410.610600px;}
.yf5c_c00001{bottom:410.700450px;}
.y5db_c00001{bottom:410.700600px;}
.y360c_c00001{bottom:410.880450px;}
.y1ecf_c00001{bottom:410.940000px;}
.y3896_c00001{bottom:410.961567px;}
.y25db_c00001{bottom:410.967804px;}
.y96e_c00001{bottom:410.970600px;}
.y2d1f_c00001{bottom:411.060450px;}
.y1ce9_c00001{bottom:411.120000px;}
.y4e0_c00001{bottom:411.150450px;}
.y11ab_c00001{bottom:411.150729px;}
.y101e_c00001{bottom:411.151008px;}
.yd70_c00001{bottom:411.151485px;}
.y24ba_c00001{bottom:411.238461px;}
.y186f_c00001{bottom:411.240450px;}
.yec5_c00001{bottom:411.241215px;}
.y3276_c00001{bottom:411.300000px;}
.y23ae_c00001{bottom:411.330450px;}
.y3381_c00001{bottom:411.333735px;}
.y287f_c00001{bottom:411.420450px;}
.y1702_c00001{bottom:411.510450px;}
.y10dd_c00001{bottom:411.690438px;}
.y2306_c00001{bottom:411.690450px;}
.y1626_c00001{bottom:411.690600px;}
.y245c_c00001{bottom:411.780450px;}
.y2908_c00001{bottom:411.870450px;}
.y118_c00001{bottom:411.870645px;}
.y73c_c00001{bottom:411.960600px;}
.y309e_c00001{bottom:412.020000px;}
.y208f_c00001{bottom:412.050450px;}
.yc2_c00001{bottom:412.050600px;}
.y97e_c00001{bottom:412.140450px;}
.y1caa_c00001{bottom:412.200000px;}
.y1855_c00001{bottom:412.230450px;}
.y10f3_c00001{bottom:412.232250px;}
.y8f4_c00001{bottom:412.320450px;}
.y23fc_c00001{bottom:412.410450px;}
.y2461_c00001{bottom:412.500600px;}
.y305c_c00001{bottom:412.560000px;}
.y1070_c00001{bottom:412.590600px;}
.y35b0_c00001{bottom:412.590924px;}
.y353_c00001{bottom:412.680450px;}
.y357f_c00001{bottom:412.860078px;}
.y8a5_c00001{bottom:412.860450px;}
.y287d_c00001{bottom:412.860600px;}
.y1b14_c00001{bottom:412.920000px;}
.y23d4_c00001{bottom:412.950150px;}
.y6e4_c00001{bottom:412.950450px;}
.y1632_c00001{bottom:412.950600px;}
.y1f4a_c00001{bottom:412.958091px;}
.y1c0_c00001{bottom:413.040639px;}
.y1bf3_c00001{bottom:413.100000px;}
.y191_c00001{bottom:413.130450px;}
.y2dda_c00001{bottom:413.280000px;}
.y29d9_c00001{bottom:413.310450px;}
.y2259_c00001{bottom:413.400450px;}
.y1b64_c00001{bottom:413.460000px;}
.y10bd_c00001{bottom:413.490600px;}
.y17be_c00001{bottom:413.580450px;}
.y88b_c00001{bottom:413.760450px;}
.y1dc2_c00001{bottom:413.820000px;}
.yde1_c00001{bottom:413.854860px;}
.y35ef_c00001{bottom:413.938362px;}
.y3747_c00001{bottom:413.944104px;}
.y3415_c00001{bottom:414.029712px;}
.y2163_c00001{bottom:414.119790px;}
.y354b_c00001{bottom:414.121743px;}
.y2542_c00001{bottom:414.207300px;}
.y1611_c00001{bottom:414.210450px;}
.y55e_c00001{bottom:414.210618px;}
.y1659_c00001{bottom:414.300450px;}
.y359a_c00001{bottom:414.387012px;}
.y16c_c00001{bottom:414.570600px;}
.y19df_c00001{bottom:414.720000px;}
.y2ad2_c00001{bottom:414.750600px;}
.y2478_c00001{bottom:414.840600px;}
.y2e69_c00001{bottom:414.900000px;}
.y2825_c00001{bottom:414.932340px;}
.ycf5_c00001{bottom:415.019034px;}
.y2d82_c00001{bottom:415.080000px;}
.y390_c00001{bottom:415.110600px;}
.y280c_c00001{bottom:415.199496px;}
.y5af_c00001{bottom:415.200600px;}
.y1c65_c00001{bottom:415.260000px;}
.y1418_c00001{bottom:415.290450px;}
.y117_c00001{bottom:415.290600px;}
.y2c85_c00001{bottom:415.380081px;}
.y3911_c00001{bottom:415.380549px;}
.y1d3b_c00001{bottom:415.440000px;}
.y22b_c00001{bottom:415.560450px;}
.y2f3b_c00001{bottom:415.620000px;}
.y12f2_c00001{bottom:415.650450px;}
.y109a_c00001{bottom:415.650600px;}
.y96_c00001{bottom:415.740450px;}
.y94e_c00001{bottom:415.740600px;}
.y3389_c00001{bottom:415.831107px;}
.y1207_c00001{bottom:415.920450px;}
.yec9_c00001{bottom:415.920648px;}
.y31be_c00001{bottom:415.980000px;}
.y515_c00001{bottom:416.010450px;}
.y1388_c00001{bottom:416.011008px;}
.y3124_c00001{bottom:416.160000px;}
.y1694_c00001{bottom:416.190729px;}
.y1293_c00001{bottom:416.283708px;}
.y3003_c00001{bottom:416.340000px;}
.y2076_c00001{bottom:416.367912px;}
.y156f_c00001{bottom:416.370600px;}
.y39fd_c00001{bottom:416.460972px;}
.y276a_c00001{bottom:416.464104px;}
.y67d_c00001{bottom:416.550450px;}
.y1100_c00001{bottom:416.640600px;}
.y2ce8_c00001{bottom:416.729937px;}
.y2a36_c00001{bottom:416.730450px;}
.y37a6_c00001{bottom:416.733852px;}
.y22ee_c00001{bottom:416.820009px;}
.y25fc_c00001{bottom:416.820450px;}
.y1d6e_c00001{bottom:416.880000px;}
.y1ea2_c00001{bottom:416.889000px;}
.y2ed_c00001{bottom:416.910000px;}
.y461_c00001{bottom:416.910450px;}
.y347f_c00001{bottom:416.910600px;}
.y2b54_c00001{bottom:416.913384px;}
.y1d3c_c00001{bottom:417.060000px;}
.y108b_c00001{bottom:417.090450px;}
.y36ca_c00001{bottom:417.180600px;}
.y1d3d_c00001{bottom:417.240000px;}
.y27b_c00001{bottom:417.360459px;}
.y2216_c00001{bottom:417.360600px;}
.y1a2c_c00001{bottom:417.420000px;}
.yc49_c00001{bottom:417.450450px;}
.y8e1_c00001{bottom:417.450600px;}
.y25b0_c00001{bottom:417.540600px;}
.y1b16_c00001{bottom:417.600000px;}
.y12a2_c00001{bottom:417.628650px;}
.y33b7_c00001{bottom:417.630450px;}
.y8cf_c00001{bottom:417.631764px;}
.y13ce_c00001{bottom:417.720450px;}
.y39c0_c00001{bottom:417.810450px;}
.y71c_c00001{bottom:417.900450px;}
.y24ed_c00001{bottom:417.984564px;}
.y2ec3_c00001{bottom:418.140000px;}
.y261f_c00001{bottom:418.170450px;}
.y1173_c00001{bottom:418.257165px;}
.y1e3a_c00001{bottom:418.320000px;}
.y2b8_c00001{bottom:418.350600px;}
.y2059_c00001{bottom:418.440450px;}
.y1ac6_c00001{bottom:418.500000px;}
.y223b_c00001{bottom:418.527363px;}
.y2b00_c00001{bottom:418.530159px;}
.ye39_c00001{bottom:418.620099px;}
.y3193_c00001{bottom:418.680000px;}
.y18e3_c00001{bottom:418.710450px;}
.y213f_c00001{bottom:418.710522px;}
.y1211_c00001{bottom:418.800690px;}
.y1183_c00001{bottom:419.070000px;}
.y1054_c00001{bottom:419.250600px;}
.y2bbf_c00001{bottom:419.340600px;}
.y238b_c00001{bottom:419.430450px;}
.y2591_c00001{bottom:419.518650px;}
.ydba_c00001{bottom:419.520600px;}
.y1f03_c00001{bottom:419.580000px;}
.y65a_c00001{bottom:419.610450px;}
.y234e_c00001{bottom:419.700600px;}
.y32b_c00001{bottom:419.790600px;}
.y3c6_c00001{bottom:419.790666px;}
.yd9c_c00001{bottom:419.880450px;}
.y2f84_c00001{bottom:419.940000px;}
.yb74_c00001{bottom:419.969550px;}
.y251_c00001{bottom:420.060450px;}
.y2f14_c00001{bottom:420.120000px;}
.y1fc9_c00001{bottom:420.150450px;}
.y2ca0_c00001{bottom:420.329568px;}
.y847_c00001{bottom:420.420450px;}
.yc6a_c00001{bottom:420.421818px;}
.y13ab_c00001{bottom:420.513330px;}
.y2bea_c00001{bottom:420.599928px;}
.y776_c00001{bottom:420.600450px;}
.y251e_c00001{bottom:420.684051px;}
.yc1c_c00001{bottom:420.690450px;}
.y2bbd_c00001{bottom:420.780450px;}
.y1d6f_c00001{bottom:420.840000px;}
.y1121_c00001{bottom:420.870450px;}
.y818_c00001{bottom:420.870600px;}
.y1318_c00001{bottom:420.873330px;}
.y3ee_c00001{bottom:420.960450px;}
.y267c_c00001{bottom:420.960600px;}
.y1f21_c00001{bottom:421.050450px;}
.y1221_c00001{bottom:421.139322px;}
.y234c_c00001{bottom:421.140450px;}
.y438_c00001{bottom:421.140600px;}
.y3100_c00001{bottom:421.200000px;}
.y36e6_c00001{bottom:421.224150px;}
.yf28_c00001{bottom:421.230450px;}
.y36a5_c00001{bottom:421.233663px;}
.y9de_c00001{bottom:421.320450px;}
.yfc1_c00001{bottom:421.409811px;}
.y2c2e_c00001{bottom:421.410600px;}
.y16e1_c00001{bottom:421.500450px;}
.y105e_c00001{bottom:421.500600px;}
.yb89_c00001{bottom:421.680225px;}
.y18c4_c00001{bottom:421.680450px;}
.y15d7_c00001{bottom:421.680600px;}
.y1327_c00001{bottom:421.690962px;}
.y1b15_c00001{bottom:421.740000px;}
.y274a_c00001{bottom:421.770600px;}
.y1969_c00001{bottom:421.860099px;}
.y13b2_c00001{bottom:421.860900px;}
.y278d_c00001{bottom:421.950600px;}
.y26e7_c00001{bottom:422.038290px;}
.y26e3_c00001{bottom:422.039937px;}
.y21f2_c00001{bottom:422.040081px;}
.y3403_c00001{bottom:422.040600px;}
.y3212_c00001{bottom:422.041914px;}
.y3362_c00001{bottom:422.100000px;}
.yc92_c00001{bottom:422.130936px;}
.y1883_c00001{bottom:422.220450px;}
.y67c_c00001{bottom:422.310450px;}
.y20f_c00001{bottom:422.310600px;}
.y15d4_c00001{bottom:422.400540px;}
.y1ac9_c00001{bottom:422.460000px;}
.y614_c00001{bottom:422.490450px;}
.ye09_c00001{bottom:422.580450px;}
.yea7_c00001{bottom:422.670450px;}
.y2496_c00001{bottom:422.670549px;}
.y116_c00001{bottom:422.760450px;}
.y2d10_c00001{bottom:422.761566px;}
.y1d70_c00001{bottom:422.820000px;}
.y3984_c00001{bottom:422.940450px;}
.yd4c_c00001{bottom:423.030450px;}
.y753_c00001{bottom:423.030600px;}
.y7b2_c00001{bottom:423.120600px;}
.y2e9b_c00001{bottom:423.180000px;}
.yaef_c00001{bottom:423.210450px;}
.y28ce_c00001{bottom:423.300450px;}
.y20ad_c00001{bottom:423.390150px;}
.y1f63_c00001{bottom:423.390450px;}
.y37d2_c00001{bottom:423.480450px;}
.y2e09_c00001{bottom:423.540000px;}
.y2a1a_c00001{bottom:423.570450px;}
.y339e_c00001{bottom:423.660879px;}
.y2185_c00001{bottom:423.750600px;}
.y3167_c00001{bottom:423.900000px;}
.y29c5_c00001{bottom:423.927462px;}
.y17e2_c00001{bottom:423.930450px;}
.y7da_c00001{bottom:423.930600px;}
.y27db_c00001{bottom:424.018317px;}
.y34e8_c00001{bottom:424.020600px;}
.y9c3_c00001{bottom:424.021125px;}
.y3101_c00001{bottom:424.080000px;}
.ye76_c00001{bottom:424.110600px;}
.yaaa_c00001{bottom:424.200450px;}
.y3a2a_c00001{bottom:424.296714px;}
.y2426_c00001{bottom:424.380450px;}
.y9b3_c00001{bottom:424.380600px;}
.y30de_c00001{bottom:424.440000px;}
.y34fe_c00001{bottom:424.560450px;}
.y1547_c00001{bottom:424.650450px;}
.y1660_c00001{bottom:424.650600px;}
.y3895_c00001{bottom:424.731855px;}
.yd21_c00001{bottom:424.830450px;}
.y2d35_c00001{bottom:424.833138px;}
.ye6b_c00001{bottom:424.920450px;}
.yb15_c00001{bottom:425.010450px;}
.y29_c00001{bottom:425.190450px;}
.ya47_c00001{bottom:425.280450px;}
.y22d7_c00001{bottom:425.368245px;}
.y14af_c00001{bottom:425.370450px;}
.y34be_c00001{bottom:425.460600px;}
.y1f7d_c00001{bottom:425.462268px;}
.y1dc1_c00001{bottom:425.520000px;}
.y28b5_c00001{bottom:425.550450px;}
.y125c_c00001{bottom:425.640090px;}
.y1a2d_c00001{bottom:425.700000px;}
.y32e4_c00001{bottom:425.880000px;}
.y232d_c00001{bottom:425.907507px;}
.y20c4_c00001{bottom:425.910600px;}
.y1718_c00001{bottom:426.000450px;}
.y1831_c00001{bottom:426.000600px;}
.y304_c00001{bottom:426.090450px;}
.y2298_c00001{bottom:426.090600px;}
.y14f5_c00001{bottom:426.360450px;}
.y3194_c00001{bottom:426.420000px;}
.y23ad_c00001{bottom:426.630450px;}
.y53e_c00001{bottom:426.720450px;}
.y3838_c00001{bottom:426.720459px;}
.y2b53_c00001{bottom:426.813375px;}
.y269f_c00001{bottom:426.899100px;}
.y1266_c00001{bottom:426.901050px;}
.y2566_c00001{bottom:426.990450px;}
.ya00_c00001{bottom:427.080450px;}
.y199c_c00001{bottom:427.140000px;}
.y1607_c00001{bottom:427.170450px;}
.y362e_c00001{bottom:427.259673px;}
.y227e_c00001{bottom:427.260009px;}
.y20ec_c00001{bottom:427.260231px;}
.y384f_c00001{bottom:427.260450px;}
.y6c4_c00001{bottom:427.350450px;}
.y346b_c00001{bottom:427.440450px;}
.y14d7_c00001{bottom:427.440600px;}
.y1ba6_c00001{bottom:427.500000px;}
.y936_c00001{bottom:427.530450px;}
.y1ffa_c00001{bottom:427.531158px;}
.y39d4_c00001{bottom:427.620972px;}
.y96d_c00001{bottom:427.710450px;}
.y3962_c00001{bottom:427.710600px;}
.y1ee_c00001{bottom:427.710807px;}
.y1dc0_c00001{bottom:427.860000px;}
.yf32_c00001{bottom:427.980450px;}
.y2fb4_c00001{bottom:428.040000px;}
.y6a7_c00001{bottom:428.070324px;}
.y1740_c00001{bottom:428.070450px;}
.y1ece_c00001{bottom:428.220000px;}
.y10de_c00001{bottom:428.250492px;}
.y63b_c00001{bottom:428.250600px;}
.y2113_c00001{bottom:428.340009px;}
.y2cc8_c00001{bottom:428.429838px;}
.y26fe_c00001{bottom:428.430600px;}
.y11e6_c00001{bottom:428.436219px;}
.y2661_c00001{bottom:428.520600px;}
.y34d3_c00001{bottom:428.607462px;}
.y2ecd_c00001{bottom:428.760000px;}
.ycf4_c00001{bottom:428.789322px;}
.y17d2_c00001{bottom:428.790450px;}
.y2a53_c00001{bottom:428.790600px;}
.y10f4_c00001{bottom:428.792700px;}
.y360b_c00001{bottom:428.880450px;}
.y2e3b_c00001{bottom:428.947020px;}
.y159d_c00001{bottom:429.060540px;}
.y3125_c00001{bottom:429.120000px;}
.y2640_c00001{bottom:429.238686px;}
.y11f2_c00001{bottom:429.331698px;}
.y21d1_c00001{bottom:429.420450px;}
.y1b60_c00001{bottom:429.480000px;}
.y2b84_c00001{bottom:429.510450px;}
.y2997_c00001{bottom:429.600450px;}
.y151f_c00001{bottom:429.690690px;}
.y13f_c00001{bottom:429.780450px;}
.y1942_c00001{bottom:429.840000px;}
.y23fb_c00001{bottom:429.870600px;}
.y33df_c00001{bottom:429.870774px;}
.y3746_c00001{bottom:429.873780px;}
.y365a_c00001{bottom:429.960600px;}
.y354a_c00001{bottom:429.961644px;}
.y1acb_c00001{bottom:430.020000px;}
.y583_c00001{bottom:430.050450px;}
.yd6f_c00001{bottom:430.050810px;}
.y48f_c00001{bottom:430.140450px;}
.y1bf_c00001{bottom:430.230450px;}
.yec4_c00001{bottom:430.231125px;}
.y21a2_c00001{bottom:430.320450px;}
.y15ad_c00001{bottom:430.410600px;}
.y378b_c00001{bottom:430.590600px;}
.y371c_c00001{bottom:430.770000px;}
.y16ab_c00001{bottom:430.860600px;}
.y2824_c00001{bottom:430.862016px;}
.y18a3_c00001{bottom:431.040450px;}
.y2c09_c00001{bottom:431.220450px;}
.y1ce7_c00001{bottom:431.280000px;}
.y97d_c00001{bottom:431.489811px;}
.y2920_c00001{bottom:431.490450px;}
.y55d_c00001{bottom:431.490609px;}
.y35d9_c00001{bottom:431.580450px;}
.y5da_c00001{bottom:431.760450px;}
.y4df_c00001{bottom:431.850450px;}
.y101d_c00001{bottom:431.850729px;}
.y186e_c00001{bottom:431.940450px;}
.y26c7_c00001{bottom:432.030450px;}
.y2016_c00001{bottom:432.030744px;}
.y2541_c00001{bottom:432.117750px;}
.y309d_c00001{bottom:432.180000px;}
.y1a77_c00001{bottom:432.186120px;}
.y38ef_c00001{bottom:432.210600px;}
.yba2_c00001{bottom:432.300450px;}
.y39fc_c00001{bottom:432.300873px;}
.y2769_c00001{bottom:432.304005px;}
.ye38_c00001{bottom:432.390387px;}
.y1277_c00001{bottom:432.390450px;}
.y2ec_c00001{bottom:432.479550px;}
.y1828_c00001{bottom:432.570450px;}
.y416_c00001{bottom:432.660450px;}
.y2c08_c00001{bottom:432.660600px;}
.yc1_c00001{bottom:432.750600px;}
.y25da_c00001{bottom:432.838317px;}
.yde0_c00001{bottom:432.844770px;}
.y24b9_c00001{bottom:433.018389px;}
.y3a45_c00001{bottom:433.021071px;}
.y2f43_c00001{bottom:433.080000px;}
.y2bd0_c00001{bottom:433.110600px;}
.y297d_c00001{bottom:433.197759px;}
.y2966_c00001{bottom:433.198686px;}
.yec8_c00001{bottom:433.200639px;}
.y1bf0_c00001{bottom:433.260000px;}
.y2ad0_c00001{bottom:433.290600px;}
.y190_c00001{bottom:433.380450px;}
.y245b_c00001{bottom:433.560450px;}
.y1ca9_c00001{bottom:433.617480px;}
.y1010_c00001{bottom:433.650450px;}
.ybf8_c00001{bottom:433.740450px;}
.y1845_c00001{bottom:433.920450px;}
.y1ba9_c00001{bottom:433.980000px;}
.y2258_c00001{bottom:434.010450px;}
.y1b62_c00001{bottom:434.160000px;}
.ycc2_c00001{bottom:434.190450px;}
.y2305_c00001{bottom:434.280450px;}
.y73b_c00001{bottom:434.460600px;}
.y3102_c00001{bottom:434.520000px;}
.y27a_c00001{bottom:434.640450px;}
.yffa_c00001{bottom:434.730450px;}
.y38f_c00001{bottom:434.820450px;}
.y1220_c00001{bottom:434.909610px;}
.y1469_c00001{bottom:434.910450px;}
.y5ae_c00001{bottom:434.910600px;}
.y1550_c00001{bottom:435.000450px;}
.yb0b_c00001{bottom:435.000600px;}
.y31fa_c00001{bottom:435.060000px;}
.yfc0_c00001{bottom:435.180099px;}
.y16b_c00001{bottom:435.180600px;}
.y3255_c00001{bottom:435.240000px;}
.y1701_c00001{bottom:435.270450px;}
.y25fb_c00001{bottom:435.270600px;}
.y19e3_c00001{bottom:435.420000px;}
.y1968_c00001{bottom:435.630387px;}
.y4c_c00001{bottom:435.720450px;}
.y2d81_c00001{bottom:435.780000px;}
.y3414_c00001{bottom:435.809640px;}
.y208e_c00001{bottom:435.810450px;}
.y2162_c00001{bottom:435.899718px;}
.y2367_c00001{bottom:435.900450px;}
.y1ce8_c00001{bottom:435.960000px;}
.y1854_c00001{bottom:435.990450px;}
.y2a91_c00001{bottom:436.080450px;}
.y302b_c00001{bottom:436.140000px;}
.y422_c00001{bottom:436.260450px;}
.y95_c00001{bottom:436.440450px;}
.y88a_c00001{bottom:436.440600px;}
.y2fff_c00001{bottom:436.500000px;}
.y800_c00001{bottom:436.620450px;}
.y380d_c00001{bottom:436.620600px;}
.y31ea_c00001{bottom:436.680000px;}
.y8a4_c00001{bottom:436.710450px;}
.y514_c00001{bottom:436.710600px;}
.y1387_c00001{bottom:436.710729px;}
.y2b52_c00001{bottom:436.713366px;}
.y3516_c00001{bottom:436.799226px;}
.y347e_c00001{bottom:436.800450px;}
.y1f02_c00001{bottom:436.860000px;}
.y1693_c00001{bottom:436.890450px;}
.yb46_c00001{bottom:436.890600px;}
.yfb1_c00001{bottom:436.980450px;}
.y280b_c00001{bottom:437.070009px;}
.y34a9_c00001{bottom:437.070450px;}
.y3c5_c00001{bottom:437.070657px;}
.y1f49_c00001{bottom:437.077785px;}
.y2c84_c00001{bottom:437.160009px;}
.y5fa_c00001{bottom:437.160600px;}
.y36a4_c00001{bottom:437.163339px;}
.y700_c00001{bottom:437.340600px;}
.y2590_c00001{bottom:437.429100px;}
.y460_c00001{bottom:437.610450px;}
.y71b_c00001{bottom:437.610600px;}
.yef_c00001{bottom:437.700450px;}
.y1b13_c00001{bottom:437.760000px;}
.y775_c00001{bottom:437.790600px;}
.y39bf_c00001{bottom:437.879961px;}
.y29d8_c00001{bottom:437.880450px;}
.y963_c00001{bottom:437.970450px;}
.y119b_c00001{bottom:438.060450px;}
.y22b3_c00001{bottom:438.150450px;}
.y28e1_c00001{bottom:438.240450px;}
.y399b_c00001{bottom:438.240972px;}
.y1b61_c00001{bottom:438.300000px;}
.y29fa_c00001{bottom:438.420672px;}
.y1294_c00001{bottom:438.424401px;}
.y3894_c00001{bottom:438.502143px;}
.y2495_c00001{bottom:438.510450px;}
.yc6b_c00001{bottom:438.511926px;}
.ydb9_c00001{bottom:438.600450px;}
.y31bf_c00001{bottom:438.660000px;}
.y8f3_c00001{bottom:438.690450px;}
.y22ed_c00001{bottom:438.690522px;}
.y136d_c00001{bottom:438.780450px;}
.y2ec2_c00001{bottom:438.840000px;}
.y16bd_c00001{bottom:438.870450px;}
.y1e39_c00001{bottom:439.020000px;}
.y99c_c00001{bottom:439.050549px;}
.y2b7_c00001{bottom:439.050600px;}
.y1c36_c00001{bottom:439.380000px;}
.y70_c00001{bottom:439.410600px;}
.yf9f_c00001{bottom:439.500450px;}
.ye55_c00001{bottom:439.590450px;}
.y32a_c00001{bottom:439.590600px;}
.y12a3_c00001{bottom:439.678200px;}
.yc1b_c00001{bottom:439.680600px;}
.y3275_c00001{bottom:439.740000px;}
.y24ec_c00001{bottom:439.764492px;}
.y2058_c00001{bottom:439.770600px;}
.ya24_c00001{bottom:439.860450px;}
.y12fd_c00001{bottom:439.860600px;}
.y1dbf_c00001{bottom:439.920000px;}
.y261e_c00001{bottom:440.040600px;}
.y1c63_c00001{bottom:440.100000px;}
.y1539_c00001{bottom:440.130450px;}
.y2bbc_c00001{bottom:440.220450px;}
.yc93_c00001{bottom:440.221197px;}
.y3a29_c00001{bottom:440.226390px;}
.y659_c00001{bottom:440.310450px;}
.y223a_c00001{bottom:440.397876px;}
.y175d_c00001{bottom:440.400450px;}
.y2aff_c00001{bottom:440.400672px;}
.y1e03_c00001{bottom:440.460000px;}
.y2148_c00001{bottom:440.490450px;}
.y234a_c00001{bottom:440.580450px;}
.y1053_c00001{bottom:440.670450px;}
.y8ce_c00001{bottom:440.671647px;}
.y250_c00001{bottom:440.760450px;}
.yd20_c00001{bottom:440.940600px;}
.y3079_c00001{bottom:441.000000px;}
.y362d_c00001{bottom:441.029961px;}
.y2dd9_c00001{bottom:441.183060px;}
.ya76_c00001{bottom:441.300450px;}
.y1bf1_c00001{bottom:441.360000px;}
.y15d3_c00001{bottom:441.390213px;}
.y1f20_c00001{bottom:441.390450px;}
.y2a75_c00001{bottom:441.480450px;}
.yd8d_c00001{bottom:441.570450px;}
.y3ed_c00001{bottom:441.660450px;}
.yf5b_c00001{bottom:441.750450px;}
.y437_c00001{bottom:441.840600px;}
.y213e_c00001{bottom:441.930600px;}
.y352f_c00001{bottom:442.013943px;}
.y67b_c00001{bottom:442.020600px;}
.y2d1e_c00001{bottom:442.110450px;}
.ye75_c00001{bottom:442.110600px;}
.y2c9f_c00001{bottom:442.200081px;}
.y1319_c00001{bottom:442.203906px;}
.y3168_c00001{bottom:442.260000px;}
.y3203_c00001{bottom:442.266300px;}
.y343f_c00001{bottom:442.290600px;}
.y18c3_c00001{bottom:442.470450px;}
.y251d_c00001{bottom:442.554564px;}
.ycf3_c00001{bottom:442.559610px;}
.y18e2_c00001{bottom:442.560450px;}
.y99b_c00001{bottom:442.560495px;}
.y31c0_c00001{bottom:442.620000px;}
.y2e3a_c00001{bottom:442.623060px;}
.y2e68_c00001{bottom:442.630080px;}
.y1625_c00001{bottom:442.740600px;}
.y3361_c00001{bottom:442.800000px;}
.y1fc8_c00001{bottom:442.830450px;}
.y9c2_c00001{bottom:442.920450px;}
.y1d38_c00001{bottom:442.980000px;}
.y6c3_c00001{bottom:443.010450px;}
.y1328_c00001{bottom:443.021538px;}
.y613_c00001{bottom:443.100450px;}
.y238a_c00001{bottom:443.190450px;}
.y2c2d_c00001{bottom:443.190600px;}
.ya11_c00001{bottom:443.280450px;}
.y2e99_c00001{bottom:443.340000px;}
.y1206_c00001{bottom:443.370600px;}
.y9dd_c00001{bottom:443.460600px;}
.y39d3_c00001{bottom:443.460873px;}
.y267b_c00001{bottom:443.550450px;}
.y115_c00001{bottom:443.640450px;}
.y21f1_c00001{bottom:443.820009px;}
.y8ba_c00001{bottom:443.820450px;}
.y302c_c00001{bottom:443.880000px;}
.y26e6_c00001{bottom:443.908803px;}
.yb75_c00001{bottom:443.909334px;}
.yb14_c00001{bottom:443.910450px;}
.y6e3_c00001{bottom:444.000450px;}
.y1f62_c00001{bottom:444.090450px;}
.y3056_c00001{bottom:444.240000px;}
.y2749_c00001{bottom:444.360600px;}
.y1ea1_c00001{bottom:444.420000px;}
.y3950_c00001{bottom:444.450000px;}
.y2a35_c00001{bottom:444.450600px;}
.y10bc_c00001{bottom:444.540600px;}
.y30db_c00001{bottom:444.600000px;}
.y10df_c00001{bottom:444.720366px;}
.y817_c00001{bottom:444.810450px;}
.y32e3_c00001{bottom:444.960000px;}
.y2430_c00001{bottom:444.990450px;}
.y1ed_c00001{bottom:444.990798px;}
.y2d34_c00001{bottom:444.992418px;}
.y28_c00001{bottom:445.080450px;}
.y16e0_c00001{bottom:445.170450px;}
.y97c_c00001{bottom:445.260099px;}
.y10f5_c00001{bottom:445.262700px;}
.y1610_c00001{bottom:445.350450px;}
.y1ecd_c00001{bottom:445.500000px;}
.y203e_c00001{bottom:445.617750px;}
.yb8a_c00001{bottom:445.620225px;}
.y1f7c_c00001{bottom:445.621548px;}
.y3745_c00001{bottom:445.713681px;}
.y34e7_c00001{bottom:445.800450px;}
.y3549_c00001{bottom:445.801545px;}
.y1a2a_c00001{bottom:445.860000px;}
.y27da_c00001{bottom:445.888830px;}
.y13cd_c00001{bottom:445.890450px;}
.y99a_c00001{bottom:445.980450px;}
.y3309_c00001{bottom:446.040000px;}
.y1a76_c00001{bottom:446.043060px;}
.y37d1_c00001{bottom:446.070450px;}
.y1fe4_c00001{bottom:446.160450px;}
.y2f48_c00001{bottom:446.220000px;}
.y63a_c00001{bottom:446.250450px;}
.y1417_c00001{bottom:446.340450px;}
.y22a_c00001{bottom:446.610450px;}
.y375f_c00001{bottom:446.610600px;}
.y1099_c00001{bottom:446.700600px;}
.y2823_c00001{bottom:446.701917px;}
.y2b51_c00001{bottom:446.702997px;}
.yc30_c00001{bottom:446.790450px;}
.y94d_c00001{bottom:446.790600px;}
.y3910_c00001{bottom:446.970450px;}
.y33d8_c00001{bottom:446.971575px;}
.y307a_c00001{bottom:447.120000px;}
.y22d6_c00001{bottom:447.238758px;}
.y2899_c00001{bottom:447.240450px;}
.y2aaf_c00001{bottom:447.330009px;}
.y3932_c00001{bottom:447.330450px;}
.yf3f_c00001{bottom:447.330879px;}
.yec3_c00001{bottom:447.600450px;}
.y37a5_c00001{bottom:447.603285px;}
.y17e1_c00001{bottom:447.690450px;}
.y232c_c00001{bottom:447.778020px;}
.y10ff_c00001{bottom:447.781206px;}
.y2eb_c00001{bottom:447.960000px;}
.y2e9a_c00001{bottom:448.020000px;}
.y159c_c00001{bottom:448.051275px;}
.y108a_c00001{bottom:448.140450px;}
.y1be_c00001{bottom:448.140600px;}
.y2460_c00001{bottom:448.230450px;}
.y39fb_c00001{bottom:448.230549px;}
.y2768_c00001{bottom:448.233681px;}
.y53d_c00001{bottom:448.320450px;}
.y1bab_c00001{bottom:448.380000px;}
.y7b1_c00001{bottom:448.500450px;}
.y1d6b_c00001{bottom:448.560000px;}
.y121f_c00001{bottom:448.679898px;}
.y23d3_c00001{bottom:448.680600px;}
.y151e_c00001{bottom:448.681125px;}
.y2dae_c00001{bottom:448.740000px;}
.y55c_c00001{bottom:448.770600px;}
.y3a44_c00001{bottom:448.860972px;}
.yfbf_c00001{bottom:448.950387px;}
.y227d_c00001{bottom:449.039937px;}
.y20eb_c00001{bottom:449.040159px;}
.yd6e_c00001{bottom:449.040720px;}
.yec6_c00001{bottom:449.130450px;}
.yf31_c00001{bottom:449.220450px;}
.y2cb9_c00001{bottom:449.310450px;}
.y30dc_c00001{bottom:449.460000px;}
.y1967_c00001{bottom:449.490450px;}
.y3380_c00001{bottom:449.493078px;}
.y26fd_c00001{bottom:449.580450px;}
.y2f13_c00001{bottom:449.640000px;}
.y1717_c00001{bottom:449.670450px;}
.y1723_c00001{bottom:449.760450px;}
.y1830_c00001{bottom:449.760600px;}
.y3000_c00001{bottom:449.820000px;}
.y287b_c00001{bottom:449.849271px;}
.y1456_c00001{bottom:449.850450px;}
.y2540_c00001{bottom:449.937750px;}
.y34bd_c00001{bottom:449.940600px;}
.y3254_c00001{bottom:450.028800px;}
.y2112_c00001{bottom:450.119937px;}
.y2b83_c00001{bottom:450.120600px;}
.y1abf_c00001{bottom:450.180000px;}
.y7d9_c00001{bottom:450.210450px;}
.y378a_c00001{bottom:450.300450px;}
.yec7_c00001{bottom:450.390450px;}
.y23ac_c00001{bottom:450.480450px;}
.y1941_c00001{bottom:450.540000px;}
.y21d0_c00001{bottom:450.565788px;}
.y20c3_c00001{bottom:450.570600px;}
.y582_c00001{bottom:450.750450px;}
.y13ac_c00001{bottom:450.753690px;}
.y35ee_c00001{bottom:450.837750px;}
.y2ecc_c00001{bottom:450.900000px;}
.y3778_c00001{bottom:450.930600px;}
.y263f_c00001{bottom:451.018614px;}
.y13e_c00001{bottom:451.020600px;}
.y2f42_c00001{bottom:451.080000px;}
.y2ae5_c00001{bottom:451.110600px;}
.y3599_c00001{bottom:451.197462px;}
.y846_c00001{bottom:451.380450px;}
.y31ec_c00001{bottom:451.440000px;}
.y2565_c00001{bottom:451.560450px;}
.yfb0_c00001{bottom:451.561485px;}
.y33de_c00001{bottom:451.650702px;}
.y39be_c00001{bottom:451.740024px;}
.y18a2_c00001{bottom:451.740450px;}
.y173f_c00001{bottom:451.830450px;}
.yddf_c00001{bottom:451.834680px;}
.y125d_c00001{bottom:451.920045px;}
.y5d9_c00001{bottom:451.920450px;}
.y36e5_c00001{bottom:452.094780px;}
.y13b3_c00001{bottom:452.100600px;}
.y3192_c00001{bottom:452.160000px;}
.y2c06_c00001{bottom:452.190600px;}
.y9ff_c00001{bottom:452.280600px;}
.y3893_c00001{bottom:452.362206px;}
.y1d6c_c00001{bottom:452.520000px;}
.y279_c00001{bottom:452.550450px;}
.y186d_c00001{bottom:452.640450px;}
.y19e2_c00001{bottom:452.700000px;}
.y999_c00001{bottom:452.820450px;}
.y3141_c00001{bottom:452.880000px;}
.y188f_c00001{bottom:453.000450px;}
.y36a3_c00001{bottom:453.003240px;}
.y4b8_c00001{bottom:453.090600px;}
.y2075_c00001{bottom:453.178362px;}
.y27a9_c00001{bottom:453.180600px;}
.y1267_c00001{bottom:453.181500px;}
.y2e08_c00001{bottom:453.240000px;}
.y2907_c00001{bottom:453.270450px;}
.y4de_c00001{bottom:453.270600px;}
.y8f2_c00001{bottom:453.270720px;}
.y20e_c00001{bottom:453.360600px;}
.y2f82_c00001{bottom:453.420000px;}
.ycc1_c00001{bottom:453.540600px;}
.yea6_c00001{bottom:453.630450px;}
.y2860_c00001{bottom:453.720450px;}
.y106f_c00001{bottom:453.810450px;}
.y2015_c00001{bottom:453.810672px;}
.y1777_c00001{bottom:453.900450px;}
.yc0_c00001{bottom:453.900540px;}
.y1a2b_c00001{bottom:453.960000px;}
.y29b3_c00001{bottom:453.990450px;}
.y352_c00001{bottom:454.080450px;}
.y752_c00001{bottom:454.080600px;}
.y399a_c00001{bottom:454.080873px;}
.y1f01_c00001{bottom:454.140000px;}
.y73a_c00001{bottom:454.170450px;}
.yaee_c00001{bottom:454.260450px;}
.y3c4_c00001{bottom:454.260468px;}
.y1b5d_c00001{bottom:454.320000px;}
.y38e_c00001{bottom:454.530600px;}
.y25d9_c00001{bottom:454.618245px;}
.y35af_c00001{bottom:454.620450px;}
.y26c6_c00001{bottom:454.620600px;}
.y1d6d_c00001{bottom:454.680000px;}
.y18f_c00001{bottom:454.800450px;}
.y3122_c00001{bottom:454.860000px;}
.y24b8_c00001{bottom:454.888902px;}
.y362c_c00001{bottom:454.890024px;}
.y38d0_c00001{bottom:454.980450px;}
.y2dd8_c00001{bottom:455.040000px;}
.y297c_c00001{bottom:455.068272px;}
.y2965_c00001{bottom:455.069199px;}
.y774_c00001{bottom:455.070450px;}
.y1e75_c00001{bottom:455.246280px;}
.y258f_c00001{bottom:455.249100px;}
.yaa9_c00001{bottom:455.250450px;}
.y6ff_c00001{bottom:455.340600px;}
.y9b2_c00001{bottom:455.430600px;}
.y1801_c00001{bottom:455.520450px;}
.y32dc_c00001{bottom:455.580000px;}
.y1546_c00001{bottom:455.700450px;}
.ye6a_c00001{bottom:455.700600px;}
.y874_c00001{bottom:456.060450px;}
.y3a28_c00001{bottom:456.066291px;}
.y1ce5_c00001{bottom:456.120000px;}
.y16a_c00001{bottom:456.240450px;}
.y1ba8_c00001{bottom:456.300000px;}
.ycf2_c00001{bottom:456.329898px;}
.ya46_c00001{bottom:456.330450px;}
.y9dc_c00001{bottom:456.420450px;}
.y2d80_c00001{bottom:456.480000px;}
.y2e67_c00001{bottom:456.487020px;}
.y1184_c00001{bottom:456.510450px;}
.y6a6_c00001{bottom:456.510720px;}
.yc6c_c00001{bottom:456.602034px;}
.y2b50_c00001{bottom:456.602988px;}
.y3515_c00001{bottom:456.689928px;}
.y2304_c00001{bottom:456.780600px;}
.y2215_c00001{bottom:456.870600px;}
.y421_c00001{bottom:456.960450px;}
.y1dbe_c00001{bottom:457.020000px;}
.y94_c00001{bottom:457.140450px;}
.y309b_c00001{bottom:457.200000px;}
.ybf7_c00001{bottom:457.320450px;}
.y1386_c00001{bottom:457.410450px;}
.y35d8_c00001{bottom:457.500450px;}
.y1b0f_c00001{bottom:457.560000px;}
.y1339_c00001{bottom:457.590600px;}
.y3413_c00001{bottom:457.680153px;}
.y1844_c00001{bottom:457.680450px;}
.y2161_c00001{bottom:457.770231px;}
.y2bbb_c00001{bottom:457.770522px;}
.y178f_c00001{bottom:457.950450px;}
.y1338_c00001{bottom:457.950600px;}
.y38ba_c00001{bottom:458.040600px;}
.y2349_c00001{bottom:458.129712px;}
.y513_c00001{bottom:458.130450px;}
.y1606_c00001{bottom:458.220450px;}
.y45f_c00001{bottom:458.310450px;}
.yc94_c00001{bottom:458.311458px;}
.y935_c00001{bottom:458.400450px;}
.y2477_c00001{bottom:458.490450px;}
.y14d6_c00001{bottom:458.490600px;}
.yc1a_c00001{bottom:458.580450px;}
.y2a90_c00001{bottom:458.670450px;}
.y2ce7_c00001{bottom:458.760450px;}
.y280a_c00001{bottom:458.849937px;}
.y16aa_c00001{bottom:458.850729px;}
.y1b5f_c00001{bottom:459.000000px;}
.y97b_c00001{bottom:459.030387px;}
.y2c83_c00001{bottom:459.030522px;}
.y1700_c00001{bottom:459.120450px;}
.y2494_c00001{bottom:459.120600px;}
.y3294_c00001{bottom:459.180000px;}
.y329_c00001{bottom:459.300450px;}
.y39d2_c00001{bottom:459.300774px;}
.y2f0b_c00001{bottom:459.360000px;}
.y37f2_c00001{bottom:459.480450px;}
.y1c34_c00001{bottom:459.540000px;}
.y208d_c00001{bottom:459.660450px;}
.y31eb_c00001{bottom:459.720000px;}
.y1853_c00001{bottom:459.750450px;}
.y2b6_c00001{bottom:459.750600px;}
.y1a75_c00001{bottom:459.900000px;}
.ydb8_c00001{bottom:460.110600px;}
.y15d2_c00001{bottom:460.200600px;}
.y3211_c00001{bottom:460.201257px;}
.y100f_c00001{bottom:460.290600px;}
.y1c61_c00001{bottom:460.440000px;}
.y8a3_c00001{bottom:460.470450px;}
.y1295_c00001{bottom:460.474914px;}
.y1e01_c00001{bottom:460.620000px;}
.y34fd_c00001{bottom:460.650450px;}
.y29c4_c00001{bottom:460.737912px;}
.y380c_c00001{bottom:460.740081px;}
.y1ce6_c00001{bottom:460.800000px;}
.y658_c00001{bottom:461.010450px;}
.y371b_c00001{bottom:461.100450px;}
.y1f1f_c00001{bottom:461.101197px;}
.y48e_c00001{bottom:461.190450px;}
.y17bd_c00001{bottom:461.190600px;}
.y1f48_c00001{bottom:461.197479px;}
.y10e0_c00001{bottom:461.280420px;}
.y1ca8_c00001{bottom:461.340000px;}
.y24f_c00001{bottom:461.460450px;}
.y213c_c00001{bottom:461.460600px;}
.y1bee_c00001{bottom:461.520000px;}
.y278c_c00001{bottom:461.550450px;}
.y3744_c00001{bottom:461.553582px;}
.y24eb_c00001{bottom:461.635005px;}
.y29f9_c00001{bottom:461.640450px;}
.ye37_c00001{bottom:461.642520px;}
.y2f47_c00001{bottom:461.700000px;}
.y12a4_c00001{bottom:461.727750px;}
.y67a_c00001{bottom:461.730450px;}
.y3548_c00001{bottom:461.731221px;}
.ybb7_c00001{bottom:461.820450px;}
.y10f6_c00001{bottom:461.823150px;}
.y309c_c00001{bottom:461.880000px;}
.y12af_c00001{bottom:461.910450px;}
.yd4b_c00001{bottom:462.000450px;}
.y1692_c00001{bottom:462.090450px;}
.y1052_c00001{bottom:462.090600px;}
.y2239_c00001{bottom:462.177804px;}
.y2afe_c00001{bottom:462.180600px;}
.y1ec_c00001{bottom:462.180609px;}
.y143c_c00001{bottom:462.450600px;}
.y8cd_c00001{bottom:462.451575px;}
.y121e_c00001{bottom:462.539961px;}
.y2822_c00001{bottom:462.541818px;}
.y3165_c00001{bottom:462.600000px;}
.y3ec_c00001{bottom:462.630450px;}
.ybbe_c00001{bottom:462.633573px;}
.y2748_c00001{bottom:462.720450px;}
.y1d39_c00001{bottom:462.780000px;}
.yfbe_c00001{bottom:462.810450px;}
.y436_c00001{bottom:462.900450px;}
.y1b5e_c00001{bottom:463.140000px;}
.y6c2_c00001{bottom:463.260450px;}
.y1276_c00001{bottom:463.440450px;}
.y3360_c00001{bottom:463.500000px;}
.y2ea_c00001{bottom:463.529550px;}
.y356b_c00001{bottom:463.530600px;}
.y131a_c00001{bottom:463.534482px;}
.y269e_c00001{bottom:463.709550px;}
.y415_c00001{bottom:463.710450px;}
.yb13_c00001{bottom:463.710600px;}
.y2c9e_c00001{bottom:463.980009px;}
.y612_c00001{bottom:463.980450px;}
.y32e2_c00001{bottom:464.040000px;}
.y39fa_c00001{bottom:464.070450px;}
.y2767_c00001{bottom:464.073582px;}
.y175c_c00001{bottom:464.160450px;}
.y639_c00001{bottom:464.250450px;}
.y251c_c00001{bottom:464.334492px;}
.y2057_c00001{bottom:464.340450px;}
.y962_c00001{bottom:464.340600px;}
.y1329_c00001{bottom:464.352114px;}
.y19e6_c00001{bottom:464.400000px;}
.ye08_c00001{bottom:464.429523px;}
.y119a_c00001{bottom:464.520600px;}
.y1ac2_c00001{bottom:464.580000px;}
.y114_c00001{bottom:464.610600px;}
.y1631_c00001{bottom:464.700450px;}
.y1998_c00001{bottom:464.760000px;}
.y2b9a_c00001{bottom:464.790150px;}
.y1f61_c00001{bottom:464.790450px;}
.y3a43_c00001{bottom:464.790648px;}
.y27_c00001{bottom:464.880450px;}
.y2fb5_c00001{bottom:464.940000px;}
.y3401_c00001{bottom:465.060450px;}
.y2d33_c00001{bottom:465.062760px;}
.y1c62_c00001{bottom:465.120000px;}
.y25af_c00001{bottom:465.150450px;}
.y136c_c00001{bottom:465.240450px;}
.y1966_c00001{bottom:465.330450px;}
.y34d2_c00001{bottom:465.417912px;}
.y39bd_c00001{bottom:465.510312px;}
.y2d0f_c00001{bottom:465.511008px;}
.y272a_c00001{bottom:465.689937px;}
.y21f0_c00001{bottom:465.690522px;}
.y3496_c00001{bottom:465.690600px;}
.y1f7b_c00001{bottom:465.691890px;}
.y2a52_c00001{bottom:465.779496px;}
.yff9_c00001{bottom:465.780450px;}
.y345e_c00001{bottom:465.780600px;}
.y1468_c00001{bottom:465.960450px;}
.y33d7_c00001{bottom:465.961485px;}
.y1dbc_c00001{bottom:466.020000px;}
.y154f_c00001{bottom:466.050450px;}
.y3892_c00001{bottom:466.132494px;}
.y18c2_c00001{bottom:466.140450px;}
.y18e1_c00001{bottom:466.320450px;}
.y3202_c00001{bottom:466.380000px;}
.y26e2_c00001{bottom:466.409496px;}
.y3837_c00001{bottom:466.410450px;}
.y23d2_c00001{bottom:466.500600px;}
.y2b4f_c00001{bottom:466.502979px;}
.y2fdb_c00001{bottom:466.560000px;}
.y55b_c00001{bottom:466.680600px;}
.y2dd3_c00001{bottom:466.740000px;}
.y4b_c00001{bottom:466.770450px;}
.y6f_c00001{bottom:466.770600px;}
.y2cb8_c00001{bottom:466.859640px;}
.y159b_c00001{bottom:466.950600px;}
.y2389_c00001{bottom:467.040450px;}
.y360a_c00001{bottom:467.040600px;}
.y330d_c00001{bottom:467.100000px;}
.y3059_c00001{bottom:467.280000px;}
.y2996_c00001{bottom:467.310159px;}
.y856_c00001{bottom:467.310450px;}
.y816_c00001{bottom:467.490450px;}
.y889_c00001{bottom:467.490600px;}
.y7ff_c00001{bottom:467.580450px;}
.y27d9_c00001{bottom:467.668758px;}
.yec2_c00001{bottom:467.760450px;}
.y3123_c00001{bottom:467.820000px;}
.y253f_c00001{bottom:467.848200px;}
.yb76_c00001{bottom:467.849118px;}
.y28ef_c00001{bottom:467.940600px;}
.y1e38_c00001{bottom:468.000000px;}
.yb45_c00001{bottom:468.030450px;}
.y5f9_c00001{bottom:468.030600px;}
.yd6d_c00001{bottom:468.030630px;}
.y33b6_c00001{bottom:468.120600px;}
.y1dbb_c00001{bottom:468.180000px;}
.y384e_c00001{bottom:468.300450px;}
.y185e_c00001{bottom:468.480450px;}
.y31bd_c00001{bottom:468.540000px;}
.y347d_c00001{bottom:468.570450px;}
.y362b_c00001{bottom:468.660312px;}
.ya5e_c00001{bottom:468.660450px;}
.yf0a_c00001{bottom:468.660600px;}
.yee_c00001{bottom:468.750450px;}
.y3983_c00001{bottom:468.840450px;}
.y1bd_c00001{bottom:468.840600px;}
.y36a2_c00001{bottom:468.843141px;}
.y3253_c00001{bottom:468.923760px;}
.y3961_c00001{bottom:468.930600px;}
.y22d5_c00001{bottom:469.018686px;}
.y34e6_c00001{bottom:469.020600px;}
.y1e74_c00001{bottom:469.103220px;}
.y2aae_c00001{bottom:469.109937px;}
.y16df_c00001{bottom:469.110450px;}
.y2c2f_c00001{bottom:469.110600px;}
.y2297_c00001{bottom:469.200600px;}
.y53c_c00001{bottom:469.290600px;}
.y1c35_c00001{bottom:469.440000px;}
.y232b_c00001{bottom:469.557948px;}
.yb8b_c00001{bottom:469.560225px;}
.y30d9_c00001{bottom:469.620000px;}
.y2c07_c00001{bottom:469.650450px;}
.y34bc_c00001{bottom:469.740450px;}
.y1bef_c00001{bottom:469.800000px;}
.y739_c00001{bottom:469.830450px;}
.y16bc_c00001{bottom:469.920450px;}
.y1999_c00001{bottom:469.980000px;}
.y3789_c00001{bottom:470.010450px;}
.y3999_c00001{bottom:470.010549px;}
.y2ffd_c00001{bottom:470.160000px;}
.ycf1_c00001{bottom:470.189961px;}
.y1ff9_c00001{bottom:470.280600px;}
.y2e66_c00001{bottom:470.343960px;}
.y7b0_c00001{bottom:470.550450px;}
.yfaf_c00001{bottom:470.551395px;}
.ye54_c00001{bottom:470.640450px;}
.y28b4_c00001{bottom:470.730450px;}
.ydde_c00001{bottom:470.734005px;}
.y1fe3_c00001{bottom:470.820600px;}
.y845_c00001{bottom:470.910450px;}
.y12fc_c00001{bottom:470.910600px;}
.y20ea_c00001{bottom:470.910672px;}
.y106e_c00001{bottom:471.000600px;}
.y1e8a_c00001{bottom:471.060000px;}
.y2c05_c00001{bottom:471.090600px;}
.y1538_c00001{bottom:471.180450px;}
.y1940_c00001{bottom:471.240000px;}
.y1455_c00001{bottom:471.360600px;}
.y1a73_c00001{bottom:471.420000px;}
.y581_c00001{bottom:471.450450px;}
.y17e0_c00001{bottom:471.540450px;}
.y3c3_c00001{bottom:471.540459px;}
.y1b12_c00001{bottom:471.600000px;}
.y287a_c00001{bottom:471.629199px;}
.y2660_c00001{bottom:471.630450px;}
.y2f41_c00001{bottom:471.780000px;}
.y998_c00001{bottom:471.810450px;}
.y3a27_c00001{bottom:471.906192px;}
.y2116_c00001{bottom:471.990450px;}
.y8f1_c00001{bottom:472.260630px;}
.y227c_c00001{bottom:472.350450px;}
.y21cf_c00001{bottom:472.436301px;}
.ycc0_c00001{bottom:472.440600px;}
.y5d8_c00001{bottom:472.620450px;}
.y13d_c00001{bottom:472.620600px;}
.y156e_c00001{bottom:472.710450px;}
.yf5a_c00001{bottom:472.800450px;}
.y2e98_c00001{bottom:472.860000px;}
.y263e_c00001{bottom:472.889127px;}
.ybf_c00001{bottom:472.890450px;}
.y6fe_c00001{bottom:472.980450px;}
.y9fe_c00001{bottom:472.980600px;}
.y258e_c00001{bottom:473.159550px;}
.y2941_c00001{bottom:473.160450px;}
.yafa_c00001{bottom:473.250600px;}
.y186c_c00001{bottom:473.340450px;}
.y26fc_c00001{bottom:473.340600px;}
.y2e06_c00001{bottom:473.400000px;}
.y2111_c00001{bottom:473.430600px;}
.y278_c00001{bottom:473.520600px;}
.y33dd_c00001{bottom:473.521215px;}
.y2f7a_c00001{bottom:473.580000px;}
.y1716_c00001{bottom:473.610450px;}
.y5ad_c00001{bottom:473.610600px;}
.y188e_c00001{bottom:473.700450px;}
.y2ae4_c00001{bottom:473.700600px;}
.y1fc7_c00001{bottom:473.880450px;}
.y1e02_c00001{bottom:473.940000px;}
.y2906_c00001{bottom:473.970450px;}
.y1a28_c00001{bottom:474.120000px;}
.y38d_c00001{bottom:474.240450px;}
.y30da_c00001{bottom:474.300000px;}
.ya10_c00001{bottom:474.330450px;}
.y20c2_c00001{bottom:474.420600px;}
.y4dd_c00001{bottom:474.690600px;}
.yc6d_c00001{bottom:474.692142px;}
.y351_c00001{bottom:474.780450px;}
.y773_c00001{bottom:474.780600px;}
.y2214_c00001{bottom:474.960600px;}
.y2f12_c00001{bottom:475.020000px;}
.y6e2_c00001{bottom:475.050450px;}
.y39d1_c00001{bottom:475.230450px;}
.y18a1_c00001{bottom:475.500450px;}
.y13b4_c00001{bottom:475.500600px;}
.y10bb_c00001{bottom:475.590600px;}
.y173e_c00001{bottom:475.680450px;}
.y2564_c00001{bottom:475.680600px;}
.y27a8_c00001{bottom:475.770600px;}
.y371a_c00001{bottom:475.860000px;}
.y38ee_c00001{bottom:475.860600px;}
.y35d6_c00001{bottom:475.950600px;}
.y18e_c00001{bottom:476.130450px;}
.y2ce6_c00001{bottom:476.217507px;}
.y2184_c00001{bottom:476.220450px;}
.y305b_c00001{bottom:476.280000px;}
.y121d_c00001{bottom:476.310249px;}
.y17d1_c00001{bottom:476.310450px;}
.y169_c00001{bottom:476.400450px;}
.yc95_c00001{bottom:476.401719px;}
.y2b4e_c00001{bottom:476.402970px;}
.y2f7f_c00001{bottom:476.460000px;}
.y25d8_c00001{bottom:476.488758px;}
.y3514_c00001{bottom:476.490450px;}
.y291f_c00001{bottom:476.580450px;}
.y24b7_c00001{bottom:476.668830px;}
.y38fe_c00001{bottom:476.760450px;}
.y352e_c00001{bottom:476.844465px;}
.y297b_c00001{bottom:476.848200px;}
.y2964_c00001{bottom:476.849127px;}
.y4b7_c00001{bottom:476.850450px;}
.y245a_c00001{bottom:477.120600px;}
.y2d7f_c00001{bottom:477.180000px;}
.y45e_c00001{bottom:477.210600px;}
.y1416_c00001{bottom:477.390450px;}
.y873_c00001{bottom:477.480450px;}
.y3743_c00001{bottom:477.483258px;}
.y302a_c00001{bottom:477.540000px;}
.y2303_c00001{bottom:477.570450px;}
.y3547_c00001{bottom:477.571122px;}
.y229_c00001{bottom:477.660450px;}
.y10e1_c00001{bottom:477.750294px;}
.y12f1_c00001{bottom:477.750450px;}
.y93_c00001{bottom:477.840450px;}
.y94c_c00001{bottom:477.840600px;}
.y29b2_c00001{bottom:477.930600px;}
.ybf6_c00001{bottom:478.020600px;}
.y2e07_c00001{bottom:478.080000px;}
.ye74_c00001{bottom:478.110600px;}
.ye07_c00001{bottom:478.199811px;}
.y2476_c00001{bottom:478.200600px;}
.y10f7_c00001{bottom:478.383600px;}
.y2821_c00001{bottom:478.471494px;}
.y37a4_c00001{bottom:478.472718px;}
.y3140_c00001{bottom:478.620000px;}
.y1dba_c00001{bottom:478.800000px;}
.y512_c00001{bottom:478.830450px;}
.y213b_c00001{bottom:478.920087px;}
.y3078_c00001{bottom:478.980000px;}
.y2e9_c00001{bottom:479.010000px;}
.y328_c00001{bottom:479.010450px;}
.y1ac4_c00001{bottom:479.160000px;}
.y1089_c00001{bottom:479.190450px;}
.y961_c00001{bottom:479.191305px;}
.y39bc_c00001{bottom:479.280600px;}
.y1b5c_c00001{bottom:479.340000px;}
.y1800_c00001{bottom:479.370450px;}
.y39f9_c00001{bottom:479.370600px;}
.y3412_c00001{bottom:479.460081px;}
.y1eb_c00001{bottom:479.460600px;}
.y2160_c00001{bottom:479.550159px;}
.yc19_c00001{bottom:479.550450px;}
.y2493_c00001{bottom:479.640450px;}
.y3891_c00001{bottom:479.902782px;}
.y2348_c00001{bottom:479.909640px;}
.y2766_c00001{bottom:479.913483px;}
.yd1f_c00001{bottom:480.000600px;}
.y1ecc_c00001{bottom:480.060000px;}
.y15d1_c00001{bottom:480.091215px;}
.y1827_c00001{bottom:480.180450px;}
.y26b2_c00001{bottom:480.180600px;}
.y2ec1_c00001{bottom:480.240000px;}
.y1d67_c00001{bottom:480.420000px;}
.y2b5_c00001{bottom:480.450600px;}
.y3a42_c00001{bottom:480.630549px;}
.ye36_c00001{bottom:480.632430px;}
.y242f_c00001{bottom:480.720450px;}
.y2366_c00001{bottom:480.810450px;}
.y4b6_c00001{bottom:480.900450px;}
.y3166_c00001{bottom:480.960000px;}
.y2bba_c00001{bottom:480.990450px;}
.y9db_c00001{bottom:481.080450px;}
.y1ce2_c00001{bottom:481.140000px;}
.y20ab_c00001{bottom:481.170450px;}
.y7d8_c00001{bottom:481.260450px;}
.y1a74_c00001{bottom:481.320000px;}
.y679_c00001{bottom:481.440600px;}
.y1843_c00001{bottom:481.530450px;}
.yec1_c00001{bottom:481.530600px;}
.y45d_c00001{bottom:481.620600px;}
.y32ba_c00001{bottom:481.680000px;}
.y657_c00001{bottom:481.710450px;}
.y2be9_c00001{bottom:481.710600px;}
.y1205_c00001{bottom:481.800450px;}
.y3273_c00001{bottom:481.860000px;}
.y78b_c00001{bottom:481.890450px;}
.y1199_c00001{bottom:481.979640px;}
.y3777_c00001{bottom:481.980450px;}
.y309a_c00001{bottom:482.040000px;}
.y48d_c00001{bottom:482.070450px;}
.y24e_c00001{bottom:482.160450px;}
.y638_c00001{bottom:482.250600px;}
.y3659_c00001{bottom:482.340600px;}
.y203d_c00001{bottom:482.428200px;}
.y2afd_c00001{bottom:482.430600px;}
.y380b_c00001{bottom:482.520009px;}
.y1296_c00001{bottom:482.525427px;}
.y2b99_c00001{bottom:482.610150px;}
.yb12_c00001{bottom:482.610600px;}
.y35d7_c00001{bottom:482.700600px;}
.y3eb_c00001{bottom:482.790450px;}
.y148d_c00001{bottom:482.790600px;}
.y16ff_c00001{bottom:482.880450px;}
.y1e73_c00001{bottom:482.960160px;}
.y36e4_c00001{bottom:482.965410px;}
.y6c1_c00001{bottom:482.970450px;}
.y1385_c00001{bottom:482.970600px;}
.y435_c00001{bottom:483.150450px;}
.y2e39_c00001{bottom:483.300000px;}
.y24ea_c00001{bottom:483.414933px;}
.y208c_c00001{bottom:483.420450px;}
.y2ffe_c00001{bottom:483.480000px;}
.y1051_c00001{bottom:483.600450px;}
.y12a5_c00001{bottom:483.777300px;}
.y13cc_c00001{bottom:483.780600px;}
.yd4a_c00001{bottom:483.869961px;}
.y143b_c00001{bottom:483.870600px;}
.ycf0_c00001{bottom:483.960249px;}
.y2e65_c00001{bottom:484.020000px;}
.y2238_c00001{bottom:484.048317px;}
.y335f_c00001{bottom:484.200000px;}
.y8cc_c00001{bottom:484.322088px;}
.y330c_c00001{bottom:484.380000px;}
.y381e_c00001{bottom:484.410450px;}
.y20d_c00001{bottom:484.410600px;}
.y2a34_c00001{bottom:484.500600px;}
.y19dd_c00001{bottom:484.560000px;}
.yea5_c00001{bottom:484.680450px;}
.y345f_c00001{bottom:484.680600px;}
.y36a1_c00001{bottom:484.683042px;}
.y113_c00001{bottom:484.770600px;}
.y1268_c00001{bottom:484.860600px;}
.y33d6_c00001{bottom:484.860810px;}
.y131b_c00001{bottom:484.865058px;}
.y17bc_c00001{bottom:484.950450px;}
.y6a5_c00001{bottom:484.951116px;}
.y751_c00001{bottom:485.130600px;}
.y37bc_c00001{bottom:485.220450px;}
.y1f1e_c00001{bottom:485.220891px;}
.y2d32_c00001{bottom:485.222040px;}
.y1c60_c00001{bottom:485.280000px;}
.yaed_c00001{bottom:485.310450px;}
.y100e_c00001{bottom:485.400450px;}
.y1f47_c00001{bottom:485.407344px;}
.y1f60_c00001{bottom:485.490450px;}
.y2c56_c00001{bottom:485.580450px;}
.y3190_c00001{bottom:485.640000px;}
.y253e_c00001{bottom:485.668200px;}
.y35ae_c00001{bottom:485.670450px;}
.y132a_c00001{bottom:485.671176px;}
.y22b2_c00001{bottom:485.760450px;}
.y1ce3_c00001{bottom:485.820000px;}
.y3998_c00001{bottom:485.850450px;}
.y2c9d_c00001{bottom:485.850522px;}
.y1f7a_c00001{bottom:485.851170px;}
.ya77_c00001{bottom:485.851800px;}
.y278b_c00001{bottom:485.940600px;}
.y1965_c00001{bottom:486.030600px;}
.ybb8_c00001{bottom:486.030774px;}
.y345d_c00001{bottom:486.120600px;}
.y1dbd_c00001{bottom:486.180000px;}
.y251b_c00001{bottom:486.205005px;}
.yaa8_c00001{bottom:486.300450px;}
.y2b4d_c00001{bottom:486.302961px;}
.y1ca7_c00001{bottom:486.360000px;}
.y25ae_c00001{bottom:486.480450px;}
.y9b1_c00001{bottom:486.480600px;}
.y28cd_c00001{bottom:486.660450px;}
.y2fd9_c00001{bottom:486.720000px;}
.y1545_c00001{bottom:486.750450px;}
.y159a_c00001{bottom:486.750540px;}
.y343e_c00001{bottom:486.750600px;}
.y3400_c00001{bottom:486.840600px;}
.y1337_c00001{bottom:486.930600px;}
.ybbf_c00001{bottom:486.934077px;}
.yd6c_c00001{bottom:487.020540px;}
.y8a2_c00001{bottom:487.020600px;}
.y3274_c00001{bottom:487.080000px;}
.y2a74_c00001{bottom:487.110600px;}
.ya45_c00001{bottom:487.380450px;}
.y151c_c00001{bottom:487.380780px;}
.ydb7_c00001{bottom:487.470450px;}
.y34fc_c00001{bottom:487.560450px;}
.y35ed_c00001{bottom:487.648200px;}
.y2a51_c00001{bottom:487.650009px;}
.y55a_c00001{bottom:487.650450px;}
.y337f_c00001{bottom:487.652421px;}
.y3a26_c00001{bottom:487.835868px;}
.y3252_c00001{bottom:488.000880px;}
.y3598_c00001{bottom:488.007912px;}
.y175b_c00001{bottom:488.010450px;}
.y1e36_c00001{bottom:488.160000px;}
.y303_c00001{bottom:488.190450px;}
.y7af_c00001{bottom:488.190600px;}
.y26e1_c00001{bottom:488.280009px;}
.y30fe_c00001{bottom:488.340000px;}
.y2be8_c00001{bottom:488.370600px;}
.y14f4_c00001{bottom:488.460450px;}
.y1f00_c00001{bottom:488.520000px;}
.y26_c00001{bottom:488.550450px;}
.y2cb7_c00001{bottom:488.639568px;}
.y267a_c00001{bottom:488.730450px;}
.y3c2_c00001{bottom:488.820450px;}
.yf30_c00001{bottom:488.910450px;}
.y2729_c00001{bottom:489.000600px;}
.y2995_c00001{bottom:489.090087px;}
.y185d_c00001{bottom:489.180450px;}
.y28b3_c00001{bottom:489.180600px;}
.y1605_c00001{bottom:489.270450px;}
.y9da_c00001{bottom:489.450600px;}
.y27d8_c00001{bottom:489.539271px;}
.y3982_c00001{bottom:489.540450px;}
.y53b_c00001{bottom:489.540600px;}
.yfae_c00001{bottom:489.541305px;}
.y1c32_c00001{bottom:489.600000px;}
.y3788_c00001{bottom:489.720450px;}
.yddd_c00001{bottom:489.723915px;}
.y3191_c00001{bottom:489.780000px;}
.y1bc_c00001{bottom:489.810450px;}
.y2425_c00001{bottom:489.900450px;}
.y1bec_c00001{bottom:489.960000px;}
.y2074_c00001{bottom:489.988812px;}
.y18c1_c00001{bottom:489.990450px;}
.y121c_c00001{bottom:490.080537px;}
.y18e0_c00001{bottom:490.170450px;}
.y193f_c00001{bottom:490.320000px;}
.y1b11_c00001{bottom:490.500000px;}
.y136b_c00001{bottom:490.530450px;}
.y2a19_c00001{bottom:490.530600px;}
.y2bfe_c00001{bottom:490.620600px;}
.y997_c00001{bottom:490.710600px;}
.y390f_c00001{bottom:490.710774px;}
.y2388_c00001{bottom:490.800450px;}
.y22d4_c00001{bottom:490.889199px;}
.y36c9_c00001{bottom:490.890450px;}
.y258d_c00001{bottom:490.979550px;}
.y6fd_c00001{bottom:490.980450px;}
.y12ae_c00001{bottom:491.160450px;}
.y8f0_c00001{bottom:491.250540px;}
.y2fda_c00001{bottom:491.400000px;}
.y232a_c00001{bottom:491.428461px;}
.ycbf_c00001{bottom:491.430600px;}
.y2dd7_c00001{bottom:491.580000px;}
.y375e_c00001{bottom:491.700600px;}
.yb77_c00001{bottom:491.788902px;}
.ye06_c00001{bottom:492.059874px;}
.y6e_c00001{bottom:492.060450px;}
.y2f7e_c00001{bottom:492.120000px;}
.y580_c00001{bottom:492.150450px;}
.y23ab_c00001{bottom:492.240162px;}
.y4c7_c00001{bottom:492.240450px;}
.y17df_c00001{bottom:492.330450px;}
.ya23_c00001{bottom:492.420450px;}
.y2f40_c00001{bottom:492.480000px;}
.y1645_c00001{bottom:492.510450px;}
.ybe_c00001{bottom:492.600450px;}
.y106d_c00001{bottom:492.690450px;}
.y20e9_c00001{bottom:492.690600px;}
.yc6e_c00001{bottom:492.782250px;}
.y16de_c00001{bottom:492.870450px;}
.y738_c00001{bottom:492.870600px;}
.y1691_c00001{bottom:493.140450px;}
.y2e97_c00001{bottom:493.200000px;}
.y5d7_c00001{bottom:493.320450px;}
.yf3e_c00001{bottom:493.320600px;}
.y3742_c00001{bottom:493.323159px;}
.y1d69_c00001{bottom:493.380000px;}
.y3546_c00001{bottom:493.411023px;}
.y227b_c00001{bottom:493.499640px;}
.y2879_c00001{bottom:493.499712px;}
.yb8c_c00001{bottom:493.500225px;}
.y357e_c00001{bottom:493.500600px;}
.y3121_c00001{bottom:493.560000px;}
.y1882_c00001{bottom:493.590600px;}
.y277_c00001{bottom:493.680600px;}
.y3890_c00001{bottom:493.762845px;}
.y2f0a_c00001{bottom:493.920000px;}
.yabd_c00001{bottom:493.950600px;}
.y186b_c00001{bottom:494.040450px;}
.y38c_c00001{bottom:494.040600px;}
.y1d36_c00001{bottom:494.100000px;}
.y13c_c00001{bottom:494.130450px;}
.y21ce_c00001{bottom:494.216229px;}
.y265f_c00001{bottom:494.220450px;}
.y10e2_c00001{bottom:494.310348px;}
.y1275_c00001{bottom:494.310450px;}
.y2820_c00001{bottom:494.311395px;}
.y2940_c00001{bottom:494.400450px;}
.y30d7_c00001{bottom:494.460000px;}
.y772_c00001{bottom:494.490450px;}
.yc96_c00001{bottom:494.491980px;}
.y2e8_c00001{bottom:494.579550px;}
.y1ea0_c00001{bottom:494.628840px;}
.y263d_c00001{bottom:494.669055px;}
.y2905_c00001{bottom:494.670450px;}
.y1fe2_c00001{bottom:494.670600px;}
.y414_c00001{bottom:494.760450px;}
.y4dc_c00001{bottom:494.850450px;}
.y10f8_c00001{bottom:494.853600px;}
.y39ba_c00001{bottom:494.940600px;}
.y1ba5_c00001{bottom:495.000000px;}
.y611_c00001{bottom:495.030450px;}
.y10ba_c00001{bottom:495.030600px;}
.y23fa_c00001{bottom:495.300450px;}
.y33dc_c00001{bottom:495.301143px;}
.y5f8_c00001{bottom:495.390450px;}
.y350_c00001{bottom:495.480450px;}
.y1a29_c00001{bottom:495.720000px;}
.y1630_c00001{bottom:495.750450px;}
.y2765_c00001{bottom:495.843159px;}
.y1997_c00001{bottom:495.900000px;}
.y2183_c00001{bottom:496.020600px;}
.y31e6_c00001{bottom:496.080000px;}
.ye73_c00001{bottom:496.110600px;}
.y367e_c00001{bottom:496.200600px;}
.y3343_c00001{bottom:496.260000px;}
.y844_c00001{bottom:496.290450px;}
.y357d_c00001{bottom:496.290600px;}
.y2b4c_c00001{bottom:496.292592px;}
.y3a41_c00001{bottom:496.470450px;}
.y1e72_c00001{bottom:496.636200px;}
.y3495_c00001{bottom:496.650450px;}
.y38b8_c00001{bottom:496.740450px;}
.y18d_c00001{bottom:496.830450px;}
.y1454_c00001{bottom:497.010450px;}
.y168_c00001{bottom:497.100450px;}
.y26fb_c00001{bottom:497.190600px;}
.y4b5_c00001{bottom:497.280600px;}
.y1db9_c00001{bottom:497.340000px;}
.y1715_c00001{bottom:497.370450px;}
.y29c3_c00001{bottom:497.548362px;}
.yd49_c00001{bottom:497.640249px;}
.y1ea_c00001{bottom:497.640450px;}
.y38f0_c00001{bottom:497.730450px;}
.ycef_c00001{bottom:497.730537px;}
.y4a_c00001{bottom:497.820450px;}
.y2d7e_c00001{bottom:497.880000px;}
.y2475_c00001{bottom:497.910450px;}
.y1bed_c00001{bottom:498.060000px;}
.y2ce5_c00001{bottom:498.088020px;}
.y285f_c00001{bottom:498.089550px;}
.y38b9_c00001{bottom:498.090600px;}
.y20c1_c00001{bottom:498.180600px;}
.y960_c00001{bottom:498.181215px;}
.y1ca5_c00001{bottom:498.240000px;}
.y25d7_c00001{bottom:498.268686px;}
.y420_c00001{bottom:498.360450px;}
.ye5e_c00001{bottom:498.360600px;}
.y32e0_c00001{bottom:498.420000px;}
.y24b6_c00001{bottom:498.539343px;}
.y92_c00001{bottom:498.540450px;}
.y888_c00001{bottom:498.540600px;}
.y297a_c00001{bottom:498.628128px;}
.y2963_c00001{bottom:498.629055px;}
.y29f7_c00001{bottom:498.630087px;}
.y20ac_c00001{bottom:498.630450px;}
.y327_c00001{bottom:498.720450px;}
.y3513_c00001{bottom:498.900450px;}
.y1b59_c00001{bottom:498.960000px;}
.y872_c00001{bottom:498.990450px;}
.y15d0_c00001{bottom:498.990540px;}
.yb44_c00001{bottom:499.080450px;}
.y30d8_c00001{bottom:499.140000px;}
.y291e_c00001{bottom:499.170450px;}
.y18a0_c00001{bottom:499.260450px;}
.y1ab8_c00001{bottom:499.320000px;}
.y94b_c00001{bottom:499.350450px;}
.yc18_c00001{bottom:499.440450px;}
.y1c33_c00001{bottom:499.500000px;}
.ye35_c00001{bottom:499.531755px;}
.y1e37_c00001{bottom:499.680000px;}
.y2365_c00001{bottom:499.709811px;}
.ya5d_c00001{bottom:499.710450px;}
.yf09_c00001{bottom:499.710600px;}
.yed_c00001{bottom:499.800450px;}
.y2afc_c00001{bottom:499.890009px;}
.y20aa_c00001{bottom:500.070450px;}
.y13cb_c00001{bottom:500.160450px;}
.y31e7_c00001{bottom:500.220000px;}
.y511_c00001{bottom:500.250600px;}
.y934_c00001{bottom:500.340600px;}
.y269d_c00001{bottom:500.520000px;}
.y2b98_c00001{bottom:500.520600px;}
.y33b5_c00001{bottom:500.610600px;}
.y36a0_c00001{bottom:500.612718px;}
.y2acf_c00001{bottom:500.700600px;}
.y213d_c00001{bottom:500.790600px;}
.y2ab9_c00001{bottom:500.879223px;}
.y2843_c00001{bottom:500.880450px;}
.y2ec0_c00001{bottom:500.940000px;}
.y16bb_c00001{bottom:500.970450px;}
.y1b5b_c00001{bottom:501.120000px;}
.y678_c00001{bottom:501.240450px;}
.y3164_c00001{bottom:501.300000px;}
.y215f_c00001{bottom:501.330087px;}
.y45c_c00001{bottom:501.330450px;}
.y3411_c00001{bottom:501.330594px;}
.y1a71_c00001{bottom:501.480000px;}
.yf9e_c00001{bottom:501.510450px;}
.y261d_c00001{bottom:501.600450px;}
.y30ff_c00001{bottom:501.660000px;}
.ye53_c00001{bottom:501.690450px;}
.y2347_c00001{bottom:501.780153px;}
.y2459_c00001{bottom:501.780600px;}
.yd1e_c00001{bottom:501.870162px;}
.y2747_c00001{bottom:501.870600px;}
.y12fb_c00001{bottom:501.960600px;}
.y3054_c00001{bottom:502.020000px;}
.y2a33_c00001{bottom:502.050450px;}
.y34d1_c00001{bottom:502.228362px;}
.y1537_c00001{bottom:502.230450px;}
.y656_c00001{bottom:502.410450px;}
.y39f8_c00001{bottom:502.500600px;}
.y78a_c00001{bottom:502.590450px;}
.y36fe_c00001{bottom:502.590600px;}
.y6c0_c00001{bottom:502.680600px;}
.y2ecb_c00001{bottom:502.740000px;}
.y48c_c00001{bottom:502.770450px;}
.y24d_c00001{bottom:502.860450px;}
.y160f_c00001{bottom:502.860600px;}
.y2e05_c00001{bottom:502.920000px;}
.y2a8e_c00001{bottom:503.040600px;}
.y3329_c00001{bottom:503.100000px;}
.y17ff_c00001{bottom:503.130450px;}
.y34fa_c00001{bottom:503.220450px;}
.y3028_c00001{bottom:503.280000px;}
.y3658_c00001{bottom:503.310648px;}
.y2c73_c00001{bottom:503.397507px;}
.y2e38_c00001{bottom:503.460000px;}
.y253d_c00001{bottom:503.488200px;}
.y3ea_c00001{bottom:503.490450px;}
.y2809_c00001{bottom:503.580450px;}
.y2ffb_c00001{bottom:503.640000px;}
.y9c1_c00001{bottom:503.670450px;}
.y3a25_c00001{bottom:503.675769px;}
.y1198_c00001{bottom:503.759568px;}
.y156d_c00001{bottom:503.760450px;}
.y434_c00001{bottom:503.850450px;}
.y33d5_c00001{bottom:503.850720px;}
.y1826_c00001{bottom:503.940450px;}
.y121b_c00001{bottom:503.940600px;}
.y9fd_c00001{bottom:504.030600px;}
.y2d1d_c00001{bottom:504.210450px;}
.y1098_c00001{bottom:504.300450px;}
.y1ff8_c00001{bottom:504.390450px;}
.y380a_c00001{bottom:504.390522px;}
.y345c_c00001{bottom:504.480450px;}
.y143a_c00001{bottom:504.570450px;}
.y1297_c00001{bottom:504.666120px;}
.y3076_c00001{bottom:504.720000px;}
.y16a9_c00001{bottom:504.840450px;}
.y335e_c00001{bottom:504.900000px;}
.y22ec_c00001{bottom:504.930600px;}
.y1050_c00001{bottom:505.020600px;}
.y24e9_c00001{bottom:505.285446px;}
.y1842_c00001{bottom:505.290450px;}
.yb58_c00001{bottom:505.380450px;}
.y2d31_c00001{bottom:505.381320px;}
.y178e_c00001{bottom:505.560450px;}
.y193e_c00001{bottom:505.620000px;}
.y112_c00001{bottom:505.740450px;}
.y1599_c00001{bottom:505.741125px;}
.y1eff_c00001{bottom:505.800000px;}
.y2237_c00001{bottom:505.828245px;}
.ye05_c00001{bottom:505.830162px;}
.y2a8f_c00001{bottom:505.830450px;}
.y12a6_c00001{bottom:505.917300px;}
.y1cdb_c00001{bottom:505.980000px;}
.yd6b_c00001{bottom:506.010450px;}
.y6e1_c00001{bottom:506.100450px;}
.y2563_c00001{bottom:506.190600px;}
.y2b4b_c00001{bottom:506.192583px;}
.y131c_c00001{bottom:506.195634px;}
.y1db6_c00001{bottom:506.340000px;}
.y151b_c00001{bottom:506.370690px;}
.y3569_c00001{bottom:506.460600px;}
.y390e_c00001{bottom:506.640450px;}
.y3c1_c00001{bottom:506.730450px;}
.y3099_c00001{bottom:506.880000px;}
.y3251_c00001{bottom:506.895840px;}
.y132b_c00001{bottom:507.001752px;}
.y22b1_c00001{bottom:507.090600px;}
.y1963_c00001{bottom:507.180600px;}
.y208b_c00001{bottom:507.270600px;}
.y8cb_c00001{bottom:507.271386px;}
.y1852_c00001{bottom:507.360450px;}
.y1e00_c00001{bottom:507.420000px;}
.y1658_c00001{bottom:507.450450px;}
.y388f_c00001{bottom:507.533133px;}
.y2c9c_c00001{bottom:507.630450px;}
.y37bb_c00001{bottom:507.720450px;}
.y559_c00001{bottom:507.810450px;}
.y25_c00001{bottom:507.900450px;}
.y251a_c00001{bottom:507.984933px;}
.y2bfd_c00001{bottom:508.080009px;}
.y148c_c00001{bottom:508.080450px;}
.y13ca_c00001{bottom:508.170450px;}
.y2d0e_c00001{bottom:508.260450px;}
.y1415_c00001{bottom:508.440450px;}
.y2a73_c00001{bottom:508.440600px;}
.y737_c00001{bottom:508.530600px;}
.yfad_c00001{bottom:508.531215px;}
.y1db5_c00001{bottom:508.680000px;}
.y228_c00001{bottom:508.710450px;}
.y33ff_c00001{bottom:508.710600px;}
.yddc_c00001{bottom:508.713825px;}
.y258c_c00001{bottom:508.799550px;}
.y12f0_c00001{bottom:508.800450px;}
.yc2f_c00001{bottom:508.890450px;}
.y3388_c00001{bottom:508.981350px;}
.yec0_c00001{bottom:509.160450px;}
.y3741_c00001{bottom:509.163060px;}
.y3545_c00001{bottom:509.340699px;}
.y37a3_c00001{bottom:509.342151px;}
.y2a50_c00001{bottom:509.429937px;}
.y2c2b_c00001{bottom:509.430600px;}
.y1f46_c00001{bottom:509.527038px;}
.yf2f_c00001{bottom:509.610600px;}
.y1996_c00001{bottom:509.760000px;}
.y384d_c00001{bottom:509.880099px;}
.y10fe_c00001{bottom:509.880450px;}
.y1d34_c00001{bottom:509.940000px;}
.y3960_c00001{bottom:509.970450px;}
.y2728_c00001{bottom:510.058686px;}
.y26e0_c00001{bottom:510.059937px;}
.y2e7_c00001{bottom:510.060000px;}
.y1336_c00001{bottom:510.060150px;}
.y1bb_c00001{bottom:510.060450px;}
.y1c5e_c00001{bottom:510.120000px;}
.y3981_c00001{bottom:510.150450px;}
.y281f_c00001{bottom:510.151296px;}
.y53a_c00001{bottom:510.240450px;}
.y1ba4_c00001{bottom:510.300000px;}
.ybb9_c00001{bottom:510.331278px;}
.y2cb6_c00001{bottom:510.419496px;}
.y210f_c00001{bottom:510.419568px;}
.y2387_c00001{bottom:510.419874px;}
.ycbe_c00001{bottom:510.420450px;}
.y1e71_c00001{bottom:510.493140px;}
.y278a_c00001{bottom:510.510450px;}
.yc48_c00001{bottom:510.600450px;}
.y3077_c00001{bottom:510.660000px;}
.y6fc_c00001{bottom:510.690600px;}
.y11f3_c00001{bottom:510.780600px;}
.yc6f_c00001{bottom:510.872358px;}
.y299a_c00001{bottom:510.960600px;}
.y3029_c00001{bottom:511.020000px;}
.y2aad_c00001{bottom:511.140450px;}
.ybc0_c00001{bottom:511.144401px;}
.y2679_c00001{bottom:511.230450px;}
.y27d7_c00001{bottom:511.319199px;}
.y343d_c00001{bottom:511.320450px;}
.y1a72_c00001{bottom:511.380000px;}
.yd48_c00001{bottom:511.500312px;}
.y3836_c00001{bottom:511.500600px;}
.y1d35_c00001{bottom:511.560000px;}
.ybd_c00001{bottom:511.590600px;}
.y352d_c00001{bottom:511.674987px;}
.y2424_c00001{bottom:511.680600px;}
.y2764_c00001{bottom:511.683060px;}
.y175a_c00001{bottom:511.770450px;}
.y394f_c00001{bottom:511.770600px;}
.y100d_c00001{bottom:511.771008px;}
.y1e9f_c00001{bottom:511.914420px;}
.y1d37_c00001{bottom:511.920000px;}
.y2056_c00001{bottom:511.950450px;}
.y2401_c00001{bottom:511.950600px;}
.y34e5_c00001{bottom:512.040600px;}
.y313d_c00001{bottom:512.100000px;}
.y2dd6_c00001{bottom:512.280000px;}
.y19dc_c00001{bottom:512.290080px;}
.y5ab_c00001{bottom:512.310450px;}
.y2994_c00001{bottom:512.400450px;}
.y2dad_c00001{bottom:512.458560px;}
.yc97_c00001{bottom:512.582241px;}
.y22d3_c00001{bottom:512.669127px;}
.ydb6_c00001{bottom:512.760450px;}
.y57f_c00001{bottom:512.850450px;}
.y17de_c00001{bottom:513.030450px;}
.y2f3f_c00001{bottom:513.180000px;}
.y2329_c00001{bottom:513.208389px;}
.y106c_c00001{bottom:513.300450px;}
.y5f7_c00001{bottom:513.390450px;}
.y6a4_c00001{bottom:513.480450px;}
.y1b5a_c00001{bottom:513.540000px;}
.y2364_c00001{bottom:513.569874px;}
.y20e8_c00001{bottom:513.660450px;}
.y3201_c00001{bottom:513.685800px;}
.y1abb_c00001{bottom:513.720000px;}
.y18c0_c00001{bottom:513.750450px;}
.y38b_c00001{bottom:513.750600px;}
.y36e3_c00001{bottom:513.836040px;}
.y39bb_c00001{bottom:513.840600px;}
.y18df_c00001{bottom:513.930450px;}
.y14ae_c00001{bottom:513.930600px;}
.y5d6_c00001{bottom:514.020450px;}
.y1384_c00001{bottom:514.020600px;}
.y34bb_c00001{bottom:514.200600px;}
.y771_c00001{bottom:514.290600px;}
.y276_c00001{bottom:514.380450px;}
.y1ecb_c00001{bottom:514.440000px;}
.y3272_c00001{bottom:514.620000px;}
.y186a_c00001{bottom:514.740450px;}
.y1c5f_c00001{bottom:514.800000px;}
.y2898_c00001{bottom:514.920450px;}
.y3055_c00001{bottom:514.980000px;}
.y5ac_c00001{bottom:515.100450px;}
.y1fc6_c00001{bottom:515.190450px;}
.y151d_c00001{bottom:515.190600px;}
.y227a_c00001{bottom:515.279568px;}
.y2878_c00001{bottom:515.279640px;}
.y20c_c00001{bottom:515.280600px;}
.y2904_c00001{bottom:515.370450px;}
.y13b_c00001{bottom:515.460450px;}
.y381d_c00001{bottom:515.460600px;}
.yd1d_c00001{bottom:515.640450px;}
.y32df_c00001{bottom:515.700000px;}
.yb78_c00001{bottom:515.728686px;}
.ybf5_c00001{bottom:515.730450px;}
.y2b4_c00001{bottom:515.910450px;}
.y21cd_c00001{bottom:515.996157px;}
.y285e_c00001{bottom:516.000000px;}
.y14d5_c00001{bottom:516.000600px;}
.y27a7_c00001{bottom:516.090600px;}
.y2b4a_c00001{bottom:516.092574px;}
.y34f_c00001{bottom:516.180450px;}
.y750_c00001{bottom:516.180600px;}
.y2f7d_c00001{bottom:516.240000px;}
.y2014_c00001{bottom:516.270450px;}
.yaec_c00001{bottom:516.360450px;}
.y242e_c00001{bottom:516.360600px;}
.y2eca_c00001{bottom:516.420000px;}
.y369f_c00001{bottom:516.452619px;}
.y263c_c00001{bottom:516.539568px;}
.y3997_c00001{bottom:516.540600px;}
.y16dd_c00001{bottom:516.720450px;}
.y265e_c00001{bottom:516.810450px;}
.y2ffc_c00001{bottom:516.960000px;}
.y95f_c00001{bottom:517.080540px;}
.y23f9_c00001{bottom:517.170450px;}
.y33db_c00001{bottom:517.171656px;}
.yaa7_c00001{bottom:517.350450px;}
.yb8d_c00001{bottom:517.440225px;}
.y1e9_c00001{bottom:517.440540px;}
.yd9b_c00001{bottom:517.440600px;}
.y2fb3_c00001{bottom:517.500000px;}
.y293f_c00001{bottom:517.530000px;}
.y9b0_c00001{bottom:517.530600px;}
.y1544_c00001{bottom:517.710450px;}
.y28cc_c00001{bottom:517.710600px;}
.ya96_c00001{bottom:517.800450px;}
.y18c_c00001{bottom:517.890450px;}
.y2bb1_c00001{bottom:517.979496px;}
.y39b9_c00001{bottom:517.980450px;}
.y15cf_c00001{bottom:517.981125px;}
.y2e95_c00001{bottom:518.040000px;}
.y167_c00001{bottom:518.070450px;}
.y39f7_c00001{bottom:518.160450px;}
.y1bea_c00001{bottom:518.220000px;}
.y637_c00001{bottom:518.250600px;}
.y2474_c00001{bottom:518.340459px;}
.ya44_c00001{bottom:518.430450px;}
.y326_c00001{bottom:518.430600px;}
.ye34_c00001{bottom:518.521665px;}
.y2d7d_c00001{bottom:518.580000px;}
.y3862_c00001{bottom:518.700600px;}
.y330b_c00001{bottom:518.940000px;}
.y41f_c00001{bottom:519.060450px;}
.y1d65_c00001{bottom:519.120000px;}
.y1018_c00001{bottom:519.150450px;}
.y203c_c00001{bottom:519.238650px;}
.y91_c00001{bottom:519.240450px;}
.y1ce1_c00001{bottom:519.300000px;}
.y14f3_c00001{bottom:519.510450px;}
.y3a24_c00001{bottom:519.515670px;}
.ye04_c00001{bottom:519.600450px;}
.y1c2f_c00001{bottom:519.660000px;}
.y1e35_c00001{bottom:519.840000px;}
.y2ce4_c00001{bottom:519.867948px;}
.y3210_c00001{bottom:519.960450px;}
.y2b3_c00001{bottom:519.960600px;}
.y933_c00001{bottom:520.050450px;}
.y25d6_c00001{bottom:520.139199px;}
.y1ca6_c00001{bottom:520.200000px;}
.y1fab_c00001{bottom:520.230450px;}
.y24b5_c00001{bottom:520.319271px;}
.y1604_c00001{bottom:520.320450px;}
.y3328_c00001{bottom:520.380000px;}
.y510_c00001{bottom:520.410162px;}
.y871_c00001{bottom:520.410450px;}
.y2979_c00001{bottom:520.498641px;}
.y2962_c00001{bottom:520.499568px;}
.y3657_c00001{bottom:520.500459px;}
.y29f8_c00001{bottom:520.500600px;}
.y2a32_c00001{bottom:520.680600px;}
.y1274_c00001{bottom:520.680729px;}
.y1db4_c00001{bottom:520.740000px;}
.y677_c00001{bottom:520.950600px;}
.y3719_c00001{bottom:521.040000px;}
.y45b_c00001{bottom:521.040600px;}
.y3293_c00001{bottom:521.100000px;}
.y6bf_c00001{bottom:521.130450px;}
.y1204_c00001{bottom:521.220450px;}
.y388e_c00001{bottom:521.303421px;}
.y23d0_c00001{bottom:521.310450px;}
.y253c_c00001{bottom:521.398650px;}
.y3512_c00001{bottom:521.490450px;}
.y136a_c00001{bottom:521.580450px;}
.y2842_c00001{bottom:521.580900px;}
.y2ebf_c00001{bottom:521.640000px;}
.y2afb_c00001{bottom:521.669937px;}
.y1653_c00001{bottom:521.670450px;}
.y2139_c00001{bottom:521.760450px;}
.y1c30_c00001{bottom:521.820000px;}
.y29f6_c00001{bottom:521.940600px;}
.y2ace_c00001{bottom:522.030600px;}
.y17a5_c00001{bottom:522.210450px;}
.y2302_c00001{bottom:522.300450px;}
.y887_c00001{bottom:522.390450px;}
.y33b4_c00001{bottom:522.480450px;}
.y2213_c00001{bottom:522.570450px;}
.y2ab8_c00001{bottom:522.659151px;}
.y2e96_c00001{bottom:522.720000px;}
.y36c8_c00001{bottom:522.750600px;}
.y261c_c00001{bottom:522.840600px;}
.y33d4_c00001{bottom:522.840630px;}
.y1efe_c00001{bottom:523.080000px;}
.y6d_c00001{bottom:523.110450px;}
.y3410_c00001{bottom:523.110522px;}
.y3996_c00001{bottom:523.110600px;}
.y1467_c00001{bottom:523.200600px;}
.y2e03_c00001{bottom:523.260000px;}
.y48b_c00001{bottom:523.290450px;}
.y25fa_c00001{bottom:523.290600px;}
.y345b_c00001{bottom:523.380450px;}
.y2ca3_c00001{bottom:523.469496px;}
.y12fa_c00001{bottom:523.470450px;}
.y2346_c00001{bottom:523.560081px;}
.y24c_c00001{bottom:523.560450px;}
.y384c_c00001{bottom:523.650387px;}
.y17d0_c00001{bottom:523.920450px;}
.y2257_c00001{bottom:524.010450px;}
.y30d6_c00001{bottom:524.160000px;}
.y2386_c00001{bottom:524.190162px;}
.y1690_c00001{bottom:524.190450px;}
.y1e70_c00001{bottom:524.350080px;}
.yf67_c00001{bottom:524.370450px;}
.yf3d_c00001{bottom:524.370600px;}
.y35ec_c00001{bottom:524.458650px;}
.y3e9_c00001{bottom:524.460600px;}
.y30fd_c00001{bottom:524.520000px;}
.y433_c00001{bottom:524.550450px;}
.y1598_c00001{bottom:524.640450px;}
.y3597_c00001{bottom:524.907300px;}
.y4b4_c00001{bottom:524.910450px;}
.ye5d_c00001{bottom:525.000600px;}
.y1d66_c00001{bottom:525.060000px;}
.y3740_c00001{bottom:525.092736px;}
.y2c72_c00001{bottom:525.177435px;}
.y7ad_c00001{bottom:525.180600px;}
.yd47_c00001{bottom:525.270600px;}
.y151a_c00001{bottom:525.361125px;}
.y311f_c00001{bottom:525.420000px;}
.y1335_c00001{bottom:525.540600px;}
.y1b0e_c00001{bottom:525.600000px;}
.y2e6_c00001{bottom:525.629550px;}
.y1197_c00001{bottom:525.630081px;}
.y413_c00001{bottom:525.630450px;}
.y2746_c00001{bottom:525.720450px;}
.y111_c00001{bottom:525.810450px;}
.y337e_c00001{bottom:525.811764px;}
.y3250_c00001{bottom:525.972960px;}
.yebf_c00001{bottom:525.990450px;}
.y2b49_c00001{bottom:525.992565px;}
.y610_c00001{bottom:526.080450px;}
.y281e_c00001{bottom:526.080972px;}
.y19db_c00001{bottom:526.147020px;}
.yf08_c00001{bottom:526.170450px;}
.y1964_c00001{bottom:526.170510px;}
.y193d_c00001{bottom:526.320000px;}
.y104f_c00001{bottom:526.440450px;}
.y1beb_c00001{bottom:526.500000px;}
.y1995_c00001{bottom:526.680000px;}
.y258b_c00001{bottom:526.710000px;}
.y1298_c00001{bottom:526.716633px;}
.y2073_c00001{bottom:526.799262px;}
.y1624_c00001{bottom:526.800450px;}
.y1f5f_c00001{bottom:526.890450px;}
.y17fe_c00001{bottom:526.980450px;}
.y318f_c00001{bottom:527.040000px;}
.y24e8_c00001{bottom:527.065374px;}
.y2182_c00001{bottom:527.070450px;}
.y13c9_c00001{bottom:527.160450px;}
.ye72_c00001{bottom:527.250450px;}
.y2363_c00001{bottom:527.340162px;}
.y843_c00001{bottom:527.340450px;}
.y3c0_c00001{bottom:527.430450px;}
.yfac_c00001{bottom:527.430540px;}
.y2763_c00001{bottom:527.522961px;}
.y131d_c00001{bottom:527.526210px;}
.y1dfd_c00001{bottom:527.580000px;}
.y1f79_c00001{bottom:527.610450px;}
.y2236_c00001{bottom:527.698758px;}
.y6e0_c00001{bottom:527.700450px;}
.yddb_c00001{bottom:527.703735px;}
.y1825_c00001{bottom:527.790450px;}
.yff8_c00001{bottom:527.880450px;}
.y2e04_c00001{bottom:527.940000px;}
.y12a7_c00001{bottom:527.970000px;}
.y4db_c00001{bottom:528.060450px;}
.y1abd_c00001{bottom:528.120000px;}
.y2808_c00001{bottom:528.150450px;}
.y2473_c00001{bottom:528.240450px;}
.y3568_c00001{bottom:528.330450px;}
.y132c_c00001{bottom:528.332328px;}
.y3776_c00001{bottom:528.510873px;}
.y2aac_c00001{bottom:528.690522px;}
.y558_c00001{bottom:528.780450px;}
.y49_c00001{bottom:528.870450px;}
.yc70_c00001{bottom:528.962466px;}
.y996_c00001{bottom:529.050450px;}
.y1841_c00001{bottom:529.140450px;}
.y1e9e_c00001{bottom:529.200000px;}
.y3787_c00001{bottom:529.230450px;}
.yac8_c00001{bottom:529.410450px;}
.y2be7_c00001{bottom:529.500450px;}
.y1c31_c00001{bottom:529.560000px;}
.y815_c00001{bottom:529.590450px;}
.y14ad_c00001{bottom:529.680450px;}
.y7fe_c00001{bottom:529.770450px;}
.y2519_c00001{bottom:529.855446px;}
.y106b_c00001{bottom:529.860450px;}
.y313e_c00001{bottom:529.920000px;}
.y2bfc_c00001{bottom:529.950522px;}
.y3120_c00001{bottom:530.100000px;}
.yb43_c00001{bottom:530.130450px;}
.y2c54_c00001{bottom:530.220000px;}
.y37ba_c00001{bottom:530.310450px;}
.y8ca_c00001{bottom:530.311269px;}
.y6fb_c00001{bottom:530.400450px;}
.ybc_c00001{bottom:530.490450px;}
.y24_c00001{bottom:530.490549px;}
.y185c_c00001{bottom:530.580450px;}
.y1dfe_c00001{bottom:530.640000px;}
.y22b0_c00001{bottom:530.670450px;}
.yc98_c00001{bottom:530.672502px;}
.y1ba_c00001{bottom:530.760450px;}
.yec_c00001{bottom:530.850450px;}
.y539_c00001{bottom:530.940450px;}
.y3200_c00001{bottom:530.971380px;}
.y1ba3_c00001{bottom:531.000000px;}
.y208a_c00001{bottom:531.030450px;}
.y20e7_c00001{bottom:531.119937px;}
.y343c_c00001{bottom:531.120450px;}
.yd9a_c00001{bottom:531.210450px;}
.ycee_c00001{bottom:531.300450px;}
.y28ee_c00001{bottom:531.390450px;}
.y2a72_c00001{bottom:531.480450px;}
.y1a6f_c00001{bottom:531.540000px;}
.y736_c00001{bottom:531.570450px;}
.y1eca_c00001{bottom:531.720000px;}
.yb11_c00001{bottom:531.750450px;}
.y3980_c00001{bottom:531.840450px;}
.y2dac_c00001{bottom:531.900000px;}
.y2727_c00001{bottom:531.929199px;}
.y21ef_c00001{bottom:531.930450px;}
.y5aa_c00001{bottom:532.020450px;}
.y10f9_c00001{bottom:532.110450px;}
.y210e_c00001{bottom:532.199496px;}
.y23aa_c00001{bottom:532.200450px;}
.y2ec9_c00001{bottom:532.260000px;}
.y2cb5_c00001{bottom:532.290009px;}
.y369e_c00001{bottom:532.292520px;}
.y100c_c00001{bottom:532.470729px;}
.y17bb_c00001{bottom:532.560450px;}
.yf9d_c00001{bottom:532.650450px;}
.y2a4f_c00001{bottom:532.740450px;}
.y2c55_c00001{bottom:532.830450px;}
.y2dd5_c00001{bottom:532.980000px;}
.y27d6_c00001{bottom:533.099127px;}
.y1536_c00001{bottom:533.280450px;}
.y26df_c00001{bottom:533.370450px;}
.y38a_c00001{bottom:533.460450px;}
.y2993_c00001{bottom:533.550153px;}
.y1f1d_c00001{bottom:533.550450px;}
.y2b81_c00001{bottom:533.640450px;}
.y1f45_c00001{bottom:533.646732px;}
.y285d_c00001{bottom:533.820000px;}
.y57e_c00001{bottom:533.820450px;}
.y2f3e_c00001{bottom:533.880000px;}
.y28e0_c00001{bottom:533.910450px;}
.y770_c00001{bottom:534.000450px;}
.y3835_c00001{bottom:534.090450px;}
.y50f_c00001{bottom:534.180450px;}
.y1b58_c00001{bottom:534.240000px;}
.y242d_c00001{bottom:534.270450px;}
.y29c2_c00001{bottom:534.358812px;}
.y22d2_c00001{bottom:534.449055px;}
.y390d_c00001{bottom:534.540450px;}
.y2789_c00001{bottom:534.630450px;}
.ybba_c00001{bottom:534.631782px;}
.y5d5_c00001{bottom:534.720450px;}
.yf59_c00001{bottom:534.900450px;}
.y2328_c00001{bottom:534.988317px;}
.y2a18_c00001{bottom:534.990450px;}
.yd1c_c00001{bottom:535.080450px;}
.ye03_c00001{bottom:535.081305px;}
.y1c5c_c00001{bottom:535.140000px;}
.y388d_c00001{bottom:535.163484px;}
.y2d1c_c00001{bottom:535.260450px;}
.y3271_c00001{bottom:535.320000px;}
.y293e_c00001{bottom:535.350000px;}
.y275_c00001{bottom:535.350450px;}
.y1869_c00001{bottom:535.440450px;}
.ybc1_c00001{bottom:535.444905px;}
.y3a23_c00001{bottom:535.445346px;}
.y1759_c00001{bottom:535.620450px;}
.yd6a_c00001{bottom:535.710450px;}
.y2055_c00001{bottom:535.800450px;}
.ybf4_c00001{bottom:535.890450px;}
.y2b48_c00001{bottom:535.892556px;}
.y330a_c00001{bottom:536.040000px;}
.y95e_c00001{bottom:536.070450px;}
.y13a_c00001{bottom:536.160450px;}
.y636_c00001{bottom:536.250450px;}
.y166_c00001{bottom:536.340450px;}
.y2fd7_c00001{bottom:536.400000px;}
.y1e8_c00001{bottom:536.430450px;}
.y3098_c00001{bottom:536.580000px;}
.y2ae3_c00001{bottom:536.610450px;}
.y17dd_c00001{bottom:536.700450px;}
.y3027_c00001{bottom:536.760000px;}
.y38b7_c00001{bottom:536.790450px;}
.y34e_c00001{bottom:536.880450px;}
.y2ff9_c00001{bottom:537.120000px;}
.y20a9_c00001{bottom:537.149199px;}
.y2279_c00001{bottom:537.150081px;}
.y2877_c00001{bottom:537.150153px;}
.y5f6_c00001{bottom:537.150450px;}
.y35d5_c00001{bottom:537.240450px;}
.y2b2_c00001{bottom:537.330450px;}
.y2897_c00001{bottom:537.510450px;}
.ye33_c00001{bottom:537.511575px;}
.yf46_c00001{bottom:537.600450px;}
.y1d30_c00001{bottom:537.660000px;}
.y74f_c00001{bottom:537.780450px;}
.y1ce0_c00001{bottom:537.840000px;}
.y21cc_c00001{bottom:537.866670px;}
.y12eb_c00001{bottom:537.960450px;}
.y1e6f_c00001{bottom:538.026120px;}
.y18b_c00001{bottom:538.140450px;}
.y32b9_c00001{bottom:538.200000px;}
.y263b_c00001{bottom:538.319496px;}
.y1657_c00001{bottom:538.410450px;}
.y2f7c_c00001{bottom:538.560000px;}
.y2e37_c00001{bottom:538.740000px;}
.y339d_c00001{bottom:538.770450px;}
.y23cf_c00001{bottom:538.859271px;}
.y313f_c00001{bottom:538.920000px;}
.y23f8_c00001{bottom:538.950450px;}
.y33da_c00001{bottom:538.951584px;}
.y34d0_c00001{bottom:539.038812px;}
.y2f08_c00001{bottom:539.100000px;}
.y148b_c00001{bottom:539.130450px;}
.y253b_c00001{bottom:539.218650px;}
.y213a_c00001{bottom:539.220450px;}
.y2d7c_c00001{bottom:539.280000px;}
.y2492_c00001{bottom:539.310450px;}
.y265d_c00001{bottom:539.400450px;}
.y1414_c00001{bottom:539.490450px;}
.y6a3_c00001{bottom:539.580450px;}
.yb79_c00001{bottom:539.758650px;}
.y227_c00001{bottom:539.760450px;}
.y1c5d_c00001{bottom:539.820000px;}
.y19da_c00001{bottom:539.823060px;}
.y2bb0_c00001{bottom:539.850009px;}
.y37f1_c00001{bottom:539.850450px;}
.y367_c00001{bottom:539.940450px;}
.y3162_c00001{bottom:540.000000px;}
.y27bc_c00001{bottom:540.120450px;}
.y38ed_c00001{bottom:540.210450px;}
.y37a2_c00001{bottom:540.211584px;}
.y1ca1_c00001{bottom:540.360000px;}
.y367d_c00001{bottom:540.390450px;}
.y1383_c00001{bottom:540.480450px;}
.y676_c00001{bottom:540.660450px;}
.y3053_c00001{bottom:540.720000px;}
.y45a_c00001{bottom:540.840450px;}
.y1dff_c00001{bottom:540.900000px;}
.y10fd_c00001{bottom:540.930450px;}
.y373f_c00001{bottom:540.932637px;}
.ye71_c00001{bottom:541.020450px;}
.y318e_c00001{bottom:541.080000px;}
.y2e5_c00001{bottom:541.110000px;}
.y2362_c00001{bottom:541.110450px;}
.y1881_c00001{bottom:541.200450px;}
.y2fd8_c00001{bottom:541.260000px;}
.y2c2c_c00001{bottom:541.290450px;}
.y6be_c00001{bottom:541.380450px;}
.y1a70_c00001{bottom:541.440000px;}
.yb8e_c00001{bottom:541.470000px;}
.y29f4_c00001{bottom:541.470450px;}
.y2f00_c00001{bottom:541.620000px;}
.yc47_c00001{bottom:541.650450px;}
.y14d4_c00001{bottom:541.650540px;}
.y2ce3_c00001{bottom:541.738461px;}
.y870_c00001{bottom:541.830450px;}
.y33d3_c00001{bottom:541.830540px;}
.y25d5_c00001{bottom:541.919127px;}
.y3e8_c00001{bottom:541.920450px;}
.y281d_c00001{bottom:541.920873px;}
.y3a40_c00001{bottom:542.010450px;}
.y24b4_c00001{bottom:542.099199px;}
.y1fe1_c00001{bottom:542.100450px;}
.y2978_c00001{bottom:542.278569px;}
.y2961_c00001{bottom:542.279496px;}
.y38fd_c00001{bottom:542.280450px;}
.y2ebe_c00001{bottom:542.340000px;}
.y156c_c00001{bottom:542.370450px;}
.y21a1_c00001{bottom:542.372250px;}
.y14ac_c00001{bottom:542.460666px;}
.y3075_c00001{bottom:542.520000px;}
.y394e_c00001{bottom:542.820450px;}
.y17a4_c00001{bottom:543.000450px;}
.y7d7_c00001{bottom:543.360450px;}
.y1d32_c00001{bottom:543.420000px;}
.y2452_c00001{bottom:543.450450px;}
.y2762_c00001{bottom:543.452637px;}
.y2afa_c00001{bottom:543.540450px;}
.y31b8_c00001{bottom:543.600000px;}
.y37e1_c00001{bottom:543.630450px;}
.y2678_c00001{bottom:543.720450px;}
.y1d33_c00001{bottom:543.780000px;}
.y655_c00001{bottom:543.810450px;}
.y2212_c00001{bottom:543.900450px;}
.y31ba_c00001{bottom:543.960000px;}
.y48a_c00001{bottom:543.990450px;}
.y215d_c00001{bottom:544.170450px;}
.y1519_c00001{bottom:544.260450px;}
.y30d5_c00001{bottom:544.320000px;}
.y291d_c00001{bottom:544.350450px;}
.y3775_c00001{bottom:544.350774px;}
.y3609_c00001{bottom:544.440450px;}
.y1597_c00001{bottom:544.440540px;}
.y2e64_c00001{bottom:544.500000px;}
.y2ab7_c00001{bottom:544.529664px;}
.y258a_c00001{bottom:544.530000px;}
.y24b_c00001{bottom:544.530450px;}
.y36fd_c00001{bottom:544.620450px;}
.y36e2_c00001{bottom:544.706670px;}
.yd46_c00001{bottom:544.710450px;}
.y324f_c00001{bottom:544.867920px;}
.y26c5_c00001{bottom:544.890450px;}
.yd99_c00001{bottom:544.980450px;}
.y886_c00001{bottom:545.070450px;}
.y25f9_c00001{bottom:545.160450px;}
.y1a27_c00001{bottom:545.220000px;}
.y432_c00001{bottom:545.250450px;}
.y2c9b_c00001{bottom:545.340009px;}
.y7ac_c00001{bottom:545.430450px;}
.y2345_c00001{bottom:545.430594px;}
.yabc_c00001{bottom:545.700450px;}
.y2e94_c00001{bottom:545.767020px;}
.yebe_c00001{bottom:545.880450px;}
.y2b47_c00001{bottom:545.882187px;}
.y261b_c00001{bottom:545.970450px;}
.y4da_c00001{bottom:546.060450px;}
.y1962_c00001{bottom:546.150450px;}
.y335d_c00001{bottom:546.300000px;}
.y23_c00001{bottom:546.330450px;}
.yfab_c00001{bottom:546.420450px;}
.y381c_c00001{bottom:546.510450px;}
.y352c_c00001{bottom:546.594186px;}
.y1be9_c00001{bottom:546.660000px;}
.ydda_c00001{bottom:546.693645px;}
.yea4_c00001{bottom:546.780450px;}
.y1db0_c00001{bottom:546.840000px;}
.y189f_c00001{bottom:546.870450px;}
.y3931_c00001{bottom:546.960450px;}
.y193c_c00001{bottom:547.020000px;}
.y2c82_c00001{bottom:547.044654px;}
.y2c71_c00001{bottom:547.047948px;}
.y173d_c00001{bottom:547.050450px;}
.yc71_c00001{bottom:547.052574px;}
.y2d30_c00001{bottom:547.140450px;}
.y20b_c00001{bottom:547.230450px;}
.y1196_c00001{bottom:547.410009px;}
.yaeb_c00001{bottom:547.410450px;}
.y2b16_c00001{bottom:547.498026px;}
.y2dab_c00001{bottom:547.560000px;}
.y110_c00001{bottom:547.590450px;}
.y31bb_c00001{bottom:547.740000px;}
.y557_c00001{bottom:547.770450px;}
.y2256_c00001{bottom:547.860450px;}
.y3342_c00001{bottom:547.920000px;}
.y104e_c00001{bottom:547.950450px;}
.y2e01_c00001{bottom:548.100000px;}
.y156b_c00001{bottom:548.130243px;}
.y7ae_c00001{bottom:548.220450px;}
.y369d_c00001{bottom:548.222196px;}
.y31ff_c00001{bottom:548.256960px;}
.y1ab3_c00001{bottom:548.280000px;}
.yf3c_c00001{bottom:548.310450px;}
.y165_c00001{bottom:548.400450px;}
.y2181_c00001{bottom:548.580450px;}
.ya6d_c00001{bottom:548.760162px;}
.y1466_c00001{bottom:548.760450px;}
.yc99_c00001{bottom:548.762763px;}
.y1299_c00001{bottom:548.767146px;}
.y131e_c00001{bottom:548.856786px;}
.y388c_c00001{bottom:548.933772px;}
.y24e7_c00001{bottom:548.935887px;}
.y3786_c00001{bottom:548.940450px;}
.y1db2_c00001{bottom:549.000000px;}
.y50e_c00001{bottom:549.390450px;}
.y2235_c00001{bottom:549.478686px;}
.y2d0d_c00001{bottom:549.480000px;}
.ybb_c00001{bottom:549.480450px;}
.y132d_c00001{bottom:549.662904px;}
.y1c2c_c00001{bottom:549.720000px;}
.y2296_c00001{bottom:549.840450px;}
.y12a8_c00001{bottom:550.019550px;}
.ybf3_c00001{bottom:550.020450px;}
.y6fa_c00001{bottom:550.110450px;}
.y1017_c00001{bottom:550.200450px;}
.y32de_c00001{bottom:550.260000px;}
.y90_c00001{bottom:550.290450px;}
.y2ffa_c00001{bottom:550.440000px;}
.y5a9_c00001{bottom:550.470450px;}
.y2562_c00001{bottom:550.560000px;}
.yced_c00001{bottom:550.650450px;}
.ye52_c00001{bottom:550.740450px;}
.y1d63_c00001{bottom:550.800000px;}
.y390c_c00001{bottom:550.830450px;}
.y320f_c00001{bottom:551.010450px;}
.y1141_c00001{bottom:551.100450px;}
.y735_c00001{bottom:551.280450px;}
.y3a22_c00001{bottom:551.285247px;}
.y3e7_c00001{bottom:551.370450px;}
.yf07_c00001{bottom:551.460450px;}
.y1b56_c00001{bottom:551.520000px;}
.y1824_c00001{bottom:551.550450px;}
.y2518_c00001{bottom:551.635374px;}
.y285c_c00001{bottom:551.640000px;}
.y538_c00001{bottom:551.640450px;}
.y1e33_c00001{bottom:551.700000px;}
.y1b9_c00001{bottom:551.730450px;}
.y1c2d_c00001{bottom:551.880000px;}
.y1e6e_c00001{bottom:551.883060px;}
.yf2e_c00001{bottom:551.910450px;}
.y2b1_c00001{bottom:552.090450px;}
.yb10_c00001{bottom:552.180450px;}
.y1ab5_c00001{bottom:552.240000px;}
.y2807_c00001{bottom:552.270450px;}
.y38b6_c00001{bottom:552.450450px;}
.y1ba2_c00001{bottom:552.600000px;}
.y1369_c00001{bottom:552.630450px;}
.y1652_c00001{bottom:552.720450px;}
.y2e02_c00001{bottom:552.780000px;}
.y2a70_c00001{bottom:552.810450px;}
.y1840_c00001{bottom:552.900450px;}
.y412_c00001{bottom:552.990450px;}
.y2bcf_c00001{bottom:553.080450px;}
.y293d_c00001{bottom:553.170000px;}
.y389_c00001{bottom:553.170450px;}
.y8c9_c00001{bottom:553.351152px;}
.y22eb_c00001{bottom:553.440450px;}
.y1b57_c00001{bottom:553.500000px;}
.y11bd_c00001{bottom:553.620450px;}
.y19d9_c00001{bottom:553.680000px;}
.y2726_c00001{bottom:553.709127px;}
.y76f_c00001{bottom:553.710450px;}
.y1031_c00001{bottom:553.800450px;}
.y57d_c00001{bottom:553.980450px;}
.ye02_c00001{bottom:553.980630px;}
.y2cb4_c00001{bottom:554.069937px;}
.y210d_c00001{bottom:554.070009px;}
.y6c_c00001{bottom:554.160450px;}
.y2f80_c00001{bottom:554.220000px;}
.y635_c00001{bottom:554.250450px;}
.y4c6_c00001{bottom:554.340450px;}
.y2ec8_c00001{bottom:554.400000px;}
.y274_c00001{bottom:554.430450px;}
.y26de_c00001{bottom:554.519712px;}
.y29d7_c00001{bottom:554.520000px;}
.y2f3d_c00001{bottom:554.580000px;}
.y1994_c00001{bottom:554.760000px;}
.ye70_c00001{bottom:554.790450px;}
.y3327_c00001{bottom:554.940000px;}
.y27d5_c00001{bottom:554.969640px;}
.y1851_c00001{bottom:554.970450px;}
.y168f_c00001{bottom:555.240450px;}
.y30fb_c00001{bottom:555.300000px;}
.y2992_c00001{bottom:555.330081px;}
.y13c8_c00001{bottom:555.330450px;}
.y5d4_c00001{bottom:555.420450px;}
.y2eff_c00001{bottom:555.480000px;}
.y325_c00001{bottom:555.510450px;}
.y2089_c00001{bottom:555.600450px;}
.y343b_c00001{bottom:555.690450px;}
.y9fc_c00001{bottom:555.780450px;}
.yac7_c00001{bottom:555.780729px;}
.y2b46_c00001{bottom:555.782178px;}
.y3270_c00001{bottom:556.020000px;}
.y203b_c00001{bottom:556.049100px;}
.y1e7_c00001{bottom:556.050450px;}
.y21ee_c00001{bottom:556.050522px;}
.y22d1_c00001{bottom:556.319568px;}
.y17ba_c00001{bottom:556.320450px;}
.ye32_c00001{bottom:556.501485px;}
.y4b2_c00001{bottom:556.590450px;}
.y2e4_c00001{bottom:556.679550px;}
.y3834_c00001{bottom:556.680450px;}
.y3097_c00001{bottom:556.740000px;}
.y2903_c00001{bottom:556.770450px;}
.y373e_c00001{bottom:556.772538px;}
.y2327_c00001{bottom:556.858830px;}
.y39f6_c00001{bottom:556.860450px;}
.y1d64_c00001{bottom:556.920000px;}
.yc17_c00001{bottom:556.950450px;}
.y253a_c00001{bottom:557.038650px;}
.y6a2_c00001{bottom:557.040450px;}
.y60f_c00001{bottom:557.130450px;}
.y139_c00001{bottom:557.220450px;}
.y1b0c_c00001{bottom:557.280000px;}
.y34d_c00001{bottom:557.580450px;}
.y1efd_c00001{bottom:557.640000px;}
.y1f1c_c00001{bottom:557.670891px;}
.y281c_c00001{bottom:557.760774px;}
.y1623_c00001{bottom:557.850450px;}
.y1f44_c00001{bottom:557.856597px;}
.y2a17_c00001{bottom:558.030450px;}
.y269b_c00001{bottom:558.300450px;}
.y3163_c00001{bottom:558.360000px;}
.y842_c00001{bottom:558.390450px;}
.y74e_c00001{bottom:558.480450px;}
.y16ba_c00001{bottom:558.480729px;}
.y34ba_c00001{bottom:558.570450px;}
.y95d_c00001{bottom:558.660450px;}
.yff7_c00001{bottom:558.750450px;}
.y18a_c00001{bottom:558.840450px;}
.ybbb_c00001{bottom:558.842106px;}
.y29f3_c00001{bottom:558.927948px;}
.y20a8_c00001{bottom:558.929127px;}
.y2278_c00001{bottom:558.930009px;}
.y2876_c00001{bottom:558.930081px;}
.y347c_c00001{bottom:558.930450px;}
.y1453_c00001{bottom:559.110450px;}
.y35d4_c00001{bottom:559.199928px;}
.y2761_c00001{bottom:559.292538px;}
.y4b3_c00001{bottom:559.380450px;}
.y932_c00001{bottom:559.470450px;}
.y2b82_c00001{bottom:559.560450px;}
.y1c2e_c00001{bottom:559.620000px;}
.y2e93_c00001{bottom:559.623960px;}
.y21cb_c00001{bottom:559.646598px;}
.y21c0_c00001{bottom:559.648245px;}
.y22af_c00001{bottom:559.650450px;}
.ybc2_c00001{bottom:559.745409px;}
.y2f46_c00001{bottom:559.800000px;}
.y357c_c00001{bottom:559.830450px;}
.y48_c00001{bottom:559.920450px;}
.y1ab7_c00001{bottom:559.980000px;}
.y265c_c00001{bottom:560.010450px;}
.y2896_c00001{bottom:560.100450px;}
.y263a_c00001{bottom:560.190009px;}
.y3774_c00001{bottom:560.280450px;}
.y675_c00001{bottom:560.370450px;}
.y41e_c00001{bottom:560.460450px;}
.y35ad_c00001{bottom:560.460873px;}
.y1a26_c00001{bottom:560.520000px;}
.y459_c00001{bottom:560.550450px;}
.y23ce_c00001{bottom:560.639199px;}
.y366_c00001{bottom:560.640450px;}
.y14d3_c00001{bottom:560.641125px;}
.y1d31_c00001{bottom:560.700000px;}
.y7fd_c00001{bottom:560.820450px;}
.y33d9_c00001{bottom:560.822097px;}
.y5f5_c00001{bottom:561.000450px;}
.y6bd_c00001{bottom:561.090450px;}
.y1db1_c00001{bottom:561.240000px;}
.y35eb_c00001{bottom:561.269100px;}
.y3718_c00001{bottom:561.270450px;}
.y18bf_c00001{bottom:561.360450px;}
.y1b0d_c00001{bottom:561.420000px;}
.y18de_c00001{bottom:561.540450px;}
.y1a6d_c00001{bottom:561.600000px;}
.y2baf_c00001{bottom:561.629937px;}
.yd98_c00001{bottom:561.630450px;}
.y215c_c00001{bottom:561.630522px;}
.y3596_c00001{bottom:561.717750px;}
.y2138_c00001{bottom:561.810081px;}
.ya5c_c00001{bottom:561.810450px;}
.yeb_c00001{bottom:561.900450px;}
.y2b97_c00001{bottom:562.080450px;}
.yd69_c00001{bottom:562.170450px;}
.y33d2_c00001{bottom:562.260450px;}
.y1ca4_c00001{bottom:562.320000px;}
.y2589_c00001{bottom:562.350000px;}
.y28ed_c00001{bottom:562.440450px;}
.ya6c_c00001{bottom:562.530450px;}
.y556_c00001{bottom:562.620450px;}
.y388b_c00001{bottom:562.704060px;}
.y27bb_c00001{bottom:562.710450px;}
.y1880_c00001{bottom:562.800873px;}
.yf45_c00001{bottom:562.890450px;}
.y2d58_c00001{bottom:562.900860px;}
.y2ebd_c00001{bottom:563.040000px;}
.y3608_c00001{bottom:563.069811px;}
.y15ce_c00001{bottom:563.160450px;}
.y261a_c00001{bottom:563.160972px;}
.y1334_c00001{bottom:563.250450px;}
.y86f_c00001{bottom:563.340450px;}
.y1e34_c00001{bottom:563.400000px;}
.y22_c00001{bottom:563.430450px;}
.y1596_c00001{bottom:563.431125px;}
.y2ce2_c00001{bottom:563.518389px;}
.yf9c_c00001{bottom:563.520450px;}
.y2072_c00001{bottom:563.609712px;}
.y1776_c00001{bottom:563.610450px;}
.yb7a_c00001{bottom:563.698434px;}
.y25d4_c00001{bottom:563.699055px;}
.y17a3_c00001{bottom:563.700450px;}
.y324e_c00001{bottom:563.762880px;}
.y3292_c00001{bottom:563.765040px;}
.y24b3_c00001{bottom:563.969712px;}
.y337d_c00001{bottom:563.971107px;}
.y4d9_c00001{bottom:564.060450px;}
.y1518_c00001{bottom:564.060540px;}
.y369c_c00001{bottom:564.062097px;}
.y2977_c00001{bottom:564.149082px;}
.y2960_c00001{bottom:564.150009px;}
.y14ab_c00001{bottom:564.240594px;}
.y1535_c00001{bottom:564.330450px;}
.y1e9d_c00001{bottom:564.480000px;}
.y27a6_c00001{bottom:564.510450px;}
.y1c5b_c00001{bottom:564.660000px;}
.y24a_c00001{bottom:564.690450px;}
.y20c0_c00001{bottom:564.960450px;}
.y1cdf_c00001{bottom:565.020000px;}
.y7ab_c00001{bottom:565.140450px;}
.yc72_c00001{bottom:565.142682px;}
.y3341_c00001{bottom:565.200000px;}
.y2451_c00001{bottom:565.230450px;}
.yb8f_c00001{bottom:565.410000px;}
.y2400_c00001{bottom:565.500450px;}
.y31fe_c00001{bottom:565.542540px;}
.y489_c00001{bottom:565.680450px;}
.y2b45_c00001{bottom:565.682169px;}
.ydd9_c00001{bottom:565.683555px;}
.y1e6d_c00001{bottom:565.740000px;}
.y9c0_c00001{bottom:565.770450px;}
.y2e63_c00001{bottom:565.920000px;}
.y431_c00001{bottom:565.950450px;}
.y14f2_c00001{bottom:566.040450px;}
.y2fd6_c00001{bottom:566.100000px;}
.y33b3_c00001{bottom:566.130450px;}
.y37e0_c00001{bottom:566.220450px;}
.y1ec9_c00001{bottom:566.280000px;}
.y2ab6_c00001{bottom:566.309592px;}
.y28df_c00001{bottom:566.310450px;}
.y2acc_c00001{bottom:566.400450px;}
.y2e36_c00001{bottom:566.467020px;}
.y1ff7_c00001{bottom:566.490450px;}
.y3511_c00001{bottom:566.580450px;}
.ya43_c00001{bottom:566.760450px;}
.y1961_c00001{bottom:566.850450px;}
.yc9a_c00001{bottom:566.853024px;}
.ybf2_c00001{bottom:566.940450px;}
.y1db3_c00001{bottom:567.000000px;}
.y734_c00001{bottom:567.030450px;}
.y2c9a_c00001{bottom:567.119937px;}
.y156a_c00001{bottom:567.120153px;}
.y3a21_c00001{bottom:567.125148px;}
.y3544_c00001{bottom:567.210450px;}
.y2344_c00001{bottom:567.210522px;}
.y2361_c00001{bottom:567.300450px;}
.y50d_c00001{bottom:567.390450px;}
.yb57_c00001{bottom:567.480450px;}
.y32dd_c00001{bottom:567.540000px;}
.y2be6_c00001{bottom:567.660450px;}
.y193b_c00001{bottom:567.720000px;}
.y138d_c00001{bottom:567.750450px;}
.y2745_c00001{bottom:567.840450px;}
.y9af_c00001{bottom:567.929955px;}
.y411_c00001{bottom:567.930450px;}
.y164_c00001{bottom:568.110450px;}
.y1679_c00001{bottom:568.200450px;}
.y2ec7_c00001{bottom:568.260000px;}
.y2561_c00001{bottom:568.380000px;}
.y1b8_c00001{bottom:568.560450px;}
.y30fc_c00001{bottom:568.620000px;}
.y34fb_c00001{bottom:568.650450px;}
.y19d8_c00001{bottom:568.800000px;}
.y2c81_c00001{bottom:568.824582px;}
.y2c70_c00001{bottom:568.827876px;}
.y1714_c00001{bottom:568.830450px;}
.y1439_c00001{bottom:568.920450px;}
.y2daa_c00001{bottom:568.980000px;}
.yfaa_c00001{bottom:569.010450px;}
.y10f_c00001{bottom:569.100450px;}
.y30d3_c00001{bottom:569.160000px;}
.yba_c00001{bottom:569.190450px;}
.y2b15_c00001{bottom:569.277954px;}
.y324_c00001{bottom:569.280450px;}
.y1195_c00001{bottom:569.280522px;}
.y6df_c00001{bottom:569.370450px;}
.y1656_c00001{bottom:569.460450px;}
.y1d29_c00001{bottom:569.520000px;}
.y285b_c00001{bottom:569.550450px;}
.ycec_c00001{bottom:569.640450px;}
.y6f9_c00001{bottom:569.820450px;}
.y242c_c00001{bottom:569.910450px;}
.y1993_c00001{bottom:570.060000px;}
.y2b0_c00001{bottom:570.090450px;}
.y148a_c00001{bottom:570.180450px;}
.y131f_c00001{bottom:570.187362px;}
.y2efe_c00001{bottom:570.240000px;}
.ydb5_c00001{bottom:570.270450px;}
.y26b1_c00001{bottom:570.450450px;}
.y1413_c00001{bottom:570.540450px;}
.y2ff8_c00001{bottom:570.600000px;}
.y2aab_c00001{bottom:570.630450px;}
.y24e6_c00001{bottom:570.715815px;}
.y5a8_c00001{bottom:570.720450px;}
.y226_c00001{bottom:570.810450px;}
.y273_c00001{bottom:570.900450px;}
.y129a_c00001{bottom:570.906336px;}
.y2dd2_c00001{bottom:570.960000px;}
.yabb_c00001{bottom:570.990450px;}
.y132e_c00001{bottom:570.993480px;}
.y293c_c00001{bottom:571.080450px;}
.y37a1_c00001{bottom:571.081017px;}
.y2fac_c00001{bottom:571.140000px;}
.y29c1_c00001{bottom:571.169262px;}
.y2234_c00001{bottom:571.258614px;}
.y2677_c00001{bottom:571.260450px;}
.ye6f_c00001{bottom:571.440450px;}
.y1a6e_c00001{bottom:571.500000px;}
.y17cf_c00001{bottom:571.530450px;}
.y10fc_c00001{bottom:571.800450px;}
.y2bfb_c00001{bottom:571.890450px;}
.y185b_c00001{bottom:571.980450px;}
.y3326_c00001{bottom:572.040000px;}
.y12a9_c00001{bottom:572.159550px;}
.y2e3_c00001{bottom:572.160000px;}
.y36fc_c00001{bottom:572.160450px;}
.y32d5_c00001{bottom:572.220000px;}
.y634_c00001{bottom:572.250450px;}
.y537_c00001{bottom:572.340450px;}
.y3308_c00001{bottom:572.400000px;}
.y29d6_c00001{bottom:572.430450px;}
.yb0f_c00001{bottom:572.700450px;}
.y373d_c00001{bottom:572.702214px;}
.y384b_c00001{bottom:572.790450px;}
.y388_c00001{bottom:572.880450px;}
.ye01_c00001{bottom:572.970540px;}
.y29b1_c00001{bottom:573.150450px;}
.y397f_c00001{bottom:573.239874px;}
.y10ca_c00001{bottom:573.240450px;}
.y1d2c_c00001{bottom:573.300000px;}
.y2517_c00001{bottom:573.415302px;}
.y76e_c00001{bottom:573.420450px;}
.y31b5_c00001{bottom:573.480000px;}
.y1e6_c00001{bottom:573.510450px;}
.y3387_c00001{bottom:573.600450px;}
.y12ad_c00001{bottom:573.690450px;}
.y30d4_c00001{bottom:573.840000px;}
.y2fb0_c00001{bottom:574.020000px;}
.y2385_c00001{bottom:574.050450px;}
.y2c50_c00001{bottom:574.140450px;}
.y13c7_c00001{bottom:574.230450px;}
.y3074_c00001{bottom:574.380000px;}
.y7d6_c00001{bottom:574.410450px;}
.y1dfc_c00001{bottom:574.560000px;}
.y2c52_c00001{bottom:574.590000px;}
.ya42_c00001{bottom:574.590450px;}
.y57c_c00001{bottom:574.680450px;}
.y1efc_c00001{bottom:574.740000px;}
.y1be8_c00001{bottom:574.920000px;}
.y2539_c00001{bottom:574.949100px;}
.y4b0_c00001{bottom:575.040450px;}
.y2760_c00001{bottom:575.132439px;}
.y1b7_c00001{bottom:575.220450px;}
.y21a0_c00001{bottom:575.221800px;}
.y1823_c00001{bottom:575.400450px;}
.y2f45_c00001{bottom:575.460000px;}
.y2384_c00001{bottom:575.490450px;}
.ye31_c00001{bottom:575.491395px;}
.y36e1_c00001{bottom:575.577300px;}
.y2bb9_c00001{bottom:575.577579px;}
.y2725_c00001{bottom:575.579640px;}
.y20e6_c00001{bottom:575.580594px;}
.y2b44_c00001{bottom:575.582160px;}
.y2c28_c00001{bottom:575.670450px;}
.y269a_c00001{bottom:575.760009px;}
.y2a4e_c00001{bottom:575.760450px;}
.y2e00_c00001{bottom:575.827020px;}
.y34cf_c00001{bottom:575.849262px;}
.y210c_c00001{bottom:575.849937px;}
.y2a6f_c00001{bottom:575.850450px;}
.y2cba_c00001{bottom:575.940450px;}
.y885_c00001{bottom:576.120450px;}
.y3861_c00001{bottom:576.210162px;}
.y26dd_c00001{bottom:576.299640px;}
.y8c8_c00001{bottom:576.300450px;}
.y35ac_c00001{bottom:576.300774px;}
.y32d7_c00001{bottom:576.360000px;}
.y5d3_c00001{bottom:576.390450px;}
.y9fb_c00001{bottom:576.480450px;}
.y13be_c00001{bottom:576.480486px;}
.y32b8_c00001{bottom:576.540000px;}
.y388a_c00001{bottom:576.564123px;}
.y3833_c00001{bottom:576.660450px;}
.y326f_c00001{bottom:576.720000px;}
.y27d4_c00001{bottom:576.749568px;}
.y183f_c00001{bottom:576.750450px;}
.y3607_c00001{bottom:576.929874px;}
.y2c51_c00001{bottom:576.930450px;}
.y1fc5_c00001{bottom:577.110450px;}
.y2c53_c00001{bottom:577.200450px;}
.y2991_c00001{bottom:577.200594px;}
.y2088_c00001{bottom:577.290450px;}
.y138_c00001{bottom:577.380450px;}
.y1e69_c00001{bottom:577.440000px;}
.y2f79_c00001{bottom:577.443060px;}
.y2902_c00001{bottom:577.470450px;}
.y381b_c00001{bottom:577.560450px;}
.y1ba1_c00001{bottom:577.623060px;}
.y22ea_c00001{bottom:577.740450px;}
.yea3_c00001{bottom:577.830450px;}
.y3717_c00001{bottom:577.920648px;}
.y6a1_c00001{bottom:578.010450px;}
.y22d0_c00001{bottom:578.099496px;}
.y16fe_c00001{bottom:578.100450px;}
.y2d2f_c00001{bottom:578.190450px;}
.y20a_c00001{bottom:578.280450px;}
.yaea_c00001{bottom:578.460450px;}
.y1273_c00001{bottom:578.550450px;}
.y2326_c00001{bottom:578.638758px;}
.y2a71_c00001{bottom:578.640450px;}
.y3160_c00001{bottom:578.700000px;}
.y100b_c00001{bottom:578.730450px;}
.y187f_c00001{bottom:578.730549px;}
.y1333_c00001{bottom:578.820000px;}
.y1850_c00001{bottom:578.820450px;}
.y35d3_c00001{bottom:579.000450px;}
.y2a31_c00001{bottom:579.090450px;}
.y2619_c00001{bottom:579.090648px;}
.y931_c00001{bottom:579.180450px;}
.yaa6_c00001{bottom:579.360450px;}
.y3051_c00001{bottom:579.420000px;}
.y189_c00001{bottom:579.540450px;}
.y2f07_c00001{bottom:579.600000px;}
.y163_c00001{bottom:579.720450px;}
.y1c2a_c00001{bottom:579.780000px;}
.y1465_c00001{bottom:579.810450px;}
.y3930_c00001{bottom:579.900450px;}
.y369b_c00001{bottom:579.901998px;}
.y674_c00001{bottom:580.080450px;}
.y1ab1_c00001{bottom:580.140000px;}
.yebd_c00001{bottom:580.170450px;}
.y458_c00001{bottom:580.260450px;}
.y2e35_c00001{bottom:580.323960px;}
.y345a_c00001{bottom:580.350450px;}
.y1203_c00001{bottom:580.440450px;}
.y1e6b_c00001{bottom:580.500000px;}
.y6b_c00001{bottom:580.620450px;}
.y2d7b_c00001{bottom:580.680000px;}
.y29f2_c00001{bottom:580.707876px;}
.y20a7_c00001{bottom:580.709055px;}
.y2277_c00001{bottom:580.709937px;}
.y2875_c00001{bottom:580.710009px;}
.y6bc_c00001{bottom:580.890450px;}
.y41d_c00001{bottom:581.160450px;}
.y31b6_c00001{bottom:581.220000px;}
.y2af9_c00001{bottom:581.250153px;}
.y8f_c00001{bottom:581.340450px;}
.y352b_c00001{bottom:581.424708px;}
.y37d0_c00001{bottom:581.430450px;}
.y21ca_c00001{bottom:581.517111px;}
.y21bf_c00001{bottom:581.518758px;}
.y3096_c00001{bottom:581.580000px;}
.y1b0b_c00001{bottom:581.590080px;}
.y1e9c_c00001{bottom:581.760000px;}
.ye51_c00001{bottom:581.790450px;}
.y1f1b_c00001{bottom:581.790585px;}
.y3995_c00001{bottom:581.880450px;}
.y1a25_c00001{bottom:581.940000px;}
.y2639_c00001{bottom:581.969937px;}
.y1140_c00001{bottom:581.970450px;}
.y1f43_c00001{bottom:581.976291px;}
.yd97_c00001{bottom:582.060450px;}
.yc16_c00001{bottom:582.240450px;}
.y1595_c00001{bottom:582.330450px;}
.y23cd_c00001{bottom:582.419127px;}
.y313c_c00001{bottom:582.480000px;}
.yf06_c00001{bottom:582.510450px;}
.y23f7_c00001{bottom:582.600450px;}
.y1d61_c00001{bottom:582.660000px;}
.y4d8_c00001{bottom:582.690450px;}
.y2806_c00001{bottom:582.780450px;}
.y31fd_c00001{bottom:582.828120px;}
.y1e5_c00001{bottom:582.960450px;}
.y1517_c00001{bottom:583.050063px;}
.yd45_c00001{bottom:583.050450px;}
.y3a20_c00001{bottom:583.054824px;}
.y323_c00001{bottom:583.140450px;}
.ybbc_c00001{bottom:583.142610px;}
.y1b55_c00001{bottom:583.200000px;}
.y1758_c00001{bottom:583.230450px;}
.yc73_c00001{bottom:583.232790px;}
.y33d1_c00001{bottom:583.320009px;}
.y23ff_c00001{bottom:583.320450px;}
.y2744_c00001{bottom:583.320900px;}
.y2ebc_c00001{bottom:583.380000px;}
.y215e_c00001{bottom:583.410450px;}
.y162_c00001{bottom:583.500450px;}
.y1e31_c00001{bottom:583.560000px;}
.y2137_c00001{bottom:583.590009px;}
.yea_c00001{bottom:583.590450px;}
.y190f_c00001{bottom:583.600860px;}
.y7a9_c00001{bottom:583.680450px;}
.y15cd_c00001{bottom:583.770450px;}
.y2ec6_c00001{bottom:583.920000px;}
.ybc3_c00001{bottom:583.955733px;}
.y3238_c00001{bottom:584.301960px;}
.y17dc_c00001{bottom:584.310450px;}
.y17a2_c00001{bottom:584.400450px;}
.y814_c00001{bottom:584.490450px;}
.y37f0_c00001{bottom:584.579496px;}
.ydd8_c00001{bottom:584.582880px;}
.y5f4_c00001{bottom:584.760450px;}
.y1c59_c00001{bottom:584.820000px;}
.y1030_c00001{bottom:584.850450px;}
.yc9b_c00001{bottom:584.943285px;}
.y2ae2_c00001{bottom:585.030450px;}
.yff6_c00001{bottom:585.120729px;}
.y18be_c00001{bottom:585.210450px;}
.y994_c00001{bottom:585.300450px;}
.y1ca0_c00001{bottom:585.363960px;}
.y2ce1_c00001{bottom:585.388902px;}
.y249_c00001{bottom:585.390450px;}
.y6f8_c00001{bottom:585.480450px;}
.y2b43_c00001{bottom:585.482151px;}
.y25d3_c00001{bottom:585.569568px;}
.y24b2_c00001{bottom:585.749640px;}
.y2ad_c00001{bottom:585.750450px;}
.y2472_c00001{bottom:585.840450px;}
.y2976_c00001{bottom:585.929010px;}
.y295f_c00001{bottom:585.929937px;}
.ybf1_c00001{bottom:585.930450px;}
.y1569_c00001{bottom:586.110063px;}
.yd68_c00001{bottom:586.110630px;}
.y14aa_c00001{bottom:586.111107px;}
.y2fd5_c00001{bottom:586.260000px;}
.ycbd_c00001{bottom:586.290450px;}
.y993_c00001{bottom:586.380450px;}
.y430_c00001{bottom:586.650450px;}
.y2180_c00001{bottom:586.650900px;}
.y995_c00001{bottom:586.740450px;}
.y3026_c00001{bottom:586.800000px;}
.y3e6_c00001{bottom:586.920450px;}
.y397e_c00001{bottom:587.010162px;}
.y9ae_c00001{bottom:587.010450px;}
.y21_c00001{bottom:587.100450px;}
.y3052_c00001{bottom:587.160000px;}
.y394d_c00001{bottom:587.279523px;}
.y7fc_c00001{bottom:587.280450px;}
.y1da9_c00001{bottom:587.340000px;}
.y1775_c00001{bottom:587.460450px;}
.yb7b_c00001{bottom:587.638218px;}
.y335c_c00001{bottom:587.700000px;}
.y2e2_c00001{bottom:587.729550px;}
.y2a16_c00001{bottom:587.730450px;}
.y36c7_c00001{bottom:587.731071px;}
.y242b_c00001{bottom:587.820450px;}
.y19d7_c00001{bottom:588.070080px;}
.y16dc_c00001{bottom:588.090450px;}
.y2aaa_c00001{bottom:588.179568px;}
.y2ab5_c00001{bottom:588.180105px;}
.y60e_c00001{bottom:588.180450px;}
.y2efd_c00001{bottom:588.240000px;}
.y1960_c00001{bottom:588.360450px;}
.y193a_c00001{bottom:588.420000px;}
.y373c_c00001{bottom:588.542115px;}
.y410_c00001{bottom:588.630450px;}
.y1d62_c00001{bottom:588.780000px;}
.y37df_c00001{bottom:588.810450px;}
.y1622_c00001{bottom:588.900450px;}
.y2faf_c00001{bottom:588.960000px;}
.y234b_c00001{bottom:588.990450px;}
.y33cf_c00001{bottom:589.081215px;}
.y1d2a_c00001{bottom:589.140000px;}
.y5a6_c00001{bottom:589.170450px;}
.y3bf_c00001{bottom:589.260450px;}
.yb90_c00001{bottom:589.350000px;}
.y20bf_c00001{bottom:589.350450px;}
.yb9_c00001{bottom:589.440450px;}
.y2bfa_c00001{bottom:589.440522px;}
.y1c5a_c00001{bottom:589.500000px;}
.y6de_c00001{bottom:589.530450px;}
.y26fa_c00001{bottom:589.620450px;}
.y1c2b_c00001{bottom:589.680000px;}
.y2dff_c00001{bottom:589.683960px;}
.y9bf_c00001{bottom:589.710450px;}
.y10e_c00001{bottom:589.800450px;}
.y733_c00001{bottom:589.980450px;}
.y154e_c00001{bottom:590.070450px;}
.y1452_c00001{bottom:590.160450px;}
.y633_c00001{bottom:590.250450px;}
.y3889_c00001{bottom:590.334411px;}
.y1438_c00001{bottom:590.340450px;}
.y2da9_c00001{bottom:590.400000px;}
.y1fe0_c00001{bottom:590.430450px;}
.y392f_c00001{bottom:590.520450px;}
.y2c80_c00001{bottom:590.695095px;}
.y2c6f_c00001{bottom:590.698389px;}
.y3606_c00001{bottom:590.700162px;}
.y272_c00001{bottom:590.700450px;}
.y1992_c00001{bottom:590.760000px;}
.y104d_c00001{bottom:590.790450px;}
.y13c6_c00001{bottom:590.880450px;}
.y47_c00001{bottom:590.970450px;}
.y1194_c00001{bottom:591.060450px;}
.y275f_c00001{bottom:591.062115px;}
.y1d2e_c00001{bottom:591.120000px;}
.y2e62_c00001{bottom:591.127020px;}
.y2b14_c00001{bottom:591.148467px;}
.y38b4_c00001{bottom:591.150450px;}
.y342a_c00001{bottom:591.240450px;}
.y2f78_c00001{bottom:591.300000px;}
.y1ba0_c00001{bottom:591.480000px;}
.y904_c00001{bottom:591.510450px;}
.y1320_c00001{bottom:591.517938px;}
.y1a6a_c00001{bottom:591.660000px;}
.y855_c00001{bottom:591.690450px;}
.y39f5_c00001{bottom:591.870000px;}
.ye00_c00001{bottom:591.960450px;}
.y1efb_c00001{bottom:592.020000px;}
.y2301_c00001{bottom:592.140450px;}
.yf58_c00001{bottom:592.140729px;}
.yb42_c00001{bottom:592.230450px;}
.y2acd_c00001{bottom:592.320450px;}
.y132f_c00001{bottom:592.324056px;}
.yd1b_c00001{bottom:592.410450px;}
.y24e5_c00001{bottom:592.495743px;}
.y10fb_c00001{bottom:592.500450px;}
.y3303_c00001{bottom:592.560000px;}
.y387_c00001{bottom:592.590450px;}
.y1813_c00001{bottom:592.590600px;}
.y3e5_c00001{bottom:592.680450px;}
.y2538_c00001{bottom:592.769100px;}
.y203a_c00001{bottom:592.859550px;}
.ya5b_c00001{bottom:592.860450px;}
.y1088_c00001{bottom:592.950450px;}
.y129b_c00001{bottom:592.956849px;}
.y536_c00001{bottom:593.040450px;}
.y2233_c00001{bottom:593.129127px;}
.y76d_c00001{bottom:593.130450px;}
.y1603_c00001{bottom:593.130540px;}
.ye6e_c00001{bottom:593.400450px;}
.y2f06_c00001{bottom:593.460000px;}
.ya41_c00001{bottom:593.580450px;}
.y3567_c00001{bottom:593.760450px;}
.y3716_c00001{bottom:593.760549px;}
.y1a6b_c00001{bottom:593.820000px;}
.y2255_c00001{bottom:593.850450px;}
.yf44_c00001{bottom:593.940450px;}
.y2e34_c00001{bottom:594.000000px;}
.y12aa_c00001{bottom:594.209100px;}
.y23a9_c00001{bottom:594.210450px;}
.y1332_c00001{bottom:594.300450px;}
.y2f3c_c00001{bottom:594.360000px;}
.y12ac_c00001{bottom:594.390450px;}
.y189e_c00001{bottom:594.480450px;}
.ye30_c00001{bottom:594.481305px;}
.y1b6_c00001{bottom:594.570450px;}
.y173c_c00001{bottom:594.660450px;}
.y1dfa_c00001{bottom:594.720000px;}
.yf2d_c00001{bottom:594.750450px;}
.y2618_c00001{bottom:594.930549px;}
.y2383_c00001{bottom:595.020450px;}
.y1e32_c00001{bottom:595.080000px;}
.y4af_c00001{bottom:595.200450px;}
.y1e6a_c00001{bottom:595.260000px;}
.y2516_c00001{bottom:595.285815px;}
.y1534_c00001{bottom:595.380450px;}
.y1b0a_c00001{bottom:595.447020px;}
.y2c4d_c00001{bottom:595.470450px;}
.y2b42_c00001{bottom:595.472529px;}
.ydb4_c00001{bottom:595.560450px;}
.y32b7_c00001{bottom:595.620000px;}
.y57b_c00001{bottom:595.650450px;}
.y2458_c00001{bottom:595.740450px;}
.y369a_c00001{bottom:595.831674px;}
.y1655_c00001{bottom:595.920450px;}
.yf9b_c00001{bottom:595.920648px;}
.y326e_c00001{bottom:595.980000px;}
.y311e_c00001{bottom:596.160000px;}
.y5d2_c00001{bottom:596.550450px;}
.y3809_c00001{bottom:596.640450px;}
.y1382_c00001{bottom:596.820450px;}
.y29b0_c00001{bottom:597.000450px;}
.y3161_c00001{bottom:597.060000px;}
.y14f1_c00001{bottom:597.090450px;}
.yc2e_c00001{bottom:597.180450px;}
.y2bb8_c00001{bottom:597.357507px;}
.y2724_c00001{bottom:597.359568px;}
.y285a_c00001{bottom:597.360450px;}
.y20e5_c00001{bottom:597.360522px;}
.y1cda_c00001{bottom:597.423060px;}
.ye99_c00001{bottom:597.450450px;}
.y13bd_c00001{bottom:597.450729px;}
.y2699_c00001{bottom:597.539937px;}
.y1ff6_c00001{bottom:597.540450px;}
.y31e4_c00001{bottom:597.600000px;}
.y2110_c00001{bottom:597.720450px;}
.y39d0_c00001{bottom:597.810450px;}
.y339c_c00001{bottom:597.900450px;}
.y4b1_c00001{bottom:597.990450px;}
.y35ea_c00001{bottom:598.079550px;}
.y26dc_c00001{bottom:598.079568px;}
.y137_c00001{bottom:598.080450px;}
.y6a0_c00001{bottom:598.170450px;}
.y17fd_c00001{bottom:598.350450px;}
.y3595_c00001{bottom:598.528200px;}
.y322_c00001{bottom:598.530450px;}
.y27d3_c00001{bottom:598.620081px;}
.y138c_c00001{bottom:598.710450px;}
.y2a4d_c00001{bottom:598.800000px;}
.y2a30_c00001{bottom:598.800450px;}
.y30d2_c00001{bottom:598.860000px;}
.y2423_c00001{bottom:598.890450px;}
.y3a1f_c00001{bottom:598.894725px;}
.y34c_c00001{bottom:598.980450px;}
.y2990_c00001{bottom:598.980522px;}
.y1c9f_c00001{bottom:599.040000px;}
.y930_c00001{bottom:599.160450px;}
.y318d_c00001{bottom:599.220000px;}
.y1678_c00001{bottom:599.250450px;}
.y6bb_c00001{bottom:599.340450px;}
.y14d2_c00001{bottom:599.340540px;}
.y183e_c00001{bottom:599.431251px;}
.y74d_c00001{bottom:599.700450px;}
.y673_c00001{bottom:599.790450px;}
.y31fc_c00001{bottom:599.934420px;}
.y22cf_c00001{bottom:599.970009px;}
.y457_c00001{bottom:599.970450px;}
.y884_c00001{bottom:600.060450px;}
.y3072_c00001{bottom:600.120000px;}
.y1202_c00001{bottom:600.150450px;}
.y188_c00001{bottom:600.240450px;}
.y13c5_c00001{bottom:600.330450px;}
.y2071_c00001{bottom:600.420162px;}
.y555_c00001{bottom:600.420450px;}
.y2325_c00001{bottom:600.509271px;}
.y165f_c00001{bottom:600.510450px;}
.y265b_c00001{bottom:600.599928px;}
.y3291_c00001{bottom:600.660000px;}
.y21ed_c00001{bottom:600.780450px;}
.y1ec8_c00001{bottom:600.840000px;}
.y394c_c00001{bottom:601.049811px;}
.yd96_c00001{bottom:601.050450px;}
.y1489_c00001{bottom:601.230450px;}
.y35d2_c00001{bottom:601.320450px;}
.yc74_c00001{bottom:601.322898px;}
.y2d7a_c00001{bottom:601.380000px;}
.y1a6c_c00001{bottom:601.560000px;}
.y1412_c00001{bottom:601.590450px;}
.y1ab2_c00001{bottom:601.740000px;}
.y225_c00001{bottom:601.860450px;}
.y32db_c00001{bottom:601.920000px;}
.y19d6_c00001{bottom:601.927020px;}
.y16fd_c00001{bottom:601.950450px;}
.y365_c00001{bottom:602.040450px;}
.y30fa_c00001{bottom:602.100000px;}
.y337c_c00001{bottom:602.130450px;}
.y1594_c00001{bottom:602.130540px;}
.y2dd1_c00001{bottom:602.280000px;}
.y22e9_c00001{bottom:602.310450px;}
.y1e4_c00001{bottom:602.400450px;}
.y1868_c00001{bottom:602.490450px;}
.y29f1_c00001{bottom:602.578389px;}
.y20a6_c00001{bottom:602.579568px;}
.y184f_c00001{bottom:602.580450px;}
.y2874_c00001{bottom:602.580522px;}
.y3649_c00001{bottom:602.670450px;}
.y357b_c00001{bottom:602.760450px;}
.y34b9_c00001{bottom:602.940450px;}
.y2ebb_c00001{bottom:603.000000px;}
.y2af8_c00001{bottom:603.030081px;}
.y18dd_c00001{bottom:603.030450px;}
.yc9c_c00001{bottom:603.033546px;}
.y123b_c00001{bottom:603.120450px;}
.y1b9a_c00001{bottom:603.180000px;}
.y2e1_c00001{bottom:603.210000px;}
.y161_c00001{bottom:603.210450px;}
.y21c9_c00001{bottom:603.297039px;}
.y21be_c00001{bottom:603.298686px;}
.y1be6_c00001{bottom:603.360000px;}
.y4d7_c00001{bottom:603.390450px;}
.y3322_c00001{bottom:603.540000px;}
.y2ae1_c00001{bottom:603.570450px;}
.y36c6_c00001{bottom:603.570972px;}
.ydd7_c00001{bottom:603.572790px;}
.y2bae_c00001{bottom:603.660450px;}
.yc46_c00001{bottom:603.750450px;}
.y7a8_c00001{bottom:603.840450px;}
.y17b9_c00001{bottom:604.020450px;}
.y2ff6_c00001{bottom:604.080000px;}
.y3888_c00001{bottom:604.104699px;}
.y2560_c00001{bottom:604.110450px;}
.y38fc_c00001{bottom:604.200450px;}
.y23cc_c00001{bottom:604.289640px;}
.ye9_c00001{bottom:604.290450px;}
.y373b_c00001{bottom:604.382016px;}
.y2fae_c00001{bottom:604.440000px;}
.y16b9_c00001{bottom:604.470450px;}
.yf9a_c00001{bottom:604.560450px;}
.y28b2_c00001{bottom:604.650450px;}
.y38ec_c00001{bottom:604.740450px;}
.y2e61_c00001{bottom:604.803060px;}
.y554_c00001{bottom:604.830450px;}
.yae9_c00001{bottom:604.920450px;}
.y17a1_c00001{bottom:605.100450px;}
.y94a_c00001{bottom:605.190450px;}
.y33d0_c00001{bottom:605.190522px;}
.yd67_c00001{bottom:605.191125px;}
.ycbc_c00001{bottom:605.280450px;}
.y343a_c00001{bottom:605.370450px;}
.y2b41_c00001{bottom:605.372520px;}
.y2491_c00001{bottom:605.459937px;}
.y7d5_c00001{bottom:605.460450px;}
.y2135_c00001{bottom:605.460522px;}
.y732_c00001{bottom:605.640450px;}
.y11bc_c00001{bottom:605.730450px;}
.yff5_c00001{bottom:605.820450px;}
.y6a_c00001{bottom:605.910450px;}
.y215b_c00001{bottom:605.999568px;}
.y1f1a_c00001{bottom:606.000450px;}
.y3073_c00001{bottom:606.060000px;}
.y789_c00001{bottom:606.090450px;}
.y1f42_c00001{bottom:606.095985px;}
.y86e_c00001{bottom:606.180450px;}
.y15cc_c00001{bottom:606.270450px;}
.y248_c00001{bottom:606.360450px;}
.y36e0_c00001{bottom:606.447930px;}
.y2ae_c00001{bottom:606.450000px;}
.y37ef_c00001{bottom:606.450009px;}
.y654_c00001{bottom:606.450450px;}
.y20_c00001{bottom:606.540450px;}
.y2f77_c00001{bottom:606.600000px;}
.y7aa_c00001{bottom:606.630450px;}
.y488_c00001{bottom:606.810450px;}
.yd8c_c00001{bottom:606.813735px;}
.y275e_c00001{bottom:606.902016px;}
.y2ff7_c00001{bottom:606.960000px;}
.y1757_c00001{bottom:606.990450px;}
.y32b6_c00001{bottom:607.140000px;}
.y2ce0_c00001{bottom:607.168830px;}
.y813_c00001{bottom:607.170450px;}
.y2d0a_c00001{bottom:607.260450px;}
.y1a24_c00001{bottom:607.327020px;}
.y25d2_c00001{bottom:607.349496px;}
.y42f_c00001{bottom:607.350450px;}
.ybbd_c00001{bottom:607.443114px;}
.y3025_c00001{bottom:607.500000px;}
.y1b54_c00001{bottom:607.513140px;}
.y9fa_c00001{bottom:607.530450px;}
.y24b1_c00001{bottom:607.620153px;}
.y1939_c00001{bottom:607.680000px;}
.y34a8_c00001{bottom:607.710450px;}
.y2975_c00001{bottom:607.799523px;}
.yaf9_c00001{bottom:607.800450px;}
.y281b_c00001{bottom:607.800522px;}
.y35d1_c00001{bottom:607.890450px;}
.y29c0_c00001{bottom:607.979712px;}
.y33ce_c00001{bottom:607.980540px;}
.y1dfb_c00001{bottom:608.040000px;}
.y271_c00001{bottom:608.070450px;}
.y219f_c00001{bottom:608.071350px;}
.y1fc4_c00001{bottom:608.160450px;}
.y632_c00001{bottom:608.250450px;}
.ybc4_c00001{bottom:608.256237px;}
.y335b_c00001{bottom:608.400000px;}
.y6f7_c00001{bottom:608.520450px;}
.y3237_c00001{bottom:608.605200px;}
.y5f3_c00001{bottom:608.610450px;}
.y2efc_c00001{bottom:608.760000px;}
.y2ac_c00001{bottom:608.790450px;}
.y841_c00001{bottom:608.880450px;}
.ye6d_c00001{bottom:608.970000px;}
.y18bd_c00001{bottom:608.970450px;}
.y2af_c00001{bottom:609.060450px;}
.y2e33_c00001{bottom:609.120000px;}
.y1b09_c00001{bottom:609.123060px;}
.y295e_c00001{bottom:609.240450px;}
.y1efa_c00001{bottom:609.300000px;}
.y209_c00001{bottom:609.330450px;}
.y5a5_c00001{bottom:609.420450px;}
.y2e92_c00001{bottom:609.480000px;}
.y3715_c00001{bottom:609.600450px;}
.y1e6c_c00001{bottom:609.660000px;}
.y362a_c00001{bottom:609.690450px;}
.y2d2e_c00001{bottom:609.766014px;}
.y100a_c00001{bottom:609.780450px;}
.y1c27_c00001{bottom:609.840000px;}
.yb0e_c00001{bottom:609.870450px;}
.y2aa9_c00001{bottom:609.959496px;}
.y2ab4_c00001{bottom:609.960033px;}
.yb8_c00001{bottom:610.140450px;}
.y3be_c00001{bottom:610.230450px;}
.yaa5_c00001{bottom:610.500450px;}
.y2537_c00001{bottom:610.589100px;}
.y1b5_c00001{bottom:610.770450px;}
.y1464_c00001{bottom:610.860450px;}
.y10d_c00001{bottom:610.950450px;}
.y39b8_c00001{bottom:611.040450px;}
.y2d57_c00001{bottom:611.128260px;}
.ydff_c00001{bottom:611.130450px;}
.y1774_c00001{bottom:611.220450px;}
.y1cd9_c00001{bottom:611.280000px;}
.yd1a_c00001{bottom:611.400450px;}
.yb7c_c00001{bottom:611.578002px;}
.y3699_c00001{bottom:611.671575px;}
.y3510_c00001{bottom:611.760450px;}
.y2da8_c00001{bottom:611.820000px;}
.y2be5_c00001{bottom:611.850450px;}
.y16db_c00001{bottom:611.940450px;}
.y1c28_c00001{bottom:612.000000px;}
.y291c_c00001{bottom:612.030450px;}
.y270_c00001{bottom:612.120450px;}
.y1602_c00001{bottom:612.121125px;}
.y3290_c00001{bottom:612.180000px;}
.y5a7_c00001{bottom:612.210450px;}
.y386_c00001{bottom:612.300450px;}
.y8e_c00001{bottom:612.390450px;}
.y2c7f_c00001{bottom:612.475023px;}
.y2c6e_c00001{bottom:612.478317px;}
.y2382_c00001{bottom:612.569712px;}
.y7fb_c00001{bottom:612.570450px;}
.y34ce_c00001{bottom:612.659712px;}
.y76c_c00001{bottom:612.840450px;}
.y1321_c00001{bottom:612.848514px;}
.y304f_c00001{bottom:612.900000px;}
.y2b13_c00001{bottom:612.928395px;}
.y2a15_c00001{bottom:613.110450px;}
.y10fa_c00001{bottom:613.200450px;}
.yb91_c00001{bottom:613.290450px;}
.y1faa_c00001{bottom:613.380450px;}
.ye2f_c00001{bottom:613.380630px;}
.y326d_c00001{bottom:613.440000px;}
.y2676_c00001{bottom:613.470450px;}
.yf05_c00001{bottom:613.560450px;}
.y3994_c00001{bottom:613.650450px;}
.y1330_c00001{bottom:613.654632px;}
.y2805_c00001{bottom:613.830450px;}
.y20be_c00001{bottom:613.920450px;}
.y333d_c00001{bottom:613.980000px;}
.y535_c00001{bottom:614.010450px;}
.y1c9e_c00001{bottom:614.160000px;}
.y2fd4_c00001{bottom:614.167020px;}
.y38b5_c00001{bottom:614.190450px;}
.y24e4_c00001{bottom:614.366256px;}
.y57a_c00001{bottom:614.370450px;}
.y2841_c00001{bottom:614.460450px;}
.y1c58_c00001{bottom:614.520000px;}
.y992_c00001{bottom:614.640450px;}
.y3a1e_c00001{bottom:614.734626px;}
.y1b4_c00001{bottom:614.820450px;}
.y2232_c00001{bottom:614.909055px;}
.y394b_c00001{bottom:614.909874px;}
.y2054_c00001{bottom:614.910450px;}
.y4ae_c00001{bottom:615.000450px;}
.y12ab_c00001{bottom:615.090450px;}
.y113f_c00001{bottom:615.180360px;}
.y1e2f_c00001{bottom:615.240000px;}
.y2b40_c00001{bottom:615.272511px;}
.yf2c_c00001{bottom:615.450450px;}
.y26b0_c00001{bottom:615.540450px;}
.y3566_c00001{bottom:615.630450px;}
.y102f_c00001{bottom:615.720450px;}
.y19d5_c00001{bottom:615.783960px;}
.y2300_c00001{bottom:615.900450px;}
.y324d_c00001{bottom:615.960000px;}
.yf99_c00001{bottom:615.990450px;}
.y1e9b_c00001{bottom:616.140000px;}
.y352a_c00001{bottom:616.255230px;}
.y3656_c00001{bottom:616.350450px;}
.y4c5_c00001{bottom:616.440450px;}
.y1812_c00001{bottom:616.440600px;}
.y9ad_c00001{bottom:616.710450px;}
.y1d27_c00001{bottom:616.860000px;}
.y1b9d_c00001{bottom:617.040000px;}
.y2515_c00001{bottom:617.065743px;}
.y31fb_c00001{bottom:617.220000px;}
.y2a2f_c00001{bottom:617.250450px;}
.y168e_c00001{bottom:617.340450px;}
.y315f_c00001{bottom:617.400000px;}
.y33b2_c00001{bottom:617.430450px;}
.y1867_c00001{bottom:617.520450px;}
.y2dd0_c00001{bottom:617.580000px;}
.y5d1_c00001{bottom:617.610450px;}
.yff4_c00001{bottom:617.700450px;}
.y3402_c00001{bottom:617.790450px;}
.y3887_c00001{bottom:617.874987px;}
.y903_c00001{bottom:617.880450px;}
.y1ec7_c00001{bottom:617.940000px;}
.y321_c00001{bottom:618.060450px;}
.y854_c00001{bottom:618.150450px;}
.y189d_c00001{bottom:618.330450px;}
.y14d1_c00001{bottom:618.331125px;}
.y178d_c00001{bottom:618.420450px;}
.y173b_c00001{bottom:618.510450px;}
.y2c4c_c00001{bottom:618.600450px;}
.y2e60_c00001{bottom:618.660000px;}
.y2e0_c00001{bottom:618.690450px;}
.y136_c00001{bottom:618.780450px;}
.y2dfe_c00001{bottom:618.840000px;}
.y69f_c00001{bottom:618.870450px;}
.y1f5e_c00001{bottom:618.960450px;}
.y1dab_c00001{bottom:619.020000px;}
.y2c4e_c00001{bottom:619.050000px;}
.y23fe_c00001{bottom:619.050450px;}
.y2bb7_c00001{bottom:619.137435px;}
.y2723_c00001{bottom:619.139496px;}
.y160_c00001{bottom:619.140450px;}
.y32da_c00001{bottom:619.200000px;}
.y60d_c00001{bottom:619.230450px;}
.ya5a_c00001{bottom:619.320450px;}
.y269c_c00001{bottom:619.410450px;}
.y36c5_c00001{bottom:619.410873px;}
.yc75_c00001{bottom:619.413006px;}
.y672_c00001{bottom:619.500450px;}
.yfda_c00001{bottom:619.590450px;}
.y34b_c00001{bottom:619.680450px;}
.y1c29_c00001{bottom:619.740000px;}
.y346a_c00001{bottom:619.770450px;}
.y1201_c00001{bottom:619.860450px;}
.y1be7_c00001{bottom:619.920000px;}
.y26db_c00001{bottom:619.950081px;}
.y1621_c00001{bottom:619.950450px;}
.y210b_c00001{bottom:620.219496px;}
.y373a_c00001{bottom:620.221917px;}
.y2a6d_c00001{bottom:620.310450px;}
.y27d2_c00001{bottom:620.400009px;}
.y74c_c00001{bottom:620.400450px;}
.y1d60_c00001{bottom:620.460000px;}
.y20e4_c00001{bottom:620.580450px;}
.y1dac_c00001{bottom:620.640000px;}
.y92f_c00001{bottom:620.670450px;}
.y1f78_c00001{bottom:620.760450px;}
.y2698_c00001{bottom:620.850450px;}
.y187_c00001{bottom:620.940450px;}
.y1a23_c00001{bottom:621.003060px;}
.y3439_c00001{bottom:621.030450px;}
.y1593_c00001{bottom:621.120063px;}
.y34e4_c00001{bottom:621.120450px;}
.yc9d_c00001{bottom:621.123807px;}
.y1451_c00001{bottom:621.210450px;}
.y2bad_c00001{bottom:621.210522px;}
.y1b53_c00001{bottom:621.370080px;}
.y25f8_c00001{bottom:621.390450px;}
.y1272_c00001{bottom:621.480450px;}
.y2c4f_c00001{bottom:621.660450px;}
.y1a67_c00001{bottom:621.720000px;}
.y22ce_c00001{bottom:621.749937px;}
.y13c4_c00001{bottom:621.750450px;}
.y1515_c00001{bottom:621.751215px;}
.y3459_c00001{bottom:621.840450px;}
.y46_c00001{bottom:622.020450px;}
.y2d79_c00001{bottom:622.080000px;}
.y50c_c00001{bottom:622.110450px;}
.y298f_c00001{bottom:622.200450px;}
.y2fb2_c00001{bottom:622.260000px;}
.y2324_c00001{bottom:622.289199px;}
.y1fdf_c00001{bottom:622.290450px;}
.y357a_c00001{bottom:622.470450px;}
.ydd6_c00001{bottom:622.562700px;}
.y364_c00001{bottom:622.740450px;}
.y275d_c00001{bottom:622.741917px;}
.y1822_c00001{bottom:622.920450px;}
.y1938_c00001{bottom:622.980000px;}
.y2a6e_c00001{bottom:623.100450px;}
.y2b80_c00001{bottom:623.190450px;}
.yb41_c00001{bottom:623.280450px;}
.y38fb_c00001{bottom:623.370648px;}
.y2276_c00001{bottom:623.460450px;}
.y7a7_c00001{bottom:623.550450px;}
.y30d1_c00001{bottom:623.700000px;}
.y18dc_c00001{bottom:623.730450px;}
.yebc_c00001{bottom:623.820450px;}
.y1a68_c00001{bottom:623.880000px;}
.y2013_c00001{bottom:623.910081px;}
.ybf0_c00001{bottom:623.910450px;}
.y1087_c00001{bottom:624.000450px;}
.y4d6_c00001{bottom:624.090450px;}
.ycbb_c00001{bottom:624.270450px;}
.y29f0_c00001{bottom:624.358317px;}
.y20a5_c00001{bottom:624.359496px;}
.y287c_c00001{bottom:624.360450px;}
.y3714_c00001{bottom:624.450000px;}
.ye6c_c00001{bottom:624.450450px;}
.y1e3_c00001{bottom:624.540450px;}
.y3324_c00001{bottom:624.594420px;}
.y2d09_c00001{bottom:624.720009px;}
.y2638_c00001{bottom:624.720450px;}
.yf43_c00001{bottom:624.810450px;}
.y1568_c00001{bottom:624.813960px;}
.y2af7_c00001{bottom:624.900594px;}
.y318b_c00001{bottom:624.960000px;}
.yff3_c00001{bottom:625.080450px;}
.y30f8_c00001{bottom:625.140000px;}
.y21c8_c00001{bottom:625.167552px;}
.y21bd_c00001{bottom:625.169199px;}
.y2b3f_c00001{bottom:625.172502px;}
.ye8_c00001{bottom:625.260450px;}
.y21ec_c00001{bottom:625.350450px;}
.y247_c00001{bottom:625.440450px;}
.y333e_c00001{bottom:625.500000px;}
.y16fc_c00001{bottom:625.710450px;}
.y17a0_c00001{bottom:625.800450px;}
.yd8b_c00001{bottom:625.803645px;}
.y3050_c00001{bottom:625.860000px;}
.yaba_c00001{bottom:625.890450px;}
.y38eb_c00001{bottom:625.980450px;}
.y23cb_c00001{bottom:626.069568px;}
.y653_c00001{bottom:626.070450px;}
.y2aa_c00001{bottom:626.160000px;}
.y15cb_c00001{bottom:626.160450px;}
.y3370_c00001{bottom:626.220000px;}
.y631_c00001{bottom:626.250450px;}
.y113e_c00001{bottom:626.339991px;}
.y2743_c00001{bottom:626.340450px;}
.y1dae_c00001{bottom:626.400000px;}
.y1533_c00001{bottom:626.430450px;}
.yceb_c00001{bottom:626.520450px;}
.y1ef9_c00001{bottom:626.580000px;}
.ydb3_c00001{bottom:626.610450px;}
.y1cd8_c00001{bottom:626.760000px;}
.y788_c00001{bottom:626.790450px;}
.y1e30_c00001{bottom:626.940000px;}
.y12f9_c00001{bottom:626.970450px;}
.y28ec_c00001{bottom:627.060450px;}
.y2617_c00001{bottom:627.150450px;}
.y2136_c00001{bottom:627.240450px;}
.y2f76_c00001{bottom:627.300000px;}
.y2490_c00001{bottom:627.330450px;}
.y3832_c00001{bottom:627.420450px;}
.y487_c00001{bottom:627.510450px;}
.y3698_c00001{bottom:627.511476px;}
.y86d_c00001{bottom:627.600450px;}
.y340f_c00001{bottom:627.690450px;}
.y1756_c00001{bottom:627.780450px;}
.y215a_c00001{bottom:627.870081px;}
.y5a3_c00001{bottom:627.870450px;}
.yf57_c00001{bottom:627.960450px;}
.y2fd3_c00001{bottom:628.023960px;}
.y2a14_c00001{bottom:628.050450px;}
.y14f0_c00001{bottom:628.140450px;}
.y1df7_c00001{bottom:628.200000px;}
.y37ee_c00001{bottom:628.229937px;}
.y6f6_c00001{bottom:628.230450px;}
.y42e_c00001{bottom:628.320450px;}
.y2d1b_c00001{bottom:628.410450px;}
.y2536_c00001{bottom:628.499550px;}
.y2a9_c00001{bottom:628.500450px;}
.y1b9f_c00001{bottom:628.560000px;}
.y2e32_c00001{bottom:628.567020px;}
.y1e2_c00001{bottom:628.590450px;}
.y394a_c00001{bottom:628.680162px;}
.y731_c00001{bottom:628.680450px;}
.y2ab_c00001{bottom:628.770450px;}
.y2cdf_c00001{bottom:629.039343px;}
.y16a8_c00001{bottom:629.040450px;}
.y1f_c00001{bottom:629.040549px;}
.y3024_c00001{bottom:629.100000px;}
.y25d1_c00001{bottom:629.220009px;}
.y3bd_c00001{bottom:629.220450px;}
.y2c2a_c00001{bottom:629.310450px;}
.y24b0_c00001{bottom:629.400081px;}
.y2360_c00001{bottom:629.400450px;}
.y19d4_c00001{bottom:629.460000px;}
.y579_c00001{bottom:629.490450px;}
.yb56_c00001{bottom:629.580450px;}
.y2f3a_c00001{bottom:629.640000px;}
.y2039_c00001{bottom:629.670000px;}
.y28de_c00001{bottom:629.670450px;}
.y40f_c00001{bottom:629.850450px;}
.y1346_c00001{bottom:629.940450px;}
.y1e67_c00001{bottom:630.000000px;}
.y32ae_c00001{bottom:630.180000px;}
.yae8_c00001{bottom:630.210450px;}
.y1677_c00001{bottom:630.300450px;}
.y1f41_c00001{bottom:630.305850px;}
.y2e5f_c00001{bottom:630.360000px;}
.yd19_c00001{bottom:630.390450px;}
.y14a9_c00001{bottom:630.479415px;}
.y39f3_c00001{bottom:630.570000px;}
.yb0d_c00001{bottom:630.570450px;}
.y3a1d_c00001{bottom:630.574527px;}
.y3307_c00001{bottom:630.720000px;}
.y2450_c00001{bottom:630.750450px;}
.y1355_c00001{bottom:630.755076px;}
.yb7_c00001{bottom:630.840450px;}
.y1601_c00001{bottom:631.020450px;}
.y2e91_c00001{bottom:631.080000px;}
.y10c_c00001{bottom:631.110450px;}
.y12ea_c00001{bottom:631.200450px;}
.y1df8_c00001{bottom:631.260000px;}
.y3094_c00001{bottom:631.440000px;}
.y2457_c00001{bottom:631.470450px;}
.y6dd_c00001{bottom:631.560450px;}
.y1a69_c00001{bottom:631.620000px;}
.y3886_c00001{bottom:631.735050px;}
.y3070_c00001{bottom:631.800000px;}
.y190e_c00001{bottom:631.828260px;}
.y2aa8_c00001{bottom:631.830009px;}
.y26f_c00001{bottom:631.830450px;}
.y2ab3_c00001{bottom:631.830546px;}
.y8a1_c00001{bottom:631.920450px;}
.yf2b_c00001{bottom:632.010450px;}
.y385_c00001{bottom:632.100450px;}
.y3713_c00001{bottom:632.190450px;}
.y1488_c00001{bottom:632.280450px;}
.y5f2_c00001{bottom:632.370450px;}
.ye2e_c00001{bottom:632.370540px;}
.y3325_c00001{bottom:632.520000px;}
.y76b_c00001{bottom:632.550450px;}
.y1411_c00001{bottom:632.640450px;}
.y318c_c00001{bottom:632.700000px;}
.y3236_c00001{bottom:632.718900px;}
.y1b3_c00001{bottom:632.820450px;}
.y224_c00001{bottom:632.910450px;}
.yac6_c00001{bottom:633.090450px;}
.y2f32_c00001{bottom:633.240000px;}
.y1e9a_c00001{bottom:633.420000px;}
.y4ac_c00001{bottom:633.450450px;}
.y2343_c00001{bottom:633.540450px;}
.y1c9d_c00001{bottom:633.603060px;}
.y2be4_c00001{bottom:633.630450px;}
.y104c_c00001{bottom:633.720450px;}
.y31b4_c00001{bottom:633.780000px;}
.y15f_c00001{bottom:633.900450px;}
.y37de_c00001{bottom:633.990450px;}
.y39b7_c00001{bottom:634.080450px;}
.y39f4_c00001{bottom:634.170450px;}
.y2c7e_c00001{bottom:634.254951px;}
.y2c6d_c00001{bottom:634.258245px;}
.y840_c00001{bottom:634.260450px;}
.y2381_c00001{bottom:634.349640px;}
.y2b96_c00001{bottom:634.350450px;}
.y291b_c00001{bottom:634.620450px;}
.y1b06_c00001{bottom:634.680000px;}
.y2b12_c00001{bottom:634.798908px;}
.yc45_c00001{bottom:634.800450px;}
.y1a22_c00001{bottom:634.860000px;}
.y35e9_c00001{bottom:634.890000px;}
.y534_c00001{bottom:634.890450px;}
.y3543_c00001{bottom:634.980450px;}
.y1773_c00001{bottom:635.070450px;}
.y2b3e_c00001{bottom:635.072493px;}
.y111e_c00001{bottom:635.160450px;}
.y1ec6_c00001{bottom:635.220000px;}
.y1b52_c00001{bottom:635.227020px;}
.y2d56_c00001{bottom:635.241960px;}
.y3594_c00001{bottom:635.338650px;}
.y36c4_c00001{bottom:635.340549px;}
.yb7d_c00001{bottom:635.517786px;}
.y2053_c00001{bottom:635.610450px;}
.y16da_c00001{bottom:635.700450px;}
.y30f9_c00001{bottom:635.760000px;}
.y2675_c00001{bottom:635.970450px;}
.y3095_c00001{bottom:636.120000px;}
.y1991_c00001{bottom:636.125940px;}
.y24e3_c00001{bottom:636.146184px;}
.y2df_c00001{bottom:636.150450px;}
.y3739_c00001{bottom:636.151593px;}
.y5d0_c00001{bottom:636.240450px;}
.y7d4_c00001{bottom:636.330450px;}
.y1d25_c00001{bottom:636.480000px;}
.y3071_c00001{bottom:636.660000px;}
.y2acb_c00001{bottom:636.690450px;}
.y2231_c00001{bottom:636.779568px;}
.y23fd_c00001{bottom:636.870450px;}
.y69_c00001{bottom:636.960450px;}
.y2840_c00001{bottom:637.050450px;}
.yb92_c00001{bottom:637.230450px;}
.y2070_c00001{bottom:637.230612px;}
.y36df_c00001{bottom:637.318560px;}
.y339b_c00001{bottom:637.320450px;}
.yf98_c00001{bottom:637.410450px;}
.yc76_c00001{bottom:637.412934px;}
.y2a2e_c00001{bottom:637.500450px;}
.y3605_c00001{bottom:637.680450px;}
.y2ff4_c00001{bottom:637.740000px;}
.y991_c00001{bottom:637.770000px;}
.y320_c00001{bottom:637.770450px;}
.y1d26_c00001{bottom:638.100000px;}
.y26af_c00001{bottom:638.130450px;}
.y812_c00001{bottom:638.220450px;}
.y1d28_c00001{bottom:638.280000px;}
.y3579_c00001{bottom:638.310450px;}
.y9f9_c00001{bottom:638.580450px;}
.y275c_c00001{bottom:638.581818px;}
.y456_c00001{bottom:638.670450px;}
.ya0f_c00001{bottom:638.850450px;}
.y2514_c00001{bottom:638.936256px;}
.y2bce_c00001{bottom:639.120450px;}
.y11bb_c00001{bottom:639.210450px;}
.yc9e_c00001{bottom:639.214068px;}
.y671_c00001{bottom:639.300450px;}
.y1b08_c00001{bottom:639.360000px;}
.y135_c00001{bottom:639.480450px;}
.y2dfd_c00001{bottom:639.540000px;}
.y1200_c00001{bottom:639.570450px;}
.y381a_c00001{bottom:639.660450px;}
.y2a8d_c00001{bottom:639.750450px;}
.y34e3_c00001{bottom:639.840450px;}
.y1c25_c00001{bottom:639.900000px;}
.yd44_c00001{bottom:639.930450px;}
.y2087_c00001{bottom:640.020450px;}
.y69e_c00001{bottom:640.110450px;}
.y1713_c00001{bottom:640.200450px;}
.y1811_c00001{bottom:640.200600px;}
.y2696_c00001{bottom:640.290450px;}
.y208_c00001{bottom:640.380450px;}
.y7c6_c00001{bottom:640.560450px;}
.y1514_c00001{bottom:640.650540px;}
.y3386_c00001{bottom:640.656093px;}
.y3438_c00001{bottom:640.740450px;}
.y1009_c00001{bottom:640.830450px;}
.y34a_c00001{bottom:640.920450px;}
.y219e_c00001{bottom:640.920900px;}
.y2275_c00001{bottom:641.007435px;}
.y2bb6_c00001{bottom:641.007948px;}
.y2722_c00001{bottom:641.010009px;}
.y2c4a_c00001{bottom:641.100450px;}
.y2788_c00001{bottom:641.280450px;}
.y19d2_c00001{bottom:641.340000px;}
.y293b_c00001{bottom:641.370450px;}
.y29af_c00001{bottom:641.460000px;}
.y2254_c00001{bottom:641.460450px;}
.y1df9_c00001{bottom:641.520000px;}
.y2c4b_c00001{bottom:641.550000px;}
.y186_c00001{bottom:641.550450px;}
.ydd5_c00001{bottom:641.552610px;}
.y74b_c00001{bottom:641.640450px;}
.y2fd2_c00001{bottom:641.700000px;}
.y26da_c00001{bottom:641.730009px;}
.y3808_c00001{bottom:641.730450px;}
.y3323_c00001{bottom:641.880000px;}
.y246_c00001{bottom:641.910450px;}
.y1c26_c00001{bottom:642.060000px;}
.y210a_c00001{bottom:642.090009px;}
.y102e_c00001{bottom:642.090450px;}
.y178c_c00001{bottom:642.180450px;}
.y173a_c00001{bottom:642.270450px;}
.y2637_c00001{bottom:642.270522px;}
.y2c27_c00001{bottom:642.360450px;}
.y2e31_c00001{bottom:642.423960px;}
.y3949_c00001{bottom:642.450450px;}
.y2fa7_c00001{bottom:642.600000px;}
.y92e_c00001{bottom:642.630450px;}
.y2471_c00001{bottom:642.720450px;}
.y2d78_c00001{bottom:642.780000px;}
.y50b_c00001{bottom:642.810450px;}
.ybef_c00001{bottom:642.900450px;}
.y17ce_c00001{bottom:642.990450px;}
.y367c_c00001{bottom:643.080450px;}
.y9ac_c00001{bottom:643.170450px;}
.y123a_c00001{bottom:643.259874px;}
.y853_c00001{bottom:643.260450px;}
.y1e68_c00001{bottom:643.320000px;}
.y298e_c00001{bottom:643.347039px;}
.y7a6_c00001{bottom:643.350450px;}
.y8d_c00001{bottom:643.440450px;}
.y3697_c00001{bottom:643.441152px;}
.y1b07_c00001{bottom:643.500000px;}
.y7fa_c00001{bottom:643.620450px;}
.y1937_c00001{bottom:643.680000px;}
.y3458_c00001{bottom:643.710450px;}
.y1567_c00001{bottom:643.713285px;}
.y2616_c00001{bottom:643.800450px;}
.y1ef8_c00001{bottom:643.860000px;}
.ye50_c00001{bottom:643.890450px;}
.y3bc_c00001{bottom:644.070450px;}
.y2323_c00001{bottom:644.159712px;}
.y2a6_c00001{bottom:644.160450px;}
.y2da7_c00001{bottom:644.225040px;}
.y2d2d_c00001{bottom:644.237508px;}
.y553_c00001{bottom:644.250450px;}
.yc15_c00001{bottom:644.340450px;}
.y18db_c00001{bottom:644.430450px;}
.y28cb_c00001{bottom:644.520450px;}
.y326c_c00001{bottom:644.580000px;}
.ya59_c00001{bottom:644.610450px;}
.y1143_c00001{bottom:644.700450px;}
.yd8a_c00001{bottom:644.793555px;}
.y29bf_c00001{bottom:644.879100px;}
.y1e_c00001{bottom:644.880450px;}
.y3227_c00001{bottom:644.978991px;}
.y22cd_c00001{bottom:645.060450px;}
.y2b3d_c00001{bottom:645.062124px;}
.y2f05_c00001{bottom:645.120000px;}
.y2c29_c00001{bottom:645.150450px;}
.y397d_c00001{bottom:645.240450px;}
.y2f39_c00001{bottom:645.300000px;}
.y2873_c00001{bottom:645.330450px;}
.ye7_c00001{bottom:645.420450px;}
.y3885_c00001{bottom:645.505338px;}
.y3494_c00001{bottom:645.509937px;}
.y4d5_c00001{bottom:645.510450px;}
.y1153_c00001{bottom:645.518082px;}
.yebb_c00001{bottom:645.600450px;}
.y2012_c00001{bottom:645.690009px;}
.y60c_c00001{bottom:645.690450px;}
.y652_c00001{bottom:645.870450px;}
.y17fc_c00001{bottom:645.960450px;}
.y38ea_c00001{bottom:646.140162px;}
.y1d5f_c00001{bottom:646.200000px;}
.y29ef_c00001{bottom:646.228830px;}
.y295c_c00001{bottom:646.229271px;}
.y20a4_c00001{bottom:646.230009px;}
.y2535_c00001{bottom:646.319550px;}
.y2b7f_c00001{bottom:646.320450px;}
.y1a1b_c00001{bottom:646.380000px;}
.yd18_c00001{bottom:646.500450px;}
.y3a1c_c00001{bottom:646.504203px;}
.yf56_c00001{bottom:646.590450px;}
.y2d08_c00001{bottom:646.590522px;}
.y2af6_c00001{bottom:646.680522px;}
.y1da5_c00001{bottom:646.740000px;}
.y1821_c00001{bottom:646.770450px;}
.y12f8_c00001{bottom:646.860450px;}
.y21c7_c00001{bottom:646.947480px;}
.y21bc_c00001{bottom:646.949127px;}
.y248f_c00001{bottom:646.950450px;}
.y3712_c00001{bottom:647.040000px;}
.y1e2d_c00001{bottom:647.100000px;}
.yb0c_c00001{bottom:647.310450px;}
.y1c9c_c00001{bottom:647.460000px;}
.y4c4_c00001{bottom:647.490450px;}
.y3785_c00001{bottom:647.580450px;}
.y35ab_c00001{bottom:647.670450px;}
.y22ff_c00001{bottom:647.850450px;}
.y23ca_c00001{bottom:647.940081px;}
.y6f5_c00001{bottom:647.940450px;}
.y2f75_c00001{bottom:648.000000px;}
.y23f6_c00001{bottom:648.030450px;}
.y5a2_c00001{bottom:648.120450px;}
.y486_c00001{bottom:648.210450px;}
.y730_c00001{bottom:648.390450px;}
.y42d_c00001{bottom:648.480450px;}
.y30d0_c00001{bottom:648.540000px;}
.yab9_c00001{bottom:648.570450px;}
.y2f31_c00001{bottom:648.720000px;}
.y1437_c00001{bottom:648.750450px;}
.y1b51_c00001{bottom:648.903060px;}
.y2bf9_c00001{bottom:648.930450px;}
.y33cd_c00001{bottom:649.019928px;}
.y138b_c00001{bottom:649.020450px;}
.y86c_c00001{bottom:649.110450px;}
.y1b2_c00001{bottom:649.200450px;}
.y2456_c00001{bottom:649.290450px;}
.y19d3_c00001{bottom:649.440000px;}
.y1516_c00001{bottom:649.470450px;}
.y34cd_c00001{bottom:649.559100px;}
.y16fb_c00001{bottom:649.560450px;}
.y2159_c00001{bottom:649.650009px;}
.y39b5_c00001{bottom:649.650450px;}
.y28b1_c00001{bottom:649.740450px;}
.y1a1f_c00001{bottom:649.800000px;}
.y1990_c00001{bottom:649.801980px;}
.y27a5_c00001{bottom:650.010450px;}
.y1e1_c00001{bottom:650.100450px;}
.y2efb_c00001{bottom:650.160000px;}
.y578_c00001{bottom:650.190450px;}
.ya6b_c00001{bottom:650.280450px;}
.y2895_c00001{bottom:650.370450px;}
.yfd9_c00001{bottom:650.460450px;}
.ya40_c00001{bottom:650.550450px;}
.y1e99_c00001{bottom:650.700000px;}
.y40e_c00001{bottom:650.730450px;}
.y2cde_c00001{bottom:650.819271px;}
.y1600_c00001{bottom:650.820540px;}
.y5a4_c00001{bottom:650.910450px;}
.y25d0_c00001{bottom:650.999937px;}
.y1620_c00001{bottom:651.000450px;}
.y2ff5_c00001{bottom:651.060000px;}
.y3529_c00001{bottom:651.085752px;}
.y2859_c00001{bottom:651.090450px;}
.y36c3_c00001{bottom:651.180450px;}
.y15e_c00001{bottom:651.270450px;}
.y24af_c00001{bottom:651.270594px;}
.y5cf_c00001{bottom:651.360450px;}
.y2588_c00001{bottom:651.450450px;}
.ydfe_c00001{bottom:651.540450px;}
.y304d_c00001{bottom:651.600000px;}
.y17b8_c00001{bottom:651.630450px;}
.y384a_c00001{bottom:651.720450px;}
.y1a64_c00001{bottom:651.780000px;}
.y10b_c00001{bottom:651.810450px;}
.y3e4_c00001{bottom:651.900450px;}
.y26f9_c00001{bottom:651.990450px;}
.y3738_c00001{bottom:651.991494px;}
.yb6_c00001{bottom:652.080450px;}
.y2a4b_c00001{bottom:652.170450px;}
.y14a8_c00001{bottom:652.259343px;}
.y1450_c00001{bottom:652.260450px;}
.y1ab0_c00001{bottom:652.320000px;}
.y76a_c00001{bottom:652.350450px;}
.y1ec5_c00001{bottom:652.500000px;}
.y244f_c00001{bottom:652.530450px;}
.y15ca_c00001{bottom:652.620450px;}
.y328d_c00001{bottom:652.680000px;}
.y22ae_c00001{bottom:652.800450px;}
.y1be5_c00001{bottom:652.860000px;}
.y255f_c00001{bottom:652.890450px;}
.y27ba_c00001{bottom:652.980450px;}
.y45_c00001{bottom:653.070450px;}
.y6dc_c00001{bottom:653.160450px;}
.y990_c00001{bottom:653.250450px;}
.y2fd1_c00001{bottom:653.400000px;}
.y1347_c00001{bottom:653.430837px;}
.y2aa7_c00001{bottom:653.609937px;}
.y2ab2_c00001{bottom:653.610474px;}
.y455_c00001{bottom:653.700450px;}
.y32d9_c00001{bottom:653.760000px;}
.y883_c00001{bottom:653.790450px;}
.y1a65_c00001{bottom:653.940000px;}
.y3023_c00001{bottom:654.126120px;}
.y111d_c00001{bottom:654.150450px;}
.y1356_c00001{bottom:654.245463px;}
.yb40_c00001{bottom:654.330450px;}
.y1f40_c00001{bottom:654.425544px;}
.y311d_c00001{bottom:654.480000px;}
.y275b_c00001{bottom:654.511494px;}
.y2211_c00001{bottom:654.600450px;}
.y3993_c00001{bottom:654.690450px;}
.y1fa9_c00001{bottom:654.780450px;}
.y2c99_c00001{bottom:654.870450px;}
.y104b_c00001{bottom:654.960450px;}
.y2b3c_c00001{bottom:654.962115px;}
.y1d24_c00001{bottom:655.020000px;}
.y350f_c00001{bottom:655.050450px;}
.y1086_c00001{bottom:655.140450px;}
.yf42_c00001{bottom:655.320450px;}
.y34a7_c00001{bottom:655.410450px;}
.yc77_c00001{bottom:655.503042px;}
.y38ce_c00001{bottom:655.590450px;}
.y3604_c00001{bottom:655.680450px;}
.y25f7_c00001{bottom:655.770450px;}
.y30f6_c00001{bottom:655.920000px;}
.y190d_c00001{bottom:655.941960px;}
.ya22_c00001{bottom:655.950450px;}
.y2e30_c00001{bottom:656.100000px;}
.y2e90_c00001{bottom:656.103060px;}
.y2c7d_c00001{bottom:656.125464px;}
.y2c6c_c00001{bottom:656.128758px;}
.y2380_c00001{bottom:656.129568px;}
.y5f1_c00001{bottom:656.220450px;}
.y3093_c00001{bottom:656.280000px;}
.y4ad_c00001{bottom:656.490450px;}
.y2b11_c00001{bottom:656.578836px;}
.y18bc_c00001{bottom:656.580450px;}
.y2be3_c00001{bottom:656.760450px;}
.y3235_c00001{bottom:656.832600px;}
.y2de_c00001{bottom:656.850450px;}
.y1239_c00001{bottom:657.030162px;}
.y14d0_c00001{bottom:657.030540px;}
.y533_c00001{bottom:657.120450px;}
.y8a0_c00001{bottom:657.210450px;}
.yc9f_c00001{bottom:657.214554px;}
.y39f2_c00001{bottom:657.300450px;}
.y324c_c00001{bottom:657.360000px;}
.y2742_c00001{bottom:657.390450px;}
.y195f_c00001{bottom:657.480387px;}
.y31f_c00001{bottom:657.480450px;}
.y20e2_c00001{bottom:657.658908px;}
.ydb2_c00001{bottom:657.660450px;}
.y26c4_c00001{bottom:657.750450px;}
.y2697_c00001{bottom:657.840450px;}
.y2342_c00001{bottom:657.930450px;}
.y24e2_c00001{bottom:658.016697px;}
.y293a_c00001{bottom:658.020450px;}
.y2f29_c00001{bottom:658.080000px;}
.y2804_c00001{bottom:658.200000px;}
.y2a8b_c00001{bottom:658.290450px;}
.y38cf_c00001{bottom:658.380450px;}
.y3187_c00001{bottom:658.440000px;}
.y2230_c00001{bottom:658.559496px;}
.y39cf_c00001{bottom:658.560450px;}
.y1e2e_c00001{bottom:658.620000px;}
.y20bd_c00001{bottom:658.740450px;}
.y1772_c00001{bottom:658.830450px;}
.y949_c00001{bottom:658.920450px;}
.y670_c00001{bottom:659.010450px;}
.y1c9a_c00001{bottom:659.160000px;}
.y14ef_c00001{bottom:659.190450px;}
.y3884_c00001{bottom:659.275626px;}
.y29ae_c00001{bottom:659.280000px;}
.yf27_c00001{bottom:659.280450px;}
.y3696_c00001{bottom:659.281053px;}
.y1da6_c00001{bottom:659.340000px;}
.y2d55_c00001{bottom:659.355660px;}
.yb7e_c00001{bottom:659.457570px;}
.ybc6_c00001{bottom:659.460450px;}
.y1c56_c00001{bottom:659.520000px;}
.y11ff_c00001{bottom:659.550450px;}
.y112f_c00001{bottom:659.551287px;}
.y1ff5_c00001{bottom:659.640450px;}
.y1513_c00001{bottom:659.641125px;}
.y1b04_c00001{bottom:659.700000px;}
.y1592_c00001{bottom:659.821125px;}
.y2422_c00001{bottom:659.910450px;}
.y34b8_c00001{bottom:660.000450px;}
.y2eb9_c00001{bottom:660.060000px;}
.y1b1_c00001{bottom:660.090450px;}
.y134_c00001{bottom:660.180450px;}
.y2901_c00001{bottom:660.270450px;}
.y367b_c00001{bottom:660.360450px;}
.y2faa_c00001{bottom:660.420000px;}
.y235f_c00001{bottom:660.450450px;}
.y349_c00001{bottom:660.540450px;}
.ydd4_c00001{bottom:660.542520px;}
.yb55_c00001{bottom:660.630450px;}
.y2513_c00001{bottom:660.716184px;}
.y26ae_c00001{bottom:660.720450px;}
.y2f04_c00001{bottom:660.780000px;}
.y397c_c00001{bottom:660.810450px;}
.y1da7_c00001{bottom:660.960000px;}
.y3948_c00001{bottom:660.990450px;}
.y71a_c00001{bottom:661.080450px;}
.y1ef7_c00001{bottom:661.140000px;}
.yb93_c00001{bottom:661.170450px;}
.yae7_c00001{bottom:661.260450px;}
.y1676_c00001{bottom:661.350450px;}
.y2615_c00001{bottom:661.440450px;}
.ye7f_c00001{bottom:661.620450px;}
.y1a66_c00001{bottom:661.680000px;}
.y1d_c00001{bottom:661.710450px;}
.y69d_c00001{bottom:661.800450px;}
.y2eb8_c00001{bottom:661.860000px;}
.y3578_c00001{bottom:661.890450px;}
.y7c5_c00001{bottom:661.980450px;}
.y34a6_c00001{bottom:662.070450px;}
.y3188_c00001{bottom:662.220000px;}
.y630_c00001{bottom:662.250450px;}
.y3a1b_c00001{bottom:662.344104px;}
.y2d0c_c00001{bottom:662.430009px;}
.y265a_c00001{bottom:662.430450px;}
.y3189_c00001{bottom:662.580000px;}
.y185_c00001{bottom:662.610450px;}
.y37a0_c00001{bottom:662.700450px;}
.y1566_c00001{bottom:662.703195px;}
.y1b50_c00001{bottom:662.760000px;}
.y2274_c00001{bottom:662.787363px;}
.y2bb5_c00001{bottom:662.787876px;}
.y2721_c00001{bottom:662.789937px;}
.y2295_c00001{bottom:662.790450px;}
.y2dcf_c00001{bottom:662.947020px;}
.y7a5_c00001{bottom:663.060450px;}
.y2da6_c00001{bottom:663.120000px;}
.y2bac_c00001{bottom:663.150450px;}
.y74a_c00001{bottom:663.240450px;}
.y1be4_c00001{bottom:663.300000px;}
.y1487_c00001{bottom:663.330450px;}
.y68_c00001{bottom:663.420450px;}
.y1e63_c00001{bottom:663.480000px;}
.y50a_c00001{bottom:663.510450px;}
.y26d9_c00001{bottom:663.600522px;}
.y198f_c00001{bottom:663.658920px;}
.y1410_c00001{bottom:663.690450px;}
.yd89_c00001{bottom:663.692880px;}
.y3bb_c00001{bottom:663.780900px;}
.y1144_c00001{bottom:663.781035px;}
.y1c9b_c00001{bottom:663.840000px;}
.y11ce_c00001{bottom:663.869064px;}
.y2109_c00001{bottom:663.869937px;}
.y223_c00001{bottom:663.960450px;}
.y26e_c00001{bottom:664.050450px;}
.y1810_c00001{bottom:664.050600px;}
.y2c49_c00001{bottom:664.140000px;}
.y363_c00001{bottom:664.140450px;}
.y1c57_c00001{bottom:664.200000px;}
.y2534_c00001{bottom:664.230000px;}
.y2872_c00001{bottom:664.230450px;}
.y3807_c00001{bottom:664.320450px;}
.y1936_c00001{bottom:664.380000px;}
.y1271_c00001{bottom:664.410450px;}
.ycea_c00001{bottom:664.500450px;}
.y304e_c00001{bottom:664.560000px;}
.y2086_c00001{bottom:664.590450px;}
.y1154_c00001{bottom:664.598667px;}
.y2a7_c00001{bottom:664.860000px;}
.y651_c00001{bottom:664.860450px;}
.y2b3b_c00001{bottom:664.862106px;}
.y9f8_c00001{bottom:665.040450px;}
.y18da_c00001{bottom:665.130450px;}
.y298d_c00001{bottom:665.217552px;}
.y2253_c00001{bottom:665.220450px;}
.y3306_c00001{bottom:665.280000px;}
.y83f_c00001{bottom:665.310450px;}
.y2636_c00001{bottom:665.490450px;}
.y37b9_c00001{bottom:665.760450px;}
.yc44_c00001{bottom:665.850450px;}
.y2322_c00001{bottom:665.939640px;}
.y189c_c00001{bottom:665.940450px;}
.y178b_c00001{bottom:666.030450px;}
.y1739_c00001{bottom:666.120450px;}
.y318a_c00001{bottom:666.180000px;}
.ye8f_c00001{bottom:666.206103px;}
.y35d0_c00001{bottom:666.210450px;}
.ye6_c00001{bottom:666.390450px;}
.y1e0_c00001{bottom:666.480450px;}
.y1b99_c00001{bottom:666.720000px;}
.y17cd_c00001{bottom:666.750450px;}
.y340e_c00001{bottom:666.751062px;}
.y15d_c00001{bottom:666.840450px;}
.y1da8_c00001{bottom:666.900000px;}
.y23a8_c00001{bottom:666.930387px;}
.y4d4_c00001{bottom:667.020450px;}
.y1a1e_c00001{bottom:667.080000px;}
.y9ab_c00001{bottom:667.109955px;}
.y2455_c00001{bottom:667.110450px;}
.y2a5_c00001{bottom:667.200450px;}
.y31b3_c00001{bottom:667.260000px;}
.y1193_c00001{bottom:667.290450px;}
.y3493_c00001{bottom:667.380450px;}
.y31e3_c00001{bottom:667.440000px;}
.y2a8_c00001{bottom:667.470450px;}
.y2011_c00001{bottom:667.560522px;}
.y2f38_c00001{bottom:667.620000px;}
.y6f4_c00001{bottom:667.740450px;}
.y1d22_c00001{bottom:667.800000px;}
.y5a1_c00001{bottom:667.830450px;}
.y3737_c00001{bottom:667.831395px;}
.y15c3_c00001{bottom:667.921575px;}
.y1e98_c00001{bottom:667.980000px;}
.y3022_c00001{bottom:667.983060px;}
.y29ee_c00001{bottom:668.008758px;}
.y295b_c00001{bottom:668.009199px;}
.y20a3_c00001{bottom:668.009937px;}
.y2a4c_c00001{bottom:668.010009px;}
.yf55_c00001{bottom:668.010450px;}
.y3629_c00001{bottom:668.100450px;}
.y1cd7_c00001{bottom:668.160000px;}
.y36de_c00001{bottom:668.189190px;}
.y4c3_c00001{bottom:668.190450px;}
.y7d3_c00001{bottom:668.280450px;}
.y5c9_c00001{bottom:668.370450px;}
.y2787_c00001{bottom:668.460450px;}
.y1b05_c00001{bottom:668.520000px;}
.y38b2_c00001{bottom:668.550450px;}
.y39b6_c00001{bottom:668.640450px;}
.y30ce_c00001{bottom:668.700000px;}
.y21c6_c00001{bottom:668.727408px;}
.y21bb_c00001{bottom:668.729055px;}
.y2b7e_c00001{bottom:668.820450px;}
.y485_c00001{bottom:668.910450px;}
.y2bf8_c00001{bottom:669.090450px;}
.y42c_c00001{bottom:669.180450px;}
.y248e_c00001{bottom:669.180873px;}
.y39f1_c00001{bottom:669.270000px;}
.y811_c00001{bottom:669.270450px;}
.y2f74_c00001{bottom:669.420000px;}
.ya3f_c00001{bottom:669.450450px;}
.y19d0_c00001{bottom:669.600000px;}
.y3711_c00001{bottom:669.630000px;}
.y1fde_c00001{bottom:669.630450px;}
.y902_c00001{bottom:669.631008px;}
.y23c9_c00001{bottom:669.720009px;}
.y1ec4_c00001{bottom:669.780000px;}
.y15ff_c00001{bottom:669.810063px;}
.y1016_c00001{bottom:669.810162px;}
.y8c_c00001{bottom:669.900450px;}
.y2e8f_c00001{bottom:669.960000px;}
.y1c23_c00001{bottom:670.140000px;}
.y326b_c00001{bottom:670.320000px;}
.y275a_c00001{bottom:670.351395px;}
.y12ca_c00001{bottom:670.440450px;}
.y335a_c00001{bottom:670.500000px;}
.y86b_c00001{bottom:670.530450px;}
.y3819_c00001{bottom:670.710450px;}
.y1238_c00001{bottom:670.800450px;}
.y1f19_c00001{bottom:670.801350px;}
.y2efa_c00001{bottom:670.860000px;}
.y60b_c00001{bottom:670.980450px;}
.y2f30_c00001{bottom:671.040000px;}
.y2ff3_c00001{bottom:671.220000px;}
.y38fa_c00001{bottom:671.250450px;}
.y195e_c00001{bottom:671.340450px;}
.y207_c00001{bottom:671.430450px;}
.y384_c00001{bottom:671.520450px;}
.y2158_c00001{bottom:671.520522px;}
.y3e3_c00001{bottom:671.610450px;}
.y2134_c00001{bottom:671.700450px;}
.y37cf_c00001{bottom:671.790450px;}
.y1008_c00001{bottom:671.880450px;}
.y5ce_c00001{bottom:672.060450px;}
.y1be2_c00001{bottom:672.120000px;}
.y3593_c00001{bottom:672.149100px;}
.y4ab_c00001{bottom:672.150450px;}
.y1755_c00001{bottom:672.240450px;}
.y2587_c00001{bottom:672.330450px;}
.y2e5d_c00001{bottom:672.480000px;}
.y10a_c00001{bottom:672.510450px;}
.y2cdd_c00001{bottom:672.599199px;}
.yaa4_c00001{bottom:672.600450px;}
.y2e2f_c00001{bottom:672.660000px;}
.y39b4_c00001{bottom:672.780450px;}
.y25dd_c00001{bottom:672.870450px;}
.ydfd_c00001{bottom:672.960450px;}
.y111c_c00001{bottom:673.050450px;}
.y24ae_c00001{bottom:673.050522px;}
.y3883_c00001{bottom:673.135689px;}
.y3773_c00001{bottom:673.140450px;}
.y320e_c00001{bottom:673.230450px;}
.y16fa_c00001{bottom:673.320450px;}
.y1aaf_c00001{bottom:673.380000px;}
.yb25_c00001{bottom:673.410450px;}
.y30cf_c00001{bottom:673.560000px;}
.yc78_c00001{bottom:673.593150px;}
.y2858_c00001{bottom:673.680450px;}
.y219d_c00001{bottom:673.770450px;}
.y27e4_c00001{bottom:673.947273px;}
.y1436_c00001{bottom:674.040450px;}
.y14a7_c00001{bottom:674.129856px;}
.y206f_c00001{bottom:674.130000px;}
.yb5_c00001{bottom:674.130450px;}
.y244e_c00001{bottom:674.220450px;}
.yb2d_c00001{bottom:674.220567px;}
.y852_c00001{bottom:674.310450px;}
.y454_c00001{bottom:674.400450px;}
.y1b4d_c00001{bottom:674.460000px;}
.y302_c00001{bottom:674.490450px;}
.ye84_c00001{bottom:674.490639px;}
.y104a_c00001{bottom:674.580450px;}
.y7f9_c00001{bottom:674.670450px;}
.y2b3a_c00001{bottom:674.762097px;}
.y16b8_c00001{bottom:674.850450px;}
.y1df6_c00001{bottom:675.000000px;}
.y4aa_c00001{bottom:675.120450px;}
.y3695_c00001{bottom:675.120954px;}
.y37ed_c00001{bottom:675.300450px;}
.yca0_c00001{bottom:675.304815px;}
.yc14_c00001{bottom:675.390450px;}
.y28ca_c00001{bottom:675.480450px;}
.y2ab1_c00001{bottom:675.480987px;}
.y31e1_c00001{bottom:675.540000px;}
.y27b9_c00001{bottom:675.570450px;}
.ya58_c00001{bottom:675.660450px;}
.y328f_c00001{bottom:675.725040px;}
.y31e_c00001{bottom:675.840450px;}
.y255e_c00001{bottom:675.930000px;}
.y14cf_c00001{bottom:676.020063px;}
.y2f28_c00001{bottom:676.080000px;}
.y2803_c00001{bottom:676.110450px;}
.y168d_c00001{bottom:676.200729px;}
.y1331_c00001{bottom:676.470450px;}
.y245_c00001{bottom:676.560450px;}
.y2dce_c00001{bottom:676.623060px;}
.y331d_c00001{bottom:676.800000px;}
.y577_c00001{bottom:676.830450px;}
.y1348_c00001{bottom:676.831044px;}
.y2aa6_c00001{bottom:676.920450px;}
.y2a2d_c00001{bottom:677.010450px;}
.y3437_c00001{bottom:677.100450px;}
.y32d6_c00001{bottom:677.160000px;}
.y29ad_c00001{bottom:677.190450px;}
.y313b_c00001{bottom:677.340000px;}
.y1df_c00001{bottom:677.370450px;}
.y25ad_c00001{bottom:677.460450px;}
.y25f6_c00001{bottom:677.550450px;}
.y19d1_c00001{bottom:677.700000px;}
.y1357_c00001{bottom:677.735850px;}
.y2dd_c00001{bottom:677.820450px;}
.y2c7c_c00001{bottom:677.905392px;}
.y2c6b_c00001{bottom:677.908686px;}
.yd43_c00001{bottom:677.910450px;}
.y237f_c00001{bottom:678.000081px;}
.y2be2_c00001{bottom:678.000450px;}
.y1d5c_c00001{bottom:678.060000px;}
.y3860_c00001{bottom:678.180450px;}
.y3a1a_c00001{bottom:678.184005px;}
.y1ef6_c00001{bottom:678.240000px;}
.y2b10_c00001{bottom:678.449349px;}
.y532_c00001{bottom:678.450450px;}
.y1b0_c00001{bottom:678.540450px;}
.y1f3f_c00001{bottom:678.545238px;}
.y66f_c00001{bottom:678.720450px;}
.y1591_c00001{bottom:678.721125px;}
.y1a21_c00001{bottom:678.780000px;}
.y2d2c_c00001{bottom:678.798912px;}
.y22fe_c00001{bottom:678.810450px;}
.y35aa_c00001{bottom:678.900450px;}
.y1e2b_c00001{bottom:678.960000px;}
.y1b4f_c00001{bottom:679.140000px;}
.y2674_c00001{bottom:679.170450px;}
.y29d5_c00001{bottom:679.260450px;}
.y3ba_c00001{bottom:679.350450px;}
.y20e1_c00001{bottom:679.438836px;}
.y62f_c00001{bottom:679.440450px;}
.ydd3_c00001{bottom:679.441845px;}
.y44_c00001{bottom:679.530450px;}
.y3648_c00001{bottom:679.619874px;}
.yab8_c00001{bottom:679.620450px;}
.y291a_c00001{bottom:679.710450px;}
.y24e1_c00001{bottom:679.796625px;}
.y1c24_c00001{bottom:679.860000px;}
.y5f0_c00001{bottom:679.980450px;}
.y190c_c00001{bottom:680.055660px;}
.y217f_c00001{bottom:680.070450px;}
.y2a8a_c00001{bottom:680.160450px;}
.y1be3_c00001{bottom:680.220000px;}
.y26c3_c00001{bottom:680.250450px;}
.y112e_c00001{bottom:680.251008px;}
.y348_c00001{bottom:680.340450px;}
.y222f_c00001{bottom:680.430009px;}
.y18bb_c00001{bottom:680.430450px;}
.y2bab_c00001{bottom:680.700009px;}
.y198e_c00001{bottom:680.760000px;}
.y11fe_c00001{bottom:680.790450px;}
.y33b1_c00001{bottom:680.880450px;}
.y2900_c00001{bottom:680.970450px;}
.y356a_c00001{bottom:681.060450px;}
.y133_c00001{bottom:681.150450px;}
.y576_c00001{bottom:681.240450px;}
.y1e65_c00001{bottom:681.300000px;}
.ya21_c00001{bottom:681.330450px;}
.y2614_c00001{bottom:681.420450px;}
.y1c_c00001{bottom:681.510450px;}
.y138f_c00001{bottom:681.600450px;}
.y2e8d_c00001{bottom:681.660000px;}
.y29be_c00001{bottom:681.689550px;}
.y33fe_c00001{bottom:681.690450px;}
.y1565_c00001{bottom:681.693105px;}
.y163d_c00001{bottom:681.780450px;}
.y1a63_c00001{bottom:681.840000px;}
.y26d_c00001{bottom:681.960450px;}
.y22cb_c00001{bottom:682.049271px;}
.y2533_c00001{bottom:682.050000px;}
.y161f_c00001{bottom:682.050450px;}
.y2659_c00001{bottom:682.230450px;}
.y3565_c00001{bottom:682.500450px;}
.y3305_c00001{bottom:682.560000px;}
.y2512_c00001{bottom:682.586697px;}
.y34a5_c00001{bottom:682.590450px;}
.y719_c00001{bottom:682.680450px;}
.yd88_c00001{bottom:682.682790px;}
.y184_c00001{bottom:682.770450px;}
.y1145_c00001{bottom:682.771440px;}
.y1399_c00001{bottom:682.860450px;}
.y2fd0_c00001{bottom:682.920000px;}
.y2bcd_c00001{bottom:682.950450px;}
.y69c_c00001{bottom:683.040450px;}
.y2f03_c00001{bottom:683.100000px;}
.y3226_c00001{bottom:683.138334px;}
.y16d9_c00001{bottom:683.220450px;}
.y1b4e_c00001{bottom:683.280000px;}
.y144f_c00001{bottom:683.310450px;}
.y244_c00001{bottom:683.400450px;}
.y2d54_c00001{bottom:683.469360px;}
.yb7f_c00001{bottom:683.487534px;}
.yce9_c00001{bottom:683.490450px;}
.y1015_c00001{bottom:683.580450px;}
.y1155_c00001{bottom:683.589072px;}
.y552_c00001{bottom:683.760450px;}
.y3736_c00001{bottom:683.761071px;}
.y1d1f_c00001{bottom:683.820000px;}
.y22ad_c00001{bottom:683.850450px;}
.y397b_c00001{bottom:683.940450px;}
.y1c98_c00001{bottom:684.000000px;}
.y187e_c00001{bottom:684.030450px;}
.y2d77_c00001{bottom:684.180000px;}
.y27d1_c00001{bottom:684.210450px;}
.y2d0b_c00001{bottom:684.300522px;}
.y1c55_c00001{bottom:684.360000px;}
.ybc5_c00001{bottom:684.390450px;}
.ye8e_c00001{bottom:684.476571px;}
.y1b01_c00001{bottom:684.540000px;}
.y2a3_c00001{bottom:684.570000px;}
.y2273_c00001{bottom:684.657876px;}
.y2bb4_c00001{bottom:684.658389px;}
.y1097_c00001{bottom:684.660450px;}
.y2b39_c00001{bottom:684.662088px;}
.y30f7_c00001{bottom:684.720000px;}
.y650_c00001{bottom:684.750450px;}
.y222_c00001{bottom:684.840450px;}
.y509_c00001{bottom:684.930450px;}
.y2454_c00001{bottom:685.020450px;}
.y248d_c00001{bottom:685.020774px;}
.y1935_c00001{bottom:685.080000px;}
.yb94_c00001{bottom:685.200225px;}
.y347b_c00001{bottom:685.200450px;}
.y1e97_c00001{bottom:685.260000px;}
.yb3f_c00001{bottom:685.380450px;}
.y1d21_c00001{bottom:685.440000px;}
.yd17_c00001{bottom:685.560450px;}
.y1d23_c00001{bottom:685.620000px;}
.y1fa8_c00001{bottom:685.650450px;}
.y1866_c00001{bottom:685.740450px;}
.y1270_c00001{bottom:685.830450px;}
.y3528_c00001{bottom:685.916274px;}
.y3092_c00001{bottom:685.980000px;}
.y2a6b_c00001{bottom:686.010450px;}
.y2720_c00001{bottom:686.100450px;}
.y2dfc_c00001{bottom:686.170080px;}
.y9aa_c00001{bottom:686.190450px;}
.y2759_c00001{bottom:686.191296px;}
.y2c47_c00001{bottom:686.280450px;}
.y2e8e_c00001{bottom:686.340000px;}
.y1b98_c00001{bottom:686.343060px;}
.y34cc_c00001{bottom:686.369550px;}
.ye5_c00001{bottom:686.460450px;}
.y15c_c00001{bottom:686.550450px;}
.y2bf7_c00001{bottom:686.640009px;}
.y2f2f_c00001{bottom:686.700000px;}
.y2c48_c00001{bottom:686.730000px;}
.y3628_c00001{bottom:686.819811px;}
.y26d8_c00001{bottom:686.820450px;}
.y15c2_c00001{bottom:686.820900px;}
.y15c9_c00001{bottom:686.822547px;}
.y3882_c00001{bottom:686.905977px;}
.y2a2_c00001{bottom:686.910450px;}
.y298c_c00001{bottom:686.997480px;}
.y241f_c00001{bottom:687.000450px;}
.y1da1_c00001{bottom:687.060000px;}
.y4d3_c00001{bottom:687.090450px;}
.y2a4_c00001{bottom:687.180450px;}
.y3356_c00001{bottom:687.240000px;}
.y3492_c00001{bottom:687.270450px;}
.ye89_c00001{bottom:687.359325px;}
.y3457_c00001{bottom:687.360450px;}
.y5a0_c00001{bottom:687.540450px;}
.y2e5e_c00001{bottom:687.600000px;}
.y395e_c00001{bottom:687.630450px;}
.y2321_c00001{bottom:687.810153px;}
.y1712_c00001{bottom:687.810450px;}
.y180f_c00001{bottom:687.810600px;}
.y72f_c00001{bottom:687.900450px;}
.yf66_c00001{bottom:687.990450px;}
.y32d8_c00001{bottom:688.140000px;}
.y89f_c00001{bottom:688.260450px;}
.y11c3_c00001{bottom:688.261251px;}
.y37b8_c00001{bottom:688.350450px;}
.ya3e_c00001{bottom:688.440450px;}
.y1532_c00001{bottom:688.530450px;}
.y15fe_c00001{bottom:688.620450px;}
.y1c99_c00001{bottom:688.680000px;}
.y67_c00001{bottom:688.710450px;}
.y4c2_c00001{bottom:688.890450px;}
.y12bc_c00001{bottom:688.890792px;}
.y11cf_c00001{bottom:689.068362px;}
.y3831_c00001{bottom:689.069874px;}
.y2038_c00001{bottom:689.070009px;}
.y5c8_c00001{bottom:689.070450px;}
.y1b03_c00001{bottom:689.220000px;}
.yeba_c00001{bottom:689.250450px;}
.y33cc_c00001{bottom:689.250522px;}
.y2010_c00001{bottom:689.340450px;}
.yff2_c00001{bottom:689.430450px;}
.y1af_c00001{bottom:689.520450px;}
.y787_c00001{bottom:689.610450px;}
.y189b_c00001{bottom:689.700450px;}
.y178a_c00001{bottom:689.790450px;}
.y29ed_c00001{bottom:689.879271px;}
.y295a_c00001{bottom:689.879712px;}
.y484_c00001{bottom:689.880450px;}
.y2586_c00001{bottom:689.880522px;}
.y948_c00001{bottom:689.970450px;}
.y392e_c00001{bottom:690.060450px;}
.y42b_c00001{bottom:690.150450px;}
.y9f7_c00001{bottom:690.240450px;}
.y12cb_c00001{bottom:690.240900px;}
.y304b_c00001{bottom:690.300000px;}
.y901_c00001{bottom:690.330729px;}
.y395f_c00001{bottom:690.420450px;}
.y1e2c_c00001{bottom:690.480000px;}
.y22e8_c00001{bottom:690.510450px;}
.y21c5_c00001{bottom:690.597921px;}
.y98f_c00001{bottom:690.599460px;}
.y21ba_c00001{bottom:690.599568px;}
.y23f5_c00001{bottom:690.600450px;}
.y1ff4_c00001{bottom:690.690450px;}
.y2b95_c00001{bottom:690.780450px;}
.y333c_c00001{bottom:690.840000px;}
.y3694_c00001{bottom:691.050630px;}
.y16a7_c00001{bottom:691.140450px;}
.y3359_c00001{bottom:691.200000px;}
.y383_c00001{bottom:691.230450px;}
.y3e2_c00001{bottom:691.320450px;}
.y1d5e_c00001{bottom:691.380000px;}
.y235e_c00001{bottom:691.410450px;}
.y2ef9_c00001{bottom:691.560000px;}
.y38b3_c00001{bottom:691.590450px;}
.y23c8_c00001{bottom:691.590522px;}
.yb54_c00001{bottom:691.680450px;}
.yc79_c00001{bottom:691.683258px;}
.y769_c00001{bottom:691.770450px;}
.y86a_c00001{bottom:691.950450px;}
.y111b_c00001{bottom:692.040450px;}
.y33cb_c00001{bottom:692.040540px;}
.y3181_c00001{bottom:692.100000px;}
.y3710_c00001{bottom:692.130000px;}
.y40d_c00001{bottom:692.130450px;}
.yae6_c00001{bottom:692.220450px;}
.y4a9_c00001{bottom:692.400450px;}
.y3b9_c00001{bottom:692.580450px;}
.y2e2d_c00001{bottom:692.820000px;}
.ye4f_c00001{bottom:692.940450px;}
.y31af_c00001{bottom:693.000000px;}
.y2ae0_c00001{bottom:693.030450px;}
.ydfc_c00001{bottom:693.119523px;}
.y109_c00001{bottom:693.210450px;}
.y12e9_c00001{bottom:693.300450px;}
.y1b02_c00001{bottom:693.360000px;}
.y3647_c00001{bottom:693.390162px;}
.y3a3f_c00001{bottom:693.390450px;}
.yca1_c00001{bottom:693.395076px;}
.y3021_c00001{bottom:693.540000px;}
.y165e_c00001{bottom:693.660450px;}
.y30cc_c00001{bottom:693.720000px;}
.y25cf_c00001{bottom:693.750450px;}
.y255d_c00001{bottom:693.840450px;}
.y17fb_c00001{bottom:694.020450px;}
.y1aae_c00001{bottom:694.080000px;}
.y3a19_c00001{bottom:694.113681px;}
.y37ce_c00001{bottom:694.290450px;}
.y1486_c00001{bottom:694.380450px;}
.y2cdc_c00001{bottom:694.469712px;}
.y1014_c00001{bottom:694.470450px;}
.y1049_c00001{bottom:694.560450px;}
.y328e_c00001{bottom:694.620000px;}
.y2f73_c00001{bottom:694.623960px;}
.y243_c00001{bottom:694.650450px;}
.y2b38_c00001{bottom:694.651719px;}
.y140f_c00001{bottom:694.740450px;}
.y315d_c00001{bottom:694.800000px;}
.y14ce_c00001{bottom:694.830450px;}
.y28b0_c00001{bottom:694.920450px;}
.y101c_c00001{bottom:695.010450px;}
.y453_c00001{bottom:695.100450px;}
.y1df1_c00001{bottom:695.160000px;}
.y8b_c00001{bottom:695.190450px;}
.y2133_c00001{bottom:695.279928px;}
.y25ac_c00001{bottom:695.280450px;}
.y2894_c00001{bottom:695.460450px;}
.y1ef5_c00001{bottom:695.520000px;}
.y2421_c00001{bottom:695.640450px;}
.y1e66_c00001{bottom:695.700000px;}
.y38f9_c00001{bottom:695.730450px;}
.y27e3_c00001{bottom:695.817786px;}
.y14a6_c00001{bottom:695.909784px;}
.y62e_c00001{bottom:696.000450px;}
.y6db_c00001{bottom:696.090450px;}
.y31d_c00001{bottom:696.180450px;}
.y304c_c00001{bottom:696.240000px;}
.y2695_c00001{bottom:696.270009px;}
.y24ad_c00001{bottom:696.270450px;}
.y83e_c00001{bottom:696.360450px;}
.y3b8_c00001{bottom:696.630450px;}
.y3469_c00001{bottom:696.720450px;}
.y2f02_c00001{bottom:696.780000px;}
.yc43_c00001{bottom:696.900450px;}
.y31b2_c00001{bottom:696.960000px;}
.y2252_c00001{bottom:697.080450px;}
.y16f9_c00001{bottom:697.170450px;}
.y38e9_c00001{bottom:697.260450px;}
.y1368_c00001{bottom:697.350450px;}
.y2e2e_c00001{bottom:697.500000px;}
.y16b7_c00001{bottom:697.530450px;}
.y1590_c00001{bottom:697.620450px;}
.y3429_c00001{bottom:697.710450px;}
.y184e_c00001{bottom:697.800450px;}
.y3321_c00001{bottom:697.860000px;}
.y37ec_c00001{bottom:697.890450px;}
.y2dc_c00001{bottom:697.980450px;}
.y19ce_c00001{bottom:698.040000px;}
.y2210_c00001{bottom:698.070450px;}
.y1192_c00001{bottom:698.160450px;}
.y1df4_c00001{bottom:698.220000px;}
.y1651_c00001{bottom:698.340450px;}
.y1512_c00001{bottom:698.340540px;}
.y30cd_c00001{bottom:698.400000px;}
.y66e_c00001{bottom:698.430450px;}
.ydd2_c00001{bottom:698.431755px;}
.y1de_c00001{bottom:698.520450px;}
.y2da5_c00001{bottom:698.580000px;}
.y324b_c00001{bottom:698.760000px;}
.y34f9_c00001{bottom:698.790450px;}
.y26c_c00001{bottom:698.880450px;}
.y1a1a_c00001{bottom:698.940000px;}
.y3436_c00001{bottom:698.970450px;}
.y36dd_c00001{bottom:699.059820px;}
.y1f5d_c00001{bottom:699.060450px;}
.y531_c00001{bottom:699.150450px;}
.y17b7_c00001{bottom:699.240450px;}
.y1b48_c00001{bottom:699.300000px;}
.y347_c00001{bottom:699.330450px;}
.y25f5_c00001{bottom:699.420450px;}
.y397a_c00001{bottom:699.510450px;}
.y3735_c00001{bottom:699.600972px;}
.y2c7b_c00001{bottom:699.775905px;}
.y2c6a_c00001{bottom:699.779199px;}
.y237e_c00001{bottom:699.780009px;}
.y379f_c00001{bottom:699.780450px;}
.y1da2_c00001{bottom:699.840000px;}
.y2532_c00001{bottom:699.870000px;}
.y29d4_c00001{bottom:699.870450px;}
.y2613_c00001{bottom:699.960450px;}
.y2dfb_c00001{bottom:700.027020px;}
.y38cd_c00001{bottom:700.050450px;}
.ybee_c00001{bottom:700.140450px;}
.y1b97_c00001{bottom:700.200000px;}
.y2b0f_c00001{bottom:700.229277px;}
.y390b_c00001{bottom:700.230450px;}
.y810_c00001{bottom:700.320450px;}
.y1349_c00001{bottom:700.321431px;}
.y1be0_c00001{bottom:700.380000px;}
.y3627_c00001{bottom:700.590099px;}
.ya6a_c00001{bottom:700.590162px;}
.y3881_c00001{bottom:700.676265px;}
.yfbd_c00001{bottom:700.680450px;}
.ye5c_c00001{bottom:700.680729px;}
.y1564_c00001{bottom:700.683015px;}
.y2294_c00001{bottom:700.770450px;}
.y26c2_c00001{bottom:700.860450px;}
.y575_c00001{bottom:700.950450px;}
.y112d_c00001{bottom:700.950729px;}
.y2be1_c00001{bottom:701.130450px;}
.y1358_c00001{bottom:701.136057px;}
.y20e0_c00001{bottom:701.218764px;}
.y2871_c00001{bottom:701.220009px;}
.y7a3_c00001{bottom:701.220450px;}
.y1b_c00001{bottom:701.310450px;}
.y132_c00001{bottom:701.400450px;}
.y1da3_c00001{bottom:701.460000px;}
.yf97_c00001{bottom:701.580450px;}
.y24e0_c00001{bottom:701.667138px;}
.y28ff_c00001{bottom:701.670450px;}
.yd87_c00001{bottom:701.672700px;}
.y2673_c00001{bottom:701.760450px;}
.y27d0_c00001{bottom:701.760522px;}
.y1146_c00001{bottom:701.852025px;}
.y60a_c00001{bottom:702.030450px;}
.ya57_c00001{bottom:702.120450px;}
.y2758_c00001{bottom:702.120972px;}
.y1c20_c00001{bottom:702.180000px;}
.y222e_c00001{bottom:702.209937px;}
.y11fd_c00001{bottom:702.210450px;}
.y4d2_c00001{bottom:702.300450px;}
.y1e96_c00001{bottom:702.360000px;}
.yce8_c00001{bottom:702.390450px;}
.y262f_c00001{bottom:702.479568px;}
.y2baa_c00001{bottom:702.479937px;}
.y206_c00001{bottom:702.480450px;}
.y1156_c00001{bottom:702.669657px;}
.y1f3e_c00001{bottom:702.755103px;}
.y3830_c00001{bottom:702.840162px;}
.y2453_c00001{bottom:702.840450px;}
.y1007_c00001{bottom:702.930450px;}
.y2fcf_c00001{bottom:703.080000px;}
.y2a89_c00001{bottom:703.200450px;}
.y718_c00001{bottom:703.380450px;}
.y183_c00001{bottom:703.470450px;}
.y2802_c00001{bottom:703.560450px;}
.y7c4_c00001{bottom:703.650450px;}
.y217e_c00001{bottom:703.740450px;}
.y22ca_c00001{bottom:703.829199px;}
.y5ef_c00001{bottom:703.830450px;}
.y1463_c00001{bottom:704.010450px;}
.y1b4c_c00001{bottom:704.160000px;}
.y190b_c00001{bottom:704.169360px;}
.y18ba_c00001{bottom:704.190450px;}
.y2a0_c00001{bottom:704.280000px;}
.y2511_c00001{bottom:704.366625px;}
.y98e_c00001{bottom:704.459523px;}
.y2b37_c00001{bottom:704.551710px;}
.y69b_c00001{bottom:704.640450px;}
.y2ff1_c00001{bottom:704.700000px;}
.y283f_c00001{bottom:704.730450px;}
.y43_c00001{bottom:704.820450px;}
.y2d76_c00001{bottom:704.880000px;}
.y3234_c00001{bottom:705.060000px;}
.y1435_c00001{bottom:705.090450px;}
.y851_c00001{bottom:705.360450px;}
.y2f37_c00001{bottom:705.420000px;}
.y221_c00001{bottom:705.540450px;}
.y7f8_c00001{bottom:705.720450px;}
.y1934_c00001{bottom:705.780000px;}
.y26ad_c00001{bottom:705.810450px;}
.y15c1_c00001{bottom:705.810810px;}
.y15c8_c00001{bottom:705.812457px;}
.y2a8c_c00001{bottom:705.990450px;}
.y1381_c00001{bottom:706.080450px;}
.y749_c00001{bottom:706.081134px;}
.yb26_c00001{bottom:706.081161px;}
.y19cf_c00001{bottom:706.140000px;}
.y2af5_c00001{bottom:706.169937px;}
.y15b_c00001{bottom:706.260450px;}
.y508_c00001{bottom:706.350450px;}
.y2272_c00001{bottom:706.437804px;}
.y2c04_c00001{bottom:706.438245px;}
.y2bb3_c00001{bottom:706.438317px;}
.y64f_c00001{bottom:706.440450px;}
.y2e8c_c00001{bottom:706.500000px;}
.y18d9_c00001{bottom:706.530450px;}
.y29f_c00001{bottom:706.620450px;}
.y10b9_c00001{bottom:706.710450px;}
.y62d_c00001{bottom:706.800450px;}
.ydfb_c00001{bottom:706.889811px;}
.y2a1_c00001{bottom:706.890450px;}
.y3693_c00001{bottom:706.890531px;}
.yb2e_c00001{bottom:706.979955px;}
.y36fb_c00001{bottom:706.980450px;}
.y126f_c00001{bottom:707.070450px;}
.y16d8_c00001{bottom:707.160450px;}
.y1da4_c00001{bottom:707.220000px;}
.y271f_c00001{bottom:707.246814px;}
.y59f_c00001{bottom:707.250450px;}
.y23a7_c00001{bottom:707.340450px;}
.yb80_c00001{bottom:707.427318px;}
.yd16_c00001{bottom:707.430162px;}
.y3e1_c00001{bottom:707.430450px;}
.y1ae_c00001{bottom:707.520450px;}
.y2dcd_c00001{bottom:707.580000px;}
.y72e_c00001{bottom:707.610450px;}
.y2e5c_c00001{bottom:707.760000px;}
.y2d53_c00001{bottom:707.772600px;}
.y187d_c00001{bottom:707.790450px;}
.ye4_c00001{bottom:707.880450px;}
.y30f5_c00001{bottom:707.940000px;}
.y39ef_c00001{bottom:707.970000px;}
.y124a_c00001{bottom:707.970450px;}
.y333b_c00001{bottom:708.120000px;}
.y1b4b_c00001{bottom:708.300000px;}
.y2bf6_c00001{bottom:708.419937px;}
.y198d_c00001{bottom:708.483060px;}
.y15fd_c00001{bottom:708.511215px;}
.y2108_c00001{bottom:708.600450px;}
.y1be1_c00001{bottom:708.660000px;}
.y12bd_c00001{bottom:708.691314px;}
.y298b_c00001{bottom:708.777408px;}
.yb4_c00001{bottom:708.780450px;}
.y1c96_c00001{bottom:708.840000px;}
.y219c_c00001{bottom:708.870450px;}
.y3592_c00001{bottom:708.959550px;}
.y12f7_c00001{bottom:708.960450px;}
.y2f2e_c00001{bottom:709.020000px;}
.y2a6a_c00001{bottom:709.050450px;}
.yb95_c00001{bottom:709.140225px;}
.y42a_c00001{bottom:709.140450px;}
.y2c45_c00001{bottom:709.320000px;}
.y339a_c00001{bottom:709.320450px;}
.y1aff_c00001{bottom:709.380000px;}
.y3806_c00001{bottom:709.410450px;}
.y2320_c00001{bottom:709.590081px;}
.y5c7_c00001{bottom:709.590450px;}
.y1a62_c00001{bottom:709.740000px;}
.y163c_c00001{bottom:709.770450px;}
.yc7a_c00001{bottom:709.773366px;}
.y22fd_c00001{bottom:709.860450px;}
.y1c22_c00001{bottom:709.920000px;}
.y12cc_c00001{bottom:709.950900px;}
.y3a18_c00001{bottom:709.953582px;}
.y3849_c00001{bottom:710.130450px;}
.y767_c00001{bottom:710.220450px;}
.y1390_c00001{bottom:710.220576px;}
.y337b_c00001{bottom:710.315364px;}
.y4c1_c00001{bottom:710.490450px;}
.y786_c00001{bottom:710.580450px;}
.y1e2a_c00001{bottom:710.640000px;}
.yab7_c00001{bottom:710.670450px;}
.y281a_c00001{bottom:710.760450px;}
.y3091_c00001{bottom:710.820000px;}
.y483_c00001{bottom:710.850450px;}
.y382_c00001{bottom:710.940450px;}
.y2036_c00001{bottom:710.940522px;}
.y900_c00001{bottom:711.030450px;}
.y1096_c00001{bottom:711.031008px;}
.yeb9_c00001{bottom:711.120450px;}
.yc34_c00001{bottom:711.300450px;}
.y1d1b_c00001{bottom:711.360000px;}
.y2c26_c00001{bottom:711.390450px;}
.y139a_c00001{bottom:711.480450px;}
.yca2_c00001{bottom:711.480711px;}
.y39f0_c00001{bottom:711.570450px;}
.y29ec_c00001{bottom:711.659199px;}
.y2959_c00001{bottom:711.659640px;}
.y1711_c00001{bottom:711.660450px;}
.y180e_c00001{bottom:711.660600px;}
.y1b94_c00001{bottom:711.720000px;}
.y2a6c_c00001{bottom:711.840450px;}
.y2ef8_c00001{bottom:711.900000px;}
.y2c46_c00001{bottom:711.930450px;}
.y4a8_c00001{bottom:712.110450px;}
.y23f2_c00001{bottom:712.200450px;}
.y31db_c00001{bottom:712.260000px;}
.y1fa7_c00001{bottom:712.290450px;}
.y21c4_c00001{bottom:712.377849px;}
.y20a2_c00001{bottom:712.379127px;}
.y21b9_c00001{bottom:712.379496px;}
.ya20_c00001{bottom:712.380450px;}
.y189a_c00001{bottom:712.470450px;}
.y2f01_c00001{bottom:712.620000px;}
.y40c_c00001{bottom:712.650450px;}
.y25ce_c00001{bottom:712.740450px;}
.y1ef4_c00001{bottom:712.800000px;}
.y23a6_c00001{bottom:712.830450px;}
.y161e_c00001{bottom:713.100450px;}
.ye80_c00001{bottom:713.101206px;}
.y315e_c00001{bottom:713.160000px;}
.y2d2b_c00001{bottom:713.270406px;}
.y311c_c00001{bottom:713.340000px;}
.y23d1_c00001{bottom:713.370450px;}
.y869_c00001{bottom:713.460450px;}
.y11c4_c00001{bottom:713.460549px;}
.y1c97_c00001{bottom:713.520000px;}
.y2420_c00001{bottom:713.550450px;}
.y1789_c00001{bottom:713.640450px;}
.y2dfa_c00001{bottom:713.703060px;}
.y1738_c00001{bottom:713.730450px;}
.yfd8_c00001{bottom:713.820450px;}
.y2aa4_c00001{bottom:713.910009px;}
.y8b9_c00001{bottom:713.910450px;}
.y1c54_c00001{bottom:714.060000px;}
.y26f8_c00001{bottom:714.090450px;}
.y108_c00001{bottom:714.180450px;}
.y11d0_c00001{bottom:714.267660px;}
.ya69_c00001{bottom:714.360450px;}
.y3626_c00001{bottom:714.450162px;}
.y242_c00001{bottom:714.450450px;}
.y2b36_c00001{bottom:714.451701px;}
.y3880_c00001{bottom:714.536328px;}
.y3183_c00001{bottom:714.600000px;}
.y370f_c00001{bottom:714.720000px;}
.y89e_c00001{bottom:714.720450px;}
.y14cd_c00001{bottom:714.721125px;}
.y1cd6_c00001{bottom:714.790080px;}
.y3b7_c00001{bottom:714.810450px;}
.y219b_c00001{bottom:714.900450px;}
.y3185_c00001{bottom:714.960000px;}
.y2132_c00001{bottom:715.080450px;}
.ydb1_c00001{bottom:715.170450px;}
.y25ab_c00001{bottom:715.260450px;}
.y3734_c00001{bottom:715.440873px;}
.y31b0_c00001{bottom:715.680000px;}
.y11aa_c00001{bottom:715.710450px;}
.yc2d_c00001{bottom:715.800450px;}
.y1e61_c00001{bottom:715.860000px;}
.y31c_c00001{bottom:715.890450px;}
.y31b1_c00001{bottom:716.040000px;}
.y195d_c00001{bottom:716.070450px;}
.y31de_c00001{bottom:716.220000px;}
.y2cdb_c00001{bottom:716.249640px;}
.y2157_c00001{bottom:716.250450px;}
.y452_c00001{bottom:716.340450px;}
.y306f_c00001{bottom:716.400000px;}
.yb3e_c00001{bottom:716.430450px;}
.y3468_c00001{bottom:716.520450px;}
.y382f_c00001{bottom:716.610450px;}
.y37cd_c00001{bottom:716.880450px;}
.y3e0_c00001{bottom:717.060450px;}
.y1d1c_c00001{bottom:717.120000px;}
.y350e_c00001{bottom:717.150450px;}
.y26a_c00001{bottom:717.240450px;}
.y1f18_c00001{bottom:717.330450px;}
.y1511_c00001{bottom:717.331125px;}
.y24ac_c00001{bottom:717.419199px;}
.y184d_c00001{bottom:717.420450px;}
.y158e_c00001{bottom:717.420630px;}
.ydd1_c00001{bottom:717.421665px;}
.y1d1d_c00001{bottom:717.480000px;}
.y6da_c00001{bottom:717.510450px;}
.y27e2_c00001{bottom:717.597714px;}
.y2e2c_c00001{bottom:717.660000px;}
.ye91_c00001{bottom:717.685356px;}
.y14a5_c00001{bottom:717.780297px;}
.y2531_c00001{bottom:717.780450px;}
.y17fa_c00001{bottom:717.870450px;}
.y2757_c00001{bottom:717.960873px;}
.y2ff2_c00001{bottom:718.020000px;}
.y2694_c00001{bottom:718.049937px;}
.y2893_c00001{bottom:718.050450px;}
.y2d4a_c00001{bottom:718.061322px;}
.y66d_c00001{bottom:718.140450px;}
.y98d_c00001{bottom:718.229811px;}
.y1dd_c00001{bottom:718.230450px;}
.y2da4_c00001{bottom:718.380000px;}
.y29bd_c00001{bottom:718.500000px;}
.y367a_c00001{bottom:718.500549px;}
.y30ca_c00001{bottom:718.560000px;}
.y36c2_c00001{bottom:718.590450px;}
.y2db_c00001{bottom:718.680450px;}
.y3186_c00001{bottom:718.740000px;}
.y530_c00001{bottom:718.770450px;}
.y2857_c00001{bottom:718.860450px;}
.y2adf_c00001{bottom:718.950450px;}
.y3577_c00001{bottom:719.129406px;}
.ybed_c00001{bottom:719.130450px;}
.y346_c00001{bottom:719.310450px;}
.y324a_c00001{bottom:719.460000px;}
.y2741_c00001{bottom:719.490450px;}
.y1531_c00001{bottom:719.580450px;}
.y1e95_c00001{bottom:719.640000px;}
.y1563_c00001{bottom:719.672925px;}
.y66_c00001{bottom:719.760450px;}
.y379e_c00001{bottom:719.760873px;}
.y1754_c00001{bottom:719.850450px;}
.y2658_c00001{bottom:719.940450px;}
.y2f71_c00001{bottom:720.000000px;}
.y4d1_c00001{bottom:720.300450px;}
.y29d3_c00001{bottom:720.390450px;}
.y37eb_c00001{bottom:720.480450px;}
.y1fdd_c00001{bottom:720.570450px;}
.y244d_c00001{bottom:720.660450px;}
.yd86_c00001{bottom:720.662610px;}
.y3527_c00001{bottom:720.746796px;}
.ydfa_c00001{bottom:720.749874px;}
.y574_c00001{bottom:720.750450px;}
.y62b_c00001{bottom:720.840000px;}
.y33fd_c00001{bottom:720.840450px;}
.y1147_c00001{bottom:720.842430px;}
.y3139_c00001{bottom:720.900000px;}
.y16f8_c00001{bottom:720.930450px;}
.y947_c00001{bottom:721.020450px;}
.y1a_c00001{bottom:721.200450px;}
.y2f36_c00001{bottom:721.260000px;}
.y9f6_c00001{bottom:721.290450px;}
.y3225_c00001{bottom:721.297677px;}
.yce7_c00001{bottom:721.380450px;}
.y1ec3_c00001{bottom:721.440000px;}
.y7a2_c00001{bottom:721.470450px;}
.y2c7a_c00001{bottom:721.555833px;}
.y2c69_c00001{bottom:721.559127px;}
.y2d1a_c00001{bottom:721.560450px;}
.y2eb7_c00001{bottom:721.620000px;}
.ya0e_c00001{bottom:721.650450px;}
.y237d_c00001{bottom:721.650522px;}
.y1ff3_c00001{bottom:721.740450px;}
.y1157_c00001{bottom:721.750242px;}
.y16a6_c00001{bottom:721.920450px;}
.y2b0e_c00001{bottom:722.099790px;}
.y131_c00001{bottom:722.100450px;}
.y3048_c00001{bottom:722.160000px;}
.y11fc_c00001{bottom:722.190450px;}
.y23f4_c00001{bottom:722.280450px;}
.y198c_c00001{bottom:722.340000px;}
.y28fe_c00001{bottom:722.370450px;}
.y235d_c00001{bottom:722.460450px;}
.yb53_c00001{bottom:722.550450px;}
.y3979_c00001{bottom:722.640450px;}
.y3692_c00001{bottom:722.730432px;}
.y28eb_c00001{bottom:722.820450px;}
.y17b6_c00001{bottom:723.000450px;}
.y20df_c00001{bottom:723.089277px;}
.y3399_c00001{bottom:723.090450px;}
.y2870_c00001{bottom:723.090522px;}
.y34cb_c00001{bottom:723.180000px;}
.y551_c00001{bottom:723.180450px;}
.y30cb_c00001{bottom:723.240000px;}
.yae5_c00001{bottom:723.270450px;}
.y2293_c00001{bottom:723.360450px;}
.y24df_c00001{bottom:723.447066px;}
.y1675_c00001{bottom:723.450450px;}
.y27cf_c00001{bottom:723.540450px;}
.y38f8_c00001{bottom:723.630450px;}
.y21eb_c00001{bottom:723.720549px;}
.y26d7_c00001{bottom:723.806994px;}
.y134a_c00001{bottom:723.811818px;}
.y7c3_c00001{bottom:723.900450px;}
.y32b4_c00001{bottom:723.960000px;}
.y29d_c00001{bottom:723.990000px;}
.y429_c00001{bottom:723.990450px;}
.y62a_c00001{bottom:724.080450px;}
.y7a4_c00001{bottom:724.260450px;}
.y1b45_c00001{bottom:724.320000px;}
.y262e_c00001{bottom:724.350081px;}
.y717_c00001{bottom:724.350450px;}
.y2b35_c00001{bottom:724.351692px;}
.y182_c00001{bottom:724.440450px;}
.y32d4_c00001{bottom:724.500000px;}
.y1359_c00001{bottom:724.626444px;}
.y2f2d_c00001{bottom:724.680000px;}
.y165d_c00001{bottom:724.710450px;}
.y2801_c00001{bottom:724.800450px;}
.y15c0_c00001{bottom:724.800720px;}
.y15c7_c00001{bottom:724.802367px;}
.y2f72_c00001{bottom:724.860000px;}
.yf76_c00001{bottom:724.890450px;}
.y1a61_c00001{bottom:725.040000px;}
.y5ee_c00001{bottom:725.160450px;}
.y5cd_c00001{bottom:725.250450px;}
.y333a_c00001{bottom:725.400000px;}
.y1485_c00001{bottom:725.430450px;}
.y1ad_c00001{bottom:725.520450px;}
.y2d75_c00001{bottom:725.580000px;}
.y22c9_c00001{bottom:725.699712px;}
.y34a4_c00001{bottom:725.790450px;}
.y3a17_c00001{bottom:725.793483px;}
.y2612_c00001{bottom:725.880450px;}
.y15a_c00001{bottom:725.970450px;}
.ye85_c00001{bottom:726.060072px;}
.yfbc_c00001{bottom:726.060450px;}
.y2510_c00001{bottom:726.146553px;}
.y69a_c00001{bottom:726.150450px;}
.y8a_c00001{bottom:726.240450px;}
.y19cc_c00001{bottom:726.300000px;}
.y29c_c00001{bottom:726.330450px;}
.y3784_c00001{bottom:726.420450px;}
.y1933_c00001{bottom:726.480000px;}
.y507_c00001{bottom:726.510162px;}
.y29e_c00001{bottom:726.600450px;}
.y1a19_c00001{bottom:726.660000px;}
.y28dd_c00001{bottom:726.690450px;}
.y748_c00001{bottom:726.780450px;}
.y1f3d_c00001{bottom:726.874797px;}
.y95c_c00001{bottom:726.960450px;}
.y2052_c00001{bottom:726.960549px;}
.y59e_c00001{bottom:727.050450px;}
.ya3d_c00001{bottom:727.140450px;}
.y2470_c00001{bottom:727.140819px;}
.y18d8_c00001{bottom:727.230450px;}
.y72d_c00001{bottom:727.320450px;}
.y83d_c00001{bottom:727.410450px;}
.y15fc_c00001{bottom:727.410540px;}
.y1d9c_c00001{bottom:727.560000px;}
.yc42_c00001{bottom:727.770450px;}
.y64e_c00001{bottom:727.860450px;}
.yc7b_c00001{bottom:727.863474px;}
.y1b96_c00001{bottom:727.920000px;}
.y18b9_c00001{bottom:728.040450px;}
.y2fcd_c00001{bottom:728.100000px;}
.y2251_c00001{bottom:728.130450px;}
.y3625_c00001{bottom:728.220450px;}
.y387f_c00001{bottom:728.306616px;}
.y2271_c00001{bottom:728.308317px;}
.y2c03_c00001{bottom:728.308758px;}
.y2bb2_c00001{bottom:728.308830px;}
.y2786_c00001{bottom:728.310450px;}
.y126e_c00001{bottom:728.400450px;}
.y12be_c00001{bottom:728.401656px;}
.y190a_c00001{bottom:728.472600px;}
.y16b6_c00001{bottom:728.580450px;}
.y3233_c00001{bottom:728.640000px;}
.y1cd5_c00001{bottom:728.647020px;}
.y34e2_c00001{bottom:728.670450px;}
.y2d05_c00001{bottom:728.670522px;}
.y1bde_c00001{bottom:728.820000px;}
.y205_c00001{bottom:728.940450px;}
.y1b47_c00001{bottom:729.000000px;}
.y271e_c00001{bottom:729.026742px;}
.ye3_c00001{bottom:729.030450px;}
.y1afb_c00001{bottom:729.180000px;}
.y1191_c00001{bottom:729.210450px;}
.y89d_c00001{bottom:729.301215px;}
.y1e62_c00001{bottom:729.360000px;}
.yb3_c00001{bottom:729.480450px;}
.y36fa_c00001{bottom:729.570450px;}
.yca3_c00001{bottom:729.570972px;}
.y12cd_c00001{bottom:729.660900px;}
.y2a88_c00001{bottom:729.750450px;}
.y313a_c00001{bottom:729.900000px;}
.y2c24_c00001{bottom:729.930450px;}
.y111a_c00001{bottom:730.020450px;}
.y1ef3_c00001{bottom:730.080000px;}
.y3848_c00001{bottom:730.110450px;}
.y7d2_c00001{bottom:730.200450px;}
.y1b95_c00001{bottom:730.260000px;}
.yff1_c00001{bottom:730.290450px;}
.y1865_c00001{bottom:730.380450px;}
.y33c8_c00001{bottom:730.469928px;}
.y766_c00001{bottom:730.470450px;}
.ydb0_c00001{bottom:730.470540px;}
.y4a6_c00001{bottom:730.560450px;}
.y298a_c00001{bottom:730.647921px;}
.y381_c00001{bottom:730.650450px;}
.y785_c00001{bottom:730.740450px;}
.y2341_c00001{bottom:730.830450px;}
.y16d7_c00001{bottom:730.920450px;}
.y308f_c00001{bottom:730.980000px;}
.y5c6_c00001{bottom:731.190450px;}
.y382e_c00001{bottom:731.280450px;}
.yb81_c00001{bottom:731.367102px;}
.y231f_c00001{bottom:731.370009px;}
.y80f_c00001{bottom:731.370450px;}
.y3733_c00001{bottom:731.370549px;}
.y2e8a_c00001{bottom:731.520000px;}
.y4c0_c00001{bottom:731.550450px;}
.y10c9_c00001{bottom:731.640450px;}
.y1def_c00001{bottom:731.700000px;}
.y3456_c00001{bottom:731.730450px;}
.y1095_c00001{bottom:731.730729px;}
.y2c43_c00001{bottom:731.820000px;}
.y2d52_c00001{bottom:731.886300px;}
.y98c_c00001{bottom:732.000099px;}
.y3805_c00001{bottom:732.000450px;}
.y25cc_c00001{bottom:732.180450px;}
.y1c1d_c00001{bottom:732.240000px;}
.yf54_c00001{bottom:732.360450px;}
.y3358_c00001{bottom:732.600000px;}
.y2585_c00001{bottom:732.630450px;}
.y2037_c00001{bottom:732.720450px;}
.y3491_c00001{bottom:732.809937px;}
.y3b6_c00001{bottom:732.810450px;}
.yeb8_c00001{bottom:732.900450px;}
.y2fa4_c00001{bottom:732.960000px;}
.y482_c00001{bottom:732.990450px;}
.yb96_c00001{bottom:733.080225px;}
.y609_c00001{bottom:733.080450px;}
.y1b46_c00001{bottom:733.140000px;}
.y10b8_c00001{bottom:733.170450px;}
.y768_c00001{bottom:733.260450px;}
.y1241_c00001{bottom:733.349802px;}
.y8b8_c00001{bottom:733.350162px;}
.y40b_c00001{bottom:733.350450px;}
.y29eb_c00001{bottom:733.439127px;}
.y206e_c00001{bottom:733.439496px;}
.y2958_c00001{bottom:733.439568px;}
.y37b7_c00001{bottom:733.440450px;}
.y315a_c00001{bottom:733.500000px;}
.y219a_c00001{bottom:733.530450px;}
.y35cf_c00001{bottom:733.620450px;}
.y14cc_c00001{bottom:733.621125px;}
.y52f_c00001{bottom:733.710450px;}
.y2756_c00001{bottom:733.800774px;}
.y1c94_c00001{bottom:733.860000px;}
.y1987_c00001{bottom:734.040000px;}
.y241_c00001{bottom:734.160450px;}
.y1c51_c00001{bottom:734.220000px;}
.y21c3_c00001{bottom:734.248362px;}
.y20a1_c00001{bottom:734.249640px;}
.y21b8_c00001{bottom:734.250009px;}
.y2a4a_c00001{bottom:734.250081px;}
.y2b34_c00001{bottom:734.251683px;}
.y107_c00001{bottom:734.340450px;}
.y19cd_c00001{bottom:734.400000px;}
.y2c44_c00001{bottom:734.430450px;}
.ydf9_c00001{bottom:734.520162px;}
.y124b_c00001{bottom:734.610000px;}
.yf65_c00001{bottom:734.610450px;}
.y37dd_c00001{bottom:734.610774px;}
.yaa3_c00001{bottom:734.700450px;}
.y868_c00001{bottom:734.880450px;}
.y34f8_c00001{bottom:734.970450px;}
.y1462_c00001{bottom:735.060450px;}
.yd42_c00001{bottom:735.240450px;}
.y31dd_c00001{bottom:735.300000px;}
.y26f7_c00001{bottom:735.330450px;}
.y1710_c00001{bottom:735.420450px;}
.y180d_c00001{bottom:735.420600px;}
.y2dcc_c00001{bottom:735.480000px;}
.y2e5b_c00001{bottom:735.483060px;}
.y6ba_c00001{bottom:735.510450px;}
.y31b_c00001{bottom:735.600450px;}
.y379d_c00001{bottom:735.600774px;}
.y3090_c00001{bottom:735.660000px;}
.y2aa3_c00001{bottom:735.689937px;}
.y2530_c00001{bottom:735.690450px;}
.y2b7c_c00001{bottom:735.780450px;}
.y42_c00001{bottom:735.870450px;}
.ye90_c00001{bottom:735.955824px;}
.y2b94_c00001{bottom:735.960450px;}
.y2fa5_c00001{bottom:736.020000px;}
.y66c_c00001{bottom:736.140450px;}
.y2e8b_c00001{bottom:736.200000px;}
.y1510_c00001{bottom:736.230450px;}
.y850_c00001{bottom:736.410450px;}
.y158d_c00001{bottom:736.410540px;}
.ydd0_c00001{bottom:736.411575px;}
.y1403_c00001{bottom:736.501635px;}
.y301_c00001{bottom:736.590450px;}
.y7f7_c00001{bottom:736.770450px;}
.y23f1_c00001{bottom:736.860450px;}
.y1bdf_c00001{bottom:736.920000px;}
.y1048_c00001{bottom:736.950450px;}
.y1d5d_c00001{bottom:737.100000px;}
.y246f_c00001{bottom:737.130450px;}
.y392d_c00001{bottom:737.220450px;}
.y370d_c00001{bottom:737.310000px;}
.yba1_c00001{bottom:737.400450px;}
.y315b_c00001{bottom:737.460000px;}
.y1737_c00001{bottom:737.490450px;}
.y269_c00001{bottom:737.580450px;}
.y326a_c00001{bottom:737.640000px;}
.y3df_c00001{bottom:737.760450px;}
.y1dc_c00001{bottom:737.940450px;}
.y2da3_c00001{bottom:738.000000px;}
.y2cda_c00001{bottom:738.120153px;}
.ybec_c00001{bottom:738.120450px;}
.y2f27_c00001{bottom:738.180000px;}
.y23f3_c00001{bottom:738.210450px;}
.y2d49_c00001{bottom:738.220602px;}
.y4d0_c00001{bottom:738.300450px;}
.y1c95_c00001{bottom:738.540000px;}
.y2b7d_c00001{bottom:738.570450px;}
.y1562_c00001{bottom:738.572250px;}
.y11c5_c00001{bottom:738.659847px;}
.y3691_c00001{bottom:738.660108px;}
.y350d_c00001{bottom:738.660450px;}
.y1ec2_c00001{bottom:738.720000px;}
.y2939_c00001{bottom:738.840450px;}
.yb27_c00001{bottom:738.840549px;}
.y6d9_c00001{bottom:738.840954px;}
.y32fd_c00001{bottom:738.900000px;}
.ye8a_c00001{bottom:738.928758px;}
.y3576_c00001{bottom:738.929928px;}
.y65_c00001{bottom:738.930450px;}
.y1391_c00001{bottom:738.930882px;}
.y32d3_c00001{bottom:739.260000px;}
.y24ab_c00001{bottom:739.289712px;}
.y11d1_c00001{bottom:739.466958px;}
.y27e1_c00001{bottom:739.468227px;}
.y37cc_c00001{bottom:739.470450px;}
.y14a4_c00001{bottom:739.560225px;}
.y21ea_c00001{bottom:739.560450px;}
.y2da_c00001{bottom:739.650450px;}
.yb2f_c00001{bottom:739.650666px;}
.yd85_c00001{bottom:739.652520px;}
.y95b_c00001{bottom:739.740450px;}
.y7a0_c00001{bottom:739.920450px;}
.y1148_c00001{bottom:739.923015px;}
.y3049_c00001{bottom:739.980000px;}
.y375d_c00001{bottom:740.010450px;}
.y28af_c00001{bottom:740.100450px;}
.y1c1e_c00001{bottom:740.160000px;}
.y28c9_c00001{bottom:740.190450px;}
.y139b_c00001{bottom:740.190900px;}
.y506_c00001{bottom:740.280450px;}
.y1d9d_c00001{bottom:740.340000px;}
.y26b_c00001{bottom:740.370450px;}
.y573_c00001{bottom:740.460450px;}
.y244a_c00001{bottom:740.550450px;}
.yd15_c00001{bottom:740.640450px;}
.yce6_c00001{bottom:740.730450px;}
.y1158_c00001{bottom:740.740647px;}
.y3772_c00001{bottom:740.820450px;}
.y1aad_c00001{bottom:740.883960px;}
.y345_c00001{bottom:740.910450px;}
.y19_c00001{bottom:741.000450px;}
.y36c1_c00001{bottom:741.180450px;}
.yf96_c00001{bottom:741.270450px;}
.y629_c00001{bottom:741.360450px;}
.y92d_c00001{bottom:741.450450px;}
.y17f9_c00001{bottom:741.630450px;}
.yab6_c00001{bottom:741.720450px;}
.y3a16_c00001{bottom:741.723159px;}
.y1a18_c00001{bottom:741.780000px;}
.y1fdc_c00001{bottom:741.900450px;}
.y1d9e_c00001{bottom:741.960000px;}
.y1820_c00001{bottom:741.990450px;}
.y387e_c00001{bottom:742.076904px;}
.yf3b_c00001{bottom:742.080450px;}
.y1df0_c00001{bottom:742.140000px;}
.yb52_c00001{bottom:742.260450px;}
.y1cd4_c00001{bottom:742.323060px;}
.y8ef_c00001{bottom:742.350450px;}
.y1e28_c00001{bottom:742.500000px;}
.y3302_c00001{bottom:742.680000px;}
.y2051_c00001{bottom:742.800450px;}
.y32b3_c00001{bottom:742.860000px;}
.y550_c00001{bottom:742.890450px;}
.y1006_c00001{bottom:742.979808px;}
.y130_c00001{bottom:743.070450px;}
.y181_c00001{bottom:743.160450px;}
.y1afe_c00001{bottom:743.220000px;}
.y27b8_c00001{bottom:743.250450px;}
.y2f35_c00001{bottom:743.400000px;}
.y2c79_c00001{bottom:743.426346px;}
.y2c68_c00001{bottom:743.429640px;}
.ya1f_c00001{bottom:743.430450px;}
.y1ac_c00001{bottom:743.520450px;}
.y1753_c00001{bottom:743.610450px;}
.y29a_c00001{bottom:743.700000px;}
.y204_c00001{bottom:743.700450px;}
.y17b5_c00001{bottom:743.790450px;}
.y15bf_c00001{bottom:743.790630px;}
.y15c6_c00001{bottom:743.792277px;}
.y2b0d_c00001{bottom:743.879718px;}
.y30f4_c00001{bottom:743.940000px;}
.y5cc_c00001{bottom:744.150450px;}
.y2b33_c00001{bottom:744.241314px;}
.y38cc_c00001{bottom:744.420450px;}
.y317f_c00001{bottom:744.480000px;}
.y2ba9_c00001{bottom:744.510450px;}
.y716_c00001{bottom:744.600450px;}
.y2df9_c00001{bottom:744.660000px;}
.y428_c00001{bottom:744.690450px;}
.y16f7_c00001{bottom:744.780450px;}
.y20de_c00001{bottom:744.869205px;}
.y237c_c00001{bottom:744.870450px;}
.y946_c00001{bottom:744.960450px;}
.y2f6f_c00001{bottom:745.020000px;}
.y370c_c00001{bottom:745.050450px;}
.y6f3_c00001{bottom:745.140450px;}
.y3020_c00001{bottom:745.200000px;}
.y158f_c00001{bottom:745.230450px;}
.y24de_c00001{bottom:745.317579px;}
.y160e_c00001{bottom:745.410450px;}
.y2be0_c00001{bottom:745.500450px;}
.y1f77_c00001{bottom:745.503141px;}
.y31ae_c00001{bottom:745.560000px;}
.y26d6_c00001{bottom:745.677507px;}
.y159_c00001{bottom:745.680450px;}
.y1a60_c00001{bottom:745.740000px;}
.y3591_c00001{bottom:745.770000px;}
.y98b_c00001{bottom:745.860162px;}
.y35a9_c00001{bottom:745.860450px;}
.y2292_c00001{bottom:745.950450px;}
.yc7c_c00001{bottom:745.953582px;}
.y299_c00001{bottom:746.040450px;}
.y262d_c00001{bottom:746.130009px;}
.ya3c_c00001{bottom:746.130450px;}
.y2a86_c00001{bottom:746.220450px;}
.y2d74_c00001{bottom:746.280000px;}
.y29b_c00001{bottom:746.310450px;}
.y1409_c00001{bottom:746.400855px;}
.y15fb_c00001{bottom:746.401125px;}
.y2fce_c00001{bottom:746.460000px;}
.y25aa_c00001{bottom:746.490450px;}
.y2785_c00001{bottom:746.580450px;}
.y39ee_c00001{bottom:746.670000px;}
.y59d_c00001{bottom:746.760450px;}
.y2f2c_c00001{bottom:746.820000px;}
.yc2c_c00001{bottom:746.850450px;}
.y220_c00001{bottom:746.940450px;}
.y72c_c00001{bottom:747.030450px;}
.y699_c00001{bottom:747.119847px;}
.y8b7_c00001{bottom:747.120450px;}
.y1932_c00001{bottom:747.180000px;}
.y3732_c00001{bottom:747.210450px;}
.y3564_c00001{bottom:747.300450px;}
.y134b_c00001{bottom:747.302205px;}
.y1ef2_c00001{bottom:747.360000px;}
.y22c8_c00001{bottom:747.479640px;}
.y747_c00001{bottom:747.480450px;}
.y31e0_c00001{bottom:747.540000px;}
.yca4_c00001{bottom:747.661233px;}
.y1da0_c00001{bottom:747.720000px;}
.y2d2a_c00001{bottom:747.741900px;}
.y33c7_c00001{bottom:747.749919px;}
.y22e7_c00001{bottom:747.930450px;}
.y250f_c00001{bottom:748.017066px;}
.y2aca_c00001{bottom:748.020450px;}
.y1f5c_c00001{bottom:748.110450px;}
.y135a_c00001{bottom:748.116831px;}
.yc13_c00001{bottom:748.200450px;}
.y12bf_c00001{bottom:748.202178px;}
.y30c9_c00001{bottom:748.260000px;}
.ydf8_c00001{bottom:748.290450px;}
.y89c_c00001{bottom:748.291125px;}
.y2611_c00001{bottom:748.380450px;}
.y126d_c00001{bottom:748.470450px;}
.y34b7_c00001{bottom:748.650450px;}
.y304a_c00001{bottom:748.800000px;}
.y64d_c00001{bottom:748.829847px;}
.ya68_c00001{bottom:748.830387px;}
.y39ce_c00001{bottom:748.830450px;}
.y2a13_c00001{bottom:748.920450px;}
.y1d19_c00001{bottom:748.980000px;}
.y1119_c00001{bottom:749.010450px;}
.yb2_c00001{bottom:749.100450px;}
.y1b44_c00001{bottom:749.160000px;}
.y23a5_c00001{bottom:749.190450px;}
.y6b9_c00001{bottom:749.280450px;}
.y1d1a_c00001{bottom:749.340000px;}
.ydaf_c00001{bottom:749.460450px;}
.y12ce_c00001{bottom:749.461350px;}
.y1e5f_c00001{bottom:749.520000px;}
.y2a87_c00001{bottom:749.550450px;}
.y2f70_c00001{bottom:749.700000px;}
.y25cb_c00001{bottom:749.730009px;}
.ye2_c00001{bottom:749.730450px;}
.y283e_c00001{bottom:749.910450px;}
.y16a5_c00001{bottom:749.910879px;}
.y2270_c00001{bottom:750.088245px;}
.y2c02_c00001{bottom:750.088686px;}
.y2584_c00001{bottom:750.088758px;}
.y3b5_c00001{bottom:750.090450px;}
.y765_c00001{bottom:750.180450px;}
.y32af_c00001{bottom:750.240000px;}
.y39ed_c00001{bottom:750.270450px;}
.yff0_c00001{bottom:750.360450px;}
.y1b92_c00001{bottom:750.420000px;}
.y380_c00001{bottom:750.450450px;}
.y37dc_c00001{bottom:750.540450px;}
.y2dcb_c00001{bottom:750.780000px;}
.y271d_c00001{bottom:750.806670px;}
.y4a5_c00001{bottom:750.810450px;}
.y200f_c00001{bottom:750.900450px;}
.y18d7_c00001{bottom:750.990450px;}
.y1f3c_c00001{bottom:750.994491px;}
.y1864_c00001{bottom:751.080450px;}
.y165c_c00001{bottom:751.170450px;}
.yd41_c00001{bottom:751.350450px;}
.y784_c00001{bottom:751.440450px;}
.y2ff0_c00001{bottom:751.500000px;}
.y379c_c00001{bottom:751.530450px;}
.y4bf_c00001{bottom:751.710450px;}
.y18b8_c00001{bottom:751.800450px;}
.y315c_c00001{bottom:751.860000px;}
.y1f17_c00001{bottom:751.983285px;}
.y36f9_c00001{bottom:752.070450px;}
.y2199_c00001{bottom:752.160450px;}
.y3180_c00001{bottom:752.220000px;}
.y5c5_c00001{bottom:752.250450px;}
.y14ee_c00001{bottom:752.340450px;}
.y1e60_c00001{bottom:752.400000px;}
.y2989_c00001{bottom:752.427849px;}
.y2985_c00001{bottom:752.429496px;}
.y9f5_c00001{bottom:752.430450px;}
.y22fc_c00001{bottom:752.430630px;}
.y14cb_c00001{bottom:752.520450px;}
.y1909_c00001{bottom:752.586300px;}
.y2d19_c00001{bottom:752.610450px;}
.y7d1_c00001{bottom:752.700450px;}
.yfbb_c00001{bottom:752.700729px;}
.y1ff2_c00001{bottom:752.790450px;}
.y168c_c00001{bottom:753.240450px;}
.y231e_c00001{bottom:753.240522px;}
.y1c53_c00001{bottom:753.300000px;}
.y66b_c00001{bottom:753.420450px;}
.y246e_c00001{bottom:753.510450px;}
.y4a7_c00001{bottom:753.600450px;}
.yf53_c00001{bottom:753.690450px;}
.y240_c00001{bottom:753.870450px;}
.y1e29_c00001{bottom:754.020000px;}
.y64_c00001{bottom:754.050450px;}
.yc41_c00001{bottom:754.140450px;}
.y2b32_c00001{bottom:754.141305px;}
.y1e94_c00001{bottom:754.200000px;}
.y255c_c00001{bottom:754.230450px;}
.y52e_c00001{bottom:754.410450px;}
.y481_c00001{bottom:754.410600px;}
.y3690_c00001{bottom:754.500009px;}
.y1674_c00001{bottom:754.500450px;}
.y1aac_c00001{bottom:754.560000px;}
.y3804_c00001{bottom:754.590450px;}
.y3490_c00001{bottom:754.680450px;}
.y19ca_c00001{bottom:754.740000px;}
.yeb7_c00001{bottom:754.770450px;}
.ye2d_c00001{bottom:754.860450px;}
.ye4e_c00001{bottom:754.950450px;}
.y3428_c00001{bottom:755.040450px;}
.y2a2c_c00001{bottom:755.130450px;}
.y28ea_c00001{bottom:755.220450px;}
.yb82_c00001{bottom:755.306886px;}
.y29ea_c00001{bottom:755.309640px;}
.y2034_c00001{bottom:755.310009px;}
.y2957_c00001{bottom:755.310081px;}
.y106_c00001{bottom:755.310450px;}
.y31a_c00001{bottom:755.400450px;}
.y158c_c00001{bottom:755.401125px;}
.ydcf_c00001{bottom:755.401485px;}
.y505_c00001{bottom:755.490450px;}
.y1402_c00001{bottom:755.491545px;}
.y3526_c00001{bottom:755.577318px;}
.y3138_c00001{bottom:755.640000px;}
.y144e_c00001{bottom:755.760600px;}
.y328c_c00001{bottom:755.820000px;}
.y387d_c00001{bottom:755.936967px;}
.y2d51_c00001{bottom:755.988480px;}
.y1ec1_c00001{bottom:756.000000px;}
.y21c2_c00001{bottom:756.028290px;}
.y2635_c00001{bottom:756.028686px;}
.y20a0_c00001{bottom:756.029568px;}
.y21b7_c00001{bottom:756.029937px;}
.y2a49_c00001{bottom:756.030009px;}
.y37b6_c00001{bottom:756.030450px;}
.y150f_c00001{bottom:756.030540px;}
.y1cd3_c00001{bottom:756.180000px;}
.y35ce_c00001{bottom:756.210450px;}
.y4cf_c00001{bottom:756.300450px;}
.y2e88_c00001{bottom:756.360000px;}
.y3455_c00001{bottom:756.390450px;}
.y140e_c00001{bottom:756.480000px;}
.y1484_c00001{bottom:756.480450px;}
.y3de_c00001{bottom:756.570450px;}
.y252f_c00001{bottom:756.659928px;}
.y311b_c00001{bottom:756.900000px;}
.yce5_c00001{bottom:756.930450px;}
.yb97_c00001{bottom:757.020225px;}
.y392c_c00001{bottom:757.020450px;}
.y1bdc_c00001{bottom:757.080000px;}
.y8e0_c00001{bottom:757.110450px;}
.y1899_c00001{bottom:757.200450px;}
.y89_c00001{bottom:757.290450px;}
.y2aa5_c00001{bottom:757.560450px;}
.y1561_c00001{bottom:757.562160px;}
.y3a15_c00001{bottom:757.563060px;}
.y1db_c00001{bottom:757.650450px;}
.y1380_c00001{bottom:757.830450px;}
.y451_c00001{bottom:757.920450px;}
.y32d2_c00001{bottom:758.160000px;}
.y180_c00001{bottom:758.280450px;}
.y3269_c00001{bottom:758.340000px;}
.y2b7b_c00001{bottom:758.370450px;}
.y2d48_c00001{bottom:758.379882px;}
.y83c_c00001{bottom:758.460450px;}
.y2f26_c00001{bottom:758.520000px;}
.y628_c00001{bottom:758.550450px;}
.yd84_c00001{bottom:758.642430px;}
.y1c92_c00001{bottom:758.700000px;}
.y3542_c00001{bottom:758.730450px;}
.y198a_c00001{bottom:758.880000px;}
.y26f6_c00001{bottom:758.910450px;}
.yf75_c00001{bottom:759.000450px;}
.y1149_c00001{bottom:759.003600px;}
.y2f34_c00001{bottom:759.060000px;}
.y28dc_c00001{bottom:759.090450px;}
.y2250_c00001{bottom:759.180450px;}
.y170f_c00001{bottom:759.270450px;}
.y180c_c00001{bottom:759.270600px;}
.y2657_c00001{bottom:759.360450px;}
.y3224_c00001{bottom:759.457020px;}
.y6d8_c00001{bottom:759.540450px;}
.y1367_c00001{bottom:759.540600px;}
.y98a_c00001{bottom:759.630450px;}
.y1159_c00001{bottom:759.821232px;}
.y2cd9_c00001{bottom:759.900081px;}
.y2d9_c00001{bottom:759.900450px;}
.y3301_c00001{bottom:759.960000px;}
.yd14_c00001{bottom:759.990450px;}
.y1242_c00001{bottom:759.990477px;}
.y572_c00001{bottom:760.170450px;}
.y21e9_c00001{bottom:760.260450px;}
.y1c1a_c00001{bottom:760.320000px;}
.y6b8_c00001{bottom:760.350450px;}
.y33b0_c00001{bottom:760.530450px;}
.y6ef_c00001{bottom:760.710450px;}
.y40a_c00001{bottom:760.800450px;}
.y3249_c00001{bottom:760.860000px;}
.y18_c00001{bottom:760.890450px;}
.y1fdb_c00001{bottom:760.980450px;}
.y2e89_c00001{bottom:761.040000px;}
.y24aa_c00001{bottom:761.069640px;}
.y2131_c00001{bottom:761.160450px;}
.y27e0_c00001{bottom:761.248155px;}
.y124c_c00001{bottom:761.249550px;}
.y27ce_c00001{bottom:761.250231px;}
.y1788_c00001{bottom:761.250450px;}
.y14a3_c00001{bottom:761.340153px;}
.y1736_c00001{bottom:761.340450px;}
.y2938_c00001{bottom:761.430450px;}
.y1ab_c00001{bottom:761.520450px;}
.y29d2_c00001{bottom:761.610450px;}
.y5ed_c00001{bottom:761.700450px;}
.y34f7_c00001{bottom:761.880450px;}
.y32b1_c00001{bottom:761.940000px;}
.y2ba8_c00001{bottom:761.970009px;}
.y220f_c00001{bottom:762.060450px;}
.y1afd_c00001{bottom:762.120000px;}
.y350c_c00001{bottom:762.149226px;}
.y33fc_c00001{bottom:762.150450px;}
.y1c1b_c00001{bottom:762.300000px;}
.y344_c00001{bottom:762.330450px;}
.y95a_c00001{bottom:762.420450px;}
.y33ca_c00001{bottom:762.420603px;}
.y2693_c00001{bottom:762.510153px;}
.y222d_c00001{bottom:762.510450px;}
.y54f_c00001{bottom:762.600450px;}
.y2f2b_c00001{bottom:762.660000px;}
.ya67_c00001{bottom:762.690450px;}
.yf1b_c00001{bottom:762.780450px;}
.y15be_c00001{bottom:762.780540px;}
.y15c5_c00001{bottom:762.782187px;}
.y19cb_c00001{bottom:762.840000px;}
.y255b_c00001{bottom:762.870450px;}
.y7a1_c00001{bottom:762.960450px;}
.y2da2_c00001{bottom:763.020000px;}
.y12f_c00001{bottom:763.050450px;}
.y5cb_c00001{bottom:763.140450px;}
.y2892_c00001{bottom:763.230450px;}
.y11fb_c00001{bottom:763.320450px;}
.y1c93_c00001{bottom:763.380000px;}
.y3771_c00001{bottom:763.410450px;}
.y296_c00001{bottom:763.500000px;}
.y2672_c00001{bottom:763.500450px;}
.y36c0_c00001{bottom:763.680450px;}
.y1408_c00001{bottom:763.680846px;}
.y2edf_c00001{bottom:763.740000px;}
.y28fd_c00001{bottom:763.770450px;}
.y11c6_c00001{bottom:763.859145px;}
.y2c41_c00001{bottom:763.860450px;}
.y222c_c00001{bottom:763.950450px;}
.y2b31_c00001{bottom:764.041296px;}
.ydf7_c00001{bottom:764.042160px;}
.yc7d_c00001{bottom:764.043690px;}
.y608_c00001{bottom:764.130450px;}
.y35e8_c00001{bottom:764.220450px;}
.y1752_c00001{bottom:764.400450px;}
.y1ef1_c00001{bottom:764.460000px;}
.y17b4_c00001{bottom:764.490450px;}
.y3b4_c00001{bottom:764.580450px;}
.y30f3_c00001{bottom:764.640000px;}
.y11d2_c00001{bottom:764.666256px;}
.ye81_c00001{bottom:764.670639px;}
.y2291_c00001{bottom:764.760450px;}
.ya3b_c00001{bottom:765.120450px;}
.y2c78_c00001{bottom:765.206274px;}
.y2c67_c00001{bottom:765.209568px;}
.y203_c00001{bottom:765.210450px;}
.y715_c00001{bottom:765.300450px;}
.y33c6_c00001{bottom:765.300690px;}
.y1bdd_c00001{bottom:765.360000px;}
.y158_c00001{bottom:765.390450px;}
.y17f8_c00001{bottom:765.480450px;}
.y16f6_c00001{bottom:765.570450px;}
.y2af4_c00001{bottom:765.659646px;}
.yab5_c00001{bottom:765.660450px;}
.y181f_c00001{bottom:765.750450px;}
.yca5_c00001{bottom:765.751494px;}
.y295_c00001{bottom:765.840450px;}
.y237b_c00001{bottom:766.020009px;}
.y1d18_c00001{bottom:766.080000px;}
.y298_c00001{bottom:766.110450px;}
.y1aa8_c00001{bottom:766.260000px;}
.y2754_c00001{bottom:766.290450px;}
.y340d_c00001{bottom:766.380450px;}
.yd66_c00001{bottom:766.470396px;}
.y59c_c00001{bottom:766.470450px;}
.y2a12_c00001{bottom:766.560450px;}
.y1b93_c00001{bottom:766.620000px;}
.y2c42_c00001{bottom:766.650450px;}
.y20dd_c00001{bottom:766.739718px;}
.y72b_c00001{bottom:766.740450px;}
.y2fcc_c00001{bottom:766.800000px;}
.y29ac_c00001{bottom:766.830000px;}
.y41_c00001{bottom:766.920450px;}
.y2d73_c00001{bottom:766.980000px;}
.y746_c00001{bottom:767.010450px;}
.y24dd_c00001{bottom:767.097507px;}
.yc12_c00001{bottom:767.100450px;}
.y1434_c00001{bottom:767.190450px;}
.y3783_c00001{bottom:767.370450px;}
.y286f_c00001{bottom:767.455788px;}
.y26d5_c00001{bottom:767.457435px;}
.y96c_c00001{bottom:767.460450px;}
.y2e2a_c00001{bottom:767.520000px;}
.y97a_c00001{bottom:767.550450px;}
.y1392_c00001{bottom:767.551008px;}
.y300_c00001{bottom:767.640450px;}
.ye9e_c00001{bottom:767.640600px;}
.y13fd_c00001{bottom:767.730450px;}
.y7f6_c00001{bottom:767.820450px;}
.y1931_c00001{bottom:767.880000px;}
.y262c_c00001{bottom:767.909937px;}
.y1118_c00001{bottom:767.910450px;}
.y12c0_c00001{bottom:767.912520px;}
.y1a5f_c00001{bottom:768.060000px;}
.y64c_c00001{bottom:768.180450px;}
.y30c7_c00001{bottom:768.420000px;}
.y379b_c00001{bottom:768.450450px;}
.y368f_c00001{bottom:768.539622px;}
.y179f_c00001{bottom:768.540450px;}
.y385f_c00001{bottom:768.540600px;}
.ye1_c00001{bottom:768.630450px;}
.y3dd_c00001{bottom:768.810450px;}
.y21e8_c00001{bottom:768.900450px;}
.y139c_c00001{bottom:768.901350px;}
.y1b41_c00001{bottom:768.960000px;}
.y1085_c00001{bottom:768.990450px;}
.y25a9_c00001{bottom:769.080450px;}
.yc40_c00001{bottom:769.170450px;}
.y12cf_c00001{bottom:769.171350px;}
.ye93_c00001{bottom:769.254789px;}
.y22c7_c00001{bottom:769.259568px;}
.y4a3_c00001{bottom:769.260450px;}
.y2a85_c00001{bottom:769.440450px;}
.y1d5b_c00001{bottom:769.680000px;}
.y387c_c00001{bottom:769.707255px;}
.yd40_c00001{bottom:769.710450px;}
.y250e_c00001{bottom:769.796994px;}
.y1190_c00001{bottom:769.800450px;}
.y2f6d_c00001{bottom:769.860000px;}
.y764_c00001{bottom:769.890450px;}
.y2919_c00001{bottom:769.980450px;}
.y1cd1_c00001{bottom:770.040000px;}
.y3232_c00001{bottom:770.041440px;}
.y195c_c00001{bottom:770.070450px;}
.y37f_c00001{bottom:770.160450px;}
.y1c1c_c00001{bottom:770.220000px;}
.y14ed_c00001{bottom:770.430450px;}
.y3563_c00001{bottom:770.520450px;}
.y16a4_c00001{bottom:770.610600px;}
.y7d0_c00001{bottom:770.700450px;}
.y989_c00001{bottom:770.790600px;}
.y134c_c00001{bottom:770.792592px;}
.y3947_c00001{bottom:770.880450px;}
.y301e_c00001{bottom:770.940000px;}
.y1b43_c00001{bottom:771.120000px;}
.y3603_c00001{bottom:771.150450px;}
.y2dca_c00001{bottom:771.300000px;}
.y1005_c00001{bottom:771.420204px;}
.y39cd_c00001{bottom:771.420450px;}
.y22fb_c00001{bottom:771.420540px;}
.y1e93_c00001{bottom:771.480000px;}
.y25ca_c00001{bottom:771.509937px;}
.yb28_c00001{bottom:771.511260px;}
.y34e1_c00001{bottom:771.600450px;}
.y135b_c00001{bottom:771.607218px;}
.y3847_c00001{bottom:771.690162px;}
.y35a8_c00001{bottom:771.690450px;}
.y1863_c00001{bottom:771.780450px;}
.y2fef_c00001{bottom:771.840000px;}
.y22e6_c00001{bottom:771.870450px;}
.y226f_c00001{bottom:771.958758px;}
.y2c01_c00001{bottom:771.959199px;}
.y2583_c00001{bottom:771.959271px;}
.y140d_c00001{bottom:771.960450px;}
.y2e2b_c00001{bottom:772.200000px;}
.y14ca_c00001{bottom:772.320540px;}
.y2df8_c00001{bottom:772.380000px;}
.yb30_c00001{bottom:772.410054px;}
.y5c4_c00001{bottom:772.410450px;}
.y23f0_c00001{bottom:772.500450px;}
.y2085_c00001{bottom:772.590450px;}
.y271c_c00001{bottom:772.677183px;}
.y4be_c00001{bottom:772.680450px;}
.y783_c00001{bottom:772.770450px;}
.y450_c00001{bottom:773.040450px;}
.y30c8_c00001{bottom:773.100000px;}
.y8c7_c00001{bottom:773.130450px;}
.y101b_c00001{bottom:773.130783px;}
.y92c_c00001{bottom:773.220450px;}
.y1ec0_c00001{bottom:773.280000px;}
.yf52_c00001{bottom:773.310450px;}
.yfba_c00001{bottom:773.400450px;}
.y3a14_c00001{bottom:773.402961px;}
.y504_c00001{bottom:773.490450px;}
.y23f_c00001{bottom:773.580450px;}
.yba4_c00001{bottom:773.670450px;}
.y3467_c00001{bottom:773.850450px;}
.y52d_c00001{bottom:773.940450px;}
.y2b30_c00001{bottom:773.941287px;}
.y3357_c00001{bottom:774.000000px;}
.y246d_c00001{bottom:774.120450px;}
.y2988_c00001{bottom:774.298362px;}
.y2984_c00001{bottom:774.300009px;}
.yb1_c00001{bottom:774.300450px;}
.y1e26_c00001{bottom:774.360000px;}
.ydce_c00001{bottom:774.391395px;}
.ybac_c00001{bottom:774.479064px;}
.y235c_c00001{bottom:774.479811px;}
.ya1e_c00001{bottom:774.480450px;}
.y1401_c00001{bottom:774.481455px;}
.y2f6e_c00001{bottom:774.540000px;}
.y36f8_c00001{bottom:774.660450px;}
.y18d6_c00001{bottom:774.750450px;}
.y34f6_c00001{bottom:774.840450px;}
.y306e_c00001{bottom:774.900000px;}
.y4ce_c00001{bottom:775.020450px;}
.y150e_c00001{bottom:775.021125px;}
.y1d15_c00001{bottom:775.080000px;}
.y480_c00001{bottom:775.110450px;}
.y319_c00001{bottom:775.110600px;}
.y627_c00001{bottom:775.200450px;}
.y1f3b_c00001{bottom:775.204356px;}
.y105_c00001{bottom:775.380450px;}
.y2a68_c00001{bottom:775.470450px;}
.y1dee_c00001{bottom:775.620000px;}
.y18b7_c00001{bottom:775.650450px;}
.yc2b_c00001{bottom:775.740450px;}
.ybeb_c00001{bottom:776.100450px;}
.ye2c_c00001{bottom:776.103735px;}
.y3159_c00001{bottom:776.160000px;}
.y29bc_c00001{bottom:776.280450px;}
.y3646_c00001{bottom:776.370450px;}
.y160d_c00001{bottom:776.460450px;}
.yeb6_c00001{bottom:776.550450px;}
.y1560_c00001{bottom:776.552070px;}
.y395c_c00001{bottom:776.640450px;}
.y1908_c00001{bottom:776.688480px;}
.y3454_c00001{bottom:776.820450px;}
.y6f2_c00001{bottom:776.910450px;}
.y268_c00001{bottom:777.000450px;}
.y3300_c00001{bottom:777.060000px;}
.y29e9_c00001{bottom:777.089568px;}
.y2033_c00001{bottom:777.089937px;}
.y2740_c00001{bottom:777.090000px;}
.y2956_c00001{bottom:777.090009px;}
.y2bdf_c00001{bottom:777.090450px;}
.y348f_c00001{bottom:777.180450px;}
.y32d1_c00001{bottom:777.240000px;}
.y1da_c00001{bottom:777.450450px;}
.y35cc_c00001{bottom:777.540600px;}
.ye86_c00001{bottom:777.540828px;}
.yd83_c00001{bottom:777.541755px;}
.y17f_c00001{bottom:777.630450px;}
.y1cd2_c00001{bottom:777.780000px;}
.y867_c00001{bottom:777.810450px;}
.y21c1_c00001{bottom:777.898803px;}
.y2634_c00001{bottom:777.899199px;}
.y209f_c00001{bottom:777.900081px;}
.y1771_c00001{bottom:777.900450px;}
.y2a48_c00001{bottom:777.900522px;}
.y317c_c00001{bottom:777.960000px;}
.y21f_c00001{bottom:777.990450px;}
.y114a_c00001{bottom:777.994005px;}
.y390a_c00001{bottom:778.080450px;}
.y2f25_c00001{bottom:778.140000px;}
.y2aa1_c00001{bottom:778.440450px;}
.y427_c00001{bottom:778.530450px;}
.y2d47_c00001{bottom:778.539162px;}
.y1047_c00001{bottom:778.620162px;}
.y37b5_c00001{bottom:778.620450px;}
.y14ec_c00001{bottom:778.710450px;}
.y115a_c00001{bottom:778.811637px;}
.yd13_c00001{bottom:778.980450px;}
.y2d50_c00001{bottom:779.035680px;}
.y31aa_c00001{bottom:779.040000px;}
.y2656_c00001{bottom:779.070450px;}
.y2107_c00001{bottom:779.160450px;}
.yb83_c00001{bottom:779.246670px;}
.y187c_c00001{bottom:779.250450px;}
.yf04_c00001{bottom:779.251467px;}
.y21b6_c00001{bottom:779.340450px;}
.y3624_c00001{bottom:779.430450px;}
.y1aa_c00001{bottom:779.520450px;}
.y1989_c00001{bottom:779.580000px;}
.y571_c00001{bottom:779.880450px;}
.y6ee_c00001{bottom:779.970450px;}
.y1f76_c00001{bottom:779.974635px;}
.y220e_c00001{bottom:780.060450px;}
.y337a_c00001{bottom:780.064545px;}
.y6d7_c00001{bottom:780.240450px;}
.y294_c00001{bottom:780.330450px;}
.y3435_c00001{bottom:780.510450px;}
.y3047_c00001{bottom:780.660000px;}
.y17_c00001{bottom:780.690450px;}
.ye0_c00001{bottom:780.780450px;}
.y1d16_c00001{bottom:780.840000px;}
.y22ac_c00001{bottom:780.870450px;}
.y1407_c00001{bottom:780.870657px;}
.yb98_c00001{bottom:780.960225px;}
.y1898_c00001{bottom:780.960450px;}
.y1d17_c00001{bottom:781.020000px;}
.y2b93_c00001{bottom:781.050450px;}
.y3b3_c00001{bottom:781.140450px;}
.y2e87_c00001{bottom:781.200000px;}
.y2d8_c00001{bottom:781.320450px;}
.y1304_c00001{bottom:781.410450px;}
.y63_c00001{bottom:781.500450px;}
.y3248_c00001{bottom:781.560000px;}
.y20bc_c00001{bottom:781.680450px;}
.y1ef0_c00001{bottom:781.740000px;}
.y15bd_c00001{bottom:781.770450px;}
.y2cd8_c00001{bottom:781.770594px;}
.y15c4_c00001{bottom:781.772097px;}
.y200e_c00001{bottom:781.860600px;}
.y1a17_c00001{bottom:781.923960px;}
.y745_c00001{bottom:781.950450px;}
.y350b_c00001{bottom:782.039928px;}
.y317d_c00001{bottom:782.100000px;}
.y1735_c00001{bottom:782.130450px;}
.yc7e_c00001{bottom:782.133798px;}
.y29d1_c00001{bottom:782.220450px;}
.y1d9a_c00001{bottom:782.280000px;}
.y23a4_c00001{bottom:782.310450px;}
.y368e_c00001{bottom:782.399685px;}
.y54e_c00001{bottom:782.400450px;}
.y26f5_c00001{bottom:782.490450px;}
.y3590_c00001{bottom:782.580450px;}
.y3679_c00001{bottom:782.670450px;}
.y1b42_c00001{bottom:782.820000px;}
.y24a9_c00001{bottom:782.940153px;}
.ydf6_c00001{bottom:782.941485px;}
.y19c8_c00001{bottom:783.000000px;}
.y27df_c00001{bottom:783.028083px;}
.y27cd_c00001{bottom:783.030159px;}
.y170e_c00001{bottom:783.030450px;}
.y180b_c00001{bottom:783.030600px;}
.y137f_c00001{bottom:783.120450px;}
.y293_c00001{bottom:783.210450px;}
.y14a2_c00001{bottom:783.210666px;}
.yf95_c00001{bottom:783.390450px;}
.y387b_c00001{bottom:783.477543px;}
.y59b_c00001{bottom:783.480450px;}
.y1c90_c00001{bottom:783.540000px;}
.y2c25_c00001{bottom:783.570450px;}
.y343_c00001{bottom:783.660450px;}
.y1f16_c00001{bottom:783.662034px;}
.y12e_c00001{bottom:783.750450px;}
.y1ff1_c00001{bottom:783.840450px;}
.y2ba7_c00001{bottom:783.840522px;}
.yca6_c00001{bottom:783.841755px;}
.y301f_c00001{bottom:783.900000px;}
.y2e5a_c00001{bottom:783.903060px;}
.y2937_c00001{bottom:783.930450px;}
.y2b2f_c00001{bottom:783.930918px;}
.y3320_c00001{bottom:784.080000px;}
.y1fc3_c00001{bottom:784.110450px;}
.ya3a_c00001{bottom:784.110600px;}
.y2449_c00001{bottom:784.200450px;}
.y2fa6_c00001{bottom:784.260000px;}
.y2691_c00001{bottom:784.290081px;}
.y168b_c00001{bottom:784.290450px;}
.y347a_c00001{bottom:784.290600px;}
.y33c9_c00001{bottom:784.291116px;}
.y38f7_c00001{bottom:784.380450px;}
.y2da1_c00001{bottom:784.440000px;}
.y28fc_c00001{bottom:784.470450px;}
.y37cb_c00001{bottom:784.560450px;}
.y2130_c00001{bottom:784.650450px;}
.y1fda_c00001{bottom:784.740450px;}
.ya56_c00001{bottom:784.920450px;}
.y222b_c00001{bottom:785.009127px;}
.y1787_c00001{bottom:785.010450px;}
.y1751_c00001{bottom:785.100450px;}
.y15fa_c00001{bottom:785.100540px;}
.y1d5a_c00001{bottom:785.160000px;}
.y157_c00001{bottom:785.190450px;}
.y39eb_c00001{bottom:785.370000px;}
.y255a_c00001{bottom:785.370450px;}
.yae4_c00001{bottom:785.460450px;}
.y1bda_c00001{bottom:785.520000px;}
.y1673_c00001{bottom:785.550450px;}
.y317e_c00001{bottom:785.700000px;}
.y33c5_c00001{bottom:785.730450px;}
.y37db_c00001{bottom:785.820450px;}
.y1e27_c00001{bottom:785.880000px;}
.y2ade_c00001{bottom:785.910450px;}
.y409_c00001{bottom:786.000450px;}
.y30f2_c00001{bottom:786.060000px;}
.yc11_c00001{bottom:786.090450px;}
.y16f5_c00001{bottom:786.180450px;}
.yaa2_c00001{bottom:786.270450px;}
.y2eea_c00001{bottom:786.420000px;}
.y12e8_c00001{bottom:786.450450px;}
.y714_c00001{bottom:786.540600px;}
.y1243_c00001{bottom:786.631152px;}
.y1aa9_c00001{bottom:786.780000px;}
.y2156_c00001{bottom:786.810450px;}
.y144d_c00001{bottom:786.810600px;}
.y2198_c00001{bottom:786.900450px;}
.y2c77_c00001{bottom:787.076787px;}
.y2c66_c00001{bottom:787.080081px;}
.y426_c00001{bottom:787.080450px;}
.y698_c00001{bottom:787.170450px;}
.y27a4_c00001{bottom:787.260450px;}
.y7c2_c00001{bottom:787.440450px;}
.ye92_c00001{bottom:787.525257px;}
.y140c_c00001{bottom:787.530000px;}
.y2af3_c00001{bottom:787.530159px;}
.y1483_c00001{bottom:787.530450px;}
.y12c1_c00001{bottom:787.622862px;}
.y2d72_c00001{bottom:787.680000px;}
.y1117_c00001{bottom:787.710450px;}
.y237a_c00001{bottom:787.799937px;}
.y124d_c00001{bottom:787.889100px;}
.y8df_c00001{bottom:788.070450px;}
.y2d04_c00001{bottom:788.159127px;}
.y17b3_c00001{bottom:788.160450px;}
.y1c91_c00001{bottom:788.220000px;}
.y88_c00001{bottom:788.250450px;}
.y235b_c00001{bottom:788.339874px;}
.y13fc_c00001{bottom:788.430450px;}
.y20dc_c00001{bottom:788.519646px;}
.yc3f_c00001{bottom:788.519811px;}
.y1930_c00001{bottom:788.580000px;}
.y118f_c00001{bottom:788.700450px;}
.y1e92_c00001{bottom:788.760000px;}
.y38cb_c00001{bottom:788.790600px;}
.y24dc_c00001{bottom:788.877435px;}
.y52c_c00001{bottom:788.880450px;}
.y12d0_c00001{bottom:788.881350px;}
.y39ec_c00001{bottom:788.970450px;}
.y11c7_c00001{bottom:789.059946px;}
.y39ea_c00001{bottom:789.060450px;}
.y1b90_c00001{bottom:789.120000px;}
.y9be_c00001{bottom:789.150450px;}
.y17f7_c00001{bottom:789.240450px;}
.y286e_c00001{bottom:789.326301px;}
.y26d4_c00001{bottom:789.327948px;}
.y3a13_c00001{bottom:789.332637px;}
.y3dc_c00001{bottom:789.510450px;}
.y181e_c00001{bottom:789.600450px;}
.y262b_c00001{bottom:789.780450px;}
.y11d3_c00001{bottom:789.865554px;}
.y3602_c00001{bottom:789.869811px;}
.y37e_c00001{bottom:789.870450px;}
.ydae_c00001{bottom:789.870690px;}
.yf74_c00001{bottom:790.050450px;}
.y2a84_c00001{bottom:790.140450px;}
.y1c50_c00001{bottom:790.200000px;}
.y23c6_c00001{bottom:790.230009px;}
.y224f_c00001{bottom:790.230450px;}
.yd3f_c00001{bottom:790.320450px;}
.y1c17_c00001{bottom:790.380000px;}
.y3525_c00001{bottom:790.407840px;}
.ye8b_c00001{bottom:790.408011px;}
.y22fa_c00001{bottom:790.410450px;}
.y340c_c00001{bottom:790.500009px;}
.y217d_c00001{bottom:790.500450px;}
.y1ebf_c00001{bottom:790.560000px;}
.y126c_c00001{bottom:790.590450px;}
.y1366_c00001{bottom:790.590600px;}
.y6f1_c00001{bottom:790.680450px;}
.y3655_c00001{bottom:790.860600px;}
.y385e_c00001{bottom:791.040600px;}
.y19c9_c00001{bottom:791.100000px;}
.y22c6_c00001{bottom:791.130081px;}
.y26c1_c00001{bottom:791.130450px;}
.y14c9_c00001{bottom:791.311125px;}
.y503_c00001{bottom:791.490450px;}
.y25a8_c00001{bottom:791.580450px;}
.y2fcb_c00001{bottom:791.640000px;}
.y250d_c00001{bottom:791.667507px;}
.y3562_c00001{bottom:791.670450px;}
.y4cc_c00001{bottom:791.850000px;}
.y328a_c00001{bottom:792.180000px;}
.y4a4_c00001{bottom:792.300450px;}
.y1c18_c00001{bottom:792.360000px;}
.y18fa_c00001{bottom:792.386787px;}
.y318_c00001{bottom:792.390450px;}
.y6b7_c00001{bottom:792.570450px;}
.yfef_c00001{bottom:792.660450px;}
.yba5_c00001{bottom:792.839712px;}
.y2610_c00001{bottom:792.840450px;}
.y5ec_c00001{bottom:792.930450px;}
.y5c3_c00001{bottom:793.110600px;}
.y30c6_c00001{bottom:793.260000px;}
.y23e_c00001{bottom:793.290600px;}
.ydcd_c00001{bottom:793.290720px;}
.y25cd_c00001{bottom:793.380450px;}
.y14eb_c00001{bottom:793.382430px;}
.y959_c00001{bottom:793.470450px;}
.y1400_c00001{bottom:793.471365px;}
.y1bdb_c00001{bottom:793.620000px;}
.ybad_c00001{bottom:793.649829px;}
.y4bd_c00001{bottom:793.650450px;}
.y226e_c00001{bottom:793.738686px;}
.y2c00_c00001{bottom:793.739127px;}
.y2582_c00001{bottom:793.739199px;}
.y44f_c00001{bottom:793.740450px;}
.y101a_c00001{bottom:793.740729px;}
.y2ef6_c00001{bottom:793.800000px;}
.y2a2b_c00001{bottom:793.830450px;}
.y2b2e_c00001{bottom:793.830909px;}
.y150d_c00001{bottom:793.920450px;}
.y1069_c00001{bottom:794.010450px;}
.yb51_c00001{bottom:794.011437px;}
.y292_c00001{bottom:794.100450px;}
.y158b_c00001{bottom:794.100540px;}
.y2671_c00001{bottom:794.190450px;}
.y23ef_c00001{bottom:794.280450px;}
.y134d_c00001{bottom:794.282979px;}
.y32ff_c00001{bottom:794.340000px;}
.y782_c00001{bottom:794.370450px;}
.y271b_c00001{bottom:794.457111px;}
.y2711_c00001{bottom:794.458758px;}
.y7cf_c00001{bottom:794.550450px;}
.y2f6b_c00001{bottom:794.700000px;}
.y246c_c00001{bottom:794.730450px;}
.y25c9_c00001{bottom:794.820450px;}
.ybea_c00001{bottom:795.000450px;}
.ye2b_c00001{bottom:795.003060px;}
.y283d_c00001{bottom:795.090450px;}
.y135c_c00001{bottom:795.090837px;}
.y598_c00001{bottom:795.180450px;}
.y35e7_c00001{bottom:795.270450px;}
.ycba_c00001{bottom:795.360600px;}
.y34b6_c00001{bottom:795.450450px;}
.y3398_c00001{bottom:795.540450px;}
.y59a_c00001{bottom:795.540600px;}
.y155f_c00001{bottom:795.541980px;}
.y1a16_c00001{bottom:795.600000px;}
.y47f_c00001{bottom:795.720450px;}
.y1deb_c00001{bottom:795.780000px;}
.y1a5e_c00001{bottom:795.786120px;}
.yce4_c00001{bottom:795.900450px;}
.y3266_c00001{bottom:795.960000px;}
.y241e_c00001{bottom:795.990450px;}
.y2aa0_c00001{bottom:795.990594px;}
.y2987_c00001{bottom:796.078290px;}
.y34ca_c00001{bottom:796.079406px;}
.y2983_c00001{bottom:796.079937px;}
.y104_c00001{bottom:796.080450px;}
.y2dc9_c00001{bottom:796.147020px;}
.y368d_c00001{bottom:796.169973px;}
.y5ca_c00001{bottom:796.170450px;}
.y34f5_c00001{bottom:796.260450px;}
.y1393_c00001{bottom:796.261314px;}
.y1e5e_c00001{bottom:796.320000px;}
.y202_c00001{bottom:796.350450px;}
.yf03_c00001{bottom:796.441278px;}
.yd82_c00001{bottom:796.531665px;}
.y2c23_c00001{bottom:796.620450px;}
.y2084_c00001{bottom:796.709937px;}
.y267_c00001{bottom:796.710450px;}
.y3466_c00001{bottom:796.800450px;}
.y2ef5_c00001{bottom:796.860000px;}
.y2655_c00001{bottom:796.890450px;}
.y1f5b_c00001{bottom:796.980450px;}
.y2e29_c00001{bottom:797.040000px;}
.y7f5_c00001{bottom:797.070450px;}
.y114b_c00001{bottom:797.074590px;}
.y1d9_c00001{bottom:797.160450px;}
.y1afa_c00001{bottom:797.220000px;}
.y79f_c00001{bottom:797.250450px;}
.y387a_c00001{bottom:797.337606px;}
.y2a67_c00001{bottom:797.340450px;}
.y1a9_c00001{bottom:797.520450px;}
.y139d_c00001{bottom:797.521350px;}
.y2bcc_c00001{bottom:797.610600px;}
.y3223_c00001{bottom:797.616363px;}
.y220d_c00001{bottom:797.700450px;}
.y1d14_c00001{bottom:797.760000px;}
.y3623_c00001{bottom:797.790600px;}
.y115b_c00001{bottom:797.892222px;}
.y1cce_c00001{bottom:797.940000px;}
.y40_c00001{bottom:797.970450px;}
.y3b2_c00001{bottom:798.060450px;}
.y1406_c00001{bottom:798.150648px;}
.yeb5_c00001{bottom:798.240450px;}
.y96b_c00001{bottom:798.420450px;}
.y1aab_c00001{bottom:798.480000px;}
.y979_c00001{bottom:798.510450px;}
.y2ff_c00001{bottom:798.600450px;}
.ye9d_c00001{bottom:798.600600px;}
.y2d46_c00001{bottom:798.698442px;}
.y21b5_c00001{bottom:798.780450px;}
.y1dec_c00001{bottom:798.840000px;}
.y29e8_c00001{bottom:798.960081px;}
.y2035_c00001{bottom:798.960450px;}
.y2955_c00001{bottom:798.960522px;}
.y1eef_c00001{bottom:799.020000px;}
.y866_c00001{bottom:799.230450px;}
.y11fa_c00001{bottom:799.320024px;}
.y1f3a_c00001{bottom:799.324050px;}
.y2f6c_c00001{bottom:799.380000px;}
.y12f6_c00001{bottom:799.410450px;}
.y27b7_c00001{bottom:799.500450px;}
.y3541_c00001{bottom:799.500798px;}
.y570_c00001{bottom:799.590450px;}
.y2633_c00001{bottom:799.679127px;}
.y209e_c00001{bottom:799.680009px;}
.y1fa6_c00001{bottom:799.680450px;}
.y1907_c00001{bottom:799.735680px;}
.y1d98_c00001{bottom:799.740000px;}
.y3803_c00001{bottom:799.770450px;}
.y1004_c00001{bottom:799.860600px;}
.y1084_c00001{bottom:799.950450px;}
.y2050_c00001{bottom:800.040600px;}
.y1ccf_c00001{bottom:800.100000px;}
.y370b_c00001{bottom:800.130450px;}
.y35a7_c00001{bottom:800.220450px;}
.yc7f_c00001{bottom:800.223906px;}
.y1c19_c00001{bottom:800.280000px;}
.y2032_c00001{bottom:800.400450px;}
.y16_c00001{bottom:800.490450px;}
.y35cb_c00001{bottom:800.580450px;}
.y2eb6_c00001{bottom:800.640000px;}
.y392b_c00001{bottom:800.850450px;}
.y6d6_c00001{bottom:800.940450px;}
.y156_c00001{bottom:801.030450px;}
.y2a47_c00001{bottom:801.120450px;}
.y23a3_c00001{bottom:801.210450px;}
.y1d99_c00001{bottom:801.360000px;}
.ydf_c00001{bottom:801.480450px;}
.y2800_c00001{bottom:801.570450px;}
.y6f0_c00001{bottom:801.660450px;}
.y31ab_c00001{bottom:801.720000px;}
.y348e_c00001{bottom:801.750450px;}
.y350a_c00001{bottom:801.840450px;}
.ydf5_c00001{bottom:801.931395px;}
.yca7_c00001{bottom:801.932016px;}
.y2c98_c00001{bottom:802.020450px;}
.y31ac_c00001{bottom:802.080000px;}
.y235a_c00001{bottom:802.110162px;}
.y3427_c00001{bottom:802.200450px;}
.y3247_c00001{bottom:802.260000px;}
.yc3e_c00001{bottom:802.290099px;}
.y2b7a_c00001{bottom:802.290600px;}
.y16d6_c00001{bottom:802.380450px;}
.y395d_c00001{bottom:802.470450px;}
.y29ab_c00001{bottom:802.560450px;}
.y2d7_c00001{bottom:802.650450px;}
.y1734_c00001{bottom:802.740450px;}
.y22ab_c00001{bottom:802.830450px;}
.y160c_c00001{bottom:802.920450px;}
.y66a_c00001{bottom:802.921305px;}
.ya39_c00001{bottom:803.010450px;}
.yb84_c00001{bottom:803.186454px;}
.y35cd_c00001{bottom:803.370450px;}
.y212f_c00001{bottom:803.460450px;}
.y28c8_c00001{bottom:803.550450px;}
.y2cd7_c00001{bottom:803.550522px;}
.y3601_c00001{bottom:803.640099px;}
.y2b92_c00001{bottom:803.640450px;}
.y2106_c00001{bottom:803.730450px;}
.y2b2d_c00001{bottom:803.730900px;}
.y8b6_c00001{bottom:803.820450px;}
.ye4d_c00001{bottom:804.000450px;}
.y2da0_c00001{bottom:804.060000px;}
.y13c3_c00001{bottom:804.090486px;}
.y11a9_c00001{bottom:804.091008px;}
.y15f9_c00001{bottom:804.091125px;}
.y33af_c00001{bottom:804.270450px;}
.yb29_c00001{bottom:804.270648px;}
.y342_c00001{bottom:804.360600px;}
.y2ee9_c00001{bottom:804.420000px;}
.y12d_c00001{bottom:804.450450px;}
.y38f6_c00001{bottom:804.540600px;}
.y24a8_c00001{bottom:804.720081px;}
.y1897_c00001{bottom:804.720450px;}
.y27de_c00001{bottom:804.898596px;}
.y27cc_c00001{bottom:804.900672px;}
.yb99_c00001{bottom:804.990000px;}
.y14a1_c00001{bottom:804.990594px;}
.yc10_c00001{bottom:805.080450px;}
.yb31_c00001{bottom:805.080765px;}
.y9d9_c00001{bottom:805.170450px;}
.y3a12_c00001{bottom:805.172538px;}
.y1b91_c00001{bottom:805.320000px;}
.yb0_c00001{bottom:805.350450px;}
.y54d_c00001{bottom:805.530450px;}
.y2ba6_c00001{bottom:805.620450px;}
.y31ad_c00001{bottom:805.680000px;}
.y1d59_c00001{bottom:805.860000px;}
.y2448_c00001{bottom:805.980450px;}
.y1e24_c00001{bottom:806.040000px;}
.y2290_c00001{bottom:806.160450px;}
.y2690_c00001{bottom:806.160594px;}
.y2e85_c00001{bottom:806.220000px;}
.y317_c00001{bottom:806.250450px;}
.y3045_c00001{bottom:806.400000px;}
.y17e_c00001{bottom:806.520450px;}
.y306c_c00001{bottom:806.580000px;}
.y1116_c00001{bottom:806.610600px;}
.y62_c00001{bottom:806.700450px;}
.y1d11_c00001{bottom:806.760000px;}
.y1722_c00001{bottom:806.790450px;}
.y180a_c00001{bottom:806.790600px;}
.y222a_c00001{bottom:806.879640px;}
.y16f4_c00001{bottom:806.880450px;}
.y89b_c00001{bottom:806.881545px;}
.yaa1_c00001{bottom:806.970450px;}
.y64b_c00001{bottom:807.060450px;}
.y1d9b_c00001{bottom:807.120000px;}
.y37ca_c00001{bottom:807.150450px;}
.y1a14_c00001{bottom:807.300000px;}
.y1046_c00001{bottom:807.330450px;}
.y12c2_c00001{bottom:807.423384px;}
.y760_c00001{bottom:807.510450px;}
.y38b1_c00001{bottom:807.600450px;}
.y192f_c00001{bottom:807.660000px;}
.y33fb_c00001{bottom:807.689937px;}
.y599_c00001{bottom:807.690450px;}
.yf1a_c00001{bottom:807.780162px;}
.y28ae_c00001{bottom:807.780450px;}
.y1cd0_c00001{bottom:807.840000px;}
.y697_c00001{bottom:807.870450px;}
.y2559_c00001{bottom:807.960450px;}
.y713_c00001{bottom:808.140450px;}
.y2fee_c00001{bottom:808.200000px;}
.y37d_c00001{bottom:808.230450px;}
.y1fd9_c00001{bottom:808.320450px;}
.y2d71_c00001{bottom:808.380000px;}
.y3770_c00001{bottom:808.500450px;}
.y1c8e_c00001{bottom:808.560000px;}
.y12d1_c00001{bottom:808.681800px;}
.y121a_c00001{bottom:808.770450px;}
.y2c76_c00001{bottom:808.856715px;}
.y2c65_c00001{bottom:808.860009px;}
.yf26_c00001{bottom:808.860450px;}
.ydad_c00001{bottom:808.860600px;}
.y21e_c00001{bottom:808.950450px;}
.y1ded_c00001{bottom:809.100000px;}
.y13fb_c00001{bottom:809.130450px;}
.y4a2_c00001{bottom:809.220450px;}
.y2e58_c00001{bottom:809.280000px;}
.y2af2_c00001{bottom:809.310087px;}
.y502_c00001{bottom:809.490450px;}
.y52b_c00001{bottom:809.580450px;}
.y301c_c00001{bottom:809.640000px;}
.y1a5d_c00001{bottom:809.643060px;}
.yd65_c00001{bottom:809.670450px;}
.y27a3_c00001{bottom:809.760450px;}
.y25f4_c00001{bottom:809.940450px;}
.y3231_c00001{bottom:810.000000px;}
.y2dc8_c00001{bottom:810.003960px;}
.y2d03_c00001{bottom:810.029640px;}
.y38ca_c00001{bottom:810.120450px;}
.y3db_c00001{bottom:810.210450px;}
.y2918_c00001{bottom:810.300450px;}
.y2f1d_c00001{bottom:810.360000px;}
.y20db_c00001{bottom:810.390159px;}
.y3158_c00001{bottom:810.720000px;}
.y24db_c00001{bottom:810.747948px;}
.y37ea_c00001{bottom:810.750450px;}
.y33c4_c00001{bottom:810.840450px;}
.y2e86_c00001{bottom:810.900000px;}
.y2ac9_c00001{bottom:810.930600px;}
.y79e_c00001{bottom:811.020450px;}
.y286d_c00001{bottom:811.106229px;}
.y26d3_c00001{bottom:811.107876px;}
.y3879_c00001{bottom:811.107894px;}
.y2379_c00001{bottom:811.110600px;}
.y3453_c00001{bottom:811.200450px;}
.y30f1_c00001{bottom:811.263960px;}
.y246b_c00001{bottom:811.290600px;}
.y2155_c00001{bottom:811.380450px;}
.y19c2_c00001{bottom:811.440000px;}
.y6b6_c00001{bottom:811.560450px;}
.y317b_c00001{bottom:811.620000px;}
.y3645_c00001{bottom:811.740450px;}
.y368c_c00001{bottom:811.740549px;}
.y3782_c00001{bottom:811.919406px;}
.yba6_c00001{bottom:811.920297px;}
.y17b2_c00001{bottom:812.010450px;}
.y39e9_c00001{bottom:812.100450px;}
.y23c5_c00001{bottom:812.100522px;}
.y763_c00001{bottom:812.190450px;}
.yd3e_c00001{bottom:812.279961px;}
.y1303_c00001{bottom:812.280450px;}
.ydcc_c00001{bottom:812.280630px;}
.y340b_c00001{bottom:812.370522px;}
.y13ff_c00001{bottom:812.370690px;}
.y14ea_c00001{bottom:812.372340px;}
.y1d12_c00001{bottom:812.520000px;}
.y34a3_c00001{bottom:812.550450px;}
.y3992_c00001{bottom:812.640450px;}
.y306d_c00001{bottom:812.700000px;}
.y3678_c00001{bottom:812.730000px;}
.ybae_c00001{bottom:812.730414px;}
.y273f_c00001{bottom:812.730450px;}
.y1d13_c00001{bottom:812.880000px;}
.y22c5_c00001{bottom:812.910009px;}
.y200d_c00001{bottom:812.910450px;}
.y23d_c00001{bottom:813.000450px;}
.y11f9_c00001{bottom:813.090312px;}
.y1862_c00001{bottom:813.090450px;}
.y158a_c00001{bottom:813.091125px;}
.y1c8f_c00001{bottom:813.240000px;}
.y181d_c00001{bottom:813.360450px;}
.y1244_c00001{bottom:813.360504px;}
.y250c_c00001{bottom:813.447435px;}
.y3561_c00001{bottom:813.450450px;}
.y7ce_c00001{bottom:813.540600px;}
.yef6_c00001{bottom:813.541269px;}
.y31d7_c00001{bottom:813.600000px;}
.y20bb_c00001{bottom:813.630450px;}
.y2b2c_c00001{bottom:813.630891px;}
.y26c0_c00001{bottom:813.720450px;}
.yf02_c00001{bottom:813.721269px;}
.y1bd8_c00001{bottom:813.780000px;}
.y2df7_c00001{bottom:813.790080px;}
.y44e_c00001{bottom:813.900450px;}
.y2e59_c00001{bottom:813.960000px;}
.y17d_c00001{bottom:813.990450px;}
.ye2a_c00001{bottom:813.992970px;}
.y5c2_c00001{bottom:814.080450px;}
.y137e_c00001{bottom:814.170450px;}
.y18f9_c00001{bottom:814.257300px;}
.y11c8_c00001{bottom:814.259244px;}
.y7f4_c00001{bottom:814.260450px;}
.ycb9_c00001{bottom:814.350450px;}
.y8de_c00001{bottom:814.440450px;}
.y9f4_c00001{bottom:814.530450px;}
.y155e_c00001{bottom:814.531890px;}
.y124e_c00001{bottom:814.619100px;}
.y87_c00001{bottom:814.710450px;}
.yb50_c00001{bottom:814.711158px;}
.y155_c00001{bottom:814.800450px;}
.y32d0_c00001{bottom:814.860000px;}
.y1ff0_c00001{bottom:814.890450px;}
.y231d_c00001{bottom:814.980450px;}
.y2ef4_c00001{bottom:815.040000px;}
.y11d4_c00001{bottom:815.064852px;}
.y26ac_c00001{bottom:815.070450px;}
.y1fc2_c00001{bottom:815.160450px;}
.y168a_c00001{bottom:815.250450px;}
.y47e_c00001{bottom:815.340450px;}
.y3540_c00001{bottom:815.340699px;}
.y27b6_c00001{bottom:815.430600px;}
.y1405_c00001{bottom:815.430639px;}
.y226d_c00001{bottom:815.518614px;}
.y2bff_c00001{bottom:815.519055px;}
.y2581_c00001{bottom:815.519127px;}
.y597_c00001{bottom:815.520450px;}
.yd81_c00001{bottom:815.521575px;}
.y1a15_c00001{bottom:815.580000px;}
.y2784_c00001{bottom:815.610600px;}
.y4bc_c00001{bottom:815.790600px;}
.y2359_c00001{bottom:815.880450px;}
.y114c_c00001{bottom:816.064995px;}
.yc3d_c00001{bottom:816.150162px;}
.y179e_c00001{bottom:816.150450px;}
.ye82_c00001{bottom:816.240072px;}
.y1eee_c00001{bottom:816.300000px;}
.y3355_c00001{bottom:816.306300px;}
.y271a_c00001{bottom:816.327624px;}
.y2710_c00001{bottom:816.329271px;}
.y21b4_c00001{bottom:816.329712px;}
.y3802_c00001{bottom:816.330450px;}
.y1e5c_c00001{bottom:816.480000px;}
.y266_c00001{bottom:816.510450px;}
.y1672_c00001{bottom:816.600450px;}
.y370a_c00001{bottom:816.690873px;}
.y2d29_c00001{bottom:816.774798px;}
.y1d8_c00001{bottom:816.870450px;}
.y115c_c00001{bottom:816.882627px;}
.y103_c00001{bottom:816.960450px;}
.y1f15_c00001{bottom:816.962808px;}
.y408_c00001{bottom:817.050450px;}
.y4cb_c00001{bottom:817.140450px;}
.y2e28_c00001{bottom:817.200000px;}
.y12e7_c00001{bottom:817.320450px;}
.y2bcb_c00001{bottom:817.410450px;}
.yce3_c00001{bottom:817.499109px;}
.y3600_c00001{bottom:817.500162px;}
.y3622_c00001{bottom:817.500450px;}
.y1985_c00001{bottom:817.560000px;}
.y283c_c00001{bottom:817.590450px;}
.y220c_c00001{bottom:817.680600px;}
.y1e25_c00001{bottom:817.740000px;}
.y34f4_c00001{bottom:817.770450px;}
.y2a9f_c00001{bottom:817.770522px;}
.y134e_c00001{bottom:817.773366px;}
.y3b1_c00001{bottom:817.860600px;}
.y1906_c00001{bottom:817.920000px;}
.y2986_c00001{bottom:817.948803px;}
.y2c22_c00001{bottom:817.950450px;}
.y30c4_c00001{bottom:818.100000px;}
.y23a2_c00001{bottom:818.130450px;}
.y375c_c00001{bottom:818.220450px;}
.y1d97_c00001{bottom:818.280000px;}
.y36dc_c00001{bottom:818.310450px;}
.yc80_c00001{bottom:818.314014px;}
.y32ad_c00001{bottom:818.460000px;}
.y140b_c00001{bottom:818.580000px;}
.y1482_c00001{bottom:818.580450px;}
.y135d_c00001{bottom:818.581224px;}
.y1aa7_c00001{bottom:818.640000px;}
.y2d45_c00001{bottom:818.768784px;}
.y33ae_c00001{bottom:818.850450px;}
.yac5_c00001{bottom:819.120450px;}
.y15bc_c00001{bottom:819.210450px;}
.y56f_c00001{bottom:819.300450px;}
.y3046_c00001{bottom:819.360000px;}
.y2982_c00001{bottom:819.390450px;}
.y92b_c00001{bottom:819.480450px;}
.y19c6_c00001{bottom:819.540000px;}
.y248c_c00001{bottom:819.570450px;}
.y2f69_c00001{bottom:819.720000px;}
.y2030_c00001{bottom:819.840450px;}
.y316_c00001{bottom:820.020450px;}
.yca8_c00001{bottom:820.022277px;}
.y1003_c00001{bottom:820.110600px;}
.y15_c00001{bottom:820.380450px;}
.y1c14_c00001{bottom:820.440000px;}
.y6d5_c00001{bottom:820.470450px;}
.y83b_c00001{bottom:820.560450px;}
.y865_c00001{bottom:820.650450px;}
.y29e7_c00001{bottom:820.740009px;}
.y295d_c00001{bottom:820.740450px;}
.y3267_c00001{bottom:820.800000px;}
.ye95_c00001{bottom:820.824222px;}
.yeb4_c00001{bottom:820.920087px;}
.ydf4_c00001{bottom:820.921305px;}
.y395b_c00001{bottom:821.010450px;}
.y3a11_c00001{bottom:821.012439px;}
.yf73_c00001{bottom:821.100450px;}
.y2fca_c00001{bottom:821.160000px;}
.y224e_c00001{bottom:821.280450px;}
.y260f_c00001{bottom:821.370450px;}
.y762_c00001{bottom:821.460450px;}
.y2632_c00001{bottom:821.549640px;}
.yf19_c00001{bottom:821.550450px;}
.y209d_c00001{bottom:821.550522px;}
.y2753_c00001{bottom:821.550744px;}
.y348d_c00001{bottom:821.640450px;}
.y308d_c00001{bottom:821.700000px;}
.y1650_c00001{bottom:821.730450px;}
.y1bd9_c00001{bottom:821.880000px;}
.y35c9_c00001{bottom:821.910450px;}
.y669_c00001{bottom:821.911215px;}
.y79d_c00001{bottom:822.000450px;}
.yde_c00001{bottom:822.180600px;}
.y2fa1_c00001{bottom:822.240000px;}
.y744_c00001{bottom:822.270450px;}
.y18d5_c00001{bottom:822.360450px;}
.y1c15_c00001{bottom:822.420000px;}
.y28db_c00001{bottom:822.450600px;}
.y2197_c00001{bottom:822.540600px;}
.y301d_c00001{bottom:822.600000px;}
.y382d_c00001{bottom:822.720450px;}
.y30c5_c00001{bottom:822.780000px;}
.y3818_c00001{bottom:822.900450px;}
.y192e_c00001{bottom:822.960000px;}
.y15f8_c00001{bottom:822.990450px;}
.y7cd_c00001{bottom:823.080450px;}
.y1e91_c00001{bottom:823.140000px;}
.y2a69_c00001{bottom:823.170450px;}
.y18b6_c00001{bottom:823.260450px;}
.y2d6_c00001{bottom:823.350450px;}
.y1733_c00001{bottom:823.440450px;}
.y1f39_c00001{bottom:823.443744px;}
.y1a5c_c00001{bottom:823.500000px;}
.y2b2b_c00001{bottom:823.530882px;}
.y2dc7_c00001{bottom:823.680000px;}
.y2891_c00001{bottom:823.710450px;}
.y291_c00001{bottom:823.980450px;}
.y39e8_c00001{bottom:824.070000px;}
.yc0f_c00001{bottom:824.070450px;}
.yf94_c00001{bottom:824.161044px;}
.y31d9_c00001{bottom:824.220000px;}
.y2f6a_c00001{bottom:824.400000px;}
.y54c_c00001{bottom:824.520450px;}
.y12c_c00001{bottom:824.700450px;}
.y13c2_c00001{bottom:824.790207px;}
.y3426_c00001{bottom:824.790600px;}
.y11a8_c00001{bottom:824.790729px;}
.y3878_c00001{bottom:824.878182px;}
.y1ebe_c00001{bottom:824.940000px;}
.y1394_c00001{bottom:824.971620px;}
.y341_c00001{bottom:825.060450px;}
.y2ee8_c00001{bottom:825.120000px;}
.y35c7_c00001{bottom:825.150450px;}
.y3524_c00001{bottom:825.238362px;}
.y37da_c00001{bottom:825.240450px;}
.y2b79_c00001{bottom:825.330450px;}
.y1770_c00001{bottom:825.420450px;}
.y1115_c00001{bottom:825.600450px;}
.y2d9f_c00001{bottom:825.660000px;}
.y36f7_c00001{bottom:825.780450px;}
.y28fb_c00001{bottom:825.870450px;}
.y89a_c00001{bottom:825.871455px;}
.y696_c00001{bottom:825.960450px;}
.yd3d_c00001{bottom:826.050249px;}
.y195b_c00001{bottom:826.050450px;}
.y37c_c00001{bottom:826.140450px;}
.y607_c00001{bottom:826.230450px;}
.y139e_c00001{bottom:826.231800px;}
.y1045_c00001{bottom:826.320450px;}
.y311a_c00001{bottom:826.380000px;}
.y24a6_c00001{bottom:826.500009px;}
.y4a1_c00001{bottom:826.500450px;}
.y3397_c00001{bottom:826.590450px;}
.y27dd_c00001{bottom:826.678524px;}
.y118e_c00001{bottom:826.680600px;}
.y33c3_c00001{bottom:826.770450px;}
.y187b_c00001{bottom:826.860450px;}
.y11f8_c00001{bottom:826.860600px;}
.y14a0_c00001{bottom:826.861107px;}
.y16a3_c00001{bottom:826.950450px;}
.y12c3_c00001{bottom:827.133726px;}
.yb85_c00001{bottom:827.216418px;}
.y2105_c00001{bottom:827.220450px;}
.y1d8f_c00001{bottom:827.280000px;}
.y154_c00001{bottom:827.310450px;}
.y201_c00001{bottom:827.400450px;}
.y262a_c00001{bottom:827.490450px;}
.y368b_c00001{bottom:827.580450px;}
.y2df6_c00001{bottom:827.647020px;}
.yaa0_c00001{bottom:827.670450px;}
.y39e7_c00001{bottom:827.760450px;}
.y1b8d_c00001{bottom:827.820000px;}
.y2447_c00001{bottom:827.850450px;}
.ydac_c00001{bottom:827.851125px;}
.y268f_c00001{bottom:827.940522px;}
.y1ccb_c00001{bottom:828.000000px;}
.y501_c00001{bottom:828.120450px;}
.y1461_c00001{bottom:828.210450px;}
.y27a2_c00001{bottom:828.300450px;}
.y2936_c00001{bottom:828.390450px;}
.y12d2_c00001{bottom:828.391800px;}
.y1896_c00001{bottom:828.570450px;}
.y2229_c00001{bottom:828.659568px;}
.y1a8_c00001{bottom:828.660450px;}
.y3644_c00001{bottom:828.840450px;}
.y1af9_c00001{bottom:828.900000px;}
.yb9a_c00001{bottom:828.930000px;}
.y3f_c00001{bottom:829.020450px;}
.y2d70_c00001{bottom:829.080000px;}
.ye87_c00001{bottom:829.110261px;}
.y1de8_c00001{bottom:829.260000px;}
.y1433_c00001{bottom:829.290450px;}
.y75f_c00001{bottom:829.290600px;}
.y2c40_c00001{bottom:829.380450px;}
.y882_c00001{bottom:829.560450px;}
.y1d94_c00001{bottom:829.620000px;}
.y2fe_c00001{bottom:829.650450px;}
.ye9c_c00001{bottom:829.650600px;}
.y246a_c00001{bottom:829.740450px;}
.y1e5d_c00001{bottom:829.800000px;}
.y13fa_c00001{bottom:829.830450px;}
.yc3c_c00001{bottom:829.920450px;}
.y2bdd_c00001{bottom:830.010450px;}
.y14c8_c00001{bottom:830.010540px;}
.y1ccc_c00001{bottom:830.160000px;}
.y47d_c00001{bottom:830.280450px;}
.y64a_c00001{bottom:830.280600px;}
.y1c16_c00001{bottom:830.340000px;}
.y28ad_c00001{bottom:830.370450px;}
.y6b5_c00001{bottom:830.550450px;}
.y2c75_c00001{bottom:830.636643px;}
.y2c64_c00001{bottom:830.639937px;}
.y52a_c00001{bottom:830.640450px;}
.y1fa5_c00001{bottom:830.730450px;}
.yef5_c00001{bottom:830.821260px;}
.y34c9_c00001{bottom:830.909928px;}
.y3da_c00001{bottom:830.910450px;}
.y1083_c00001{bottom:831.000450px;}
.yf01_c00001{bottom:831.001260px;}
.y2e84_c00001{bottom:831.060000px;}
.yba7_c00001{bottom:831.089559px;}
.yd64_c00001{bottom:831.090450px;}
.y2b0c_c00001{bottom:831.180600px;}
.y2340_c00001{bottom:831.270450px;}
.ydcb_c00001{bottom:831.270540px;}
.y14e9_c00001{bottom:831.271665px;}
.yce2_c00001{bottom:831.359172px;}
.y13fe_c00001{bottom:831.360600px;}
.y31a7_c00001{bottom:831.420000px;}
.y36bf_c00001{bottom:831.450450px;}
.y7f3_c00001{bottom:831.540600px;}
.y2eb5_c00001{bottom:831.600000px;}
.y2856_c00001{bottom:831.630450px;}
.y3781_c00001{bottom:831.719928px;}
.y1b8e_c00001{bottom:831.780000px;}
.y2d02_c00001{bottom:831.809568px;}
.y25c7_c00001{bottom:831.810081px;}
.y25f3_c00001{bottom:831.810450px;}
.ybaf_c00001{bottom:831.901179px;}
.y1589_c00001{bottom:831.990450px;}
.y761_c00001{bottom:832.080450px;}
.y2a46_c00001{bottom:832.168686px;}
.y20da_c00001{bottom:832.170087px;}
.y21e7_c00001{bottom:832.170450px;}
.y1de9_c00001{bottom:832.320000px;}
.y33ad_c00001{bottom:832.350450px;}
.y3677_c00001{bottom:832.440000px;}
.y24da_c00001{bottom:832.527876px;}
.y126b_c00001{bottom:832.530900px;}
.y1404_c00001{bottom:832.620450px;}
.y3709_c00001{bottom:832.620549px;}
.y23c_c00001{bottom:832.710450px;}
.yf93_c00001{bottom:832.800846px;}
.y286c_c00001{bottom:832.886157px;}
.y26d2_c00001{bottom:832.887804px;}
.ybe9_c00001{bottom:832.980450px;}
.ye29_c00001{bottom:832.982880px;}
.y32ac_c00001{bottom:833.040000px;}
.y596_c00001{bottom:833.070450px;}
.y1fd8_c00001{bottom:833.070600px;}
.y38c9_c00001{bottom:833.160450px;}
.y2a2a_c00001{bottom:833.250450px;}
.ycb8_c00001{bottom:833.340450px;}
.y1c8c_c00001{bottom:833.400000px;}
.y2b2a_c00001{bottom:833.520513px;}
.y155d_c00001{bottom:833.521800px;}
.y1eed_c00001{bottom:833.580000px;}
.y23c7_c00001{bottom:833.880450px;}
.y140a_c00001{bottom:834.060450px;}
.y2e56_c00001{bottom:834.120000px;}
.y340a_c00001{bottom:834.150450px;}
.y3946_c00001{bottom:834.240450px;}
.y6ed_c00001{bottom:834.330450px;}
.yf51_c00001{bottom:834.510450px;}
.yd80_c00001{bottom:834.511485px;}
.y2154_c00001{bottom:834.780450px;}
.y22c4_c00001{bottom:834.780522px;}
.y8b5_c00001{bottom:834.870450px;}
.y3801_c00001{bottom:834.960450px;}
.y5c1_c00001{bottom:835.050450px;}
.y34a2_c00001{bottom:835.140450px;}
.y1219_c00001{bottom:835.141158px;}
.y114d_c00001{bottom:835.145580px;}
.y315_c00001{bottom:835.230450px;}
.y250b_c00001{bottom:835.317948px;}
.y23c4_c00001{bottom:835.320450px;}
.y17c_c00001{bottom:835.410450px;}
.yb4f_c00001{bottom:835.410879px;}
.y1d7_c00001{bottom:835.500450px;}
.y217c_c00001{bottom:835.680600px;}
.y1a12_c00001{bottom:835.740000px;}
.y17b1_c00001{bottom:835.770450px;}
.y3222_c00001{bottom:835.775706px;}
.y28c7_c00001{bottom:835.860600px;}
.yd12_c00001{bottom:835.950450px;}
.y115d_c00001{bottom:835.963212px;}
.y18f8_c00001{bottom:836.037228px;}
.y385d_c00001{bottom:836.220450px;}
.y26f4_c00001{bottom:836.310450px;}
.yaf_c00001{bottom:836.400450px;}
.yc81_c00001{bottom:836.404122px;}
.y3230_c00001{bottom:836.460000px;}
.y2a11_c00001{bottom:836.490450px;}
.ya1d_c00001{bottom:836.580450px;}
.y12e6_c00001{bottom:836.670162px;}
.y25a7_c00001{bottom:836.760450px;}
.y17f6_c00001{bottom:836.850450px;}
.y15bb_c00001{bottom:836.940450px;}
.yb2a_c00001{bottom:836.941359px;}
.y3a10_c00001{bottom:836.942115px;}
.yb3d_c00001{bottom:837.030450px;}
.y743_c00001{bottom:837.210450px;}
.y4bb_c00001{bottom:837.210600px;}
.y161d_c00001{bottom:837.300450px;}
.y2ef3_c00001{bottom:837.360000px;}
.y226c_c00001{bottom:837.389127px;}
.y202f_c00001{bottom:837.389568px;}
.y2580_c00001{bottom:837.389640px;}
.y206c_c00001{bottom:837.390522px;}
.y3b0_c00001{bottom:837.570450px;}
.y3509_c00001{bottom:837.660450px;}
.y61_c00001{bottom:837.750450px;}
.yb32_c00001{bottom:837.840153px;}
.y1ccd_c00001{bottom:837.900000px;}
.y23ee_c00001{bottom:837.930600px;}
.y2783_c00001{bottom:838.020450px;}
.y1c8d_c00001{bottom:838.080000px;}
.y2719_c00001{bottom:838.107552px;}
.y270f_c00001{bottom:838.109199px;}
.y2a41_c00001{bottom:838.109496px;}
.y21b3_c00001{bottom:838.109640px;}
.yca9_c00001{bottom:838.112538px;}
.y56e_c00001{bottom:838.290600px;}
.y306b_c00001{bottom:838.440000px;}
.y244c_c00001{bottom:838.470450px;}
.y4ca_c00001{bottom:838.560450px;}
.y1905_c00001{bottom:838.620000px;}
.y35a6_c00001{bottom:838.650450px;}
.y3877_c00001{bottom:838.738245px;}
.y2bca_c00001{bottom:838.740450px;}
.y2fec_c00001{bottom:838.800000px;}
.y26ab_c00001{bottom:838.830450px;}
.y220b_c00001{bottom:838.920450px;}
.y1f9b_c00001{bottom:838.928064px;}
.y2e57_c00001{bottom:838.980000px;}
.ye94_c00001{bottom:839.094690px;}
.y39cc_c00001{bottom:839.100450px;}
.y92a_c00001{bottom:839.190450px;}
.y31a8_c00001{bottom:839.340000px;}
.y144c_c00001{bottom:839.370450px;}
.y11c9_c00001{bottom:839.458542px;}
.y2aa2_c00001{bottom:839.550450px;}
.y1a7_c00001{bottom:839.640450px;}
.y19bd_c00001{bottom:839.700000px;}
.y2c21_c00001{bottom:839.730450px;}
.y1282_c00001{bottom:839.820450px;}
.yd3c_c00001{bottom:839.820537px;}
.y179d_c00001{bottom:839.910450px;}
.ydf3_c00001{bottom:839.911215px;}
.y1245_c00001{bottom:839.999676px;}
.y86_c00001{bottom:840.000450px;}
.y283b_c00001{bottom:840.180600px;}
.y11d5_c00001{bottom:840.264150px;}
.y4a0_c00001{bottom:840.360600px;}
.y1a5b_c00001{bottom:840.420000px;}
.y2981_c00001{bottom:840.449568px;}
.y265_c00001{bottom:840.450450px;}
.y137d_c00001{bottom:840.630450px;}
.y150b_c00001{bottom:840.720450px;}
.y2dc6_c00001{bottom:840.780000px;}
.y150c_c00001{bottom:840.810450px;}
.y79c_c00001{bottom:840.900450px;}
.y668_c00001{bottom:840.901125px;}
.ya38_c00001{bottom:840.990450px;}
.y134f_c00001{bottom:841.173573px;}
.y124f_c00001{bottom:841.258650px;}
.ya55_c00001{bottom:841.260450px;}
.y2fa0_c00001{bottom:841.320000px;}
.y248b_c00001{bottom:841.350450px;}
.y34b5_c00001{bottom:841.440450px;}
.y2083_c00001{bottom:841.440600px;}
.yf92_c00001{bottom:841.440648px;}
.y2df5_c00001{bottom:841.503960px;}
.y1d93_c00001{bottom:841.680000px;}
.y37b_c00001{bottom:841.710450px;}
.y11f7_c00001{bottom:841.800450px;}
.y29aa_c00001{bottom:841.890450px;}
.ye8c_c00001{bottom:841.977444px;}
.ydd_c00001{bottom:841.980450px;}
.y30f0_c00001{bottom:842.040000px;}
.y1c4f_c00001{bottom:842.043060px;}
.y135e_c00001{bottom:842.071611px;}
.y864_c00001{bottom:842.160450px;}
.y1365_c00001{bottom:842.160600px;}
.y1bd6_c00001{bottom:842.220000px;}
.y1dea_c00001{bottom:842.580000px;}
.y29e6_c00001{bottom:842.610522px;}
.yeb3_c00001{bottom:842.790600px;}
.y15f6_c00001{bottom:842.791305px;}
.y2a66_c00001{bottom:842.970450px;}
.y30c2_c00001{bottom:843.120000px;}
.y22aa_c00001{bottom:843.240450px;}
.y2954_c00001{bottom:843.329199px;}
.y2631_c00001{bottom:843.329568px;}
.y1302_c00001{bottom:843.330450px;}
.y2752_c00001{bottom:843.330672px;}
.y153_c00001{bottom:843.420450px;}
.y2b29_c00001{bottom:843.420504px;}
.y36f6_c00001{bottom:843.600450px;}
.y192d_c00001{bottom:843.660000px;}
.y35c8_c00001{bottom:843.780450px;}
.y1a13_c00001{bottom:843.840000px;}
.y14_c00001{bottom:843.960450px;}
.y2d5_c00001{bottom:844.050450px;}
.y1732_c00001{bottom:844.140450px;}
.y3575_c00001{bottom:844.230450px;}
.y1d0e_c00001{bottom:844.380000px;}
.y2f67_c00001{bottom:844.560000px;}
.y1114_c00001{bottom:844.590450px;}
.y290_c00001{bottom:844.680600px;}
.y1d10_c00001{bottom:844.740000px;}
.y209c_c00001{bottom:844.770450px;}
.y899_c00001{bottom:844.861365px;}
.y37d9_c00001{bottom:844.950450px;}
.y3479_c00001{bottom:845.040600px;}
.y3044_c00001{bottom:845.100000px;}
.yce1_c00001{bottom:845.129460px;}
.y2196_c00001{bottom:845.130450px;}
.y22f9_c00001{bottom:845.220450px;}
.y1044_c00001{bottom:845.310450px;}
.y11a7_c00001{bottom:845.490450px;}
.y9f3_c00001{bottom:845.580450px;}
.yfee_c00001{bottom:845.670450px;}
.yab4_c00001{bottom:845.760450px;}
.y2ee7_c00001{bottom:845.820000px;}
.y1fef_c00001{bottom:845.940450px;}
.y2104_c00001{bottom:846.030450px;}
.y18d4_c00001{bottom:846.120450px;}
.y1b8f_c00001{bottom:846.180000px;}
.y1f5a_c00001{bottom:846.210450px;}
.y1689_c00001{bottom:846.300450px;}
.y1aa6_c00001{bottom:846.363060px;}
.y35ff_c00001{bottom:846.480450px;}
.y28fa_c00001{bottom:846.570450px;}
.y27ff_c00001{bottom:846.660450px;}
.ydab_c00001{bottom:846.750450px;}
.y12c4_c00001{bottom:846.844068px;}
.y2d4f_c00001{bottom:846.900000px;}
.yf18_c00001{bottom:846.930450px;}
.y44d_c00001{bottom:846.930600px;}
.y83a_c00001{bottom:847.020450px;}
.ya9f_c00001{bottom:847.290600px;}
.yae3_c00001{bottom:847.380450px;}
.y1f38_c00001{bottom:847.563438px;}
.y1671_c00001{bottom:847.650450px;}
.y30c3_c00001{bottom:847.800000px;}
.y35ca_c00001{bottom:847.830450px;}
.y2b78_c00001{bottom:847.920450px;}
.yef4_c00001{bottom:848.011071px;}
.y2378_c00001{bottom:848.099568px;}
.y407_c00001{bottom:848.100450px;}
.y12d3_c00001{bottom:848.101800px;}
.y27b5_c00001{bottom:848.190450px;}
.yf00_c00001{bottom:848.191071px;}
.y301b_c00001{bottom:848.340000px;}
.y24a5_c00001{bottom:848.370522px;}
.y3708_c00001{bottom:848.460450px;}
.y149f_c00001{bottom:848.550450px;}
.y500_c00001{bottom:848.820450px;}
.y1984_c00001{bottom:848.880000px;}
.y14c7_c00001{bottom:849.001125px;}
.y33c2_c00001{bottom:849.180600px;}
.y2f68_c00001{bottom:849.240000px;}
.y176f_c00001{bottom:849.270450px;}
.y212e_c00001{bottom:849.360450px;}
.y1d6_c00001{bottom:849.360600px;}
.y1e23_c00001{bottom:849.420000px;}
.y6b4_c00001{bottom:849.450450px;}
.y2446_c00001{bottom:849.540600px;}
.y1481_c00001{bottom:849.630450px;}
.y2692_c00001{bottom:849.720450px;}
.y1b40_c00001{bottom:849.780000px;}
.y1f75_c00001{bottom:849.813726px;}
.y1e58_c00001{bottom:849.960000px;}
.y16d5_c00001{bottom:849.990450px;}
.yf91_c00001{bottom:850.080450px;}
.y26bf_c00001{bottom:850.081107px;}
.yba8_c00001{bottom:850.170144px;}
.y106a_c00001{bottom:850.170450px;}
.ydca_c00001{bottom:850.260450px;}
.y14e8_c00001{bottom:850.261575px;}
.y1bd7_c00001{bottom:850.320000px;}
.y96a_c00001{bottom:850.350450px;}
.y12e5_c00001{bottom:850.440450px;}
.y1c13_c00001{bottom:850.500000px;}
.y2227_c00001{bottom:850.530081px;}
.y33ac_c00001{bottom:850.530450px;}
.y187a_c00001{bottom:850.620450px;}
.y1f14_c00001{bottom:850.621629px;}
.y34c8_c00001{bottom:850.710450px;}
.y529_c00001{bottom:850.800450px;}
.y1eec_c00001{bottom:850.860000px;}
.y28e9_c00001{bottom:850.890450px;}
.y47c_c00001{bottom:850.980450px;}
.y649_c00001{bottom:850.980600px;}
.ybb0_c00001{bottom:850.981764px;}
.y2ef2_c00001{bottom:851.040000px;}
.y13ed_c00001{bottom:851.071665px;}
.y268e_c00001{bottom:851.160450px;}
.y2d28_c00001{bottom:851.246292px;}
.y2a29_c00001{bottom:851.250600px;}
.y3780_c00001{bottom:851.520450px;}
.y23b_c00001{bottom:851.610600px;}
.y1588_c00001{bottom:851.791125px;}
.y231b_c00001{bottom:851.968614px;}
.ybe8_c00001{bottom:851.970450px;}
.ye28_c00001{bottom:851.972790px;}
.y2af1_c00001{bottom:852.060450px;}
.y2fed_c00001{bottom:852.120000px;}
.y3675_c00001{bottom:852.150000px;}
.y3d9_c00001{bottom:852.150450px;}
.ycb7_c00001{bottom:852.330450px;}
.y155c_c00001{bottom:852.421125px;}
.y1d58_c00001{bottom:852.480000px;}
.y2c74_c00001{bottom:852.507156px;}
.y3876_c00001{bottom:852.508533px;}
.yd63_c00001{bottom:852.510450px;}
.y3978_c00001{bottom:852.600450px;}
.y164f_c00001{bottom:852.780450px;}
.y3a0f_c00001{bottom:852.782016px;}
.y317a_c00001{bottom:852.840000px;}
.y28ac_c00001{bottom:852.870450px;}
.yc0e_c00001{bottom:852.960450px;}
.y56d_c00001{bottom:852.961215px;}
.y1e5a_c00001{bottom:853.020000px;}
.y2558_c00001{bottom:853.140450px;}
.y1af8_c00001{bottom:853.207020px;}
.y2c3f_c00001{bottom:853.230450px;}
.y314_c00001{bottom:853.320450px;}
.y2b28_c00001{bottom:853.320495px;}
.y2153_c00001{bottom:853.500600px;}
.yd7f_c00001{bottom:853.501395px;}
.y2d01_c00001{bottom:853.589496px;}
.y25c6_c00001{bottom:853.590009px;}
.y1395_c00001{bottom:853.591746px;}
.yd3b_c00001{bottom:853.680600px;}
.y264_c00001{bottom:853.770450px;}
.y2c63_c00001{bottom:853.950450px;}
.y2a45_c00001{bottom:854.039199px;}
.y20e3_c00001{bottom:854.040600px;}
.y49f_c00001{bottom:854.130450px;}
.y114e_c00001{bottom:854.135985px;}
.y27a1_c00001{bottom:854.220450px;}
.y24d9_c00001{bottom:854.398389px;}
.y16f3_c00001{bottom:854.400450px;}
.y3674_c00001{bottom:854.490450px;}
.y3909_c00001{bottom:854.670450px;}
.y286b_c00001{bottom:854.756670px;}
.y26d1_c00001{bottom:854.758317px;}
.y3676_c00001{bottom:854.760450px;}
.y102_c00001{bottom:854.850450px;}
.y139f_c00001{bottom:854.942250px;}
.y5eb_c00001{bottom:855.030450px;}
.y115e_c00001{bottom:855.043797px;}
.y2df4_c00001{bottom:855.180000px;}
.y137c_c00001{bottom:855.211395px;}
.y20d9_c00001{bottom:855.480450px;}
.y958_c00001{bottom:855.570450px;}
.y3800_c00001{bottom:855.660450px;}
.y2fa3_c00001{bottom:855.720000px;}
.y2917_c00001{bottom:855.840450px;}
.y1218_c00001{bottom:855.840879px;}
.y1c4e_c00001{bottom:855.900000px;}
.y2670_c00001{bottom:855.930450px;}
.y37e9_c00001{bottom:855.930600px;}
.y2bde_c00001{bottom:856.020450px;}
.y695_c00001{bottom:856.110450px;}
.y340_c00001{bottom:856.110600px;}
.y1a6_c00001{bottom:856.200450px;}
.y244b_c00001{bottom:856.290600px;}
.y1750_c00001{bottom:856.380450px;}
.y23c3_c00001{bottom:856.470009px;}
.y22cc_c00001{bottom:856.560450px;}
.y34e0_c00001{bottom:856.740450px;}
.y17b_c00001{bottom:856.920450px;}
.y1fd7_c00001{bottom:856.920600px;}
.y250a_c00001{bottom:857.097876px;}
.y3560_c00001{bottom:857.100450px;}
.y5c0_c00001{bottom:857.190450px;}
.y3af_c00001{bottom:857.280450px;}
.y35e6_c00001{bottom:857.370450px;}
.yf90_c00001{bottom:857.460450px;}
.y1d5_c00001{bottom:857.550450px;}
.y12b_c00001{bottom:857.640450px;}
.y1e90_c00001{bottom:857.700000px;}
.yb3c_c00001{bottom:857.730450px;}
.y18f7_c00001{bottom:857.817156px;}
.y3991_c00001{bottom:857.820450px;}
.y2d9e_c00001{bottom:857.882880px;}
.y4c9_c00001{bottom:857.910450px;}
.y4ba_c00001{bottom:857.910600px;}
.y16a2_c00001{bottom:858.000450px;}
.y22c3_c00001{bottom:858.000600px;}
.y1cc9_c00001{bottom:858.060000px;}
.y929_c00001{bottom:858.180600px;}
.y1c8a_c00001{bottom:858.240000px;}
.y2654_c00001{bottom:858.360450px;}
.y15ba_c00001{bottom:858.360600px;}
.y152_c00001{bottom:858.450450px;}
.y353f_c00001{bottom:858.630450px;}
.y2a83_c00001{bottom:858.720450px;}
.y26f3_c00001{bottom:858.810450px;}
.yce0_c00001{bottom:858.899748px;}
.ydf2_c00001{bottom:858.901125px;}
.y1d91_c00001{bottom:858.960000px;}
.y2a10_c00001{bottom:859.080450px;}
.y1f9a_c00001{bottom:859.087344px;}
.y2e54_c00001{bottom:859.140000px;}
.y226b_c00001{bottom:859.169055px;}
.y202e_c00001{bottom:859.169496px;}
.y257f_c00001{bottom:859.169568px;}
.y206d_c00001{bottom:859.170450px;}
.y144b_c00001{bottom:859.260450px;}
.y25a6_c00001{bottom:859.350450px;}
.y1ebd_c00001{bottom:859.500000px;}
.y375b_c00001{bottom:859.620450px;}
.y322f_c00001{bottom:859.680000px;}
.y23ed_c00001{bottom:859.709937px;}
.y667_c00001{bottom:859.800450px;}
.y2f24_c00001{bottom:859.860000px;}
.y2718_c00001{bottom:859.978065px;}
.y270e_c00001{bottom:859.979712px;}
.y2a40_c00001{bottom:859.980009px;}
.y21b2_c00001{bottom:859.980153px;}
.y3523_c00001{bottom:860.068884px;}
.y3e_c00001{bottom:860.070450px;}
.y3508_c00001{bottom:860.160450px;}
.y1aa5_c00001{bottom:860.220000px;}
.ya37_c00001{bottom:860.340450px;}
.y32fc_c00001{bottom:860.400000px;}
.ya0d_c00001{bottom:860.520450px;}
.y1d92_c00001{bottom:860.580000px;}
.y17f5_c00001{bottom:860.610450px;}
.y206b_c00001{bottom:860.610600px;}
.y2fd_c00001{bottom:860.700450px;}
.ye9b_c00001{bottom:860.700600px;}
.y11f6_c00001{bottom:860.790600px;}
.y181c_c00001{bottom:860.970450px;}
.y79b_c00001{bottom:861.060045px;}
.y37a_c00001{bottom:861.060450px;}
.y19c1_c00001{bottom:861.300000px;}
.y2c20_c00001{bottom:861.420450px;}
.y220a_c00001{bottom:861.510450px;}
.y44c_c00001{bottom:861.601275px;}
.y39cb_c00001{bottom:861.690450px;}
.y1fa4_c00001{bottom:861.780450px;}
.y15f5_c00001{bottom:861.781215px;}
.y9d8_c00001{bottom:861.870450px;}
.y38b0_c00001{bottom:861.960450px;}
.ya54_c00001{bottom:862.051755px;}
.y2a9e_c00001{bottom:862.140159px;}
.y204f_c00001{bottom:862.140450px;}
.y2980_c00001{bottom:862.320081px;}
.y2416_c00001{bottom:862.320450px;}
.y13f9_c00001{bottom:862.410450px;}
.y23a1_c00001{bottom:862.590450px;}
.ydc_c00001{bottom:862.680600px;}
.y39e6_c00001{bottom:862.770000px;}
.y283a_c00001{bottom:862.770450px;}
.ya9e_c00001{bottom:862.860600px;}
.y1c8b_c00001{bottom:862.920000px;}
.y1301_c00001{bottom:862.950162px;}
.y2cd6_c00001{bottom:863.038317px;}
.y150a_c00001{bottom:863.220450px;}
.y2b27_c00001{bottom:863.220486px;}
.y13_c00001{bottom:863.400450px;}
.y3339_c00001{bottom:863.460000px;}
.y863_c00001{bottom:863.580450px;}
.y2d4_c00001{bottom:863.670450px;}
.y179c_c00001{bottom:863.760450px;}
.y2e55_c00001{bottom:863.820000px;}
.y898_c00001{bottom:863.851275px;}
.y1a10_c00001{bottom:864.000000px;}
.y34b4_c00001{bottom:864.030450px;}
.y2c97_c00001{bottom:864.120450px;}
.y1983_c00001{bottom:864.180000px;}
.y1043_c00001{bottom:864.210450px;}
.yf8f_c00001{bottom:864.300450px;}
.y192c_c00001{bottom:864.360000px;}
.y29f5_c00001{bottom:864.390450px;}
.yeb2_c00001{bottom:864.480450px;}
.y29d0_c00001{bottom:864.570450px;}
.y11ca_c00001{bottom:864.657840px;}
.y118d_c00001{bottom:864.660450px;}
.y1350_c00001{bottom:864.663960px;}
.y36f5_c00001{bottom:864.750600px;}
.y1731_c00001{bottom:864.840450px;}
.y241d_c00001{bottom:865.020450px;}
.y31a6_c00001{bottom:865.080000px;}
.y2953_c00001{bottom:865.109127px;}
.y2629_c00001{bottom:865.109496px;}
.y27ca_c00001{bottom:865.110009px;}
.y2755_c00001{bottom:865.110600px;}
.y200c_c00001{bottom:865.290600px;}
.yef3_c00001{bottom:865.291062px;}
.y28f_c00001{bottom:865.380450px;}
.y11d6_c00001{bottom:865.464951px;}
.y22e5_c00001{bottom:865.470450px;}
.yeff_c00001{bottom:865.471062px;}
.y135f_c00001{bottom:865.471818px;}
.ydaa_c00001{bottom:865.740450px;}
.y29e5_c00001{bottom:865.830450px;}
.y8b4_c00001{bottom:865.920450px;}
.y7f2_c00001{bottom:866.010450px;}
.ye4c_c00001{bottom:866.100450px;}
.y1d57_c00001{bottom:866.163060px;}
.y9bd_c00001{bottom:866.190450px;}
.y3875_c00001{bottom:866.278821px;}
.y39b3_c00001{bottom:866.280450px;}
.y2fc9_c00001{bottom:866.340000px;}
.y12e4_c00001{bottom:866.370450px;}
.y9a9_c00001{bottom:866.460450px;}
.y1b8b_c00001{bottom:866.520000px;}
.y273e_c00001{bottom:866.550450px;}
.y1246_c00001{bottom:866.640351px;}
.y12c5_c00001{bottom:866.644590px;}
.y1a5_c00001{bottom:866.730450px;}
.y2ef1_c00001{bottom:866.880000px;}
.y17b0_c00001{bottom:866.910450px;}
.y1af7_c00001{bottom:867.063960px;}
.y1fc1_c00001{bottom:867.090450px;}
.y28f9_c00001{bottom:867.270450px;}
.y2103_c00001{bottom:867.360600px;}
.y3465_c00001{bottom:867.450450px;}
.y35c6_c00001{bottom:867.540600px;}
.y1904_c00001{bottom:867.600000px;}
.yae_c00001{bottom:867.630450px;}
.y2195_c00001{bottom:867.720450px;}
.ye83_c00001{bottom:867.720828px;}
.y1e59_c00001{bottom:867.780000px;}
.y1250_c00001{bottom:867.898200px;}
.y14c6_c00001{bottom:867.900450px;}
.y12d4_c00001{bottom:867.902250px;}
.y1cca_c00001{bottom:867.960000px;}
.y33c1_c00001{bottom:867.990450px;}
.y28c6_c00001{bottom:868.260450px;}
.y161c_c00001{bottom:868.350450px;}
.y1a5a_c00001{bottom:868.500000px;}
.y2a28_c00001{bottom:868.530450px;}
.y3a0e_c00001{bottom:868.621917px;}
.y2dc5_c00001{bottom:868.680000px;}
.y60_c00001{bottom:868.800450px;}
.y4c8_c00001{bottom:868.800600px;}
.y37b4_c00001{bottom:868.890450px;}
.y31ce_c00001{bottom:869.040000px;}
.y392a_c00001{bottom:869.070450px;}
.y27fe_c00001{bottom:869.250600px;}
.y14e7_c00001{bottom:869.251485px;}
.yba9_c00001{bottom:869.339406px;}
.y2f65_c00001{bottom:869.400000px;}
.ydc9_c00001{bottom:869.430450px;}
.y6b3_c00001{bottom:869.430600px;}
.y4ff_c00001{bottom:869.520450px;}
.y308c_c00001{bottom:869.580000px;}
.y1654_c00001{bottom:869.610450px;}
.y2af0_c00001{bottom:869.610522px;}
.yb2b_c00001{bottom:869.700747px;}
.y1e21_c00001{bottom:869.760000px;}
.y2377_c00001{bottom:869.879496px;}
.y18d3_c00001{bottom:869.970450px;}
.y176e_c00001{bottom:870.060450px;}
.y13ec_c00001{bottom:870.061575px;}
.y306a_c00001{bottom:870.120000px;}
.y2e27_c00001{bottom:870.127020px;}
.y24a7_c00001{bottom:870.150450px;}
.ybb1_c00001{bottom:870.152529px;}
.y1879_c00001{bottom:870.240162px;}
.y331f_c00001{bottom:870.300000px;}
.y1bd4_c00001{bottom:870.480000px;}
.yb9d_c00001{bottom:870.510450px;}
.yb33_c00001{bottom:870.510864px;}
.y268d_c00001{bottom:870.690450px;}
.y1587_c00001{bottom:870.691125px;}
.y21e6_c00001{bottom:870.780450px;}
.yac4_c00001{bottom:870.870450px;}
.ybe7_c00001{bottom:870.960450px;}
.ye27_c00001{bottom:870.962700px;}
.y85_c00001{bottom:871.050450px;}
.y149e_c00001{bottom:871.230744px;}
.ycb6_c00001{bottom:871.320450px;}
.y528_c00001{bottom:871.500450px;}
.y47b_c00001{bottom:871.590450px;}
.y648_c00001{bottom:871.680600px;}
.y2d4e_c00001{bottom:871.740000px;}
.y195a_c00001{bottom:871.770450px;}
.y1f37_c00001{bottom:871.773303px;}
.y3672_c00001{bottom:871.950000px;}
.y56c_c00001{bottom:871.951125px;}
.y377f_c00001{bottom:872.040600px;}
.yf50_c00001{bottom:872.220450px;}
.y1a11_c00001{bottom:872.280000px;}
.ye97_c00001{bottom:872.309982px;}
.y2226_c00001{bottom:872.310009px;}
.y23a_c00001{bottom:872.310450px;}
.yd7e_c00001{bottom:872.400720px;}
.y30c1_c00001{bottom:872.640000px;}
.ycdf_c00001{bottom:872.759811px;}
.y1c4d_c00001{bottom:872.820000px;}
.y30ef_c00001{bottom:873.000000px;}
.y17cc_c00001{bottom:873.030450px;}
.yd3a_c00001{bottom:873.120450px;}
.y2b26_c00001{bottom:873.120477px;}
.y212d_c00001{bottom:873.210450px;}
.y114f_c00001{bottom:873.216570px;}
.y1480_c00001{bottom:873.300450px;}
.y2935_c00001{bottom:873.480450px;}
.y3d8_c00001{bottom:873.570450px;}
.y224d_c00001{bottom:873.660450px;}
.y16d4_c00001{bottom:873.750450px;}
.yae2_c00001{bottom:873.750600px;}
.y231a_c00001{bottom:873.839127px;}
.yd11_c00001{bottom:873.840450px;}
.y3221_c00001{bottom:873.935049px;}
.y313_c00001{bottom:874.020450px;}
.y115f_c00001{bottom:874.034202px;}
.y2f66_c00001{bottom:874.080000px;}
.y1b3f_c00001{bottom:874.090080px;}
.y2469_c00001{bottom:874.110600px;}
.y2445_c00001{bottom:874.200450px;}
.y137b_c00001{bottom:874.201305px;}
.y3671_c00001{bottom:874.290600px;}
.y20ba_c00001{bottom:874.470450px;}
.y3673_c00001{bottom:874.560450px;}
.y2eb4_c00001{bottom:874.620000px;}
.y38e8_c00001{bottom:874.650450px;}
.y2c3e_c00001{bottom:874.830450px;}
.y2152_c00001{bottom:874.920450px;}
.y1e8f_c00001{bottom:874.980000px;}
.y3908_c00001{bottom:875.010450px;}
.y2c62_c00001{bottom:875.100081px;}
.y3135_c00001{bottom:875.160000px;}
.y358f_c00001{bottom:875.190450px;}
.y2d00_c00001{bottom:875.460009px;}
.y28ab_c00001{bottom:875.460450px;}
.y25c5_c00001{bottom:875.460522px;}
.y12a_c00001{bottom:875.550450px;}
.y2557_c00001{bottom:875.640450px;}
.y101_c00001{bottom:875.730450px;}
.y2a44_c00001{bottom:875.819127px;}
.y2f99_c00001{bottom:875.880000px;}
.y24d8_c00001{bottom:876.178317px;}
.y1895_c00001{bottom:876.180450px;}
.y25f2_c00001{bottom:876.180600px;}
.y1d0b_c00001{bottom:876.240000px;}
.y1d0c_c00001{bottom:876.420000px;}
.y9f2_c00001{bottom:876.450450px;}
.y20d8_c00001{bottom:876.536598px;}
.y26d0_c00001{bottom:876.538245px;}
.y1217_c00001{bottom:876.540600px;}
.y1300_c00001{bottom:876.720450px;}
.y1ebc_c00001{bottom:876.780000px;}
.y33f_c00001{bottom:876.810450px;}
.y1d4_c00001{bottom:876.900450px;}
.y2d9d_c00001{bottom:876.960000px;}
.y3ae_c00001{bottom:876.990450px;}
.yb3b_c00001{bottom:877.080450px;}
.y1688_c00001{bottom:877.350450px;}
.y3452_c00001{bottom:877.440450px;}
.y38c8_c00001{bottom:877.530450px;}
.ydf1_c00001{bottom:877.800450px;}
.y928_c00001{bottom:877.890450px;}
.y13f8_c00001{bottom:877.980000px;}
.yf17_c00001{bottom:877.980450px;}
.y3574_c00001{bottom:878.070450px;}
.y3654_c00001{bottom:878.160450px;}
.y23c1_c00001{bottom:878.249937px;}
.yc0d_c00001{bottom:878.250450px;}
.y260e_c00001{bottom:878.250600px;}
.y1c12_c00001{bottom:878.413140px;}
.y37e8_c00001{bottom:878.430600px;}
.y1bd5_c00001{bottom:878.580000px;}
.y2d3_c00001{bottom:878.610450px;}
.y4b9_c00001{bottom:878.610600px;}
.y379_c00001{bottom:878.700450px;}
.y3846_c00001{bottom:878.790600px;}
.y13e5_c00001{bottom:878.880450px;}
.y2f9c_c00001{bottom:878.940000px;}
.y2509_c00001{bottom:878.968389px;}
.y406_c00001{bottom:878.970450px;}
.y22c2_c00001{bottom:879.150081px;}
.y151_c00001{bottom:879.150450px;}
.ya53_c00001{bottom:879.241566px;}
.y1f99_c00001{bottom:879.246624px;}
.ya36_c00001{bottom:879.330450px;}
.y18f6_c00001{bottom:879.687669px;}
.y2916_c00001{bottom:879.690450px;}
.y37ff_c00001{bottom:879.780081px;}
.y666_c00001{bottom:879.780450px;}
.y3042_c00001{bottom:879.840000px;}
.y34c7_c00001{bottom:879.960450px;}
.y1d56_c00001{bottom:880.020000px;}
.y15f7_c00001{bottom:880.050450px;}
.y3874_c00001{bottom:880.138884px;}
.y2069_c00001{bottom:880.140450px;}
.y79a_c00001{bottom:880.140540px;}
.y174f_c00001{bottom:880.230450px;}
.y34a1_c00001{bottom:880.320450px;}
.y36db_c00001{bottom:880.410450px;}
.y44b_c00001{bottom:880.500600px;}
.ye88_c00001{bottom:880.679694px;}
.y1fd6_c00001{bottom:880.680600px;}
.y1af6_c00001{bottom:880.740000px;}
.y15b9_c00001{bottom:880.770450px;}
.y15f4_c00001{bottom:880.771125px;}
.y226a_c00001{bottom:881.039568px;}
.y202d_c00001{bottom:881.040009px;}
.y257e_c00001{bottom:881.040081px;}
.y3136_c00001{bottom:881.100000px;}
.y353e_c00001{bottom:881.220450px;}
.y1e22_c00001{bottom:881.280000px;}
.y3643_c00001{bottom:881.310450px;}
.y969_c00001{bottom:881.400450px;}
.y23ec_c00001{bottom:881.580450px;}
.y2a0f_c00001{bottom:881.670450px;}
.y2717_c00001{bottom:881.757993px;}
.y209b_c00001{bottom:881.759127px;}
.y270d_c00001{bottom:881.759640px;}
.y2a3f_c00001{bottom:881.759937px;}
.y21b1_c00001{bottom:881.760081px;}
.y25a5_c00001{bottom:881.940450px;}
.y2f23_c00001{bottom:882.180000px;}
.y2653_c00001{bottom:882.210450px;}
.y1396_c00001{bottom:882.302052px;}
.y1e5b_c00001{bottom:882.360000px;}
.y2a82_c00001{bottom:882.480450px;}
.y1b8c_c00001{bottom:882.540000px;}
.y1113_c00001{bottom:882.570450px;}
.yef2_c00001{bottom:882.571053px;}
.y3178_c00001{bottom:882.720000px;}
.y1082_c00001{bottom:882.750450px;}
.y897_c00001{bottom:882.750600px;}
.yefe_c00001{bottom:882.751053px;}
.y241c_c00001{bottom:882.840450px;}
.y1509_c00001{bottom:883.110600px;}
.y2b25_c00001{bottom:883.110855px;}
.y1042_c00001{bottom:883.200450px;}
.y1c88_c00001{bottom:883.260000px;}
.y7f1_c00001{bottom:883.290600px;}
.ydb_c00001{bottom:883.380450px;}
.yea2_c00001{bottom:883.470450px;}
.y126a_c00001{bottom:883.560450px;}
.y13a0_c00001{bottom:883.562250px;}
.y38af_c00001{bottom:883.650450px;}
.y23a0_c00001{bottom:883.740450px;}
.y1a59_c00001{bottom:883.800000px;}
.y2e26_c00001{bottom:883.803060px;}
.y2e83_c00001{bottom:883.806120px;}
.y2dc4_c00001{bottom:883.980000px;}
.y118c_c00001{bottom:884.010450px;}
.y2a9d_c00001{bottom:884.010672px;}
.y297f_c00001{bottom:884.100009px;}
.y2209_c00001{bottom:884.100450px;}
.y1f13_c00001{bottom:884.280450px;}
.ya9d_c00001{bottom:884.370450px;}
.y17f4_c00001{bottom:884.460450px;}
.y3a0d_c00001{bottom:884.551593px;}
.y2c1f_c00001{bottom:884.640450px;}
.yda9_c00001{bottom:884.730450px;}
.y181b_c00001{bottom:884.820450px;}
.y1982_c00001{bottom:884.880000px;}
.y2cd5_c00001{bottom:884.908830px;}
.y862_c00001{bottom:885.000600px;}
.y192b_c00001{bottom:885.060000px;}
.y29cf_c00001{bottom:885.090450px;}
.y1eeb_c00001{bottom:885.240000px;}
.y2839_c00001{bottom:885.360600px;}
.yf4f_c00001{bottom:885.360699px;}
.yfed_c00001{bottom:885.450450px;}
.y1730_c00001{bottom:885.540450px;}
.y29a9_c00001{bottom:885.540600px;}
.y2d27_c00001{bottom:885.717786px;}
.y1a4_c00001{bottom:885.720450px;}
.y28da_c00001{bottom:885.810450px;}
.y12_c00001{bottom:885.900774px;}
.y72a_c00001{bottom:886.080450px;}
.y3179_c00001{bottom:886.320000px;}
.y12c6_c00001{bottom:886.354932px;}
.y957_c00001{bottom:886.440450px;}
.ycde_c00001{bottom:886.530099px;}
.y28e_c00001{bottom:886.620450px;}
.y1d88_c00001{bottom:886.680000px;}
.y379a_c00001{bottom:886.800450px;}
.ya0c_c00001{bottom:886.890729px;}
.y2952_c00001{bottom:886.979640px;}
.y2628_c00001{bottom:886.980009px;}
.y27c9_c00001{bottom:886.980522px;}
.y3019_c00001{bottom:887.040000px;}
.y233f_c00001{bottom:887.070450px;}
.yeb1_c00001{bottom:887.160081px;}
.y9d7_c00001{bottom:887.160450px;}
.y2ee6_c00001{bottom:887.220000px;}
.y1d3_c00001{bottom:887.430600px;}
.y179b_c00001{bottom:887.520450px;}
.y12d5_c00001{bottom:887.610450px;}
.y14c5_c00001{bottom:887.700540px;}
.y32c5_c00001{bottom:887.760000px;}
.y1b3e_c00001{bottom:887.766120px;}
.y12e3_c00001{bottom:887.790600px;}
.y1c89_c00001{bottom:887.940000px;}
.y2890_c00001{bottom:887.970450px;}
.y1cc7_c00001{bottom:888.120000px;}
.yf72_c00001{bottom:888.150450px;}
.y1351_c00001{bottom:888.154347px;}
.y268c_c00001{bottom:888.240594px;}
.y14e6_c00001{bottom:888.241395px;}
.y606_c00001{bottom:888.330450px;}
.ybaa_c00001{bottom:888.419991px;}
.y35e5_c00001{bottom:888.420450px;}
.y36f4_c00001{bottom:888.510450px;}
.y2e53_c00001{bottom:888.660000px;}
.y3396_c00001{bottom:888.690450px;}
.y28f8_c00001{bottom:888.780873px;}
.y147f_c00001{bottom:888.870450px;}
.yf4e_c00001{bottom:888.870645px;}
.y1360_c00001{bottom:888.962205px;}
.y2ef0_c00001{bottom:889.020000px;}
.y16a1_c00001{bottom:889.050450px;}
.y13eb_c00001{bottom:889.051485px;}
.y3817_c00001{bottom:889.230450px;}
.ybb2_c00001{bottom:889.233114px;}
.y200_c00001{bottom:889.320450px;}
.y200b_c00001{bottom:889.410081px;}
.y595_c00001{bottom:889.500450px;}
.y263_c00001{bottom:889.500600px;}
.y1586_c00001{bottom:889.590450px;}
.y2102_c00001{bottom:889.770774px;}
.y11cb_c00001{bottom:889.858641px;}
.ybe6_c00001{bottom:889.860600px;}
.ye26_c00001{bottom:889.952610px;}
.y27b4_c00001{bottom:890.040450px;}
.y3119_c00001{bottom:890.100000px;}
.y626_c00001{bottom:890.130450px;}
.y3478_c00001{bottom:890.220450px;}
.y3289_c00001{bottom:890.280000px;}
.ycb5_c00001{bottom:890.310450px;}
.y348c_c00001{bottom:890.490450px;}
.ye96_c00001{bottom:890.573943px;}
.y11d7_c00001{bottom:890.664249px;}
.y176d_c00001{bottom:890.760450px;}
.y32cc_c00001{bottom:890.820000px;}
.y56b_c00001{bottom:890.850450px;}
.y4fe_c00001{bottom:891.030450px;}
.y3d_c00001{bottom:891.120450px;}
.y155b_c00001{bottom:891.121305px;}
.y2d6f_c00001{bottom:891.180000px;}
.y3977_c00001{bottom:891.300450px;}
.y1432_c00001{bottom:891.390450px;}
.yd7d_c00001{bottom:891.390630px;}
.y37b3_c00001{bottom:891.480450px;}
.y32f8_c00001{bottom:891.540000px;}
.y38e7_c00001{bottom:891.570450px;}
.y366f_c00001{bottom:891.660000px;}
.y38e6_c00001{bottom:891.660450px;}
.y301a_c00001{bottom:891.720000px;}
.y2376_c00001{bottom:891.750009px;}
.y2fc_c00001{bottom:891.750450px;}
.y362_c00001{bottom:891.750600px;}
.y27fd_c00001{bottom:891.840450px;}
.y31d1_c00001{bottom:892.080000px;}
.y21e5_c00001{bottom:892.110600px;}
.y527_c00001{bottom:892.200450px;}
.y1e8e_c00001{bottom:892.260000px;}
.y1c11_c00001{bottom:892.270080px;}
.yf4d_c00001{bottom:892.290600px;}
.y1150_c00001{bottom:892.297155px;}
.y1903_c00001{bottom:892.440000px;}
.yd39_c00001{bottom:892.470450px;}
.y3d7_c00001{bottom:892.560450px;}
.y1af3_c00001{bottom:892.620000px;}
.y47a_c00001{bottom:892.740450px;}
.y30bf_c00001{bottom:892.800000px;}
.yd10_c00001{bottom:892.830450px;}
.yb3a_c00001{bottom:892.920450px;}
.yee7_c00001{bottom:892.920846px;}
.y239_c00001{bottom:893.010450px;}
.y149d_c00001{bottom:893.010672px;}
.y2b24_c00001{bottom:893.010846px;}
.y24a4_c00001{bottom:893.100450px;}
.y137a_c00001{bottom:893.100630px;}
.y1160_c00001{bottom:893.114787px;}
.y204e_c00001{bottom:893.190450px;}
.y1959_c00001{bottom:893.280450px;}
.y1247_c00001{bottom:893.281026px;}
.y13f7_c00001{bottom:893.460450px;}
.ye8d_c00001{bottom:893.546877px;}
.y26be_c00001{bottom:893.550450px;}
.y1fc0_c00001{bottom:893.550729px;}
.y2add_c00001{bottom:893.640450px;}
.y18d2_c00001{bottom:893.730450px;}
.y2468_c00001{bottom:893.820450px;}
.y3873_c00001{bottom:893.909172px;}
.y2b91_c00001{bottom:893.910450px;}
.y366e_c00001{bottom:894.000600px;}
.y1ebb_c00001{bottom:894.060000px;}
.yad_c00001{bottom:894.090450px;}
.y2225_c00001{bottom:894.180522px;}
.y2eb3_c00001{bottom:894.240000px;}
.y2fc8_c00001{bottom:894.243960px;}
.y3670_c00001{bottom:894.270450px;}
.y2f63_c00001{bottom:894.420000px;}
.y1251_c00001{bottom:894.537750px;}
.y18b5_c00001{bottom:894.630450px;}
.y312_c00001{bottom:894.720450px;}
.y1aa4_c00001{bottom:894.780000px;}
.y3522_c00001{bottom:894.899406px;}
.y3621_c00001{bottom:894.900450px;}
.y3338_c00001{bottom:894.960000px;}
.yab3_c00001{bottom:894.990450px;}
.y2782_c00001{bottom:895.170450px;}
.y1f59_c00001{bottom:895.260450px;}
.yd62_c00001{bottom:895.440450px;}
.y2319_c00001{bottom:895.619055px;}
.y1f36_c00001{bottom:895.892997px;}
.y2934_c00001{bottom:896.070450px;}
.ycab_c00001{bottom:896.160450px;}
.y5ea_c00001{bottom:896.250450px;}
.y1de4_c00001{bottom:896.400000px;}
.y100_c00001{bottom:896.430450px;}
.yb9c_c00001{bottom:896.519946px;}
.ya52_c00001{bottom:896.521557px;}
.y3ad_c00001{bottom:896.700450px;}
.y2c61_c00001{bottom:896.880009px;}
.y927_c00001{bottom:896.880450px;}
.y1d55_c00001{bottom:896.940000px;}
.y8b3_c00001{bottom:896.970450px;}
.y34f3_c00001{bottom:897.060450px;}
.y2d07_c00001{bottom:897.239325px;}
.y2cff_c00001{bottom:897.239937px;}
.y25c8_c00001{bottom:897.240450px;}
.y1af5_c00001{bottom:897.300000px;}
.y37c9_c00001{bottom:897.420450px;}
.y2151_c00001{bottom:897.420549px;}
.y30c0_c00001{bottom:897.480000px;}
.y3731_c00001{bottom:897.510450px;}
.yac3_c00001{bottom:897.510729px;}
.y2a43_c00001{bottom:897.599055px;}
.y2068_c00001{bottom:897.599127px;}
.y16d3_c00001{bottom:897.600450px;}
.y2e25_c00001{bottom:897.660000px;}
.y2e82_c00001{bottom:897.663060px;}
.y378_c00001{bottom:897.690450px;}
.y2f22_c00001{bottom:897.840000px;}
.y694_c00001{bottom:897.960450px;}
.y1cc8_c00001{bottom:898.020000px;}
.y24d7_c00001{bottom:898.048830px;}
.y25f1_c00001{bottom:898.050450px;}
.y33e_c00001{bottom:898.230450px;}
.ya35_c00001{bottom:898.320450px;}
.y20d7_c00001{bottom:898.407111px;}
.y26cf_c00001{bottom:898.408758px;}
.y1fee_c00001{bottom:898.500450px;}
.y31a4_c00001{bottom:898.560000px;}
.ya1c_c00001{bottom:898.680450px;}
.y2d9c_c00001{bottom:898.740000px;}
.y839_c00001{bottom:898.770450px;}
.y1bd1_c00001{bottom:898.920000px;}
.y228f_c00001{bottom:898.950450px;}
.y2f64_c00001{bottom:899.100000px;}
.y799_c00001{bottom:899.130450px;}
.y3451_c00001{bottom:899.220450px;}
.y2d2_c00001{bottom:899.310450px;}
.y161b_c00001{bottom:899.400450px;}
.y1f98_c00001{bottom:899.405904px;}
.y1de6_c00001{bottom:899.460000px;}
.y13e4_c00001{bottom:899.580450px;}
.y5f_c00001{bottom:899.670450px;}
.y15f3_c00001{bottom:899.671125px;}
.y38f5_c00001{bottom:899.760450px;}
.yef1_c00001{bottom:899.760864px;}
.y150_c00001{bottom:899.850450px;}
.yefd_c00001{bottom:899.940864px;}
.y3653_c00001{bottom:900.030450px;}
.y23c2_c00001{bottom:900.120450px;}
.y2df3_c00001{bottom:900.180000px;}
.y34df_c00001{bottom:900.210450px;}
.ycdd_c00001{bottom:900.300387px;}
.y3a0c_c00001{bottom:900.391494px;}
.y44a_c00001{bottom:900.480450px;}
.y1a0f_c00001{bottom:900.540000px;}
.y7f0_c00001{bottom:900.570450px;}
.y15b8_c00001{bottom:900.660450px;}
.y308b_c00001{bottom:900.720000px;}
.y2508_c00001{bottom:900.748317px;}
.y241b_c00001{bottom:900.750450px;}
.y35fe_c00001{bottom:900.840450px;}
.y22c1_c00001{bottom:900.930009px;}
.y2ac8_c00001{bottom:901.020450px;}
.y665_c00001{bottom:901.200450px;}
.y1af4_c00001{bottom:901.440000px;}
.y18f5_c00001{bottom:901.467597px;}
.y39e5_c00001{bottom:901.470000px;}
.y37fe_c00001{bottom:901.560009px;}
.y23c0_c00001{bottom:901.560450px;}
.y1b3d_c00001{bottom:901.623060px;}
.y36da_c00001{bottom:901.650450px;}
.y331c_c00001{bottom:901.800000px;}
.y11_c00001{bottom:901.830450px;}
.y3069_c00001{bottom:901.980000px;}
.y13c1_c00001{bottom:902.010450px;}
.y84_c00001{bottom:902.100450px;}
.y1d01_c00001{bottom:902.160000px;}
.y1041_c00001{bottom:902.190450px;}
.yf8e_c00001{bottom:902.280450px;}
.yb2c_c00001{bottom:902.460135px;}
.y1e53_c00001{bottom:902.520000px;}
.y13b5_c00001{bottom:902.550450px;}
.y2269_c00001{bottom:902.819496px;}
.y202c_c00001{bottom:902.819937px;}
.y257d_c00001{bottom:902.820009px;}
.y34a0_c00001{bottom:902.820450px;}
.y2eef_c00001{bottom:902.880000px;}
.y118b_c00001{bottom:902.910450px;}
.y2b23_c00001{bottom:902.910837px;}
.y2a27_c00001{bottom:903.000450px;}
.y248a_c00001{bottom:903.000648px;}
.yb34_c00001{bottom:903.270252px;}
.y217b_c00001{bottom:903.360450px;}
.y2915_c00001{bottom:903.450450px;}
.y266f_c00001{bottom:903.540450px;}
.y3043_c00001{bottom:903.600000px;}
.y2716_c00001{bottom:903.628506px;}
.y209a_c00001{bottom:903.629640px;}
.y270c_c00001{bottom:903.630153px;}
.y2a3e_c00001{bottom:903.630450px;}
.y21b0_c00001{bottom:903.630594px;}
.yda8_c00001{bottom:903.720540px;}
.y147e_c00001{bottom:903.810450px;}
.y385c_c00001{bottom:903.900450px;}
.y1c4c_c00001{bottom:903.960000px;}
.y174e_c00001{bottom:903.990450px;}
.yda_c00001{bottom:904.080450px;}
.y30ee_c00001{bottom:904.140000px;}
.y7cc_c00001{bottom:904.170450px;}
.y31d4_c00001{bottom:904.320000px;}
.y1fd5_c00001{bottom:904.350450px;}
.yfec_c00001{bottom:904.440450px;}
.y2dc3_c00001{bottom:904.680000px;}
.y1a3_c00001{bottom:904.710450px;}
.y28f7_c00001{bottom:904.710549px;}
.y32a9_c00001{bottom:904.860000px;}
.y39b2_c00001{bottom:904.980450px;}
.y212c_c00001{bottom:905.070450px;}
.y39e4_c00001{bottom:905.160450px;}
.y1a58_c00001{bottom:905.220000px;}
.y3507_c00001{bottom:905.340450px;}
.y32f7_c00001{bottom:905.400000px;}
.y1e56_c00001{bottom:905.580000px;}
.y2101_c00001{bottom:905.700450px;}
.y192a_c00001{bottom:905.760000px;}
.ya9c_c00001{bottom:905.790600px;}
.y32fb_c00001{bottom:905.940000px;}
.y1c10_c00001{bottom:905.946120px;}
.y2415_c00001{bottom:905.970450px;}
.y297e_c00001{bottom:905.970522px;}
.y2bdb_c00001{bottom:906.060450px;}
.y12c7_c00001{bottom:906.065274px;}
.y172f_c00001{bottom:906.240450px;}
.y31a5_c00001{bottom:906.300000px;}
.y2a81_c00001{bottom:906.330450px;}
.y1d2_c00001{bottom:906.420450px;}
.y1aa2_c00001{bottom:906.480000px;}
.y861_c00001{bottom:906.510450px;}
.y3157_c00001{bottom:906.660000px;}
.y2cd4_c00001{bottom:906.688758px;}
.y2208_c00001{bottom:906.690450px;}
.y14c4_c00001{bottom:906.691125px;}
.y729_c00001{bottom:906.780450px;}
.y239f_c00001{bottom:906.960450px;}
.y3132_c00001{bottom:907.020000px;}
.y2a9c_c00001{bottom:907.230450px;}
.y14e5_c00001{bottom:907.231305px;}
.y12d6_c00001{bottom:907.320450px;}
.y9f1_c00001{bottom:907.500450px;}
.ybab_c00001{bottom:907.589253px;}
.ya0b_c00001{bottom:907.590450px;}
.y3872_c00001{bottom:907.679460px;}
.y605_c00001{bottom:907.770450px;}
.y896_c00001{bottom:907.860450px;}
.y2ee5_c00001{bottom:907.920000px;}
.y13ea_c00001{bottom:908.041395px;}
.y1c86_c00001{bottom:908.100000px;}
.y28d_c00001{bottom:908.130450px;}
.y17f3_c00001{bottom:908.220450px;}
.y1d8e_c00001{bottom:908.280000px;}
.y17af_c00001{bottom:908.310450px;}
.y1687_c00001{bottom:908.400450px;}
.ybb3_c00001{bottom:908.403879px;}
.y33ab_c00001{bottom:908.490450px;}
.y181a_c00001{bottom:908.580450px;}
.y2951_c00001{bottom:908.759568px;}
.y2627_c00001{bottom:908.759937px;}
.y27cb_c00001{bottom:908.760450px;}
.y2e51_c00001{bottom:908.820000px;}
.ye25_c00001{bottom:908.851935px;}
.yeb0_c00001{bottom:908.940009px;}
.y13f6_c00001{bottom:909.030000px;}
.yea1_c00001{bottom:909.030450px;}
.y2eb2_c00001{bottom:909.180000px;}
.ycb4_c00001{bottom:909.210450px;}
.yc0c_c00001{bottom:909.300450px;}
.y1e8d_c00001{bottom:909.360000px;}
.y1585_c00001{bottom:909.390540px;}
.y2c3d_c00001{bottom:909.480450px;}
.y1508_c00001{bottom:909.570450px;}
.ybe5_c00001{bottom:909.660450px;}
.y1de7_c00001{bottom:909.720000px;}
.y1670_c00001{bottom:909.750450px;}
.y3134_c00001{bottom:909.900000px;}
.y268b_c00001{bottom:910.020522px;}
.yee6_c00001{bottom:910.110657px;}
.y155a_c00001{bottom:910.111215px;}
.y594_c00001{bottom:910.200450px;}
.y26aa_c00001{bottom:910.290600px;}
.yd7c_c00001{bottom:910.380540px;}
.y1d8c_c00001{bottom:910.440000px;}
.y19bc_c00001{bottom:910.627020px;}
.y262_c00001{bottom:910.830450px;}
.yae1_c00001{bottom:910.920450px;}
.y31d0_c00001{bottom:910.980000px;}
.y34c6_c00001{bottom:911.010450px;}
.y1397_c00001{bottom:911.012358px;}
.y382c_c00001{bottom:911.100450px;}
.y1aa3_c00001{bottom:911.160000px;}
.y200a_c00001{bottom:911.190009px;}
.y1151_c00001{bottom:911.287560px;}
.y366d_c00001{bottom:911.370000px;}
.y179a_c00001{bottom:911.370450px;}
.yd38_c00001{bottom:911.460450px;}
.y2e81_c00001{bottom:911.520000px;}
.y625_c00001{bottom:911.550450px;}
.y273d_c00001{bottom:911.640450px;}
.y1352_c00001{bottom:911.644734px;}
.yd0f_c00001{bottom:911.820450px;}
.y2d6e_c00001{bottom:911.880000px;}
.y2a65_c00001{bottom:912.000450px;}
.y3176_c00001{bottom:912.060000px;}
.y1379_c00001{bottom:912.090540px;}
.y1161_c00001{bottom:912.090855px;}
.y3220_c00001{bottom:912.094392px;}
.y3642_c00001{bottom:912.180450px;}
.y3d6_c00001{bottom:912.270450px;}
.y13a1_c00001{bottom:912.272700px;}
.y36f3_c00001{bottom:912.360450px;}
.y4fd_c00001{bottom:912.450450px;}
.y1361_c00001{bottom:912.452592px;}
.y1c87_c00001{bottom:912.780000px;}
.y2194_c00001{bottom:912.810450px;}
.y2b22_c00001{bottom:912.810828px;}
.y479_c00001{bottom:912.900450px;}
.y2e24_c00001{bottom:912.960000px;}
.y956_c00001{bottom:913.080450px;}
.y1e20_c00001{bottom:913.140000px;}
.y2150_c00001{bottom:913.260450px;}
.y38e5_c00001{bottom:913.350450px;}
.y3928_c00001{bottom:913.440450px;}
.y322e_c00001{bottom:913.500000px;}
.y2375_c00001{bottom:913.529937px;}
.y7cb_c00001{bottom:913.530450px;}
.y3620_c00001{bottom:913.619811px;}
.y2082_c00001{bottom:913.620450px;}
.y831_c00001{bottom:913.621188px;}
.y10ae_c00001{bottom:913.621197px;}
.y2e52_c00001{bottom:913.680000px;}
.y238_c00001{bottom:913.710450px;}
.y1081_c00001{bottom:913.800450px;}
.ya51_c00001{bottom:913.801548px;}
.y10b7_c00001{bottom:913.801557px;}
.y2aef_c00001{bottom:913.980009px;}
.y33fa_c00001{bottom:913.980450px;}
.ycdc_c00001{bottom:914.160450px;}
.y2feb_c00001{bottom:914.220000px;}
.y1fbf_c00001{bottom:914.250450px;}
.y3976_c00001{bottom:914.340450px;}
.y2f9b_c00001{bottom:914.400000px;}
.yb39_c00001{bottom:914.430450px;}
.yf71_c00001{bottom:914.520450px;}
.y21e4_c00001{bottom:914.520774px;}
.y24a3_c00001{bottom:914.610450px;}
.y1957_c00001{bottom:914.700450px;}
.y2d4d_c00001{bottom:914.742000px;}
.y149c_c00001{bottom:914.790600px;}
.y1958_c00001{bottom:914.880450px;}
.y3018_c00001{bottom:914.943960px;}
.y11cc_c00001{bottom:915.057939px;}
.y3425_c00001{bottom:915.060450px;}
.ye4b_c00001{bottom:915.150450px;}
.y1f12_c00001{bottom:915.330450px;}
.y311_c00001{bottom:915.420450px;}
.y1b3c_c00001{bottom:915.480000px;}
.y28e8_c00001{bottom:915.600450px;}
.y377e_c00001{bottom:915.690450px;}
.y3117_c00001{bottom:915.840000px;}
.y11d8_c00001{bottom:915.863547px;}
.y243f_c00001{bottom:915.870450px;}
.y2228_c00001{bottom:915.960450px;}
.y368a_c00001{bottom:916.140450px;}
.y3929_c00001{bottom:916.230450px;}
.y3a0b_c00001{bottom:916.231395px;}
.y3ac_c00001{bottom:916.410450px;}
.y2b90_c00001{bottom:916.500450px;}
.y926_c00001{bottom:916.590450px;}
.y377_c00001{bottom:916.680450px;}
.yd61_c00001{bottom:916.860450px;}
.y20b9_c00001{bottom:916.950450px;}
.yef0_c00001{bottom:917.040855px;}
.yff_c00001{bottom:917.130450px;}
.yefc_c00001{bottom:917.220855px;}
.ya34_c00001{bottom:917.310450px;}
.y2224_c00001{bottom:917.400450px;}
.y1af0_c00001{bottom:917.460000px;}
.y2318_c00001{bottom:917.489568px;}
.y18d1_c00001{bottom:917.580450px;}
.yab2_c00001{bottom:917.670450px;}
.y7ef_c00001{bottom:917.760450px;}
.y30bd_c00001{bottom:917.820000px;}
.y1431_c00001{bottom:917.850450px;}
.y38f4_c00001{bottom:918.030450px;}
.y693_c00001{bottom:918.120450px;}
.y9d6_c00001{bottom:918.210450px;}
.y1cc5_c00001{bottom:918.360000px;}
.y18b4_c00001{bottom:918.390450px;}
.ydf0_c00001{bottom:918.480450px;}
.y2eee_c00001{bottom:918.540000px;}
.y10_c00001{bottom:918.570450px;}
.y2933_c00001{bottom:918.660450px;}
.y2c60_c00001{bottom:918.750522px;}
.y2489_c00001{bottom:918.840549px;}
.y1d06_c00001{bottom:918.900000px;}
.y798_c00001{bottom:919.020450px;}
.y32f6_c00001{bottom:919.080000px;}
.y3288_c00001{bottom:919.090800px;}
.y2d06_c00001{bottom:919.109838px;}
.y2f61_c00001{bottom:919.260000px;}
.y23eb_c00001{bottom:919.290600px;}
.yac_c00001{bottom:919.380450px;}
.y2a42_c00001{bottom:919.469568px;}
.y2067_c00001{bottom:919.469640px;}
.y1f97_c00001{bottom:919.476246px;}
.y1f74_c00001{bottom:919.562907px;}
.ycaa_c00001{bottom:919.650450px;}
.y3395_c00001{bottom:919.740450px;}
.y1eea_c00001{bottom:919.800000px;}
.y1c0f_c00001{bottom:919.803060px;}
.y24d6_c00001{bottom:919.828758px;}
.y33d_c00001{bottom:919.830450px;}
.y3845_c00001{bottom:919.920450px;}
.y1248_c00001{bottom:920.010378px;}
.y34de_c00001{bottom:920.010450px;}
.y1f35_c00001{bottom:920.012691px;}
.y16a0_c00001{bottom:920.100450px;}
.y2f21_c00001{bottom:920.160000px;}
.y20d6_c00001{bottom:920.187039px;}
.y26ce_c00001{bottom:920.188686px;}
.yf8d_c00001{bottom:920.190450px;}
.y2d26_c00001{bottom:920.279190px;}
.y13e3_c00001{bottom:920.280450px;}
.y1e55_c00001{bottom:920.340000px;}
.y2d1_c00001{bottom:920.370450px;}
.y49e_c00001{bottom:920.550450px;}
.y17cb_c00001{bottom:920.640450px;}
.y1a0d_c00001{bottom:920.700000px;}
.y2556_c00001{bottom:920.820450px;}
.y2a26_c00001{bottom:921.000450px;}
.y14f_c00001{bottom:921.180450px;}
.y1b8a_c00001{bottom:921.240000px;}
.y1112_c00001{bottom:921.270450px;}
.y1252_c00001{bottom:921.270600px;}
.y1460_c00001{bottom:921.360450px;}
.y3871_c00001{bottom:921.539523px;}
.y1040_c00001{bottom:921.540600px;}
.y3118_c00001{bottom:921.780000px;}
.y3652_c00001{bottom:921.810450px;}
.y449_c00001{bottom:921.900450px;}
.y3c_c00001{bottom:921.990450px;}
.y224c_c00001{bottom:922.080450px;}
.y1af2_c00001{bottom:922.140000px;}
.yb9b_c00001{bottom:922.170450px;}
.y38ae_c00001{bottom:922.350450px;}
.y30be_c00001{bottom:922.500000px;}
.y2507_c00001{bottom:922.528245px;}
.y3450_c00001{bottom:922.530450px;}
.yda7_c00001{bottom:922.710450px;}
.y2b21_c00001{bottom:922.710819px;}
.y2fb_c00001{bottom:922.800450px;}
.y22c0_c00001{bottom:922.800522px;}
.y23bf_c00001{bottom:923.070450px;}
.y3573_c00001{bottom:923.160450px;}
.y2fc7_c00001{bottom:923.220000px;}
.y18f4_c00001{bottom:923.338110px;}
.y37fd_c00001{bottom:923.339937px;}
.y5e9_c00001{bottom:923.340450px;}
.yfeb_c00001{bottom:923.430450px;}
.y2ac7_c00001{bottom:923.520450px;}
.y1b89_c00001{bottom:923.580000px;}
.y37e7_c00001{bottom:923.610450px;}
.y147d_c00001{bottom:923.700450px;}
.y2a3d_c00001{bottom:923.790600px;}
.y1fa3_c00001{bottom:923.880450px;}
.y36d9_c00001{bottom:923.880972px;}
.y2f62_c00001{bottom:923.940000px;}
.y1d09_c00001{bottom:924.120000px;}
.y204d_c00001{bottom:924.240450px;}
.y19bb_c00001{bottom:924.303060px;}
.y2d99_c00001{bottom:924.480000px;}
.y13f5_c00001{bottom:924.510450px;}
.y1a2_c00001{bottom:924.600450px;}
.y2268_c00001{bottom:924.690009px;}
.y2031_c00001{bottom:924.690450px;}
.y257c_c00001{bottom:924.690522px;}
.yd9_c00001{bottom:924.780450px;}
.y3133_c00001{bottom:924.840000px;}
.y1507_c00001{bottom:924.871485px;}
.ya1b_c00001{bottom:925.139937px;}
.y2715_c00001{bottom:925.408434px;}
.y2099_c00001{bottom:925.409568px;}
.y270b_c00001{bottom:925.410081px;}
.y349f_c00001{bottom:925.410450px;}
.y21af_c00001{bottom:925.410522px;}
.y3990_c00001{bottom:925.500450px;}
.y14c3_c00001{bottom:925.590450px;}
.y16f2_c00001{bottom:925.860450px;}
.y12c8_c00001{bottom:925.865796px;}
.y217a_c00001{bottom:925.950450px;}
.y1d1_c00001{bottom:926.040600px;}
.y202b_c00001{bottom:926.130450px;}
.y14e4_c00001{bottom:926.130630px;}
.y2781_c00001{bottom:926.220450px;}
.y1af1_c00001{bottom:926.280000px;}
.y1f58_c00001{bottom:926.310450px;}
.y353d_c00001{bottom:926.400450px;}
.y1929_c00001{bottom:926.460000px;}
.y385b_c00001{bottom:926.490450px;}
.y1e8c_c00001{bottom:926.640000px;}
.y2c3c_c00001{bottom:926.670450px;}
.y2a0e_c00001{bottom:926.760450px;}
.y2e80_c00001{bottom:926.820000px;}
.y172e_c00001{bottom:926.940450px;}
.y25a4_c00001{bottom:927.030450px;}
.y13e9_c00001{bottom:927.031305px;}
.y5e_c00001{bottom:927.120450px;}
.y12d7_c00001{bottom:927.120900px;}
.y1b39_c00001{bottom:927.180000px;}
.ya9b_c00001{bottom:927.210450px;}
.y2914_c00001{bottom:927.300450px;}
.y361f_c00001{bottom:927.390099px;}
.y266e_c00001{bottom:927.390450px;}
.yee5_c00001{bottom:927.390648px;}
.y358e_c00001{bottom:927.480450px;}
.y2a80_c00001{bottom:927.660450px;}
.y955_c00001{bottom:927.661395px;}
.y2414_c00001{bottom:927.750450px;}
.y8b2_c00001{bottom:927.840450px;}
.ye24_c00001{bottom:927.841845px;}
.y860_c00001{bottom:927.930450px;}
.y728_c00001{bottom:928.020450px;}
.y1cc6_c00001{bottom:928.080000px;}
.ycb3_c00001{bottom:928.200450px;}
.yc2a_c00001{bottom:928.290600px;}
.y1584_c00001{bottom:928.380450px;}
.y1eba_c00001{bottom:928.440000px;}
.y28c_c00001{bottom:928.470450px;}
.y2cd3_c00001{bottom:928.559271px;}
.y80e_c00001{bottom:928.560450px;}
.y2ee4_c00001{bottom:928.620000px;}
.y34dd_c00001{bottom:928.650450px;}
.y2a9b_c00001{bottom:928.740450px;}
.y9f0_c00001{bottom:928.920450px;}
.y1a0e_c00001{bottom:928.980000px;}
.y17ae_c00001{bottom:929.010450px;}
.y1fd4_c00001{bottom:929.100450px;}
.y1559_c00001{bottom:929.101125px;}
.y2207_c00001{bottom:929.190450px;}
.y3040_c00001{bottom:929.340000px;}
.ycdb_c00001{bottom:929.370450px;}
.y239e_c00001{bottom:929.550450px;}
.y29a8_c00001{bottom:929.640450px;}
.y3521_c00001{bottom:929.729928px;}
.y27c8_c00001{bottom:929.730450px;}
.y2652_c00001{bottom:929.820450px;}
.y1ddf_c00001{bottom:929.880000px;}
.y228e_c00001{bottom:930.000450px;}
.y2dc2_c00001{bottom:930.240000px;}
.y33aa_c00001{bottom:930.270450px;}
.y38e4_c00001{bottom:930.360450px;}
.y1152_c00001{bottom:930.368145px;}
.y1a57_c00001{bottom:930.423060px;}
.yd37_c00001{bottom:930.450450px;}
.y2d9b_c00001{bottom:930.600000px;}
.y2950_c00001{bottom:930.630081px;}
.y2630_c00001{bottom:930.630450px;}
.y12e2_c00001{bottom:930.720450px;}
.yd0e_c00001{bottom:930.810450px;}
.yeaf_c00001{bottom:930.810522px;}
.y830_c00001{bottom:930.810999px;}
.y10ad_c00001{bottom:930.811008px;}
.y3155_c00001{bottom:930.960000px;}
.y838_c00001{bottom:930.991359px;}
.y10b6_c00001{bottom:930.991368px;}
.y366b_c00001{bottom:931.080000px;}
.y1162_c00001{bottom:931.171440px;}
.y1a9c_c00001{bottom:931.320000px;}
.y2adc_c00001{bottom:931.440450px;}
.y1981_c00001{bottom:931.500000px;}
.y593_c00001{bottom:931.530450px;}
.y308a_c00001{bottom:931.680000px;}
.y405_c00001{bottom:931.710450px;}
.y2100_c00001{bottom:931.800450px;}
.y1b3b_c00001{bottom:931.860000px;}
.y2bdc_c00001{bottom:931.980450px;}
.y1de3_c00001{bottom:932.040000px;}
.y17f2_c00001{bottom:932.070450px;}
.y382b_c00001{bottom:932.160450px;}
.y3a0a_c00001{bottom:932.161071px;}
.y3041_c00001{bottom:932.220000px;}
.y261_c00001{bottom:932.250450px;}
.yae0_c00001{bottom:932.430450px;}
.y233e_c00001{bottom:932.430522px;}
.y1d8b_c00001{bottom:932.580000px;}
.y4fc_c00001{bottom:932.610162px;}
.yf8c_c00001{bottom:932.700450px;}
.y31d3_c00001{bottom:932.760000px;}
.y1c84_c00001{bottom:932.940000px;}
.y2009_c00001{bottom:932.969937px;}
.y624_c00001{bottom:932.970450px;}
.y1210_c00001{bottom:933.060450px;}
.y83_c00001{bottom:933.150450px;}
.y268a_c00001{bottom:933.240450px;}
.y1e16_c00001{bottom:933.300000px;}
.y366a_c00001{bottom:933.420450px;}
.y13f0_c00001{bottom:933.420657px;}
.y237_c00001{bottom:933.510450px;}
.y478_c00001{bottom:933.600450px;}
.y1c0e_c00001{bottom:933.660000px;}
.y366c_c00001{bottom:933.690450px;}
.y33c0_c00001{bottom:933.780450px;}
.y2e50_c00001{bottom:933.840000px;}
.y3d5_c00001{bottom:933.870450px;}
.y26a9_c00001{bottom:934.050450px;}
.y273c_c00001{bottom:934.230450px;}
.yeef_c00001{bottom:934.320846px;}
.yefb_c00001{bottom:934.500846px;}
.y2488_c00001{bottom:934.680450px;}
.y1c4b_c00001{bottom:934.920000px;}
.y348b_c00001{bottom:934.950450px;}
.y7ee_c00001{bottom:935.040600px;}
.y30ed_c00001{bottom:935.100000px;}
.y176c_c00001{bottom:935.130450px;}
.y1353_c00001{bottom:935.135121px;}
.y33f9_c00001{bottom:935.220450px;}
.y1d8d_c00001{bottom:935.280000px;}
.y3870_c00001{bottom:935.309811px;}
.y3477_c00001{bottom:935.310450px;}
.y1956_c00001{bottom:935.400450px;}
.y1902_c00001{bottom:935.442000px;}
.y22f8_c00001{bottom:935.490450px;}
.y925_c00001{bottom:935.580450px;}
.y376_c00001{bottom:935.670450px;}
.y2aed_c00001{bottom:935.759937px;}
.yc0b_c00001{bottom:935.760450px;}
.y2f20_c00001{bottom:935.820000px;}
.yb38_c00001{bottom:935.850450px;}
.y1429_c00001{bottom:935.939568px;}
.y35fb_c00001{bottom:935.940000px;}
.y1362_c00001{bottom:935.942979px;}
.y1b3a_c00001{bottom:936.000000px;}
.y3927_c00001{bottom:936.030450px;}
.y310_c00001{bottom:936.120450px;}
.y3ab_c00001{bottom:936.210450px;}
.y241a_c00001{bottom:936.390450px;}
.y3434_c00001{bottom:936.570450px;}
.y1eb1_c00001{bottom:936.720000px;}
.y2374_c00001{bottom:936.840450px;}
.y27fc_c00001{bottom:936.930450px;}
.y1ee9_c00001{bottom:937.080000px;}
.y26bd_c00001{bottom:937.200450px;}
.y2c96_c00001{bottom:937.290279px;}
.y3689_c00001{bottom:937.380450px;}
.yf4c_c00001{bottom:937.470450px;}
.y149b_c00001{bottom:937.470738px;}
.y1c85_c00001{bottom:937.620000px;}
.y243e_c00001{bottom:937.650450px;}
.y19ba_c00001{bottom:938.160000px;}
.y3287_c00001{bottom:938.167920px;}
.y2b77_c00001{bottom:938.190450px;}
.yfe_c00001{bottom:938.370450px;}
.y15f2_c00001{bottom:938.370540px;}
.yf_c00001{bottom:938.460450px;}
.y1e1b_c00001{bottom:938.520000px;}
.y3707_c00001{bottom:938.730450px;}
.y692_c00001{bottom:938.820450px;}
.ydc8_c00001{bottom:938.910450px;}
.y2a25_c00001{bottom:939.090450px;}
.y2fea_c00001{bottom:939.240000px;}
.y2317_c00001{bottom:939.269496px;}
.y1686_c00001{bottom:939.270450px;}
.y214f_c00001{bottom:939.360450px;}
.y26f2_c00001{bottom:939.450450px;}
.y35fd_c00001{bottom:939.540600px;}
.y1398_c00001{bottom:939.632484px;}
.y1f96_c00001{bottom:939.635526px;}
.y36d8_c00001{bottom:939.720873px;}
.y3068_c00001{bottom:939.780000px;}
.y3641_c00001{bottom:939.810450px;}
.y322d_c00001{bottom:939.960000px;}
.y34f2_c00001{bottom:939.990450px;}
.y13f4_c00001{bottom:940.080000px;}
.yea0_c00001{bottom:940.080450px;}
.y39e3_c00001{bottom:940.170000px;}
.y1111_c00001{bottom:940.170450px;}
.y11cd_c00001{bottom:940.258740px;}
.y32fa_c00001{bottom:940.500000px;}
.y2d0_c00001{bottom:940.530450px;}
.y20b8_c00001{bottom:940.710450px;}
.y166f_c00001{bottom:940.800450px;}
.y2eed_c00001{bottom:940.860000px;}
.y1269_c00001{bottom:940.890450px;}
.y13e2_c00001{bottom:940.980450px;}
.y11d9_c00001{bottom:941.069748px;}
.y10a5_c00001{bottom:941.160666px;}
.y2a3c_c00001{bottom:941.249496px;}
.y2066_c00001{bottom:941.249568px;}
.y361e_c00001{bottom:941.250162px;}
.y118a_c00001{bottom:941.250450px;}
.y18d0_c00001{bottom:941.340450px;}
.y2cfe_c00001{bottom:941.697624px;}
.y24d5_c00001{bottom:941.699271px;}
.y25c4_c00001{bottom:941.700450px;}
.y49d_c00001{bottom:941.880450px;}
.y2c5f_c00001{bottom:941.970450px;}
.y20d5_c00001{bottom:942.057552px;}
.y26cd_c00001{bottom:942.059199px;}
.y36bd_c00001{bottom:942.150450px;}
.y18b3_c00001{bottom:942.240450px;}
.y1aed_c00001{bottom:942.300000px;}
.yfea_c00001{bottom:942.420450px;}
.y14e_c00001{bottom:942.600450px;}
.y30bb_c00001{bottom:942.660000px;}
.y1d08_c00001{bottom:942.840000px;}
.y38c6_c00001{bottom:943.140450px;}
.y1de2_c00001{bottom:943.200000px;}
.y28aa_c00001{bottom:943.230450px;}
.y28b_c00001{bottom:943.320450px;}
.y2555_c00001{bottom:943.410450px;}
.y968_c00001{bottom:943.500450px;}
.y2eb1_c00001{bottom:943.560000px;}
.y344f_c00001{bottom:943.590450px;}
.y27a0_c00001{bottom:943.680450px;}
.y3b_c00001{bottom:943.680549px;}
.y39e2_c00001{bottom:943.770450px;}
.y1506_c00001{bottom:943.861395px;}
.y1b86_c00001{bottom:943.920000px;}
.y376f_c00001{bottom:943.950450px;}
.y2f60_c00001{bottom:944.100000px;}
.y448_c00001{bottom:944.220450px;}
.y1f34_c00001{bottom:944.222556px;}
.y1a56_c00001{bottom:944.280000px;}
.y1f11_c00001{bottom:944.310450px;}
.y2506_c00001{bottom:944.398758px;}
.y355f_c00001{bottom:944.400450px;}
.y17ca_c00001{bottom:944.490450px;}
.y147c_c00001{bottom:944.580450px;}
.yee4_c00001{bottom:944.670639px;}
.y1080_c00001{bottom:944.850450px;}
.y18f3_c00001{bottom:945.118038px;}
.ye98_c00001{bottom:945.120450px;}
.y14e3_c00001{bottom:945.120540px;}
.y336d_c00001{bottom:945.180000px;}
.y16d2_c00001{bottom:945.210450px;}
.y3156_c00001{bottom:945.360000px;}
.y1430_c00001{bottom:945.388362px;}
.y14c2_c00001{bottom:945.390540px;}
.yd8_c00001{bottom:945.480450px;}
.y336e_c00001{bottom:945.540000px;}
.y2029_c00001{bottom:945.570450px;}
.y12c9_c00001{bottom:945.576138px;}
.y1eb9_c00001{bottom:945.720000px;}
.y3572_c00001{bottom:945.750450px;}
.y224b_c00001{bottom:945.840450px;}
.y3799_c00001{bottom:945.930450px;}
.y13e8_c00001{bottom:945.930630px;}
.y1a1_c00001{bottom:946.020450px;}
.ye4a_c00001{bottom:946.200450px;}
.y4fb_c00001{bottom:946.380450px;}
.y2267_c00001{bottom:946.469937px;}
.y2179_c00001{bottom:946.470450px;}
.y28e7_c00001{bottom:946.650450px;}
.y1249_c00001{bottom:946.651053px;}
.y954_c00001{bottom:946.651305px;}
.yfb9_c00001{bottom:946.740450px;}
.y32f5_c00001{bottom:946.800000px;}
.y2b1c_c00001{bottom:946.830009px;}
.y12d8_c00001{bottom:946.830900px;}
.ye23_c00001{bottom:946.831755px;}
.y29ce_c00001{bottom:946.920450px;}
.y1aef_c00001{bottom:946.980000px;}
.y3816_c00001{bottom:947.010450px;}
.y1928_c00001{bottom:947.160000px;}
.y2714_c00001{bottom:947.188362px;}
.y2098_c00001{bottom:947.189496px;}
.y270a_c00001{bottom:947.190009px;}
.ycb2_c00001{bottom:947.190450px;}
.y1583_c00001{bottom:947.280450px;}
.y30bc_c00001{bottom:947.340000px;}
.y1c0d_c00001{bottom:947.520000px;}
.ybe4_c00001{bottom:947.550450px;}
.y172d_c00001{bottom:947.640450px;}
.y1253_c00001{bottom:947.910150px;}
.y257b_c00001{bottom:947.910450px;}
.yc0a_c00001{bottom:948.000450px;}
.y3a09_c00001{bottom:948.000972px;}
.y35e4_c00001{bottom:948.089928px;}
.y398f_c00001{bottom:948.090450px;}
.y82f_c00001{bottom:948.090990px;}
.y10ac_c00001{bottom:948.090999px;}
.y2e7f_c00001{bottom:948.240000px;}
.y25a3_c00001{bottom:948.270450px;}
.y837_c00001{bottom:948.271350px;}
.y10b5_c00001{bottom:948.271359px;}
.ycda_c00001{bottom:948.360450px;}
.y1cc2_c00001{bottom:948.420000px;}
.y2a7f_c00001{bottom:948.450450px;}
.y260d_c00001{bottom:948.540600px;}
.y21ae_c00001{bottom:948.630450px;}
.ya9a_c00001{bottom:948.720450px;}
.y2dc1_c00001{bottom:948.780000px;}
.y5e8_c00001{bottom:948.900450px;}
.y386f_c00001{bottom:949.080099px;}
.ybb6_c00001{bottom:949.080450px;}
.y1a0b_c00001{bottom:949.140000px;}
.y1bd0_c00001{bottom:949.143060px;}
.y1378_c00001{bottom:949.170450px;}
.y9d5_c00001{bottom:949.260450px;}
.y2d4c_c00001{bottom:949.311000px;}
.y2ee3_c00001{bottom:949.320000px;}
.y85f_c00001{bottom:949.350450px;}
.y727_c00001{bottom:949.530450px;}
.y16f1_c00001{bottom:949.620450px;}
.y17ad_c00001{bottom:949.710450px;}
.yd0d_c00001{bottom:949.800450px;}
.y1aa1_c00001{bottom:949.860000px;}
.y35a5_c00001{bottom:950.070450px;}
.y2a9a_c00001{bottom:950.250450px;}
.y321f_c00001{bottom:950.253735px;}
.y2cd2_c00001{bottom:950.339199px;}
.yab_c00001{bottom:950.430450px;}
.y39c9_c00001{bottom:950.610450px;}
.yc57_c00001{bottom:950.700450px;}
.y13ef_c00001{bottom:950.700648px;}
.y331b_c00001{bottom:950.760000px;}
.y3394_c00001{bottom:950.790450px;}
.y358d_c00001{bottom:950.879406px;}
.y1980_c00001{bottom:950.940000px;}
.y174d_c00001{bottom:951.060450px;}
.y1aee_c00001{bottom:951.120000px;}
.y169f_c00001{bottom:951.150450px;}
.y228d_c00001{bottom:951.240450px;}
.y2bc8_c00001{bottom:951.330450px;}
.y2626_c00001{bottom:951.510450px;}
.yeee_c00001{bottom:951.510657px;}
.yeeb_c00001{bottom:951.510792px;}
.y1786_c00001{bottom:951.600450px;}
.y8b1_c00001{bottom:951.690450px;}
.yefa_c00001{bottom:951.690657px;}
.y2206_c00001{bottom:951.780450px;}
.y1b36_c00001{bottom:952.020000px;}
.y239d_c00001{bottom:952.050450px;}
.y12e1_c00001{bottom:952.140450px;}
.y236_c00001{bottom:952.230450px;}
.y7ed_c00001{bottom:952.320450px;}
.y294f_c00001{bottom:952.410009px;}
.y5d_c00001{bottom:952.410450px;}
.yeae_c00001{bottom:952.590450px;}
.y2d6d_c00001{bottom:952.740000px;}
.y2c3b_c00001{bottom:952.770450px;}
.y1fd3_c00001{bottom:952.860450px;}
.y592_c00001{bottom:952.950450px;}
.y3975_c00001{bottom:953.040600px;}
.y29a7_c00001{bottom:953.400450px;}
.y2fe9_c00001{bottom:953.460000px;}
.y2651_c00001{bottom:953.580450px;}
.y19b9_c00001{bottom:953.640000px;}
.y3669_c00001{bottom:953.670000px;}
.y623_c00001{bottom:953.670450px;}
.y24a2_c00001{bottom:953.760450px;}
.y1ee0_c00001{bottom:953.820000px;}
.y2fa_c00001{bottom:953.850450px;}
.y2bc9_c00001{bottom:954.120450px;}
.y233d_c00001{bottom:954.210450px;}
.y477_c00001{bottom:954.300450px;}
.y1ee8_c00001{bottom:954.360000px;}
.y2eec_c00001{bottom:954.540000px;}
.y260_c00001{bottom:954.570450px;}
.y375_c00001{bottom:954.660450px;}
.y31a2_c00001{bottom:954.720000px;}
.y2689_c00001{bottom:954.750450px;}
.y2d25_c00001{bottom:954.750684px;}
.y2008_c00001{bottom:954.840450px;}
.y1fa2_c00001{bottom:954.930450px;}
.y1fbe_c00001{bottom:955.020450px;}
.y1e51_c00001{bottom:955.080000px;}
.ya33_c00001{bottom:955.200450px;}
.y1e1f_c00001{bottom:955.260000px;}
.y924_c00001{bottom:955.290600px;}
.y13f3_c00001{bottom:955.560450px;}
.y36d7_c00001{bottom:955.650549px;}
.y17f1_c00001{bottom:955.830450px;}
.y3aa_c00001{bottom:955.920450px;}
.y1a4f_c00001{bottom:955.980000px;}
.y22a9_c00001{bottom:956.010450px;}
.y1819_c00001{bottom:956.190450px;}
.y3424_c00001{bottom:956.280450px;}
.y25f0_c00001{bottom:956.370450px;}
.yf4b_c00001{bottom:956.460450px;}
.y21e3_c00001{bottom:956.550450px;}
.y1b38_c00001{bottom:956.700000px;}
.y30f_c00001{bottom:956.820450px;}
.y23ea_c00001{bottom:956.910450px;}
.y3286_c00001{bottom:957.062880px;}
.y1a0c_c00001{bottom:957.240000px;}
.yb37_c00001{bottom:957.270450px;}
.y212b_c00001{bottom:957.360450px;}
.y15f1_c00001{bottom:957.361125px;}
.y3409_c00001{bottom:957.540000px;}
.y27fb_c00001{bottom:957.540600px;}
.y2aee_c00001{bottom:957.630450px;}
.y1428_c00001{bottom:957.719496px;}
.yc09_c00001{bottom:957.900450px;}
.y1c83_c00001{bottom:957.960000px;}
.y2193_c00001{bottom:957.990450px;}
.y1cc4_c00001{bottom:958.140000px;}
.ye_c00001{bottom:958.260450px;}
.y829_c00001{bottom:958.440648px;}
.y10a4_c00001{bottom:958.440657px;}
.y3926_c00001{bottom:958.620450px;}
.y1354_c00001{bottom:958.625508px;}
.y2e4e_c00001{bottom:958.680000px;}
.y31a3_c00001{bottom:958.860000px;}
.y176b_c00001{bottom:958.980450px;}
.y1d54_c00001{bottom:959.040000px;}
.yc3b_c00001{bottom:959.070450px;}
.y1110_c00001{bottom:959.160450px;}
.y27b3_c00001{bottom:959.250450px;}
.y149a_c00001{bottom:959.250666px;}
.y33f8_c00001{bottom:959.339937px;}
.y288f_c00001{bottom:959.340450px;}
.y3130_c00001{bottom:959.400000px;}
.y1363_c00001{bottom:959.433366px;}
.y3a_c00001{bottom:959.520450px;}
.y21d_c00001{bottom:959.610450px;}
.y3688_c00001{bottom:959.610798px;}
.yd60_c00001{bottom:959.790600px;}
.y1f95_c00001{bottom:959.794806px;}
.yfd_c00001{bottom:959.880450px;}
.y1b88_c00001{bottom:959.940000px;}
.y3945_c00001{bottom:959.969586px;}
.y36f2_c00001{bottom:959.970450px;}
.y1189_c00001{bottom:960.240450px;}
.y1d05_c00001{bottom:960.300000px;}
.y279f_c00001{bottom:960.330450px;}
.y2223_c00001{bottom:960.420450px;}
.y322c_c00001{bottom:960.660000px;}
.y2b76_c00001{bottom:960.780450px;}
.y1b37_c00001{bottom:960.840000px;}
.y2df2_c00001{bottom:960.850080px;}
.y797_c00001{bottom:960.870450px;}
.y3464_c00001{bottom:961.050450px;}
.y2316_c00001{bottom:961.140009px;}
.y3844_c00001{bottom:961.140450px;}
.y1e8b_c00001{bottom:961.200000px;}
.y2cf_c00001{bottom:961.230450px;}
.yfe9_c00001{bottom:961.320450px;}
.y161a_c00001{bottom:961.500450px;}
.y4fa_c00001{bottom:961.590450px;}
.y13e1_c00001{bottom:961.680450px;}
.y1c0c_c00001{bottom:961.740000px;}
.yee3_c00001{bottom:961.860450px;}
.y1894_c00001{bottom:962.040450px;}
.y1b87_c00001{bottom:962.280000px;}
.y14d_c00001{bottom:962.310450px;}
.y197e_c00001{bottom:962.640000px;}
.y404_c00001{bottom:962.760450px;}
.y303e_c00001{bottom:962.820000px;}
.y20ff_c00001{bottom:962.850450px;}
.y1505_c00001{bottom:962.851305px;}
.y386e_c00001{bottom:962.940162px;}
.y1bcf_c00001{bottom:963.000000px;}
.y2028_c00001{bottom:963.120009px;}
.y2065_c00001{bottom:963.120081px;}
.y49c_c00001{bottom:963.300450px;}
.y2e4f_c00001{bottom:963.360000px;}
.y34f1_c00001{bottom:963.389928px;}
.y2cfd_c00001{bottom:963.477552px;}
.y24d4_c00001{bottom:963.479199px;}
.y398e_c00001{bottom:963.480450px;}
.y2932_c00001{bottom:963.750450px;}
.y20d4_c00001{bottom:963.837480px;}
.y26cc_c00001{bottom:963.839127px;}
.y3a08_c00001{bottom:963.840873px;}
.y447_c00001{bottom:964.020450px;}
.y2fe8_c00001{bottom:964.080000px;}
.y120f_c00001{bottom:964.110450px;}
.y82_c00001{bottom:964.200450px;}
.y2eb0_c00001{bottom:964.260000px;}
.y14c1_c00001{bottom:964.380063px;}
.y3520_c00001{bottom:964.560450px;}
.y2fc6_c00001{bottom:964.620000px;}
.y1d0_c00001{bottom:964.920450px;}
.y13e7_c00001{bottom:964.920540px;}
.y28a_c00001{bottom:965.010450px;}
.yc56_c00001{bottom:965.100450px;}
.y142f_c00001{bottom:965.188884px;}
.y18cf_c00001{bottom:965.190450px;}
.y36be_c00001{bottom:965.370450px;}
.y82e_c00001{bottom:965.370981px;}
.y10ab_c00001{bottom:965.370990px;}
.y147b_c00001{bottom:965.460450px;}
.y3066_c00001{bottom:965.520000px;}
.y2c1e_c00001{bottom:965.550450px;}
.y953_c00001{bottom:965.550630px;}
.y836_c00001{bottom:965.551341px;}
.y10b4_c00001{bottom:965.551350px;}
.y1a0_c00001{bottom:965.640450px;}
.y28a9_c00001{bottom:965.730450px;}
.y349e_c00001{bottom:965.820450px;}
.y25c3_c00001{bottom:965.820522px;}
.ye22_c00001{bottom:965.821665px;}
.y18b2_c00001{bottom:966.000450px;}
.y1c4a_c00001{bottom:966.060000px;}
.y2505_c00001{bottom:966.178686px;}
.yd7_c00001{bottom:966.180450px;}
.y1e1a_c00001{bottom:966.240000px;}
.y2a7e_c00001{bottom:966.270450px;}
.y31cc_c00001{bottom:966.420000px;}
.ybe3_c00001{bottom:966.540600px;}
.y2d97_c00001{bottom:966.600000px;}
.y35a4_c00001{bottom:966.630450px;}
.y39e1_c00001{bottom:966.810450px;}
.y18f2_c00001{bottom:966.988551px;}
.y22e4_c00001{bottom:967.080450px;}
.y1582_c00001{bottom:967.080540px;}
.y23be_c00001{bottom:967.081071px;}
.ycd9_c00001{bottom:967.260450px;}
.y1685_c00001{bottom:967.260729px;}
.y1927_c00001{bottom:967.320000px;}
.y3640_c00001{bottom:967.350450px;}
.y257a_c00001{bottom:967.440450px;}
.y30b9_c00001{bottom:967.500000px;}
.y22bf_c00001{bottom:967.530450px;}
.y38ad_c00001{bottom:967.620450px;}
.y303f_c00001{bottom:967.680000px;}
.y3815_c00001{bottom:967.710450px;}
.y1558_c00001{bottom:967.800243px;}
.y3246_c00001{bottom:967.860000px;}
.y13ee_c00001{bottom:967.890459px;}
.y204c_c00001{bottom:967.890972px;}
.y2ac6_c00001{bottom:967.980450px;}
.y1d87_c00001{bottom:968.050080px;}
.yb63_c00001{bottom:968.070450px;}
.y21ad_c00001{bottom:968.160450px;}
.y17c9_c00001{bottom:968.250450px;}
.yd36_c00001{bottom:968.340450px;}
.y1f33_c00001{bottom:968.342250px;}
.y1e52_c00001{bottom:968.400000px;}
.y3974_c00001{bottom:968.610450px;}
.yd0c_c00001{bottom:968.700450px;}
.y2b1b_c00001{bottom:968.700522px;}
.y1a51_c00001{bottom:968.760000px;}
.y37e6_c00001{bottom:968.790600px;}
.yeed_c00001{bottom:968.790648px;}
.yeea_c00001{bottom:968.790783px;}
.y16d1_c00001{bottom:968.970450px;}
.yef9_c00001{bottom:968.970648px;}
.y2713_c00001{bottom:969.058875px;}
.y2097_c00001{bottom:969.060009px;}
.y385a_c00001{bottom:969.060450px;}
.y2709_c00001{bottom:969.060522px;}
.y2f5f_c00001{bottom:969.120000px;}
.y2178_c00001{bottom:969.150450px;}
.yfb8_c00001{bottom:969.420450px;}
.y7ec_c00001{bottom:969.510450px;}
.y2ee2_c00001{bottom:969.660000px;}
.y425_c00001{bottom:969.690450px;}
.y2266_c00001{bottom:969.780450px;}
.y726_c00001{bottom:969.870450px;}
.y1fed_c00001{bottom:969.960450px;}
.y1901_c00001{bottom:970.011000px;}
.y1a52_c00001{bottom:970.020000px;}
.y25a2_c00001{bottom:970.050450px;}
.ya99_c00001{bottom:970.140450px;}
.y361d_c00001{bottom:970.230450px;}
.y2eeb_c00001{bottom:970.380000px;}
.y214e_c00001{bottom:970.410450px;}
.y37fc_c00001{bottom:970.500450px;}
.y1a55_c00001{bottom:970.560000px;}
.y358c_c00001{bottom:970.679928px;}
.y85e_c00001{bottom:970.770450px;}
.y13f2_c00001{bottom:971.130000px;}
.ye9f_c00001{bottom:971.130450px;}
.y2413_c00001{bottom:971.400450px;}
.y1ee7_c00001{bottom:971.460000px;}
.y353c_c00001{bottom:971.490450px;}
.y166e_c00001{bottom:971.580450px;}
.y3067_c00001{bottom:971.640000px;}
.y9ef_c00001{bottom:971.850450px;}
.y2467_c00001{bottom:971.940450px;}
.y2cd1_c00001{bottom:972.119127px;}
.y2419_c00001{bottom:972.120450px;}
.y30ba_c00001{bottom:972.180000px;}
.y2d98_c00001{bottom:972.360000px;}
.y34dc_c00001{bottom:972.390450px;}
.y1c0b_c00001{bottom:972.540000px;}
.yab1_c00001{bottom:972.570450px;}
.yf8b_c00001{bottom:972.660450px;}
.y3506_c00001{bottom:973.020450px;}
.ya32_c00001{bottom:973.110450px;}
.y25ef_c00001{bottom:973.290600px;}
.y188d_c00001{bottom:973.380450px;}
.y2e7e_c00001{bottom:973.447020px;}
.y16f0_c00001{bottom:973.470450px;}
.y374_c00001{bottom:973.560450px;}
.y235_c00001{bottom:973.650450px;}
.y3944_c00001{bottom:973.739874px;}
.y1e1e_c00001{bottom:973.800000px;}
.y1d04_c00001{bottom:973.980000px;}
.y3423_c00001{bottom:974.100450px;}
.ya31_c00001{bottom:974.190450px;}
.y923_c00001{bottom:974.280450px;}
.y294e_c00001{bottom:974.280522px;}
.y19b8_c00001{bottom:974.340000px;}
.y14c_c00001{bottom:974.370450px;}
.y3174_c00001{bottom:974.520000px;}
.y967_c00001{bottom:974.550450px;}
.y239c_c00001{bottom:974.640450px;}
.y1a9b_c00001{bottom:974.700000px;}
.y2df1_c00001{bottom:974.707020px;}
.y27b2_c00001{bottom:974.820450px;}
.y2007_c00001{bottom:974.910450px;}
.y476_c00001{bottom:975.000450px;}
.y32f3_c00001{bottom:975.060000px;}
.y38c7_c00001{bottom:975.090450px;}
.y331a_c00001{bottom:975.240000px;}
.yadf_c00001{bottom:975.270450px;}
.y11f5_c00001{bottom:975.360450px;}
.y1785_c00001{bottom:975.450450px;}
.y3687_c00001{bottom:975.450699px;}
.y1164_c00001{bottom:975.540600px;}
.y3a9_c00001{bottom:975.630450px;}
.yf4a_c00001{bottom:975.720450px;}
.y828_c00001{bottom:975.720639px;}
.y10a3_c00001{bottom:975.720648px;}
.y3476_c00001{bottom:975.810450px;}
.y107f_c00001{bottom:975.900450px;}
.y3285_c00001{bottom:976.140000px;}
.y279e_c00001{bottom:976.170450px;}
.y15f0_c00001{bottom:976.260450px;}
.y2688_c00001{bottom:976.350450px;}
.y1fd2_c00001{bottom:976.440450px;}
.y7ca_c00001{bottom:976.530450px;}
.y1861_c00001{bottom:976.620450px;}
.y24a1_c00001{bottom:976.710450px;}
.y26a8_c00001{bottom:976.800450px;}
.y1b34_c00001{bottom:976.860000px;}
.yc08_c00001{bottom:976.890450px;}
.y2f98_c00001{bottom:977.047020px;}
.ye49_c00001{bottom:977.250450px;}
.y27fa_c00001{bottom:977.340450px;}
.y1a05_c00001{bottom:977.400000px;}
.y233c_c00001{bottom:977.430450px;}
.y1fbd_c00001{bottom:977.519937px;}
.y30e_c00001{bottom:977.520450px;}
.y28f6_c00001{bottom:977.700450px;}
.y21e2_c00001{bottom:977.790600px;}
.y19f_c00001{bottom:977.880450px;}
.y3925_c00001{bottom:977.970450px;}
.yd_c00001{bottom:978.060450px;}
.y30ec_c00001{bottom:978.120000px;}
.y110f_c00001{bottom:978.150450px;}
.y39b1_c00001{bottom:978.240450px;}
.y1bce_c00001{bottom:978.300000px;}
.y1cc1_c00001{bottom:978.480000px;}
.y22a8_c00001{bottom:978.600450px;}
.yb36_c00001{bottom:978.780450px;}
.y39df_c00001{bottom:978.870000px;}
.y103f_c00001{bottom:978.870450px;}
.y28e6_c00001{bottom:978.960450px;}
.y1188_c00001{bottom:979.230450px;}
.y273b_c00001{bottom:979.320450px;}
.y3115_c00001{bottom:979.380000px;}
.y1427_c00001{bottom:979.590009px;}
.y4f9_c00001{bottom:979.590450px;}
.y17f0_c00001{bottom:979.680450px;}
.y3a07_c00001{bottom:979.680774px;}
.yee2_c00001{bottom:979.770450px;}
.y2373_c00001{bottom:979.860450px;}
.y129_c00001{bottom:979.950450px;}
.y1f94_c00001{bottom:979.954086px;}
.y1818_c00001{bottom:980.040450px;}
.y38ac_c00001{bottom:980.040600px;}
.yfc_c00001{bottom:980.220450px;}
.y1eb8_c00001{bottom:980.280000px;}
.y2e23_c00001{bottom:980.287020px;}
.y75e_c00001{bottom:980.310450px;}
.y2a24_c00001{bottom:980.490450px;}
.yc3a_c00001{bottom:980.580450px;}
.y32a8_c00001{bottom:980.640000px;}
.y26bc_c00001{bottom:980.850450px;}
.y1499_c00001{bottom:981.030594px;}
.y377d_c00001{bottom:981.120450px;}
.y32cb_c00001{bottom:981.180000px;}
.yd5f_c00001{bottom:981.210450px;}
.y243d_c00001{bottom:981.300450px;}
.y2c1d_c00001{bottom:981.390450px;}
.yaa_c00001{bottom:981.480450px;}
.y212a_c00001{bottom:981.480522px;}
.y1b35_c00001{bottom:981.540000px;}
.y28d9_c00001{bottom:981.570450px;}
.y37b2_c00001{bottom:981.750450px;}
.y3393_c00001{bottom:981.840450px;}
.y1504_c00001{bottom:981.841215px;}
.y1d86_c00001{bottom:981.907020px;}
.y2ce_c00001{bottom:981.930450px;}
.y2444_c00001{bottom:982.020450px;}
.y169e_c00001{bottom:982.200450px;}
.yc55_c00001{bottom:982.380450px;}
.y39e0_c00001{bottom:982.470450px;}
.y35a3_c00001{bottom:982.560450px;}
.y82d_c00001{bottom:982.560792px;}
.y10aa_c00001{bottom:982.560801px;}
.y1b80_c00001{bottom:982.620000px;}
.y176a_c00001{bottom:982.740450px;}
.y835_c00001{bottom:982.741152px;}
.y10b3_c00001{bottom:982.741161px;}
.y1c81_c00001{bottom:982.800000px;}
.y2315_c00001{bottom:982.919937px;}
.y35e3_c00001{bottom:982.920450px;}
.y23bd_c00001{bottom:982.920972px;}
.y14c0_c00001{bottom:983.190450px;}
.y5c_c00001{bottom:983.460450px;}
.y2e4c_c00001{bottom:983.520000px;}
.y2eaf_c00001{bottom:983.700000px;}
.y36f1_c00001{bottom:983.730450px;}
.y2c3a_c00001{bottom:983.820450px;}
.y204b_c00001{bottom:983.820648px;}
.y2fc5_c00001{bottom:983.880000px;}
.y13e6_c00001{bottom:983.910450px;}
.y3154_c00001{bottom:984.060000px;}
.y20fe_c00001{bottom:984.090450px;}
.y2b8f_c00001{bottom:984.180450px;}
.y144a_c00001{bottom:984.270450px;}
.y2b20_c00001{bottom:984.539721px;}
.y2222_c00001{bottom:984.540522px;}
.y952_c00001{bottom:984.540540px;}
.y398d_c00001{bottom:984.540600px;}
.y31a0_c00001{bottom:984.600000px;}
.y591_c00001{bottom:984.720450px;}
.y9a8_c00001{bottom:984.810450px;}
.ye21_c00001{bottom:984.811575px;}
.y2027_c00001{bottom:984.899937px;}
.y2064_c00001{bottom:984.900009px;}
.y39_c00001{bottom:984.900450px;}
.y142e_c00001{bottom:985.079586px;}
.y2081_c00001{bottom:985.080450px;}
.y322b_c00001{bottom:985.140000px;}
.ycb1_c00001{bottom:985.170450px;}
.y2cfc_c00001{bottom:985.257480px;}
.y24d3_c00001{bottom:985.259127px;}
.y13a3_c00001{bottom:985.260450px;}
.y3017_c00001{bottom:985.320000px;}
.y3798_c00001{bottom:985.350450px;}
.y3116_c00001{bottom:985.500000px;}
.ybe2_c00001{bottom:985.530450px;}
.ybb5_c00001{bottom:985.620450px;}
.y1a09_c00001{bottom:985.680000px;}
.y20d3_c00001{bottom:985.707993px;}
.y21ac_c00001{bottom:985.709640px;}
.y1893_c00001{bottom:985.890450px;}
.y1fa1_c00001{bottom:985.980450px;}
.y796_c00001{bottom:986.070450px;}
.yeec_c00001{bottom:986.070639px;}
.yee9_c00001{bottom:986.070774px;}
.ycd8_c00001{bottom:986.250450px;}
.yef8_c00001{bottom:986.250639px;}
.y2931_c00001{bottom:986.340450px;}
.y3131_c00001{bottom:986.400000px;}
.y147a_c00001{bottom:986.430450px;}
.y13f1_c00001{bottom:986.610450px;}
.y1c0a_c00001{bottom:986.760000px;}
.y1557_c00001{bottom:986.790153px;}
.y7eb_c00001{bottom:986.790600px;}
.yd6_c00001{bottom:986.880450px;}
.y1ae9_c00001{bottom:986.940000px;}
.y11da_c00001{bottom:986.970450px;}
.y12da_c00001{bottom:987.060450px;}
.y2e7d_c00001{bottom:987.123060px;}
.y2838_c00001{bottom:987.240450px;}
.yd35_c00001{bottom:987.330450px;}
.y1c82_c00001{bottom:987.480000px;}
.y3943_c00001{bottom:987.510162px;}
.y25c2_c00001{bottom:987.600450px;}
.yd0b_c00001{bottom:987.690450px;}
.y1684_c00001{bottom:987.960450px;}
.y2504_c00001{bottom:988.049199px;}
.y355e_c00001{bottom:988.050450px;}
.y38c5_c00001{bottom:988.140450px;}
.yf8a_c00001{bottom:988.140900px;}
.y361c_c00001{bottom:988.230450px;}
.y28a8_c00001{bottom:988.320450px;}
.y2e4d_c00001{bottom:988.380000px;}
.y2df0_c00001{bottom:988.383060px;}
.y321e_c00001{bottom:988.413078px;}
.y2554_c00001{bottom:988.500450px;}
.y1e4d_c00001{bottom:988.560000px;}
.y344e_c00001{bottom:988.680450px;}
.y1ee6_c00001{bottom:988.740000px;}
.y18f1_c00001{bottom:988.768479px;}
.y1de1_c00001{bottom:988.920000px;}
.y18ce_c00001{bottom:988.950450px;}
.y172c_c00001{bottom:989.040450px;}
.y22be_c00001{bottom:989.040600px;}
.y3264_c00001{bottom:989.094420px;}
.y1aec_c00001{bottom:989.100000px;}
.y14e2_c00001{bottom:989.220450px;}
.y2d24_c00001{bottom:989.222178px;}
.y2ee1_c00001{bottom:989.280000px;}
.y39ca_c00001{bottom:989.310450px;}
.y1f73_c00001{bottom:989.312088px;}
.y2a99_c00001{bottom:989.400000px;}
.y20b7_c00001{bottom:989.670450px;}
.y18b1_c00001{bottom:989.850450px;}
.y2418_c00001{bottom:989.940450px;}
.y36d6_c00001{bottom:990.030450px;}
.y10c8_c00001{bottom:990.120450px;}
.y1d53_c00001{bottom:990.180000px;}
.y2ac5_c00001{bottom:990.480450px;}
.y3089_c00001{bottom:990.540000px;}
.y446_c00001{bottom:990.660450px;}
.y2f97_c00001{bottom:990.723060px;}
.y38e3_c00001{bottom:990.750450px;}
.y2712_c00001{bottom:990.838803px;}
.y2096_c00001{bottom:990.839937px;}
.y85d_c00001{bottom:990.840450px;}
.y228c_c00001{bottom:990.930450px;}
.y1013_c00001{bottom:991.110450px;}
.y279d_c00001{bottom:991.200450px;}
.y25ee_c00001{bottom:991.290450px;}
.y3686_c00001{bottom:991.290600px;}
.ya98_c00001{bottom:991.560450px;}
.y214d_c00001{bottom:991.650450px;}
.y3973_c00001{bottom:991.740450px;}
.y3814_c00001{bottom:991.830009px;}
.y3422_c00001{bottom:991.920450px;}
.y164e_c00001{bottom:992.280450px;}
.y31a1_c00001{bottom:992.340000px;}
.y1f32_c00001{bottom:992.461944px;}
.y30b7_c00001{bottom:992.520000px;}
.y1619_c00001{bottom:992.550450px;}
.y16d0_c00001{bottom:992.730450px;}
.y827_c00001{bottom:992.910450px;}
.y10a2_c00001{bottom:992.910459px;}
.y373_c00001{bottom:993.000450px;}
.y2a64_c00001{bottom:993.180450px;}
.y1e19_c00001{bottom:993.240000px;}
.y9ee_c00001{bottom:993.270450px;}
.y403_c00001{bottom:993.810450px;}
.y3924_c00001{bottom:993.900450px;}
.y2f5e_c00001{bottom:993.960000px;}
.y2cd0_c00001{bottom:993.989640px;}
.y922_c00001{bottom:993.990450px;}
.y353b_c00001{bottom:994.080450px;}
.y2e22_c00001{bottom:994.143960px;}
.y27b1_c00001{bottom:994.170648px;}
.y3408_c00001{bottom:994.350450px;}
.y2a0d_c00001{bottom:994.440450px;}
.yf49_c00001{bottom:994.710450px;}
.y1a99_c00001{bottom:994.860000px;}
.y33a9_c00001{bottom:994.890450px;}
.y12e0_c00001{bottom:994.980450px;}
.yfb_c00001{bottom:995.070450px;}
.y1120_c00001{bottom:995.160450px;}
.y31cd_c00001{bottom:995.220000px;}
.y81_c00001{bottom:995.250450px;}
.y3a8_c00001{bottom:995.340450px;}
.y2006_c00001{bottom:995.430450px;}
.y3433_c00001{bottom:995.520450px;}
.y1de0_c00001{bottom:995.580000px;}
.y3505_c00001{bottom:995.610450px;}
.y475_c00001{bottom:995.700450px;}
.y19b7_c00001{bottom:995.760000px;}
.y1d85_c00001{bottom:995.763960px;}
.y386d_c00001{bottom:995.790600px;}
.yc07_c00001{bottom:995.880450px;}
.y2f1f_c00001{bottom:995.940000px;}
.ydef_c00001{bottom:995.970450px;}
.y14b_c00001{bottom:996.060450px;}
.y15ee_c00001{bottom:996.061395px;}
.y1a49_c00001{bottom:996.300000px;}
.y2487_c00001{bottom:996.510450px;}
.y22a7_c00001{bottom:996.600450px;}
.yade_c00001{bottom:996.780450px;}
.y35fa_c00001{bottom:996.871044px;}
.y1c49_c00001{bottom:997.020000px;}
.y33bf_c00001{bottom:997.050450px;}
.y110e_c00001{bottom:997.140450px;}
.y30b8_c00001{bottom:997.200000px;}
.y16ef_c00001{bottom:997.230450px;}
.y1860_c00001{bottom:997.320450px;}
.y1eb7_c00001{bottom:997.380000px;}
.y294d_c00001{bottom:997.500450px;}
.y1c09_c00001{bottom:997.560000px;}
.y4f8_c00001{bottom:997.590450px;}
.y103e_c00001{bottom:997.770450px;}
.y39b0_c00001{bottom:997.950450px;}
.y39af_c00001{bottom:998.040600px;}
.y30d_c00001{bottom:998.220450px;}
.y2d6c_c00001{bottom:998.271360px;}
.y35c5_c00001{bottom:998.310450px;}
.y3475_c00001{bottom:998.400450px;}
.y2bc7_c00001{bottom:998.490450px;}
.y1b85_c00001{bottom:998.640000px;}
.y2913_c00001{bottom:998.670450px;}
.y23e9_c00001{bottom:998.760450px;}
.y23bc_c00001{bottom:998.760873px;}
.y2eae_c00001{bottom:998.820000px;}
.y34b3_c00001{bottom:998.850450px;}
.y1bcd_c00001{bottom:999.000000px;}
.y2192_c00001{bottom:999.120450px;}
.y2fc4_c00001{bottom:999.180000px;}
.y1784_c00001{bottom:999.210450px;}
.yfe8_c00001{bottom:999.300450px;}
.y1fbc_c00001{bottom:999.390450px;}
.y1a9a_c00001{bottom:999.540000px;}
.yb35_c00001{bottom:999.570450px;}
.y166d_c00001{bottom:999.570729px;}
.y204a_c00001{bottom:999.660549px;}
.y32a7_c00001{bottom:999.720000px;}
.y82c_c00001{bottom:999.840783px;}
.y10a9_c00001{bottom:999.840792px;}
.y2443_c00001{bottom:999.930450px;}
.y834_c00001{bottom:1000.021143px;}
.y10b2_c00001{bottom:1000.021152px;}
.y1f93_c00001{bottom:1000.113366px;}
.y1955_c00001{bottom:1000.290450px;}
.yc39_c00001{bottom:1000.470450px;}
.y1163_c00001{bottom:1000.740450px;}
.y8b0_c00001{bottom:1000.740729px;}
.y1503_c00001{bottom:1000.831125px;}
.y691_c00001{bottom:1000.920450px;}
.y1aeb_c00001{bottom:1000.980000px;}
.yb4e_c00001{bottom:1001.010450px;}
.y2780_c00001{bottom:1001.010774px;}
.y1fd1_c00001{bottom:1001.190450px;}
.y3942_c00001{bottom:1001.280450px;}
.y1426_c00001{bottom:1001.369937px;}
.y35e2_c00001{bottom:1001.370450px;}
.yc_c00001{bottom:1001.730450px;}
.y1b33_c00001{bottom:1001.880000px;}
.y197d_c00001{bottom:1002.060000px;}
.ya30_c00001{bottom:1002.090450px;}
.yb62_c00001{bottom:1002.180450px;}
.y2def_c00001{bottom:1002.240000px;}
.y21e1_c00001{bottom:1002.450450px;}
.y13e0_c00001{bottom:1002.540450px;}
.y2cd_c00001{bottom:1002.630450px;}
.y27b0_c00001{bottom:1002.810450px;}
.y1498_c00001{bottom:1002.901107px;}
.y1e1d_c00001{bottom:1002.960000px;}
.y1364_c00001{bottom:1002.990450px;}
.y3907_c00001{bottom:1003.080450px;}
.y2177_c00001{bottom:1003.170450px;}
.ybdf_c00001{bottom:1003.260450px;}
.yee8_c00001{bottom:1003.260585px;}
.y14bf_c00001{bottom:1003.350450px;}
.yef7_c00001{bottom:1003.440450px;}
.y375a_c00001{bottom:1003.530450px;}
.y260c_c00001{bottom:1003.620450px;}
.yf89_c00001{bottom:1003.710450px;}
.ye20_c00001{bottom:1003.710900px;}
.ybe1_c00001{bottom:1003.800450px;}
.y37d8_c00001{bottom:1003.980450px;}
.y7ea_c00001{bottom:1004.070450px;}
.y1449_c00001{bottom:1004.160450px;}
.y3153_c00001{bottom:1004.220000px;}
.y37b1_c00001{bottom:1004.250450px;}
.y13a2_c00001{bottom:1004.340450px;}
.y2f96_c00001{bottom:1004.580000px;}
.y142b_c00001{bottom:1004.699748px;}
.yead_c00001{bottom:1004.700450px;}
.y231c_c00001{bottom:1004.790450px;}
.y142d_c00001{bottom:1004.880108px;}
.y1581_c00001{bottom:1004.970450px;}
.ybde_c00001{bottom:1005.150450px;}
.ycd7_c00001{bottom:1005.240450px;}
.y2b8c_c00001{bottom:1005.420450px;}
.y39de_c00001{bottom:1005.510450px;}
.y35f9_c00001{bottom:1005.510846px;}
.y945_c00001{bottom:1005.600450px;}
.y3088_c00001{bottom:1005.660000px;}
.y1556_c00001{bottom:1005.780063px;}
.y1a00_c00001{bottom:1005.840000px;}
.y1ee5_c00001{bottom:1006.020000px;}
.y2314_c00001{bottom:1006.230450px;}
.y2b1f_c00001{bottom:1006.319649px;}
.yd34_c00001{bottom:1006.320450px;}
.y3263_c00001{bottom:1006.380000px;}
.y1cc0_c00001{bottom:1006.383960px;}
.y349d_c00001{bottom:1006.410450px;}
.y1769_c00001{bottom:1006.590450px;}
.y20fd_c00001{bottom:1006.590549px;}
.yd0a_c00001{bottom:1006.680450px;}
.y202a_c00001{bottom:1006.770450px;}
.y2063_c00001{bottom:1006.770522px;}
.y2264_c00001{bottom:1006.770594px;}
.y107e_c00001{bottom:1006.950450px;}
.y36bc_c00001{bottom:1007.040450px;}
.y2cfb_c00001{bottom:1007.127993px;}
.y24d2_c00001{bottom:1007.129640px;}
.y2a63_c00001{bottom:1007.130450px;}
.y1479_c00001{bottom:1007.310450px;}
.y32f2_c00001{bottom:1007.460000px;}
.y20d2_c00001{bottom:1007.487921px;}
.y20cd_c00001{bottom:1007.489568px;}
.yd5_c00001{bottom:1007.580450px;}
.y1c7f_c00001{bottom:1007.640000px;}
.ybb4_c00001{bottom:1007.670450px;}
.y2e21_c00001{bottom:1007.820000px;}
.y2417_c00001{bottom:1007.850450px;}
.y2026_c00001{bottom:1008.210450px;}
.ye48_c00001{bottom:1008.300450px;}
.y363f_c00001{bottom:1008.750450px;}
.y2080_c00001{bottom:1008.840450px;}
.y3284_c00001{bottom:1008.918000px;}
.y2930_c00001{bottom:1008.930450px;}
.y1a4b_c00001{bottom:1009.080000px;}
.y27f9_c00001{bottom:1009.110450px;}
.y3354_c00001{bottom:1009.260000px;}
.y1d84_c00001{bottom:1009.440000px;}
.y252e_c00001{bottom:1009.740189px;}
.y172b_c00001{bottom:1009.740450px;}
.y2503_c00001{bottom:1009.829127px;}
.y344d_c00001{bottom:1009.830450px;}
.y28f5_c00001{bottom:1010.010450px;}
.y1e50_c00001{bottom:1010.160000px;}
.y10a1_c00001{bottom:1010.190450px;}
.y37c8_c00001{bottom:1010.280450px;}
.y1a4c_c00001{bottom:1010.340000px;}
.y2b8e_c00001{bottom:1010.370450px;}
.y25c1_c00001{bottom:1010.550450px;}
.y18f0_c00001{bottom:1010.638992px;}
.y18b0_c00001{bottom:1010.640450px;}
.y826_c00001{bottom:1010.820450px;}
.y28a7_c00001{bottom:1010.910450px;}
.y5e7_c00001{bottom:1011.000450px;}
.y1a4e_c00001{bottom:1011.060000px;}
.y8ff_c00001{bottom:1011.090450px;}
.y3113_c00001{bottom:1011.240000px;}
.y9d4_c00001{bottom:1011.360450px;}
.y2e4b_c00001{bottom:1011.423060px;}
.y376e_c00001{bottom:1011.630450px;}
.y1c08_c00001{bottom:1011.780000px;}
.y2708_c00001{bottom:1011.810450px;}
.y85c_c00001{bottom:1012.260450px;}
.y1c80_c00001{bottom:1012.320000px;}
.ya9_c00001{bottom:1012.530450px;}
.y28d8_c00001{bottom:1012.620450px;}
.y795_c00001{bottom:1012.710450px;}
.y18cd_c00001{bottom:1012.800450px;}
.y3392_c00001{bottom:1012.890450px;}
.y921_c00001{bottom:1012.980450px;}
.y1926_c00001{bottom:1013.035680px;}
.y2486_c00001{bottom:1013.070450px;}
.y1683_c00001{bottom:1013.250450px;}
.y3474_c00001{bottom:1013.340450px;}
.y20b6_c00001{bottom:1013.430450px;}
.y372_c00001{bottom:1013.700450px;}
.y3813_c00001{bottom:1013.700522px;}
.y37e5_c00001{bottom:1013.880450px;}
.y2095_c00001{bottom:1014.150450px;}
.y214c_c00001{bottom:1014.150549px;}
.y35f8_c00001{bottom:1014.150648px;}
.y35c4_c00001{bottom:1014.240450px;}
.y32ca_c00001{bottom:1014.300000px;}
.y5b_c00001{bottom:1014.510450px;}
.y23bb_c00001{bottom:1014.600774px;}
.y1eb6_c00001{bottom:1014.660000px;}
.y9ed_c00001{bottom:1014.780450px;}
.yc06_c00001{bottom:1014.870450px;}
.y2bda_c00001{bottom:1014.960450px;}
.y3a7_c00001{bottom:1015.050450px;}
.y15ed_c00001{bottom:1015.051305px;}
.y25ed_c00001{bottom:1015.140450px;}
.y2049_c00001{bottom:1015.500450px;}
.y4f7_c00001{bottom:1015.590450px;}
.y2ccf_c00001{bottom:1015.769568px;}
.y725_c00001{bottom:1015.770450px;}
.y3114_c00001{bottom:1015.920000px;}
.y38_c00001{bottom:1015.950450px;}
.y3571_c00001{bottom:1016.220450px;}
.y2d4b_c00001{bottom:1016.280000px;}
.y13df_c00001{bottom:1016.310450px;}
.y474_c00001{bottom:1016.400450px;}
.y2d6b_c00001{bottom:1016.455680px;}
.y1d00_c00001{bottom:1016.474040px;}
.y12df_c00001{bottom:1016.490450px;}
.y16cf_c00001{bottom:1016.580450px;}
.y526_c00001{bottom:1016.670450px;}
.y1f31_c00001{bottom:1016.671809px;}
.y103d_c00001{bottom:1016.760450px;}
.y49b_c00001{bottom:1016.760558px;}
.yc54_c00001{bottom:1016.850450px;}
.y277f_c00001{bottom:1016.940450px;}
.y1fa0_c00001{bottom:1017.030450px;}
.y1187_c00001{bottom:1017.120450px;}
.y82b_c00001{bottom:1017.120774px;}
.y10a8_c00001{bottom:1017.120783px;}
.y1d52_c00001{bottom:1017.180000px;}
.y833_c00001{bottom:1017.301134px;}
.y10b1_c00001{bottom:1017.301143px;}
.y30b5_c00001{bottom:1017.360000px;}
.y3668_c00001{bottom:1017.480450px;}
.y39dd_c00001{bottom:1017.570000px;}
.ybe0_c00001{bottom:1017.660450px;}
.y2442_c00001{bottom:1017.750450px;}
.y239b_c00001{bottom:1017.840450px;}
.y2e7c_c00001{bottom:1017.900000px;}
.y319f_c00001{bottom:1018.080000px;}
.yadd_c00001{bottom:1018.200450px;}
.yfe7_c00001{bottom:1018.290450px;}
.y266d_c00001{bottom:1018.470450px;}
.y32a6_c00001{bottom:1018.620000px;}
.y34b2_c00001{bottom:1018.650450px;}
.y34f0_c00001{bottom:1018.830450px;}
.y30c_c00001{bottom:1018.920450px;}
.y2dee_c00001{bottom:1019.340000px;}
.y260b_c00001{bottom:1019.460450px;}
.y2ead_c00001{bottom:1019.520000px;}
.y386c_c00001{bottom:1019.550450px;}
.y1bcc_c00001{bottom:1019.700000px;}
.y1502_c00001{bottom:1019.730450px;}
.y2a0c_c00001{bottom:1019.820450px;}
.y1a97_c00001{bottom:1019.880000px;}
.y1cbf_c00001{bottom:1020.060000px;}
.y1f92_c00001{bottom:1020.183708px;}
.y164d_c00001{bottom:1020.270450px;}
.y35e1_c00001{bottom:1020.360450px;}
.y3262_c00001{bottom:1020.600000px;}
.yee1_c00001{bottom:1020.630450px;}
.y19b6_c00001{bottom:1020.965940px;}
.y16ee_c00001{bottom:1021.080450px;}
.yb_c00001{bottom:1021.170450px;}
.y7e9_c00001{bottom:1021.260450px;}
.y1b7a_c00001{bottom:1021.320000px;}
.y8af_c00001{bottom:1021.440450px;}
.y1b30_c00001{bottom:1021.500000px;}
.y690_c00001{bottom:1021.620450px;}
.y1dde_c00001{bottom:1021.694040px;}
.y128_c00001{bottom:1021.710450px;}
.yf88_c00001{bottom:1021.980450px;}
.y1fbb_c00001{bottom:1021.980522px;}
.y30b6_c00001{bottom:1022.040000px;}
.y2f5d_c00001{bottom:1022.220000px;}
.y2b8d_c00001{bottom:1022.250450px;}
.y20fc_c00001{bottom:1022.430450px;}
.y363e_c00001{bottom:1022.610450px;}
.y26bb_c00001{bottom:1022.700450px;}
.ye1f_c00001{bottom:1022.700810px;}
.y3175_c00001{bottom:1022.760000px;}
.ya2f_c00001{bottom:1022.790450px;}
.ycb0_c00001{bottom:1023.060450px;}
.y1425_c00001{bottom:1023.240450px;}
.y1ee4_c00001{bottom:1023.300000px;}
.y2cc_c00001{bottom:1023.330450px;}
.y348a_c00001{bottom:1023.690450px;}
.y33be_c00001{bottom:1023.780450px;}
.yd5e_c00001{bottom:1023.960450px;}
.ycd6_c00001{bottom:1024.230450px;}
.y1f57_c00001{bottom:1024.410450px;}
.y1a98_c00001{bottom:1024.560000px;}
.y142a_c00001{bottom:1024.590450px;}
.y1d83_c00001{bottom:1024.740000px;}
.y142c_c00001{bottom:1024.769307px;}
.y2687_c00001{bottom:1024.770450px;}
.y402_c00001{bottom:1024.860450px;}
.y2e20_c00001{bottom:1024.920000px;}
.y1c48_c00001{bottom:1024.923960px;}
.y243c_c00001{bottom:1024.950450px;}
.y1fd0_c00001{bottom:1025.040450px;}
.y322a_c00001{bottom:1025.253360px;}
.y197c_c00001{bottom:1025.271360px;}
.y2e4a_c00001{bottom:1025.280000px;}
.yd33_c00001{bottom:1025.310450px;}
.y2855_c00001{bottom:1025.580450px;}
.y7c9_c00001{bottom:1025.670450px;}
.y102d_c00001{bottom:1025.760450px;}
.ybdd_c00001{bottom:1025.850450px;}
.yf25_c00001{bottom:1026.120450px;}
.y111f_c00001{bottom:1026.210450px;}
.y1954_c00001{bottom:1026.300162px;}
.y80_c00001{bottom:1026.300450px;}
.y1b7f_c00001{bottom:1026.540000px;}
.y321d_c00001{bottom:1026.572421px;}
.y3016_c00001{bottom:1026.720000px;}
.y21e0_c00001{bottom:1026.840450px;}
.y2b74_c00001{bottom:1026.930450px;}
.y2176_c00001{bottom:1027.020450px;}
.y49a_c00001{bottom:1027.110450px;}
.y3a3e_c00001{bottom:1027.200450px;}
.y1a04_c00001{bottom:1027.260000px;}
.y2d95_c00001{bottom:1027.262880px;}
.y2313_c00001{bottom:1027.290009px;}
.y17ef_c00001{bottom:1027.290450px;}
.y1892_c00001{bottom:1027.380450px;}
.y1817_c00001{bottom:1027.650450px;}
.y3283_c00001{bottom:1027.812960px;}
.y10a0_c00001{bottom:1028.100450px;}
.y2b1e_c00001{bottom:1028.190162px;}
.y1478_c00001{bottom:1028.190450px;}
.y2b1a_c00001{bottom:1028.190522px;}
.yd4_c00001{bottom:1028.280450px;}
.y1b7d_c00001{bottom:1028.340000px;}
.y206a_c00001{bottom:1028.550450px;}
.y2263_c00001{bottom:1028.550522px;}
.y2bd9_c00001{bottom:1028.820450px;}
.y2cfa_c00001{bottom:1028.907921px;}
.y24d1_c00001{bottom:1028.909568px;}
.y279c_c00001{bottom:1029.000450px;}
.y2205_c00001{bottom:1029.090450px;}
.y20d1_c00001{bottom:1029.267849px;}
.y2025_c00001{bottom:1029.269496px;}
.y2221_c00001{bottom:1029.270450px;}
.y1d51_c00001{bottom:1029.600000px;}
.y2b75_c00001{bottom:1029.720450px;}
.y3353_c00001{bottom:1029.960000px;}
.y2062_c00001{bottom:1029.990450px;}
.y13de_c00001{bottom:1030.080450px;}
.y1cff_c00001{bottom:1030.150080px;}
.y1768_c00001{bottom:1030.350450px;}
.y172a_c00001{bottom:1030.440450px;}
.y23ba_c00001{bottom:1030.530450px;}
.y2553_c00001{bottom:1030.800450px;}
.y288e_c00001{bottom:1030.980450px;}
.y1925_c00001{bottom:1031.220000px;}
.y3570_c00001{bottom:1031.250450px;}
.y18af_c00001{bottom:1031.340450px;}
.y825_c00001{bottom:1031.520450px;}
.y2502_c00001{bottom:1031.699640px;}
.y113d_c00001{bottom:1031.700450px;}
.y1eb5_c00001{bottom:1031.940000px;}
.y3152_c00001{bottom:1031.943060px;}
.yac2_c00001{bottom:1032.060450px;}
.y18ef_c00001{bottom:1032.418920px;}
.y1c7d_c00001{bottom:1032.480000px;}
.y920_c00001{bottom:1032.690450px;}
.y37c7_c00001{bottom:1032.870450px;}
.y27f8_c00001{bottom:1032.960450px;}
.y2dbf_c00001{bottom:1033.020000px;}
.y32c9_c00001{bottom:1033.200000px;}
.yb61_c00001{bottom:1033.230450px;}
.y207f_c00001{bottom:1033.410450px;}
.y85b_c00001{bottom:1033.500450px;}
.y2094_c00001{bottom:1033.590450px;}
.y33f7_c00001{bottom:1033.680450px;}
.y15ec_c00001{bottom:1034.041215px;}
.yc53_c00001{bottom:1034.130450px;}
.y4f6_c00001{bottom:1034.220450px;}
.ya97_c00001{bottom:1034.310450px;}
.y82a_c00001{bottom:1034.310585px;}
.y10a7_c00001{bottom:1034.310594px;}
.y371_c00001{bottom:1034.400450px;}
.y294c_c00001{bottom:1034.490450px;}
.y832_c00001{bottom:1034.490945px;}
.y10b0_c00001{bottom:1034.490954px;}
.y2d6a_c00001{bottom:1034.640000px;}
.y3a6_c00001{bottom:1034.760450px;}
.y19b5_c00001{bottom:1034.822880px;}
.y2191_c00001{bottom:1034.850450px;}
.y7c8_c00001{bottom:1035.030450px;}
.y25c0_c00001{bottom:1035.120450px;}
.y12d9_c00001{bottom:1035.210450px;}
.y1cbe_c00001{bottom:1035.365760px;}
.y1ddd_c00001{bottom:1035.370080px;}
.y3812_c00001{bottom:1035.480450px;}
.y1b32_c00001{bottom:1035.540000px;}
.y2441_c00001{bottom:1035.570450px;}
.y277e_c00001{bottom:1035.660450px;}
.y103c_c00001{bottom:1035.750450px;}
.y110d_c00001{bottom:1035.840450px;}
.y294b_c00001{bottom:1035.930450px;}
.y9ec_c00001{bottom:1036.020450px;}
.y1ae7_c00001{bottom:1036.080000px;}
.y1186_c00001{bottom:1036.110450px;}
.y33a8_c00001{bottom:1036.290450px;}
.y260a_c00001{bottom:1036.380450px;}
.y8dd_c00001{bottom:1036.470450px;}
.y18cc_c00001{bottom:1036.560450px;}
.y944_c00001{bottom:1036.650450px;}
.y2412_c00001{bottom:1036.740450px;}
.y1a47_c00001{bottom:1036.800000px;}
.y525_c00001{bottom:1036.920450px;}
.y1900_c00001{bottom:1036.980000px;}
.y1c07_c00001{bottom:1036.983060px;}
.y2005_c00001{bottom:1037.010450px;}
.y1e4f_c00001{bottom:1037.160000px;}
.y34b1_c00001{bottom:1037.190450px;}
.yfe6_c00001{bottom:1037.280450px;}
.y473_c00001{bottom:1037.370450px;}
.y2cce_c00001{bottom:1037.640081px;}
.y2129_c00001{bottom:1037.640450px;}
.y32a4_c00001{bottom:1037.700000px;}
.y12de_c00001{bottom:1037.730450px;}
.y794_c00001{bottom:1038.000450px;}
.y1ae8_c00001{bottom:1038.060000px;}
.y37fb_c00001{bottom:1038.180450px;}
.y23e8_c00001{bottom:1038.270450px;}
.y7e8_c00001{bottom:1038.540450px;}
.y1c47_c00001{bottom:1038.600000px;}
.y25ec_c00001{bottom:1038.900450px;}
.y1501_c00001{bottom:1038.990450px;}
.y2eac_c00001{bottom:1039.140000px;}
.y35e0_c00001{bottom:1039.350450px;}
.yadc_c00001{bottom:1039.440450px;}
.y30b_c00001{bottom:1039.620450px;}
.y1953_c00001{bottom:1040.070450px;}
.y16ce_c00001{bottom:1040.340450px;}
.y1f91_c00001{bottom:1040.342988px;}
.y1ee3_c00001{bottom:1040.580000px;}
.y2372_c00001{bottom:1040.790450px;}
.y1f30_c00001{bottom:1040.791503px;}
.y1e89_c00001{bottom:1040.940000px;}
.y20fb_c00001{bottom:1041.060450px;}
.y3667_c00001{bottom:1041.240450px;}
.y2bd8_c00001{bottom:1041.330450px;}
.yf87_c00001{bottom:1041.690450px;}
.ye1e_c00001{bottom:1041.690720px;}
.y5e6_c00001{bottom:1042.050450px;}
.y30b0_c00001{bottom:1042.200000px;}
.y28e5_c00001{bottom:1042.320450px;}
.y9d3_c00001{bottom:1042.410450px;}
.y68f_c00001{bottom:1042.590450px;}
.y15ef_c00001{bottom:1042.860450px;}
.ycd5_c00001{bottom:1043.220450px;}
.y32f1_c00001{bottom:1043.280000px;}
.y386b_c00001{bottom:1043.400450px;}
.ya8_c00001{bottom:1043.580450px;}
.y28d7_c00001{bottom:1043.670450px;}
.ya_c00001{bottom:1043.670549px;}
.y1fba_c00001{bottom:1043.760450px;}
.y1e4e_c00001{bottom:1043.820000px;}
.y1e15_c00001{bottom:1043.827020px;}
.y13dd_c00001{bottom:1043.940450px;}
.y1cfe_c00001{bottom:1044.007020px;}
.y5bf_c00001{bottom:1044.030450px;}
.yd32_c00001{bottom:1044.210450px;}
.y2cb_c00001{bottom:1044.300450px;}
.y33bd_c00001{bottom:1044.480450px;}
.y3797_c00001{bottom:1044.570450px;}
.yd09_c00001{bottom:1044.660450px;}
.y1a94_c00001{bottom:1044.720000px;}
.y1877_c00001{bottom:1044.750450px;}
.y16ed_c00001{bottom:1044.840450px;}
.y2a23_c00001{bottom:1044.930549px;}
.yd5d_c00001{bottom:1045.290450px;}
.y1d82_c00001{bottom:1045.440000px;}
.y5a_c00001{bottom:1045.560450px;}
.y3706_c00001{bottom:1045.650450px;}
.y3151_c00001{bottom:1045.800000px;}
.ybdc_c00001{bottom:1045.920450px;}
.y2e7b_c00001{bottom:1045.980000px;}
.y3972_c00001{bottom:1046.010450px;}
.y1783_c00001{bottom:1046.280450px;}
.y2d94_c00001{bottom:1046.340000px;}
.y26ba_c00001{bottom:1046.460450px;}
.y243b_c00001{bottom:1046.730450px;}
.ya0a_c00001{bottom:1046.820450px;}
.y30b4_c00001{bottom:1046.880000px;}
.y3282_c00001{bottom:1046.890080px;}
.y11a4_c00001{bottom:1046.910450px;}
.y37_c00001{bottom:1047.000450px;}
.y2204_c00001{bottom:1047.090450px;}
.y2ded_c00001{bottom:1047.240000px;}
.y3015_c00001{bottom:1047.420000px;}
.y1f9f_c00001{bottom:1048.080450px;}
.yee0_c00001{bottom:1048.260450px;}
.y1b7c_c00001{bottom:1048.320000px;}
.y19b4_c00001{bottom:1048.498920px;}
.y214b_c00001{bottom:1048.620450px;}
.y2ac4_c00001{bottom:1048.710450px;}
.y109f_c00001{bottom:1048.800450px;}
.yd3_c00001{bottom:1048.890450px;}
.y2c95_c00001{bottom:1049.070450px;}
.y1477_c00001{bottom:1049.160450px;}
.y2312_c00001{bottom:1049.160522px;}
.y1eb4_c00001{bottom:1049.220000px;}
.y1ddc_c00001{bottom:1049.227020px;}
.y2b8b_c00001{bottom:1049.340450px;}
.y1a96_c00001{bottom:1049.400000px;}
.y37b0_c00001{bottom:1049.430450px;}
.y1924_c00001{bottom:1049.580000px;}
.y2b1d_c00001{bottom:1049.970090px;}
.y363d_c00001{bottom:1050.150450px;}
.y2265_c00001{bottom:1050.330450px;}
.yba0_c00001{bottom:1050.510450px;}
.y1bcb_c00001{bottom:1050.660000px;}
.y2cf9_c00001{bottom:1050.778434px;}
.y24d0_c00001{bottom:1050.780081px;}
.y2175_c00001{bottom:1050.780450px;}
.y1c06_c00001{bottom:1050.840000px;}
.y17ee_c00001{bottom:1051.050450px;}
.y20d0_c00001{bottom:1051.138362px;}
.y2024_c00001{bottom:1051.140009px;}
.y1729_c00001{bottom:1051.140450px;}
.y14be_c00001{bottom:1051.320450px;}
.y1816_c00001{bottom:1051.410450px;}
.y1c7e_c00001{bottom:1051.560000px;}
.y10a6_c00001{bottom:1051.590585px;}
.y824_c00001{bottom:1051.680450px;}
.y1580_c00001{bottom:1051.770450px;}
.y10af_c00001{bottom:1051.770945px;}
.y18ae_c00001{bottom:1051.950450px;}
.y10c7_c00001{bottom:1052.040450px;}
.y11ba_c00001{bottom:1052.400450px;}
.yf24_c00001{bottom:1052.490450px;}
.yc05_c00001{bottom:1052.670450px;}
.y7f_c00001{bottom:1052.760450px;}
.y2e1f_c00001{bottom:1052.823060px;}
.y2d69_c00001{bottom:1053.000000px;}
.y15eb_c00001{bottom:1053.031125px;}
.y2485_c00001{bottom:1053.300450px;}
.y2501_c00001{bottom:1053.479568px;}
.y2440_c00001{bottom:1053.480450px;}
.y103b_c00001{bottom:1053.660450px;}
.y2dbe_c00001{bottom:1053.720000px;}
.y2220_c00001{bottom:1053.840450px;}
.y292f_c00001{bottom:1054.020450px;}
.y103a_c00001{bottom:1054.110450px;}
.y18ee_c00001{bottom:1054.198848px;}
.y1767_c00001{bottom:1054.200450px;}
.y2609_c00001{bottom:1054.380450px;}
.y2eab_c00001{bottom:1054.440000px;}
.y3a5_c00001{bottom:1054.470450px;}
.y277d_c00001{bottom:1054.560450px;}
.y1b31_c00001{bottom:1054.620000px;}
.y36bb_c00001{bottom:1054.650450px;}
.y288d_c00001{bottom:1054.740450px;}
.y110c_c00001{bottom:1054.830450px;}
.y4f5_c00001{bottom:1054.920450px;}
.y1497_c00001{bottom:1055.010450px;}
.y370_c00001{bottom:1055.100450px;}
.yc52_c00001{bottom:1055.370450px;}
.y294a_c00001{bottom:1055.460450px;}
.yfe4_c00001{bottom:1055.550450px;}
.y9eb_c00001{bottom:1055.640450px;}
.y401_c00001{bottom:1055.730450px;}
.yfe1_c00001{bottom:1055.910450px;}
.y28a6_c00001{bottom:1056.000450px;}
.y3407_c00001{bottom:1056.090450px;}
.y2bd7_c00001{bottom:1056.270450px;}
.y344c_c00001{bottom:1056.360450px;}
.y1448_c00001{bottom:1056.720450px;}
.y376d_c00001{bottom:1056.810450px;}
.y8dc_c00001{bottom:1057.170450px;}
.y1185_c00001{bottom:1057.260450px;}
.ya1a_c00001{bottom:1057.350450px;}
.y1e88_c00001{bottom:1057.500000px;}
.y1e14_c00001{bottom:1057.503060px;}
.y33a7_c00001{bottom:1057.530450px;}
.y472_c00001{bottom:1057.620450px;}
.y18ff_c00001{bottom:1057.680000px;}
.y1cfd_c00001{bottom:1057.683060px;}
.y2004_c00001{bottom:1057.710450px;}
.y35df_c00001{bottom:1058.340450px;}
.y2bc6_c00001{bottom:1058.430450px;}
.y2128_c00001{bottom:1058.610450px;}
.yfe5_c00001{bottom:1058.700450px;}
.y12dd_c00001{bottom:1059.060450px;}
.y1f72_c00001{bottom:1059.061269px;}
.y30a_c00001{bottom:1059.150450px;}
.y25bf_c00001{bottom:1059.240450px;}
.y2ccd_c00001{bottom:1059.420009px;}
.y9_c00001{bottom:1059.510450px;}
.y197b_c00001{bottom:1059.665760px;}
.y353a_c00001{bottom:1059.780450px;}
.y1424_c00001{bottom:1059.870450px;}
.y23e7_c00001{bottom:1060.139937px;}
.y1f90_c00001{bottom:1060.502268px;}
.yf86_c00001{bottom:1060.680450px;}
.ye1d_c00001{bottom:1060.680630px;}
.yadb_c00001{bottom:1060.770450px;}
.y2e49_c00001{bottom:1061.280000px;}
.ycaf_c00001{bottom:1061.400450px;}
.y3705_c00001{bottom:1061.490450px;}
.y5e5_c00001{bottom:1061.580450px;}
.yfe3_c00001{bottom:1061.940450px;}
.y2d93_c00001{bottom:1062.000000px;}
.yedf_c00001{bottom:1062.030450px;}
.ycd4_c00001{bottom:1062.120450px;}
.y2dec_c00001{bottom:1062.540000px;}
.yc38_c00001{bottom:1062.570450px;}
.y3260_c00001{bottom:1062.720000px;}
.y68e_c00001{bottom:1062.750450px;}
.y7e7_c00001{bottom:1062.840450px;}
.y8fe_c00001{bottom:1062.840729px;}
.y1ddb_c00001{bottom:1063.083960px;}
.y1377_c00001{bottom:1063.110450px;}
.yd31_c00001{bottom:1063.200450px;}
.y361b_c00001{bottom:1063.290450px;}
.y3245_c00001{bottom:1063.434420px;}
.y3941_c00001{bottom:1063.470450px;}
.yd08_c00001{bottom:1063.560450px;}
.ybdb_c00001{bottom:1063.830450px;}
.y363c_c00001{bottom:1064.010450px;}
.yf16_c00001{bottom:1064.100450px;}
.y16cd_c00001{bottom:1064.190450px;}
.yb60_c00001{bottom:1064.280450px;}
.y2ca_c00001{bottom:1064.460450px;}
.y321c_c00001{bottom:1064.731764px;}
.y266c_c00001{bottom:1064.910450px;}
.y1f2f_c00001{bottom:1064.911197px;}
.y5be_c00001{bottom:1065.000450px;}
.y3666_c00001{bottom:1065.090450px;}
.y33bc_c00001{bottom:1065.180450px;}
.yd5c_c00001{bottom:1065.270450px;}
.y823_c00001{bottom:1065.450450px;}
.y19b3_c00001{bottom:1065.600000px;}
.y3281_c00001{bottom:1065.785040px;}
.y1a46_c00001{bottom:1066.140000px;}
.y1eb3_c00001{bottom:1066.500000px;}
.y356f_c00001{bottom:1066.530450px;}
.y2e1e_c00001{bottom:1066.680000px;}
.y1fb9_c00001{bottom:1066.710450px;}
.y2ede_c00001{bottom:1067.040000px;}
.y1555_c00001{bottom:1067.070450px;}
.y386a_c00001{bottom:1067.160450px;}
.y943_c00001{bottom:1067.700450px;}
.y1ae6_c00001{bottom:1067.760000px;}
.y3489_c00001{bottom:1068.060450px;}
.y183d_c00001{bottom:1068.600450px;}
.yd2_c00001{bottom:1068.690450px;}
.y107d_c00001{bottom:1068.960450px;}
.y3014_c00001{bottom:1069.020000px;}
.y793_c00001{bottom:1069.050450px;}
.y30b3_c00001{bottom:1069.200000px;}
.y1a93_c00001{bottom:1069.560000px;}
.y91f_c00001{bottom:1069.590450px;}
.y1e4c_c00001{bottom:1069.927020px;}
.y91e_c00001{bottom:1069.950450px;}
.y1923_c00001{bottom:1070.100000px;}
.y2bd6_c00001{bottom:1070.130450px;}
.y2190_c00001{bottom:1070.310450px;}
.y2203_c00001{bottom:1070.940450px;}
.y10c6_c00001{bottom:1071.120450px;}
.y243a_c00001{bottom:1071.300450px;}
.y1bca_c00001{bottom:1071.360000px;}
.y1b79_c00001{bottom:1071.540000px;}
.y17c8_c00001{bottom:1071.840450px;}
.y15ea_c00001{bottom:1071.931125px;}
.y329f_c00001{bottom:1072.260000px;}
.yfe2_c00001{bottom:1072.290450px;}
.y2311_c00001{bottom:1072.380450px;}
.y292e_c00001{bottom:1072.470450px;}
.y2cf8_c00001{bottom:1072.558362px;}
.y24cf_c00001{bottom:1072.560009px;}
.y1e87_c00001{bottom:1072.620000px;}
.y1fcf_c00001{bottom:1072.650450px;}
.y11f4_c00001{bottom:1072.740450px;}
.y20cf_c00001{bottom:1072.918290px;}
.y2023_c00001{bottom:1072.919937px;}
.y1f56_c00001{bottom:1073.280450px;}
.y9d2_c00001{bottom:1073.370450px;}
.y3971_c00001{bottom:1073.550450px;}
.y23b9_c00001{bottom:1073.640450px;}
.y2d68_c00001{bottom:1073.700000px;}
.y110b_c00001{bottom:1074.090450px;}
.y3a4_c00001{bottom:1074.270450px;}
.y38e2_c00001{bottom:1074.360450px;}
.y2dbd_c00001{bottom:1074.420000px;}
.ya7_c00001{bottom:1074.630450px;}
.y28e4_c00001{bottom:1074.720450px;}
.y1500_c00001{bottom:1074.900450px;}
.y1ee2_c00001{bottom:1074.960000px;}
.y3391_c00001{bottom:1074.990450px;}
.y33f6_c00001{bottom:1075.080450px;}
.y2484_c00001{bottom:1075.170450px;}
.y1815_c00001{bottom:1075.260450px;}
.y32a2_c00001{bottom:1075.320000px;}
.y2500_c00001{bottom:1075.350081px;}
.y1682_c00001{bottom:1075.350450px;}
.y37c5_c00001{bottom:1075.530450px;}
.y4f4_c00001{bottom:1075.620450px;}
.y1423_c00001{bottom:1075.710450px;}
.y2048_c00001{bottom:1075.800450px;}
.y2eaa_c00001{bottom:1075.860000px;}
.y18ed_c00001{bottom:1076.069361px;}
.y28d6_c00001{bottom:1076.070450px;}
.y8_c00001{bottom:1076.340450px;}
.y59_c00001{bottom:1076.430450px;}
.y1447_c00001{bottom:1076.610450px;}
.y344b_c00001{bottom:1076.700450px;}
.y19ff_c00001{bottom:1076.760000px;}
.y3406_c00001{bottom:1076.790450px;}
.y2c39_c00001{bottom:1076.970450px;}
.y37c6_c00001{bottom:1077.060450px;}
.y400_c00001{bottom:1077.150450px;}
.y358b_c00001{bottom:1077.240450px;}
.y221f_c00001{bottom:1077.330450px;}
.y36f0_c00001{bottom:1077.690450px;}
.y363b_c00001{bottom:1077.780450px;}
.y7c7_c00001{bottom:1077.870450px;}
.y1766_c00001{bottom:1077.960450px;}
.y36_c00001{bottom:1078.050450px;}
.y3704_c00001{bottom:1078.140450px;}
.y2608_c00001{bottom:1078.230450px;}
.y471_c00001{bottom:1078.320450px;}
.y18fe_c00001{bottom:1078.380000px;}
.y36ba_c00001{bottom:1078.410450px;}
.y288c_c00001{bottom:1078.590450px;}
.y358a_c00001{bottom:1078.680450px;}
.y38e0_c00001{bottom:1078.770450px;}
.y2003_c00001{bottom:1078.950450px;}
.y12dc_c00001{bottom:1079.130450px;}
.y822_c00001{bottom:1079.310450px;}
.y2410_c00001{bottom:1079.400450px;}
.yf85_c00001{bottom:1079.670450px;}
.ye1c_c00001{bottom:1079.670540px;}
.ycae_c00001{bottom:1080.390450px;}
.y27f7_c00001{bottom:1080.570450px;}
.y1f8f_c00001{bottom:1080.661548px;}
.y3244_c00001{bottom:1080.720000px;}
.yada_c00001{bottom:1080.840450px;}
.ycd3_c00001{bottom:1081.110450px;}
.y2ccc_c00001{bottom:1081.290522px;}
.yb9f_c00001{bottom:1081.560450px;}
.y1f10_c00001{bottom:1081.650450px;}
.y1cbd_c00001{bottom:1081.983060px;}
.y23e6_c00001{bottom:1082.010450px;}
.y361a_c00001{bottom:1082.280450px;}
.y1496_c00001{bottom:1082.370450px;}
.yd30_c00001{bottom:1082.550450px;}
.y2e1d_c00001{bottom:1082.700000px;}
.y109e_c00001{bottom:1082.730450px;}
.yd07_c00001{bottom:1082.910450px;}
.y2deb_c00001{bottom:1083.060000px;}
.y1039_c00001{bottom:1083.360450px;}
.y2d92_c00001{bottom:1083.420000px;}
.y16cc_c00001{bottom:1083.449811px;}
.y68d_c00001{bottom:1083.450450px;}
.y8fd_c00001{bottom:1083.540450px;}
.yf15_c00001{bottom:1083.720450px;}
.y1eb2_c00001{bottom:1083.780000px;}
.y1e4b_c00001{bottom:1083.783960px;}
.y8db_c00001{bottom:1083.810450px;}
.y31f9_c00001{bottom:1084.135860px;}
.y32f0_c00001{bottom:1084.140000px;}
.y25eb_c00001{bottom:1084.350450px;}
.ybda_c00001{bottom:1084.530450px;}
.y3665_c00001{bottom:1084.620450px;}
.y3280_c00001{bottom:1084.680000px;}
.y2c9_c00001{bottom:1085.160450px;}
.y3639_c00001{bottom:1085.340450px;}
.yd5b_c00001{bottom:1085.970450px;}
.y3488_c00001{bottom:1086.060450px;}
.y3906_c00001{bottom:1086.150450px;}
.yc37_c00001{bottom:1086.420450px;}
.y2ac3_c00001{bottom:1086.510450px;}
.y1a45_c00001{bottom:1086.840000px;}
.y2466_c00001{bottom:1086.960450px;}
.y3970_c00001{bottom:1087.410450px;}
.y38e1_c00001{bottom:1088.130450px;}
.y7e6_c00001{bottom:1088.220450px;}
.ye47_c00001{bottom:1088.400450px;}
.y1c7c_c00001{bottom:1088.460000px;}
.y2371_c00001{bottom:1088.760450px;}
.y1476_c00001{bottom:1088.850450px;}
.y988_c00001{bottom:1089.120450px;}
.y1f2e_c00001{bottom:1089.121062px;}
.y1fb8_c00001{bottom:1089.210450px;}
.yd1_c00001{bottom:1089.390450px;}
.y1b2f_c00001{bottom:1089.540000px;}
.y32a1_c00001{bottom:1089.720000px;}
.y2439_c00001{bottom:1089.930450px;}
.y1922_c00001{bottom:1090.260000px;}
.yb5f_c00001{bottom:1090.740450px;}
.y15e9_c00001{bottom:1090.830450px;}
.y197a_c00001{bottom:1090.980000px;}
.y3869_c00001{bottom:1091.010450px;}
.y3a3_c00001{bottom:1091.550450px;}
.y19fe_c00001{bottom:1092.060000px;}
.y3352_c00001{bottom:1092.236760px;}
.y1ee1_c00001{bottom:1092.240000px;}
.y174c_c00001{bottom:1092.360450px;}
.y16ec_c00001{bottom:1092.450450px;}
.y17c7_c00001{bottom:1092.540450px;}
.y821_c00001{bottom:1093.080450px;}
.y19b2_c00001{bottom:1093.314960px;}
.y1e86_c00001{bottom:1093.320000px;}
.y2d67_c00001{bottom:1093.680000px;}
.y2dbc_c00001{bottom:1093.860000px;}
.y2310_c00001{bottom:1093.890450px;}
.y1f9e_c00001{bottom:1093.980450px;}
.y3013_c00001{bottom:1094.043060px;}
.y218f_c00001{bottom:1094.070450px;}
.y2d18_c00001{bottom:1094.160450px;}
.y3229_c00001{bottom:1094.211000px;}
.y292d_c00001{bottom:1094.340450px;}
.y2cf7_c00001{bottom:1094.428875px;}
.y24ce_c00001{bottom:1094.430522px;}
.y2202_c00001{bottom:1094.700450px;}
.y20ce_c00001{bottom:1094.788803px;}
.y110a_c00001{bottom:1094.790450px;}
.yf70_c00001{bottom:1095.150450px;}
.y240f_c00001{bottom:1095.240450px;}
.y1814_c00001{bottom:1095.330450px;}
.y1cbc_c00001{bottom:1095.840000px;}
.y2174_c00001{bottom:1095.960450px;}
.y395a_c00001{bottom:1096.050450px;}
.y7_c00001{bottom:1096.140450px;}
.y1fce_c00001{bottom:1096.230450px;}
.y4f3_c00001{bottom:1096.320450px;}
.y14ff_c00001{bottom:1096.410450px;}
.y109d_c00001{bottom:1096.500450px;}
.y2483_c00001{bottom:1096.950450px;}
.y28a5_c00001{bottom:1097.040450px;}
.y24ff_c00001{bottom:1097.130009px;}
.y3651_c00001{bottom:1097.130450px;}
.y1a92_c00001{bottom:1097.280000px;}
.y16cb_c00001{bottom:1097.309874px;}
.y1e4a_c00001{bottom:1097.460000px;}
.y1952_c00001{bottom:1097.580450px;}
.y23b8_c00001{bottom:1097.760450px;}
.y18ec_c00001{bottom:1097.849289px;}
.y58_c00001{bottom:1097.850450px;}
.y157f_c00001{bottom:1098.120450px;}
.y966_c00001{bottom:1098.570450px;}
.ye1b_c00001{bottom:1098.660450px;}
.y3243_c00001{bottom:1098.720000px;}
.y942_c00001{bottom:1098.750450px;}
.y91d_c00001{bottom:1098.930450px;}
.y18fd_c00001{bottom:1099.080000px;}
.yd06_c00001{bottom:1099.110450px;}
.y470_c00001{bottom:1099.290450px;}
.ycad_c00001{bottom:1099.380450px;}
.y36b9_c00001{bottom:1099.470450px;}
.y792_c00001{bottom:1099.920450px;}
.y2127_c00001{bottom:1100.010450px;}
.y107c_c00001{bottom:1100.100450px;}
.y2002_c00001{bottom:1100.460450px;}
.y344a_c00001{bottom:1100.550450px;}
.y288b_c00001{bottom:1100.820450px;}
.y1f8e_c00001{bottom:1100.820828px;}
.y3539_c00001{bottom:1101.270450px;}
.yad9_c00001{bottom:1101.540450px;}
.y3796_c00001{bottom:1101.630450px;}
.y31f8_c00001{bottom:1101.780000px;}
.y27f6_c00001{bottom:1101.900450px;}
.y2607_c00001{bottom:1101.990450px;}
.y23e5_c00001{bottom:1102.170450px;}
.y2c94_c00001{bottom:1102.440450px;}
.yf84_c00001{bottom:1102.530450px;}
.y3638_c00001{bottom:1102.620450px;}
.y2ea9_c00001{bottom:1102.680000px;}
.y321b_c00001{bottom:1102.891107px;}
.y2ccb_c00001{bottom:1103.070450px;}
.y3940_c00001{bottom:1103.970450px;}
.y9d1_c00001{bottom:1104.240450px;}
.y68c_c00001{bottom:1104.420450px;}
.y363a_c00001{bottom:1105.410450px;}
.ya6_c00001{bottom:1105.500450px;}
.y28f4_c00001{bottom:1105.770450px;}
.y3905_c00001{bottom:1105.860450px;}
.y2c8_c00001{bottom:1106.220450px;}
.y3a2_c00001{bottom:1106.400450px;}
.ybd9_c00001{bottom:1106.490900px;}
.y28d5_c00001{bottom:1107.120450px;}
.y1a44_c00001{bottom:1107.540000px;}
.y1446_c00001{bottom:1107.660450px;}
.y2438_c00001{bottom:1107.750450px;}
.y279b_c00001{bottom:1107.840450px;}
.y2dea_c00001{bottom:1107.900000px;}
.y2d91_c00001{bottom:1107.903960px;}
.y2c38_c00001{bottom:1108.020450px;}
.y2e48_c00001{bottom:1108.080000px;}
.y19b1_c00001{bottom:1108.800000px;}
.yfa_c00001{bottom:1108.920450px;}
.yfa8_c00001{bottom:1109.010450px;}
.y35_c00001{bottom:1109.100450px;}
.y1921_c00001{bottom:1109.520000px;}
.yd0_c00001{bottom:1110.000450px;}
.y109c_c00001{bottom:1110.360450px;}
.y16ca_c00001{bottom:1111.080162px;}
.y240e_c00001{bottom:1111.080450px;}
.y19fd_c00001{bottom:1112.760000px;}
.y336c_c00001{bottom:1112.936760px;}
.y2d66_c00001{bottom:1112.940000px;}
.y1951_c00001{bottom:1112.970756px;}
.y1422_c00001{bottom:1113.150450px;}
.y1f2d_c00001{bottom:1113.240756px;}
.y157e_c00001{bottom:1113.420450px;}
.y15e8_c00001{bottom:1113.870450px;}
.y1e85_c00001{bottom:1114.020000px;}
.ya66_c00001{bottom:1114.590450px;}
.yf6f_c00001{bottom:1114.770450px;}
.ye46_c00001{bottom:1114.860450px;}
.y230f_c00001{bottom:1115.400450px;}
.y2201_c00001{bottom:1115.760450px;}
.y292c_c00001{bottom:1116.120450px;}
.y2cf6_c00001{bottom:1116.208803px;}
.y174b_c00001{bottom:1116.210450px;}
.y16eb_c00001{bottom:1116.300450px;}
.ycd2_c00001{bottom:1117.020450px;}
.y15e7_c00001{bottom:1117.200450px;}
.y2173_c00001{bottom:1117.380450px;}
.y327f_c00001{bottom:1117.440000px;}
.y24cd_c00001{bottom:1117.650450px;}
.y2022_c00001{bottom:1117.740450px;}
.y4f2_c00001{bottom:1117.830450px;}
.y218e_c00001{bottom:1117.920450px;}
.y85a_c00001{bottom:1118.010450px;}
.y37c4_c00001{bottom:1118.550450px;}
.ycac_c00001{bottom:1118.730450px;}
.y14fe_c00001{bottom:1118.820450px;}
.y24fe_c00001{bottom:1118.909937px;}
.yf83_c00001{bottom:1118.910450px;}
.y57_c00001{bottom:1119.270450px;}
.y31f7_c00001{bottom:1119.420000px;}
.y309_c00001{bottom:1119.450450px;}
.y2482_c00001{bottom:1119.540600px;}
.y2de9_c00001{bottom:1119.600000px;}
.y18eb_c00001{bottom:1119.719802px;}
.y18fc_c00001{bottom:1119.780000px;}
.y6_c00001{bottom:1119.810450px;}
.y12db_c00001{bottom:1120.620450px;}
.y1f8d_c00001{bottom:1120.891170px;}
.y2126_c00001{bottom:1120.980450px;}
.y25be_c00001{bottom:1121.340450px;}
.y1b2e_c00001{bottom:1121.400000px;}
.y2d90_c00001{bottom:1121.580000px;}
.y91c_c00001{bottom:1122.060450px;}
.y2cca_c00001{bottom:1123.230450px;}
.y27f5_c00001{bottom:1123.410450px;}
.y68b_c00001{bottom:1123.500450px;}
.y2606_c00001{bottom:1123.680450px;}
.y3795_c00001{bottom:1124.220450px;}
.y3a1_c00001{bottom:1124.310450px;}
.y9d0_c00001{bottom:1124.580450px;}
.y329e_c00001{bottom:1124.820000px;}
.y2c7_c00001{bottom:1124.850450px;}
.ya5_c00001{bottom:1125.120450px;}
.y393f_c00001{bottom:1125.480450px;}
.y240d_c00001{bottom:1125.570450px;}
.y3904_c00001{bottom:1126.470450px;}
.y2411_c00001{bottom:1126.920450px;}
.y3228_c00001{bottom:1128.780000px;}
.y1f71_c00001{bottom:1128.810450px;}
.y1a43_c00001{bottom:1128.960000px;}
.y19b0_c00001{bottom:1129.320000px;}
.y279a_c00001{bottom:1129.350450px;}
.y941_c00001{bottom:1129.800450px;}
.yb9e_c00001{bottom:1130.610450px;}
.y1920_c00001{bottom:1134.360000px;}
.y1e84_c00001{bottom:1134.720000px;}
.y2200_c00001{bottom:1136.370450px;}
.yf82_c00001{bottom:1136.640450px;}
.y1950_c00001{bottom:1137.090450px;}
.y1681_c00001{bottom:1137.180450px;}
.y2d65_c00001{bottom:1137.240000px;}
.y1f2c_c00001{bottom:1137.360450px;}
.y1edf_c00001{bottom:1137.420000px;}
.ycd1_c00001{bottom:1137.720450px;}
.y15e6_c00001{bottom:1137.810450px;}
.y28d4_c00001{bottom:1138.080450px;}
.y1421_c00001{bottom:1138.530450px;}
.y1445_c00001{bottom:1138.710450px;}
.y5_c00001{bottom:1139.160450px;}
.y4f1_c00001{bottom:1139.250450px;}
.y3a0_c00001{bottom:1139.880450px;}
.y34_c00001{bottom:1139.970450px;}
.yf23_c00001{bottom:1140.060450px;}
.y31f6_c00001{bottom:1140.120000px;}
.y80d_c00001{bottom:1140.150450px;}
.y1c7b_c00001{bottom:1140.300000px;}
.y18fb_c00001{bottom:1140.480000px;}
.y2125_c00001{bottom:1140.690450px;}
.y24fd_c00001{bottom:1140.780450px;}
.y191f_c00001{bottom:1141.050450px;}
.y2c93_c00001{bottom:1141.410450px;}
.y18ea_c00001{bottom:1141.499730px;}
.y2172_c00001{bottom:1141.500450px;}
.y3794_c00001{bottom:1142.040600px;}
.y252d_c00001{bottom:1142.220450px;}
.y2437_c00001{bottom:1143.480450px;}
.y240c_c00001{bottom:1144.200450px;}
.y25bd_c00001{bottom:1144.470450px;}
.y28a4_c00001{bottom:1144.830450px;}
.y393e_c00001{bottom:1145.550450px;}
.y1b2d_c00001{bottom:1145.700000px;}
.y27f4_c00001{bottom:1145.820450px;}
.y1eb0_c00001{bottom:1145.880000px;}
.y1376_c00001{bottom:1145.910450px;}
.y2799_c00001{bottom:1149.870450px;}
.y940_c00001{bottom:1151.310450px;}
.y19af_c00001{bottom:1155.780000px;}
.y1473_c00001{bottom:1159.770450px;}
.y19fc_c00001{bottom:1161.000000px;}
.y33a6_c00001{bottom:1172.640450px;}
.y19ab_c00001{bottom:1172.880000px;}
.y19ad_c00001{bottom:1175.760000px;}
.y1420_c00001{bottom:1176.150450px;}
.y2_c00001{bottom:1178.670450px;}
.y7e5_c00001{bottom:1178.670459px;}
.y3ff_c00001{bottom:1178.670558px;}
.y1fb7_c00001{bottom:1193.340450px;}
.y1_c00001{bottom:1195.950450px;}
.h11_c00001{height:2.527031px;}
.h1c_c00001{height:2.557969px;}
.ha6_c00001{height:6.167813px;}
.h14_c00001{height:10.424004px;}
.h26_c00001{height:10.551621px;}
.h65_c00001{height:11.659570px;}
.h5c_c00001{height:11.972812px;}
.h2e_c00001{height:13.500000px;}
.h40_c00001{height:17.010000px;}
.h9c_c00001{height:17.666016px;}
.h59_c00001{height:18.140625px;}
.h181_c00001{height:18.630000px;}
.he7_c00001{height:18.900000px;}
.heb_c00001{height:19.080000px;}
.h3b_c00001{height:20.340000px;}
.he9_c00001{height:20.700000px;}
.he6_c00001{height:20.701500px;}
.h17_c00001{height:21.163887px;}
.h22_c00001{height:21.422988px;}
.hc1_c00001{height:21.600000px;}
.h41_c00001{height:23.660684px;}
.h4b_c00001{height:23.672461px;}
.hdc_c00001{height:24.118500px;}
.hd0_c00001{height:24.120000px;}
.hd7_c00001{height:24.300000px;}
.h4c_c00001{height:24.308437px;}
.h1e_c00001{height:26.217949px;}
.h21_c00001{height:26.538926px;}
.hc5_c00001{height:27.540000px;}
.hd5_c00001{height:27.720000px;}
.hf8_c00001{height:27.721500px;}
.hf9_c00001{height:29.160000px;}
.h5f_c00001{height:29.325586px;}
.hd3_c00001{height:29.340000px;}
.hd2_c00001{height:29.341500px;}
.h105_c00001{height:29.678906px;}
.h8b_c00001{height:30.113438px;}
.h14a_c00001{height:30.476250px;}
.he4_c00001{height:30.960000px;}
.hea_c00001{height:30.961500px;}
.hed_c00001{height:31.138500px;}
.he0_c00001{height:31.140000px;}
.h18_c00001{height:31.587891px;}
.h2f_c00001{height:31.912207px;}
.h1b_c00001{height:31.974609px;}
.h10c_c00001{height:32.758500px;}
.h10b_c00001{height:32.760000px;}
.h10d_c00001{height:32.940000px;}
.h156_c00001{height:34.378500px;}
.h13b_c00001{height:34.380000px;}
.hc3_c00001{height:34.560000px;}
.h71_c00001{height:34.764434px;}
.h72_c00001{height:34.766234px;}
.h73_c00001{height:34.766834px;}
.h13_c00001{height:35.314453px;}
.h4e_c00001{height:35.332031px;}
.hc9_c00001{height:36.180000px;}
.h57_c00001{height:36.281250px;}
.h2a_c00001{height:37.410293px;}
.hf6_c00001{height:37.546875px;}
.hf0_c00001{height:37.800000px;}
.hde_c00001{height:37.980000px;}
.hf3_c00001{height:37.981500px;}
.h6e_c00001{height:39.208008px;}
.h96_c00001{height:39.219408px;}
.h98_c00001{height:39.220608px;}
.h103_c00001{height:39.600000px;}
.hdb_c00001{height:39.601500px;}
.h10a_c00001{height:39.778500px;}
.hd9_c00001{height:39.780000px;}
.h149_c00001{height:41.220000px;}
.hfb_c00001{height:41.398500px;}
.h137_c00001{height:41.400000px;}
.h14b_c00001{height:41.938500px;}
.hc_c00001{height:42.011895px;}
.hd_c00001{height:42.526230px;}
.h37_c00001{height:42.561914px;}
.h45_c00001{height:43.091295px;}
.h44_c00001{height:43.091895px;}
.h12a_c00001{height:43.092495px;}
.h196_c00001{height:43.134009px;}
.h131_c00001{height:43.134609px;}
.h47_c00001{height:43.170293px;}
.h2d_c00001{height:43.606230px;}
.h126_c00001{height:43.641314px;}
.h124_c00001{height:43.641914px;}
.h125_c00001{height:43.642514px;}
.h69_c00001{height:43.651582px;}
.h70_c00001{height:43.652374px;}
.h92_c00001{height:43.674478px;}
.h7f_c00001{height:43.677610px;}
.h95_c00001{height:43.679194px;}
.h3_c00001{height:43.909277px;}
.h76_c00001{height:44.686230px;}
.hf4_c00001{height:44.820000px;}
.hef_c00001{height:46.440000px;}
.h102_c00001{height:46.620000px;}
.hf7_c00001{height:46.621500px;}
.h30_c00001{height:46.968223px;}
.h7_c00001{height:46.991602px;}
.hb8_c00001{height:47.344922px;}
.h11d_c00001{height:47.381836px;}
.h31_c00001{height:47.389219px;}
.h6d_c00001{height:47.833770px;}
.h19_c00001{height:47.961914px;}
.h116_c00001{height:47.988281px;}
.he2_c00001{height:48.240000px;}
.he5_c00001{height:48.241500px;}
.h4d_c00001{height:48.254063px;}
.he3_c00001{height:48.418500px;}
.hdd_c00001{height:48.420000px;}
.h174_c00001{height:48.461236px;}
.h1a_c00001{height:48.461836px;}
.h11e_c00001{height:48.491895px;}
.h11f_c00001{height:48.492495px;}
.hc4_c00001{height:48.616875px;}
.hc8_c00001{height:50.312812px;}
.haa_c00001{height:50.717273px;}
.hd8_c00001{height:51.658500px;}
.hdf_c00001{height:51.660000px;}
.hd6_c00001{height:51.840000px;}
.h6a_c00001{height:52.277344px;}
.h16_c00001{height:52.751777px;}
.h11c_c00001{height:52.753535px;}
.h7b_c00001{height:52.788619px;}
.h7a_c00001{height:52.789219px;}
.h7c_c00001{height:52.789819px;}
.h94_c00001{height:52.971680px;}
.h9b_c00001{height:52.998047px;}
.h15_c00001{height:53.397598px;}
.h175_c00001{height:53.471177px;}
.h20_c00001{height:53.471777px;}
.h32_c00001{height:53.472377px;}
.h3f_c00001{height:53.472935px;}
.h39_c00001{height:53.473535px;}
.h130_c00001{height:53.474135px;}
.h34_c00001{height:53.685630px;}
.h25_c00001{height:53.686230px;}
.h1f_c00001{height:53.686830px;}
.h12b_c00001{height:53.721914px;}
.h3c_c00001{height:54.119038px;}
.h136_c00001{height:54.160313px;}
.h49_c00001{height:54.251295px;}
.h48_c00001{height:54.251895px;}
.h127_c00001{height:54.252495px;}
.h198_c00001{height:54.294609px;}
.h3e_c00001{height:54.330293px;}
.h2_c00001{height:54.331699px;}
.h5a_c00001{height:54.421875px;}
.h134_c00001{height:54.766230px;}
.h16c_c00001{height:55.080000px;}
.h5_c00001{height:55.234688px;}
.hfa_c00001{height:55.260000px;}
.h133_c00001{height:55.429277px;}
.h132_c00001{height:55.429877px;}
.he8_c00001{height:56.146289px;}
.h150_c00001{height:56.880000px;}
.h14c_c00001{height:57.058500px;}
.h152_c00001{height:57.060000px;}
.h17d_c00001{height:57.073535px;}
.h68_c00001{height:57.195318px;}
.h29_c00001{height:57.775181px;}
.h28_c00001{height:57.775781px;}
.h10_c00001{height:57.805840px;}
.h173_c00001{height:57.807928px;}
.h197_c00001{height:58.152935px;}
.h17b_c00001{height:58.153535px;}
.h17c_c00001{height:58.154135px;}
.h108_c00001{height:58.500000px;}
.h12e_c00001{height:58.511177px;}
.h12c_c00001{height:58.511777px;}
.h12d_c00001{height:58.512377px;}
.hf_c00001{height:58.513535px;}
.h33_c00001{height:58.548619px;}
.h2b_c00001{height:58.549219px;}
.h27_c00001{height:58.549819px;}
.h100_c00001{height:58.651172px;}
.h158_c00001{height:58.678500px;}
.h107_c00001{height:58.680000px;}
.h120_c00001{height:58.797598px;}
.h179_c00001{height:58.798198px;}
.h24_c00001{height:58.871777px;}
.h17a_c00001{height:58.872377px;}
.h36_c00001{height:58.974705px;}
.h1_c00001{height:58.975137px;}
.h8e_c00001{height:59.004060px;}
.h51_c00001{height:59.004492px;}
.h18b_c00001{height:59.086230px;}
.h121_c00001{height:59.121914px;}
.h189_c00001{height:59.225449px;}
.h128_c00001{height:59.226049px;}
.h182_c00001{height:59.233535px;}
.h18a_c00001{height:59.585449px;}
.h122_c00001{height:59.651295px;}
.h3d_c00001{height:59.651895px;}
.h123_c00001{height:59.652495px;}
.hb4_c00001{height:60.226875px;}
.h185_c00001{height:60.312935px;}
.h184_c00001{height:60.313535px;}
.h186_c00001{height:60.314135px;}
.h15e_c00001{height:60.480000px;}
.h6_c00001{height:60.589687px;}
.h74_c00001{height:60.903105px;}
.h188_c00001{height:61.033535px;}
.h187_c00001{height:61.392935px;}
.h14d_c00001{height:61.920000px;}
.h138_c00001{height:62.100000px;}
.hb7_c00001{height:62.184375px;}
.h9f_c00001{height:62.703281px;}
.h42_c00001{height:63.172361px;}
.ha_c00001{height:63.175781px;}
.hf1_c00001{height:63.824414px;}
.hb6_c00001{height:63.855000px;}
.hf5_c00001{height:63.900000px;}
.hb_c00001{height:63.949219px;}
.h4a_c00001{height:63.950839px;}
.hbc_c00001{height:64.064355px;}
.hc0_c00001{height:64.557598px;}
.h7e_c00001{height:64.558198px;}
.h1d_c00001{height:64.625449px;}
.h17f_c00001{height:64.632935px;}
.h12f_c00001{height:64.633535px;}
.h56_c00001{height:64.657617px;}
.h135_c00001{height:64.669219px;}
.h23_c00001{height:64.846230px;}
.hf2_c00001{height:65.010937px;}
.h176_c00001{height:65.389219px;}
.h180_c00001{height:65.713535px;}
.h178_c00001{height:65.748619px;}
.h177_c00001{height:65.749219px;}
.hb0_c00001{height:66.082500px;}
.h4_c00001{height:66.394687px;}
.hcf_c00001{height:66.757500px;}
.h55_c00001{height:66.801900px;}
.h53_c00001{height:66.802500px;}
.h88_c00001{height:66.803100px;}
.hd4_c00001{height:67.140000px;}
.hec_c00001{height:67.141500px;}
.hee_c00001{height:67.318500px;}
.hcb_c00001{height:67.320000px;}
.h58_c00001{height:68.710781px;}
.h15c_c00001{height:69.086250px;}
.hd1_c00001{height:69.120000px;}
.h18d_c00001{height:69.313535px;}
.h191_c00001{height:69.314135px;}
.h18c_c00001{height:69.673535px;}
.h194_c00001{height:69.674135px;}
.h190_c00001{height:70.033535px;}
.h148_c00001{height:70.558500px;}
.h46_c00001{height:70.626170px;}
.h43_c00001{height:70.626890px;}
.h12_c00001{height:70.628906px;}
.h38_c00001{height:70.629506px;}
.hfd_c00001{height:70.641022px;}
.ha4_c00001{height:70.660042px;}
.h9a_c00001{height:70.660282px;}
.h5d_c00001{height:70.661243px;}
.h90_c00001{height:70.661639px;}
.hab_c00001{height:70.662371px;}
.h8_c00001{height:70.664062px;}
.h8d_c00001{height:70.664566px;}
.h97_c00001{height:70.664663px;}
.h81_c00001{height:70.665515px;}
.h80_c00001{height:70.665539px;}
.h8c_c00001{height:70.665646px;}
.h146_c00001{height:70.740000px;}
.h82_c00001{height:70.777617px;}
.h78_c00001{height:71.023463px;}
.h77_c00001{height:71.024063px;}
.h195_c00001{height:71.113535px;}
.h6c_c00001{height:71.383463px;}
.h6b_c00001{height:71.384063px;}
.h7d_c00001{height:71.384662px;}
.h192_c00001{height:71.474135px;}
.hda_c00001{height:71.982422px;}
.h52_c00001{height:72.104063px;}
.h54_c00001{height:72.464062px;}
.h145_c00001{height:72.540000px;}
.h85_c00001{height:72.559824px;}
.h84_c00001{height:72.561132px;}
.h9d_c00001{height:72.561672px;}
.h9_c00001{height:72.562500px;}
.h5e_c00001{height:72.563100px;}
.h35_c00001{height:74.335781px;}
.he_c00001{height:74.500840px;}
.h154_c00001{height:74.626875px;}
.h15b_c00001{height:75.087990px;}
.ha9_c00001{height:75.093750px;}
.h155_c00001{height:75.346875px;}
.h10f_c00001{height:77.578500px;}
.h106_c00001{height:77.580000px;}
.h157_c00001{height:77.760000px;}
.h89_c00001{height:78.134062px;}
.h75_c00001{height:78.526230px;}
.h151_c00001{height:78.946875px;}
.h117_c00001{height:79.270840px;}
.h79_c00001{height:79.628906px;}
.h11b_c00001{height:82.323633px;}
.hfc_c00001{height:82.546875px;}
.hb9_c00001{height:82.635820px;}
.hcd_c00001{height:82.676953px;}
.h104_c00001{height:82.800000px;}
.hc6_c00001{height:82.801500px;}
.h86_c00001{height:84.535312px;}
.hb3_c00001{height:84.898125px;}
.hba_c00001{height:85.372207px;}
.h2c_c00001{height:86.086230px;}
.h166_c00001{height:86.220000px;}
.hb2_c00001{height:87.859687px;}
.hb1_c00001{height:87.905767px;}
.hfe_c00001{height:88.020000px;}
.h147_c00001{height:89.640000px;}
.h13a_c00001{height:90.720000px;}
.h93_c00001{height:90.734063px;}
.h8a_c00001{height:91.094062px;}
.h6f_c00001{height:93.286230px;}
.h15d_c00001{height:93.936445px;}
.hce_c00001{height:93.983203px;}
.h183_c00001{height:95.086230px;}
.h153_c00001{height:96.480000px;}
.hb5_c00001{height:96.508125px;}
.h66_c00001{height:96.709219px;}
.h118_c00001{height:96.870938px;}
.h62_c00001{height:97.934062px;}
.h63_c00001{height:99.014663px;}
.h60_c00001{height:99.374063px;}
.hca_c00001{height:99.874688px;}
.h144_c00001{height:100.080000px;}
.h5b_c00001{height:101.894063px;}
.h14f_c00001{height:101.986875px;}
.h99_c00001{height:102.254063px;}
.h14e_c00001{height:102.706875px;}
.h87_c00001{height:103.333462px;}
.h4f_c00001{height:103.334063px;}
.h64_c00001{height:103.334663px;}
.h139_c00001{height:103.500000px;}
.h61_c00001{height:103.694063px;}
.h50_c00001{height:105.322500px;}
.h129_c00001{height:105.673535px;}
.h8f_c00001{height:105.682500px;}
.he1_c00001{height:105.996094px;}
.h17e_c00001{height:106.033535px;}
.h10e_c00001{height:106.920000px;}
.hcc_c00001{height:108.843750px;}
.h101_c00001{height:110.212031px;}
.hff_c00001{height:110.518500px;}
.h109_c00001{height:110.932031px;}
.haf_c00001{height:112.640625px;}
.h9e_c00001{height:113.242500px;}
.h115_c00001{height:118.757812px;}
.h168_c00001{height:120.601500px;}
.h167_c00001{height:120.780000px;}
.h11a_c00001{height:120.813574px;}
.h119_c00001{height:120.814798px;}
.h114_c00001{height:120.816562px;}
.hc2_c00001{height:121.156335px;}
.had_c00001{height:121.179375px;}
.hbe_c00001{height:121.302422px;}
.h3a_c00001{height:122.593535px;}
.h91_c00001{height:126.829688px;}
.h193_c00001{height:128.353535px;}
.h165_c00001{height:131.220000px;}
.h18e_c00001{height:134.113535px;}
.h18f_c00001{height:134.114135px;}
.hbf_c00001{height:134.472935px;}
.h83_c00001{height:140.617257px;}
.h15a_c00001{height:145.125000px;}
.hbd_c00001{height:145.243828px;}
.ha3_c00001{height:145.639800px;}
.ha1_c00001{height:145.642140px;}
.ha5_c00001{height:146.001540px;}
.ha2_c00001{height:146.002140px;}
.ha7_c00001{height:146.002740px;}
.hbb_c00001{height:146.749219px;}
.ha8_c00001{height:154.642500px;}
.h67_c00001{height:154.757010px;}
.ha0_c00001{height:155.002500px;}
.h169_c00001{height:155.340000px;}
.h113_c00001{height:157.097813px;}
.hae_c00001{height:162.953438px;}
.h163_c00001{height:165.600000px;}
.h142_c00001{height:182.878500px;}
.h15f_c00001{height:184.498500px;}
.h160_c00001{height:184.680000px;}
.h161_c00001{height:189.721500px;}
.h16d_c00001{height:206.820000px;}
.hc7_c00001{height:207.000000px;}
.h16f_c00001{height:207.001500px;}
.h141_c00001{height:210.418500px;}
.h16e_c00001{height:224.100000px;}
.h16b_c00001{height:224.280000px;}
.h16a_c00001{height:224.281500px;}
.h13f_c00001{height:231.120000px;}
.h162_c00001{height:236.340000px;}
.h13d_c00001{height:251.821500px;}
.h13e_c00001{height:257.040000px;}
.h143_c00001{height:272.518500px;}
.h13c_c00001{height:272.520000px;}
.h140_c00001{height:401.941500px;}
.h159_c00001{height:448.560000px;}
.h110_c00001{height:493.380000px;}
.h164_c00001{height:591.660000px;}
.h172_c00001{height:642.780000px;}
.h170_c00001{height:703.801500px;}
.h111_c00001{height:959.040000px;}
.h171_c00001{height:961.740000px;}
.h112_c00001{height:976.140000px;}
.hac_c00001{height:1262.880000px;}
.h0_c00001{height:1263.000000px;}
.w72_c00001{width:4.140000px;}
.w2_c00001{width:9.630000px;}
.w74_c00001{width:11.700000px;}
.w75_c00001{width:19.890000px;}
.w71_c00001{width:20.700000px;}
.w73_c00001{width:20.790000px;}
.w1f_c00001{width:31.138500px;}
.w1b_c00001{width:31.140000px;}
.w13_c00001{width:37.620000px;}
.wc_c00001{width:41.760000px;}
.w46_c00001{width:41.761500px;}
.wb_c00001{width:47.878500px;}
.w7_c00001{width:48.060000px;}
.w6c_c00001{width:52.020000px;}
.wf_c00001{width:52.380000px;}
.w39_c00001{width:54.540000px;}
.w2f_c00001{width:60.480000px;}
.w5e_c00001{width:62.460000px;}
.w69_c00001{width:62.820000px;}
.w60_c00001{width:62.998500px;}
.w62_c00001{width:63.000000px;}
.w31_c00001{width:63.180000px;}
.w6e_c00001{width:71.100000px;}
.w4e_c00001{width:73.620000px;}
.w4c_c00001{width:73.621500px;}
.w4d_c00001{width:73.800000px;}
.w3f_c00001{width:113.760000px;}
.w3e_c00001{width:126.720000px;}
.w66_c00001{width:134.820000px;}
.w48_c00001{width:137.340000px;}
.w23_c00001{width:137.518500px;}
.w52_c00001{width:148.140000px;}
.w70_c00001{width:153.360000px;}
.w36_c00001{width:156.240000px;}
.w14_c00001{width:157.680000px;}
.w6b_c00001{width:158.038500px;}
.w6a_c00001{width:158.220000px;}
.w30_c00001{width:158.760000px;}
.w22_c00001{width:169.378500px;}
.w63_c00001{width:169.380000px;}
.w3_c00001{width:173.340000px;}
.w17_c00001{width:180.000000px;}
.w29_c00001{width:180.001500px;}
.we_c00001{width:190.440000px;}
.w11_c00001{width:190.620000px;}
.w41_c00001{width:201.061500px;}
.w4b_c00001{width:201.238500px;}
.w40_c00001{width:201.240000px;}
.w25_c00001{width:211.860000px;}
.w33_c00001{width:219.960000px;}
.w55_c00001{width:222.480000px;}
.w42_c00001{width:230.580000px;}
.w57_c00001{width:233.098500px;}
.w26_c00001{width:233.100000px;}
.w27_c00001{width:233.280000px;}
.w2c_c00001{width:241.200000px;}
.w20_c00001{width:243.720000px;}
.w1c_c00001{width:243.721500px;}
.w5b_c00001{width:254.340000px;}
.w1e_c00001{width:275.580000px;}
.w19_c00001{width:275.760000px;}
.w3c_c00001{width:288.540000px;}
.w58_c00001{width:296.820000px;}
.w56_c00001{width:307.620000px;}
.w5c_c00001{width:328.860000px;}
.w61_c00001{width:339.480000px;}
.w3b_c00001{width:358.200000px;}
.w32_c00001{width:360.540000px;}
.w51_c00001{width:381.960000px;}
.w21_c00001{width:382.138500px;}
.w47_c00001{width:392.580000px;}
.w5f_c00001{width:401.400000px;}
.w2d_c00001{width:405.540000px;}
.w43_c00001{width:413.821500px;}
.w34_c00001{width:424.440000px;}
.w3a_c00001{width:426.780000px;}
.w12_c00001{width:445.681500px;}
.wd_c00001{width:445.858500px;}
.w54_c00001{width:445.860000px;}
.w1a_c00001{width:456.480000px;}
.w16_c00001{width:456.481500px;}
.w5a_c00001{width:466.920000px;}
.w2b_c00001{width:467.100000px;}
.w24_c00001{width:477.900000px;}
.w6d_c00001{width:486.000000px;}
.w2a_c00001{width:488.160000px;}
.w59_c00001{width:488.340000px;}
.w37_c00001{width:490.500000px;}
.wa_c00001{width:498.780000px;}
.w10_c00001{width:498.960000px;}
.w53_c00001{width:509.580000px;}
.w3d_c00001{width:517.680000px;}
.w4a_c00001{width:520.200000px;}
.w8_c00001{width:520.201500px;}
.w49_c00001{width:530.820000px;}
.w15_c00001{width:536.220000px;}
.w4f_c00001{width:541.440000px;}
.w28_c00001{width:541.620000px;}
.w4_c00001{width:546.570000px;}
.w67_c00001{width:562.680000px;}
.w45_c00001{width:584.098500px;}
.w38_c00001{width:592.020000px;}
.w68_c00001{width:605.340000px;}
.w6f_c00001{width:626.580000px;}
.w2e_c00001{width:645.120000px;}
.w35_c00001{width:647.460000px;}
.w5d_c00001{width:687.780000px;}
.w64_c00001{width:690.300000px;}
.w9_c00001{width:690.301500px;}
.w65_c00001{width:698.400000px;}
.w44_c00001{width:719.640000px;}
.w50_c00001{width:722.160000px;}
.w1d_c00001{width:732.780000px;}
.w18_c00001{width:732.960000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.830000px;}
.w5_c00001{width:892.980000px;}
.w6_c00001{width:893.250000px;}
.x1a8_c00001{left:-43.020000px;}
.x0_c00001{left:0.000000px;}
.x23_c00001{left:6.030000px;}
.x14b_c00001{left:7.740000px;}
.x150_c00001{left:9.540000px;}
.x171_c00001{left:10.980000px;}
.x185_c00001{left:12.060000px;}
.x170_c00001{left:14.040000px;}
.x1dc_c00001{left:16.560000px;}
.x14a_c00001{left:19.440000px;}
.x1c0_c00001{left:21.420000px;}
.x168_c00001{left:22.680000px;}
.x17c_c00001{left:26.100000px;}
.x177_c00001{left:27.540000px;}
.x1b1_c00001{left:29.700000px;}
.x1cf_c00001{left:31.860000px;}
.x152_c00001{left:33.120000px;}
.x17f_c00001{left:35.460000px;}
.x1a9_c00001{left:37.800000px;}
.x17a_c00001{left:42.120000px;}
.x1c7_c00001{left:43.560000px;}
.x16a_c00001{left:45.720000px;}
.x16b_c00001{left:48.240000px;}
.x15d_c00001{left:52.020000px;}
.x14e_c00001{left:53.460000px;}
.x169_c00001{left:55.440000px;}
.x164_c00001{left:57.600000px;}
.x14d_c00001{left:58.680000px;}
.x15a_c00001{left:61.200000px;}
.x1d2_c00001{left:62.460000px;}
.x16d_c00001{left:64.080000px;}
.x1a2_c00001{left:65.520000px;}
.x167_c00001{left:68.580000px;}
.x1b5_c00001{left:70.740000px;}
.x1bf_c00001{left:72.180000px;}
.x1b7_c00001{left:75.240000px;}
.x1ae_c00001{left:77.580000px;}
.x153_c00001{left:79.560000px;}
.x148_c00001{left:82.530000px;}
.x158_c00001{left:85.140000px;}
.x1af_c00001{left:86.220000px;}
.x16c_c00001{left:88.740000px;}
.x173_c00001{left:90.180000px;}
.x159_c00001{left:91.800000px;}
.x1b4_c00001{left:93.060000px;}
.x6a_c00001{left:95.670000px;}
.x184_c00001{left:97.200000px;}
.x15b_c00001{left:99.540000px;}
.x1b0_c00001{left:100.620000px;}
.x181_c00001{left:102.060000px;}
.x154_c00001{left:103.680000px;}
.x15f_c00001{left:104.940000px;}
.xe6_c00001{left:107.190000px;}
.xeb_c00001{left:108.450000px;}
.x1b2_c00001{left:110.160000px;}
.x1a4_c00001{left:111.240000px;}
.x182_c00001{left:112.680000px;}
.x15e_c00001{left:114.300000px;}
.x18_c00001{left:117.000000px;}
.x178_c00001{left:118.080000px;}
.x19b_c00001{left:119.880000px;}
.x174_c00001{left:121.140000px;}
.x48_c00001{left:122.490000px;}
.x1ca_c00001{left:123.660000px;}
.x144_c00001{left:125.010000px;}
.x155_c00001{left:126.180000px;}
.x4_c00001{left:127.619883px;}
.x106_c00001{left:129.695400px;}
.x120_c00001{left:131.130000px;}
.x11b_c00001{left:132.931395px;}
.x11e_c00001{left:134.284032px;}
.xe_c00001{left:135.630000px;}
.x109_c00001{left:136.646550px;}
.xf_c00001{left:138.150000px;}
.x3e_c00001{left:139.680000px;}
.x1c_c00001{left:140.940000px;}
.x13e_c00001{left:142.027650px;}
.x138_c00001{left:143.101800px;}
.x30_c00001{left:144.180000px;}
.x1c5_c00001{left:145.260000px;}
.x14_c00001{left:146.340000px;}
.x161_c00001{left:147.780000px;}
.xa_c00001{left:148.950000px;}
.x18e_c00001{left:150.030000px;}
.x80_c00001{left:151.110000px;}
.x53_c00001{left:152.280000px;}
.x40_c00001{left:154.440000px;}
.x11_c00001{left:156.960000px;}
.x10f_c00001{left:158.308929px;}
.x57_c00001{left:159.480000px;}
.x81_c00001{left:160.739721px;}
.xcc_c00001{left:161.817534px;}
.x17_c00001{left:162.900000px;}
.xc9_c00001{left:163.978848px;}
.x38_c00001{left:165.960000px;}
.x2c_c00001{left:167.670000px;}
.x143_c00001{left:168.930000px;}
.xb_c00001{left:170.190000px;}
.x82_c00001{left:171.989676px;}
.x4f_c00001{left:173.520000px;}
.x29_c00001{left:175.230000px;}
.xdc_c00001{left:176.851782px;}
.x1e_c00001{left:178.200000px;}
.xdf_c00001{left:179.460000px;}
.x5a_c00001{left:180.720000px;}
.xaa_c00001{left:182.520891px;}
.x54_c00001{left:184.230000px;}
.x9f_c00001{left:185.947200px;}
.xa1_c00001{left:187.580700px;}
.x12_c00001{left:188.730000px;}
.x66_c00001{left:191.430000px;}
.xe9_c00001{left:192.519450px;}
.x5_c00001{left:194.130000px;}
.xf7_c00001{left:195.479856px;}
.x41_c00001{left:196.920000px;}
.xa0_c00001{left:198.819450px;}
.xae_c00001{left:200.872521px;}
.x33_c00001{left:202.860000px;}
.xda_c00001{left:203.943159px;}
.x98_c00001{left:206.010396px;}
.xbe_c00001{left:208.265130px;}
.xad_c00001{left:209.334411px;}
.x9e_c00001{left:210.513150px;}
.x70_c00001{left:212.670000px;}
.xcb_c00001{left:214.018227px;}
.x13f_c00001{left:215.280000px;}
.xac_c00001{left:216.628470px;}
.xdd_c00001{left:218.344590px;}
.x12b_c00001{left:219.799800px;}
.x12a_c00001{left:220.954050px;}
.xf8_c00001{left:222.210666px;}
.xab_c00001{left:223.740666px;}
.x125_c00001{left:224.915850px;}
.x4d_c00001{left:225.990000px;}
.xdb_c00001{left:227.706165px;}
.xcd_c00001{left:228.870000px;}
.x19c_c00001{left:230.220000px;}
.xc3_c00001{left:231.479469px;}
.x121_c00001{left:232.654050px;}
.x51_c00001{left:233.730000px;}
.x84_c00001{left:236.517975px;}
.x86_c00001{left:238.767966px;}
.x108_c00001{left:239.852700px;}
.x107_c00001{left:241.119000px;}
.x78_c00001{left:242.370000px;}
.xd2_c00001{left:243.990000px;}
.x83_c00001{left:245.608119px;}
.x73_c00001{left:247.680000px;}
.x1d0_c00001{left:248.760000px;}
.xfe_c00001{left:249.930000px;}
.x12c_c00001{left:251.191350px;}
.x6b_c00001{left:252.450000px;}
.x5e_c00001{left:253.530000px;}
.x130_c00001{left:254.543400px;}
.x1cc_c00001{left:255.600000px;}
.xbf_c00001{left:256.688568px;}
.x85_c00001{left:258.028911px;}
.xd0_c00001{left:260.100000px;}
.x7e_c00001{left:262.080000px;}
.x5d_c00001{left:263.340000px;}
.xbc_c00001{left:264.421188px;}
.x100_c00001{left:266.220000px;}
.x140_c00001{left:267.300000px;}
.x49_c00001{left:268.650000px;}
.xf2_c00001{left:269.720586px;}
.xbd_c00001{left:271.622340px;}
.x61_c00001{left:273.330351px;}
.x35_c00001{left:274.950000px;}
.xea_c00001{left:276.120000px;}
.x62_c00001{left:277.469613px;}
.x1d6_c00001{left:278.820000px;}
.x105_c00001{left:279.993600px;}
.x146_c00001{left:281.174040px;}
.x13_c00001{left:283.230000px;}
.x99_c00001{left:285.390000px;}
.x3b_c00001{left:287.640000px;}
.xfc_c00001{left:289.440000px;}
.x12f_c00001{left:290.535750px;}
.xa4_c00001{left:293.850000px;}
.xca_c00001{left:295.468803px;}
.xa2_c00001{left:296.730000px;}
.x79_c00001{left:298.710000px;}
.x191_c00001{left:300.960000px;}
.x145_c00001{left:302.045220px;}
.x1dd_c00001{left:303.120000px;}
.x71_c00001{left:304.200000px;}
.x3d_c00001{left:306.450000px;}
.x77_c00001{left:309.960000px;}
.x43_c00001{left:312.210000px;}
.x3c_c00001{left:314.190000px;}
.xb0_c00001{left:315.450000px;}
.xe0_c00001{left:317.340000px;}
.xfb_c00001{left:318.420000px;}
.x190_c00001{left:320.130000px;}
.x3a_c00001{left:322.200000px;}
.x69_c00001{left:323.820000px;}
.x87_c00001{left:326.248578px;}
.x6f_c00001{left:327.690000px;}
.xed_c00001{left:329.400000px;}
.x37_c00001{left:331.200000px;}
.x32_c00001{left:333.630000px;}
.x65_c00001{left:335.160000px;}
.x63_c00001{left:337.678290px;}
.x88_c00001{left:339.027084px;}
.x9a_c00001{left:340.650000px;}
.x36_c00001{left:342.720000px;}
.x39_c00001{left:344.700000px;}
.x9_c00001{left:346.500000px;}
.x34_c00001{left:348.210000px;}
.x1ce_c00001{left:350.100000px;}
.x10e_c00001{left:351.994410px;}
.x8_c00001{left:354.150000px;}
.x160_c00001{left:355.680000px;}
.x7_c00001{left:357.300000px;}
.x1cb_c00001{left:358.920000px;}
.x163_c00001{left:361.260000px;}
.x116_c00001{left:363.516804px;}
.x19d_c00001{left:364.680000px;}
.x175_c00001{left:366.300000px;}
.x198_c00001{left:368.100000px;}
.x6_c00001{left:370.170000px;}
.xf9_c00001{left:373.140000px;}
.xce_c00001{left:374.580000px;}
.x1cd_c00001{left:377.100000px;}
.x10_c00001{left:378.360000px;}
.xc0_c00001{left:381.065562px;}
.x165_c00001{left:383.040000px;}
.x188_c00001{left:384.480000px;}
.xf3_c00001{left:386.100000px;}
.x68_c00001{left:389.070000px;}
.x1c8_c00001{left:390.960000px;}
.x1d7_c00001{left:393.210000px;}
.x18a_c00001{left:394.379973px;}
.x15c_c00001{left:396.000000px;}
.xc4_c00001{left:398.160000px;}
.x5f_c00001{left:399.780000px;}
.x19a_c00001{left:401.051520px;}
.x18b_c00001{left:402.300900px;}
.x142_c00001{left:403.380000px;}
.x186_c00001{left:404.550000px;}
.x50_c00001{left:405.810000px;}
.x8a_c00001{left:408.058371px;}
.x147_c00001{left:409.500000px;}
.x3f_c00001{left:411.930000px;}
.x187_c00001{left:414.000562px;}
.x1c9_c00001{left:415.623960px;}
.x89_c00001{left:420.477660px;}
.x189_c00001{left:422.550000px;}
.x141_c00001{left:424.170000px;}
.xc1_c00001{left:425.790000px;}
.x72_c00001{left:430.560000px;}
.x11f_c00001{left:432.450000px;}
.x3_c00001{left:433.980000px;}
.x19f_c00001{left:436.320000px;}
.x18d_c00001{left:437.490000px;}
.x11d_c00001{left:439.830405px;}
.x2_c00001{left:441.000000px;}
.xde_c00001{left:443.700000px;}
.x60_c00001{left:445.410000px;}
.x1d_c00001{left:446.580000px;}
.x1c2_c00001{left:449.640000px;}
.x139_c00001{left:450.720000px;}
.x2e_c00001{left:451.800000px;}
.x1d8_c00001{left:453.600000px;}
.x1d5_c00001{left:454.680000px;}
.x193_c00001{left:457.020000px;}
.x13d_c00001{left:458.191566px;}
.xf1_c00001{left:459.896679px;}
.x115_c00001{left:461.160702px;}
.x64_c00001{left:462.870000px;}
.xcf_c00001{left:464.940000px;}
.xc6_c00001{left:467.460000px;}
.x13c_c00001{left:468.990621px;}
.x114_c00001{left:471.241323px;}
.x113_c00001{left:473.401134px;}
.x199_c00001{left:475.380000px;}
.xaf_c00001{left:477.540000px;}
.x132_c00001{left:479.070000px;}
.x117_c00001{left:480.690000px;}
.xef_c00001{left:482.127552px;}
.x13b_c00001{left:483.389361px;}
.xe2_c00001{left:484.560000px;}
.x5c_c00001{left:486.630198px;}
.xff_c00001{left:488.160000px;}
.xa3_c00001{left:489.510000px;}
.x6c_c00001{left:490.770000px;}
.xe1_c00001{left:493.380000px;}
.x162_c00001{left:495.720000px;}
.xd_c00001{left:496.890000px;}
.x8c_c00001{left:498.418731px;}
.x136_c00001{left:499.589307px;}
.x74_c00001{left:501.390000px;}
.x8d_c00001{left:502.738353px;}
.x8e_c00001{left:504.896661px;}
.x8b_c00001{left:506.518398px;}
.x135_c00001{left:508.049694px;}
.x58_c00001{left:509.580000px;}
.x134_c00001{left:511.019622px;}
.x124_c00001{left:513.721620px;}
.x1de_c00001{left:515.880000px;}
.x126_c00001{left:517.410000px;}
.x1d9_c00001{left:519.390000px;}
.x1a0_c00001{left:521.280000px;}
.x13a_c00001{left:522.900225px;}
.x19e_c00001{left:523.980000px;}
.x47_c00001{left:525.149766px;}
.xf0_c00001{left:527.037192px;}
.x123_c00001{left:528.121863px;}
.x129_c00001{left:529.828281px;}
.x12e_c00001{left:531.988398px;}
.x7c_c00001{left:534.600000px;}
.x112_c00001{left:536.581242px;}
.x18c_c00001{left:539.729820px;}
.x6d_c00001{left:541.530000px;}
.xe3_c00001{left:543.420000px;}
.x12d_c00001{left:545.758884px;}
.x7a_c00001{left:547.470000px;}
.xa6_c00001{left:548.549487px;}
.x179_c00001{left:550.260000px;}
.x75_c00001{left:552.240000px;}
.x1d4_c00001{left:554.670000px;}
.x1bc_c00001{left:556.200000px;}
.x122_c00001{left:557.371746px;}
.x7d_c00001{left:558.629964px;}
.x10d_c00001{left:560.428947px;}
.x1b_c00001{left:561.690000px;}
.x11c_c00001{left:563.309370px;}
.x192_c00001{left:565.200000px;}
.xd9_c00001{left:566.816472px;}
.xe8_c00001{left:568.980000px;}
.x133_c00001{left:570.060468px;}
.x2d_c00001{left:571.590000px;}
.x194_c00001{left:572.850000px;}
.xee_c00001{left:574.467363px;}
.x11a_c00001{left:577.350000px;}
.x90_c00001{left:579.146364px;}
.x195_c00001{left:580.770000px;}
.x31_c00001{left:582.210000px;}
.x10c_c00001{left:584.819631px;}
.x91_c00001{left:586.616274px;}
.x7b_c00001{left:588.150000px;}
.x1da_c00001{left:589.230000px;}
.xec_c00001{left:590.310000px;}
.x42_c00001{left:591.570000px;}
.x8f_c00001{left:592.646310px;}
.x18f_c00001{left:594.630000px;}
.x2f_c00001{left:595.890297px;}
.x97_c00001{left:597.600513px;}
.xe4_c00001{left:598.680000px;}
.x111_c00001{left:600.030387px;}
.x5b_c00001{left:601.290000px;}
.x2a_c00001{left:603.450000px;}
.xf4_c00001{left:604.530000px;}
.x96_c00001{left:605.610000px;}
.x20_c00001{left:607.590000px;}
.xd8_c00001{left:608.756184px;}
.x128_c00001{left:610.109523px;}
.xbb_c00001{left:611.278983px;}
.xa7_c00001{left:612.989109px;}
.x4c_c00001{left:614.070000px;}
.x127_c00001{left:615.599982px;}
.xc_c00001{left:617.490000px;}
.x56_c00001{left:618.840000px;}
.x110_c00001{left:620.550846px;}
.xc8_c00001{left:622.258578px;}
.x131_c00001{left:623.610648px;}
.x44_c00001{left:624.780000px;}
.xd1_c00001{left:626.400000px;}
.x1aa_c00001{left:627.660000px;}
.xd7_c00001{left:629.006103px;}
.x55_c00001{left:630.630000px;}
.x52_c00001{left:632.880000px;}
.xd6_c00001{left:635.216499px;}
.x196_c00001{left:636.480540px;}
.xc5_c00001{left:637.739829px;}
.x10b_c00001{left:639.088452px;}
.xd5_c00001{left:640.706958px;}
.xba_c00001{left:641.968740px;}
.x9b_c00001{left:643.770000px;}
.x4a_c00001{left:645.930000px;}
.x104_c00001{left:647.281071px;}
.xd4_c00001{left:648.447408px;}
.x1_c00001{left:650.250000px;}
.xc7_c00001{left:651.508461px;}
.x166_c00001{left:653.220000px;}
.xe5_c00001{left:654.300000px;}
.x103_c00001{left:655.470918px;}
.x95_c00001{left:657.540000px;}
.x1db_c00001{left:658.620000px;}
.xb9_c00001{left:659.698128px;}
.x92_c00001{left:661.225194px;}
.x118_c00001{left:662.670000px;}
.xd3_c00001{left:664.828605px;}
.xa8_c00001{left:665.909739px;}
.x1f_c00001{left:667.260000px;}
.x94_c00001{left:668.783781px;}
.xe7_c00001{left:670.140000px;}
.x59_c00001{left:671.219415px;}
.x102_c00001{left:672.660729px;}
.x1bd_c00001{left:673.920000px;}
.xa9_c00001{left:675.180243px;}
.x93_c00001{left:677.153988px;}
.x67_c00001{left:678.600000px;}
.x9c_c00001{left:679.860036px;}
.xb8_c00001{left:681.478101px;}
.x6e_c00001{left:683.100000px;}
.xb7_c00001{left:684.718569px;}
.xb6_c00001{left:686.338803px;}
.x22_c00001{left:688.500000px;}
.x76_c00001{left:690.120000px;}
.xf6_c00001{left:691.560000px;}
.x21_c00001{left:692.820000px;}
.xb5_c00001{left:694.349793px;}
.x9d_c00001{left:695.788830px;}
.xf5_c00001{left:696.960000px;}
.x24_c00001{left:698.130000px;}
.x1d3_c00001{left:699.210000px;}
.x4e_c00001{left:701.280000px;}
.xb4_c00001{left:703.259577px;}
.x1a_c00001{left:705.870000px;}
.xb3_c00001{left:707.219982px;}
.x25_c00001{left:708.300000px;}
.xc2_c00001{left:710.279658px;}
.x16_c00001{left:711.990000px;}
.x4b_c00001{left:714.060000px;}
.xb2_c00001{left:716.129766px;}
.x26_c00001{left:717.930000px;}
.x101_c00001{left:719.640000px;}
.x46_c00001{left:721.350000px;}
.x19_c00001{left:723.240000px;}
.x15_c00001{left:725.310000px;}
.x27_c00001{left:728.100000px;}
.x197_c00001{left:729.720000px;}
.x45_c00001{left:730.980000px;}
.x14c_c00001{left:732.060000px;}
.x14f_c00001{left:734.040000px;}
.x2b_c00001{left:735.840000px;}
.x28_c00001{left:737.729850px;}
.x183_c00001{left:739.620000px;}
.x17e_c00001{left:741.600000px;}
.x137_c00001{left:743.310000px;}
.x16e_c00001{left:745.380000px;}
.x1df_c00001{left:746.639850px;}
.x1b8_c00001{left:748.260000px;}
.x1c4_c00001{left:750.780000px;}
.x1be_c00001{left:752.220000px;}
.x151_c00001{left:753.300000px;}
.xb1_c00001{left:755.370000px;}
.x180_c00001{left:756.720000px;}
.xfd_c00001{left:757.889850px;}
.x17d_c00001{left:759.960000px;}
.x119_c00001{left:761.670000px;}
.x7f_c00001{left:763.200000px;}
.xa5_c00001{left:765.360000px;}
.x10a_c00001{left:766.620495px;}
.xfa_c00001{left:770.850000px;}
.x16f_c00001{left:772.200000px;}
.x1ba_c00001{left:774.540000px;}
.x1ab_c00001{left:776.520000px;}
.x1a6_c00001{left:778.140000px;}
.x1c3_c00001{left:782.100000px;}
.x1a1_c00001{left:784.260000px;}
.x149_c00001{left:787.140000px;}
.x1b3_c00001{left:788.580000px;}
.x1ac_c00001{left:790.020000px;}
.x1ad_c00001{left:793.260000px;}
.x17b_c00001{left:794.880000px;}
.x1d1_c00001{left:801.360000px;}
.x1b9_c00001{left:803.520000px;}
.x156_c00001{left:806.580000px;}
.x172_c00001{left:810.180000px;}
.x1a3_c00001{left:811.980000px;}
.x157_c00001{left:813.960000px;}
.x176_c00001{left:817.920000px;}
.x1a7_c00001{left:824.580000px;}
.x1bb_c00001{left:829.080000px;}
.x1c6_c00001{left:830.520000px;}
.x1b6_c00001{left:834.660000px;}
.x1c1_c00001{left:839.340000px;}
.x1a5_c00001{left:841.860000px;}
@media print{
.v40_c00001{vertical-align:-122.884992pt;}
.v32_c00001{vertical-align:-115.200000pt;}
.v3e_c00001{vertical-align:-102.980480pt;}
.v3c_c00001{vertical-align:-96.640000pt;}
.v34_c00001{vertical-align:-93.424640pt;}
.v42_c00001{vertical-align:-91.978880pt;}
.v38_c00001{vertical-align:-90.254080pt;}
.v37_c00001{vertical-align:-88.341120pt;}
.v33_c00001{vertical-align:-85.737600pt;}
.v44_c00001{vertical-align:-83.840000pt;}
.v3d_c00001{vertical-align:-81.880320pt;}
.v3a_c00001{vertical-align:-79.360000pt;}
.v28_c00001{vertical-align:-78.081600pt;}
.v11_c00001{vertical-align:-77.120000pt;}
.vd_c00001{vertical-align:-76.160000pt;}
.v15_c00001{vertical-align:-74.560000pt;}
.v12_c00001{vertical-align:-72.960000pt;}
.v27_c00001{vertical-align:-70.400000pt;}
.v10_c00001{vertical-align:-69.440000pt;}
.v24_c00001{vertical-align:-68.160000pt;}
.v1f_c00001{vertical-align:-66.880000pt;}
.v14_c00001{vertical-align:-64.320000pt;}
.v43_c00001{vertical-align:-62.720000pt;}
.v19_c00001{vertical-align:-61.440000pt;}
.v39_c00001{vertical-align:-54.410880pt;}
.v2d_c00001{vertical-align:-48.961024pt;}
.v23_c00001{vertical-align:-47.999168pt;}
.v31_c00001{vertical-align:-43.200000pt;}
.v22_c00001{vertical-align:-20.800000pt;}
.v8_c00001{vertical-align:-19.840000pt;}
.v20_c00001{vertical-align:-17.280000pt;}
.v21_c00001{vertical-align:-16.000000pt;}
.va_c00001{vertical-align:-14.720000pt;}
.v48_c00001{vertical-align:-12.160000pt;}
.v1_c00001{vertical-align:-9.920000pt;}
.v2_c00001{vertical-align:-8.000000pt;}
.v26_c00001{vertical-align:-6.078528pt;}
.v6_c00001{vertical-align:-4.479467pt;}
.v2b_c00001{vertical-align:-2.560000pt;}
.v45_c00001{vertical-align:-1.280000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v4_c00001{vertical-align:0.960000pt;}
.v1e_c00001{vertical-align:1.920000pt;}
.v3_c00001{vertical-align:4.800000pt;}
.v46_c00001{vertical-align:6.400000pt;}
.v16_c00001{vertical-align:8.000000pt;}
.v5_c00001{vertical-align:9.920000pt;}
.v49_c00001{vertical-align:11.520533pt;}
.v1a_c00001{vertical-align:12.801216pt;}
.v9_c00001{vertical-align:14.719467pt;}
.v41_c00001{vertical-align:16.640000pt;}
.v7_c00001{vertical-align:19.840000pt;}
.v29_c00001{vertical-align:26.560000pt;}
.vf_c00001{vertical-align:29.120000pt;}
.v35_c00001{vertical-align:32.640000pt;}
.v36_c00001{vertical-align:34.879467pt;}
.v1d_c00001{vertical-align:36.800000pt;}
.v2e_c00001{vertical-align:37.760000pt;}
.vb_c00001{vertical-align:38.720000pt;}
.v3f_c00001{vertical-align:41.920000pt;}
.v18_c00001{vertical-align:44.160000pt;}
.v17_c00001{vertical-align:45.440000pt;}
.v47_c00001{vertical-align:46.720000pt;}
.v13_c00001{vertical-align:47.680000pt;}
.ve_c00001{vertical-align:48.960000pt;}
.v2a_c00001{vertical-align:54.400000pt;}
.vc_c00001{vertical-align:56.960000pt;}
.v2c_c00001{vertical-align:58.880000pt;}
.v1b_c00001{vertical-align:59.842464pt;}
.v4a_c00001{vertical-align:62.080000pt;}
.v30_c00001{vertical-align:64.959680pt;}
.v3b_c00001{vertical-align:66.560000pt;}
.v25_c00001{vertical-align:67.519680pt;}
.v2f_c00001{vertical-align:73.280000pt;}
.v1c_c00001{vertical-align:95.042880pt;}
.ls202_c00001{letter-spacing:-4.085888pt;}
.ls27c_c00001{letter-spacing:-2.918400pt;}
.ls27b_c00001{letter-spacing:-2.912000pt;}
.ls27a_c00001{letter-spacing:-2.899200pt;}
.ls27d_c00001{letter-spacing:-2.892800pt;}
.ls2ef_c00001{letter-spacing:-1.920000pt;}
.ls384_c00001{letter-spacing:-1.381120pt;}
.ls2f7_c00001{letter-spacing:-1.295360pt;}
.ls2a3_c00001{letter-spacing:-1.280000pt;}
.ls2f3_c00001{letter-spacing:-1.059840pt;}
.ls2e6_c00001{letter-spacing:-1.000960pt;}
.ls2e3_c00001{letter-spacing:-0.942080pt;}
.ls3b7_c00001{letter-spacing:-0.898560pt;}
.ls2a5_c00001{letter-spacing:-0.896000pt;}
.ls2a4_c00001{letter-spacing:-0.832000pt;}
.ls397_c00001{letter-spacing:-0.816000pt;}
.ls3be_c00001{letter-spacing:-0.814720pt;}
.ls395_c00001{letter-spacing:-0.768000pt;}
.ls2c8_c00001{letter-spacing:-0.765440pt;}
.ls1ca_c00001{letter-spacing:-0.748800pt;}
.ls2c5_c00001{letter-spacing:-0.704000pt;}
.ls2c6_c00001{letter-spacing:-0.673920pt;}
.ls2d9_c00001{letter-spacing:-0.647680pt;}
.ls2e4_c00001{letter-spacing:-0.640000pt;}
.ls2d4_c00001{letter-spacing:-0.599040pt;}
.ls2ca_c00001{letter-spacing:-0.576000pt;}
.ls2d8_c00001{letter-spacing:-0.529920pt;}
.lse3_c00001{letter-spacing:-0.512000pt;}
.ls337_c00001{letter-spacing:-0.499200pt;}
.ls3bf_c00001{letter-spacing:-0.471680pt;}
.ls2de_c00001{letter-spacing:-0.449280pt;}
.ls387_c00001{letter-spacing:-0.448000pt;}
.ls382_c00001{letter-spacing:-0.432000pt;}
.ls404_c00001{letter-spacing:-0.427488pt;}
.ls386_c00001{letter-spacing:-0.424960pt;}
.ls290_c00001{letter-spacing:-0.416640pt;}
.ls2f8_c00001{letter-spacing:-0.412160pt;}
.ls272_c00001{letter-spacing:-0.400608pt;}
.ls1f6_c00001{letter-spacing:-0.396800pt;}
.ls38a_c00001{letter-spacing:-0.384000pt;}
.ls1f7_c00001{letter-spacing:-0.371200pt;}
.ls3fb_c00001{letter-spacing:-0.358048pt;}
.ls2e7_c00001{letter-spacing:-0.353280pt;}
.ls17c_c00001{letter-spacing:-0.345600pt;}
.ls143_c00001{letter-spacing:-0.342016pt;}
.ls256_c00001{letter-spacing:-0.325984pt;}
.ls330_c00001{letter-spacing:-0.321600pt;}
.ls351_c00001{letter-spacing:-0.320640pt;}
.ls24_c00001{letter-spacing:-0.320000pt;}
.ls2c4_c00001{letter-spacing:-0.318720pt;}
.ls33f_c00001{letter-spacing:-0.312000pt;}
.ls352_c00001{letter-spacing:-0.309952pt;}
.ls291_c00001{letter-spacing:-0.299520pt;}
.lsa4_c00001{letter-spacing:-0.297600pt;}
.ls2cd_c00001{letter-spacing:-0.294400pt;}
.ls133_c00001{letter-spacing:-0.288000pt;}
.ls24f_c00001{letter-spacing:-0.283232pt;}
.ls16c_c00001{letter-spacing:-0.272544pt;}
.ls12e_c00001{letter-spacing:-0.268800pt;}
.ls2f0_c00001{letter-spacing:-0.265600pt;}
.ls31c_c00001{letter-spacing:-0.262400pt;}
.ls131_c00001{letter-spacing:-0.259200pt;}
.ls353_c00001{letter-spacing:-0.256512pt;}
.ls2a2_c00001{letter-spacing:-0.256000pt;}
.ls1c2_c00001{letter-spacing:-0.251104pt;}
.ls350_c00001{letter-spacing:-0.249600pt;}
.ls22_c00001{letter-spacing:-0.245824pt;}
.ls3f9_c00001{letter-spacing:-0.243200pt;}
.ls5a_c00001{letter-spacing:-0.240480pt;}
.lsa9_c00001{letter-spacing:-0.240096pt;}
.lsde_c00001{letter-spacing:-0.240000pt;}
.ls2da_c00001{letter-spacing:-0.235520pt;}
.ls255_c00001{letter-spacing:-0.235136pt;}
.ls23b_c00001{letter-spacing:-0.230400pt;}
.ls1d4_c00001{letter-spacing:-0.224000pt;}
.lsa5_c00001{letter-spacing:-0.220800pt;}
.ls215_c00001{letter-spacing:-0.219104pt;}
.ls391_c00001{letter-spacing:-0.214400pt;}
.ls374_c00001{letter-spacing:-0.213760pt;}
.ls161_c00001{letter-spacing:-0.212800pt;}
.ls3af_c00001{letter-spacing:-0.212480pt;}
.ls267_c00001{letter-spacing:-0.211200pt;}
.ls258_c00001{letter-spacing:-0.208416pt;}
.ls194_c00001{letter-spacing:-0.204288pt;}
.lsb4_c00001{letter-spacing:-0.203072pt;}
.ls200_c00001{letter-spacing:-0.201600pt;}
.ls114_c00001{letter-spacing:-0.198400pt;}
.lscb_c00001{letter-spacing:-0.197728pt;}
.ls146_c00001{letter-spacing:-0.192384pt;}
.ls264_c00001{letter-spacing:-0.192000pt;}
.ls12b_c00001{letter-spacing:-0.187200pt;}
.ls33e_c00001{letter-spacing:-0.187040pt;}
.ls1d5_c00001{letter-spacing:-0.185600pt;}
.ls201_c00001{letter-spacing:-0.182400pt;}
.ls216_c00001{letter-spacing:-0.181696pt;}
.ls31_c00001{letter-spacing:-0.179200pt;}
.ls191_c00001{letter-spacing:-0.178752pt;}
.ls22c_c00001{letter-spacing:-0.176352pt;}
.ls240_c00001{letter-spacing:-0.172800pt;}
.ls3c0_c00001{letter-spacing:-0.171520pt;}
.ls257_c00001{letter-spacing:-0.171008pt;}
.ls2b0_c00001{letter-spacing:-0.170880pt;}
.ls2fd_c00001{letter-spacing:-0.170240pt;}
.ls35d_c00001{letter-spacing:-0.169824pt;}
.ls242_c00001{letter-spacing:-0.168000pt;}
.ls277_c00001{letter-spacing:-0.166400pt;}
.ls16b_c00001{letter-spacing:-0.165664pt;}
.ls12d_c00001{letter-spacing:-0.163200pt;}
.ls15f_c00001{letter-spacing:-0.161728pt;}
.lsc1_c00001{letter-spacing:-0.160992pt;}
.lsdb_c00001{letter-spacing:-0.160320pt;}
.lsa6_c00001{letter-spacing:-0.160000pt;}
.ls130_c00001{letter-spacing:-0.158400pt;}
.ls75_c00001{letter-spacing:-0.157248pt;}
.ls16d_c00001{letter-spacing:-0.154976pt;}
.ls2b4_c00001{letter-spacing:-0.153792pt;}
.ls22a_c00001{letter-spacing:-0.153600pt;}
.ls2b1_c00001{letter-spacing:-0.152256pt;}
.ls2dc_c00001{letter-spacing:-0.149760pt;}
.ls102_c00001{letter-spacing:-0.149632pt;}
.ls217_c00001{letter-spacing:-0.147200pt;}
.ls3e5_c00001{letter-spacing:-0.144704pt;}
.ls1c3_c00001{letter-spacing:-0.144288pt;}
.ls218_c00001{letter-spacing:-0.140800pt;}
.ls20e_c00001{letter-spacing:-0.140448pt;}
.ls1ff_c00001{letter-spacing:-0.139200pt;}
.ls147_c00001{letter-spacing:-0.138944pt;}
.ls193_c00001{letter-spacing:-0.136192pt;}
.ls111_c00001{letter-spacing:-0.134400pt;}
.lsf1_c00001{letter-spacing:-0.133600pt;}
.ls2b5_c00001{letter-spacing:-0.131040pt;}
.ls65_c00001{letter-spacing:-0.128256pt;}
.lsfd_c00001{letter-spacing:-0.128000pt;}
.ls23f_c00001{letter-spacing:-0.127680pt;}
.ls1c8_c00001{letter-spacing:-0.124800pt;}
.lsc0_c00001{letter-spacing:-0.123552pt;}
.lsb7_c00001{letter-spacing:-0.122912pt;}
.lse4_c00001{letter-spacing:-0.121600pt;}
.ls159_c00001{letter-spacing:-0.119168pt;}
.ls2c9_c00001{letter-spacing:-0.117760pt;}
.ls62_c00001{letter-spacing:-0.117568pt;}
.ls1c6_c00001{letter-spacing:-0.115200pt;}
.ls15a_c00001{letter-spacing:-0.114912pt;}
.ls64_c00001{letter-spacing:-0.112224pt;}
.lsd6_c00001{letter-spacing:-0.111264pt;}
.ls136_c00001{letter-spacing:-0.110400pt;}
.ls326_c00001{letter-spacing:-0.108800pt;}
.lsc9_c00001{letter-spacing:-0.106880pt;}
.ls18f_c00001{letter-spacing:-0.106400pt;}
.ls2be_c00001{letter-spacing:-0.106240pt;}
.ls1b_c00001{letter-spacing:-0.105600pt;}
.ls358_c00001{letter-spacing:-0.105408pt;}
.ls306_c00001{letter-spacing:-0.102528pt;}
.ls11a_c00001{letter-spacing:-0.102400pt;}
.ls15e_c00001{letter-spacing:-0.102144pt;}
.lsb8_c00001{letter-spacing:-0.101536pt;}
.ls13b_c00001{letter-spacing:-0.100800pt;}
.ls46_c00001{letter-spacing:-0.096192pt;}
.ls3f_c00001{letter-spacing:-0.096000pt;}
.ls15d_c00001{letter-spacing:-0.093632pt;}
.ls243_c00001{letter-spacing:-0.091200pt;}
.ls63_c00001{letter-spacing:-0.090848pt;}
.ls112_c00001{letter-spacing:-0.089600pt;}
.ls13d_c00001{letter-spacing:-0.086400pt;}
.lsb9_c00001{letter-spacing:-0.085504pt;}
.ls192_c00001{letter-spacing:-0.085120pt;}
.ls1cb_c00001{letter-spacing:-0.083200pt;}
.ls344_c00001{letter-spacing:-0.081984pt;}
.ls241_c00001{letter-spacing:-0.081600pt;}
.ls76_c00001{letter-spacing:-0.080864pt;}
.ls58_c00001{letter-spacing:-0.080160pt;}
.ls6a_c00001{letter-spacing:-0.076800pt;}
.ls10a_c00001{letter-spacing:-0.076608pt;}
.ls332_c00001{letter-spacing:-0.076128pt;}
.ls292_c00001{letter-spacing:-0.074880pt;}
.ls45_c00001{letter-spacing:-0.074816pt;}
.ls169_c00001{letter-spacing:-0.074560pt;}
.ls3fe_c00001{letter-spacing:-0.071136pt;}
.lsef_c00001{letter-spacing:-0.070400pt;}
.lsc3_c00001{letter-spacing:-0.070272pt;}
.ls47_c00001{letter-spacing:-0.069472pt;}
.ls2b3_c00001{letter-spacing:-0.068352pt;}
.ls18d_c00001{letter-spacing:-0.068096pt;}
.ls132_c00001{letter-spacing:-0.067200pt;}
.ls343_c00001{letter-spacing:-0.064416pt;}
.ls79_c00001{letter-spacing:-0.064128pt;}
.ls32_c00001{letter-spacing:-0.064000pt;}
.ls158_c00001{letter-spacing:-0.063840pt;}
.ls134_c00001{letter-spacing:-0.062400pt;}
.ls24e_c00001{letter-spacing:-0.059904pt;}
.ls30b_c00001{letter-spacing:-0.059808pt;}
.ls19_c00001{letter-spacing:-0.059584pt;}
.ls56_c00001{letter-spacing:-0.058784pt;}
.ls3d9_c00001{letter-spacing:-0.058560pt;}
.ls17f_c00001{letter-spacing:-0.057600pt;}
.ls10e_c00001{letter-spacing:-0.056160pt;}
.ls6c_c00001{letter-spacing:-0.055328pt;}
.ls6b_c00001{letter-spacing:-0.053440pt;}
.ls2d5_c00001{letter-spacing:-0.053120pt;}
.ls13c_c00001{letter-spacing:-0.052800pt;}
.ls9c_c00001{letter-spacing:-0.052704pt;}
.ls203_c00001{letter-spacing:-0.052192pt;}
.ls30c_c00001{letter-spacing:-0.051264pt;}
.ls29_c00001{letter-spacing:-0.051200pt;}
.ls18c_c00001{letter-spacing:-0.051072pt;}
.lsbe_c00001{letter-spacing:-0.048096pt;}
.ls135_c00001{letter-spacing:-0.048000pt;}
.ls61_c00001{letter-spacing:-0.046848pt;}
.ls3e_c00001{letter-spacing:-0.044800pt;}
.ls166_c00001{letter-spacing:-0.044736pt;}
.ls23a_c00001{letter-spacing:-0.043200pt;}
.ls385_c00001{letter-spacing:-0.042880pt;}
.ls21_c00001{letter-spacing:-0.042752pt;}
.ls307_c00001{letter-spacing:-0.042720pt;}
.ls32f_c00001{letter-spacing:-0.042560pt;}
.lsdc_c00001{letter-spacing:-0.040992pt;}
.ls30_c00001{letter-spacing:-0.038400pt;}
.ls85_c00001{letter-spacing:-0.038304pt;}
.ls3ff_c00001{letter-spacing:-0.037440pt;}
.ls1e_c00001{letter-spacing:-0.037408pt;}
.lsb0_c00001{letter-spacing:-0.035136pt;}
.ls305_c00001{letter-spacing:-0.034176pt;}
.lsfc_c00001{letter-spacing:-0.034048pt;}
.ls3fc_c00001{letter-spacing:-0.033696pt;}
.lsdd_c00001{letter-spacing:-0.033600pt;}
.ls78_c00001{letter-spacing:-0.032064pt;}
.ls2f_c00001{letter-spacing:-0.032000pt;}
.ls16a_c00001{letter-spacing:-0.029824pt;}
.lsee_c00001{letter-spacing:-0.029792pt;}
.lsff_c00001{letter-spacing:-0.029280pt;}
.ls13a_c00001{letter-spacing:-0.028800pt;}
.lsc8_c00001{letter-spacing:-0.026720pt;}
.ls28_c00001{letter-spacing:-0.025600pt;}
.ls116_c00001{letter-spacing:-0.025536pt;}
.ls12f_c00001{letter-spacing:-0.024000pt;}
.ls60_c00001{letter-spacing:-0.023424pt;}
.ls3fd_c00001{letter-spacing:-0.022464pt;}
.ls165_c00001{letter-spacing:-0.022368pt;}
.ls20_c00001{letter-spacing:-0.021376pt;}
.ls17b_c00001{letter-spacing:-0.021280pt;}
.ls23_c00001{letter-spacing:-0.019200pt;}
.ls93_c00001{letter-spacing:-0.017568pt;}
.ls309_c00001{letter-spacing:-0.017088pt;}
.ls162_c00001{letter-spacing:-0.017024pt;}
.ls1d_c00001{letter-spacing:-0.016032pt;}
.ls168_c00001{letter-spacing:-0.014912pt;}
.ls1fd_c00001{letter-spacing:-0.014400pt;}
.ls2a_c00001{letter-spacing:-0.012800pt;}
.ls51_c00001{letter-spacing:-0.012768pt;}
.ls86_c00001{letter-spacing:-0.011712pt;}
.ls1c_c00001{letter-spacing:-0.010688pt;}
.ls137_c00001{letter-spacing:-0.009600pt;}
.ls308_c00001{letter-spacing:-0.008544pt;}
.ls15c_c00001{letter-spacing:-0.008512pt;}
.ls1f0_c00001{letter-spacing:-0.007488pt;}
.ls167_c00001{letter-spacing:-0.007456pt;}
.ls27_c00001{letter-spacing:-0.006400pt;}
.ls77_c00001{letter-spacing:-0.005856pt;}
.ls1f_c00001{letter-spacing:-0.005344pt;}
.lsa3_c00001{letter-spacing:-0.004800pt;}
.ls53_c00001{letter-spacing:-0.004256pt;}
.ls18_c00001{letter-spacing:0.000000pt;}
.ls2a9_c00001{letter-spacing:0.003200pt;}
.lsf3_c00001{letter-spacing:0.004256pt;}
.ls1f9_c00001{letter-spacing:0.004800pt;}
.ls1_c00001{letter-spacing:0.005344pt;}
.ls82_c00001{letter-spacing:0.005856pt;}
.ls26_c00001{letter-spacing:0.006400pt;}
.ls304_c00001{letter-spacing:0.007456pt;}
.ls2ad_c00001{letter-spacing:0.007488pt;}
.ls2d_c00001{letter-spacing:0.008512pt;}
.ls2ff_c00001{letter-spacing:0.008544pt;}
.lsa1_c00001{letter-spacing:0.009600pt;}
.lsa_c00001{letter-spacing:0.010688pt;}
.ls36_c00001{letter-spacing:0.011712pt;}
.lsf5_c00001{letter-spacing:0.012768pt;}
.ls16_c00001{letter-spacing:0.012800pt;}
.ls125_c00001{letter-spacing:0.014400pt;}
.ls30f_c00001{letter-spacing:0.014912pt;}
.lsc2_c00001{letter-spacing:0.014976pt;}
.lse_c00001{letter-spacing:0.016032pt;}
.ls3_c00001{letter-spacing:0.017024pt;}
.ls2ab_c00001{letter-spacing:0.017088pt;}
.ls4c_c00001{letter-spacing:0.017568pt;}
.ls11_c00001{letter-spacing:0.019200pt;}
.ls180_c00001{letter-spacing:0.021280pt;}
.lsd_c00001{letter-spacing:0.021376pt;}
.ls37_c00001{letter-spacing:0.023424pt;}
.ls105_c00001{letter-spacing:0.024000pt;}
.ls18e_c00001{letter-spacing:0.025536pt;}
.ls13_c00001{letter-spacing:0.025600pt;}
.lsc6_c00001{letter-spacing:0.026720pt;}
.ls238_c00001{letter-spacing:0.028800pt;}
.ls35_c00001{letter-spacing:0.029280pt;}
.lsec_c00001{letter-spacing:0.029792pt;}
.ls15_c00001{letter-spacing:0.032000pt;}
.lsb1_c00001{letter-spacing:0.032064pt;}
.ls54_c00001{letter-spacing:0.033600pt;}
.ls152_c00001{letter-spacing:0.034048pt;}
.lse5_c00001{letter-spacing:0.034528pt;}
.ls5_c00001{letter-spacing:0.035136pt;}
.ls2a6_c00001{letter-spacing:0.037280pt;}
.ls144_c00001{letter-spacing:0.037408pt;}
.ls106_c00001{letter-spacing:0.038304pt;}
.ls12_c00001{letter-spacing:0.038400pt;}
.lsc_c00001{letter-spacing:0.040992pt;}
.ls26f_c00001{letter-spacing:0.041184pt;}
.lsf8_c00001{letter-spacing:0.042560pt;}
.ls301_c00001{letter-spacing:0.042720pt;}
.ls7_c00001{letter-spacing:0.042752pt;}
.ls129_c00001{letter-spacing:0.043200pt;}
.ls2b2_c00001{letter-spacing:0.044736pt;}
.ls17_c00001{letter-spacing:0.044800pt;}
.ls2ac_c00001{letter-spacing:0.044928pt;}
.lsc4_c00001{letter-spacing:0.046816pt;}
.ls8_c00001{letter-spacing:0.046848pt;}
.ls128_c00001{letter-spacing:0.048000pt;}
.lsca_c00001{letter-spacing:0.048096pt;}
.ls2b_c00001{letter-spacing:0.051072pt;}
.ls14_c00001{letter-spacing:0.051200pt;}
.ls2ae_c00001{letter-spacing:0.052192pt;}
.ls3f0_c00001{letter-spacing:0.052416pt;}
.ls4b_c00001{letter-spacing:0.052704pt;}
.ls1fa_c00001{letter-spacing:0.052800pt;}
.ls2bf_c00001{letter-spacing:0.053120pt;}
.ls312_c00001{letter-spacing:0.053280pt;}
.lsf2_c00001{letter-spacing:0.053440pt;}
.ls14f_c00001{letter-spacing:0.055328pt;}
.ls293_c00001{letter-spacing:0.056320pt;}
.ls3d_c00001{letter-spacing:0.057600pt;}
.ls38_c00001{letter-spacing:0.058560pt;}
.lsc7_c00001{letter-spacing:0.058784pt;}
.ls0_c00001{letter-spacing:0.059584pt;}
.ls2af_c00001{letter-spacing:0.059648pt;}
.ls236_c00001{letter-spacing:0.062400pt;}
.ls26d_c00001{letter-spacing:0.063648pt;}
.ls183_c00001{letter-spacing:0.063840pt;}
.ls10_c00001{letter-spacing:0.064000pt;}
.lsb_c00001{letter-spacing:0.064128pt;}
.ls3b_c00001{letter-spacing:0.064416pt;}
.ls17a_c00001{letter-spacing:0.067104pt;}
.ls1fb_c00001{letter-spacing:0.067200pt;}
.ls188_c00001{letter-spacing:0.068096pt;}
.ls6_c00001{letter-spacing:0.069472pt;}
.ls3a_c00001{letter-spacing:0.070272pt;}
.ls25_c00001{letter-spacing:0.070400pt;}
.ls1fc_c00001{letter-spacing:0.072000pt;}
.lsf6_c00001{letter-spacing:0.072352pt;}
.ls4f_c00001{letter-spacing:0.074816pt;}
.ls270_c00001{letter-spacing:0.074880pt;}
.ls66_c00001{letter-spacing:0.076128pt;}
.lsf0_c00001{letter-spacing:0.076608pt;}
.ls3c_c00001{letter-spacing:0.076800pt;}
.ls214_c00001{letter-spacing:0.076864pt;}
.ls2a7_c00001{letter-spacing:0.079680pt;}
.ls2c_c00001{letter-spacing:0.080000pt;}
.lsf_c00001{letter-spacing:0.080160pt;}
.ls413_c00001{letter-spacing:0.080384pt;}
.ls213_c00001{letter-spacing:0.080576pt;}
.ls142_c00001{letter-spacing:0.080864pt;}
.ls415_c00001{letter-spacing:0.081472pt;}
.ls418_c00001{letter-spacing:0.081504pt;}
.ls246_c00001{letter-spacing:0.081600pt;}
.ls4_c00001{letter-spacing:0.081984pt;}
.ls44_c00001{letter-spacing:0.083200pt;}
.ls18a_c00001{letter-spacing:0.085120pt;}
.ls311_c00001{letter-spacing:0.085248pt;}
.ls4e_c00001{letter-spacing:0.085504pt;}
.ls127_c00001{letter-spacing:0.086400pt;}
.ls4d_c00001{letter-spacing:0.087840pt;}
.lsf7_c00001{letter-spacing:0.089376pt;}
.ls33_c00001{letter-spacing:0.089472pt;}
.ls41_c00001{letter-spacing:0.089600pt;}
.ls9_c00001{letter-spacing:0.090848pt;}
.ls1fe_c00001{letter-spacing:0.091200pt;}
.lsfb_c00001{letter-spacing:0.093632pt;}
.ls5c_c00001{letter-spacing:0.093696pt;}
.ls10f_c00001{letter-spacing:0.096000pt;}
.ls5e_c00001{letter-spacing:0.096192pt;}
.ls30e_c00001{letter-spacing:0.096928pt;}
.ls3b6_c00001{letter-spacing:0.097280pt;}
.ls107_c00001{letter-spacing:0.097888pt;}
.lsad_c00001{letter-spacing:0.099552pt;}
.ls9e_c00001{letter-spacing:0.100800pt;}
.ls26c_c00001{letter-spacing:0.101088pt;}
.lsb6_c00001{letter-spacing:0.101536pt;}
.ls6f_c00001{letter-spacing:0.102144pt;}
.ls50_c00001{letter-spacing:0.102400pt;}
.ls30d_c00001{letter-spacing:0.104384pt;}
.ls83_c00001{letter-spacing:0.105408pt;}
.ls294_c00001{letter-spacing:0.106240pt;}
.lsba_c00001{letter-spacing:0.106400pt;}
.lsc5_c00001{letter-spacing:0.106880pt;}
.lsa7_c00001{letter-spacing:0.108800pt;}
.ls239_c00001{letter-spacing:0.110400pt;}
.ls14e_c00001{letter-spacing:0.110656pt;}
.ls6d_c00001{letter-spacing:0.111264pt;}
.ls156_c00001{letter-spacing:0.111840pt;}
.lsb5_c00001{letter-spacing:0.112224pt;}
.ls26b_c00001{letter-spacing:0.112320pt;}
.lsaa_c00001{letter-spacing:0.114912pt;}
.ls110_c00001{letter-spacing:0.115200pt;}
.ls141_c00001{letter-spacing:0.115584pt;}
.ls3f1_c00001{letter-spacing:0.116064pt;}
.ls11f_c00001{letter-spacing:0.117120pt;}
.ls43_c00001{letter-spacing:0.117568pt;}
.ls2c7_c00001{letter-spacing:0.117760pt;}
.ls154_c00001{letter-spacing:0.119168pt;}
.ls333_c00001{letter-spacing:0.120000pt;}
.ls2e_c00001{letter-spacing:0.121600pt;}
.ls59_c00001{letter-spacing:0.122912pt;}
.lsa8_c00001{letter-spacing:0.122976pt;}
.ls7c_c00001{letter-spacing:0.123424pt;}
.ls1b2_c00001{letter-spacing:0.124800pt;}
.ls14d_c00001{letter-spacing:0.127680pt;}
.ls42_c00001{letter-spacing:0.128000pt;}
.ls57_c00001{letter-spacing:0.128256pt;}
.ls1bb_c00001{letter-spacing:0.128832pt;}
.ls49_c00001{letter-spacing:0.129600pt;}
.ls185_c00001{letter-spacing:0.131936pt;}
.ls32a_c00001{letter-spacing:0.133600pt;}
.ls237_c00001{letter-spacing:0.134400pt;}
.ls5b_c00001{letter-spacing:0.134688pt;}
.ls3f2_c00001{letter-spacing:0.134784pt;}
.ls187_c00001{letter-spacing:0.136192pt;}
.ls2_c00001{letter-spacing:0.136320pt;}
.ls376_c00001{letter-spacing:0.138880pt;}
.lsb2_c00001{letter-spacing:0.138944pt;}
.ls13e_c00001{letter-spacing:0.139200pt;}
.ls323_c00001{letter-spacing:0.140448pt;}
.lse7_c00001{letter-spacing:0.140544pt;}
.ls6e_c00001{letter-spacing:0.140800pt;}
.ls2c1_c00001{letter-spacing:0.144000pt;}
.ls118_c00001{letter-spacing:0.144288pt;}
.ls108_c00001{letter-spacing:0.146400pt;}
.ls126_c00001{letter-spacing:0.148800pt;}
.ls117_c00001{letter-spacing:0.148960pt;}
.ls303_c00001{letter-spacing:0.149120pt;}
.ls3b8_c00001{letter-spacing:0.149760pt;}
.ls3bd_c00001{letter-spacing:0.151680pt;}
.ls39_c00001{letter-spacing:0.152256pt;}
.ls186_c00001{letter-spacing:0.153216pt;}
.ls12a_c00001{letter-spacing:0.153600pt;}
.ls37c_c00001{letter-spacing:0.154880pt;}
.ls204_c00001{letter-spacing:0.156576pt;}
.ls163_c00001{letter-spacing:0.157472pt;}
.ls67_c00001{letter-spacing:0.158112pt;}
.ls55_c00001{letter-spacing:0.158400pt;}
.ls2c0_c00001{letter-spacing:0.159360pt;}
.ls40_c00001{letter-spacing:0.160000pt;}
.ls1a_c00001{letter-spacing:0.160320pt;}
.lse9_c00001{letter-spacing:0.160992pt;}
.ls52_c00001{letter-spacing:0.161728pt;}
.ls139_c00001{letter-spacing:0.163200pt;}
.lsf4_c00001{letter-spacing:0.165664pt;}
.ls15b_c00001{letter-spacing:0.165984pt;}
.ls150_c00001{letter-spacing:0.170240pt;}
.ls22b_c00001{letter-spacing:0.171008pt;}
.ls2e5_c00001{letter-spacing:0.171520pt;}
.ls12c_c00001{letter-spacing:0.172800pt;}
.ls164_c00001{letter-spacing:0.174496pt;}
.ls3e3_c00001{letter-spacing:0.175680pt;}
.ls189_c00001{letter-spacing:0.178752pt;}
.ls286_c00001{letter-spacing:0.179200pt;}
.ls331_c00001{letter-spacing:0.181536pt;}
.ls254_c00001{letter-spacing:0.181696pt;}
.ls182_c00001{letter-spacing:0.183008pt;}
.ls145_c00001{letter-spacing:0.187040pt;}
.ls74_c00001{letter-spacing:0.187264pt;}
.ls24d_c00001{letter-spacing:0.187392pt;}
.ls1c7_c00001{letter-spacing:0.192000pt;}
.ls1cf_c00001{letter-spacing:0.192384pt;}
.ls153_c00001{letter-spacing:0.200032pt;}
.ls138_c00001{letter-spacing:0.201600pt;}
.ls285_c00001{letter-spacing:0.204800pt;}
.ls1d0_c00001{letter-spacing:0.204960pt;}
.ls1c4_c00001{letter-spacing:0.206400pt;}
.ls28f_c00001{letter-spacing:0.212480pt;}
.ls71_c00001{letter-spacing:0.212800pt;}
.ls30a_c00001{letter-spacing:0.213600pt;}
.ls288_c00001{letter-spacing:0.213760pt;}
.ls300_c00001{letter-spacing:0.222144pt;}
.ls380_c00001{letter-spacing:0.224000pt;}
.ls2dd_c00001{letter-spacing:0.224640pt;}
.ls190_c00001{letter-spacing:0.225568pt;}
.ls18b_c00001{letter-spacing:0.229824pt;}
.ls2df_c00001{letter-spacing:0.235520pt;}
.ls325_c00001{letter-spacing:0.238336pt;}
.lsdf_c00001{letter-spacing:0.240000pt;}
.ls35a_c00001{letter-spacing:0.245952pt;}
.ls122_c00001{letter-spacing:0.256000pt;}
.ls38c_c00001{letter-spacing:0.265600pt;}
.ls20f_c00001{letter-spacing:0.268800pt;}
.ls184_c00001{letter-spacing:0.272960pt;}
.ls375_c00001{letter-spacing:0.277760pt;}
.ls1c5_c00001{letter-spacing:0.288000pt;}
.ls2ce_c00001{letter-spacing:0.294400pt;}
.ls31a_c00001{letter-spacing:0.298656pt;}
.ls2a1_c00001{letter-spacing:0.299520pt;}
.ls2ea_c00001{letter-spacing:0.300160pt;}
.ls14c_c00001{letter-spacing:0.302176pt;}
.ls1c9_c00001{letter-spacing:0.302400pt;}
.ls28e_c00001{letter-spacing:0.318720pt;}
.ls104_c00001{letter-spacing:0.320000pt;}
.ls2bd_c00001{letter-spacing:0.320640pt;}
.ls32e_c00001{letter-spacing:0.327712pt;}
.ls3c1_c00001{letter-spacing:0.328320pt;}
.ls3a0_c00001{letter-spacing:0.336000pt;}
.ls160_c00001{letter-spacing:0.336224pt;}
.ls2b6_c00001{letter-spacing:0.340480pt;}
.ls2e9_c00001{letter-spacing:0.343040pt;}
.ls3a4_c00001{letter-spacing:0.352000pt;}
.ls37e_c00001{letter-spacing:0.374400pt;}
.ls373_c00001{letter-spacing:0.384000pt;}
.lsbd_c00001{letter-spacing:0.398208pt;}
.lsfa_c00001{letter-spacing:0.400800pt;}
.ls3c9_c00001{letter-spacing:0.404064pt;}
.ls2c3_c00001{letter-spacing:0.427520pt;}
.ls155_c00001{letter-spacing:0.432448pt;}
.ls389_c00001{letter-spacing:0.448000pt;}
.ls80_c00001{letter-spacing:0.478848pt;}
.ls7e_c00001{letter-spacing:0.480928pt;}
.ls362_c00001{letter-spacing:0.485632pt;}
.ls2e0_c00001{letter-spacing:0.504320pt;}
.ls2ed_c00001{letter-spacing:0.510720pt;}
.ls378_c00001{letter-spacing:0.512000pt;}
.ls2d6_c00001{letter-spacing:0.529920pt;}
.ls229_c00001{letter-spacing:0.559424pt;}
.ls119_c00001{letter-spacing:0.576000pt;}
.ls181_c00001{letter-spacing:0.621376pt;}
.ls121_c00001{letter-spacing:0.640000pt;}
.ls392_c00001{letter-spacing:0.647680pt;}
.ls2e8_c00001{letter-spacing:0.704000pt;}
.ls157_c00001{letter-spacing:0.753056pt;}
.ls383_c00001{letter-spacing:0.796800pt;}
.ls3bb_c00001{letter-spacing:0.828160pt;}
.ls151_c00001{letter-spacing:0.940576pt;}
.ls1e9_c00001{letter-spacing:0.960000pt;}
.ls28a_c00001{letter-spacing:0.973440pt;}
.ls3b3_c00001{letter-spacing:1.059840pt;}
.ls37d_c00001{letter-spacing:1.062400pt;}
.ls1ee_c00001{letter-spacing:1.200224pt;}
.ls298_c00001{letter-spacing:1.280000pt;}
.ls3a2_c00001{letter-spacing:1.295360pt;}
.ls233_c00001{letter-spacing:1.520224pt;}
.ls1b6_c00001{letter-spacing:1.600000pt;}
.ls377_c00001{letter-spacing:1.920000pt;}
.ls1e8_c00001{letter-spacing:2.160224pt;}
.ls31d_c00001{letter-spacing:2.240000pt;}
.ls299_c00001{letter-spacing:2.560000pt;}
.ls253_c00001{letter-spacing:2.798080pt;}
.ls1d2_c00001{letter-spacing:2.880000pt;}
.ls262_c00001{letter-spacing:3.117696pt;}
.ls1e7_c00001{letter-spacing:3.119424pt;}
.ls252_c00001{letter-spacing:3.120224pt;}
.ls3b0_c00001{letter-spacing:3.179520pt;}
.ls211_c00001{letter-spacing:3.200000pt;}
.ls228_c00001{letter-spacing:3.440224pt;}
.ls124_c00001{letter-spacing:3.761952pt;}
.ls275_c00001{letter-spacing:3.840000pt;}
.ls1db_c00001{letter-spacing:4.081952pt;}
.ls32b_c00001{letter-spacing:4.160000pt;}
.ls1ea_c00001{letter-spacing:4.401536pt;}
.ls3b4_c00001{letter-spacing:4.416000pt;}
.ls3b2_c00001{letter-spacing:4.474880pt;}
.ls1d3_c00001{letter-spacing:4.480000pt;}
.ls34_c00001{letter-spacing:4.800000pt;}
.ls251_c00001{letter-spacing:5.040224pt;}
.ls399_c00001{letter-spacing:5.063680pt;}
.ls29f_c00001{letter-spacing:5.120000pt;}
.ls3b1_c00001{letter-spacing:5.122560pt;}
.ls23e_c00001{letter-spacing:5.360000pt;}
.ls2d3_c00001{letter-spacing:5.760000pt;}
.ls2f1_c00001{letter-spacing:5.770240pt;}
.ls1c1_c00001{letter-spacing:5.999424pt;}
.ls281_c00001{letter-spacing:6.080000pt;}
.ls14a_c00001{letter-spacing:6.320224pt;}
.ls2db_c00001{letter-spacing:6.359040pt;}
.ls2cf_c00001{letter-spacing:6.400000pt;}
.ls3a5_c00001{letter-spacing:6.417920pt;}
.ls3ad_c00001{letter-spacing:6.830080pt;}
.ls296_c00001{letter-spacing:7.040000pt;}
.ls3ae_c00001{letter-spacing:7.065600pt;}
.ls1dc_c00001{letter-spacing:7.281952pt;}
.ls29a_c00001{letter-spacing:7.680000pt;}
.ls341_c00001{letter-spacing:7.759200pt;}
.ls297_c00001{letter-spacing:8.320000pt;}
.ls2b9_c00001{letter-spacing:8.960000pt;}
.ls2cc_c00001{letter-spacing:9.600000pt;}
.ls2fc_c00001{letter-spacing:9.760000pt;}
.ls3bc_c00001{letter-spacing:9.774080pt;}
.ls2c2_c00001{letter-spacing:10.240000pt;}
.ls2d7_c00001{letter-spacing:10.880000pt;}
.ls29e_c00001{letter-spacing:11.520000pt;}
.ls3b9_c00001{letter-spacing:11.686400pt;}
.ls1ef_c00001{letter-spacing:11.759424pt;}
.ls1d8_c00001{letter-spacing:12.081952pt;}
.ls2f5_c00001{letter-spacing:12.160000pt;}
.ls3ba_c00001{letter-spacing:12.323840pt;}
.lsed_c00001{letter-spacing:12.480000pt;}
.ls1d9_c00001{letter-spacing:12.480533pt;}
.lsa0_c00001{letter-spacing:12.800000pt;}
.ls38d_c00001{letter-spacing:13.440000pt;}
.ls1d1_c00001{letter-spacing:13.680224pt;}
.ls2e1_c00001{letter-spacing:14.072320pt;}
.ls284_c00001{letter-spacing:14.080000pt;}
.ls210_c00001{letter-spacing:14.640224pt;}
.ls2e2_c00001{letter-spacing:14.720000pt;}
.ls37b_c00001{letter-spacing:15.360000pt;}
.ls3b5_c00001{letter-spacing:15.367680pt;}
.ls2d2_c00001{letter-spacing:16.000000pt;}
.ls1e0_c00001{letter-spacing:16.480000pt;}
.ls2bc_c00001{letter-spacing:16.640000pt;}
.ls2f6_c00001{letter-spacing:16.663040pt;}
.ls17e_c00001{letter-spacing:16.960000pt;}
.ls29d_c00001{letter-spacing:17.280000pt;}
.ls2a0_c00001{letter-spacing:17.746560pt;}
.ls1f2_c00001{letter-spacing:17.840000pt;}
.ls29b_c00001{letter-spacing:17.920000pt;}
.ls38e_c00001{letter-spacing:19.200000pt;}
.ls313_c00001{letter-spacing:19.520000pt;}
.ls2b7_c00001{letter-spacing:19.840000pt;}
.ls3a3_c00001{letter-spacing:20.480000pt;}
.ls381_c00001{letter-spacing:21.120000pt;}
.ls398_c00001{letter-spacing:21.280000pt;}
.ls25a_c00001{letter-spacing:21.760000pt;}
.ls1e6_c00001{letter-spacing:21.840000pt;}
.ls388_c00001{letter-spacing:22.400000pt;}
.ls25b_c00001{letter-spacing:22.641152pt;}
.ls3c6_c00001{letter-spacing:23.040000pt;}
.ls2d0_c00001{letter-spacing:23.680000pt;}
.ls319_c00001{letter-spacing:24.320000pt;}
.ls2f9_c00001{letter-spacing:24.960000pt;}
.ls3c5_c00001{letter-spacing:25.088000pt;}
.ls282_c00001{letter-spacing:25.280000pt;}
.ls354_c00001{letter-spacing:25.600000pt;}
.ls39d_c00001{letter-spacing:25.612800pt;}
.ls14b_c00001{letter-spacing:26.480224pt;}
.ls113_c00001{letter-spacing:26.560000pt;}
.ls1b5_c00001{letter-spacing:27.119232pt;}
.ls29c_c00001{letter-spacing:27.520000pt;}
.ls38b_c00001{letter-spacing:28.160000pt;}
.ls3c4_c00001{letter-spacing:28.288000pt;}
.ls278_c00001{letter-spacing:29.120000pt;}
.ls2d1_c00001{letter-spacing:30.720000pt;}
.ls394_c00001{letter-spacing:31.360000pt;}
.ls283_c00001{letter-spacing:32.320000pt;}
.ls27f_c00001{letter-spacing:32.640000pt;}
.ls3d6_c00001{letter-spacing:32.768000pt;}
.ls3a1_c00001{letter-spacing:33.267200pt;}
.ls27e_c00001{letter-spacing:33.280000pt;}
.ls2f4_c00001{letter-spacing:33.600000pt;}
.ls324_c00001{letter-spacing:33.920000pt;}
.lsa2_c00001{letter-spacing:34.560000pt;}
.ls3ac_c00001{letter-spacing:35.445760pt;}
.ls3ca_c00001{letter-spacing:36.160000pt;}
.ls3d5_c00001{letter-spacing:36.608000pt;}
.ls48_c00001{letter-spacing:37.120000pt;}
.ls390_c00001{letter-spacing:37.760000pt;}
.ls2b8_c00001{letter-spacing:38.400000pt;}
.ls34e_c00001{letter-spacing:44.560000pt;}
.lseb_c00001{letter-spacing:45.120000pt;}
.ls34d_c00001{letter-spacing:45.913600pt;}
.ls359_c00001{letter-spacing:47.918720pt;}
.ls274_c00001{letter-spacing:48.768000pt;}
.ls365_c00001{letter-spacing:49.524704pt;}
.ls103_c00001{letter-spacing:49.641312pt;}
.ls41b_c00001{letter-spacing:50.159648pt;}
.ls407_c00001{letter-spacing:50.320000pt;}
.lsea_c00001{letter-spacing:50.477920pt;}
.ls38f_c00001{letter-spacing:50.560000pt;}
.ls3d7_c00001{letter-spacing:51.600000pt;}
.ls33a_c00001{letter-spacing:51.762976pt;}
.ls2fa_c00001{letter-spacing:51.840000pt;}
.lsac_c00001{letter-spacing:52.082976pt;}
.ls35f_c00001{letter-spacing:52.880000pt;}
.ls5d_c00001{letter-spacing:53.520512pt;}
.ls411_c00001{letter-spacing:55.119840pt;}
.ls33d_c00001{letter-spacing:55.923040pt;}
.ls41e_c00001{letter-spacing:56.241312pt;}
.ls39b_c00001{letter-spacing:56.320000pt;}
.ls268_c00001{letter-spacing:56.502112pt;}
.ls40c_c00001{letter-spacing:56.558720pt;}
.ls35b_c00001{letter-spacing:56.878720pt;}
.ls11b_c00001{letter-spacing:56.960000pt;}
.ls222_c00001{letter-spacing:57.280000pt;}
.ls3ce_c00001{letter-spacing:57.440000pt;}
.ls3cd_c00001{letter-spacing:57.760000pt;}
.ls37a_c00001{letter-spacing:58.225920pt;}
.ls23d_c00001{letter-spacing:59.200000pt;}
.ls72_c00001{letter-spacing:59.520000pt;}
.ls3a8_c00001{letter-spacing:59.639040pt;}
.ls100_c00001{letter-spacing:59.840000pt;}
.ls23c_c00001{letter-spacing:61.440000pt;}
.ls2a8_c00001{letter-spacing:62.400000pt;}
.ls32c_c00001{letter-spacing:62.959584pt;}
.ls405_c00001{letter-spacing:63.120000pt;}
.ls21b_c00001{letter-spacing:63.360000pt;}
.ls2bb_c00001{letter-spacing:63.599360pt;}
.ls173_c00001{letter-spacing:63.680000pt;}
.lsd8_c00001{letter-spacing:64.000000pt;}
.ls276_c00001{letter-spacing:64.650304pt;}
.ls2cb_c00001{letter-spacing:64.800000pt;}
.ls2ba_c00001{letter-spacing:64.810240pt;}
.lsf9_c00001{letter-spacing:65.200000pt;}
.ls3d3_c00001{letter-spacing:65.360512pt;}
.ls280_c00001{letter-spacing:65.600000pt;}
.ls81_c00001{letter-spacing:65.920000pt;}
.lsd7_c00001{letter-spacing:66.639392pt;}
.ls321_c00001{letter-spacing:66.960512pt;}
.ls4a_c00001{letter-spacing:67.040000pt;}
.ls3e9_c00001{letter-spacing:67.280000pt;}
.ls88_c00001{letter-spacing:67.280512pt;}
.ls3db_c00001{letter-spacing:67.920000pt;}
.ls3d8_c00001{letter-spacing:69.840000pt;}
.ls13f_c00001{letter-spacing:70.400000pt;}
.ls149_c00001{letter-spacing:70.480000pt;}
.ls356_c00001{letter-spacing:70.799712pt;}
.ls28c_c00001{letter-spacing:71.182080pt;}
.ls7f_c00001{letter-spacing:71.277920pt;}
.lscc_c00001{letter-spacing:71.439552pt;}
.ls393_c00001{letter-spacing:71.687680pt;}
.ls36d_c00001{letter-spacing:72.080000pt;}
.ls327_c00001{letter-spacing:72.245568pt;}
.ls402_c00001{letter-spacing:72.565568pt;}
.ls26e_c00001{letter-spacing:74.480000pt;}
.ls400_c00001{letter-spacing:74.799584pt;}
.ls3cb_c00001{letter-spacing:75.360000pt;}
.ls314_c00001{letter-spacing:75.648000pt;}
.ls320_c00001{letter-spacing:75.759584pt;}
.ls3d1_c00001{letter-spacing:76.245152pt;}
.ls3ef_c00001{letter-spacing:76.880000pt;}
.ls35e_c00001{letter-spacing:77.041312pt;}
.ls368_c00001{letter-spacing:77.194752pt;}
.ls16f_c00001{letter-spacing:78.400000pt;}
.ls346_c00001{letter-spacing:79.919520pt;}
.ls3c3_c00001{letter-spacing:80.000000pt;}
.ls406_c00001{letter-spacing:80.080000pt;}
.lse6_c00001{letter-spacing:80.237920pt;}
.ls363_c00001{letter-spacing:80.525440pt;}
.ls317_c00001{letter-spacing:82.048000pt;}
.ls36f_c00001{letter-spacing:82.640000pt;}
.ls3dd_c00001{letter-spacing:82.960000pt;}
.ls361_c00001{letter-spacing:83.124704pt;}
.ls334_c00001{letter-spacing:83.759584pt;}
.ls31e_c00001{letter-spacing:84.079584pt;}
.ls315_c00001{letter-spacing:84.928000pt;}
.ls2eb_c00001{letter-spacing:85.280000pt;}
.ls244_c00001{letter-spacing:85.920000pt;}
.ls25d_c00001{letter-spacing:86.400000pt;}
.ls21a_c00001{letter-spacing:86.720000pt;}
.ls3ed_c00001{letter-spacing:87.120000pt;}
.ls11e_c00001{letter-spacing:88.640000pt;}
.ls316_c00001{letter-spacing:91.008000pt;}
.ls414_c00001{letter-spacing:91.280000pt;}
.ls263_c00001{letter-spacing:91.840000pt;}
.ls24a_c00001{letter-spacing:92.960000pt;}
.ls172_c00001{letter-spacing:93.120000pt;}
.ls417_c00001{letter-spacing:93.520000pt;}
.ls419_c00001{letter-spacing:96.400000pt;}
.ls416_c00001{letter-spacing:97.040000pt;}
.ls318_c00001{letter-spacing:99.238336pt;}
.ls3e4_c00001{letter-spacing:99.280192pt;}
.lsae_c00001{letter-spacing:99.920000pt;}
.ls1d6_c00001{letter-spacing:100.160000pt;}
.ls1f4_c00001{letter-spacing:100.641216pt;}
.ls11c_c00001{letter-spacing:101.120000pt;}
.ls3de_c00001{letter-spacing:102.640000pt;}
.ls261_c00001{letter-spacing:102.878208pt;}
.ls3f5_c00001{letter-spacing:102.880000pt;}
.ls338_c00001{letter-spacing:103.280000pt;}
.lsb3_c00001{letter-spacing:103.438464pt;}
.ls3e6_c00001{letter-spacing:106.160000pt;}
.ls7d_c00001{letter-spacing:106.480000pt;}
.ls41d_c00001{letter-spacing:110.880000pt;}
.ls226_c00001{letter-spacing:111.202560pt;}
.ls68_c00001{letter-spacing:111.440032pt;}
.ls36b_c00001{letter-spacing:112.400000pt;}
.ls11d_c00001{letter-spacing:114.240000pt;}
.ls2aa_c00001{letter-spacing:114.638592pt;}
.ls248_c00001{letter-spacing:115.360000pt;}
.ls221_c00001{letter-spacing:115.679424pt;}
.ls24b_c00001{letter-spacing:116.000000pt;}
.ls1e1_c00001{letter-spacing:116.001504pt;}
.ls179_c00001{letter-spacing:116.639872pt;}
.ls3e0_c00001{letter-spacing:117.840000pt;}
.ls36e_c00001{letter-spacing:118.160000pt;}
.ls178_c00001{letter-spacing:119.198880pt;}
.ls3f7_c00001{letter-spacing:121.760000pt;}
.ls140_c00001{letter-spacing:124.480000pt;}
.ls410_c00001{letter-spacing:126.800000pt;}
.ls3da_c00001{letter-spacing:130.320000pt;}
.ls247_c00001{letter-spacing:131.920000pt;}
.ls20a_c00001{letter-spacing:132.800000pt;}
.ls3a6_c00001{letter-spacing:133.280000pt;}
.ls1b7_c00001{letter-spacing:134.080000pt;}
.ls2ec_c00001{letter-spacing:140.320000pt;}
.ls1ed_c00001{letter-spacing:140.639264pt;}
.ls1ec_c00001{letter-spacing:140.640896pt;}
.ls33b_c00001{letter-spacing:140.720000pt;}
.ls401_c00001{letter-spacing:144.400000pt;}
.ls1f3_c00001{letter-spacing:144.479232pt;}
.ls40e_c00001{letter-spacing:146.960000pt;}
.ls36a_c00001{letter-spacing:147.520000pt;}
.lsbb_c00001{letter-spacing:148.085568pt;}
.ls3e2_c00001{letter-spacing:148.240000pt;}
.ls115_c00001{letter-spacing:148.720000pt;}
.ls24c_c00001{letter-spacing:152.080000pt;}
.ls1d7_c00001{letter-spacing:152.320000pt;}
.ls1de_c00001{letter-spacing:152.718624pt;}
.ls1b8_c00001{letter-spacing:153.600000pt;}
.ls39f_c00001{letter-spacing:156.149760pt;}
.ls1df_c00001{letter-spacing:156.560160pt;}
.ls34c_c00001{letter-spacing:157.197440pt;}
.ls3ee_c00001{letter-spacing:158.482400pt;}
.ls225_c00001{letter-spacing:159.517440pt;}
.ls1e2_c00001{letter-spacing:159.839520pt;}
.ls249_c00001{letter-spacing:159.840000pt;}
.ls370_c00001{letter-spacing:161.360000pt;}
.ls28d_c00001{letter-spacing:162.030080pt;}
.ls206_c00001{letter-spacing:162.240000pt;}
.ls40b_c00001{letter-spacing:163.279904pt;}
.ls37f_c00001{letter-spacing:164.832000pt;}
.ls34b_c00001{letter-spacing:165.196736pt;}
.ls245_c00001{letter-spacing:166.800000pt;}
.ls31b_c00001{letter-spacing:172.800000pt;}
.ls289_c00001{letter-spacing:173.127680pt;}
.ls3fa_c00001{letter-spacing:182.159104pt;}
.ls94_c00001{letter-spacing:186.560000pt;}
.ls366_c00001{letter-spacing:192.399840pt;}
.ls36c_c00001{letter-spacing:192.720000pt;}
.ls403_c00001{letter-spacing:197.280000pt;}
.ls3e7_c00001{letter-spacing:197.840576pt;}
.ls3ec_c00001{letter-spacing:199.117184pt;}
.ls1dd_c00001{letter-spacing:200.081952pt;}
.ls39e_c00001{letter-spacing:203.489280pt;}
.ls369_c00001{letter-spacing:205.440000pt;}
.ls348_c00001{letter-spacing:205.837376pt;}
.ls1cc_c00001{letter-spacing:206.800000pt;}
.ls367_c00001{letter-spacing:211.917888pt;}
.ls10b_c00001{letter-spacing:216.240000pt;}
.ls2fe_c00001{letter-spacing:222.880000pt;}
.ls349_c00001{letter-spacing:227.282048pt;}
.ls3eb_c00001{letter-spacing:232.074752pt;}
.lse0_c00001{letter-spacing:241.681856pt;}
.lsbc_c00001{letter-spacing:279.761184pt;}
.ls17d_c00001{letter-spacing:282.800000pt;}
.ls347_c00001{letter-spacing:290.638112pt;}
.ls3f8_c00001{letter-spacing:314.641184pt;}
.ls1e3_c00001{letter-spacing:318.880000pt;}
.ls2f2_c00001{letter-spacing:326.560000pt;}
.ls1ce_c00001{letter-spacing:326.801632pt;}
.ls1da_c00001{letter-spacing:340.480000pt;}
.ls335_c00001{letter-spacing:346.321184pt;}
.ls3e8_c00001{letter-spacing:347.279840pt;}
.ls1e5_c00001{letter-spacing:356.960000pt;}
.ls345_c00001{letter-spacing:359.118176pt;}
.ls25f_c00001{letter-spacing:361.600000pt;}
.ls123_c00001{letter-spacing:363.520000pt;}
.ls3ea_c00001{letter-spacing:366.797888pt;}
.ls355_c00001{letter-spacing:375.438752pt;}
.ls372_c00001{letter-spacing:390.400000pt;}
.ls1e4_c00001{letter-spacing:392.800000pt;}
.ls148_c00001{letter-spacing:395.520000pt;}
.lsab_c00001{letter-spacing:400.401344pt;}
.ls120_c00001{letter-spacing:406.080000pt;}
.ls3f6_c00001{letter-spacing:407.122176pt;}
.ls101_c00001{letter-spacing:408.320000pt;}
.ls10c_c00001{letter-spacing:410.960000pt;}
.ls1f5_c00001{letter-spacing:412.320000pt;}
.ls205_c00001{letter-spacing:413.520000pt;}
.ls260_c00001{letter-spacing:428.160000pt;}
.ls196_c00001{letter-spacing:428.800000pt;}
.ls3f3_c00001{letter-spacing:428.879872pt;}
.ls1a8_c00001{letter-spacing:430.720000pt;}
.ls195_c00001{letter-spacing:432.000000pt;}
.ls339_c00001{letter-spacing:438.481344pt;}
.ls35c_c00001{letter-spacing:456.080704pt;}
.ls34a_c00001{letter-spacing:461.838272pt;}
.ls3a9_c00001{letter-spacing:462.848000pt;}
.lsfe_c00001{letter-spacing:466.880000pt;}
.ls1a2_c00001{letter-spacing:467.840000pt;}
.ls223_c00001{letter-spacing:468.160000pt;}
.ls250_c00001{letter-spacing:469.520000pt;}
.ls109_c00001{letter-spacing:470.880000pt;}
.ls19a_c00001{letter-spacing:471.360000pt;}
.ls22f_c00001{letter-spacing:472.240000pt;}
.ls224_c00001{letter-spacing:479.680000pt;}
.ls1a4_c00001{letter-spacing:485.760000pt;}
.ls227_c00001{letter-spacing:489.600000pt;}
.ls199_c00001{letter-spacing:494.080000pt;}
.ls360_c00001{letter-spacing:495.761984pt;}
.ls19b_c00001{letter-spacing:496.960000pt;}
.ls19f_c00001{letter-spacing:506.880000pt;}
.ls273_c00001{letter-spacing:507.286208pt;}
.ls25e_c00001{letter-spacing:509.120000pt;}
.ls7a_c00001{letter-spacing:510.800000pt;}
.ls287_c00001{letter-spacing:520.320000pt;}
.ls1a0_c00001{letter-spacing:526.400000pt;}
.ls21d_c00001{letter-spacing:528.960000pt;}
.ls271_c00001{letter-spacing:532.160000pt;}
.ls198_c00001{letter-spacing:533.120000pt;}
.ls19c_c00001{letter-spacing:537.920000pt;}
.ls16e_c00001{letter-spacing:538.160000pt;}
.ls1a1_c00001{letter-spacing:543.040000pt;}
.ls266_c00001{letter-spacing:544.080000pt;}
.ls1a6_c00001{letter-spacing:544.320000pt;}
.ls197_c00001{letter-spacing:546.240000pt;}
.ls1a7_c00001{letter-spacing:551.360000pt;}
.ls25c_c00001{letter-spacing:564.480000pt;}
.ls3f4_c00001{letter-spacing:565.838976pt;}
.ls412_c00001{letter-spacing:569.680704pt;}
.ls269_c00001{letter-spacing:570.240000pt;}
.ls1a3_c00001{letter-spacing:575.360000pt;}
.ls22d_c00001{letter-spacing:591.040000pt;}
.ls39c_c00001{letter-spacing:594.511360pt;}
.ls21e_c00001{letter-spacing:600.320000pt;}
.ls259_c00001{letter-spacing:610.560000pt;}
.ls1a9_c00001{letter-spacing:611.520000pt;}
.ls177_c00001{letter-spacing:613.120000pt;}
.ls21c_c00001{letter-spacing:619.840000pt;}
.ls21f_c00001{letter-spacing:621.760000pt;}
.ls340_c00001{letter-spacing:643.601568pt;}
.ls265_c00001{letter-spacing:644.365440pt;}
.ls174_c00001{letter-spacing:652.800000pt;}
.ls219_c00001{letter-spacing:655.680000pt;}
.ls1a5_c00001{letter-spacing:658.240000pt;}
.ls7b_c00001{letter-spacing:669.522496pt;}
.ls2fb_c00001{letter-spacing:670.240000pt;}
.ls3c7_c00001{letter-spacing:675.200000pt;}
.ls22e_c00001{letter-spacing:685.440000pt;}
.ls3aa_c00001{letter-spacing:699.008000pt;}
.ls1be_c00001{letter-spacing:702.720000pt;}
.ls170_c00001{letter-spacing:703.040000pt;}
.ls19e_c00001{letter-spacing:707.200000pt;}
.ls171_c00001{letter-spacing:710.720000pt;}
.lsd5_c00001{letter-spacing:728.640000pt;}
.ls175_c00001{letter-spacing:730.560000pt;}
.ls87_c00001{letter-spacing:737.280000pt;}
.lscf_c00001{letter-spacing:740.160000pt;}
.ls379_c00001{letter-spacing:740.474880pt;}
.ls234_c00001{letter-spacing:741.120000pt;}
.ls1bf_c00001{letter-spacing:746.880000pt;}
.lsce_c00001{letter-spacing:750.080000pt;}
.ls92_c00001{letter-spacing:776.320000pt;}
.ls89_c00001{letter-spacing:794.560000pt;}
.ls1b9_c00001{letter-spacing:815.360000pt;}
.lsd1_c00001{letter-spacing:818.560000pt;}
.ls19d_c00001{letter-spacing:821.440000pt;}
.ls1c0_c00001{letter-spacing:828.480000pt;}
.ls8f_c00001{letter-spacing:845.120000pt;}
.ls342_c00001{letter-spacing:855.440096pt;}
.ls10d_c00001{letter-spacing:856.640000pt;}
.ls1ba_c00001{letter-spacing:859.200000pt;}
.ls1bc_c00001{letter-spacing:861.120000pt;}
.ls1f8_c00001{letter-spacing:862.000000pt;}
.ls1f1_c00001{letter-spacing:862.320000pt;}
.lsd9_c00001{letter-spacing:871.360000pt;}
.ls8b_c00001{letter-spacing:882.240000pt;}
.ls8d_c00001{letter-spacing:884.160000pt;}
.ls295_c00001{letter-spacing:885.120000pt;}
.ls3ab_c00001{letter-spacing:888.480000pt;}
.ls176_c00001{letter-spacing:888.640000pt;}
.lsd4_c00001{letter-spacing:890.240000pt;}
.ls1b1_c00001{letter-spacing:892.160000pt;}
.ls409_c00001{letter-spacing:893.520000pt;}
.ls1bd_c00001{letter-spacing:896.640000pt;}
.lsd2_c00001{letter-spacing:909.760000pt;}
.lsd0_c00001{letter-spacing:911.360000pt;}
.ls9a_c00001{letter-spacing:915.200000pt;}
.ls371_c00001{letter-spacing:921.839904pt;}
.ls8a_c00001{letter-spacing:934.400000pt;}
.ls9b_c00001{letter-spacing:949.440000pt;}
.ls220_c00001{letter-spacing:950.720000pt;}
.ls8c_c00001{letter-spacing:957.440000pt;}
.ls96_c00001{letter-spacing:962.240000pt;}
.ls8e_c00001{letter-spacing:962.560000pt;}
.ls3d0_c00001{letter-spacing:964.880000pt;}
.lsd3_c00001{letter-spacing:974.720000pt;}
.ls302_c00001{letter-spacing:985.921792pt;}
.ls3c2_c00001{letter-spacing:1015.680000pt;}
.ls1cd_c00001{letter-spacing:1018.560000pt;}
.ls99_c00001{letter-spacing:1032.640000pt;}
.ls3e1_c00001{letter-spacing:1040.720000pt;}
.ls1b0_c00001{letter-spacing:1053.440000pt;}
.ls1ab_c00001{letter-spacing:1066.240000pt;}
.ls212_c00001{letter-spacing:1066.481248pt;}
.ls20d_c00001{letter-spacing:1068.480000pt;}
.lscd_c00001{letter-spacing:1074.240000pt;}
.ls336_c00001{letter-spacing:1086.162368pt;}
.ls95_c00001{letter-spacing:1094.400000pt;}
.ls98_c00001{letter-spacing:1099.200000pt;}
.ls97_c00001{letter-spacing:1104.320000pt;}
.ls3a7_c00001{letter-spacing:1106.742400pt;}
.ls209_c00001{letter-spacing:1108.160000pt;}
.ls9d_c00001{letter-spacing:1112.320000pt;}
.ls28b_c00001{letter-spacing:1112.641920pt;}
.ls3c8_c00001{letter-spacing:1114.738560pt;}
.ls310_c00001{letter-spacing:1117.760000pt;}
.ls279_c00001{letter-spacing:1119.122592pt;}
.ls90_c00001{letter-spacing:1120.320000pt;}
.ls1eb_c00001{letter-spacing:1122.080000pt;}
.ls1ae_c00001{letter-spacing:1136.640000pt;}
.ls208_c00001{letter-spacing:1158.400000pt;}
.ls91_c00001{letter-spacing:1166.080000pt;}
.ls235_c00001{letter-spacing:1180.080000pt;}
.ls207_c00001{letter-spacing:1180.800000pt;}
.ls20c_c00001{letter-spacing:1185.920000pt;}
.ls1aa_c00001{letter-spacing:1198.400000pt;}
.ls1ad_c00001{letter-spacing:1203.200000pt;}
.ls1ac_c00001{letter-spacing:1208.320000pt;}
.ls1b4_c00001{letter-spacing:1216.320000pt;}
.ls34f_c00001{letter-spacing:1236.400000pt;}
.ls357_c00001{letter-spacing:1250.640000pt;}
.ls41a_c00001{letter-spacing:1255.120000pt;}
.ls32d_c00001{letter-spacing:1257.840000pt;}
.ls3d4_c00001{letter-spacing:1271.440000pt;}
.ls3cf_c00001{letter-spacing:1272.080000pt;}
.ls26a_c00001{letter-spacing:1278.484704pt;}
.ls3cc_c00001{letter-spacing:1308.240000pt;}
.ls5f_c00001{letter-spacing:1309.200000pt;}
.ls329_c00001{letter-spacing:1309.520000pt;}
.ls328_c00001{letter-spacing:1309.840000pt;}
.ls20b_c00001{letter-spacing:1344.000000pt;}
.ls322_c00001{letter-spacing:1346.960000pt;}
.ls3d2_c00001{letter-spacing:1384.720000pt;}
.ls69_c00001{letter-spacing:1387.440000pt;}
.ls3df_c00001{letter-spacing:1404.400000pt;}
.lsaf_c00001{letter-spacing:1423.120000pt;}
.ls40d_c00001{letter-spacing:1424.480000pt;}
.ls364_c00001{letter-spacing:1439.440000pt;}
.ls230_c00001{letter-spacing:1439.999467pt;}
.ls31f_c00001{letter-spacing:1450.000000pt;}
.lse1_c00001{letter-spacing:1460.880000pt;}
.ls70_c00001{letter-spacing:1462.080000pt;}
.lsda_c00001{letter-spacing:1462.240000pt;}
.ls231_c00001{letter-spacing:1490.559467pt;}
.lse2_c00001{letter-spacing:1498.640000pt;}
.lsbf_c00001{letter-spacing:1519.760000pt;}
.lse8_c00001{letter-spacing:1544.400000pt;}
.ls40f_c00001{letter-spacing:1557.520000pt;}
.ls73_c00001{letter-spacing:1573.840000pt;}
.ls84_c00001{letter-spacing:1574.160000pt;}
.ls9f_c00001{letter-spacing:1574.480000pt;}
.ls33c_c00001{letter-spacing:1577.200000pt;}
.ls2ee_c00001{letter-spacing:1579.840000pt;}
.ls41c_c00001{letter-spacing:1603.280000pt;}
.ls3dc_c00001{letter-spacing:1612.240000pt;}
.ls39a_c00001{letter-spacing:1652.640000pt;}
.ls1b3_c00001{letter-spacing:1675.840000pt;}
.ls40a_c00001{letter-spacing:1677.200000pt;}
.ls1af_c00001{letter-spacing:1685.120000pt;}
.ls408_c00001{letter-spacing:1686.480000pt;}
.ls396_c00001{letter-spacing:1916.960000pt;}
.ls232_c00001{letter-spacing:2002.240000pt;}
.ws14f8_c00001{word-spacing:-136.400000pt;}
.ws8a9_c00001{word-spacing:-130.641504pt;}
.wsf37_c00001{word-spacing:-128.000000pt;}
.ws93c_c00001{word-spacing:-115.281216pt;}
.wsea4_c00001{word-spacing:-96.000000pt;}
.wsea3_c00001{word-spacing:-85.440000pt;}
.wsf09_c00001{word-spacing:-85.120000pt;}
.ws603_c00001{word-spacing:-64.000000pt;}
.ws9de_c00001{word-spacing:-63.929600pt;}
.ws463_c00001{word-spacing:-58.560000pt;}
.wsd9_c00001{word-spacing:-53.440000pt;}
.wsa00_c00001{word-spacing:-53.199520pt;}
.wsed_c00001{word-spacing:-48.000000pt;}
.ws162_c00001{word-spacing:-42.560000pt;}
.ws1396_c00001{word-spacing:-38.608640pt;}
.ws13a0_c00001{word-spacing:-24.288000pt;}
.wsf1d_c00001{word-spacing:-24.000000pt;}
.ws13ac_c00001{word-spacing:-23.712000pt;}
.ws13ad_c00001{word-spacing:-23.616000pt;}
.wseb1_c00001{word-spacing:-21.620480pt;}
.wsecd_c00001{word-spacing:-21.280000pt;}
.wse9d_c00001{word-spacing:-19.019520pt;}
.wsedf_c00001{word-spacing:-18.794880pt;}
.ws8f_c00001{word-spacing:-18.729472pt;}
.wsf05_c00001{word-spacing:-18.720000pt;}
.wsf14_c00001{word-spacing:-18.645120pt;}
.wsec1_c00001{word-spacing:-18.420480pt;}
.wsed4_c00001{word-spacing:-18.120960pt;}
.wsec2_c00001{word-spacing:-18.046080pt;}
.ws13f9_c00001{word-spacing:-17.821440pt;}
.ws13ae_c00001{word-spacing:-16.640000pt;}
.ws139c_c00001{word-spacing:-16.512000pt;}
.ws13f4_c00001{word-spacing:-16.384000pt;}
.wse9a_c00001{word-spacing:-16.256000pt;}
.ws102d_c00001{word-spacing:-16.204800pt;}
.wsf19_c00001{word-spacing:-16.192000pt;}
.wse9c_c00001{word-spacing:-16.128000pt;}
.wsec_c00001{word-spacing:-16.102400pt;}
.wsb7_c00001{word-spacing:-16.089600pt;}
.ws19f_c00001{word-spacing:-16.083200pt;}
.ws91_c00001{word-spacing:-16.076800pt;}
.ws9c2_c00001{word-spacing:-16.070400pt;}
.ws81e_c00001{word-spacing:-16.064000pt;}
.ws9c1_c00001{word-spacing:-16.057600pt;}
.ws3be_c00001{word-spacing:-16.051200pt;}
.ws342_c00001{word-spacing:-16.044800pt;}
.ws361_c00001{word-spacing:-16.038400pt;}
.ws70a_c00001{word-spacing:-16.032000pt;}
.ws4_c00001{word-spacing:-16.025600pt;}
.wsce_c00001{word-spacing:-16.019200pt;}
.ws403_c00001{word-spacing:-16.012800pt;}
.ws81f_c00001{word-spacing:-16.006400pt;}
.ws90_c00001{word-spacing:-16.000000pt;}
.ws305_c00001{word-spacing:-15.993600pt;}
.ws1fa_c00001{word-spacing:-15.987200pt;}
.wseb_c00001{word-spacing:-15.980800pt;}
.ws2a_c00001{word-spacing:-15.974400pt;}
.wsd00_c00001{word-spacing:-15.968000pt;}
.wsd81_c00001{word-spacing:-15.961600pt;}
.ws311_c00001{word-spacing:-15.955200pt;}
.wsca9_c00001{word-spacing:-15.948800pt;}
.ws943_c00001{word-spacing:-15.942400pt;}
.wsb34_c00001{word-spacing:-15.929600pt;}
.wsea5_c00001{word-spacing:-15.923200pt;}
.ws974_c00001{word-spacing:-15.916800pt;}
.wsd0f_c00001{word-spacing:-15.897600pt;}
.wsd10_c00001{word-spacing:-15.878400pt;}
.ws584_c00001{word-spacing:-15.872000pt;}
.ws54b_c00001{word-spacing:-15.865600pt;}
.ws820_c00001{word-spacing:-15.814400pt;}
.wseb2_c00001{word-spacing:-15.808000pt;}
.ws14f1_c00001{word-spacing:-15.756800pt;}
.wse99_c00001{word-spacing:-15.744000pt;}
.ws1397_c00001{word-spacing:-15.713280pt;}
.ws975_c00001{word-spacing:-15.628800pt;}
.ws13a8_c00001{word-spacing:-15.552000pt;}
.ws13ab_c00001{word-spacing:-15.488000pt;}
.wsec0_c00001{word-spacing:-15.296000pt;}
.wsed6_c00001{word-spacing:-15.249920pt;}
.wse9b_c00001{word-spacing:-15.168000pt;}
.wsecf_c00001{word-spacing:-15.104000pt;}
.wsee2_c00001{word-spacing:-15.014400pt;}
.wsf06_c00001{word-spacing:-14.955520pt;}
.wsec4_c00001{word-spacing:-14.837760pt;}
.ws1561_c00001{word-spacing:-14.815680pt;}
.ws130_c00001{word-spacing:-14.798112pt;}
.ws674_c00001{word-spacing:-14.780544pt;}
.ws20e_c00001{word-spacing:-14.774688pt;}
.ws363_c00001{word-spacing:-14.762976pt;}
.ws60e_c00001{word-spacing:-14.757120pt;}
.wsb5f_c00001{word-spacing:-14.751264pt;}
.ws179_c00001{word-spacing:-14.745408pt;}
.ws362_c00001{word-spacing:-14.739552pt;}
.ws365_c00001{word-spacing:-14.733696pt;}
.wsef_c00001{word-spacing:-14.727840pt;}
.wsa0b_c00001{word-spacing:-14.721984pt;}
.wsed5_c00001{word-spacing:-14.720000pt;}
.ws316_c00001{word-spacing:-14.716128pt;}
.ws11b_c00001{word-spacing:-14.710272pt;}
.ws364_c00001{word-spacing:-14.704416pt;}
.ws315_c00001{word-spacing:-14.698560pt;}
.ws152_c00001{word-spacing:-14.692704pt;}
.ws194_c00001{word-spacing:-14.686848pt;}
.ws312_c00001{word-spacing:-14.680992pt;}
.ws151_c00001{word-spacing:-14.675136pt;}
.ws229_c00001{word-spacing:-14.669280pt;}
.ws313_c00001{word-spacing:-14.663424pt;}
.ws114a_c00001{word-spacing:-14.657568pt;}
.wsb6_c00001{word-spacing:-14.651712pt;}
.ws2f7_c00001{word-spacing:-14.645856pt;}
.wsee_c00001{word-spacing:-14.640000pt;}
.ws12a7_c00001{word-spacing:-14.634144pt;}
.ws17a_c00001{word-spacing:-14.628288pt;}
.ws195_c00001{word-spacing:-14.622432pt;}
.ws12a5_c00001{word-spacing:-14.616576pt;}
.ws60d_c00001{word-spacing:-14.610720pt;}
.ws12a6_c00001{word-spacing:-14.604864pt;}
.wsec5_c00001{word-spacing:-14.602240pt;}
.ws314_c00001{word-spacing:-14.599008pt;}
.ws11c_c00001{word-spacing:-14.593152pt;}
.ws1b0_c00001{word-spacing:-14.587296pt;}
.ws14ad_c00001{word-spacing:-14.569728pt;}
.wsee1_c00001{word-spacing:-14.484480pt;}
.wsece_c00001{word-spacing:-14.425600pt;}
.wsf0b_c00001{word-spacing:-14.366720pt;}
.ws13a1_c00001{word-spacing:-14.342400pt;}
.wsf2e_c00001{word-spacing:-14.307840pt;}
.wsee0_c00001{word-spacing:-14.190080pt;}
.wsef8_c00001{word-spacing:-14.072320pt;}
.wsef9_c00001{word-spacing:-13.954560pt;}
.wsf0a_c00001{word-spacing:-13.719040pt;}
.wsf1f_c00001{word-spacing:-13.660160pt;}
.wse90_c00001{word-spacing:-13.598720pt;}
.ws2_c00001{word-spacing:-13.520320pt;}
.wseb4_c00001{word-spacing:-13.492480pt;}
.ws3e2_c00001{word-spacing:-13.488256pt;}
.wsf2d_c00001{word-spacing:-13.424640pt;}
.ws14cd_c00001{word-spacing:-13.424128pt;}
.wse72_c00001{word-spacing:-13.413440pt;}
.wse91_c00001{word-spacing:-13.386240pt;}
.wse62_c00001{word-spacing:-13.381376pt;}
.ws1_c00001{word-spacing:-13.365344pt;}
.ws0_c00001{word-spacing:-13.360000pt;}
.ws149b_c00001{word-spacing:-13.343968pt;}
.wse71_c00001{word-spacing:-13.338624pt;}
.wse70_c00001{word-spacing:-13.333280pt;}
.ws1410_c00001{word-spacing:-13.333120pt;}
.ws12ca_c00001{word-spacing:-13.327936pt;}
.ws3a3_c00001{word-spacing:-13.301216pt;}
.wsde5_c00001{word-spacing:-13.290528pt;}
.ws86e_c00001{word-spacing:-13.285184pt;}
.wsf08_c00001{word-spacing:-13.280000pt;}
.ws5e4_c00001{word-spacing:-13.279840pt;}
.ws1351_c00001{word-spacing:-13.257600pt;}
.wsde6_c00001{word-spacing:-13.253120pt;}
.ws1398_c00001{word-spacing:-13.226880pt;}
.ws86d_c00001{word-spacing:-13.210368pt;}
.ws763_c00001{word-spacing:-13.199680pt;}
.wseb3_c00001{word-spacing:-13.173760pt;}
.ws13f3_c00001{word-spacing:-13.067520pt;}
.ws13a7_c00001{word-spacing:-12.855040pt;}
.ws317_c00001{word-spacing:-12.000000pt;}
.wsebf_c00001{word-spacing:-11.904000pt;}
.ws13a5_c00001{word-spacing:-11.898880pt;}
.wsec3_c00001{word-spacing:-11.808000pt;}
.ws13d6_c00001{word-spacing:-11.184000pt;}
.wsf07_c00001{word-spacing:-10.891520pt;}
.ws153_c00001{word-spacing:-10.801728pt;}
.wsa4d_c00001{word-spacing:-10.746400pt;}
.wse41_c00001{word-spacing:-10.725120pt;}
.ws13af_c00001{word-spacing:-10.720000pt;}
.ws3e1_c00001{word-spacing:-10.712352pt;}
.wsdf7_c00001{word-spacing:-10.703840pt;}
.wse17_c00001{word-spacing:-10.699584pt;}
.wsd58_c00001{word-spacing:-10.695328pt;}
.wsca8_c00001{word-spacing:-10.691072pt;}
.wse16_c00001{word-spacing:-10.686816pt;}
.wsdf6_c00001{word-spacing:-10.682560pt;}
.wse40_c00001{word-spacing:-10.678304pt;}
.ws13a6_c00001{word-spacing:-10.677120pt;}
.wsd57_c00001{word-spacing:-10.674048pt;}
.wsb17_c00001{word-spacing:-10.665536pt;}
.wse42_c00001{word-spacing:-10.657024pt;}
.ws3e0_c00001{word-spacing:-10.644256pt;}
.ws3a4_c00001{word-spacing:-10.640000pt;}
.ws330_c00001{word-spacing:-10.635744pt;}
.wse43_c00001{word-spacing:-10.601696pt;}
.ws8da_c00001{word-spacing:-10.554880pt;}
.ws1404_c00001{word-spacing:-10.548480pt;}
.ws14ce_c00001{word-spacing:-10.495296pt;}
.ws964_c00001{word-spacing:-10.478272pt;}
.wsb5e_c00001{word-spacing:-9.520992pt;}
.wsbcc_c00001{word-spacing:-9.461088pt;}
.ws14f2_c00001{word-spacing:-9.412416pt;}
.ws1321_c00001{word-spacing:-9.374976pt;}
.ws299_c00001{word-spacing:-9.360000pt;}
.wsa44_c00001{word-spacing:-9.300096pt;}
.ws178_c00001{word-spacing:-8.070400pt;}
.ws1306_c00001{word-spacing:-7.878400pt;}
.wsf18_c00001{word-spacing:-1.123200pt;}
.wsed1_c00001{word-spacing:-0.942080pt;}
.wsf11_c00001{word-spacing:-0.898560pt;}
.wse98_c00001{word-spacing:-0.796800pt;}
.wsed2_c00001{word-spacing:-0.765440pt;}
.ws13c5_c00001{word-spacing:-0.748800pt;}
.wsf1e_c00001{word-spacing:-0.748160pt;}
.wsecc_c00001{word-spacing:-0.647680pt;}
.wseb9_c00001{word-spacing:-0.641280pt;}
.wsf15_c00001{word-spacing:-0.640000pt;}
.wsec8_c00001{word-spacing:-0.637440pt;}
.ws13a3_c00001{word-spacing:-0.584320pt;}
.ws122a_c00001{word-spacing:-0.561792pt;}
.ws36b_c00001{word-spacing:-0.561600pt;}
.wseb8_c00001{word-spacing:-0.534400pt;}
.wsede_c00001{word-spacing:-0.529920pt;}
.ws13b1_c00001{word-spacing:-0.524160pt;}
.ws14fb_c00001{word-spacing:-0.516672pt;}
.wsef7_c00001{word-spacing:-0.478080pt;}
.ws1412_c00001{word-spacing:-0.471680pt;}
.wsf57_c00001{word-spacing:-0.462272pt;}
.wse9e_c00001{word-spacing:-0.449280pt;}
.ws137_c00001{word-spacing:-0.400800pt;}
.ws10b1_c00001{word-spacing:-0.398208pt;}
.wsdcf_c00001{word-spacing:-0.390400pt;}
.ws4bf_c00001{word-spacing:-0.384000pt;}
.wsc07_c00001{word-spacing:-0.380640pt;}
.ws24e_c00001{word-spacing:-0.379424pt;}
.ws6bb_c00001{word-spacing:-0.378784pt;}
.ws28a_c00001{word-spacing:-0.377600pt;}
.ws10ad_c00001{word-spacing:-0.374080pt;}
.wsed8_c00001{word-spacing:-0.371840pt;}
.ws360_c00001{word-spacing:-0.371200pt;}
.wsea_c00001{word-spacing:-0.364800pt;}
.ws111_c00001{word-spacing:-0.363392pt;}
.wse19_c00001{word-spacing:-0.358400pt;}
.wse2_c00001{word-spacing:-0.358048pt;}
.wsf1c_c00001{word-spacing:-0.353280pt;}
.ws11ad_c00001{word-spacing:-0.352704pt;}
.ws569_c00001{word-spacing:-0.352000pt;}
.wsfa0_c00001{word-spacing:-0.351360pt;}
.ws7d8_c00001{word-spacing:-0.350400pt;}
.wsbd_c00001{word-spacing:-0.345600pt;}
.ws24c_c00001{word-spacing:-0.342016pt;}
.wsed0_c00001{word-spacing:-0.340480pt;}
.ws4e9_c00001{word-spacing:-0.339200pt;}
.wse95_c00001{word-spacing:-0.337920pt;}
.ws3a8_c00001{word-spacing:-0.336672pt;}
.ws151e_c00001{word-spacing:-0.333792pt;}
.ws167_c00001{word-spacing:-0.332800pt;}
.ws177_c00001{word-spacing:-0.326400pt;}
.ws3a9_c00001{word-spacing:-0.325984pt;}
.ws793_c00001{word-spacing:-0.320640pt;}
.ws226_c00001{word-spacing:-0.320000pt;}
.wsf0d_c00001{word-spacing:-0.318720pt;}
.ws3e7_c00001{word-spacing:-0.315296pt;}
.ws5af_c00001{word-spacing:-0.313600pt;}
.wsa_c00001{word-spacing:-0.309952pt;}
.wsa64_c00001{word-spacing:-0.307200pt;}
.ws2e7_c00001{word-spacing:-0.304608pt;}
.ws1217_c00001{word-spacing:-0.304512pt;}
.wscb_c00001{word-spacing:-0.300800pt;}
.ws139e_c00001{word-spacing:-0.299520pt;}
.ws2ec_c00001{word-spacing:-0.299264pt;}
.ws10fa_c00001{word-spacing:-0.298656pt;}
.wsf0e_c00001{word-spacing:-0.294400pt;}
.ws3e8_c00001{word-spacing:-0.293920pt;}
.ws2e9_c00001{word-spacing:-0.288576pt;}
.wsc1e_c00001{word-spacing:-0.288000pt;}
.wsb_c00001{word-spacing:-0.283232pt;}
.ws3df_c00001{word-spacing:-0.281600pt;}
.wsad7_c00001{word-spacing:-0.281088pt;}
.ws139a_c00001{word-spacing:-0.277760pt;}
.ws1287_c00001{word-spacing:-0.275232pt;}
.ws562_c00001{word-spacing:-0.275200pt;}
.ws762_c00001{word-spacing:-0.272544pt;}
.ws747_c00001{word-spacing:-0.272384pt;}
.ws84d_c00001{word-spacing:-0.269376pt;}
.ws8f6_c00001{word-spacing:-0.268800pt;}
.ws16e_c00001{word-spacing:-0.268128pt;}
.wsff4_c00001{word-spacing:-0.263520pt;}
.ws6ef_c00001{word-spacing:-0.262400pt;}
.ws1301_c00001{word-spacing:-0.257664pt;}
.ws13c6_c00001{word-spacing:-0.257280pt;}
.ws250_c00001{word-spacing:-0.256512pt;}
.wsd8_c00001{word-spacing:-0.256000pt;}
.ws1571_c00001{word-spacing:-0.254400pt;}
.ws2a5_c00001{word-spacing:-0.251808pt;}
.ws1d_c00001{word-spacing:-0.251168pt;}
.ws489_c00001{word-spacing:-0.249600pt;}
.ws11cf_c00001{word-spacing:-0.245952pt;}
.ws14_c00001{word-spacing:-0.245824pt;}
.ws11bb_c00001{word-spacing:-0.244800pt;}
.wscd_c00001{word-spacing:-0.243200pt;}
.ws16c_c00001{word-spacing:-0.242592pt;}
.ws13_c00001{word-spacing:-0.240480pt;}
.ws7d7_c00001{word-spacing:-0.240000pt;}
.ws77_c00001{word-spacing:-0.236800pt;}
.wsef1_c00001{word-spacing:-0.235520pt;}
.ws16_c00001{word-spacing:-0.235136pt;}
.ws9b5_c00001{word-spacing:-0.231136pt;}
.ws9e0_c00001{word-spacing:-0.230400pt;}
.ws9_c00001{word-spacing:-0.229792pt;}
.ws31f_c00001{word-spacing:-0.228384pt;}
.ws751_c00001{word-spacing:-0.225568pt;}
.wse94_c00001{word-spacing:-0.224640pt;}
.ws1b_c00001{word-spacing:-0.224448pt;}
.wsa6_c00001{word-spacing:-0.224000pt;}
.ws75a_c00001{word-spacing:-0.221312pt;}
.ws656_c00001{word-spacing:-0.220800pt;}
.ws1b4_c00001{word-spacing:-0.219104pt;}
.ws92_c00001{word-spacing:-0.217600pt;}
.ws6c0_c00001{word-spacing:-0.217056pt;}
.ws10c9_c00001{word-spacing:-0.216000pt;}
.ws7eb_c00001{word-spacing:-0.213760pt;}
.ws6a8_c00001{word-spacing:-0.212800pt;}
.ws2c9_c00001{word-spacing:-0.211200pt;}
.ws6ae_c00001{word-spacing:-0.208544pt;}
.ws2e3_c00001{word-spacing:-0.208416pt;}
.ws663_c00001{word-spacing:-0.206400pt;}
.ws291_c00001{word-spacing:-0.204800pt;}
.ws74f_c00001{word-spacing:-0.204288pt;}
.ws12f_c00001{word-spacing:-0.203072pt;}
.ws665_c00001{word-spacing:-0.201600pt;}
.ws6be_c00001{word-spacing:-0.200032pt;}
.ws20a_c00001{word-spacing:-0.198400pt;}
.wsb18_c00001{word-spacing:-0.197728pt;}
.ws658_c00001{word-spacing:-0.196800pt;}
.ws230_c00001{word-spacing:-0.195776pt;}
.ws6c_c00001{word-spacing:-0.192000pt;}
.wsf47_c00001{word-spacing:-0.191808pt;}
.ws757_c00001{word-spacing:-0.191520pt;}
.ws66c_c00001{word-spacing:-0.187200pt;}
.ws2eb_c00001{word-spacing:-0.187040pt;}
.wsb4_c00001{word-spacing:-0.185600pt;}
.ws16b_c00001{word-spacing:-0.183008pt;}
.wsa25_c00001{word-spacing:-0.182400pt;}
.ws2ea_c00001{word-spacing:-0.181696pt;}
.wsdf_c00001{word-spacing:-0.179200pt;}
.wsf41_c00001{word-spacing:-0.178944pt;}
.ws755_c00001{word-spacing:-0.178752pt;}
.ws10ca_c00001{word-spacing:-0.177600pt;}
.ws170_c00001{word-spacing:-0.176352pt;}
.ws750_c00001{word-spacing:-0.174496pt;}
.ws113_c00001{word-spacing:-0.172800pt;}
.wsf12_c00001{word-spacing:-0.171520pt;}
.ws5e6_c00001{word-spacing:-0.171008pt;}
.ws3e4_c00001{word-spacing:-0.170240pt;}
.ws75_c00001{word-spacing:-0.166400pt;}
.wsa3e_c00001{word-spacing:-0.163200pt;}
.ws6c1_c00001{word-spacing:-0.161728pt;}
.ws7dd_c00001{word-spacing:-0.160320pt;}
.ws52_c00001{word-spacing:-0.160000pt;}
.wse97_c00001{word-spacing:-0.159360pt;}
.ws8ab_c00001{word-spacing:-0.158400pt;}
.ws3a5_c00001{word-spacing:-0.157472pt;}
.ws10b8_c00001{word-spacing:-0.154976pt;}
.wsc3_c00001{word-spacing:-0.153600pt;}
.ws6af_c00001{word-spacing:-0.153216pt;}
.wseb5_c00001{word-spacing:-0.149760pt;}
.ws127_c00001{word-spacing:-0.149632pt;}
.ws6e0_c00001{word-spacing:-0.149120pt;}
.ws6aa_c00001{word-spacing:-0.148960pt;}
.ws9ae_c00001{word-spacing:-0.148800pt;}
.ws120_c00001{word-spacing:-0.147200pt;}
.ws6b1_c00001{word-spacing:-0.144704pt;}
.ws677_c00001{word-spacing:-0.144288pt;}
.ws65b_c00001{word-spacing:-0.144000pt;}
.wsea8_c00001{word-spacing:-0.141664pt;}
.ws63_c00001{word-spacing:-0.140800pt;}
.ws3_c00001{word-spacing:-0.140544pt;}
.ws5c_c00001{word-spacing:-0.140448pt;}
.ws9ad_c00001{word-spacing:-0.139200pt;}
.ws139b_c00001{word-spacing:-0.138880pt;}
.ws6ab_c00001{word-spacing:-0.136192pt;}
.ws176_c00001{word-spacing:-0.134400pt;}
.wsea6_c00001{word-spacing:-0.134208pt;}
.ws637_c00001{word-spacing:-0.133600pt;}
.ws5a_c00001{word-spacing:-0.131936pt;}
.wsa96_c00001{word-spacing:-0.129600pt;}
.ws12a_c00001{word-spacing:-0.128256pt;}
.wsf3e_c00001{word-spacing:-0.128160pt;}
.wsd5_c00001{word-spacing:-0.128000pt;}
.ws2b9_c00001{word-spacing:-0.127680pt;}
.wseab_c00001{word-spacing:-0.126752pt;}
.ws662_c00001{word-spacing:-0.124800pt;}
.wseaf_c00001{word-spacing:-0.123552pt;}
.ws74b_c00001{word-spacing:-0.123424pt;}
.ws126_c00001{word-spacing:-0.122912pt;}
.ws36_c00001{word-spacing:-0.121600pt;}
.ws9b2_c00001{word-spacing:-0.120000pt;}
.wsea7_c00001{word-spacing:-0.119296pt;}
.ws6c2_c00001{word-spacing:-0.119168pt;}
.wsec9_c00001{word-spacing:-0.117760pt;}
.ws67f_c00001{word-spacing:-0.117568pt;}
.ws53_c00001{word-spacing:-0.115200pt;}
.ws6b7_c00001{word-spacing:-0.114912pt;}
.ws5ff_c00001{word-spacing:-0.112224pt;}
.ws7e0_c00001{word-spacing:-0.111264pt;}
.ws389_c00001{word-spacing:-0.110656pt;}
.wsa23_c00001{word-spacing:-0.110400pt;}
.wsd1_c00001{word-spacing:-0.108800pt;}
.ws679_c00001{word-spacing:-0.106880pt;}
.ws753_c00001{word-spacing:-0.106400pt;}
.wsa95_c00001{word-spacing:-0.105600pt;}
.wsda_c00001{word-spacing:-0.102400pt;}
.ws74e_c00001{word-spacing:-0.102144pt;}
.ws680_c00001{word-spacing:-0.101536pt;}
.ws9ac_c00001{word-spacing:-0.100800pt;}
.ws14cb_c00001{word-spacing:-0.099552pt;}
.ws7_c00001{word-spacing:-0.097888pt;}
.ws9dc_c00001{word-spacing:-0.096192pt;}
.ws76_c00001{word-spacing:-0.096000pt;}
.wsf3b_c00001{word-spacing:-0.093984pt;}
.ws14cc_c00001{word-spacing:-0.093696pt;}
.ws3e3_c00001{word-spacing:-0.093632pt;}
.ws667_c00001{word-spacing:-0.091200pt;}
.ws67d_c00001{word-spacing:-0.090848pt;}
.wsb5_c00001{word-spacing:-0.089600pt;}
.ws5b_c00001{word-spacing:-0.089376pt;}
.wsa4b_c00001{word-spacing:-0.087840pt;}
.ws660_c00001{word-spacing:-0.086400pt;}
.wseb0_c00001{word-spacing:-0.086112pt;}
.ws67e_c00001{word-spacing:-0.085504pt;}
.ws4a_c00001{word-spacing:-0.083200pt;}
.ws7de_c00001{word-spacing:-0.081984pt;}
.ws7d6_c00001{word-spacing:-0.081600pt;}
.ws749_c00001{word-spacing:-0.080864pt;}
.ws9dd_c00001{word-spacing:-0.080160pt;}
.wsf3d_c00001{word-spacing:-0.076896pt;}
.wsa3_c00001{word-spacing:-0.076800pt;}
.ws185_c00001{word-spacing:-0.076608pt;}
.ws1216_c00001{word-spacing:-0.076128pt;}
.wsf17_c00001{word-spacing:-0.074880pt;}
.ws636_c00001{word-spacing:-0.074816pt;}
.ws746_c00001{word-spacing:-0.072352pt;}
.ws65e_c00001{word-spacing:-0.072000pt;}
.ws50_c00001{word-spacing:-0.070400pt;}
.ws600_c00001{word-spacing:-0.069472pt;}
.wsea9_c00001{word-spacing:-0.068352pt;}
.ws74d_c00001{word-spacing:-0.068096pt;}
.ws657_c00001{word-spacing:-0.067200pt;}
.ws6c6_c00001{word-spacing:-0.067104pt;}
.ws6cc_c00001{word-spacing:-0.064128pt;}
.ws4b_c00001{word-spacing:-0.064000pt;}
.ws748_c00001{word-spacing:-0.063840pt;}
.ws654_c00001{word-spacing:-0.062400pt;}
.ws6c7_c00001{word-spacing:-0.059648pt;}
.ws6ba_c00001{word-spacing:-0.059584pt;}
.ws5fe_c00001{word-spacing:-0.058784pt;}
.ws59_c00001{word-spacing:-0.057600pt;}
.ws6b3_c00001{word-spacing:-0.055328pt;}
.ws638_c00001{word-spacing:-0.053440pt;}
.ws13a2_c00001{word-spacing:-0.053120pt;}
.ws9af_c00001{word-spacing:-0.052800pt;}
.wseaa_c00001{word-spacing:-0.052704pt;}
.ws6c4_c00001{word-spacing:-0.052192pt;}
.wsf38_c00001{word-spacing:-0.051264pt;}
.ws4c_c00001{word-spacing:-0.051200pt;}
.ws6b0_c00001{word-spacing:-0.051072pt;}
.ws249_c00001{word-spacing:-0.048096pt;}
.ws668_c00001{word-spacing:-0.048000pt;}
.ws785_c00001{word-spacing:-0.046848pt;}
.ws27_c00001{word-spacing:-0.044800pt;}
.ws9aa_c00001{word-spacing:-0.043200pt;}
.ws67c_c00001{word-spacing:-0.042752pt;}
.wsf3c_c00001{word-spacing:-0.042720pt;}
.ws6a9_c00001{word-spacing:-0.042560pt;}
.ws21b_c00001{word-spacing:-0.040992pt;}
.ws48_c00001{word-spacing:-0.038400pt;}
.ws6b6_c00001{word-spacing:-0.038304pt;}
.ws67b_c00001{word-spacing:-0.037408pt;}
.ws761_c00001{word-spacing:-0.035136pt;}
.wsf40_c00001{word-spacing:-0.034176pt;}
.ws6b4_c00001{word-spacing:-0.034048pt;}
.ws9ab_c00001{word-spacing:-0.033600pt;}
.ws24b_c00001{word-spacing:-0.032064pt;}
.wsd4_c00001{word-spacing:-0.032000pt;}
.ws6c5_c00001{word-spacing:-0.029824pt;}
.ws6bf_c00001{word-spacing:-0.029792pt;}
.ws15b_c00001{word-spacing:-0.029280pt;}
.ws65c_c00001{word-spacing:-0.028800pt;}
.ws601_c00001{word-spacing:-0.026720pt;}
.wsf3f_c00001{word-spacing:-0.025632pt;}
.ws78_c00001{word-spacing:-0.025600pt;}
.ws140_c00001{word-spacing:-0.025536pt;}
.ws65a_c00001{word-spacing:-0.024000pt;}
.ws2a4_c00001{word-spacing:-0.023424pt;}
.ws9b4_c00001{word-spacing:-0.022368pt;}
.ws5fd_c00001{word-spacing:-0.021376pt;}
.ws6_c00001{word-spacing:-0.021280pt;}
.ws28_c00001{word-spacing:-0.019200pt;}
.ws310_c00001{word-spacing:-0.017568pt;}
.wsf39_c00001{word-spacing:-0.017088pt;}
.wsafc_c00001{word-spacing:-0.017024pt;}
.ws602_c00001{word-spacing:-0.016032pt;}
.ws49_c00001{word-spacing:-0.012800pt;}
.ws86f_c00001{word-spacing:-0.012768pt;}
.ws214_c00001{word-spacing:-0.011712pt;}
.wsd_c00001{word-spacing:-0.010688pt;}
.wsa3c_c00001{word-spacing:-0.009600pt;}
.wseac_c00001{word-spacing:-0.008544pt;}
.ws38_c00001{word-spacing:-0.006400pt;}
.ws100_c00001{word-spacing:-0.005856pt;}
.ws106_c00001{word-spacing:-0.005344pt;}
.wsa22_c00001{word-spacing:-0.004800pt;}
.ws754_c00001{word-spacing:-0.004256pt;}
.ws5_c00001{word-spacing:0.000000pt;}
.ws66a_c00001{word-spacing:0.004800pt;}
.ws107_c00001{word-spacing:0.005344pt;}
.ws133_c00001{word-spacing:0.005856pt;}
.ws4d_c00001{word-spacing:0.006400pt;}
.ws74a_c00001{word-spacing:0.008512pt;}
.wsa40_c00001{word-spacing:0.009600pt;}
.ws108_c00001{word-spacing:0.010688pt;}
.wsad_c00001{word-spacing:0.011712pt;}
.ws6b2_c00001{word-spacing:0.012768pt;}
.ws37_c00001{word-spacing:0.012800pt;}
.ws664_c00001{word-spacing:0.014400pt;}
.ws10_c00001{word-spacing:0.016032pt;}
.ws756_c00001{word-spacing:0.017024pt;}
.wsf3a_c00001{word-spacing:0.017088pt;}
.wsae_c00001{word-spacing:0.017568pt;}
.ws51_c00001{word-spacing:0.019200pt;}
.ws6a7_c00001{word-spacing:0.021280pt;}
.ws676_c00001{word-spacing:0.021376pt;}
.wsf42_c00001{word-spacing:0.022368pt;}
.wsac_c00001{word-spacing:0.023424pt;}
.ws74c_c00001{word-spacing:0.025536pt;}
.wscc_c00001{word-spacing:0.025600pt;}
.ws3aa_c00001{word-spacing:0.026720pt;}
.ws65f_c00001{word-spacing:0.028800pt;}
.wsfd_c00001{word-spacing:0.029280pt;}
.ws5d_c00001{word-spacing:0.032000pt;}
.ws6cb_c00001{word-spacing:0.032064pt;}
.wsa3d_c00001{word-spacing:0.033600pt;}
.ws6c3_c00001{word-spacing:0.034048pt;}
.wsc_c00001{word-spacing:0.035136pt;}
.ws2e5_c00001{word-spacing:0.037408pt;}
.ws6bd_c00001{word-spacing:0.038304pt;}
.ws604_c00001{word-spacing:0.038400pt;}
.ws12_c00001{word-spacing:0.040992pt;}
.ws759_c00001{word-spacing:0.042560pt;}
.ws678_c00001{word-spacing:0.042752pt;}
.wsa41_c00001{word-spacing:0.043200pt;}
.ws1162_c00001{word-spacing:0.044800pt;}
.ws8_c00001{word-spacing:0.046848pt;}
.ws66b_c00001{word-spacing:0.048000pt;}
.ws24d_c00001{word-spacing:0.048096pt;}
.ws6b5_c00001{word-spacing:0.051072pt;}
.ws334_c00001{word-spacing:0.051200pt;}
.ws101_c00001{word-spacing:0.052704pt;}
.ws669_c00001{word-spacing:0.052800pt;}
.wse96_c00001{word-spacing:0.053120pt;}
.ws639_c00001{word-spacing:0.053440pt;}
.wsf9_c00001{word-spacing:0.057600pt;}
.wsfa_c00001{word-spacing:0.058560pt;}
.ws17_c00001{word-spacing:0.058784pt;}
.ws6b8_c00001{word-spacing:0.059584pt;}
.ws666_c00001{word-spacing:0.062400pt;}
.ws752_c00001{word-spacing:0.063840pt;}
.ws285_c00001{word-spacing:0.064000pt;}
.ws18_c00001{word-spacing:0.064128pt;}
.wsfe_c00001{word-spacing:0.064416pt;}
.ws145e_c00001{word-spacing:0.067200pt;}
.wse_c00001{word-spacing:0.069472pt;}
.wsfc_c00001{word-spacing:0.070272pt;}
.ws4e5_c00001{word-spacing:0.070400pt;}
.ws1485_c00001{word-spacing:0.072000pt;}
.ws6ad_c00001{word-spacing:0.072352pt;}
.ws1d5_c00001{word-spacing:0.074816pt;}
.wsf1a_c00001{word-spacing:0.074880pt;}
.ws281_c00001{word-spacing:0.076128pt;}
.ws6ac_c00001{word-spacing:0.076608pt;}
.ws2b6_c00001{word-spacing:0.076800pt;}
.ws129_c00001{word-spacing:0.080160pt;}
.ws138_c00001{word-spacing:0.081984pt;}
.ws4ca_c00001{word-spacing:0.083200pt;}
.ws15_c00001{word-spacing:0.085504pt;}
.wsa26_c00001{word-spacing:0.086400pt;}
.ws16d_c00001{word-spacing:0.087840pt;}
.ws95e_c00001{word-spacing:0.089600pt;}
.ws128_c00001{word-spacing:0.090848pt;}
.ws9b0_c00001{word-spacing:0.091200pt;}
.ws75b_c00001{word-spacing:0.093632pt;}
.wsad9_c00001{word-spacing:0.093696pt;}
.wsd9c_c00001{word-spacing:0.096000pt;}
.wsf_c00001{word-spacing:0.096192pt;}
.wsf43_c00001{word-spacing:0.096928pt;}
.wsff2_c00001{word-spacing:0.099552pt;}
.ws10cf_c00001{word-spacing:0.100800pt;}
.ws19_c00001{word-spacing:0.101536pt;}
.wscaa_c00001{word-spacing:0.102400pt;}
.ws101b_c00001{word-spacing:0.105408pt;}
.wsebe_c00001{word-spacing:0.106240pt;}
.ws2e6_c00001{word-spacing:0.106880pt;}
.wscbc_c00001{word-spacing:0.108800pt;}
.ws65d_c00001{word-spacing:0.110400pt;}
.ws10d3_c00001{word-spacing:0.111264pt;}
.ws16f_c00001{word-spacing:0.112224pt;}
.ws10c6_c00001{word-spacing:0.114912pt;}
.ws32_c00001{word-spacing:0.115200pt;}
.ws10d0_c00001{word-spacing:0.117120pt;}
.ws11_c00001{word-spacing:0.117568pt;}
.wsecb_c00001{word-spacing:0.117760pt;}
.ws6b9_c00001{word-spacing:0.119168pt;}
.wsa3f_c00001{word-spacing:0.120000pt;}
.ws1bc_c00001{word-spacing:0.121600pt;}
.ws1a_c00001{word-spacing:0.122912pt;}
.ws152e_c00001{word-spacing:0.122976pt;}
.wsfb_c00001{word-spacing:0.124800pt;}
.ws804_c00001{word-spacing:0.128000pt;}
.ws283_c00001{word-spacing:0.128256pt;}
.ws1574_c00001{word-spacing:0.128832pt;}
.ws10ce_c00001{word-spacing:0.129600pt;}
.ws13c_c00001{word-spacing:0.133600pt;}
.ws9b1_c00001{word-spacing:0.134400pt;}
.ws758_c00001{word-spacing:0.136192pt;}
.ws109_c00001{word-spacing:0.138944pt;}
.ws655_c00001{word-spacing:0.139200pt;}
.wsd17_c00001{word-spacing:0.140800pt;}
.ws2e4_c00001{word-spacing:0.144288pt;}
.ws22c_c00001{word-spacing:0.147200pt;}
.ws202_c00001{word-spacing:0.148800pt;}
.wse3_c00001{word-spacing:0.149632pt;}
.wsedd_c00001{word-spacing:0.149760pt;}
.ws2a3_c00001{word-spacing:0.152256pt;}
.ws22f_c00001{word-spacing:0.153600pt;}
.wse0_c00001{word-spacing:0.154976pt;}
.ws14bf_c00001{word-spacing:0.158112pt;}
.ws206_c00001{word-spacing:0.158400pt;}
.wseb7_c00001{word-spacing:0.159360pt;}
.wsf46_c00001{word-spacing:0.159840pt;}
.ws541_c00001{word-spacing:0.160000pt;}
.ws110_c00001{word-spacing:0.160320pt;}
.ws75c_c00001{word-spacing:0.161728pt;}
.ws201_c00001{word-spacing:0.163200pt;}
.ws265_c00001{word-spacing:0.165664pt;}
.ws222_c00001{word-spacing:0.166400pt;}
.ws8aa_c00001{word-spacing:0.168000pt;}
.ws6bc_c00001{word-spacing:0.170240pt;}
.ws248_c00001{word-spacing:0.171008pt;}
.wsf13_c00001{word-spacing:0.171520pt;}
.ws61a_c00001{word-spacing:0.172800pt;}
.wse1_c00001{word-spacing:0.176352pt;}
.ws203_c00001{word-spacing:0.177600pt;}
.ws329_c00001{word-spacing:0.179200pt;}
.ws254_c00001{word-spacing:0.181696pt;}
.wsa24_c00001{word-spacing:0.182400pt;}
.ws31_c00001{word-spacing:0.185600pt;}
.ws2e8_c00001{word-spacing:0.187040pt;}
.ws327_c00001{word-spacing:0.192000pt;}
.wsa73_c00001{word-spacing:0.192384pt;}
.ws102e_c00001{word-spacing:0.196800pt;}
.wsb60_c00001{word-spacing:0.197728pt;}
.ws62_c00001{word-spacing:0.198400pt;}
.ws24f_c00001{word-spacing:0.203072pt;}
.wsd6_c00001{word-spacing:0.204800pt;}
.ws12e_c00001{word-spacing:0.208416pt;}
.ws10c5_c00001{word-spacing:0.208544pt;}
.ws1e5_c00001{word-spacing:0.211200pt;}
.wsedb_c00001{word-spacing:0.212480pt;}
.ws3a7_c00001{word-spacing:0.213760pt;}
.ws1e6_c00001{word-spacing:0.217600pt;}
.ws6cd_c00001{word-spacing:0.219104pt;}
.ws659_c00001{word-spacing:0.220800pt;}
.ws82b_c00001{word-spacing:0.224000pt;}
.ws461_c00001{word-spacing:0.229792pt;}
.ws3a2_c00001{word-spacing:0.230400pt;}
.wseae_c00001{word-spacing:0.230688pt;}
.ws14c3_c00001{word-spacing:0.234080pt;}
.wsee8_c00001{word-spacing:0.235520pt;}
.ws53f_c00001{word-spacing:0.236800pt;}
.ws141f_c00001{word-spacing:0.238336pt;}
.ws661_c00001{word-spacing:0.240000pt;}
.wsf3_c00001{word-spacing:0.243200pt;}
.ws30_c00001{word-spacing:0.249600pt;}
.ws11b7_c00001{word-spacing:0.251168pt;}
.ws221_c00001{word-spacing:0.256000pt;}
.wsead_c00001{word-spacing:0.257664pt;}
.ws1e7_c00001{word-spacing:0.262400pt;}
.wsebd_c00001{word-spacing:0.265600pt;}
.wsf2_c00001{word-spacing:0.268800pt;}
.ws14d8_c00001{word-spacing:0.269376pt;}
.wsa74_c00001{word-spacing:0.272544pt;}
.ws526_c00001{word-spacing:0.275200pt;}
.ws184_c00001{word-spacing:0.276640pt;}
.wse92_c00001{word-spacing:0.277760pt;}
.ws93_c00001{word-spacing:0.281600pt;}
.ws24a_c00001{word-spacing:0.283232pt;}
.ws1124_c00001{word-spacing:0.286944pt;}
.ws8f1_c00001{word-spacing:0.288000pt;}
.ws67a_c00001{word-spacing:0.288576pt;}
.wsd7_c00001{word-spacing:0.294400pt;}
.ws1123_c00001{word-spacing:0.298656pt;}
.ws13c3_c00001{word-spacing:0.299520pt;}
.ws2f_c00001{word-spacing:0.300800pt;}
.ws125_c00001{word-spacing:0.304512pt;}
.ws540_c00001{word-spacing:0.307200pt;}
.wsbc3_c00001{word-spacing:0.310368pt;}
.ws61b_c00001{word-spacing:0.313600pt;}
.wsf20_c00001{word-spacing:0.318720pt;}
.ws29_c00001{word-spacing:0.320000pt;}
.wseba_c00001{word-spacing:0.320640pt;}
.ws111a_c00001{word-spacing:0.322080pt;}
.ws1c_c00001{word-spacing:0.325984pt;}
.ws957_c00001{word-spacing:0.326400pt;}
.ws12cb_c00001{word-spacing:0.327936pt;}
.ws561_c00001{word-spacing:0.332800pt;}
.ws6e6_c00001{word-spacing:0.333792pt;}
.wsec6_c00001{word-spacing:0.336000pt;}
.ws1271_c00001{word-spacing:0.336672pt;}
.ws98c_c00001{word-spacing:0.339200pt;}
.ws1019_c00001{word-spacing:0.339648pt;}
.ws1409_c00001{word-spacing:0.343040pt;}
.ws111b_c00001{word-spacing:0.345504pt;}
.wsc11_c00001{word-spacing:0.345600pt;}
.ws11b9_c00001{word-spacing:0.350400pt;}
.wsb45_c00001{word-spacing:0.351360pt;}
.ws1bd_c00001{word-spacing:0.352000pt;}
.wsf16_c00001{word-spacing:0.353280pt;}
.ws10da_c00001{word-spacing:0.357216pt;}
.wsff_c00001{word-spacing:0.363072pt;}
.wsa4c_c00001{word-spacing:0.363392pt;}
.ws80d_c00001{word-spacing:0.364800pt;}
.ws10b0_c00001{word-spacing:0.368928pt;}
.ws1415_c00001{word-spacing:0.371840pt;}
.ws19e_c00001{word-spacing:0.374784pt;}
.ws205_c00001{word-spacing:0.379200pt;}
.wsfb1_c00001{word-spacing:0.380640pt;}
.ws82a_c00001{word-spacing:0.384000pt;}
.ws14fd_c00001{word-spacing:0.384768pt;}
.ws1407_c00001{word-spacing:0.385920pt;}
.ws136_c00001{word-spacing:0.386496pt;}
.ws1be_c00001{word-spacing:0.390400pt;}
.ws482_c00001{word-spacing:0.392352pt;}
.ws709_c00001{word-spacing:0.396800pt;}
.ws282_c00001{word-spacing:0.398208pt;}
.ws328_c00001{word-spacing:0.398400pt;}
.ws771_c00001{word-spacing:0.403200pt;}
.ws1364_c00001{word-spacing:0.404064pt;}
.ws10c8_c00001{word-spacing:0.409920pt;}
.ws13e0_c00001{word-spacing:0.412160pt;}
.wsd40_c00001{word-spacing:0.416000pt;}
.wsf1b_c00001{word-spacing:0.424960pt;}
.ws10c7_c00001{word-spacing:0.427200pt;}
.ws1399_c00001{word-spacing:0.427520pt;}
.ws11fd_c00001{word-spacing:0.428800pt;}
.ws5ea_c00001{word-spacing:0.432864pt;}
.ws14fa_c00001{word-spacing:0.438208pt;}
.ws10d5_c00001{word-spacing:0.439200pt;}
.ws451_c00001{word-spacing:0.441600pt;}
.wse66_c00001{word-spacing:0.448000pt;}
.wseda_c00001{word-spacing:0.449280pt;}
.ws809_c00001{word-spacing:0.454400pt;}
.ws204_c00001{word-spacing:0.456000pt;}
.ws33f_c00001{word-spacing:0.460800pt;}
.ws39e_c00001{word-spacing:0.467200pt;}
.ws11ba_c00001{word-spacing:0.470400pt;}
.ws1da_c00001{word-spacing:0.473600pt;}
.wsec7_c00001{word-spacing:0.478080pt;}
.ws39f_c00001{word-spacing:0.480000pt;}
.ws60f_c00001{word-spacing:0.486400pt;}
.ws2d7_c00001{word-spacing:0.492800pt;}
.ws272_c00001{word-spacing:0.499200pt;}
.ws6a4_c00001{word-spacing:0.505600pt;}
.ws1513_c00001{word-spacing:0.509472pt;}
.wseb6_c00001{word-spacing:0.510720pt;}
.ws271_c00001{word-spacing:0.512000pt;}
.ws866_c00001{word-spacing:0.518400pt;}
.wsee3_c00001{word-spacing:0.524160pt;}
.ws547_c00001{word-spacing:0.524800pt;}
.wsf0f_c00001{word-spacing:0.529920pt;}
.ws340_c00001{word-spacing:0.531200pt;}
.wsa2a_c00001{word-spacing:0.537600pt;}
.wsbb_c00001{word-spacing:0.544000pt;}
.ws273_c00001{word-spacing:0.550400pt;}
.ws240_c00001{word-spacing:0.556800pt;}
.ws1b9_c00001{word-spacing:0.563200pt;}
.ws8bd_c00001{word-spacing:0.569600pt;}
.ws3d4_c00001{word-spacing:0.576000pt;}
.ws7e4_c00001{word-spacing:0.582400pt;}
.ws7a0_c00001{word-spacing:0.588800pt;}
.ws450_c00001{word-spacing:0.595200pt;}
.wse93_c00001{word-spacing:0.599040pt;}
.ws4cd_c00001{word-spacing:0.601600pt;}
.ws2d0_c00001{word-spacing:0.608000pt;}
.ws4e8_c00001{word-spacing:0.614400pt;}
.ws12c9_c00001{word-spacing:0.614880pt;}
.ws2e_c00001{word-spacing:0.620800pt;}
.ws29b_c00001{word-spacing:0.627200pt;}
.wsbc_c00001{word-spacing:0.633600pt;}
.wsfd6_c00001{word-spacing:0.638304pt;}
.ws39d_c00001{word-spacing:0.640000pt;}
.ws1406_c00001{word-spacing:0.643200pt;}
.ws792_c00001{word-spacing:0.644160pt;}
.ws1bb_c00001{word-spacing:0.646400pt;}
.wsee4_c00001{word-spacing:0.647680pt;}
.ws1235_c00001{word-spacing:0.650016pt;}
.ws1d9_c00001{word-spacing:0.652800pt;}
.ws10b6_c00001{word-spacing:0.655872pt;}
.ws1ba_c00001{word-spacing:0.659200pt;}
.wsbcf_c00001{word-spacing:0.661728pt;}
.ws341_c00001{word-spacing:0.665600pt;}
.ws11ea_c00001{word-spacing:0.667584pt;}
.wscc7_c00001{word-spacing:0.672000pt;}
.ws564_c00001{word-spacing:0.673440pt;}
.ws139d_c00001{word-spacing:0.673920pt;}
.ws548_c00001{word-spacing:0.678400pt;}
.ws28e_c00001{word-spacing:0.679296pt;}
.ws7d9_c00001{word-spacing:0.684800pt;}
.ws844_c00001{word-spacing:0.685152pt;}
.ws1401_c00001{word-spacing:0.690560pt;}
.ws1152_c00001{word-spacing:0.691008pt;}
.ws5b8_c00001{word-spacing:0.691200pt;}
.wsb2a_c00001{word-spacing:0.696864pt;}
.wsa17_c00001{word-spacing:0.697600pt;}
.ws12b1_c00001{word-spacing:0.702720pt;}
.ws13ee_c00001{word-spacing:0.704000pt;}
.ws10a1_c00001{word-spacing:0.708576pt;}
.ws79f_c00001{word-spacing:0.710400pt;}
.ws853_c00001{word-spacing:0.714432pt;}
.ws770_c00001{word-spacing:0.723200pt;}
.ws12ff_c00001{word-spacing:0.726144pt;}
.ws960_c00001{word-spacing:0.729600pt;}
.ws76f_c00001{word-spacing:0.748800pt;}
.wseca_c00001{word-spacing:0.765440pt;}
.wseec_c00001{word-spacing:0.768000pt;}
.ws1428_c00001{word-spacing:0.774400pt;}
.ws29a_c00001{word-spacing:0.780800pt;}
.wsa55_c00001{word-spacing:0.787200pt;}
.ws791_c00001{word-spacing:0.790912pt;}
.ws530_c00001{word-spacing:0.793600pt;}
.wsc29_c00001{word-spacing:0.800000pt;}
.wsce3_c00001{word-spacing:0.806400pt;}
.wsa16_c00001{word-spacing:0.812800pt;}
.ws790_c00001{word-spacing:0.819200pt;}
.ws582_c00001{word-spacing:0.825600pt;}
.ws5c6_c00001{word-spacing:0.832000pt;}
.ws1cc_c00001{word-spacing:0.838400pt;}
.ws117d_c00001{word-spacing:0.844800pt;}
.ws5a3_c00001{word-spacing:0.851200pt;}
.ws5a0_c00001{word-spacing:0.857600pt;}
.ws5f0_c00001{word-spacing:0.864000pt;}
.ws5cd_c00001{word-spacing:0.870400pt;}
.ws5de_c00001{word-spacing:0.876800pt;}
.ws3ac_c00001{word-spacing:0.883200pt;}
.ws8e7_c00001{word-spacing:0.889600pt;}
.ws841_c00001{word-spacing:0.896000pt;}
.ws2af_c00001{word-spacing:0.902400pt;}
.wsa2e_c00001{word-spacing:0.908800pt;}
.ws5cc_c00001{word-spacing:0.915200pt;}
.ws1cd_c00001{word-spacing:0.921600pt;}
.ws738_c00001{word-spacing:0.928000pt;}
.ws587_c00001{word-spacing:0.934400pt;}
.ws12f5_c00001{word-spacing:0.936960pt;}
.ws3bb_c00001{word-spacing:0.940800pt;}
.wsf02_c00001{word-spacing:0.942080pt;}
.ws52f_c00001{word-spacing:0.947200pt;}
.ws1cb_c00001{word-spacing:0.953600pt;}
.ws3ab_c00001{word-spacing:0.960000pt;}
.ws1256_c00001{word-spacing:0.960384pt;}
.wsf90_c00001{word-spacing:0.966240pt;}
.ws533_c00001{word-spacing:0.966400pt;}
.ws1370_c00001{word-spacing:0.972096pt;}
.wsa33_c00001{word-spacing:0.972800pt;}
.ws11fa_c00001{word-spacing:0.977952pt;}
.ws29c_c00001{word-spacing:0.979200pt;}
.ws799_c00001{word-spacing:0.983808pt;}
.ws8e6_c00001{word-spacing:0.985600pt;}
.ws1405_c00001{word-spacing:0.986240pt;}
.ws107d_c00001{word-spacing:0.989664pt;}
.ws8f7_c00001{word-spacing:0.995520pt;}
.wsbd1_c00001{word-spacing:1.001376pt;}
.ws893_c00001{word-spacing:1.004800pt;}
.ws7c4_c00001{word-spacing:1.007232pt;}
.ws12b4_c00001{word-spacing:1.011200pt;}
.wsbd6_c00001{word-spacing:1.013088pt;}
.ws139_c00001{word-spacing:1.018944pt;}
.ws13a9_c00001{word-spacing:1.024000pt;}
.ws10fe_c00001{word-spacing:1.024800pt;}
.wse79_c00001{word-spacing:1.030400pt;}
.ws11e3_c00001{word-spacing:1.030656pt;}
.ws11a6_c00001{word-spacing:1.036512pt;}
.wsac6_c00001{word-spacing:1.036800pt;}
.ws634_c00001{word-spacing:1.068800pt;}
.ws94c_c00001{word-spacing:1.088000pt;}
.ws8dc_c00001{word-spacing:1.094400pt;}
.ws832_c00001{word-spacing:1.100800pt;}
.ws633_c00001{word-spacing:1.113600pt;}
.ws78f_c00001{word-spacing:1.120000pt;}
.ws66d_c00001{word-spacing:1.126400pt;}
.wsb99_c00001{word-spacing:1.132800pt;}
.ws349_c00001{word-spacing:1.139200pt;}
.wsdf2_c00001{word-spacing:1.145600pt;}
.ws833_c00001{word-spacing:1.152000pt;}
.ws2b2_c00001{word-spacing:1.158400pt;}
.wsb98_c00001{word-spacing:1.164800pt;}
.ws935_c00001{word-spacing:1.171200pt;}
.ws2b3_c00001{word-spacing:1.177600pt;}
.ws1d6_c00001{word-spacing:1.184000pt;}
.ws798_c00001{word-spacing:1.186368pt;}
.ws731_c00001{word-spacing:1.190400pt;}
.ws9f_c00001{word-spacing:1.196800pt;}
.wsb9_c00001{word-spacing:1.203200pt;}
.ws132_c00001{word-spacing:1.209600pt;}
.wsa0_c00001{word-spacing:1.216000pt;}
.wsb8_c00001{word-spacing:1.222400pt;}
.ws8b_c00001{word-spacing:1.228800pt;}
.ws545_c00001{word-spacing:1.235200pt;}
.ws146a_c00001{word-spacing:1.235616pt;}
.ws436_c00001{word-spacing:1.241600pt;}
.ws4f6_c00001{word-spacing:1.248000pt;}
.ws546_c00001{word-spacing:1.254400pt;}
.ws284_c00001{word-spacing:1.260800pt;}
.ws794_c00001{word-spacing:1.266528pt;}
.ws521_c00001{word-spacing:1.267200pt;}
.ws1122_c00001{word-spacing:1.270752pt;}
.ws8c_c00001{word-spacing:1.273600pt;}
.wsf64_c00001{word-spacing:1.276608pt;}
.ws131_c00001{word-spacing:1.280000pt;}
.ws11d_c00001{word-spacing:1.286400pt;}
.wsfdc_c00001{word-spacing:1.288320pt;}
.ws94d_c00001{word-spacing:1.292800pt;}
.ws1121_c00001{word-spacing:1.294176pt;}
.wsefb_c00001{word-spacing:1.295360pt;}
.wsba_c00001{word-spacing:1.299200pt;}
.ws7b3_c00001{word-spacing:1.300032pt;}
.ws9db_c00001{word-spacing:1.305600pt;}
.ws795_c00001{word-spacing:1.305888pt;}
.wsad1_c00001{word-spacing:1.311744pt;}
.ws1028_c00001{word-spacing:1.317600pt;}
.wsd7b_c00001{word-spacing:1.318400pt;}
.ws115d_c00001{word-spacing:1.323456pt;}
.wsde3_c00001{word-spacing:1.324800pt;}
.ws849_c00001{word-spacing:1.329312pt;}
.ws532_c00001{word-spacing:1.331200pt;}
.wsad2_c00001{word-spacing:1.335168pt;}
.wsa8e_c00001{word-spacing:1.341024pt;}
.wsb24_c00001{word-spacing:1.346880pt;}
.ws496_c00001{word-spacing:1.356800pt;}
.wsd7a_c00001{word-spacing:1.363200pt;}
.ws154e_c00001{word-spacing:1.384096pt;}
.ws114c_c00001{word-spacing:1.388800pt;}
.ws96c_c00001{word-spacing:1.408000pt;}
.ws13ca_c00001{word-spacing:1.413120pt;}
.ws717_c00001{word-spacing:1.414400pt;}
.ws286_c00001{word-spacing:1.420800pt;}
.ws4c4_c00001{word-spacing:1.427200pt;}
.wsc6d_c00001{word-spacing:1.433600pt;}
.ws288_c00001{word-spacing:1.440000pt;}
.ws98f_c00001{word-spacing:1.446400pt;}
.wsba2_c00001{word-spacing:1.452800pt;}
.wsff5_c00001{word-spacing:1.459200pt;}
.wsc79_c00001{word-spacing:1.465600pt;}
.wsa29_c00001{word-spacing:1.472000pt;}
.wsa2f_c00001{word-spacing:1.478400pt;}
.ws9a7_c00001{word-spacing:1.484800pt;}
.ws48f_c00001{word-spacing:1.491200pt;}
.ws287_c00001{word-spacing:1.497600pt;}
.ws1ee_c00001{word-spacing:1.504000pt;}
.wsb41_c00001{word-spacing:1.510400pt;}
.wsc9_c00001{word-spacing:1.516800pt;}
.ws425_c00001{word-spacing:1.523200pt;}
.ws557_c00001{word-spacing:1.529600pt;}
.wsca_c00001{word-spacing:1.536000pt;}
.wse0d_c00001{word-spacing:1.542400pt;}
.ws6e7_c00001{word-spacing:1.548800pt;}
.ws5d7_c00001{word-spacing:1.555200pt;}
.ws556_c00001{word-spacing:1.561600pt;}
.ws1ef_c00001{word-spacing:1.568000pt;}
.ws10e_c00001{word-spacing:1.574400pt;}
.ws10f_c00001{word-spacing:1.580800pt;}
.ws1201_c00001{word-spacing:1.581120pt;}
.ws9c3_c00001{word-spacing:1.587200pt;}
.ws41b_c00001{word-spacing:1.593600pt;}
.ws14fe_c00001{word-spacing:1.597856pt;}
.ws1206_c00001{word-spacing:1.598688pt;}
.ws716_c00001{word-spacing:1.600000pt;}
.ws1298_c00001{word-spacing:1.604544pt;}
.ws94b_c00001{word-spacing:1.606400pt;}
.ws47e_c00001{word-spacing:1.610400pt;}
.ws764_c00001{word-spacing:1.612800pt;}
.wsfdd_c00001{word-spacing:1.616256pt;}
.wsdde_c00001{word-spacing:1.619200pt;}
.ws1200_c00001{word-spacing:1.622112pt;}
.ws96d_c00001{word-spacing:1.625600pt;}
.ws47c_c00001{word-spacing:1.627968pt;}
.wsbdb_c00001{word-spacing:1.632000pt;}
.ws338_c00001{word-spacing:1.633824pt;}
.wsb55_c00001{word-spacing:1.639680pt;}
.wsc56_c00001{word-spacing:1.644800pt;}
.wsbef_c00001{word-spacing:1.645536pt;}
.wsba5_c00001{word-spacing:1.651200pt;}
.ws4fa_c00001{word-spacing:1.651392pt;}
.ws1016_c00001{word-spacing:1.657248pt;}
.ws3c8_c00001{word-spacing:1.657600pt;}
.wscdc_c00001{word-spacing:1.664000pt;}
.wsfda_c00001{word-spacing:1.668960pt;}
.wsf8d_c00001{word-spacing:1.676800pt;}
.ws497_c00001{word-spacing:1.696000pt;}
.wse0e_c00001{word-spacing:1.721600pt;}
.wsddd_c00001{word-spacing:1.728000pt;}
.ws53c_c00001{word-spacing:1.734400pt;}
.ws114b_c00001{word-spacing:1.740800pt;}
.ws498_c00001{word-spacing:1.747200pt;}
.wsb93_c00001{word-spacing:1.753600pt;}
.ws413_c00001{word-spacing:1.760000pt;}
.ws9d4_c00001{word-spacing:1.766400pt;}
.wse59_c00001{word-spacing:1.772800pt;}
.ws78a_c00001{word-spacing:1.779200pt;}
.ws6eb_c00001{word-spacing:1.785600pt;}
.ws126f_c00001{word-spacing:1.792000pt;}
.wsc92_c00001{word-spacing:1.798400pt;}
.ws154_c00001{word-spacing:1.804800pt;}
.ws3b3_c00001{word-spacing:1.811200pt;}
.ws48a_c00001{word-spacing:1.817600pt;}
.ws408_c00001{word-spacing:1.824000pt;}
.wsf27_c00001{word-spacing:1.825280pt;}
.wsbe_c00001{word-spacing:1.830400pt;}
.ws2f3_c00001{word-spacing:1.836800pt;}
.ws505_c00001{word-spacing:1.843200pt;}
.ws414_c00001{word-spacing:1.849600pt;}
.ws3b1_c00001{word-spacing:1.856000pt;}
.wsbf_c00001{word-spacing:1.862400pt;}
.ws53e_c00001{word-spacing:1.868800pt;}
.wsa1d_c00001{word-spacing:1.875200pt;}
.ws549_c00001{word-spacing:1.881600pt;}
.ws28f_c00001{word-spacing:1.888000pt;}
.ws2f2_c00001{word-spacing:1.894400pt;}
.ws155_c00001{word-spacing:1.900800pt;}
.ws17e_c00001{word-spacing:1.907200pt;}
.ws703_c00001{word-spacing:1.913600pt;}
.ws290_c00001{word-spacing:1.920000pt;}
.ws17f_c00001{word-spacing:1.926400pt;}
.ws973_c00001{word-spacing:1.932480pt;}
.ws53d_c00001{word-spacing:1.932800pt;}
.ws134_c00001{word-spacing:1.938336pt;}
.ws54a_c00001{word-spacing:1.939200pt;}
.wsefa_c00001{word-spacing:1.943040pt;}
.wsb66_c00001{word-spacing:1.944192pt;}
.ws3b2_c00001{word-spacing:1.945600pt;}
.ws1098_c00001{word-spacing:1.950048pt;}
.wsa3a_c00001{word-spacing:1.952000pt;}
.ws135_c00001{word-spacing:1.955904pt;}
.wsa1c_c00001{word-spacing:1.958400pt;}
.ws3d9_c00001{word-spacing:1.964800pt;}
.ws1419_c00001{word-spacing:1.965440pt;}
.wsb65_c00001{word-spacing:1.967616pt;}
.ws3c9_c00001{word-spacing:1.971200pt;}
.wsb6a_c00001{word-spacing:1.973472pt;}
.ws704_c00001{word-spacing:1.977600pt;}
.ws8fa_c00001{word-spacing:1.979328pt;}
.wsb58_c00001{word-spacing:1.985184pt;}
.wsa8f_c00001{word-spacing:1.991040pt;}
.ws941_c00001{word-spacing:1.996800pt;}
.ws33b_c00001{word-spacing:1.996896pt;}
.ws891_c00001{word-spacing:2.054400pt;}
.wsab3_c00001{word-spacing:2.060800pt;}
.wsa51_c00001{word-spacing:2.067200pt;}
.ws23e_c00001{word-spacing:2.073600pt;}
.ws71_c00001{word-spacing:2.086400pt;}
.ws744_c00001{word-spacing:2.092800pt;}
.wsda2_c00001{word-spacing:2.099200pt;}
.ws1218_c00001{word-spacing:2.105600pt;}
.ws8f3_c00001{word-spacing:2.112000pt;}
.wsb3_c00001{word-spacing:2.118400pt;}
.ws575_c00001{word-spacing:2.124800pt;}
.ws348_c00001{word-spacing:2.131200pt;}
.ws7c3_c00001{word-spacing:2.137600pt;}
.ws2e2_c00001{word-spacing:2.144000pt;}
.ws3f9_c00001{word-spacing:2.150400pt;}
.wsd0_c00001{word-spacing:2.156800pt;}
.ws4ce_c00001{word-spacing:2.163200pt;}
.ws3b0_c00001{word-spacing:2.169600pt;}
.ws698_c00001{word-spacing:2.176000pt;}
.wsb2_c00001{word-spacing:2.182400pt;}
.ws1ab_c00001{word-spacing:2.188800pt;}
.ws347_c00001{word-spacing:2.195200pt;}
.ws6f_c00001{word-spacing:2.201600pt;}
.wscf_c00001{word-spacing:2.208000pt;}
.ws1080_c00001{word-spacing:2.213568pt;}
.ws651_c00001{word-spacing:2.214400pt;}
.ws70_c00001{word-spacing:2.220800pt;}
.ws23f_c00001{word-spacing:2.227200pt;}
.ws813_c00001{word-spacing:2.233600pt;}
.wsb3a_c00001{word-spacing:2.236992pt;}
.ws4d9_c00001{word-spacing:2.240000pt;}
.wsb29_c00001{word-spacing:2.242848pt;}
.wsa56_c00001{word-spacing:2.246400pt;}
.ws7ad_c00001{word-spacing:2.248704pt;}
.ws987_c00001{word-spacing:2.252800pt;}
.ws7b4_c00001{word-spacing:2.254560pt;}
.ws5d3_c00001{word-spacing:2.259200pt;}
.wsb39_c00001{word-spacing:2.260416pt;}
.ws814_c00001{word-spacing:2.265600pt;}
.ws14c1_c00001{word-spacing:2.266272pt;}
.ws917_c00001{word-spacing:2.272000pt;}
.wsbb8_c00001{word-spacing:2.272128pt;}
.ws7ac_c00001{word-spacing:2.277984pt;}
.ws1297_c00001{word-spacing:2.283840pt;}
.ws6e8_c00001{word-spacing:2.284800pt;}
.ws848_c00001{word-spacing:2.289696pt;}
.wsbed_c00001{word-spacing:2.295552pt;}
.wsa57_c00001{word-spacing:2.297600pt;}
.ws112b_c00001{word-spacing:2.301408pt;}
.wsf98_c00001{word-spacing:2.307264pt;}
.ws91a_c00001{word-spacing:2.313120pt;}
.ws7ef_c00001{word-spacing:2.348800pt;}
.ws8ed_c00001{word-spacing:2.355200pt;}
.ws486_c00001{word-spacing:2.374400pt;}
.wsca2_c00001{word-spacing:2.380800pt;}
.ws61e_c00001{word-spacing:2.387200pt;}
.wse6c_c00001{word-spacing:2.393600pt;}
.ws7ee_c00001{word-spacing:2.400000pt;}
.ws8b5_c00001{word-spacing:2.406400pt;}
.ws64b_c00001{word-spacing:2.412800pt;}
.ws2ce_c00001{word-spacing:2.425600pt;}
.ws9a9_c00001{word-spacing:2.432000pt;}
.ws14c2_c00001{word-spacing:2.434432pt;}
.ws8ec_c00001{word-spacing:2.444800pt;}
.ws69b_c00001{word-spacing:2.451200pt;}
.ws4ea_c00001{word-spacing:2.457600pt;}
.ws635_c00001{word-spacing:2.464000pt;}
.ws421_c00001{word-spacing:2.470400pt;}
.wsf28_c00001{word-spacing:2.472960pt;}
.wsd13_c00001{word-spacing:2.476800pt;}
.ws82e_c00001{word-spacing:2.483200pt;}
.wsa6d_c00001{word-spacing:2.489600pt;}
.ws926_c00001{word-spacing:2.496000pt;}
.ws2cf_c00001{word-spacing:2.502400pt;}
.ws961_c00001{word-spacing:2.508800pt;}
.ws82d_c00001{word-spacing:2.515200pt;}
.ws31a_c00001{word-spacing:2.521600pt;}
.ws81_c00001{word-spacing:2.528000pt;}
.ws165_c00001{word-spacing:2.534400pt;}
.ws1447_c00001{word-spacing:2.535648pt;}
.ws21c_c00001{word-spacing:2.540800pt;}
.ws8b4_c00001{word-spacing:2.547200pt;}
.ws1446_c00001{word-spacing:2.553216pt;}
.ws166_c00001{word-spacing:2.553600pt;}
.wsb74_c00001{word-spacing:2.559072pt;}
.ws199_c00001{word-spacing:2.560000pt;}
.ws86_c00001{word-spacing:2.566400pt;}
.ws319_c00001{word-spacing:2.572800pt;}
.ws4a8_c00001{word-spacing:2.576640pt;}
.ws95b_c00001{word-spacing:2.579200pt;}
.wsb75_c00001{word-spacing:2.582496pt;}
.wsab4_c00001{word-spacing:2.585600pt;}
.ws4a7_c00001{word-spacing:2.588352pt;}
.ws13d2_c00001{word-spacing:2.590720pt;}
.ws117e_c00001{word-spacing:2.592000pt;}
.wsb6f_c00001{word-spacing:2.594208pt;}
.ws21d_c00001{word-spacing:2.598400pt;}
.ws563_c00001{word-spacing:2.600064pt;}
.ws13ff_c00001{word-spacing:2.602880pt;}
.wsc02_c00001{word-spacing:2.605920pt;}
.ws1385_c00001{word-spacing:2.611776pt;}
.ws9a8_c00001{word-spacing:2.617600pt;}
.wsfef_c00001{word-spacing:2.617632pt;}
.ws12c1_c00001{word-spacing:2.623488pt;}
.ws1107_c00001{word-spacing:2.635200pt;}
.wsd6c_c00001{word-spacing:2.636800pt;}
.ws120c_c00001{word-spacing:2.641056pt;}
.ws476_c00001{word-spacing:2.643200pt;}
.ws3ec_c00001{word-spacing:2.645280pt;}
.wsd3a_c00001{word-spacing:2.649600pt;}
.wsc0f_c00001{word-spacing:2.675200pt;}
.wsc91_c00001{word-spacing:2.681600pt;}
.ws13aa_c00001{word-spacing:2.688000pt;}
.ws49d_c00001{word-spacing:2.700800pt;}
.wse7a_c00001{word-spacing:2.707200pt;}
.wseff_c00001{word-spacing:2.708480pt;}
.ws8d6_c00001{word-spacing:2.713600pt;}
.wsc3b_c00001{word-spacing:2.720000pt;}
.ws585_c00001{word-spacing:2.726400pt;}
.wsa82_c00001{word-spacing:2.732800pt;}
.ws477_c00001{word-spacing:2.739200pt;}
.ws2e0_c00001{word-spacing:2.745600pt;}
.ws1f4_c00001{word-spacing:2.752000pt;}
.ws5f7_c00001{word-spacing:2.758400pt;}
.wsc42_c00001{word-spacing:2.764800pt;}
.ws1f2_c00001{word-spacing:2.771200pt;}
.ws596_c00001{word-spacing:2.777600pt;}
.ws583_c00001{word-spacing:2.784000pt;}
.ws475_c00001{word-spacing:2.790400pt;}
.ws5a1_c00001{word-spacing:2.796800pt;}
.ws50d_c00001{word-spacing:2.803200pt;}
.ws183_c00001{word-spacing:2.809600pt;}
.ws55c_c00001{word-spacing:2.816000pt;}
.wsf0_c00001{word-spacing:2.822400pt;}
.ws50e_c00001{word-spacing:2.828800pt;}
.ws3ad_c00001{word-spacing:2.835200pt;}
.ws4d8_c00001{word-spacing:2.841600pt;}
.ws2c2_c00001{word-spacing:2.848000pt;}
.ws1a4_c00001{word-spacing:2.854400pt;}
.ws182_c00001{word-spacing:2.860800pt;}
.ws1f3_c00001{word-spacing:2.867200pt;}
.ws1a2_c00001{word-spacing:2.873600pt;}
.wsa8b_c00001{word-spacing:2.875296pt;}
.ws586_c00001{word-spacing:2.880000pt;}
.ws148a_c00001{word-spacing:2.881152pt;}
.ws536_c00001{word-spacing:2.886400pt;}
.wsf1_c00001{word-spacing:2.892800pt;}
.wsa8c_c00001{word-spacing:2.898720pt;}
.ws19d_c00001{word-spacing:2.899200pt;}
.ws10d7_c00001{word-spacing:2.904576pt;}
.ws535_c00001{word-spacing:2.905600pt;}
.ws7b5_c00001{word-spacing:2.910432pt;}
.ws2df_c00001{word-spacing:2.912000pt;}
.ws7b2_c00001{word-spacing:2.916288pt;}
.ws944_c00001{word-spacing:2.918400pt;}
.ws568_c00001{word-spacing:2.922144pt;}
.ws11b3_c00001{word-spacing:2.933856pt;}
.wsd86_c00001{word-spacing:2.937600pt;}
.ws84b_c00001{word-spacing:2.945568pt;}
.ws88f_c00001{word-spacing:2.950400pt;}
.ws133f_c00001{word-spacing:2.951424pt;}
.ws12ef_c00001{word-spacing:2.957280pt;}
.ws10f4_c00001{word-spacing:2.963136pt;}
.ws59b_c00001{word-spacing:2.995200pt;}
.ws73a_c00001{word-spacing:3.001600pt;}
.ws7f7_c00001{word-spacing:3.008000pt;}
.wsc98_c00001{word-spacing:3.014400pt;}
.wse09_c00001{word-spacing:3.020800pt;}
.wsd2f_c00001{word-spacing:3.027200pt;}
.wsc99_c00001{word-spacing:3.033600pt;}
.ws8d1_c00001{word-spacing:3.040000pt;}
.ws4c9_c00001{word-spacing:3.046400pt;}
.ws94e_c00001{word-spacing:3.052800pt;}
.ws1af_c00001{word-spacing:3.059200pt;}
.ws13c0_c00001{word-spacing:3.061760pt;}
.ws3b5_c00001{word-spacing:3.065600pt;}
.ws3b6_c00001{word-spacing:3.072000pt;}
.wsc43_c00001{word-spacing:3.078400pt;}
.ws460_c00001{word-spacing:3.084800pt;}
.wsc74_c00001{word-spacing:3.091200pt;}
.ws5e1_c00001{word-spacing:3.097600pt;}
.ws4f4_c00001{word-spacing:3.104000pt;}
.ws3af_c00001{word-spacing:3.110400pt;}
.ws1cf_c00001{word-spacing:3.116800pt;}
.wsabd_c00001{word-spacing:3.123200pt;}
.ws5e0_c00001{word-spacing:3.129600pt;}
.wsc63_c00001{word-spacing:3.136000pt;}
.ws1ae_c00001{word-spacing:3.142400pt;}
.ws7c2_c00001{word-spacing:3.148800pt;}
.ws3ae_c00001{word-spacing:3.155200pt;}
.ws2c6_c00001{word-spacing:3.161600pt;}
.ws1118_c00001{word-spacing:3.162240pt;}
.ws3b4_c00001{word-spacing:3.168000pt;}
.ws2c5_c00001{word-spacing:3.174400pt;}
.wsefe_c00001{word-spacing:3.179520pt;}
.ws10c_c00001{word-spacing:3.180800pt;}
.ws1ce_c00001{word-spacing:3.187200pt;}
.ws44d_c00001{word-spacing:3.193600pt;}
.ws14aa_c00001{word-spacing:3.197376pt;}
.ws739_c00001{word-spacing:3.200000pt;}
.ws1134_c00001{word-spacing:3.209088pt;}
.ws10d_c00001{word-spacing:3.212800pt;}
.ws7ab_c00001{word-spacing:3.214944pt;}
.ws9df_c00001{word-spacing:3.219200pt;}
.wsb28_c00001{word-spacing:3.220800pt;}
.ws577_c00001{word-spacing:3.225600pt;}
.wsb27_c00001{word-spacing:3.226656pt;}
.ws10e9_c00001{word-spacing:3.232512pt;}
.wsc06_c00001{word-spacing:3.238368pt;}
.ws13e4_c00001{word-spacing:3.238400pt;}
.ws1062_c00001{word-spacing:3.244224pt;}
.ws1026_c00001{word-spacing:3.250080pt;}
.ws119f_c00001{word-spacing:3.255936pt;}
.ws14b1_c00001{word-spacing:3.261792pt;}
.wsfc6_c00001{word-spacing:3.267648pt;}
.ws142_c00001{word-spacing:3.270400pt;}
.ws14a5_c00001{word-spacing:3.273504pt;}
.wsd31_c00001{word-spacing:3.276800pt;}
.wsb02_c00001{word-spacing:3.283200pt;}
.ws576_c00001{word-spacing:3.289600pt;}
.ws12d7_c00001{word-spacing:3.291072pt;}
.ws5e2_c00001{word-spacing:3.308800pt;}
.ws56d_c00001{word-spacing:3.321600pt;}
.ws62d_c00001{word-spacing:3.328000pt;}
.wsd30_c00001{word-spacing:3.340800pt;}
.wsc3d_c00001{word-spacing:3.347200pt;}
.ws62c_c00001{word-spacing:3.353600pt;}
.ws276_c00001{word-spacing:3.360000pt;}
.ws560_c00001{word-spacing:3.366400pt;}
.ws56c_c00001{word-spacing:3.372800pt;}
.ws418_c00001{word-spacing:3.379200pt;}
.ws75d_c00001{word-spacing:3.385600pt;}
.wsb31_c00001{word-spacing:3.392000pt;}
.ws419_c00001{word-spacing:3.398400pt;}
.ws2d4_c00001{word-spacing:3.404800pt;}
.ws2b7_c00001{word-spacing:3.411200pt;}
.ws1270_c00001{word-spacing:3.417600pt;}
.ws14f_c00001{word-spacing:3.424000pt;}
.ws141_c00001{word-spacing:3.430400pt;}
.ws3fa_c00001{word-spacing:3.436800pt;}
.ws2f8_c00001{word-spacing:3.443200pt;}
.ws308_c00001{word-spacing:3.449600pt;}
.ws20f_c00001{word-spacing:3.456000pt;}
.ws3c5_c00001{word-spacing:3.462400pt;}
.ws598_c00001{word-spacing:3.468800pt;}
.ws929_c00001{word-spacing:3.475200pt;}
.ws4bc_c00001{word-spacing:3.481600pt;}
.ws551_c00001{word-spacing:3.488000pt;}
.ws8e_c00001{word-spacing:3.494400pt;}
.ws55f_c00001{word-spacing:3.500800pt;}
.ws2cd_c00001{word-spacing:3.507200pt;}
.wsaa6_c00001{word-spacing:3.507744pt;}
.ws8d_c00001{word-spacing:3.513600pt;}
.ws2b8_c00001{word-spacing:3.520000pt;}
.wsb2f_c00001{word-spacing:3.525312pt;}
.ws367_c00001{word-spacing:3.526400pt;}
.ws309_c00001{word-spacing:3.532800pt;}
.ws7aa_c00001{word-spacing:3.537024pt;}
.ws2d5_c00001{word-spacing:3.539200pt;}
.ws14e6_c00001{word-spacing:3.542880pt;}
.ws64c_c00001{word-spacing:3.545600pt;}
.ws1345_c00001{word-spacing:3.548736pt;}
.ws143_c00001{word-spacing:3.552000pt;}
.ws4f3_c00001{word-spacing:3.554592pt;}
.ws552_c00001{word-spacing:3.558400pt;}
.ws4f2_c00001{word-spacing:3.560448pt;}
.wsc1a_c00001{word-spacing:3.564800pt;}
.ws14c5_c00001{word-spacing:3.566304pt;}
.ws1384_c00001{word-spacing:3.578016pt;}
.wsbfd_c00001{word-spacing:3.583872pt;}
.ws85e_c00001{word-spacing:3.584000pt;}
.ws1105_c00001{word-spacing:3.589728pt;}
.ws275_c00001{word-spacing:3.590400pt;}
.wsb42_c00001{word-spacing:3.595584pt;}
.wscb7_c00001{word-spacing:3.622400pt;}
.wsb00_c00001{word-spacing:3.633920pt;}
.ws3ff_c00001{word-spacing:3.641600pt;}
.ws9ec_c00001{word-spacing:3.648000pt;}
.ws518_c00001{word-spacing:3.660800pt;}
.ws934_c00001{word-spacing:3.667200pt;}
.wscb8_c00001{word-spacing:3.673600pt;}
.wsd45_c00001{word-spacing:3.680000pt;}
.wsab5_c00001{word-spacing:3.686400pt;}
.ws35a_c00001{word-spacing:3.692800pt;}
.ws7da_c00001{word-spacing:3.699200pt;}
.ws72b_c00001{word-spacing:3.705600pt;}
.ws13d8_c00001{word-spacing:3.709440pt;}
.ws437_c00001{word-spacing:3.712000pt;}
.ws359_c00001{word-spacing:3.718400pt;}
.ws4e3_c00001{word-spacing:3.724800pt;}
.ws358_c00001{word-spacing:3.730112pt;}
.ws68d_c00001{word-spacing:3.731200pt;}
.ws9eb_c00001{word-spacing:3.737600pt;}
.ws3fd_c00001{word-spacing:3.744000pt;}
.ws48e_c00001{word-spacing:3.750400pt;}
.ws33d_c00001{word-spacing:3.756800pt;}
.ws23d_c00001{word-spacing:3.763200pt;}
.ws948_c00001{word-spacing:3.769600pt;}
.ws473_c00001{word-spacing:3.776000pt;}
.ws3cf_c00001{word-spacing:3.782400pt;}
.ws474_c00001{word-spacing:3.788800pt;}
.ws26a_c00001{word-spacing:3.795200pt;}
.ws580_c00001{word-spacing:3.801600pt;}
.wsc8_c00001{word-spacing:3.808000pt;}
.wsdb_c00001{word-spacing:3.814400pt;}
.ws3fe_c00001{word-spacing:3.820800pt;}
.ws62a_c00001{word-spacing:3.827200pt;}
.ws899_c00001{word-spacing:3.833600pt;}
.ws23c_c00001{word-spacing:3.840000pt;}
.ws1135_c00001{word-spacing:3.841536pt;}
.ws33e_c00001{word-spacing:3.846400pt;}
.ws7b8_c00001{word-spacing:3.847392pt;}
.ws26b_c00001{word-spacing:3.852800pt;}
.ws4fc_c00001{word-spacing:3.853248pt;}
.wsab_c00001{word-spacing:3.859104pt;}
.wsc7_c00001{word-spacing:3.859200pt;}
.ws111f_c00001{word-spacing:3.864960pt;}
.wsbdf_c00001{word-spacing:3.865600pt;}
.ws1130_c00001{word-spacing:3.870816pt;}
.wsfb2_c00001{word-spacing:3.876672pt;}
.ws1418_c00001{word-spacing:3.877760pt;}
.ws95d_c00001{word-spacing:3.878400pt;}
.ws143a_c00001{word-spacing:3.882528pt;}
.ws4fb_c00001{word-spacing:3.888384pt;}
.ws407_c00001{word-spacing:3.891200pt;}
.ws47f_c00001{word-spacing:3.894240pt;}
.wsc08_c00001{word-spacing:3.900096pt;}
.ws11a8_c00001{word-spacing:3.905952pt;}
.wse11_c00001{word-spacing:3.910400pt;}
.wse20_c00001{word-spacing:3.923200pt;}
.ws138b_c00001{word-spacing:3.923520pt;}
.ws772_c00001{word-spacing:3.929600pt;}
.wsf5c_c00001{word-spacing:3.936000pt;}
.wsee5_c00001{word-spacing:3.944960pt;}
.wsd24_c00001{word-spacing:3.955200pt;}
.wse3f_c00001{word-spacing:3.961600pt;}
.wsdc1_c00001{word-spacing:3.968000pt;}
.wsd05_c00001{word-spacing:3.974400pt;}
.wsf6f_c00001{word-spacing:3.980800pt;}
.ws699_c00001{word-spacing:3.987200pt;}
.wsd09_c00001{word-spacing:3.993600pt;}
.ws225_c00001{word-spacing:4.000000pt;}
.ws13e_c00001{word-spacing:4.006400pt;}
.ws9b3_c00001{word-spacing:4.011328pt;}
.ws1d1_c00001{word-spacing:4.012800pt;}
.wsf6e_c00001{word-spacing:4.019200pt;}
.ws296_c00001{word-spacing:4.025600pt;}
.ws297_c00001{word-spacing:4.032000pt;}
.ws22a_c00001{word-spacing:4.038400pt;}
.ws2a1_c00001{word-spacing:4.044800pt;}
.wsa97_c00001{word-spacing:4.051200pt;}
.ws72d_c00001{word-spacing:4.057600pt;}
.ws223_c00001{word-spacing:4.064000pt;}
.ws89_c00001{word-spacing:4.070400pt;}
.ws390_c00001{word-spacing:4.076800pt;}
.ws44_c00001{word-spacing:4.083200pt;}
.ws942_c00001{word-spacing:4.089600pt;}
.ws1d0_c00001{word-spacing:4.096000pt;}
.ws2a2_c00001{word-spacing:4.102400pt;}
.ws78e_c00001{word-spacing:4.108800pt;}
.ws43d_c00001{word-spacing:4.115200pt;}
.ws43_c00001{word-spacing:4.121600pt;}
.ws4e1_c00001{word-spacing:4.128000pt;}
.ws13d_c00001{word-spacing:4.134400pt;}
.ws13f_c00001{word-spacing:4.140800pt;}
.ws32a_c00001{word-spacing:4.147200pt;}
.ws1d2_c00001{word-spacing:4.153600pt;}
.ws78d_c00001{word-spacing:4.160000pt;}
.ws8a_c00001{word-spacing:4.166400pt;}
.ws69a_c00001{word-spacing:4.172800pt;}
.ws5d9_c00001{word-spacing:4.179200pt;}
.ws13e3_c00001{word-spacing:4.180480pt;}
.ws224_c00001{word-spacing:4.185600pt;}
.wsfe7_c00001{word-spacing:4.187040pt;}
.wsb2b_c00001{word-spacing:4.192896pt;}
.ws4e2_c00001{word-spacing:4.198400pt;}
.ws10df_c00001{word-spacing:4.198752pt;}
.wsbca_c00001{word-spacing:4.204608pt;}
.ws22b_c00001{word-spacing:4.204800pt;}
.ws90c_c00001{word-spacing:4.211200pt;}
.wsb2c_c00001{word-spacing:4.216320pt;}
.wsbb1_c00001{word-spacing:4.217600pt;}
.wsbd3_c00001{word-spacing:4.222176pt;}
.ws20_c00001{word-spacing:4.224000pt;}
.ws43e_c00001{word-spacing:4.228032pt;}
.ws1068_c00001{word-spacing:4.230400pt;}
.ws11a1_c00001{word-spacing:4.233888pt;}
.wsba9_c00001{word-spacing:4.236800pt;}
.ws1579_c00001{word-spacing:4.239744pt;}
.ws8bc_c00001{word-spacing:4.256000pt;}
.wsd2b_c00001{word-spacing:4.262400pt;}
.ws729_c00001{word-spacing:4.281600pt;}
.ws3d7_c00001{word-spacing:4.294400pt;}
.wse8e_c00001{word-spacing:4.300800pt;}
.ws11b8_c00001{word-spacing:4.307200pt;}
.ws80c_c00001{word-spacing:4.313600pt;}
.wsaf1_c00001{word-spacing:4.320000pt;}
.ws1ec_c00001{word-spacing:4.326400pt;}
.ws25c_c00001{word-spacing:4.332800pt;}
.ws1c3_c00001{word-spacing:4.339200pt;}
.ws83_c00001{word-spacing:4.345600pt;}
.wsa76_c00001{word-spacing:4.352000pt;}
.wsefc_c00001{word-spacing:4.357120pt;}
.ws3d8_c00001{word-spacing:4.358400pt;}
.ws8be_c00001{word-spacing:4.364800pt;}
.ws1e8_c00001{word-spacing:4.371200pt;}
.ws15e_c00001{word-spacing:4.377600pt;}
.ws990_c00001{word-spacing:4.384000pt;}
.ws615_c00001{word-spacing:4.390400pt;}
.ws1e9_c00001{word-spacing:4.396800pt;}
.ws51e_c00001{word-spacing:4.403200pt;}
.ws626_c00001{word-spacing:4.409600pt;}
.ws72a_c00001{word-spacing:4.416000pt;}
.ws697_c00001{word-spacing:4.422400pt;}
.ws1c2_c00001{word-spacing:4.428800pt;}
.ws840_c00001{word-spacing:4.435200pt;}
.ws9be_c00001{word-spacing:4.438848pt;}
.ws7c_c00001{word-spacing:4.441600pt;}
.wsa50_c00001{word-spacing:4.448000pt;}
.ws289_c00001{word-spacing:4.454400pt;}
.ws1f_c00001{word-spacing:4.460800pt;}
.ws1112_c00001{word-spacing:4.462272pt;}
.ws82_c00001{word-spacing:4.467200pt;}
.ws51d_c00001{word-spacing:4.473600pt;}
.ws14ac_c00001{word-spacing:4.473984pt;}
.wsefd_c00001{word-spacing:4.474880pt;}
.ws14ab_c00001{word-spacing:4.479840pt;}
.ws9ed_c00001{word-spacing:4.480000pt;}
.wsc00_c00001{word-spacing:4.485696pt;}
.ws298_c00001{word-spacing:4.486400pt;}
.ws10c4_c00001{word-spacing:4.491552pt;}
.ws158_c00001{word-spacing:4.492800pt;}
.wsb72_c00001{word-spacing:4.497408pt;}
.ws8a4_c00001{word-spacing:4.499200pt;}
.ws1057_c00001{word-spacing:4.503264pt;}
.ws7ca_c00001{word-spacing:4.505600pt;}
.wsbff_c00001{word-spacing:4.509120pt;}
.ws73f_c00001{word-spacing:4.512000pt;}
.ws970_c00001{word-spacing:4.514976pt;}
.ws25d_c00001{word-spacing:4.518400pt;}
.ws124_c00001{word-spacing:4.520832pt;}
.wsbaa_c00001{word-spacing:4.524800pt;}
.ws126a_c00001{word-spacing:4.526688pt;}
.ws880_c00001{word-spacing:4.531200pt;}
.ws11ec_c00001{word-spacing:4.532544pt;}
.ws123_c00001{word-spacing:4.538400pt;}
.wsdc5_c00001{word-spacing:4.544000pt;}
.ws10a9_c00001{word-spacing:4.544256pt;}
.ws1083_c00001{word-spacing:4.550112pt;}
.ws10a2_c00001{word-spacing:4.555968pt;}
.ws1069_c00001{word-spacing:4.556800pt;}
.ws1084_c00001{word-spacing:4.561824pt;}
.wse7b_c00001{word-spacing:4.563200pt;}
.ws1f8_c00001{word-spacing:4.582400pt;}
.ws1067_c00001{word-spacing:4.588800pt;}
.ws89d_c00001{word-spacing:4.601600pt;}
.ws3eb_c00001{word-spacing:4.606528pt;}
.ws85d_c00001{word-spacing:4.614400pt;}
.ws76d_c00001{word-spacing:4.627200pt;}
.ws105_c00001{word-spacing:4.633600pt;}
.ws9fd_c00001{word-spacing:4.640000pt;}
.wsb0d_c00001{word-spacing:4.646400pt;}
.ws12b_c00001{word-spacing:4.652800pt;}
.ws59f_c00001{word-spacing:4.659200pt;}
.wsa65_c00001{word-spacing:4.665600pt;}
.ws3b_c00001{word-spacing:4.672000pt;}
.wsa4_c00001{word-spacing:4.678400pt;}
.ws422_c00001{word-spacing:4.684800pt;}
.ws104_c00001{word-spacing:4.691200pt;}
.ws1b6_c00001{word-spacing:4.697600pt;}
.ws3c_c00001{word-spacing:4.704000pt;}
.wsa34_c00001{word-spacing:4.710400pt;}
.ws3cd_c00001{word-spacing:4.716800pt;}
.ws2cb_c00001{word-spacing:4.723200pt;}
.ws73e_c00001{word-spacing:4.729600pt;}
.ws490_c00001{word-spacing:4.736000pt;}
.ws1b5_c00001{word-spacing:4.742400pt;}
.ws524_c00001{word-spacing:4.748800pt;}
.ws12d4_c00001{word-spacing:4.755072pt;}
.wsa5_c00001{word-spacing:4.755200pt;}
.ws12ee_c00001{word-spacing:4.760928pt;}
.ws5d6_c00001{word-spacing:4.761600pt;}
.ws405_c00001{word-spacing:4.768000pt;}
.ws491_c00001{word-spacing:4.774400pt;}
.ws1119_c00001{word-spacing:4.778496pt;}
.ws38f_c00001{word-spacing:4.780800pt;}
.ws2cc_c00001{word-spacing:4.787200pt;}
.ws1f9_c00001{word-spacing:4.793600pt;}
.ws11e7_c00001{word-spacing:4.796064pt;}
.ws404_c00001{word-spacing:4.800000pt;}
.ws12f3_c00001{word-spacing:4.801920pt;}
.ws241_c00001{word-spacing:4.806400pt;}
.ws7b6_c00001{word-spacing:4.807776pt;}
.ws544_c00001{word-spacing:4.812800pt;}
.ws7b7_c00001{word-spacing:4.813632pt;}
.ws87f_c00001{word-spacing:4.819200pt;}
.ws1099_c00001{word-spacing:4.819488pt;}
.ws10a_c00001{word-spacing:4.825344pt;}
.ws95a_c00001{word-spacing:4.825600pt;}
.wsef2_c00001{word-spacing:4.828160pt;}
.ws96f_c00001{word-spacing:4.831200pt;}
.ws3ce_c00001{word-spacing:4.832000pt;}
.wsf99_c00001{word-spacing:4.837056pt;}
.wsd2a_c00001{word-spacing:4.838400pt;}
.wsad0_c00001{word-spacing:4.842912pt;}
.ws1220_c00001{word-spacing:4.844800pt;}
.ws10b_c00001{word-spacing:4.848768pt;}
.ws2f5_c00001{word-spacing:4.854624pt;}
.wsc6e_c00001{word-spacing:4.857600pt;}
.ws12d3_c00001{word-spacing:4.860480pt;}
.ws12c_c00001{word-spacing:4.863040pt;}
.wsb57_c00001{word-spacing:4.866336pt;}
.ws2f6_c00001{word-spacing:4.872192pt;}
.wsdf1_c00001{word-spacing:4.876800pt;}
.ws12d_c00001{word-spacing:4.879072pt;}
.ws1228_c00001{word-spacing:4.883200pt;}
.wsc84_c00001{word-spacing:4.896000pt;}
.ws46_c00001{word-spacing:4.902400pt;}
.wsd29_c00001{word-spacing:4.908800pt;}
.wsc61_c00001{word-spacing:4.921600pt;}
.ws9f4_c00001{word-spacing:4.940800pt;}
.ws918_c00001{word-spacing:4.947200pt;}
.ws7a6_c00001{word-spacing:4.960000pt;}
.ws14f9_c00001{word-spacing:4.966400pt;}
.ws6e9_c00001{word-spacing:4.972800pt;}
.ws412_c00001{word-spacing:4.979200pt;}
.ws47_c00001{word-spacing:4.992000pt;}
.ws57_c00001{word-spacing:4.998400pt;}
.ws9f0_c00001{word-spacing:5.004800pt;}
.ws295_c00001{word-spacing:5.011200pt;}
.ws280_c00001{word-spacing:5.017600pt;}
.ws8a1_c00001{word-spacing:5.024000pt;}
.ws66f_c00001{word-spacing:5.030400pt;}
.ws5dd_c00001{word-spacing:5.036800pt;}
.ws3bc_c00001{word-spacing:5.043200pt;}
.ws411_c00001{word-spacing:5.049600pt;}
.ws11f_c00001{word-spacing:5.056000pt;}
.ws274_c00001{word-spacing:5.062400pt;}
.ws35b_c00001{word-spacing:5.068800pt;}
.ws159_c00001{word-spacing:5.075200pt;}
.ws15a_c00001{word-spacing:5.081600pt;}
.ws294_c00001{word-spacing:5.088000pt;}
.ws1137_c00001{word-spacing:5.088864pt;}
.ws2c_c00001{word-spacing:5.094400pt;}
.ws11e_c00001{word-spacing:5.100800pt;}
.ws27f_c00001{word-spacing:5.107200pt;}
.ws3bd_c00001{word-spacing:5.113600pt;}
.ws1280_c00001{word-spacing:5.118144pt;}
.ws5dc_c00001{word-spacing:5.120000pt;}
.wsef0_c00001{word-spacing:5.122560pt;}
.ws2fe_c00001{word-spacing:5.124000pt;}
.ws2d_c00001{word-spacing:5.126400pt;}
.ws10de_c00001{word-spacing:5.129856pt;}
.ws45_c00001{word-spacing:5.132800pt;}
.wsbd2_c00001{word-spacing:5.135712pt;}
.ws7d2_c00001{word-spacing:5.139200pt;}
.ws2fd_c00001{word-spacing:5.141568pt;}
.ws609_c00001{word-spacing:5.145600pt;}
.ws107e_c00001{word-spacing:5.147424pt;}
.wscca_c00001{word-spacing:5.152000pt;}
.ws1400_c00001{word-spacing:5.152640pt;}
.wsbfa_c00001{word-spacing:5.153280pt;}
.ws581_c00001{word-spacing:5.158400pt;}
.ws1377_c00001{word-spacing:5.159136pt;}
.ws2b_c00001{word-spacing:5.164800pt;}
.wsbcd_c00001{word-spacing:5.164992pt;}
.ws2ff_c00001{word-spacing:5.170848pt;}
.wsc26_c00001{word-spacing:5.171200pt;}
.ws10d1_c00001{word-spacing:5.176704pt;}
.ws56_c00001{word-spacing:5.177600pt;}
.ws118f_c00001{word-spacing:5.182560pt;}
.ws1538_c00001{word-spacing:5.188416pt;}
.ws95f_c00001{word-spacing:5.190400pt;}
.wsc53_c00001{word-spacing:5.196800pt;}
.wsc85_c00001{word-spacing:5.203200pt;}
.wsa84_c00001{word-spacing:5.209600pt;}
.wse10_c00001{word-spacing:5.222400pt;}
.ws13b3_c00001{word-spacing:5.240320pt;}
.ws5a9_c00001{word-spacing:5.248000pt;}
.wse7e_c00001{word-spacing:5.260800pt;}
.ws456_c00001{word-spacing:5.267200pt;}
.ws869_c00001{word-spacing:5.292800pt;}
.ws7cf_c00001{word-spacing:5.299200pt;}
.ws3f7_c00001{word-spacing:5.305600pt;}
.wsd6d_c00001{word-spacing:5.312000pt;}
.ws1e1_c00001{word-spacing:5.318400pt;}
.wsa60_c00001{word-spacing:5.324800pt;}
.ws455_c00001{word-spacing:5.331200pt;}
.ws94_c00001{word-spacing:5.337600pt;}
.ws6a1_c00001{word-spacing:5.344000pt;}
.ws3da_c00001{word-spacing:5.350400pt;}
.ws42b_c00001{word-spacing:5.356800pt;}
.ws45b_c00001{word-spacing:5.363200pt;}
.ws6a2_c00001{word-spacing:5.369600pt;}
.ws9c5_c00001{word-spacing:5.376000pt;}
.ws3f8_c00001{word-spacing:5.382400pt;}
.ws962_c00001{word-spacing:5.395200pt;}
.ws95_c00001{word-spacing:5.401600pt;}
.ws1e2_c00001{word-spacing:5.408000pt;}
.ws1e0_c00001{word-spacing:5.414400pt;}
.ws628_c00001{word-spacing:5.420800pt;}
.ws4bd_c00001{word-spacing:5.427200pt;}
.ws1138_c00001{word-spacing:5.428512pt;}
.ws7ce_c00001{word-spacing:5.433600pt;}
.ws54c_c00001{word-spacing:5.440000pt;}
.ws12d5_c00001{word-spacing:5.440224pt;}
.ws1075_c00001{word-spacing:5.446080pt;}
.ws9c6_c00001{word-spacing:5.446400pt;}
.ws12b0_c00001{word-spacing:5.451936pt;}
.ws520_c00001{word-spacing:5.452800pt;}
.wsb67_c00001{word-spacing:5.457792pt;}
.wsc48_c00001{word-spacing:5.459200pt;}
.ws105f_c00001{word-spacing:5.463648pt;}
.ws618_c00001{word-spacing:5.465600pt;}
.ws12d6_c00001{word-spacing:5.469504pt;}
.wsa66_c00001{word-spacing:5.472000pt;}
.ws7a9_c00001{word-spacing:5.475360pt;}
.ws13f6_c00001{word-spacing:5.475840pt;}
.ws457_c00001{word-spacing:5.478400pt;}
.ws4f1_c00001{word-spacing:5.481216pt;}
.wsb4e_c00001{word-spacing:5.487072pt;}
.wse08_c00001{word-spacing:5.491200pt;}
.wsb4f_c00001{word-spacing:5.492928pt;}
.wsbf2_c00001{word-spacing:5.498784pt;}
.wsd80_c00001{word-spacing:5.504000pt;}
.ws1380_c00001{word-spacing:5.504640pt;}
.ws13a_c00001{word-spacing:5.509664pt;}
.ws1432_c00001{word-spacing:5.510400pt;}
.ws972_c00001{word-spacing:5.510496pt;}
.ws13b_c00001{word-spacing:5.515008pt;}
.ws971_c00001{word-spacing:5.516352pt;}
.wsdce_c00001{word-spacing:5.516800pt;}
.ws8ea_c00001{word-spacing:5.523200pt;}
.wsc25_c00001{word-spacing:5.529600pt;}
.wsbf1_c00001{word-spacing:5.533920pt;}
.ws15f_c00001{word-spacing:5.555200pt;}
.wsc5a_c00001{word-spacing:5.580800pt;}
.wsd03_c00001{word-spacing:5.587200pt;}
.ws619_c00001{word-spacing:5.593600pt;}
.ws986_c00001{word-spacing:5.600000pt;}
.ws3d_c00001{word-spacing:5.606400pt;}
.ws415_c00001{word-spacing:5.612800pt;}
.ws579_c00001{word-spacing:5.625600pt;}
.ws4c3_c00001{word-spacing:5.632000pt;}
.ws4c1_c00001{word-spacing:5.638400pt;}
.ws2bf_c00001{word-spacing:5.644800pt;}
.ws745_c00001{word-spacing:5.651200pt;}
.wsef4_c00001{word-spacing:5.652480pt;}
.ws595_c00001{word-spacing:5.657600pt;}
.ws981_c00001{word-spacing:5.664000pt;}
.ws5b4_c00001{word-spacing:5.670400pt;}
.ws19a_c00001{word-spacing:5.676800pt;}
.ws18e_c00001{word-spacing:5.683200pt;}
.ws594_c00001{word-spacing:5.689600pt;}
.ws3e_c00001{word-spacing:5.696000pt;}
.wsc4d_c00001{word-spacing:5.708800pt;}
.ws3f_c00001{word-spacing:5.715200pt;}
.ws471_c00001{word-spacing:5.721600pt;}
.ws69_c00001{word-spacing:5.728000pt;}
.ws160_c00001{word-spacing:5.734400pt;}
.ws409_c00001{word-spacing:5.740800pt;}
.ws578_c00001{word-spacing:5.747200pt;}
.ws4c2_c00001{word-spacing:5.753600pt;}
.ws14ea_c00001{word-spacing:5.756448pt;}
.ws2a6_c00001{word-spacing:5.760000pt;}
.wsbf0_c00001{word-spacing:5.762304pt;}
.ws617_c00001{word-spacing:5.766400pt;}
.ws11de_c00001{word-spacing:5.768160pt;}
.wsf33_c00001{word-spacing:5.770240pt;}
.ws590_c00001{word-spacing:5.772800pt;}
.wsffd_c00001{word-spacing:5.774016pt;}
.ws6f0_c00001{word-spacing:5.779200pt;}
.ws1183_c00001{word-spacing:5.779872pt;}
.ws68_c00001{word-spacing:5.785600pt;}
.ws1018_c00001{word-spacing:5.785728pt;}
.wsf6a_c00001{word-spacing:5.791584pt;}
.ws35c_c00001{word-spacing:5.792000pt;}
.ws31b_c00001{word-spacing:5.797440pt;}
.wscf7_c00001{word-spacing:5.798400pt;}
.ws10a8_c00001{word-spacing:5.803296pt;}
.ws11fe_c00001{word-spacing:5.804800pt;}
.ws47d_c00001{word-spacing:5.809152pt;}
.wsc24_c00001{word-spacing:5.811200pt;}
.ws919_c00001{word-spacing:5.815008pt;}
.ws653_c00001{word-spacing:5.817600pt;}
.ws843_c00001{word-spacing:5.820864pt;}
.ws1323_c00001{word-spacing:5.826720pt;}
.ws842_c00001{word-spacing:5.832576pt;}
.ws10ea_c00001{word-spacing:5.838432pt;}
.wsc10_c00001{word-spacing:5.843200pt;}
.ws1431_c00001{word-spacing:5.849600pt;}
.ws7f3_c00001{word-spacing:5.856000pt;}
.wsde0_c00001{word-spacing:5.875200pt;}
.wsc4c_c00001{word-spacing:5.881600pt;}
.ws2be_c00001{word-spacing:5.888000pt;}
.wsb16_c00001{word-spacing:5.894400pt;}
.wsd02_c00001{word-spacing:5.900800pt;}
.wse1b_c00001{word-spacing:5.913600pt;}
.wsdcd_c00001{word-spacing:5.920000pt;}
.ws78b_c00001{word-spacing:5.926400pt;}
.ws71a_c00001{word-spacing:5.932800pt;}
.wsd7f_c00001{word-spacing:5.939200pt;}
.ws71b_c00001{word-spacing:5.945600pt;}
.wsdbe_c00001{word-spacing:5.952000pt;}
.ws558_c00001{word-spacing:5.958400pt;}
.wsdef_c00001{word-spacing:5.964800pt;}
.wsaed_c00001{word-spacing:5.971200pt;}
.ws3fb_c00001{word-spacing:5.977600pt;}
.ws3fc_c00001{word-spacing:5.990400pt;}
.ws7a_c00001{word-spacing:5.996800pt;}
.ws88b_c00001{word-spacing:6.003200pt;}
.ws4cf_c00001{word-spacing:6.009600pt;}
.wsdc7_c00001{word-spacing:6.016000pt;}
.ws559_c00001{word-spacing:6.022400pt;}
.ws78c_c00001{word-spacing:6.028800pt;}
.ws68c_c00001{word-spacing:6.035200pt;}
.ws707_c00001{word-spacing:6.041600pt;}
.ws112_c00001{word-spacing:6.048000pt;}
.ws708_c00001{word-spacing:6.054400pt;}
.ws21_c00001{word-spacing:6.060800pt;}
.ws270_c00001{word-spacing:6.067200pt;}
.ws136e_c00001{word-spacing:6.072672pt;}
.ws79_c00001{word-spacing:6.073600pt;}
.ws1101_c00001{word-spacing:6.078528pt;}
.ws22_c00001{word-spacing:6.080000pt;}
.wsbbc_c00001{word-spacing:6.084384pt;}
.ws1dd_c00001{word-spacing:6.086400pt;}
.ws1295_c00001{word-spacing:6.090240pt;}
.ws719_c00001{word-spacing:6.092800pt;}
.ws1de_c00001{word-spacing:6.099200pt;}
.ws481_c00001{word-spacing:6.101952pt;}
.ws8fb_c00001{word-spacing:6.105600pt;}
.ws117f_c00001{word-spacing:6.107808pt;}
.wsa0e_c00001{word-spacing:6.112000pt;}
.ws480_c00001{word-spacing:6.113664pt;}
.wsa68_c00001{word-spacing:6.118400pt;}
.wsbbd_c00001{word-spacing:6.119520pt;}
.ws1ea_c00001{word-spacing:6.124800pt;}
.ws1388_c00001{word-spacing:6.125376pt;}
.wse07_c00001{word-spacing:6.131200pt;}
.ws37f_c00001{word-spacing:6.131232pt;}
.ws955_c00001{word-spacing:6.137600pt;}
.ws380_c00001{word-spacing:6.142944pt;}
.ws13c2_c00001{word-spacing:6.144000pt;}
.ws1180_c00001{word-spacing:6.148800pt;}
.ws116f_c00001{word-spacing:6.154656pt;}
.wsdbd_c00001{word-spacing:6.163200pt;}
.wsc5d_c00001{word-spacing:6.182400pt;}
.ws76e_c00001{word-spacing:6.195200pt;}
.ws767_c00001{word-spacing:6.201600pt;}
.wse22_c00001{word-spacing:6.208000pt;}
.ws145_c00001{word-spacing:6.214400pt;}
.ws72c_c00001{word-spacing:6.220800pt;}
.ws426_c00001{word-spacing:6.227200pt;}
.wsc45_c00001{word-spacing:6.233600pt;}
.wse55_c00001{word-spacing:6.246400pt;}
.ws144_c00001{word-spacing:6.252800pt;}
.ws766_c00001{word-spacing:6.259200pt;}
.wsded_c00001{word-spacing:6.265600pt;}
.ws1222_c00001{word-spacing:6.272000pt;}
.ws3ca_c00001{word-spacing:6.278400pt;}
.wsa93_c00001{word-spacing:6.284800pt;}
.ws2f0_c00001{word-spacing:6.291200pt;}
.ws210_c00001{word-spacing:6.297600pt;}
.wsef3_c00001{word-spacing:6.300160pt;}
.ws542_c00001{word-spacing:6.304000pt;}
.ws357_c00001{word-spacing:6.310400pt;}
.ws60a_c00001{word-spacing:6.316800pt;}
.ws454_c00001{word-spacing:6.323200pt;}
.ws427_c00001{word-spacing:6.329600pt;}
.ws803_c00001{word-spacing:6.336000pt;}
.ws8e1_c00001{word-spacing:6.342400pt;}
.ws7d_c00001{word-spacing:6.348800pt;}
.ws67_c00001{word-spacing:6.355200pt;}
.ws2ef_c00001{word-spacing:6.361600pt;}
.ws458_c00001{word-spacing:6.368000pt;}
.ws66_c00001{word-spacing:6.374400pt;}
.ws356_c00001{word-spacing:6.380800pt;}
.ws292_c00001{word-spacing:6.387200pt;}
.ws543_c00001{word-spacing:6.393600pt;}
.ws293_c00001{word-spacing:6.400000pt;}
.ws5df_c00001{word-spacing:6.406400pt;}
.ws106a_c00001{word-spacing:6.412320pt;}
.ws60b_c00001{word-spacing:6.412800pt;}
.wsef5_c00001{word-spacing:6.417920pt;}
.ws146_c00001{word-spacing:6.419200pt;}
.wsfce_c00001{word-spacing:6.424032pt;}
.ws956_c00001{word-spacing:6.425600pt;}
.ws1074_c00001{word-spacing:6.429888pt;}
.ws7e_c00001{word-spacing:6.432000pt;}
.ws137b_c00001{word-spacing:6.435744pt;}
.wse6b_c00001{word-spacing:6.438400pt;}
.ws79e_c00001{word-spacing:6.441600pt;}
.ws91c_c00001{word-spacing:6.444800pt;}
.ws14ae_c00001{word-spacing:6.447456pt;}
.ws1353_c00001{word-spacing:6.451200pt;}
.ws1386_c00001{word-spacing:6.459168pt;}
.ws1025_c00001{word-spacing:6.465024pt;}
.wse5b_c00001{word-spacing:6.476800pt;}
.ws1417_c00001{word-spacing:6.480640pt;}
.ws32c_c00001{word-spacing:6.489600pt;}
.wse54_c00001{word-spacing:6.521600pt;}
.ws958_c00001{word-spacing:6.540800pt;}
.ws959_c00001{word-spacing:6.547200pt;}
.wsa69_c00001{word-spacing:6.553600pt;}
.wsb76_c00001{word-spacing:6.560000pt;}
.ws88_c00001{word-spacing:6.592000pt;}
.ws96_c00001{word-spacing:6.604800pt;}
.ws83f_c00001{word-spacing:6.611200pt;}
.ws9cf_c00001{word-spacing:6.617600pt;}
.ws954_c00001{word-spacing:6.624000pt;}
.ws2d8_c00001{word-spacing:6.630400pt;}
.wsbdc_c00001{word-spacing:6.636800pt;}
.ws2d9_c00001{word-spacing:6.643200pt;}
.wsa31_c00001{word-spacing:6.649600pt;}
.ws97_c00001{word-spacing:6.656000pt;}
.ws817_c00001{word-spacing:6.662400pt;}
.ws46d_c00001{word-spacing:6.668800pt;}
.ws57e_c00001{word-spacing:6.675200pt;}
.ws193_c00001{word-spacing:6.681600pt;}
.ws87_c00001{word-spacing:6.688000pt;}
.ws46c_c00001{word-spacing:6.694400pt;}
.ws1196_c00001{word-spacing:6.699264pt;}
.ws27b_c00001{word-spacing:6.700800pt;}
.ws27c_c00001{word-spacing:6.707200pt;}
.ws12c4_c00001{word-spacing:6.710976pt;}
.ws725_c00001{word-spacing:6.713600pt;}
.ws321_c00001{word-spacing:6.716832pt;}
.wsb4a_c00001{word-spacing:6.720000pt;}
.ws116e_c00001{word-spacing:6.722688pt;}
.ws46e_c00001{word-spacing:6.726400pt;}
.ws1215_c00001{word-spacing:6.728544pt;}
.wse06_c00001{word-spacing:6.732800pt;}
.ws57f_c00001{word-spacing:6.739200pt;}
.ws4f0_c00001{word-spacing:6.740256pt;}
.ws32b_c00001{word-spacing:6.745600pt;}
.ws1214_c00001{word-spacing:6.751968pt;}
.ws4ef_c00001{word-spacing:6.757824pt;}
.ws952_c00001{word-spacing:6.758400pt;}
.ws320_c00001{word-spacing:6.763680pt;}
.wsf96_c00001{word-spacing:6.769536pt;}
.wse32_c00001{word-spacing:6.771200pt;}
.ws1100_c00001{word-spacing:6.775392pt;}
.wsb23_c00001{word-spacing:6.781248pt;}
.wsb01_c00001{word-spacing:6.781536pt;}
.ws13b2_c00001{word-spacing:6.784000pt;}
.ws1001_c00001{word-spacing:6.787104pt;}
.ws151f_c00001{word-spacing:6.803200pt;}
.wsfa1_c00001{word-spacing:6.804672pt;}
.wsb77_c00001{word-spacing:6.816000pt;}
.ws3f1_c00001{word-spacing:6.841600pt;}
.ws11f0_c00001{word-spacing:6.860800pt;}
.wsf52_c00001{word-spacing:6.867200pt;}
.ws7d0_c00001{word-spacing:6.873600pt;}
.ws81d_c00001{word-spacing:6.880000pt;}
.ws97e_c00001{word-spacing:6.886400pt;}
.ws19b_c00001{word-spacing:6.892800pt;}
.wse87_c00001{word-spacing:6.899200pt;}
.wsc77_c00001{word-spacing:6.905600pt;}
.wsaa8_c00001{word-spacing:6.912000pt;}
.wse18_c00001{word-spacing:6.918400pt;}
.ws7e5_c00001{word-spacing:6.931200pt;}
.ws8a3_c00001{word-spacing:6.937600pt;}
.wse52_c00001{word-spacing:6.944000pt;}
.wsef6_c00001{word-spacing:6.947840pt;}
.ws30f_c00001{word-spacing:6.950400pt;}
.ws7cb_c00001{word-spacing:6.956800pt;}
.ws7e6_c00001{word-spacing:6.963200pt;}
.ws172_c00001{word-spacing:6.969600pt;}
.ws9d1_c00001{word-spacing:6.976000pt;}
.ws244_c00001{word-spacing:6.982400pt;}
.ws515_c00001{word-spacing:6.988800pt;}
.wscb5_c00001{word-spacing:6.995200pt;}
.ws884_c00001{word-spacing:7.001600pt;}
.wsac3_c00001{word-spacing:7.008000pt;}
.ws243_c00001{word-spacing:7.014400pt;}
.ws12b7_c00001{word-spacing:7.015488pt;}
.ws171_c00001{word-spacing:7.020800pt;}
.ws442_c00001{word-spacing:7.021344pt;}
.ws19c_c00001{word-spacing:7.027200pt;}
.wsbf8_c00001{word-spacing:7.033056pt;}
.ws4e4_c00001{word-spacing:7.033600pt;}
.ws245_c00001{word-spacing:7.040000pt;}
.ws12b6_c00001{word-spacing:7.044768pt;}
.ws7d1_c00001{word-spacing:7.046400pt;}
.ws9f7_c00001{word-spacing:7.052800pt;}
.wsbf7_c00001{word-spacing:7.056480pt;}
.wsbb2_c00001{word-spacing:7.059200pt;}
.ws1247_c00001{word-spacing:7.062336pt;}
.ws980_c00001{word-spacing:7.065600pt;}
.ws1037_c00001{word-spacing:7.068192pt;}
.ws1177_c00001{word-spacing:7.074048pt;}
.wsfdb_c00001{word-spacing:7.079904pt;}
.ws84f_c00001{word-spacing:7.085760pt;}
.wsb03_c00001{word-spacing:7.091200pt;}
.ws1326_c00001{word-spacing:7.091616pt;}
.ws441_c00001{word-spacing:7.103328pt;}
.ws1202_c00001{word-spacing:7.109184pt;}
.ws8a2_c00001{word-spacing:7.110400pt;}
.wse51_c00001{word-spacing:7.129600pt;}
.ws97f_c00001{word-spacing:7.180800pt;}
.ws13f5_c00001{word-spacing:7.183360pt;}
.wse02_c00001{word-spacing:7.187200pt;}
.wsa6b_c00001{word-spacing:7.200000pt;}
.wsc83_c00001{word-spacing:7.212800pt;}
.ws64_c00001{word-spacing:7.219200pt;}
.ws333_c00001{word-spacing:7.225600pt;}
.wsa6c_c00001{word-spacing:7.232000pt;}
.ws897_c00001{word-spacing:7.238400pt;}
.ws1e_c00001{word-spacing:7.251200pt;}
.wsa59_c00001{word-spacing:7.257600pt;}
.ws3a0_c00001{word-spacing:7.264000pt;}
.ws4be_c00001{word-spacing:7.270400pt;}
.ws3ba_c00001{word-spacing:7.276800pt;}
.ws8eb_c00001{word-spacing:7.283200pt;}
.ws332_c00001{word-spacing:7.289600pt;}
.wsb1a_c00001{word-spacing:7.296000pt;}
.ws531_c00001{word-spacing:7.302400pt;}
.wsb5a_c00001{word-spacing:7.308800pt;}
.ws953_c00001{word-spacing:7.315200pt;}
.ws1ac_c00001{word-spacing:7.321600pt;}
.ws1ad_c00001{word-spacing:7.328000pt;}
.ws3b9_c00001{word-spacing:7.334400pt;}
.ws1048_c00001{word-spacing:7.337568pt;}
.ws65_c00001{word-spacing:7.340800pt;}
.ws7cc_c00001{word-spacing:7.347200pt;}
.ws149a_c00001{word-spacing:7.349280pt;}
.ws765_c00001{word-spacing:7.353600pt;}
.ws896_c00001{word-spacing:7.360000pt;}
.ws10c2_c00001{word-spacing:7.360992pt;}
.ws331_c00001{word-spacing:7.366400pt;}
.wsbc7_c00001{word-spacing:7.372704pt;}
.wsac4_c00001{word-spacing:7.372800pt;}
.ws3a1_c00001{word-spacing:7.379200pt;}
.wsacb_c00001{word-spacing:7.384416pt;}
.ws9f5_c00001{word-spacing:7.385600pt;}
.ws12da_c00001{word-spacing:7.390272pt;}
.ws509_c00001{word-spacing:7.392000pt;}
.wsacc_c00001{word-spacing:7.396128pt;}
.ws1277_c00001{word-spacing:7.401984pt;}
.ws733_c00001{word-spacing:7.404800pt;}
.wsb4d_c00001{word-spacing:7.407840pt;}
.ws1276_c00001{word-spacing:7.413696pt;}
.wsb5b_c00001{word-spacing:7.417600pt;}
.wsad8_c00001{word-spacing:7.419552pt;}
.wsf29_c00001{word-spacing:7.424000pt;}
.ws1318_c00001{word-spacing:7.425408pt;}
.ws947_c00001{word-spacing:7.430400pt;}
.wsd4c_c00001{word-spacing:7.443200pt;}
.ws607_c00001{word-spacing:7.456000pt;}
.ws77c_c00001{word-spacing:7.475200pt;}
.wsdc2_c00001{word-spacing:7.481600pt;}
.ws45f_c00001{word-spacing:7.494400pt;}
.wsde1_c00001{word-spacing:7.507200pt;}
.wsb1_c00001{word-spacing:7.513600pt;}
.wse45_c00001{word-spacing:7.520000pt;}
.wsb46_c00001{word-spacing:7.526400pt;}
.ws1f0_c00001{word-spacing:7.532800pt;}
.wsd4b_c00001{word-spacing:7.539200pt;}
.wsf5_c00001{word-spacing:7.545600pt;}
.ws77e_c00001{word-spacing:7.552000pt;}
.wsf4_c00001{word-spacing:7.558400pt;}
.ws857_c00001{word-spacing:7.571200pt;}
.ws6a3_c00001{word-spacing:7.584000pt;}
.wsaf_c00001{word-spacing:7.590400pt;}
.ws45e_c00001{word-spacing:7.596800pt;}
.ws66e_c00001{word-spacing:7.603200pt;}
.ws606_c00001{word-spacing:7.609600pt;}
.wsc8f_c00001{word-spacing:7.616000pt;}
.ws21f_c00001{word-spacing:7.622400pt;}
.ws5e3_c00001{word-spacing:7.628800pt;}
.ws220_c00001{word-spacing:7.635200pt;}
.ws3ea_c00001{word-spacing:7.636576pt;}
.ws86c_c00001{word-spacing:7.641600pt;}
.ws2a0_c00001{word-spacing:7.648000pt;}
.ws555_c00001{word-spacing:7.654400pt;}
.ws77d_c00001{word-spacing:7.660800pt;}
.ws45c_c00001{word-spacing:7.667200pt;}
.ws715_c00001{word-spacing:7.673600pt;}
.wsb0_c00001{word-spacing:7.680000pt;}
.ws147e_c00001{word-spacing:7.683072pt;}
.ws45d_c00001{word-spacing:7.686400pt;}
.ws112a_c00001{word-spacing:7.688928pt;}
.ws1f1_c00001{word-spacing:7.692800pt;}
.ws1349_c00001{word-spacing:7.694784pt;}
.wsc19_c00001{word-spacing:7.699200pt;}
.ws118a_c00001{word-spacing:7.700640pt;}
.wsd8c_c00001{word-spacing:7.705600pt;}
.ws100f_c00001{word-spacing:7.706496pt;}
.wsbce_c00001{word-spacing:7.718208pt;}
.wsb56_c00001{word-spacing:7.724064pt;}
.wsace_c00001{word-spacing:7.729920pt;}
.wsb3f_c00001{word-spacing:7.735776pt;}
.wsbf5_c00001{word-spacing:7.741632pt;}
.ws131d_c00001{word-spacing:7.747488pt;}
.ws1559_c00001{word-spacing:7.764832pt;}
.ws448_c00001{word-spacing:7.795200pt;}
.ws9d8_c00001{word-spacing:7.820800pt;}
.ws449_c00001{word-spacing:7.827200pt;}
.ws98_c00001{word-spacing:7.852800pt;}
.wsd06_c00001{word-spacing:7.859200pt;}
.ws417_c00001{word-spacing:7.865600pt;}
.ws777_c00001{word-spacing:7.872000pt;}
.ws41e_c00001{word-spacing:7.878400pt;}
.ws5ce_c00001{word-spacing:7.884800pt;}
.ws5cf_c00001{word-spacing:7.891200pt;}
.ws371_c00001{word-spacing:7.897600pt;}
.ws622_c00001{word-spacing:7.904000pt;}
.ws447_c00001{word-spacing:7.910400pt;}
.ws3f2_c00001{word-spacing:7.916800pt;}
.ws4dd_c00001{word-spacing:7.923200pt;}
.ws41f_c00001{word-spacing:7.929600pt;}
.ws806_c00001{word-spacing:7.936000pt;}
.ws650_c00001{word-spacing:7.942400pt;}
.wsac1_c00001{word-spacing:7.948800pt;}
.ws3f3_c00001{word-spacing:7.955200pt;}
.ws41d_c00001{word-spacing:7.961600pt;}
.ws1c4_c00001{word-spacing:7.968000pt;}
.ws776_c00001{word-spacing:7.974400pt;}
.ws9a_c00001{word-spacing:7.980800pt;}
.ws161_c00001{word-spacing:7.987200pt;}
.wsc03_c00001{word-spacing:7.987584pt;}
.ws123b_c00001{word-spacing:7.993440pt;}
.ws99_c00001{word-spacing:7.993600pt;}
.ws12f6_c00001{word-spacing:7.999296pt;}
.ws894_c00001{word-spacing:8.000000pt;}
.wsfdf_c00001{word-spacing:8.005152pt;}
.ws416_c00001{word-spacing:8.006400pt;}
.ws13c7_c00001{word-spacing:8.007680pt;}
.ws11af_c00001{word-spacing:8.011008pt;}
.ws132a_c00001{word-spacing:8.016864pt;}
.wsa1e_c00001{word-spacing:8.019200pt;}
.ws105a_c00001{word-spacing:8.022720pt;}
.ws11b4_c00001{word-spacing:8.028576pt;}
.ws1517_c00001{word-spacing:8.032000pt;}
.ws1146_c00001{word-spacing:8.034432pt;}
.wsb40_c00001{word-spacing:8.038400pt;}
.ws4fd_c00001{word-spacing:8.040288pt;}
.ws3f4_c00001{word-spacing:8.044800pt;}
.wsbb5_c00001{word-spacing:8.046144pt;}
.wsbb3_c00001{word-spacing:8.052000pt;}
.ws805_c00001{word-spacing:8.057600pt;}
.wsc01_c00001{word-spacing:8.057856pt;}
.ws1153_c00001{word-spacing:8.063712pt;}
.wsd07_c00001{word-spacing:8.064000pt;}
.ws4fe_c00001{word-spacing:8.075424pt;}
.ws12a0_c00001{word-spacing:8.087136pt;}
.ws102_c00001{word-spacing:8.096000pt;}
.ws196_c00001{word-spacing:8.102400pt;}
.ws921_c00001{word-spacing:8.134400pt;}
.ws855_c00001{word-spacing:8.160000pt;}
.ws923_c00001{word-spacing:8.166400pt;}
.ws922_c00001{word-spacing:8.172800pt;}
.wseee_c00001{word-spacing:8.184320pt;}
.ws1227_c00001{word-spacing:8.185600pt;}
.ws5c3_c00001{word-spacing:8.192000pt;}
.ws966_c00001{word-spacing:8.198400pt;}
.ws256_c00001{word-spacing:8.204800pt;}
.ws61_c00001{word-spacing:8.211200pt;}
.ws7db_c00001{word-spacing:8.224000pt;}
.ws4bb_c00001{word-spacing:8.230400pt;}
.ws856_c00001{word-spacing:8.236800pt;}
.wscc6_c00001{word-spacing:8.243200pt;}
.ws7dc_c00001{word-spacing:8.249600pt;}
.ws641_c00001{word-spacing:8.256000pt;}
.wsa14_c00001{word-spacing:8.262400pt;}
.ws89c_c00001{word-spacing:8.275200pt;}
.ws60_c00001{word-spacing:8.281600pt;}
.ws25_c00001{word-spacing:8.288000pt;}
.ws7b_c00001{word-spacing:8.294400pt;}
.ws466_c00001{word-spacing:8.300800pt;}
.ws13f8_c00001{word-spacing:8.302080pt;}
.ws26_c00001{word-spacing:8.307200pt;}
.ws2f4_c00001{word-spacing:8.313600pt;}
.wsf97_c00001{word-spacing:8.315520pt;}
.ws14b_c00001{word-spacing:8.320000pt;}
.ws8e3_c00001{word-spacing:8.326400pt;}
.ws7b1_c00001{word-spacing:8.327232pt;}
.ws103_c00001{word-spacing:8.332800pt;}
.ws7b0_c00001{word-spacing:8.333088pt;}
.wsfde_c00001{word-spacing:8.338944pt;}
.wsdc8_c00001{word-spacing:8.339200pt;}
.wsffc_c00001{word-spacing:8.344800pt;}
.ws197_c00001{word-spacing:8.345600pt;}
.ws1139_c00001{word-spacing:8.350656pt;}
.ws14a_c00001{word-spacing:8.352000pt;}
.ws11b1_c00001{word-spacing:8.356512pt;}
.wsfe0_c00001{word-spacing:8.362368pt;}
.ws470_c00001{word-spacing:8.364800pt;}
.ws112d_c00001{word-spacing:8.368224pt;}
.ws10a5_c00001{word-spacing:8.374080pt;}
.ws91f_c00001{word-spacing:8.384000pt;}
.ws148d_c00001{word-spacing:8.385792pt;}
.ws140c_c00001{word-spacing:8.392960pt;}
.wsde2_c00001{word-spacing:8.441600pt;}
.wsd26_c00001{word-spacing:8.448000pt;}
.wsb89_c00001{word-spacing:8.454400pt;}
.ws25a_c00001{word-spacing:8.460800pt;}
.ws2aa_c00001{word-spacing:8.467200pt;}
.ws121a_c00001{word-spacing:8.473600pt;}
.wsb8a_c00001{word-spacing:8.480000pt;}
.ws91d_c00001{word-spacing:8.492800pt;}
.ws924_c00001{word-spacing:8.499200pt;}
.wscc4_c00001{word-spacing:8.512000pt;}
.ws920_c00001{word-spacing:8.518400pt;}
.ws26e_c00001{word-spacing:8.531200pt;}
.ws5d0_c00001{word-spacing:8.537600pt;}
.ws614_c00001{word-spacing:8.544000pt;}
.ws1219_c00001{word-spacing:8.550400pt;}
.ws3b8_c00001{word-spacing:8.556800pt;}
.ws1aa_c00001{word-spacing:8.563200pt;}
.ws1a9_c00001{word-spacing:8.569600pt;}
.wsf0c_c00001{word-spacing:8.576000pt;}
.ws695_c00001{word-spacing:8.582400pt;}
.wsf44_c00001{word-spacing:8.588800pt;}
.ws588_c00001{word-spacing:8.595200pt;}
.ws25b_c00001{word-spacing:8.601600pt;}
.ws613_c00001{word-spacing:8.608000pt;}
.ws5d1_c00001{word-spacing:8.614400pt;}
.ws52d_c00001{word-spacing:8.620800pt;}
.ws3b7_c00001{word-spacing:8.627200pt;}
.ws91e_c00001{word-spacing:8.633600pt;}
.ws2a9_c00001{word-spacing:8.640000pt;}
.ws1111_c00001{word-spacing:8.643456pt;}
.ws26f_c00001{word-spacing:8.646400pt;}
.ws111c_c00001{word-spacing:8.649312pt;}
.ws36f_c00001{word-spacing:8.652800pt;}
.ws1171_c00001{word-spacing:8.655168pt;}
.ws895_c00001{word-spacing:8.659200pt;}
.ws1073_c00001{word-spacing:8.661024pt;}
.ws370_c00001{word-spacing:8.665600pt;}
.wsf77_c00001{word-spacing:8.666880pt;}
.ws589_c00001{word-spacing:8.672000pt;}
.ws10c0_c00001{word-spacing:8.672736pt;}
.ws696_c00001{word-spacing:8.678400pt;}
.ws10f3_c00001{word-spacing:8.678592pt;}
.ws1185_c00001{word-spacing:8.684448pt;}
.wsc1_c00001{word-spacing:8.684800pt;}
.ws1366_c00001{word-spacing:8.690304pt;}
.wsbc0_c00001{word-spacing:8.696160pt;}
.ws6fd_c00001{word-spacing:8.697600pt;}
.ws1032_c00001{word-spacing:8.702016pt;}
.ws1244_c00001{word-spacing:8.707872pt;}
.ws1336_c00001{word-spacing:8.719584pt;}
.wsc54_c00001{word-spacing:8.742400pt;}
.wsc2_c00001{word-spacing:8.748800pt;}
.wsd27_c00001{word-spacing:8.755200pt;}
.wsa4e_c00001{word-spacing:8.774400pt;}
.wsa91_c00001{word-spacing:8.793600pt;}
.wsc38_c00001{word-spacing:8.800000pt;}
.ws9f3_c00001{word-spacing:8.832000pt;}
.wsb0e_c00001{word-spacing:8.838400pt;}
.ws48c_c00001{word-spacing:8.844800pt;}
.ws5b6_c00001{word-spacing:8.851200pt;}
.ws2fc_c00001{word-spacing:8.857600pt;}
.ws2bd_c00001{word-spacing:8.876800pt;}
.ws48b_c00001{word-spacing:8.889600pt;}
.ws1c1_c00001{word-spacing:8.896000pt;}
.ws11d0_c00001{word-spacing:8.902400pt;}
.ws43c_c00001{word-spacing:8.908800pt;}
.ws991_c00001{word-spacing:8.915200pt;}
.wsc39_c00001{word-spacing:8.921600pt;}
.wsb0f_c00001{word-spacing:8.928000pt;}
.ws2bc_c00001{word-spacing:8.934400pt;}
.ws911_c00001{word-spacing:8.940800pt;}
.ws1bf_c00001{word-spacing:8.947200pt;}
.wseed_c00001{word-spacing:8.949760pt;}
.ws1c0_c00001{word-spacing:8.953600pt;}
.ws10f9_c00001{word-spacing:8.953824pt;}
.wsc0_c00001{word-spacing:8.960000pt;}
.ws137a_c00001{word-spacing:8.965536pt;}
.ws3d3_c00001{word-spacing:8.966400pt;}
.ws1232_c00001{word-spacing:8.971392pt;}
.ws43b_c00001{word-spacing:8.972800pt;}
.ws124a_c00001{word-spacing:8.977248pt;}
.ws5b5_c00001{word-spacing:8.979200pt;}
.wsf65_c00001{word-spacing:8.983104pt;}
.ws623_c00001{word-spacing:8.985600pt;}
.ws10bf_c00001{word-spacing:8.988960pt;}
.wsa4f_c00001{word-spacing:8.992000pt;}
.ws1000_c00001{word-spacing:8.994816pt;}
.ws4a1_c00001{word-spacing:9.004800pt;}
.wsacd_c00001{word-spacing:9.006528pt;}
.ws111d_c00001{word-spacing:9.018240pt;}
.wsb9d_c00001{word-spacing:9.024000pt;}
.ws1448_c00001{word-spacing:9.029952pt;}
.ws1204_c00001{word-spacing:9.035808pt;}
.ws838_c00001{word-spacing:9.056000pt;}
.wsc1d_c00001{word-spacing:9.062400pt;}
.wseef_c00001{word-spacing:9.067520pt;}
.wsd16_c00001{word-spacing:9.088000pt;}
.wsbaf_c00001{word-spacing:9.094400pt;}
.ws79a_c00001{word-spacing:9.100800pt;}
.ws307_c00001{word-spacing:9.120000pt;}
.ws1393_c00001{word-spacing:9.126400pt;}
.ws14ee_c00001{word-spacing:9.132800pt;}
.ws965_c00001{word-spacing:9.139200pt;}
.wsc58_c00001{word-spacing:9.145600pt;}
.ws168_c00001{word-spacing:9.158400pt;}
.ws68e_c00001{word-spacing:9.164800pt;}
.ws43a_c00001{word-spacing:9.177600pt;}
.ws1d4_c00001{word-spacing:9.184000pt;}
.ws8f0_c00001{word-spacing:9.190400pt;}
.ws439_c00001{word-spacing:9.196800pt;}
.ws255_c00001{word-spacing:9.203200pt;}
.ws1d3_c00001{word-spacing:9.209600pt;}
.ws525_c00001{word-spacing:9.216000pt;}
.ws828_c00001{word-spacing:9.222400pt;}
.ws1ed_c00001{word-spacing:9.228800pt;}
.ws624_c00001{word-spacing:9.235200pt;}
.ws4f5_c00001{word-spacing:9.241600pt;}
.ws140f_c00001{word-spacing:9.242880pt;}
.ws640_c00001{word-spacing:9.248000pt;}
.ws4f7_c00001{word-spacing:9.254400pt;}
.ws4f8_c00001{word-spacing:9.260800pt;}
.ws627_c00001{word-spacing:9.267200pt;}
.ws1003_c00001{word-spacing:9.270048pt;}
.ws902_c00001{word-spacing:9.273600pt;}
.ws169_c00001{word-spacing:9.280000pt;}
.ws1004_c00001{word-spacing:9.281760pt;}
.ws306_c00001{word-spacing:9.286400pt;}
.ws9a3_c00001{word-spacing:9.292800pt;}
.ws1240_c00001{word-spacing:9.293472pt;}
.ws9a4_c00001{word-spacing:9.299200pt;}
.ws135a_c00001{word-spacing:9.305184pt;}
.ws16a_c00001{word-spacing:9.305600pt;}
.wsfd4_c00001{word-spacing:9.311040pt;}
.ws951_c00001{word-spacing:9.312000pt;}
.wsbfc_c00001{word-spacing:9.316896pt;}
.wsbfb_c00001{word-spacing:9.322752pt;}
.ws7f0_c00001{word-spacing:9.324800pt;}
.ws114f_c00001{word-spacing:9.328608pt;}
.ws1f7_c00001{word-spacing:9.331200pt;}
.ws1023_c00001{word-spacing:9.334464pt;}
.wse64_c00001{word-spacing:9.337600pt;}
.ws1002_c00001{word-spacing:9.340320pt;}
.ws1411_c00001{word-spacing:9.349120pt;}
.wsc70_c00001{word-spacing:9.350400pt;}
.wse33_c00001{word-spacing:9.369600pt;}
.ws1226_c00001{word-spacing:9.401600pt;}
.ws538_c00001{word-spacing:9.408000pt;}
.ws982_c00001{word-spacing:9.427200pt;}
.ws58a_c00001{word-spacing:9.433600pt;}
.ws51a_c00001{word-spacing:9.459200pt;}
.ws519_c00001{word-spacing:9.465600pt;}
.ws216_c00001{word-spacing:9.472000pt;}
.ws58b_c00001{word-spacing:9.478400pt;}
.wsf04_c00001{word-spacing:9.479680pt;}
.ws671_c00001{word-spacing:9.484800pt;}
.ws7a7_c00001{word-spacing:9.491200pt;}
.ws89b_c00001{word-spacing:9.504000pt;}
.ws88c_c00001{word-spacing:9.510400pt;}
.ws1f5_c00001{word-spacing:9.516800pt;}
.ws9a5_c00001{word-spacing:9.523200pt;}
.ws537_c00001{word-spacing:9.529600pt;}
.ws5cb_c00001{word-spacing:9.536000pt;}
.ws599_c00001{word-spacing:9.542400pt;}
.ws514_c00001{word-spacing:9.555200pt;}
.ws215_c00001{word-spacing:9.561600pt;}
.ws1279_c00001{word-spacing:9.562848pt;}
.ws1f6_c00001{word-spacing:9.568000pt;}
.ws3f5_c00001{word-spacing:9.574400pt;}
.wsb62_c00001{word-spacing:9.580416pt;}
.ws217_c00001{word-spacing:9.580800pt;}
.ws5ca_c00001{word-spacing:9.587200pt;}
.ws12c8_c00001{word-spacing:9.592128pt;}
.ws62e_c00001{word-spacing:9.593600pt;}
.wsf03_c00001{word-spacing:9.597440pt;}
.ws1150_c00001{word-spacing:9.597984pt;}
.ws73d_c00001{word-spacing:9.600000pt;}
.ws7f8_c00001{word-spacing:9.606400pt;}
.ws134b_c00001{word-spacing:9.609696pt;}
.wsdff_c00001{word-spacing:9.612800pt;}
.ws7ae_c00001{word-spacing:9.615552pt;}
.ws9a6_c00001{word-spacing:9.619200pt;}
.ws7af_c00001{word-spacing:9.621408pt;}
.ws84e_c00001{word-spacing:9.627264pt;}
.ws3f6_c00001{word-spacing:9.632000pt;}
.ws14a3_c00001{word-spacing:9.633120pt;}
.ws111e_c00001{word-spacing:9.638976pt;}
.wsf48_c00001{word-spacing:9.644800pt;}
.wsbd5_c00001{word-spacing:9.644832pt;}
.wsb3d_c00001{word-spacing:9.656544pt;}
.wse00_c00001{word-spacing:9.657600pt;}
.ws567_c00001{word-spacing:9.662400pt;}
.ws608_c00001{word-spacing:9.664000pt;}
.wsbb4_c00001{word-spacing:9.668256pt;}
.wsa42_c00001{word-spacing:9.670400pt;}
.ws1303_c00001{word-spacing:9.674112pt;}
.wscac_c00001{word-spacing:9.683200pt;}
.ws1302_c00001{word-spacing:9.685824pt;}
.ws4dc_c00001{word-spacing:9.689600pt;}
.wsed3_c00001{word-spacing:9.728000pt;}
.ws20b_c00001{word-spacing:9.740800pt;}
.ws73_c00001{word-spacing:9.747200pt;}
.wsac0_c00001{word-spacing:9.753600pt;}
.ws92e_c00001{word-spacing:9.766400pt;}
.ws92f_c00001{word-spacing:9.772800pt;}
.wsb1d_c00001{word-spacing:9.779200pt;}
.ws153c_c00001{word-spacing:9.785600pt;}
.wsb15_c00001{word-spacing:9.792000pt;}
.ws1395_c00001{word-spacing:9.798400pt;}
.ws1394_c00001{word-spacing:9.804800pt;}
.ws4da_c00001{word-spacing:9.811200pt;}
.ws1483_c00001{word-spacing:9.817600pt;}
.wsafa_c00001{word-spacing:9.824000pt;}
.ws4cb_c00001{word-spacing:9.830400pt;}
.ws98b_c00001{word-spacing:9.836800pt;}
.ws2d6_c00001{word-spacing:9.843200pt;}
.ws9fa_c00001{word-spacing:9.849600pt;}
.ws7a2_c00001{word-spacing:9.856000pt;}
.ws98a_c00001{word-spacing:9.862400pt;}
.wsaf7_c00001{word-spacing:9.868800pt;}
.ws517_c00001{word-spacing:9.875200pt;}
.ws7a1_c00001{word-spacing:9.881600pt;}
.ws14c_c00001{word-spacing:9.888000pt;}
.ws516_c00001{word-spacing:9.894400pt;}
.ws5a5_c00001{word-spacing:9.900800pt;}
.ws5a4_c00001{word-spacing:9.907200pt;}
.ws572_c00001{word-spacing:9.913600pt;}
.ws4db_c00001{word-spacing:9.920000pt;}
.wsfd9_c00001{word-spacing:9.920064pt;}
.wsf54_c00001{word-spacing:9.926400pt;}
.ws109a_c00001{word-spacing:9.931776pt;}
.ws499_c00001{word-spacing:9.932800pt;}
.ws109b_c00001{word-spacing:9.937632pt;}
.ws49a_c00001{word-spacing:9.939200pt;}
.wsf79_c00001{word-spacing:9.943488pt;}
.ws72_c00001{word-spacing:9.945600pt;}
.ws12fb_c00001{word-spacing:9.949344pt;}
.wsa5b_c00001{word-spacing:9.952000pt;}
.ws1172_c00001{word-spacing:9.955200pt;}
.ws74_c00001{word-spacing:9.958400pt;}
.ws4ee_c00001{word-spacing:9.961056pt;}
.ws854_c00001{word-spacing:9.966912pt;}
.ws4ed_c00001{word-spacing:9.972768pt;}
.ws4cc_c00001{word-spacing:9.977600pt;}
.ws11d3_c00001{word-spacing:9.978624pt;}
.wsf9f_c00001{word-spacing:9.984480pt;}
.wsb3e_c00001{word-spacing:9.996192pt;}
.ws7c5_c00001{word-spacing:10.054400pt;}
.ws4c8_c00001{word-spacing:10.060800pt;}
.ws912_c00001{word-spacing:10.080000pt;}
.ws35d_c00001{word-spacing:10.086400pt;}
.ws10cd_c00001{word-spacing:10.092800pt;}
.wsc2a_c00001{word-spacing:10.105600pt;}
.ws83a_c00001{word-spacing:10.112000pt;}
.ws374_c00001{word-spacing:10.118400pt;}
.ws35f_c00001{word-spacing:10.121536pt;}
.ws35e_c00001{word-spacing:10.124800pt;}
.ws13e2_c00001{word-spacing:10.127360pt;}
.ws375_c00001{word-spacing:10.131200pt;}
.ws4c7_c00001{word-spacing:10.144000pt;}
.wsa43_c00001{word-spacing:10.156800pt;}
.wsaaa_c00001{word-spacing:10.163200pt;}
.ws51c_c00001{word-spacing:10.169600pt;}
.wsa38_c00001{word-spacing:10.182400pt;}
.wsa21_c00001{word-spacing:10.188800pt;}
.ws6ca_c00001{word-spacing:10.195200pt;}
.ws6c9_c00001{word-spacing:10.208000pt;}
.ws7c6_c00001{word-spacing:10.214400pt;}
.ws51b_c00001{word-spacing:10.220800pt;}
.ws4c6_c00001{word-spacing:10.227200pt;}
.ws87e_c00001{word-spacing:10.233600pt;}
.ws870_c00001{word-spacing:10.233760pt;}
.ws7ed_c00001{word-spacing:10.240000pt;}
.ws1491_c00001{word-spacing:10.242144pt;}
.ws424_c00001{word-spacing:10.246400pt;}
.ws8ff_c00001{word-spacing:10.252800pt;}
.ws850_c00001{word-spacing:10.253856pt;}
.ws87d_c00001{word-spacing:10.259200pt;}
.ws129e_c00001{word-spacing:10.259712pt;}
.ws31c_c00001{word-spacing:10.265568pt;}
.wsa39_c00001{word-spacing:10.265600pt;}
.ws1365_c00001{word-spacing:10.271424pt;}
.wsdc4_c00001{word-spacing:10.272000pt;}
.wsad3_c00001{word-spacing:10.277280pt;}
.wse05_c00001{word-spacing:10.278400pt;}
.wsaab_c00001{word-spacing:10.284800pt;}
.ws1368_c00001{word-spacing:10.288992pt;}
.wse44_c00001{word-spacing:10.291200pt;}
.wsbf9_c00001{word-spacing:10.294848pt;}
.ws31d_c00001{word-spacing:10.300704pt;}
.ws13fc_c00001{word-spacing:10.305280pt;}
.ws423_c00001{word-spacing:10.310400pt;}
.wsad4_c00001{word-spacing:10.312416pt;}
.wsccf_c00001{word-spacing:10.342400pt;}
.ws13b6_c00001{word-spacing:10.362880pt;}
.wscce_c00001{word-spacing:10.368000pt;}
.wsd28_c00001{word-spacing:10.374400pt;}
.wsbe8_c00001{word-spacing:10.380800pt;}
.wsd35_c00001{word-spacing:10.393600pt;}
.ws8e0_c00001{word-spacing:10.400000pt;}
.wsac8_c00001{word-spacing:10.406400pt;}
.ws180_c00001{word-spacing:10.419200pt;}
.wse46_c00001{word-spacing:10.425600pt;}
.wsac7_c00001{word-spacing:10.432000pt;}
.wsbe4_c00001{word-spacing:10.438400pt;}
.wsc46_c00001{word-spacing:10.444800pt;}
.wsadb_c00001{word-spacing:10.457600pt;}
.wsbe6_c00001{word-spacing:10.464000pt;}
.ws29f_c00001{word-spacing:10.470400pt;}
.ws318_c00001{word-spacing:10.476800pt;}
.ws269_c00001{word-spacing:10.483200pt;}
.ws625_c00001{word-spacing:10.489600pt;}
.wsada_c00001{word-spacing:10.496000pt;}
.ws7c1_c00001{word-spacing:10.515200pt;}
.ws69f_c00001{word-spacing:10.521600pt;}
.wsdd_c00001{word-spacing:10.534400pt;}
.ws6f9_c00001{word-spacing:10.540800pt;}
.wsde_c00001{word-spacing:10.547200pt;}
.wse26_c00001{word-spacing:10.553600pt;}
.ws12b3_c00001{word-spacing:10.558368pt;}
.ws181_c00001{word-spacing:10.566400pt;}
.ws119b_c00001{word-spacing:10.570080pt;}
.ws6fa_c00001{word-spacing:10.572800pt;}
.ws1065_c00001{word-spacing:10.575936pt;}
.ws6e3_c00001{word-spacing:10.579200pt;}
.ws9bd_c00001{word-spacing:10.581792pt;}
.wsce4_c00001{word-spacing:10.585600pt;}
.ws1203_c00001{word-spacing:10.587648pt;}
.wsfb7_c00001{word-spacing:10.593504pt;}
.wsadc_c00001{word-spacing:10.598400pt;}
.ws9bc_c00001{word-spacing:10.599360pt;}
.wsce5_c00001{word-spacing:10.604800pt;}
.ws1144_c00001{word-spacing:10.605216pt;}
.ws1059_c00001{word-spacing:10.611072pt;}
.ws11f8_c00001{word-spacing:10.616928pt;}
.wsb61_c00001{word-spacing:10.622784pt;}
.ws12a3_c00001{word-spacing:10.628640pt;}
.ws147b_c00001{word-spacing:10.636800pt;}
.wsbe5_c00001{word-spacing:10.681600pt;}
.ws643_c00001{word-spacing:10.694400pt;}
.wsb79_c00001{word-spacing:10.713600pt;}
.wsf45_c00001{word-spacing:10.720000pt;}
.wscd0_c00001{word-spacing:10.726400pt;}
.wsb78_c00001{word-spacing:10.739200pt;}
.ws7e3_c00001{word-spacing:10.745600pt;}
.ws92c_c00001{word-spacing:10.752000pt;}
.wsb5c_c00001{word-spacing:10.764800pt;}
.ws92b_c00001{word-spacing:10.771200pt;}
.wseeb_c00001{word-spacing:10.775040pt;}
.wse5f_c00001{word-spacing:10.784000pt;}
.wsabb_c00001{word-spacing:10.790400pt;}
.ws30e_c00001{word-spacing:10.796800pt;}
.ws642_c00001{word-spacing:10.803200pt;}
.ws465_c00001{word-spacing:10.809600pt;}
.ws17c_c00001{word-spacing:10.816000pt;}
.wsaba_c00001{word-spacing:10.822400pt;}
.wsb86_c00001{word-spacing:10.828800pt;}
.ws506_c00001{word-spacing:10.835200pt;}
.ws7e2_c00001{word-spacing:10.841600pt;}
.ws40c_c00001{word-spacing:10.848000pt;}
.ws17b_c00001{word-spacing:10.854400pt;}
.ws464_c00001{word-spacing:10.860800pt;}
.ws209_c00001{word-spacing:10.867200pt;}
.ws861_c00001{word-spacing:10.873600pt;}
.ws12ce_c00001{word-spacing:10.874592pt;}
.wsdc_c00001{word-spacing:10.880000pt;}
.wsfea_c00001{word-spacing:10.886304pt;}
.ws862_c00001{word-spacing:10.886400pt;}
.ws1264_c00001{word-spacing:10.892160pt;}
.ws92a_c00001{word-spacing:10.892800pt;}
.ws1437_c00001{word-spacing:10.898016pt;}
.wsd6f_c00001{word-spacing:10.899200pt;}
.wsfe9_c00001{word-spacing:10.903872pt;}
.wsa7b_c00001{word-spacing:10.905600pt;}
.ws5e8_c00001{word-spacing:10.907104pt;}
.ws1362_c00001{word-spacing:10.909728pt;}
.wse50_c00001{word-spacing:10.912000pt;}
.ws11f5_c00001{word-spacing:10.915584pt;}
.ws997_c00001{word-spacing:10.917792pt;}
.wsbbf_c00001{word-spacing:10.921440pt;}
.ws10b4_c00001{word-spacing:10.927296pt;}
.wse60_c00001{word-spacing:10.931200pt;}
.wse4f_c00001{word-spacing:10.944000pt;}
.wsfbe_c00001{word-spacing:10.944864pt;}
.ws1320_c00001{word-spacing:10.950720pt;}
.wsdbc_c00001{word-spacing:10.956800pt;}
.ws12cf_c00001{word-spacing:10.962432pt;}
.ws1463_c00001{word-spacing:10.968288pt;}
.ws131f_c00001{word-spacing:10.980000pt;}
.wsc8c_c00001{word-spacing:11.008000pt;}
.wsda6_c00001{word-spacing:11.020800pt;}
.ws14b5_c00001{word-spacing:11.027200pt;}
.ws8b1_c00001{word-spacing:11.033600pt;}
.ws127a_c00001{word-spacing:11.040000pt;}
.wsaff_c00001{word-spacing:11.046048pt;}
.ws927_c00001{word-spacing:11.046400pt;}
.wsc8d_c00001{word-spacing:11.059200pt;}
.wsd48_c00001{word-spacing:11.065600pt;}
.ws147a_c00001{word-spacing:11.072000pt;}
.ws3cc_c00001{word-spacing:11.078400pt;}
.ws3ef_c00001{word-spacing:11.091200pt;}
.ws8fc_c00001{word-spacing:11.097600pt;}
.ws91b_c00001{word-spacing:11.104000pt;}
.wsb94_c00001{word-spacing:11.110400pt;}
.ws8b0_c00001{word-spacing:11.116800pt;}
.wsaee_c00001{word-spacing:11.123200pt;}
.ws1283_c00001{word-spacing:11.129600pt;}
.wsf2f_c00001{word-spacing:11.136000pt;}
.ws3f0_c00001{word-spacing:11.142400pt;}
.ws420_c00001{word-spacing:11.148800pt;}
.ws928_c00001{word-spacing:11.155200pt;}
.ws3cb_c00001{word-spacing:11.161600pt;}
.ws63d_c00001{word-spacing:11.168000pt;}
.ws566_c00001{word-spacing:11.173248pt;}
.ws9fc_c00001{word-spacing:11.174400pt;}
.ws6ee_c00001{word-spacing:11.180800pt;}
.wsdb9_c00001{word-spacing:11.187200pt;}
.ws6ed_c00001{word-spacing:11.193600pt;}
.wsaef_c00001{word-spacing:11.200000pt;}
.wsdba_c00001{word-spacing:11.212800pt;}
.ws1242_c00001{word-spacing:11.214240pt;}
.ws14fc_c00001{word-spacing:11.217056pt;}
.wsd49_c00001{word-spacing:11.219200pt;}
.ws14c6_c00001{word-spacing:11.220096pt;}
.wsbad_c00001{word-spacing:11.225600pt;}
.ws565_c00001{word-spacing:11.225952pt;}
.wsf9c_c00001{word-spacing:11.231808pt;}
.ws6e5_c00001{word-spacing:11.232000pt;}
.wsfa2_c00001{word-spacing:11.237664pt;}
.wsa8_c00001{word-spacing:11.243520pt;}
.ws13f7_c00001{word-spacing:11.246080pt;}
.wsa7_c00001{word-spacing:11.249376pt;}
.ws8b2_c00001{word-spacing:11.257600pt;}
.wsbb9_c00001{word-spacing:11.261088pt;}
.wsea0_c00001{word-spacing:11.264000pt;}
.ws11b5_c00001{word-spacing:11.266944pt;}
.wsba4_c00001{word-spacing:11.270400pt;}
.ws9fb_c00001{word-spacing:11.289600pt;}
.ws10e1_c00001{word-spacing:11.296224pt;}
.ws950_c00001{word-spacing:11.315200pt;}
.ws8ad_c00001{word-spacing:11.321600pt;}
.ws478_c00001{word-spacing:11.328000pt;}
.wsc1b_c00001{word-spacing:11.334400pt;}
.ws3d0_c00001{word-spacing:11.340800pt;}
.wsd6b_c00001{word-spacing:11.347200pt;}
.ws56f_c00001{word-spacing:11.366400pt;}
.ws1484_c00001{word-spacing:11.372800pt;}
.ws89a_c00001{word-spacing:11.379200pt;}
.wsabf_c00001{word-spacing:11.385600pt;}
.ws391_c00001{word-spacing:11.392000pt;}
.ws8ac_c00001{word-spacing:11.398400pt;}
.ws18c_c00001{word-spacing:11.404800pt;}
.wsaf0_c00001{word-spacing:11.411200pt;}
.wsd9a_c00001{word-spacing:11.417600pt;}
.wsf24_c00001{word-spacing:11.422720pt;}
.ws9a0_c00001{word-spacing:11.424000pt;}
.ws115_c00001{word-spacing:11.430400pt;}
.ws90d_c00001{word-spacing:11.436800pt;}
.ws479_c00001{word-spacing:11.443200pt;}
.ws831_c00001{word-spacing:11.456000pt;}
.ws192_c00001{word-spacing:11.462400pt;}
.ws72e_c00001{word-spacing:11.468800pt;}
.ws50f_c00001{word-spacing:11.475200pt;}
.ws95c_c00001{word-spacing:11.481600pt;}
.ws72f_c00001{word-spacing:11.488000pt;}
.ws4b6_c00001{word-spacing:11.494400pt;}
.ws15d_c00001{word-spacing:11.500800pt;}
.ws797_c00001{word-spacing:11.501184pt;}
.ws15c_c00001{word-spacing:11.507200pt;}
.ws796_c00001{word-spacing:11.510976pt;}
.ws1b1_c00001{word-spacing:11.513600pt;}
.ws114_c00001{word-spacing:11.520000pt;}
.ws3d1_c00001{word-spacing:11.526400pt;}
.ws130b_c00001{word-spacing:11.530464pt;}
.ws8db_c00001{word-spacing:11.532800pt;}
.ws133a_c00001{word-spacing:11.536320pt;}
.ws18b_c00001{word-spacing:11.539200pt;}
.ws13e1_c00001{word-spacing:11.540480pt;}
.ws1338_c00001{word-spacing:11.542176pt;}
.ws18d_c00001{word-spacing:11.545600pt;}
.ws8f2_c00001{word-spacing:11.552000pt;}
.ws1525_c00001{word-spacing:11.553888pt;}
.ws1096_c00001{word-spacing:11.559744pt;}
.ws1548_c00001{word-spacing:11.571456pt;}
.ws1267_c00001{word-spacing:11.577312pt;}
.ws56e_c00001{word-spacing:11.577600pt;}
.ws1408_c00001{word-spacing:11.580160pt;}
.ws1379_c00001{word-spacing:11.583168pt;}
.ws90f_c00001{word-spacing:11.584000pt;}
.ws392_c00001{word-spacing:11.590400pt;}
.ws14ec_c00001{word-spacing:11.606592pt;}
.ws83e_c00001{word-spacing:11.628800pt;}
.ws13dd_c00001{word-spacing:11.658240pt;}
.wsa71_c00001{word-spacing:11.660800pt;}
.ws1285_c00001{word-spacing:11.673600pt;}
.ws1284_c00001{word-spacing:11.692800pt;}
.ws431_c00001{word-spacing:11.705600pt;}
.wse9_c00001{word-spacing:11.712000pt;}
.wsa72_c00001{word-spacing:11.718400pt;}
.ws5b0_c00001{word-spacing:11.724800pt;}
.ws259_c00001{word-spacing:11.744000pt;}
.ws591_c00001{word-spacing:11.750400pt;}
.ws459_c00001{word-spacing:11.763200pt;}
.wsa94_c00001{word-spacing:11.769600pt;}
.ws910_c00001{word-spacing:11.776000pt;}
.ws8d9_c00001{word-spacing:11.788800pt;}
.ws1416_c00001{word-spacing:11.792640pt;}
.ws783_c00001{word-spacing:11.795200pt;}
.wsc57_c00001{word-spacing:11.801600pt;}
.ws21e_c00001{word-spacing:11.808000pt;}
.ws45a_c00001{word-spacing:11.814400pt;}
.ws705_c00001{word-spacing:11.820800pt;}
.ws706_c00001{word-spacing:11.827200pt;}
.ws83d_c00001{word-spacing:11.833600pt;}
.ws124b_c00001{word-spacing:11.840832pt;}
.wse8_c00001{word-spacing:11.846400pt;}
.ws1117_c00001{word-spacing:11.852544pt;}
.ws257_c00001{word-spacing:11.852800pt;}
.ws135b_c00001{word-spacing:11.858400pt;}
.ws672_c00001{word-spacing:11.859200pt;}
.ws258_c00001{word-spacing:11.865600pt;}
.ws1120_c00001{word-spacing:11.870112pt;}
.wse1f_c00001{word-spacing:11.872000pt;}
.wsfbd_c00001{word-spacing:11.875968pt;}
.ws46f_c00001{word-spacing:11.878400pt;}
.ws10f8_c00001{word-spacing:11.881824pt;}
.wsfa7_c00001{word-spacing:11.887680pt;}
.ws10af_c00001{word-spacing:11.893536pt;}
.wsfc1_c00001{word-spacing:11.904000pt;}
.ws10ff_c00001{word-spacing:11.905248pt;}
.wsfa8_c00001{word-spacing:11.911104pt;}
.wsf9a_c00001{word-spacing:11.916960pt;}
.ws136f_c00001{word-spacing:11.928672pt;}
.ws574_c00001{word-spacing:11.929600pt;}
.ws9b9_c00001{word-spacing:11.980800pt;}
.ws2ba_c00001{word-spacing:12.012800pt;}
.ws49c_c00001{word-spacing:12.025600pt;}
.ws80_c00001{word-spacing:12.032000pt;}
.ws40f_c00001{word-spacing:12.038400pt;}
.wsc89_c00001{word-spacing:12.044800pt;}
.ws7ba_c00001{word-spacing:12.051200pt;}
.ws7bb_c00001{word-spacing:12.057600pt;}
.wsc18_c00001{word-spacing:12.064000pt;}
.ws410_c00001{word-spacing:12.070400pt;}
.ws743_c00001{word-spacing:12.076800pt;}
.ws903_c00001{word-spacing:12.083200pt;}
.ws104d_c00001{word-spacing:12.092640pt;}
.ws683_c00001{word-spacing:12.096000pt;}
.ws573_c00001{word-spacing:12.102400pt;}
.ws7f_c00001{word-spacing:12.108800pt;}
.ws49b_c00001{word-spacing:12.115200pt;}
.ws149_c00001{word-spacing:12.121600pt;}
.ws279_c00001{word-spacing:12.128000pt;}
.ws1072_c00001{word-spacing:12.133632pt;}
.ws156_c00001{word-spacing:12.134400pt;}
.ws157_c00001{word-spacing:12.140800pt;}
.ws779_c00001{word-spacing:12.147200pt;}
.ws778_c00001{word-spacing:12.153600pt;}
.ws27a_c00001{word-spacing:12.160000pt;}
.ws10d6_c00001{word-spacing:12.162912pt;}
.ws384_c00001{word-spacing:12.166400pt;}
.ws4a5_c00001{word-spacing:12.168768pt;}
.ws915_c00001{word-spacing:12.172800pt;}
.ws1071_c00001{word-spacing:12.174624pt;}
.ws827_c00001{word-spacing:12.179200pt;}
.ws1239_c00001{word-spacing:12.180480pt;}
.ws383_c00001{word-spacing:12.185600pt;}
.ws4a4_c00001{word-spacing:12.186336pt;}
.wsf23_c00001{word-spacing:12.188160pt;}
.ws826_c00001{word-spacing:12.192000pt;}
.ws102b_c00001{word-spacing:12.192192pt;}
.ws105d_c00001{word-spacing:12.198048pt;}
.ws7b9_c00001{word-spacing:12.198400pt;}
.wsf69_c00001{word-spacing:12.203904pt;}
.ws1106_c00001{word-spacing:12.209760pt;}
.wsa28_c00001{word-spacing:12.211200pt;}
.wsc04_c00001{word-spacing:12.215616pt;}
.wsa81_c00001{word-spacing:12.217600pt;}
.wsd4e_c00001{word-spacing:12.230400pt;}
.wse4b_c00001{word-spacing:12.236800pt;}
.ws807_c00001{word-spacing:12.243200pt;}
.wsc1f_c00001{word-spacing:12.300800pt;}
.ws13cc_c00001{word-spacing:12.305920pt;}
.ws68a_c00001{word-spacing:12.307200pt;}
.wsca7_c00001{word-spacing:12.326400pt;}
.ws8e2_c00001{word-spacing:12.332800pt;}
.ws7f2_c00001{word-spacing:12.345600pt;}
.ws4b9_c00001{word-spacing:12.352000pt;}
.wsb59_c00001{word-spacing:12.358400pt;}
.wsbea_c00001{word-spacing:12.364800pt;}
.wsc15_c00001{word-spacing:12.371200pt;}
.ws932_c00001{word-spacing:12.377600pt;}
.ws36e_c00001{word-spacing:12.384000pt;}
.ws68b_c00001{word-spacing:12.390400pt;}
.ws682_c00001{word-spacing:12.396800pt;}
.ws7f1_c00001{word-spacing:12.403200pt;}
.ws681_c00001{word-spacing:12.409600pt;}
.wsa80_c00001{word-spacing:12.416000pt;}
.wsc64_c00001{word-spacing:12.422400pt;}
.wsbe9_c00001{word-spacing:12.428800pt;}
.ws191_c00001{word-spacing:12.435200pt;}
.ws20c_c00001{word-spacing:12.441600pt;}
.ws20d_c00001{word-spacing:12.448000pt;}
.wsc9d_c00001{word-spacing:12.454400pt;}
.ws63e_c00001{word-spacing:12.460800pt;}
.wsc14_c00001{word-spacing:12.467200pt;}
.ws28c_c00001{word-spacing:12.473280pt;}
.ws30d_c00001{word-spacing:12.473600pt;}
.ws36d_c00001{word-spacing:12.480000pt;}
.ws11df_c00001{word-spacing:12.484992pt;}
.ws867_c00001{word-spacing:12.486400pt;}
.ws153d_c00001{word-spacing:12.492800pt;}
.ws1129_c00001{word-spacing:12.496704pt;}
.ws4ba_c00001{word-spacing:12.499200pt;}
.ws933_c00001{word-spacing:12.512000pt;}
.ws1178_c00001{word-spacing:12.514272pt;}
.ws808_c00001{word-spacing:12.518400pt;}
.ws108c_c00001{word-spacing:12.520128pt;}
.wsc65_c00001{word-spacing:12.524800pt;}
.wsa18_c00001{word-spacing:12.525984pt;}
.ws996_c00001{word-spacing:12.526336pt;}
.wsdb0_c00001{word-spacing:12.531200pt;}
.ws28b_c00001{word-spacing:12.531840pt;}
.ws847_c00001{word-spacing:12.543552pt;}
.wsf84_c00001{word-spacing:12.544000pt;}
.ws28d_c00001{word-spacing:12.555264pt;}
.wse61_c00001{word-spacing:12.556800pt;}
.wsc62_c00001{word-spacing:12.563200pt;}
.ws1536_c00001{word-spacing:12.572832pt;}
.wsdd8_c00001{word-spacing:12.595200pt;}
.wsc5c_c00001{word-spacing:12.601600pt;}
.ws154d_c00001{word-spacing:12.627200pt;}
.ws13cb_c00001{word-spacing:12.659200pt;}
.wsc5b_c00001{word-spacing:12.678400pt;}
.wscb6_c00001{word-spacing:12.691200pt;}
.ws18a_c00001{word-spacing:12.710400pt;}
.wsd8e_c00001{word-spacing:12.716800pt;}
.ws242_c00001{word-spacing:12.723200pt;}
.ws81b_c00001{word-spacing:12.729600pt;}
.ws9bf_c00001{word-spacing:12.736000pt;}
.ws30b_c00001{word-spacing:12.742400pt;}
.ws200_c00001{word-spacing:12.748800pt;}
.wsc75_c00001{word-spacing:12.755200pt;}
.ws644_c00001{word-spacing:12.761600pt;}
.ws9c0_c00001{word-spacing:12.768000pt;}
.ws605_c00001{word-spacing:12.774400pt;}
.ws1034_c00001{word-spacing:12.777792pt;}
.ws81a_c00001{word-spacing:12.780800pt;}
.wsbd9_c00001{word-spacing:12.787200pt;}
.ws1241_c00001{word-spacing:12.789504pt;}
.ws1ff_c00001{word-spacing:12.793600pt;}
.ws645_c00001{word-spacing:12.800000pt;}
.wsc76_c00001{word-spacing:12.806400pt;}
.ws89e_c00001{word-spacing:12.812800pt;}
.ws103e_c00001{word-spacing:12.812928pt;}
.ws1269_c00001{word-spacing:12.818784pt;}
.ws189_c00001{word-spacing:12.825600pt;}
.wsd72_c00001{word-spacing:12.832000pt;}
.wsf91_c00001{word-spacing:12.836352pt;}
.ws1049_c00001{word-spacing:12.842208pt;}
.ws30c_c00001{word-spacing:12.844800pt;}
.ws4a6_c00001{word-spacing:12.848064pt;}
.ws89f_c00001{word-spacing:12.851200pt;}
.ws121_c00001{word-spacing:12.853920pt;}
.wse5a_c00001{word-spacing:12.857600pt;}
.wsd71_c00001{word-spacing:12.864000pt;}
.wsc09_c00001{word-spacing:12.871488pt;}
.wse65_c00001{word-spacing:12.876800pt;}
.wsce2_c00001{word-spacing:12.883200pt;}
.ws1482_c00001{word-spacing:12.889600pt;}
.ws122_c00001{word-spacing:12.900768pt;}
.ws2c1_c00001{word-spacing:12.902400pt;}
.ws397_c00001{word-spacing:12.934400pt;}
.wsb04_c00001{word-spacing:12.940800pt;}
.ws3c1_c00001{word-spacing:12.947200pt;}
.ws4b4_c00001{word-spacing:12.960000pt;}
.ws946_c00001{word-spacing:12.966400pt;}
.ws396_c00001{word-spacing:12.972800pt;}
.wse0f_c00001{word-spacing:12.985600pt;}
.ws2b4_c00001{word-spacing:12.998400pt;}
.ws90e_c00001{word-spacing:13.011200pt;}
.ws5d4_c00001{word-spacing:13.017600pt;}
.wsa15_c00001{word-spacing:13.024000pt;}
.ws859_c00001{word-spacing:13.030400pt;}
.wsd3f_c00001{word-spacing:13.036800pt;}
.wsdee_c00001{word-spacing:13.043200pt;}
.wsba3_c00001{word-spacing:13.049600pt;}
.ws858_c00001{word-spacing:13.056000pt;}
.wsa1f_c00001{word-spacing:13.062400pt;}
.ws4b3_c00001{word-spacing:13.068800pt;}
.wsa32_c00001{word-spacing:13.075200pt;}
.ws2bb_c00001{word-spacing:13.081600pt;}
.ws945_c00001{word-spacing:13.088000pt;}
.ws92d_c00001{word-spacing:13.094400pt;}
.wsa30_c00001{word-spacing:13.100800pt;}
.ws395_c00001{word-spacing:13.107200pt;}
.ws14e4_c00001{word-spacing:13.111584pt;}
.ws2c0_c00001{word-spacing:13.113600pt;}
.ws5d5_c00001{word-spacing:13.126400pt;}
.ws846_c00001{word-spacing:13.129152pt;}
.wse31_c00001{word-spacing:13.132800pt;}
.ws1499_c00001{word-spacing:13.135008pt;}
.ws898_c00001{word-spacing:13.139200pt;}
.ws12be_c00001{word-spacing:13.140864pt;}
.ws2b5_c00001{word-spacing:13.145600pt;}
.ws1292_c00001{word-spacing:13.146720pt;}
.wsae8_c00001{word-spacing:13.152000pt;}
.ws10fd_c00001{word-spacing:13.152576pt;}
.ws1372_c00001{word-spacing:13.158432pt;}
.ws1371_c00001{word-spacing:13.170144pt;}
.ws138f_c00001{word-spacing:13.176000pt;}
.ws845_c00001{word-spacing:13.181856pt;}
.ws141c_c00001{word-spacing:13.184000pt;}
.ws130c_c00001{word-spacing:13.193568pt;}
.ws106b_c00001{word-spacing:13.205280pt;}
.wsd3e_c00001{word-spacing:13.209600pt;}
.wsa20_c00001{word-spacing:13.222400pt;}
.wsce8_c00001{word-spacing:13.260800pt;}
.wsc40_c00001{word-spacing:13.267200pt;}
.ws64e_c00001{word-spacing:13.273600pt;}
.ws4e_c00001{word-spacing:13.280000pt;}
.ws64f_c00001{word-spacing:13.299200pt;}
.ws503_c00001{word-spacing:13.305600pt;}
.ws13b7_c00001{word-spacing:13.306880pt;}
.ws4f_c00001{word-spacing:13.312000pt;}
.ws504_c00001{word-spacing:13.318400pt;}
.ws1221_c00001{word-spacing:13.324800pt;}
.wsf8a_c00001{word-spacing:13.331200pt;}
.ws6f7_c00001{word-spacing:13.337600pt;}
.ws2da_c00001{word-spacing:13.344000pt;}
.ws6f8_c00001{word-spacing:13.350400pt;}
.ws502_c00001{word-spacing:13.356800pt;}
.wse68_c00001{word-spacing:13.363200pt;}
.ws812_c00001{word-spacing:13.369600pt;}
.ws64d_c00001{word-spacing:13.376000pt;}
.ws647_c00001{word-spacing:13.382400pt;}
.ws1286_c00001{word-spacing:13.395200pt;}
.wsac5_c00001{word-spacing:13.401600pt;}
.ws62b_c00001{word-spacing:13.408000pt;}
.ws1a0_c00001{word-spacing:13.414400pt;}
.ws14b8_c00001{word-spacing:13.420800pt;}
.ws687_c00001{word-spacing:13.427200pt;}
.ws129a_c00001{word-spacing:13.427808pt;}
.ws646_c00001{word-spacing:13.433600pt;}
.wsbf4_c00001{word-spacing:13.433664pt;}
.ws34_c00001{word-spacing:13.440000pt;}
.ws1359_c00001{word-spacing:13.445376pt;}
.ws33_c00001{word-spacing:13.446400pt;}
.ws1108_c00001{word-spacing:13.451232pt;}
.wsd98_c00001{word-spacing:13.452800pt;}
.ws100b_c00001{word-spacing:13.457088pt;}
.ws689_c00001{word-spacing:13.459200pt;}
.ws11d8_c00001{word-spacing:13.462944pt;}
.wsd99_c00001{word-spacing:13.465600pt;}
.ws137d_c00001{word-spacing:13.468800pt;}
.ws144f_c00001{word-spacing:13.474656pt;}
.ws688_c00001{word-spacing:13.478400pt;}
.ws107b_c00001{word-spacing:13.480512pt;}
.ws1166_c00001{word-spacing:13.486368pt;}
.ws35_c00001{word-spacing:13.491200pt;}
.ws10d9_c00001{word-spacing:13.492224pt;}
.ws141a_c00001{word-spacing:13.492480pt;}
.ws10b5_c00001{word-spacing:13.498080pt;}
.wsffb_c00001{word-spacing:13.503936pt;}
.ws12c6_c00001{word-spacing:13.509792pt;}
.ws494_c00001{word-spacing:13.516800pt;}
.ws2db_c00001{word-spacing:13.523200pt;}
.wse67_c00001{word-spacing:13.529600pt;}
.wsd01_c00001{word-spacing:13.542400pt;}
.ws700_c00001{word-spacing:13.574400pt;}
.ws7bf_c00001{word-spacing:13.587200pt;}
.wsb8c_c00001{word-spacing:13.593600pt;}
.ws701_c00001{word-spacing:13.600000pt;}
.ws686_c00001{word-spacing:13.606400pt;}
.ws7f5_c00001{word-spacing:13.625600pt;}
.ws4b2_c00001{word-spacing:13.638400pt;}
.ws63f_c00001{word-spacing:13.651200pt;}
.ws9d6_c00001{word-spacing:13.657600pt;}
.ws9d5_c00001{word-spacing:13.664000pt;}
.wsd65_c00001{word-spacing:13.670400pt;}
.wsca3_c00001{word-spacing:13.676800pt;}
.wsdf3_c00001{word-spacing:13.683200pt;}
.ws246_c00001{word-spacing:13.696000pt;}
.ws7c0_c00001{word-spacing:13.702400pt;}
.ws492_c00001{word-spacing:13.708800pt;}
.ws4b1_c00001{word-spacing:13.721600pt;}
.ws890_c00001{word-spacing:13.728000pt;}
.ws58f_c00001{word-spacing:13.734400pt;}
.ws9f6_c00001{word-spacing:13.740800pt;}
.ws7f4_c00001{word-spacing:13.747200pt;}
.wsb8d_c00001{word-spacing:13.753600pt;}
.wsd04_c00001{word-spacing:13.760000pt;}
.ws493_c00001{word-spacing:13.766400pt;}
.ws131e_c00001{word-spacing:13.767456pt;}
.wsdf4_c00001{word-spacing:13.772800pt;}
.ws1343_c00001{word-spacing:13.773312pt;}
.ws106d_c00001{word-spacing:13.779168pt;}
.ws702_c00001{word-spacing:13.779200pt;}
.wsdc3_c00001{word-spacing:13.785600pt;}
.wsd64_c00001{word-spacing:13.798400pt;}
.ws1031_c00001{word-spacing:13.802592pt;}
.ws247_c00001{word-spacing:13.804800pt;}
.ws1309_c00001{word-spacing:13.808448pt;}
.ws11d7_c00001{word-spacing:13.820160pt;}
.wscbb_c00001{word-spacing:13.824000pt;}
.wsdad_c00001{word-spacing:13.849600pt;}
.ws5ad_c00001{word-spacing:13.875200pt;}
.ws913_c00001{word-spacing:13.881600pt;}
.wse35_c00001{word-spacing:13.888000pt;}
.wsd39_c00001{word-spacing:13.900800pt;}
.wsdac_c00001{word-spacing:13.907200pt;}
.ws56a_c00001{word-spacing:13.913600pt;}
.ws12d9_c00001{word-spacing:13.913856pt;}
.ws780_c00001{word-spacing:13.920000pt;}
.ws914_c00001{word-spacing:13.939200pt;}
.ws56b_c00001{word-spacing:13.945600pt;}
.wse3c_c00001{word-spacing:13.952000pt;}
.ws13dc_c00001{word-spacing:13.954560pt;}
.ws8f4_c00001{word-spacing:13.958400pt;}
.wse34_c00001{word-spacing:13.964800pt;}
.ws82c_c00001{word-spacing:13.971200pt;}
.ws8f5_c00001{word-spacing:13.977600pt;}
.ws8e8_c00001{word-spacing:13.984000pt;}
.ws979_c00001{word-spacing:13.990400pt;}
.ws9c_c00001{word-spacing:13.996800pt;}
.ws8e9_c00001{word-spacing:14.003200pt;}
.ws1520_c00001{word-spacing:14.016000pt;}
.wsb92_c00001{word-spacing:14.022400pt;}
.ws592_c00001{word-spacing:14.035200pt;}
.wsc28_c00001{word-spacing:14.041600pt;}
.wsc4_c00001{word-spacing:14.048000pt;}
.ws11e1_c00001{word-spacing:14.048544pt;}
.ws77f_c00001{word-spacing:14.054400pt;}
.ws9b_c00001{word-spacing:14.060800pt;}
.ws3de_c00001{word-spacing:14.067200pt;}
.ws13db_c00001{word-spacing:14.072320pt;}
.ws85a_c00001{word-spacing:14.073600pt;}
.ws1565_c00001{word-spacing:14.077824pt;}
.ws5d8_c00001{word-spacing:14.080000pt;}
.ws11e0_c00001{word-spacing:14.083680pt;}
.wsb90_c00001{word-spacing:14.086400pt;}
.ws107f_c00001{word-spacing:14.089536pt;}
.wsc6_c00001{word-spacing:14.092800pt;}
.ws112c_c00001{word-spacing:14.095392pt;}
.ws1434_c00001{word-spacing:14.101248pt;}
.wsd1c_c00001{word-spacing:14.105600pt;}
.wsb26_c00001{word-spacing:14.107104pt;}
.ws8bf_c00001{word-spacing:14.112000pt;}
.wsb3b_c00001{word-spacing:14.112960pt;}
.wse3b_c00001{word-spacing:14.118400pt;}
.wsfc4_c00001{word-spacing:14.118816pt;}
.ws11c8_c00001{word-spacing:14.124672pt;}
.wsb91_c00001{word-spacing:14.124800pt;}
.ws13fd_c00001{word-spacing:14.129920pt;}
.wsb2e_c00001{word-spacing:14.130528pt;}
.ws1435_c00001{word-spacing:14.140224pt;}
.ws12d8_c00001{word-spacing:14.142240pt;}
.wsb3c_c00001{word-spacing:14.148096pt;}
.ws4ab_c00001{word-spacing:14.150400pt;}
.ws186_c00001{word-spacing:14.153952pt;}
.wsb25_c00001{word-spacing:14.159808pt;}
.wsc5_c00001{word-spacing:14.163200pt;}
.wsd70_c00001{word-spacing:14.169600pt;}
.ws11c7_c00001{word-spacing:14.189088pt;}
.wsc6b_c00001{word-spacing:14.240000pt;}
.wsb10_c00001{word-spacing:14.246400pt;}
.ws9b8_c00001{word-spacing:14.259200pt;}
.ws6d0_c00001{word-spacing:14.265600pt;}
.ws5a8_c00001{word-spacing:14.297600pt;}
.wsa5e_c00001{word-spacing:14.304000pt;}
.ws17d_c00001{word-spacing:14.316800pt;}
.wsc6c_c00001{word-spacing:14.323200pt;}
.wsb38_c00001{word-spacing:14.329600pt;}
.ws6e4_c00001{word-spacing:14.336000pt;}
.ws1b3_c00001{word-spacing:14.342400pt;}
.wsc16_c00001{word-spacing:14.348800pt;}
.ws40a_c00001{word-spacing:14.355200pt;}
.ws4ac_c00001{word-spacing:14.361600pt;}
.ws6cf_c00001{word-spacing:14.368000pt;}
.ws9b7_c00001{word-spacing:14.374400pt;}
.wsb37_c00001{word-spacing:14.380800pt;}
.ws11be_c00001{word-spacing:14.387200pt;}
.ws40b_c00001{word-spacing:14.393600pt;}
.wsda4_c00001{word-spacing:14.400000pt;}
.ws871_c00001{word-spacing:14.402080pt;}
.ws149c_c00001{word-spacing:14.411616pt;}
.ws12f1_c00001{word-spacing:14.417472pt;}
.wsd76_c00001{word-spacing:14.419200pt;}
.ws11dd_c00001{word-spacing:14.423328pt;}
.wsa5f_c00001{word-spacing:14.425600pt;}
.wsf95_c00001{word-spacing:14.429184pt;}
.wsda5_c00001{word-spacing:14.432000pt;}
.wsfc9_c00001{word-spacing:14.435040pt;}
.ws121d_c00001{word-spacing:14.438400pt;}
.ws10d8_c00001{word-spacing:14.440896pt;}
.ws12c2_c00001{word-spacing:14.446752pt;}
.wsc17_c00001{word-spacing:14.451200pt;}
.ws103a_c00001{word-spacing:14.452608pt;}
.ws1b2_c00001{word-spacing:14.457600pt;}
.ws1440_c00001{word-spacing:14.458464pt;}
.ws10a7_c00001{word-spacing:14.476032pt;}
.wsb6c_c00001{word-spacing:14.481888pt;}
.ws5ab_c00001{word-spacing:14.489600pt;}
.ws1009_c00001{word-spacing:14.493600pt;}
.wsddc_c00001{word-spacing:14.521600pt;}
.wse2d_c00001{word-spacing:14.547200pt;}
.ws5f1_c00001{word-spacing:14.553600pt;}
.wsb19_c00001{word-spacing:14.566400pt;}
.ws5ac_c00001{word-spacing:14.579200pt;}
.ws1d8_c00001{word-spacing:14.585600pt;}
.ws994_c00001{word-spacing:14.598400pt;}
.wsf01_c00001{word-spacing:14.602240pt;}
.wscf0_c00001{word-spacing:14.611200pt;}
.wsa2d_c00001{word-spacing:14.624000pt;}
.ws8ba_c00001{word-spacing:14.636800pt;}
.wsf5e_c00001{word-spacing:14.643200pt;}
.ws1d7_c00001{word-spacing:14.649600pt;}
.wsf5d_c00001{word-spacing:14.656000pt;}
.ws989_c00001{word-spacing:14.662400pt;}
.ws7fa_c00001{word-spacing:14.668800pt;}
.ws99d_c00001{word-spacing:14.675200pt;}
.ws1fb_c00001{word-spacing:14.681600pt;}
.ws59a_c00001{word-spacing:14.688000pt;}
.ws99e_c00001{word-spacing:14.694400pt;}
.ws5aa_c00001{word-spacing:14.700800pt;}
.ws41a_c00001{word-spacing:14.707200pt;}
.wsd18_c00001{word-spacing:14.713600pt;}
.wsd19_c00001{word-spacing:14.720000pt;}
.ws144b_c00001{word-spacing:14.721984pt;}
.ws988_c00001{word-spacing:14.726400pt;}
.wsd7c_c00001{word-spacing:14.732800pt;}
.ws1461_c00001{word-spacing:14.733696pt;}
.ws445_c00001{word-spacing:14.739200pt;}
.wsaa7_c00001{word-spacing:14.739552pt;}
.ws1535_c00001{word-spacing:14.745408pt;}
.wsd7d_c00001{word-spacing:14.745600pt;}
.ws113a_c00001{word-spacing:14.751264pt;}
.ws446_c00001{word-spacing:14.752000pt;}
.wsf6d_c00001{word-spacing:14.757120pt;}
.wse3e_c00001{word-spacing:14.758400pt;}
.ws142b_c00001{word-spacing:14.762976pt;}
.ws8b9_c00001{word-spacing:14.764800pt;}
.wsf6b_c00001{word-spacing:14.768832pt;}
.ws156d_c00001{word-spacing:14.770816pt;}
.wsfca_c00001{word-spacing:14.774688pt;}
.wsf88_c00001{word-spacing:14.777600pt;}
.ws142a_c00001{word-spacing:14.780544pt;}
.wse3d_c00001{word-spacing:14.790400pt;}
.wse1a_c00001{word-spacing:14.796800pt;}
.wsddb_c00001{word-spacing:14.828800pt;}
.ws7fe_c00001{word-spacing:14.867200pt;}
.ws117_c00001{word-spacing:14.905600pt;}
.ws116_c00001{word-spacing:14.912000pt;}
.ws9cb_c00001{word-spacing:14.918400pt;}
.wsc93_c00001{word-spacing:14.937600pt;}
.wsc95_c00001{word-spacing:14.950400pt;}
.ws7fd_c00001{word-spacing:14.956800pt;}
.ws2a8_c00001{word-spacing:14.963200pt;}
.ws52b_c00001{word-spacing:14.976000pt;}
.ws523_c00001{word-spacing:14.982400pt;}
.wsc94_c00001{word-spacing:14.988800pt;}
.ws7ff_c00001{word-spacing:14.995200pt;}
.ws52c_c00001{word-spacing:15.001600pt;}
.ws9c4_c00001{word-spacing:15.008000pt;}
.ws44c_c00001{word-spacing:15.014400pt;}
.ws2a7_c00001{word-spacing:15.020800pt;}
.wsaa4_c00001{word-spacing:15.027200pt;}
.ws444_c00001{word-spacing:15.032352pt;}
.ws394_c00001{word-spacing:15.033600pt;}
.ws1314_c00001{word-spacing:15.038208pt;}
.ws9cc_c00001{word-spacing:15.040000pt;}
.ws50c_c00001{word-spacing:15.046400pt;}
.ws1375_c00001{word-spacing:15.049920pt;}
.ws118_c00001{word-spacing:15.052800pt;}
.wsfb9_c00001{word-spacing:15.055776pt;}
.ws393_c00001{word-spacing:15.065600pt;}
.ws1438_c00001{word-spacing:15.067488pt;}
.ws105e_c00001{word-spacing:15.079200pt;}
.wsa83_c00001{word-spacing:15.084800pt;}
.wsf7b_c00001{word-spacing:15.085056pt;}
.wsc05_c00001{word-spacing:15.090912pt;}
.wsa6e_c00001{word-spacing:15.091200pt;}
.ws103d_c00001{word-spacing:15.096768pt;}
.wsd25_c00001{word-spacing:15.097600pt;}
.wsbcb_c00001{word-spacing:15.108480pt;}
.ws50b_c00001{word-spacing:15.110400pt;}
.wsceb_c00001{word-spacing:15.116800pt;}
.ws14a0_c00001{word-spacing:15.126048pt;}
.wsa92_c00001{word-spacing:15.155200pt;}
.ws85c_c00001{word-spacing:15.168000pt;}
.ws5a7_c00001{word-spacing:15.212800pt;}
.wsa2c_c00001{word-spacing:15.219200pt;}
.ws55b_c00001{word-spacing:15.225600pt;}
.wsb80_c00001{word-spacing:15.238400pt;}
.ws925_c00001{word-spacing:15.244800pt;}
.wsf32_c00001{word-spacing:15.249920pt;}
.ws6ff_c00001{word-spacing:15.251200pt;}
.wsa2b_c00001{word-spacing:15.257600pt;}
.ws119_c00001{word-spacing:15.264000pt;}
.ws787_c00001{word-spacing:15.270400pt;}
.ws5a6_c00001{word-spacing:15.283200pt;}
.wsc6a_c00001{word-spacing:15.289600pt;}
.ws55a_c00001{word-spacing:15.296000pt;}
.ws816_c00001{word-spacing:15.315200pt;}
.ws11a_c00001{word-spacing:15.321600pt;}
.ws786_c00001{word-spacing:15.334400pt;}
.wsd56_c00001{word-spacing:15.340800pt;}
.wsb07_c00001{word-spacing:15.347200pt;}
.ws50a_c00001{word-spacing:15.353600pt;}
.wsc2b_c00001{word-spacing:15.360000pt;}
.wsfc7_c00001{word-spacing:15.360288pt;}
.ws6fe_c00001{word-spacing:15.366400pt;}
.wsf00_c00001{word-spacing:15.367680pt;}
.wsb7f_c00001{word-spacing:15.372800pt;}
.wsd55_c00001{word-spacing:15.379200pt;}
.wsdf0_c00001{word-spacing:15.385600pt;}
.ws12f2_c00001{word-spacing:15.389568pt;}
.ws12d1_c00001{word-spacing:15.395424pt;}
.wsff1_c00001{word-spacing:15.401280pt;}
.ws140a_c00001{word-spacing:15.404800pt;}
.ws37e_c00001{word-spacing:15.407136pt;}
.ws31e_c00001{word-spacing:15.412992pt;}
.wsbee_c00001{word-spacing:15.424704pt;}
.ws12d2_c00001{word-spacing:15.459840pt;}
.wsd38_c00001{word-spacing:15.481600pt;}
.wsde9_c00001{word-spacing:15.494400pt;}
.ws153a_c00001{word-spacing:15.507200pt;}
.wsaeb_c00001{word-spacing:15.513600pt;}
.ws1087_c00001{word-spacing:15.532800pt;}
.wse2a_c00001{word-spacing:15.552000pt;}
.ws121c_c00001{word-spacing:15.558400pt;}
.wse77_c00001{word-spacing:15.564800pt;}
.wsd92_c00001{word-spacing:15.571200pt;}
.ws6fb_c00001{word-spacing:15.577600pt;}
.ws148_c00001{word-spacing:15.590400pt;}
.ws629_c00001{word-spacing:15.596800pt;}
.ws153b_c00001{word-spacing:15.603200pt;}
.ws71f_c00001{word-spacing:15.616000pt;}
.ws522_c00001{word-spacing:15.622400pt;}
.ws142c_c00001{word-spacing:15.628800pt;}
.ws4ec_c00001{word-spacing:15.635200pt;}
.wsa58_c00001{word-spacing:15.641600pt;}
.ws6fc_c00001{word-spacing:15.648000pt;}
.wscab_c00001{word-spacing:15.654400pt;}
.ws147_c00001{word-spacing:15.660800pt;}
.ws1566_c00001{word-spacing:15.664800pt;}
.ws71d_c00001{word-spacing:15.667200pt;}
.ws4eb_c00001{word-spacing:15.673600pt;}
.ws1392_c00001{word-spacing:15.676512pt;}
.wsd93_c00001{word-spacing:15.686400pt;}
.ws71e_c00001{word-spacing:15.692800pt;}
.ws1360_c00001{word-spacing:15.694080pt;}
.wsd1d_c00001{word-spacing:15.699200pt;}
.wsfe8_c00001{word-spacing:15.699936pt;}
.wse78_c00001{word-spacing:15.705600pt;}
.ws1275_c00001{word-spacing:15.705792pt;}
.ws1197_c00001{word-spacing:15.711648pt;}
.ws1086_c00001{word-spacing:15.712000pt;}
.wsb0a_c00001{word-spacing:15.718400pt;}
.ws10b2_c00001{word-spacing:15.723360pt;}
.ws71c_c00001{word-spacing:15.724800pt;}
.wsdea_c00001{word-spacing:15.731200pt;}
.ws1061_c00001{word-spacing:15.735072pt;}
.ws142d_c00001{word-spacing:15.740928pt;}
.ws1077_c00001{word-spacing:15.746784pt;}
.ws153f_c00001{word-spacing:15.776000pt;}
.ws1473_c00001{word-spacing:15.795200pt;}
.ws782_c00001{word-spacing:15.833600pt;}
.wsc82_c00001{word-spacing:15.846400pt;}
.ws1493_c00001{word-spacing:15.878400pt;}
.wsb09_c00001{word-spacing:15.884800pt;}
.wsf2c_c00001{word-spacing:15.897600pt;}
.wsbde_c00001{word-spacing:15.904000pt;}
.wsa85_c00001{word-spacing:15.923200pt;}
.wsb06_c00001{word-spacing:15.929600pt;}
.ws1df_c00001{word-spacing:15.936000pt;}
.wsb47_c00001{word-spacing:15.942400pt;}
.ws79b_c00001{word-spacing:15.955200pt;}
.ws3c2_c00001{word-spacing:15.961600pt;}
.ws14f0_c00001{word-spacing:15.968000pt;}
.ws2d3_c00001{word-spacing:15.974400pt;}
.wsbdd_c00001{word-spacing:15.980800pt;}
.ws2d2_c00001{word-spacing:15.987200pt;}
.ws128c_c00001{word-spacing:15.992736pt;}
.wsc3c_c00001{word-spacing:15.993600pt;}
.wsedc_c00001{word-spacing:16.000000pt;}
.ws11c4_c00001{word-spacing:16.004448pt;}
.ws5b9_c00001{word-spacing:16.006400pt;}
.ws1155_c00001{word-spacing:16.010304pt;}
.ws3c3_c00001{word-spacing:16.012800pt;}
.wsee6_c00001{word-spacing:16.015360pt;}
.ws12e1_c00001{word-spacing:16.016160pt;}
.ws79c_c00001{word-spacing:16.019200pt;}
.ws377_c00001{word-spacing:16.022016pt;}
.ws5ba_c00001{word-spacing:16.025600pt;}
.ws128b_c00001{word-spacing:16.027872pt;}
.ws1488_c00001{word-spacing:16.033728pt;}
.ws1154_c00001{word-spacing:16.039584pt;}
.ws1184_c00001{word-spacing:16.045440pt;}
.ws1066_c00001{word-spacing:16.051296pt;}
.ws376_c00001{word-spacing:16.057152pt;}
.ws10ec_c00001{word-spacing:16.063008pt;}
.ws11c3_c00001{word-spacing:16.068864pt;}
.wsb63_c00001{word-spacing:16.086432pt;}
.ws11c2_c00001{word-spacing:16.109856pt;}
.wsee7_c00001{word-spacing:16.133120pt;}
.wse12_c00001{word-spacing:16.134400pt;}
.ws649_c00001{word-spacing:16.172800pt;}
.wscd4_c00001{word-spacing:16.198400pt;}
.ws9bb_c00001{word-spacing:16.204800pt;}
.wsc41_c00001{word-spacing:16.211200pt;}
.ws42e_c00001{word-spacing:16.224000pt;}
.ws382_c00001{word-spacing:16.230400pt;}
.ws648_c00001{word-spacing:16.236800pt;}
.wsb8e_c00001{word-spacing:16.249600pt;}
.ws64a_c00001{word-spacing:16.256000pt;}
.ws32e_c00001{word-spacing:16.262400pt;}
.ws9ba_c00001{word-spacing:16.268800pt;}
.wsa67_c00001{word-spacing:16.275200pt;}
.ws42d_c00001{word-spacing:16.281600pt;}
.ws381_c00001{word-spacing:16.288000pt;}
.wsaa5_c00001{word-spacing:16.294400pt;}
.wsbe3_c00001{word-spacing:16.300800pt;}
.ws262_c00001{word-spacing:16.307200pt;}
.ws151d_c00001{word-spacing:16.313600pt;}
.ws12e4_c00001{word-spacing:16.314816pt;}
.ws32d_c00001{word-spacing:16.320000pt;}
.ws37a_c00001{word-spacing:16.320672pt;}
.wscd3_c00001{word-spacing:16.326400pt;}
.wsb71_c00001{word-spacing:16.326528pt;}
.ws37b_c00001{word-spacing:16.332384pt;}
.ws8df_c00001{word-spacing:16.332800pt;}
.ws440_c00001{word-spacing:16.338240pt;}
.ws10bd_c00001{word-spacing:16.344096pt;}
.ws1060_c00001{word-spacing:16.349952pt;}
.ws131c_c00001{word-spacing:16.355808pt;}
.ws261_c00001{word-spacing:16.358400pt;}
.wscb3_c00001{word-spacing:16.371200pt;}
.wsbec_c00001{word-spacing:16.373376pt;}
.wsf34_c00001{word-spacing:16.384000pt;}
.ws14af_c00001{word-spacing:16.396800pt;}
.wsbc4_c00001{word-spacing:16.403200pt;}
.wsde8_c00001{word-spacing:16.441600pt;}
.ws5c8_c00001{word-spacing:16.460800pt;}
.ws369_c00001{word-spacing:16.480000pt;}
.ws94f_c00001{word-spacing:16.486400pt;}
.ws80b_c00001{word-spacing:16.505600pt;}
.ws5ae_c00001{word-spacing:16.512000pt;}
.ws8c4_c00001{word-spacing:16.524800pt;}
.ws151a_c00001{word-spacing:16.531200pt;}
.wsc3a_c00001{word-spacing:16.537600pt;}
.ws13c1_c00001{word-spacing:16.545280pt;}
.ws5c7_c00001{word-spacing:16.550400pt;}
.wse6_c00001{word-spacing:16.556800pt;}
.ws8c5_c00001{word-spacing:16.563200pt;}
.wsde7_c00001{word-spacing:16.576000pt;}
.wsc27_c00001{word-spacing:16.582400pt;}
.ws52e_c00001{word-spacing:16.588800pt;}
.ws57b_c00001{word-spacing:16.595200pt;}
.ws354_c00001{word-spacing:16.601600pt;}
.ws1eb_c00001{word-spacing:16.608000pt;}
.ws8c3_c00001{word-spacing:16.614400pt;}
.ws36a_c00001{word-spacing:16.620800pt;}
.ws57a_c00001{word-spacing:16.627200pt;}
.ws1128_c00001{word-spacing:16.631040pt;}
.ws5c9_c00001{word-spacing:16.633600pt;}
.ws12e5_c00001{word-spacing:16.636896pt;}
.ws355_c00001{word-spacing:16.640000pt;}
.ws129f_c00001{word-spacing:16.642752pt;}
.wsd0e_c00001{word-spacing:16.646400pt;}
.ws1319_c00001{word-spacing:16.648608pt;}
.ws865_c00001{word-spacing:16.652800pt;}
.ws1469_c00001{word-spacing:16.654464pt;}
.wsc30_c00001{word-spacing:16.659200pt;}
.ws23a_c00001{word-spacing:16.660320pt;}
.wsf2b_c00001{word-spacing:16.663040pt;}
.wse7_c00001{word-spacing:16.665600pt;}
.wsbd4_c00001{word-spacing:16.666176pt;}
.wsa1a_c00001{word-spacing:16.672000pt;}
.wsade_c00001{word-spacing:16.672032pt;}
.wsbc8_c00001{word-spacing:16.677888pt;}
.wsbd0_c00001{word-spacing:16.683744pt;}
.wsdae_c00001{word-spacing:16.684800pt;}
.ws1389_c00001{word-spacing:16.689600pt;}
.ws76b_c00001{word-spacing:16.691200pt;}
.wsd12_c00001{word-spacing:16.697600pt;}
.ws104b_c00001{word-spacing:16.707168pt;}
.ws14a6_c00001{word-spacing:16.713024pt;}
.ws125a_c00001{word-spacing:16.736000pt;}
.wsbe2_c00001{word-spacing:16.748800pt;}
.wsb7e_c00001{word-spacing:16.774400pt;}
.wsf2a_c00001{word-spacing:16.780800pt;}
.ws93f_c00001{word-spacing:16.806400pt;}
.wsb85_c00001{word-spacing:16.812800pt;}
.wsac2_c00001{word-spacing:16.819200pt;}
.ws96e_c00001{word-spacing:16.825600pt;}
.wsd7e_c00001{word-spacing:16.844800pt;}
.ws940_c00001{word-spacing:16.857600pt;}
.ws208_c00001{word-spacing:16.864000pt;}
.ws54e_c00001{word-spacing:16.870400pt;}
.ws864_c00001{word-spacing:16.876800pt;}
.ws6f2_c00001{word-spacing:16.883200pt;}
.ws500_c00001{word-spacing:16.889600pt;}
.ws93e_c00001{word-spacing:16.896000pt;}
.ws7f9_c00001{word-spacing:16.902400pt;}
.ws2fb_c00001{word-spacing:16.908800pt;}
.ws207_c00001{word-spacing:16.915200pt;}
.wsb7d_c00001{word-spacing:16.921600pt;}
.ws85b_c00001{word-spacing:16.928000pt;}
.ws501_c00001{word-spacing:16.934400pt;}
.ws6f1_c00001{word-spacing:16.940800pt;}
.wsd54_c00001{word-spacing:16.947200pt;}
.ws2fa_c00001{word-spacing:16.960000pt;}
.ws238_c00001{word-spacing:16.964832pt;}
.wsa61_c00001{word-spacing:16.966400pt;}
.ws1143_c00001{word-spacing:16.970688pt;}
.ws2f9_c00001{word-spacing:16.972800pt;}
.ws23b_c00001{word-spacing:16.976544pt;}
.wsaf8_c00001{word-spacing:16.979200pt;}
.ws1212_c00001{word-spacing:16.982400pt;}
.ws892_c00001{word-spacing:16.985600pt;}
.ws54d_c00001{word-spacing:16.992000pt;}
.wsae5_c00001{word-spacing:16.994112pt;}
.wsaf9_c00001{word-spacing:16.998400pt;}
.ws143f_c00001{word-spacing:16.999968pt;}
.ws1332_c00001{word-spacing:17.005824pt;}
.ws784_c00001{word-spacing:17.011200pt;}
.ws1142_c00001{word-spacing:17.017536pt;}
.wsbe1_c00001{word-spacing:17.017600pt;}
.ws239_c00001{word-spacing:17.029248pt;}
.wsd53_c00001{word-spacing:17.049600pt;}
.ws108f_c00001{word-spacing:17.056000pt;}
.ws1333_c00001{word-spacing:17.058528pt;}
.ws824_c00001{word-spacing:17.100800pt;}
.ws44a_c00001{word-spacing:17.107200pt;}
.ws44b_c00001{word-spacing:17.132800pt;}
.ws41_c00001{word-spacing:17.139200pt;}
.wsb9a_c00001{word-spacing:17.152000pt;}
.wse01_c00001{word-spacing:17.164800pt;}
.ws8bb_c00001{word-spacing:17.171200pt;}
.ws1090_c00001{word-spacing:17.184000pt;}
.ws685_c00001{word-spacing:17.190400pt;}
.ws9d_c00001{word-spacing:17.196800pt;}
.ws1c8_c00001{word-spacing:17.203200pt;}
.wsa5a_c00001{word-spacing:17.216000pt;}
.ws8d8_c00001{word-spacing:17.222400pt;}
.ws5f6_c00001{word-spacing:17.228800pt;}
.ws823_c00001{word-spacing:17.235200pt;}
.ws684_c00001{word-spacing:17.241600pt;}
.wsd67_c00001{word-spacing:17.248000pt;}
.ws55d_c00001{word-spacing:17.254400pt;}
.ws40_c00001{word-spacing:17.260800pt;}
.ws9e_c00001{word-spacing:17.267200pt;}
.ws5f5_c00001{word-spacing:17.273600pt;}
.ws1127_c00001{word-spacing:17.275200pt;}
.ws79d_c00001{word-spacing:17.280000pt;}
.ws1c7_c00001{word-spacing:17.286400pt;}
.ws42_c00001{word-spacing:17.299200pt;}
.wsb70_c00001{word-spacing:17.310336pt;}
.ws8d3_c00001{word-spacing:17.312000pt;}
.wsf9e_c00001{word-spacing:17.316192pt;}
.ws55e_c00001{word-spacing:17.318400pt;}
.wsb52_c00001{word-spacing:17.322048pt;}
.ws12e0_c00001{word-spacing:17.327904pt;}
.wsb51_c00001{word-spacing:17.333760pt;}
.wsfb5_c00001{word-spacing:17.339616pt;}
.wse1e_c00001{word-spacing:17.369600pt;}
.wse8f_c00001{word-spacing:17.401600pt;}
.wsde4_c00001{word-spacing:17.440000pt;}
.wsd34_c00001{word-spacing:17.446400pt;}
.wsea1_c00001{word-spacing:17.447040pt;}
.ws26d_c00001{word-spacing:17.459200pt;}
.ws7d5_c00001{word-spacing:17.472000pt;}
.ws9d7_c00001{word-spacing:17.478400pt;}
.ws26c_c00001{word-spacing:17.484800pt;}
.ws5b7_c00001{word-spacing:17.491200pt;}
.ws726_c00001{word-spacing:17.504000pt;}
.ws610_c00001{word-spacing:17.516800pt;}
.ws9a2_c00001{word-spacing:17.523200pt;}
.ws468_c00001{word-spacing:17.529600pt;}
.wse9f_c00001{word-spacing:17.536000pt;}
.wsd47_c00001{word-spacing:17.548800pt;}
.ws9a1_c00001{word-spacing:17.555200pt;}
.ws781_c00001{word-spacing:17.561600pt;}
.ws467_c00001{word-spacing:17.568000pt;}
.ws1038_c00001{word-spacing:17.573856pt;}
.wscfd_c00001{word-spacing:17.574400pt;}
.wsd33_c00001{word-spacing:17.580800pt;}
.wsa7f_c00001{word-spacing:17.587200pt;}
.wsc87_c00001{word-spacing:17.593600pt;}
.ws1113_c00001{word-spacing:17.597280pt;}
.wsa7e_c00001{word-spacing:17.600000pt;}
.ws8d2_c00001{word-spacing:17.606400pt;}
.ws1265_c00001{word-spacing:17.608992pt;}
.ws7d3_c00001{word-spacing:17.612800pt;}
.ws1294_c00001{word-spacing:17.614848pt;}
.wsc88_c00001{word-spacing:17.625600pt;}
.ws105b_c00001{word-spacing:17.626560pt;}
.ws7d4_c00001{word-spacing:17.632000pt;}
.ws1039_c00001{word-spacing:17.632416pt;}
.wsfd3_c00001{word-spacing:17.638272pt;}
.wsf73_c00001{word-spacing:17.644128pt;}
.wsfc5_c00001{word-spacing:17.655840pt;}
.wsd94_c00001{word-spacing:17.657600pt;}
.ws84a_c00001{word-spacing:17.661696pt;}
.ws611_c00001{word-spacing:17.664000pt;}
.ws1293_c00001{word-spacing:17.679264pt;}
.ws76a_c00001{word-spacing:17.715200pt;}
.ws39a_c00001{word-spacing:17.721600pt;}
.wse29_c00001{word-spacing:17.753600pt;}
.ws7cd_c00001{word-spacing:17.760000pt;}
.ws398_c00001{word-spacing:17.766400pt;}
.ws13de_c00001{word-spacing:17.781760pt;}
.ws769_c00001{word-spacing:17.792000pt;}
.ws768_c00001{word-spacing:17.798400pt;}
.ws39c_c00001{word-spacing:17.804800pt;}
.wsc34_c00001{word-spacing:17.811200pt;}
.ws1430_c00001{word-spacing:17.830400pt;}
.ws18f_c00001{word-spacing:17.843200pt;}
.ws550_c00001{word-spacing:17.849600pt;}
.ws8ee_c00001{word-spacing:17.856000pt;}
.wse53_c00001{word-spacing:17.862400pt;}
.wscea_c00001{word-spacing:17.868800pt;}
.ws54f_c00001{word-spacing:17.875200pt;}
.wsf58_c00001{word-spacing:17.881600pt;}
.ws42c_c00001{word-spacing:17.888000pt;}
.ws13b5_c00001{word-spacing:17.899520pt;}
.ws39b_c00001{word-spacing:17.900800pt;}
.ws63a_c00001{word-spacing:17.907200pt;}
.ws3c0_c00001{word-spacing:17.913600pt;}
.ws399_c00001{word-spacing:17.920000pt;}
.ws130e_c00001{word-spacing:17.925216pt;}
.wsce9_c00001{word-spacing:17.926400pt;}
.ws8ef_c00001{word-spacing:17.932800pt;}
.ws136a_c00001{word-spacing:17.936928pt;}
.wscc5_c00001{word-spacing:17.939200pt;}
.ws3bf_c00001{word-spacing:17.945600pt;}
.ws12ed_c00001{word-spacing:17.954496pt;}
.ws14b4_c00001{word-spacing:17.966208pt;}
.wsae0_c00001{word-spacing:17.983776pt;}
.ws88e_c00001{word-spacing:18.028800pt;}
.wsea2_c00001{word-spacing:18.046080pt;}
.ws597_c00001{word-spacing:18.060800pt;}
.wsdfc_c00001{word-spacing:18.067200pt;}
.ws2dd_c00001{word-spacing:18.086400pt;}
.ws25f_c00001{word-spacing:18.092800pt;}
.wse25_c00001{word-spacing:18.099200pt;}
.ws825_c00001{word-spacing:18.105600pt;}
.wsc0c_c00001{word-spacing:18.118400pt;}
.ws33c_c00001{word-spacing:18.124800pt;}
.ws432_c00001{word-spacing:18.131200pt;}
.ws7a3_c00001{word-spacing:18.137600pt;}
.ws2dc_c00001{word-spacing:18.144000pt;}
.ws49e_c00001{word-spacing:18.150400pt;}
.wsc86_c00001{word-spacing:18.156800pt;}
.ws7a5_c00001{word-spacing:18.163200pt;}
.wsca6_c00001{word-spacing:18.169600pt;}
.wsb7c_c00001{word-spacing:18.176000pt;}
.ws1223_c00001{word-spacing:18.182400pt;}
.wsc1c_c00001{word-spacing:18.195200pt;}
.ws49f_c00001{word-spacing:18.201600pt;}
.ws7a4_c00001{word-spacing:18.208000pt;}
.ws58_c00001{word-spacing:18.214400pt;}
.ws58e_c00001{word-spacing:18.220800pt;}
.ws337_c00001{word-spacing:18.227200pt;}
.ws368_c00001{word-spacing:18.233600pt;}
.ws123d_c00001{word-spacing:18.247296pt;}
.ws260_c00001{word-spacing:18.252800pt;}
.ws4a0_c00001{word-spacing:18.259200pt;}
.ws149f_c00001{word-spacing:18.264864pt;}
.ws336_c00001{word-spacing:18.265600pt;}
.ws155b_c00001{word-spacing:18.270720pt;}
.ws2de_c00001{word-spacing:18.272000pt;}
.ws11b2_c00001{word-spacing:18.276576pt;}
.wse8c_c00001{word-spacing:18.278400pt;}
.ws150b_c00001{word-spacing:18.282432pt;}
.ws1104_c00001{word-spacing:18.288288pt;}
.ws102a_c00001{word-spacing:18.305856pt;}
.wscf1_c00001{word-spacing:18.310400pt;}
.wse8b_c00001{word-spacing:18.316800pt;}
.wse74_c00001{word-spacing:18.355200pt;}
.ws47b_c00001{word-spacing:18.368000pt;}
.ws593_c00001{word-spacing:18.380800pt;}
.ws386_c00001{word-spacing:18.387200pt;}
.ws39_c00001{word-spacing:18.425600pt;}
.ws616_c00001{word-spacing:18.451200pt;}
.ws175_c00001{word-spacing:18.457600pt;}
.ws174_c00001{word-spacing:18.464000pt;}
.ws51f_c00001{word-spacing:18.470400pt;}
.ws385_c00001{word-spacing:18.476800pt;}
.ws8a5_c00001{word-spacing:18.489600pt;}
.ws47a_c00001{word-spacing:18.496000pt;}
.ws3a_c00001{word-spacing:18.502400pt;}
.wsa1b_c00001{word-spacing:18.508800pt;}
.ws2f1_c00001{word-spacing:18.521600pt;}
.wsc4b_c00001{word-spacing:18.528000pt;}
.ws976_c00001{word-spacing:18.540800pt;}
.ws4d6_c00001{word-spacing:18.547200pt;}
.wsdbb_c00001{word-spacing:18.553600pt;}
.ws4d7_c00001{word-spacing:18.566400pt;}
.ws977_c00001{word-spacing:18.572800pt;}
.ws1141_c00001{word-spacing:18.575232pt;}
.ws173_c00001{word-spacing:18.579200pt;}
.ws851_c00001{word-spacing:18.581088pt;}
.ws387_c00001{word-spacing:18.585600pt;}
.ws1543_c00001{word-spacing:18.586944pt;}
.wsf72_c00001{word-spacing:18.592800pt;}
.ws1210_c00001{word-spacing:18.598656pt;}
.wsacf_c00001{word-spacing:18.604512pt;}
.ws10d2_c00001{word-spacing:18.610368pt;}
.wsffe_c00001{word-spacing:18.616224pt;}
.wse73_c00001{word-spacing:18.617600pt;}
.ws13b4_c00001{word-spacing:18.664960pt;}
.ws12b5_c00001{word-spacing:18.694400pt;}
.wsb4b_c00001{word-spacing:18.739200pt;}
.ws6ea_c00001{word-spacing:18.752000pt;}
.wsdd7_c00001{word-spacing:18.777600pt;}
.ws554_c00001{word-spacing:18.784000pt;}
.wsb4c_c00001{word-spacing:18.796800pt;}
.ws1a6_c00001{word-spacing:18.803200pt;}
.ws732_c00001{word-spacing:18.835200pt;}
.ws3db_c00001{word-spacing:18.841600pt;}
.ws741_c00001{word-spacing:18.848000pt;}
.wsb1e_c00001{word-spacing:18.854400pt;}
.ws736_c00001{word-spacing:18.860800pt;}
.ws76c_c00001{word-spacing:18.867200pt;}
.ws742_c00001{word-spacing:18.873600pt;}
.ws12a8_c00001{word-spacing:18.879744pt;}
.ws1a5_c00001{word-spacing:18.880000pt;}
.wse5_c00001{word-spacing:18.886400pt;}
.ws553_c00001{word-spacing:18.892800pt;}
.wsdd6_c00001{word-spacing:18.899200pt;}
.wsfc0_c00001{word-spacing:18.903168pt;}
.ws134a_c00001{word-spacing:18.909024pt;}
.ws187_c00001{word-spacing:18.914880pt;}
.wse4_c00001{word-spacing:18.931200pt;}
.ws188_c00001{word-spacing:18.932448pt;}
.ws1167_c00001{word-spacing:18.938304pt;}
.ws152d_c00001{word-spacing:18.950400pt;}
.wsd4a_c00001{word-spacing:18.988800pt;}
.wsc2d_c00001{word-spacing:18.995200pt;}
.ws9ca_c00001{word-spacing:19.033600pt;}
.wsf56_c00001{word-spacing:19.040000pt;}
.wsfd8_c00001{word-spacing:19.046400pt;}
.wscb1_c00001{word-spacing:19.065600pt;}
.wsae9_c00001{word-spacing:19.072000pt;}
.ws13c8_c00001{word-spacing:19.077120pt;}
.ws5f2_c00001{word-spacing:19.091200pt;}
.ws7c9_c00001{word-spacing:19.097600pt;}
.wsd0d_c00001{word-spacing:19.104000pt;}
.wsdeb_c00001{word-spacing:19.110400pt;}
.wscb0_c00001{word-spacing:19.123200pt;}
.wsc2c_c00001{word-spacing:19.136000pt;}
.ws5f3_c00001{word-spacing:19.142400pt;}
.ws400_c00001{word-spacing:19.155200pt;}
.wsaea_c00001{word-spacing:19.161600pt;}
.ws388_c00001{word-spacing:19.168000pt;}
.ws7c8_c00001{word-spacing:19.174400pt;}
.ws6a5_c00001{word-spacing:19.180800pt;}
.wsd0c_c00001{word-spacing:19.187200pt;}
.ws6a6_c00001{word-spacing:19.193600pt;}
.wscd2_c00001{word-spacing:19.200000pt;}
.ws402_c00001{word-spacing:19.206400pt;}
.ws302_c00001{word-spacing:19.207680pt;}
.ws5f4_c00001{word-spacing:19.212800pt;}
.wscaf_c00001{word-spacing:19.219200pt;}
.wsbb7_c00001{word-spacing:19.219392pt;}
.ws303_c00001{word-spacing:19.231104pt;}
.ws12d0_c00001{word-spacing:19.236960pt;}
.wscb2_c00001{word-spacing:19.238400pt;}
.wsbb6_c00001{word-spacing:19.242816pt;}
.ws401_c00001{word-spacing:19.244800pt;}
.ws14c7_c00001{word-spacing:19.248672pt;}
.wsbf3_c00001{word-spacing:19.254528pt;}
.wsda3_c00001{word-spacing:19.264000pt;}
.wsf9b_c00001{word-spacing:19.266240pt;}
.wscd1_c00001{word-spacing:19.289600pt;}
.ws8b6_c00001{word-spacing:19.334400pt;}
.wsab2_c00001{word-spacing:19.379200pt;}
.ws304_c00001{word-spacing:19.389216pt;}
.wsaaf_c00001{word-spacing:19.411200pt;}
.ws937_c00001{word-spacing:19.417600pt;}
.ws8b7_c00001{word-spacing:19.436800pt;}
.wsabc_c00001{word-spacing:19.443200pt;}
.wsdb2_c00001{word-spacing:19.456000pt;}
.ws4e6_c00001{word-spacing:19.462400pt;}
.wscdd_c00001{word-spacing:19.475200pt;}
.wsb8f_c00001{word-spacing:19.494400pt;}
.wsf4f_c00001{word-spacing:19.500800pt;}
.ws350_c00001{word-spacing:19.506336pt;}
.ws938_c00001{word-spacing:19.507200pt;}
.ws936_c00001{word-spacing:19.513600pt;}
.ws117b_c00001{word-spacing:19.518048pt;}
.wsab1_c00001{word-spacing:19.520000pt;}
.ws144a_c00001{word-spacing:19.523904pt;}
.ws119c_c00001{word-spacing:19.529760pt;}
.ws4e7_c00001{word-spacing:19.532800pt;}
.ws14d0_c00001{word-spacing:19.535616pt;}
.wsfee_c00001{word-spacing:19.541472pt;}
.wsab0_c00001{word-spacing:19.545600pt;}
.ws1300_c00001{word-spacing:19.552000pt;}
.ws34f_c00001{word-spacing:19.559040pt;}
.wsfd5_c00001{word-spacing:19.564896pt;}
.ws1182_c00001{word-spacing:19.570752pt;}
.ws1505_c00001{word-spacing:19.576608pt;}
.ws1005_c00001{word-spacing:19.582464pt;}
.wsddf_c00001{word-spacing:19.584000pt;}
.ws10eb_c00001{word-spacing:19.594176pt;}
.wsdb1_c00001{word-spacing:19.596800pt;}
.ws143e_c00001{word-spacing:19.605888pt;}
.wsabe_c00001{word-spacing:19.616000pt;}
.ws69d_c00001{word-spacing:19.686400pt;}
.wsc7a_c00001{word-spacing:19.712000pt;}
.ws1224_c00001{word-spacing:19.718400pt;}
.wsba1_c00001{word-spacing:19.731200pt;}
.ws429_c00001{word-spacing:19.744000pt;}
.ws69c_c00001{word-spacing:19.750400pt;}
.wse63_c00001{word-spacing:19.756800pt;}
.ws428_c00001{word-spacing:19.763200pt;}
.ws77b_c00001{word-spacing:19.769600pt;}
.wsc7b_c00001{word-spacing:19.776000pt;}
.ws734_c00001{word-spacing:19.782400pt;}
.ws632_c00001{word-spacing:19.788800pt;}
.wsd23_c00001{word-spacing:19.795200pt;}
.ws631_c00001{word-spacing:19.808000pt;}
.wsf59_c00001{word-spacing:19.820800pt;}
.wsba0_c00001{word-spacing:19.827200pt;}
.ws1102_c00001{word-spacing:19.828416pt;}
.ws829_c00001{word-spacing:19.833600pt;}
.ws69e_c00001{word-spacing:19.840000pt;}
.ws13bb_c00001{word-spacing:19.842560pt;}
.ws735_c00001{word-spacing:19.846400pt;}
.ws300_c00001{word-spacing:19.851840pt;}
.wsc47_c00001{word-spacing:19.852800pt;}
.ws1255_c00001{word-spacing:19.857696pt;}
.ws77a_c00001{word-spacing:19.859200pt;}
.wsfcb_c00001{word-spacing:19.863552pt;}
.ws42a_c00001{word-spacing:19.865600pt;}
.ws301_c00001{word-spacing:19.869408pt;}
.wsd22_c00001{word-spacing:19.872000pt;}
.ws11fc_c00001{word-spacing:19.875264pt;}
.wsd8d_c00001{word-spacing:19.878400pt;}
.ws122e_c00001{word-spacing:19.881120pt;}
.ws11ae_c00001{word-spacing:19.886976pt;}
.ws268_c00001{word-spacing:19.904000pt;}
.ws101a_c00001{word-spacing:19.910400pt;}
.ws1007_c00001{word-spacing:19.916256pt;}
.ws13fe_c00001{word-spacing:19.920000pt;}
.ws9d3_c00001{word-spacing:19.948800pt;}
.ws14ca_c00001{word-spacing:19.955200pt;}
.ws38b_c00001{word-spacing:19.961600pt;}
.ws38a_c00001{word-spacing:19.980800pt;}
.wsf35_c00001{word-spacing:19.992960pt;}
.wsa0d_c00001{word-spacing:20.000000pt;}
.ws4f9_c00001{word-spacing:20.012800pt;}
.wse81_c00001{word-spacing:20.032000pt;}
.ws267_c00001{word-spacing:20.064000pt;}
.ws38e_c00001{word-spacing:20.070400pt;}
.ws9d2_c00001{word-spacing:20.076800pt;}
.ws141d_c00001{word-spacing:20.083200pt;}
.ws147d_c00001{word-spacing:20.085664pt;}
.ws1a3_c00001{word-spacing:20.089600pt;}
.ws819_c00001{word-spacing:20.096000pt;}
.ws3dc_c00001{word-spacing:20.102400pt;}
.ws3dd_c00001{word-spacing:20.108800pt;}
.ws141e_c00001{word-spacing:20.115200pt;}
.ws253_c00001{word-spacing:20.121600pt;}
.wsfd0_c00001{word-spacing:20.127072pt;}
.ws252_c00001{word-spacing:20.134400pt;}
.wsd60_c00001{word-spacing:20.140800pt;}
.ws3c4_c00001{word-spacing:20.147200pt;}
.ws25e_c00001{word-spacing:20.153600pt;}
.ws818_c00001{word-spacing:20.160000pt;}
.ws8b3_c00001{word-spacing:20.166400pt;}
.wsa75_c00001{word-spacing:20.172800pt;}
.ws12f7_c00001{word-spacing:20.179776pt;}
.wse89_c00001{word-spacing:20.185600pt;}
.wsfcf_c00001{word-spacing:20.191488pt;}
.wsff0_c00001{word-spacing:20.197344pt;}
.wse80_c00001{word-spacing:20.198400pt;}
.ws127f_c00001{word-spacing:20.203200pt;}
.wse88_c00001{word-spacing:20.204800pt;}
.ws154c_c00001{word-spacing:20.209056pt;}
.ws1441_c00001{word-spacing:20.214912pt;}
.wsf7e_c00001{word-spacing:20.220768pt;}
.wsd21_c00001{word-spacing:20.236800pt;}
.wsa8a_c00001{word-spacing:20.275200pt;}
.ws1519_c00001{word-spacing:20.332800pt;}
.ws59c_c00001{word-spacing:20.339200pt;}
.wscef_c00001{word-spacing:20.352000pt;}
.ws8c6_c00001{word-spacing:20.371200pt;}
.ws8c7_c00001{word-spacing:20.384000pt;}
.wsb30_c00001{word-spacing:20.403200pt;}
.ws346_c00001{word-spacing:20.409600pt;}
.ws88d_c00001{word-spacing:20.422400pt;}
.ws8de_c00001{word-spacing:20.435200pt;}
.ws101d_c00001{word-spacing:20.441600pt;}
.ws5c5_c00001{word-spacing:20.448000pt;}
.ws101c_c00001{word-spacing:20.454400pt;}
.ws8dd_c00001{word-spacing:20.460800pt;}
.ws5c4_c00001{word-spacing:20.467200pt;}
.ws345_c00001{word-spacing:20.473600pt;}
.wscd5_c00001{word-spacing:20.480000pt;}
.ws44f_c00001{word-spacing:20.486400pt;}
.ws4d2_c00001{word-spacing:20.492800pt;}
.ws44e_c00001{word-spacing:20.499200pt;}
.ws103f_c00001{word-spacing:20.507712pt;}
.ws120f_c00001{word-spacing:20.513568pt;}
.wsf55_c00001{word-spacing:20.518400pt;}
.ws4d3_c00001{word-spacing:20.524800pt;}
.wsfff_c00001{word-spacing:20.525280pt;}
.wsfc8_c00001{word-spacing:20.536992pt;}
.wsb8b_c00001{word-spacing:20.537600pt;}
.ws59d_c00001{word-spacing:20.544000pt;}
.wsbeb_c00001{word-spacing:20.548704pt;}
.ws1081_c00001{word-spacing:20.554560pt;}
.ws83b_c00001{word-spacing:20.614400pt;}
.ws620_c00001{word-spacing:20.620800pt;}
.wsab7_c00001{word-spacing:20.633600pt;}
.ws83c_c00001{word-spacing:20.652800pt;}
.ws11ab_c00001{word-spacing:20.672000pt;}
.ws713_c00001{word-spacing:20.678400pt;}
.ws815_c00001{word-spacing:20.691200pt;}
.ws1479_c00001{word-spacing:20.704000pt;}
.ws621_c00001{word-spacing:20.710400pt;}
.ws1c6_c00001{word-spacing:20.716800pt;}
.ws9f1_c00001{word-spacing:20.723200pt;}
.wse56_c00001{word-spacing:20.729600pt;}
.ws730_c00001{word-spacing:20.736000pt;}
.ws724_c00001{word-spacing:20.742400pt;}
.wsa6a_c00001{word-spacing:20.748800pt;}
.ws652_c00001{word-spacing:20.755200pt;}
.wscc3_c00001{word-spacing:20.761600pt;}
.ws38d_c00001{word-spacing:20.768000pt;}
.wsa0f_c00001{word-spacing:20.774400pt;}
.ws1c5_c00001{word-spacing:20.780800pt;}
.ws38c_c00001{word-spacing:20.787200pt;}
.ws61f_c00001{word-spacing:20.793600pt;}
.ws9f2_c00001{word-spacing:20.800000pt;}
.ws1331_c00001{word-spacing:20.800512pt;}
.ws11aa_c00001{word-spacing:20.806400pt;}
.ws711_c00001{word-spacing:20.812800pt;}
.ws712_c00001{word-spacing:20.819200pt;}
.ws1478_c00001{word-spacing:20.832000pt;}
.ws714_c00001{word-spacing:20.838400pt;}
.ws1036_c00001{word-spacing:20.853216pt;}
.ws11a3_c00001{word-spacing:20.859072pt;}
.ws13a4_c00001{word-spacing:20.864000pt;}
.ws11e8_c00001{word-spacing:20.864928pt;}
.ws1092_c00001{word-spacing:20.896000pt;}
.wscc2_c00001{word-spacing:20.947200pt;}
.wsb84_c00001{word-spacing:20.979200pt;}
.wsafb_c00001{word-spacing:20.985600pt;}
.wsb83_c00001{word-spacing:20.992000pt;}
.wsc50_c00001{word-spacing:20.998400pt;}
.ws1091_c00001{word-spacing:21.004800pt;}
.ws5da_c00001{word-spacing:21.011200pt;}
.wsb5d_c00001{word-spacing:21.017600pt;}
.ws13fa_c00001{word-spacing:21.020160pt;}
.ws278_c00001{word-spacing:21.036800pt;}
.wsc4f_c00001{word-spacing:21.049600pt;}
.ws277_c00001{word-spacing:21.056000pt;}
.ws5db_c00001{word-spacing:21.062400pt;}
.wsd2e_c00001{word-spacing:21.075200pt;}
.wsc4e_c00001{word-spacing:21.088000pt;}
.ws59e_c00001{word-spacing:21.094400pt;}
.wscc1_c00001{word-spacing:21.100800pt;}
.ws9b6_c00001{word-spacing:21.107200pt;}
.ws1095_c00001{word-spacing:21.110880pt;}
.ws1db_c00001{word-spacing:21.113600pt;}
.ws11f4_c00001{word-spacing:21.116736pt;}
.ws872_c00001{word-spacing:21.119488pt;}
.ws1dc_c00001{word-spacing:21.120000pt;}
.ws120e_c00001{word-spacing:21.122592pt;}
.ws4c5_c00001{word-spacing:21.126400pt;}
.ws11f3_c00001{word-spacing:21.134304pt;}
.ws2d1_c00001{word-spacing:21.139200pt;}
.ws740_c00001{word-spacing:21.145600pt;}
.ws1466_c00001{word-spacing:21.146016pt;}
.wsf76_c00001{word-spacing:21.157728pt;}
.ws119a_c00001{word-spacing:21.169440pt;}
.wsd2d_c00001{word-spacing:21.171200pt;}
.ws118e_c00001{word-spacing:21.175296pt;}
.ws378_c00001{word-spacing:21.181152pt;}
.ws10f2_c00001{word-spacing:21.187008pt;}
.wsd2c_c00001{word-spacing:21.222400pt;}
.wsd44_c00001{word-spacing:21.292800pt;}
.wsb1c_c00001{word-spacing:21.312000pt;}
.wse13_c00001{word-spacing:21.331200pt;}
.ws992_c00001{word-spacing:21.337600pt;}
.ws4b7_c00001{word-spacing:21.350400pt;}
.ws881_c00001{word-spacing:21.363200pt;}
.ws985_c00001{word-spacing:21.376000pt;}
.wsa19_c00001{word-spacing:21.388800pt;}
.ws438_c00001{word-spacing:21.395200pt;}
.ws3d6_c00001{word-spacing:21.401600pt;}
.ws993_c00001{word-spacing:21.408000pt;}
.ws3d5_c00001{word-spacing:21.420800pt;}
.ws1070_c00001{word-spacing:21.427104pt;}
.wsb1b_c00001{word-spacing:21.440000pt;}
.wsd37_c00001{word-spacing:21.446400pt;}
.ws4b8_c00001{word-spacing:21.452800pt;}
.ws1006_c00001{word-spacing:21.462240pt;}
.wsadd_c00001{word-spacing:21.468096pt;}
.wsbf6_c00001{word-spacing:21.473952pt;}
.wsd36_c00001{word-spacing:21.478400pt;}
.ws379_c00001{word-spacing:21.509088pt;}
.wsae3_c00001{word-spacing:21.514944pt;}
.ws789_c00001{word-spacing:21.600000pt;}
.wse37_c00001{word-spacing:21.606400pt;}
.wsbd8_c00001{word-spacing:21.625600pt;}
.ws983_c00001{word-spacing:21.651200pt;}
.ws788_c00001{word-spacing:21.689600pt;}
.wsc67_c00001{word-spacing:21.696000pt;}
.wsd2_c00001{word-spacing:21.708800pt;}
.wsbe7_c00001{word-spacing:21.715200pt;}
.wsd3_c00001{word-spacing:21.728000pt;}
.ws9ee_c00001{word-spacing:21.734400pt;}
.ws7f6_c00001{word-spacing:21.740800pt;}
.wsc68_c00001{word-spacing:21.760000pt;}
.wsfb6_c00001{word-spacing:21.760896pt;}
.ws984_c00001{word-spacing:21.766400pt;}
.wsb54_c00001{word-spacing:21.772608pt;}
.ws9ef_c00001{word-spacing:21.772800pt;}
.wsa90_c00001{word-spacing:21.779200pt;}
.ws1327_c00001{word-spacing:21.801888pt;}
.ws36c_c00001{word-spacing:21.807744pt;}
.ws21a_c00001{word-spacing:21.811200pt;}
.wsb53_c00001{word-spacing:21.825312pt;}
.ws219_c00001{word-spacing:21.907200pt;}
.wse36_c00001{word-spacing:21.920000pt;}
.ws690_c00001{word-spacing:21.926400pt;}
.ws1570_c00001{word-spacing:21.939200pt;}
.ws218_c00001{word-spacing:21.952000pt;}
.ws885_c00001{word-spacing:21.964800pt;}
.wsd11_c00001{word-spacing:21.971200pt;}
.ws6e_c00001{word-spacing:21.977600pt;}
.ws156f_c00001{word-spacing:21.984000pt;}
.wsaf6_c00001{word-spacing:21.990400pt;}
.wsaf5_c00001{word-spacing:22.009600pt;}
.ws73b_c00001{word-spacing:22.016000pt;}
.ws27d_c00001{word-spacing:22.028800pt;}
.ws6d_c00001{word-spacing:22.041600pt;}
.ws1225_c00001{word-spacing:22.048000pt;}
.ws86a_c00001{word-spacing:22.054400pt;}
.ws718_c00001{word-spacing:22.060800pt;}
.ws691_c00001{word-spacing:22.067200pt;}
.wsb50_c00001{word-spacing:22.071264pt;}
.ws73c_c00001{word-spacing:22.073600pt;}
.wsb44_c00001{word-spacing:22.077120pt;}
.ws68f_c00001{word-spacing:22.080000pt;}
.ws1564_c00001{word-spacing:22.086400pt;}
.ws86b_c00001{word-spacing:22.092800pt;}
.ws27e_c00001{word-spacing:22.099200pt;}
.wsb43_c00001{word-spacing:22.100544pt;}
.wsd9b_c00001{word-spacing:22.112000pt;}
.ws10b7_c00001{word-spacing:22.112256pt;}
.ws1497_c00001{word-spacing:22.118112pt;}
.ws886_c00001{word-spacing:22.118400pt;}
.ws14d5_c00001{word-spacing:22.123968pt;}
.ws11a5_c00001{word-spacing:22.129824pt;}
.ws5ef_c00001{word-spacing:22.156224pt;}
.wsf6c_c00001{word-spacing:22.159104pt;}
.ws1480_c00001{word-spacing:22.220800pt;}
.wsd89_c00001{word-spacing:22.233600pt;}
.ws1481_c00001{word-spacing:22.246400pt;}
.wse21_c00001{word-spacing:22.252800pt;}
.ws13fb_c00001{word-spacing:22.256640pt;}
.ws372_c00001{word-spacing:22.272000pt;}
.ws6a0_c00001{word-spacing:22.278400pt;}
.wsf50_c00001{word-spacing:22.310400pt;}
.wsbc6_c00001{word-spacing:22.323200pt;}
.ws1173_c00001{word-spacing:22.348800pt;}
.wsbc5_c00001{word-spacing:22.368000pt;}
.ws694_c00001{word-spacing:22.374400pt;}
.wsdd5_c00001{word-spacing:22.380800pt;}
.wsdaf_c00001{word-spacing:22.387200pt;}
.wse23_c00001{word-spacing:22.393600pt;}
.ws12af_c00001{word-spacing:22.399200pt;}
.wsf10_c00001{word-spacing:22.400000pt;}
.wsfec_c00001{word-spacing:22.405056pt;}
.wsdb8_c00001{word-spacing:22.406400pt;}
.ws5ed_c00001{word-spacing:22.407392pt;}
.ws12fc_c00001{word-spacing:22.422624pt;}
.wse24_c00001{word-spacing:22.425600pt;}
.ws373_c00001{word-spacing:22.432000pt;}
.wsf94_c00001{word-spacing:22.434336pt;}
.wsdb7_c00001{word-spacing:22.438400pt;}
.wsb73_c00001{word-spacing:22.446048pt;}
.wsad5_c00001{word-spacing:22.451904pt;}
.wsd46_c00001{word-spacing:22.457600pt;}
.wsb33_c00001{word-spacing:22.463616pt;}
.wsf51_c00001{word-spacing:22.476800pt;}
.wscbe_c00001{word-spacing:22.496000pt;}
.ws710_c00001{word-spacing:22.515200pt;}
.wscbd_c00001{word-spacing:22.547200pt;}
.wsa11_c00001{word-spacing:22.553600pt;}
.ws109c_c00001{word-spacing:22.566400pt;}
.wsdd4_c00001{word-spacing:22.579200pt;}
.wsa7d_c00001{word-spacing:22.585600pt;}
.wsb08_c00001{word-spacing:22.592000pt;}
.ws97d_c00001{word-spacing:22.611200pt;}
.ws434_c00001{word-spacing:22.630400pt;}
.wsa7c_c00001{word-spacing:22.643200pt;}
.ws198_c00001{word-spacing:22.649600pt;}
.ws508_c00001{word-spacing:22.656000pt;}
.ws507_c00001{word-spacing:22.668800pt;}
.ws435_c00001{word-spacing:22.681600pt;}
.wsaec_c00001{word-spacing:22.688000pt;}
.ws433_c00001{word-spacing:22.694400pt;}
.wsd9f_c00001{word-spacing:22.700800pt;}
.ws70f_c00001{word-spacing:22.707200pt;}
.wsa10_c00001{word-spacing:22.713600pt;}
.wsdf5_c00001{word-spacing:22.720000pt;}
.ws1248_c00001{word-spacing:22.721280pt;}
.wsd1e_c00001{word-spacing:22.726400pt;}
.ws13da_c00001{word-spacing:22.727680pt;}
.ws70e_c00001{word-spacing:22.732800pt;}
.ws99c_c00001{word-spacing:22.733376pt;}
.wsd1f_c00001{word-spacing:22.752000pt;}
.wsf66_c00001{word-spacing:22.756416pt;}
.ws115b_c00001{word-spacing:22.779840pt;}
.wsfeb_c00001{word-spacing:22.785696pt;}
.ws151c_c00001{word-spacing:22.790400pt;}
.ws14d4_c00001{word-spacing:22.791552pt;}
.ws106c_c00001{word-spacing:22.809120pt;}
.wsdec_c00001{word-spacing:22.822400pt;}
.ws151b_c00001{word-spacing:22.854400pt;}
.wsc35_c00001{word-spacing:22.880000pt;}
.wsca5_c00001{word-spacing:22.892800pt;}
.ws13d9_c00001{word-spacing:22.904320pt;}
.wse47_c00001{word-spacing:22.918400pt;}
.ws4b0_c00001{word-spacing:22.924800pt;}
.wse2c_c00001{word-spacing:22.937600pt;}
.wsca4_c00001{word-spacing:22.944000pt;}
.ws7be_c00001{word-spacing:22.950400pt;}
.ws430_c00001{word-spacing:22.956800pt;}
.wsd1b_c00001{word-spacing:22.963200pt;}
.ws1192_c00001{word-spacing:22.969600pt;}
.ws8a0_c00001{word-spacing:22.982400pt;}
.ws42f_c00001{word-spacing:22.995200pt;}
.ws4af_c00001{word-spacing:23.001600pt;}
.ws612_c00001{word-spacing:23.014400pt;}
.ws6f4_c00001{word-spacing:23.020800pt;}
.wsd1a_c00001{word-spacing:23.027200pt;}
.wse48_c00001{word-spacing:23.033600pt;}
.wse2b_c00001{word-spacing:23.040000pt;}
.ws143d_c00001{word-spacing:23.049216pt;}
.ws150a_c00001{word-spacing:23.055072pt;}
.ws339_c00001{word-spacing:23.084352pt;}
.ws14a4_c00001{word-spacing:23.090208pt;}
.ws33a_c00001{word-spacing:23.096064pt;}
.wsf92_c00001{word-spacing:23.107776pt;}
.wsdfd_c00001{word-spacing:23.148800pt;}
.ws1477_c00001{word-spacing:23.174400pt;}
.ws53a_c00001{word-spacing:23.206400pt;}
.wsdfe_c00001{word-spacing:23.232000pt;}
.ws53b_c00001{word-spacing:23.251200pt;}
.ws11ef_c00001{word-spacing:23.257600pt;}
.ws22e_c00001{word-spacing:23.270400pt;}
.ws901_c00001{word-spacing:23.289600pt;}
.ws5a2_c00001{word-spacing:23.308800pt;}
.wsbae_c00001{word-spacing:23.321600pt;}
.ws723_c00001{word-spacing:23.334400pt;}
.wsff8_c00001{word-spacing:23.336160pt;}
.ws22d_c00001{word-spacing:23.347200pt;}
.ws211_c00001{word-spacing:23.347872pt;}
.ws539_c00001{word-spacing:23.353600pt;}
.ws11e9_c00001{word-spacing:23.365440pt;}
.ws967_c00001{word-spacing:23.366400pt;}
.ws1578_c00001{word-spacing:23.371296pt;}
.wsdd9_c00001{word-spacing:23.372800pt;}
.ws10f0_c00001{word-spacing:23.377152pt;}
.ws1085_c00001{word-spacing:23.383008pt;}
.ws900_c00001{word-spacing:23.385600pt;}
.wsdda_c00001{word-spacing:23.392000pt;}
.wsbbb_c00001{word-spacing:23.394720pt;}
.ws32f_c00001{word-spacing:23.400576pt;}
.wsbba_c00001{word-spacing:23.406432pt;}
.ws11ce_c00001{word-spacing:23.412288pt;}
.ws1157_c00001{word-spacing:23.418144pt;}
.ws146b_c00001{word-spacing:23.424000pt;}
.ws213_c00001{word-spacing:23.429856pt;}
.ws212_c00001{word-spacing:23.453280pt;}
.ws9ff_c00001{word-spacing:23.481600pt;}
.wsc59_c00001{word-spacing:23.488000pt;}
.ws1515_c00001{word-spacing:23.494400pt;}
.ws1516_c00001{word-spacing:23.520000pt;}
.wsc80_c00001{word-spacing:23.526400pt;}
.ws9fe_c00001{word-spacing:23.545600pt;}
.ws13e6_c00001{word-spacing:23.552000pt;}
.ws882_c00001{word-spacing:23.558400pt;}
.wsc81_c00001{word-spacing:23.564800pt;}
.ws121b_c00001{word-spacing:23.571200pt;}
.ws883_c00001{word-spacing:23.577600pt;}
.ws887_c00001{word-spacing:23.590400pt;}
.ws8d4_c00001{word-spacing:23.609600pt;}
.ws888_c00001{word-spacing:23.622400pt;}
.ws8d5_c00001{word-spacing:23.628800pt;}
.ws10cb_c00001{word-spacing:23.635200pt;}
.ws800_c00001{word-spacing:23.648000pt;}
.ws62f_c00001{word-spacing:23.654400pt;}
.ws13b9_c00001{word-spacing:23.669760pt;}
.ws630_c00001{word-spacing:23.673600pt;}
.wsed7_c00001{word-spacing:23.680000pt;}
.wsd97_c00001{word-spacing:23.686400pt;}
.ws802_c00001{word-spacing:23.692800pt;}
.ws154f_c00001{word-spacing:23.693376pt;}
.ws122f_c00001{word-spacing:23.705088pt;}
.wsd96_c00001{word-spacing:23.712000pt;}
.ws801_c00001{word-spacing:23.718400pt;}
.ws10cc_c00001{word-spacing:23.737600pt;}
.wsd95_c00001{word-spacing:23.750400pt;}
.ws13b8_c00001{word-spacing:23.787520pt;}
.ws4a2_c00001{word-spacing:23.808000pt;}
.wsc13_c00001{word-spacing:23.840000pt;}
.wsc12_c00001{word-spacing:23.865600pt;}
.ws4a3_c00001{word-spacing:23.878400pt;}
.ws969_c00001{word-spacing:23.916800pt;}
.ws6c8_c00001{word-spacing:23.929600pt;}
.wsebb_c00001{word-spacing:23.936000pt;}
.wsa3b_c00001{word-spacing:23.955200pt;}
.wsc90_c00001{word-spacing:23.961600pt;}
.ws14b6_c00001{word-spacing:23.968000pt;}
.wsd5a_c00001{word-spacing:23.974400pt;}
.ws8fd_c00001{word-spacing:23.980800pt;}
.ws968_c00001{word-spacing:23.987200pt;}
.wsc0e_c00001{word-spacing:24.000000pt;}
.wsc0d_c00001{word-spacing:24.012800pt;}
.ws148b_c00001{word-spacing:24.015456pt;}
.ws8fe_c00001{word-spacing:24.019200pt;}
.ws1550_c00001{word-spacing:24.033024pt;}
.wsfd7_c00001{word-spacing:24.074016pt;}
.wsb6b_c00001{word-spacing:24.079872pt;}
.wsd59_c00001{word-spacing:24.160000pt;}
.ws1403_c00001{word-spacing:24.169600pt;}
.ws737_c00001{word-spacing:24.192000pt;}
.ws469_c00001{word-spacing:24.204800pt;}
.ws14b7_c00001{word-spacing:24.230400pt;}
.ws2e1_c00001{word-spacing:24.236800pt;}
.wsd32_c00001{word-spacing:24.243200pt;}
.ws46a_c00001{word-spacing:24.249600pt;}
.ws488_c00001{word-spacing:24.262400pt;}
.ws46b_c00001{word-spacing:24.275200pt;}
.wsc6f_c00001{word-spacing:24.288000pt;}
.ws487_c00001{word-spacing:24.294400pt;}
.ws84_c00001{word-spacing:24.300800pt;}
.ws13d1_c00001{word-spacing:24.317440pt;}
.ws141b_c00001{word-spacing:24.320000pt;}
.ws11fb_c00001{word-spacing:24.325824pt;}
.ws14c8_c00001{word-spacing:24.326400pt;}
.ws85_c00001{word-spacing:24.352000pt;}
.ws1050_c00001{word-spacing:24.372672pt;}
.ws105c_c00001{word-spacing:24.378528pt;}
.ws1402_c00001{word-spacing:24.382080pt;}
.ws1c9_c00001{word-spacing:24.390400pt;}
.wsd0b_c00001{word-spacing:24.396800pt;}
.ws14dc_c00001{word-spacing:24.413664pt;}
.wsd75_c00001{word-spacing:24.505600pt;}
.ws4de_c00001{word-spacing:24.531200pt;}
.wsc9a_c00001{word-spacing:24.563200pt;}
.wsf30_c00001{word-spacing:24.576000pt;}
.wse69_c00001{word-spacing:24.595200pt;}
.wsaae_c00001{word-spacing:24.620800pt;}
.ws1ca_c00001{word-spacing:24.627200pt;}
.wsaad_c00001{word-spacing:24.640000pt;}
.wsd74_c00001{word-spacing:24.646400pt;}
.ws4e0_c00001{word-spacing:24.652800pt;}
.ws1381_c00001{word-spacing:24.653760pt;}
.wsc9b_c00001{word-spacing:24.665600pt;}
.ws103b_c00001{word-spacing:24.677184pt;}
.ws4df_c00001{word-spacing:24.678400pt;}
.ws1015_c00001{word-spacing:24.688896pt;}
.ws84c_c00001{word-spacing:24.706464pt;}
.ws1429_c00001{word-spacing:24.748800pt;}
.wsc5f_c00001{word-spacing:24.768000pt;}
.wsd73_c00001{word-spacing:24.787200pt;}
.ws1509_c00001{word-spacing:24.819200pt;}
.wsc60_c00001{word-spacing:24.838400pt;}
.wsd51_c00001{word-spacing:24.857600pt;}
.ws121e_c00001{word-spacing:24.876800pt;}
.wsc44_c00001{word-spacing:24.889600pt;}
.wsc5e_c00001{word-spacing:24.896000pt;}
.wscbf_c00001{word-spacing:24.902400pt;}
.ws4d0_c00001{word-spacing:24.908800pt;}
.ws80f_c00001{word-spacing:24.921600pt;}
.wsb95_c00001{word-spacing:24.928000pt;}
.ws9c8_c00001{word-spacing:24.934400pt;}
.wsd6e_c00001{word-spacing:24.940800pt;}
.ws9c7_c00001{word-spacing:24.947200pt;}
.ws1346_c00001{word-spacing:24.952416pt;}
.ws80e_c00001{word-spacing:24.953600pt;}
.ws4d1_c00001{word-spacing:24.960000pt;}
.ws113d_c00001{word-spacing:24.964128pt;}
.ws13e5_c00001{word-spacing:24.965120pt;}
.wscc0_c00001{word-spacing:24.979200pt;}
.wsd52_c00001{word-spacing:24.985600pt;}
.ws113c_c00001{word-spacing:24.987552pt;}
.wsb32_c00001{word-spacing:24.999264pt;}
.ws9c9_c00001{word-spacing:25.004800pt;}
.ws144e_c00001{word-spacing:25.016832pt;}
.wse7d_c00001{word-spacing:25.107200pt;}
.wsa88_c00001{word-spacing:25.113600pt;}
.ws1452_c00001{word-spacing:25.120000pt;}
.wsa89_c00001{word-spacing:25.139200pt;}
.wsa87_c00001{word-spacing:25.152000pt;}
.wsc4a_c00001{word-spacing:25.171200pt;}
.wsa86_c00001{word-spacing:25.184000pt;}
.ws7fb_c00001{word-spacing:25.203200pt;}
.ws13c4_c00001{word-spacing:25.216000pt;}
.ws7fc_c00001{word-spacing:25.222400pt;}
.ws5d2_c00001{word-spacing:25.228800pt;}
.wsc49_c00001{word-spacing:25.235200pt;}
.ws1451_c00001{word-spacing:25.241600pt;}
.ws251_c00001{word-spacing:25.248000pt;}
.wscee_c00001{word-spacing:25.267200pt;}
.wsc69_c00001{word-spacing:25.273600pt;}
.wsd8b_c00001{word-spacing:25.280000pt;}
.wse7c_c00001{word-spacing:25.292800pt;}
.ws128a_c00001{word-spacing:25.321344pt;}
.ws1289_c00001{word-spacing:25.327200pt;}
.wsf78_c00001{word-spacing:25.333056pt;}
.wsaa_c00001{word-spacing:25.338912pt;}
.wsa9_c00001{word-spacing:25.350624pt;}
.ws129d_c00001{word-spacing:25.374048pt;}
.wsd8a_c00001{word-spacing:25.420800pt;}
.ws916_c00001{word-spacing:25.459200pt;}
.wsc2e_c00001{word-spacing:25.472000pt;}
.ws860_c00001{word-spacing:25.478400pt;}
.wsdca_c00001{word-spacing:25.484800pt;}
.ws13c9_c00001{word-spacing:25.495040pt;}
.ws1194_c00001{word-spacing:25.510400pt;}
.ws1193_c00001{word-spacing:25.542400pt;}
.ws6e2_c00001{word-spacing:25.548800pt;}
.wse1d_c00001{word-spacing:25.555200pt;}
.ws85f_c00001{word-spacing:25.561600pt;}
.wsdbf_c00001{word-spacing:25.574400pt;}
.wsd4d_c00001{word-spacing:25.580800pt;}
.wsa63_c00001{word-spacing:25.593600pt;}
.ws58d_c00001{word-spacing:25.600000pt;}
.ws1125_c00001{word-spacing:25.602432pt;}
.wsdc0_c00001{word-spacing:25.606400pt;}
.ws148e_c00001{word-spacing:25.608288pt;}
.wsc2f_c00001{word-spacing:25.612800pt;}
.ws127b_c00001{word-spacing:25.619200pt;}
.ws11cc_c00001{word-spacing:25.620000pt;}
.ws58c_c00001{word-spacing:25.632000pt;}
.ws11cd_c00001{word-spacing:25.637568pt;}
.wsbfe_c00001{word-spacing:25.643424pt;}
.ws8f8_c00001{word-spacing:25.655136pt;}
.wsdc9_c00001{word-spacing:25.657600pt;}
.ws12e2_c00001{word-spacing:25.660992pt;}
.ws12e3_c00001{word-spacing:25.666848pt;}
.ws11cb_c00001{word-spacing:25.684416pt;}
.ws821_c00001{word-spacing:25.753600pt;}
.ws512_c00001{word-spacing:25.772800pt;}
.ws8ae_c00001{word-spacing:25.798400pt;}
.wsba8_c00001{word-spacing:25.811200pt;}
.wsaac_c00001{word-spacing:25.843200pt;}
.wsba7_c00001{word-spacing:25.856000pt;}
.ws6e1_c00001{word-spacing:25.875200pt;}
.ws1a1_c00001{word-spacing:25.881600pt;}
.ws822_c00001{word-spacing:25.888000pt;}
.wsb82_c00001{word-spacing:25.894400pt;}
.ws670_c00001{word-spacing:25.900800pt;}
.wsb81_c00001{word-spacing:25.913600pt;}
.wsf75_c00001{word-spacing:25.924512pt;}
.ws511_c00001{word-spacing:25.926400pt;}
.ws513_c00001{word-spacing:25.932800pt;}
.ws1310_c00001{word-spacing:25.936224pt;}
.wscae_c00001{word-spacing:25.939200pt;}
.ws1190_c00001{word-spacing:25.942080pt;}
.ws873_c00001{word-spacing:25.945120pt;}
.ws8d7_c00001{word-spacing:25.952000pt;}
.ws113e_c00001{word-spacing:25.953792pt;}
.ws8af_c00001{word-spacing:25.964800pt;}
.ws43f_c00001{word-spacing:25.971360pt;}
.wsb2d_c00001{word-spacing:25.977216pt;}
.ws10e2_c00001{word-spacing:26.018208pt;}
.ws23_c00001{word-spacing:26.080000pt;}
.ws836_c00001{word-spacing:26.112000pt;}
.wscd6_c00001{word-spacing:26.118400pt;}
.ws949_c00001{word-spacing:26.124800pt;}
.wsba6_c00001{word-spacing:26.131200pt;}
.ws24_c00001{word-spacing:26.137600pt;}
.ws13e7_c00001{word-spacing:26.142720pt;}
.wscad_c00001{word-spacing:26.144000pt;}
.wsccc_c00001{word-spacing:26.150400pt;}
.ws720_c00001{word-spacing:26.156800pt;}
.ws14d_c00001{word-spacing:26.163200pt;}
.wsd63_c00001{word-spacing:26.169600pt;}
.wsbb0_c00001{word-spacing:26.176000pt;}
.ws1470_c00001{word-spacing:26.188800pt;}
.ws693_c00001{word-spacing:26.195200pt;}
.ws692_c00001{word-spacing:26.201600pt;}
.ws335_c00001{word-spacing:26.208000pt;}
.ws1238_c00001{word-spacing:26.211456pt;}
.wse7f_c00001{word-spacing:26.214400pt;}
.ws406_c00001{word-spacing:26.220800pt;}
.wsccb_c00001{word-spacing:26.227200pt;}
.ws14e_c00001{word-spacing:26.233600pt;}
.wsa54_c00001{word-spacing:26.240000pt;}
.wsa52_c00001{word-spacing:26.246400pt;}
.ws104a_c00001{word-spacing:26.246592pt;}
.wsccd_c00001{word-spacing:26.252800pt;}
.ws137f_c00001{word-spacing:26.258304pt;}
.ws837_c00001{word-spacing:26.259200pt;}
.ws1237_c00001{word-spacing:26.264160pt;}
.wsa53_c00001{word-spacing:26.265600pt;}
.ws94a_c00001{word-spacing:26.272000pt;}
.ws10be_c00001{word-spacing:26.275872pt;}
.ws4a9_c00001{word-spacing:26.278400pt;}
.ws4aa_c00001{word-spacing:26.291200pt;}
.ws11d9_c00001{word-spacing:26.293440pt;}
.ws1236_c00001{word-spacing:26.299296pt;}
.ws5e_c00001{word-spacing:26.316800pt;}
.ws12f4_c00001{word-spacing:26.322720pt;}
.ws96b_c00001{word-spacing:26.406400pt;}
.ws2c4_c00001{word-spacing:26.412800pt;}
.ws57c_c00001{word-spacing:26.432000pt;}
.wsff7_c00001{word-spacing:26.470400pt;}
.ws13d7_c00001{word-spacing:26.496000pt;}
.wsff6_c00001{word-spacing:26.502400pt;}
.ws2c3_c00001{word-spacing:26.515200pt;}
.ws96a_c00001{word-spacing:26.521600pt;}
.ws1518_c00001{word-spacing:26.528000pt;}
.wsb13_c00001{word-spacing:26.534400pt;}
.wsd61_c00001{word-spacing:26.540800pt;}
.wsd15_c00001{word-spacing:26.547200pt;}
.wsd62_c00001{word-spacing:26.553600pt;}
.ws5f_c00001{word-spacing:26.560000pt;}
.ws10aa_c00001{word-spacing:26.562816pt;}
.ws57d_c00001{word-spacing:26.566400pt;}
.ws8f9_c00001{word-spacing:26.568672pt;}
.ws110b_c00001{word-spacing:26.574528pt;}
.ws1357_c00001{word-spacing:26.580384pt;}
.wsff3_c00001{word-spacing:26.586240pt;}
.ws1024_c00001{word-spacing:26.592096pt;}
.ws1436_c00001{word-spacing:26.602432pt;}
.wsb14_c00001{word-spacing:26.604800pt;}
.wsd14_c00001{word-spacing:26.630400pt;}
.wse8a_c00001{word-spacing:26.649600pt;}
.wsdd3_c00001{word-spacing:26.732800pt;}
.wse15_c00001{word-spacing:26.739200pt;}
.ws164_c00001{word-spacing:26.764800pt;}
.ws70d_c00001{word-spacing:26.784000pt;}
.wse14_c00001{word-spacing:26.790400pt;}
.ws6f3_c00001{word-spacing:26.796800pt;}
.ws2c7_c00001{word-spacing:26.822400pt;}
.ws484_c00001{word-spacing:26.828800pt;}
.wsd3c_c00001{word-spacing:26.835200pt;}
.ws163_c00001{word-spacing:26.848000pt;}
.ws70c_c00001{word-spacing:26.860800pt;}
.ws485_c00001{word-spacing:26.867200pt;}
.wsdf8_c00001{word-spacing:26.873600pt;}
.wsdd2_c00001{word-spacing:26.880000pt;}
.ws70b_c00001{word-spacing:26.886400pt;}
.wsa1_c00001{word-spacing:26.892800pt;}
.ws1492_c00001{word-spacing:26.896608pt;}
.ws146f_c00001{word-spacing:26.908320pt;}
.wsd3b_c00001{word-spacing:26.931200pt;}
.wsfab_c00001{word-spacing:26.931744pt;}
.ws14d6_c00001{word-spacing:26.943456pt;}
.wsa2_c00001{word-spacing:26.950400pt;}
.ws150e_c00001{word-spacing:27.072000pt;}
.wse5c_c00001{word-spacing:27.078400pt;}
.wsc7f_c00001{word-spacing:27.091200pt;}
.ws9f8_c00001{word-spacing:27.104000pt;}
.ws121f_c00001{word-spacing:27.148800pt;}
.ws9f9_c00001{word-spacing:27.161600pt;}
.ws510_c00001{word-spacing:27.180800pt;}
.wsa62_c00001{word-spacing:27.200000pt;}
.wsc7e_c00001{word-spacing:27.206400pt;}
.ws12dc_c00001{word-spacing:27.236256pt;}
.wsdc6_c00001{word-spacing:27.238400pt;}
.ws1391_c00001{word-spacing:27.242112pt;}
.ws12db_c00001{word-spacing:27.247968pt;}
.wsb0b_c00001{word-spacing:27.379200pt;}
.ws839_c00001{word-spacing:27.385600pt;}
.wsce0_c00001{word-spacing:27.417600pt;}
.ws1b8_c00001{word-spacing:27.436800pt;}
.ws13f1_c00001{word-spacing:27.438080pt;}
.wse04_c00001{word-spacing:27.443200pt;}
.wsc66_c00001{word-spacing:27.456000pt;}
.ws4b5_c00001{word-spacing:27.488000pt;}
.ws1311_c00001{word-spacing:27.488064pt;}
.wsce1_c00001{word-spacing:27.500800pt;}
.ws1b7_c00001{word-spacing:27.513600pt;}
.ws14db_c00001{word-spacing:27.517344pt;}
.wscdf_c00001{word-spacing:27.520000pt;}
.ws127c_c00001{word-spacing:27.523200pt;}
.ws132e_c00001{word-spacing:27.529056pt;}
.wsb0c_c00001{word-spacing:27.539200pt;}
.ws127d_c00001{word-spacing:27.546624pt;}
.ws1460_c00001{word-spacing:27.575904pt;}
.wsf53_c00001{word-spacing:27.577600pt;}
.ws14e3_c00001{word-spacing:27.581760pt;}
.ws123a_c00001{word-spacing:27.587616pt;}
.ws1103_c00001{word-spacing:27.593472pt;}
.ws127e_c00001{word-spacing:27.611040pt;}
.wse03_c00001{word-spacing:27.622400pt;}
.wsd84_c00001{word-spacing:27.628800pt;}
.wsb9e_c00001{word-spacing:27.718400pt;}
.ws30a_c00001{word-spacing:27.731200pt;}
.ws6ce_c00001{word-spacing:27.744000pt;}
.wsa12_c00001{word-spacing:27.756800pt;}
.wsd78_c00001{word-spacing:27.769600pt;}
.ws13b0_c00001{word-spacing:27.776000pt;}
.ws4ff_c00001{word-spacing:27.782400pt;}
.wse5e_c00001{word-spacing:27.795200pt;}
.wsa13_c00001{word-spacing:27.801600pt;}
.wse5d_c00001{word-spacing:27.808000pt;}
.wsd83_c00001{word-spacing:27.827200pt;}
.ws728_c00001{word-spacing:27.833600pt;}
.wsb9f_c00001{word-spacing:27.840000pt;}
.ws1462_c00001{word-spacing:27.845280pt;}
.ws727_c00001{word-spacing:27.846400pt;}
.ws1369_c00001{word-spacing:27.856992pt;}
.wsd77_c00001{word-spacing:27.859200pt;}
.ws137e_c00001{word-spacing:27.874560pt;}
.wsfb4_c00001{word-spacing:27.880416pt;}
.wsd85_c00001{word-spacing:27.884800pt;}
.ws147f_c00001{word-spacing:27.892128pt;}
.wsce6_c00001{word-spacing:28.025600pt;}
.ws2ed_c00001{word-spacing:28.064000pt;}
.wsd50_c00001{word-spacing:28.070400pt;}
.wsc0a_c00001{word-spacing:28.076800pt;}
.ws1476_c00001{word-spacing:28.085664pt;}
.ws7a8_c00001{word-spacing:28.089600pt;}
.ws2ee_c00001{word-spacing:28.115200pt;}
.ws12c5_c00001{word-spacing:28.126368pt;}
.ws232_c00001{word-spacing:28.138080pt;}
.wsee9_c00001{word-spacing:28.144640pt;}
.wsc0b_c00001{word-spacing:28.147200pt;}
.wsd4f_c00001{word-spacing:28.153600pt;}
.ws1549_c00001{word-spacing:28.155648pt;}
.wsf21_c00001{word-spacing:28.160000pt;}
.ws1278_c00001{word-spacing:28.173216pt;}
.wsf9d_c00001{word-spacing:28.179072pt;}
.wsce7_c00001{word-spacing:28.179200pt;}
.ws231_c00001{word-spacing:28.190784pt;}
.ws110d_c00001{word-spacing:28.196640pt;}
.wse1c_c00001{word-spacing:28.198400pt;}
.ws1577_c00001{word-spacing:28.202496pt;}
.wsad6_c00001{word-spacing:28.208352pt;}
.ws155a_c00001{word-spacing:28.214208pt;}
.ws1251_c00001{word-spacing:28.220064pt;}
.ws1274_c00001{word-spacing:28.237632pt;}
.wse0b_c00001{word-spacing:28.249600pt;}
.ws7bc_c00001{word-spacing:28.358400pt;}
.ws7bd_c00001{word-spacing:28.409600pt;}
.wsbd7_c00001{word-spacing:28.416000pt;}
.wsb9c_c00001{word-spacing:28.435200pt;}
.wsb9b_c00001{word-spacing:28.454400pt;}
.wscc9_c00001{word-spacing:28.460800pt;}
.ws109d_c00001{word-spacing:28.467200pt;}
.wscc8_c00001{word-spacing:28.473600pt;}
.ws1008_c00001{word-spacing:28.483584pt;}
.ws12cd_c00001{word-spacing:28.489440pt;}
.ws1136_c00001{word-spacing:28.495296pt;}
.wseea_c00001{word-spacing:28.497920pt;}
.ws122d_c00001{word-spacing:28.501152pt;}
.wse0a_c00001{word-spacing:28.505600pt;}
.ws1387_c00001{word-spacing:28.512864pt;}
.ws10fb_c00001{word-spacing:28.518720pt;}
.wsb64_c00001{word-spacing:28.530432pt;}
.ws12cc_c00001{word-spacing:28.536288pt;}
.ws144c_c00001{word-spacing:28.553856pt;}
.ws11e2_c00001{word-spacing:28.559712pt;}
.ws113f_c00001{word-spacing:28.577280pt;}
.wsdb3_c00001{word-spacing:28.640000pt;}
.wse0c_c00001{word-spacing:28.646400pt;}
.wsa5d_c00001{word-spacing:28.684800pt;}
.wsda0_c00001{word-spacing:28.710400pt;}
.ws483_c00001{word-spacing:28.723200pt;}
.wsa5c_c00001{word-spacing:28.755200pt;}
.wsd66_c00001{word-spacing:28.768000pt;}
.wscb4_c00001{word-spacing:28.774400pt;}
.ws6b_c00001{word-spacing:28.780800pt;}
.ws3d2_c00001{word-spacing:28.787200pt;}
.ws6a_c00001{word-spacing:28.793600pt;}
.wsda1_c00001{word-spacing:28.800000pt;}
.ws1367_c00001{word-spacing:28.811520pt;}
.ws1211_c00001{word-spacing:28.829088pt;}
.ws10f1_c00001{word-spacing:28.852512pt;}
.ws11d6_c00001{word-spacing:28.858368pt;}
.ws11a4_c00001{word-spacing:28.875936pt;}
.wsb7b_c00001{word-spacing:29.017600pt;}
.wsf22_c00001{word-spacing:29.056000pt;}
.wsb7a_c00001{word-spacing:29.100800pt;}
.ws12de_c00001{word-spacing:29.121888pt;}
.ws1109_c00001{word-spacing:29.127744pt;}
.wsb21_c00001{word-spacing:29.132800pt;}
.ws12dd_c00001{word-spacing:29.139456pt;}
.wsb22_c00001{word-spacing:29.158400pt;}
.ws1126_c00001{word-spacing:29.186304pt;}
.wsaf3_c00001{word-spacing:29.241600pt;}
.wsaf4_c00001{word-spacing:29.299200pt;}
.wsab6_c00001{word-spacing:29.337600pt;}
.wsdaa_c00001{word-spacing:29.350400pt;}
.wsaf2_c00001{word-spacing:29.363200pt;}
.ws12df_c00001{word-spacing:29.367840pt;}
.ws11ac_c00001{word-spacing:29.408000pt;}
.ws863_c00001{word-spacing:29.433600pt;}
.wscb9_c00001{word-spacing:29.440000pt;}
.ws1013_c00001{word-spacing:29.449824pt;}
.wsdab_c00001{word-spacing:29.465600pt;}
.ws443_c00001{word-spacing:29.473248pt;}
.wsd82_c00001{word-spacing:29.478400pt;}
.ws132d_c00001{word-spacing:29.484960pt;}
.ws1159_c00001{word-spacing:29.496672pt;}
.ws1328_c00001{word-spacing:29.525952pt;}
.wse4a_c00001{word-spacing:29.600000pt;}
.ws878_c00001{word-spacing:29.648512pt;}
.ws54_c00001{word-spacing:29.689600pt;}
.ws1a7_c00001{word-spacing:29.715200pt;}
.ws8b8_c00001{word-spacing:29.721600pt;}
.wse49_c00001{word-spacing:29.740800pt;}
.wsdf9_c00001{word-spacing:29.760000pt;}
.ws1a8_c00001{word-spacing:29.766400pt;}
.ws119d_c00001{word-spacing:29.771904pt;}
.wsdfa_c00001{word-spacing:29.779200pt;}
.ws135e_c00001{word-spacing:29.783616pt;}
.ws55_c00001{word-spacing:29.785600pt;}
.ws495_c00001{word-spacing:29.798400pt;}
.wsbbe_c00001{word-spacing:29.801184pt;}
.ws115c_c00001{word-spacing:29.807040pt;}
.wsc3e_c00001{word-spacing:29.868800pt;}
.wsb48_c00001{word-spacing:29.913600pt;}
.wsc52_c00001{word-spacing:29.945600pt;}
.wsb49_c00001{word-spacing:29.971200pt;}
.wsc97_c00001{word-spacing:29.996800pt;}
.wsc3f_c00001{word-spacing:30.009600pt;}
.wsd79_c00001{word-spacing:30.035200pt;}
.wsced_c00001{word-spacing:30.041600pt;}
.ws29e_c00001{word-spacing:30.048000pt;}
.ws118d_c00001{word-spacing:30.070560pt;}
.ws29d_c00001{word-spacing:30.073600pt;}
.wsc51_c00001{word-spacing:30.080000pt;}
.ws149e_c00001{word-spacing:30.088128pt;}
.ws534_c00001{word-spacing:30.092800pt;}
.ws10e6_c00001{word-spacing:30.093984pt;}
.ws1198_c00001{word-spacing:30.105696pt;}
.ws12ad_c00001{word-spacing:30.111552pt;}
.ws12ae_c00001{word-spacing:30.117408pt;}
.wscec_c00001{word-spacing:30.137600pt;}
.wse8d_c00001{word-spacing:30.150400pt;}
.ws835_c00001{word-spacing:30.201600pt;}
.wse30_c00001{word-spacing:30.259200pt;}
.wse2e_c00001{word-spacing:30.284800pt;}
.wsca0_c00001{word-spacing:30.304000pt;}
.ws81c_c00001{word-spacing:30.329600pt;}
.ws834_c00001{word-spacing:30.361600pt;}
.ws227_c00001{word-spacing:30.374400pt;}
.wse2f_c00001{word-spacing:30.380800pt;}
.ws228_c00001{word-spacing:30.387200pt;}
.wsca1_c00001{word-spacing:30.393600pt;}
.ws129c_c00001{word-spacing:30.416064pt;}
.ws13bd_c00001{word-spacing:30.440960pt;}
.ws130d_c00001{word-spacing:30.451200pt;}
.ws14e7_c00001{word-spacing:30.457056pt;}
.ws453_c00001{word-spacing:30.476800pt;}
.ws1563_c00001{word-spacing:30.483200pt;}
.ws1562_c00001{word-spacing:30.534400pt;}
.ws452_c00001{word-spacing:30.598400pt;}
.wsf83_c00001{word-spacing:30.611200pt;}
.wsdd0_c00001{word-spacing:30.675200pt;}
.ws352_c00001{word-spacing:30.697152pt;}
.wsdd1_c00001{word-spacing:30.707200pt;}
.wsf49_c00001{word-spacing:30.720000pt;}
.ws353_c00001{word-spacing:30.726432pt;}
.ws13bc_c00001{word-spacing:30.735360pt;}
.ws117c_c00001{word-spacing:30.738144pt;}
.wsf93_c00001{word-spacing:30.744000pt;}
.wsf4a_c00001{word-spacing:30.745600pt;}
.ws11f1_c00001{word-spacing:30.749856pt;}
.ws351_c00001{word-spacing:30.755712pt;}
.ws1547_c00001{word-spacing:30.761568pt;}
.wsf86_c00001{word-spacing:30.803200pt;}
.wscfe_c00001{word-spacing:30.950400pt;}
.wscff_c00001{word-spacing:30.969600pt;}
.wsed9_c00001{word-spacing:30.976000pt;}
.ws2ae_c00001{word-spacing:30.982400pt;}
.wsf87_c00001{word-spacing:31.008000pt;}
.wsf85_c00001{word-spacing:31.027200pt;}
.ws107c_c00001{word-spacing:31.048512pt;}
.ws1576_c00001{word-spacing:31.060224pt;}
.ws103c_c00001{word-spacing:31.066080pt;}
.ws237_c00001{word-spacing:31.071936pt;}
.ws1208_c00001{word-spacing:31.077792pt;}
.ws10d4_c00001{word-spacing:31.089504pt;}
.ws12b2_c00001{word-spacing:31.095360pt;}
.ws13d4_c00001{word-spacing:31.104000pt;}
.ws14b0_c00001{word-spacing:31.112928pt;}
.ws5ee_c00001{word-spacing:31.203616pt;}
.wsa6f_c00001{word-spacing:31.283200pt;}
.ws63c_c00001{word-spacing:31.296000pt;}
.ws868_c00001{word-spacing:31.328000pt;}
.ws63b_c00001{word-spacing:31.347200pt;}
.ws139f_c00001{word-spacing:31.360000pt;}
.wsa70_c00001{word-spacing:31.372800pt;}
.ws1554_c00001{word-spacing:31.382304pt;}
.ws1439_c00001{word-spacing:31.385312pt;}
.ws1254_c00001{word-spacing:31.394016pt;}
.ws1288_c00001{word-spacing:31.423296pt;}
.ws5b1_c00001{word-spacing:31.436800pt;}
.ws1078_c00001{word-spacing:31.440864pt;}
.ws5b3_c00001{word-spacing:31.449600pt;}
.ws153e_c00001{word-spacing:31.488000pt;}
.wsc8e_c00001{word-spacing:31.545600pt;}
.ws14c9_c00001{word-spacing:31.577600pt;}
.wsf89_c00001{word-spacing:31.584000pt;}
.wsc9c_c00001{word-spacing:31.641600pt;}
.wsab8_c00001{word-spacing:31.648000pt;}
.wsab9_c00001{word-spacing:31.660800pt;}
.ws5b2_c00001{word-spacing:31.667200pt;}
.ws110a_c00001{word-spacing:31.704384pt;}
.wsf8c_c00001{word-spacing:31.763200pt;}
.wsaca_c00001{word-spacing:31.820800pt;}
.ws13ec_c00001{word-spacing:31.912960pt;}
.wsb35_c00001{word-spacing:31.923200pt;}
.wsb12_c00001{word-spacing:31.961600pt;}
.ws40d_c00001{word-spacing:31.968000pt;}
.wsb36_c00001{word-spacing:31.974400pt;}
.wsb11_c00001{word-spacing:31.980800pt;}
.ws1079_c00001{word-spacing:31.985472pt;}
.wsf8b_c00001{word-spacing:31.987200pt;}
.wsac9_c00001{word-spacing:32.000000pt;}
.ws40e_c00001{word-spacing:32.006400pt;}
.wsf7d_c00001{word-spacing:32.014752pt;}
.ws1339_c00001{word-spacing:32.020608pt;}
.ws107a_c00001{word-spacing:32.026464pt;}
.ws11a0_c00001{word-spacing:32.032320pt;}
.ws14e9_c00001{word-spacing:32.044032pt;}
.ws1330_c00001{word-spacing:32.049888pt;}
.ws13d5_c00001{word-spacing:32.128000pt;}
.wsdb5_c00001{word-spacing:32.134400pt;}
.wsdb6_c00001{word-spacing:32.160000pt;}
.wsc73_c00001{word-spacing:32.198400pt;}
.wsa35_c00001{word-spacing:32.236800pt;}
.wsa37_c00001{word-spacing:32.300800pt;}
.wsc71_c00001{word-spacing:32.320000pt;}
.wsdb4_c00001{word-spacing:32.326400pt;}
.ws1234_c00001{word-spacing:32.330976pt;}
.ws1296_c00001{word-spacing:32.360256pt;}
.wsc72_c00001{word-spacing:32.364800pt;}
.wsa36_c00001{word-spacing:32.467200pt;}
.ws1259_c00001{word-spacing:32.486400pt;}
.ws1355_c00001{word-spacing:32.544000pt;}
.wsc96_c00001{word-spacing:32.556800pt;}
.wscdb_c00001{word-spacing:32.569600pt;}
.ws88a_c00001{word-spacing:32.582400pt;}
.ws1354_c00001{word-spacing:32.595200pt;}
.wsd90_c00001{word-spacing:32.614400pt;}
.ws13bf_c00001{word-spacing:32.619520pt;}
.ws1258_c00001{word-spacing:32.620800pt;}
.wsd08_c00001{word-spacing:32.627200pt;}
.ws11f6_c00001{word-spacing:32.629632pt;}
.ws7c7_c00001{word-spacing:32.633600pt;}
.wsd91_c00001{word-spacing:32.640000pt;}
.ws889_c00001{word-spacing:32.659200pt;}
.wscda_c00001{word-spacing:32.832000pt;}
.wsc20_c00001{word-spacing:32.876800pt;}
.wsc21_c00001{word-spacing:32.889600pt;}
.wsb87_c00001{word-spacing:32.896000pt;}
.wsbda_c00001{word-spacing:32.915200pt;}
.wsd20_c00001{word-spacing:32.921600pt;}
.wsa8d_c00001{word-spacing:32.963424pt;}
.wse86_c00001{word-spacing:32.966400pt;}
.wsb88_c00001{word-spacing:32.979200pt;}
.ws104e_c00001{word-spacing:32.980992pt;}
.wsb68_c00001{word-spacing:32.986848pt;}
.wse85_c00001{word-spacing:32.998400pt;}
.wsb69_c00001{word-spacing:32.998560pt;}
.ws1140_c00001{word-spacing:33.004416pt;}
.wsda7_c00001{word-spacing:33.024000pt;}
.ws4d4_c00001{word-spacing:33.107200pt;}
.ws13ea_c00001{word-spacing:33.149440pt;}
.ws4d5_c00001{word-spacing:33.158400pt;}
.ws11c6_c00001{word-spacing:33.262080pt;}
.ws1467_c00001{word-spacing:33.285504pt;}
.ws14d1_c00001{word-spacing:33.291360pt;}
.ws12ab_c00001{word-spacing:33.297216pt;}
.ws12f0_c00001{word-spacing:33.308928pt;}
.ws1304_c00001{word-spacing:33.314784pt;}
.ws12e8_c00001{word-spacing:33.326496pt;}
.ws12ac_c00001{word-spacing:33.338208pt;}
.ws11c5_c00001{word-spacing:33.396768pt;}
.wsc55_c00001{word-spacing:33.497600pt;}
.ws721_c00001{word-spacing:33.536000pt;}
.wsd3d_c00001{word-spacing:33.542400pt;}
.ws14ef_c00001{word-spacing:33.548800pt;}
.wscd9_c00001{word-spacing:33.555200pt;}
.wsd8f_c00001{word-spacing:33.568000pt;}
.wscd7_c00001{word-spacing:33.574400pt;}
.wscd8_c00001{word-spacing:33.593600pt;}
.ws9d0_c00001{word-spacing:33.606400pt;}
.ws722_c00001{word-spacing:33.625600pt;}
.ws12fd_c00001{word-spacing:33.636864pt;}
.ws1533_c00001{word-spacing:33.648576pt;}
.ws1164_c00001{word-spacing:33.654432pt;}
.ws34a_c00001{word-spacing:33.666144pt;}
.ws34c_c00001{word-spacing:33.672000pt;}
.ws34b_c00001{word-spacing:33.683712pt;}
.ws810_c00001{word-spacing:33.785600pt;}
.wsc8a_c00001{word-spacing:33.792000pt;}
.ws13eb_c00001{word-spacing:33.797120pt;}
.ws1540_c00001{word-spacing:33.830400pt;}
.ws1054_c00001{word-spacing:33.843200pt;}
.ws1056_c00001{word-spacing:33.875200pt;}
.ws1055_c00001{word-spacing:33.900800pt;}
.ws266_c00001{word-spacing:33.913600pt;}
.wsc8b_c00001{word-spacing:33.932800pt;}
.ws811_c00001{word-spacing:33.945600pt;}
.ws10ac_c00001{word-spacing:33.964800pt;}
.ws12eb_c00001{word-spacing:33.988224pt;}
.wsd88_c00001{word-spacing:34.233600pt;}
.ws124e_c00001{word-spacing:34.245888pt;}
.wsd87_c00001{word-spacing:34.265600pt;}
.wsfe5_c00001{word-spacing:34.304448pt;}
.ws80a_c00001{word-spacing:34.470400pt;}
.wsd5f_c00001{word-spacing:34.496000pt;}
.ws1fe_c00001{word-spacing:34.515200pt;}
.ws1fd_c00001{word-spacing:34.521600pt;}
.ws1fc_c00001{word-spacing:34.528000pt;}
.ws9cd_c00001{word-spacing:34.534400pt;}
.wsbe0_c00001{word-spacing:34.540800pt;}
.ws13f0_c00001{word-spacing:34.562560pt;}
.ws9ce_c00001{word-spacing:34.572800pt;}
.ws1010_c00001{word-spacing:34.573824pt;}
.ws155f_c00001{word-spacing:34.579680pt;}
.ws108d_c00001{word-spacing:34.585536pt;}
.ws1042_c00001{word-spacing:34.608960pt;}
.ws11f7_c00001{word-spacing:34.614816pt;}
.ws126d_c00001{word-spacing:34.626528pt;}
.wsd5e_c00001{word-spacing:34.649600pt;}
.ws4ad_c00001{word-spacing:34.681600pt;}
.wsc23_c00001{word-spacing:34.732800pt;}
.wsc22_c00001{word-spacing:34.752000pt;}
.ws4ae_c00001{word-spacing:34.790400pt;}
.ws190_c00001{word-spacing:34.828800pt;}
.ws2c8_c00001{word-spacing:34.835200pt;}
.ws12f9_c00001{word-spacing:34.872480pt;}
.wsd41_c00001{word-spacing:34.880000pt;}
.wsfd2_c00001{word-spacing:34.907616pt;}
.ws1344_c00001{word-spacing:34.919328pt;}
.ws1261_c00001{word-spacing:34.936896pt;}
.wsfd1_c00001{word-spacing:34.954464pt;}
.ws1305_c00001{word-spacing:34.989600pt;}
.ws125b_c00001{word-spacing:35.046400pt;}
.ws140b_c00001{word-spacing:35.059200pt;}
.ws125c_c00001{word-spacing:35.065600pt;}
.ws13e9_c00001{word-spacing:35.092480pt;}
.wsd0a_c00001{word-spacing:35.148800pt;}
.wsb6e_c00001{word-spacing:35.159424pt;}
.wse39_c00001{word-spacing:35.174400pt;}
.wse38_c00001{word-spacing:35.200000pt;}
.ws116c_c00001{word-spacing:35.206272pt;}
.ws13e8_c00001{word-spacing:35.210240pt;}
.ws1209_c00001{word-spacing:35.217984pt;}
.ws1468_c00001{word-spacing:35.223840pt;}
.wse3a_c00001{word-spacing:35.225600pt;}
.ws114e_c00001{word-spacing:35.229696pt;}
.ws114d_c00001{word-spacing:35.241408pt;}
.ws13ef_c00001{word-spacing:35.328000pt;}
.wsbab_c00001{word-spacing:35.379200pt;}
.wsd5c_c00001{word-spacing:35.404800pt;}
.wsf36_c00001{word-spacing:35.418240pt;}
.wsbac_c00001{word-spacing:35.443200pt;}
.wsd5b_c00001{word-spacing:35.513600pt;}
.wsfb3_c00001{word-spacing:35.522496pt;}
.ws118b_c00001{word-spacing:35.528352pt;}
.wsd5d_c00001{word-spacing:35.532800pt;}
.ws12c3_c00001{word-spacing:35.545920pt;}
.wsbc2_c00001{word-spacing:35.551776pt;}
.wsbc1_c00001{word-spacing:35.569344pt;}
.ws5ec_c00001{word-spacing:35.612416pt;}
.ws145d_c00001{word-spacing:35.750400pt;}
.ws6ec_c00001{word-spacing:35.801600pt;}
.ws97a_c00001{word-spacing:35.814400pt;}
.ws14b3_c00001{word-spacing:35.838720pt;}
.ws1307_c00001{word-spacing:35.879712pt;}
.ws10f5_c00001{word-spacing:35.903136pt;}
.ws1458_c00001{word-spacing:35.910400pt;}
.ws1455_c00001{word-spacing:36.128000pt;}
.ws1456_c00001{word-spacing:36.134400pt;}
.wsdfb_c00001{word-spacing:36.160000pt;}
.wsf7a_c00001{word-spacing:36.160800pt;}
.ws1243_c00001{word-spacing:36.166656pt;}
.ws1457_c00001{word-spacing:36.172800pt;}
.ws106f_c00001{word-spacing:36.178368pt;}
.ws1199_c00001{word-spacing:36.207648pt;}
.ws10a6_c00001{word-spacing:36.213504pt;}
.ws157a_c00001{word-spacing:36.219360pt;}
.wse82_c00001{word-spacing:36.339200pt;}
.wse83_c00001{word-spacing:36.352000pt;}
.wse84_c00001{word-spacing:36.428800pt;}
.ws99f_c00001{word-spacing:36.460800pt;}
.ws12bf_c00001{word-spacing:36.518016pt;}
.ws1413_c00001{word-spacing:36.546560pt;}
.wsf5b_c00001{word-spacing:36.620800pt;}
.ws1414_c00001{word-spacing:36.705920pt;}
.wsf5a_c00001{word-spacing:36.780800pt;}
.ws119e_c00001{word-spacing:36.840096pt;}
.ws1374_c00001{word-spacing:36.863520pt;}
.ws9d9_c00001{word-spacing:36.921600pt;}
.wsf8_c00001{word-spacing:37.030400pt;}
.wsf7_c00001{word-spacing:37.075200pt;}
.wsf6_c00001{word-spacing:37.088000pt;}
.wse4c_c00001{word-spacing:37.094400pt;}
.ws9da_c00001{word-spacing:37.113600pt;}
.ws1358_c00001{word-spacing:37.138752pt;}
.ws10e5_c00001{word-spacing:37.156320pt;}
.ws1534_c00001{word-spacing:37.185600pt;}
.wse6d_c00001{word-spacing:37.388800pt;}
.ws930_c00001{word-spacing:37.414400pt;}
.ws931_c00001{word-spacing:37.420800pt;}
.ws8e5_c00001{word-spacing:37.427200pt;}
.ws8e4_c00001{word-spacing:37.433600pt;}
.ws13d3_c00001{word-spacing:37.447680pt;}
.wsd9d_c00001{word-spacing:37.452800pt;}
.ws146d_c00001{word-spacing:37.460832pt;}
.ws1207_c00001{word-spacing:37.472544pt;}
.wsd9e_c00001{word-spacing:37.478400pt;}
.wse6e_c00001{word-spacing:37.484800pt;}
.ws1161_c00001{word-spacing:37.490112pt;}
.wse6f_c00001{word-spacing:37.491200pt;}
.ws10b3_c00001{word-spacing:37.495968pt;}
.ws1168_c00001{word-spacing:37.513536pt;}
.wscf6_c00001{word-spacing:37.689600pt;}
.ws3c7_c00001{word-spacing:37.740800pt;}
.wscf5_c00001{word-spacing:37.747200pt;}
.ws11c1_c00001{word-spacing:37.753632pt;}
.wsdcc_c00001{word-spacing:37.766400pt;}
.ws11eb_c00001{word-spacing:37.788768pt;}
.ws12b8_c00001{word-spacing:37.794624pt;}
.ws3c6_c00001{word-spacing:37.798400pt;}
.ws14c4_c00001{word-spacing:37.806336pt;}
.ws115e_c00001{word-spacing:37.812192pt;}
.ws11c0_c00001{word-spacing:37.835616pt;}
.wsdcb_c00001{word-spacing:37.836800pt;}
.ws999_c00001{word-spacing:37.846208pt;}
.ws11bf_c00001{word-spacing:37.882464pt;}
.ws2ca_c00001{word-spacing:38.041600pt;}
.wscf9_c00001{word-spacing:38.048000pt;}
.ws1545_c00001{word-spacing:38.058144pt;}
.ws140e_c00001{word-spacing:38.246400pt;}
.wscf8_c00001{word-spacing:38.304000pt;}
.wsc36_c00001{word-spacing:38.368000pt;}
.ws472_c00001{word-spacing:38.374400pt;}
.ws235_c00001{word-spacing:38.403648pt;}
.wsc37_c00001{word-spacing:38.419200pt;}
.ws1027_c00001{word-spacing:38.450496pt;}
.wscfa_c00001{word-spacing:38.476800pt;}
.ws236_c00001{word-spacing:38.479776pt;}
.ws6f5_c00001{word-spacing:38.604800pt;}
.ws6f6_c00001{word-spacing:38.643200pt;}
.ws1e4_c00001{word-spacing:38.649600pt;}
.wsebc_c00001{word-spacing:38.656000pt;}
.wscf4_c00001{word-spacing:38.707200pt;}
.ws1e3_c00001{word-spacing:38.713600pt;}
.ws1442_c00001{word-spacing:38.731584pt;}
.ws14be_c00001{word-spacing:38.749152pt;}
.ws1022_c00001{word-spacing:38.755008pt;}
.ws12ec_c00001{word-spacing:38.778432pt;}
.wse6a_c00001{word-spacing:38.905600pt;}
.ws1544_c00001{word-spacing:39.053664pt;}
.ws11b0_c00001{word-spacing:39.088800pt;}
.wsfb8_c00001{word-spacing:39.100512pt;}
.wsc7d_c00001{word-spacing:39.123200pt;}
.ws1317_c00001{word-spacing:39.147360pt;}
.wscf2_c00001{word-spacing:39.264000pt;}
.ws128e_c00001{word-spacing:39.340608pt;}
.wsc7c_c00001{word-spacing:39.347200pt;}
.wsf61_c00001{word-spacing:39.381600pt;}
.ws128d_c00001{word-spacing:39.387456pt;}
.ws1449_c00001{word-spacing:39.399168pt;}
.ws1324_c00001{word-spacing:39.410880pt;}
.wscf3_c00001{word-spacing:39.417600pt;}
.ws1325_c00001{word-spacing:39.422592pt;}
.ws128f_c00001{word-spacing:39.440160pt;}
.wsb1f_c00001{word-spacing:39.667200pt;}
.wsb20_c00001{word-spacing:39.692800pt;}
.ws1555_c00001{word-spacing:39.709536pt;}
.ws1556_c00001{word-spacing:39.715392pt;}
.wse58_c00001{word-spacing:39.718400pt;}
.ws102c_c00001{word-spacing:39.721248pt;}
.wse57_c00001{word-spacing:39.724800pt;}
.ws10e0_c00001{word-spacing:39.732960pt;}
.ws1557_c00001{word-spacing:39.762240pt;}
.ws98e_c00001{word-spacing:39.878400pt;}
.ws1053_c00001{word-spacing:39.904000pt;}
.ws1052_c00001{word-spacing:39.980800pt;}
.ws98d_c00001{word-spacing:40.000000pt;}
.ws233_c00001{word-spacing:40.002336pt;}
.ws263_c00001{word-spacing:40.006400pt;}
.ws1097_c00001{word-spacing:40.014048pt;}
.ws264_c00001{word-spacing:40.032000pt;}
.ws12e6_c00001{word-spacing:40.037472pt;}
.ws12e7_c00001{word-spacing:40.043328pt;}
.ws234_c00001{word-spacing:40.055040pt;}
.ws124c_c00001{word-spacing:40.330272pt;}
.ws10ab_c00001{word-spacing:40.341984pt;}
.wsae4_c00001{word-spacing:40.359552pt;}
.wsf4b_c00001{word-spacing:40.608000pt;}
.ws14d3_c00001{word-spacing:40.658208pt;}
.ws11e4_c00001{word-spacing:40.675776pt;}
.ws1017_c00001{word-spacing:40.939296pt;}
.ws138e_c00001{word-spacing:40.968576pt;}
.ws1378_c00001{word-spacing:40.992000pt;}
.ws12e9_c00001{word-spacing:41.027136pt;}
.ws2b1_c00001{word-spacing:41.088000pt;}
.ws1260_c00001{word-spacing:41.158400pt;}
.ws125f_c00001{word-spacing:41.241600pt;}
.ws2b0_c00001{word-spacing:41.254400pt;}
.ws1382_c00001{word-spacing:41.255520pt;}
.ws1383_c00001{word-spacing:41.278944pt;}
.ws154b_c00001{word-spacing:41.290656pt;}
.ws1558_c00001{word-spacing:41.308224pt;}
.ws123c_c00001{word-spacing:41.325792pt;}
.ws1329_c00001{word-spacing:41.337504pt;}
.ws14b2_c00001{word-spacing:41.618592pt;}
.ws1341_c00001{word-spacing:41.630304pt;}
.ws1191_c00001{word-spacing:41.665440pt;}
.wsc9e_c00001{word-spacing:41.900800pt;}
.ws12a1_c00001{word-spacing:41.926400pt;}
.ws11ca_c00001{word-spacing:41.940672pt;}
.ws1213_c00001{word-spacing:41.946528pt;}
.ws123e_c00001{word-spacing:41.952384pt;}
.ws12ea_c00001{word-spacing:41.969952pt;}
.ws150c_c00001{word-spacing:41.987520pt;}
.wsc9f_c00001{word-spacing:41.990400pt;}
.ws11c9_c00001{word-spacing:42.040224pt;}
.ws13ed_c00001{word-spacing:42.099200pt;}
.ws1475_c00001{word-spacing:42.177280pt;}
.ws1553_c00001{word-spacing:42.228096pt;}
.wsf81_c00001{word-spacing:42.256896pt;}
.ws10f6_c00001{word-spacing:42.292032pt;}
.ws10ef_c00001{word-spacing:42.297888pt;}
.ws5bd_c00001{word-spacing:42.485664pt;}
.ws5bf_c00001{word-spacing:42.487552pt;}
.ws145c_c00001{word-spacing:42.497280pt;}
.ws145a_c00001{word-spacing:42.548096pt;}
.wsaa9_c00001{word-spacing:42.880000pt;}
.ws110c_c00001{word-spacing:42.918624pt;}
.ws1335_c00001{word-spacing:42.942048pt;}
.ws133b_c00001{word-spacing:43.051520pt;}
.ws1514_c00001{word-spacing:43.104000pt;}
.ws12f8_c00001{word-spacing:43.228992pt;}
.ws138a_c00001{word-spacing:43.264128pt;}
.ws133c_c00001{word-spacing:43.269280pt;}
.ws10b9_c00001{word-spacing:43.371520pt;}
.ws145f_c00001{word-spacing:43.562784pt;}
.ws10ba_c00001{word-spacing:43.589280pt;}
.wsa77_c00001{word-spacing:43.731200pt;}
.ws82f_c00001{word-spacing:43.750400pt;}
.ws61c_c00001{word-spacing:43.801600pt;}
.ws14ed_c00001{word-spacing:43.832160pt;}
.ws830_c00001{word-spacing:43.833600pt;}
.wsa78_c00001{word-spacing:43.846400pt;}
.ws1342_c00001{word-spacing:43.884864pt;}
.ws61d_c00001{word-spacing:43.897600pt;}
.wsd68_c00001{word-spacing:44.000000pt;}
.ws11ed_c00001{word-spacing:44.011520pt;}
.ws147c_c00001{word-spacing:44.085664pt;}
.ws34e_c00001{word-spacing:44.206944pt;}
.ws97c_c00001{word-spacing:44.377600pt;}
.ws97b_c00001{word-spacing:44.441600pt;}
.ws1249_c00001{word-spacing:44.517312pt;}
.ws1245_c00001{word-spacing:44.529024pt;}
.ws34d_c00001{word-spacing:44.540736pt;}
.ws1308_c00001{word-spacing:44.570016pt;}
.ws1131_c00001{word-spacing:44.651520pt;}
.ws133e_c00001{word-spacing:44.665600pt;}
.wsd6a_c00001{word-spacing:44.710400pt;}
.ws12bd_c00001{word-spacing:44.739840pt;}
.ws133d_c00001{word-spacing:44.755200pt;}
.wsd69_c00001{word-spacing:44.780800pt;}
.ws1504_c00001{word-spacing:44.821824pt;}
.ws12a2_c00001{word-spacing:44.827680pt;}
.ws12bc_c00001{word-spacing:44.845248pt;}
.wsb96_c00001{word-spacing:44.864000pt;}
.ws11ee_c00001{word-spacing:44.869280pt;}
.wsc78_c00001{word-spacing:45.068800pt;}
.wsb97_c00001{word-spacing:45.107200pt;}
.wsae2_c00001{word-spacing:45.161472pt;}
.ws1246_c00001{word-spacing:45.179040pt;}
.ws130a_c00001{word-spacing:45.184896pt;}
.ws1040_c00001{word-spacing:45.202464pt;}
.ws13cf_c00001{word-spacing:45.337600pt;}
.ws1496_c00001{word-spacing:45.442560pt;}
.ws106e_c00001{word-spacing:45.454272pt;}
.ws13d0_c00001{word-spacing:45.455360pt;}
.ws131a_c00001{word-spacing:45.489408pt;}
.ws131b_c00001{word-spacing:45.501120pt;}
.ws1282_c00001{word-spacing:45.611520pt;}
.ws152f_c00001{word-spacing:45.708800pt;}
.wsda9_c00001{word-spacing:45.753600pt;}
.ws135d_c00001{word-spacing:45.793920pt;}
.ws1132_c00001{word-spacing:45.829280pt;}
.wsda8_c00001{word-spacing:45.888000pt;}
.ws1033_c00001{word-spacing:46.121856pt;}
.ws1281_c00001{word-spacing:46.149280pt;}
.ws1229_c00001{word-spacing:46.251520pt;}
.ws323_c00001{word-spacing:46.408800pt;}
.ws1189_c00001{word-spacing:46.414656pt;}
.ws322_c00001{word-spacing:46.426368pt;}
.wsae7_c00001{word-spacing:46.443936pt;}
.wsb6d_c00001{word-spacing:46.490784pt;}
.ws11f9_c00001{word-spacing:46.754304pt;}
.ws1158_c00001{word-spacing:46.760160pt;}
.wsfad_c00001{word-spacing:46.777728pt;}
.ws1551_c00001{word-spacing:47.058816pt;}
.wsf82_c00001{word-spacing:47.211520pt;}
.ws1376_c00001{word-spacing:47.363328pt;}
.ws135c_c00001{word-spacing:47.392608pt;}
.ws1552_c00001{word-spacing:47.421888pt;}
.wsafe_c00001{word-spacing:47.679168pt;}
.ws1181_c00001{word-spacing:47.685408pt;}
.ws1498_c00001{word-spacing:47.720544pt;}
.ws1322_c00001{word-spacing:47.851520pt;}
.wsf4e_c00001{word-spacing:48.021184pt;}
.ws109e_c00001{word-spacing:48.030912pt;}
.ws136b_c00001{word-spacing:48.036768pt;}
.ws10db_c00001{word-spacing:48.171520pt;}
.wscfb_c00001{word-spacing:48.204800pt;}
.ws1433_c00001{word-spacing:48.323712pt;}
.wscfc_c00001{word-spacing:48.358400pt;}
.ws124d_c00001{word-spacing:48.358848pt;}
.wsfed_c00001{word-spacing:48.364704pt;}
.ws14e8_c00001{word-spacing:48.663360pt;}
.ws10fc_c00001{word-spacing:48.991296pt;}
.ws11db_c00001{word-spacing:49.003008pt;}
.ws1348_c00001{word-spacing:49.008864pt;}
.ws1347_c00001{word-spacing:49.014720pt;}
.ws1539_c00001{word-spacing:49.020576pt;}
.ws1233_c00001{word-spacing:49.295808pt;}
.ws115f_c00001{word-spacing:49.606176pt;}
.wsfbc_c00001{word-spacing:49.623744pt;}
.ws100e_c00001{word-spacing:49.641312pt;}
.ws1160_c00001{word-spacing:49.658880pt;}
.ws2ac_c00001{word-spacing:49.728000pt;}
.ws125d_c00001{word-spacing:49.843200pt;}
.ws2ad_c00001{word-spacing:49.875200pt;}
.ws125e_c00001{word-spacing:49.920000pt;}
.ws2ab_c00001{word-spacing:49.932800pt;}
.ws1390_c00001{word-spacing:49.957536pt;}
.ws12a4_c00001{word-spacing:50.279616pt;}
.ws978_c00001{word-spacing:50.451200pt;}
.ws13cd_c00001{word-spacing:50.460160pt;}
.wscba_c00001{word-spacing:50.771200pt;}
.ws101f_c00001{word-spacing:50.876928pt;}
.ws1041_c00001{word-spacing:51.222432pt;}
.ws13ce_c00001{word-spacing:51.225600pt;}
.ws1012_c00001{word-spacing:51.251712pt;}
.ws100c_c00001{word-spacing:51.579648pt;}
.ws3ed_c00001{word-spacing:51.612352pt;}
.wsf31_c00001{word-spacing:51.696640pt;}
.ws14d7_c00001{word-spacing:51.854880pt;}
.ws1231_c00001{word-spacing:51.860736pt;}
.ws37c_c00001{word-spacing:51.890016pt;}
.ws37d_c00001{word-spacing:51.895872pt;}
.ws112e_c00001{word-spacing:52.540032pt;}
.ws116b_c00001{word-spacing:52.803552pt;}
.ws1252_c00001{word-spacing:52.862112pt;}
.ws12bb_c00001{word-spacing:53.166624pt;}
.ws137c_c00001{word-spacing:53.195904pt;}
.ws143b_c00001{word-spacing:53.459424pt;}
.ws14ff_c00001{word-spacing:53.461376pt;}
.ws1257_c00001{word-spacing:53.471136pt;}
.ws143c_c00001{word-spacing:53.488704pt;}
.wsf25_c00001{word-spacing:53.639680pt;}
.wsf26_c00001{word-spacing:53.757440pt;}
.ws14a1_c00001{word-spacing:53.793216pt;}
.ws1568_c00001{word-spacing:54.045024pt;}
.wsfa9_c00001{word-spacing:54.162144pt;}
.ws1567_c00001{word-spacing:54.173856pt;}
.ws10a4_c00001{word-spacing:54.396384pt;}
.ws1340_c00001{word-spacing:54.431520pt;}
.ws14b9_c00001{word-spacing:54.645664pt;}
.ws150d_c00001{word-spacing:54.771168pt;}
.ws1337_c00001{word-spacing:55.104960pt;}
.ws1501_c00001{word-spacing:55.337120pt;}
.ws1502_c00001{word-spacing:55.353152pt;}
.ws120b_c00001{word-spacing:55.362624pt;}
.ws14d2_c00001{word-spacing:55.409472pt;}
.wsf7f_c00001{word-spacing:55.772544pt;}
.ws7e9_c00001{word-spacing:55.882208pt;}
.ws939_c00001{word-spacing:55.959936pt;}
.ws1268_c00001{word-spacing:55.995072pt;}
.ws1312_c00001{word-spacing:56.088768pt;}
.ws13be_c00001{word-spacing:56.230400pt;}
.ws1575_c00001{word-spacing:56.280864pt;}
.ws13df_c00001{word-spacing:56.348160pt;}
.wsbc9_c00001{word-spacing:56.375712pt;}
.wsc32_c00001{word-spacing:56.620800pt;}
.wsc31_c00001{word-spacing:56.896000pt;}
.wsc33_c00001{word-spacing:56.972800pt;}
.ws156e_c00001{word-spacing:57.318528pt;}
.ws3e6_c00001{word-spacing:57.335776pt;}
.ws149d_c00001{word-spacing:57.593760pt;}
.ws1151_c00001{word-spacing:57.623040pt;}
.wsfcd_c00001{word-spacing:57.915840pt;}
.ws1176_c00001{word-spacing:57.939264pt;}
.ws14a8_c00001{word-spacing:57.997824pt;}
.wsa7a_c00001{word-spacing:58.165664pt;}
.wsa79_c00001{word-spacing:58.206560pt;}
.wsa07_c00001{word-spacing:58.228096pt;}
.wsafd_c00001{word-spacing:58.313728pt;}
.ws1546_c00001{word-spacing:58.577568pt;}
.wsa09_c00001{word-spacing:58.800000pt;}
.wsaa1_c00001{word-spacing:58.800096pt;}
.ws115a_c00001{word-spacing:58.887936pt;}
.ws1149_c00001{word-spacing:58.928928pt;}
.ws875_c00001{word-spacing:58.960352pt;}
.ws14bb_c00001{word-spacing:59.125664pt;}
.ws123f_c00001{word-spacing:59.198304pt;}
.ws87b_c00001{word-spacing:59.302368pt;}
.ws6d1_c00001{word-spacing:59.766336pt;}
.ws116d_c00001{word-spacing:59.848320pt;}
.wsae1_c00001{word-spacing:60.182112pt;}
.ws1262_c00001{word-spacing:60.217248pt;}
.ws14c0_c00001{word-spacing:60.228960pt;}
.wse4d_c00001{word-spacing:60.480000pt;}
.wse4e_c00001{word-spacing:60.486400pt;}
.ws1014_c00001{word-spacing:60.510048pt;}
.ws12a9_c00001{word-spacing:60.515904pt;}
.ws12aa_c00001{word-spacing:60.551040pt;}
.ws146c_c00001{word-spacing:60.556896pt;}
.ws13f2_c00001{word-spacing:60.823040pt;}
.ws1156_c00001{word-spacing:60.849696pt;}
.ws1272_c00001{word-spacing:61.464576pt;}
.ws108a_c00001{word-spacing:62.204160pt;}
.ws104f_c00001{word-spacing:62.700192pt;}
.ws1542_c00001{word-spacing:63.666432pt;}
.ws11dc_c00001{word-spacing:63.719136pt;}
.wsfcc_c00001{word-spacing:63.724992pt;}
.ws1334_c00001{word-spacing:63.730848pt;}
.ws154a_c00001{word-spacing:64.076352pt;}
.ws1169_c00001{word-spacing:64.316448pt;}
.ws1165_c00001{word-spacing:64.328160pt;}
.ws6d8_c00001{word-spacing:64.603456pt;}
.ws6da_c00001{word-spacing:64.603904pt;}
.wsadf_c00001{word-spacing:64.620960pt;}
.ws87c_c00001{word-spacing:65.015104pt;}
.ws11a2_c00001{word-spacing:65.329536pt;}
.ws1443_c00001{word-spacing:65.347104pt;}
.wsd43_c00001{word-spacing:65.580800pt;}
.wscde_c00001{word-spacing:65.593600pt;}
.wsd42_c00001{word-spacing:65.606400pt;}
.ws1373_c00001{word-spacing:65.657472pt;}
.ws156c_c00001{word-spacing:66.177280pt;}
.ws11da_c00001{word-spacing:66.260640pt;}
.ws1148_c00001{word-spacing:66.629568pt;}
.ws1489_c00001{word-spacing:68.163840pt;}
.ws10ee_c00001{word-spacing:68.239968pt;}
.ws11e5_c00001{word-spacing:68.497632pt;}
.ws1521_c00001{word-spacing:68.725664pt;}
.ws14e0_c00001{word-spacing:69.171072pt;}
.ws1523_c00001{word-spacing:69.360000pt;}
.ws1188_c00001{word-spacing:69.440448pt;}
.ws1361_c00001{word-spacing:69.446304pt;}
.ws12fe_c00001{word-spacing:69.452160pt;}
.ws1186_c00001{word-spacing:69.463872pt;}
.ws1094_c00001{word-spacing:69.510720pt;}
.ws1187_c00001{word-spacing:69.528288pt;}
.ws325_c00001{word-spacing:69.739104pt;}
.ws324_c00001{word-spacing:69.780096pt;}
.ws326_c00001{word-spacing:69.844512pt;}
.ws155d_c00001{word-spacing:70.096320pt;}
.ws13ba_c00001{word-spacing:70.420480pt;}
.ws152b_c00001{word-spacing:70.528000pt;}
.wsa49_c00001{word-spacing:70.645664pt;}
.wsa02_c00001{word-spacing:70.680864pt;}
.ws528_c00001{word-spacing:70.681920pt;}
.wsa08_c00001{word-spacing:70.682752pt;}
.ws8c9_c00001{word-spacing:70.720000pt;}
.ws152c_c00001{word-spacing:70.726400pt;}
.ws1263_c00001{word-spacing:70.769760pt;}
.wsfa3_c00001{word-spacing:70.793184pt;}
.ws9e3_c00001{word-spacing:70.963008pt;}
.wsa9b_c00001{word-spacing:70.965664pt;}
.wsaa0_c00001{word-spacing:70.965888pt;}
.wsa98_c00001{word-spacing:70.967552pt;}
.ws9e1_c00001{word-spacing:70.968864pt;}
.ws905_c00001{word-spacing:70.998144pt;}
.ws90b_c00001{word-spacing:71.004000pt;}
.ws1170_c00001{word-spacing:71.062560pt;}
.ws87a_c00001{word-spacing:71.155360pt;}
.wsa03_c00001{word-spacing:71.285664pt;}
.ws8d0_c00001{word-spacing:71.302656pt;}
.ws529_c00001{word-spacing:71.320224pt;}
.wsa9a_c00001{word-spacing:71.320672pt;}
.wsa9e_c00001{word-spacing:71.320768pt;}
.wsaa2_c00001{word-spacing:71.322656pt;}
.ws1266_c00001{word-spacing:71.396352pt;}
.ws1474_c00001{word-spacing:71.605664pt;}
.wsf67_c00001{word-spacing:71.730144pt;}
.ws1044_c00001{word-spacing:71.747712pt;}
.ws5c1_c00001{word-spacing:71.925664pt;}
.ws5e7_c00001{word-spacing:72.325696pt;}
.ws1250_c00001{word-spacing:72.350880pt;}
.ws1029_c00001{word-spacing:72.362592pt;}
.ws14bd_c00001{word-spacing:73.845664pt;}
.ws1035_c00001{word-spacing:73.955424pt;}
.wse28_c00001{word-spacing:74.080000pt;}
.ws148c_c00001{word-spacing:74.183808pt;}
.wse27_c00001{word-spacing:74.240000pt;}
.ws6d3_c00001{word-spacing:74.488320pt;}
.ws1230_c00001{word-spacing:74.599584pt;}
.wsf4c_c00001{word-spacing:74.671712pt;}
.wsf4d_c00001{word-spacing:74.682400pt;}
.ws12c0_c00001{word-spacing:74.974368pt;}
.wsff9_c00001{word-spacing:75.232032pt;}
.ws140d_c00001{word-spacing:76.439680pt;}
.ws1253_c00001{word-spacing:77.193792pt;}
.ws14f6_c00001{word-spacing:77.720864pt;}
.wsa48_c00001{word-spacing:77.726560pt;}
.wsa4a_c00001{word-spacing:77.748096pt;}
.wsf62_c00001{word-spacing:77.832096pt;}
.ws14f7_c00001{word-spacing:78.000000pt;}
.ws1110_c00001{word-spacing:78.113184pt;}
.ws11a9_c00001{word-spacing:79.032576pt;}
.ws6d4_c00001{word-spacing:79.323456pt;}
.ws6d6_c00001{word-spacing:79.323904pt;}
.ws6d7_c00001{word-spacing:79.327776pt;}
.ws6d2_c00001{word-spacing:79.329312pt;}
.ws6dc_c00001{word-spacing:79.348864pt;}
.ws1089_c00001{word-spacing:79.801952pt;}
.ws99a_c00001{word-spacing:80.288256pt;}
.ws156b_c00001{word-spacing:80.948096pt;}
.ws8c8_c00001{word-spacing:81.216864pt;}
.ws774_c00001{word-spacing:81.240288pt;}
.ws11f2_c00001{word-spacing:81.322272pt;}
.ws6d5_c00001{word-spacing:81.849312pt;}
.ws7ea_c00001{word-spacing:82.158656pt;}
.ws1114_c00001{word-spacing:82.247520pt;}
.ws7ec_c00001{word-spacing:82.420512pt;}
.ws3e9_c00001{word-spacing:82.570144pt;}
.ws1093_c00001{word-spacing:83.225472pt;}
.ws12b9_c00001{word-spacing:83.231328pt;}
.ws12ba_c00001{word-spacing:83.278176pt;}
.ws1076_c00001{word-spacing:83.857920pt;}
.ws998_c00001{word-spacing:83.991648pt;}
.ws14cf_c00001{word-spacing:84.098016pt;}
.ws152a_c00001{word-spacing:86.040864pt;}
.ws60c_c00001{word-spacing:86.053376pt;}
.ws6db_c00001{word-spacing:86.645440pt;}
.ws5bb_c00001{word-spacing:86.645664pt;}
.ws5bc_c00001{word-spacing:86.647552pt;}
.ws874_c00001{word-spacing:87.459904pt;}
.wsa01_c00001{word-spacing:87.605664pt;}
.wsa9d_c00001{word-spacing:87.605760pt;}
.ws527_c00001{word-spacing:87.606880pt;}
.ws8a6_c00001{word-spacing:87.607520pt;}
.ws14f3_c00001{word-spacing:87.617280pt;}
.wsa04_c00001{word-spacing:87.646560pt;}
.wsa99_c00001{word-spacing:87.646752pt;}
.wsa27_c00001{word-spacing:87.668096pt;}
.ws1011_c00001{word-spacing:87.681888pt;}
.ws1487_c00001{word-spacing:87.827200pt;}
.ws8a8_c00001{word-spacing:87.928960pt;}
.wsf63_c00001{word-spacing:88.671552pt;}
.ws6dd_c00001{word-spacing:89.204448pt;}
.ws1116_c00001{word-spacing:89.602656pt;}
.ws995_c00001{word-spacing:89.902112pt;}
.ws1464_c00001{word-spacing:89.959872pt;}
.ws14ba_c00001{word-spacing:92.737280pt;}
.ws10f7_c00001{word-spacing:92.852736pt;}
.ws126b_c00001{word-spacing:93.444192pt;}
.ws1495_c00001{word-spacing:93.455904pt;}
.wsfaf_c00001{word-spacing:93.777984pt;}
.ws8c2_c00001{word-spacing:94.400000pt;}
.ws14e2_c00001{word-spacing:94.416288pt;}
.ws3ee_c00001{word-spacing:94.583456pt;}
.ws1047_c00001{word-spacing:95.411808pt;}
.ws1573_c00001{word-spacing:95.617280pt;}
.ws75f_c00001{word-spacing:95.937280pt;}
.ws5c0_c00001{word-spacing:95.966560pt;}
.ws90a_c00001{word-spacing:95.985376pt;}
.ws9e9_c00001{word-spacing:95.987008pt;}
.ws5c2_c00001{word-spacing:95.988096pt;}
.ws9ea_c00001{word-spacing:96.562560pt;}
.ws6d9_c00001{word-spacing:96.565440pt;}
.ws155c_c00001{word-spacing:96.963648pt;}
.ws130f_c00001{word-spacing:97.250592pt;}
.ws879_c00001{word-spacing:97.693664pt;}
.ws7e8_c00001{word-spacing:97.866720pt;}
.ws101e_c00001{word-spacing:97.953312pt;}
.ws1051_c00001{word-spacing:98.322240pt;}
.ws8ca_c00001{word-spacing:98.560000pt;}
.ws118c_c00001{word-spacing:99.897504pt;}
.ws93b_c00001{word-spacing:100.084896pt;}
.ws8a7_c00001{word-spacing:100.120032pt;}
.wsa05_c00001{word-spacing:100.120864pt;}
.wsa0a_c00001{word-spacing:100.122752pt;}
.ws1459_c00001{word-spacing:100.405664pt;}
.ws9e7_c00001{word-spacing:100.406976pt;}
.ws93a_c00001{word-spacing:100.442112pt;}
.ws10a3_c00001{word-spacing:100.582656pt;}
.wsa06_c00001{word-spacing:100.725664pt;}
.wsa9f_c00001{word-spacing:100.760672pt;}
.ws1205_c00001{word-spacing:101.144832pt;}
.ws6df_c00001{word-spacing:101.999872pt;}
.ws3e5_c00001{word-spacing:102.230720pt;}
.ws11ff_c00001{word-spacing:102.739200pt;}
.ws11d4_c00001{word-spacing:102.749376pt;}
.ws14bc_c00001{word-spacing:103.285664pt;}
.ws876_c00001{word-spacing:103.385024pt;}
.wsfa4_c00001{word-spacing:103.686336pt;}
.ws136d_c00001{word-spacing:103.780032pt;}
.ws1465_c00001{word-spacing:104.365632pt;}
.ws8c0_c00001{word-spacing:104.574560pt;}
.wsfba_c00001{word-spacing:104.728704pt;}
.ws11d5_c00001{word-spacing:104.910240pt;}
.ws1045_c00001{word-spacing:105.343584pt;}
.wsf74_c00001{word-spacing:105.607104pt;}
.ws1088_c00001{word-spacing:105.715008pt;}
.ws1315_c00001{word-spacing:105.952608pt;}
.ws1524_c00001{word-spacing:106.485664pt;}
.ws11b6_c00001{word-spacing:106.579200pt;}
.wsa46_c00001{word-spacing:106.805664pt;}
.ws14f4_c00001{word-spacing:106.840864pt;}
.wsa47_c00001{word-spacing:106.846560pt;}
.ws14f5_c00001{word-spacing:107.120000pt;}
.ws14df_c00001{word-spacing:107.235072pt;}
.ws1522_c00001{word-spacing:107.440000pt;}
.ws1526_c00001{word-spacing:107.457280pt;}
.ws7df_c00001{word-spacing:108.907872pt;}
.ws120a_c00001{word-spacing:109.155840pt;}
.ws1179_c00001{word-spacing:109.202688pt;}
.ws7e1_c00001{word-spacing:109.222784pt;}
.ws8cf_c00001{word-spacing:109.378368pt;}
.ws1427_c00001{word-spacing:109.384224pt;}
.wsffa_c00001{word-spacing:109.811712pt;}
.wsf68_c00001{word-spacing:110.133792pt;}
.ws156a_c00001{word-spacing:110.337280pt;}
.ws6de_c00001{word-spacing:110.965344pt;}
.wse75_c00001{word-spacing:111.481600pt;}
.wse76_c00001{word-spacing:111.705600pt;}
.ws134c_c00001{word-spacing:111.984288pt;}
.ws10ed_c00001{word-spacing:112.013568pt;}
.wsfe3_c00001{word-spacing:112.031136pt;}
.ws1500_c00001{word-spacing:112.079712pt;}
.ws1273_c00001{word-spacing:112.394208pt;}
.ws10c1_c00001{word-spacing:113.582976pt;}
.ws1486_c00001{word-spacing:113.900800pt;}
.ws9e5_c00001{word-spacing:115.123104pt;}
.wsa9c_c00001{word-spacing:115.125888pt;}
.wsa45_c00001{word-spacing:115.445664pt;}
.ws760_c00001{word-spacing:115.457280pt;}
.ws1529_c00001{word-spacing:115.480864pt;}
.ws1527_c00001{word-spacing:115.482752pt;}
.ws100d_c00001{word-spacing:116.546112pt;}
.ws148f_c00001{word-spacing:116.797920pt;}
.ws132b_c00001{word-spacing:116.827200pt;}
.ws14eb_c00001{word-spacing:117.149280pt;}
.ws144d_c00001{word-spacing:120.317376pt;}
.ws12fa_c00001{word-spacing:120.680448pt;}
.ws104c_c00001{word-spacing:121.072800pt;}
.ws14a9_c00001{word-spacing:121.418304pt;}
.ws108b_c00001{word-spacing:121.592032pt;}
.ws134d_c00001{word-spacing:121.962912pt;}
.ws135f_c00001{word-spacing:122.642208pt;}
.ws126e_c00001{word-spacing:123.251232pt;}
.ws108e_c00001{word-spacing:124.527840pt;}
.ws1531_c00001{word-spacing:124.737280pt;}
.ws1572_c00001{word-spacing:125.057280pt;}
.ws112f_c00001{word-spacing:125.119296pt;}
.ws675_c00001{word-spacing:125.363616pt;}
.ws906_c00001{word-spacing:125.366816pt;}
.ws909_c00001{word-spacing:125.368448pt;}
.ws673_c00001{word-spacing:125.369472pt;}
.ws75e_c00001{word-spacing:125.377280pt;}
.ws9e2_c00001{word-spacing:125.405248pt;}
.ws5be_c00001{word-spacing:125.406560pt;}
.ws907_c00001{word-spacing:125.407392pt;}
.ws904_c00001{word-spacing:125.407808pt;}
.ws9e4_c00001{word-spacing:125.409216pt;}
.ws9e6_c00001{word-spacing:125.409440pt;}
.ws9e8_c00001{word-spacing:125.426784pt;}
.ws1490_c00001{word-spacing:126.161664pt;}
.ws10e4_c00001{word-spacing:126.747264pt;}
.ws136c_c00001{word-spacing:128.018016pt;}
.ws1316_c00001{word-spacing:130.255008pt;}
.ws14d9_c00001{word-spacing:130.852320pt;}
.ws100a_c00001{word-spacing:130.869888pt;}
.ws99b_c00001{word-spacing:130.976096pt;}
.ws14a7_c00001{word-spacing:131.268096pt;}
.ws8c1_c00001{word-spacing:133.411392pt;}
.ws1507_c00001{word-spacing:133.697280pt;}
.wsae6_c00001{word-spacing:135.056928pt;}
.ws775_c00001{word-spacing:135.297280pt;}
.ws773_c00001{word-spacing:135.298880pt;}
.ws1528_c00001{word-spacing:136.897280pt;}
.ws1503_c00001{word-spacing:137.311488pt;}
.ws138c_c00001{word-spacing:137.926368pt;}
.ws120d_c00001{word-spacing:142.125120pt;}
.ws1537_c00001{word-spacing:143.366592pt;}
.ws145b_c00001{word-spacing:144.245664pt;}
.wsaa3_c00001{word-spacing:144.245888pt;}
.ws908_c00001{word-spacing:144.280128pt;}
.wsfe6_c00001{word-spacing:144.701760pt;}
.ws14dd_c00001{word-spacing:145.053120pt;}
.ws1560_c00001{word-spacing:145.328352pt;}
.ws132f_c00001{word-spacing:147.828864pt;}
.ws1426_c00001{word-spacing:153.550176pt;}
.ws116a_c00001{word-spacing:153.643872pt;}
.ws1530_c00001{word-spacing:154.177280pt;}
.ws12c7_c00001{word-spacing:154.252896pt;}
.ws1064_c00001{word-spacing:157.175040pt;}
.ws1058_c00001{word-spacing:158.428224pt;}
.wsf7c_c00001{word-spacing:160.571520pt;}
.ws1506_c00001{word-spacing:163.137280pt;}
.ws1508_c00001{word-spacing:163.188096pt;}
.ws852_c00001{word-spacing:163.282848pt;}
.ws132c_c00001{word-spacing:164.208096pt;}
.ws11a7_c00001{word-spacing:166.468512pt;}
.ws8cd_c00001{word-spacing:167.360000pt;}
.ws1510_c00001{word-spacing:167.605664pt;}
.ws8cb_c00001{word-spacing:172.435776pt;}
.ws8cc_c00001{word-spacing:173.115072pt;}
.ws1569_c00001{word-spacing:173.697280pt;}
.ws3a6_c00001{word-spacing:175.341984pt;}
.ws5fb_c00001{word-spacing:178.086816pt;}
.ws1423_c00001{word-spacing:182.701344pt;}
.ws1425_c00001{word-spacing:182.707200pt;}
.ws1422_c00001{word-spacing:182.718912pt;}
.ws1421_c00001{word-spacing:182.724768pt;}
.ws1424_c00001{word-spacing:182.730624pt;}
.ws1420_c00001{word-spacing:182.736480pt;}
.ws150f_c00001{word-spacing:184.577280pt;}
.ws11e6_c00001{word-spacing:186.261792pt;}
.wsfb0_c00001{word-spacing:188.141568pt;}
.ws1046_c00001{word-spacing:188.170848pt;}
.ws110e_c00001{word-spacing:190.483968pt;}
.ws1115_c00001{word-spacing:196.826016pt;}
.ws134e_c00001{word-spacing:196.843584pt;}
.ws117a_c00001{word-spacing:196.884576pt;}
.ws1350_c00001{word-spacing:197.120000pt;}
.wsfaa_c00001{word-spacing:198.096768pt;}
.ws1511_c00001{word-spacing:199.297280pt;}
.ws1512_c00001{word-spacing:199.348096pt;}
.ws5e5_c00001{word-spacing:199.614432pt;}
.ws5eb_c00001{word-spacing:199.849568pt;}
.ws14de_c00001{word-spacing:200.046816pt;}
.ws1299_c00001{word-spacing:201.282432pt;}
.ws5fa_c00001{word-spacing:201.446400pt;}
.ws5e9_c00001{word-spacing:205.471456pt;}
.ws5f8_c00001{word-spacing:206.248320pt;}
.ws5f9_c00001{word-spacing:206.570400pt;}
.ws14a2_c00001{word-spacing:208.397472pt;}
.ws462_c00001{word-spacing:209.881600pt;}
.wsa0c_c00001{word-spacing:209.920000pt;}
.ws5fc_c00001{word-spacing:211.050240pt;}
.ws1063_c00001{word-spacing:212.484960pt;}
.ws14e5_c00001{word-spacing:214.739520pt;}
.ws10e8_c00001{word-spacing:216.361632pt;}
.ws1532_c00001{word-spacing:217.537280pt;}
.wsfbb_c00001{word-spacing:217.603104pt;}
.ws14da_c00001{word-spacing:219.582432pt;}
.wsfe4_c00001{word-spacing:219.916224pt;}
.ws1494_c00001{word-spacing:222.432000pt;}
.ws10e3_c00001{word-spacing:223.078464pt;}
.ws138d_c00001{word-spacing:225.637536pt;}
.ws1195_c00001{word-spacing:230.080000pt;}
.wsfac_c00001{word-spacing:230.679552pt;}
.ws1133_c00001{word-spacing:230.720000pt;}
.ws1313_c00001{word-spacing:231.423264pt;}
.wsf8f_c00001{word-spacing:232.000000pt;}
.ws343_c00001{word-spacing:232.486368pt;}
.ws10dd_c00001{word-spacing:232.960000pt;}
.ws10e7_c00001{word-spacing:234.269280pt;}
.ws1147_c00001{word-spacing:236.172480pt;}
.ws1145_c00001{word-spacing:239.024352pt;}
.ws1471_c00001{word-spacing:239.287872pt;}
.ws1472_c00001{word-spacing:239.293728pt;}
.ws1445_c00001{word-spacing:240.236800pt;}
.wsf80_c00001{word-spacing:240.318528pt;}
.ws41c_c00001{word-spacing:241.920000pt;}
.wsfae_c00001{word-spacing:245.220000pt;}
.ws52a_c00001{word-spacing:245.694336pt;}
.ws48d_c00001{word-spacing:245.729472pt;}
.ws14e1_c00001{word-spacing:245.793888pt;}
.ws1043_c00001{word-spacing:247.047072pt;}
.ws142f_c00001{word-spacing:248.851200pt;}
.ws1450_c00001{word-spacing:252.469728pt;}
.ws126c_c00001{word-spacing:254.782848pt;}
.ws1454_c00001{word-spacing:254.931200pt;}
.ws1541_c00001{word-spacing:255.238400pt;}
.ws110f_c00001{word-spacing:255.702240pt;}
.ws1030_c00001{word-spacing:258.240000pt;}
.ws1291_c00001{word-spacing:261.440000pt;}
.ws1021_c00001{word-spacing:261.760000pt;}
.ws10bc_c00001{word-spacing:262.080000pt;}
.wsfe2_c00001{word-spacing:262.720000pt;}
.ws1356_c00001{word-spacing:262.956864pt;}
.ws10a0_c00001{word-spacing:263.040000pt;}
.ws122c_c00001{word-spacing:263.360000pt;}
.ws10ae_c00001{word-spacing:264.000000pt;}
.ws113b_c00001{word-spacing:264.960000pt;}
.ws1175_c00001{word-spacing:265.280000pt;}
.ws11bd_c00001{word-spacing:265.600000pt;}
.ws11d2_c00001{word-spacing:265.920000pt;}
.ws1363_c00001{word-spacing:273.955392pt;}
.ws1082_c00001{word-spacing:276.807264pt;}
.wsf60_c00001{word-spacing:278.400000pt;}
.wsfa6_c00001{word-spacing:280.320000pt;}
.wsfc3_c00001{word-spacing:281.600000pt;}
.wsf71_c00001{word-spacing:284.480000pt;}
.ws1163_c00001{word-spacing:287.430048pt;}
.ws134f_c00001{word-spacing:288.021504pt;}
.wsfbf_c00001{word-spacing:299.206464pt;}
.ws146e_c00001{word-spacing:301.730400pt;}
.ws155e_c00001{word-spacing:308.195424pt;}
.ws1352_c00001{word-spacing:309.132800pt;}
.ws129b_c00001{word-spacing:310.438272pt;}
.ws1453_c00001{word-spacing:317.760000pt;}
.ws124f_c00001{word-spacing:318.759648pt;}
.ws8ce_c00001{word-spacing:319.620480pt;}
.wsb05_c00001{word-spacing:329.920000pt;}
.ws877_c00001{word-spacing:338.991296pt;}
.ws142e_c00001{word-spacing:349.760000pt;}
.ws102f_c00001{word-spacing:354.240000pt;}
.ws1290_c00001{word-spacing:357.440000pt;}
.ws1020_c00001{word-spacing:357.760000pt;}
.ws10bb_c00001{word-spacing:358.080000pt;}
.wsfe1_c00001{word-spacing:358.720000pt;}
.ws109f_c00001{word-spacing:359.040000pt;}
.ws122b_c00001{word-spacing:359.360000pt;}
.wsf8e_c00001{word-spacing:360.000000pt;}
.ws10dc_c00001{word-spacing:360.960000pt;}
.ws1174_c00001{word-spacing:361.280000pt;}
.ws11bc_c00001{word-spacing:361.600000pt;}
.ws11d1_c00001{word-spacing:361.920000pt;}
.ws4c0_c00001{word-spacing:370.175328pt;}
.wsf5f_c00001{word-spacing:374.400000pt;}
.wsfa5_c00001{word-spacing:376.320000pt;}
.wsfc2_c00001{word-spacing:377.600000pt;}
.wsf70_c00001{word-spacing:380.480000pt;}
.ws10c3_c00001{word-spacing:385.307232pt;}
.ws93d_c00001{word-spacing:399.291360pt;}
.ws963_c00001{word-spacing:409.246560pt;}
.ws366_c00001{word-spacing:531.798816pt;}
.ws1444_c00001{word-spacing:544.320000pt;}
.ws344_c00001{word-spacing:569.382048pt;}
.ws7e7_c00001{word-spacing:766.599232pt;}
.ws571_c00001{word-spacing:965.086368pt;}
.ws570_c00001{word-spacing:1004.169312pt;}
.ws150_c00001{word-spacing:1077.899040pt;}
._1b1_c00001{margin-left:-710.142144pt;}
._23b_c00001{margin-left:-314.885184pt;}
._1bb_c00001{margin-left:-245.758752pt;}
._25b_c00001{margin-left:-238.489984pt;}
._264_c00001{margin-left:-235.642688pt;}
._1e6_c00001{margin-left:-218.484160pt;}
._269_c00001{margin-left:-216.770816pt;}
._27c_c00001{margin-left:-212.143040pt;}
._1cc_c00001{margin-left:-211.026176pt;}
._1dd_c00001{margin-left:-208.114688pt;}
._267_c00001{margin-left:-203.642688pt;}
._256_c00001{margin-left:-200.323584pt;}
._2ac_c00001{margin-left:-199.015040pt;}
._29c_c00001{margin-left:-194.240000pt;}
._1e4_c00001{margin-left:-192.908352pt;}
._2a4_c00001{margin-left:-191.211520pt;}
._1dc_c00001{margin-left:-183.023424pt;}
._138_c00001{margin-left:-179.588608pt;}
._ee_c00001{margin-left:-176.031360pt;}
._ef_c00001{margin-left:-174.982240pt;}
._2d2_c00001{margin-left:-165.440288pt;}
._1e5_c00001{margin-left:-163.786464pt;}
._30b_c00001{margin-left:-162.405568pt;}
._2cc_c00001{margin-left:-160.105152pt;}
._136_c00001{margin-left:-154.211904pt;}
._2d9_c00001{margin-left:-152.445152pt;}
._1b7_c00001{margin-left:-150.996192pt;}
._280_c00001{margin-left:-148.143040pt;}
._353_c00001{margin-left:-133.440512pt;}
._2e7_c00001{margin-left:-130.773728pt;}
._290_c00001{margin-left:-129.583744pt;}
._30a_c00001{margin-left:-128.225152pt;}
._2ca_c00001{margin-left:-127.211520pt;}
._137_c00001{margin-left:-124.785504pt;}
._1c1_c00001{margin-left:-115.725536pt;}
._271_c00001{margin-left:-114.329600pt;}
._334_c00001{margin-left:-111.363552pt;}
._32c_c00001{margin-left:-110.263008pt;}
._352_c00001{margin-left:-108.800000pt;}
._337_c00001{margin-left:-106.771200pt;}
._341_c00001{margin-left:-102.714240pt;}
._1d7_c00001{margin-left:-100.537280pt;}
._32a_c00001{margin-left:-97.103680pt;}
._24a_c00001{margin-left:-96.061472pt;}
._38c_c00001{margin-left:-83.590400pt;}
._249_c00001{margin-left:-80.464608pt;}
._33f_c00001{margin-left:-73.281984pt;}
._32b_c00001{margin-left:-69.455968pt;}
._329_c00001{margin-left:-68.087968pt;}
._332_c00001{margin-left:-66.499904pt;}
._32d_c00001{margin-left:-64.090592pt;}
._246_c00001{margin-left:-60.506848pt;}
._32e_c00001{margin-left:-59.612320pt;}
._21b_c00001{margin-left:-58.153408pt;}
._ff_c00001{margin-left:-56.894272pt;}
._147_c00001{margin-left:-55.107616pt;}
._254_c00001{margin-left:-48.532608pt;}
._26f_c00001{margin-left:-43.838016pt;}
._242_c00001{margin-left:-39.846400pt;}
._243_c00001{margin-left:-37.509152pt;}
._7c_c00001{margin-left:-35.443200pt;}
._f0_c00001{margin-left:-34.538272pt;}
._248_c00001{margin-left:-32.960000pt;}
._336_c00001{margin-left:-31.782400pt;}
._33c_c00001{margin-left:-30.635584pt;}
._23f_c00001{margin-left:-28.160000pt;}
._150_c00001{margin-left:-26.656000pt;}
._125_c00001{margin-left:-25.638400pt;}
._77_c00001{margin-left:-24.517152pt;}
._244_c00001{margin-left:-22.988800pt;}
._333_c00001{margin-left:-22.014208pt;}
._32f_c00001{margin-left:-21.119488pt;}
._247_c00001{margin-left:-20.005152pt;}
._1b8_c00001{margin-left:-17.991648pt;}
._80_c00001{margin-left:-16.890848pt;}
._241_c00001{margin-left:-15.968000pt;}
._23d_c00001{margin-left:-13.836800pt;}
._13c_c00001{margin-left:-12.837152pt;}
._214_c00001{margin-left:-11.112352pt;}
._262_c00001{margin-left:-9.762912pt;}
._5b_c00001{margin-left:-8.172800pt;}
._1f4_c00001{margin-left:-5.593600pt;}
._1f5_c00001{margin-left:-4.659200pt;}
._89_c00001{margin-left:-3.033600pt;}
._4_c00001{margin-left:-1.914848pt;}
._3_c00001{margin-left:-0.977952pt;}
._0_c00001{width:1.162560pt;}
._44_c00001{width:2.803200pt;}
._f6_c00001{width:4.160000pt;}
._7_c00001{width:5.203200pt;}
._42_c00001{width:6.540608pt;}
._8_c00001{width:7.680000pt;}
._3c_c00001{width:9.280000pt;}
._43_c00001{width:10.560000pt;}
._35_c00001{width:11.610816pt;}
._6_c00001{width:13.120000pt;}
._f7_c00001{width:14.080000pt;}
._23e_c00001{width:15.040000pt;}
._91_c00001{width:16.307264pt;}
._5_c00001{width:17.742048pt;}
._5a_c00001{width:19.658880pt;}
._24f_c00001{width:20.719040pt;}
._de_c00001{width:21.743328pt;}
._331_c00001{width:22.670784pt;}
._22e_c00001{width:24.117920pt;}
._240_c00001{width:25.235200pt;}
._20e_c00001{width:26.240000pt;}
._8b_c00001{width:27.662048pt;}
._23c_c00001{width:29.158400pt;}
._8f_c00001{width:30.385088pt;}
._123_c00001{width:32.000000pt;}
._c5_c00001{width:33.280320pt;}
._1e9_c00001{width:35.814400pt;}
._245_c00001{width:37.248000pt;}
._8e_c00001{width:38.538336pt;}
._8c_c00001{width:39.497024pt;}
._2cb_c00001{width:40.774144pt;}
._2a_c00001{width:42.022400pt;}
._394_c00001{width:43.051936pt;}
._1e_c00001{width:43.956352pt;}
._a1_c00001{width:45.551168pt;}
._21_c00001{width:46.639040pt;}
._261_c00001{width:47.904800pt;}
._45_c00001{width:49.034816pt;}
._25d_c00001{width:50.006176pt;}
._9_c00001{width:51.100800pt;}
._a9_c00001{width:52.276352pt;}
._c_c00001{width:53.280000pt;}
._ab_c00001{width:54.959040pt;}
._a2_c00001{width:56.515456pt;}
._389_c00001{width:57.451936pt;}
._4b_c00001{width:58.481344pt;}
._d0_c00001{width:59.594816pt;}
._92_c00001{width:60.611648pt;}
._29_c00001{width:62.141728pt;}
._16e_c00001{width:63.733440pt;}
._3d_c00001{width:65.004864pt;}
._ec_c00001{width:66.272640pt;}
._7d_c00001{width:67.594816pt;}
._259_c00001{width:68.532640pt;}
._d8_c00001{width:69.584160pt;}
._a3_c00001{width:71.040320pt;}
._1cb_c00001{width:71.973632pt;}
._1da_c00001{width:73.323040pt;}
._82_c00001{width:74.584064pt;}
._7e_c00001{width:76.256576pt;}
._84_c00001{width:77.365664pt;}
._24e_c00001{width:78.374400pt;}
._1d_c00001{width:79.691936pt;}
._18_c00001{width:81.076352pt;}
._28f_c00001{width:82.409728pt;}
._1a_c00001{width:83.759040pt;}
._253_c00001{width:84.900128pt;}
._fc_c00001{width:86.053376pt;}
._144_c00001{width:87.610528pt;}
._14_c00001{width:88.860800pt;}
._55_c00001{width:90.023712pt;}
._16_c00001{width:91.040000pt;}
._1d3_c00001{width:92.149056pt;}
._f5_c00001{width:93.386400pt;}
._12d_c00001{width:94.960000pt;}
._263_c00001{width:96.299648pt;}
._1ce_c00001{width:97.619200pt;}
._1c6_c00001{width:99.222912pt;}
._1be_c00001{width:100.400000pt;}
._fa_c00001{width:102.181088pt;}
._fd_c00001{width:103.500640pt;}
._12e_c00001{width:105.269056pt;}
._95_c00001{width:106.385504pt;}
._d6_c00001{width:107.343648pt;}
._4a_c00001{width:108.277440pt;}
._da_c00001{width:109.191008pt;}
._159_c00001{width:110.553664pt;}
._c3_c00001{width:111.452608pt;}
._152_c00001{width:113.008224pt;}
._d3_c00001{width:113.956640pt;}
._fb_c00001{width:115.134080pt;}
._250_c00001{width:116.388160pt;}
._34_c00001{width:117.436224pt;}
._71_c00001{width:118.772864pt;}
._176_c00001{width:120.323232pt;}
._2_c00001{width:121.519040pt;}
._69_c00001{width:122.760800pt;}
._130_c00001{width:124.613120pt;}
._9e_c00001{width:125.853984pt;}
._73_c00001{width:127.381440pt;}
._131_c00001{width:129.504864pt;}
._1bf_c00001{width:131.048544pt;}
._2aa_c00001{width:132.428800pt;}
._1c7_c00001{width:133.545536pt;}
._172_c00001{width:135.109632pt;}
._350_c00001{width:136.000000pt;}
._f1_c00001{width:137.552608pt;}
._145_c00001{width:138.863328pt;}
._3b_c00001{width:140.324160pt;}
._178_c00001{width:141.332704pt;}
._1c5_c00001{width:143.182944pt;}
._c7_c00001{width:144.656128pt;}
._dd_c00001{width:146.420736pt;}
._46_c00001{width:148.063104pt;}
._1b2_c00001{width:149.155520pt;}
._156_c00001{width:150.132672pt;}
._1b3_c00001{width:151.378880pt;}
._146_c00001{width:153.292512pt;}
._d7_c00001{width:155.269152pt;}
._f3_c00001{width:156.409888pt;}
._317_c00001{width:157.354752pt;}
._a8_c00001{width:159.031392pt;}
._284_c00001{width:159.942816pt;}
._139_c00001{width:160.866304pt;}
._339_c00001{width:161.995456pt;}
._f2_c00001{width:163.348096pt;}
._216_c00001{width:165.027936pt;}
._cf_c00001{width:167.143680pt;}
._c4_c00001{width:168.700864pt;}
._251_c00001{width:170.145920pt;}
._88_c00001{width:171.293984pt;}
._1c_c00001{width:172.992000pt;}
._1c9_c00001{width:173.920768pt;}
._ed_c00001{width:174.841376pt;}
._68_c00001{width:175.874656pt;}
._33b_c00001{width:177.021760pt;}
._e8_c00001{width:178.446784pt;}
._1b_c00001{width:180.198400pt;}
._200_c00001{width:181.138528pt;}
._49_c00001{width:182.115744pt;}
._1ca_c00001{width:183.507008pt;}
._224_c00001{width:185.145600pt;}
._30_c00001{width:186.882336pt;}
._1c8_c00001{width:188.236736pt;}
._335_c00001{width:189.586080pt;}
._9f_c00001{width:190.823680pt;}
._320_c00001{width:192.844064pt;}
._52_c00001{width:194.365920pt;}
._30f_c00001{width:195.366400pt;}
._211_c00001{width:196.850176pt;}
._303_c00001{width:197.957824pt;}
._d5_c00001{width:199.101184pt;}
._19f_c00001{width:201.159808pt;}
._272_c00001{width:202.233536pt;}
._7f_c00001{width:203.284928pt;}
._313_c00001{width:204.603776pt;}
._90_c00001{width:205.541248pt;}
._19e_c00001{width:206.560000pt;}
._1b5_c00001{width:207.666208pt;}
._38e_c00001{width:209.168064pt;}
._1b4_c00001{width:210.520320pt;}
._316_c00001{width:211.466560pt;}
._ca_c00001{width:212.583680pt;}
._175_c00001{width:213.890400pt;}
._174_c00001{width:215.330976pt;}
._343_c00001{width:216.471008pt;}
._1ab_c00001{width:217.600000pt;}
._93_c00001{width:218.605056pt;}
._2f7_c00001{width:219.670496pt;}
._1d9_c00001{width:220.841472pt;}
._1a6_c00001{width:221.865440pt;}
._31_c00001{width:223.125120pt;}
._340_c00001{width:224.647872pt;}
._1f6_c00001{width:225.903136pt;}
._198_c00001{width:227.015936pt;}
._d9_c00001{width:228.188064pt;}
._25c_c00001{width:229.195808pt;}
._265_c00001{width:230.566400pt;}
._285_c00001{width:231.684672pt;}
._124_c00001{width:232.669664pt;}
._129_c00001{width:235.247232pt;}
._12_c00001{width:236.526784pt;}
._1d4_c00001{width:237.648192pt;}
._13a_c00001{width:239.410411pt;}
._143_c00001{width:240.371168pt;}
._153_c00001{width:242.282752pt;}
._35d_c00001{width:243.255008pt;}
._1f8_c00001{width:244.307136pt;}
._1b6_c00001{width:245.292864pt;}
._b0_c00001{width:246.976896pt;}
._4f_c00001{width:248.340672pt;}
._375_c00001{width:250.100864pt;}
._165_c00001{width:251.105280pt;}
._182_c00001{width:253.276704pt;}
._2da_c00001{width:254.244064pt;}
._27d_c00001{width:255.206400pt;}
._1c0_c00001{width:256.322976pt;}
._298_c00001{width:258.080000pt;}
._173_c00001{width:259.215840pt;}
._310_c00001{width:260.480000pt;}
._81_c00001{width:261.413312pt;}
._2b_c00001{width:262.937600pt;}
._21c_c00001{width:264.449504pt;}
._312_c00001{width:265.789792pt;}
._c2_c00001{width:267.107072pt;}
._7a_c00001{width:268.178208pt;}
._201_c00001{width:269.259616pt;}
._207_c00001{width:270.547936pt;}
._177_c00001{width:272.227872pt;}
._34c_c00001{width:273.306176pt;}
._33e_c00001{width:274.527168pt;}
._2e1_c00001{width:275.790688pt;}
._24_c00001{width:277.287616pt;}
._197_c00001{width:278.214944pt;}
._19b_c00001{width:279.596960pt;}
._1d5_c00001{width:280.619520pt;}
._19d_c00001{width:282.311168pt;}
._18a_c00001{width:284.060800pt;}
._83_c00001{width:285.608064pt;}
._17c_c00001{width:287.514432pt;}
._28c_c00001{width:288.598208pt;}
._25a_c00001{width:289.496320pt;}
._25e_c00001{width:290.679616pt;}
._1c3_c00001{width:292.037152pt;}
._e7_c00001{width:293.556352pt;}
._32_c00001{width:294.866976pt;}
._2f6_c00001{width:295.997600pt;}
._47_c00001{width:296.975328pt;}
._270_c00001{width:298.009600pt;}
._d4_c00001{width:299.121344pt;}
._d1_c00001{width:300.124736pt;}
._257_c00001{width:301.239616pt;}
._1_c00001{width:302.620800pt;}
._20f_c00001{width:303.558208pt;}
._180_c00001{width:304.660800pt;}
._29b_c00001{width:305.795552pt;}
._58_c00001{width:307.474560pt;}
._eb_c00001{width:308.803584pt;}
._1f7_c00001{width:310.316032pt;}
._1cf_c00001{width:311.989632pt;}
._319_c00001{width:312.924992pt;}
._281_c00001{width:314.696992pt;}
._54_c00001{width:315.672960pt;}
._21a_c00001{width:316.648640pt;}
._48_c00001{width:317.559168pt;}
._35a_c00001{width:318.575040pt;}
._209_c00001{width:319.894560pt;}
._d2_c00001{width:321.346880pt;}
._2dc_c00001{width:322.996352pt;}
._9b_c00001{width:323.898048pt;}
._210_c00001{width:324.997024pt;}
._db_c00001{width:325.909920pt;}
._79_c00001{width:326.954880pt;}
._1db_c00001{width:327.988704pt;}
._31a_c00001{width:329.520160pt;}
._19_c00001{width:330.694400pt;}
._157_c00001{width:332.593984pt;}
._f8_c00001{width:334.475200pt;}
._67_c00001{width:336.065600pt;}
._2ba_c00001{width:337.063680pt;}
._37_c00001{width:338.819136pt;}
._1a0_c00001{width:340.320000pt;}
._dc_c00001{width:345.108960pt;}
._17f_c00001{width:346.179840pt;}
._2c4_c00001{width:347.132928pt;}
._11a_c00001{width:348.443520pt;}
._17b_c00001{width:351.321408pt;}
._59_c00001{width:352.518912pt;}
._10_c00001{width:354.132896pt;}
._2c_c00001{width:355.943680pt;}
._1d8_c00001{width:357.087168pt;}
._26_c00001{width:358.395456pt;}
._e1_c00001{width:361.277952pt;}
._17e_c00001{width:362.535648pt;}
._b_c00001{width:363.660800pt;}
._fe_c00001{width:365.054336pt;}
._60_c00001{width:366.396544pt;}
._1fa_c00001{width:368.259264pt;}
._97_c00001{width:369.211584pt;}
._65_c00001{width:370.159232pt;}
._7b_c00001{width:372.116352pt;}
._4e_c00001{width:373.079328pt;}
._34a_c00001{width:374.155520pt;}
._2b8_c00001{width:375.779456pt;}
._2ce_c00001{width:376.876832pt;}
._275_c00001{width:378.036800pt;}
._2d_c00001{width:379.436544pt;}
._99_c00001{width:381.017280pt;}
._155_c00001{width:382.451904pt;}
._1f3_c00001{width:384.065760pt;}
._15_c00001{width:385.578816pt;}
._20_c00001{width:386.983680pt;}
._b8_c00001{width:388.074528pt;}
._17d_c00001{width:389.408832pt;}
._302_c00001{width:392.742880pt;}
._4c_c00001{width:393.806144pt;}
._255_c00001{width:396.574784pt;}
._1a1_c00001{width:398.880000pt;}
._13_c00001{width:399.956096pt;}
._39_c00001{width:401.431488pt;}
._206_c00001{width:402.413280pt;}
._cd_c00001{width:403.475584pt;}
._e2_c00001{width:404.811456pt;}
._252_c00001{width:406.521088pt;}
._122_c00001{width:407.614336pt;}
._2fa_c00001{width:409.123808pt;}
._283_c00001{width:411.147648pt;}
._33d_c00001{width:413.782848pt;}
._38_c00001{width:415.357056pt;}
._342_c00001{width:416.564672pt;}
._f_c00001{width:419.655680pt;}
._171_c00001{width:421.239648pt;}
._21f_c00001{width:422.274080pt;}
._357_c00001{width:423.723456pt;}
._8a_c00001{width:424.677152pt;}
._212_c00001{width:426.200416pt;}
._22f_c00001{width:427.152032pt;}
._6c_c00001{width:428.555264pt;}
._1f9_c00001{width:430.006816pt;}
._df_c00001{width:431.043264pt;}
._85_c00001{width:431.962112pt;}
._141_c00001{width:433.703936pt;}
._a6_c00001{width:434.910208pt;}
._23a_c00001{width:436.843072pt;}
._28a_c00001{width:438.009600pt;}
._22c_c00001{width:439.103840pt;}
._196_c00001{width:440.320736pt;}
._6a_c00001{width:442.012352pt;}
._167_c00001{width:443.802816pt;}
._50_c00001{width:445.324800pt;}
._51_c00001{width:446.572128pt;}
._2ef_c00001{width:447.650432pt;}
._34d_c00001{width:449.596352pt;}
._cb_c00001{width:451.008736pt;}
._140_c00001{width:453.019520pt;}
._37d_c00001{width:455.177408pt;}
._18d_c00001{width:458.351360pt;}
._5c_c00001{width:459.305120pt;}
._2f3_c00001{width:460.445792pt;}
._31d_c00001{width:462.225760pt;}
._27f_c00001{width:463.647168pt;}
._374_c00001{width:464.992640pt;}
._e5_c00001{width:466.557120pt;}
._162_c00001{width:468.563200pt;}
._18f_c00001{width:469.899392pt;}
._9d_c00001{width:472.195392pt;}
._a7_c00001{width:473.641792pt;}
._2f_c00001{width:475.492512pt;}
._2e9_c00001{width:476.672768pt;}
._70_c00001{width:478.682624pt;}
._126_c00001{width:481.280000pt;}
._b5_c00001{width:482.477984pt;}
._322_c00001{width:483.407072pt;}
._166_c00001{width:485.070048pt;}
._3a_c00001{width:486.917376pt;}
._e_c00001{width:488.448896pt;}
._94_c00001{width:490.264064pt;}
._274_c00001{width:491.971136pt;}
._2f2_c00001{width:492.905600pt;}
._19c_c00001{width:493.920000pt;}
._158_c00001{width:495.683584pt;}
._378_c00001{width:497.406240pt;}
._2d4_c00001{width:498.387264pt;}
._1ea_c00001{width:500.686880pt;}
._306_c00001{width:501.746464pt;}
._15a_c00001{width:502.730880pt;}
._53_c00001{width:503.873088pt;}
._154_c00001{width:505.814464pt;}
._2a8_c00001{width:506.801344pt;}
._a5_c00001{width:508.555264pt;}
._307_c00001{width:510.290368pt;}
._1d6_c00001{width:511.492320pt;}
._1c2_c00001{width:512.786496pt;}
._289_c00001{width:513.733536pt;}
._2f0_c00001{width:514.842176pt;}
._31e_c00001{width:515.761344pt;}
._87_c00001{width:517.635392pt;}
._34e_c00001{width:518.946176pt;}
._31f_c00001{width:519.895808pt;}
._26c_c00001{width:521.252320pt;}
._2d5_c00001{width:522.585952pt;}
._31b_c00001{width:524.114976pt;}
._17a_c00001{width:525.153248pt;}
._2b1_c00001{width:526.911104pt;}
._26d_c00001{width:528.103840pt;}
._c8_c00001{width:529.716352pt;}
._28e_c00001{width:530.655840pt;}
._ae_c00001{width:531.667808pt;}
._1a2_c00001{width:532.810400pt;}
._168_c00001{width:534.769280pt;}
._63_c00001{width:536.627744pt;}
._128_c00001{width:537.550688pt;}
._62_c00001{width:539.397632pt;}
._349_c00001{width:540.943040pt;}
._c9_c00001{width:543.153952pt;}
._2ab_c00001{width:545.327040pt;}
._199_c00001{width:546.267488pt;}
._61_c00001{width:547.549184pt;}
._78_c00001{width:549.354048pt;}
._72_c00001{width:551.215040pt;}
._2dd_c00001{width:552.497728pt;}
._311_c00001{width:553.603264pt;}
._215_c00001{width:555.481600pt;}
._20a_c00001{width:556.544000pt;}
._391_c00001{width:557.655808pt;}
._6b_c00001{width:559.085504pt;}
._16f_c00001{width:560.384064pt;}
._1e3_c00001{width:562.118400pt;}
._18b_c00001{width:563.560256pt;}
._385_c00001{width:564.675392pt;}
._1ac_c00001{width:565.632000pt;}
._279_c00001{width:567.171136pt;}
._142_c00001{width:568.916256pt;}
._25_c00001{width:570.655488pt;}
._276_c00001{width:572.174912pt;}
._5d_c00001{width:573.256960pt;}
._151_c00001{width:575.784672pt;}
._12b_c00001{width:578.790400pt;}
._393_c00001{width:579.785600pt;}
._36_c00001{width:581.152128pt;}
._a_c00001{width:583.658816pt;}
._bf_c00001{width:585.553056pt;}
._d_c00001{width:586.586816pt;}
._5f_c00001{width:587.920448pt;}
._315_c00001{width:588.956672pt;}
._b7_c00001{width:592.364960pt;}
._11_c00001{width:593.438336pt;}
._24c_c00001{width:595.078400pt;}
._395_c00001{width:596.135552pt;}
._e9_c00001{width:597.308352pt;}
._98_c00001{width:599.282112pt;}
._e6_c00001{width:602.334336pt;}
._102_c00001{width:604.537472pt;}
._2f4_c00001{width:607.138592pt;}
._38d_c00001{width:608.511360pt;}
._e4_c00001{width:609.777312pt;}
._344_c00001{width:610.702784pt;}
._226_c00001{width:612.193920pt;}
._2e3_c00001{width:614.852032pt;}
._2b7_c00001{width:616.566464pt;}
._164_c00001{width:617.595008pt;}
._323_c00001{width:618.595616pt;}
._222_c00001{width:619.680000pt;}
._2bd_c00001{width:620.970144pt;}
._355_c00001{width:622.595392pt;}
._345_c00001{width:624.696320pt;}
._57_c00001{width:625.736448pt;}
._6d_c00001{width:627.173216pt;}
._76_c00001{width:629.228672pt;}
._2ee_c00001{width:631.060352pt;}
._324_c00001{width:632.315008pt;}
._1e8_c00001{width:634.867200pt;}
._2f1_c00001{width:636.863584pt;}
._5e_c00001{width:637.959904pt;}
._24d_c00001{width:639.244800pt;}
._191_c00001{width:640.882880pt;}
._2e_c00001{width:642.280032pt;}
._c6_c00001{width:644.336896pt;}
._364_c00001{width:645.599648pt;}
._ad_c00001{width:646.661696pt;}
._2b4_c00001{width:648.938432pt;}
._36d_c00001{width:650.508544pt;}
._14c_c00001{width:651.684960pt;}
._4d_c00001{width:653.400192pt;}
._1a7_c00001{width:655.470176pt;}
._325_c00001{width:656.780864pt;}
._31c_c00001{width:657.883648pt;}
._2fd_c00001{width:659.843968pt;}
._348_c00001{width:661.656320pt;}
._19a_c00001{width:663.340640pt;}
._2a9_c00001{width:665.127424pt;}
._1d0_c00001{width:667.742496pt;}
._1ef_c00001{width:669.249952pt;}
._1ee_c00001{width:670.690528pt;}
._30c_c00001{width:673.874656pt;}
._22_c00001{width:675.163488pt;}
._2ae_c00001{width:676.750272pt;}
._2bf_c00001{width:678.271104pt;}
._e0_c00001{width:680.605632pt;}
._2ec_c00001{width:682.124672pt;}
._14f_c00001{width:683.302400pt;}
._75_c00001{width:684.737696pt;}
._346_c00001{width:685.970432pt;}
._368_c00001{width:687.018432pt;}
._29f_c00001{width:690.708256pt;}
._18e_c00001{width:692.175584pt;}
._30d_c00001{width:693.183808pt;}
._149_c00001{width:694.163200pt;}
._1f1_c00001{width:695.631232pt;}
._321_c00001{width:697.051520pt;}
._10e_c00001{width:698.491136pt;}
._36f_c00001{width:699.876800pt;}
._15c_c00001{width:700.786667pt;}
._2e0_c00001{width:702.054112pt;}
._387_c00001{width:704.305600pt;}
._309_c00001{width:707.406400pt;}
._af_c00001{width:710.136032pt;}
._b1_c00001{width:711.895904pt;}
._14d_c00001{width:713.249088pt;}
._1ed_c00001{width:714.575392pt;}
._370_c00001{width:716.238464pt;}
._383_c00001{width:718.387040pt;}
._cc_c00001{width:720.141568pt;}
._26b_c00001{width:721.233696pt;}
._2de_c00001{width:722.473984pt;}
._2c8_c00001{width:724.458432pt;}
._6f_c00001{width:728.171648pt;}
._1a3_c00001{width:730.450400pt;}
._2f5_c00001{width:731.748416pt;}
._1a9_c00001{width:733.483808pt;}
._366_c00001{width:734.508224pt;}
._a0_c00001{width:737.135296pt;}
._132_c00001{width:740.690304pt;}
._18c_c00001{width:742.215040pt;}
._e3_c00001{width:743.941056pt;}
._ea_c00001{width:745.860288pt;}
._27_c00001{width:747.708288pt;}
._66_c00001{width:750.851872pt;}
._2eb_c00001{width:752.059808pt;}
._64_c00001{width:754.113728pt;}
._38b_c00001{width:756.167360pt;}
._377_c00001{width:757.171904pt;}
._189_c00001{width:759.821856pt;}
._361_c00001{width:762.218432pt;}
._b6_c00001{width:763.716672pt;}
._aa_c00001{width:765.341248pt;}
._2c3_c00001{width:767.926464pt;}
._12f_c00001{width:769.595520pt;}
._ce_c00001{width:773.422528pt;}
._2d6_c00001{width:774.895296pt;}
._2b9_c00001{width:776.315072pt;}
._301_c00001{width:778.287424pt;}
._347_c00001{width:779.215520pt;}
._1af_c00001{width:781.893120pt;}
._2a6_c00001{width:783.852992pt;}
._108_c00001{width:784.890560pt;}
._208_c00001{width:785.963776pt;}
._2df_c00001{width:787.147648pt;}
._1a8_c00001{width:788.992832pt;}
._21e_c00001{width:791.084800pt;}
._29a_c00001{width:794.352640pt;}
._34f_c00001{width:795.443072pt;}
._2e2_c00001{width:797.488960pt;}
._135_c00001{width:799.039488pt;}
._1f2_c00001{width:800.081856pt;}
._2d0_c00001{width:802.150208pt;}
._382_c00001{width:803.359488pt;}
._106_c00001{width:805.491968pt;}
._365_c00001{width:807.957248pt;}
._112_c00001{width:809.333504pt;}
._134_c00001{width:811.360512pt;}
._27a_c00001{width:812.396992pt;}
._29e_c00001{width:814.978432pt;}
._292_c00001{width:816.111136pt;}
._1f0_c00001{width:817.289632pt;}
._8d_c00001{width:818.348224pt;}
._3f_c00001{width:821.412928pt;}
._187_c00001{width:823.517568pt;}
._2bc_c00001{width:827.470272pt;}
._193_c00001{width:829.395200pt;}
._327_c00001{width:830.365536pt;}
._35c_c00001{width:831.284352pt;}
._1a5_c00001{width:832.426784pt;}
._119_c00001{width:833.460224pt;}
._2af_c00001{width:834.399648pt;}
._295_c00001{width:836.357088pt;}
._282_c00001{width:837.955392pt;}
._379_c00001{width:839.100384pt;}
._41_c00001{width:843.488000pt;}
._c0_c00001{width:845.125472pt;}
._299_c00001{width:846.313280pt;}
._14e_c00001{width:849.711456pt;}
._2f8_c00001{width:850.891520pt;}
._195_c00001{width:853.192160pt;}
._113_c00001{width:855.420224pt;}
._74_c00001{width:857.044576pt;}
._192_c00001{width:858.368864pt;}
._390_c00001{width:859.461632pt;}
._384_c00001{width:864.850816pt;}
._6e_c00001{width:866.021888pt;}
._96_c00001{width:867.885120pt;}
._225_c00001{width:869.913600pt;}
._367_c00001{width:871.839648pt;}
._185_c00001{width:872.953920pt;}
._11f_c00001{width:874.253120pt;}
._bc_c00001{width:876.282688pt;}
._188_c00001{width:877.509888pt;}
._308_c00001{width:878.981344pt;}
._294_c00001{width:880.165824pt;}
._22b_c00001{width:881.770528pt;}
._2b3_c00001{width:883.857728pt;}
._181_c00001{width:886.077216pt;}
._11d_c00001{width:887.030912pt;}
._304_c00001{width:889.003744pt;}
._2c9_c00001{width:890.604864pt;}
._234_c00001{width:892.391072pt;}
._1bc_c00001{width:895.616000pt;}
._23_c00001{width:896.533344pt;}
._30e_c00001{width:897.875264pt;}
._296_c00001{width:899.868800pt;}
._ac_c00001{width:901.087840pt;}
._1fe_c00001{width:905.343019pt;}
._28d_c00001{width:908.256576pt;}
._2c5_c00001{width:909.279648pt;}
._f4_c00001{width:910.398496pt;}
._111_c00001{width:912.943712pt;}
._2bb_c00001{width:914.850432pt;}
._184_c00001{width:917.974848pt;}
._186_c00001{width:921.418176pt;}
._34b_c00001{width:922.723520pt;}
._1b9_c00001{width:923.679424pt;}
._20b_c00001{width:927.571200pt;}
._1de_c00001{width:929.600000pt;}
._2a7_c00001{width:934.817600pt;}
._36a_c00001{width:936.217408pt;}
._2e6_c00001{width:937.254112pt;}
._388_c00001{width:938.955520pt;}
._133_c00001{width:944.438112pt;}
._239_c00001{width:947.229920pt;}
._38f_c00001{width:949.749440pt;}
._170_c00001{width:951.453536pt;}
._f9_c00001{width:952.640000pt;}
._183_c00001{width:953.719872pt;}
._380_c00001{width:955.701440pt;}
._2e4_c00001{width:957.673984pt;}
._15b_c00001{width:959.045867pt;}
._286_c00001{width:960.803520pt;}
._20d_c00001{width:962.387200pt;}
._2ea_c00001{width:963.868544pt;}
._2b2_c00001{width:966.239936pt;}
._392_c00001{width:967.556224pt;}
._10f_c00001{width:969.190592pt;}
._1a4_c00001{width:970.277024pt;}
._56_c00001{width:973.081024pt;}
._2a0_c00001{width:974.624704pt;}
._11e_c00001{width:978.741728pt;}
._3e_c00001{width:980.446016pt;}
._376_c00001{width:983.301344pt;}
._203_c00001{width:985.600000pt;}
._300_c00001{width:988.307008pt;}
._291_c00001{width:992.755840pt;}
._a4_c00001{width:994.937056pt;}
._2b0_c00001{width:996.117248pt;}
._1aa_c00001{width:997.721600pt;}
._2c7_c00001{width:999.350784pt;}
._2fc_c00001{width:1000.730368pt;}
._40_c00001{width:1001.625472pt;}
._33_c00001{width:1003.392000pt;}
._110_c00001{width:1009.482656pt;}
._277_c00001{width:1011.396800pt;}
._14a_c00001{width:1016.358400pt;}
._9a_c00001{width:1020.012288pt;}
._2e5_c00001{width:1022.347648pt;}
._c1_c00001{width:1026.155904pt;}
._297_c00001{width:1027.228544pt;}
._38a_c00001{width:1028.124480pt;}
._2d7_c00001{width:1031.777952pt;}
._1ec_c00001{width:1033.510720pt;}
._190_c00001{width:1035.372320pt;}
._35f_c00001{width:1037.110784pt;}
._386_c00001{width:1038.247040pt;}
._2d1_c00001{width:1039.986784pt;}
._b2_c00001{width:1041.971712pt;}
._161_c00001{width:1044.480000pt;}
._1f_c00001{width:1045.523200pt;}
._2c6_c00001{width:1048.857408pt;}
._118_c00001{width:1052.849408pt;}
._213_c00001{width:1054.507552pt;}
._114_c00001{width:1055.689568pt;}
._28_c00001{width:1059.715360pt;}
._37f_c00001{width:1067.428064pt;}
._27b_c00001{width:1071.736320pt;}
._1fb_c00001{width:1074.007531pt;}
._2c0_c00001{width:1075.190784pt;}
._37a_c00001{width:1076.708064pt;}
._9c_c00001{width:1077.746784pt;}
._360_c00001{width:1079.519936pt;}
._35e_c00001{width:1086.617408pt;}
._bb_c00001{width:1089.437120pt;}
._373_c00001{width:1092.627008pt;}
._2e8_c00001{width:1095.675392pt;}
._359_c00001{width:1097.100160pt;}
._258_c00001{width:1099.307648pt;}
._2ed_c00001{width:1100.512448pt;}
._20c_c00001{width:1103.411200pt;}
._2cf_c00001{width:1105.906784pt;}
._1e7_c00001{width:1109.094400pt;}
._26e_c00001{width:1110.995200pt;}
._338_c00001{width:1112.824864pt;}
._227_c00001{width:1114.810112pt;}
._2a1_c00001{width:1119.513856pt;}
._10d_c00001{width:1121.516864pt;}
._86_c00001{width:1123.186784pt;}
._b9_c00001{width:1124.087616pt;}
._2d8_c00001{width:1125.286272pt;}
._1ae_c00001{width:1128.217600pt;}
._1e0_c00001{width:1132.633600pt;}
._2fb_c00001{width:1133.699776pt;}
._2ff_c00001{width:1137.374272pt;}
._36c_c00001{width:1138.664704pt;}
._2fe_c00001{width:1143.748672pt;}
._2a3_c00001{width:1145.608192pt;}
._2be_c00001{width:1147.477248pt;}
._15f_c00001{width:1149.049600pt;}
._305_c00001{width:1150.667392pt;}
._36e_c00001{width:1151.957824pt;}
._2c1_c00001{width:1153.210272pt;}
._1fc_c00001{width:1156.296043pt;}
._2b5_c00001{width:1159.347392pt;}
._328_c00001{width:1161.520000pt;}
._2d3_c00001{width:1165.701248pt;}
._36b_c00001{width:1166.847040pt;}
._1ff_c00001{width:1168.159904pt;}
._b3_c00001{width:1170.623168pt;}
._330_c00001{width:1175.522272pt;}
._372_c00001{width:1176.537632pt;}
._179_c00001{width:1184.371200pt;}
._273_c00001{width:1186.835200pt;}
._25f_c00001{width:1189.241600pt;}
._223_c00001{width:1190.336000pt;}
._b4_c00001{width:1191.888640pt;}
._314_c00001{width:1194.880000pt;}
._ba_c00001{width:1196.236960pt;}
._17_c00001{width:1197.600000pt;}
._37e_c00001{width:1199.234912pt;}
._2cd_c00001{width:1203.445952pt;}
._2b6_c00001{width:1205.129600pt;}
._2f9_c00001{width:1209.211520pt;}
._16a_c00001{width:1211.520000pt;}
._37c_c00001{width:1213.351968pt;}
._1fd_c00001{width:1214.674507pt;}
._381_c00001{width:1217.365088pt;}
._37b_c00001{width:1218.563808pt;}
._2ad_c00001{width:1222.661248pt;}
._33a_c00001{width:1224.710464pt;}
._148_c00001{width:1228.211200pt;}
._278_c00001{width:1235.360000pt;}
._318_c00001{width:1236.435200pt;}
._10c_c00001{width:1237.430528pt;}
._268_c00001{width:1238.995200pt;}
._287_c00001{width:1240.915200pt;}
._369_c00001{width:1243.209600pt;}
._371_c00001{width:1248.068672pt;}
._288_c00001{width:1249.879232pt;}
._230_c00001{width:1256.321312pt;}
._2a2_c00001{width:1259.852896pt;}
._35b_c00001{width:1267.456000pt;}
._231_c00001{width:1270.875296pt;}
._362_c00001{width:1272.627392pt;}
._120_c00001{width:1275.272640pt;}
._219_c00001{width:1280.345600pt;}
._238_c00001{width:1282.574272pt;}
._220_c00001{width:1284.108800pt;}
._1e1_c00001{width:1289.177600pt;}
._22d_c00001{width:1290.105152pt;}
._101_c00001{width:1294.849248pt;}
._266_c00001{width:1300.281600pt;}
._354_c00001{width:1301.751264pt;}
._1ad_c00001{width:1305.664000pt;}
._1e2_c00001{width:1307.347200pt;}
._205_c00001{width:1311.008000pt;}
._293_c00001{width:1312.830528pt;}
._237_c00001{width:1313.982240pt;}
._363_c00001{width:1318.409600pt;}
._29d_c00001{width:1325.867648pt;}
._16b_c00001{width:1332.076800pt;}
._bd_c00001{width:1339.998336pt;}
._358_c00001{width:1349.875840pt;}
._2c2_c00001{width:1356.489600pt;}
._260_c00001{width:1363.627648pt;}
._107_c00001{width:1370.104704pt;}
._351_c00001{width:1376.815040pt;}
._326_c00001{width:1379.795200pt;}
._be_c00001{width:1380.952320pt;}
._26a_c00001{width:1382.995200pt;}
._202_c00001{width:1390.668800pt;}
._27e_c00001{width:1401.707648pt;}
._10b_c00001{width:1403.161824pt;}
._115_c00001{width:1405.099520pt;}
._1eb_c00001{width:1406.813088pt;}
._109_c00001{width:1411.236608pt;}
._28b_c00001{width:1413.395200pt;}
._160_c00001{width:1446.521600pt;}
._10a_c00001{width:1448.047424pt;}
._204_c00001{width:1469.056000pt;}
._2db_c00001{width:1470.872800pt;}
._116_c00001{width:1481.011488pt;}
._103_c00001{width:1488.418688pt;}
._1df_c00001{width:1513.600000pt;}
._2a5_c00001{width:1514.987648pt;}
._356_c00001{width:1528.711360pt;}
._218_c00001{width:1531.456000pt;}
._104_c00001{width:1537.292864pt;}
._228_c00001{width:1546.496864pt;}
._105_c00001{width:1555.018912pt;}
._229_c00001{width:1562.583296pt;}
._221_c00001{width:1570.579200pt;}
._100_c00001{width:1592.256000pt;}
._12a_c00001{width:1632.804864pt;}
._217_c00001{width:1647.283200pt;}
._11c_c00001{width:1656.873024pt;}
._236_c00001{width:1668.080288pt;}
._169_c00001{width:1673.180288pt;}
._194_c00001{width:1698.724032pt;}
._11b_c00001{width:1701.237440pt;}
._24b_c00001{width:1745.216000pt;}
._235_c00001{width:1795.525824pt;}
._21d_c00001{width:1802.713600pt;}
._22a_c00001{width:1815.380960pt;}
._232_c00001{width:1852.295072pt;}
._233_c00001{width:1865.824512pt;}
._13d_c00001{width:1925.120000pt;}
._127_c00001{width:1984.499200pt;}
._15d_c00001{width:1988.018667pt;}
._121_c00001{width:1998.098688pt;}
._13b_c00001{width:2003.538688pt;}
._13e_c00001{width:2016.499200pt;}
._1c4_c00001{width:2049.801472pt;}
._117_c00001{width:2078.012480pt;}
._16c_c00001{width:2136.967392pt;}
._16d_c00001{width:2162.560000pt;}
._1b0_c00001{width:2179.135296pt;}
._15e_c00001{width:2187.520000pt;}
._14b_c00001{width:2189.440000pt;}
._1d1_c00001{width:2200.959467pt;}
._12c_c00001{width:2204.159467pt;}
._1d2_c00001{width:2206.720000pt;}
._1cd_c00001{width:2218.239467pt;}
._1ba_c00001{width:2223.679467pt;}
._163_c00001{width:2228.160704pt;}
._1bd_c00001{width:2246.720000pt;}
._13f_c00001{width:2259.200000pt;}
.fs6_c00001{font-size:2.560000pt;}
.fse_c00001{font-size:5.440000pt;}
.fs9_c00001{font-size:10.560000pt;}
.fsc_c00001{font-size:16.000000pt;}
.fsa_c00001{font-size:21.440000pt;}
.fsb_c00001{font-size:26.560000pt;}
.fs1a_c00001{font-size:26.880000pt;}
.fs7_c00001{font-size:32.000000pt;}
.fs8_c00001{font-size:37.440000pt;}
.fs1_c00001{font-size:42.560000pt;}
.fs17_c00001{font-size:42.880000pt;}
.fs3_c00001{font-size:48.000000pt;}
.fs15_c00001{font-size:53.120000pt;}
.fs0_c00001{font-size:53.440000pt;}
.fs13_c00001{font-size:56.320000pt;}
.fsd_c00001{font-size:57.600000pt;}
.fs2_c00001{font-size:58.560000pt;}
.fs19_c00001{font-size:58.880000pt;}
.fs4_c00001{font-size:64.000000pt;}
.fsf_c00001{font-size:67.639544pt;}
.fs5_c00001{font-size:74.560000pt;}
.fs14_c00001{font-size:74.880000pt;}
.fs16_c00001{font-size:85.120000pt;}
.fs18_c00001{font-size:85.440000pt;}
.fs12_c00001{font-size:96.000000pt;}
.fs1c_c00001{font-size:106.560000pt;}
.fs10_c00001{font-size:106.880000pt;}
.fs1d_c00001{font-size:128.000000pt;}
.fs1b_c00001{font-size:138.560000pt;}
.fs11_c00001{font-size:138.880000pt;}
.y0_c00001{bottom:0.000000pt;}
.y1a53_c00001{bottom:1.760000pt;}
.y19f7_c00001{bottom:1.920000pt;}
.y1ac3_c00001{bottom:2.080000pt;}
.y297_c00001{bottom:2.320400pt;}
.y1bd3_c00001{bottom:2.400000pt;}
.y19ae_c00001{bottom:2.560000pt;}
.y1dd6_c00001{bottom:2.720000pt;}
.y1aaa_c00001{bottom:2.880000pt;}
.y62c_c00001{bottom:2.880400pt;}
.y19e4_c00001{bottom:3.040000pt;}
.y1a9f_c00001{bottom:3.200000pt;}
.y370e_c00001{bottom:3.200400pt;}
.y35fc_c00001{bottom:3.200533pt;}
.y1b00_c00001{bottom:3.360000pt;}
.y4cd_c00001{bottom:3.440400pt;}
.y1b83_c00001{bottom:3.520000pt;}
.y198b_c00001{bottom:3.680000pt;}
.y19a4_c00001{bottom:4.000000pt;}
.y19de_c00001{bottom:4.160000pt;}
.y1979_c00001{bottom:4.320000pt;}
.y1ce4_c00001{bottom:4.480000pt;}
.y1986_c00001{bottom:4.640000pt;}
.y2d96_c00001{bottom:4.800000pt;}
.y19c7_c00001{bottom:5.120000pt;}
.y1a0a_c00001{bottom:5.280000pt;}
.y1d0f_c00001{bottom:5.440000pt;}
.y1acc_c00001{bottom:5.760000pt;}
.y197f_c00001{bottom:5.920000pt;}
.y1a48_c00001{bottom:6.720000pt;}
.y1b49_c00001{bottom:6.880000pt;}
.y31a9_c00001{bottom:7.040000pt;}
.y19c5_c00001{bottom:7.200000pt;}
.y1a08_c00001{bottom:7.360000pt;}
.y1df5_c00001{bottom:7.520000pt;}
.y1a95_c00001{bottom:7.840000pt;}
.y1b4a_c00001{bottom:8.000000pt;}
.y1c21_c00001{bottom:8.640000pt;}
.y19f8_c00001{bottom:8.800000pt;}
.y19c3_c00001{bottom:9.760000pt;}
.y1a06_c00001{bottom:9.920000pt;}
.y1aca_c00001{bottom:10.240000pt;}
.y1ab6_c00001{bottom:10.400000pt;}
.y19c4_c00001{bottom:10.880000pt;}
.y1a07_c00001{bottom:11.040000pt;}
.y1cc3_c00001{bottom:11.200000pt;}
.y19f5_c00001{bottom:11.360000pt;}
.y1d68_c00001{bottom:11.520000pt;}
.y1d72_c00001{bottom:11.840000pt;}
.y1d6a_c00001{bottom:12.000000pt;}
.y1c1f_c00001{bottom:12.320000pt;}
.y19f6_c00001{bottom:12.480000pt;}
.y1ac7_c00001{bottom:12.800000pt;}
.y1a54_c00001{bottom:12.960000pt;}
.y1a4d_c00001{bottom:13.120000pt;}
.y2e16_c00001{bottom:13.280000pt;}
.y1d3e_c00001{bottom:13.440000pt;}
.y1db8_c00001{bottom:13.600000pt;}
.y1bb1_c00001{bottom:13.920000pt;}
.y1bad_c00001{bottom:14.080000pt;}
.y1ac8_c00001{bottom:14.240000pt;}
.y1ab4_c00001{bottom:14.400000pt;}
.y1df2_c00001{bottom:14.560000pt;}
.y314e_c00001{bottom:14.720000pt;}
.y3170_c00001{bottom:14.880000pt;}
.y3034_c00001{bottom:15.040000pt;}
.y2f81_c00001{bottom:15.520000pt;}
.y2f8f_c00001{bottom:15.680000pt;}
.y1de5_c00001{bottom:15.840000pt;}
.y1df3_c00001{bottom:16.000000pt;}
.y1b84_c00001{bottom:16.320000pt;}
.y1aa0_c00001{bottom:16.480000pt;}
.y31f5_c00001{bottom:16.960000pt;}
.y310c_c00001{bottom:17.120000pt;}
.y19ac_c00001{bottom:17.440000pt;}
.y1d9f_c00001{bottom:17.920000pt;}
.y1db7_c00001{bottom:18.080000pt;}
.y2e15_c00001{bottom:18.240000pt;}
.y2e19_c00001{bottom:18.400000pt;}
.y332c_c00001{bottom:18.560000pt;}
.y1b81_c00001{bottom:18.880000pt;}
.y1a9d_c00001{bottom:19.040000pt;}
.y1d2d_c00001{bottom:19.200000pt;}
.y3177_c00001{bottom:19.360000pt;}
.y1ca3_c00001{bottom:19.520000pt;}
.y1d2f_c00001{bottom:19.680000pt;}
.y1b82_c00001{bottom:20.000000pt;}
.y1a9e_c00001{bottom:20.160000pt;}
.y1d0a_c00001{bottom:20.320000pt;}
.y1d0d_c00001{bottom:20.480000pt;}
.y1d7b_c00001{bottom:20.640000pt;}
.y1abe_c00001{bottom:21.120000pt;}
.y1ac5_c00001{bottom:21.280000pt;}
.y2fbe_c00001{bottom:21.920000pt;}
.y1ca2_c00001{bottom:22.080000pt;}
.y3261_c00001{bottom:22.400000pt;}
.y1b9e_c00001{bottom:22.560000pt;}
.y2db9_c00001{bottom:23.200000pt;}
.y2d9a_c00001{bottom:23.520000pt;}
.y3033_c00001{bottom:23.680000pt;}
.y3137_c00001{bottom:23.840000pt;}
.y1b7b_c00001{bottom:24.000000pt;}
.y1bf6_c00001{bottom:24.160000pt;}
.y1e57_c00001{bottom:24.320000pt;}
.y31c8_c00001{bottom:24.480000pt;}
.y1b9b_c00001{bottom:25.120000pt;}
.y1abc_c00001{bottom:25.600000pt;}
.y1a7c_c00001{bottom:25.760000pt;}
.y1bd2_c00001{bottom:26.560000pt;}
.y1bf5_c00001{bottom:26.720000pt;}
.y1b9c_c00001{bottom:27.520000pt;}
.y1b7e_c00001{bottom:27.680000pt;}
.y1a50_c00001{bottom:27.840000pt;}
.y1a4a_c00001{bottom:28.000000pt;}
.y1ab9_c00001{bottom:28.160000pt;}
.y1ac0_c00001{bottom:28.320000pt;}
.y305a_c00001{bottom:28.480000pt;}
.y1a41_c00001{bottom:28.640000pt;}
.y1a20_c00001{bottom:28.800000pt;}
.y1aea_c00001{bottom:29.280000pt;}
.y1aba_c00001{bottom:29.600000pt;}
.y1ac1_c00001{bottom:29.760000pt;}
.y31da_c00001{bottom:29.920000pt;}
.y1daf_c00001{bottom:30.240000pt;}
.y1d96_c00001{bottom:30.400000pt;}
.y1a3e_c00001{bottom:31.200000pt;}
.y1a1c_c00001{bottom:31.360000pt;}
.y31e9_c00001{bottom:31.520000pt;}
.y332b_c00001{bottom:31.680000pt;}
.y32ab_c00001{bottom:32.320000pt;}
.y32a0_c00001{bottom:32.480000pt;}
.y1e64_c00001{bottom:32.640000pt;}
.y1e54_c00001{bottom:32.800000pt;}
.y2dc0_c00001{bottom:32.960000pt;}
.y1a3f_c00001{bottom:33.600000pt;}
.y1a1d_c00001{bottom:33.760000pt;}
.y1d1e_c00001{bottom:33.920000pt;}
.y1d20_c00001{bottom:34.080000pt;}
.y1d2b_c00001{bottom:34.240000pt;}
.y3265_c00001{bottom:34.400000pt;}
.y1dad_c00001{bottom:34.720000pt;}
.y1d95_c00001{bottom:34.880000pt;}
.y3129_c00001{bottom:35.840000pt;}
.y3057_c00001{bottom:36.000000pt;}
.y3182_c00001{bottom:36.160000pt;}
.y3184_c00001{bottom:36.320000pt;}
.y1978_c00001{bottom:36.480000pt;}
.y31dc_c00001{bottom:36.960000pt;}
.y31d6_c00001{bottom:37.120000pt;}
.y312a_c00001{bottom:37.280000pt;}
.y3058_c00001{bottom:37.440000pt;}
.y308e_c00001{bottom:37.760000pt;}
.y30b2_c00001{bottom:37.920000pt;}
.y31e2_c00001{bottom:38.560000pt;}
.y1ae1_c00001{bottom:38.720000pt;}
.y328b_c00001{bottom:39.040000pt;}
.y1d81_c00001{bottom:39.200000pt;}
.y1c52_c00001{bottom:39.360000pt;}
.y1ba7_c00001{bottom:39.520000pt;}
.y1a02_c00001{bottom:39.840000pt;}
.y19bf_c00001{bottom:40.000000pt;}
.y30b1_c00001{bottom:40.480000pt;}
.y31bc_c00001{bottom:40.640000pt;}
.y3268_c00001{bottom:40.800000pt;}
.y56_c00001{bottom:41.627067pt;}
.y16c9_c00001{bottom:41.946763pt;}
.y1475_c00001{bottom:41.947251pt;}
.y1baa_c00001{bottom:42.080000pt;}
.y1a01_c00001{bottom:42.400000pt;}
.y19be_c00001{bottom:42.560000pt;}
.y19e5_c00001{bottom:44.160000pt;}
.y1daa_c00001{bottom:44.640000pt;}
.y1d90_c00001{bottom:44.800000pt;}
.y1a03_c00001{bottom:44.960000pt;}
.y19c0_c00001{bottom:45.120000pt;}
.y2fb1_c00001{bottom:45.440000pt;}
.y2fa2_c00001{bottom:45.600000pt;}
.y1b10_c00001{bottom:46.080000pt;}
.y1afc_c00001{bottom:46.240000pt;}
.y19e0_c00001{bottom:46.720000pt;}
.y2f9d_c00001{bottom:47.200000pt;}
.y2fad_c00001{bottom:48.000000pt;}
.y2f9e_c00001{bottom:48.160000pt;}
.y19e1_c00001{bottom:49.120000pt;}
.y32aa_c00001{bottom:49.280000pt;}
.y1d80_c00001{bottom:49.440000pt;}
.y2f9f_c00001{bottom:49.600000pt;}
.y2f9a_c00001{bottom:49.760000pt;}
.y1f9d_c00001{bottom:50.987067pt;}
.y1977_c00001{bottom:51.200000pt;}
.y1d4e_c00001{bottom:51.360000pt;}
.y1d89_c00001{bottom:51.680000pt;}
.y31b7_c00001{bottom:53.120000pt;}
.y31b9_c00001{bottom:53.280000pt;}
.y1d8a_c00001{bottom:54.240000pt;}
.y31d5_c00001{bottom:54.400000pt;}
.y31e5_c00001{bottom:55.360000pt;}
.y31d8_c00001{bottom:55.520000pt;}
.y1dd7_c00001{bottom:56.320000pt;}
.y31df_c00001{bottom:56.640000pt;}
.y31e8_c00001{bottom:56.800000pt;}
.y4_c00001{bottom:57.947651pt;}
.y1cdd_c00001{bottom:58.400000pt;}
.y1988_c00001{bottom:58.880000pt;}
.y1d4b_c00001{bottom:59.200000pt;}
.y16c8_c00001{bottom:59.787067pt;}
.y1474_c00001{bottom:59.787555pt;}
.y55_c00001{bottom:60.027067pt;}
.y1cdc_c00001{bottom:60.960000pt;}
.y2fab_c00001{bottom:62.400000pt;}
.y1cde_c00001{bottom:63.520000pt;}
.y1dd1_c00001{bottom:64.000000pt;}
.y32f9_c00001{bottom:64.320000pt;}
.y32ec_c00001{bottom:64.640000pt;}
.y2fa8_c00001{bottom:64.960000pt;}
.y2de5_c00001{bottom:66.240000pt;}
.y2fa9_c00001{bottom:66.400000pt;}
.y32f4_c00001{bottom:66.880000pt;}
.y3173_c00001{bottom:68.480000pt;}
.y1f9c_c00001{bottom:69.387067pt;}
.y31cf_c00001{bottom:71.040000pt;}
.y2f7b_c00001{bottom:71.680000pt;}
.y31d2_c00001{bottom:72.160000pt;}
.y1e18_c00001{bottom:75.200000pt;}
.y2dd4_c00001{bottom:77.280000pt;}
.y1e17_c00001{bottom:77.760000pt;}
.y1d03_c00001{bottom:78.400000pt;}
.y32ea_c00001{bottom:80.000000pt;}
.y1e1c_c00001{bottom:80.320000pt;}
.y1d02_c00001{bottom:80.960000pt;}
.y1d07_c00001{bottom:83.520000pt;}
.y3_c00001{bottom:91.867067pt;}
.y3304_c00001{bottom:95.200000pt;}
.y32fe_c00001{bottom:95.360000pt;}
.y1a8f_c00001{bottom:95.680000pt;}
.y314f_c00001{bottom:95.840000pt;}
.y1976_c00001{bottom:95.947067pt;}
.y3349_c00001{bottom:96.000000pt;}
.y3112_c00001{bottom:96.160000pt;}
.yc59_c00001{bottom:96.267067pt;}
.y312f_c00001{bottom:96.320000pt;}
.y30ae_c00001{bottom:96.480000pt;}
.y3685_c00001{bottom:96.747067pt;}
.y2751_c00001{bottom:96.907067pt;}
.y2481_c00001{bottom:97.067067pt;}
.y1c05_c00001{bottom:97.120000pt;}
.y31cb_c00001{bottom:97.123520pt;}
.y2b73_c00001{bottom:97.307859pt;}
.y22a6_c00001{bottom:97.387067pt;}
.y1a90_c00001{bottom:97.440000pt;}
.y1038_c00001{bottom:97.467323pt;}
.y33f5_c00001{bottom:97.627067pt;}
.y3011_c00001{bottom:97.760000pt;}
.y2707_c00001{bottom:97.787067pt;}
.y2a22_c00001{bottom:97.867067pt;}
.y1345_c00001{bottom:97.946667pt;}
.y2a7d_c00001{bottom:97.947067pt;}
.y377c_c00001{bottom:98.107200pt;}
.y1b2a_c00001{bottom:98.240000pt;}
.yf64_c00001{bottom:98.267067pt;}
.y2124_c00001{bottom:98.347067pt;}
.y3150_c00001{bottom:98.560000pt;}
.y221e_c00001{bottom:98.587067pt;}
.yc58_c00001{bottom:98.667067pt;}
.y10cb_c00001{bottom:98.747067pt;}
.y35c3_c00001{bottom:98.750360pt;}
.y37e4_c00001{bottom:99.067067pt;}
.y2c1c_c00001{bottom:99.069984pt;}
.y382a_c00001{bottom:99.225627pt;}
.y128c_c00001{bottom:99.305363pt;}
.y56a_c00001{bottom:99.307067pt;}
.y1c79_c00001{bottom:99.360000pt;}
.y622_c00001{bottom:99.547067pt;}
.y2a98_c00001{bottom:99.547243pt;}
.yb5e_c00001{bottom:99.707067pt;}
.y1cfc_c00001{bottom:99.840000pt;}
.y351f_c00001{bottom:99.945979pt;}
.y7c1_c00001{bottom:99.947200pt;}
.y75d_c00001{bottom:100.027200pt;}
.y20cc_c00001{bottom:100.107067pt;}
.y188c_c00001{bottom:100.187067pt;}
.y393d_c00001{bottom:100.267067pt;}
.y2f95_c00001{bottom:100.322720pt;}
.y1f70_c00001{bottom:100.347067pt;}
.y28a3_c00001{bottom:100.347819pt;}
.y3959_c00001{bottom:100.504011pt;}
.y1037_c00001{bottom:100.507283pt;}
.y30af_c00001{bottom:100.640000pt;}
.y2c37_c00001{bottom:100.667067pt;}
.yf22_c00001{bottom:100.747067pt;}
.y11a3_c00001{bottom:100.747307pt;}
.y445_c00001{bottom:100.827067pt;}
.y1bc8_c00001{bottom:100.960000pt;}
.y1216_c00001{bottom:100.987067pt;}
.y2605_c00001{bottom:101.067067pt;}
.y1ff_c00001{bottom:101.147200pt;}
.y39dc_c00001{bottom:101.227067pt;}
.y1ede_c00001{bottom:101.280000pt;}
.y34ef_c00001{bottom:101.307067pt;}
.y1543_c00001{bottom:101.467067pt;}
.y2047_c00001{bottom:101.542011pt;}
.y3793_c00001{bottom:101.543339pt;}
.y34c5_c00001{bottom:101.546611pt;}
.y319e_c00001{bottom:101.600000pt;}
.y8c6_c00001{bottom:101.787067pt;}
.y3012_c00001{bottom:101.920000pt;}
.y91b_c00001{bottom:101.947067pt;}
.y1a3d_c00001{bottom:102.080000pt;}
.y273a_c00001{bottom:102.109099pt;}
.y286a_c00001{bottom:102.185499pt;}
.y332d_c00001{bottom:102.240000pt;}
.y6b2_c00001{bottom:102.264971pt;}
.y1f2b_c00001{bottom:102.266355pt;}
.y1b2c_c00001{bottom:102.400000pt;}
.y289_c00001{bottom:102.427067pt;}
.y4f0_c00001{bottom:102.427107pt;}
.y398c_c00001{bottom:102.505067pt;}
.y9ea_c00001{bottom:102.507067pt;}
.y13bc_c00001{bottom:102.586251pt;}
.y3868_c00001{bottom:102.666811pt;}
.ye9a_c00001{bottom:102.747067pt;}
.y1068_c00001{bottom:102.747200pt;}
.y1dda_c00001{bottom:102.883520pt;}
.y93f_c00001{bottom:102.906955pt;}
.y3fe_c00001{bottom:102.907067pt;}
.y712_c00001{bottom:103.067067pt;}
.y3589_c00001{bottom:103.227067pt;}
.yf41_c00001{bottom:103.307067pt;}
.y3087_c00001{bottom:103.360000pt;}
.y1975_c00001{bottom:103.467067pt;}
.y1c7a_c00001{bottom:103.520000pt;}
.y881_c00001{bottom:103.627067pt;}
.y1036_c00001{bottom:103.627235pt;}
.y160b_c00001{bottom:103.707067pt;}
.y3432_c00001{bottom:103.785744pt;}
.y321a_c00001{bottom:103.793040pt;}
.y14a_c00001{bottom:103.867200pt;}
.yacc_c00001{bottom:104.026499pt;}
.yba3_c00001{bottom:104.107200pt;}
.y2a0b_c00001{bottom:104.264800pt;}
.y33c_c00001{bottom:104.267067pt;}
.y32ef_c00001{bottom:104.320000pt;}
.yfe0_c00001{bottom:104.347067pt;}
.y376c_c00001{bottom:104.348371pt;}
.y38c4_c00001{bottom:104.427067pt;}
.y1a91_c00001{bottom:104.480000pt;}
.y1237_c00001{bottom:104.501832pt;}
.y221d_c00001{bottom:104.507067pt;}
.y1312_c00001{bottom:104.584795pt;}
.y24fc_c00001{bottom:104.585891pt;}
.y3172_c00001{bottom:104.640000pt;}
.y24fb_c00001{bottom:104.666411pt;}
.y2f9_c00001{bottom:104.667067pt;}
.y1281_c00001{bottom:104.667475pt;}
.yfd7_c00001{bottom:104.742267pt;}
.y2974_c00001{bottom:104.746739pt;}
.y1375_c00001{bottom:104.827067pt;}
.ycf_c00001{bottom:104.907067pt;}
.y1240_c00001{bottom:105.066667pt;}
.y2e47_c00001{bottom:105.286240pt;}
.y10c5_c00001{bottom:105.387067pt;}
.y191e_c00001{bottom:105.414560pt;}
.y3337_c00001{bottom:105.440000pt;}
.y4ef_c00001{bottom:105.467067pt;}
.y107b_c00001{bottom:105.467200pt;}
.y3317_c00001{bottom:105.600000pt;}
.y3843_c00001{bottom:105.625435pt;}
.yda6_c00001{bottom:105.707067pt;}
.y1d7f_c00001{bottom:105.760000pt;}
.ya19_c00001{bottom:105.787067pt;}
.y1142_c00001{bottom:105.866667pt;}
.y3065_c00001{bottom:105.920000pt;}
.y303d_c00001{bottom:105.926240pt;}
.y2061_c00001{bottom:105.947067pt;}
.y2798_c00001{bottom:106.026675pt;}
.y1b2b_c00001{bottom:106.080000pt;}
.y194f_c00001{bottom:106.085600pt;}
.y2b72_c00001{bottom:106.107851pt;}
.y35f7_c00001{bottom:106.182011pt;}
.y240b_c00001{bottom:106.346667pt;}
.y3650_c00001{bottom:106.347067pt;}
.y3a55_c00001{bottom:106.349475pt;}
.y2de4_c00001{bottom:106.400000pt;}
.y39ae_c00001{bottom:106.423403pt;}
.y499_c00001{bottom:106.427067pt;}
.y36b8_c00001{bottom:106.432795pt;}
.y35a2_c00001{bottom:106.501755pt;}
.y781_c00001{bottom:106.507067pt;}
.y6d4_c00001{bottom:106.587067pt;}
.y166c_c00001{bottom:106.589432pt;}
.y1035_c00001{bottom:106.667195pt;}
.y325f_c00001{bottom:106.720000pt;}
.y2cb3_c00001{bottom:106.745051pt;}
.y2ac2_c00001{bottom:106.747819pt;}
.y2d8f_c00001{bottom:106.880000pt;}
.ydee_c00001{bottom:106.907067pt;}
.y112c_c00001{bottom:106.988227pt;}
.y2fe7_c00001{bottom:107.040000pt;}
.y2fc3_c00001{bottom:107.053280pt;}
.y233b_c00001{bottom:107.062227pt;}
.y2171_c00001{bottom:107.067067pt;}
.y35de_c00001{bottom:107.067075pt;}
.y38df_c00001{bottom:107.145619pt;}
.y3703_c00001{bottom:107.147200pt;}
.yf48_c00001{bottom:107.227067pt;}
.y1782_c00001{bottom:107.307067pt;}
.y1fe_c00001{bottom:107.387067pt;}
.y228b_c00001{bottom:107.544715pt;}
.y80c_c00001{bottom:107.547200pt;}
.y1bc9_c00001{bottom:107.680000pt;}
.y38ab_c00001{bottom:107.695195pt;}
.y33f1_c00001{bottom:107.708227pt;}
.y29a6_c00001{bottom:107.785067pt;}
.y1eaf_c00001{bottom:107.840000pt;}
.y12f5_c00001{bottom:107.867067pt;}
.y11b9_c00001{bottom:107.870787pt;}
.y102c_c00001{bottom:107.871035pt;}
.y2093_c00001{bottom:107.947067pt;}
.y604_c00001{bottom:108.027067pt;}
.y19e_c00001{bottom:108.107067pt;}
.y36d5_c00001{bottom:108.107995pt;}
.y207e_c00001{bottom:108.262555pt;}
.y20fa_c00001{bottom:108.264648pt;}
.y5bd_c00001{bottom:108.267067pt;}
.y1680_c00001{bottom:108.347067pt;}
.y2650_c00001{bottom:108.425067pt;}
.y3421_c00001{bottom:108.583651pt;}
.y2912_c00001{bottom:108.587067pt;}
.y1ae4_c00001{bottom:108.640000pt;}
.y27c7_c00001{bottom:108.747067pt;}
.y2d64_c00001{bottom:108.774560pt;}
.y524_c00001{bottom:108.827067pt;}
.y224a_c00001{bottom:109.067067pt;}
.y2579_c00001{bottom:109.069984pt;}
.y2d44_c00001{bottom:109.076224pt;}
.y2e1c_c00001{bottom:109.120000pt;}
.y3a3d_c00001{bottom:109.155507pt;}
.y2436_c00001{bottom:109.226267pt;}
.y361_c00001{bottom:109.227067pt;}
.y31ca_c00001{bottom:109.280000pt;}
.yaf8_c00001{bottom:109.387067pt;}
.y327e_c00001{bottom:109.440000pt;}
.y37c3_c00001{bottom:109.466755pt;}
.y1012_c00001{bottom:109.467067pt;}
.y1530_c00001{bottom:109.467827pt;}
.y647_c00001{bottom:109.547067pt;}
.y3619_c00001{bottom:109.626811pt;}
.y33_c00001{bottom:109.627067pt;}
.y2d17_c00001{bottom:109.631227pt;}
.y1f8c_c00001{bottom:109.635451pt;}
.y3fd_c00001{bottom:109.707067pt;}
.y1034_c00001{bottom:109.707155pt;}
.y23b7_c00001{bottom:109.867067pt;}
.yafb_c00001{bottom:109.867480pt;}
.y2e7a_c00001{bottom:109.920000pt;}
.y22a5_c00001{bottom:109.945955pt;}
.yf14_c00001{bottom:109.947067pt;}
.yf81_c00001{bottom:110.027067pt;}
.y30eb_c00001{bottom:110.080000pt;}
.y14e1_c00001{bottom:110.107067pt;}
.y2a62_c00001{bottom:110.107200pt;}
.y7e_c00001{bottom:110.187200pt;}
.y590_c00001{bottom:110.347067pt;}
.y9bc_c00001{bottom:110.427067pt;}
.y39f_c00001{bottom:110.507787pt;}
.y1e83_c00001{bottom:110.560000pt;}
.y25ea_c00001{bottom:110.665467pt;}
.y2021_c00001{bottom:110.666347pt;}
.y164c_c00001{bottom:110.667067pt;}
.y15b7_c00001{bottom:110.667200pt;}
.y2f5c_c00001{bottom:111.040000pt;}
.y91a_c00001{bottom:111.147067pt;}
.y169d_c00001{bottom:111.147315pt;}
.y3664_c00001{bottom:111.147603pt;}
.y21ab_c00001{bottom:111.225211pt;}
.y9e9_c00001{bottom:111.227067pt;}
.y396f_c00001{bottom:111.385107pt;}
.y127_c00001{bottom:111.387067pt;}
.y2adb_c00001{bottom:111.467243pt;}
.y4ee_c00001{bottom:111.547067pt;}
.y8ee_c00001{bottom:111.547811pt;}
.y128b_c00001{bottom:111.625419pt;}
.y336f_c00001{bottom:111.680000pt;}
.y2625_c00001{bottom:111.705611pt;}
.y1344_c00001{bottom:111.707067pt;}
.y2bf5_c00001{bottom:111.708459pt;}
.y36f_c00001{bottom:111.787067pt;}
.y859_c00001{bottom:111.867067pt;}
.ya4_c00001{bottom:111.947067pt;}
.y895_c00001{bottom:111.947200pt;}
.y18e9_c00001{bottom:112.026872pt;}
.ye60_c00001{bottom:112.027067pt;}
.y252b_c00001{bottom:112.027288pt;}
.y2854_c00001{bottom:112.106800pt;}
.y319d_c00001{bottom:112.160000pt;}
.y22bd_c00001{bottom:112.267067pt;}
.y16b5_c00001{bottom:112.347067pt;}
.y292b_c00001{bottom:112.427707pt;}
.y1b78_c00001{bottom:112.480000pt;}
.y2f94_c00001{bottom:112.640000pt;}
.y24cc_c00001{bottom:112.664035pt;}
.y2b8a_c00001{bottom:112.667067pt;}
.y2ed7_c00001{bottom:112.800000pt;}
.y349c_c00001{bottom:112.825067pt;}
.y84f_c00001{bottom:112.827067pt;}
.y1033_c00001{bottom:112.827107pt;}
.y17a_c00001{bottom:112.907067pt;}
.y21de_c00001{bottom:112.907195pt;}
.y35c2_c00001{bottom:112.910072pt;}
.yc29_c00001{bottom:112.987200pt;}
.y46f_c00001{bottom:113.067067pt;}
.y138e_c00001{bottom:113.067467pt;}
.yd05_c00001{bottom:113.067627pt;}
.y23e4_c00001{bottom:113.144400pt;}
.yf9_c00001{bottom:113.147067pt;}
.y41c_c00001{bottom:113.227067pt;}
.yf47_c00001{bottom:113.227200pt;}
.y2c1b_c00001{bottom:113.229696pt;}
.y3730_c00001{bottom:113.303971pt;}
.y239a_c00001{bottom:113.305619pt;}
.yd5a_c00001{bottom:113.386755pt;}
.yb6f_c00001{bottom:113.465635pt;}
.y2cf3_c00001{bottom:113.467067pt;}
.y2a97_c00001{bottom:113.627155pt;}
.y113c_c00001{bottom:113.704539pt;}
.y2a7c_c00001{bottom:113.787067pt;}
.y3903_c00001{bottom:113.867067pt;}
.y2001_c00001{bottom:113.870864pt;}
.y27f3_c00001{bottom:113.944363pt;}
.y16c7_c00001{bottom:114.107067pt;}
.y25bc_c00001{bottom:114.107200pt;}
.y3759_c00001{bottom:114.112899pt;}
.y355d_c00001{bottom:114.191000pt;}
.y3242_c00001{bottom:114.209600pt;}
.y3538_c00001{bottom:114.257107pt;}
.y1cf_c00001{bottom:114.267067pt;}
.y2c6_c00001{bottom:114.267200pt;}
.y2552_c00001{bottom:114.342267pt;}
.y17db_c00001{bottom:114.427067pt;}
.y20b5_c00001{bottom:114.504544pt;}
.y2cc7_c00001{bottom:114.505891pt;}
.y11c2_c00001{bottom:114.506499pt;}
.y2c92_c00001{bottom:114.506811pt;}
.y28a2_c00001{bottom:114.507531pt;}
.ye1a_c00001{bottom:114.666320pt;}
.y174a_c00001{bottom:114.667067pt;}
.y2aec_c00001{bottom:114.667075pt;}
.y19aa_c00001{bottom:114.720000pt;}
.y157d_c00001{bottom:114.827067pt;}
.y2f09_c00001{bottom:114.880000pt;}
.y3867_c00001{bottom:114.907067pt;}
.y29bb_c00001{bottom:114.907131pt;}
.y2b71_c00001{bottom:114.907843pt;}
.y29cd_c00001{bottom:114.982155pt;}
.ya2e_c00001{bottom:114.987067pt;}
.y987_c00001{bottom:114.987200pt;}
.y2837_c00001{bottom:114.991331pt;}
.y1dd9_c00001{bottom:115.040000pt;}
.ye45_c00001{bottom:115.147200pt;}
.y154d_c00001{bottom:115.227067pt;}
.yd2f_c00001{bottom:115.227147pt;}
.y22f7_c00001{bottom:115.305611pt;}
.y3811_c00001{bottom:115.307067pt;}
.y3923_c00001{bottom:115.309939pt;}
.y1974_c00001{bottom:115.386811pt;}
.y21ff_c00001{bottom:115.387067pt;}
.y2c5e_c00001{bottom:115.466267pt;}
.y26b9_c00001{bottom:115.467067pt;}
.y1618_c00001{bottom:115.547099pt;}
.y12bb_c00001{bottom:115.547200pt;}
.y29e4_c00001{bottom:115.548835pt;}
.y1002_c00001{bottom:115.627067pt;}
.y919_c00001{bottom:115.707067pt;}
.yb24_c00001{bottom:115.787067pt;}
.y1032_c00001{bottom:115.867067pt;}
.y214a_c00001{bottom:115.946667pt;}
.y68a_c00001{bottom:115.947067pt;}
.y377b_c00001{bottom:116.027171pt;}
.y14bd_c00001{bottom:116.107200pt;}
.y10cc_c00001{bottom:116.187200pt;}
.y2739_c00001{bottom:116.189011pt;}
.yacb_c00001{bottom:116.266755pt;}
.y277c_c00001{bottom:116.273099pt;}
.y21c_c00001{bottom:116.347067pt;}
.y145f_c00001{bottom:116.507067pt;}
.yc5a_c00001{bottom:116.587067pt;}
.y9a7_c00001{bottom:116.667067pt;}
.y1236_c00001{bottom:116.742088pt;}
.y24a0_c00001{bottom:116.746667pt;}
.y1311_c00001{bottom:116.825051pt;}
.y2819_c00001{bottom:116.903931pt;}
.y32cf_c00001{bottom:116.960000pt;}
.yfd6_c00001{bottom:116.982523pt;}
.y3d4_c00001{bottom:116.987067pt;}
.yc36_c00001{bottom:117.067067pt;}
.y32b2_c00001{bottom:117.120000pt;}
.y3449_c00001{bottom:117.146811pt;}
.y2fe6_c00001{bottom:117.280000pt;}
.y2de8_c00001{bottom:117.440000pt;}
.y1728_c00001{bottom:117.467067pt;}
.y2ba5_c00001{bottom:117.545563pt;}
.y162f_c00001{bottom:117.547200pt;}
.y28c5_c00001{bottom:117.548083pt;}
.y336b_c00001{bottom:117.600000pt;}
.y26a7_c00001{bottom:117.623611pt;}
.y351e_c00001{bottom:117.626603pt;}
.y13dc_c00001{bottom:117.707067pt;}
.y1ae3_c00001{bottom:117.760000pt;}
.y2e46_c00001{bottom:117.764320pt;}
.y288_c00001{bottom:117.867067pt;}
.y312e_c00001{bottom:117.920000pt;}
.y621_c00001{bottom:117.947067pt;}
.y303c_c00001{bottom:118.082720pt;}
.y8fc_c00001{bottom:118.107067pt;}
.yc82_c00001{bottom:118.107200pt;}
.y3473_c00001{bottom:118.183867pt;}
.yfdf_c00001{bottom:118.186667pt;}
.yd2e_c00001{bottom:118.267107pt;}
.y569_c00001{bottom:118.347067pt;}
.y2121_c00001{bottom:118.426416pt;}
.y376b_c00001{bottom:118.428283pt;}
.y7c0_c00001{bottom:118.507200pt;}
.y30ac_c00001{bottom:118.560000pt;}
.y3829_c00001{bottom:118.585563pt;}
.y39ad_c00001{bottom:118.663659pt;}
.y6ec_c00001{bottom:118.667067pt;}
.y163b_c00001{bottom:118.667200pt;}
.y1f6f_c00001{bottom:118.747067pt;}
.y123f_c00001{bottom:118.827067pt;}
.y1fb6_c00001{bottom:118.987067pt;}
.y2fc2_c00001{bottom:119.048960pt;}
.y25a1_c00001{bottom:119.063467pt;}
.y34db_c00001{bottom:119.142155pt;}
.y3792_c00001{bottom:119.143803pt;}
.y1d50_c00001{bottom:119.200000pt;}
.y17ac_c00001{bottom:119.307067pt;}
.y38de_c00001{bottom:119.385875pt;}
.y444_c00001{bottom:119.387067pt;}
.y288a_c00001{bottom:119.467067pt;}
.y2b18_c00001{bottom:119.547355pt;}
.y3588_c00001{bottom:119.627067pt;}
.y1edd_c00001{bottom:119.680000pt;}
.yd7b_c00001{bottom:119.707067pt;}
.y300f_c00001{bottom:119.840000pt;}
.y1876_c00001{bottom:119.867067pt;}
.y38aa_c00001{bottom:119.935451pt;}
.y38c3_c00001{bottom:120.027067pt;}
.y2a0a_c00001{bottom:120.104800pt;}
.yc04_c00001{bottom:120.107200pt;}
.y3859_c00001{bottom:120.187200pt;}
.yf3a_c00001{bottom:120.267067pt;}
.y1a40_c00001{bottom:120.320000pt;}
.y25f_c00001{bottom:120.347067pt;}
.ya50_c00001{bottom:120.427067pt;}
.y3637_c00001{bottom:120.427419pt;}
.y3a54_c00001{bottom:120.429387pt;}
.y15e4_c00001{bottom:120.507880pt;}
.y36b7_c00001{bottom:120.512707pt;}
.y3a06_c00001{bottom:120.587067pt;}
.y711_c00001{bottom:120.666667pt;}
.y16ea_c00001{bottom:120.747067pt;}
.yd04_c00001{bottom:120.747451pt;}
.y191d_c00001{bottom:120.779520pt;}
.y3336_c00001{bottom:120.800000pt;}
.y34b0_c00001{bottom:120.907067pt;}
.y2ac1_c00001{bottom:120.907531pt;}
.y234_c00001{bottom:120.987067pt;}
.yf6e_c00001{bottom:120.987200pt;}
.yc33_c00001{bottom:121.147067pt;}
.yd2d_c00001{bottom:121.307067pt;}
.y188b_c00001{bottom:121.387067pt;}
.y1c77_c00001{bottom:121.440000pt;}
.y1eae_c00001{bottom:121.611200pt;}
.y2869_c00001{bottom:121.625955pt;}
.y54b_c00001{bottom:121.707067pt;}
.y37c2_c00001{bottom:121.786811pt;}
.y33b_c00001{bottom:121.787467pt;}
.ycd0_c00001{bottom:121.789299pt;}
.y22e3_c00001{bottom:121.866667pt;}
.y3618_c00001{bottom:121.867067pt;}
.y1cfb_c00001{bottom:121.920000pt;}
.ydc7_c00001{bottom:121.947200pt;}
.y880_c00001{bottom:122.027067pt;}
.y36d4_c00001{bottom:122.187907pt;}
.y8da_c00001{bottom:122.267067pt;}
.y1a8c_c00001{bottom:122.400000pt;}
.y3504_c00001{bottom:122.504587pt;}
.y329d_c00001{bottom:122.567040pt;}
.y1b75_c00001{bottom:122.720000pt;}
.y1fd_c00001{bottom:122.747067pt;}
.y2bc5_c00001{bottom:122.824800pt;}
.y17eb_c00001{bottom:122.827067pt;}
.y30ad_c00001{bottom:122.880000pt;}
.y2f92_c00001{bottom:123.040000pt;}
.y724_c00001{bottom:123.067067pt;}
.y145e_c00001{bottom:123.227067pt;}
.y2578_c00001{bottom:123.229696pt;}
.y3a3c_c00001{bottom:123.315219pt;}
.y1174_c00001{bottom:123.464499pt;}
.y2aeb_c00001{bottom:123.467067pt;}
.y7e4_c00001{bottom:123.547067pt;}
.y37af_c00001{bottom:123.554427pt;}
.y396e_c00001{bottom:123.625363pt;}
.y2d8e_c00001{bottom:123.680000pt;}
.y29a5_c00001{bottom:123.705467pt;}
.y2b70_c00001{bottom:123.707835pt;}
.y128a_c00001{bottom:123.865675pt;}
.y112b_c00001{bottom:123.868147pt;}
.y24fa_c00001{bottom:124.026347pt;}
.y2973_c00001{bottom:124.106675pt;}
.y2d63_c00001{bottom:124.139520pt;}
.y1a8d_c00001{bottom:124.160000pt;}
.y3319_c00001{bottom:124.320000pt;}
.y264f_c00001{bottom:124.345467pt;}
.ybc7_c00001{bottom:124.427067pt;}
.y2465_c00001{bottom:124.427467pt;}
.y1b29_c00001{bottom:124.480000pt;}
.y2a21_c00001{bottom:124.507067pt;}
.y664_c00001{bottom:124.587067pt;}
.y33f0_c00001{bottom:124.588147pt;}
.y18cb_c00001{bottom:124.667067pt;}
.y183c_c00001{bottom:124.667200pt;}
.y1721_c00001{bottom:124.747067pt;}
.y1878_c00001{bottom:124.747200pt;}
.y780_c00001{bottom:124.907067pt;}
.y2e78_c00001{bottom:124.960000pt;}
.y6d3_c00001{bottom:124.987067pt;}
.y166b_c00001{bottom:124.989184pt;}
.y3842_c00001{bottom:125.065891pt;}
.y218d_c00001{bottom:125.068667pt;}
.ybcf_c00001{bottom:125.225995pt;}
.y2435_c00001{bottom:125.306267pt;}
.y1dd0_c00001{bottom:125.440000pt;}
.y2797_c00001{bottom:125.467131pt;}
.y372f_c00001{bottom:125.544227pt;}
.y2399_c00001{bottom:125.545875pt;}
.y1343_c00001{bottom:125.546667pt;}
.y2ada_c00001{bottom:125.547155pt;}
.y1bc5_c00001{bottom:125.600000pt;}
.y2358_c00001{bottom:125.626667pt;}
.yd59_c00001{bottom:125.627011pt;}
.y1c78_c00001{bottom:125.760000pt;}
.yb6e_c00001{bottom:125.785691pt;}
.yd95_c00001{bottom:125.787067pt;}
.y39e_c00001{bottom:125.787619pt;}
.y2bf4_c00001{bottom:125.788371pt;}
.yf63_c00001{bottom:125.867067pt;}
.y2853_c00001{bottom:125.867200pt;}
.y113b_c00001{bottom:125.944795pt;}
.y11a2_c00001{bottom:126.027659pt;}
.y1ae5_c00001{bottom:126.080000pt;}
.y2cb2_c00001{bottom:126.104987pt;}
.y252a_c00001{bottom:126.107200pt;}
.y1e49_c00001{bottom:126.240000pt;}
.y11b8_c00001{bottom:126.270539pt;}
.y102b_c00001{bottom:126.270787pt;}
.yf80_c00001{bottom:126.347067pt;}
.y152f_c00001{bottom:126.347747pt;}
.y603_c00001{bottom:126.427067pt;}
.y3663_c00001{bottom:126.427435pt;}
.y233a_c00001{bottom:126.502683pt;}
.y25e9_c00001{bottom:126.505467pt;}
.y19d_c00001{bottom:126.507067pt;}
.y292a_c00001{bottom:126.507619pt;}
.y2f49_c00001{bottom:126.560000pt;}
.y5bc_c00001{bottom:126.667067pt;}
.y11c1_c00001{bottom:126.746755pt;}
.y3684_c00001{bottom:126.747067pt;}
.y1b77_c00001{bottom:126.880000pt;}
.y1f2a_c00001{bottom:126.906571pt;}
.yedb_c00001{bottom:126.907067pt;}
.y228a_c00001{bottom:126.985171pt;}
.ye19_c00001{bottom:126.986376pt;}
.y2911_c00001{bottom:126.987067pt;}
.y35c1_c00001{bottom:126.989984pt;}
.y2d43_c00001{bottom:126.995584pt;}
.y1ae2_c00001{bottom:127.040000pt;}
.y2060_c00001{bottom:127.147067pt;}
.y26f1_c00001{bottom:127.225467pt;}
.y523_c00001{bottom:127.227067pt;}
.yeac_c00001{bottom:127.307067pt;}
.y2c1a_c00001{bottom:127.309608pt;}
.y14b8_c00001{bottom:127.385955pt;}
.y36ef_c00001{bottom:127.456427pt;}
.y2a5e_c00001{bottom:127.466611pt;}
.y194e_c00001{bottom:127.520000pt;}
.y6b1_c00001{bottom:127.545323pt;}
.y4ed_c00001{bottom:127.547067pt;}
.y1f8b_c00001{bottom:127.554811pt;}
.y20f9_c00001{bottom:127.624584pt;}
.y360_c00001{bottom:127.627067pt;}
.y75c_c00001{bottom:127.627200pt;}
.y2248_c00001{bottom:127.707067pt;}
.y1cba_c00001{bottom:127.840000pt;}
.y13bb_c00001{bottom:127.866603pt;}
.y1011_c00001{bottom:127.867067pt;}
.y646_c00001{bottom:127.947067pt;}
.y19fa_c00001{bottom:128.000000pt;}
.y7d_c00001{bottom:128.107200pt;}
.y1b28_c00001{bottom:128.160000pt;}
.y93e_c00001{bottom:128.187307pt;}
.y3758_c00001{bottom:128.192811pt;}
.y355c_c00001{bottom:128.270912pt;}
.yf13_c00001{bottom:128.347067pt;}
.y3fc_c00001{bottom:128.427067pt;}
.yd03_c00001{bottom:128.427275pt;}
.yaca_c00001{bottom:128.507011pt;}
.y266b_c00001{bottom:128.507067pt;}
.y35dd_c00001{bottom:128.587067pt;}
.y28a1_c00001{bottom:128.587443pt;}
.y2ed6_c00001{bottom:128.800000pt;}
.y1bc6_c00001{bottom:128.960000pt;}
.y1235_c00001{bottom:128.982344pt;}
.y58f_c00001{bottom:128.987067pt;}
.y23e3_c00001{bottom:129.064800pt;}
.y1542_c00001{bottom:129.067067pt;}
.y2836_c00001{bottom:129.071243pt;}
.y2f54_c00001{bottom:129.120000pt;}
.y1310_c00001{bottom:129.145107pt;}
.yfd5_c00001{bottom:129.222779pt;}
.y2e79_c00001{bottom:129.280000pt;}
.y325e_c00001{bottom:129.283520pt;}
.y22a4_c00001{bottom:129.305891pt;}
.y12ba_c00001{bottom:129.307600pt;}
.y8c5_c00001{bottom:129.387067pt;}
.y3922_c00001{bottom:129.389851pt;}
.y918_c00001{bottom:129.547067pt;}
.y3241_c00001{bottom:129.574560pt;}
.y1c04_c00001{bottom:129.600000pt;}
.y1ce_c00001{bottom:129.627067pt;}
.y29e3_c00001{bottom:129.628747pt;}
.y2e45_c00001{bottom:129.760000pt;}
.y179_c00001{bottom:129.787067pt;}
.y1809_c00001{bottom:129.867067pt;}
.y32cd_c00001{bottom:129.920000pt;}
.y8ed_c00001{bottom:129.947563pt;}
.y141f_c00001{bottom:130.027067pt;}
.y3351_c00001{bottom:130.080000pt;}
.y2020_c00001{bottom:130.106803pt;}
.y2551_c00001{bottom:130.182267pt;}
.y36e_c00001{bottom:130.187067pt;}
.y2738_c00001{bottom:130.268923pt;}
.ya3_c00001{bottom:130.347067pt;}
.y1067_c00001{bottom:130.347200pt;}
.y303b_c00001{bottom:130.400000pt;}
.y277b_c00001{bottom:130.432811pt;}
.y1b76_c00001{bottom:130.560000pt;}
.y14fd_c00001{bottom:130.587067pt;}
.y8ae_c00001{bottom:130.667067pt;}
.y1a42_c00001{bottom:130.720000pt;}
.yafc_c00001{bottom:130.747067pt;}
.y10cd_c00001{bottom:130.907248pt;}
.y1f55_c00001{bottom:130.916243pt;}
.y39ac_c00001{bottom:130.983715pt;}
.y1a8e_c00001{bottom:131.200000pt;}
.y1109_c00001{bottom:131.307067pt;}
.y312d_c00001{bottom:131.360000pt;}
.y2fc1_c00001{bottom:131.366240pt;}
.y18e8_c00001{bottom:131.386808pt;}
.yd2c_c00001{bottom:131.387067pt;}
.y10e3_c00001{bottom:131.387467pt;}
.y46e_c00001{bottom:131.467067pt;}
.y149_c00001{bottom:131.467200pt;}
.y21fe_c00001{bottom:131.546219pt;}
.y2750_c00001{bottom:131.627067pt;}
.y28c4_c00001{bottom:131.627995pt;}
.y3010_c00001{bottom:131.680000pt;}
.y38dd_c00001{bottom:131.705931pt;}
.y184c_c00001{bottom:131.787067pt;}
.yb04_c00001{bottom:131.867067pt;}
.yfde_c00001{bottom:131.947067pt;}
.y24cb_c00001{bottom:132.104491pt;}
.y3390_c00001{bottom:132.111219pt;}
.y30ea_c00001{bottom:132.160000pt;}
.y38a9_c00001{bottom:132.255507pt;}
.y2f8_c00001{bottom:132.267067pt;}
.y21dd_c00001{bottom:132.267131pt;}
.y1495_c00001{bottom:132.347067pt;}
.y1374_c00001{bottom:132.427067pt;}
.yce_c00001{bottom:132.507067pt;}
.y376a_c00001{bottom:132.587995pt;}
.y2b6f_c00001{bottom:132.588171pt;}
.y123e_c00001{bottom:132.666667pt;}
.y249f_c00001{bottom:132.667067pt;}
.yc5b_c00001{bottom:132.667163pt;}
.y2c5_c00001{bottom:132.667200pt;}
.y3463_c00001{bottom:132.747067pt;}
.y1cbb_c00001{bottom:132.800000pt;}
.y17da_c00001{bottom:132.827067pt;}
.y10c4_c00001{bottom:132.987067pt;}
.y1891_c00001{bottom:133.067067pt;}
.y170d_c00001{bottom:133.067200pt;}
.y3958_c00001{bottom:133.224411pt;}
.yda5_c00001{bottom:133.227067pt;}
.y27f2_c00001{bottom:133.384819pt;}
.y2949_c00001{bottom:133.385611pt;}
.y27ed_c00001{bottom:133.386283pt;}
.ya18_c00001{bottom:133.387067pt;}
.y32ee_c00001{bottom:133.440000pt;}
.y23b6_c00001{bottom:133.467067pt;}
.ye5b_c00001{bottom:133.547067pt;}
.y157b_c00001{bottom:133.548227pt;}
.y32ce_c00001{bottom:133.600000pt;}
.y2480_c00001{bottom:133.707067pt;}
.y2706_c00001{bottom:133.787067pt;}
.y32a5_c00001{bottom:133.920000pt;}
.ya75_c00001{bottom:133.945931pt;}
.y2cc6_c00001{bottom:133.946347pt;}
.y1617_c00001{bottom:133.946851pt;}
.y498_c00001{bottom:134.027067pt;}
.y917_c00001{bottom:134.107067pt;}
.yb23_c00001{bottom:134.187067pt;}
.y25bb_c00001{bottom:134.187200pt;}
.yc83_c00001{bottom:134.187432pt;}
.y2046_c00001{bottom:134.262411pt;}
.y29ba_c00001{bottom:134.267067pt;}
.y689_c00001{bottom:134.347067pt;}
.y710_c00001{bottom:134.427067pt;}
.yded_c00001{bottom:134.507067pt;}
.y3a53_c00001{bottom:134.509299pt;}
.y1fec_c00001{bottom:134.587200pt;}
.y36b6_c00001{bottom:134.672419pt;}
.y21b_c00001{bottom:134.747067pt;}
.y1fb5_c00001{bottom:134.827067pt;}
.y16b4_c00001{bottom:134.827200pt;}
.y2f93_c00001{bottom:134.880000pt;}
.y25a0_c00001{bottom:134.903467pt;}
.y17c6_c00001{bottom:134.907067pt;}
.y9cf_c00001{bottom:134.987067pt;}
.y2ac0_c00001{bottom:134.987443pt;}
.y2f11_c00001{bottom:135.040000pt;}
.y80b_c00001{bottom:135.147200pt;}
.y398b_c00001{bottom:135.225467pt;}
.y351d_c00001{bottom:135.227067pt;}
.ya09_c00001{bottom:135.307200pt;}
.y3617_c00001{bottom:135.387067pt;}
.y2888_c00001{bottom:135.467067pt;}
.y33a_c00001{bottom:135.627067pt;}
.y37d7_c00001{bottom:135.707067pt;}
.y3636_c00001{bottom:135.707251pt;}
.y1749_c00001{bottom:135.787067pt;}
.y2de7_c00001{bottom:135.840000pt;}
.y396d_c00001{bottom:135.865619pt;}
.y3d3_c00001{bottom:135.867067pt;}
.y167f_c00001{bottom:135.947067pt;}
.y1bc7_c00001{bottom:136.000000pt;}
.y2a09_c00001{bottom:136.025200pt;}
.y1289_c00001{bottom:136.105931pt;}
.yd02_c00001{bottom:136.107099pt;}
.y191c_c00001{bottom:136.144480pt;}
.y3335_c00001{bottom:136.160000pt;}
.y3111_c00001{bottom:136.162720pt;}
.y2bd5_c00001{bottom:136.187200pt;}
.y287_c00001{bottom:136.267067pt;}
.y36d3_c00001{bottom:136.267819pt;}
.y32c4_c00001{bottom:136.320000pt;}
.y2818_c00001{bottom:136.344387pt;}
.y620_c00001{bottom:136.347067pt;}
.y3431_c00001{bottom:136.506144pt;}
.yb5d_c00001{bottom:136.507067pt;}
.y28e3_c00001{bottom:136.587067pt;}
.y15e5_c00001{bottom:136.747067pt;}
.y19fb_c00001{bottom:136.800000pt;}
.y3791_c00001{bottom:136.824427pt;}
.y1280_c00001{bottom:136.827067pt;}
.y7bf_c00001{bottom:136.907200pt;}
.y1edc_c00001{bottom:136.960000pt;}
.y2ba4_c00001{bottom:136.986019pt;}
.y568_c00001{bottom:136.987067pt;}
.y1644_c00001{bottom:137.067067pt;}
.y1f6e_c00001{bottom:137.147067pt;}
.y32_c00001{bottom:137.227067pt;}
.y3064_c00001{bottom:137.280000pt;}
.y15e3_c00001{bottom:137.307280pt;}
.y2577_c00001{bottom:137.309608pt;}
.y3a3b_c00001{bottom:137.395131pt;}
.y31f4_c00001{bottom:137.440000pt;}
.y2a3b_c00001{bottom:137.547067pt;}
.y230e_c00001{bottom:137.627067pt;}
.y14e0_c00001{bottom:137.707067pt;}
.y3219_c00001{bottom:137.712456pt;}
.y3086_c00001{bottom:137.760000pt;}
.y372e_c00001{bottom:137.784483pt;}
.y443_c00001{bottom:137.787067pt;}
.y2398_c00001{bottom:137.865931pt;}
.y2120_c00001{bottom:137.866872pt;}
.yab0_c00001{bottom:137.867067pt;}
.y3828_c00001{bottom:137.945499pt;}
.yd58_c00001{bottom:137.947067pt;}
.y38c2_c00001{bottom:137.947576pt;}
.yb6d_c00001{bottom:138.025947pt;}
.y9bb_c00001{bottom:138.027067pt;}
.y2edd_c00001{bottom:138.080000pt;}
.y1001_c00001{bottom:138.107067pt;}
.y113a_c00001{bottom:138.185051pt;}
.y1472_c00001{bottom:138.187067pt;}
.y164b_c00001{bottom:138.267067pt;}
.y15b6_c00001{bottom:138.267200pt;}
.y2407_c00001{bottom:138.427067pt;}
.y916_c00001{bottom:138.747067pt;}
.y35f6_c00001{bottom:138.902411pt;}
.y1fc_c00001{bottom:138.907067pt;}
.y126_c00001{bottom:138.987067pt;}
.y2ea8_c00001{bottom:139.040000pt;}
.y11c0_c00001{bottom:139.066811pt;}
.y3902_c00001{bottom:139.147200pt;}
.ye18_c00001{bottom:139.226632pt;}
.y35a1_c00001{bottom:139.301211pt;}
.y1165_c00001{bottom:139.306787pt;}
.y1342_c00001{bottom:139.307067pt;}
.y2f5b_c00001{bottom:139.360000pt;}
.y329c_c00001{bottom:139.362560pt;}
.y2d62_c00001{bottom:139.504480pt;}
.y29a4_c00001{bottom:139.545467pt;}
.y820_c00001{bottom:139.547067pt;}
.y894_c00001{bottom:139.547200pt;}
.y25e_c00001{bottom:139.627067pt;}
.y19a9_c00001{bottom:139.680000pt;}
.y2852_c00001{bottom:139.706800pt;}
.y393c_c00001{bottom:139.707067pt;}
.y1cf9_c00001{bottom:139.840000pt;}
.y26b8_c00001{bottom:139.867067pt;}
.y216f_c00001{bottom:139.946611pt;}
.y3a05_c00001{bottom:139.947067pt;}
.y2bf3_c00001{bottom:139.948083pt;}
.y1175_c00001{bottom:140.104379pt;}
.y54a_c00001{bottom:140.107067pt;}
.y264e_c00001{bottom:140.185467pt;}
.yccf_c00001{bottom:140.189051pt;}
.y2f33_c00001{bottom:140.320000pt;}
.y18ad_c00001{bottom:140.347200pt;}
.y84e_c00001{bottom:140.427067pt;}
.y1dd5_c00001{bottom:140.480000pt;}
.yc28_c00001{bottom:140.507200pt;}
.y2929_c00001{bottom:140.587531pt;}
.yf8_c00001{bottom:140.747067pt;}
.y112a_c00001{bottom:140.748067pt;}
.y30ab_c00001{bottom:140.800000pt;}
.y41b_c00001{bottom:140.827067pt;}
.y207d_c00001{bottom:140.982955pt;}
.y2868_c00001{bottom:140.985891pt;}
.y1875_c00001{bottom:140.987067pt;}
.y107a_c00001{bottom:141.067200pt;}
.y35c0_c00001{bottom:141.069896pt;}
.y1c44_c00001{bottom:141.120000pt;}
.y1444_c00001{bottom:141.147067pt;}
.y39d_c00001{bottom:141.147611pt;}
.y2434_c00001{bottom:141.226667pt;}
.y1234_c00001{bottom:141.302400pt;}
.y3420_c00001{bottom:141.304051pt;}
.y130f_c00001{bottom:141.385363pt;}
.y2b6e_c00001{bottom:141.388163pt;}
.y2c19_c00001{bottom:141.389520pt;}
.y325d_c00001{bottom:141.440000pt;}
.y33ef_c00001{bottom:141.468067pt;}
.yfd4_c00001{bottom:141.542835pt;}
.y7c_c00001{bottom:141.547067pt;}
.y2529_c00001{bottom:141.626219pt;}
.y16c6_c00001{bottom:141.707067pt;}
.y1e12_c00001{bottom:141.760000pt;}
.y3662_c00001{bottom:141.787427pt;}
.y1094_c00001{bottom:141.866955pt;}
.y16e9_c00001{bottom:141.947067pt;}
.y2d8d_c00001{bottom:142.080000pt;}
.y87f_c00001{bottom:142.187200pt;}
.yfa7_c00001{bottom:142.267067pt;}
.y3757_c00001{bottom:142.272723pt;}
.y1b25_c00001{bottom:142.400000pt;}
.y25e8_c00001{bottom:142.425867pt;}
.y20cb_c00001{bottom:142.427067pt;}
.y355b_c00001{bottom:142.430624pt;}
.y188a_c00001{bottom:142.507067pt;}
.y2e18_c00001{bottom:142.560000pt;}
.ya2d_c00001{bottom:142.587067pt;}
.y986_c00001{bottom:142.587200pt;}
.y13db_c00001{bottom:142.667067pt;}
.y28a0_c00001{bottom:142.667355pt;}
.y15ab_c00001{bottom:142.667747pt;}
.y2f2a_c00001{bottom:142.720000pt;}
.ye44_c00001{bottom:142.747200pt;}
.y154c_c00001{bottom:142.827067pt;}
.y2686_c00001{bottom:142.987067pt;}
.y1c45_c00001{bottom:143.040000pt;}
.y1ead_c00001{bottom:143.045600pt;}
.y18ca_c00001{bottom:143.067067pt;}
.y1765_c00001{bottom:143.147067pt;}
.y12b9_c00001{bottom:143.147200pt;}
.y2835_c00001{bottom:143.151155pt;}
.y39ab_c00001{bottom:143.223971pt;}
.y152e_c00001{bottom:143.227667pt;}
.y77f_c00001{bottom:143.307067pt;}
.y2247_c00001{bottom:143.307131pt;}
.y24f9_c00001{bottom:143.386283pt;}
.y6d2_c00001{bottom:143.387067pt;}
.y166a_c00001{bottom:143.388936pt;}
.y4ec_c00001{bottom:143.547067pt;}
.y2972_c00001{bottom:143.547131pt;}
.y3921_c00001{bottom:143.549563pt;}
.y3858_c00001{bottom:143.627067pt;}
.y1c75_c00001{bottom:143.680000pt;}
.y2fc0_c00001{bottom:143.683520pt;}
.yd01_c00001{bottom:143.707243pt;}
.y29e2_c00001{bottom:143.788459pt;}
.y21aa_c00001{bottom:143.945611pt;}
.y38dc_c00001{bottom:143.946187pt;}
.y2370_c00001{bottom:143.947067pt;}
.y17ea_c00001{bottom:144.107200pt;}
.y1cfa_c00001{bottom:144.160000pt;}
.yfb7_c00001{bottom:144.187067pt;}
.y2c36_c00001{bottom:144.267067pt;}
.y602_c00001{bottom:144.347067pt;}
.y2737_c00001{bottom:144.348835pt;}
.y3841_c00001{bottom:144.425827pt;}
.y2624_c00001{bottom:144.426011pt;}
.y2f5a_c00001{bottom:144.480000pt;}
.y38a8_c00001{bottom:144.495763pt;}
.y277a_c00001{bottom:144.512723pt;}
.y2d23_c00001{bottom:144.587067pt;}
.y185a_c00001{bottom:144.667067pt;}
.y11b7_c00001{bottom:144.670291pt;}
.y102a_c00001{bottom:144.670539pt;}
.y3702_c00001{bottom:144.747067pt;}
.y2d42_c00001{bottom:144.835888pt;}
.y23e2_c00001{bottom:144.904800pt;}
.y19c_c00001{bottom:144.907067pt;}
.y3240_c00001{bottom:144.939520pt;}
.y1b73_c00001{bottom:144.960000pt;}
.ybc8_c00001{bottom:145.066931pt;}
.y5bb_c00001{bottom:145.067067pt;}
.y162e_c00001{bottom:145.147200pt;}
.y3537_c00001{bottom:145.217571pt;}
.y9e8_c00001{bottom:145.307067pt;}
.yf7f_c00001{bottom:145.387067pt;}
.y1f8a_c00001{bottom:145.395115pt;}
.y3350_c00001{bottom:145.440000pt;}
.y2cb1_c00001{bottom:145.545443pt;}
.y349b_c00001{bottom:145.545467pt;}
.y10ce_c00001{bottom:145.547136pt;}
.y2e1a_c00001{bottom:145.600000pt;}
.y522_c00001{bottom:145.627067pt;}
.y8fb_c00001{bottom:145.707067pt;}
.ybd0_c00001{bottom:145.785699pt;}
.yfdd_c00001{bottom:145.786667pt;}
.y1cd_c00001{bottom:145.787067pt;}
.y28c3_c00001{bottom:145.787707pt;}
.y2339_c00001{bottom:145.862619pt;}
.y1720_c00001{bottom:145.947067pt;}
.y183b_c00001{bottom:145.947200pt;}
.y2550_c00001{bottom:146.022267pt;}
.y35f_c00001{bottom:146.027067pt;}
.y1494_c00001{bottom:146.107067pt;}
.y2796_c00001{bottom:146.107200pt;}
.y10e4_c00001{bottom:146.107867pt;}
.ya74_c00001{bottom:146.186187pt;}
.y327d_c00001{bottom:146.240000pt;}
.y6eb_c00001{bottom:146.267067pt;}
.y163a_c00001{bottom:146.267200pt;}
.y2289_c00001{bottom:146.345107pt;}
.y3fb_c00001{bottom:146.347067pt;}
.y3379_c00001{bottom:146.400000pt;}
.y123d_c00001{bottom:146.427067pt;}
.y1b27_c00001{bottom:146.560000pt;}
.y1ae0_c00001{bottom:146.562720pt;}
.y3769_c00001{bottom:146.667907pt;}
.y1e44_c00001{bottom:146.720000pt;}
.y14b7_c00001{bottom:146.826411pt;}
.y2db8_c00001{bottom:146.880000pt;}
.y58e_c00001{bottom:146.907067pt;}
.y105d_c00001{bottom:146.987067pt;}
.y2cf2_c00001{bottom:146.987195pt;}
.y20f8_c00001{bottom:147.065040pt;}
.y1973_c00001{bottom:147.067200pt;}
.y2e76_c00001{bottom:147.200000pt;}
.y20b4_c00001{bottom:147.224944pt;}
.y178_c00001{bottom:147.227067pt;}
.y2c91_c00001{bottom:147.227211pt;}
.yd7a_c00001{bottom:147.307067pt;}
.y1e82_c00001{bottom:147.360000pt;}
.y1c02_c00001{bottom:147.520000pt;}
.y2d16_c00001{bottom:147.630731pt;}
.y29cc_c00001{bottom:147.702555pt;}
.yc03_c00001{bottom:147.707200pt;}
.y1c76_c00001{bottom:147.840000pt;}
.y915_c00001{bottom:147.947067pt;}
.y22f6_c00001{bottom:148.026011pt;}
.ya4f_c00001{bottom:148.027067pt;}
.y396c_c00001{bottom:148.185675pt;}
.y2c5d_c00001{bottom:148.186667pt;}
.y70f_c00001{bottom:148.266667pt;}
.y205f_c00001{bottom:148.267067pt;}
.y8ec_c00001{bottom:148.347315pt;}
.y1288_c00001{bottom:148.425987pt;}
.y8c4_c00001{bottom:148.427067pt;}
.y3110_c00001{bottom:148.480000pt;}
.y249e_c00001{bottom:148.507067pt;}
.y233_c00001{bottom:148.587067pt;}
.yf6d_c00001{bottom:148.587200pt;}
.y1a3c_c00001{bottom:148.640000pt;}
.yede_c00001{bottom:148.667067pt;}
.yc5c_c00001{bottom:148.667099pt;}
.y3a52_c00001{bottom:148.669011pt;}
.y22a3_c00001{bottom:148.746347pt;}
.ya2_c00001{bottom:148.747067pt;}
.y17ed_c00001{bottom:148.747200pt;}
.y36b5_c00001{bottom:148.752331pt;}
.y32b5_c00001{bottom:148.800000pt;}
.y39c8_c00001{bottom:148.907067pt;}
.y194d_c00001{bottom:148.960000pt;}
.y120e_c00001{bottom:149.067067pt;}
.y2abf_c00001{bottom:149.067355pt;}
.y1a89_c00001{bottom:149.120000pt;}
.y2b19_c00001{bottom:149.227067pt;}
.yb4d_c00001{bottom:149.307067pt;}
.y339_c00001{bottom:149.387467pt;}
.y201f_c00001{bottom:149.466739pt;}
.y26cb_c00001{bottom:149.467067pt;}
.ydc6_c00001{bottom:149.547200pt;}
.y300d_c00001{bottom:149.600000pt;}
.ya65_c00001{bottom:149.627067pt;}
.y9a6_c00001{bottom:149.787067pt;}
.y46d_c00001{bottom:149.867067pt;}
.y3448_c00001{bottom:149.867211pt;}
.y1c46_c00001{bottom:149.920000pt;}
.y30e9_c00001{bottom:150.080000pt;}
.y372d_c00001{bottom:150.104539pt;}
.y2397_c00001{bottom:150.106187pt;}
.y2092_c00001{bottom:150.107200pt;}
.y2b6d_c00001{bottom:150.188155pt;}
.y1b26_c00001{bottom:150.240000pt;}
.yb6c_c00001{bottom:150.266203pt;}
.yc84_c00001{bottom:150.267664pt;}
.y26a6_c00001{bottom:150.344011pt;}
.y37c1_c00001{bottom:150.427067pt;}
.y36d2_c00001{bottom:150.427531pt;}
.y157a_c00001{bottom:150.428147pt;}
.y1139_c00001{bottom:150.505107pt;}
.y2b17_c00001{bottom:150.507067pt;}
.y32b0_c00001{bottom:150.560000pt;}
.y723_c00001{bottom:150.667067pt;}
.y32a3_c00001{bottom:150.720000pt;}
.y259f_c00001{bottom:150.743467pt;}
.yac9_c00001{bottom:150.747067pt;}
.y18e7_c00001{bottom:150.827264pt;}
.y1a8a_c00001{bottom:150.880000pt;}
.y3472_c00001{bottom:150.904267pt;}
.y27c6_c00001{bottom:150.907067pt;}
.y2887_c00001{bottom:150.986347pt;}
.y21fc_c00001{bottom:150.986675pt;}
.y1808_c00001{bottom:150.987067pt;}
.y37ae_c00001{bottom:150.993923pt;}
.y2f10_c00001{bottom:151.040000pt;}
.y2c4_c00001{bottom:151.067200pt;}
.y3635_c00001{bottom:151.067243pt;}
.y7e3_c00001{bottom:151.147067pt;}
.y11bf_c00001{bottom:151.307067pt;}
.y191b_c00001{bottom:151.350080pt;}
.y2e77_c00001{bottom:151.360000pt;}
.yd00_c00001{bottom:151.387067pt;}
.y2576_c00001{bottom:151.389520pt;}
.ye17_c00001{bottom:151.466888pt;}
.y3a3a_c00001{bottom:151.475043pt;}
.y3334_c00001{bottom:151.520000pt;}
.y24ca_c00001{bottom:151.544947pt;}
.y1f29_c00001{bottom:151.626939pt;}
.y21df_c00001{bottom:151.627067pt;}
.y182f_c00001{bottom:151.707067pt;}
.y34da_c00001{bottom:151.862555pt;}
.y2a08_c00001{bottom:151.865200pt;}
.y247f_c00001{bottom:151.947067pt;}
.y2000_c00001{bottom:151.950520pt;}
.y1d4d_c00001{bottom:152.000000pt;}
.y169c_c00001{bottom:152.027200pt;}
.y2464_c00001{bottom:152.027467pt;}
.y38c1_c00001{bottom:152.027488pt;}
.y663_c00001{bottom:152.187067pt;}
.y1f54_c00001{bottom:152.436123pt;}
.y314d_c00001{bottom:152.480000pt;}
.y914_c00001{bottom:152.507067pt;}
.yb22_c00001{bottom:152.587067pt;}
.y1dd4_c00001{bottom:152.640000pt;}
.y27f1_c00001{bottom:152.744755pt;}
.y27ec_c00001{bottom:152.746219pt;}
.y688_c00001{bottom:152.747067pt;}
.y1b74_c00001{bottom:152.800000pt;}
.y6b0_c00001{bottom:152.825675pt;}
.y21dc_c00001{bottom:152.907067pt;}
.y184b_c00001{bottom:152.987067pt;}
.y1fb4_c00001{bottom:153.067200pt;}
.y2dba_c00001{bottom:153.120000pt;}
.y13ba_c00001{bottom:153.146955pt;}
.y21a_c00001{bottom:153.147067pt;}
.y1799_c00001{bottom:153.227067pt;}
.y19a8_c00001{bottom:153.280000pt;}
.y2cc5_c00001{bottom:153.306283pt;}
.y3587_c00001{bottom:153.307067pt;}
.yd94_c00001{bottom:153.387067pt;}
.y2dbb_c00001{bottom:153.440000pt;}
.y3503_c00001{bottom:153.465051pt;}
.yf62_c00001{bottom:153.467067pt;}
.y2851_c00001{bottom:153.467200pt;}
.y93d_c00001{bottom:153.467659pt;}
.y1233_c00001{bottom:153.542656pt;}
.y130e_c00001{bottom:153.625619pt;}
.yfd3_c00001{bottom:153.783091pt;}
.y17d9_c00001{bottom:153.867200pt;}
.y1bc2_c00001{bottom:153.920000pt;}
.y1341_c00001{bottom:154.027067pt;}
.y2bf2_c00001{bottom:154.027995pt;}
.y1e11_c00001{bottom:154.080000pt;}
.y1890_c00001{bottom:154.187067pt;}
.y170c_c00001{bottom:154.187200pt;}
.y15e2_c00001{bottom:154.187667pt;}
.y2de6_c00001{bottom:154.240000pt;}
.y1727_c00001{bottom:154.267067pt;}
.y218c_c00001{bottom:154.268267pt;}
.y336a_c00001{bottom:154.400000pt;}
.y3790_c00001{bottom:154.424891pt;}
.yeda_c00001{bottom:154.507067pt;}
.y1cb8_c00001{bottom:154.560000pt;}
.y22e2_c00001{bottom:154.587067pt;}
.ye7e_c00001{bottom:154.667067pt;}
.y19f4_c00001{bottom:154.720000pt;}
.y61f_c00001{bottom:154.747067pt;}
.y2928_c00001{bottom:154.747243pt;}
.y34ee_c00001{bottom:154.827067pt;}
.y2d61_c00001{bottom:154.869440pt;}
.y1c03_c00001{bottom:154.880000pt;}
.y36ee_c00001{bottom:154.896987pt;}
.y286_c00001{bottom:154.907067pt;}
.y567_c00001{bottom:154.987067pt;}
.y3171_c00001{bottom:155.040000pt;}
.y3d2_c00001{bottom:155.067200pt;}
.y2705_c00001{bottom:155.147200pt;}
.y2ad9_c00001{bottom:155.227067pt;}
.y75b_c00001{bottom:155.227200pt;}
.y35bf_c00001{bottom:155.229608pt;}
.y7be_c00001{bottom:155.307200pt;}
.y2f91_c00001{bottom:155.360000pt;}
.y29a3_c00001{bottom:155.385467pt;}
.y39aa_c00001{bottom:155.464227pt;}
.y2bc4_c00001{bottom:155.545200pt;}
.y1f6d_c00001{bottom:155.547067pt;}
.y2c18_c00001{bottom:155.549232pt;}
.y2817_c00001{bottom:155.704323pt;}
.y37d6_c00001{bottom:155.787067pt;}
.y2fbf_c00001{bottom:155.840000pt;}
.y1166_c00001{bottom:155.946667pt;}
.yf12_c00001{bottom:155.947067pt;}
.y2e1b_c00001{bottom:156.000000pt;}
.y978_c00001{bottom:156.027067pt;}
.y264d_c00001{bottom:156.105867pt;}
.y17ab_c00001{bottom:156.107067pt;}
.y38db_c00001{bottom:156.186443pt;}
.y442_c00001{bottom:156.187067pt;}
.y1fb_c00001{bottom:156.267067pt;}
.y329b_c00001{bottom:156.320000pt;}
.y2ba3_c00001{bottom:156.345955pt;}
.y37fa_c00001{bottom:156.347067pt;}
.y80a_c00001{bottom:156.427067pt;}
.y3756_c00001{bottom:156.432435pt;}
.y39c_c00001{bottom:156.507603pt;}
.y355a_c00001{bottom:156.510536pt;}
.y3487_c00001{bottom:156.587067pt;}
.y1176_c00001{bottom:156.664099pt;}
.y1541_c00001{bottom:156.667067pt;}
.y38a7_c00001{bottom:156.736019pt;}
.ycd_c00001{bottom:156.827067pt;}
.y2ea7_c00001{bottom:156.960000pt;}
.y2433_c00001{bottom:157.066667pt;}
.y913_c00001{bottom:157.067067pt;}
.y3385_c00001{bottom:157.067928pt;}
.y3661_c00001{bottom:157.147419pt;}
.y211f_c00001{bottom:157.226808pt;}
.y2834_c00001{bottom:157.310867pt;}
.y3827_c00001{bottom:157.385955pt;}
.yafd_c00001{bottom:157.386907pt;}
.y1bc3_c00001{bottom:157.440000pt;}
.y13da_c00001{bottom:157.547067pt;}
.y1129_c00001{bottom:157.627987pt;}
.y3920_c00001{bottom:157.629475pt;}
.y601_c00001{bottom:157.787067pt;}
.y12b8_c00001{bottom:157.867067pt;}
.y29e1_c00001{bottom:157.868371pt;}
.y1a8b_c00001{bottom:157.920000pt;}
.y308_c00001{bottom:157.947067pt;}
.y1066_c00001{bottom:157.947200pt;}
.y2f53_c00001{bottom:158.080000pt;}
.y14fc_c00001{bottom:158.187067pt;}
.y1f0f_c00001{bottom:158.240000pt;}
.y25e7_c00001{bottom:158.265867pt;}
.y25d_c00001{bottom:158.267067pt;}
.y2357_c00001{bottom:158.347067pt;}
.y33ee_c00001{bottom:158.347987pt;}
.ya73_c00001{bottom:158.426443pt;}
.y549_c00001{bottom:158.507067pt;}
.y2736_c00001{bottom:158.508547pt;}
.ycce_c00001{bottom:158.588803pt;}
.y2779_c00001{bottom:158.592635pt;}
.y41a_c00001{bottom:158.747067pt;}
.y18ac_c00001{bottom:158.747200pt;}
.y1adf_c00001{bottom:158.880000pt;}
.y1108_c00001{bottom:158.907067pt;}
.y2b6c_c00001{bottom:158.988147pt;}
.y312c_c00001{bottom:159.040000pt;}
.y148_c00001{bottom:159.067200pt;}
.y3901_c00001{bottom:159.227067pt;}
.y2170_c00001{bottom:159.387067pt;}
.yc51_c00001{bottom:159.467067pt;}
.y15aa_c00001{bottom:159.467147pt;}
.y1cb9_c00001{bottom:159.520000pt;}
.y4eb_c00001{bottom:159.547067pt;}
.y393b_c00001{bottom:159.787067pt;}
.y2f7_c00001{bottom:159.867067pt;}
.y28c2_c00001{bottom:159.867619pt;}
.y26f0_c00001{bottom:159.945867pt;}
.y7b_c00001{bottom:159.947067pt;}
.y1373_c00001{bottom:160.027067pt;}
.y152d_c00001{bottom:160.027667pt;}
.y33a5_c00001{bottom:160.107067pt;}
.y1079_c00001{bottom:160.107200pt;}
.y10cf_c00001{bottom:160.267184pt;}
.y323f_c00001{bottom:160.304480pt;}
.y3462_c00001{bottom:160.347067pt;}
.y396b_c00001{bottom:160.425931pt;}
.y2867_c00001{bottom:160.426347pt;}
.y34c4_c00001{bottom:160.427067pt;}
.y2d8c_c00001{bottom:160.480000pt;}
.y2aea_c00001{bottom:160.507067pt;}
.y791_c00001{bottom:160.587067pt;}
.y334f_c00001{bottom:160.640000pt;}
.y1287_c00001{bottom:160.666243pt;}
.y216e_c00001{bottom:160.667067pt;}
.y3768_c00001{bottom:160.747819pt;}
.y10e5_c00001{bottom:160.747867pt;}
.y23e1_c00001{bottom:160.825200pt;}
.yda4_c00001{bottom:160.907067pt;}
.y2a61_c00001{bottom:160.986355pt;}
.ya17_c00001{bottom:160.987067pt;}
.y2528_c00001{bottom:161.066675pt;}
.y11be_c00001{bottom:161.227067pt;}
.y87e_c00001{bottom:161.307067pt;}
.y300e_c00001{bottom:161.440000pt;}
.y1764_c00001{bottom:161.467067pt;}
.y1e47_c00001{bottom:161.600000pt;}
.y497_c00001{bottom:161.627067pt;}
.y77e_c00001{bottom:161.707067pt;}
.y6d1_c00001{bottom:161.787067pt;}
.y1669_c00001{bottom:161.788688pt;}
.y310f_c00001{bottom:161.920000pt;}
.y254f_c00001{bottom:161.942667pt;}
.y70e_c00001{bottom:162.027067pt;}
.y1cf7_c00001{bottom:162.080000pt;}
.y1874_c00001{bottom:162.187067pt;}
.y9e7_c00001{bottom:162.187200pt;}
.ye5f_c00001{bottom:162.267067pt;}
.y372c_c00001{bottom:162.344795pt;}
.y2396_c00001{bottom:162.346443pt;}
.y1972_c00001{bottom:162.427067pt;}
.y16b3_c00001{bottom:162.427200pt;}
.yb6b_c00001{bottom:162.586259pt;}
.y9ce_c00001{bottom:162.587067pt;}
.y2249_c00001{bottom:162.667067pt;}
.y1138_c00001{bottom:162.745363pt;}
.y3a51_c00001{bottom:162.748923pt;}
.y2d41_c00001{bottom:162.755248pt;}
.y24f8_c00001{bottom:162.826739pt;}
.y36b4_c00001{bottom:162.832243pt;}
.y30aa_c00001{bottom:162.880000pt;}
.y2971_c00001{bottom:162.907067pt;}
.ya08_c00001{bottom:162.907200pt;}
.y2685_c00001{bottom:162.987067pt;}
.y32c8_c00001{bottom:163.040000pt;}
.y16e8_c00001{bottom:163.067067pt;}
.y11b6_c00001{bottom:163.070043pt;}
.y1029_c00001{bottom:163.070291pt;}
.y1cc_c00001{bottom:163.147200pt;}
.y338_c00001{bottom:163.227067pt;}
.y19b_c00001{bottom:163.307067pt;}
.y1f89_c00001{bottom:163.314475pt;}
.y5ba_c00001{bottom:163.467067pt;}
.y19f9_c00001{bottom:163.520000pt;}
.y167e_c00001{bottom:163.547067pt;}
.y127f_c00001{bottom:163.547200pt;}
.y20ca_c00001{bottom:163.627067pt;}
.y1889_c00001{bottom:163.707067pt;}
.ye16_c00001{bottom:163.786944pt;}
.yf7e_c00001{bottom:163.787067pt;}
.y3840_c00001{bottom:163.866283pt;}
.y2246_c00001{bottom:163.947067pt;}
.y32ed_c00001{bottom:164.000000pt;}
.y521_c00001{bottom:164.027067pt;}
.y1bc4_c00001{bottom:164.160000pt;}
.y2262_c00001{bottom:164.187200pt;}
.y249d_c00001{bottom:164.347067pt;}
.y35e_c00001{bottom:164.427067pt;}
.y1eac_c00001{bottom:164.480000pt;}
.y36d1_c00001{bottom:164.507443pt;}
.yaf7_c00001{bottom:164.587067pt;}
.y1b24_c00001{bottom:164.640000pt;}
.y1643_c00001{bottom:164.667067pt;}
.y3fa_c00001{bottom:164.747067pt;}
.yc5d_c00001{bottom:164.747195pt;}
.y2f44_c00001{bottom:164.800000pt;}
.y31_c00001{bottom:164.827067pt;}
.y2cb0_c00001{bottom:164.905379pt;}
.y1dd3_c00001{bottom:164.960000pt;}
.ycff_c00001{bottom:164.987067pt;}
.y2338_c00001{bottom:165.222555pt;}
.y17e9_c00001{bottom:165.227067pt;}
.y58d_c00001{bottom:165.307067pt;}
.yd2b_c00001{bottom:165.387067pt;}
.yaaf_c00001{bottom:165.467067pt;}
.y2575_c00001{bottom:165.549232pt;}
.y2ed5_c00001{bottom:165.600000pt;}
.ybc9_c00001{bottom:165.626635pt;}
.y9ba_c00001{bottom:165.627067pt;}
.y3a39_c00001{bottom:165.634755pt;}
.y1000_c00001{bottom:165.707067pt;}
.y1c73_c00001{bottom:165.760000pt;}
.y1232_c00001{bottom:165.782912pt;}
.y2288_c00001{bottom:165.785563pt;}
.y1471_c00001{bottom:165.787067pt;}
.y164a_c00001{bottom:165.867067pt;}
.y15b5_c00001{bottom:165.867200pt;}
.y3084_c00001{bottom:165.920000pt;}
.y3957_c00001{bottom:165.944811pt;}
.y130d_c00001{bottom:165.945675pt;}
.yfd2_c00001{bottom:166.023347pt;}
.y338f_c00001{bottom:166.030635pt;}
.y1edb_c00001{bottom:166.080000pt;}
.y2948_c00001{bottom:166.106011pt;}
.y14b6_c00001{bottom:166.186347pt;}
.y2795_c00001{bottom:166.187200pt;}
.y1cf8_c00001{bottom:166.240000pt;}
.y912_c00001{bottom:166.267067pt;}
.yc85_c00001{bottom:166.268096pt;}
.y22bc_c00001{bottom:166.347067pt;}
.y2cf1_c00001{bottom:166.347131pt;}
.y20f7_c00001{bottom:166.424976pt;}
.ybd1_c00001{bottom:166.425563pt;}
.y3634_c00001{bottom:166.427235pt;}
.y54_c00001{bottom:166.507067pt;}
.y125_c00001{bottom:166.587067pt;}
.y259e_c00001{bottom:166.663867pt;}
.y191a_c00001{bottom:166.715040pt;}
.y8eb_c00001{bottom:166.747067pt;}
.y3333_c00001{bottom:166.880000pt;}
.y2045_c00001{bottom:166.982811pt;}
.y36d_c00001{bottom:166.987067pt;}
.y1b70_c00001{bottom:167.040000pt;}
.y171f_c00001{bottom:167.067067pt;}
.y183a_c00001{bottom:167.067200pt;}
.ya1_c00001{bottom:167.147067pt;}
.y893_c00001{bottom:167.147200pt;}
.y1093_c00001{bottom:167.147307pt;}
.y2850_c00001{bottom:167.306800pt;}
.y15ac_c00001{bottom:167.307067pt;}
.y1579_c00001{bottom:167.308067pt;}
.y194c_c00001{bottom:167.360000pt;}
.y3616_c00001{bottom:167.387067pt;}
.y8c3_c00001{bottom:167.467067pt;}
.y39a9_c00001{bottom:167.704483pt;}
.y2a07_c00001{bottom:167.705200pt;}
.y2b6b_c00001{bottom:167.788139pt;}
.y1c41_c00001{bottom:167.840000pt;}
.y2b0b_c00001{bottom:167.867067pt;}
.y398a_c00001{bottom:167.945867pt;}
.y23b5_c00001{bottom:167.947067pt;}
.y35dc_c00001{bottom:168.027067pt;}
.y22a2_c00001{bottom:168.106283pt;}
.yc27_c00001{bottom:168.107200pt;}
.y2bf1_c00001{bottom:168.107907pt;}
.y84d_c00001{bottom:168.187067pt;}
.y46c_c00001{bottom:168.267067pt;}
.yf7_c00001{bottom:168.347067pt;}
.y38da_c00001{bottom:168.506499pt;}
.y157c_c00001{bottom:168.587067pt;}
.y3063_c00001{bottom:168.640000pt;}
.y34af_c00001{bottom:168.667067pt;}
.y1443_c00001{bottom:168.747067pt;}
.y9a5_c00001{bottom:168.827067pt;}
.y2927_c00001{bottom:168.827155pt;}
.y201e_c00001{bottom:168.907195pt;}
.y38a6_c00001{bottom:169.056075pt;}
.y3430_c00001{bottom:169.226544pt;}
.y2e74_c00001{bottom:169.280000pt;}
.y16c5_c00001{bottom:169.307067pt;}
.y35be_c00001{bottom:169.309520pt;}
.y2f0f_c00001{bottom:169.440000pt;}
.y205e_c00001{bottom:169.467067pt;}
.y2c3_c00001{bottom:169.467200pt;}
.y199b_c00001{bottom:169.600000pt;}
.y2c17_c00001{bottom:169.629144pt;}
.y1c42_c00001{bottom:169.760000pt;}
.y123c_c00001{bottom:169.787067pt;}
.yfa6_c00001{bottom:169.867067pt;}
.y1c74_c00001{bottom:169.920000pt;}
.y2d60_c00001{bottom:170.075040pt;}
.ya2c_c00001{bottom:170.187067pt;}
.y985_c00001{bottom:170.187200pt;}
.y2edc_c00001{bottom:170.240000pt;}
.y21db_c00001{bottom:170.267067pt;}
.y21fb_c00001{bottom:170.346611pt;}
.y2a20_c00001{bottom:170.347067pt;}
.y1d4c_c00001{bottom:170.400000pt;}
.y303a_c00001{bottom:170.402720pt;}
.y1d7e_c00001{bottom:170.403520pt;}
.y2886_c00001{bottom:170.426803pt;}
.y154b_c00001{bottom:170.427067pt;}
.y37c0_c00001{bottom:170.507067pt;}
.y3755_c00001{bottom:170.512347pt;}
.y3559_c00001{bottom:170.590448pt;}
.ya72_c00001{bottom:170.746499pt;}
.y1781_c00001{bottom:170.747067pt;}
.y26ca_c00001{bottom:170.827067pt;}
.y24c9_c00001{bottom:170.904883pt;}
.y911_c00001{bottom:170.907067pt;}
.y15e1_c00001{bottom:170.987067pt;}
.y687_c00001{bottom:171.147067pt;}
.y1b72_c00001{bottom:171.200000pt;}
.y3857_c00001{bottom:171.227067pt;}
.y29a2_c00001{bottom:171.305867pt;}
.y3085_c00001{bottom:171.360000pt;}
.yb21_c00001{bottom:171.387067pt;}
.y2833_c00001{bottom:171.390779pt;}
.y3586_c00001{bottom:171.467067pt;}
.y219_c00001{bottom:171.547067pt;}
.y35f5_c00001{bottom:171.622811pt;}
.y1fa_c00001{bottom:171.627067pt;}
.y3218_c00001{bottom:171.631872pt;}
.y391f_c00001{bottom:171.709387pt;}
.yfb6_c00001{bottom:171.787067pt;}
.y39b_c00001{bottom:171.787435pt;}
.y332e_c00001{bottom:171.840000pt;}
.y264c_c00001{bottom:171.945867pt;}
.y29e0_c00001{bottom:171.948283pt;}
.y3340_c00001{bottom:172.000000pt;}
.y35a0_c00001{bottom:172.021611pt;}
.y378f_c00001{bottom:172.025355pt;}
.y30e8_c00001{bottom:172.160000pt;}
.y329a_c00001{bottom:172.162720pt;}
.y27f0_c00001{bottom:172.185211pt;}
.y27eb_c00001{bottom:172.186675pt;}
.y419_c00001{bottom:172.187067pt;}
.y3486_c00001{bottom:172.187200pt;}
.y13c0_c00001{bottom:172.267067pt;}
.y2f1e_c00001{bottom:172.320000pt;}
.y27c5_c00001{bottom:172.347067pt;}
.yd57_c00001{bottom:172.427067pt;}
.y3660_c00001{bottom:172.427251pt;}
.yad1_c00001{bottom:172.507147pt;}
.y1167_c00001{bottom:172.586547pt;}
.y3866_c00001{bottom:172.587067pt;}
.y2735_c00001{bottom:172.588459pt;}
.y396a_c00001{bottom:172.666187pt;}
.y1726_c00001{bottom:172.667067pt;}
.y2cc4_c00001{bottom:172.746739pt;}
.y162d_c00001{bottom:172.747200pt;}
.y2778_c00001{bottom:172.752347pt;}
.y1c00_c00001{bottom:172.800000pt;}
.y285_c00001{bottom:172.827067pt;}
.y1286_c00001{bottom:172.906499pt;}
.y2432_c00001{bottom:172.906667pt;}
.y182e_c00001{bottom:172.907067pt;}
.y32c3_c00001{bottom:173.120000pt;}
.y61e_c00001{bottom:173.147067pt;}
.y2704_c00001{bottom:173.147200pt;}
.y22e1_c00001{bottom:173.227067pt;}
.y1a3b_c00001{bottom:173.280000pt;}
.y1177_c00001{bottom:173.303979pt;}
.y8fa_c00001{bottom:173.307067pt;}
.yfdc_c00001{bottom:173.386667pt;}
.y566_c00001{bottom:173.387067pt;}
.y2e75_c00001{bottom:173.440000pt;}
.y3d1_c00001{bottom:173.467067pt;}
.y2ad8_c00001{bottom:173.547067pt;}
.y1f0e_c00001{bottom:173.600000pt;}
.y207c_c00001{bottom:173.703355pt;}
.y1493_c00001{bottom:173.707067pt;}
.y7bd_c00001{bottom:173.707200pt;}
.ye7d_c00001{bottom:173.787067pt;}
.y6ea_c00001{bottom:173.867067pt;}
.y1639_c00001{bottom:173.867200pt;}
.y1f53_c00001{bottom:173.875851pt;}
.y1e46_c00001{bottom:173.920000pt;}
.y1f6c_c00001{bottom:173.947067pt;}
.y28c1_c00001{bottom:173.947531pt;}
.y341f_c00001{bottom:174.024451pt;}
.y25e6_c00001{bottom:174.105867pt;}
.y184a_c00001{bottom:174.107067pt;}
.y25ba_c00001{bottom:174.267067pt;}
.y1798_c00001{bottom:174.347067pt;}
.y17aa_c00001{bottom:174.507067pt;}
.y1128_c00001{bottom:174.507907pt;}
.y372b_c00001{bottom:174.585051pt;}
.y441_c00001{bottom:174.587067pt;}
.y2395_c00001{bottom:174.666499pt;}
.y12b7_c00001{bottom:174.667067pt;}
.y39db_c00001{bottom:174.747067pt;}
.yb6a_c00001{bottom:174.826515pt;}
.y1b71_c00001{bottom:174.880000pt;}
.yd79_c00001{bottom:174.907067pt;}
.y3767_c00001{bottom:174.907531pt;}
.y1137_c00001{bottom:174.985619pt;}
.y10d0_c00001{bottom:174.987232pt;}
.y1616_c00001{bottom:175.067067pt;}
.y977_c00001{bottom:175.067200pt;}
.y2816_c00001{bottom:175.144779pt;}
.yc02_c00001{bottom:175.147200pt;}
.y230d_c00001{bottom:175.227067pt;}
.y33ed_c00001{bottom:175.227907pt;}
.y170b_c00001{bottom:175.387067pt;}
.y2ca8_c00001{bottom:175.466675pt;}
.y910_c00001{bottom:175.467067pt;}
.y10e6_c00001{bottom:175.468267pt;}
.yf39_c00001{bottom:175.547067pt;}
.y3405_c00001{bottom:175.627067pt;}
.y323e_c00001{bottom:175.669440pt;}
.y2ba2_c00001{bottom:175.786411pt;}
.y221c_c00001{bottom:175.787067pt;}
.y1a86_c00001{bottom:175.840000pt;}
.y70d_c00001{bottom:175.866667pt;}
.y334e_c00001{bottom:176.000000pt;}
.ye15_c00001{bottom:176.027200pt;}
.y4ea_c00001{bottom:176.107200pt;}
.y3536_c00001{bottom:176.178035pt;}
.y232_c00001{bottom:176.187067pt;}
.y25c_c00001{bottom:176.187200pt;}
.yedd_c00001{bottom:176.267067pt;}
.y1f28_c00001{bottom:176.267155pt;}
.yc32_c00001{bottom:176.347067pt;}
.y15a9_c00001{bottom:176.347800pt;}
.y37f9_c00001{bottom:176.427067pt;}
.y2f52_c00001{bottom:176.480000pt;}
.y8ad_c00001{bottom:176.507067pt;}
.y809_c00001{bottom:176.587067pt;}
.y1c43_c00001{bottom:176.640000pt;}
.y23e0_c00001{bottom:176.665200pt;}
.y2123_c00001{bottom:176.665800pt;}
.y21a9_c00001{bottom:176.666011pt;}
.y120d_c00001{bottom:176.667067pt;}
.y211e_c00001{bottom:176.667264pt;}
.y2b6a_c00001{bottom:176.668475pt;}
.y3826_c00001{bottom:176.745891pt;}
.y152c_c00001{bottom:176.827067pt;}
.y3a50_c00001{bottom:176.828835pt;}
.y548_c00001{bottom:176.907067pt;}
.yccd_c00001{bottom:176.988555pt;}
.y36b3_c00001{bottom:176.991955pt;}
.ye5a_c00001{bottom:177.147067pt;}
.ydc5_c00001{bottom:177.147200pt;}
.y2623_c00001{bottom:177.225467pt;}
.ya64_c00001{bottom:177.227067pt;}
.y1dd2_c00001{bottom:177.280000pt;}
.y28d3_c00001{bottom:177.307067pt;}
.y8d9_c00001{bottom:177.467067pt;}
.y1a87_c00001{bottom:177.600000pt;}
.y254e_c00001{bottom:177.782667pt;}
.y320d_c00001{bottom:177.920000pt;}
.y216d_c00001{bottom:177.947067pt;}
.yed9_c00001{bottom:178.027200pt;}
.y2f59_c00001{bottom:178.080000pt;}
.y1231_c00001{bottom:178.102968pt;}
.y6af_c00001{bottom:178.106027pt;}
.y130c_c00001{bottom:178.185931pt;}
.y349a_c00001{bottom:178.265867pt;}
.y722_c00001{bottom:178.267067pt;}
.yfd1_c00001{bottom:178.343403pt;}
.y7a_c00001{bottom:178.347067pt;}
.y2356_c00001{bottom:178.426347pt;}
.y1971_c00001{bottom:178.427067pt;}
.y37ad_c00001{bottom:178.433419pt;}
.y13b9_c00001{bottom:178.506363pt;}
.y1cb_c00001{bottom:178.507067pt;}
.y1e10_c00001{bottom:178.560000pt;}
.y36d0_c00001{bottom:178.587355pt;}
.y7e2_c00001{bottom:178.747067pt;}
.y93c_c00001{bottom:178.827067pt;}
.y2d8b_c00001{bottom:178.880000pt;}
.y310e_c00001{bottom:179.040000pt;}
.y1078_c00001{bottom:179.147200pt;}
.y32eb_c00001{bottom:179.360000pt;}
.y9e6_c00001{bottom:179.387067pt;}
.y337_c00001{bottom:179.467067pt;}
.y1cb5_c00001{bottom:179.520000pt;}
.y169b_c00001{bottom:179.627200pt;}
.y2463_c00001{bottom:179.627467pt;}
.y2574_c00001{bottom:179.629144pt;}
.y249c_c00001{bottom:179.707067pt;}
.y3a38_c00001{bottom:179.714667pt;}
.y2866_c00001{bottom:179.786283pt;}
.y662_c00001{bottom:179.787067pt;}
.y32c7_c00001{bottom:179.840000pt;}
.y11db_c00001{bottom:179.867067pt;}
.y1763_c00001{bottom:179.947067pt;}
.y2c90_c00001{bottom:179.947611pt;}
.y1c01_c00001{bottom:180.000000pt;}
.y20b3_c00001{bottom:180.024400pt;}
.y39a8_c00001{bottom:180.024539pt;}
.y377a_c00001{bottom:180.027200pt;}
.y77d_c00001{bottom:180.107067pt;}
.y314c_c00001{bottom:180.160000pt;}
.y6d0_c00001{bottom:180.187067pt;}
.y1668_c00001{bottom:180.188440pt;}
.y87d_c00001{bottom:180.347067pt;}
.y29cb_c00001{bottom:180.422955pt;}
.y2527_c00001{bottom:180.426611pt;}
.y2a60_c00001{bottom:180.426811pt;}
.y145d_c00001{bottom:180.427067pt;}
.y2a5d_c00001{bottom:180.427131pt;}
.ydec_c00001{bottom:180.507067pt;}
.y23b4_c00001{bottom:180.587067pt;}
.y11e7_c00001{bottom:180.592515pt;}
.y2d40_c00001{bottom:180.674608pt;}
.y22f5_c00001{bottom:180.746411pt;}
.y38d9_c00001{bottom:180.746755pt;}
.y8ea_c00001{bottom:180.747067pt;}
.y2970_c00001{bottom:180.827067pt;}
.yc5e_c00001{bottom:180.827291pt;}
.y2c5c_c00001{bottom:180.907067pt;}
.y1d4f_c00001{bottom:180.960000pt;}
.yd93_c00001{bottom:180.987067pt;}
.yf61_c00001{bottom:181.067067pt;}
.y284f_c00001{bottom:181.067200pt;}
.y236f_c00001{bottom:181.147200pt;}
.y1f88_c00001{bottom:181.233835pt;}
.y1cb6_c00001{bottom:181.280000pt;}
.y38a5_c00001{bottom:181.296331pt;}
.y19f3_c00001{bottom:181.440000pt;}
.y11b5_c00001{bottom:181.469795pt;}
.y1028_c00001{bottom:181.470043pt;}
.y177_c00001{bottom:181.707067pt;}
.y1dd8_c00001{bottom:181.760000pt;}
.y5b9_c00001{bottom:181.867067pt;}
.y2a7b_c00001{bottom:181.947067pt;}
.y3683_c00001{bottom:182.027200pt;}
.y1919_c00001{bottom:182.080000pt;}
.y24f7_c00001{bottom:182.186675pt;}
.y2910_c00001{bottom:182.187067pt;}
.ycfe_c00001{bottom:182.187200pt;}
.y1bc0_c00001{bottom:182.240000pt;}
.yd2a_c00001{bottom:182.267067pt;}
.y2bf0_c00001{bottom:182.267619pt;}
.y36ed_c00001{bottom:182.337547pt;}
.yc86_c00001{bottom:182.348328pt;}
.y31c9_c00001{bottom:182.400000pt;}
.y520_c00001{bottom:182.427067pt;}
.y259d_c00001{bottom:182.503867pt;}
.yeab_c00001{bottom:182.507067pt;}
.y1d7d_c00001{bottom:182.560000pt;}
.y13d9_c00001{bottom:182.587067pt;}
.y3447_c00001{bottom:182.666667pt;}
.y3039_c00001{bottom:182.720000pt;}
.y2245_c00001{bottom:182.745955pt;}
.y35d_c00001{bottom:182.827067pt;}
.y75a_c00001{bottom:182.827200pt;}
.y2926_c00001{bottom:182.907067pt;}
.ya71_c00001{bottom:182.986755pt;}
.y327c_c00001{bottom:183.040000pt;}
.y26a5_c00001{bottom:183.064411pt;}
.y2684_c00001{bottom:183.067200pt;}
.y645_c00001{bottom:183.147067pt;}
.y247e_c00001{bottom:183.147200pt;}
.y1e13_c00001{bottom:183.200000pt;}
.y383f_c00001{bottom:183.226219pt;}
.y1873_c00001{bottom:183.307067pt;}
.y2b0a_c00001{bottom:183.385891pt;}
.y3f9_c00001{bottom:183.387067pt;}
.y35bd_c00001{bottom:183.389432pt;}
.y218b_c00001{bottom:183.467867pt;}
.yf11_c00001{bottom:183.547067pt;}
.y3471_c00001{bottom:183.624667pt;}
.y2a06_c00001{bottom:183.625600pt;}
.y2fe5_c00001{bottom:183.680000pt;}
.y3615_c00001{bottom:183.707067pt;}
.y2c16_c00001{bottom:183.709056pt;}
.yac1_c00001{bottom:183.787067pt;}
.ycc_c00001{bottom:183.947067pt;}
.y1b23_c00001{bottom:184.000000pt;}
.yafe_c00001{bottom:184.026747pt;}
.y2149_c00001{bottom:184.107200pt;}
.y1cf5_c00001{bottom:184.160000pt;}
.y3485_c00001{bottom:184.187200pt;}
.y1578_c00001{bottom:184.187987pt;}
.y1540_c00001{bottom:184.267067pt;}
.y2db6_c00001{bottom:184.320000pt;}
.y2caf_c00001{bottom:184.345835pt;}
.y3502_c00001{bottom:184.425515pt;}
.yda3_c00001{bottom:184.427067pt;}
.y3299_c00001{bottom:184.480000pt;}
.yfdb_c00001{bottom:184.507067pt;}
.y34d9_c00001{bottom:184.582955pt;}
.y3754_c00001{bottom:184.592259pt;}
.y1a88_c00001{bottom:184.640000pt;}
.y2337_c00001{bottom:184.663011pt;}
.y90f_c00001{bottom:184.667067pt;}
.y3558_c00001{bottom:184.670360pt;}
.y20c9_c00001{bottom:184.747067pt;}
.y1888_c00001{bottom:184.827067pt;}
.y30a8_c00001{bottom:184.960000pt;}
.y3969_c00001{bottom:184.986243pt;}
.y2794_c00001{bottom:184.986739pt;}
.y2287_c00001{bottom:185.145499pt;}
.y1285_c00001{bottom:185.146755pt;}
.yb05_c00001{bottom:185.147067pt;}
.y2f90_c00001{bottom:185.280000pt;}
.y36c_c00001{bottom:185.387067pt;}
.y2d5f_c00001{bottom:185.440000pt;}
.y2b69_c00001{bottom:185.468467pt;}
.y2832_c00001{bottom:185.470691pt;}
.ya0_c00001{bottom:185.547067pt;}
.y1065_c00001{bottom:185.547200pt;}
.y1eab_c00001{bottom:185.600000pt;}
.y14b5_c00001{bottom:185.626803pt;}
.y13a4_c00001{bottom:185.627387pt;}
.y2cf0_c00001{bottom:185.707067pt;}
.y2d15_c00001{bottom:185.710387pt;}
.y194b_c00001{bottom:185.760000pt;}
.y14fb_c00001{bottom:185.787067pt;}
.y391e_c00001{bottom:185.789299pt;}
.y20f6_c00001{bottom:185.865432pt;}
.y21da_c00001{bottom:185.866803pt;}
.y2261_c00001{bottom:185.947067pt;}
.y29df_c00001{bottom:186.107995pt;}
.y1cb7_c00001{bottom:186.240000pt;}
.ybca_c00001{bottom:186.266499pt;}
.y17e8_c00001{bottom:186.427067pt;}
.y1107_c00001{bottom:186.507067pt;}
.y8c2_c00001{bottom:186.587067pt;}
.y46b_c00001{bottom:186.667067pt;}
.y147_c00001{bottom:186.667200pt;}
.y2734_c00001{bottom:186.668371pt;}
.y1a3a_c00001{bottom:186.720000pt;}
.y26b7_c00001{bottom:186.746939pt;}
.y13ad_c00001{bottom:186.747067pt;}
.y2777_c00001{bottom:186.832259pt;}
.y372a_c00001{bottom:186.905107pt;}
.y2394_c00001{bottom:186.906755pt;}
.y1f9_c00001{bottom:186.907067pt;}
.ybd2_c00001{bottom:186.985267pt;}
.y1859_c00001{bottom:186.987067pt;}
.y319c_c00001{bottom:187.040000pt;}
.yb69_c00001{bottom:187.066771pt;}
.yc50_c00001{bottom:187.067067pt;}
.y29a1_c00001{bottom:187.145867pt;}
.y39a_c00001{bottom:187.147427pt;}
.y2e17_c00001{bottom:187.200000pt;}
.y1136_c00001{bottom:187.305675pt;}
.y331e_c00001{bottom:187.360000pt;}
.y18e6_c00001{bottom:187.387067pt;}
.y2f6_c00001{bottom:187.467067pt;}
.y22a1_c00001{bottom:187.546739pt;}
.y1492_c00001{bottom:187.547067pt;}
.ye61_c00001{bottom:187.627067pt;}
.y2de3_c00001{bottom:187.680000pt;}
.y33a4_c00001{bottom:187.707067pt;}
.y264b_c00001{bottom:187.785867pt;}
.y365f_c00001{bottom:187.787243pt;}
.y1c71_c00001{bottom:187.840000pt;}
.y9a4_c00001{bottom:187.867067pt;}
.y2c2_c00001{bottom:187.867200pt;}
.y3461_c00001{bottom:187.947067pt;}
.y1340_c00001{bottom:188.107200pt;}
.y28c0_c00001{bottom:188.107243pt;}
.y10c3_c00001{bottom:188.187067pt;}
.y2bc3_c00001{bottom:188.265600pt;}
.yb20_c00001{bottom:188.267067pt;}
.y201d_c00001{bottom:188.267131pt;}
.y1839_c00001{bottom:188.267200pt;}
.y1cf6_c00001{bottom:188.320000pt;}
.y892_c00001{bottom:188.427067pt;}
.ya16_c00001{bottom:188.587067pt;}
.y15e0_c00001{bottom:188.587307pt;}
.y266a_c00001{bottom:188.667067pt;}
.ye43_c00001{bottom:188.747200pt;}
.y22e0_c00001{bottom:188.826739pt;}
.y236e_c00001{bottom:188.827067pt;}
.y1f0d_c00001{bottom:188.960000pt;}
.y3766_c00001{bottom:188.987443pt;}
.y1b6f_c00001{bottom:189.120000pt;}
.y1168_c00001{bottom:189.146267pt;}
.y496_c00001{bottom:189.227067pt;}
.y30a9_c00001{bottom:189.280000pt;}
.y90e_c00001{bottom:189.307067pt;}
.y2db7_c00001{bottom:189.440000pt;}
.y686_c00001{bottom:189.547067pt;}
.y1ade_c00001{bottom:189.600000pt;}
.ye65_c00001{bottom:189.626667pt;}
.y70c_c00001{bottom:189.627067pt;}
.y10d1_c00001{bottom:189.627120pt;}
.y378e_c00001{bottom:189.705979pt;}
.y1fb3_c00001{bottom:189.707067pt;}
.y2885_c00001{bottom:189.786739pt;}
.y21fd_c00001{bottom:189.787067pt;}
.y1178_c00001{bottom:189.863699pt;}
.y274f_c00001{bottom:189.947067pt;}
.ye14_c00001{bottom:189.948907pt;}
.y1fff_c00001{bottom:189.950024pt;}
.y25e5_c00001{bottom:190.026267pt;}
.y16b2_c00001{bottom:190.027200pt;}
.y10e7_c00001{bottom:190.108267pt;}
.y9cd_c00001{bottom:190.187067pt;}
.y24c8_c00001{bottom:190.264819pt;}
.y24c3_c00001{bottom:190.266283pt;}
.y27c4_c00001{bottom:190.267067pt;}
.y1230_c00001{bottom:190.343224pt;}
.y2f58_c00001{bottom:190.400000pt;}
.y130b_c00001{bottom:190.426187pt;}
.y37bf_c00001{bottom:190.507067pt;}
.ya07_c00001{bottom:190.507200pt;}
.yfd0_c00001{bottom:190.583659pt;}
.y218_c00001{bottom:190.587067pt;}
.y2ef7_c00001{bottom:190.720000pt;}
.y323d_c00001{bottom:190.875040pt;}
.y3a4f_c00001{bottom:190.908747pt;}
.y1725_c00001{bottom:191.067067pt;}
.y21fa_c00001{bottom:191.067200pt;}
.y36b2_c00001{bottom:191.071867pt;}
.y167d_c00001{bottom:191.147067pt;}
.y127e_c00001{bottom:191.147200pt;}
.y3369_c00001{bottom:191.200000pt;}
.y284_c00001{bottom:191.227067pt;}
.y2e72_c00001{bottom:191.360000pt;}
.y2bd4_c00001{bottom:191.387067pt;}
.y1127_c00001{bottom:191.387827pt;}
.y1254_c00001{bottom:191.467067pt;}
.y32c2_c00001{bottom:191.520000pt;}
.y27ef_c00001{bottom:191.545147pt;}
.y27ea_c00001{bottom:191.546611pt;}
.y61d_c00001{bottom:191.547067pt;}
.yc26_c00001{bottom:191.627067pt;}
.yed3_c00001{bottom:191.627987pt;}
.yb5c_c00001{bottom:191.707067pt;}
.y28e2_c00001{bottom:191.787067pt;}
.y325c_c00001{bottom:191.840000pt;}
.y3d0_c00001{bottom:191.867067pt;}
.y1780_c00001{bottom:191.947067pt;}
.y565_c00001{bottom:192.027200pt;}
.y33ec_c00001{bottom:192.027307pt;}
.y2cc3_c00001{bottom:192.106675pt;}
.y7bc_c00001{bottom:192.107200pt;}
.y1c72_c00001{bottom:192.160000pt;}
.yaf6_c00001{bottom:192.187067pt;}
.y39a7_c00001{bottom:192.264795pt;}
.y1642_c00001{bottom:192.267067pt;}
.yc01_c00001{bottom:192.346755pt;}
.y1f6b_c00001{bottom:192.347067pt;}
.y30_c00001{bottom:192.427067pt;}
.y1bc1_c00001{bottom:192.480000pt;}
.y23df_c00001{bottom:192.505200pt;}
.y1092_c00001{bottom:192.506715pt;}
.y125e_c00001{bottom:192.587067pt;}
.y26ef_c00001{bottom:192.666267pt;}
.y3865_c00001{bottom:192.667067pt;}
.y36cf_c00001{bottom:192.747067pt;}
.y32c6_c00001{bottom:192.800000pt;}
.yacd_c00001{bottom:192.827067pt;}
.y14df_c00001{bottom:192.907067pt;}
.y38d8_c00001{bottom:192.987011pt;}
.yaae_c00001{bottom:193.067067pt;}
.y39da_c00001{bottom:193.147067pt;}
.y15a8_c00001{bottom:193.147200pt;}
.y9b9_c00001{bottom:193.227067pt;}
.yfff_c00001{bottom:193.307067pt;}
.y1470_c00001{bottom:193.387067pt;}
.y3128_c00001{bottom:193.440000pt;}
.y19a7_c00001{bottom:193.445440pt;}
.y341e_c00001{bottom:193.464907pt;}
.y1649_c00001{bottom:193.467067pt;}
.y15b4_c00001{bottom:193.467200pt;}
.y38a4_c00001{bottom:193.536587pt;}
.y216c_c00001{bottom:193.544976pt;}
.y2abe_c00001{bottom:193.546739pt;}
.y314b_c00001{bottom:193.600000pt;}
.y254d_c00001{bottom:193.703067pt;}
.y440_c00001{bottom:193.707067pt;}
.y2573_c00001{bottom:193.709056pt;}
.y1ca_c00001{bottom:193.787067pt;}
.y3a37_c00001{bottom:193.794579pt;}
.y90d_c00001{bottom:193.867067pt;}
.ya4e_c00001{bottom:194.027067pt;}
.y53_c00001{bottom:194.107067pt;}
.y351c_c00001{bottom:194.107200pt;}
.y124_c00001{bottom:194.187067pt;}
.y976_c00001{bottom:194.187200pt;}
.y3082_c00001{bottom:194.240000pt;}
.y2b68_c00001{bottom:194.268459pt;}
.yad2_c00001{bottom:194.346739pt;}
.y25b9_c00001{bottom:194.347067pt;}
.y30e6_c00001{bottom:194.400000pt;}
.y152a_c00001{bottom:194.427227pt;}
.y2815_c00001{bottom:194.504715pt;}
.y4e9_c00001{bottom:194.507067pt;}
.y1b22_c00001{bottom:194.560000pt;}
.y25b_c00001{bottom:194.587067pt;}
.y221b_c00001{bottom:194.667067pt;}
.y3297_c00001{bottom:194.720000pt;}
.y81f_c00001{bottom:194.747067pt;}
.y2f51_c00001{bottom:194.880000pt;}
.y284e_c00001{bottom:194.906800pt;}
.y2ca7_c00001{bottom:194.907131pt;}
.y2ba1_c00001{bottom:195.146347pt;}
.ya70_c00001{bottom:195.227011pt;}
.y547_c00001{bottom:195.307067pt;}
.y1f52_c00001{bottom:195.315579pt;}
.yccc_c00001{bottom:195.388307pt;}
.y1797_c00001{bottom:195.547067pt;}
.y18ab_c00001{bottom:195.547200pt;}
.y2e73_c00001{bottom:195.680000pt;}
.y84c_c00001{bottom:195.787067pt;}
.y37d5_c00001{bottom:195.867067pt;}
.yf6_c00001{bottom:195.947067pt;}
.y2122_c00001{bottom:196.025736pt;}
.y3825_c00001{bottom:196.186347pt;}
.y790_c00001{bottom:196.187067pt;}
.y17d8_c00001{bottom:196.187200pt;}
.y9e5_c00001{bottom:196.267067pt;}
.y3038_c00001{bottom:196.320000pt;}
.y1442_c00001{bottom:196.347067pt;}
.y2bef_c00001{bottom:196.347531pt;}
.y296f_c00001{bottom:196.426019pt;}
.y37f8_c00001{bottom:196.427067pt;}
.y1c3f_c00001{bottom:196.480000pt;}
.y170a_c00001{bottom:196.507067pt;}
.y1eda_c00001{bottom:196.640000pt;}
.y79_c00001{bottom:196.747067pt;}
.y93b_c00001{bottom:196.827067pt;}
.y16c4_c00001{bottom:196.907067pt;}
.yc5f_c00001{bottom:196.907387pt;}
.y336_c00001{bottom:196.987067pt;}
.y3968_c00001{bottom:197.226499pt;}
.y2d8a_c00001{bottom:197.280000pt;}
.y211d_c00001{bottom:197.307067pt;}
.y3332_c00001{bottom:197.440000pt;}
.y1284_c00001{bottom:197.466811pt;}
.yfa5_c00001{bottom:197.467067pt;}
.y34ae_c00001{bottom:197.547067pt;}
.y35bc_c00001{bottom:197.549144pt;}
.y1215_c00001{bottom:197.627067pt;}
.y8ac_c00001{bottom:197.707067pt;}
.y2355_c00001{bottom:197.786283pt;}
.ya2b_c00001{bottom:197.787067pt;}
.y984_c00001{bottom:197.787200pt;}
.y2c15_c00001{bottom:197.788968pt;}
.y7e1_c00001{bottom:197.867067pt;}
.y1bfe_c00001{bottom:197.920000pt;}
.y29b9_c00001{bottom:197.947067pt;}
.y154a_c00001{bottom:198.027067pt;}
.y327a_c00001{bottom:198.080000pt;}
.yf7d_c00001{bottom:198.107200pt;}
.y11dc_c00001{bottom:198.107475pt;}
.y3a04_c00001{bottom:198.187200pt;}
.y1077_c00001{bottom:198.267067pt;}
.y259c_c00001{bottom:198.343867pt;}
.y17c5_c00001{bottom:198.347067pt;}
.y1e45_c00001{bottom:198.400000pt;}
.y3633_c00001{bottom:198.427067pt;}
.yc87_c00001{bottom:198.428560pt;}
.y77c_c00001{bottom:198.507067pt;}
.y30e7_c00001{bottom:198.560000pt;}
.y1918_c00001{bottom:198.565600pt;}
.y6cf_c00001{bottom:198.587067pt;}
.y1667_c00001{bottom:198.588192pt;}
.y2d3f_c00001{bottom:198.593968pt;}
.y3956_c00001{bottom:198.744267pt;}
.y8d8_c00001{bottom:198.747067pt;}
.y3753_c00001{bottom:198.751971pt;}
.y2947_c00001{bottom:198.826411pt;}
.y3856_c00001{bottom:198.827067pt;}
.y3557_c00001{bottom:198.830072pt;}
.y11e8_c00001{bottom:198.832923pt;}
.ycfd_c00001{bottom:199.067200pt;}
.y3729_c00001{bottom:199.145363pt;}
.y2865_c00001{bottom:199.146219pt;}
.y2393_c00001{bottom:199.147011pt;}
.y176_c00001{bottom:199.147200pt;}
.y1f87_c00001{bottom:199.153195pt;}
.ydeb_c00001{bottom:199.232827pt;}
.y2a1f_c00001{bottom:199.307067pt;}
.yb68_c00001{bottom:199.386827pt;}
.y87c_c00001{bottom:199.387067pt;}
.y2a05_c00001{bottom:199.465600pt;}
.y145c_c00001{bottom:199.467067pt;}
.y3083_c00001{bottom:199.520000pt;}
.y1135_c00001{bottom:199.545931pt;}
.y8e9_c00001{bottom:199.547067pt;}
.y2831_c00001{bottom:199.630403pt;}
.y2044_c00001{bottom:199.703211pt;}
.y2a5f_c00001{bottom:199.786747pt;}
.y2d22_c00001{bottom:199.787067pt;}
.y2cf5_c00001{bottom:199.866491pt;}
.y252c_c00001{bottom:199.867067pt;}
.y11b4_c00001{bottom:199.869547pt;}
.y1027_c00001{bottom:199.869795pt;}
.y391d_c00001{bottom:199.949011pt;}
.y338e_c00001{bottom:199.950051pt;}
.y1adb_c00001{bottom:200.000000pt;}
.y19a_c00001{bottom:200.107067pt;}
.y2a7a_c00001{bottom:200.187200pt;}
.y29de_c00001{bottom:200.187907pt;}
.y5b8_c00001{bottom:200.267067pt;}
.y162c_c00001{bottom:200.347200pt;}
.y3484_c00001{bottom:200.427067pt;}
.yed8_c00001{bottom:200.427427pt;}
.y290f_c00001{bottom:200.587067pt;}
.y3989_c00001{bottom:200.666267pt;}
.ydc4_c00001{bottom:200.667067pt;}
.y1f27_c00001{bottom:200.747067pt;}
.y51f_c00001{bottom:200.827067pt;}
.y2733_c00001{bottom:200.828083pt;}
.y8f9_c00001{bottom:200.907067pt;}
.y2776_c00001{bottom:200.912171pt;}
.y1e81_c00001{bottom:200.960000pt;}
.y1577_c00001{bottom:200.987387pt;}
.y1762_c00001{bottom:201.067067pt;}
.y2a5c_c00001{bottom:201.067200pt;}
.y2526_c00001{bottom:201.147200pt;}
.y35c_c00001{bottom:201.227067pt;}
.y3f8_c00001{bottom:201.307067pt;}
.y5e4_c00001{bottom:201.387067pt;}
.ycb_c00001{bottom:201.467067pt;}
.y1638_c00001{bottom:201.467200pt;}
.y644_c00001{bottom:201.547067pt;}
.y2d5e_c00001{bottom:201.600000pt;}
.y24f6_c00001{bottom:201.627131pt;}
.y342f_c00001{bottom:202.026000pt;}
.y2244_c00001{bottom:202.105891pt;}
.y105c_c00001{bottom:202.187067pt;}
.y28bf_c00001{bottom:202.187155pt;}
.y1dcf_c00001{bottom:202.254400pt;}
.y2ed4_c00001{bottom:202.400000pt;}
.y3062_c00001{bottom:202.402720pt;}
.yd78_c00001{bottom:202.507067pt;}
.y399_c00001{bottom:202.507419pt;}
.y1a83_c00001{bottom:202.560000pt;}
.y122f_c00001{bottom:202.583480pt;}
.y58c_c00001{bottom:202.587067pt;}
.y383e_c00001{bottom:202.666675pt;}
.y1615_c00001{bottom:202.667067pt;}
.y130a_c00001{bottom:202.746243pt;}
.y34c3_c00001{bottom:202.747067pt;}
.yfcf_c00001{bottom:202.823915pt;}
.y2b09_c00001{bottom:202.826347pt;}
.y310d_c00001{bottom:202.880000pt;}
.y29a0_c00001{bottom:202.985867pt;}
.y2925_c00001{bottom:202.987067pt;}
.y1e48_c00001{bottom:203.040000pt;}
.y90c_c00001{bottom:203.067067pt;}
.y3765_c00001{bottom:203.067355pt;}
.y2b67_c00001{bottom:203.068451pt;}
.yf38_c00001{bottom:203.147067pt;}
.y1f8_c00001{bottom:203.147200pt;}
.y365e_c00001{bottom:203.147235pt;}
.y3404_c00001{bottom:203.227067pt;}
.y364e_c00001{bottom:203.307067pt;}
.y1c40_c00001{bottom:203.360000pt;}
.y6ae_c00001{bottom:203.386379pt;}
.y70b_c00001{bottom:203.466667pt;}
.y1adc_c00001{bottom:203.520000pt;}
.y1e0f_c00001{bottom:203.695200pt;}
.y2cae_c00001{bottom:203.705771pt;}
.y264a_c00001{bottom:203.706267pt;}
.y18c9_c00001{bottom:203.707067pt;}
.y13b8_c00001{bottom:203.786715pt;}
.y231_c00001{bottom:203.787067pt;}
.y2fbd_c00001{bottom:203.840000pt;}
.yedc_c00001{bottom:203.867067pt;}
.y33f4_c00001{bottom:203.868139pt;}
.y9f_c00001{bottom:203.947067pt;}
.yf6c_c00001{bottom:203.947200pt;}
.y1eaa_c00001{bottom:204.000000pt;}
.y2336_c00001{bottom:204.022947pt;}
.y38c0_c00001{bottom:204.027200pt;}
.y39c7_c00001{bottom:204.107200pt;}
.y194a_c00001{bottom:204.160000pt;}
.y808_c00001{bottom:204.187067pt;}
.y120c_c00001{bottom:204.267067pt;}
.y1f0c_c00001{bottom:204.320000pt;}
.y35f4_c00001{bottom:204.343211pt;}
.y2793_c00001{bottom:204.346675pt;}
.y10d2_c00001{bottom:204.347168pt;}
.y1a84_c00001{bottom:204.480000pt;}
.y39a6_c00001{bottom:204.505051pt;}
.yb4c_c00001{bottom:204.507067pt;}
.y2286_c00001{bottom:204.585955pt;}
.yc00_c00001{bottom:204.587011pt;}
.y3585_c00001{bottom:204.587067pt;}
.y2431_c00001{bottom:204.667067pt;}
.y359f_c00001{bottom:204.742011pt;}
.ye59_c00001{bottom:204.747067pt;}
.y10e8_c00001{bottom:204.828667pt;}
.y28d2_c00001{bottom:204.907067pt;}
.y14bc_c00001{bottom:204.985275pt;}
.y14b4_c00001{bottom:204.986739pt;}
.y133f_c00001{bottom:204.987067pt;}
.y46a_c00001{bottom:205.067067pt;}
.y3a4e_c00001{bottom:205.068459pt;}
.y36b1_c00001{bottom:205.151779pt;}
.y20f5_c00001{bottom:205.225368pt;}
.y21d9_c00001{bottom:205.226739pt;}
.y1bff_c00001{bottom:205.280000pt;}
.yc25_c00001{bottom:205.307067pt;}
.y16e7_c00001{bottom:205.387067pt;}
.y153f_c00001{bottom:205.467067pt;}
.y15df_c00001{bottom:205.467227pt;}
.y3217_c00001{bottom:205.551288pt;}
.y8c1_c00001{bottom:205.627067pt;}
.y2fe4_c00001{bottom:205.760000pt;}
.y19a6_c00001{bottom:205.762720pt;}
.y1169_c00001{bottom:205.786147pt;}
.yb1f_c00001{bottom:205.787067pt;}
.y38a3_c00001{bottom:205.856643pt;}
.y25e4_c00001{bottom:205.866267pt;}
.y721_c00001{bottom:205.867067pt;}
.y37ac_c00001{bottom:205.872915pt;}
.y20c8_c00001{bottom:205.947067pt;}
.y1372_c00001{bottom:206.027067pt;}
.yd56_c00001{bottom:206.187200pt;}
.y1cb2_c00001{bottom:206.240000pt;}
.y19f2_c00001{bottom:206.248960pt;}
.y2c1_c00001{bottom:206.267200pt;}
.y207b_c00001{bottom:206.423755pt;}
.y1179_c00001{bottom:206.503579pt;}
.y1d4a_c00001{bottom:206.572480pt;}
.y1b6d_c00001{bottom:206.720000pt;}
.y2260_c00001{bottom:206.827067pt;}
.ye13_c00001{bottom:206.828827pt;}
.ybcb_c00001{bottom:206.906363pt;}
.y22a0_c00001{bottom:206.906675pt;}
.yda2_c00001{bottom:206.907067pt;}
.y9a3_c00001{bottom:206.987067pt;}
.y3535_c00001{bottom:207.138499pt;}
.ye42_c00001{bottom:207.147200pt;}
.y30a7_c00001{bottom:207.200000pt;}
.y22bb_c00001{bottom:207.227067pt;}
.y169a_c00001{bottom:207.227200pt;}
.y378d_c00001{bottom:207.306443pt;}
.y661_c00001{bottom:207.387067pt;}
.ya6f_c00001{bottom:207.547067pt;}
.ybd3_c00001{bottom:207.625131pt;}
.y201c_c00001{bottom:207.627067pt;}
.y90b_c00001{bottom:207.707067pt;}
.y165b_c00001{bottom:207.787067pt;}
.y2572_c00001{bottom:207.868768pt;}
.y685_c00001{bottom:207.947067pt;}
.y3a36_c00001{bottom:207.954291pt;}
.y1cb3_c00001{bottom:208.000000pt;}
.y316f_c00001{bottom:208.003520pt;}
.y1fb2_c00001{bottom:208.027200pt;}
.y22df_c00001{bottom:208.186675pt;}
.y2b89_c00001{bottom:208.187200pt;}
.y1126_c00001{bottom:208.187227pt;}
.y21f9_c00001{bottom:208.347067pt;}
.y23de_c00001{bottom:208.425600pt;}
.y12b6_c00001{bottom:208.427067pt;}
.y2c35_c00001{bottom:208.507067pt;}
.yed2_c00001{bottom:208.507907pt;}
.y891_c00001{bottom:208.587067pt;}
.y27c3_c00001{bottom:208.667067pt;}
.y284d_c00001{bottom:208.667200pt;}
.y2669_c00001{bottom:208.747067pt;}
.y26b6_c00001{bottom:208.827067pt;}
.y236d_c00001{bottom:208.907067pt;}
.y33eb_c00001{bottom:208.907227pt;}
.y217_c00001{bottom:208.987067pt;}
.y2ed0_c00001{bottom:209.120000pt;}
.y2884_c00001{bottom:209.146675pt;}
.yf7c_c00001{bottom:209.147200pt;}
.y300a_c00001{bottom:209.280000pt;}
.y21a8_c00001{bottom:209.386411pt;}
.y171e_c00001{bottom:209.387067pt;}
.y1838_c00001{bottom:209.387200pt;}
.y2db4_c00001{bottom:209.440000pt;}
.y3967_c00001{bottom:209.466755pt;}
.y1724_c00001{bottom:209.467067pt;}
.y254c_c00001{bottom:209.543067pt;}
.y3368_c00001{bottom:209.600000pt;}
.y24c7_c00001{bottom:209.705275pt;}
.y24c2_c00001{bottom:209.706739pt;}
.y1283_c00001{bottom:209.707067pt;}
.y36ec_c00001{bottom:209.778107pt;}
.y274e_c00001{bottom:209.867355pt;}
.y32c1_c00001{bottom:209.920000pt;}
.y2622_c00001{bottom:209.945867pt;}
.y1c9_c00001{bottom:209.947067pt;}
.y34ed_c00001{bottom:210.027200pt;}
.y1c6f_c00001{bottom:210.080000pt;}
.yb5b_c00001{bottom:210.107067pt;}
.y2ad7_c00001{bottom:210.107200pt;}
.y283_c00001{bottom:210.187200pt;}
.y1add_c00001{bottom:210.240000pt;}
.y36ce_c00001{bottom:210.267067pt;}
.y1bbd_c00001{bottom:210.400000pt;}
.y759_c00001{bottom:210.427200pt;}
.y2bee_c00001{bottom:210.427443pt;}
.y7bb_c00001{bottom:210.507200pt;}
.y564_c00001{bottom:210.587067pt;}
.yaff_c00001{bottom:210.666587pt;}
.y3cf_c00001{bottom:210.747067pt;}
.y15a7_c00001{bottom:210.747147pt;}
.y245f_c00001{bottom:210.827067pt;}
.y314a_c00001{bottom:210.880000pt;}
.ydc3_c00001{bottom:210.907067pt;}
.y27ee_c00001{bottom:210.985603pt;}
.y3499_c00001{bottom:210.986267pt;}
.yf21_c00001{bottom:210.987067pt;}
.y2604_c00001{bottom:211.146555pt;}
.yf10_c00001{bottom:211.147067pt;}
.y37f7_c00001{bottom:211.147200pt;}
.y33a3_c00001{bottom:211.227067pt;}
.y17a9_c00001{bottom:211.307067pt;}
.y1529_c00001{bottom:211.307147pt;}
.y1a85_c00001{bottom:211.360000pt;}
.y3728_c00001{bottom:211.385619pt;}
.y2392_c00001{bottom:211.467067pt;}
.y39d9_c00001{bottom:211.547067pt;}
.y2cc2_c00001{bottom:211.547131pt;}
.y3632_c00001{bottom:211.627067pt;}
.yb67_c00001{bottom:211.627083pt;}
.y35bb_c00001{bottom:211.629056pt;}
.ye7c_c00001{bottom:211.707067pt;}
.y1134_c00001{bottom:211.786187pt;}
.yb06_c00001{bottom:211.787067pt;}
.y300b_c00001{bottom:211.840000pt;}
.y2b66_c00001{bottom:211.868443pt;}
.y8d7_c00001{bottom:211.868907pt;}
.y2c14_c00001{bottom:211.948680pt;}
.y1ed9_c00001{bottom:212.000000pt;}
.y2406_c00001{bottom:212.187200pt;}
.y90a_c00001{bottom:212.267067pt;}
.y43f_c00001{bottom:212.347067pt;}
.y2f8d_c00001{bottom:212.480000pt;}
.y13a5_c00001{bottom:212.507707pt;}
.y123_c00001{bottom:212.587067pt;}
.y218a_c00001{bottom:212.667467pt;}
.y20b2_c00001{bottom:212.744800pt;}
.y141e_c00001{bottom:212.747067pt;}
.y3331_c00001{bottom:212.800000pt;}
.y341d_c00001{bottom:212.824843pt;}
.y3752_c00001{bottom:212.831883pt;}
.y216b_c00001{bottom:212.904912pt;}
.y2abd_c00001{bottom:212.906675pt;}
.y4e8_c00001{bottom:212.907067pt;}
.y3556_c00001{bottom:212.909984pt;}
.y1cb4_c00001{bottom:212.960000pt;}
.y2ea6_c00001{bottom:212.965440pt;}
.y600_c00001{bottom:212.987067pt;}
.yc60_c00001{bottom:212.987483pt;}
.y177f_c00001{bottom:213.067067pt;}
.y975_c00001{bottom:213.067200pt;}
.y29ca_c00001{bottom:213.143355pt;}
.y307_c00001{bottom:213.147067pt;}
.y1064_c00001{bottom:213.147200pt;}
.y25a_c00001{bottom:213.227067pt;}
.y2f50_c00001{bottom:213.280000pt;}
.y14fa_c00001{bottom:213.387067pt;}
.y1d7c_c00001{bottom:213.442720pt;}
.y22f4_c00001{bottom:213.466811pt;}
.y9e4_c00001{bottom:213.467067pt;}
.y2e70_c00001{bottom:213.600000pt;}
.y13ae_c00001{bottom:213.627067pt;}
.y546_c00001{bottom:213.707067pt;}
.y2830_c00001{bottom:213.710315pt;}
.y2ee0_c00001{bottom:213.760000pt;}
.yccb_c00001{bottom:213.788059pt;}
.y1bbe_c00001{bottom:213.920000pt;}
.y2814_c00001{bottom:213.945171pt;}
.y391c_c00001{bottom:214.028923pt;}
.y1e7f_c00001{bottom:214.080000pt;}
.y1106_c00001{bottom:214.107067pt;}
.ya63_c00001{bottom:214.187067pt;}
.y393a_c00001{bottom:214.187200pt;}
.y1c70_c00001{bottom:214.240000pt;}
.y259b_c00001{bottom:214.264267pt;}
.y13d8_c00001{bottom:214.267067pt;}
.y146_c00001{bottom:214.267200pt;}
.y29dd_c00001{bottom:214.267819pt;}
.y25b8_c00001{bottom:214.427067pt;}
.y335_c00001{bottom:214.507067pt;}
.yc88_c00001{bottom:214.508792pt;}
.y1dce_c00001{bottom:214.571680pt;}
.y2ba0_c00001{bottom:214.586803pt;}
.y230c_c00001{bottom:214.666667pt;}
.yc4f_c00001{bottom:214.667067pt;}
.y2db5_c00001{bottom:214.720000pt;}
.y3a03_c00001{bottom:214.747067pt;}
.y1255_c00001{bottom:214.827027pt;}
.y122e_c00001{bottom:214.903536pt;}
.y2732_c00001{bottom:214.907995pt;}
.y1309_c00001{bottom:214.986499pt;}
.y2f5_c00001{bottom:215.067067pt;}
.y2775_c00001{bottom:215.071883pt;}
.yfce_c00001{bottom:215.143971pt;}
.y78_c00001{bottom:215.147067pt;}
.y3298_c00001{bottom:215.200000pt;}
.y182d_c00001{bottom:215.227067pt;}
.y3037_c00001{bottom:215.360000pt;}
.y3501_c00001{bottom:215.385979pt;}
.y2a04_c00001{bottom:215.386000pt;}
.y3446_c00001{bottom:215.387067pt;}
.y2de2_c00001{bottom:215.520000pt;}
.y3824_c00001{bottom:215.546283pt;}
.y7e0_c00001{bottom:215.547067pt;}
.y5e3_c00001{bottom:215.627067pt;}
.y2d89_c00001{bottom:215.685600pt;}
.yed7_c00001{bottom:215.707259pt;}
.y26a4_c00001{bottom:215.784811pt;}
.y296e_c00001{bottom:215.785955pt;}
.y10c2_c00001{bottom:215.787067pt;}
.y1e0e_c00001{bottom:215.851680pt;}
.y29b8_c00001{bottom:215.867067pt;}
.ycfc_c00001{bottom:215.947067pt;}
.y125f_c00001{bottom:215.947467pt;}
.y81e_c00001{bottom:216.027200pt;}
.ydea_c00001{bottom:216.112747pt;}
.y2edb_c00001{bottom:216.160000pt;}
.ya15_c00001{bottom:216.187067pt;}
.y2a96_c00001{bottom:216.187200pt;}
.yad3_c00001{bottom:216.266491pt;}
.y28be_c00001{bottom:216.267067pt;}
.y3318_c00001{bottom:216.320000pt;}
.y3470_c00001{bottom:216.345067pt;}
.y1849_c00001{bottom:216.427067pt;}
.y11dd_c00001{bottom:216.428043pt;}
.y2d3e_c00001{bottom:216.513328pt;}
.y18aa_c00001{bottom:216.587200pt;}
.y1796_c00001{bottom:216.667067pt;}
.y495_c00001{bottom:216.747067pt;}
.y39a5_c00001{bottom:216.825107pt;}
.y1f51_c00001{bottom:216.835459pt;}
.y175_c00001{bottom:216.907067pt;}
.y2147_c00001{bottom:216.985563pt;}
.y6ce_c00001{bottom:216.987067pt;}
.y289f_c00001{bottom:216.987200pt;}
.y1666_c00001{bottom:216.987944pt;}
.y643_c00001{bottom:217.067200pt;}
.y1f86_c00001{bottom:217.072555pt;}
.y11e9_c00001{bottom:217.153491pt;}
.y2354_c00001{bottom:217.226739pt;}
.y70a_c00001{bottom:217.227067pt;}
.y34d8_c00001{bottom:217.303355pt;}
.y1076_c00001{bottom:217.307067pt;}
.y8e8_c00001{bottom:217.387067pt;}
.ydc2_c00001{bottom:217.387827pt;}
.ya6e_c00001{bottom:217.467067pt;}
.y34ad_c00001{bottom:217.627067pt;}
.y16b1_c00001{bottom:217.627200pt;}
.y1709_c00001{bottom:217.707067pt;}
.y2e71_c00001{bottom:217.760000pt;}
.y1091_c00001{bottom:217.786715pt;}
.y9cc_c00001{bottom:217.787067pt;}
.y398_c00001{bottom:217.787251pt;}
.y1576_c00001{bottom:217.867307pt;}
.y3810_c00001{bottom:218.027200pt;}
.y19a5_c00001{bottom:218.080000pt;}
.y38a2_c00001{bottom:218.096899pt;}
.ya06_c00001{bottom:218.107200pt;}
.y11a6_c00001{bottom:218.267067pt;}
.y11b3_c00001{bottom:218.269299pt;}
.y1026_c00001{bottom:218.269547pt;}
.yca_c00001{bottom:218.347067pt;}
.y87b_c00001{bottom:218.427067pt;}
.y2524_c00001{bottom:218.427355pt;}
.y199_c00001{bottom:218.507067pt;}
.y19f1_c00001{bottom:218.566240pt;}
.y2864_c00001{bottom:218.586675pt;}
.y2ae9_c00001{bottom:218.587067pt;}
.y5b7_c00001{bottom:218.667067pt;}
.y1d49_c00001{bottom:218.728960pt;}
.y167c_c00001{bottom:218.747067pt;}
.y127d_c00001{bottom:218.747200pt;}
.y299f_c00001{bottom:218.906267pt;}
.y8ab_c00001{bottom:218.907067pt;}
.y290e_c00001{bottom:218.987067pt;}
.y27af_c00001{bottom:218.987200pt;}
.y30e5_c00001{bottom:219.040000pt;}
.ya2a_c00001{bottom:219.067200pt;}
.y10d3_c00001{bottom:219.067216pt;}
.y152b_c00001{bottom:219.147200pt;}
.y3a4d_c00001{bottom:219.148371pt;}
.y1b6e_c00001{bottom:219.200000pt;}
.y2cf4_c00001{bottom:219.226427pt;}
.y51e_c00001{bottom:219.227067pt;}
.y34c2_c00001{bottom:219.307067pt;}
.y36b0_c00001{bottom:219.311491pt;}
.y28f3_c00001{bottom:219.387067pt;}
.y2649_c00001{bottom:219.546267pt;}
.y17c4_c00001{bottom:219.547067pt;}
.y10e9_c00001{bottom:219.549067pt;}
.y35b_c00001{bottom:219.627067pt;}
.y1f0b_c00001{bottom:219.680000pt;}
.yaf5_c00001{bottom:219.787067pt;}
.y1641_c00001{bottom:219.867067pt;}
.y1917_c00001{bottom:220.000000pt;}
.y2f_c00001{bottom:220.027067pt;}
.y316e_c00001{bottom:220.160000pt;}
.y3f7_c00001{bottom:220.427067pt;}
.y327b_c00001{bottom:220.480000pt;}
.y14de_c00001{bottom:220.507067pt;}
.yfb5_c00001{bottom:220.587067pt;}
.y1f7_c00001{bottom:220.667067pt;}
.y2b65_c00001{bottom:220.748779pt;}
.y1bbf_c00001{bottom:220.800000pt;}
.y9b8_c00001{bottom:220.827067pt;}
.yffe_c00001{bottom:220.907067pt;}
.y2bc2_c00001{bottom:220.986000pt;}
.y146f_c00001{bottom:220.987067pt;}
.y1648_c00001{bottom:221.067067pt;}
.y15b3_c00001{bottom:221.067200pt;}
.y300c_c00001{bottom:221.120000pt;}
.y3148_c00001{bottom:221.280000pt;}
.y1c3d_c00001{bottom:221.440000pt;}
.y909_c00001{bottom:221.467067pt;}
.y2243_c00001{bottom:221.546347pt;}
.y31f3_c00001{bottom:221.600000pt;}
.ya4d_c00001{bottom:221.627067pt;}
.y25e3_c00001{bottom:221.706267pt;}
.y3966_c00001{bottom:221.707011pt;}
.y52_c00001{bottom:221.707067pt;}
.y312b_c00001{bottom:221.760000pt;}
.y133e_c00001{bottom:221.867067pt;}
.y323c_c00001{bottom:221.920000pt;}
.y247d_c00001{bottom:221.947067pt;}
.y2571_c00001{bottom:221.948680pt;}
.y383d_c00001{bottom:222.026611pt;}
.y3a35_c00001{bottom:222.034203pt;}
.y334d_c00001{bottom:222.080000pt;}
.yc24_c00001{bottom:222.107067pt;}
.y2b08_c00001{bottom:222.186283pt;}
.y36b_c00001{bottom:222.187067pt;}
.y24f5_c00001{bottom:222.267067pt;}
.y116a_c00001{bottom:222.345867pt;}
.y9e_c00001{bottom:222.347067pt;}
.y15de_c00001{bottom:222.347147pt;}
.y1ea9_c00001{bottom:222.400000pt;}
.y13d7_c00001{bottom:222.427067pt;}
.y284c_c00001{bottom:222.506800pt;}
.y1949_c00001{bottom:222.560000pt;}
.y1a39_c00001{bottom:222.562720pt;}
.y1970_c00001{bottom:222.587067pt;}
.yb1e_c00001{bottom:222.667067pt;}
.y3584_c00001{bottom:222.747067pt;}
.y38bf_c00001{bottom:222.987067pt;}
.y117a_c00001{bottom:223.063299pt;}
.y2924_c00001{bottom:223.067067pt;}
.y2cad_c00001{bottom:223.146227pt;}
.y1bfc_c00001{bottom:223.200000pt;}
.y2683_c00001{bottom:223.227067pt;}
.y33f3_c00001{bottom:223.228075pt;}
.yd55_c00001{bottom:223.307067pt;}
.y310b_c00001{bottom:223.360000pt;}
.y84b_c00001{bottom:223.387067pt;}
.y2335_c00001{bottom:223.463403pt;}
.y469_c00001{bottom:223.467067pt;}
.y1e43_c00001{bottom:223.535200pt;}
.yf5_c00001{bottom:223.547067pt;}
.y3727_c00001{bottom:223.705675pt;}
.ye12_c00001{bottom:223.708747pt;}
.y2d14_c00001{bottom:223.709891pt;}
.y2792_c00001{bottom:223.787131pt;}
.y3149_c00001{bottom:223.840000pt;}
.y11a1_c00001{bottom:223.867067pt;}
.yb66_c00001{bottom:223.867339pt;}
.y2285_c00001{bottom:223.945891pt;}
.y21f8_c00001{bottom:223.946283pt;}
.y1441_c00001{bottom:223.947067pt;}
.y2f57_c00001{bottom:224.000000pt;}
.y274d_c00001{bottom:224.027067pt;}
.y1133_c00001{bottom:224.106243pt;}
.ye66_c00001{bottom:224.106267pt;}
.yf7b_c00001{bottom:224.187067pt;}
.y23dd_c00001{bottom:224.265600pt;}
.y2f8e_c00001{bottom:224.320000pt;}
.y14bb_c00001{bottom:224.425731pt;}
.y14b3_c00001{bottom:224.427195pt;}
.y319b_c00001{bottom:224.480000pt;}
.y16c3_c00001{bottom:224.507067pt;}
.y2bed_c00001{bottom:224.507355pt;}
.y20f4_c00001{bottom:224.585304pt;}
.y21d8_c00001{bottom:224.586675pt;}
.y2f0e_c00001{bottom:224.640000pt;}
.y2c0_c00001{bottom:224.667200pt;}
.y2391_c00001{bottom:224.827067pt;}
.y18c8_c00001{bottom:224.907067pt;}
.y2603_c00001{bottom:224.987067pt;}
.yfa4_c00001{bottom:225.067067pt;}
.y1125_c00001{bottom:225.067147pt;}
.y8c0_c00001{bottom:225.227067pt;}
.y2ea5_c00001{bottom:225.282720pt;}
.y35db_c00001{bottom:225.307067pt;}
.yed1_c00001{bottom:225.307307pt;}
.y254b_c00001{bottom:225.383067pt;}
.y26ee_c00001{bottom:225.386667pt;}
.y983_c00001{bottom:225.387200pt;}
.y32e9_c00001{bottom:225.440000pt;}
.y1feb_c00001{bottom:225.467067pt;}
.y12b5_c00001{bottom:225.627067pt;}
.y39c6_c00001{bottom:225.707067pt;}
.y35ba_c00001{bottom:225.708968pt;}
.y3378_c00001{bottom:225.744480pt;}
.y1b21_c00001{bottom:225.760000pt;}
.y2ad6_c00001{bottom:225.787067pt;}
.y33ea_c00001{bottom:225.787147pt;}
.ye41_c00001{bottom:225.867907pt;}
.y9a2_c00001{bottom:226.027067pt;}
.y2c13_c00001{bottom:226.028592pt;}
.y908_c00001{bottom:226.107067pt;}
.y26b5_c00001{bottom:226.187067pt;}
.y229f_c00001{bottom:226.266611pt;}
.y1fb1_c00001{bottom:226.267067pt;}
.y684_c00001{bottom:226.347067pt;}
.y1e7e_c00001{bottom:226.400000pt;}
.y3855_c00001{bottom:226.427067pt;}
.y16e6_c00001{bottom:226.587067pt;}
.y1dcd_c00001{bottom:226.888960pt;}
.y3751_c00001{bottom:226.911795pt;}
.y3555_c00001{bottom:226.989896pt;}
.y2e44_c00001{bottom:227.040000pt;}
.y20c7_c00001{bottom:227.067067pt;}
.y122d_c00001{bottom:227.143792pt;}
.y1c8_c00001{bottom:227.147067pt;}
.y1308_c00001{bottom:227.226755pt;}
.y22ba_c00001{bottom:227.307067pt;}
.y1ed8_c00001{bottom:227.360000pt;}
.yfcd_c00001{bottom:227.384227pt;}
.y216_c00001{bottom:227.387067pt;}
.ybcc_c00001{bottom:227.466067pt;}
.y2eba_c00001{bottom:227.520000pt;}
.y22de_c00001{bottom:227.546611pt;}
.y3764_c00001{bottom:227.547067pt;}
.y27c2_c00001{bottom:227.627067pt;}
.y15a6_c00001{bottom:227.627667pt;}
.y2de1_c00001{bottom:227.680000pt;}
.y120b_c00001{bottom:227.787067pt;}
.y282f_c00001{bottom:227.790227pt;}
.y3081_c00001{bottom:227.840000pt;}
.y1748_c00001{bottom:227.867067pt;}
.y162b_c00001{bottom:227.947200pt;}
.y1ffe_c00001{bottom:227.949528pt;}
.y2fe3_c00001{bottom:228.000000pt;}
.y201b_c00001{bottom:228.027067pt;}
.y391b_c00001{bottom:228.108835pt;}
.y1ad8_c00001{bottom:228.160000pt;}
.y1e0d_c00001{bottom:228.168960pt;}
.ybd4_c00001{bottom:228.184835pt;}
.y33bb_c00001{bottom:228.187067pt;}
.y1528_c00001{bottom:228.187667pt;}
.y32c0_c00001{bottom:228.320000pt;}
.y61c_c00001{bottom:228.347067pt;}
.y29dc_c00001{bottom:228.427531pt;}
.y199a_c00001{bottom:228.480000pt;}
.y8f8_c00001{bottom:228.507067pt;}
.y2883_c00001{bottom:228.587131pt;}
.y325b_c00001{bottom:228.640000pt;}
.y17e7_c00001{bottom:228.667067pt;}
.y6ad_c00001{bottom:228.745787pt;}
.y2668_c00001{bottom:228.827067pt;}
.y34ec_c00001{bottom:228.907067pt;}
.y7ba_c00001{bottom:228.907200pt;}
.y236c_c00001{bottom:228.987067pt;}
.y2731_c00001{bottom:228.987907pt;}
.y24c6_c00001{bottom:229.065211pt;}
.y39a4_c00001{bottom:229.065363pt;}
.y24c1_c00001{bottom:229.066675pt;}
.y6e9_c00001{bottom:229.067067pt;}
.y1637_c00001{bottom:229.067200pt;}
.yc61_c00001{bottom:229.067579pt;}
.y1f6a_c00001{bottom:229.147067pt;}
.y2774_c00001{bottom:229.151795pt;}
.y1a80_c00001{bottom:229.280000pt;}
.y282_c00001{bottom:229.387067pt;}
.y38d7_c00001{bottom:229.467067pt;}
.y27e9_c00001{bottom:229.547067pt;}
.y2b64_c00001{bottom:229.548771pt;}
.y105b_c00001{bottom:229.627067pt;}
.ya95_c00001{bottom:229.697987pt;}
.y17a8_c00001{bottom:229.707067pt;}
.y890_c00001{bottom:229.787067pt;}
.y2e14_c00001{bottom:229.929760pt;}
.y39d8_c00001{bottom:229.947067pt;}
.y3ce_c00001{bottom:230.027067pt;}
.y1c3e_c00001{bottom:230.080000pt;}
.y259a_c00001{bottom:230.104267pt;}
.y23b3_c00001{bottom:230.107067pt;}
.y211c_c00001{bottom:230.186480pt;}
.y43e_c00001{bottom:230.267067pt;}
.y38a1_c00001{bottom:230.337155pt;}
.y563_c00001{bottom:230.347067pt;}
.y1bfd_c00001{bottom:230.400000pt;}
.yd29_c00001{bottom:230.427067pt;}
.y974_c00001{bottom:230.507067pt;}
.y1837_c00001{bottom:230.507200pt;}
.y230b_c00001{bottom:230.587067pt;}
.yc89_c00001{bottom:230.589024pt;}
.y907_c00001{bottom:230.667067pt;}
.yf37_c00001{bottom:230.747067pt;}
.y28bd_c00001{bottom:230.827067pt;}
.y19f0_c00001{bottom:230.883520pt;}
.y1d48_c00001{bottom:230.885440pt;}
.y2cc1_c00001{bottom:230.907067pt;}
.y122_c00001{bottom:230.987067pt;}
.y709_c00001{bottom:231.066667pt;}
.y2a3a_c00001{bottom:231.067067pt;}
.yed6_c00001{bottom:231.067251pt;}
.y1a81_c00001{bottom:231.200000pt;}
.y2a03_c00001{bottom:231.226000pt;}
.y259_c00001{bottom:231.227067pt;}
.y8d6_c00001{bottom:231.309363pt;}
.y230_c00001{bottom:231.387067pt;}
.y3955_c00001{bottom:231.464667pt;}
.yac0_c00001{bottom:231.547067pt;}
.yf6b_c00001{bottom:231.547200pt;}
.y2946_c00001{bottom:231.625867pt;}
.y1ad9_c00001{bottom:231.680000pt;}
.y807_c00001{bottom:231.707067pt;}
.y78f_c00001{bottom:231.787067pt;}
.y4e7_c00001{bottom:231.947067pt;}
.y334_c00001{bottom:232.027067pt;}
.y545_c00001{bottom:232.107067pt;}
.y1c6d_c00001{bottom:232.160000pt;}
.ycca_c00001{bottom:232.187811pt;}
.y341c_c00001{bottom:232.265299pt;}
.y2ca6_c00001{bottom:232.267067pt;}
.y216a_c00001{bottom:232.345368pt;}
.y2abc_c00001{bottom:232.347131pt;}
.y2043_c00001{bottom:232.423611pt;}
.y30e4_c00001{bottom:232.480000pt;}
.ya62_c00001{bottom:232.587067pt;}
.y1cf4_c00001{bottom:232.640000pt;}
.y2c8f_c00001{bottom:232.744363pt;}
.y225f_c00001{bottom:232.747067pt;}
.ycfb_c00001{bottom:232.827067pt;}
.y205d_c00001{bottom:232.907067pt;}
.yde9_c00001{bottom:232.912147pt;}
.y1cb1_c00001{bottom:232.960000pt;}
.y397_c00001{bottom:233.147243pt;}
.y3a4c_c00001{bottom:233.228283pt;}
.y37ab_c00001{bottom:233.232611pt;}
.y2813_c00001{bottom:233.305107pt;}
.y3988_c00001{bottom:233.386667pt;}
.y36af_c00001{bottom:233.391403pt;}
.y30a6_c00001{bottom:233.440000pt;}
.y720_c00001{bottom:233.467067pt;}
.y77_c00001{bottom:233.547067pt;}
.y316d_c00001{bottom:233.600000pt;}
.y1371_c00001{bottom:233.627067pt;}
.y33a2_c00001{bottom:233.707067pt;}
.y10d4_c00001{bottom:233.707104pt;}
.y27ae_c00001{bottom:233.787067pt;}
.y3a02_c00001{bottom:233.867067pt;}
.y338d_c00001{bottom:233.869467pt;}
.y2b9f_c00001{bottom:233.946739pt;}
.y2a5b_c00001{bottom:233.947067pt;}
.ybff_c00001{bottom:234.027067pt;}
.y177e_c00001{bottom:234.187067pt;}
.ydc1_c00001{bottom:234.187227pt;}
.y10ea_c00001{bottom:234.189067pt;}
.y3939_c00001{bottom:234.267067pt;}
.y5e2_c00001{bottom:234.347067pt;}
.y2d3d_c00001{bottom:234.353632pt;}
.yf20_c00001{bottom:234.427067pt;}
.yda1_c00001{bottom:234.507067pt;}
.y11de_c00001{bottom:234.668451pt;}
.y2db2_c00001{bottom:234.720000pt;}
.y299e_c00001{bottom:234.746267pt;}
.y342e_c00001{bottom:234.746400pt;}
.y221a_c00001{bottom:234.747067pt;}
.y1575_c00001{bottom:234.747227pt;}
.y1699_c00001{bottom:234.827200pt;}
.y1a38_c00001{bottom:234.880000pt;}
.y1f85_c00001{bottom:234.912859pt;}
.y3823_c00001{bottom:234.986739pt;}
.y660_c00001{bottom:234.987067pt;}
.y1f0a_c00001{bottom:235.040000pt;}
.y296d_c00001{bottom:235.226411pt;}
.y2a5a_c00001{bottom:235.227067pt;}
.y77b_c00001{bottom:235.307067pt;}
.y2648_c00001{bottom:235.386267pt;}
.y6cd_c00001{bottom:235.387067pt;}
.y1665_c00001{bottom:235.387696pt;}
.y11ea_c00001{bottom:235.393899pt;}
.y38d6_c00001{bottom:235.547067pt;}
.yc9_c00001{bottom:235.627067pt;}
.y2e6e_c00001{bottom:235.680000pt;}
.y1e42_c00001{bottom:235.691680pt;}
.y2b88_c00001{bottom:235.787067pt;}
.y3726_c00001{bottom:235.945931pt;}
.y1d79_c00001{bottom:236.000000pt;}
.yd92_c00001{bottom:236.027067pt;}
.y2570_c00001{bottom:236.028592pt;}
.y174_c00001{bottom:236.107067pt;}
.y81d_c00001{bottom:236.107200pt;}
.y3a34_c00001{bottom:236.114115pt;}
.yf60_c00001{bottom:236.187067pt;}
.yb65_c00001{bottom:236.187395pt;}
.y141d_c00001{bottom:236.267067pt;}
.y284b_c00001{bottom:236.267200pt;}
.y1c6e_c00001{bottom:236.320000pt;}
.y1132_c00001{bottom:236.346499pt;}
.y1075_c00001{bottom:236.347067pt;}
.y2146_c00001{bottom:236.426019pt;}
.y3763_c00001{bottom:236.507067pt;}
.y2353_c00001{bottom:236.586675pt;}
.y642_c00001{bottom:236.667067pt;}
.y11b2_c00001{bottom:236.669051pt;}
.y1025_c00001{bottom:236.669299pt;}
.y8e7_c00001{bottom:236.907067pt;}
.yace_c00001{bottom:236.987067pt;}
.y35f3_c00001{bottom:237.063611pt;}
.y5b6_c00001{bottom:237.067067pt;}
.y2d88_c00001{bottom:237.120000pt;}
.y36eb_c00001{bottom:237.218667pt;}
.y3682_c00001{bottom:237.227067pt;}
.y334c_c00001{bottom:237.280000pt;}
.yb00_c00001{bottom:237.306427pt;}
.y290d_c00001{bottom:237.387067pt;}
.y359e_c00001{bottom:237.462411pt;}
.y2c33_c00001{bottom:237.467067pt;}
.y87a_c00001{bottom:237.547067pt;}
.y2ea4_c00001{bottom:237.600000pt;}
.y25e2_c00001{bottom:237.626667pt;}
.y51d_c00001{bottom:237.627067pt;}
.y198_c00001{bottom:237.707067pt;}
.y3036_c00001{bottom:237.763520pt;}
.y2ad5_c00001{bottom:237.787067pt;}
.y18a9_c00001{bottom:237.787200pt;}
.y1795_c00001{bottom:237.867067pt;}
.y2863_c00001{bottom:237.946611pt;}
.y35a_c00001{bottom:238.027067pt;}
.y758_c00001{bottom:238.027200pt;}
.y1a82_c00001{bottom:238.080000pt;}
.y3534_c00001{bottom:238.098963pt;}
.y380f_c00001{bottom:238.107067pt;}
.yad4_c00001{bottom:238.186243pt;}
.y1256_c00001{bottom:238.186987pt;}
.y1f50_c00001{bottom:238.275187pt;}
.y2b63_c00001{bottom:238.348763pt;}
.yb07_c00001{bottom:238.427067pt;}
.y17d7_c00001{bottom:238.507067pt;}
.y1ada_c00001{bottom:238.560000pt;}
.y1f6_c00001{bottom:238.587067pt;}
.y133d_c00001{bottom:238.667067pt;}
.y1bba_c00001{bottom:238.720000pt;}
.yf0f_c00001{bottom:238.747067pt;}
.y1708_c00001{bottom:238.827067pt;}
.y320c_c00001{bottom:238.834720pt;}
.y116b_c00001{bottom:238.985747pt;}
.yc23_c00001{bottom:238.987067pt;}
.y3009_c00001{bottom:239.040000pt;}
.y1dcc_c00001{bottom:239.045440pt;}
.y207a_c00001{bottom:239.144155pt;}
.y2ed3_c00001{bottom:239.200000pt;}
.y15dd_c00001{bottom:239.226723pt;}
.ya29_c00001{bottom:239.227067pt;}
.y13d6_c00001{bottom:239.307067pt;}
.y1260_c00001{bottom:239.307867pt;}
.y2db3_c00001{bottom:239.360000pt;}
.y122c_c00001{bottom:239.384048pt;}
.y3f6_c00001{bottom:239.387200pt;}
.y13a6_c00001{bottom:239.388027pt;}
.y3216_c00001{bottom:239.470704pt;}
.y1307_c00001{bottom:239.546811pt;}
.yfcc_c00001{bottom:239.624483pt;}
.y24f4_c00001{bottom:239.627067pt;}
.y117b_c00001{bottom:239.703179pt;}
.y2602_c00001{bottom:239.787067pt;}
.y2e6f_c00001{bottom:239.840000pt;}
.y906_c00001{bottom:239.867067pt;}
.y35b9_c00001{bottom:239.868680pt;}
.y8aa_c00001{bottom:240.027067pt;}
.y23dc_c00001{bottom:240.105600pt;}
.y2c12_c00001{bottom:240.108504pt;}
.yb1d_c00001{bottom:240.187067pt;}
.y35da_c00001{bottom:240.267067pt;}
.y323b_c00001{bottom:240.320000pt;}
.y1e0c_c00001{bottom:240.325440pt;}
.y13af_c00001{bottom:240.507067pt;}
.ye11_c00001{bottom:240.508147pt;}
.y36a_c00001{bottom:240.587067pt;}
.y32e8_c00001{bottom:240.640000pt;}
.y17c3_c00001{bottom:240.667067pt;}
.y9d_c00001{bottom:240.747067pt;}
.y1063_c00001{bottom:240.747200pt;}
.y1ea8_c00001{bottom:240.800000pt;}
.y2242_c00001{bottom:240.906283pt;}
.y1916_c00001{bottom:240.960000pt;}
.y14f9_c00001{bottom:240.987067pt;}
.y3750_c00001{bottom:240.991707pt;}
.y3377_c00001{bottom:241.109440pt;}
.y3554_c00001{bottom:241.149608pt;}
.y254a_c00001{bottom:241.303467pt;}
.y39a3_c00001{bottom:241.305619pt;}
.y58b_c00001{bottom:241.307067pt;}
.y242a_c00001{bottom:241.467067pt;}
.y2b07_c00001{bottom:241.546219pt;}
.y196e_c00001{bottom:241.627067pt;}
.y1105_c00001{bottom:241.707067pt;}
.y196f_c00001{bottom:241.787067pt;}
.y468_c00001{bottom:241.867067pt;}
.y145_c00001{bottom:241.867200pt;}
.y282e_c00001{bottom:241.870139pt;}
.y1124_c00001{bottom:241.947067pt;}
.y2e13_c00001{bottom:242.086240pt;}
.y21a7_c00001{bottom:242.106811pt;}
.y93a_c00001{bottom:242.107067pt;}
.y33ba_c00001{bottom:242.187067pt;}
.yed0_c00001{bottom:242.187227pt;}
.y1bbb_c00001{bottom:242.240000pt;}
.yc4e_c00001{bottom:242.267067pt;}
.y391a_c00001{bottom:242.268547pt;}
.y2cac_c00001{bottom:242.506163pt;}
.y12b4_c00001{bottom:242.507067pt;}
.y29db_c00001{bottom:242.507443pt;}
.y38a0_c00001{bottom:242.577411pt;}
.y2621_c00001{bottom:242.666267pt;}
.y2f4_c00001{bottom:242.667067pt;}
.y33f2_c00001{bottom:242.668531pt;}
.y1ed7_c00001{bottom:242.720000pt;}
.ye40_c00001{bottom:242.747827pt;}
.y2334_c00001{bottom:242.823339pt;}
.y2de0_c00001{bottom:242.880000pt;}
.y38be_c00001{bottom:242.987443pt;}
.y19ef_c00001{bottom:243.040000pt;}
.y1090_c00001{bottom:243.067067pt;}
.y2bf_c00001{bottom:243.067200pt;}
.y7df_c00001{bottom:243.147067pt;}
.y2730_c00001{bottom:243.147619pt;}
.y1d47_c00001{bottom:243.202720pt;}
.y2682_c00001{bottom:243.227067pt;}
.y2773_c00001{bottom:243.231707pt;}
.y21f7_c00001{bottom:243.306219pt;}
.y10c1_c00001{bottom:243.307067pt;}
.y2284_c00001{bottom:243.386347pt;}
.y1761_c00001{bottom:243.387067pt;}
.y3330_c00001{bottom:243.520000pt;}
.y13bf_c00001{bottom:243.547067pt;}
.y39c5_c00001{bottom:243.626499pt;}
.y905_c00001{bottom:243.627067pt;}
.y3498_c00001{bottom:243.706667pt;}
.y14ba_c00001{bottom:243.785667pt;}
.y1c7_c00001{bottom:243.787067pt;}
.y14b2_c00001{bottom:243.787131pt;}
.y33e9_c00001{bottom:243.947067pt;}
.y20f3_c00001{bottom:244.025760pt;}
.y21d7_c00001{bottom:244.027131pt;}
.y8bf_c00001{bottom:244.187067pt;}
.y365d_c00001{bottom:244.267067pt;}
.y3315_c00001{bottom:244.320000pt;}
.y494_c00001{bottom:244.347067pt;}
.y15a5_c00001{bottom:244.427067pt;}
.y2c5b_c00001{bottom:244.507067pt;}
.y742_c00001{bottom:244.587067pt;}
.y3127_c00001{bottom:244.640000pt;}
.yf7a_c00001{bottom:244.746667pt;}
.y683_c00001{bottom:244.747067pt;}
.y708_c00001{bottom:244.827067pt;}
.y3938_c00001{bottom:244.906667pt;}
.y2f8b_c00001{bottom:244.960000pt;}
.y1527_c00001{bottom:244.987067pt;}
.y9a1_c00001{bottom:245.067067pt;}
.y1a36_c00001{bottom:245.120000pt;}
.ya4c_c00001{bottom:245.147067pt;}
.y27e8_c00001{bottom:245.147131pt;}
.yc62_c00001{bottom:245.147675pt;}
.y18e5_c00001{bottom:245.227067pt;}
.y16b0_c00001{bottom:245.227200pt;}
.y9cb_c00001{bottom:245.307067pt;}
.y2f1c_c00001{bottom:245.440000pt;}
.y3061_c00001{bottom:245.443520pt;}
.y20b1_c00001{bottom:245.465200pt;}
.y28bc_c00001{bottom:245.627067pt;}
.y1f26_c00001{bottom:245.707067pt;}
.ya05_c00001{bottom:245.707200pt;}
.y215_c00001{bottom:245.787067pt;}
.y951_c00001{bottom:245.867067pt;}
.ya94_c00001{bottom:245.938403pt;}
.ya8b_c00001{bottom:245.941075pt;}
.ya86_c00001{bottom:245.942411pt;}
.y29c9_c00001{bottom:245.942811pt;}
.ya81_c00001{bottom:245.943747pt;}
.ya7c_c00001{bottom:245.945083pt;}
.y2599_c00001{bottom:246.024667pt;}
.y18c7_c00001{bottom:246.027067pt;}
.yb64_c00001{bottom:246.107067pt;}
.y37f6_c00001{bottom:246.187067pt;}
.y22f3_c00001{bottom:246.187211pt;}
.y1747_c00001{bottom:246.267067pt;}
.y2cef_c00001{bottom:246.347067pt;}
.y127c_c00001{bottom:246.347200pt;}
.y3367_c00001{bottom:246.400000pt;}
.y3500_c00001{bottom:246.426603pt;}
.y1fea_c00001{bottom:246.427067pt;}
.yed5_c00001{bottom:246.427243pt;}
.y2bd3_c00001{bottom:246.587067pt;}
.yd28_c00001{bottom:246.667067pt;}
.yc8a_c00001{bottom:246.669256pt;}
.y32bf_c00001{bottom:246.720000pt;}
.y61b_c00001{bottom:246.747067pt;}
.y1872_c00001{bottom:246.827067pt;}
.yb5a_c00001{bottom:246.907067pt;}
.y229e_c00001{bottom:246.987067pt;}
.y325a_c00001{bottom:247.040000pt;}
.y2a02_c00001{bottom:247.066000pt;}
.y34eb_c00001{bottom:247.067067pt;}
.y2b62_c00001{bottom:247.148755pt;}
.y22b9_c00001{bottom:247.307067pt;}
.y7b9_c00001{bottom:247.307200pt;}
.yd77_c00001{bottom:247.308547pt;}
.yaf4_c00001{bottom:247.387067pt;}
.y3a4b_c00001{bottom:247.387995pt;}
.y9e3_c00001{bottom:247.467067pt;}
.y36ae_c00001{bottom:247.471315pt;}
.y3296_c00001{bottom:247.520000pt;}
.y1f69_c00001{bottom:247.547067pt;}
.y2e_c00001{bottom:247.627067pt;}
.y16e5_c00001{bottom:247.707067pt;}
.y2ca5_c00001{bottom:247.786611pt;}
.yf1f_c00001{bottom:247.787067pt;}
.y2889_c00001{bottom:247.947067pt;}
.y1e41_c00001{bottom:248.008960pt;}
.ybcd_c00001{bottom:248.105931pt;}
.y2523_c00001{bottom:248.106611pt;}
.y27c1_c00001{bottom:248.106667pt;}
.y14dd_c00001{bottom:248.107067pt;}
.y1c3b_c00001{bottom:248.160000pt;}
.y3725_c00001{bottom:248.186187pt;}
.y3937_c00001{bottom:248.187067pt;}
.y973_c00001{bottom:248.267067pt;}
.y1bfa_c00001{bottom:248.320000pt;}
.ye58_c00001{bottom:248.347067pt;}
.y281_c00001{bottom:248.427067pt;}
.y396_c00001{bottom:248.427075pt;}
.y10d5_c00001{bottom:248.427152pt;}
.y3316_c00001{bottom:248.480000pt;}
.y26a3_c00001{bottom:248.505211pt;}
.y24c5_c00001{bottom:248.505667pt;}
.ye7b_c00001{bottom:248.507067pt;}
.y24c0_c00001{bottom:248.507131pt;}
.y1131_c00001{bottom:248.586755pt;}
.y146e_c00001{bottom:248.587067pt;}
.y1647_c00001{bottom:248.667067pt;}
.y15b2_c00001{bottom:248.667200pt;}
.y1d7a_c00001{bottom:248.800000pt;}
.ybd5_c00001{bottom:248.824699pt;}
.y2667_c00001{bottom:248.827067pt;}
.y43d_c00001{bottom:248.907067pt;}
.y10eb_c00001{bottom:248.909467pt;}
.y1bbc_c00001{bottom:248.960000pt;}
.y236b_c00001{bottom:248.987067pt;}
.y346f_c00001{bottom:249.065467pt;}
.y3cd_c00001{bottom:249.067067pt;}
.y249b_c00001{bottom:249.147067pt;}
.y1491_c00001{bottom:249.227067pt;}
.y51_c00001{bottom:249.307067pt;}
.y121_c00001{bottom:249.387067pt;}
.y2e43_c00001{bottom:249.446240pt;}
.y211b_c00001{bottom:249.626936pt;}
.y333_c00001{bottom:249.627067pt;}
.ycfa_c00001{bottom:249.707067pt;}
.y30e3_c00001{bottom:249.762720pt;}
.y5ff_c00001{bottom:249.787067pt;}
.yde8_c00001{bottom:249.792067pt;}
.y17e6_c00001{bottom:249.867067pt;}
.y2eda_c00001{bottom:249.920000pt;}
.y88f_c00001{bottom:249.947067pt;}
.y2f4f_c00001{bottom:250.080000pt;}
.y34d7_c00001{bottom:250.102811pt;}
.y284a_c00001{bottom:250.106800pt;}
.y120a_c00001{bottom:250.187067pt;}
.y256f_c00001{bottom:250.188304pt;}
.y3a33_c00001{bottom:250.194027pt;}
.y1b6b_c00001{bottom:250.240000pt;}
.y258_c00001{bottom:250.267067pt;}
.y36cd_c00001{bottom:250.427067pt;}
.y544_c00001{bottom:250.507067pt;}
.y1cf2_c00001{bottom:250.560000pt;}
.ycc9_c00001{bottom:250.587563pt;}
.y299d_c00001{bottom:250.666667pt;}
.y307f_c00001{bottom:250.720000pt;}
.y37be_c00001{bottom:250.747067pt;}
.y19a3_c00001{bottom:250.880000pt;}
.y316c_c00001{bottom:250.882720pt;}
.y84a_c00001{bottom:250.987067pt;}
.y2ea3_c00001{bottom:251.040000pt;}
.y4e6_c00001{bottom:251.067067pt;}
.ydc0_c00001{bottom:251.067147pt;}
.yf4_c00001{bottom:251.147067pt;}
.y31c7_c00001{bottom:251.200000pt;}
.y2647_c00001{bottom:251.306667pt;}
.y30a5_c00001{bottom:251.360000pt;}
.y1dcb_c00001{bottom:251.362720pt;}
.y11a0_c00001{bottom:251.467067pt;}
.y1440_c00001{bottom:251.547067pt;}
.y341b_c00001{bottom:251.625235pt;}
.y351b_c00001{bottom:251.627067pt;}
.y1574_c00001{bottom:251.627147pt;}
.y122b_c00001{bottom:251.704104pt;}
.y2169_c00001{bottom:251.705304pt;}
.y171d_c00001{bottom:251.707067pt;}
.y1836_c00001{bottom:251.707200pt;}
.y8d5_c00001{bottom:251.708739pt;}
.y1306_c00001{bottom:251.787067pt;}
.yfcb_c00001{bottom:251.944539pt;}
.y76_c00001{bottom:251.947067pt;}
.y16c2_c00001{bottom:252.107067pt;}
.y1b6c_c00001{bottom:252.160000pt;}
.y2c8e_c00001{bottom:252.184819pt;}
.y5e1_c00001{bottom:252.267067pt;}
.y2d3c_c00001{bottom:252.272992pt;}
.y1a37_c00001{bottom:252.320000pt;}
.y128d_c00001{bottom:252.347067pt;}
.y3614_c00001{bottom:252.507067pt;}
.y2a58_c00001{bottom:252.587067pt;}
.y334b_c00001{bottom:252.640000pt;}
.y1e0b_c00001{bottom:252.642720pt;}
.y641_c00001{bottom:252.667067pt;}
.y2812_c00001{bottom:252.745563pt;}
.y2a39_c00001{bottom:252.747067pt;}
.y1f84_c00001{bottom:252.832219pt;}
.y351a_c00001{bottom:252.907067pt;}
.y11df_c00001{bottom:252.908859pt;}
.y806_c00001{bottom:252.987067pt;}
.y982_c00001{bottom:252.987200pt;}
.y3109_c00001{bottom:253.120000pt;}
.ybfe_c00001{bottom:253.147067pt;}
.y153e_c00001{bottom:253.227067pt;}
.y2b9e_c00001{bottom:253.306675pt;}
.y25e1_c00001{bottom:253.466667pt;}
.y129c_c00001{bottom:253.467067pt;}
.y39a2_c00001{bottom:253.625675pt;}
.y2bc1_c00001{bottom:253.706400pt;}
.y6cc_c00001{bottom:253.707067pt;}
.y11eb_c00001{bottom:253.714467pt;}
.y1664_c00001{bottom:253.787448pt;}
.y2601_c00001{bottom:253.867067pt;}
.y1b20_c00001{bottom:253.920000pt;}
.yd54_c00001{bottom:253.947067pt;}
.y35b8_c00001{bottom:253.948592pt;}
.y6ac_c00001{bottom:254.026139pt;}
.yc8_c00001{bottom:254.027067pt;}
.y2f8c_c00001{bottom:254.080000pt;}
.y205c_c00001{bottom:254.107067pt;}
.y320b_c00001{bottom:254.199680pt;}
.y1c6b_c00001{bottom:254.240000pt;}
.y2c11_c00001{bottom:254.268216pt;}
.y3822_c00001{bottom:254.346675pt;}
.y8e6_c00001{bottom:254.347067pt;}
.y2e12_c00001{bottom:254.403520pt;}
.y3483_c00001{bottom:254.427067pt;}
.y25b7_c00001{bottom:254.507067pt;}
.y296c_c00001{bottom:254.586347pt;}
.y2703_c00001{bottom:254.587067pt;}
.y1cf3_c00001{bottom:254.720000pt;}
.y3445_c00001{bottom:254.747067pt;}
.y2219_c00001{bottom:254.827067pt;}
.y173_c00001{bottom:254.827667pt;}
.y389f_c00001{bottom:254.897467pt;}
.y2d21_c00001{bottom:254.987067pt;}
.y11b1_c00001{bottom:255.068803pt;}
.y1024_c00001{bottom:255.069051pt;}
.y24f3_c00001{bottom:255.140659pt;}
.y240a_c00001{bottom:255.147067pt;}
.y374f_c00001{bottom:255.151419pt;}
.y3553_c00001{bottom:255.229520pt;}
.y29b7_c00001{bottom:255.306667pt;}
.y177d_c00001{bottom:255.387067pt;}
.y5b5_c00001{bottom:255.467067pt;}
.y1d46_c00001{bottom:255.520000pt;}
.y116c_c00001{bottom:255.545467pt;}
.y133c_c00001{bottom:255.547067pt;}
.y162a_c00001{bottom:255.547200pt;}
.yb4b_c00001{bottom:255.627067pt;}
.y1bfb_c00001{bottom:255.680000pt;}
.y3a01_c00001{bottom:255.707067pt;}
.y2145_c00001{bottom:255.785955pt;}
.y290c_c00001{bottom:255.787067pt;}
.yc22_c00001{bottom:255.867067pt;}
.y39c4_c00001{bottom:255.946555pt;}
.y15dc_c00001{bottom:255.947067pt;}
.y2b61_c00001{bottom:255.948747pt;}
.y1a7d_c00001{bottom:256.000000pt;}
.y23db_c00001{bottom:256.026000pt;}
.y51c_c00001{bottom:256.027067pt;}
.y2352_c00001{bottom:256.027131pt;}
.y282d_c00001{bottom:256.029851pt;}
.y197_c00001{bottom:256.107067pt;}
.y3080_c00001{bottom:256.160000pt;}
.y117c_c00001{bottom:256.262899pt;}
.y3376_c00001{bottom:256.315040pt;}
.y3919_c00001{bottom:256.348459pt;}
.y359_c00001{bottom:256.427067pt;}
.y1ad5_c00001{bottom:256.480000pt;}
.y3762_c00001{bottom:256.507067pt;}
.y879_c00001{bottom:256.587067pt;}
.y29da_c00001{bottom:256.587355pt;}
.y19ee_c00001{bottom:256.640000pt;}
.y6e8_c00001{bottom:256.667067pt;}
.y1636_c00001{bottom:256.667200pt;}
.y1807_c00001{bottom:256.827067pt;}
.y2c32_c00001{bottom:256.907067pt;}
.y1c3c_c00001{bottom:256.960000pt;}
.ye62_c00001{bottom:256.987067pt;}
.yb1c_c00001{bottom:257.067067pt;}
.y38bd_c00001{bottom:257.067355pt;}
.y2549_c00001{bottom:257.143467pt;}
.y289e_c00001{bottom:257.147067pt;}
.y33a1_c00001{bottom:257.227067pt;}
.y272f_c00001{bottom:257.227531pt;}
.y105a_c00001{bottom:257.307067pt;}
.y2772_c00001{bottom:257.311619pt;}
.y2862_c00001{bottom:257.387067pt;}
.ye10_c00001{bottom:257.388067pt;}
.y182c_c00001{bottom:257.547067pt;}
.y2ed2_c00001{bottom:257.600000pt;}
.y1f5_c00001{bottom:257.627067pt;}
.y34ac_c00001{bottom:257.707067pt;}
.y2e6c_c00001{bottom:257.760000pt;}
.y1cb0_c00001{bottom:257.762720pt;}
.y3f5_c00001{bottom:257.787200pt;}
.y1614_c00001{bottom:257.867067pt;}
.y1a7e_c00001{bottom:257.920000pt;}
.y230a_c00001{bottom:257.947067pt;}
.y1ed6_c00001{bottom:258.080000pt;}
.y26ed_c00001{bottom:258.107067pt;}
.yf36_c00001{bottom:258.187067pt;}
.y1c6c_c00001{bottom:258.400000pt;}
.yf79_c00001{bottom:258.507067pt;}
.y2d87_c00001{bottom:258.560000pt;}
.ye67_c00001{bottom:258.585867pt;}
.y707_c00001{bottom:258.666667pt;}
.y141c_c00001{bottom:258.747067pt;}
.y332f_c00001{bottom:258.880000pt;}
.y18a8_c00001{bottom:258.907200pt;}
.y22f_c00001{bottom:258.987067pt;}
.y2d5d_c00001{bottom:259.041280pt;}
.y3681_c00001{bottom:259.067067pt;}
.yecf_c00001{bottom:259.067147pt;}
.y9c_c00001{bottom:259.147067pt;}
.yf6a_c00001{bottom:259.147200pt;}
.yacf_c00001{bottom:259.307067pt;}
.y1915_c00001{bottom:259.360000pt;}
.y12b3_c00001{bottom:259.387067pt;}
.y247c_c00001{bottom:259.467067pt;}
.y2ae8_c00001{bottom:259.627067pt;}
.ye3f_c00001{bottom:259.627747pt;}
.y58a_c00001{bottom:259.707067pt;}
.y1f4f_c00001{bottom:259.714915pt;}
.y34c1_c00001{bottom:259.786611pt;}
.y1123_c00001{bottom:259.867067pt;}
.y1707_c00001{bottom:259.947067pt;}
.y1ad6_c00001{bottom:260.000000pt;}
.yad5_c00001{bottom:260.025835pt;}
.y196d_c00001{bottom:260.027067pt;}
.y33e7_c00001{bottom:260.187827pt;}
.y467_c00001{bottom:260.267067pt;}
.y1e40_c00001{bottom:260.326240pt;}
.y2241_c00001{bottom:260.346739pt;}
.y28bb_c00001{bottom:260.347067pt;}
.y3032_c00001{bottom:260.480000pt;}
.y3724_c00001{bottom:260.506243pt;}
.y2a79_c00001{bottom:260.587067pt;}
.y37aa_c00001{bottom:260.672107pt;}
.y13d5_c00001{bottom:260.747067pt;}
.y1130_c00001{bottom:260.906811pt;}
.y2429_c00001{bottom:260.907067pt;}
.y2b06_c00001{bottom:260.986675pt;}
.y71f_c00001{bottom:261.067067pt;}
.y8a9_c00001{bottom:261.227067pt;}
.yc63_c00001{bottom:261.227771pt;}
.y2f0d_c00001{bottom:261.440000pt;}
.y2be_c00001{bottom:261.467200pt;}
.y3a4a_c00001{bottom:261.467907pt;}
.y1257_c00001{bottom:261.546947pt;}
.y364d_c00001{bottom:261.547067pt;}
.y2f1b_c00001{bottom:261.600000pt;}
.y2e42_c00001{bottom:261.602720pt;}
.y36ad_c00001{bottom:261.631027pt;}
.y1305_c00001{bottom:261.707067pt;}
.yed4_c00001{bottom:261.707075pt;}
.y2d13_c00001{bottom:261.709395pt;}
.y17c2_c00001{bottom:261.787067pt;}
.y2598_c00001{bottom:261.864667pt;}
.y2cab_c00001{bottom:261.866099pt;}
.y15a4_c00001{bottom:262.027147pt;}
.y2e6d_c00001{bottom:262.080000pt;}
.yda0_c00001{bottom:262.107067pt;}
.y741_c00001{bottom:262.186667pt;}
.y2702_c00001{bottom:262.187067pt;}
.y2ed9_c00001{bottom:262.240000pt;}
.ya93_c00001{bottom:262.258979pt;}
.ya8f_c00001{bottom:262.260315pt;}
.ya8a_c00001{bottom:262.261651pt;}
.ya85_c00001{bottom:262.262987pt;}
.y2333_c00001{bottom:262.263795pt;}
.ya80_c00001{bottom:262.264323pt;}
.ya7b_c00001{bottom:262.265659pt;}
.y310a_c00001{bottom:262.400000pt;}
.y28d1_c00001{bottom:262.427067pt;}
.y1698_c00001{bottom:262.427200pt;}
.y65f_c00001{bottom:262.587067pt;}
.y1526_c00001{bottom:262.587147pt;}
.y8be_c00001{bottom:262.667067pt;}
.y1261_c00001{bottom:262.668267pt;}
.y2283_c00001{bottom:262.746283pt;}
.y21f6_c00001{bottom:262.746675pt;}
.y2cee_c00001{bottom:262.747067pt;}
.yc8b_c00001{bottom:262.749488pt;}
.y3779_c00001{bottom:262.827067pt;}
.y1fb0_c00001{bottom:262.907067pt;}
.y2a01_c00001{bottom:262.986400pt;}
.y1c6_c00001{bottom:262.987067pt;}
.y14b9_c00001{bottom:263.145603pt;}
.y682_c00001{bottom:263.147067pt;}
.y10d6_c00001{bottom:263.147200pt;}
.y1e7d_c00001{bottom:263.200000pt;}
.y2681_c00001{bottom:263.307067pt;}
.y2fbc_c00001{bottom:263.360000pt;}
.y20f2_c00001{bottom:263.385696pt;}
.y1858_c00001{bottom:263.387067pt;}
.y356e_c00001{bottom:263.387155pt;}
.y26c9_c00001{bottom:263.627067pt;}
.y10ec_c00001{bottom:263.629867pt;}
.y1dca_c00001{bottom:263.680000pt;}
.yd91_c00001{bottom:263.707067pt;}
.y81c_c00001{bottom:263.707200pt;}
.y395_c00001{bottom:263.787067pt;}
.yf5f_c00001{bottom:263.867067pt;}
.y2849_c00001{bottom:263.867200pt;}
.y3384_c00001{bottom:263.871739pt;}
.y122a_c00001{bottom:263.944360pt;}
.y9a0_c00001{bottom:263.947067pt;}
.yb01_c00001{bottom:264.026427pt;}
.y27c0_c00001{bottom:264.027067pt;}
.yfca_c00001{bottom:264.184795pt;}
.y3954_c00001{bottom:264.185067pt;}
.y214_c00001{bottom:264.187067pt;}
.y11a5_c00001{bottom:264.267067pt;}
.y256e_c00001{bottom:264.268216pt;}
.yd76_c00001{bottom:264.268987pt;}
.y2945_c00001{bottom:264.346267pt;}
.y9e2_c00001{bottom:264.347067pt;}
.y3a32_c00001{bottom:264.353739pt;}
.y2cc0_c00001{bottom:264.426024pt;}
.y9ca_c00001{bottom:264.427067pt;}
.y319a_c00001{bottom:264.482720pt;}
.y1760_c00001{bottom:264.507067pt;}
.y36ea_c00001{bottom:264.659227pt;}
.y1746_c00001{bottom:264.667067pt;}
.y1a7f_c00001{bottom:264.800000pt;}
.y2b60_c00001{bottom:264.829083pt;}
.y1e0a_c00001{bottom:264.960000pt;}
.yf1e_c00001{bottom:264.987067pt;}
.yd27_c00001{bottom:265.067067pt;}
.y32be_c00001{bottom:265.120000pt;}
.y2042_c00001{bottom:265.144011pt;}
.y61a_c00001{bottom:265.147067pt;}
.yb08_c00001{bottom:265.147467pt;}
.yb59_c00001{bottom:265.307067pt;}
.y3259_c00001{bottom:265.440000pt;}
.y108f_c00001{bottom:265.467067pt;}
.y2bd2_c00001{bottom:265.547067pt;}
.y1f09_c00001{bottom:265.600000pt;}
.y22dd_c00001{bottom:265.627067pt;}
.y757_c00001{bottom:265.627200pt;}
.y7b8_c00001{bottom:265.707200pt;}
.y31f0_c00001{bottom:265.760000pt;}
.yc4d_c00001{bottom:265.787067pt;}
.y39a1_c00001{bottom:265.865931pt;}
.y1f68_c00001{bottom:265.947067pt;}
.y1ffd_c00001{bottom:265.949032pt;}
.y3987_c00001{bottom:266.107067pt;}
.y2189_c00001{bottom:266.267067pt;}
.y13a7_c00001{bottom:266.268347pt;}
.y26b4_c00001{bottom:266.347067pt;}
.y330e_c00001{bottom:266.400000pt;}
.y18e4_c00001{bottom:266.427067pt;}
.y299c_c00001{bottom:266.506667pt;}
.ycf9_c00001{bottom:266.507067pt;}
.y2e11_c00001{bottom:266.560000pt;}
.y1f25_c00001{bottom:266.667067pt;}
.y2091_c00001{bottom:266.667131pt;}
.yde7_c00001{bottom:266.671987pt;}
.y2ad4_c00001{bottom:266.747067pt;}
.ya28_c00001{bottom:266.827067pt;}
.y1ad7_c00001{bottom:266.880000pt;}
.ye7a_c00001{bottom:266.907067pt;}
.y1bb7_c00001{bottom:267.040000pt;}
.y2390_c00001{bottom:267.067067pt;}
.y389e_c00001{bottom:267.137723pt;}
.y2646_c00001{bottom:267.146667pt;}
.y332_c00001{bottom:267.147067pt;}
.y2ca4_c00001{bottom:267.227067pt;}
.y78e_c00001{bottom:267.387067pt;}
.y342d_c00001{bottom:267.466800pt;}
.y280_c00001{bottom:267.467067pt;}
.y37f5_c00001{bottom:267.546219pt;}
.y2525_c00001{bottom:267.547067pt;}
.ya4b_c00001{bottom:267.627067pt;}
.y1e80_c00001{bottom:267.680000pt;}
.y562_c00001{bottom:267.707067pt;}
.y120_c00001{bottom:267.787067pt;}
.y3146_c00001{bottom:267.840000pt;}
.y24c4_c00001{bottom:267.865603pt;}
.y338c_c00001{bottom:267.869403pt;}
.y43c_c00001{bottom:267.947067pt;}
.y334a_c00001{bottom:268.000000pt;}
.y2882_c00001{bottom:268.026675pt;}
.y3cc_c00001{bottom:268.027067pt;}
.y35b7_c00001{bottom:268.028504pt;}
.y2a59_c00001{bottom:268.107067pt;}
.y3060_c00001{bottom:268.160000pt;}
.y2ea2_c00001{bottom:268.165440pt;}
.y39c3_c00001{bottom:268.186811pt;}
.y5fe_c00001{bottom:268.187067pt;}
.y12f4_c00001{bottom:268.267067pt;}
.y306_c00001{bottom:268.347067pt;}
.y1062_c00001{bottom:268.347200pt;}
.y2c10_c00001{bottom:268.348128pt;}
.y1fe9_c00001{bottom:268.427067pt;}
.y2f4e_c00001{bottom:268.480000pt;}
.y14f8_c00001{bottom:268.507067pt;}
.ybce_c00001{bottom:268.665635pt;}
.y640_c00001{bottom:268.667067pt;}
.y3007_c00001{bottom:268.800000pt;}
.y1214_c00001{bottom:268.827067pt;}
.y4e5_c00001{bottom:268.907067pt;}
.y1d45_c00001{bottom:268.960000pt;}
.y211a_c00001{bottom:268.986872pt;}
.ycc8_c00001{bottom:268.987315pt;}
.y3533_c00001{bottom:269.059427pt;}
.y236a_c00001{bottom:269.067067pt;}
.y24bf_c00001{bottom:269.147067pt;}
.y257_c00001{bottom:269.227067pt;}
.y374e_c00001{bottom:269.231331pt;}
.y19a2_c00001{bottom:269.280000pt;}
.y25e0_c00001{bottom:269.306667pt;}
.y1104_c00001{bottom:269.307067pt;}
.y3552_c00001{bottom:269.309432pt;}
.ybd6_c00001{bottom:269.384403pt;}
.y1fcd_c00001{bottom:269.387067pt;}
.y1887_c00001{bottom:269.467067pt;}
.y144_c00001{bottom:269.467200pt;}
.y320a_c00001{bottom:269.564640pt;}
.y939_c00001{bottom:269.707067pt;}
.y3314_c00001{bottom:269.760000pt;}
.y35f2_c00001{bottom:269.784011pt;}
.y1554_c00001{bottom:269.867067pt;}
.y3613_c00001{bottom:270.027067pt;}
.y1caf_c00001{bottom:270.080000pt;}
.y282c_c00001{bottom:270.109763pt;}
.y359d_c00001{bottom:270.182811pt;}
.yf78_c00001{bottom:270.187003pt;}
.y2d3b_c00001{bottom:270.192352pt;}
.y1a34_c00001{bottom:270.240000pt;}
.y2f3_c00001{bottom:270.267067pt;}
.y75_c00001{bottom:270.347067pt;}
.y3918_c00001{bottom:270.428371pt;}
.y27ad_c00001{bottom:270.507067pt;}
.y1bb8_c00001{bottom:270.560000pt;}
.y7de_c00001{bottom:270.747067pt;}
.y1f83_c00001{bottom:270.751579pt;}
.y5e0_c00001{bottom:270.907067pt;}
.y17e5_c00001{bottom:270.987067pt;}
.y167b_c00001{bottom:270.987315pt;}
.y341a_c00001{bottom:271.065691pt;}
.y2a95_c00001{bottom:271.067067pt;}
.y2168_c00001{bottom:271.145760pt;}
.y8d4_c00001{bottom:271.149195pt;}
.y29b6_c00001{bottom:271.227067pt;}
.y11e0_c00001{bottom:271.229427pt;}
.y38d5_c00001{bottom:271.307067pt;}
.y272e_c00001{bottom:271.307443pt;}
.y3008_c00001{bottom:271.360000pt;}
.ya14_c00001{bottom:271.387067pt;}
.y23b2_c00001{bottom:271.467067pt;}
.y2771_c00001{bottom:271.471331pt;}
.y2c8d_c00001{bottom:271.544755pt;}
.y2c89_c00001{bottom:271.546219pt;}
.y172_c00001{bottom:271.627067pt;}
.y225e_c00001{bottom:271.627819pt;}
.y3375_c00001{bottom:271.680000pt;}
.y3518_c00001{bottom:271.707067pt;}
.y12ef_c00001{bottom:271.787067pt;}
.y23da_c00001{bottom:271.866000pt;}
.y365c_c00001{bottom:271.867067pt;}
.y2079_c00001{bottom:271.943611pt;}
.y493_c00001{bottom:271.947067pt;}
.y128e_c00001{bottom:271.947523pt;}
.y11ec_c00001{bottom:271.954875pt;}
.y2f89_c00001{bottom:272.000000pt;}
.y2811_c00001{bottom:272.105499pt;}
.y6cb_c00001{bottom:272.107067pt;}
.y2fe2_c00001{bottom:272.160000pt;}
.y116d_c00001{bottom:272.185347pt;}
.ybfd_c00001{bottom:272.187200pt;}
.y77a_c00001{bottom:272.267067pt;}
.y30e2_c00001{bottom:272.320000pt;}
.yd53_c00001{bottom:272.347067pt;}
.yc7_c00001{bottom:272.427067pt;}
.y1e3f_c00001{bottom:272.482720pt;}
.y8e5_c00001{bottom:272.587067pt;}
.y1cf0_c00001{bottom:272.640000pt;}
.y3723_c00001{bottom:272.746499pt;}
.yc21_c00001{bottom:272.747067pt;}
.y2b9d_c00001{bottom:272.747131pt;}
.y171c_c00001{bottom:272.827067pt;}
.y16af_c00001{bottom:272.827200pt;}
.y117d_c00001{bottom:272.902779pt;}
.y138a_c00001{bottom:272.907067pt;}
.y2548_c00001{bottom:272.983467pt;}
.y129d_c00001{bottom:273.066667pt;}
.y805_c00001{bottom:273.147067pt;}
.y1ed5_c00001{bottom:273.280000pt;}
.ya04_c00001{bottom:273.307200pt;}
.y2a77_c00001{bottom:273.387067pt;}
.y3215_c00001{bottom:273.390120pt;}
.y2ced_c00001{bottom:273.465891pt;}
.y11b0_c00001{bottom:273.468555pt;}
.y1023_c00001{bottom:273.468803pt;}
.y1bf8_c00001{bottom:273.600000pt;}
.y15da_c00001{bottom:273.627747pt;}
.y2b5f_c00001{bottom:273.629075pt;}
.y3821_c00001{bottom:273.787131pt;}
.y5b4_c00001{bottom:273.867067pt;}
.y2e41_c00001{bottom:273.920000pt;}
.y13b7_c00001{bottom:273.947067pt;}
.y127b_c00001{bottom:273.947200pt;}
.y296b_c00001{bottom:274.026803pt;}
.y290b_c00001{bottom:274.107067pt;}
.ye0f_c00001{bottom:274.267987pt;}
.y51b_c00001{bottom:274.427067pt;}
.y196_c00001{bottom:274.507067pt;}
.y24f2_c00001{bottom:274.581115pt;}
.yb1b_c00001{bottom:274.587067pt;}
.y3147_c00001{bottom:274.720000pt;}
.y358_c00001{bottom:274.827067pt;}
.y19ed_c00001{bottom:274.880000pt;}
.y21a6_c00001{bottom:274.906267pt;}
.y2218_c00001{bottom:274.907067pt;}
.yaf3_c00001{bottom:274.987067pt;}
.y1640_c00001{bottom:275.067067pt;}
.y28ba_c00001{bottom:275.147067pt;}
.y2d5c_c00001{bottom:275.205120pt;}
.y2144_c00001{bottom:275.226411pt;}
.y2d_c00001{bottom:275.227067pt;}
.y3583_c00001{bottom:275.307067pt;}
.y2620_c00001{bottom:275.386667pt;}
.y17d6_c00001{bottom:275.387067pt;}
.y3035_c00001{bottom:275.520000pt;}
.y1b1f_c00001{bottom:275.528960pt;}
.y3a49_c00001{bottom:275.547819pt;}
.y878_c00001{bottom:275.627067pt;}
.y2ed1_c00001{bottom:275.680000pt;}
.y145b_c00001{bottom:275.707067pt;}
.y36ac_c00001{bottom:275.710939pt;}
.y28f2_c00001{bottom:275.787067pt;}
.yaad_c00001{bottom:275.867067pt;}
.y740_c00001{bottom:275.947067pt;}
.y3279_c00001{bottom:276.000000pt;}
.y9b7_c00001{bottom:276.027067pt;}
.yffd_c00001{bottom:276.107067pt;}
.y2ed8_c00001{bottom:276.160000pt;}
.y1229_c00001{bottom:276.184616pt;}
.y146d_c00001{bottom:276.187067pt;}
.y3f4_c00001{bottom:276.187200pt;}
.y12b2_c00001{bottom:276.267067pt;}
.y15b1_c00001{bottom:276.267200pt;}
.yfc9_c00001{bottom:276.425051pt;}
.y3497_c00001{bottom:276.427067pt;}
.y1c69_c00001{bottom:276.480000pt;}
.y177c_c00001{bottom:276.507067pt;}
.ye3e_c00001{bottom:276.507667pt;}
.y3761_c00001{bottom:276.587067pt;}
.y1f4_c00001{bottom:276.667067pt;}
.yf1d_c00001{bottom:276.747067pt;}
.y1cf1_c00001{bottom:276.800000pt;}
.y1490_c00001{bottom:276.827067pt;}
.y50_c00001{bottom:276.907067pt;}
.y1dc9_c00001{bottom:276.960000pt;}
.y589_c00001{bottom:277.067067pt;}
.y33e6_c00001{bottom:277.067747pt;}
.y323a_c00001{bottom:277.120000pt;}
.y289d_c00001{bottom:277.147067pt;}
.y1bb9_c00001{bottom:277.280000pt;}
.y2791_c00001{bottom:277.306219pt;}
.yf77_c00001{bottom:277.307067pt;}
.yc64_c00001{bottom:277.307867pt;}
.y369_c00001{bottom:277.387067pt;}
.y1914_c00001{bottom:277.441280pt;}
.y1019_c00001{bottom:277.467067pt;}
.y9b_c00001{bottom:277.547067pt;}
.y1a35_c00001{bottom:277.600000pt;}
.y13d4_c00001{bottom:277.627067pt;}
.y247b_c00001{bottom:277.627075pt;}
.y2597_c00001{bottom:277.704667pt;}
.y2848_c00001{bottom:277.706800pt;}
.y196c_c00001{bottom:277.707067pt;}
.y1948_c00001{bottom:277.760000pt;}
.y1209_c00001{bottom:277.787067pt;}
.y10d7_c00001{bottom:277.787088pt;}
.y1806_c00001{bottom:277.947067pt;}
.y39a0_c00001{bottom:278.106187pt;}
.y2680_c00001{bottom:278.107067pt;}
.yb4a_c00001{bottom:278.107200pt;}
.y26ec_c00001{bottom:278.184427pt;}
.y20b0_c00001{bottom:278.185600pt;}
.y10ed_c00001{bottom:278.267067pt;}
.y2bec_c00001{bottom:278.347067pt;}
.y256d_c00001{bottom:278.348128pt;}
.y3a31_c00001{bottom:278.433651pt;}
.ya92_c00001{bottom:278.499395pt;}
.ya8e_c00001{bottom:278.500731pt;}
.ya89_c00001{bottom:278.502067pt;}
.ya84_c00001{bottom:278.503403pt;}
.ya7f_c00001{bottom:278.504739pt;}
.ya7a_c00001{bottom:278.506075pt;}
.y1b6a_c00001{bottom:278.560000pt;}
.ya61_c00001{bottom:278.587067pt;}
.y29c8_c00001{bottom:278.663211pt;}
.y466_c00001{bottom:278.667067pt;}
.yf3_c00001{bottom:278.747067pt;}
.y2a00_c00001{bottom:278.826400pt;}
.yc8c_c00001{bottom:278.829720pt;}
.y15a3_c00001{bottom:278.907667pt;}
.y22f2_c00001{bottom:278.986667pt;}
.y307d_c00001{bottom:279.040000pt;}
.y119f_c00001{bottom:279.067067pt;}
.y143f_c00001{bottom:279.147067pt;}
.y34c0_c00001{bottom:279.227067pt;}
.y6ab_c00001{bottom:279.306491pt;}
.y1313_c00001{bottom:279.307067pt;}
.y389d_c00001{bottom:279.377979pt;}
.y1525_c00001{bottom:279.467667pt;}
.y1d76_c00001{bottom:279.520000pt;}
.y2240_c00001{bottom:279.706675pt;}
.y16c1_c00001{bottom:279.707067pt;}
.y2f0c_c00001{bottom:279.840000pt;}
.y229d_c00001{bottom:279.866739pt;}
.y2bd_c00001{bottom:279.867200pt;}
.y1848_c00001{bottom:279.947067pt;}
.y2db1_c00001{bottom:280.000000pt;}
.y1322_c00001{bottom:280.033851pt;}
.y1794_c00001{bottom:280.107067pt;}
.y18a7_c00001{bottom:280.107200pt;}
.y33b9_c00001{bottom:280.187200pt;}
.yfa3_c00001{bottom:280.267067pt;}
.y2b05_c00001{bottom:280.346611pt;}
.y39c2_c00001{bottom:280.427067pt;}
.y3107_c00001{bottom:280.480000pt;}
.y2ea1_c00001{bottom:280.482720pt;}
.y981_c00001{bottom:280.587200pt;}
.y1c6a_c00001{bottom:280.640000pt;}
.y1bf9_c00001{bottom:280.800000pt;}
.y153d_c00001{bottom:280.827067pt;}
.y364c_c00001{bottom:280.907067pt;}
.y1f08_c00001{bottom:280.960000pt;}
.y22dc_c00001{bottom:281.144387pt;}
.y1706_c00001{bottom:281.147067pt;}
.yd75_c00001{bottom:281.148907pt;}
.y26a2_c00001{bottom:281.225611pt;}
.yad0_c00001{bottom:281.226819pt;}
.y1faf_c00001{bottom:281.227067pt;}
.y1f4e_c00001{bottom:281.234795pt;}
.y2ddf_c00001{bottom:281.280000pt;}
.y2caa_c00001{bottom:281.306555pt;}
.y394_c00001{bottom:281.307067pt;}
.y2f1a_c00001{bottom:281.440000pt;}
.y99f_c00001{bottom:281.467067pt;}
.y681_c00001{bottom:281.547067pt;}
.y2332_c00001{bottom:281.623731pt;}
.y2fbb_c00001{bottom:281.760000pt;}
.y346e_c00001{bottom:281.785867pt;}
.yad6_c00001{bottom:281.945587pt;}
.y1c5_c00001{bottom:281.947067pt;}
.y2282_c00001{bottom:282.106219pt;}
.y21f5_c00001{bottom:282.106611pt;}
.y9c9_c00001{bottom:282.107067pt;}
.y35b6_c00001{bottom:282.108416pt;}
.y2701_c00001{bottom:282.267067pt;}
.y299b_c00001{bottom:282.346667pt;}
.y8a8_c00001{bottom:282.347067pt;}
.y2f56_c00001{bottom:282.400000pt;}
.y4e4_c00001{bottom:282.427067pt;}
.y2c0f_c00001{bottom:282.428040pt;}
.y2b5e_c00001{bottom:282.429067pt;}
.y27ac_c00001{bottom:282.507067pt;}
.y31c5_c00001{bottom:282.560000pt;}
.y213_c00001{bottom:282.587067pt;}
.y1a7b_c00001{bottom:282.720000pt;}
.y2600_c00001{bottom:282.747067pt;}
.y34d6_c00001{bottom:282.823211pt;}
.y20f1_c00001{bottom:282.826152pt;}
.y18c6_c00001{bottom:282.907067pt;}
.y2645_c00001{bottom:282.986667pt;}
.y17c1_c00001{bottom:282.987067pt;}
.y1d77_c00001{bottom:283.040000pt;}
.y1745_c00001{bottom:283.067067pt;}
.y27e7_c00001{bottom:283.147067pt;}
.y1629_c00001{bottom:283.147200pt;}
.y3366_c00001{bottom:283.200000pt;}
.y2923_c00001{bottom:283.227067pt;}
.y374d_c00001{bottom:283.311243pt;}
.ycf8_c00001{bottom:283.387067pt;}
.y21d6_c00001{bottom:283.466347pt;}
.y3551_c00001{bottom:283.469144pt;}
.y3295_c00001{bottom:283.520000pt;}
.y619_c00001{bottom:283.547067pt;}
.yde6_c00001{bottom:283.551907pt;}
.yf0e_c00001{bottom:283.627067pt;}
.y1c3a_c00001{bottom:283.680000pt;}
.y8f7_c00001{bottom:283.707067pt;}
.y2cbf_c00001{bottom:283.785960pt;}
.y2f8a_c00001{bottom:283.840000pt;}
.yf1c_c00001{bottom:284.107067pt;}
.y7b7_c00001{bottom:284.107200pt;}
.y282b_c00001{bottom:284.189675pt;}
.y6e7_c00001{bottom:284.267067pt;}
.y1635_c00001{bottom:284.267200pt;}
.y307e_c00001{bottom:284.320000pt;}
.y1f67_c00001{bottom:284.347067pt;}
.yd26_c00001{bottom:284.506755pt;}
.y1857_c00001{bottom:284.507067pt;}
.y14dc_c00001{bottom:284.587960pt;}
.y3917_c00001{bottom:284.588083pt;}
.y331_c00001{bottom:284.667067pt;}
.y1059_c00001{bottom:284.747067pt;}
.y1ad1_c00001{bottom:284.800000pt;}
.y1258_c00001{bottom:284.906907pt;}
.y249a_c00001{bottom:284.907067pt;}
.y3209_c00001{bottom:284.929600pt;}
.y1d78_c00001{bottom:284.960000pt;}
.y3722_c00001{bottom:284.986755pt;}
.ydbf_c00001{bottom:284.987067pt;}
.y3313_c00001{bottom:285.120000pt;}
.y561_c00001{bottom:285.147067pt;}
.y25df_c00001{bottom:285.227067pt;}
.y972_c00001{bottom:285.307067pt;}
.ye79_c00001{bottom:285.387067pt;}
.y1613_c00001{bottom:285.467067pt;}
.y272d_c00001{bottom:285.467155pt;}
.y2770_c00001{bottom:285.551243pt;}
.y31c6_c00001{bottom:285.600000pt;}
.y1573_c00001{bottom:285.627067pt;}
.y2309_c00001{bottom:285.707067pt;}
.yf35_c00001{bottom:285.787067pt;}
.y225d_c00001{bottom:285.787531pt;}
.y2abb_c00001{bottom:285.866808pt;}
.y27f_c00001{bottom:285.867067pt;}
.y2090_c00001{bottom:286.027067pt;}
.y1262_c00001{bottom:286.028667pt;}
.y1d44_c00001{bottom:286.094400pt;}
.y1f24_c00001{bottom:286.106555pt;}
.y2522_c00001{bottom:286.107355pt;}
.y11f_c00001{bottom:286.187067pt;}
.y31f1_c00001{bottom:286.240000pt;}
.y706_c00001{bottom:286.266667pt;}
.y141b_c00001{bottom:286.347067pt;}
.y1ea7_c00001{bottom:286.385120pt;}
.y2bc0_c00001{bottom:286.426800pt;}
.y3cb_c00001{bottom:286.427067pt;}
.y22e_c00001{bottom:286.587067pt;}
.y3612_c00001{bottom:286.666243pt;}
.y1ad3_c00001{bottom:286.720000pt;}
.yabf_c00001{bottom:286.747067pt;}
.yf69_c00001{bottom:286.747200pt;}
.y2f4d_c00001{bottom:286.880000pt;}
.y2409_c00001{bottom:286.907067pt;}
.y37f4_c00001{bottom:286.986675pt;}
.y29b5_c00001{bottom:287.067067pt;}
.y2666_c00001{bottom:287.227067pt;}
.y543_c00001{bottom:287.307067pt;}
.ycc7_c00001{bottom:287.387067pt;}
.y22b8_c00001{bottom:287.467067pt;}
.y2881_c00001{bottom:287.467131pt;}
.y17a7_c00001{bottom:287.547067pt;}
.y256_c00001{bottom:287.627067pt;}
.y19a1_c00001{bottom:287.680000pt;}
.y23d9_c00001{bottom:287.706000pt;}
.y3374_c00001{bottom:287.845600pt;}
.y1b1e_c00001{bottom:287.846240pt;}
.y24be_c00001{bottom:287.944515pt;}
.y108e_c00001{bottom:287.947067pt;}
.yb70_c00001{bottom:288.106875pt;}
.y37a9_c00001{bottom:288.111603pt;}
.y2d3a_c00001{bottom:288.111712pt;}
.y1e7c_c00001{bottom:288.180640pt;}
.y238f_c00001{bottom:288.187067pt;}
.yc4c_c00001{bottom:288.267067pt;}
.y2119_c00001{bottom:288.346808pt;}
.y38bc_c00001{bottom:288.347067pt;}
.y245e_c00001{bottom:288.427067pt;}
.y1228_c00001{bottom:288.504672pt;}
.y1ed4_c00001{bottom:288.640000pt;}
.y71e_c00001{bottom:288.667067pt;}
.y1f82_c00001{bottom:288.670939pt;}
.y116e_c00001{bottom:288.745067pt;}
.yfc8_c00001{bottom:288.745107pt;}
.y74_c00001{bottom:288.747067pt;}
.y2547_c00001{bottom:288.903867pt;}
.y38d4_c00001{bottom:288.907067pt;}
.y2e40_c00001{bottom:289.120000pt;}
.y1871_c00001{bottom:289.147067pt;}
.y171_c00001{bottom:289.227067pt;}
.y133b_c00001{bottom:289.307067pt;}
.y167a_c00001{bottom:289.387067pt;}
.y117e_c00001{bottom:289.462499pt;}
.y1fe8_c00001{bottom:289.467067pt;}
.y11e1_c00001{bottom:289.469835pt;}
.y5df_c00001{bottom:289.547067pt;}
.yb86_c00001{bottom:289.627067pt;}
.y3a48_c00001{bottom:289.707531pt;}
.y2405_c00001{bottom:289.787067pt;}
.y36ab_c00001{bottom:289.790851pt;}
.y28b9_c00001{bottom:289.867067pt;}
.y28d0_c00001{bottom:289.947067pt;}
.y16e4_c00001{bottom:290.027067pt;}
.y1697_c00001{bottom:290.027200pt;}
.y316b_c00001{bottom:290.080000pt;}
.y65e_c00001{bottom:290.187067pt;}
.y11ed_c00001{bottom:290.195283pt;}
.y3199_c00001{bottom:290.240000pt;}
.y588_c00001{bottom:290.347200pt;}
.y3419_c00001{bottom:290.425627pt;}
.y399f_c00001{bottom:290.426243pt;}
.y3700_c00001{bottom:290.427067pt;}
.y15d9_c00001{bottom:290.427147pt;}
.y2167_c00001{bottom:290.505696pt;}
.y6ca_c00001{bottom:290.507067pt;}
.y2c5a_c00001{bottom:290.587067pt;}
.yb02_c00001{bottom:290.666267pt;}
.y779_c00001{bottom:290.667067pt;}
.y1fcc_c00001{bottom:290.667200pt;}
.yc6_c00001{bottom:290.827067pt;}
.y2c8c_c00001{bottom:290.985211pt;}
.y2c88_c00001{bottom:290.986675pt;}
.y20c6_c00001{bottom:291.067067pt;}
.y3517_c00001{bottom:291.147067pt;}
.ye0e_c00001{bottom:291.147907pt;}
.y2d5b_c00001{bottom:291.200000pt;}
.ybfc_c00001{bottom:291.227067pt;}
.y2b5d_c00001{bottom:291.229059pt;}
.yd90_c00001{bottom:291.307067pt;}
.y81b_c00001{bottom:291.307200pt;}
.y2810_c00001{bottom:291.465435pt;}
.yb1a_c00001{bottom:291.467067pt;}
.y2847_c00001{bottom:291.467200pt;}
.y23b1_c00001{bottom:291.547067pt;}
.y128f_c00001{bottom:291.547979pt;}
.y8d3_c00001{bottom:291.548571pt;}
.y389c_c00001{bottom:291.698035pt;}
.yb09_c00001{bottom:291.787467pt;}
.yd52_c00001{bottom:291.866632pt;}
.y3582_c00001{bottom:291.867067pt;}
.y11af_c00001{bottom:291.868307pt;}
.y1022_c00001{bottom:291.868555pt;}
.y51a_c00001{bottom:291.947067pt;}
.y36e9_c00001{bottom:292.099787pt;}
.y185f_c00001{bottom:292.107067pt;}
.y17e4_c00001{bottom:292.187067pt;}
.y10c0_c00001{bottom:292.187200pt;}
.ye63_c00001{bottom:292.427067pt;}
.y290a_c00001{bottom:292.507067pt;}
.y10d8_c00001{bottom:292.507136pt;}
.y256c_c00001{bottom:292.507840pt;}
.y3a30_c00001{bottom:292.513563pt;}
.y129e_c00001{bottom:292.666267pt;}
.y2ea0_c00001{bottom:292.800000pt;}
.y2cec_c00001{bottom:292.825827pt;}
.y1103_c00001{bottom:292.827067pt;}
.yeaa_c00001{bottom:292.907067pt;}
.y3864_c00001{bottom:292.987067pt;}
.y10ee_c00001{bottom:292.987467pt;}
.ye68_c00001{bottom:293.065467pt;}
.yece_c00001{bottom:293.067603pt;}
.y195_c00001{bottom:293.147067pt;}
.y13a8_c00001{bottom:293.148667pt;}
.y357_c00001{bottom:293.227067pt;}
.y756_c00001{bottom:293.227200pt;}
.ye3d_c00001{bottom:293.307067pt;}
.y296a_c00001{bottom:293.386739pt;}
.yc65_c00001{bottom:293.387963pt;}
.y12b1_c00001{bottom:293.467067pt;}
.y1074_c00001{bottom:293.547067pt;}
.y1913_c00001{bottom:293.605120pt;}
.y2596_c00001{bottom:293.625067pt;}
.y3854_c00001{bottom:293.626376pt;}
.y356d_c00001{bottom:293.707067pt;}
.y2f19_c00001{bottom:293.760000pt;}
.y2188_c00001{bottom:293.867067pt;}
.y24f1_c00001{bottom:293.941051pt;}
.y33e5_c00001{bottom:293.947667pt;}
.y171b_c00001{bottom:294.027067pt;}
.y1835_c00001{bottom:294.027200pt;}
.y3444_c00001{bottom:294.187200pt;}
.y2db0_c00001{bottom:294.240000pt;}
.y1dc8_c00001{bottom:294.257920pt;}
.y12ee_c00001{bottom:294.267067pt;}
.y804_c00001{bottom:294.347067pt;}
.y2fe1_c00001{bottom:294.400000pt;}
.ya27_c00001{bottom:294.427067pt;}
.y13d3_c00001{bottom:294.507067pt;}
.y30e1_c00001{bottom:294.560000pt;}
.y2143_c00001{bottom:294.586347pt;}
.y3482_c00001{bottom:294.587067pt;}
.y29ff_c00001{bottom:294.666400pt;}
.y1663_c00001{bottom:294.667200pt;}
.y877_c00001{bottom:294.747067pt;}
.ya91_c00001{bottom:294.819971pt;}
.ya8d_c00001{bottom:294.821307pt;}
.ya88_c00001{bottom:294.822643pt;}
.ya83_c00001{bottom:294.823979pt;}
.ya7e_c00001{bottom:294.825315pt;}
.ya79_c00001{bottom:294.826651pt;}
.y145a_c00001{bottom:294.827067pt;}
.y1cee_c00001{bottom:294.880000pt;}
.y3f3_c00001{bottom:294.907067pt;}
.yc8d_c00001{bottom:294.909952pt;}
.y1f3_c00001{bottom:295.067067pt;}
.y1bb4_c00001{bottom:295.200000pt;}
.ya4a_c00001{bottom:295.227067pt;}
.y2d86_c00001{bottom:295.360000pt;}
.y2351_c00001{bottom:295.466416pt;}
.y1a32_c00001{bottom:295.520000pt;}
.y1e09_c00001{bottom:295.537920pt;}
.y30a3_c00001{bottom:295.680000pt;}
.y15a2_c00001{bottom:295.707067pt;}
.y368_c00001{bottom:295.787067pt;}
.y9a_c00001{bottom:295.947067pt;}
.y1061_c00001{bottom:295.947200pt;}
.y3345_c00001{bottom:296.000000pt;}
.y2a38_c00001{bottom:296.027067pt;}
.y383c_c00001{bottom:296.107067pt;}
.y1947_c00001{bottom:296.160000pt;}
.y14f7_c00001{bottom:296.187067pt;}
.y37d4_c00001{bottom:296.187200pt;}
.y1524_c00001{bottom:296.267067pt;}
.y35b5_c00001{bottom:296.268128pt;}
.y1f07_c00001{bottom:296.320000pt;}
.y2a78_c00001{bottom:296.347067pt;}
.y14b1_c00001{bottom:296.427067pt;}
.y17d5_c00001{bottom:296.507067pt;}
.y2c0e_c00001{bottom:296.587752pt;}
.y201a_c00001{bottom:296.667200pt;}
.y2790_c00001{bottom:296.746675pt;}
.yd25_c00001{bottom:296.747011pt;}
.y3108_c00001{bottom:296.800000pt;}
.y2c31_c00001{bottom:296.827067pt;}
.y3953_c00001{bottom:296.905467pt;}
.y160a_c00001{bottom:296.907067pt;}
.y2944_c00001{bottom:297.066667pt;}
.y465_c00001{bottom:297.067067pt;}
.y143_c00001{bottom:297.067200pt;}
.y31f2_c00001{bottom:297.120000pt;}
.y19ec_c00001{bottom:297.135200pt;}
.y3721_c00001{bottom:297.227011pt;}
.y938_c00001{bottom:297.227067pt;}
.y2e10_c00001{bottom:297.286240pt;}
.y1553_c00001{bottom:297.467067pt;}
.y374c_c00001{bottom:297.470955pt;}
.y26eb_c00001{bottom:297.544363pt;}
.y25ff_c00001{bottom:297.547067pt;}
.y3550_c00001{bottom:297.549056pt;}
.y1ad2_c00001{bottom:297.600000pt;}
.y177b_c00001{bottom:297.707067pt;}
.y3144_c00001{bottom:297.760000pt;}
.y3383_c00001{bottom:297.791155pt;}
.y2f2_c00001{bottom:297.867067pt;}
.y2041_c00001{bottom:297.943467pt;}
.yd74_c00001{bottom:297.948307pt;}
.y3a00_c00001{bottom:298.027067pt;}
.y2a1e_c00001{bottom:298.107067pt;}
.y1e3e_c00001{bottom:298.240000pt;}
.y15db_c00001{bottom:298.267067pt;}
.y2bc_c00001{bottom:298.267200pt;}
.y1314_c00001{bottom:298.267579pt;}
.y7dd_c00001{bottom:298.347067pt;}
.y282a_c00001{bottom:298.349387pt;}
.y302f_c00001{bottom:298.400000pt;}
.y1d43_c00001{bottom:298.411680pt;}
.y4e3_c00001{bottom:298.427067pt;}
.yaf2_c00001{bottom:298.507067pt;}
.y1c68_c00001{bottom:298.560000pt;}
.y34e9_c00001{bottom:298.587067pt;}
.y27e6_c00001{bottom:298.666675pt;}
.y3916_c00001{bottom:298.667995pt;}
.y1bb5_c00001{bottom:298.720000pt;}
.y88e_c00001{bottom:298.747067pt;}
.y27ab_c00001{bottom:298.747075pt;}
.y393_c00001{bottom:298.827067pt;}
.y2fba_c00001{bottom:298.885440pt;}
.y3611_c00001{bottom:298.906499pt;}
.y2644_c00001{bottom:298.907067pt;}
.ya13_c00001{bottom:298.987067pt;}
.y1323_c00001{bottom:298.994363pt;}
.y1cef_c00001{bottom:299.040000pt;}
.y223f_c00001{bottom:299.066611pt;}
.y2ae7_c00001{bottom:299.067067pt;}
.y1805_c00001{bottom:299.147067pt;}
.y229c_c00001{bottom:299.226675pt;}
.y971_c00001{bottom:299.227067pt;}
.y2c34_c00001{bottom:299.307067pt;}
.y365b_c00001{bottom:299.387067pt;}
.y1fae_c00001{bottom:299.467067pt;}
.y492_c00001{bottom:299.547067pt;}
.y276f_c00001{bottom:299.631155pt;}
.y2dde_c00001{bottom:299.680000pt;}
.y2428_c00001{bottom:299.707067pt;}
.y2d12_c00001{bottom:299.708899pt;}
.y2b04_c00001{bottom:299.787067pt;}
.y30a4_c00001{bottom:299.840000pt;}
.y182b_c00001{bottom:299.867067pt;}
.y225c_c00001{bottom:299.867443pt;}
.y680_c00001{bottom:299.947067pt;}
.y1b1d_c00001{bottom:300.002720pt;}
.y3532_c00001{bottom:300.019891pt;}
.y705_c00001{bottom:300.027067pt;}
.y2b5c_c00001{bottom:300.029051pt;}
.y205b_c00001{bottom:300.107067pt;}
.y1b69_c00001{bottom:300.172480pt;}
.y342c_c00001{bottom:300.187200pt;}
.y8bd_c00001{bottom:300.267067pt;}
.y3208_c00001{bottom:300.294560pt;}
.y1c4_c00001{bottom:300.347067pt;}
.y16ae_c00001{bottom:300.427200pt;}
.yde5_c00001{bottom:300.431827pt;}
.y3312_c00001{bottom:300.480000pt;}
.y1e7b_c00001{bottom:300.497920pt;}
.y22db_c00001{bottom:300.504323pt;}
.ycf7_c00001{bottom:300.587067pt;}
.y3965_c00001{bottom:300.587571pt;}
.y2ca9_c00001{bottom:300.666491pt;}
.y63f_c00001{bottom:300.667200pt;}
.y1227_c00001{bottom:300.744928pt;}
.ya03_c00001{bottom:300.907200pt;}
.yfc7_c00001{bottom:300.985363pt;}
.y212_c00001{bottom:300.987067pt;}
.y2331_c00001{bottom:301.064187pt;}
.y1847_c00001{bottom:301.067067pt;}
.y9c8_c00001{bottom:301.227067pt;}
.y18a6_c00001{bottom:301.227200pt;}
.y1793_c00001{bottom:301.307067pt;}
.y1744_c00001{bottom:301.467067pt;}
.y14db_c00001{bottom:301.467880pt;}
.y2281_c00001{bottom:301.546675pt;}
.y13b6_c00001{bottom:301.547067pt;}
.y127a_c00001{bottom:301.547200pt;}
.y1c39_c00001{bottom:301.600000pt;}
.ycc6_c00001{bottom:301.627067pt;}
.y1ea6_c00001{bottom:301.750080pt;}
.y2f88_c00001{bottom:301.760000pt;}
.y1572_c00001{bottom:301.787067pt;}
.y338b_c00001{bottom:301.788819pt;}
.y32bd_c00001{bottom:301.920000pt;}
.y618_c00001{bottom:301.947067pt;}
.y1cae_c00001{bottom:302.080000pt;}
.y1549_c00001{bottom:302.107067pt;}
.y20f0_c00001{bottom:302.186088pt;}
.y330_c00001{bottom:302.187200pt;}
.y2a57_c00001{bottom:302.266283pt;}
.y1705_c00001{bottom:302.267067pt;}
.y2700_c00001{bottom:302.347067pt;}
.y35f1_c00001{bottom:302.504411pt;}
.y7b6_c00001{bottom:302.507200pt;}
.y305d_c00001{bottom:302.560000pt;}
.y399e_c00001{bottom:302.666499pt;}
.y163f_c00001{bottom:302.667067pt;}
.y1f4d_c00001{bottom:302.674523pt;}
.y1a33_c00001{bottom:302.720000pt;}
.y1f66_c00001{bottom:302.747067pt;}
.y2c_c00001{bottom:302.827067pt;}
.y2b87_c00001{bottom:302.827200pt;}
.y359c_c00001{bottom:302.903211pt;}
.y21d5_c00001{bottom:302.906803pt;}
.y78d_c00001{bottom:302.987067pt;}
.y3936_c00001{bottom:303.067067pt;}
.y2462_c00001{bottom:303.147067pt;}
.y2e9e_c00001{bottom:303.200000pt;}
.y2cbe_c00001{bottom:303.226416pt;}
.y28f1_c00001{bottom:303.307067pt;}
.yaac_c00001{bottom:303.467067pt;}
.y8a7_c00001{bottom:303.547067pt;}
.y23d8_c00001{bottom:303.626400pt;}
.y9b6_c00001{bottom:303.627067pt;}
.y2bd1_c00001{bottom:303.627355pt;}
.yffc_c00001{bottom:303.707067pt;}
.y146c_c00001{bottom:303.787067pt;}
.y3a47_c00001{bottom:303.787443pt;}
.y3ca_c00001{bottom:303.867067pt;}
.y15b0_c00001{bottom:303.867200pt;}
.y389b_c00001{bottom:303.938291pt;}
.y1ffc_c00001{bottom:303.948536pt;}
.y36aa_c00001{bottom:303.950563pt;}
.y1ed3_c00001{bottom:304.000000pt;}
.yd51_c00001{bottom:304.106888pt;}
.y17c0_c00001{bottom:304.107067pt;}
.ydbe_c00001{bottom:304.187200pt;}
.y27e_c00001{bottom:304.267067pt;}
.y148f_c00001{bottom:304.427067pt;}
.y4f_c00001{bottom:304.507067pt;}
.y6aa_c00001{bottom:304.586843pt;}
.y11e_c00001{bottom:304.587067pt;}
.y2078_c00001{bottom:304.664011pt;}
.y28b8_c00001{bottom:304.667200pt;}
.y2546_c00001{bottom:304.743867pt;}
.y2e6b_c00001{bottom:304.803520pt;}
.y2665_c00001{bottom:304.827067pt;}
.y2f4c_c00001{bottom:304.960000pt;}
.y255_c00001{bottom:304.987067pt;}
.y2499_c00001{bottom:304.987131pt;}
.y305e_c00001{bottom:305.120000pt;}
.yc35_c00001{bottom:305.147067pt;}
.y519_c00001{bottom:305.227067pt;}
.y3031_c00001{bottom:305.280000pt;}
.y2846_c00001{bottom:305.306800pt;}
.y2aba_c00001{bottom:305.307264pt;}
.y116f_c00001{bottom:305.384947pt;}
.y3030_c00001{bottom:305.440000pt;}
.y1208_c00001{bottom:305.467067pt;}
.y1bb6_c00001{bottom:305.600000pt;}
.y542_c00001{bottom:305.707067pt;}
.yb49_c00001{bottom:305.707200pt;}
.y2308_c00001{bottom:305.787067pt;}
.y3853_c00001{bottom:305.866632pt;}
.y37e3_c00001{bottom:305.867067pt;}
.y267f_c00001{bottom:305.947067pt;}
.y2d39_c00001{bottom:306.031072pt;}
.y19a0_c00001{bottom:306.080000pt;}
.y117f_c00001{bottom:306.102379pt;}
.ya60_c00001{bottom:306.187067pt;}
.yf0d_c00001{bottom:306.187200pt;}
.y37f3_c00001{bottom:306.346611pt;}
.yf2_c00001{bottom:306.347067pt;}
.yc20_c00001{bottom:306.427067pt;}
.y1dc7_c00001{bottom:306.575200pt;}
.y119e_c00001{bottom:306.587067pt;}
.y170_c00001{bottom:306.587251pt;}
.y256b_c00001{bottom:306.587752pt;}
.y1f81_c00001{bottom:306.590299pt;}
.y965_c00001{bottom:306.667067pt;}
.y3a2f_c00001{bottom:306.673275pt;}
.yd9f_c00001{bottom:306.747067pt;}
.y175f_c00001{bottom:306.827067pt;}
.y3701_c00001{bottom:306.907067pt;}
.y10d9_c00001{bottom:307.147024pt;}
.y1370_c00001{bottom:307.227067pt;}
.y24bd_c00001{bottom:307.304451pt;}
.y16c0_c00001{bottom:307.307067pt;}
.y15d8_c00001{bottom:307.307667pt;}
.y3214_c00001{bottom:307.309536pt;}
.y2e9f_c00001{bottom:307.360000pt;}
.y3198_c00001{bottom:307.365440pt;}
.y22b7_c00001{bottom:307.547067pt;}
.y21a5_c00001{bottom:307.626667pt;}
.y2f18_c00001{bottom:307.680000pt;}
.y10ef_c00001{bottom:307.707867pt;}
.y2118_c00001{bottom:307.787264pt;}
.y11e2_c00001{bottom:307.790403pt;}
.y1d73_c00001{bottom:307.840000pt;}
.y1e08_c00001{bottom:307.855200pt;}
.yfa2_c00001{bottom:307.867067pt;}
.y316a_c00001{bottom:308.000000pt;}
.ye0d_c00001{bottom:308.027827pt;}
.y6c9_c00001{bottom:308.107067pt;}
.y2d5a_c00001{bottom:308.160000pt;}
.y980_c00001{bottom:308.187200pt;}
.y1058_c00001{bottom:308.187544pt;}
.y1259_c00001{bottom:308.266867pt;}
.yecd_c00001{bottom:308.347435pt;}
.y153c_c00001{bottom:308.427067pt;}
.y11ee_c00001{bottom:308.515851pt;}
.y8e4_c00001{bottom:308.747067pt;}
.y587_c00001{bottom:308.747200pt;}
.y27bf_c00001{bottom:308.827067pt;}
.y2b5b_c00001{bottom:308.909387pt;}
.yb19_c00001{bottom:308.987067pt;}
.y778_c00001{bottom:309.067067pt;}
.y2404_c00001{bottom:309.147200pt;}
.y5de_c00001{bottom:309.227067pt;}
.y3373_c00001{bottom:309.280000pt;}
.y238e_c00001{bottom:309.307067pt;}
.yb71_c00001{bottom:309.386683pt;}
.y970_c00001{bottom:309.387067pt;}
.y9c7_c00001{bottom:309.387987pt;}
.y1263_c00001{bottom:309.389067pt;}
.y305f_c00001{bottom:309.440000pt;}
.y19eb_c00001{bottom:309.452480pt;}
.y2595_c00001{bottom:309.465067pt;}
.yc66_c00001{bottom:309.468059pt;}
.y3720_c00001{bottom:309.547067pt;}
.y1912_c00001{bottom:309.600000pt;}
.y2e0f_c00001{bottom:309.603520pt;}
.yc5_c00001{bottom:309.707067pt;}
.yfb4_c00001{bottom:309.707200pt;}
.y3277_c00001{bottom:309.760000pt;}
.y3418_c00001{bottom:309.785563pt;}
.y2166_c00001{bottom:309.865632pt;}
.yf5e_c00001{bottom:309.867067pt;}
.yf2a_c00001{bottom:310.027067pt;}
.y2d20_c00001{bottom:310.187067pt;}
.y858_c00001{bottom:310.267067pt;}
.y11ae_c00001{bottom:310.268059pt;}
.y1021_c00001{bottom:310.268307pt;}
.y2c8b_c00001{bottom:310.345147pt;}
.y2c87_c00001{bottom:310.346611pt;}
.ybfb_c00001{bottom:310.347067pt;}
.y35b4_c00001{bottom:310.348040pt;}
.y1ad4_c00001{bottom:310.400000pt;}
.y3519_c00001{bottom:310.507067pt;}
.y3006_c00001{bottom:310.560000pt;}
.y29fe_c00001{bottom:310.586800pt;}
.y36cc_c00001{bottom:310.587067pt;}
.y2c0d_c00001{bottom:310.667664pt;}
.y1d42_c00001{bottom:310.728960pt;}
.y1628_c00001{bottom:310.747200pt;}
.y33e8_c00001{bottom:310.748531pt;}
.y1fcb_c00001{bottom:310.827067pt;}
.y280f_c00001{bottom:310.905891pt;}
.y20af_c00001{bottom:310.906000pt;}
.y5fd_c00001{bottom:310.907067pt;}
.y8d2_c00001{bottom:310.989027pt;}
.yc8e_c00001{bottom:310.990184pt;}
.ya90_c00001{bottom:311.060387pt;}
.ya8c_c00001{bottom:311.061723pt;}
.ya87_c00001{bottom:311.063059pt;}
.ya82_c00001{bottom:311.064395pt;}
.ya7d_c00001{bottom:311.065731pt;}
.ya78_c00001{bottom:311.067067pt;}
.y194_c00001{bottom:311.147200pt;}
.y1290_c00001{bottom:311.148435pt;}
.y2fb9_c00001{bottom:311.202720pt;}
.y3610_c00001{bottom:311.226555pt;}
.y16e3_c00001{bottom:311.227067pt;}
.y8f6_c00001{bottom:311.307067pt;}
.y29c7_c00001{bottom:311.383611pt;}
.y1fe7_c00001{bottom:311.387067pt;}
.y374b_c00001{bottom:311.550867pt;}
.y356_c00001{bottom:311.627067pt;}
.y354f_c00001{bottom:311.628968pt;}
.y1f06_c00001{bottom:311.680000pt;}
.y22f1_c00001{bottom:311.707067pt;}
.y1886_c00001{bottom:311.787067pt;}
.y6e6_c00001{bottom:311.867067pt;}
.y1634_c00001{bottom:311.867200pt;}
.y33e4_c00001{bottom:312.027067pt;}
.y14b0_c00001{bottom:312.187200pt;}
.y2ceb_c00001{bottom:312.266283pt;}
.y3f2_c00001{bottom:312.267251pt;}
.y1b1c_c00001{bottom:312.320000pt;}
.y1b68_c00001{bottom:312.328960pt;}
.y129f_c00001{bottom:312.346267pt;}
.y10bf_c00001{bottom:312.347200pt;}
.y25b6_c00001{bottom:312.427067pt;}
.y2829_c00001{bottom:312.429299pt;}
.y2b9c_c00001{bottom:312.507067pt;}
.y1073_c00001{bottom:312.587067pt;}
.y1d74_c00001{bottom:312.640000pt;}
.y2969_c00001{bottom:312.746675pt;}
.y3915_c00001{bottom:312.747907pt;}
.y1e7a_c00001{bottom:312.815200pt;}
.y20c5_c00001{bottom:312.907067pt;}
.y32e1_c00001{bottom:312.960000pt;}
.y1226_c00001{bottom:312.985184pt;}
.y73_c00001{bottom:313.067067pt;}
.y1d75_c00001{bottom:313.120000pt;}
.y356c_c00001{bottom:313.147200pt;}
.yfc6_c00001{bottom:313.225619pt;}
.y25fe_c00001{bottom:313.227067pt;}
.y1946_c00001{bottom:313.280000pt;}
.y17e3_c00001{bottom:313.307067pt;}
.y15a1_c00001{bottom:313.307880pt;}
.y24f0_c00001{bottom:313.381507pt;}
.y1f2_c00001{bottom:313.467067pt;}
.y1bf7_c00001{bottom:313.600000pt;}
.y196b_c00001{bottom:313.627067pt;}
.y2d85_c00001{bottom:313.760000pt;}
.y2e3f_c00001{bottom:313.762720pt;}
.y876_c00001{bottom:313.787067pt;}
.y276e_c00001{bottom:313.790867pt;}
.y704_c00001{bottom:313.866667pt;}
.y1459_c00001{bottom:313.867067pt;}
.y1523_c00001{bottom:313.867747pt;}
.y3239_c00001{bottom:313.920000pt;}
.y26a1_c00001{bottom:313.946011pt;}
.y141a_c00001{bottom:313.947067pt;}
.y225b_c00001{bottom:313.947355pt;}
.y2142_c00001{bottom:314.026803pt;}
.y33b8_c00001{bottom:314.027067pt;}
.y22d_c00001{bottom:314.187067pt;}
.y3443_c00001{bottom:314.267067pt;}
.y99_c00001{bottom:314.347067pt;}
.yf68_c00001{bottom:314.347200pt;}
.y4e2_c00001{bottom:314.427067pt;}
.y346d_c00001{bottom:314.506267pt;}
.y803_c00001{bottom:314.507067pt;}
.y3258_c00001{bottom:314.560000pt;}
.y3481_c00001{bottom:314.587067pt;}
.y3347_c00001{bottom:314.715040pt;}
.y2643_c00001{bottom:314.747067pt;}
.y2350_c00001{bottom:314.826352pt;}
.yd73_c00001{bottom:314.828227pt;}
.y3105_c00001{bottom:314.880000pt;}
.y399d_c00001{bottom:314.906755pt;}
.ycf6_c00001{bottom:314.987067pt;}
.y17ec_c00001{bottom:315.067067pt;}
.y171a_c00001{bottom:315.147067pt;}
.y1834_c00001{bottom:315.147200pt;}
.y1102_c00001{bottom:315.227200pt;}
.y2f1_c00001{bottom:315.386667pt;}
.y464_c00001{bottom:315.467067pt;}
.y34d5_c00001{bottom:315.543611pt;}
.y108d_c00001{bottom:315.547067pt;}
.y37a8_c00001{bottom:315.551099pt;}
.y9e1_c00001{bottom:315.627067pt;}
.y3207_c00001{bottom:315.659520pt;}
.y3311_c00001{bottom:315.680000pt;}
.y5b3_c00001{bottom:315.707067pt;}
.y2521_c00001{bottom:315.781051pt;}
.yc4b_c00001{bottom:315.867067pt;}
.y13d2_c00001{bottom:315.947067pt;}
.y278f_c00001{bottom:316.106611pt;}
.y389a_c00001{bottom:316.178547pt;}
.y1f23_c00001{bottom:316.187067pt;}
.y71d_c00001{bottom:316.267067pt;}
.y31c4_c00001{bottom:316.320000pt;}
.ya12_c00001{bottom:316.347067pt;}
.yd50_c00001{bottom:316.347144pt;}
.y392_c00001{bottom:316.427067pt;}
.y267e_c00001{bottom:316.507067pt;}
.y1e3d_c00001{bottom:316.640000pt;}
.y2bb_c00001{bottom:316.667200pt;}
.y3760_c00001{bottom:316.747067pt;}
.y560_c00001{bottom:316.827067pt;}
.y1cec_c00001{bottom:316.960000pt;}
.y26ea_c00001{bottom:316.984819pt;}
.y2a1d_c00001{bottom:316.987067pt;}
.y1ea5_c00001{bottom:317.115040pt;}
.y3c9_c00001{bottom:317.147067pt;}
.y39ff_c00001{bottom:317.227067pt;}
.y1315_c00001{bottom:317.228091pt;}
.y32e7_c00001{bottom:317.280000pt;}
.yb03_c00001{bottom:317.306107pt;}
.y289c_c00001{bottom:317.307067pt;}
.yde4_c00001{bottom:317.311747pt;}
.y1571_c00001{bottom:317.547067pt;}
.y32f_c00001{bottom:317.627067pt;}
.y1696_c00001{bottom:317.627200pt;}
.y2b03_c00001{bottom:317.707067pt;}
.y2b5a_c00001{bottom:317.709379pt;}
.y30a1_c00001{bottom:317.760000pt;}
.y65d_c00001{bottom:317.787067pt;}
.y34ab_c00001{bottom:317.867067pt;}
.y3a46_c00001{bottom:317.867355pt;}
.y2ddd_c00001{bottom:317.920000pt;}
.y1324_c00001{bottom:317.954875pt;}
.y73f_c00001{bottom:318.027067pt;}
.y36a9_c00001{bottom:318.030475pt;}
.y3852_c00001{bottom:318.106888pt;}
.y27e5_c00001{bottom:318.107131pt;}
.y254_c00001{bottom:318.267067pt;}
.y14da_c00001{bottom:318.267280pt;}
.y67f_c00001{bottom:318.347067pt;}
.y1cad_c00001{bottom:318.400000pt;}
.ycc5_c00001{bottom:318.427067pt;}
.yb0a_c00001{bottom:318.427467pt;}
.y849_c00001{bottom:318.507067pt;}
.y2408_c00001{bottom:318.587067pt;}
.y229b_c00001{bottom:318.667131pt;}
.y2b86_c00001{bottom:318.667200pt;}
.y3126_c00001{bottom:318.720000pt;}
.y1dc6_c00001{bottom:318.731680pt;}
.y28cf_c00001{bottom:318.747067pt;}
.y177a_c00001{bottom:318.827067pt;}
.y2f55_c00001{bottom:318.880000pt;}
.y88d_c00001{bottom:318.907067pt;}
.y81a_c00001{bottom:318.907200pt;}
.y1c3_c00001{bottom:319.067067pt;}
.y2845_c00001{bottom:319.067200pt;}
.y8bc_c00001{bottom:319.147200pt;}
.y2fe0_c00001{bottom:319.206240pt;}
.y5b2_c00001{bottom:319.307067pt;}
.y1ed2_c00001{bottom:319.360000pt;}
.y211_c00001{bottom:319.387067pt;}
.y23d7_c00001{bottom:319.466400pt;}
.y950_c00001{bottom:319.467067pt;}
.y36e8_c00001{bottom:319.540347pt;}
.ye57_c00001{bottom:319.547067pt;}
.y3197_c00001{bottom:319.682720pt;}
.y18c5_c00001{bottom:319.707067pt;}
.y223e_c00001{bottom:319.787067pt;}
.y1743_c00001{bottom:319.867067pt;}
.y22da_c00001{bottom:319.944779pt;}
.y3365_c00001{bottom:320.000000pt;}
.y13a9_c00001{bottom:320.028987pt;}
.y1e07_c00001{bottom:320.172480pt;}
.y3820_c00001{bottom:320.187200pt;}
.y1804_c00001{bottom:320.267067pt;}
.y32bc_c00001{bottom:320.320000pt;}
.y617_c00001{bottom:320.347067pt;}
.y2330_c00001{bottom:320.424123pt;}
.y28b7_c00001{bottom:320.427067pt;}
.yea9_c00001{bottom:320.507067pt;}
.y2545_c00001{bottom:320.583867pt;}
.yd9e_c00001{bottom:320.587067pt;}
.y1a30_c00001{bottom:320.640000pt;}
.y1057_c00001{bottom:320.667200pt;}
.y256a_c00001{bottom:320.667664pt;}
.y3986_c00001{bottom:320.747067pt;}
.y3a2e_c00001{bottom:320.753187pt;}
.y30e0_c00001{bottom:320.800000pt;}
.y755_c00001{bottom:320.827200pt;}
.y2280_c00001{bottom:320.906611pt;}
.y7b5_c00001{bottom:320.907200pt;}
.yaf1_c00001{bottom:320.987067pt;}
.y34bf_c00001{bottom:321.067067pt;}
.y1ced_c00001{bottom:321.120000pt;}
.y13b0_c00001{bottom:321.147067pt;}
.y518_c00001{bottom:321.227067pt;}
.y3145_c00001{bottom:321.440000pt;}
.y2187_c00001{bottom:321.467067pt;}
.y21f3_c00001{bottom:321.546611pt;}
.y3348_c00001{bottom:321.600000pt;}
.y19ea_c00001{bottom:321.608960pt;}
.y20ef_c00001{bottom:321.626544pt;}
.y2a56_c00001{bottom:321.706739pt;}
.y2e0e_c00001{bottom:321.760000pt;}
.y12ed_c00001{bottom:321.867067pt;}
.y10da_c00001{bottom:321.867072pt;}
.y16f_c00001{bottom:321.867083pt;}
.y1170_c00001{bottom:321.944667pt;}
.y39d7_c00001{bottom:321.947067pt;}
.y2ae6_c00001{bottom:322.027067pt;}
.y30a2_c00001{bottom:322.080000pt;}
.y21d4_c00001{bottom:322.266739pt;}
.y1548_c00001{bottom:322.267067pt;}
.y1662_c00001{bottom:322.267200pt;}
.ydbd_c00001{bottom:322.267440pt;}
.y25b3_c00001{bottom:322.347067pt;}
.y18a5_c00001{bottom:322.347200pt;}
.y10f0_c00001{bottom:322.347867pt;}
.y2f4b_c00001{bottom:322.400000pt;}
.y1792_c00001{bottom:322.427067pt;}
.y2cbd_c00001{bottom:322.586352pt;}
.y1180_c00001{bottom:322.662099pt;}
.y1b1a_c00001{bottom:322.720000pt;}
.y371f_c00001{bottom:322.746667pt;}
.y27be_c00001{bottom:322.747067pt;}
.ya49_c00001{bottom:322.827067pt;}
.y1d41_c00001{bottom:322.885440pt;}
.y11d_c00001{bottom:322.987067pt;}
.y2664_c00001{bottom:323.146603pt;}
.y3935_c00001{bottom:323.147200pt;}
.yf34_c00001{bottom:323.227067pt;}
.yc1f_c00001{bottom:323.307067pt;}
.y2922_c00001{bottom:323.387067pt;}
.y360f_c00001{bottom:323.466811pt;}
.y1704_c00001{bottom:323.467067pt;}
.y1bb0_c00001{bottom:323.520000pt;}
.y305_c00001{bottom:323.547067pt;}
.y1060_c00001{bottom:323.547200pt;}
.y2c59_c00001{bottom:323.706912pt;}
.y383b_c00001{bottom:323.707067pt;}
.yecc_c00001{bottom:323.707427pt;}
.y1389_c00001{bottom:323.787067pt;}
.y26c8_c00001{bottom:323.867067pt;}
.y2d38_c00001{bottom:323.871376pt;}
.y541_c00001{bottom:324.107067pt;}
.y1f4c_c00001{bottom:324.114251pt;}
.y2019_c00001{bottom:324.267067pt;}
.y2498_c00001{bottom:324.347067pt;}
.y35b3_c00001{bottom:324.427952pt;}
.y1f80_c00001{bottom:324.430603pt;}
.y199f_c00001{bottom:324.480000pt;}
.y1609_c00001{bottom:324.507067pt;}
.y1b67_c00001{bottom:324.646240pt;}
.y8a6_c00001{bottom:324.667067pt;}
.y142_c00001{bottom:324.667200pt;}
.y2c0c_c00001{bottom:324.747576pt;}
.y1c67_c00001{bottom:324.800000pt;}
.y937_c00001{bottom:324.907067pt;}
.ye0c_c00001{bottom:324.907747pt;}
.y1e79_c00001{bottom:324.971680pt;}
.y1552_c00001{bottom:325.067067pt;}
.y2e9c_c00001{bottom:325.280000pt;}
.y2594_c00001{bottom:325.305067pt;}
.y1225_c00001{bottom:325.305240pt;}
.y43b_c00001{bottom:325.307067pt;}
.y38f2_c00001{bottom:325.387067pt;}
.y2d59_c00001{bottom:325.440000pt;}
.yfc5_c00001{bottom:325.545675pt;}
.y38d2_c00001{bottom:325.547067pt;}
.yc67_c00001{bottom:325.548155pt;}
.y374a_c00001{bottom:325.630779pt;}
.y2307_c00001{bottom:325.787067pt;}
.y354e_c00001{bottom:325.788680pt;}
.yb18_c00001{bottom:325.867067pt;}
.y143e_c00001{bottom:325.867155pt;}
.y7dc_c00001{bottom:325.947067pt;}
.y11e3_c00001{bottom:326.030811pt;}
.y2e3e_c00001{bottom:326.080000pt;}
.y3900_c00001{bottom:326.187200pt;}
.y9c6_c00001{bottom:326.267907pt;}
.yd24_c00001{bottom:326.347067pt;}
.y29fd_c00001{bottom:326.426800pt;}
.y36ff_c00001{bottom:326.427067pt;}
.y26b3_c00001{bottom:326.507067pt;}
.y2828_c00001{bottom:326.509211pt;}
.y2b59_c00001{bottom:326.509371pt;}
.y1911_c00001{bottom:326.560000pt;}
.y3106_c00001{bottom:326.720000pt;}
.y24bc_c00001{bottom:326.744907pt;}
.y2ad3_c00001{bottom:326.747067pt;}
.y11ef_c00001{bottom:326.756259pt;}
.y1945_c00001{bottom:326.880000pt;}
.ye64_c00001{bottom:326.906667pt;}
.y2880_c00001{bottom:326.906675pt;}
.y3914_c00001{bottom:326.907619pt;}
.y2a93_c00001{bottom:326.987067pt;}
.y1bb2_c00001{bottom:327.040000pt;}
.yc8f_c00001{bottom:327.070416pt;}
.y491_c00001{bottom:327.147067pt;}
.y586_c00001{bottom:327.147200pt;}
.y399c_c00001{bottom:327.226811pt;}
.y245d_c00001{bottom:327.227067pt;}
.y2f17_c00001{bottom:327.520000pt;}
.ye69_c00001{bottom:327.545067pt;}
.y703_c00001{bottom:327.627067pt;}
.y22b6_c00001{bottom:327.627200pt;}
.y3f1_c00001{bottom:327.627243pt;}
.y8e3_c00001{bottom:327.787067pt;}
.y276d_c00001{bottom:327.870779pt;}
.y148e_c00001{bottom:327.947067pt;}
.y1a31_c00001{bottom:328.000000pt;}
.y3964_c00001{bottom:328.027067pt;}
.y16ad_c00001{bottom:328.027200pt;}
.y225a_c00001{bottom:328.107067pt;}
.y302e_c00001{bottom:328.160000pt;}
.y5dd_c00001{bottom:328.267200pt;}
.y1acd_c00001{bottom:328.320000pt;}
.y25b5_c00001{bottom:328.347067pt;}
.y33e1_c00001{bottom:328.347747pt;}
.y272c_c00001{bottom:328.426267pt;}
.y2117_c00001{bottom:328.427067pt;}
.y3004_c00001{bottom:328.480000pt;}
.y3899_c00001{bottom:328.498603pt;}
.y2403_c00001{bottom:328.507067pt;}
.ya02_c00001{bottom:328.507200pt;}
.yd4f_c00001{bottom:328.667200pt;}
.y11ad_c00001{bottom:328.667811pt;}
.y1020_c00001{bottom:328.668059pt;}
.yc4_c00001{bottom:328.747067pt;}
.y3631_c00001{bottom:328.827667pt;}
.y1a7a_c00001{bottom:328.960000pt;}
.y1279_c00001{bottom:329.147067pt;}
.y3417_c00001{bottom:329.226019pt;}
.y2f0_c00001{bottom:329.226267pt;}
.y2369_c00001{bottom:329.227067pt;}
.y2165_c00001{bottom:329.306088pt;}
.y2909_c00001{bottom:329.307067pt;}
.ybfa_c00001{bottom:329.387067pt;}
.ye3c_c00001{bottom:329.467067pt;}
.y193_c00001{bottom:329.547067pt;}
.y1cac_c00001{bottom:329.600000pt;}
.y3952_c00001{bottom:329.625867pt;}
.y371e_c00001{bottom:329.627200pt;}
.y31c3_c00001{bottom:329.760000pt;}
.y2c8a_c00001{bottom:329.785603pt;}
.y2943_c00001{bottom:329.787067pt;}
.y32e_c00001{bottom:329.867067pt;}
.y6a9_c00001{bottom:329.946251pt;}
.y355_c00001{bottom:330.027067pt;}
.y3346_c00001{bottom:330.080000pt;}
.y378c_c00001{bottom:330.107067pt;}
.y3680_c00001{bottom:330.187200pt;}
.y15a0_c00001{bottom:330.187800pt;}
.y280e_c00001{bottom:330.265827pt;}
.y163e_c00001{bottom:330.267067pt;}
.y3851_c00001{bottom:330.426944pt;}
.y2b_c00001{bottom:330.427067pt;}
.y238d_c00001{bottom:330.507067pt;}
.y1b1b_c00001{bottom:330.560000pt;}
.y2642_c00001{bottom:330.587067pt;}
.y2040_c00001{bottom:330.663867pt;}
.yb72_c00001{bottom:330.666491pt;}
.y36cb_c00001{bottom:330.667200pt;}
.y1522_c00001{bottom:330.747667pt;}
.y33a0_c00001{bottom:330.827067pt;}
.y1291_c00001{bottom:330.829051pt;}
.y3206_c00001{bottom:330.865120pt;}
.y3372_c00001{bottom:330.880000pt;}
.y34ff_c00001{bottom:330.907067pt;}
.y3531_c00001{bottom:330.980355pt;}
.yad8_c00001{bottom:330.987067pt;}
.y3310_c00001{bottom:331.040000pt;}
.y1dc5_c00001{bottom:331.048960pt;}
.yaab_c00001{bottom:331.067067pt;}
.y25de_c00001{bottom:331.147200pt;}
.y9b5_c00001{bottom:331.227067pt;}
.y875_c00001{bottom:331.307067pt;}
.y2fdf_c00001{bottom:331.362720pt;}
.y146b_c00001{bottom:331.387067pt;}
.y8d1_c00001{bottom:331.388403pt;}
.y1646_c00001{bottom:331.467067pt;}
.y15af_c00001{bottom:331.467200pt;}
.y1072_c00001{bottom:331.547067pt;}
.y2cea_c00001{bottom:331.626219pt;}
.y125a_c00001{bottom:331.626827pt;}
.y2f85_c00001{bottom:331.680000pt;}
.y3581_c00001{bottom:331.705648pt;}
.y22f0_c00001{bottom:331.706283pt;}
.y23b0_c00001{bottom:331.707067pt;}
.yd72_c00001{bottom:331.708147pt;}
.y3382_c00001{bottom:331.710571pt;}
.y3278_c00001{bottom:331.840000pt;}
.y12a0_c00001{bottom:331.945867pt;}
.y196a_c00001{bottom:331.947067pt;}
.y3196_c00001{bottom:332.000000pt;}
.y1fca_c00001{bottom:332.027067pt;}
.y4e_c00001{bottom:332.107067pt;}
.y36a8_c00001{bottom:332.110387pt;}
.y2d84_c00001{bottom:332.160000pt;}
.yb87_c00001{bottom:332.187067pt;}
.y2968_c00001{bottom:332.187131pt;}
.y1f1_c00001{bottom:332.187200pt;}
.y2e0c_c00001{bottom:332.320000pt;}
.y1e06_c00001{bottom:332.328960pt;}
.y16e2_c00001{bottom:332.347067pt;}
.y1fe6_c00001{bottom:332.427067pt;}
.y1ea4_c00001{bottom:332.480000pt;}
.y9e0_c00001{bottom:332.507067pt;}
.y424_c00001{bottom:332.587067pt;}
.y32e6_c00001{bottom:332.640000pt;}
.y63e_c00001{bottom:332.667200pt;}
.y24ef_c00001{bottom:332.741443pt;}
.y98_c00001{bottom:332.747067pt;}
.y1264_c00001{bottom:332.749467pt;}
.y13d1_c00001{bottom:332.827067pt;}
.y2844_c00001{bottom:332.906800pt;}
.y2a76_c00001{bottom:332.907067pt;}
.y3257_c00001{bottom:332.960000pt;}
.y1885_c00001{bottom:332.987067pt;}
.y1458_c00001{bottom:333.067067pt;}
.y3863_c00001{bottom:333.147200pt;}
.y6c8_c00001{bottom:333.227067pt;}
.y2b02_c00001{bottom:333.306936pt;}
.yb48_c00001{bottom:333.307200pt;}
.y2141_c00001{bottom:333.386739pt;}
.y5fc_c00001{bottom:333.387200pt;}
.y3442_c00001{bottom:333.627200pt;}
.y38bb_c00001{bottom:333.707067pt;}
.y1bb3_c00001{bottom:333.760000pt;}
.y463_c00001{bottom:333.787067pt;}
.yf0c_c00001{bottom:333.787200pt;}
.y2fb6_c00001{bottom:333.920000pt;}
.y19e9_c00001{bottom:333.926240pt;}
.yf1_c00001{bottom:333.947067pt;}
.y73e_c00001{bottom:334.027067pt;}
.y119d_c00001{bottom:334.107067pt;}
.yde3_c00001{bottom:334.111147pt;}
.y2f86_c00001{bottom:334.240000pt;}
.y234f_c00001{bottom:334.266808pt;}
.y964_c00001{bottom:334.267067pt;}
.y2b9b_c00001{bottom:334.347067pt;}
.y1056_c00001{bottom:334.507067pt;}
.y3480_c00001{bottom:334.667200pt;}
.y1ed1_c00001{bottom:334.720000pt;}
.y274c_c00001{bottom:334.747067pt;}
.y2ca2_c00001{bottom:334.825891pt;}
.y136f_c00001{bottom:334.827067pt;}
.y2569_c00001{bottom:334.827376pt;}
.y3a2d_c00001{bottom:334.833099pt;}
.y16bf_c00001{bottom:334.907067pt;}
.y1e3c_c00001{bottom:335.040000pt;}
.y2217_c00001{bottom:335.067067pt;}
.y2ba_c00001{bottom:335.067200pt;}
.y2520_c00001{bottom:335.140987pt;}
.y14d9_c00001{bottom:335.147200pt;}
.y1d40_c00001{bottom:335.202720pt;}
.y35f0_c00001{bottom:335.224811pt;}
.ycc4_c00001{bottom:335.307067pt;}
.y2b58_c00001{bottom:335.309363pt;}
.y31ed_c00001{bottom:335.360000pt;}
.y23d6_c00001{bottom:335.386800pt;}
.yfa1_c00001{bottom:335.467067pt;}
.y307b_c00001{bottom:335.520000pt;}
.y3c8_c00001{bottom:335.547067pt;}
.y72_c00001{bottom:335.547200pt;}
.y359b_c00001{bottom:335.623611pt;}
.y5b1_c00001{bottom:335.627200pt;}
.y2f4a_c00001{bottom:335.680000pt;}
.y360e_c00001{bottom:335.707067pt;}
.y338a_c00001{bottom:335.708235pt;}
.ya26_c00001{bottom:335.787067pt;}
.y12ff_c00001{bottom:335.787200pt;}
.y153b_c00001{bottom:336.027067pt;}
.y3441_c00001{bottom:336.107067pt;}
.y1d71_c00001{bottom:336.160000pt;}
.y65c_c00001{bottom:336.187067pt;}
.y1316_c00001{bottom:336.188603pt;}
.y26e9_c00001{bottom:336.344755pt;}
.y26e5_c00001{bottom:336.346219pt;}
.y1719_c00001{bottom:336.347067pt;}
.y1833_c00001{bottom:336.347200pt;}
.y1c2_c00001{bottom:336.427251pt;}
.y2e0d_c00001{bottom:336.480000pt;}
.y2544_c00001{bottom:336.504267pt;}
.y6c7_c00001{bottom:336.587067pt;}
.y10db_c00001{bottom:336.587120pt;}
.y99e_c00001{bottom:336.667200pt;}
.y253_c00001{bottom:336.747067pt;}
.y278e_c00001{bottom:336.827067pt;}
.y1325_c00001{bottom:336.915387pt;}
.y1b66_c00001{bottom:336.963520pt;}
.y3934_c00001{bottom:336.987067pt;}
.y1fad_c00001{bottom:337.067067pt;}
.y10f1_c00001{bottom:337.068267pt;}
.y1c38_c00001{bottom:337.120000pt;}
.y223d_c00001{bottom:337.147200pt;}
.y517_c00001{bottom:337.227067pt;}
.y16e_c00001{bottom:337.227075pt;}
.y2ec5_c00001{bottom:337.280000pt;}
.y1e78_c00001{bottom:337.288960pt;}
.y1213_c00001{bottom:337.307067pt;}
.yfb3_c00001{bottom:337.307200pt;}
.y2077_c00001{bottom:337.384411pt;}
.y289b_c00001{bottom:337.387067pt;}
.yf5d_c00001{bottom:337.467067pt;}
.y1224_c00001{bottom:337.545496pt;}
.y2a1c_c00001{bottom:337.547067pt;}
.y247a_c00001{bottom:337.627200pt;}
.y2c58_c00001{bottom:337.707024pt;}
.y27bd_c00001{bottom:337.707067pt;}
.y96f_c00001{bottom:337.707200pt;}
.yfc4_c00001{bottom:337.785931pt;}
.y418_c00001{bottom:337.787067pt;}
.y2d11_c00001{bottom:337.788555pt;}
.y802_c00001{bottom:338.027067pt;}
.yd9d_c00001{bottom:338.107067pt;}
.y1ace_c00001{bottom:338.240000pt;}
.y1742_c00001{bottom:338.267067pt;}
.y1627_c00001{bottom:338.347200pt;}
.y3364_c00001{bottom:338.400000pt;}
.y28b6_c00001{bottom:338.427067pt;}
.y2427_c00001{bottom:338.507067pt;}
.y1171_c00001{bottom:338.584547pt;}
.y78c_c00001{bottom:338.587067pt;}
.y35b2_c00001{bottom:338.587664pt;}
.y30df_c00001{bottom:338.720000pt;}
.y616_c00001{bottom:338.747067pt;}
.y17d4_c00001{bottom:338.827067pt;}
.y8f5_c00001{bottom:338.907067pt;}
.y2c0b_c00001{bottom:338.907288pt;}
.y1cea_c00001{bottom:339.040000pt;}
.yecb_c00001{bottom:339.067419pt;}
.y364f_c00001{bottom:339.147200pt;}
.ydbc_c00001{bottom:339.147360pt;}
.y1181_c00001{bottom:339.301979pt;}
.y22d9_c00001{bottom:339.304715pt;}
.y229a_c00001{bottom:339.307067pt;}
.y7b4_c00001{bottom:339.307200pt;}
.ye78_c00001{bottom:339.387067pt;}
.y6e5_c00001{bottom:339.467067pt;}
.y1633_c00001{bottom:339.467200pt;}
.y1f65_c00001{bottom:339.547067pt;}
.y2f16_c00001{bottom:339.680000pt;}
.y232f_c00001{bottom:339.784059pt;}
.y3749_c00001{bottom:339.790491pt;}
.y2e3d_c00001{bottom:339.840000pt;}
.y133a_c00001{bottom:339.867067pt;}
.y354d_c00001{bottom:339.868592pt;}
.ybd8_c00001{bottom:339.947067pt;}
.y10be_c00001{bottom:339.947200pt;}
.y309f_c00001{bottom:340.000000pt;}
.y2ddc_c00001{bottom:340.002560pt;}
.y1779_c00001{bottom:340.027067pt;}
.yc1e_c00001{bottom:340.187200pt;}
.y3005_c00001{bottom:340.320000pt;}
.y21a4_c00001{bottom:340.347067pt;}
.y27d_c00001{bottom:340.347251pt;}
.y364b_c00001{bottom:340.427067pt;}
.y1612_c00001{bottom:340.587067pt;}
.y2ecf_c00001{bottom:340.640000pt;}
.y165a_c00001{bottom:340.667067pt;}
.y2827_c00001{bottom:340.668923pt;}
.y3898_c00001{bottom:340.738859pt;}
.y2663_c00001{bottom:340.747067pt;}
.y307c_c00001{bottom:340.960000pt;}
.y20ee_c00001{bottom:340.986480pt;}
.y21f4_c00001{bottom:340.987067pt;}
.y3913_c00001{bottom:340.987531pt;}
.y2a55_c00001{bottom:341.066675pt;}
.y1acf_c00001{bottom:341.120000pt;}
.y2593_c00001{bottom:341.225467pt;}
.y39d6_c00001{bottom:341.227067pt;}
.y3213_c00001{bottom:341.228952pt;}
.y11c_c00001{bottom:341.387067pt;}
.y702_c00001{bottom:341.466667pt;}
.y1803_c00001{bottom:341.467067pt;}
.y1419_c00001{bottom:341.547067pt;}
.y21d3_c00001{bottom:341.626675pt;}
.yc68_c00001{bottom:341.628251pt;}
.ye0b_c00001{bottom:341.707147pt;}
.y15d6_c00001{bottom:341.707307pt;}
.y2e9d_c00001{bottom:341.760000pt;}
.y22c_c00001{bottom:341.787067pt;}
.y2d37_c00001{bottom:341.790736pt;}
.y12f3_c00001{bottom:341.867067pt;}
.y109b_c00001{bottom:341.867200pt;}
.yc31_c00001{bottom:341.947067pt;}
.y94f_c00001{bottom:341.947200pt;}
.y276c_c00001{bottom:341.950691pt;}
.y2cbc_c00001{bottom:342.026808pt;}
.y1ffb_c00001{bottom:342.028192pt;}
.y32d_c00001{bottom:342.107067pt;}
.y182a_c00001{bottom:342.187067pt;}
.yd8f_c00001{bottom:342.187200pt;}
.y1f05_c00001{bottom:342.240000pt;}
.y29fc_c00001{bottom:342.266800pt;}
.yf33_c00001{bottom:342.267067pt;}
.y1f7f_c00001{bottom:342.349963pt;}
.y3169_c00001{bottom:342.400000pt;}
.y540_c00001{bottom:342.507067pt;}
.y1a79_c00001{bottom:342.560000pt;}
.y33e3_c00001{bottom:342.667131pt;}
.y3850_c00001{bottom:342.667200pt;}
.y1101_c00001{bottom:342.747200pt;}
.y199e_c00001{bottom:342.880000pt;}
.y3f0_c00001{bottom:342.907075pt;}
.y2ef_c00001{bottom:342.986667pt;}
.y37a7_c00001{bottom:342.990595pt;}
.y108c_c00001{bottom:343.147067pt;}
.y2018_c00001{bottom:343.147200pt;}
.y9c5_c00001{bottom:343.147827pt;}
.yc90_c00001{bottom:343.150648pt;}
.y1ceb_c00001{bottom:343.200000pt;}
.y29b4_c00001{bottom:343.227067pt;}
.y27aa_c00001{bottom:343.307067pt;}
.y1dc4_c00001{bottom:343.366240pt;}
.yb17_c00001{bottom:343.387067pt;}
.yc4a_c00001{bottom:343.467067pt;}
.y8bb_c00001{bottom:343.467315pt;}
.y2f87_c00001{bottom:343.520000pt;}
.yd23_c00001{bottom:343.547067pt;}
.y18a4_c00001{bottom:343.547200pt;}
.y20ae_c00001{bottom:343.626400pt;}
.y1791_c00001{bottom:343.627067pt;}
.y2fde_c00001{bottom:343.680000pt;}
.y43a_c00001{bottom:343.707067pt;}
.y1910_c00001{bottom:343.840000pt;}
.y141_c00001{bottom:343.867067pt;}
.y12b0_c00001{bottom:344.027067pt;}
.y29c6_c00001{bottom:344.104011pt;}
.y2b57_c00001{bottom:344.109355pt;}
.y30a0_c00001{bottom:344.160000pt;}
.y25b4_c00001{bottom:344.187200pt;}
.y3142_c00001{bottom:344.320000pt;}
.y205a_c00001{bottom:344.347067pt;}
.y11e4_c00001{bottom:344.351379pt;}
.yd4e_c00001{bottom:344.427067pt;}
.y1703_c00001{bottom:344.587067pt;}
.y3103_c00001{bottom:344.640000pt;}
.y1e05_c00001{bottom:344.646240pt;}
.y38f3_c00001{bottom:344.747200pt;}
.y2ab0_c00001{bottom:344.747264pt;}
.y3460_c00001{bottom:344.827200pt;}
.y1b17_c00001{bottom:344.960000pt;}
.y1695_c00001{bottom:345.067200pt;}
.y11f0_c00001{bottom:345.076827pt;}
.y33e0_c00001{bottom:345.147147pt;}
.y1856_c00001{bottom:345.227067pt;}
.y1944_c00001{bottom:345.280000pt;}
.y383a_c00001{bottom:345.307067pt;}
.y25b2_c00001{bottom:345.387067pt;}
.y38ff_c00001{bottom:345.547067pt;}
.y3630_c00001{bottom:345.627067pt;}
.y1f4b_c00001{bottom:345.634131pt;}
.y2ad1_c00001{bottom:345.707067pt;}
.y2115_c00001{bottom:345.787067pt;}
.y585_c00001{bottom:345.867067pt;}
.y1a2e_c00001{bottom:345.920000pt;}
.y38d1_c00001{bottom:346.027067pt;}
.y24bb_c00001{bottom:346.104843pt;}
.y848_c00001{bottom:346.107067pt;}
.y3205_c00001{bottom:346.230080pt;}
.y19e8_c00001{bottom:346.243520pt;}
.y287e_c00001{bottom:346.266611pt;}
.y36a7_c00001{bottom:346.270099pt;}
.yf40_c00001{bottom:346.347067pt;}
.y330f_c00001{bottom:346.400000pt;}
.y17bf_c00001{bottom:346.427067pt;}
.y88c_c00001{bottom:346.507067pt;}
.y819_c00001{bottom:346.507200pt;}
.y22b5_c00001{bottom:346.587067pt;}
.y26a0_c00001{bottom:346.666411pt;}
.y5dc_c00001{bottom:346.667200pt;}
.y2999_c00001{bottom:346.907200pt;}
.y13aa_c00001{bottom:346.909307pt;}
.y36e7_c00001{bottom:346.980907pt;}
.y159f_c00001{bottom:346.987667pt;}
.y1c66_c00001{bottom:347.040000pt;}
.y31c2_c00001{bottom:347.042720pt;}
.y4e1_c00001{bottom:347.067200pt;}
.y11ac_c00001{bottom:347.067563pt;}
.y101f_c00001{bottom:347.067811pt;}
.y1870_c00001{bottom:347.147067pt;}
.y346c_c00001{bottom:347.226667pt;}
.y25fd_c00001{bottom:347.467067pt;}
.y1d3f_c00001{bottom:347.520000pt;}
.ye3b_c00001{bottom:347.546443pt;}
.y2a92_c00001{bottom:347.547067pt;}
.y1521_c00001{bottom:347.547667pt;}
.y210_c00001{bottom:347.627200pt;}
.y2368_c00001{bottom:347.707067pt;}
.y381f_c00001{bottom:347.787067pt;}
.y367f_c00001{bottom:347.867067pt;}
.yc3_c00001{bottom:347.867200pt;}
.y1cab_c00001{bottom:348.000000pt;}
.yea8_c00001{bottom:348.107067pt;}
.y2861_c00001{bottom:348.107200pt;}
.y13b1_c00001{bottom:348.107467pt;}
.y192_c00001{bottom:348.187200pt;}
.y34d4_c00001{bottom:348.264011pt;}
.ybf9_c00001{bottom:348.267067pt;}
.y3985_c00001{bottom:348.347067pt;}
.y354_c00001{bottom:348.427067pt;}
.y754_c00001{bottom:348.427200pt;}
.y31ef_c00001{bottom:348.480000pt;}
.y38d3_c00001{bottom:348.507067pt;}
.y3416_c00001{bottom:348.585955pt;}
.yaf0_c00001{bottom:348.587067pt;}
.yd71_c00001{bottom:348.588067pt;}
.y1ea3_c00001{bottom:348.640000pt;}
.y2164_c00001{bottom:348.666024pt;}
.y63d_c00001{bottom:348.667200pt;}
.y2568_c00001{bottom:348.907288pt;}
.y2e6a_c00001{bottom:348.960000pt;}
.y1071_c00001{bottom:348.987200pt;}
.y3a2c_c00001{bottom:348.992811pt;}
.y2186_c00001{bottom:349.067200pt;}
.y1b19_c00001{bottom:349.120000pt;}
.y175e_c00001{bottom:349.147067pt;}
.y360d_c00001{bottom:349.227067pt;}
.y3195_c00001{bottom:349.280000pt;}
.y3580_c00001{bottom:349.306112pt;}
.y9df_c00001{bottom:349.387067pt;}
.y12ec_c00001{bottom:349.467067pt;}
.y1f0_c00001{bottom:349.547560pt;}
.y1e77_c00001{bottom:349.606240pt;}
.y73d_c00001{bottom:349.627067pt;}
.y280d_c00001{bottom:349.706283pt;}
.y13d0_c00001{bottom:349.707067pt;}
.y2fb7_c00001{bottom:349.760000pt;}
.y1223_c00001{bottom:349.785752pt;}
.y2c86_c00001{bottom:349.786283pt;}
.y25dc_c00001{bottom:349.787067pt;}
.yad7_c00001{bottom:349.867067pt;}
.y1661_c00001{bottom:349.867200pt;}
.yfc3_c00001{bottom:350.026187pt;}
.y2a94_c00001{bottom:350.027067pt;}
.y1ed0_c00001{bottom:350.080000pt;}
.y2942_c00001{bottom:350.187200pt;}
.y2402_c00001{bottom:350.347067pt;}
.ya48_c00001{bottom:350.427067pt;}
.y1292_c00001{bottom:350.429507pt;}
.y2d83_c00001{bottom:350.560000pt;}
.y6c6_c00001{bottom:350.747200pt;}
.y8d0_c00001{bottom:350.828859pt;}
.y423_c00001{bottom:350.987067pt;}
.y37bd_c00001{bottom:350.987200pt;}
.yde2_c00001{bottom:350.991067pt;}
.y2ce9_c00001{bottom:351.066675pt;}
.y17a6_c00001{bottom:351.067067pt;}
.y22ef_c00001{bottom:351.146739pt;}
.y97_c00001{bottom:351.147067pt;}
.y105f_c00001{bottom:351.147200pt;}
.y3143_c00001{bottom:351.200000pt;}
.y23d5_c00001{bottom:351.226800pt;}
.y10dc_c00001{bottom:351.227008pt;}
.y3256_c00001{bottom:351.360000pt;}
.y14f6_c00001{bottom:351.387067pt;}
.y391_c00001{bottom:351.467067pt;}
.y2daf_c00001{bottom:351.520000pt;}
.y12a1_c00001{bottom:351.545467pt;}
.y2967_c00001{bottom:351.547067pt;}
.y238c_c00001{bottom:351.627067pt;}
.y1bac_c00001{bottom:351.680000pt;}
.y23af_c00001{bottom:351.707067pt;}
.y10f2_c00001{bottom:351.708267pt;}
.y1c1_c00001{bottom:351.787243pt;}
.yb73_c00001{bottom:351.946299pt;}
.y8e2_c00001{bottom:351.947067pt;}
.y1bf4_c00001{bottom:352.000000pt;}
.y1457_c00001{bottom:352.027067pt;}
.y1608_c00001{bottom:352.107067pt;}
.y2c57_c00001{bottom:352.107200pt;}
.y24ee_c00001{bottom:352.181899pt;}
.y462_c00001{bottom:352.187067pt;}
.ycc3_c00001{bottom:352.187200pt;}
.y2ddb_c00001{bottom:352.319840pt;}
.y3371_c00001{bottom:352.331200pt;}
.y2543_c00001{bottom:352.344267pt;}
.y39c1_c00001{bottom:352.347067pt;}
.y2479_c00001{bottom:352.427067pt;}
.y5b0_c00001{bottom:352.507067pt;}
.y16d_c00001{bottom:352.587067pt;}
.y223c_c00001{bottom:352.664387pt;}
.y2b01_c00001{bottom:352.666872pt;}
.y35b1_c00001{bottom:352.667576pt;}
.y2140_c00001{bottom:352.746675pt;}
.y1b18_c00001{bottom:352.800000pt;}
.y97f_c00001{bottom:352.907200pt;}
.y55f_c00001{bottom:352.907384pt;}
.y3897_c00001{bottom:352.979115pt;}
.y2c0a_c00001{bottom:352.987200pt;}
.y2b56_c00001{bottom:352.989691pt;}
.y1a2f_c00001{bottom:353.120000pt;}
.y380e_c00001{bottom:353.147200pt;}
.y516_c00001{bottom:353.227067pt;}
.y2ec4_c00001{bottom:353.280000pt;}
.y2bbe_c00001{bottom:353.306744pt;}
.y339f_c00001{bottom:353.307067pt;}
.y7db_c00001{bottom:353.387067pt;}
.y1e3b_c00001{bottom:353.440000pt;}
.y2b9_c00001{bottom:353.467200pt;}
.yb88_c00001{bottom:353.546867pt;}
.y1055_c00001{bottom:353.547067pt;}
.y2f15_c00001{bottom:353.600000pt;}
.y234d_c00001{bottom:353.626744pt;}
.y3440_c00001{bottom:353.707067pt;}
.y2a37_c00001{bottom:353.787067pt;}
.y143d_c00001{bottom:353.867067pt;}
.y3748_c00001{bottom:353.870403pt;}
.y2fdc_c00001{bottom:353.920000pt;}
.y1122_c00001{bottom:353.947067pt;}
.y354c_c00001{bottom:353.948504pt;}
.y1ad0_c00001{bottom:354.080000pt;}
.y1884_c00001{bottom:354.107067pt;}
.y267d_c00001{bottom:354.107200pt;}
.y2ca1_c00001{bottom:354.266347pt;}
.y67e_c00001{bottom:354.267067pt;}
.yeca_c00001{bottom:354.347251pt;}
.y2e0a_c00001{bottom:354.400000pt;}
.y1fe5_c00001{bottom:354.427067pt;}
.y3c7_c00001{bottom:354.507067pt;}
.y251f_c00001{bottom:354.581443pt;}
.y65b_c00001{bottom:354.587067pt;}
.y490_c00001{bottom:354.747067pt;}
.y9b4_c00001{bottom:354.747200pt;}
.y2826_c00001{bottom:354.748835pt;}
.y342b_c00001{bottom:354.827067pt;}
.y274b_c00001{bottom:354.827200pt;}
.y125b_c00001{bottom:354.986787pt;}
.y1c37_c00001{bottom:355.040000pt;}
.y34aa_c00001{bottom:355.067200pt;}
.y3912_c00001{bottom:355.067443pt;}
.y1172_c00001{bottom:355.144267pt;}
.y1317_c00001{bottom:355.149115pt;}
.y332a_c00001{bottom:355.200000pt;}
.y6a8_c00001{bottom:355.226603pt;}
.y701_c00001{bottom:355.227067pt;}
.y1bae_c00001{bottom:355.360000pt;}
.y1212_c00001{bottom:355.387360pt;}
.y252_c00001{bottom:355.467067pt;}
.y31ee_c00001{bottom:355.520000pt;}
.y1dc3_c00001{bottom:355.522720pt;}
.y32c_c00001{bottom:355.627067pt;}
.y27c_c00001{bottom:355.627083pt;}
.y16ac_c00001{bottom:355.627200pt;}
.y26e8_c00001{bottom:355.785211pt;}
.y26e4_c00001{bottom:355.786675pt;}
.y99d_c00001{bottom:355.787067pt;}
.y1182_c00001{bottom:355.866787pt;}
.y1f22_c00001{bottom:355.867067pt;}
.y1326_c00001{bottom:355.875899pt;}
.y3963_c00001{bottom:356.027067pt;}
.ydbb_c00001{bottom:356.027280pt;}
.yf29_c00001{bottom:356.027315pt;}
.ya01_c00001{bottom:356.107200pt;}
.y39fe_c00001{bottom:356.107619pt;}
.y1265_c00001{bottom:356.109867pt;}
.y276b_c00001{bottom:356.110403pt;}
.y2beb_c00001{bottom:356.266139pt;}
.yfa9_c00001{bottom:356.267067pt;}
.y37d3_c00001{bottom:356.347067pt;}
.y3104_c00001{bottom:356.480000pt;}
.y1570_c00001{bottom:356.507067pt;}
.y1278_c00001{bottom:356.667067pt;}
.y3363_c00001{bottom:356.800000pt;}
.y2ee_c00001{bottom:356.826267pt;}
.y34ea_c00001{bottom:356.827200pt;}
.y11b_c00001{bottom:356.907368pt;}
.y1e04_c00001{bottom:356.963520pt;}
.y2592_c00001{bottom:357.065467pt;}
.yc1d_c00001{bottom:357.067200pt;}
.y32bb_c00001{bottom:357.120000pt;}
.y615_c00001{bottom:357.147067pt;}
.y1fac_c00001{bottom:357.147200pt;}
.y289a_c00001{bottom:357.387067pt;}
.y14d8_c00001{bottom:357.467067pt;}
.y1832_c00001{bottom:357.467200pt;}
.y27dc_c00001{bottom:357.545235pt;}
.y3933_c00001{bottom:357.547067pt;}
.y1f04_c00001{bottom:357.600000pt;}
.y2a1b_c00001{bottom:357.627067pt;}
.yc69_c00001{bottom:357.628187pt;}
.y7b3_c00001{bottom:357.707200pt;}
.y777_c00001{bottom:357.867067pt;}
.y1d3a_c00001{bottom:357.920000pt;}
.y1f64_c00001{bottom:357.947067pt;}
.y2a_c00001{bottom:358.027067pt;}
.y2fdd_c00001{bottom:358.080000pt;}
.y2299_c00001{bottom:358.107131pt;}
.y2c30_c00001{bottom:358.107200pt;}
.y29fb_c00001{bottom:358.187200pt;}
.y3001_c00001{bottom:358.240000pt;}
.y3ef_c00001{bottom:358.267067pt;}
.y19e7_c00001{bottom:358.400000pt;}
.ye77_c00001{bottom:358.507067pt;}
.y2e0b_c00001{bottom:358.560000pt;}
.ye0a_c00001{bottom:358.587067pt;}
.y15d5_c00001{bottom:358.587227pt;}
.y22d8_c00001{bottom:358.745171pt;}
.y25b1_c00001{bottom:358.747200pt;}
.y2e3c_c00001{bottom:358.880000pt;}
.yffb_c00001{bottom:358.907067pt;}
.y146a_c00001{bottom:358.987067pt;}
.y1551_c00001{bottom:359.067067pt;}
.y15ae_c00001{bottom:359.067200pt;}
.y364a_c00001{bottom:359.147200pt;}
.y232e_c00001{bottom:359.224515pt;}
.yc91_c00001{bottom:359.230880pt;}
.y1741_c00001{bottom:359.307067pt;}
.y31c1_c00001{bottom:359.360000pt;}
.ybd7_c00001{bottom:359.547067pt;}
.y28f0_c00001{bottom:359.627067pt;}
.y1b63_c00001{bottom:359.680000pt;}
.y4d_c00001{bottom:359.707067pt;}
.y2d36_c00001{bottom:359.710096pt;}
.y1bf2_c00001{bottom:359.840000pt;}
.ye3a_c00001{bottom:359.866499pt;}
.y17d3_c00001{bottom:359.947067pt;}
.y11a_c00001{bottom:359.947328pt;}
.y22b4_c00001{bottom:360.027067pt;}
.y9c4_c00001{bottom:360.027747pt;}
.y39d5_c00001{bottom:360.107200pt;}
.y857_c00001{bottom:360.187067pt;}
.yb16_c00001{bottom:360.267067pt;}
.y1f7e_c00001{bottom:360.269323pt;}
.yabe_c00001{bottom:360.347067pt;}
.y36a6_c00001{bottom:360.350011pt;}
.y227f_c00001{bottom:360.426739pt;}
.y20ed_c00001{bottom:360.426936pt;}
.yd22_c00001{bottom:360.427067pt;}
.y801_c00001{bottom:360.507067pt;}
.y2a54_c00001{bottom:360.507131pt;}
.y21a3_c00001{bottom:360.747200pt;}
.y3002_c00001{bottom:360.800000pt;}
.y2662_c00001{bottom:360.827200pt;}
.y53f_c00001{bottom:360.907067pt;}
.yb47_c00001{bottom:360.907200pt;}
.y30dd_c00001{bottom:360.960000pt;}
.y5fb_c00001{bottom:360.987200pt;}
.y21d2_c00001{bottom:361.067131pt;}
.y439_c00001{bottom:361.067200pt;}
.y333f_c00001{bottom:361.120000pt;}
.y272b_c00001{bottom:361.146667pt;}
.y1778_c00001{bottom:361.147067pt;}
.y199d_c00001{bottom:361.280000pt;}
.y2114_c00001{bottom:361.306219pt;}
.y2cc9_c00001{bottom:361.386067pt;}
.y2cbb_c00001{bottom:361.386744pt;}
.ya5f_c00001{bottom:361.387067pt;}
.yf0b_c00001{bottom:361.387200pt;}
.y2f83_c00001{bottom:361.440000pt;}
.yf0_c00001{bottom:361.547067pt;}
.y2497_c00001{bottom:361.547443pt;}
.y3204_c00001{bottom:361.595040pt;}
.yd4d_c00001{bottom:361.627067pt;}
.y119c_c00001{bottom:361.707067pt;}
.y1a78_c00001{bottom:361.760000pt;}
.y1e76_c00001{bottom:361.762720pt;}
.y2b55_c00001{bottom:361.789683pt;}
.y417_c00001{bottom:361.867067pt;}
.y3530_c00001{bottom:361.940819pt;}
.y33e2_c00001{bottom:362.027067pt;}
.y1baf_c00001{bottom:362.080000pt;}
.y1222_c00001{bottom:362.105808pt;}
.y2641_c00001{bottom:362.185563pt;}
.y2ece_c00001{bottom:362.240000pt;}
.yfc2_c00001{bottom:362.346243pt;}
.y3951_c00001{bottom:362.346267pt;}
.y136e_c00001{bottom:362.427067pt;}
.y16be_c00001{bottom:362.507067pt;}
.y2998_c00001{bottom:362.507131pt;}
.y2fb8_c00001{bottom:362.560000pt;}
.y1802_c00001{bottom:362.587067pt;}
.y11e5_c00001{bottom:362.591787pt;}
.y140_c00001{bottom:362.747200pt;}
.y371d_c00001{bottom:362.826667pt;}
.y37e2_c00001{bottom:362.907200pt;}
.y2567_c00001{bottom:362.987200pt;}
.yfa0_c00001{bottom:363.067067pt;}
.y119_c00001{bottom:363.067280pt;}
.y3a2b_c00001{bottom:363.072723pt;}
.ye56_c00001{bottom:363.147067pt;}
.y71_c00001{bottom:363.147200pt;}
.y362f_c00001{bottom:363.227067pt;}
.y1829_c00001{bottom:363.307067pt;}
.y11f1_c00001{bottom:363.307608pt;}
.y32e5_c00001{bottom:363.360000pt;}
.y203f_c00001{bottom:363.384267pt;}
.ya25_c00001{bottom:363.387067pt;}
.y12fe_c00001{bottom:363.387200pt;}
.y2921_c00001{bottom:363.467067pt;}
.y2b85_c00001{bottom:363.547067pt;}
.y153a_c00001{bottom:363.627067pt;}
.y1943_c00001{bottom:363.680000pt;}
.y159e_c00001{bottom:363.787067pt;}
.y1b65_c00001{bottom:363.840000pt;}
.y584_c00001{bottom:363.867067pt;}
.y6c5_c00001{bottom:363.947067pt;}
.y3839_c00001{bottom:364.027243pt;}
.y13cf_c00001{bottom:364.107200pt;}
.y1520_c00001{bottom:364.347067pt;}
.y3344_c00001{bottom:364.480000pt;}
.y2017_c00001{bottom:364.586872pt;}
.y1846_c00001{bottom:364.587067pt;}
.y63c_c00001{bottom:364.667200pt;}
.y1790_c00001{bottom:364.747067pt;}
.y302d_c00001{bottom:364.800000pt;}
.y38f1_c00001{bottom:364.827200pt;}
.y1ef_c00001{bottom:364.827392pt;}
.yd8e_c00001{bottom:364.907067pt;}
.yfb2_c00001{bottom:364.907200pt;}
.y1c64_c00001{bottom:364.960000pt;}
.y26ff_c00001{bottom:364.987200pt;}
.yf5c_c00001{bottom:365.067067pt;}
.y5db_c00001{bottom:365.067200pt;}
.y360c_c00001{bottom:365.227067pt;}
.y1ecf_c00001{bottom:365.280000pt;}
.y3896_c00001{bottom:365.299171pt;}
.y25db_c00001{bottom:365.304715pt;}
.y96e_c00001{bottom:365.307200pt;}
.y2d1f_c00001{bottom:365.387067pt;}
.y1ce9_c00001{bottom:365.440000pt;}
.y4e0_c00001{bottom:365.467067pt;}
.y11ab_c00001{bottom:365.467315pt;}
.y101e_c00001{bottom:365.467563pt;}
.yd70_c00001{bottom:365.467987pt;}
.y24ba_c00001{bottom:365.545299pt;}
.y186f_c00001{bottom:365.547067pt;}
.yec5_c00001{bottom:365.547747pt;}
.y3276_c00001{bottom:365.600000pt;}
.y23ae_c00001{bottom:365.627067pt;}
.y3381_c00001{bottom:365.629987pt;}
.y287f_c00001{bottom:365.707067pt;}
.y1702_c00001{bottom:365.787067pt;}
.y10dd_c00001{bottom:365.947056pt;}
.y2306_c00001{bottom:365.947067pt;}
.y1626_c00001{bottom:365.947200pt;}
.y245c_c00001{bottom:366.027067pt;}
.y2908_c00001{bottom:366.107067pt;}
.y118_c00001{bottom:366.107240pt;}
.y73c_c00001{bottom:366.187200pt;}
.y309e_c00001{bottom:366.240000pt;}
.y208f_c00001{bottom:366.267067pt;}
.yc2_c00001{bottom:366.267200pt;}
.y97e_c00001{bottom:366.347067pt;}
.y1caa_c00001{bottom:366.400000pt;}
.y1855_c00001{bottom:366.427067pt;}
.y10f3_c00001{bottom:366.428667pt;}
.y8f4_c00001{bottom:366.507067pt;}
.y23fc_c00001{bottom:366.587067pt;}
.y2461_c00001{bottom:366.667200pt;}
.y305c_c00001{bottom:366.720000pt;}
.y1070_c00001{bottom:366.747200pt;}
.y35b0_c00001{bottom:366.747488pt;}
.y353_c00001{bottom:366.827067pt;}
.y357f_c00001{bottom:366.986736pt;}
.y8a5_c00001{bottom:366.987067pt;}
.y287d_c00001{bottom:366.987200pt;}
.y1b14_c00001{bottom:367.040000pt;}
.y23d4_c00001{bottom:367.066800pt;}
.y6e4_c00001{bottom:367.067067pt;}
.y1632_c00001{bottom:367.067200pt;}
.y1f4a_c00001{bottom:367.073859pt;}
.y1c0_c00001{bottom:367.147235pt;}
.y1bf3_c00001{bottom:367.200000pt;}
.y191_c00001{bottom:367.227067pt;}
.y2dda_c00001{bottom:367.360000pt;}
.y29d9_c00001{bottom:367.387067pt;}
.y2259_c00001{bottom:367.467067pt;}
.y1b64_c00001{bottom:367.520000pt;}
.y10bd_c00001{bottom:367.547200pt;}
.y17be_c00001{bottom:367.627067pt;}
.y88b_c00001{bottom:367.787067pt;}
.y1dc2_c00001{bottom:367.840000pt;}
.yde1_c00001{bottom:367.870987pt;}
.y35ef_c00001{bottom:367.945211pt;}
.y3747_c00001{bottom:367.950315pt;}
.y3415_c00001{bottom:368.026411pt;}
.y2163_c00001{bottom:368.106480pt;}
.y354b_c00001{bottom:368.108216pt;}
.y2542_c00001{bottom:368.184267pt;}
.y1611_c00001{bottom:368.187067pt;}
.y55e_c00001{bottom:368.187216pt;}
.y1659_c00001{bottom:368.267067pt;}
.y359a_c00001{bottom:368.344011pt;}
.y16c_c00001{bottom:368.507200pt;}
.y19df_c00001{bottom:368.640000pt;}
.y2ad2_c00001{bottom:368.667200pt;}
.y2478_c00001{bottom:368.747200pt;}
.y2e69_c00001{bottom:368.800000pt;}
.y2825_c00001{bottom:368.828747pt;}
.ycf5_c00001{bottom:368.905808pt;}
.y2d82_c00001{bottom:368.960000pt;}
.y390_c00001{bottom:368.987200pt;}
.y280c_c00001{bottom:369.066219pt;}
.y5af_c00001{bottom:369.067200pt;}
.y1c65_c00001{bottom:369.120000pt;}
.y1418_c00001{bottom:369.147067pt;}
.y117_c00001{bottom:369.147200pt;}
.y2c85_c00001{bottom:369.226739pt;}
.y3911_c00001{bottom:369.227155pt;}
.y1d3b_c00001{bottom:369.280000pt;}
.y22b_c00001{bottom:369.387067pt;}
.y2f3b_c00001{bottom:369.440000pt;}
.y12f2_c00001{bottom:369.467067pt;}
.y109a_c00001{bottom:369.467200pt;}
.y96_c00001{bottom:369.547067pt;}
.y94e_c00001{bottom:369.547200pt;}
.y3389_c00001{bottom:369.627651pt;}
.y1207_c00001{bottom:369.707067pt;}
.yec9_c00001{bottom:369.707243pt;}
.y31be_c00001{bottom:369.760000pt;}
.y515_c00001{bottom:369.787067pt;}
.y1388_c00001{bottom:369.787563pt;}
.y3124_c00001{bottom:369.920000pt;}
.y1694_c00001{bottom:369.947315pt;}
.y1293_c00001{bottom:370.029963pt;}
.y3003_c00001{bottom:370.080000pt;}
.y2076_c00001{bottom:370.104811pt;}
.y156f_c00001{bottom:370.107200pt;}
.y39fd_c00001{bottom:370.187531pt;}
.y276a_c00001{bottom:370.190315pt;}
.y67d_c00001{bottom:370.267067pt;}
.y1100_c00001{bottom:370.347200pt;}
.y2ce8_c00001{bottom:370.426611pt;}
.y2a36_c00001{bottom:370.427067pt;}
.y37a6_c00001{bottom:370.430091pt;}
.y22ee_c00001{bottom:370.506675pt;}
.y25fc_c00001{bottom:370.507067pt;}
.y1d6e_c00001{bottom:370.560000pt;}
.y1ea2_c00001{bottom:370.568000pt;}
.y2ed_c00001{bottom:370.586667pt;}
.y461_c00001{bottom:370.587067pt;}
.y347f_c00001{bottom:370.587200pt;}
.y2b54_c00001{bottom:370.589675pt;}
.y1d3c_c00001{bottom:370.720000pt;}
.y108b_c00001{bottom:370.747067pt;}
.y36ca_c00001{bottom:370.827200pt;}
.y1d3d_c00001{bottom:370.880000pt;}
.y27b_c00001{bottom:370.987075pt;}
.y2216_c00001{bottom:370.987200pt;}
.y1a2c_c00001{bottom:371.040000pt;}
.yc49_c00001{bottom:371.067067pt;}
.y8e1_c00001{bottom:371.067200pt;}
.y25b0_c00001{bottom:371.147200pt;}
.y1b16_c00001{bottom:371.200000pt;}
.y12a2_c00001{bottom:371.225467pt;}
.y33b7_c00001{bottom:371.227067pt;}
.y8cf_c00001{bottom:371.228235pt;}
.y13ce_c00001{bottom:371.307067pt;}
.y39c0_c00001{bottom:371.387067pt;}
.y71c_c00001{bottom:371.467067pt;}
.y24ed_c00001{bottom:371.541835pt;}
.y2ec3_c00001{bottom:371.680000pt;}
.y261f_c00001{bottom:371.707067pt;}
.y1173_c00001{bottom:371.784147pt;}
.y1e3a_c00001{bottom:371.840000pt;}
.y2b8_c00001{bottom:371.867200pt;}
.y2059_c00001{bottom:371.947067pt;}
.y1ac6_c00001{bottom:372.000000pt;}
.y223b_c00001{bottom:372.024323pt;}
.y2b00_c00001{bottom:372.026808pt;}
.ye39_c00001{bottom:372.106755pt;}
.y3193_c00001{bottom:372.160000pt;}
.y18e3_c00001{bottom:372.187067pt;}
.y213f_c00001{bottom:372.187131pt;}
.y1211_c00001{bottom:372.267280pt;}
.y1183_c00001{bottom:372.506667pt;}
.y1054_c00001{bottom:372.667200pt;}
.y2bbf_c00001{bottom:372.747200pt;}
.y238b_c00001{bottom:372.827067pt;}
.y2591_c00001{bottom:372.905467pt;}
.ydba_c00001{bottom:372.907200pt;}
.y1f03_c00001{bottom:372.960000pt;}
.y65a_c00001{bottom:372.987067pt;}
.y234e_c00001{bottom:373.067200pt;}
.y32b_c00001{bottom:373.147200pt;}
.y3c6_c00001{bottom:373.147259pt;}
.yd9c_c00001{bottom:373.227067pt;}
.y2f84_c00001{bottom:373.280000pt;}
.yb74_c00001{bottom:373.306267pt;}
.y251_c00001{bottom:373.387067pt;}
.y2f14_c00001{bottom:373.440000pt;}
.y1fc9_c00001{bottom:373.467067pt;}
.y2ca0_c00001{bottom:373.626283pt;}
.y847_c00001{bottom:373.707067pt;}
.yc6a_c00001{bottom:373.708283pt;}
.y13ab_c00001{bottom:373.789627pt;}
.y2bea_c00001{bottom:373.866603pt;}
.y776_c00001{bottom:373.867067pt;}
.y251e_c00001{bottom:373.941379pt;}
.yc1c_c00001{bottom:373.947067pt;}
.y2bbd_c00001{bottom:374.027067pt;}
.y1d6f_c00001{bottom:374.080000pt;}
.y1121_c00001{bottom:374.107067pt;}
.y818_c00001{bottom:374.107200pt;}
.y1318_c00001{bottom:374.109627pt;}
.y3ee_c00001{bottom:374.187067pt;}
.y267c_c00001{bottom:374.187200pt;}
.y1f21_c00001{bottom:374.267067pt;}
.y1221_c00001{bottom:374.346064pt;}
.y234c_c00001{bottom:374.347067pt;}
.y438_c00001{bottom:374.347200pt;}
.y3100_c00001{bottom:374.400000pt;}
.y36e6_c00001{bottom:374.421467pt;}
.yf28_c00001{bottom:374.427067pt;}
.y36a5_c00001{bottom:374.429923pt;}
.y9de_c00001{bottom:374.507067pt;}
.yfc1_c00001{bottom:374.586499pt;}
.y2c2e_c00001{bottom:374.587200pt;}
.y16e1_c00001{bottom:374.667067pt;}
.y105e_c00001{bottom:374.667200pt;}
.yb89_c00001{bottom:374.826867pt;}
.y18c4_c00001{bottom:374.827067pt;}
.y15d7_c00001{bottom:374.827200pt;}
.y1327_c00001{bottom:374.836411pt;}
.y1b15_c00001{bottom:374.880000pt;}
.y274a_c00001{bottom:374.907200pt;}
.y1969_c00001{bottom:374.986755pt;}
.y13b2_c00001{bottom:374.987467pt;}
.y278d_c00001{bottom:375.067200pt;}
.y26e7_c00001{bottom:375.145147pt;}
.y26e3_c00001{bottom:375.146611pt;}
.y21f2_c00001{bottom:375.146739pt;}
.y3403_c00001{bottom:375.147200pt;}
.y3212_c00001{bottom:375.148368pt;}
.y3362_c00001{bottom:375.200000pt;}
.yc92_c00001{bottom:375.227499pt;}
.y1883_c00001{bottom:375.307067pt;}
.y67c_c00001{bottom:375.387067pt;}
.y20f_c00001{bottom:375.387200pt;}
.y15d4_c00001{bottom:375.467147pt;}
.y1ac9_c00001{bottom:375.520000pt;}
.y614_c00001{bottom:375.547067pt;}
.ye09_c00001{bottom:375.627067pt;}
.yea7_c00001{bottom:375.707067pt;}
.y2496_c00001{bottom:375.707155pt;}
.y116_c00001{bottom:375.787067pt;}
.y2d10_c00001{bottom:375.788059pt;}
.y1d70_c00001{bottom:375.840000pt;}
.y3984_c00001{bottom:375.947067pt;}
.yd4c_c00001{bottom:376.027067pt;}
.y753_c00001{bottom:376.027200pt;}
.y7b2_c00001{bottom:376.107200pt;}
.y2e9b_c00001{bottom:376.160000pt;}
.yaef_c00001{bottom:376.187067pt;}
.y28ce_c00001{bottom:376.267067pt;}
.y20ad_c00001{bottom:376.346800pt;}
.y1f63_c00001{bottom:376.347067pt;}
.y37d2_c00001{bottom:376.427067pt;}
.y2e09_c00001{bottom:376.480000pt;}
.y2a1a_c00001{bottom:376.507067pt;}
.y339e_c00001{bottom:376.587448pt;}
.y2185_c00001{bottom:376.667200pt;}
.y3167_c00001{bottom:376.800000pt;}
.y29c5_c00001{bottom:376.824411pt;}
.y17e2_c00001{bottom:376.827067pt;}
.y7da_c00001{bottom:376.827200pt;}
.y27db_c00001{bottom:376.905171pt;}
.y34e8_c00001{bottom:376.907200pt;}
.y9c3_c00001{bottom:376.907667pt;}
.y3101_c00001{bottom:376.960000pt;}
.ye76_c00001{bottom:376.987200pt;}
.yaaa_c00001{bottom:377.067067pt;}
.y3a2a_c00001{bottom:377.152635pt;}
.y2426_c00001{bottom:377.227067pt;}
.y9b3_c00001{bottom:377.227200pt;}
.y30de_c00001{bottom:377.280000pt;}
.y34fe_c00001{bottom:377.387067pt;}
.y1547_c00001{bottom:377.467067pt;}
.y1660_c00001{bottom:377.467200pt;}
.y3895_c00001{bottom:377.539427pt;}
.yd21_c00001{bottom:377.627067pt;}
.y2d35_c00001{bottom:377.629456pt;}
.ye6b_c00001{bottom:377.707067pt;}
.yb15_c00001{bottom:377.787067pt;}
.y29_c00001{bottom:377.947067pt;}
.ya47_c00001{bottom:378.027067pt;}
.y22d7_c00001{bottom:378.105107pt;}
.y14af_c00001{bottom:378.107067pt;}
.y34be_c00001{bottom:378.187200pt;}
.y1f7d_c00001{bottom:378.188683pt;}
.y1dc1_c00001{bottom:378.240000pt;}
.y28b5_c00001{bottom:378.267067pt;}
.y125c_c00001{bottom:378.346747pt;}
.y1a2d_c00001{bottom:378.400000pt;}
.y32e4_c00001{bottom:378.560000pt;}
.y232d_c00001{bottom:378.584451pt;}
.y20c4_c00001{bottom:378.587200pt;}
.y1718_c00001{bottom:378.667067pt;}
.y1831_c00001{bottom:378.667200pt;}
.y304_c00001{bottom:378.747067pt;}
.y2298_c00001{bottom:378.747200pt;}
.y14f5_c00001{bottom:378.987067pt;}
.y3194_c00001{bottom:379.040000pt;}
.y23ad_c00001{bottom:379.227067pt;}
.y53e_c00001{bottom:379.307067pt;}
.y3838_c00001{bottom:379.307075pt;}
.y2b53_c00001{bottom:379.389667pt;}
.y269f_c00001{bottom:379.465867pt;}
.y1266_c00001{bottom:379.467600pt;}
.y2566_c00001{bottom:379.547067pt;}
.ya00_c00001{bottom:379.627067pt;}
.y199c_c00001{bottom:379.680000pt;}
.y1607_c00001{bottom:379.707067pt;}
.y362e_c00001{bottom:379.786376pt;}
.y227e_c00001{bottom:379.786675pt;}
.y20ec_c00001{bottom:379.786872pt;}
.y384f_c00001{bottom:379.787067pt;}
.y6c4_c00001{bottom:379.867067pt;}
.y346b_c00001{bottom:379.947067pt;}
.y14d7_c00001{bottom:379.947200pt;}
.y1ba6_c00001{bottom:380.000000pt;}
.y936_c00001{bottom:380.027067pt;}
.y1ffa_c00001{bottom:380.027696pt;}
.y39d4_c00001{bottom:380.107531pt;}
.y96d_c00001{bottom:380.187067pt;}
.y3962_c00001{bottom:380.187200pt;}
.y1ee_c00001{bottom:380.187384pt;}
.y1dc0_c00001{bottom:380.320000pt;}
.yf32_c00001{bottom:380.427067pt;}
.y2fb4_c00001{bottom:380.480000pt;}
.y6a7_c00001{bottom:380.506955pt;}
.y1740_c00001{bottom:380.507067pt;}
.y1ece_c00001{bottom:380.640000pt;}
.y10de_c00001{bottom:380.667104pt;}
.y63b_c00001{bottom:380.667200pt;}
.y2113_c00001{bottom:380.746675pt;}
.y2cc8_c00001{bottom:380.826523pt;}
.y26fe_c00001{bottom:380.827200pt;}
.y11e6_c00001{bottom:380.832195pt;}
.y2661_c00001{bottom:380.907200pt;}
.y34d3_c00001{bottom:380.984411pt;}
.y2ecd_c00001{bottom:381.120000pt;}
.ycf4_c00001{bottom:381.146064pt;}
.y17d2_c00001{bottom:381.147067pt;}
.y2a53_c00001{bottom:381.147200pt;}
.y10f4_c00001{bottom:381.149067pt;}
.y360b_c00001{bottom:381.227067pt;}
.y2e3b_c00001{bottom:381.286240pt;}
.y159d_c00001{bottom:381.387147pt;}
.y3125_c00001{bottom:381.440000pt;}
.y2640_c00001{bottom:381.545499pt;}
.y11f2_c00001{bottom:381.628176pt;}
.y21d1_c00001{bottom:381.707067pt;}
.y1b60_c00001{bottom:381.760000pt;}
.y2b84_c00001{bottom:381.787067pt;}
.y2997_c00001{bottom:381.867067pt;}
.y151f_c00001{bottom:381.947280pt;}
.y13f_c00001{bottom:382.027067pt;}
.y1942_c00001{bottom:382.080000pt;}
.y23fb_c00001{bottom:382.107200pt;}
.y33df_c00001{bottom:382.107355pt;}
.y3746_c00001{bottom:382.110027pt;}
.y365a_c00001{bottom:382.187200pt;}
.y354a_c00001{bottom:382.188128pt;}
.y1acb_c00001{bottom:382.240000pt;}
.y583_c00001{bottom:382.267067pt;}
.yd6f_c00001{bottom:382.267387pt;}
.y48f_c00001{bottom:382.347067pt;}
.y1bf_c00001{bottom:382.427067pt;}
.yec4_c00001{bottom:382.427667pt;}
.y21a2_c00001{bottom:382.507067pt;}
.y15ad_c00001{bottom:382.587200pt;}
.y378b_c00001{bottom:382.747200pt;}
.y371c_c00001{bottom:382.906667pt;}
.y16ab_c00001{bottom:382.987200pt;}
.y2824_c00001{bottom:382.988459pt;}
.y18a3_c00001{bottom:383.147067pt;}
.y2c09_c00001{bottom:383.307067pt;}
.y1ce7_c00001{bottom:383.360000pt;}
.y97d_c00001{bottom:383.546499pt;}
.y2920_c00001{bottom:383.547067pt;}
.y55d_c00001{bottom:383.547208pt;}
.y35d9_c00001{bottom:383.627067pt;}
.y5da_c00001{bottom:383.787067pt;}
.y4df_c00001{bottom:383.867067pt;}
.y101d_c00001{bottom:383.867315pt;}
.y186e_c00001{bottom:383.947067pt;}
.y26c7_c00001{bottom:384.027067pt;}
.y2016_c00001{bottom:384.027328pt;}
.y2541_c00001{bottom:384.104667pt;}
.y309d_c00001{bottom:384.160000pt;}
.y1a77_c00001{bottom:384.165440pt;}
.y38ef_c00001{bottom:384.187200pt;}
.yba2_c00001{bottom:384.267067pt;}
.y39fc_c00001{bottom:384.267443pt;}
.y2769_c00001{bottom:384.270227pt;}
.ye38_c00001{bottom:384.347011pt;}
.y1277_c00001{bottom:384.347067pt;}
.y2ec_c00001{bottom:384.426267pt;}
.y1828_c00001{bottom:384.507067pt;}
.y416_c00001{bottom:384.587067pt;}
.y2c08_c00001{bottom:384.587200pt;}
.yc1_c00001{bottom:384.667200pt;}
.y25da_c00001{bottom:384.745171pt;}
.yde0_c00001{bottom:384.750907pt;}
.y24b9_c00001{bottom:384.905235pt;}
.y3a45_c00001{bottom:384.907619pt;}
.y2f43_c00001{bottom:384.960000pt;}
.y2bd0_c00001{bottom:384.987200pt;}
.y297d_c00001{bottom:385.064675pt;}
.y2966_c00001{bottom:385.065499pt;}
.yec8_c00001{bottom:385.067235pt;}
.y1bf0_c00001{bottom:385.120000pt;}
.y2ad0_c00001{bottom:385.147200pt;}
.y190_c00001{bottom:385.227067pt;}
.y245b_c00001{bottom:385.387067pt;}
.y1ca9_c00001{bottom:385.437760pt;}
.y1010_c00001{bottom:385.467067pt;}
.ybf8_c00001{bottom:385.547067pt;}
.y1845_c00001{bottom:385.707067pt;}
.y1ba9_c00001{bottom:385.760000pt;}
.y2258_c00001{bottom:385.787067pt;}
.y1b62_c00001{bottom:385.920000pt;}
.ycc2_c00001{bottom:385.947067pt;}
.y2305_c00001{bottom:386.027067pt;}
.y73b_c00001{bottom:386.187200pt;}
.y3102_c00001{bottom:386.240000pt;}
.y27a_c00001{bottom:386.347067pt;}
.yffa_c00001{bottom:386.427067pt;}
.y38f_c00001{bottom:386.507067pt;}
.y1220_c00001{bottom:386.586320pt;}
.y1469_c00001{bottom:386.587067pt;}
.y5ae_c00001{bottom:386.587200pt;}
.y1550_c00001{bottom:386.667067pt;}
.yb0b_c00001{bottom:386.667200pt;}
.y31fa_c00001{bottom:386.720000pt;}
.yfc0_c00001{bottom:386.826755pt;}
.y16b_c00001{bottom:386.827200pt;}
.y3255_c00001{bottom:386.880000pt;}
.y1701_c00001{bottom:386.907067pt;}
.y25fb_c00001{bottom:386.907200pt;}
.y19e3_c00001{bottom:387.040000pt;}
.y1968_c00001{bottom:387.227011pt;}
.y4c_c00001{bottom:387.307067pt;}
.y2d81_c00001{bottom:387.360000pt;}
.y3414_c00001{bottom:387.386347pt;}
.y208e_c00001{bottom:387.387067pt;}
.y2162_c00001{bottom:387.466416pt;}
.y2367_c00001{bottom:387.467067pt;}
.y1ce8_c00001{bottom:387.520000pt;}
.y1854_c00001{bottom:387.547067pt;}
.y2a91_c00001{bottom:387.627067pt;}
.y302b_c00001{bottom:387.680000pt;}
.y422_c00001{bottom:387.787067pt;}
.y95_c00001{bottom:387.947067pt;}
.y88a_c00001{bottom:387.947200pt;}
.y2fff_c00001{bottom:388.000000pt;}
.y800_c00001{bottom:388.107067pt;}
.y380d_c00001{bottom:388.107200pt;}
.y31ea_c00001{bottom:388.160000pt;}
.y8a4_c00001{bottom:388.187067pt;}
.y514_c00001{bottom:388.187200pt;}
.y1387_c00001{bottom:388.187315pt;}
.y2b52_c00001{bottom:388.189659pt;}
.y3516_c00001{bottom:388.265979pt;}
.y347e_c00001{bottom:388.267067pt;}
.y1f02_c00001{bottom:388.320000pt;}
.y1693_c00001{bottom:388.347067pt;}
.yb46_c00001{bottom:388.347200pt;}
.yfb1_c00001{bottom:388.427067pt;}
.y280b_c00001{bottom:388.506675pt;}
.y34a9_c00001{bottom:388.507067pt;}
.y3c5_c00001{bottom:388.507251pt;}
.y1f49_c00001{bottom:388.513587pt;}
.y2c84_c00001{bottom:388.586675pt;}
.y5fa_c00001{bottom:388.587200pt;}
.y36a4_c00001{bottom:388.589635pt;}
.y700_c00001{bottom:388.747200pt;}
.y2590_c00001{bottom:388.825867pt;}
.y460_c00001{bottom:388.987067pt;}
.y71b_c00001{bottom:388.987200pt;}
.yef_c00001{bottom:389.067067pt;}
.y1b13_c00001{bottom:389.120000pt;}
.y775_c00001{bottom:389.147200pt;}
.y39bf_c00001{bottom:389.226632pt;}
.y29d8_c00001{bottom:389.227067pt;}
.y963_c00001{bottom:389.307067pt;}
.y119b_c00001{bottom:389.387067pt;}
.y22b3_c00001{bottom:389.467067pt;}
.y28e1_c00001{bottom:389.547067pt;}
.y399b_c00001{bottom:389.547531pt;}
.y1b61_c00001{bottom:389.600000pt;}
.y29fa_c00001{bottom:389.707264pt;}
.y1294_c00001{bottom:389.710579pt;}
.y3894_c00001{bottom:389.779683pt;}
.y2495_c00001{bottom:389.787067pt;}
.yc6b_c00001{bottom:389.788379pt;}
.ydb9_c00001{bottom:389.867067pt;}
.y31bf_c00001{bottom:389.920000pt;}
.y8f3_c00001{bottom:389.947067pt;}
.y22ed_c00001{bottom:389.947131pt;}
.y136d_c00001{bottom:390.027067pt;}
.y2ec2_c00001{bottom:390.080000pt;}
.y16bd_c00001{bottom:390.107067pt;}
.y1e39_c00001{bottom:390.240000pt;}
.y99c_c00001{bottom:390.267155pt;}
.y2b7_c00001{bottom:390.267200pt;}
.y1c36_c00001{bottom:390.560000pt;}
.y70_c00001{bottom:390.587200pt;}
.yf9f_c00001{bottom:390.667067pt;}
.ye55_c00001{bottom:390.747067pt;}
.y32a_c00001{bottom:390.747200pt;}
.y12a3_c00001{bottom:390.825067pt;}
.yc1b_c00001{bottom:390.827200pt;}
.y3275_c00001{bottom:390.880000pt;}
.y24ec_c00001{bottom:390.901771pt;}
.y2058_c00001{bottom:390.907200pt;}
.ya24_c00001{bottom:390.987067pt;}
.y12fd_c00001{bottom:390.987200pt;}
.y1dbf_c00001{bottom:391.040000pt;}
.y261e_c00001{bottom:391.147200pt;}
.y1c63_c00001{bottom:391.200000pt;}
.y1539_c00001{bottom:391.227067pt;}
.y2bbc_c00001{bottom:391.307067pt;}
.yc93_c00001{bottom:391.307731pt;}
.y3a29_c00001{bottom:391.312347pt;}
.y659_c00001{bottom:391.387067pt;}
.y223a_c00001{bottom:391.464779pt;}
.y175d_c00001{bottom:391.467067pt;}
.y2aff_c00001{bottom:391.467264pt;}
.y1e03_c00001{bottom:391.520000pt;}
.y2148_c00001{bottom:391.547067pt;}
.y234a_c00001{bottom:391.627067pt;}
.y1053_c00001{bottom:391.707067pt;}
.y8ce_c00001{bottom:391.708131pt;}
.y250_c00001{bottom:391.787067pt;}
.yd20_c00001{bottom:391.947200pt;}
.y3079_c00001{bottom:392.000000pt;}
.y362d_c00001{bottom:392.026632pt;}
.y2dd9_c00001{bottom:392.162720pt;}
.ya76_c00001{bottom:392.267067pt;}
.y1bf1_c00001{bottom:392.320000pt;}
.y15d3_c00001{bottom:392.346856pt;}
.y1f20_c00001{bottom:392.347067pt;}
.y2a75_c00001{bottom:392.427067pt;}
.yd8d_c00001{bottom:392.507067pt;}
.y3ed_c00001{bottom:392.587067pt;}
.yf5b_c00001{bottom:392.667067pt;}
.y437_c00001{bottom:392.747200pt;}
.y213e_c00001{bottom:392.827200pt;}
.y352f_c00001{bottom:392.901283pt;}
.y67b_c00001{bottom:392.907200pt;}
.y2d1e_c00001{bottom:392.987067pt;}
.ye75_c00001{bottom:392.987200pt;}
.y2c9f_c00001{bottom:393.066739pt;}
.y1319_c00001{bottom:393.070139pt;}
.y3168_c00001{bottom:393.120000pt;}
.y3203_c00001{bottom:393.125600pt;}
.y343f_c00001{bottom:393.147200pt;}
.y18c3_c00001{bottom:393.307067pt;}
.y251d_c00001{bottom:393.381835pt;}
.ycf3_c00001{bottom:393.386320pt;}
.y18e2_c00001{bottom:393.387067pt;}
.y99b_c00001{bottom:393.387107pt;}
.y31c0_c00001{bottom:393.440000pt;}
.y2e3a_c00001{bottom:393.442720pt;}
.y2e68_c00001{bottom:393.448960pt;}
.y1625_c00001{bottom:393.547200pt;}
.y3361_c00001{bottom:393.600000pt;}
.y1fc8_c00001{bottom:393.627067pt;}
.y9c2_c00001{bottom:393.707067pt;}
.y1d38_c00001{bottom:393.760000pt;}
.y6c3_c00001{bottom:393.787067pt;}
.y1328_c00001{bottom:393.796923pt;}
.y613_c00001{bottom:393.867067pt;}
.y238a_c00001{bottom:393.947067pt;}
.y2c2d_c00001{bottom:393.947200pt;}
.ya11_c00001{bottom:394.027067pt;}
.y2e99_c00001{bottom:394.080000pt;}
.y1206_c00001{bottom:394.107200pt;}
.y9dd_c00001{bottom:394.187200pt;}
.y39d3_c00001{bottom:394.187443pt;}
.y267b_c00001{bottom:394.267067pt;}
.y115_c00001{bottom:394.347067pt;}
.y21f1_c00001{bottom:394.506675pt;}
.y8ba_c00001{bottom:394.507067pt;}
.y302c_c00001{bottom:394.560000pt;}
.y26e6_c00001{bottom:394.585603pt;}
.yb75_c00001{bottom:394.586075pt;}
.yb14_c00001{bottom:394.587067pt;}
.y6e3_c00001{bottom:394.667067pt;}
.y1f62_c00001{bottom:394.747067pt;}
.y3056_c00001{bottom:394.880000pt;}
.y2749_c00001{bottom:394.987200pt;}
.y1ea1_c00001{bottom:395.040000pt;}
.y3950_c00001{bottom:395.066667pt;}
.y2a35_c00001{bottom:395.067200pt;}
.y10bc_c00001{bottom:395.147200pt;}
.y30db_c00001{bottom:395.200000pt;}
.y10df_c00001{bottom:395.306992pt;}
.y817_c00001{bottom:395.387067pt;}
.y32e3_c00001{bottom:395.520000pt;}
.y2430_c00001{bottom:395.547067pt;}
.y1ed_c00001{bottom:395.547376pt;}
.y2d34_c00001{bottom:395.548816pt;}
.y28_c00001{bottom:395.627067pt;}
.y16e0_c00001{bottom:395.707067pt;}
.y97c_c00001{bottom:395.786755pt;}
.y10f5_c00001{bottom:395.789067pt;}
.y1610_c00001{bottom:395.867067pt;}
.y1ecd_c00001{bottom:396.000000pt;}
.y203e_c00001{bottom:396.104667pt;}
.yb8a_c00001{bottom:396.106867pt;}
.y1f7c_c00001{bottom:396.108043pt;}
.y3745_c00001{bottom:396.189939pt;}
.y34e7_c00001{bottom:396.267067pt;}
.y3549_c00001{bottom:396.268040pt;}
.y1a2a_c00001{bottom:396.320000pt;}
.y27da_c00001{bottom:396.345627pt;}
.y13cd_c00001{bottom:396.347067pt;}
.y99a_c00001{bottom:396.427067pt;}
.y3309_c00001{bottom:396.480000pt;}
.y1a76_c00001{bottom:396.482720pt;}
.y37d1_c00001{bottom:396.507067pt;}
.y1fe4_c00001{bottom:396.587067pt;}
.y2f48_c00001{bottom:396.640000pt;}
.y63a_c00001{bottom:396.667067pt;}
.y1417_c00001{bottom:396.747067pt;}
.y22a_c00001{bottom:396.987067pt;}
.y375f_c00001{bottom:396.987200pt;}
.y1099_c00001{bottom:397.067200pt;}
.y2823_c00001{bottom:397.068371pt;}
.y2b51_c00001{bottom:397.069331pt;}
.yc30_c00001{bottom:397.147067pt;}
.y94d_c00001{bottom:397.147200pt;}
.y3910_c00001{bottom:397.307067pt;}
.y33d8_c00001{bottom:397.308067pt;}
.y307a_c00001{bottom:397.440000pt;}
.y22d6_c00001{bottom:397.545563pt;}
.y2899_c00001{bottom:397.547067pt;}
.y2aaf_c00001{bottom:397.626675pt;}
.y3932_c00001{bottom:397.627067pt;}
.yf3f_c00001{bottom:397.627448pt;}
.yec3_c00001{bottom:397.867067pt;}
.y37a5_c00001{bottom:397.869587pt;}
.y17e1_c00001{bottom:397.947067pt;}
.y232c_c00001{bottom:398.024907pt;}
.y10ff_c00001{bottom:398.027739pt;}
.y2eb_c00001{bottom:398.186667pt;}
.y2e9a_c00001{bottom:398.240000pt;}
.y159c_c00001{bottom:398.267800pt;}
.y108a_c00001{bottom:398.347067pt;}
.y1be_c00001{bottom:398.347200pt;}
.y2460_c00001{bottom:398.427067pt;}
.y39fb_c00001{bottom:398.427155pt;}
.y2768_c00001{bottom:398.429939pt;}
.y53d_c00001{bottom:398.507067pt;}
.y1bab_c00001{bottom:398.560000pt;}
.y7b1_c00001{bottom:398.667067pt;}
.y1d6b_c00001{bottom:398.720000pt;}
.y121f_c00001{bottom:398.826576pt;}
.y23d3_c00001{bottom:398.827200pt;}
.y151e_c00001{bottom:398.827667pt;}
.y2dae_c00001{bottom:398.880000pt;}
.y55c_c00001{bottom:398.907200pt;}
.y3a44_c00001{bottom:398.987531pt;}
.yfbf_c00001{bottom:399.067011pt;}
.y227d_c00001{bottom:399.146611pt;}
.y20eb_c00001{bottom:399.146808pt;}
.yd6e_c00001{bottom:399.147307pt;}
.yec6_c00001{bottom:399.227067pt;}
.yf31_c00001{bottom:399.307067pt;}
.y2cb9_c00001{bottom:399.387067pt;}
.y30dc_c00001{bottom:399.520000pt;}
.y1967_c00001{bottom:399.547067pt;}
.y3380_c00001{bottom:399.549403pt;}
.y26fd_c00001{bottom:399.627067pt;}
.y2f13_c00001{bottom:399.680000pt;}
.y1717_c00001{bottom:399.707067pt;}
.y1723_c00001{bottom:399.787067pt;}
.y1830_c00001{bottom:399.787200pt;}
.y3000_c00001{bottom:399.840000pt;}
.y287b_c00001{bottom:399.866019pt;}
.y1456_c00001{bottom:399.867067pt;}
.y2540_c00001{bottom:399.944667pt;}
.y34bd_c00001{bottom:399.947200pt;}
.y3254_c00001{bottom:400.025600pt;}
.y2112_c00001{bottom:400.106611pt;}
.y2b83_c00001{bottom:400.107200pt;}
.y1abf_c00001{bottom:400.160000pt;}
.y7d9_c00001{bottom:400.187067pt;}
.y378a_c00001{bottom:400.267067pt;}
.yec7_c00001{bottom:400.347067pt;}
.y23ac_c00001{bottom:400.427067pt;}
.y1941_c00001{bottom:400.480000pt;}
.y21d0_c00001{bottom:400.502923pt;}
.y20c3_c00001{bottom:400.507200pt;}
.y582_c00001{bottom:400.667067pt;}
.y13ac_c00001{bottom:400.669947pt;}
.y35ee_c00001{bottom:400.744667pt;}
.y2ecc_c00001{bottom:400.800000pt;}
.y3778_c00001{bottom:400.827200pt;}
.y263f_c00001{bottom:400.905435pt;}
.y13e_c00001{bottom:400.907200pt;}
.y2f42_c00001{bottom:400.960000pt;}
.y2ae5_c00001{bottom:400.987200pt;}
.y3599_c00001{bottom:401.064411pt;}
.y846_c00001{bottom:401.227067pt;}
.y31ec_c00001{bottom:401.280000pt;}
.y2565_c00001{bottom:401.387067pt;}
.yfb0_c00001{bottom:401.387987pt;}
.y33de_c00001{bottom:401.467291pt;}
.y39be_c00001{bottom:401.546688pt;}
.y18a2_c00001{bottom:401.547067pt;}
.y173f_c00001{bottom:401.627067pt;}
.yddf_c00001{bottom:401.630827pt;}
.y125d_c00001{bottom:401.706707pt;}
.y5d9_c00001{bottom:401.707067pt;}
.y36e5_c00001{bottom:401.862027pt;}
.y13b3_c00001{bottom:401.867200pt;}
.y3192_c00001{bottom:401.920000pt;}
.y2c06_c00001{bottom:401.947200pt;}
.y9ff_c00001{bottom:402.027200pt;}
.y3893_c00001{bottom:402.099739pt;}
.y1d6c_c00001{bottom:402.240000pt;}
.y279_c00001{bottom:402.267067pt;}
.y186d_c00001{bottom:402.347067pt;}
.y19e2_c00001{bottom:402.400000pt;}
.y999_c00001{bottom:402.507067pt;}
.y3141_c00001{bottom:402.560000pt;}
.y188f_c00001{bottom:402.667067pt;}
.y36a3_c00001{bottom:402.669547pt;}
.y4b8_c00001{bottom:402.747200pt;}
.y2075_c00001{bottom:402.825211pt;}
.y27a9_c00001{bottom:402.827200pt;}
.y1267_c00001{bottom:402.828000pt;}
.y2e08_c00001{bottom:402.880000pt;}
.y2907_c00001{bottom:402.907067pt;}
.y4de_c00001{bottom:402.907200pt;}
.y8f2_c00001{bottom:402.907307pt;}
.y20e_c00001{bottom:402.987200pt;}
.y2f82_c00001{bottom:403.040000pt;}
.ycc1_c00001{bottom:403.147200pt;}
.yea6_c00001{bottom:403.227067pt;}
.y2860_c00001{bottom:403.307067pt;}
.y106f_c00001{bottom:403.387067pt;}
.y2015_c00001{bottom:403.387264pt;}
.y1777_c00001{bottom:403.467067pt;}
.yc0_c00001{bottom:403.467147pt;}
.y1a2b_c00001{bottom:403.520000pt;}
.y29b3_c00001{bottom:403.547067pt;}
.y352_c00001{bottom:403.627067pt;}
.y752_c00001{bottom:403.627200pt;}
.y399a_c00001{bottom:403.627443pt;}
.y1f01_c00001{bottom:403.680000pt;}
.y73a_c00001{bottom:403.707067pt;}
.yaee_c00001{bottom:403.787067pt;}
.y3c4_c00001{bottom:403.787083pt;}
.y1b5d_c00001{bottom:403.840000pt;}
.y38e_c00001{bottom:404.027200pt;}
.y25d9_c00001{bottom:404.105107pt;}
.y35af_c00001{bottom:404.107067pt;}
.y26c6_c00001{bottom:404.107200pt;}
.y1d6d_c00001{bottom:404.160000pt;}
.y18f_c00001{bottom:404.267067pt;}
.y3122_c00001{bottom:404.320000pt;}
.y24b8_c00001{bottom:404.345691pt;}
.y362c_c00001{bottom:404.346688pt;}
.y38d0_c00001{bottom:404.427067pt;}
.y2dd8_c00001{bottom:404.480000pt;}
.y297c_c00001{bottom:404.505131pt;}
.y2965_c00001{bottom:404.505955pt;}
.y774_c00001{bottom:404.507067pt;}
.y1e75_c00001{bottom:404.663360pt;}
.y258f_c00001{bottom:404.665867pt;}
.yaa9_c00001{bottom:404.667067pt;}
.y6ff_c00001{bottom:404.747200pt;}
.y9b2_c00001{bottom:404.827200pt;}
.y1801_c00001{bottom:404.907067pt;}
.y32dc_c00001{bottom:404.960000pt;}
.y1546_c00001{bottom:405.067067pt;}
.ye6a_c00001{bottom:405.067200pt;}
.y874_c00001{bottom:405.387067pt;}
.y3a28_c00001{bottom:405.392259pt;}
.y1ce5_c00001{bottom:405.440000pt;}
.y16a_c00001{bottom:405.547067pt;}
.y1ba8_c00001{bottom:405.600000pt;}
.ycf2_c00001{bottom:405.626576pt;}
.ya46_c00001{bottom:405.627067pt;}
.y9dc_c00001{bottom:405.707067pt;}
.y2d80_c00001{bottom:405.760000pt;}
.y2e67_c00001{bottom:405.766240pt;}
.y1184_c00001{bottom:405.787067pt;}
.y6a6_c00001{bottom:405.787307pt;}
.yc6c_c00001{bottom:405.868475pt;}
.y2b50_c00001{bottom:405.869323pt;}
.y3515_c00001{bottom:405.946603pt;}
.y2304_c00001{bottom:406.027200pt;}
.y2215_c00001{bottom:406.107200pt;}
.y421_c00001{bottom:406.187067pt;}
.y1dbe_c00001{bottom:406.240000pt;}
.y94_c00001{bottom:406.347067pt;}
.y309b_c00001{bottom:406.400000pt;}
.ybf7_c00001{bottom:406.507067pt;}
.y1386_c00001{bottom:406.587067pt;}
.y35d8_c00001{bottom:406.667067pt;}
.y1b0f_c00001{bottom:406.720000pt;}
.y1339_c00001{bottom:406.747200pt;}
.y3413_c00001{bottom:406.826803pt;}
.y1844_c00001{bottom:406.827067pt;}
.y2161_c00001{bottom:406.906872pt;}
.y2bbb_c00001{bottom:406.907131pt;}
.y178f_c00001{bottom:407.067067pt;}
.y1338_c00001{bottom:407.067200pt;}
.y38ba_c00001{bottom:407.147200pt;}
.y2349_c00001{bottom:407.226411pt;}
.y513_c00001{bottom:407.227067pt;}
.y1606_c00001{bottom:407.307067pt;}
.y45f_c00001{bottom:407.387067pt;}
.yc94_c00001{bottom:407.387963pt;}
.y935_c00001{bottom:407.467067pt;}
.y2477_c00001{bottom:407.547067pt;}
.y14d6_c00001{bottom:407.547200pt;}
.yc1a_c00001{bottom:407.627067pt;}
.y2a90_c00001{bottom:407.707067pt;}
.y2ce7_c00001{bottom:407.787067pt;}
.y280a_c00001{bottom:407.866611pt;}
.y16aa_c00001{bottom:407.867315pt;}
.y1b5f_c00001{bottom:408.000000pt;}
.y97b_c00001{bottom:408.027011pt;}
.y2c83_c00001{bottom:408.027131pt;}
.y1700_c00001{bottom:408.107067pt;}
.y2494_c00001{bottom:408.107200pt;}
.y3294_c00001{bottom:408.160000pt;}
.y329_c00001{bottom:408.267067pt;}
.y39d2_c00001{bottom:408.267355pt;}
.y2f0b_c00001{bottom:408.320000pt;}
.y37f2_c00001{bottom:408.427067pt;}
.y1c34_c00001{bottom:408.480000pt;}
.y208d_c00001{bottom:408.587067pt;}
.y31eb_c00001{bottom:408.640000pt;}
.y1853_c00001{bottom:408.667067pt;}
.y2b6_c00001{bottom:408.667200pt;}
.y1a75_c00001{bottom:408.800000pt;}
.ydb8_c00001{bottom:408.987200pt;}
.y15d2_c00001{bottom:409.067200pt;}
.y3211_c00001{bottom:409.067784pt;}
.y100f_c00001{bottom:409.147200pt;}
.y1c61_c00001{bottom:409.280000pt;}
.y8a3_c00001{bottom:409.307067pt;}
.y1295_c00001{bottom:409.311035pt;}
.y1e01_c00001{bottom:409.440000pt;}
.y34fd_c00001{bottom:409.467067pt;}
.y29c4_c00001{bottom:409.544811pt;}
.y380c_c00001{bottom:409.546739pt;}
.y1ce6_c00001{bottom:409.600000pt;}
.y658_c00001{bottom:409.787067pt;}
.y371b_c00001{bottom:409.867067pt;}
.y1f1f_c00001{bottom:409.867731pt;}
.y48e_c00001{bottom:409.947067pt;}
.y17bd_c00001{bottom:409.947200pt;}
.y1f48_c00001{bottom:409.953315pt;}
.y10e0_c00001{bottom:410.027040pt;}
.y1ca8_c00001{bottom:410.080000pt;}
.y24f_c00001{bottom:410.187067pt;}
.y213c_c00001{bottom:410.187200pt;}
.y1bee_c00001{bottom:410.240000pt;}
.y278c_c00001{bottom:410.267067pt;}
.y3744_c00001{bottom:410.269851pt;}
.y24eb_c00001{bottom:410.342227pt;}
.y29f9_c00001{bottom:410.347067pt;}
.ye37_c00001{bottom:410.348907pt;}
.y2f47_c00001{bottom:410.400000pt;}
.y12a4_c00001{bottom:410.424667pt;}
.y67a_c00001{bottom:410.427067pt;}
.y3548_c00001{bottom:410.427752pt;}
.ybb7_c00001{bottom:410.507067pt;}
.y10f6_c00001{bottom:410.509467pt;}
.y309c_c00001{bottom:410.560000pt;}
.y12af_c00001{bottom:410.587067pt;}
.yd4b_c00001{bottom:410.667067pt;}
.y1692_c00001{bottom:410.747067pt;}
.y1052_c00001{bottom:410.747200pt;}
.y2239_c00001{bottom:410.824715pt;}
.y2afe_c00001{bottom:410.827200pt;}
.y1ec_c00001{bottom:410.827208pt;}
.y143c_c00001{bottom:411.067200pt;}
.y8cd_c00001{bottom:411.068067pt;}
.y121e_c00001{bottom:411.146632pt;}
.y2822_c00001{bottom:411.148283pt;}
.y3165_c00001{bottom:411.200000pt;}
.y3ec_c00001{bottom:411.227067pt;}
.ybbe_c00001{bottom:411.229843pt;}
.y2748_c00001{bottom:411.307067pt;}
.y1d39_c00001{bottom:411.360000pt;}
.yfbe_c00001{bottom:411.387067pt;}
.y436_c00001{bottom:411.467067pt;}
.y1b5e_c00001{bottom:411.680000pt;}
.y6c2_c00001{bottom:411.787067pt;}
.y1276_c00001{bottom:411.947067pt;}
.y3360_c00001{bottom:412.000000pt;}
.y2ea_c00001{bottom:412.026267pt;}
.y356b_c00001{bottom:412.027200pt;}
.y131a_c00001{bottom:412.030651pt;}
.y269e_c00001{bottom:412.186267pt;}
.y415_c00001{bottom:412.187067pt;}
.yb13_c00001{bottom:412.187200pt;}
.y2c9e_c00001{bottom:412.426675pt;}
.y612_c00001{bottom:412.427067pt;}
.y32e2_c00001{bottom:412.480000pt;}
.y39fa_c00001{bottom:412.507067pt;}
.y2767_c00001{bottom:412.509851pt;}
.y175c_c00001{bottom:412.587067pt;}
.y639_c00001{bottom:412.667067pt;}
.y251c_c00001{bottom:412.741771pt;}
.y2057_c00001{bottom:412.747067pt;}
.y962_c00001{bottom:412.747200pt;}
.y1329_c00001{bottom:412.757435pt;}
.y19e6_c00001{bottom:412.800000pt;}
.ye08_c00001{bottom:412.826243pt;}
.y119a_c00001{bottom:412.907200pt;}
.y1ac2_c00001{bottom:412.960000pt;}
.y114_c00001{bottom:412.987200pt;}
.y1631_c00001{bottom:413.067067pt;}
.y1998_c00001{bottom:413.120000pt;}
.y2b9a_c00001{bottom:413.146800pt;}
.y1f61_c00001{bottom:413.147067pt;}
.y3a43_c00001{bottom:413.147243pt;}
.y27_c00001{bottom:413.227067pt;}
.y2fb5_c00001{bottom:413.280000pt;}
.y3401_c00001{bottom:413.387067pt;}
.y2d33_c00001{bottom:413.389120pt;}
.y1c62_c00001{bottom:413.440000pt;}
.y25af_c00001{bottom:413.467067pt;}
.y136c_c00001{bottom:413.547067pt;}
.y1966_c00001{bottom:413.627067pt;}
.y34d2_c00001{bottom:413.704811pt;}
.y39bd_c00001{bottom:413.786944pt;}
.y2d0f_c00001{bottom:413.787563pt;}
.y272a_c00001{bottom:413.946611pt;}
.y21f0_c00001{bottom:413.947131pt;}
.y3496_c00001{bottom:413.947200pt;}
.y1f7b_c00001{bottom:413.948347pt;}
.y2a52_c00001{bottom:414.026219pt;}
.yff9_c00001{bottom:414.027067pt;}
.y345e_c00001{bottom:414.027200pt;}
.y1468_c00001{bottom:414.187067pt;}
.y33d7_c00001{bottom:414.187987pt;}
.y1dbc_c00001{bottom:414.240000pt;}
.y154f_c00001{bottom:414.267067pt;}
.y3892_c00001{bottom:414.339995pt;}
.y18c2_c00001{bottom:414.347067pt;}
.y18e1_c00001{bottom:414.507067pt;}
.y3202_c00001{bottom:414.560000pt;}
.y26e2_c00001{bottom:414.586219pt;}
.y3837_c00001{bottom:414.587067pt;}
.y23d2_c00001{bottom:414.667200pt;}
.y2b4f_c00001{bottom:414.669315pt;}
.y2fdb_c00001{bottom:414.720000pt;}
.y55b_c00001{bottom:414.827200pt;}
.y2dd3_c00001{bottom:414.880000pt;}
.y4b_c00001{bottom:414.907067pt;}
.y6f_c00001{bottom:414.907200pt;}
.y2cb8_c00001{bottom:414.986347pt;}
.y159b_c00001{bottom:415.067200pt;}
.y2389_c00001{bottom:415.147067pt;}
.y360a_c00001{bottom:415.147200pt;}
.y330d_c00001{bottom:415.200000pt;}
.y3059_c00001{bottom:415.360000pt;}
.y2996_c00001{bottom:415.386808pt;}
.y856_c00001{bottom:415.387067pt;}
.y816_c00001{bottom:415.547067pt;}
.y889_c00001{bottom:415.547200pt;}
.y7ff_c00001{bottom:415.627067pt;}
.y27d9_c00001{bottom:415.705563pt;}
.yec2_c00001{bottom:415.787067pt;}
.y3123_c00001{bottom:415.840000pt;}
.y253f_c00001{bottom:415.865067pt;}
.yb76_c00001{bottom:415.865883pt;}
.y28ef_c00001{bottom:415.947200pt;}
.y1e38_c00001{bottom:416.000000pt;}
.yb45_c00001{bottom:416.027067pt;}
.y5f9_c00001{bottom:416.027200pt;}
.yd6d_c00001{bottom:416.027227pt;}
.y33b6_c00001{bottom:416.107200pt;}
.y1dbb_c00001{bottom:416.160000pt;}
.y384e_c00001{bottom:416.267067pt;}
.y185e_c00001{bottom:416.427067pt;}
.y31bd_c00001{bottom:416.480000pt;}
.y347d_c00001{bottom:416.507067pt;}
.y362b_c00001{bottom:416.586944pt;}
.ya5e_c00001{bottom:416.587067pt;}
.yf0a_c00001{bottom:416.587200pt;}
.yee_c00001{bottom:416.667067pt;}
.y3983_c00001{bottom:416.747067pt;}
.y1bd_c00001{bottom:416.747200pt;}
.y36a2_c00001{bottom:416.749459pt;}
.y3253_c00001{bottom:416.821120pt;}
.y3961_c00001{bottom:416.827200pt;}
.y22d5_c00001{bottom:416.905499pt;}
.y34e6_c00001{bottom:416.907200pt;}
.y1e74_c00001{bottom:416.980640pt;}
.y2aae_c00001{bottom:416.986611pt;}
.y16df_c00001{bottom:416.987067pt;}
.y2c2f_c00001{bottom:416.987200pt;}
.y2297_c00001{bottom:417.067200pt;}
.y53c_c00001{bottom:417.147200pt;}
.y1c35_c00001{bottom:417.280000pt;}
.y232b_c00001{bottom:417.384843pt;}
.yb8b_c00001{bottom:417.386867pt;}
.y30d9_c00001{bottom:417.440000pt;}
.y2c07_c00001{bottom:417.467067pt;}
.y34bc_c00001{bottom:417.547067pt;}
.y1bef_c00001{bottom:417.600000pt;}
.y739_c00001{bottom:417.627067pt;}
.y16bc_c00001{bottom:417.707067pt;}
.y1999_c00001{bottom:417.760000pt;}
.y3789_c00001{bottom:417.787067pt;}
.y3999_c00001{bottom:417.787155pt;}
.y2ffd_c00001{bottom:417.920000pt;}
.ycf1_c00001{bottom:417.946632pt;}
.y1ff9_c00001{bottom:418.027200pt;}
.y2e66_c00001{bottom:418.083520pt;}
.y7b0_c00001{bottom:418.267067pt;}
.yfaf_c00001{bottom:418.267907pt;}
.ye54_c00001{bottom:418.347067pt;}
.y28b4_c00001{bottom:418.427067pt;}
.ydde_c00001{bottom:418.430227pt;}
.y1fe3_c00001{bottom:418.507200pt;}
.y845_c00001{bottom:418.587067pt;}
.y12fc_c00001{bottom:418.587200pt;}
.y20ea_c00001{bottom:418.587264pt;}
.y106e_c00001{bottom:418.667200pt;}
.y1e8a_c00001{bottom:418.720000pt;}
.y2c05_c00001{bottom:418.747200pt;}
.y1538_c00001{bottom:418.827067pt;}
.y1940_c00001{bottom:418.880000pt;}
.y1455_c00001{bottom:418.987200pt;}
.y1a73_c00001{bottom:419.040000pt;}
.y581_c00001{bottom:419.067067pt;}
.y17e0_c00001{bottom:419.147067pt;}
.y3c3_c00001{bottom:419.147075pt;}
.y1b12_c00001{bottom:419.200000pt;}
.y287a_c00001{bottom:419.225955pt;}
.y2660_c00001{bottom:419.227067pt;}
.y2f41_c00001{bottom:419.360000pt;}
.y998_c00001{bottom:419.387067pt;}
.y3a27_c00001{bottom:419.472171pt;}
.y2116_c00001{bottom:419.547067pt;}
.y8f1_c00001{bottom:419.787227pt;}
.y227c_c00001{bottom:419.867067pt;}
.y21cf_c00001{bottom:419.943379pt;}
.ycc0_c00001{bottom:419.947200pt;}
.y5d8_c00001{bottom:420.107067pt;}
.y13d_c00001{bottom:420.107200pt;}
.y156e_c00001{bottom:420.187067pt;}
.yf5a_c00001{bottom:420.267067pt;}
.y2e98_c00001{bottom:420.320000pt;}
.y263e_c00001{bottom:420.345891pt;}
.ybf_c00001{bottom:420.347067pt;}
.y6fe_c00001{bottom:420.427067pt;}
.y9fe_c00001{bottom:420.427200pt;}
.y258e_c00001{bottom:420.586267pt;}
.y2941_c00001{bottom:420.587067pt;}
.yafa_c00001{bottom:420.667200pt;}
.y186c_c00001{bottom:420.747067pt;}
.y26fc_c00001{bottom:420.747200pt;}
.y2e06_c00001{bottom:420.800000pt;}
.y2111_c00001{bottom:420.827200pt;}
.y278_c00001{bottom:420.907200pt;}
.y33dd_c00001{bottom:420.907747pt;}
.y2f7a_c00001{bottom:420.960000pt;}
.y1716_c00001{bottom:420.987067pt;}
.y5ad_c00001{bottom:420.987200pt;}
.y188e_c00001{bottom:421.067067pt;}
.y2ae4_c00001{bottom:421.067200pt;}
.y1fc7_c00001{bottom:421.227067pt;}
.y1e02_c00001{bottom:421.280000pt;}
.y2906_c00001{bottom:421.307067pt;}
.y1a28_c00001{bottom:421.440000pt;}
.y38d_c00001{bottom:421.547067pt;}
.y30da_c00001{bottom:421.600000pt;}
.ya10_c00001{bottom:421.627067pt;}
.y20c2_c00001{bottom:421.707200pt;}
.y4dd_c00001{bottom:421.947200pt;}
.yc6d_c00001{bottom:421.948571pt;}
.y351_c00001{bottom:422.027067pt;}
.y773_c00001{bottom:422.027200pt;}
.y2214_c00001{bottom:422.187200pt;}
.y2f12_c00001{bottom:422.240000pt;}
.y6e2_c00001{bottom:422.267067pt;}
.y39d1_c00001{bottom:422.427067pt;}
.y18a1_c00001{bottom:422.667067pt;}
.y13b4_c00001{bottom:422.667200pt;}
.y10bb_c00001{bottom:422.747200pt;}
.y173e_c00001{bottom:422.827067pt;}
.y2564_c00001{bottom:422.827200pt;}
.y27a8_c00001{bottom:422.907200pt;}
.y371a_c00001{bottom:422.986667pt;}
.y38ee_c00001{bottom:422.987200pt;}
.y35d6_c00001{bottom:423.067200pt;}
.y18e_c00001{bottom:423.227067pt;}
.y2ce6_c00001{bottom:423.304451pt;}
.y2184_c00001{bottom:423.307067pt;}
.y305b_c00001{bottom:423.360000pt;}
.y121d_c00001{bottom:423.386888pt;}
.y17d1_c00001{bottom:423.387067pt;}
.y169_c00001{bottom:423.467067pt;}
.yc95_c00001{bottom:423.468195pt;}
.y2b4e_c00001{bottom:423.469307pt;}
.y2f7f_c00001{bottom:423.520000pt;}
.y25d8_c00001{bottom:423.545563pt;}
.y3514_c00001{bottom:423.547067pt;}
.y291f_c00001{bottom:423.627067pt;}
.y24b7_c00001{bottom:423.705627pt;}
.y38fe_c00001{bottom:423.787067pt;}
.y352e_c00001{bottom:423.861747pt;}
.y297b_c00001{bottom:423.865067pt;}
.y2964_c00001{bottom:423.865891pt;}
.y4b7_c00001{bottom:423.867067pt;}
.y245a_c00001{bottom:424.107200pt;}
.y2d7f_c00001{bottom:424.160000pt;}
.y45e_c00001{bottom:424.187200pt;}
.y1416_c00001{bottom:424.347067pt;}
.y873_c00001{bottom:424.427067pt;}
.y3743_c00001{bottom:424.429563pt;}
.y302a_c00001{bottom:424.480000pt;}
.y2303_c00001{bottom:424.507067pt;}
.y3547_c00001{bottom:424.507664pt;}
.y229_c00001{bottom:424.587067pt;}
.y10e1_c00001{bottom:424.666928pt;}
.y12f1_c00001{bottom:424.667067pt;}
.y93_c00001{bottom:424.747067pt;}
.y94c_c00001{bottom:424.747200pt;}
.y29b2_c00001{bottom:424.827200pt;}
.ybf6_c00001{bottom:424.907200pt;}
.y2e07_c00001{bottom:424.960000pt;}
.ye74_c00001{bottom:424.987200pt;}
.ye07_c00001{bottom:425.066499pt;}
.y2476_c00001{bottom:425.067200pt;}
.y10f7_c00001{bottom:425.229867pt;}
.y2821_c00001{bottom:425.307995pt;}
.y37a4_c00001{bottom:425.309083pt;}
.y3140_c00001{bottom:425.440000pt;}
.y1dba_c00001{bottom:425.600000pt;}
.y512_c00001{bottom:425.627067pt;}
.y213b_c00001{bottom:425.706744pt;}
.y3078_c00001{bottom:425.760000pt;}
.y2e9_c00001{bottom:425.786667pt;}
.y328_c00001{bottom:425.787067pt;}
.y1ac4_c00001{bottom:425.920000pt;}
.y1089_c00001{bottom:425.947067pt;}
.y961_c00001{bottom:425.947827pt;}
.y39bc_c00001{bottom:426.027200pt;}
.y1b5c_c00001{bottom:426.080000pt;}
.y1800_c00001{bottom:426.107067pt;}
.y39f9_c00001{bottom:426.107200pt;}
.y3412_c00001{bottom:426.186739pt;}
.y1eb_c00001{bottom:426.187200pt;}
.y2160_c00001{bottom:426.266808pt;}
.yc19_c00001{bottom:426.267067pt;}
.y2493_c00001{bottom:426.347067pt;}
.y3891_c00001{bottom:426.580251pt;}
.y2348_c00001{bottom:426.586347pt;}
.y2766_c00001{bottom:426.589763pt;}
.yd1f_c00001{bottom:426.667200pt;}
.y1ecc_c00001{bottom:426.720000pt;}
.y15d1_c00001{bottom:426.747747pt;}
.y1827_c00001{bottom:426.827067pt;}
.y26b2_c00001{bottom:426.827200pt;}
.y2ec1_c00001{bottom:426.880000pt;}
.y1d67_c00001{bottom:427.040000pt;}
.y2b5_c00001{bottom:427.067200pt;}
.y3a42_c00001{bottom:427.227155pt;}
.ye36_c00001{bottom:427.228827pt;}
.y242f_c00001{bottom:427.307067pt;}
.y2366_c00001{bottom:427.387067pt;}
.y4b6_c00001{bottom:427.467067pt;}
.y3166_c00001{bottom:427.520000pt;}
.y2bba_c00001{bottom:427.547067pt;}
.y9db_c00001{bottom:427.627067pt;}
.y1ce2_c00001{bottom:427.680000pt;}
.y20ab_c00001{bottom:427.707067pt;}
.y7d8_c00001{bottom:427.787067pt;}
.y1a74_c00001{bottom:427.840000pt;}
.y679_c00001{bottom:427.947200pt;}
.y1843_c00001{bottom:428.027067pt;}
.yec1_c00001{bottom:428.027200pt;}
.y45d_c00001{bottom:428.107200pt;}
.y32ba_c00001{bottom:428.160000pt;}
.y657_c00001{bottom:428.187067pt;}
.y2be9_c00001{bottom:428.187200pt;}
.y1205_c00001{bottom:428.267067pt;}
.y3273_c00001{bottom:428.320000pt;}
.y78b_c00001{bottom:428.347067pt;}
.y1199_c00001{bottom:428.426347pt;}
.y3777_c00001{bottom:428.427067pt;}
.y309a_c00001{bottom:428.480000pt;}
.y48d_c00001{bottom:428.507067pt;}
.y24e_c00001{bottom:428.587067pt;}
.y638_c00001{bottom:428.667200pt;}
.y3659_c00001{bottom:428.747200pt;}
.y203d_c00001{bottom:428.825067pt;}
.y2afd_c00001{bottom:428.827200pt;}
.y380b_c00001{bottom:428.906675pt;}
.y1296_c00001{bottom:428.911491pt;}
.y2b99_c00001{bottom:428.986800pt;}
.yb12_c00001{bottom:428.987200pt;}
.y35d7_c00001{bottom:429.067200pt;}
.y3eb_c00001{bottom:429.147067pt;}
.y148d_c00001{bottom:429.147200pt;}
.y16ff_c00001{bottom:429.227067pt;}
.y1e73_c00001{bottom:429.297920pt;}
.y36e4_c00001{bottom:429.302587pt;}
.y6c1_c00001{bottom:429.307067pt;}
.y1385_c00001{bottom:429.307200pt;}
.y435_c00001{bottom:429.467067pt;}
.y2e39_c00001{bottom:429.600000pt;}
.y24ea_c00001{bottom:429.702163pt;}
.y208c_c00001{bottom:429.707067pt;}
.y2ffe_c00001{bottom:429.760000pt;}
.y1051_c00001{bottom:429.867067pt;}
.y12a5_c00001{bottom:430.024267pt;}
.y13cc_c00001{bottom:430.027200pt;}
.yd4a_c00001{bottom:430.106632pt;}
.y143b_c00001{bottom:430.107200pt;}
.ycf0_c00001{bottom:430.186888pt;}
.y2e65_c00001{bottom:430.240000pt;}
.y2238_c00001{bottom:430.265171pt;}
.y335f_c00001{bottom:430.400000pt;}
.y8cc_c00001{bottom:430.508523pt;}
.y330c_c00001{bottom:430.560000pt;}
.y381e_c00001{bottom:430.587067pt;}
.y20d_c00001{bottom:430.587200pt;}
.y2a34_c00001{bottom:430.667200pt;}
.y19dd_c00001{bottom:430.720000pt;}
.yea5_c00001{bottom:430.827067pt;}
.y345f_c00001{bottom:430.827200pt;}
.y36a1_c00001{bottom:430.829371pt;}
.y113_c00001{bottom:430.907200pt;}
.y1268_c00001{bottom:430.987200pt;}
.y33d6_c00001{bottom:430.987387pt;}
.y131b_c00001{bottom:430.991163pt;}
.y17bc_c00001{bottom:431.067067pt;}
.y6a5_c00001{bottom:431.067659pt;}
.y751_c00001{bottom:431.227200pt;}
.y37bc_c00001{bottom:431.307067pt;}
.y1f1e_c00001{bottom:431.307459pt;}
.y2d32_c00001{bottom:431.308480pt;}
.y1c60_c00001{bottom:431.360000pt;}
.yaed_c00001{bottom:431.387067pt;}
.y100e_c00001{bottom:431.467067pt;}
.y1f47_c00001{bottom:431.473195pt;}
.y1f60_c00001{bottom:431.547067pt;}
.y2c56_c00001{bottom:431.627067pt;}
.y3190_c00001{bottom:431.680000pt;}
.y253e_c00001{bottom:431.705067pt;}
.y35ae_c00001{bottom:431.707067pt;}
.y132a_c00001{bottom:431.707712pt;}
.y22b2_c00001{bottom:431.787067pt;}
.y1ce3_c00001{bottom:431.840000pt;}
.y3998_c00001{bottom:431.867067pt;}
.y2c9d_c00001{bottom:431.867131pt;}
.y1f7a_c00001{bottom:431.867707pt;}
.ya77_c00001{bottom:431.868267pt;}
.y278b_c00001{bottom:431.947200pt;}
.y1965_c00001{bottom:432.027200pt;}
.ybb8_c00001{bottom:432.027355pt;}
.y345d_c00001{bottom:432.107200pt;}
.y1dbd_c00001{bottom:432.160000pt;}
.y251b_c00001{bottom:432.182227pt;}
.yaa8_c00001{bottom:432.267067pt;}
.y2b4d_c00001{bottom:432.269299pt;}
.y1ca7_c00001{bottom:432.320000pt;}
.y25ae_c00001{bottom:432.427067pt;}
.y9b1_c00001{bottom:432.427200pt;}
.y28cd_c00001{bottom:432.587067pt;}
.y2fd9_c00001{bottom:432.640000pt;}
.y1545_c00001{bottom:432.667067pt;}
.y159a_c00001{bottom:432.667147pt;}
.y343e_c00001{bottom:432.667200pt;}
.y3400_c00001{bottom:432.747200pt;}
.y1337_c00001{bottom:432.827200pt;}
.ybbf_c00001{bottom:432.830291pt;}
.yd6c_c00001{bottom:432.907147pt;}
.y8a2_c00001{bottom:432.907200pt;}
.y3274_c00001{bottom:432.960000pt;}
.y2a74_c00001{bottom:432.987200pt;}
.ya45_c00001{bottom:433.227067pt;}
.y151c_c00001{bottom:433.227360pt;}
.ydb7_c00001{bottom:433.307067pt;}
.y34fc_c00001{bottom:433.387067pt;}
.y35ed_c00001{bottom:433.465067pt;}
.y2a51_c00001{bottom:433.466675pt;}
.y55a_c00001{bottom:433.467067pt;}
.y337f_c00001{bottom:433.468819pt;}
.y3a26_c00001{bottom:433.631883pt;}
.y3252_c00001{bottom:433.778560pt;}
.y3598_c00001{bottom:433.784811pt;}
.y175b_c00001{bottom:433.787067pt;}
.y1e36_c00001{bottom:433.920000pt;}
.y303_c00001{bottom:433.947067pt;}
.y7af_c00001{bottom:433.947200pt;}
.y26e1_c00001{bottom:434.026675pt;}
.y30fe_c00001{bottom:434.080000pt;}
.y2be8_c00001{bottom:434.107200pt;}
.y14f4_c00001{bottom:434.187067pt;}
.y1f00_c00001{bottom:434.240000pt;}
.y26_c00001{bottom:434.267067pt;}
.y2cb7_c00001{bottom:434.346283pt;}
.y267a_c00001{bottom:434.427067pt;}
.y3c2_c00001{bottom:434.507067pt;}
.yf30_c00001{bottom:434.587067pt;}
.y2729_c00001{bottom:434.667200pt;}
.y2995_c00001{bottom:434.746744pt;}
.y185d_c00001{bottom:434.827067pt;}
.y28b3_c00001{bottom:434.827200pt;}
.y1605_c00001{bottom:434.907067pt;}
.y9da_c00001{bottom:435.067200pt;}
.y27d8_c00001{bottom:435.146019pt;}
.y3982_c00001{bottom:435.147067pt;}
.y53b_c00001{bottom:435.147200pt;}
.yfae_c00001{bottom:435.147827pt;}
.y1c32_c00001{bottom:435.200000pt;}
.y3788_c00001{bottom:435.307067pt;}
.yddd_c00001{bottom:435.310147pt;}
.y3191_c00001{bottom:435.360000pt;}
.y1bc_c00001{bottom:435.387067pt;}
.y2425_c00001{bottom:435.467067pt;}
.y1bec_c00001{bottom:435.520000pt;}
.y2074_c00001{bottom:435.545611pt;}
.y18c1_c00001{bottom:435.547067pt;}
.y121c_c00001{bottom:435.627144pt;}
.y18e0_c00001{bottom:435.707067pt;}
.y193f_c00001{bottom:435.840000pt;}
.y1b11_c00001{bottom:436.000000pt;}
.y136b_c00001{bottom:436.027067pt;}
.y2a19_c00001{bottom:436.027200pt;}
.y2bfe_c00001{bottom:436.107200pt;}
.y997_c00001{bottom:436.187200pt;}
.y390f_c00001{bottom:436.187355pt;}
.y2388_c00001{bottom:436.267067pt;}
.y22d4_c00001{bottom:436.345955pt;}
.y36c9_c00001{bottom:436.347067pt;}
.y258d_c00001{bottom:436.426267pt;}
.y6fd_c00001{bottom:436.427067pt;}
.y12ae_c00001{bottom:436.587067pt;}
.y8f0_c00001{bottom:436.667147pt;}
.y2fda_c00001{bottom:436.800000pt;}
.y232a_c00001{bottom:436.825299pt;}
.ycbf_c00001{bottom:436.827200pt;}
.y2dd7_c00001{bottom:436.960000pt;}
.y375e_c00001{bottom:437.067200pt;}
.yb77_c00001{bottom:437.145691pt;}
.ye06_c00001{bottom:437.386555pt;}
.y6e_c00001{bottom:437.387067pt;}
.y2f7e_c00001{bottom:437.440000pt;}
.y580_c00001{bottom:437.467067pt;}
.y23ab_c00001{bottom:437.546811pt;}
.y4c7_c00001{bottom:437.547067pt;}
.y17df_c00001{bottom:437.627067pt;}
.ya23_c00001{bottom:437.707067pt;}
.y2f40_c00001{bottom:437.760000pt;}
.y1645_c00001{bottom:437.787067pt;}
.ybe_c00001{bottom:437.867067pt;}
.y106d_c00001{bottom:437.947067pt;}
.y20e9_c00001{bottom:437.947200pt;}
.yc6e_c00001{bottom:438.028667pt;}
.y16de_c00001{bottom:438.107067pt;}
.y738_c00001{bottom:438.107200pt;}
.y1691_c00001{bottom:438.347067pt;}
.y2e97_c00001{bottom:438.400000pt;}
.y5d7_c00001{bottom:438.507067pt;}
.yf3e_c00001{bottom:438.507200pt;}
.y3742_c00001{bottom:438.509475pt;}
.y1d69_c00001{bottom:438.560000pt;}
.y3546_c00001{bottom:438.587576pt;}
.y227b_c00001{bottom:438.666347pt;}
.y2879_c00001{bottom:438.666411pt;}
.yb8c_c00001{bottom:438.666867pt;}
.y357e_c00001{bottom:438.667200pt;}
.y3121_c00001{bottom:438.720000pt;}
.y1882_c00001{bottom:438.747200pt;}
.y277_c00001{bottom:438.827200pt;}
.y3890_c00001{bottom:438.900307pt;}
.y2f0a_c00001{bottom:439.040000pt;}
.yabd_c00001{bottom:439.067200pt;}
.y186b_c00001{bottom:439.147067pt;}
.y38c_c00001{bottom:439.147200pt;}
.y1d36_c00001{bottom:439.200000pt;}
.y13c_c00001{bottom:439.227067pt;}
.y21ce_c00001{bottom:439.303315pt;}
.y265f_c00001{bottom:439.307067pt;}
.y10e2_c00001{bottom:439.386976pt;}
.y1275_c00001{bottom:439.387067pt;}
.y2820_c00001{bottom:439.387907pt;}
.y2940_c00001{bottom:439.467067pt;}
.y30d7_c00001{bottom:439.520000pt;}
.y772_c00001{bottom:439.547067pt;}
.yc96_c00001{bottom:439.548427pt;}
.y2e8_c00001{bottom:439.626267pt;}
.y1ea0_c00001{bottom:439.670080pt;}
.y263d_c00001{bottom:439.705827pt;}
.y2905_c00001{bottom:439.707067pt;}
.y1fe2_c00001{bottom:439.707200pt;}
.y414_c00001{bottom:439.787067pt;}
.y4dc_c00001{bottom:439.867067pt;}
.y10f8_c00001{bottom:439.869867pt;}
.y39ba_c00001{bottom:439.947200pt;}
.y1ba5_c00001{bottom:440.000000pt;}
.y611_c00001{bottom:440.027067pt;}
.y10ba_c00001{bottom:440.027200pt;}
.y23fa_c00001{bottom:440.267067pt;}
.y33dc_c00001{bottom:440.267683pt;}
.y5f8_c00001{bottom:440.347067pt;}
.y350_c00001{bottom:440.427067pt;}
.y1a29_c00001{bottom:440.640000pt;}
.y1630_c00001{bottom:440.667067pt;}
.y2765_c00001{bottom:440.749475pt;}
.y1997_c00001{bottom:440.800000pt;}
.y2183_c00001{bottom:440.907200pt;}
.y31e6_c00001{bottom:440.960000pt;}
.ye73_c00001{bottom:440.987200pt;}
.y367e_c00001{bottom:441.067200pt;}
.y3343_c00001{bottom:441.120000pt;}
.y844_c00001{bottom:441.147067pt;}
.y357d_c00001{bottom:441.147200pt;}
.y2b4c_c00001{bottom:441.148971pt;}
.y3a41_c00001{bottom:441.307067pt;}
.y1e72_c00001{bottom:441.454400pt;}
.y3495_c00001{bottom:441.467067pt;}
.y38b8_c00001{bottom:441.547067pt;}
.y18d_c00001{bottom:441.627067pt;}
.y1454_c00001{bottom:441.787067pt;}
.y168_c00001{bottom:441.867067pt;}
.y26fb_c00001{bottom:441.947200pt;}
.y4b5_c00001{bottom:442.027200pt;}
.y1db9_c00001{bottom:442.080000pt;}
.y1715_c00001{bottom:442.107067pt;}
.y29c3_c00001{bottom:442.265211pt;}
.yd49_c00001{bottom:442.346888pt;}
.y1ea_c00001{bottom:442.347067pt;}
.y38f0_c00001{bottom:442.427067pt;}
.ycef_c00001{bottom:442.427144pt;}
.y4a_c00001{bottom:442.507067pt;}
.y2d7e_c00001{bottom:442.560000pt;}
.y2475_c00001{bottom:442.587067pt;}
.y1bed_c00001{bottom:442.720000pt;}
.y2ce5_c00001{bottom:442.744907pt;}
.y285f_c00001{bottom:442.746267pt;}
.y38b9_c00001{bottom:442.747200pt;}
.y20c1_c00001{bottom:442.827200pt;}
.y960_c00001{bottom:442.827747pt;}
.y1ca5_c00001{bottom:442.880000pt;}
.y25d7_c00001{bottom:442.905499pt;}
.y420_c00001{bottom:442.987067pt;}
.ye5e_c00001{bottom:442.987200pt;}
.y32e0_c00001{bottom:443.040000pt;}
.y24b6_c00001{bottom:443.146083pt;}
.y92_c00001{bottom:443.147067pt;}
.y888_c00001{bottom:443.147200pt;}
.y297a_c00001{bottom:443.225003pt;}
.y2963_c00001{bottom:443.225827pt;}
.y29f7_c00001{bottom:443.226744pt;}
.y20ac_c00001{bottom:443.227067pt;}
.y327_c00001{bottom:443.307067pt;}
.y3513_c00001{bottom:443.467067pt;}
.y1b59_c00001{bottom:443.520000pt;}
.y872_c00001{bottom:443.547067pt;}
.y15d0_c00001{bottom:443.547147pt;}
.yb44_c00001{bottom:443.627067pt;}
.y30d8_c00001{bottom:443.680000pt;}
.y291e_c00001{bottom:443.707067pt;}
.y18a0_c00001{bottom:443.787067pt;}
.y1ab8_c00001{bottom:443.840000pt;}
.y94b_c00001{bottom:443.867067pt;}
.yc18_c00001{bottom:443.947067pt;}
.y1c33_c00001{bottom:444.000000pt;}
.ye35_c00001{bottom:444.028227pt;}
.y1e37_c00001{bottom:444.160000pt;}
.y2365_c00001{bottom:444.186499pt;}
.ya5d_c00001{bottom:444.187067pt;}
.yf09_c00001{bottom:444.187200pt;}
.yed_c00001{bottom:444.267067pt;}
.y2afc_c00001{bottom:444.346675pt;}
.y20aa_c00001{bottom:444.507067pt;}
.y13cb_c00001{bottom:444.587067pt;}
.y31e7_c00001{bottom:444.640000pt;}
.y511_c00001{bottom:444.667200pt;}
.y934_c00001{bottom:444.747200pt;}
.y269d_c00001{bottom:444.906667pt;}
.y2b98_c00001{bottom:444.907200pt;}
.y33b5_c00001{bottom:444.987200pt;}
.y36a0_c00001{bottom:444.989083pt;}
.y2acf_c00001{bottom:445.067200pt;}
.y213d_c00001{bottom:445.147200pt;}
.y2ab9_c00001{bottom:445.225976pt;}
.y2843_c00001{bottom:445.227067pt;}
.y2ec0_c00001{bottom:445.280000pt;}
.y16bb_c00001{bottom:445.307067pt;}
.y1b5b_c00001{bottom:445.440000pt;}
.y678_c00001{bottom:445.547067pt;}
.y3164_c00001{bottom:445.600000pt;}
.y215f_c00001{bottom:445.626744pt;}
.y45c_c00001{bottom:445.627067pt;}
.y3411_c00001{bottom:445.627195pt;}
.y1a71_c00001{bottom:445.760000pt;}
.yf9e_c00001{bottom:445.787067pt;}
.y261d_c00001{bottom:445.867067pt;}
.y30ff_c00001{bottom:445.920000pt;}
.ye53_c00001{bottom:445.947067pt;}
.y2347_c00001{bottom:446.026803pt;}
.y2459_c00001{bottom:446.027200pt;}
.yd1e_c00001{bottom:446.106811pt;}
.y2747_c00001{bottom:446.107200pt;}
.y12fb_c00001{bottom:446.187200pt;}
.y3054_c00001{bottom:446.240000pt;}
.y2a33_c00001{bottom:446.267067pt;}
.y34d1_c00001{bottom:446.425211pt;}
.y1537_c00001{bottom:446.427067pt;}
.y656_c00001{bottom:446.587067pt;}
.y39f8_c00001{bottom:446.667200pt;}
.y78a_c00001{bottom:446.747067pt;}
.y36fe_c00001{bottom:446.747200pt;}
.y6c0_c00001{bottom:446.827200pt;}
.y2ecb_c00001{bottom:446.880000pt;}
.y48c_c00001{bottom:446.907067pt;}
.y24d_c00001{bottom:446.987067pt;}
.y160f_c00001{bottom:446.987200pt;}
.y2e05_c00001{bottom:447.040000pt;}
.y2a8e_c00001{bottom:447.147200pt;}
.y3329_c00001{bottom:447.200000pt;}
.y17ff_c00001{bottom:447.227067pt;}
.y34fa_c00001{bottom:447.307067pt;}
.y3028_c00001{bottom:447.360000pt;}
.y3658_c00001{bottom:447.387243pt;}
.y2c73_c00001{bottom:447.464451pt;}
.y2e38_c00001{bottom:447.520000pt;}
.y253d_c00001{bottom:447.545067pt;}
.y3ea_c00001{bottom:447.547067pt;}
.y2809_c00001{bottom:447.627067pt;}
.y2ffb_c00001{bottom:447.680000pt;}
.y9c1_c00001{bottom:447.707067pt;}
.y3a25_c00001{bottom:447.711795pt;}
.y1198_c00001{bottom:447.786283pt;}
.y156d_c00001{bottom:447.787067pt;}
.y434_c00001{bottom:447.867067pt;}
.y33d5_c00001{bottom:447.867307pt;}
.y1826_c00001{bottom:447.947067pt;}
.y121b_c00001{bottom:447.947200pt;}
.y9fd_c00001{bottom:448.027200pt;}
.y2d1d_c00001{bottom:448.187067pt;}
.y1098_c00001{bottom:448.267067pt;}
.y1ff8_c00001{bottom:448.347067pt;}
.y380a_c00001{bottom:448.347131pt;}
.y345c_c00001{bottom:448.427067pt;}
.y143a_c00001{bottom:448.507067pt;}
.y1297_c00001{bottom:448.592107pt;}
.y3076_c00001{bottom:448.640000pt;}
.y16a9_c00001{bottom:448.747067pt;}
.y335e_c00001{bottom:448.800000pt;}
.y22ec_c00001{bottom:448.827200pt;}
.y1050_c00001{bottom:448.907200pt;}
.y24e9_c00001{bottom:449.142619pt;}
.y1842_c00001{bottom:449.147067pt;}
.yb58_c00001{bottom:449.227067pt;}
.y2d31_c00001{bottom:449.227840pt;}
.y178e_c00001{bottom:449.387067pt;}
.y193e_c00001{bottom:449.440000pt;}
.y112_c00001{bottom:449.547067pt;}
.y1599_c00001{bottom:449.547667pt;}
.y1eff_c00001{bottom:449.600000pt;}
.y2237_c00001{bottom:449.625107pt;}
.ye05_c00001{bottom:449.626811pt;}
.y2a8f_c00001{bottom:449.627067pt;}
.y12a6_c00001{bottom:449.704267pt;}
.y1cdb_c00001{bottom:449.760000pt;}
.yd6b_c00001{bottom:449.787067pt;}
.y6e1_c00001{bottom:449.867067pt;}
.y2563_c00001{bottom:449.947200pt;}
.y2b4b_c00001{bottom:449.948963pt;}
.y131c_c00001{bottom:449.951675pt;}
.y1db6_c00001{bottom:450.080000pt;}
.y151b_c00001{bottom:450.107280pt;}
.y3569_c00001{bottom:450.187200pt;}
.y390e_c00001{bottom:450.347067pt;}
.y3c1_c00001{bottom:450.427067pt;}
.y3099_c00001{bottom:450.560000pt;}
.y3251_c00001{bottom:450.574080pt;}
.y132b_c00001{bottom:450.668224pt;}
.y22b1_c00001{bottom:450.747200pt;}
.y1963_c00001{bottom:450.827200pt;}
.y208b_c00001{bottom:450.907200pt;}
.y8cb_c00001{bottom:450.907899pt;}
.y1852_c00001{bottom:450.987067pt;}
.y1e00_c00001{bottom:451.040000pt;}
.y1658_c00001{bottom:451.067067pt;}
.y388f_c00001{bottom:451.140563pt;}
.y2c9c_c00001{bottom:451.227067pt;}
.y37bb_c00001{bottom:451.307067pt;}
.y559_c00001{bottom:451.387067pt;}
.y25_c00001{bottom:451.467067pt;}
.y251a_c00001{bottom:451.542163pt;}
.y2bfd_c00001{bottom:451.626675pt;}
.y148c_c00001{bottom:451.627067pt;}
.y13ca_c00001{bottom:451.707067pt;}
.y2d0e_c00001{bottom:451.787067pt;}
.y1415_c00001{bottom:451.947067pt;}
.y2a73_c00001{bottom:451.947200pt;}
.y737_c00001{bottom:452.027200pt;}
.yfad_c00001{bottom:452.027747pt;}
.y1db5_c00001{bottom:452.160000pt;}
.y228_c00001{bottom:452.187067pt;}
.y33ff_c00001{bottom:452.187200pt;}
.yddc_c00001{bottom:452.190067pt;}
.y258c_c00001{bottom:452.266267pt;}
.y12f0_c00001{bottom:452.267067pt;}
.yc2f_c00001{bottom:452.347067pt;}
.y3388_c00001{bottom:452.427867pt;}
.yec0_c00001{bottom:452.587067pt;}
.y3741_c00001{bottom:452.589387pt;}
.y3545_c00001{bottom:452.747288pt;}
.y37a3_c00001{bottom:452.748579pt;}
.y2a50_c00001{bottom:452.826611pt;}
.y2c2b_c00001{bottom:452.827200pt;}
.y1f46_c00001{bottom:452.912923pt;}
.yf2f_c00001{bottom:452.987200pt;}
.y1996_c00001{bottom:453.120000pt;}
.y384d_c00001{bottom:453.226755pt;}
.y10fe_c00001{bottom:453.227067pt;}
.y1d34_c00001{bottom:453.280000pt;}
.y3960_c00001{bottom:453.307067pt;}
.y2728_c00001{bottom:453.385499pt;}
.y26e0_c00001{bottom:453.386611pt;}
.y2e7_c00001{bottom:453.386667pt;}
.y1336_c00001{bottom:453.386800pt;}
.y1bb_c00001{bottom:453.387067pt;}
.y1c5e_c00001{bottom:453.440000pt;}
.y3981_c00001{bottom:453.467067pt;}
.y281f_c00001{bottom:453.467819pt;}
.y53a_c00001{bottom:453.547067pt;}
.y1ba4_c00001{bottom:453.600000pt;}
.ybb9_c00001{bottom:453.627803pt;}
.y2cb6_c00001{bottom:453.706219pt;}
.y210f_c00001{bottom:453.706283pt;}
.y2387_c00001{bottom:453.706555pt;}
.ycbe_c00001{bottom:453.707067pt;}
.y1e71_c00001{bottom:453.771680pt;}
.y278a_c00001{bottom:453.787067pt;}
.yc48_c00001{bottom:453.867067pt;}
.y3077_c00001{bottom:453.920000pt;}
.y6fc_c00001{bottom:453.947200pt;}
.y11f3_c00001{bottom:454.027200pt;}
.yc6f_c00001{bottom:454.108763pt;}
.y299a_c00001{bottom:454.187200pt;}
.y3029_c00001{bottom:454.240000pt;}
.y2aad_c00001{bottom:454.347067pt;}
.ybc0_c00001{bottom:454.350579pt;}
.y2679_c00001{bottom:454.427067pt;}
.y27d7_c00001{bottom:454.505955pt;}
.y343d_c00001{bottom:454.507067pt;}
.y1a72_c00001{bottom:454.560000pt;}
.yd48_c00001{bottom:454.666944pt;}
.y3836_c00001{bottom:454.667200pt;}
.y1d35_c00001{bottom:454.720000pt;}
.ybd_c00001{bottom:454.747200pt;}
.y352d_c00001{bottom:454.822211pt;}
.y2424_c00001{bottom:454.827200pt;}
.y2764_c00001{bottom:454.829387pt;}
.y175a_c00001{bottom:454.907067pt;}
.y394f_c00001{bottom:454.907200pt;}
.y100d_c00001{bottom:454.907563pt;}
.y1e9f_c00001{bottom:455.035040pt;}
.y1d37_c00001{bottom:455.040000pt;}
.y2056_c00001{bottom:455.067067pt;}
.y2401_c00001{bottom:455.067200pt;}
.y34e5_c00001{bottom:455.147200pt;}
.y313d_c00001{bottom:455.200000pt;}
.y2dd6_c00001{bottom:455.360000pt;}
.y19dc_c00001{bottom:455.368960pt;}
.y5ab_c00001{bottom:455.387067pt;}
.y2994_c00001{bottom:455.467067pt;}
.y2dad_c00001{bottom:455.518720pt;}
.yc97_c00001{bottom:455.628659pt;}
.y22d3_c00001{bottom:455.705891pt;}
.ydb6_c00001{bottom:455.787067pt;}
.y57f_c00001{bottom:455.867067pt;}
.y17de_c00001{bottom:456.027067pt;}
.y2f3f_c00001{bottom:456.160000pt;}
.y2329_c00001{bottom:456.185235pt;}
.y106c_c00001{bottom:456.267067pt;}
.y5f7_c00001{bottom:456.347067pt;}
.y6a4_c00001{bottom:456.427067pt;}
.y1b5a_c00001{bottom:456.480000pt;}
.y2364_c00001{bottom:456.506555pt;}
.y20e8_c00001{bottom:456.587067pt;}
.y3201_c00001{bottom:456.609600pt;}
.y1abb_c00001{bottom:456.640000pt;}
.y18c0_c00001{bottom:456.667067pt;}
.y38b_c00001{bottom:456.667200pt;}
.y36e3_c00001{bottom:456.743147pt;}
.y39bb_c00001{bottom:456.747200pt;}
.y18df_c00001{bottom:456.827067pt;}
.y14ae_c00001{bottom:456.827200pt;}
.y5d6_c00001{bottom:456.907067pt;}
.y1384_c00001{bottom:456.907200pt;}
.y34bb_c00001{bottom:457.067200pt;}
.y771_c00001{bottom:457.147200pt;}
.y276_c00001{bottom:457.227067pt;}
.y1ecb_c00001{bottom:457.280000pt;}
.y3272_c00001{bottom:457.440000pt;}
.y186a_c00001{bottom:457.547067pt;}
.y1c5f_c00001{bottom:457.600000pt;}
.y2898_c00001{bottom:457.707067pt;}
.y3055_c00001{bottom:457.760000pt;}
.y5ac_c00001{bottom:457.867067pt;}
.y1fc6_c00001{bottom:457.947067pt;}
.y151d_c00001{bottom:457.947200pt;}
.y227a_c00001{bottom:458.026283pt;}
.y2878_c00001{bottom:458.026347pt;}
.y20c_c00001{bottom:458.027200pt;}
.y2904_c00001{bottom:458.107067pt;}
.y13b_c00001{bottom:458.187067pt;}
.y381d_c00001{bottom:458.187200pt;}
.yd1d_c00001{bottom:458.347067pt;}
.y32df_c00001{bottom:458.400000pt;}
.yb78_c00001{bottom:458.425499pt;}
.ybf5_c00001{bottom:458.427067pt;}
.y2b4_c00001{bottom:458.587067pt;}
.y21cd_c00001{bottom:458.663251pt;}
.y285e_c00001{bottom:458.666667pt;}
.y14d5_c00001{bottom:458.667200pt;}
.y27a7_c00001{bottom:458.747200pt;}
.y2b4a_c00001{bottom:458.748955pt;}
.y34f_c00001{bottom:458.827067pt;}
.y750_c00001{bottom:458.827200pt;}
.y2f7d_c00001{bottom:458.880000pt;}
.y2014_c00001{bottom:458.907067pt;}
.yaec_c00001{bottom:458.987067pt;}
.y242e_c00001{bottom:458.987200pt;}
.y2eca_c00001{bottom:459.040000pt;}
.y369f_c00001{bottom:459.068995pt;}
.y263c_c00001{bottom:459.146283pt;}
.y3997_c00001{bottom:459.147200pt;}
.y16dd_c00001{bottom:459.307067pt;}
.y265e_c00001{bottom:459.387067pt;}
.y2ffc_c00001{bottom:459.520000pt;}
.y95f_c00001{bottom:459.627147pt;}
.y23f9_c00001{bottom:459.707067pt;}
.y33db_c00001{bottom:459.708139pt;}
.yaa7_c00001{bottom:459.867067pt;}
.yb8d_c00001{bottom:459.946867pt;}
.y1e9_c00001{bottom:459.947147pt;}
.yd9b_c00001{bottom:459.947200pt;}
.y2fb3_c00001{bottom:460.000000pt;}
.y293f_c00001{bottom:460.026667pt;}
.y9b0_c00001{bottom:460.027200pt;}
.y1544_c00001{bottom:460.187067pt;}
.y28cc_c00001{bottom:460.187200pt;}
.ya96_c00001{bottom:460.267067pt;}
.y18c_c00001{bottom:460.347067pt;}
.y2bb1_c00001{bottom:460.426219pt;}
.y39b9_c00001{bottom:460.427067pt;}
.y15cf_c00001{bottom:460.427667pt;}
.y2e95_c00001{bottom:460.480000pt;}
.y167_c00001{bottom:460.507067pt;}
.y39f7_c00001{bottom:460.587067pt;}
.y1bea_c00001{bottom:460.640000pt;}
.y637_c00001{bottom:460.667200pt;}
.y2474_c00001{bottom:460.747075pt;}
.ya44_c00001{bottom:460.827067pt;}
.y326_c00001{bottom:460.827200pt;}
.ye34_c00001{bottom:460.908147pt;}
.y2d7d_c00001{bottom:460.960000pt;}
.y3862_c00001{bottom:461.067200pt;}
.y330b_c00001{bottom:461.280000pt;}
.y41f_c00001{bottom:461.387067pt;}
.y1d65_c00001{bottom:461.440000pt;}
.y1018_c00001{bottom:461.467067pt;}
.y203c_c00001{bottom:461.545467pt;}
.y91_c00001{bottom:461.547067pt;}
.y1ce1_c00001{bottom:461.600000pt;}
.y14f3_c00001{bottom:461.787067pt;}
.y3a24_c00001{bottom:461.791707pt;}
.ye04_c00001{bottom:461.867067pt;}
.y1c2f_c00001{bottom:461.920000pt;}
.y1e35_c00001{bottom:462.080000pt;}
.y2ce4_c00001{bottom:462.104843pt;}
.y3210_c00001{bottom:462.187067pt;}
.y2b3_c00001{bottom:462.187200pt;}
.y933_c00001{bottom:462.267067pt;}
.y25d6_c00001{bottom:462.345955pt;}
.y1ca6_c00001{bottom:462.400000pt;}
.y1fab_c00001{bottom:462.427067pt;}
.y24b5_c00001{bottom:462.506019pt;}
.y1604_c00001{bottom:462.507067pt;}
.y3328_c00001{bottom:462.560000pt;}
.y510_c00001{bottom:462.586811pt;}
.y871_c00001{bottom:462.587067pt;}
.y2979_c00001{bottom:462.665459pt;}
.y2962_c00001{bottom:462.666283pt;}
.y3657_c00001{bottom:462.667075pt;}
.y29f8_c00001{bottom:462.667200pt;}
.y2a32_c00001{bottom:462.827200pt;}
.y1274_c00001{bottom:462.827315pt;}
.y1db4_c00001{bottom:462.880000pt;}
.y677_c00001{bottom:463.067200pt;}
.y3719_c00001{bottom:463.146667pt;}
.y45b_c00001{bottom:463.147200pt;}
.y3293_c00001{bottom:463.200000pt;}
.y6bf_c00001{bottom:463.227067pt;}
.y1204_c00001{bottom:463.307067pt;}
.y388e_c00001{bottom:463.380819pt;}
.y23d0_c00001{bottom:463.387067pt;}
.y253c_c00001{bottom:463.465467pt;}
.y3512_c00001{bottom:463.547067pt;}
.y136a_c00001{bottom:463.627067pt;}
.y2842_c00001{bottom:463.627467pt;}
.y2ebf_c00001{bottom:463.680000pt;}
.y2afb_c00001{bottom:463.706611pt;}
.y1653_c00001{bottom:463.707067pt;}
.y2139_c00001{bottom:463.787067pt;}
.y1c30_c00001{bottom:463.840000pt;}
.y29f6_c00001{bottom:463.947200pt;}
.y2ace_c00001{bottom:464.027200pt;}
.y17a5_c00001{bottom:464.187067pt;}
.y2302_c00001{bottom:464.267067pt;}
.y887_c00001{bottom:464.347067pt;}
.y33b4_c00001{bottom:464.427067pt;}
.y2213_c00001{bottom:464.507067pt;}
.y2ab8_c00001{bottom:464.585912pt;}
.y2e96_c00001{bottom:464.640000pt;}
.y36c8_c00001{bottom:464.667200pt;}
.y261c_c00001{bottom:464.747200pt;}
.y33d4_c00001{bottom:464.747227pt;}
.y1efe_c00001{bottom:464.960000pt;}
.y6d_c00001{bottom:464.987067pt;}
.y3410_c00001{bottom:464.987131pt;}
.y3996_c00001{bottom:464.987200pt;}
.y1467_c00001{bottom:465.067200pt;}
.y2e03_c00001{bottom:465.120000pt;}
.y48b_c00001{bottom:465.147067pt;}
.y25fa_c00001{bottom:465.147200pt;}
.y345b_c00001{bottom:465.227067pt;}
.y2ca3_c00001{bottom:465.306219pt;}
.y12fa_c00001{bottom:465.307067pt;}
.y2346_c00001{bottom:465.386739pt;}
.y24c_c00001{bottom:465.387067pt;}
.y384c_c00001{bottom:465.467011pt;}
.y17d0_c00001{bottom:465.707067pt;}
.y2257_c00001{bottom:465.787067pt;}
.y30d6_c00001{bottom:465.920000pt;}
.y2386_c00001{bottom:465.946811pt;}
.y1690_c00001{bottom:465.947067pt;}
.y1e70_c00001{bottom:466.088960pt;}
.yf67_c00001{bottom:466.107067pt;}
.yf3d_c00001{bottom:466.107200pt;}
.y35ec_c00001{bottom:466.185467pt;}
.y3e9_c00001{bottom:466.187200pt;}
.y30fd_c00001{bottom:466.240000pt;}
.y433_c00001{bottom:466.267067pt;}
.y1598_c00001{bottom:466.347067pt;}
.y3597_c00001{bottom:466.584267pt;}
.y4b4_c00001{bottom:466.587067pt;}
.ye5d_c00001{bottom:466.667200pt;}
.y1d66_c00001{bottom:466.720000pt;}
.y3740_c00001{bottom:466.749099pt;}
.y2c72_c00001{bottom:466.824387pt;}
.y7ad_c00001{bottom:466.827200pt;}
.yd47_c00001{bottom:466.907200pt;}
.y151a_c00001{bottom:466.987667pt;}
.y311f_c00001{bottom:467.040000pt;}
.y1335_c00001{bottom:467.147200pt;}
.y1b0e_c00001{bottom:467.200000pt;}
.y2e6_c00001{bottom:467.226267pt;}
.y1197_c00001{bottom:467.226739pt;}
.y413_c00001{bottom:467.227067pt;}
.y2746_c00001{bottom:467.307067pt;}
.y111_c00001{bottom:467.387067pt;}
.y337e_c00001{bottom:467.388235pt;}
.y3250_c00001{bottom:467.531520pt;}
.yebf_c00001{bottom:467.547067pt;}
.y2b49_c00001{bottom:467.548947pt;}
.y610_c00001{bottom:467.627067pt;}
.y281e_c00001{bottom:467.627531pt;}
.y19db_c00001{bottom:467.686240pt;}
.yf08_c00001{bottom:467.707067pt;}
.y1964_c00001{bottom:467.707120pt;}
.y193d_c00001{bottom:467.840000pt;}
.y104f_c00001{bottom:467.947067pt;}
.y1beb_c00001{bottom:468.000000pt;}
.y1995_c00001{bottom:468.160000pt;}
.y258b_c00001{bottom:468.186667pt;}
.y1298_c00001{bottom:468.192563pt;}
.y2073_c00001{bottom:468.266011pt;}
.y1624_c00001{bottom:468.267067pt;}
.y1f5f_c00001{bottom:468.347067pt;}
.y17fe_c00001{bottom:468.427067pt;}
.y318f_c00001{bottom:468.480000pt;}
.y24e8_c00001{bottom:468.502555pt;}
.y2182_c00001{bottom:468.507067pt;}
.y13c9_c00001{bottom:468.587067pt;}
.ye72_c00001{bottom:468.667067pt;}
.y2363_c00001{bottom:468.746811pt;}
.y843_c00001{bottom:468.747067pt;}
.y3c0_c00001{bottom:468.827067pt;}
.yfac_c00001{bottom:468.827147pt;}
.y2763_c00001{bottom:468.909299pt;}
.y131d_c00001{bottom:468.912187pt;}
.y1dfd_c00001{bottom:468.960000pt;}
.y1f79_c00001{bottom:468.987067pt;}
.y2236_c00001{bottom:469.065563pt;}
.y6e0_c00001{bottom:469.067067pt;}
.yddb_c00001{bottom:469.069987pt;}
.y1825_c00001{bottom:469.147067pt;}
.yff8_c00001{bottom:469.227067pt;}
.y2e04_c00001{bottom:469.280000pt;}
.y12a7_c00001{bottom:469.306667pt;}
.y4db_c00001{bottom:469.387067pt;}
.y1abd_c00001{bottom:469.440000pt;}
.y2808_c00001{bottom:469.467067pt;}
.y2473_c00001{bottom:469.547067pt;}
.y3568_c00001{bottom:469.627067pt;}
.y132c_c00001{bottom:469.628736pt;}
.y3776_c00001{bottom:469.787443pt;}
.y2aac_c00001{bottom:469.947131pt;}
.y558_c00001{bottom:470.027067pt;}
.y49_c00001{bottom:470.107067pt;}
.yc70_c00001{bottom:470.188859pt;}
.y996_c00001{bottom:470.267067pt;}
.y1841_c00001{bottom:470.347067pt;}
.y1e9e_c00001{bottom:470.400000pt;}
.y3787_c00001{bottom:470.427067pt;}
.yac8_c00001{bottom:470.587067pt;}
.y2be7_c00001{bottom:470.667067pt;}
.y1c31_c00001{bottom:470.720000pt;}
.y815_c00001{bottom:470.747067pt;}
.y14ad_c00001{bottom:470.827067pt;}
.y7fe_c00001{bottom:470.907067pt;}
.y2519_c00001{bottom:470.982619pt;}
.y106b_c00001{bottom:470.987067pt;}
.y313e_c00001{bottom:471.040000pt;}
.y2bfc_c00001{bottom:471.067131pt;}
.y3120_c00001{bottom:471.200000pt;}
.yb43_c00001{bottom:471.227067pt;}
.y2c54_c00001{bottom:471.306667pt;}
.y37ba_c00001{bottom:471.387067pt;}
.y8ca_c00001{bottom:471.387795pt;}
.y6fb_c00001{bottom:471.467067pt;}
.ybc_c00001{bottom:471.547067pt;}
.y24_c00001{bottom:471.547155pt;}
.y185c_c00001{bottom:471.627067pt;}
.y1dfe_c00001{bottom:471.680000pt;}
.y22b0_c00001{bottom:471.707067pt;}
.yc98_c00001{bottom:471.708891pt;}
.y1ba_c00001{bottom:471.787067pt;}
.yec_c00001{bottom:471.867067pt;}
.y539_c00001{bottom:471.947067pt;}
.y3200_c00001{bottom:471.974560pt;}
.y1ba3_c00001{bottom:472.000000pt;}
.y208a_c00001{bottom:472.027067pt;}
.y20e7_c00001{bottom:472.106611pt;}
.y343c_c00001{bottom:472.107067pt;}
.yd9a_c00001{bottom:472.187067pt;}
.ycee_c00001{bottom:472.267067pt;}
.y28ee_c00001{bottom:472.347067pt;}
.y2a72_c00001{bottom:472.427067pt;}
.y1a6f_c00001{bottom:472.480000pt;}
.y736_c00001{bottom:472.507067pt;}
.y1eca_c00001{bottom:472.640000pt;}
.yb11_c00001{bottom:472.667067pt;}
.y3980_c00001{bottom:472.747067pt;}
.y2dac_c00001{bottom:472.800000pt;}
.y2727_c00001{bottom:472.825955pt;}
.y21ef_c00001{bottom:472.827067pt;}
.y5aa_c00001{bottom:472.907067pt;}
.y10f9_c00001{bottom:472.987067pt;}
.y210e_c00001{bottom:473.066219pt;}
.y23aa_c00001{bottom:473.067067pt;}
.y2ec9_c00001{bottom:473.120000pt;}
.y2cb5_c00001{bottom:473.146675pt;}
.y369e_c00001{bottom:473.148907pt;}
.y100c_c00001{bottom:473.307315pt;}
.y17bb_c00001{bottom:473.387067pt;}
.yf9d_c00001{bottom:473.467067pt;}
.y2a4f_c00001{bottom:473.547067pt;}
.y2c55_c00001{bottom:473.627067pt;}
.y2dd5_c00001{bottom:473.760000pt;}
.y27d6_c00001{bottom:473.865891pt;}
.y1536_c00001{bottom:474.027067pt;}
.y26df_c00001{bottom:474.107067pt;}
.y38a_c00001{bottom:474.187067pt;}
.y2993_c00001{bottom:474.266803pt;}
.y1f1d_c00001{bottom:474.267067pt;}
.y2b81_c00001{bottom:474.347067pt;}
.y1f45_c00001{bottom:474.352651pt;}
.y285d_c00001{bottom:474.506667pt;}
.y57e_c00001{bottom:474.507067pt;}
.y2f3e_c00001{bottom:474.560000pt;}
.y28e0_c00001{bottom:474.587067pt;}
.y770_c00001{bottom:474.667067pt;}
.y3835_c00001{bottom:474.747067pt;}
.y50f_c00001{bottom:474.827067pt;}
.y1b58_c00001{bottom:474.880000pt;}
.y242d_c00001{bottom:474.907067pt;}
.y29c2_c00001{bottom:474.985611pt;}
.y22d2_c00001{bottom:475.065827pt;}
.y390d_c00001{bottom:475.147067pt;}
.y2789_c00001{bottom:475.227067pt;}
.ybba_c00001{bottom:475.228251pt;}
.y5d5_c00001{bottom:475.307067pt;}
.yf59_c00001{bottom:475.467067pt;}
.y2328_c00001{bottom:475.545171pt;}
.y2a18_c00001{bottom:475.547067pt;}
.yd1c_c00001{bottom:475.627067pt;}
.ye03_c00001{bottom:475.627827pt;}
.y1c5c_c00001{bottom:475.680000pt;}
.y388d_c00001{bottom:475.700875pt;}
.y2d1c_c00001{bottom:475.787067pt;}
.y3271_c00001{bottom:475.840000pt;}
.y293e_c00001{bottom:475.866667pt;}
.y275_c00001{bottom:475.867067pt;}
.y1869_c00001{bottom:475.947067pt;}
.ybc1_c00001{bottom:475.951027pt;}
.y3a23_c00001{bottom:475.951419pt;}
.y1759_c00001{bottom:476.107067pt;}
.yd6a_c00001{bottom:476.187067pt;}
.y2055_c00001{bottom:476.267067pt;}
.ybf4_c00001{bottom:476.347067pt;}
.y2b48_c00001{bottom:476.348939pt;}
.y330a_c00001{bottom:476.480000pt;}
.y95e_c00001{bottom:476.507067pt;}
.y13a_c00001{bottom:476.587067pt;}
.y636_c00001{bottom:476.667067pt;}
.y166_c00001{bottom:476.747067pt;}
.y2fd7_c00001{bottom:476.800000pt;}
.y1e8_c00001{bottom:476.827067pt;}
.y3098_c00001{bottom:476.960000pt;}
.y2ae3_c00001{bottom:476.987067pt;}
.y17dd_c00001{bottom:477.067067pt;}
.y3027_c00001{bottom:477.120000pt;}
.y38b7_c00001{bottom:477.147067pt;}
.y34e_c00001{bottom:477.227067pt;}
.y2ff9_c00001{bottom:477.440000pt;}
.y20a9_c00001{bottom:477.465955pt;}
.y2279_c00001{bottom:477.466739pt;}
.y2877_c00001{bottom:477.466803pt;}
.y5f6_c00001{bottom:477.467067pt;}
.y35d5_c00001{bottom:477.547067pt;}
.y2b2_c00001{bottom:477.627067pt;}
.y2897_c00001{bottom:477.787067pt;}
.ye33_c00001{bottom:477.788067pt;}
.yf46_c00001{bottom:477.867067pt;}
.y1d30_c00001{bottom:477.920000pt;}
.y74f_c00001{bottom:478.027067pt;}
.y1ce0_c00001{bottom:478.080000pt;}
.y21cc_c00001{bottom:478.103707pt;}
.y12eb_c00001{bottom:478.187067pt;}
.y1e6f_c00001{bottom:478.245440pt;}
.y18b_c00001{bottom:478.347067pt;}
.y32b9_c00001{bottom:478.400000pt;}
.y263b_c00001{bottom:478.506219pt;}
.y1657_c00001{bottom:478.587067pt;}
.y2f7c_c00001{bottom:478.720000pt;}
.y2e37_c00001{bottom:478.880000pt;}
.y339d_c00001{bottom:478.907067pt;}
.y23cf_c00001{bottom:478.986019pt;}
.y313f_c00001{bottom:479.040000pt;}
.y23f8_c00001{bottom:479.067067pt;}
.y33da_c00001{bottom:479.068075pt;}
.y34d0_c00001{bottom:479.145611pt;}
.y2f08_c00001{bottom:479.200000pt;}
.y148b_c00001{bottom:479.227067pt;}
.y253b_c00001{bottom:479.305467pt;}
.y213a_c00001{bottom:479.307067pt;}
.y2d7c_c00001{bottom:479.360000pt;}
.y2492_c00001{bottom:479.387067pt;}
.y265d_c00001{bottom:479.467067pt;}
.y1414_c00001{bottom:479.547067pt;}
.y6a3_c00001{bottom:479.627067pt;}
.yb79_c00001{bottom:479.785467pt;}
.y227_c00001{bottom:479.787067pt;}
.y1c5d_c00001{bottom:479.840000pt;}
.y19da_c00001{bottom:479.842720pt;}
.y2bb0_c00001{bottom:479.866675pt;}
.y37f1_c00001{bottom:479.867067pt;}
.y367_c00001{bottom:479.947067pt;}
.y3162_c00001{bottom:480.000000pt;}
.y27bc_c00001{bottom:480.107067pt;}
.y38ed_c00001{bottom:480.187067pt;}
.y37a2_c00001{bottom:480.188075pt;}
.y1ca1_c00001{bottom:480.320000pt;}
.y367d_c00001{bottom:480.347067pt;}
.y1383_c00001{bottom:480.427067pt;}
.y676_c00001{bottom:480.587067pt;}
.y3053_c00001{bottom:480.640000pt;}
.y45a_c00001{bottom:480.747067pt;}
.y1dff_c00001{bottom:480.800000pt;}
.y10fd_c00001{bottom:480.827067pt;}
.y373f_c00001{bottom:480.829011pt;}
.ye71_c00001{bottom:480.907067pt;}
.y318e_c00001{bottom:480.960000pt;}
.y2e5_c00001{bottom:480.986667pt;}
.y2362_c00001{bottom:480.987067pt;}
.y1881_c00001{bottom:481.067067pt;}
.y2fd8_c00001{bottom:481.120000pt;}
.y2c2c_c00001{bottom:481.147067pt;}
.y6be_c00001{bottom:481.227067pt;}
.y1a70_c00001{bottom:481.280000pt;}
.yb8e_c00001{bottom:481.306667pt;}
.y29f4_c00001{bottom:481.307067pt;}
.y2f00_c00001{bottom:481.440000pt;}
.yc47_c00001{bottom:481.467067pt;}
.y14d4_c00001{bottom:481.467147pt;}
.y2ce3_c00001{bottom:481.545299pt;}
.y870_c00001{bottom:481.627067pt;}
.y33d3_c00001{bottom:481.627147pt;}
.y25d5_c00001{bottom:481.705891pt;}
.y3e8_c00001{bottom:481.707067pt;}
.y281d_c00001{bottom:481.707443pt;}
.y3a40_c00001{bottom:481.787067pt;}
.y24b4_c00001{bottom:481.865955pt;}
.y1fe1_c00001{bottom:481.867067pt;}
.y2978_c00001{bottom:482.025395pt;}
.y2961_c00001{bottom:482.026219pt;}
.y38fd_c00001{bottom:482.027067pt;}
.y2ebe_c00001{bottom:482.080000pt;}
.y156c_c00001{bottom:482.107067pt;}
.y21a1_c00001{bottom:482.108667pt;}
.y14ac_c00001{bottom:482.187259pt;}
.y3075_c00001{bottom:482.240000pt;}
.y394e_c00001{bottom:482.507067pt;}
.y17a4_c00001{bottom:482.667067pt;}
.y7d7_c00001{bottom:482.987067pt;}
.y1d32_c00001{bottom:483.040000pt;}
.y2452_c00001{bottom:483.067067pt;}
.y2762_c00001{bottom:483.069011pt;}
.y2afa_c00001{bottom:483.147067pt;}
.y31b8_c00001{bottom:483.200000pt;}
.y37e1_c00001{bottom:483.227067pt;}
.y2678_c00001{bottom:483.307067pt;}
.y1d33_c00001{bottom:483.360000pt;}
.y655_c00001{bottom:483.387067pt;}
.y2212_c00001{bottom:483.467067pt;}
.y31ba_c00001{bottom:483.520000pt;}
.y48a_c00001{bottom:483.547067pt;}
.y215d_c00001{bottom:483.707067pt;}
.y1519_c00001{bottom:483.787067pt;}
.y30d5_c00001{bottom:483.840000pt;}
.y291d_c00001{bottom:483.867067pt;}
.y3775_c00001{bottom:483.867355pt;}
.y3609_c00001{bottom:483.947067pt;}
.y1597_c00001{bottom:483.947147pt;}
.y2e64_c00001{bottom:484.000000pt;}
.y2ab7_c00001{bottom:484.026368pt;}
.y258a_c00001{bottom:484.026667pt;}
.y24b_c00001{bottom:484.027067pt;}
.y36fd_c00001{bottom:484.107067pt;}
.y36e2_c00001{bottom:484.183707pt;}
.yd46_c00001{bottom:484.187067pt;}
.y324f_c00001{bottom:484.327040pt;}
.y26c5_c00001{bottom:484.347067pt;}
.yd99_c00001{bottom:484.427067pt;}
.y886_c00001{bottom:484.507067pt;}
.y25f9_c00001{bottom:484.587067pt;}
.y1a27_c00001{bottom:484.640000pt;}
.y432_c00001{bottom:484.667067pt;}
.y2c9b_c00001{bottom:484.746675pt;}
.y7ac_c00001{bottom:484.827067pt;}
.y2345_c00001{bottom:484.827195pt;}
.yabc_c00001{bottom:485.067067pt;}
.y2e94_c00001{bottom:485.126240pt;}
.yebe_c00001{bottom:485.227067pt;}
.y2b47_c00001{bottom:485.228611pt;}
.y261b_c00001{bottom:485.307067pt;}
.y4da_c00001{bottom:485.387067pt;}
.y1962_c00001{bottom:485.467067pt;}
.y335d_c00001{bottom:485.600000pt;}
.y23_c00001{bottom:485.627067pt;}
.yfab_c00001{bottom:485.707067pt;}
.y381c_c00001{bottom:485.787067pt;}
.y352c_c00001{bottom:485.861499pt;}
.y1be9_c00001{bottom:485.920000pt;}
.ydda_c00001{bottom:485.949907pt;}
.yea4_c00001{bottom:486.027067pt;}
.y1db0_c00001{bottom:486.080000pt;}
.y189f_c00001{bottom:486.107067pt;}
.y3931_c00001{bottom:486.187067pt;}
.y193c_c00001{bottom:486.240000pt;}
.y2c82_c00001{bottom:486.261915pt;}
.y2c71_c00001{bottom:486.264843pt;}
.y173d_c00001{bottom:486.267067pt;}
.yc71_c00001{bottom:486.268955pt;}
.y2d30_c00001{bottom:486.347067pt;}
.y20b_c00001{bottom:486.427067pt;}
.y1196_c00001{bottom:486.586675pt;}
.yaeb_c00001{bottom:486.587067pt;}
.y2b16_c00001{bottom:486.664912pt;}
.y2dab_c00001{bottom:486.720000pt;}
.y110_c00001{bottom:486.747067pt;}
.y31bb_c00001{bottom:486.880000pt;}
.y557_c00001{bottom:486.907067pt;}
.y2256_c00001{bottom:486.987067pt;}
.y3342_c00001{bottom:487.040000pt;}
.y104e_c00001{bottom:487.067067pt;}
.y2e01_c00001{bottom:487.200000pt;}
.y156b_c00001{bottom:487.226883pt;}
.y7ae_c00001{bottom:487.307067pt;}
.y369d_c00001{bottom:487.308619pt;}
.y31ff_c00001{bottom:487.339520pt;}
.y1ab3_c00001{bottom:487.360000pt;}
.yf3c_c00001{bottom:487.387067pt;}
.y165_c00001{bottom:487.467067pt;}
.y2181_c00001{bottom:487.627067pt;}
.ya6d_c00001{bottom:487.786811pt;}
.y1466_c00001{bottom:487.787067pt;}
.yc99_c00001{bottom:487.789123pt;}
.y1299_c00001{bottom:487.793019pt;}
.y131e_c00001{bottom:487.872699pt;}
.y388c_c00001{bottom:487.941131pt;}
.y24e7_c00001{bottom:487.943011pt;}
.y3786_c00001{bottom:487.947067pt;}
.y1db2_c00001{bottom:488.000000pt;}
.y50e_c00001{bottom:488.347067pt;}
.y2235_c00001{bottom:488.425499pt;}
.y2d0d_c00001{bottom:488.426667pt;}
.ybb_c00001{bottom:488.427067pt;}
.y132d_c00001{bottom:488.589248pt;}
.y1c2c_c00001{bottom:488.640000pt;}
.y2296_c00001{bottom:488.747067pt;}
.y12a8_c00001{bottom:488.906267pt;}
.ybf3_c00001{bottom:488.907067pt;}
.y6fa_c00001{bottom:488.987067pt;}
.y1017_c00001{bottom:489.067067pt;}
.y32de_c00001{bottom:489.120000pt;}
.y90_c00001{bottom:489.147067pt;}
.y2ffa_c00001{bottom:489.280000pt;}
.y5a9_c00001{bottom:489.307067pt;}
.y2562_c00001{bottom:489.386667pt;}
.yced_c00001{bottom:489.467067pt;}
.ye52_c00001{bottom:489.547067pt;}
.y1d63_c00001{bottom:489.600000pt;}
.y390c_c00001{bottom:489.627067pt;}
.y320f_c00001{bottom:489.787067pt;}
.y1141_c00001{bottom:489.867067pt;}
.y735_c00001{bottom:490.027067pt;}
.y3a22_c00001{bottom:490.031331pt;}
.y3e7_c00001{bottom:490.107067pt;}
.yf07_c00001{bottom:490.187067pt;}
.y1b56_c00001{bottom:490.240000pt;}
.y1824_c00001{bottom:490.267067pt;}
.y2518_c00001{bottom:490.342555pt;}
.y285c_c00001{bottom:490.346667pt;}
.y538_c00001{bottom:490.347067pt;}
.y1e33_c00001{bottom:490.400000pt;}
.y1b9_c00001{bottom:490.427067pt;}
.y1c2d_c00001{bottom:490.560000pt;}
.y1e6e_c00001{bottom:490.562720pt;}
.yf2e_c00001{bottom:490.587067pt;}
.y2b1_c00001{bottom:490.747067pt;}
.yb10_c00001{bottom:490.827067pt;}
.y1ab5_c00001{bottom:490.880000pt;}
.y2807_c00001{bottom:490.907067pt;}
.y38b6_c00001{bottom:491.067067pt;}
.y1ba2_c00001{bottom:491.200000pt;}
.y1369_c00001{bottom:491.227067pt;}
.y1652_c00001{bottom:491.307067pt;}
.y2e02_c00001{bottom:491.360000pt;}
.y2a70_c00001{bottom:491.387067pt;}
.y1840_c00001{bottom:491.467067pt;}
.y412_c00001{bottom:491.547067pt;}
.y2bcf_c00001{bottom:491.627067pt;}
.y293d_c00001{bottom:491.706667pt;}
.y389_c00001{bottom:491.707067pt;}
.y8c9_c00001{bottom:491.867691pt;}
.y22eb_c00001{bottom:491.947067pt;}
.y1b57_c00001{bottom:492.000000pt;}
.y11bd_c00001{bottom:492.107067pt;}
.y19d9_c00001{bottom:492.160000pt;}
.y2726_c00001{bottom:492.185891pt;}
.y76f_c00001{bottom:492.187067pt;}
.y1031_c00001{bottom:492.267067pt;}
.y57d_c00001{bottom:492.427067pt;}
.ye02_c00001{bottom:492.427227pt;}
.y2cb4_c00001{bottom:492.506611pt;}
.y210d_c00001{bottom:492.506675pt;}
.y6c_c00001{bottom:492.587067pt;}
.y2f80_c00001{bottom:492.640000pt;}
.y635_c00001{bottom:492.667067pt;}
.y4c6_c00001{bottom:492.747067pt;}
.y2ec8_c00001{bottom:492.800000pt;}
.y274_c00001{bottom:492.827067pt;}
.y26de_c00001{bottom:492.906411pt;}
.y29d7_c00001{bottom:492.906667pt;}
.y2f3d_c00001{bottom:492.960000pt;}
.y1994_c00001{bottom:493.120000pt;}
.ye70_c00001{bottom:493.147067pt;}
.y3327_c00001{bottom:493.280000pt;}
.y27d5_c00001{bottom:493.306347pt;}
.y1851_c00001{bottom:493.307067pt;}
.y168f_c00001{bottom:493.547067pt;}
.y30fb_c00001{bottom:493.600000pt;}
.y2992_c00001{bottom:493.626739pt;}
.y13c8_c00001{bottom:493.627067pt;}
.y5d4_c00001{bottom:493.707067pt;}
.y2eff_c00001{bottom:493.760000pt;}
.y325_c00001{bottom:493.787067pt;}
.y2089_c00001{bottom:493.867067pt;}
.y343b_c00001{bottom:493.947067pt;}
.y9fc_c00001{bottom:494.027067pt;}
.yac7_c00001{bottom:494.027315pt;}
.y2b46_c00001{bottom:494.028603pt;}
.y3270_c00001{bottom:494.240000pt;}
.y203b_c00001{bottom:494.265867pt;}
.y1e7_c00001{bottom:494.267067pt;}
.y21ee_c00001{bottom:494.267131pt;}
.y22d1_c00001{bottom:494.506283pt;}
.y17ba_c00001{bottom:494.507067pt;}
.ye32_c00001{bottom:494.667987pt;}
.y4b2_c00001{bottom:494.747067pt;}
.y2e4_c00001{bottom:494.826267pt;}
.y3834_c00001{bottom:494.827067pt;}
.y3097_c00001{bottom:494.880000pt;}
.y2903_c00001{bottom:494.907067pt;}
.y373e_c00001{bottom:494.908923pt;}
.y2327_c00001{bottom:494.985627pt;}
.y39f6_c00001{bottom:494.987067pt;}
.y1d64_c00001{bottom:495.040000pt;}
.yc17_c00001{bottom:495.067067pt;}
.y253a_c00001{bottom:495.145467pt;}
.y6a2_c00001{bottom:495.147067pt;}
.y60f_c00001{bottom:495.227067pt;}
.y139_c00001{bottom:495.307067pt;}
.y1b0c_c00001{bottom:495.360000pt;}
.y34d_c00001{bottom:495.627067pt;}
.y1efd_c00001{bottom:495.680000pt;}
.y1f1c_c00001{bottom:495.707459pt;}
.y281c_c00001{bottom:495.787355pt;}
.y1623_c00001{bottom:495.867067pt;}
.y1f44_c00001{bottom:495.872531pt;}
.y2a17_c00001{bottom:496.027067pt;}
.y269b_c00001{bottom:496.267067pt;}
.y3163_c00001{bottom:496.320000pt;}
.y842_c00001{bottom:496.347067pt;}
.y74e_c00001{bottom:496.427067pt;}
.y16ba_c00001{bottom:496.427315pt;}
.y34ba_c00001{bottom:496.507067pt;}
.y95d_c00001{bottom:496.587067pt;}
.yff7_c00001{bottom:496.667067pt;}
.y18a_c00001{bottom:496.747067pt;}
.ybbb_c00001{bottom:496.748539pt;}
.y29f3_c00001{bottom:496.824843pt;}
.y20a8_c00001{bottom:496.825891pt;}
.y2278_c00001{bottom:496.826675pt;}
.y2876_c00001{bottom:496.826739pt;}
.y347c_c00001{bottom:496.827067pt;}
.y1453_c00001{bottom:496.987067pt;}
.y35d4_c00001{bottom:497.066603pt;}
.y2761_c00001{bottom:497.148923pt;}
.y4b3_c00001{bottom:497.227067pt;}
.y932_c00001{bottom:497.307067pt;}
.y2b82_c00001{bottom:497.387067pt;}
.y1c2e_c00001{bottom:497.440000pt;}
.y2e93_c00001{bottom:497.443520pt;}
.y21cb_c00001{bottom:497.463643pt;}
.y21c0_c00001{bottom:497.465107pt;}
.y22af_c00001{bottom:497.467067pt;}
.ybc2_c00001{bottom:497.551475pt;}
.y2f46_c00001{bottom:497.600000pt;}
.y357c_c00001{bottom:497.627067pt;}
.y48_c00001{bottom:497.707067pt;}
.y1ab7_c00001{bottom:497.760000pt;}
.y265c_c00001{bottom:497.787067pt;}
.y2896_c00001{bottom:497.867067pt;}
.y263a_c00001{bottom:497.946675pt;}
.y3774_c00001{bottom:498.027067pt;}
.y675_c00001{bottom:498.107067pt;}
.y41e_c00001{bottom:498.187067pt;}
.y35ad_c00001{bottom:498.187443pt;}
.y1a26_c00001{bottom:498.240000pt;}
.y459_c00001{bottom:498.267067pt;}
.y23ce_c00001{bottom:498.345955pt;}
.y366_c00001{bottom:498.347067pt;}
.y14d3_c00001{bottom:498.347667pt;}
.y1d31_c00001{bottom:498.400000pt;}
.y7fd_c00001{bottom:498.507067pt;}
.y33d9_c00001{bottom:498.508531pt;}
.y5f5_c00001{bottom:498.667067pt;}
.y6bd_c00001{bottom:498.747067pt;}
.y1db1_c00001{bottom:498.880000pt;}
.y35eb_c00001{bottom:498.905867pt;}
.y3718_c00001{bottom:498.907067pt;}
.y18bf_c00001{bottom:498.987067pt;}
.y1b0d_c00001{bottom:499.040000pt;}
.y18de_c00001{bottom:499.147067pt;}
.y1a6d_c00001{bottom:499.200000pt;}
.y2baf_c00001{bottom:499.226611pt;}
.yd98_c00001{bottom:499.227067pt;}
.y215c_c00001{bottom:499.227131pt;}
.y3596_c00001{bottom:499.304667pt;}
.y2138_c00001{bottom:499.386739pt;}
.ya5c_c00001{bottom:499.387067pt;}
.yeb_c00001{bottom:499.467067pt;}
.y2b97_c00001{bottom:499.627067pt;}
.yd69_c00001{bottom:499.707067pt;}
.y33d2_c00001{bottom:499.787067pt;}
.y1ca4_c00001{bottom:499.840000pt;}
.y2589_c00001{bottom:499.866667pt;}
.y28ed_c00001{bottom:499.947067pt;}
.ya6c_c00001{bottom:500.027067pt;}
.y556_c00001{bottom:500.107067pt;}
.y388b_c00001{bottom:500.181387pt;}
.y27bb_c00001{bottom:500.187067pt;}
.y1880_c00001{bottom:500.267443pt;}
.yf45_c00001{bottom:500.347067pt;}
.y2d58_c00001{bottom:500.356320pt;}
.y2ebd_c00001{bottom:500.480000pt;}
.y3608_c00001{bottom:500.506499pt;}
.y15ce_c00001{bottom:500.587067pt;}
.y261a_c00001{bottom:500.587531pt;}
.y1334_c00001{bottom:500.667067pt;}
.y86f_c00001{bottom:500.747067pt;}
.y1e34_c00001{bottom:500.800000pt;}
.y22_c00001{bottom:500.827067pt;}
.y1596_c00001{bottom:500.827667pt;}
.y2ce2_c00001{bottom:500.905235pt;}
.yf9c_c00001{bottom:500.907067pt;}
.y2072_c00001{bottom:500.986411pt;}
.y1776_c00001{bottom:500.987067pt;}
.yb7a_c00001{bottom:501.065275pt;}
.y25d4_c00001{bottom:501.065827pt;}
.y17a3_c00001{bottom:501.067067pt;}
.y324e_c00001{bottom:501.122560pt;}
.y3292_c00001{bottom:501.124480pt;}
.y24b3_c00001{bottom:501.306411pt;}
.y337d_c00001{bottom:501.307651pt;}
.y4d9_c00001{bottom:501.387067pt;}
.y1518_c00001{bottom:501.387147pt;}
.y369c_c00001{bottom:501.388531pt;}
.y2977_c00001{bottom:501.465851pt;}
.y2960_c00001{bottom:501.466675pt;}
.y14ab_c00001{bottom:501.547195pt;}
.y1535_c00001{bottom:501.627067pt;}
.y1e9d_c00001{bottom:501.760000pt;}
.y27a6_c00001{bottom:501.787067pt;}
.y1c5b_c00001{bottom:501.920000pt;}
.y24a_c00001{bottom:501.947067pt;}
.y20c0_c00001{bottom:502.187067pt;}
.y1cdf_c00001{bottom:502.240000pt;}
.y7ab_c00001{bottom:502.347067pt;}
.yc72_c00001{bottom:502.349051pt;}
.y3341_c00001{bottom:502.400000pt;}
.y2451_c00001{bottom:502.427067pt;}
.yb8f_c00001{bottom:502.586667pt;}
.y2400_c00001{bottom:502.667067pt;}
.y31fe_c00001{bottom:502.704480pt;}
.y489_c00001{bottom:502.827067pt;}
.y2b45_c00001{bottom:502.828595pt;}
.ydd9_c00001{bottom:502.829827pt;}
.y1e6d_c00001{bottom:502.880000pt;}
.y9c0_c00001{bottom:502.907067pt;}
.y2e63_c00001{bottom:503.040000pt;}
.y431_c00001{bottom:503.067067pt;}
.y14f2_c00001{bottom:503.147067pt;}
.y2fd6_c00001{bottom:503.200000pt;}
.y33b3_c00001{bottom:503.227067pt;}
.y37e0_c00001{bottom:503.307067pt;}
.y1ec9_c00001{bottom:503.360000pt;}
.y2ab6_c00001{bottom:503.386304pt;}
.y28df_c00001{bottom:503.387067pt;}
.y2acc_c00001{bottom:503.467067pt;}
.y2e36_c00001{bottom:503.526240pt;}
.y1ff7_c00001{bottom:503.547067pt;}
.y3511_c00001{bottom:503.627067pt;}
.ya43_c00001{bottom:503.787067pt;}
.y1961_c00001{bottom:503.867067pt;}
.yc9a_c00001{bottom:503.869355pt;}
.ybf2_c00001{bottom:503.947067pt;}
.y1db3_c00001{bottom:504.000000pt;}
.y734_c00001{bottom:504.027067pt;}
.y2c9a_c00001{bottom:504.106611pt;}
.y156a_c00001{bottom:504.106803pt;}
.y3a21_c00001{bottom:504.111243pt;}
.y3544_c00001{bottom:504.187067pt;}
.y2344_c00001{bottom:504.187131pt;}
.y2361_c00001{bottom:504.267067pt;}
.y50d_c00001{bottom:504.347067pt;}
.yb57_c00001{bottom:504.427067pt;}
.y32dd_c00001{bottom:504.480000pt;}
.y2be6_c00001{bottom:504.587067pt;}
.y193b_c00001{bottom:504.640000pt;}
.y138d_c00001{bottom:504.667067pt;}
.y2745_c00001{bottom:504.747067pt;}
.y9af_c00001{bottom:504.826627pt;}
.y411_c00001{bottom:504.827067pt;}
.y164_c00001{bottom:504.987067pt;}
.y1679_c00001{bottom:505.067067pt;}
.y2ec7_c00001{bottom:505.120000pt;}
.y2561_c00001{bottom:505.226667pt;}
.y1b8_c00001{bottom:505.387067pt;}
.y30fc_c00001{bottom:505.440000pt;}
.y34fb_c00001{bottom:505.467067pt;}
.y19d8_c00001{bottom:505.600000pt;}
.y2c81_c00001{bottom:505.621851pt;}
.y2c70_c00001{bottom:505.624779pt;}
.y1714_c00001{bottom:505.627067pt;}
.y1439_c00001{bottom:505.707067pt;}
.y2daa_c00001{bottom:505.760000pt;}
.yfaa_c00001{bottom:505.787067pt;}
.y10f_c00001{bottom:505.867067pt;}
.y30d3_c00001{bottom:505.920000pt;}
.yba_c00001{bottom:505.947067pt;}
.y2b15_c00001{bottom:506.024848pt;}
.y324_c00001{bottom:506.027067pt;}
.y1195_c00001{bottom:506.027131pt;}
.y6df_c00001{bottom:506.107067pt;}
.y1656_c00001{bottom:506.187067pt;}
.y1d29_c00001{bottom:506.240000pt;}
.y285b_c00001{bottom:506.267067pt;}
.ycec_c00001{bottom:506.347067pt;}
.y6f9_c00001{bottom:506.507067pt;}
.y242c_c00001{bottom:506.587067pt;}
.y1993_c00001{bottom:506.720000pt;}
.y2b0_c00001{bottom:506.747067pt;}
.y148a_c00001{bottom:506.827067pt;}
.y131f_c00001{bottom:506.833211pt;}
.y2efe_c00001{bottom:506.880000pt;}
.ydb5_c00001{bottom:506.907067pt;}
.y26b1_c00001{bottom:507.067067pt;}
.y1413_c00001{bottom:507.147067pt;}
.y2ff8_c00001{bottom:507.200000pt;}
.y2aab_c00001{bottom:507.227067pt;}
.y24e6_c00001{bottom:507.302947pt;}
.y5a8_c00001{bottom:507.307067pt;}
.y226_c00001{bottom:507.387067pt;}
.y273_c00001{bottom:507.467067pt;}
.y129a_c00001{bottom:507.472299pt;}
.y2dd2_c00001{bottom:507.520000pt;}
.yabb_c00001{bottom:507.547067pt;}
.y132e_c00001{bottom:507.549760pt;}
.y293c_c00001{bottom:507.627067pt;}
.y37a1_c00001{bottom:507.627571pt;}
.y2fac_c00001{bottom:507.680000pt;}
.y29c1_c00001{bottom:507.706011pt;}
.y2234_c00001{bottom:507.785435pt;}
.y2677_c00001{bottom:507.787067pt;}
.ye6f_c00001{bottom:507.947067pt;}
.y1a6e_c00001{bottom:508.000000pt;}
.y17cf_c00001{bottom:508.027067pt;}
.y10fc_c00001{bottom:508.267067pt;}
.y2bfb_c00001{bottom:508.347067pt;}
.y185b_c00001{bottom:508.427067pt;}
.y3326_c00001{bottom:508.480000pt;}
.y12a9_c00001{bottom:508.586267pt;}
.y2e3_c00001{bottom:508.586667pt;}
.y36fc_c00001{bottom:508.587067pt;}
.y32d5_c00001{bottom:508.640000pt;}
.y634_c00001{bottom:508.667067pt;}
.y537_c00001{bottom:508.747067pt;}
.y3308_c00001{bottom:508.800000pt;}
.y29d6_c00001{bottom:508.827067pt;}
.yb0f_c00001{bottom:509.067067pt;}
.y373d_c00001{bottom:509.068635pt;}
.y384b_c00001{bottom:509.147067pt;}
.y388_c00001{bottom:509.227067pt;}
.ye01_c00001{bottom:509.307147pt;}
.y29b1_c00001{bottom:509.467067pt;}
.y397f_c00001{bottom:509.546555pt;}
.y10ca_c00001{bottom:509.547067pt;}
.y1d2c_c00001{bottom:509.600000pt;}
.y2517_c00001{bottom:509.702491pt;}
.y76e_c00001{bottom:509.707067pt;}
.y31b5_c00001{bottom:509.760000pt;}
.y1e6_c00001{bottom:509.787067pt;}
.y3387_c00001{bottom:509.867067pt;}
.y12ad_c00001{bottom:509.947067pt;}
.y30d4_c00001{bottom:510.080000pt;}
.y2fb0_c00001{bottom:510.240000pt;}
.y2385_c00001{bottom:510.267067pt;}
.y2c50_c00001{bottom:510.347067pt;}
.y13c7_c00001{bottom:510.427067pt;}
.y3074_c00001{bottom:510.560000pt;}
.y7d6_c00001{bottom:510.587067pt;}
.y1dfc_c00001{bottom:510.720000pt;}
.y2c52_c00001{bottom:510.746667pt;}
.ya42_c00001{bottom:510.747067pt;}
.y57c_c00001{bottom:510.827067pt;}
.y1efc_c00001{bottom:510.880000pt;}
.y1be8_c00001{bottom:511.040000pt;}
.y2539_c00001{bottom:511.065867pt;}
.y4b0_c00001{bottom:511.147067pt;}
.y2760_c00001{bottom:511.228835pt;}
.y1b7_c00001{bottom:511.307067pt;}
.y21a0_c00001{bottom:511.308267pt;}
.y1823_c00001{bottom:511.467067pt;}
.y2f45_c00001{bottom:511.520000pt;}
.y2384_c00001{bottom:511.547067pt;}
.ye31_c00001{bottom:511.547907pt;}
.y36e1_c00001{bottom:511.624267pt;}
.y2bb9_c00001{bottom:511.624515pt;}
.y2725_c00001{bottom:511.626347pt;}
.y20e6_c00001{bottom:511.627195pt;}
.y2b44_c00001{bottom:511.628587pt;}
.y2c28_c00001{bottom:511.707067pt;}
.y269a_c00001{bottom:511.786675pt;}
.y2a4e_c00001{bottom:511.787067pt;}
.y2e00_c00001{bottom:511.846240pt;}
.y34cf_c00001{bottom:511.866011pt;}
.y210c_c00001{bottom:511.866611pt;}
.y2a6f_c00001{bottom:511.867067pt;}
.y2cba_c00001{bottom:511.947067pt;}
.y885_c00001{bottom:512.107067pt;}
.y3861_c00001{bottom:512.186811pt;}
.y26dd_c00001{bottom:512.266347pt;}
.y8c8_c00001{bottom:512.267067pt;}
.y35ac_c00001{bottom:512.267355pt;}
.y32d7_c00001{bottom:512.320000pt;}
.y5d3_c00001{bottom:512.347067pt;}
.y9fb_c00001{bottom:512.427067pt;}
.y13be_c00001{bottom:512.427099pt;}
.y32b8_c00001{bottom:512.480000pt;}
.y388a_c00001{bottom:512.501443pt;}
.y3833_c00001{bottom:512.587067pt;}
.y326f_c00001{bottom:512.640000pt;}
.y27d4_c00001{bottom:512.666283pt;}
.y183f_c00001{bottom:512.667067pt;}
.y3607_c00001{bottom:512.826555pt;}
.y2c51_c00001{bottom:512.827067pt;}
.y1fc5_c00001{bottom:512.987067pt;}
.y2c53_c00001{bottom:513.067067pt;}
.y2991_c00001{bottom:513.067195pt;}
.y2088_c00001{bottom:513.147067pt;}
.y138_c00001{bottom:513.227067pt;}
.y1e69_c00001{bottom:513.280000pt;}
.y2f79_c00001{bottom:513.282720pt;}
.y2902_c00001{bottom:513.307067pt;}
.y381b_c00001{bottom:513.387067pt;}
.y1ba1_c00001{bottom:513.442720pt;}
.y22ea_c00001{bottom:513.547067pt;}
.yea3_c00001{bottom:513.627067pt;}
.y3717_c00001{bottom:513.707243pt;}
.y6a1_c00001{bottom:513.787067pt;}
.y22d0_c00001{bottom:513.866219pt;}
.y16fe_c00001{bottom:513.867067pt;}
.y2d2f_c00001{bottom:513.947067pt;}
.y20a_c00001{bottom:514.027067pt;}
.yaea_c00001{bottom:514.187067pt;}
.y1273_c00001{bottom:514.267067pt;}
.y2326_c00001{bottom:514.345563pt;}
.y2a71_c00001{bottom:514.347067pt;}
.y3160_c00001{bottom:514.400000pt;}
.y100b_c00001{bottom:514.427067pt;}
.y187f_c00001{bottom:514.427155pt;}
.y1333_c00001{bottom:514.506667pt;}
.y1850_c00001{bottom:514.507067pt;}
.y35d3_c00001{bottom:514.667067pt;}
.y2a31_c00001{bottom:514.747067pt;}
.y2619_c00001{bottom:514.747243pt;}
.y931_c00001{bottom:514.827067pt;}
.yaa6_c00001{bottom:514.987067pt;}
.y3051_c00001{bottom:515.040000pt;}
.y189_c00001{bottom:515.147067pt;}
.y2f07_c00001{bottom:515.200000pt;}
.y163_c00001{bottom:515.307067pt;}
.y1c2a_c00001{bottom:515.360000pt;}
.y1465_c00001{bottom:515.387067pt;}
.y3930_c00001{bottom:515.467067pt;}
.y369b_c00001{bottom:515.468443pt;}
.y674_c00001{bottom:515.627067pt;}
.y1ab1_c00001{bottom:515.680000pt;}
.yebd_c00001{bottom:515.707067pt;}
.y458_c00001{bottom:515.787067pt;}
.y2e35_c00001{bottom:515.843520pt;}
.y345a_c00001{bottom:515.867067pt;}
.y1203_c00001{bottom:515.947067pt;}
.y1e6b_c00001{bottom:516.000000pt;}
.y6b_c00001{bottom:516.107067pt;}
.y2d7b_c00001{bottom:516.160000pt;}
.y29f2_c00001{bottom:516.184779pt;}
.y20a7_c00001{bottom:516.185827pt;}
.y2277_c00001{bottom:516.186611pt;}
.y2875_c00001{bottom:516.186675pt;}
.y6bc_c00001{bottom:516.347067pt;}
.y41d_c00001{bottom:516.587067pt;}
.y31b6_c00001{bottom:516.640000pt;}
.y2af9_c00001{bottom:516.666803pt;}
.y8f_c00001{bottom:516.747067pt;}
.y352b_c00001{bottom:516.821963pt;}
.y37d0_c00001{bottom:516.827067pt;}
.y21ca_c00001{bottom:516.904099pt;}
.y21bf_c00001{bottom:516.905563pt;}
.y3096_c00001{bottom:516.960000pt;}
.y1b0b_c00001{bottom:516.968960pt;}
.y1e9c_c00001{bottom:517.120000pt;}
.ye51_c00001{bottom:517.147067pt;}
.y1f1b_c00001{bottom:517.147187pt;}
.y3995_c00001{bottom:517.227067pt;}
.y1a25_c00001{bottom:517.280000pt;}
.y2639_c00001{bottom:517.306611pt;}
.y1140_c00001{bottom:517.307067pt;}
.y1f43_c00001{bottom:517.312259pt;}
.yd97_c00001{bottom:517.387067pt;}
.yc16_c00001{bottom:517.547067pt;}
.y1595_c00001{bottom:517.627067pt;}
.y23cd_c00001{bottom:517.705891pt;}
.y313c_c00001{bottom:517.760000pt;}
.yf06_c00001{bottom:517.787067pt;}
.y23f7_c00001{bottom:517.867067pt;}
.y1d61_c00001{bottom:517.920000pt;}
.y4d8_c00001{bottom:517.947067pt;}
.y2806_c00001{bottom:518.027067pt;}
.y31fd_c00001{bottom:518.069440pt;}
.y1e5_c00001{bottom:518.187067pt;}
.y1517_c00001{bottom:518.266723pt;}
.yd45_c00001{bottom:518.267067pt;}
.y3a20_c00001{bottom:518.270955pt;}
.y323_c00001{bottom:518.347067pt;}
.ybbc_c00001{bottom:518.348987pt;}
.y1b55_c00001{bottom:518.400000pt;}
.y1758_c00001{bottom:518.427067pt;}
.yc73_c00001{bottom:518.429147pt;}
.y33d1_c00001{bottom:518.506675pt;}
.y23ff_c00001{bottom:518.507067pt;}
.y2744_c00001{bottom:518.507467pt;}
.y2ebc_c00001{bottom:518.560000pt;}
.y215e_c00001{bottom:518.587067pt;}
.y162_c00001{bottom:518.667067pt;}
.y1e31_c00001{bottom:518.720000pt;}
.y2137_c00001{bottom:518.746675pt;}
.yea_c00001{bottom:518.747067pt;}
.y190f_c00001{bottom:518.756320pt;}
.y7a9_c00001{bottom:518.827067pt;}
.y15cd_c00001{bottom:518.907067pt;}
.y2ec6_c00001{bottom:519.040000pt;}
.ybc3_c00001{bottom:519.071763pt;}
.y3238_c00001{bottom:519.379520pt;}
.y17dc_c00001{bottom:519.387067pt;}
.y17a2_c00001{bottom:519.467067pt;}
.y814_c00001{bottom:519.547067pt;}
.y37f0_c00001{bottom:519.626219pt;}
.ydd8_c00001{bottom:519.629227pt;}
.y5f4_c00001{bottom:519.787067pt;}
.y1c59_c00001{bottom:519.840000pt;}
.y1030_c00001{bottom:519.867067pt;}
.yc9b_c00001{bottom:519.949587pt;}
.y2ae2_c00001{bottom:520.027067pt;}
.yff6_c00001{bottom:520.107315pt;}
.y18be_c00001{bottom:520.187067pt;}
.y994_c00001{bottom:520.267067pt;}
.y1ca0_c00001{bottom:520.323520pt;}
.y2ce1_c00001{bottom:520.345691pt;}
.y249_c00001{bottom:520.347067pt;}
.y6f8_c00001{bottom:520.427067pt;}
.y2b43_c00001{bottom:520.428579pt;}
.y25d3_c00001{bottom:520.506283pt;}
.y24b2_c00001{bottom:520.666347pt;}
.y2ad_c00001{bottom:520.667067pt;}
.y2472_c00001{bottom:520.747067pt;}
.y2976_c00001{bottom:520.825787pt;}
.y295f_c00001{bottom:520.826611pt;}
.ybf1_c00001{bottom:520.827067pt;}
.y1569_c00001{bottom:520.986723pt;}
.yd68_c00001{bottom:520.987227pt;}
.y14aa_c00001{bottom:520.987651pt;}
.y2fd5_c00001{bottom:521.120000pt;}
.ycbd_c00001{bottom:521.147067pt;}
.y993_c00001{bottom:521.227067pt;}
.y430_c00001{bottom:521.467067pt;}
.y2180_c00001{bottom:521.467467pt;}
.y995_c00001{bottom:521.547067pt;}
.y3026_c00001{bottom:521.600000pt;}
.y3e6_c00001{bottom:521.707067pt;}
.y397e_c00001{bottom:521.786811pt;}
.y9ae_c00001{bottom:521.787067pt;}
.y21_c00001{bottom:521.867067pt;}
.y3052_c00001{bottom:521.920000pt;}
.y394d_c00001{bottom:522.026243pt;}
.y7fc_c00001{bottom:522.027067pt;}
.y1da9_c00001{bottom:522.080000pt;}
.y1775_c00001{bottom:522.187067pt;}
.yb7b_c00001{bottom:522.345083pt;}
.y335c_c00001{bottom:522.400000pt;}
.y2e2_c00001{bottom:522.426267pt;}
.y2a16_c00001{bottom:522.427067pt;}
.y36c7_c00001{bottom:522.427619pt;}
.y242b_c00001{bottom:522.507067pt;}
.y19d7_c00001{bottom:522.728960pt;}
.y16dc_c00001{bottom:522.747067pt;}
.y2aaa_c00001{bottom:522.826283pt;}
.y2ab5_c00001{bottom:522.826760pt;}
.y60e_c00001{bottom:522.827067pt;}
.y2efd_c00001{bottom:522.880000pt;}
.y1960_c00001{bottom:522.987067pt;}
.y193a_c00001{bottom:523.040000pt;}
.y373c_c00001{bottom:523.148547pt;}
.y410_c00001{bottom:523.227067pt;}
.y1d62_c00001{bottom:523.360000pt;}
.y37df_c00001{bottom:523.387067pt;}
.y1622_c00001{bottom:523.467067pt;}
.y2faf_c00001{bottom:523.520000pt;}
.y234b_c00001{bottom:523.547067pt;}
.y33cf_c00001{bottom:523.627747pt;}
.y1d2a_c00001{bottom:523.680000pt;}
.y5a6_c00001{bottom:523.707067pt;}
.y3bf_c00001{bottom:523.787067pt;}
.yb90_c00001{bottom:523.866667pt;}
.y20bf_c00001{bottom:523.867067pt;}
.yb9_c00001{bottom:523.947067pt;}
.y2bfa_c00001{bottom:523.947131pt;}
.y1c5a_c00001{bottom:524.000000pt;}
.y6de_c00001{bottom:524.027067pt;}
.y26fa_c00001{bottom:524.107067pt;}
.y1c2b_c00001{bottom:524.160000pt;}
.y2dff_c00001{bottom:524.163520pt;}
.y9bf_c00001{bottom:524.187067pt;}
.y10e_c00001{bottom:524.267067pt;}
.y733_c00001{bottom:524.427067pt;}
.y154e_c00001{bottom:524.507067pt;}
.y1452_c00001{bottom:524.587067pt;}
.y633_c00001{bottom:524.667067pt;}
.y3889_c00001{bottom:524.741699pt;}
.y1438_c00001{bottom:524.747067pt;}
.y2da9_c00001{bottom:524.800000pt;}
.y1fe0_c00001{bottom:524.827067pt;}
.y392f_c00001{bottom:524.907067pt;}
.y2c80_c00001{bottom:525.062307pt;}
.y2c6f_c00001{bottom:525.065235pt;}
.y3606_c00001{bottom:525.066811pt;}
.y272_c00001{bottom:525.067067pt;}
.y1992_c00001{bottom:525.120000pt;}
.y104d_c00001{bottom:525.147067pt;}
.y13c6_c00001{bottom:525.227067pt;}
.y47_c00001{bottom:525.307067pt;}
.y1194_c00001{bottom:525.387067pt;}
.y275f_c00001{bottom:525.388547pt;}
.y1d2e_c00001{bottom:525.440000pt;}
.y2e62_c00001{bottom:525.446240pt;}
.y2b14_c00001{bottom:525.465304pt;}
.y38b4_c00001{bottom:525.467067pt;}
.y342a_c00001{bottom:525.547067pt;}
.y2f78_c00001{bottom:525.600000pt;}
.y1ba0_c00001{bottom:525.760000pt;}
.y904_c00001{bottom:525.787067pt;}
.y1320_c00001{bottom:525.793723pt;}
.y1a6a_c00001{bottom:525.920000pt;}
.y855_c00001{bottom:525.947067pt;}
.y39f5_c00001{bottom:526.106667pt;}
.ye00_c00001{bottom:526.187067pt;}
.y1efb_c00001{bottom:526.240000pt;}
.y2301_c00001{bottom:526.347067pt;}
.yf58_c00001{bottom:526.347315pt;}
.yb42_c00001{bottom:526.427067pt;}
.y2acd_c00001{bottom:526.507067pt;}
.y132f_c00001{bottom:526.510272pt;}
.yd1b_c00001{bottom:526.587067pt;}
.y24e5_c00001{bottom:526.662883pt;}
.y10fb_c00001{bottom:526.667067pt;}
.y3303_c00001{bottom:526.720000pt;}
.y387_c00001{bottom:526.747067pt;}
.y1813_c00001{bottom:526.747200pt;}
.y3e5_c00001{bottom:526.827067pt;}
.y2538_c00001{bottom:526.905867pt;}
.y203a_c00001{bottom:526.986267pt;}
.ya5b_c00001{bottom:526.987067pt;}
.y1088_c00001{bottom:527.067067pt;}
.y129b_c00001{bottom:527.072755pt;}
.y536_c00001{bottom:527.147067pt;}
.y2233_c00001{bottom:527.225891pt;}
.y76d_c00001{bottom:527.227067pt;}
.y1603_c00001{bottom:527.227147pt;}
.ye6e_c00001{bottom:527.467067pt;}
.y2f06_c00001{bottom:527.520000pt;}
.ya41_c00001{bottom:527.627067pt;}
.y3567_c00001{bottom:527.787067pt;}
.y3716_c00001{bottom:527.787155pt;}
.y1a6b_c00001{bottom:527.840000pt;}
.y2255_c00001{bottom:527.867067pt;}
.yf44_c00001{bottom:527.947067pt;}
.y2e34_c00001{bottom:528.000000pt;}
.y12aa_c00001{bottom:528.185867pt;}
.y23a9_c00001{bottom:528.187067pt;}
.y1332_c00001{bottom:528.267067pt;}
.y2f3c_c00001{bottom:528.320000pt;}
.y12ac_c00001{bottom:528.347067pt;}
.y189e_c00001{bottom:528.427067pt;}
.ye30_c00001{bottom:528.427827pt;}
.y1b6_c00001{bottom:528.507067pt;}
.y173c_c00001{bottom:528.587067pt;}
.y1dfa_c00001{bottom:528.640000pt;}
.yf2d_c00001{bottom:528.667067pt;}
.y2618_c00001{bottom:528.827155pt;}
.y2383_c00001{bottom:528.907067pt;}
.y1e32_c00001{bottom:528.960000pt;}
.y4af_c00001{bottom:529.067067pt;}
.y1e6a_c00001{bottom:529.120000pt;}
.y2516_c00001{bottom:529.142947pt;}
.y1534_c00001{bottom:529.227067pt;}
.y1b0a_c00001{bottom:529.286240pt;}
.y2c4d_c00001{bottom:529.307067pt;}
.y2b42_c00001{bottom:529.308915pt;}
.ydb4_c00001{bottom:529.387067pt;}
.y32b7_c00001{bottom:529.440000pt;}
.y57b_c00001{bottom:529.467067pt;}
.y2458_c00001{bottom:529.547067pt;}
.y369a_c00001{bottom:529.628155pt;}
.y1655_c00001{bottom:529.707067pt;}
.yf9b_c00001{bottom:529.707243pt;}
.y326e_c00001{bottom:529.760000pt;}
.y311e_c00001{bottom:529.920000pt;}
.y5d2_c00001{bottom:530.267067pt;}
.y3809_c00001{bottom:530.347067pt;}
.y1382_c00001{bottom:530.507067pt;}
.y29b0_c00001{bottom:530.667067pt;}
.y3161_c00001{bottom:530.720000pt;}
.y14f1_c00001{bottom:530.747067pt;}
.yc2e_c00001{bottom:530.827067pt;}
.y2bb8_c00001{bottom:530.984451pt;}
.y2724_c00001{bottom:530.986283pt;}
.y285a_c00001{bottom:530.987067pt;}
.y20e5_c00001{bottom:530.987131pt;}
.y1cda_c00001{bottom:531.042720pt;}
.ye99_c00001{bottom:531.067067pt;}
.y13bd_c00001{bottom:531.067315pt;}
.y2699_c00001{bottom:531.146611pt;}
.y1ff6_c00001{bottom:531.147067pt;}
.y31e4_c00001{bottom:531.200000pt;}
.y2110_c00001{bottom:531.307067pt;}
.y39d0_c00001{bottom:531.387067pt;}
.y339c_c00001{bottom:531.467067pt;}
.y4b1_c00001{bottom:531.547067pt;}
.y35ea_c00001{bottom:531.626267pt;}
.y26dc_c00001{bottom:531.626283pt;}
.y137_c00001{bottom:531.627067pt;}
.y6a0_c00001{bottom:531.707067pt;}
.y17fd_c00001{bottom:531.867067pt;}
.y3595_c00001{bottom:532.025067pt;}
.y322_c00001{bottom:532.027067pt;}
.y27d3_c00001{bottom:532.106739pt;}
.y138c_c00001{bottom:532.187067pt;}
.y2a4d_c00001{bottom:532.266667pt;}
.y2a30_c00001{bottom:532.267067pt;}
.y30d2_c00001{bottom:532.320000pt;}
.y2423_c00001{bottom:532.347067pt;}
.y3a1f_c00001{bottom:532.350867pt;}
.y34c_c00001{bottom:532.427067pt;}
.y2990_c00001{bottom:532.427131pt;}
.y1c9f_c00001{bottom:532.480000pt;}
.y930_c00001{bottom:532.587067pt;}
.y318d_c00001{bottom:532.640000pt;}
.y1678_c00001{bottom:532.667067pt;}
.y6bb_c00001{bottom:532.747067pt;}
.y14d2_c00001{bottom:532.747147pt;}
.y183e_c00001{bottom:532.827779pt;}
.y74d_c00001{bottom:533.067067pt;}
.y673_c00001{bottom:533.147067pt;}
.y31fc_c00001{bottom:533.275040pt;}
.y22cf_c00001{bottom:533.306675pt;}
.y457_c00001{bottom:533.307067pt;}
.y884_c00001{bottom:533.387067pt;}
.y3072_c00001{bottom:533.440000pt;}
.y1202_c00001{bottom:533.467067pt;}
.y188_c00001{bottom:533.547067pt;}
.y13c5_c00001{bottom:533.627067pt;}
.y2071_c00001{bottom:533.706811pt;}
.y555_c00001{bottom:533.707067pt;}
.y2325_c00001{bottom:533.786019pt;}
.y165f_c00001{bottom:533.787067pt;}
.y265b_c00001{bottom:533.866603pt;}
.y3291_c00001{bottom:533.920000pt;}
.y21ed_c00001{bottom:534.027067pt;}
.y1ec8_c00001{bottom:534.080000pt;}
.y394c_c00001{bottom:534.266499pt;}
.yd96_c00001{bottom:534.267067pt;}
.y1489_c00001{bottom:534.427067pt;}
.y35d2_c00001{bottom:534.507067pt;}
.yc74_c00001{bottom:534.509243pt;}
.y2d7a_c00001{bottom:534.560000pt;}
.y1a6c_c00001{bottom:534.720000pt;}
.y1412_c00001{bottom:534.747067pt;}
.y1ab2_c00001{bottom:534.880000pt;}
.y225_c00001{bottom:534.987067pt;}
.y32db_c00001{bottom:535.040000pt;}
.y19d6_c00001{bottom:535.046240pt;}
.y16fd_c00001{bottom:535.067067pt;}
.y365_c00001{bottom:535.147067pt;}
.y30fa_c00001{bottom:535.200000pt;}
.y337c_c00001{bottom:535.227067pt;}
.y1594_c00001{bottom:535.227147pt;}
.y2dd1_c00001{bottom:535.360000pt;}
.y22e9_c00001{bottom:535.387067pt;}
.y1e4_c00001{bottom:535.467067pt;}
.y1868_c00001{bottom:535.547067pt;}
.y29f1_c00001{bottom:535.625235pt;}
.y20a6_c00001{bottom:535.626283pt;}
.y184f_c00001{bottom:535.627067pt;}
.y2874_c00001{bottom:535.627131pt;}
.y3649_c00001{bottom:535.707067pt;}
.y357b_c00001{bottom:535.787067pt;}
.y34b9_c00001{bottom:535.947067pt;}
.y2ebb_c00001{bottom:536.000000pt;}
.y2af8_c00001{bottom:536.026739pt;}
.y18dd_c00001{bottom:536.027067pt;}
.yc9c_c00001{bottom:536.029819pt;}
.y123b_c00001{bottom:536.107067pt;}
.y1b9a_c00001{bottom:536.160000pt;}
.y2e1_c00001{bottom:536.186667pt;}
.y161_c00001{bottom:536.187067pt;}
.y21c9_c00001{bottom:536.264035pt;}
.y21be_c00001{bottom:536.265499pt;}
.y1be6_c00001{bottom:536.320000pt;}
.y4d7_c00001{bottom:536.347067pt;}
.y3322_c00001{bottom:536.480000pt;}
.y2ae1_c00001{bottom:536.507067pt;}
.y36c6_c00001{bottom:536.507531pt;}
.ydd7_c00001{bottom:536.509147pt;}
.y2bae_c00001{bottom:536.587067pt;}
.yc46_c00001{bottom:536.667067pt;}
.y7a8_c00001{bottom:536.747067pt;}
.y17b9_c00001{bottom:536.907067pt;}
.y2ff6_c00001{bottom:536.960000pt;}
.y3888_c00001{bottom:536.981955pt;}
.y2560_c00001{bottom:536.987067pt;}
.y38fc_c00001{bottom:537.067067pt;}
.y23cc_c00001{bottom:537.146347pt;}
.ye9_c00001{bottom:537.147067pt;}
.y373b_c00001{bottom:537.228459pt;}
.y2fae_c00001{bottom:537.280000pt;}
.y16b9_c00001{bottom:537.307067pt;}
.yf9a_c00001{bottom:537.387067pt;}
.y28b2_c00001{bottom:537.467067pt;}
.y38ec_c00001{bottom:537.547067pt;}
.y2e61_c00001{bottom:537.602720pt;}
.y554_c00001{bottom:537.627067pt;}
.yae9_c00001{bottom:537.707067pt;}
.y17a1_c00001{bottom:537.867067pt;}
.y94a_c00001{bottom:537.947067pt;}
.y33d0_c00001{bottom:537.947131pt;}
.yd67_c00001{bottom:537.947667pt;}
.ycbc_c00001{bottom:538.027067pt;}
.y343a_c00001{bottom:538.107067pt;}
.y2b41_c00001{bottom:538.108907pt;}
.y2491_c00001{bottom:538.186611pt;}
.y7d5_c00001{bottom:538.187067pt;}
.y2135_c00001{bottom:538.187131pt;}
.y732_c00001{bottom:538.347067pt;}
.y11bc_c00001{bottom:538.427067pt;}
.yff5_c00001{bottom:538.507067pt;}
.y6a_c00001{bottom:538.587067pt;}
.y215b_c00001{bottom:538.666283pt;}
.y1f1a_c00001{bottom:538.667067pt;}
.y3073_c00001{bottom:538.720000pt;}
.y789_c00001{bottom:538.747067pt;}
.y1f42_c00001{bottom:538.751987pt;}
.y86e_c00001{bottom:538.827067pt;}
.y15cc_c00001{bottom:538.907067pt;}
.y248_c00001{bottom:538.987067pt;}
.y36e0_c00001{bottom:539.064827pt;}
.y2ae_c00001{bottom:539.066667pt;}
.y37ef_c00001{bottom:539.066675pt;}
.y654_c00001{bottom:539.067067pt;}
.y20_c00001{bottom:539.147067pt;}
.y2f77_c00001{bottom:539.200000pt;}
.y7aa_c00001{bottom:539.227067pt;}
.y488_c00001{bottom:539.387067pt;}
.yd8c_c00001{bottom:539.389987pt;}
.y275e_c00001{bottom:539.468459pt;}
.y2ff7_c00001{bottom:539.520000pt;}
.y1757_c00001{bottom:539.547067pt;}
.y32b6_c00001{bottom:539.680000pt;}
.y2ce0_c00001{bottom:539.705627pt;}
.y813_c00001{bottom:539.707067pt;}
.y2d0a_c00001{bottom:539.787067pt;}
.y1a24_c00001{bottom:539.846240pt;}
.y25d2_c00001{bottom:539.866219pt;}
.y42f_c00001{bottom:539.867067pt;}
.ybbd_c00001{bottom:539.949435pt;}
.y3025_c00001{bottom:540.000000pt;}
.y1b54_c00001{bottom:540.011680pt;}
.y9fa_c00001{bottom:540.027067pt;}
.y24b1_c00001{bottom:540.106803pt;}
.y1939_c00001{bottom:540.160000pt;}
.y34a8_c00001{bottom:540.187067pt;}
.y2975_c00001{bottom:540.266243pt;}
.yaf9_c00001{bottom:540.267067pt;}
.y281b_c00001{bottom:540.267131pt;}
.y35d1_c00001{bottom:540.347067pt;}
.y29c0_c00001{bottom:540.426411pt;}
.y33ce_c00001{bottom:540.427147pt;}
.y1dfb_c00001{bottom:540.480000pt;}
.y271_c00001{bottom:540.507067pt;}
.y219f_c00001{bottom:540.507867pt;}
.y1fc4_c00001{bottom:540.587067pt;}
.y632_c00001{bottom:540.667067pt;}
.ybc4_c00001{bottom:540.672211pt;}
.y335b_c00001{bottom:540.800000pt;}
.y6f7_c00001{bottom:540.907067pt;}
.y3237_c00001{bottom:540.982400pt;}
.y5f3_c00001{bottom:540.987067pt;}
.y2efc_c00001{bottom:541.120000pt;}
.y2ac_c00001{bottom:541.147067pt;}
.y841_c00001{bottom:541.227067pt;}
.ye6d_c00001{bottom:541.306667pt;}
.y18bd_c00001{bottom:541.307067pt;}
.y2af_c00001{bottom:541.387067pt;}
.y2e33_c00001{bottom:541.440000pt;}
.y1b09_c00001{bottom:541.442720pt;}
.y295e_c00001{bottom:541.547067pt;}
.y1efa_c00001{bottom:541.600000pt;}
.y209_c00001{bottom:541.627067pt;}
.y5a5_c00001{bottom:541.707067pt;}
.y2e92_c00001{bottom:541.760000pt;}
.y3715_c00001{bottom:541.867067pt;}
.y1e6c_c00001{bottom:541.920000pt;}
.y362a_c00001{bottom:541.947067pt;}
.y2d2e_c00001{bottom:542.014235pt;}
.y100a_c00001{bottom:542.027067pt;}
.y1c27_c00001{bottom:542.080000pt;}
.yb0e_c00001{bottom:542.107067pt;}
.y2aa9_c00001{bottom:542.186219pt;}
.y2ab4_c00001{bottom:542.186696pt;}
.yb8_c00001{bottom:542.347067pt;}
.y3be_c00001{bottom:542.427067pt;}
.yaa5_c00001{bottom:542.667067pt;}
.y2537_c00001{bottom:542.745867pt;}
.y1b5_c00001{bottom:542.907067pt;}
.y1464_c00001{bottom:542.987067pt;}
.y10d_c00001{bottom:543.067067pt;}
.y39b8_c00001{bottom:543.147067pt;}
.y2d57_c00001{bottom:543.225120pt;}
.ydff_c00001{bottom:543.227067pt;}
.y1774_c00001{bottom:543.307067pt;}
.y1cd9_c00001{bottom:543.360000pt;}
.yd1a_c00001{bottom:543.467067pt;}
.yb7c_c00001{bottom:543.624891pt;}
.y3699_c00001{bottom:543.708067pt;}
.y3510_c00001{bottom:543.787067pt;}
.y2da8_c00001{bottom:543.840000pt;}
.y2be5_c00001{bottom:543.867067pt;}
.y16db_c00001{bottom:543.947067pt;}
.y1c28_c00001{bottom:544.000000pt;}
.y291c_c00001{bottom:544.027067pt;}
.y270_c00001{bottom:544.107067pt;}
.y1602_c00001{bottom:544.107667pt;}
.y3290_c00001{bottom:544.160000pt;}
.y5a7_c00001{bottom:544.187067pt;}
.y386_c00001{bottom:544.267067pt;}
.y8e_c00001{bottom:544.347067pt;}
.y2c7f_c00001{bottom:544.422243pt;}
.y2c6e_c00001{bottom:544.425171pt;}
.y2382_c00001{bottom:544.506411pt;}
.y7fb_c00001{bottom:544.507067pt;}
.y34ce_c00001{bottom:544.586411pt;}
.y76c_c00001{bottom:544.747067pt;}
.y1321_c00001{bottom:544.754235pt;}
.y304f_c00001{bottom:544.800000pt;}
.y2b13_c00001{bottom:544.825240pt;}
.y2a15_c00001{bottom:544.987067pt;}
.y10fa_c00001{bottom:545.067067pt;}
.yb91_c00001{bottom:545.147067pt;}
.y1faa_c00001{bottom:545.227067pt;}
.ye2f_c00001{bottom:545.227227pt;}
.y326d_c00001{bottom:545.280000pt;}
.y2676_c00001{bottom:545.307067pt;}
.yf05_c00001{bottom:545.387067pt;}
.y3994_c00001{bottom:545.467067pt;}
.y1330_c00001{bottom:545.470784pt;}
.y2805_c00001{bottom:545.627067pt;}
.y20be_c00001{bottom:545.707067pt;}
.y333d_c00001{bottom:545.760000pt;}
.y535_c00001{bottom:545.787067pt;}
.y1c9e_c00001{bottom:545.920000pt;}
.y2fd4_c00001{bottom:545.926240pt;}
.y38b5_c00001{bottom:545.947067pt;}
.y24e4_c00001{bottom:546.103339pt;}
.y57a_c00001{bottom:546.107067pt;}
.y2841_c00001{bottom:546.187067pt;}
.y1c58_c00001{bottom:546.240000pt;}
.y992_c00001{bottom:546.347067pt;}
.y3a1e_c00001{bottom:546.430779pt;}
.y1b4_c00001{bottom:546.507067pt;}
.y2232_c00001{bottom:546.585827pt;}
.y394b_c00001{bottom:546.586555pt;}
.y2054_c00001{bottom:546.587067pt;}
.y4ae_c00001{bottom:546.667067pt;}
.y12ab_c00001{bottom:546.747067pt;}
.y113f_c00001{bottom:546.826987pt;}
.y1e2f_c00001{bottom:546.880000pt;}
.y2b40_c00001{bottom:546.908899pt;}
.yf2c_c00001{bottom:547.067067pt;}
.y26b0_c00001{bottom:547.147067pt;}
.y3566_c00001{bottom:547.227067pt;}
.y102f_c00001{bottom:547.307067pt;}
.y19d5_c00001{bottom:547.363520pt;}
.y2300_c00001{bottom:547.467067pt;}
.y324d_c00001{bottom:547.520000pt;}
.yf99_c00001{bottom:547.547067pt;}
.y1e9b_c00001{bottom:547.680000pt;}
.y352a_c00001{bottom:547.782427pt;}
.y3656_c00001{bottom:547.867067pt;}
.y4c5_c00001{bottom:547.947067pt;}
.y1812_c00001{bottom:547.947200pt;}
.y9ad_c00001{bottom:548.187067pt;}
.y1d27_c00001{bottom:548.320000pt;}
.y1b9d_c00001{bottom:548.480000pt;}
.y2515_c00001{bottom:548.502883pt;}
.y31fb_c00001{bottom:548.640000pt;}
.y2a2f_c00001{bottom:548.667067pt;}
.y168e_c00001{bottom:548.747067pt;}
.y315f_c00001{bottom:548.800000pt;}
.y33b2_c00001{bottom:548.827067pt;}
.y1867_c00001{bottom:548.907067pt;}
.y2dd0_c00001{bottom:548.960000pt;}
.y5d1_c00001{bottom:548.987067pt;}
.yff4_c00001{bottom:549.067067pt;}
.y3402_c00001{bottom:549.147067pt;}
.y3887_c00001{bottom:549.222211pt;}
.y903_c00001{bottom:549.227067pt;}
.y1ec7_c00001{bottom:549.280000pt;}
.y321_c00001{bottom:549.387067pt;}
.y854_c00001{bottom:549.467067pt;}
.y189d_c00001{bottom:549.627067pt;}
.y14d1_c00001{bottom:549.627667pt;}
.y178d_c00001{bottom:549.707067pt;}
.y173b_c00001{bottom:549.787067pt;}
.y2c4c_c00001{bottom:549.867067pt;}
.y2e60_c00001{bottom:549.920000pt;}
.y2e0_c00001{bottom:549.947067pt;}
.y136_c00001{bottom:550.027067pt;}
.y2dfe_c00001{bottom:550.080000pt;}
.y69f_c00001{bottom:550.107067pt;}
.y1f5e_c00001{bottom:550.187067pt;}
.y1dab_c00001{bottom:550.240000pt;}
.y2c4e_c00001{bottom:550.266667pt;}
.y23fe_c00001{bottom:550.267067pt;}
.y2bb7_c00001{bottom:550.344387pt;}
.y2723_c00001{bottom:550.346219pt;}
.y160_c00001{bottom:550.347067pt;}
.y32da_c00001{bottom:550.400000pt;}
.y60d_c00001{bottom:550.427067pt;}
.ya5a_c00001{bottom:550.507067pt;}
.y269c_c00001{bottom:550.587067pt;}
.y36c5_c00001{bottom:550.587443pt;}
.yc75_c00001{bottom:550.589339pt;}
.y672_c00001{bottom:550.667067pt;}
.yfda_c00001{bottom:550.747067pt;}
.y34b_c00001{bottom:550.827067pt;}
.y1c29_c00001{bottom:550.880000pt;}
.y346a_c00001{bottom:550.907067pt;}
.y1201_c00001{bottom:550.987067pt;}
.y1be7_c00001{bottom:551.040000pt;}
.y26db_c00001{bottom:551.066739pt;}
.y1621_c00001{bottom:551.067067pt;}
.y210b_c00001{bottom:551.306219pt;}
.y373a_c00001{bottom:551.308371pt;}
.y2a6d_c00001{bottom:551.387067pt;}
.y27d2_c00001{bottom:551.466675pt;}
.y74c_c00001{bottom:551.467067pt;}
.y1d60_c00001{bottom:551.520000pt;}
.y20e4_c00001{bottom:551.627067pt;}
.y1dac_c00001{bottom:551.680000pt;}
.y92f_c00001{bottom:551.707067pt;}
.y1f78_c00001{bottom:551.787067pt;}
.y2698_c00001{bottom:551.867067pt;}
.y187_c00001{bottom:551.947067pt;}
.y1a23_c00001{bottom:552.002720pt;}
.y3439_c00001{bottom:552.027067pt;}
.y1593_c00001{bottom:552.106723pt;}
.y34e4_c00001{bottom:552.107067pt;}
.yc9d_c00001{bottom:552.110051pt;}
.y1451_c00001{bottom:552.187067pt;}
.y2bad_c00001{bottom:552.187131pt;}
.y1b53_c00001{bottom:552.328960pt;}
.y25f8_c00001{bottom:552.347067pt;}
.y1272_c00001{bottom:552.427067pt;}
.y2c4f_c00001{bottom:552.587067pt;}
.y1a67_c00001{bottom:552.640000pt;}
.y22ce_c00001{bottom:552.666611pt;}
.y13c4_c00001{bottom:552.667067pt;}
.y1515_c00001{bottom:552.667747pt;}
.y3459_c00001{bottom:552.747067pt;}
.y46_c00001{bottom:552.907067pt;}
.y2d79_c00001{bottom:552.960000pt;}
.y50c_c00001{bottom:552.987067pt;}
.y298f_c00001{bottom:553.067067pt;}
.y2fb2_c00001{bottom:553.120000pt;}
.y2324_c00001{bottom:553.145955pt;}
.y1fdf_c00001{bottom:553.147067pt;}
.y357a_c00001{bottom:553.307067pt;}
.ydd6_c00001{bottom:553.389067pt;}
.y364_c00001{bottom:553.547067pt;}
.y275d_c00001{bottom:553.548371pt;}
.y1822_c00001{bottom:553.707067pt;}
.y1938_c00001{bottom:553.760000pt;}
.y2a6e_c00001{bottom:553.867067pt;}
.y2b80_c00001{bottom:553.947067pt;}
.yb41_c00001{bottom:554.027067pt;}
.y38fb_c00001{bottom:554.107243pt;}
.y2276_c00001{bottom:554.187067pt;}
.y7a7_c00001{bottom:554.267067pt;}
.y30d1_c00001{bottom:554.400000pt;}
.y18dc_c00001{bottom:554.427067pt;}
.yebc_c00001{bottom:554.507067pt;}
.y1a68_c00001{bottom:554.560000pt;}
.y2013_c00001{bottom:554.586739pt;}
.ybf0_c00001{bottom:554.587067pt;}
.y1087_c00001{bottom:554.667067pt;}
.y4d6_c00001{bottom:554.747067pt;}
.ycbb_c00001{bottom:554.907067pt;}
.y29f0_c00001{bottom:554.985171pt;}
.y20a5_c00001{bottom:554.986219pt;}
.y287c_c00001{bottom:554.987067pt;}
.y3714_c00001{bottom:555.066667pt;}
.ye6c_c00001{bottom:555.067067pt;}
.y1e3_c00001{bottom:555.147067pt;}
.y3324_c00001{bottom:555.195040pt;}
.y2d09_c00001{bottom:555.306675pt;}
.y2638_c00001{bottom:555.307067pt;}
.yf43_c00001{bottom:555.387067pt;}
.y1568_c00001{bottom:555.390187pt;}
.y2af7_c00001{bottom:555.467195pt;}
.y318b_c00001{bottom:555.520000pt;}
.yff3_c00001{bottom:555.627067pt;}
.y30f8_c00001{bottom:555.680000pt;}
.y21c8_c00001{bottom:555.704491pt;}
.y21bd_c00001{bottom:555.705955pt;}
.y2b3f_c00001{bottom:555.708891pt;}
.ye8_c00001{bottom:555.787067pt;}
.y21ec_c00001{bottom:555.867067pt;}
.y247_c00001{bottom:555.947067pt;}
.y333e_c00001{bottom:556.000000pt;}
.y16fc_c00001{bottom:556.187067pt;}
.y17a0_c00001{bottom:556.267067pt;}
.yd8b_c00001{bottom:556.269907pt;}
.y3050_c00001{bottom:556.320000pt;}
.yaba_c00001{bottom:556.347067pt;}
.y38eb_c00001{bottom:556.427067pt;}
.y23cb_c00001{bottom:556.506283pt;}
.y653_c00001{bottom:556.507067pt;}
.y2aa_c00001{bottom:556.586667pt;}
.y15cb_c00001{bottom:556.587067pt;}
.y3370_c00001{bottom:556.640000pt;}
.y631_c00001{bottom:556.667067pt;}
.y113e_c00001{bottom:556.746659pt;}
.y2743_c00001{bottom:556.747067pt;}
.y1dae_c00001{bottom:556.800000pt;}
.y1533_c00001{bottom:556.827067pt;}
.yceb_c00001{bottom:556.907067pt;}
.y1ef9_c00001{bottom:556.960000pt;}
.ydb3_c00001{bottom:556.987067pt;}
.y1cd8_c00001{bottom:557.120000pt;}
.y788_c00001{bottom:557.147067pt;}
.y1e30_c00001{bottom:557.280000pt;}
.y12f9_c00001{bottom:557.307067pt;}
.y28ec_c00001{bottom:557.387067pt;}
.y2617_c00001{bottom:557.467067pt;}
.y2136_c00001{bottom:557.547067pt;}
.y2f76_c00001{bottom:557.600000pt;}
.y2490_c00001{bottom:557.627067pt;}
.y3832_c00001{bottom:557.707067pt;}
.y487_c00001{bottom:557.787067pt;}
.y3698_c00001{bottom:557.787979pt;}
.y86d_c00001{bottom:557.867067pt;}
.y340f_c00001{bottom:557.947067pt;}
.y1756_c00001{bottom:558.027067pt;}
.y215a_c00001{bottom:558.106739pt;}
.y5a3_c00001{bottom:558.107067pt;}
.yf57_c00001{bottom:558.187067pt;}
.y2fd3_c00001{bottom:558.243520pt;}
.y2a14_c00001{bottom:558.267067pt;}
.y14f0_c00001{bottom:558.347067pt;}
.y1df7_c00001{bottom:558.400000pt;}
.y37ee_c00001{bottom:558.426611pt;}
.y6f6_c00001{bottom:558.427067pt;}
.y42e_c00001{bottom:558.507067pt;}
.y2d1b_c00001{bottom:558.587067pt;}
.y2536_c00001{bottom:558.666267pt;}
.y2a9_c00001{bottom:558.667067pt;}
.y1b9f_c00001{bottom:558.720000pt;}
.y2e32_c00001{bottom:558.726240pt;}
.y1e2_c00001{bottom:558.747067pt;}
.y394a_c00001{bottom:558.826811pt;}
.y731_c00001{bottom:558.827067pt;}
.y2ab_c00001{bottom:558.907067pt;}
.y2cdf_c00001{bottom:559.146083pt;}
.y16a8_c00001{bottom:559.147067pt;}
.y1f_c00001{bottom:559.147155pt;}
.y3024_c00001{bottom:559.200000pt;}
.y25d1_c00001{bottom:559.306675pt;}
.y3bd_c00001{bottom:559.307067pt;}
.y2c2a_c00001{bottom:559.387067pt;}
.y24b0_c00001{bottom:559.466739pt;}
.y2360_c00001{bottom:559.467067pt;}
.y19d4_c00001{bottom:559.520000pt;}
.y579_c00001{bottom:559.547067pt;}
.yb56_c00001{bottom:559.627067pt;}
.y2f3a_c00001{bottom:559.680000pt;}
.y2039_c00001{bottom:559.706667pt;}
.y28de_c00001{bottom:559.707067pt;}
.y40f_c00001{bottom:559.867067pt;}
.y1346_c00001{bottom:559.947067pt;}
.y1e67_c00001{bottom:560.000000pt;}
.y32ae_c00001{bottom:560.160000pt;}
.yae8_c00001{bottom:560.187067pt;}
.y1677_c00001{bottom:560.267067pt;}
.y1f41_c00001{bottom:560.271867pt;}
.y2e5f_c00001{bottom:560.320000pt;}
.yd19_c00001{bottom:560.347067pt;}
.y14a9_c00001{bottom:560.426147pt;}
.y39f3_c00001{bottom:560.506667pt;}
.yb0d_c00001{bottom:560.507067pt;}
.y3a1d_c00001{bottom:560.510691pt;}
.y3307_c00001{bottom:560.640000pt;}
.y2450_c00001{bottom:560.667067pt;}
.y1355_c00001{bottom:560.671179pt;}
.yb7_c00001{bottom:560.747067pt;}
.y1601_c00001{bottom:560.907067pt;}
.y2e91_c00001{bottom:560.960000pt;}
.y10c_c00001{bottom:560.987067pt;}
.y12ea_c00001{bottom:561.067067pt;}
.y1df8_c00001{bottom:561.120000pt;}
.y3094_c00001{bottom:561.280000pt;}
.y2457_c00001{bottom:561.307067pt;}
.y6dd_c00001{bottom:561.387067pt;}
.y1a69_c00001{bottom:561.440000pt;}
.y3886_c00001{bottom:561.542267pt;}
.y3070_c00001{bottom:561.600000pt;}
.y190e_c00001{bottom:561.625120pt;}
.y2aa8_c00001{bottom:561.626675pt;}
.y26f_c00001{bottom:561.627067pt;}
.y2ab3_c00001{bottom:561.627152pt;}
.y8a1_c00001{bottom:561.707067pt;}
.yf2b_c00001{bottom:561.787067pt;}
.y385_c00001{bottom:561.867067pt;}
.y3713_c00001{bottom:561.947067pt;}
.y1488_c00001{bottom:562.027067pt;}
.y5f2_c00001{bottom:562.107067pt;}
.ye2e_c00001{bottom:562.107147pt;}
.y3325_c00001{bottom:562.240000pt;}
.y76b_c00001{bottom:562.267067pt;}
.y1411_c00001{bottom:562.347067pt;}
.y318c_c00001{bottom:562.400000pt;}
.y3236_c00001{bottom:562.416800pt;}
.y1b3_c00001{bottom:562.507067pt;}
.y224_c00001{bottom:562.587067pt;}
.yac6_c00001{bottom:562.747067pt;}
.y2f32_c00001{bottom:562.880000pt;}
.y1e9a_c00001{bottom:563.040000pt;}
.y4ac_c00001{bottom:563.067067pt;}
.y2343_c00001{bottom:563.147067pt;}
.y1c9d_c00001{bottom:563.202720pt;}
.y2be4_c00001{bottom:563.227067pt;}
.y104c_c00001{bottom:563.307067pt;}
.y31b4_c00001{bottom:563.360000pt;}
.y15f_c00001{bottom:563.467067pt;}
.y37de_c00001{bottom:563.547067pt;}
.y39b7_c00001{bottom:563.627067pt;}
.y39f4_c00001{bottom:563.707067pt;}
.y2c7e_c00001{bottom:563.782179pt;}
.y2c6d_c00001{bottom:563.785107pt;}
.y840_c00001{bottom:563.787067pt;}
.y2381_c00001{bottom:563.866347pt;}
.y2b96_c00001{bottom:563.867067pt;}
.y291b_c00001{bottom:564.107067pt;}
.y1b06_c00001{bottom:564.160000pt;}
.y2b12_c00001{bottom:564.265696pt;}
.yc45_c00001{bottom:564.267067pt;}
.y1a22_c00001{bottom:564.320000pt;}
.y35e9_c00001{bottom:564.346667pt;}
.y534_c00001{bottom:564.347067pt;}
.y3543_c00001{bottom:564.427067pt;}
.y1773_c00001{bottom:564.507067pt;}
.y2b3e_c00001{bottom:564.508883pt;}
.y111e_c00001{bottom:564.587067pt;}
.y1ec6_c00001{bottom:564.640000pt;}
.y1b52_c00001{bottom:564.646240pt;}
.y2d56_c00001{bottom:564.659520pt;}
.y3594_c00001{bottom:564.745467pt;}
.y36c4_c00001{bottom:564.747155pt;}
.yb7d_c00001{bottom:564.904699pt;}
.y2053_c00001{bottom:564.987067pt;}
.y16da_c00001{bottom:565.067067pt;}
.y30f9_c00001{bottom:565.120000pt;}
.y2675_c00001{bottom:565.307067pt;}
.y3095_c00001{bottom:565.440000pt;}
.y1991_c00001{bottom:565.445280pt;}
.y24e3_c00001{bottom:565.463275pt;}
.y2df_c00001{bottom:565.467067pt;}
.y3739_c00001{bottom:565.468083pt;}
.y5d0_c00001{bottom:565.547067pt;}
.y7d4_c00001{bottom:565.627067pt;}
.y1d25_c00001{bottom:565.760000pt;}
.y3071_c00001{bottom:565.920000pt;}
.y2acb_c00001{bottom:565.947067pt;}
.y2231_c00001{bottom:566.026283pt;}
.y23fd_c00001{bottom:566.107067pt;}
.y69_c00001{bottom:566.187067pt;}
.y2840_c00001{bottom:566.267067pt;}
.yb92_c00001{bottom:566.427067pt;}
.y2070_c00001{bottom:566.427211pt;}
.y36df_c00001{bottom:566.505387pt;}
.y339b_c00001{bottom:566.507067pt;}
.yf98_c00001{bottom:566.587067pt;}
.yc76_c00001{bottom:566.589275pt;}
.y2a2e_c00001{bottom:566.667067pt;}
.y3605_c00001{bottom:566.827067pt;}
.y2ff4_c00001{bottom:566.880000pt;}
.y991_c00001{bottom:566.906667pt;}
.y320_c00001{bottom:566.907067pt;}
.y1d26_c00001{bottom:567.200000pt;}
.y26af_c00001{bottom:567.227067pt;}
.y812_c00001{bottom:567.307067pt;}
.y1d28_c00001{bottom:567.360000pt;}
.y3579_c00001{bottom:567.387067pt;}
.y9f9_c00001{bottom:567.627067pt;}
.y275c_c00001{bottom:567.628283pt;}
.y456_c00001{bottom:567.707067pt;}
.ya0f_c00001{bottom:567.867067pt;}
.y2514_c00001{bottom:567.943339pt;}
.y2bce_c00001{bottom:568.107067pt;}
.y11bb_c00001{bottom:568.187067pt;}
.yc9e_c00001{bottom:568.190283pt;}
.y671_c00001{bottom:568.267067pt;}
.y1b08_c00001{bottom:568.320000pt;}
.y135_c00001{bottom:568.427067pt;}
.y2dfd_c00001{bottom:568.480000pt;}
.y1200_c00001{bottom:568.507067pt;}
.y381a_c00001{bottom:568.587067pt;}
.y2a8d_c00001{bottom:568.667067pt;}
.y34e3_c00001{bottom:568.747067pt;}
.y1c25_c00001{bottom:568.800000pt;}
.yd44_c00001{bottom:568.827067pt;}
.y2087_c00001{bottom:568.907067pt;}
.y69e_c00001{bottom:568.987067pt;}
.y1713_c00001{bottom:569.067067pt;}
.y1811_c00001{bottom:569.067200pt;}
.y2696_c00001{bottom:569.147067pt;}
.y208_c00001{bottom:569.227067pt;}
.y7c6_c00001{bottom:569.387067pt;}
.y1514_c00001{bottom:569.467147pt;}
.y3386_c00001{bottom:569.472083pt;}
.y3438_c00001{bottom:569.547067pt;}
.y1009_c00001{bottom:569.627067pt;}
.y34a_c00001{bottom:569.707067pt;}
.y219e_c00001{bottom:569.707467pt;}
.y2275_c00001{bottom:569.784387pt;}
.y2bb6_c00001{bottom:569.784843pt;}
.y2722_c00001{bottom:569.786675pt;}
.y2c4a_c00001{bottom:569.867067pt;}
.y2788_c00001{bottom:570.027067pt;}
.y19d2_c00001{bottom:570.080000pt;}
.y293b_c00001{bottom:570.107067pt;}
.y29af_c00001{bottom:570.186667pt;}
.y2254_c00001{bottom:570.187067pt;}
.y1df9_c00001{bottom:570.240000pt;}
.y2c4b_c00001{bottom:570.266667pt;}
.y186_c00001{bottom:570.267067pt;}
.ydd5_c00001{bottom:570.268987pt;}
.y74b_c00001{bottom:570.347067pt;}
.y2fd2_c00001{bottom:570.400000pt;}
.y26da_c00001{bottom:570.426675pt;}
.y3808_c00001{bottom:570.427067pt;}
.y3323_c00001{bottom:570.560000pt;}
.y246_c00001{bottom:570.587067pt;}
.y1c26_c00001{bottom:570.720000pt;}
.y210a_c00001{bottom:570.746675pt;}
.y102e_c00001{bottom:570.747067pt;}
.y178c_c00001{bottom:570.827067pt;}
.y173a_c00001{bottom:570.907067pt;}
.y2637_c00001{bottom:570.907131pt;}
.y2c27_c00001{bottom:570.987067pt;}
.y2e31_c00001{bottom:571.043520pt;}
.y3949_c00001{bottom:571.067067pt;}
.y2fa7_c00001{bottom:571.200000pt;}
.y92e_c00001{bottom:571.227067pt;}
.y2471_c00001{bottom:571.307067pt;}
.y2d78_c00001{bottom:571.360000pt;}
.y50b_c00001{bottom:571.387067pt;}
.ybef_c00001{bottom:571.467067pt;}
.y17ce_c00001{bottom:571.547067pt;}
.y367c_c00001{bottom:571.627067pt;}
.y9ac_c00001{bottom:571.707067pt;}
.y123a_c00001{bottom:571.786555pt;}
.y853_c00001{bottom:571.787067pt;}
.y1e68_c00001{bottom:571.840000pt;}
.y298e_c00001{bottom:571.864035pt;}
.y7a6_c00001{bottom:571.867067pt;}
.y8d_c00001{bottom:571.947067pt;}
.y3697_c00001{bottom:571.947691pt;}
.y1b07_c00001{bottom:572.000000pt;}
.y7fa_c00001{bottom:572.107067pt;}
.y1937_c00001{bottom:572.160000pt;}
.y3458_c00001{bottom:572.187067pt;}
.y1567_c00001{bottom:572.189587pt;}
.y2616_c00001{bottom:572.267067pt;}
.y1ef8_c00001{bottom:572.320000pt;}
.ye50_c00001{bottom:572.347067pt;}
.y3bc_c00001{bottom:572.507067pt;}
.y2323_c00001{bottom:572.586411pt;}
.y2a6_c00001{bottom:572.587067pt;}
.y2da7_c00001{bottom:572.644480pt;}
.y2d2d_c00001{bottom:572.655563pt;}
.y553_c00001{bottom:572.667067pt;}
.yc15_c00001{bottom:572.747067pt;}
.y18db_c00001{bottom:572.827067pt;}
.y28cb_c00001{bottom:572.907067pt;}
.y326c_c00001{bottom:572.960000pt;}
.ya59_c00001{bottom:572.987067pt;}
.y1143_c00001{bottom:573.067067pt;}
.yd8a_c00001{bottom:573.149827pt;}
.y29bf_c00001{bottom:573.225867pt;}
.y1e_c00001{bottom:573.227067pt;}
.y3227_c00001{bottom:573.314659pt;}
.y22cd_c00001{bottom:573.387067pt;}
.y2b3d_c00001{bottom:573.388555pt;}
.y2f05_c00001{bottom:573.440000pt;}
.y2c29_c00001{bottom:573.467067pt;}
.y397d_c00001{bottom:573.547067pt;}
.y2f39_c00001{bottom:573.600000pt;}
.y2873_c00001{bottom:573.627067pt;}
.ye7_c00001{bottom:573.707067pt;}
.y3885_c00001{bottom:573.782523pt;}
.y3494_c00001{bottom:573.786611pt;}
.y4d5_c00001{bottom:573.787067pt;}
.y1153_c00001{bottom:573.793851pt;}
.yebb_c00001{bottom:573.867067pt;}
.y2012_c00001{bottom:573.946675pt;}
.y60c_c00001{bottom:573.947067pt;}
.y652_c00001{bottom:574.107067pt;}
.y17fc_c00001{bottom:574.187067pt;}
.y38ea_c00001{bottom:574.346811pt;}
.y1d5f_c00001{bottom:574.400000pt;}
.y29ef_c00001{bottom:574.425627pt;}
.y295c_c00001{bottom:574.426019pt;}
.y20a4_c00001{bottom:574.426675pt;}
.y2535_c00001{bottom:574.506267pt;}
.y2b7f_c00001{bottom:574.507067pt;}
.y1a1b_c00001{bottom:574.560000pt;}
.yd18_c00001{bottom:574.667067pt;}
.y3a1c_c00001{bottom:574.670403pt;}
.yf56_c00001{bottom:574.747067pt;}
.y2d08_c00001{bottom:574.747131pt;}
.y2af6_c00001{bottom:574.827131pt;}
.y1da5_c00001{bottom:574.880000pt;}
.y1821_c00001{bottom:574.907067pt;}
.y12f8_c00001{bottom:574.987067pt;}
.y21c7_c00001{bottom:575.064427pt;}
.y21bc_c00001{bottom:575.065891pt;}
.y248f_c00001{bottom:575.067067pt;}
.y3712_c00001{bottom:575.146667pt;}
.y1e2d_c00001{bottom:575.200000pt;}
.yb0c_c00001{bottom:575.387067pt;}
.y1c9c_c00001{bottom:575.520000pt;}
.y4c4_c00001{bottom:575.547067pt;}
.y3785_c00001{bottom:575.627067pt;}
.y35ab_c00001{bottom:575.707067pt;}
.y22ff_c00001{bottom:575.867067pt;}
.y23ca_c00001{bottom:575.946739pt;}
.y6f5_c00001{bottom:575.947067pt;}
.y2f75_c00001{bottom:576.000000pt;}
.y23f6_c00001{bottom:576.027067pt;}
.y5a2_c00001{bottom:576.107067pt;}
.y486_c00001{bottom:576.187067pt;}
.y730_c00001{bottom:576.347067pt;}
.y42d_c00001{bottom:576.427067pt;}
.y30d0_c00001{bottom:576.480000pt;}
.yab9_c00001{bottom:576.507067pt;}
.y2f31_c00001{bottom:576.640000pt;}
.y1437_c00001{bottom:576.667067pt;}
.y1b51_c00001{bottom:576.802720pt;}
.y2bf9_c00001{bottom:576.827067pt;}
.y33cd_c00001{bottom:576.906603pt;}
.y138b_c00001{bottom:576.907067pt;}
.y86c_c00001{bottom:576.987067pt;}
.y1b2_c00001{bottom:577.067067pt;}
.y2456_c00001{bottom:577.147067pt;}
.y19d3_c00001{bottom:577.280000pt;}
.y1516_c00001{bottom:577.307067pt;}
.y34cd_c00001{bottom:577.385867pt;}
.y16fb_c00001{bottom:577.387067pt;}
.y2159_c00001{bottom:577.466675pt;}
.y39b5_c00001{bottom:577.467067pt;}
.y28b1_c00001{bottom:577.547067pt;}
.y1a1f_c00001{bottom:577.600000pt;}
.y1990_c00001{bottom:577.601760pt;}
.y27a5_c00001{bottom:577.787067pt;}
.y1e1_c00001{bottom:577.867067pt;}
.y2efb_c00001{bottom:577.920000pt;}
.y578_c00001{bottom:577.947067pt;}
.ya6b_c00001{bottom:578.027067pt;}
.y2895_c00001{bottom:578.107067pt;}
.yfd9_c00001{bottom:578.187067pt;}
.ya40_c00001{bottom:578.267067pt;}
.y1e99_c00001{bottom:578.400000pt;}
.y40e_c00001{bottom:578.427067pt;}
.y2cde_c00001{bottom:578.506019pt;}
.y1600_c00001{bottom:578.507147pt;}
.y5a4_c00001{bottom:578.587067pt;}
.y25d0_c00001{bottom:578.666611pt;}
.y1620_c00001{bottom:578.667067pt;}
.y2ff5_c00001{bottom:578.720000pt;}
.y3529_c00001{bottom:578.742891pt;}
.y2859_c00001{bottom:578.747067pt;}
.y36c3_c00001{bottom:578.827067pt;}
.y15e_c00001{bottom:578.907067pt;}
.y24af_c00001{bottom:578.907195pt;}
.y5cf_c00001{bottom:578.987067pt;}
.y2588_c00001{bottom:579.067067pt;}
.ydfe_c00001{bottom:579.147067pt;}
.y304d_c00001{bottom:579.200000pt;}
.y17b8_c00001{bottom:579.227067pt;}
.y384a_c00001{bottom:579.307067pt;}
.y1a64_c00001{bottom:579.360000pt;}
.y10b_c00001{bottom:579.387067pt;}
.y3e4_c00001{bottom:579.467067pt;}
.y26f9_c00001{bottom:579.547067pt;}
.y3738_c00001{bottom:579.547995pt;}
.yb6_c00001{bottom:579.627067pt;}
.y2a4b_c00001{bottom:579.707067pt;}
.y14a8_c00001{bottom:579.786083pt;}
.y1450_c00001{bottom:579.787067pt;}
.y1ab0_c00001{bottom:579.840000pt;}
.y76a_c00001{bottom:579.867067pt;}
.y1ec5_c00001{bottom:580.000000pt;}
.y244f_c00001{bottom:580.027067pt;}
.y15ca_c00001{bottom:580.107067pt;}
.y328d_c00001{bottom:580.160000pt;}
.y22ae_c00001{bottom:580.267067pt;}
.y1be5_c00001{bottom:580.320000pt;}
.y255f_c00001{bottom:580.347067pt;}
.y27ba_c00001{bottom:580.427067pt;}
.y45_c00001{bottom:580.507067pt;}
.y6dc_c00001{bottom:580.587067pt;}
.y990_c00001{bottom:580.667067pt;}
.y2fd1_c00001{bottom:580.800000pt;}
.y1347_c00001{bottom:580.827411pt;}
.y2aa7_c00001{bottom:580.986611pt;}
.y2ab2_c00001{bottom:580.987088pt;}
.y455_c00001{bottom:581.067067pt;}
.y32d9_c00001{bottom:581.120000pt;}
.y883_c00001{bottom:581.147067pt;}
.y1a65_c00001{bottom:581.280000pt;}
.y3023_c00001{bottom:581.445440pt;}
.y111d_c00001{bottom:581.467067pt;}
.y1356_c00001{bottom:581.551523pt;}
.yb40_c00001{bottom:581.627067pt;}
.y1f40_c00001{bottom:581.711595pt;}
.y311d_c00001{bottom:581.760000pt;}
.y275b_c00001{bottom:581.787995pt;}
.y2211_c00001{bottom:581.867067pt;}
.y3993_c00001{bottom:581.947067pt;}
.y1fa9_c00001{bottom:582.027067pt;}
.y2c99_c00001{bottom:582.107067pt;}
.y104b_c00001{bottom:582.187067pt;}
.y2b3c_c00001{bottom:582.188547pt;}
.y1d24_c00001{bottom:582.240000pt;}
.y350f_c00001{bottom:582.267067pt;}
.y1086_c00001{bottom:582.347067pt;}
.yf42_c00001{bottom:582.507067pt;}
.y34a7_c00001{bottom:582.587067pt;}
.yc77_c00001{bottom:582.669371pt;}
.y38ce_c00001{bottom:582.747067pt;}
.y3604_c00001{bottom:582.827067pt;}
.y25f7_c00001{bottom:582.907067pt;}
.y30f6_c00001{bottom:583.040000pt;}
.y190d_c00001{bottom:583.059520pt;}
.ya22_c00001{bottom:583.067067pt;}
.y2e30_c00001{bottom:583.200000pt;}
.y2e90_c00001{bottom:583.202720pt;}
.y2c7d_c00001{bottom:583.222635pt;}
.y2c6c_c00001{bottom:583.225563pt;}
.y2380_c00001{bottom:583.226283pt;}
.y5f1_c00001{bottom:583.307067pt;}
.y3093_c00001{bottom:583.360000pt;}
.y4ad_c00001{bottom:583.547067pt;}
.y2b11_c00001{bottom:583.625632pt;}
.y18bc_c00001{bottom:583.627067pt;}
.y2be3_c00001{bottom:583.787067pt;}
.y3235_c00001{bottom:583.851200pt;}
.y2de_c00001{bottom:583.867067pt;}
.y1239_c00001{bottom:584.026811pt;}
.y14d0_c00001{bottom:584.027147pt;}
.y533_c00001{bottom:584.107067pt;}
.y8a0_c00001{bottom:584.187067pt;}
.yc9f_c00001{bottom:584.190715pt;}
.y39f2_c00001{bottom:584.267067pt;}
.y324c_c00001{bottom:584.320000pt;}
.y2742_c00001{bottom:584.347067pt;}
.y195f_c00001{bottom:584.427011pt;}
.y31f_c00001{bottom:584.427067pt;}
.y20e2_c00001{bottom:584.585696pt;}
.ydb2_c00001{bottom:584.587067pt;}
.y26c4_c00001{bottom:584.667067pt;}
.y2697_c00001{bottom:584.747067pt;}
.y2342_c00001{bottom:584.827067pt;}
.y24e2_c00001{bottom:584.903731pt;}
.y293a_c00001{bottom:584.907067pt;}
.y2f29_c00001{bottom:584.960000pt;}
.y2804_c00001{bottom:585.066667pt;}
.y2a8b_c00001{bottom:585.147067pt;}
.y38cf_c00001{bottom:585.227067pt;}
.y3187_c00001{bottom:585.280000pt;}
.y2230_c00001{bottom:585.386219pt;}
.y39cf_c00001{bottom:585.387067pt;}
.y1e2e_c00001{bottom:585.440000pt;}
.y20bd_c00001{bottom:585.547067pt;}
.y1772_c00001{bottom:585.627067pt;}
.y949_c00001{bottom:585.707067pt;}
.y670_c00001{bottom:585.787067pt;}
.y1c9a_c00001{bottom:585.920000pt;}
.y14ef_c00001{bottom:585.947067pt;}
.y3884_c00001{bottom:586.022779pt;}
.y29ae_c00001{bottom:586.026667pt;}
.yf27_c00001{bottom:586.027067pt;}
.y3696_c00001{bottom:586.027603pt;}
.y1da6_c00001{bottom:586.080000pt;}
.y2d55_c00001{bottom:586.093920pt;}
.yb7e_c00001{bottom:586.184507pt;}
.ybc6_c00001{bottom:586.187067pt;}
.y1c56_c00001{bottom:586.240000pt;}
.y11ff_c00001{bottom:586.267067pt;}
.y112f_c00001{bottom:586.267811pt;}
.y1ff5_c00001{bottom:586.347067pt;}
.y1513_c00001{bottom:586.347667pt;}
.y1b04_c00001{bottom:586.400000pt;}
.y1592_c00001{bottom:586.507667pt;}
.y2422_c00001{bottom:586.587067pt;}
.y34b8_c00001{bottom:586.667067pt;}
.y2eb9_c00001{bottom:586.720000pt;}
.y1b1_c00001{bottom:586.747067pt;}
.y134_c00001{bottom:586.827067pt;}
.y2901_c00001{bottom:586.907067pt;}
.y367b_c00001{bottom:586.987067pt;}
.y2faa_c00001{bottom:587.040000pt;}
.y235f_c00001{bottom:587.067067pt;}
.y349_c00001{bottom:587.147067pt;}
.ydd4_c00001{bottom:587.148907pt;}
.yb55_c00001{bottom:587.227067pt;}
.y2513_c00001{bottom:587.303275pt;}
.y26ae_c00001{bottom:587.307067pt;}
.y2f04_c00001{bottom:587.360000pt;}
.y397c_c00001{bottom:587.387067pt;}
.y1da7_c00001{bottom:587.520000pt;}
.y3948_c00001{bottom:587.547067pt;}
.y71a_c00001{bottom:587.627067pt;}
.y1ef7_c00001{bottom:587.680000pt;}
.yb93_c00001{bottom:587.707067pt;}
.yae7_c00001{bottom:587.787067pt;}
.y1676_c00001{bottom:587.867067pt;}
.y2615_c00001{bottom:587.947067pt;}
.ye7f_c00001{bottom:588.107067pt;}
.y1a66_c00001{bottom:588.160000pt;}
.y1d_c00001{bottom:588.187067pt;}
.y69d_c00001{bottom:588.267067pt;}
.y2eb8_c00001{bottom:588.320000pt;}
.y3578_c00001{bottom:588.347067pt;}
.y7c5_c00001{bottom:588.427067pt;}
.y34a6_c00001{bottom:588.507067pt;}
.y3188_c00001{bottom:588.640000pt;}
.y630_c00001{bottom:588.667067pt;}
.y3a1b_c00001{bottom:588.750315pt;}
.y2d0c_c00001{bottom:588.826675pt;}
.y265a_c00001{bottom:588.827067pt;}
.y3189_c00001{bottom:588.960000pt;}
.y185_c00001{bottom:588.987067pt;}
.y37a0_c00001{bottom:589.067067pt;}
.y1566_c00001{bottom:589.069507pt;}
.y1b50_c00001{bottom:589.120000pt;}
.y2274_c00001{bottom:589.144323pt;}
.y2bb5_c00001{bottom:589.144779pt;}
.y2721_c00001{bottom:589.146611pt;}
.y2295_c00001{bottom:589.147067pt;}
.y2dcf_c00001{bottom:589.286240pt;}
.y7a5_c00001{bottom:589.387067pt;}
.y2da6_c00001{bottom:589.440000pt;}
.y2bac_c00001{bottom:589.467067pt;}
.y74a_c00001{bottom:589.547067pt;}
.y1be4_c00001{bottom:589.600000pt;}
.y1487_c00001{bottom:589.627067pt;}
.y68_c00001{bottom:589.707067pt;}
.y1e63_c00001{bottom:589.760000pt;}
.y50a_c00001{bottom:589.787067pt;}
.y26d9_c00001{bottom:589.867131pt;}
.y198f_c00001{bottom:589.919040pt;}
.y1410_c00001{bottom:589.947067pt;}
.yd89_c00001{bottom:589.949227pt;}
.y3bb_c00001{bottom:590.027467pt;}
.y1144_c00001{bottom:590.027587pt;}
.y1c9b_c00001{bottom:590.080000pt;}
.y11ce_c00001{bottom:590.105835pt;}
.y2109_c00001{bottom:590.106611pt;}
.y223_c00001{bottom:590.187067pt;}
.y26e_c00001{bottom:590.267067pt;}
.y1810_c00001{bottom:590.267200pt;}
.y2c49_c00001{bottom:590.346667pt;}
.y363_c00001{bottom:590.347067pt;}
.y1c57_c00001{bottom:590.400000pt;}
.y2534_c00001{bottom:590.426667pt;}
.y2872_c00001{bottom:590.427067pt;}
.y3807_c00001{bottom:590.507067pt;}
.y1936_c00001{bottom:590.560000pt;}
.y1271_c00001{bottom:590.587067pt;}
.ycea_c00001{bottom:590.667067pt;}
.y304e_c00001{bottom:590.720000pt;}
.y2086_c00001{bottom:590.747067pt;}
.y1154_c00001{bottom:590.754371pt;}
.y2a7_c00001{bottom:590.986667pt;}
.y651_c00001{bottom:590.987067pt;}
.y2b3b_c00001{bottom:590.988539pt;}
.y9f8_c00001{bottom:591.147067pt;}
.y18da_c00001{bottom:591.227067pt;}
.y298d_c00001{bottom:591.304491pt;}
.y2253_c00001{bottom:591.307067pt;}
.y3306_c00001{bottom:591.360000pt;}
.y83f_c00001{bottom:591.387067pt;}
.y2636_c00001{bottom:591.547067pt;}
.y37b9_c00001{bottom:591.787067pt;}
.yc44_c00001{bottom:591.867067pt;}
.y2322_c00001{bottom:591.946347pt;}
.y189c_c00001{bottom:591.947067pt;}
.y178b_c00001{bottom:592.027067pt;}
.y1739_c00001{bottom:592.107067pt;}
.y318a_c00001{bottom:592.160000pt;}
.ye8f_c00001{bottom:592.183203pt;}
.y35d0_c00001{bottom:592.187067pt;}
.ye6_c00001{bottom:592.347067pt;}
.y1e0_c00001{bottom:592.427067pt;}
.y1b99_c00001{bottom:592.640000pt;}
.y17cd_c00001{bottom:592.667067pt;}
.y340e_c00001{bottom:592.667611pt;}
.y15d_c00001{bottom:592.747067pt;}
.y1da8_c00001{bottom:592.800000pt;}
.y23a8_c00001{bottom:592.827011pt;}
.y4d4_c00001{bottom:592.907067pt;}
.y1a1e_c00001{bottom:592.960000pt;}
.y9ab_c00001{bottom:592.986627pt;}
.y2455_c00001{bottom:592.987067pt;}
.y2a5_c00001{bottom:593.067067pt;}
.y31b3_c00001{bottom:593.120000pt;}
.y1193_c00001{bottom:593.147067pt;}
.y3493_c00001{bottom:593.227067pt;}
.y31e3_c00001{bottom:593.280000pt;}
.y2a8_c00001{bottom:593.307067pt;}
.y2011_c00001{bottom:593.387131pt;}
.y2f38_c00001{bottom:593.440000pt;}
.y6f4_c00001{bottom:593.547067pt;}
.y1d22_c00001{bottom:593.600000pt;}
.y5a1_c00001{bottom:593.627067pt;}
.y3737_c00001{bottom:593.627907pt;}
.y15c3_c00001{bottom:593.708067pt;}
.y1e98_c00001{bottom:593.760000pt;}
.y3022_c00001{bottom:593.762720pt;}
.y29ee_c00001{bottom:593.785563pt;}
.y295b_c00001{bottom:593.785955pt;}
.y20a3_c00001{bottom:593.786611pt;}
.y2a4c_c00001{bottom:593.786675pt;}
.yf55_c00001{bottom:593.787067pt;}
.y3629_c00001{bottom:593.867067pt;}
.y1cd7_c00001{bottom:593.920000pt;}
.y36de_c00001{bottom:593.945947pt;}
.y4c3_c00001{bottom:593.947067pt;}
.y7d3_c00001{bottom:594.027067pt;}
.y5c9_c00001{bottom:594.107067pt;}
.y2787_c00001{bottom:594.187067pt;}
.y1b05_c00001{bottom:594.240000pt;}
.y38b2_c00001{bottom:594.267067pt;}
.y39b6_c00001{bottom:594.347067pt;}
.y30ce_c00001{bottom:594.400000pt;}
.y21c6_c00001{bottom:594.424363pt;}
.y21bb_c00001{bottom:594.425827pt;}
.y2b7e_c00001{bottom:594.507067pt;}
.y485_c00001{bottom:594.587067pt;}
.y2bf8_c00001{bottom:594.747067pt;}
.y42c_c00001{bottom:594.827067pt;}
.y248e_c00001{bottom:594.827443pt;}
.y39f1_c00001{bottom:594.906667pt;}
.y811_c00001{bottom:594.907067pt;}
.y2f74_c00001{bottom:595.040000pt;}
.ya3f_c00001{bottom:595.067067pt;}
.y19d0_c00001{bottom:595.200000pt;}
.y3711_c00001{bottom:595.226667pt;}
.y1fde_c00001{bottom:595.227067pt;}
.y902_c00001{bottom:595.227563pt;}
.y23c9_c00001{bottom:595.306675pt;}
.y1ec4_c00001{bottom:595.360000pt;}
.y15ff_c00001{bottom:595.386723pt;}
.y1016_c00001{bottom:595.386811pt;}
.y8c_c00001{bottom:595.467067pt;}
.y2e8f_c00001{bottom:595.520000pt;}
.y1c23_c00001{bottom:595.680000pt;}
.y326b_c00001{bottom:595.840000pt;}
.y275a_c00001{bottom:595.867907pt;}
.y12ca_c00001{bottom:595.947067pt;}
.y335a_c00001{bottom:596.000000pt;}
.y86b_c00001{bottom:596.027067pt;}
.y3819_c00001{bottom:596.187067pt;}
.y1238_c00001{bottom:596.267067pt;}
.y1f19_c00001{bottom:596.267867pt;}
.y2efa_c00001{bottom:596.320000pt;}
.y60b_c00001{bottom:596.427067pt;}
.y2f30_c00001{bottom:596.480000pt;}
.y2ff3_c00001{bottom:596.640000pt;}
.y38fa_c00001{bottom:596.667067pt;}
.y195e_c00001{bottom:596.747067pt;}
.y207_c00001{bottom:596.827067pt;}
.y384_c00001{bottom:596.907067pt;}
.y2158_c00001{bottom:596.907131pt;}
.y3e3_c00001{bottom:596.987067pt;}
.y2134_c00001{bottom:597.067067pt;}
.y37cf_c00001{bottom:597.147067pt;}
.y1008_c00001{bottom:597.227067pt;}
.y5ce_c00001{bottom:597.387067pt;}
.y1be2_c00001{bottom:597.440000pt;}
.y3593_c00001{bottom:597.465867pt;}
.y4ab_c00001{bottom:597.467067pt;}
.y1755_c00001{bottom:597.547067pt;}
.y2587_c00001{bottom:597.627067pt;}
.y2e5d_c00001{bottom:597.760000pt;}
.y10a_c00001{bottom:597.787067pt;}
.y2cdd_c00001{bottom:597.865955pt;}
.yaa4_c00001{bottom:597.867067pt;}
.y2e2f_c00001{bottom:597.920000pt;}
.y39b4_c00001{bottom:598.027067pt;}
.y25dd_c00001{bottom:598.107067pt;}
.ydfd_c00001{bottom:598.187067pt;}
.y111c_c00001{bottom:598.267067pt;}
.y24ae_c00001{bottom:598.267131pt;}
.y3883_c00001{bottom:598.342835pt;}
.y3773_c00001{bottom:598.347067pt;}
.y320e_c00001{bottom:598.427067pt;}
.y16fa_c00001{bottom:598.507067pt;}
.y1aaf_c00001{bottom:598.560000pt;}
.yb25_c00001{bottom:598.587067pt;}
.y30cf_c00001{bottom:598.720000pt;}
.yc78_c00001{bottom:598.749467pt;}
.y2858_c00001{bottom:598.827067pt;}
.y219d_c00001{bottom:598.907067pt;}
.y27e4_c00001{bottom:599.064243pt;}
.y1436_c00001{bottom:599.147067pt;}
.y14a7_c00001{bottom:599.226539pt;}
.y206f_c00001{bottom:599.226667pt;}
.yb5_c00001{bottom:599.227067pt;}
.y244e_c00001{bottom:599.307067pt;}
.yb2d_c00001{bottom:599.307171pt;}
.y852_c00001{bottom:599.387067pt;}
.y454_c00001{bottom:599.467067pt;}
.y1b4d_c00001{bottom:599.520000pt;}
.y302_c00001{bottom:599.547067pt;}
.ye84_c00001{bottom:599.547235pt;}
.y104a_c00001{bottom:599.627067pt;}
.y7f9_c00001{bottom:599.707067pt;}
.y2b3a_c00001{bottom:599.788531pt;}
.y16b8_c00001{bottom:599.867067pt;}
.y1df6_c00001{bottom:600.000000pt;}
.y4aa_c00001{bottom:600.107067pt;}
.y3695_c00001{bottom:600.107515pt;}
.y37ed_c00001{bottom:600.267067pt;}
.yca0_c00001{bottom:600.270947pt;}
.yc14_c00001{bottom:600.347067pt;}
.y28ca_c00001{bottom:600.427067pt;}
.y2ab1_c00001{bottom:600.427544pt;}
.y31e1_c00001{bottom:600.480000pt;}
.y27b9_c00001{bottom:600.507067pt;}
.ya58_c00001{bottom:600.587067pt;}
.y328f_c00001{bottom:600.644480pt;}
.y31e_c00001{bottom:600.747067pt;}
.y255e_c00001{bottom:600.826667pt;}
.y14cf_c00001{bottom:600.906723pt;}
.y2f28_c00001{bottom:600.960000pt;}
.y2803_c00001{bottom:600.987067pt;}
.y168d_c00001{bottom:601.067315pt;}
.y1331_c00001{bottom:601.307067pt;}
.y245_c00001{bottom:601.387067pt;}
.y2dce_c00001{bottom:601.442720pt;}
.y331d_c00001{bottom:601.600000pt;}
.y577_c00001{bottom:601.627067pt;}
.y1348_c00001{bottom:601.627595pt;}
.y2aa6_c00001{bottom:601.707067pt;}
.y2a2d_c00001{bottom:601.787067pt;}
.y3437_c00001{bottom:601.867067pt;}
.y32d6_c00001{bottom:601.920000pt;}
.y29ad_c00001{bottom:601.947067pt;}
.y313b_c00001{bottom:602.080000pt;}
.y1df_c00001{bottom:602.107067pt;}
.y25ad_c00001{bottom:602.187067pt;}
.y25f6_c00001{bottom:602.267067pt;}
.y19d1_c00001{bottom:602.400000pt;}
.y1357_c00001{bottom:602.431867pt;}
.y2dd_c00001{bottom:602.507067pt;}
.y2c7c_c00001{bottom:602.582571pt;}
.y2c6b_c00001{bottom:602.585499pt;}
.yd43_c00001{bottom:602.587067pt;}
.y237f_c00001{bottom:602.666739pt;}
.y2be2_c00001{bottom:602.667067pt;}
.y1d5c_c00001{bottom:602.720000pt;}
.y3860_c00001{bottom:602.827067pt;}
.y3a1a_c00001{bottom:602.830227pt;}
.y1ef6_c00001{bottom:602.880000pt;}
.y2b10_c00001{bottom:603.066088pt;}
.y532_c00001{bottom:603.067067pt;}
.y1b0_c00001{bottom:603.147067pt;}
.y1f3f_c00001{bottom:603.151323pt;}
.y66f_c00001{bottom:603.307067pt;}
.y1591_c00001{bottom:603.307667pt;}
.y1a21_c00001{bottom:603.360000pt;}
.y2d2c_c00001{bottom:603.376811pt;}
.y22fe_c00001{bottom:603.387067pt;}
.y35aa_c00001{bottom:603.467067pt;}
.y1e2b_c00001{bottom:603.520000pt;}
.y1b4f_c00001{bottom:603.680000pt;}
.y2674_c00001{bottom:603.707067pt;}
.y29d5_c00001{bottom:603.787067pt;}
.y3ba_c00001{bottom:603.867067pt;}
.y20e1_c00001{bottom:603.945632pt;}
.y62f_c00001{bottom:603.947067pt;}
.ydd3_c00001{bottom:603.948307pt;}
.y44_c00001{bottom:604.027067pt;}
.y3648_c00001{bottom:604.106555pt;}
.yab8_c00001{bottom:604.107067pt;}
.y291a_c00001{bottom:604.187067pt;}
.y24e1_c00001{bottom:604.263667pt;}
.y1c24_c00001{bottom:604.320000pt;}
.y5f0_c00001{bottom:604.427067pt;}
.y190c_c00001{bottom:604.493920pt;}
.y217f_c00001{bottom:604.507067pt;}
.y2a8a_c00001{bottom:604.587067pt;}
.y1be3_c00001{bottom:604.640000pt;}
.y26c3_c00001{bottom:604.667067pt;}
.y112e_c00001{bottom:604.667563pt;}
.y348_c00001{bottom:604.747067pt;}
.y222f_c00001{bottom:604.826675pt;}
.y18bb_c00001{bottom:604.827067pt;}
.y2bab_c00001{bottom:605.066675pt;}
.y198e_c00001{bottom:605.120000pt;}
.y11fe_c00001{bottom:605.147067pt;}
.y33b1_c00001{bottom:605.227067pt;}
.y2900_c00001{bottom:605.307067pt;}
.y356a_c00001{bottom:605.387067pt;}
.y133_c00001{bottom:605.467067pt;}
.y576_c00001{bottom:605.547067pt;}
.y1e65_c00001{bottom:605.600000pt;}
.ya21_c00001{bottom:605.627067pt;}
.y2614_c00001{bottom:605.707067pt;}
.y1c_c00001{bottom:605.787067pt;}
.y138f_c00001{bottom:605.867067pt;}
.y2e8d_c00001{bottom:605.920000pt;}
.y29be_c00001{bottom:605.946267pt;}
.y33fe_c00001{bottom:605.947067pt;}
.y1565_c00001{bottom:605.949427pt;}
.y163d_c00001{bottom:606.027067pt;}
.y1a63_c00001{bottom:606.080000pt;}
.y26d_c00001{bottom:606.187067pt;}
.y22cb_c00001{bottom:606.266019pt;}
.y2533_c00001{bottom:606.266667pt;}
.y161f_c00001{bottom:606.267067pt;}
.y2659_c00001{bottom:606.427067pt;}
.y3565_c00001{bottom:606.667067pt;}
.y3305_c00001{bottom:606.720000pt;}
.y2512_c00001{bottom:606.743731pt;}
.y34a5_c00001{bottom:606.747067pt;}
.y719_c00001{bottom:606.827067pt;}
.yd88_c00001{bottom:606.829147pt;}
.y184_c00001{bottom:606.907067pt;}
.y1145_c00001{bottom:606.907947pt;}
.y1399_c00001{bottom:606.987067pt;}
.y2fd0_c00001{bottom:607.040000pt;}
.y2bcd_c00001{bottom:607.067067pt;}
.y69c_c00001{bottom:607.147067pt;}
.y2f03_c00001{bottom:607.200000pt;}
.y3226_c00001{bottom:607.234075pt;}
.y16d9_c00001{bottom:607.307067pt;}
.y1b4e_c00001{bottom:607.360000pt;}
.y144f_c00001{bottom:607.387067pt;}
.y244_c00001{bottom:607.467067pt;}
.y2d54_c00001{bottom:607.528320pt;}
.yb7f_c00001{bottom:607.544475pt;}
.yce9_c00001{bottom:607.547067pt;}
.y1015_c00001{bottom:607.627067pt;}
.y1155_c00001{bottom:607.634731pt;}
.y552_c00001{bottom:607.787067pt;}
.y3736_c00001{bottom:607.787619pt;}
.y1d1f_c00001{bottom:607.840000pt;}
.y22ad_c00001{bottom:607.867067pt;}
.y397b_c00001{bottom:607.947067pt;}
.y1c98_c00001{bottom:608.000000pt;}
.y187e_c00001{bottom:608.027067pt;}
.y2d77_c00001{bottom:608.160000pt;}
.y27d1_c00001{bottom:608.187067pt;}
.y2d0b_c00001{bottom:608.267131pt;}
.y1c55_c00001{bottom:608.320000pt;}
.ybc5_c00001{bottom:608.347067pt;}
.ye8e_c00001{bottom:608.423619pt;}
.y1b01_c00001{bottom:608.480000pt;}
.y2a3_c00001{bottom:608.506667pt;}
.y2273_c00001{bottom:608.584779pt;}
.y2bb4_c00001{bottom:608.585235pt;}
.y1097_c00001{bottom:608.587067pt;}
.y2b39_c00001{bottom:608.588523pt;}
.y30f7_c00001{bottom:608.640000pt;}
.y650_c00001{bottom:608.667067pt;}
.y222_c00001{bottom:608.747067pt;}
.y509_c00001{bottom:608.827067pt;}
.y2454_c00001{bottom:608.907067pt;}
.y248d_c00001{bottom:608.907355pt;}
.y1935_c00001{bottom:608.960000pt;}
.yb94_c00001{bottom:609.066867pt;}
.y347b_c00001{bottom:609.067067pt;}
.y1e97_c00001{bottom:609.120000pt;}
.yb3f_c00001{bottom:609.227067pt;}
.y1d21_c00001{bottom:609.280000pt;}
.yd17_c00001{bottom:609.387067pt;}
.y1d23_c00001{bottom:609.440000pt;}
.y1fa8_c00001{bottom:609.467067pt;}
.y1866_c00001{bottom:609.547067pt;}
.y1270_c00001{bottom:609.627067pt;}
.y3528_c00001{bottom:609.703355pt;}
.y3092_c00001{bottom:609.760000pt;}
.y2a6b_c00001{bottom:609.787067pt;}
.y2720_c00001{bottom:609.867067pt;}
.y2dfc_c00001{bottom:609.928960pt;}
.y9aa_c00001{bottom:609.947067pt;}
.y2759_c00001{bottom:609.947819pt;}
.y2c47_c00001{bottom:610.027067pt;}
.y2e8e_c00001{bottom:610.080000pt;}
.y1b98_c00001{bottom:610.082720pt;}
.y34cc_c00001{bottom:610.106267pt;}
.ye5_c00001{bottom:610.187067pt;}
.y15c_c00001{bottom:610.267067pt;}
.y2bf7_c00001{bottom:610.346675pt;}
.y2f2f_c00001{bottom:610.400000pt;}
.y2c48_c00001{bottom:610.426667pt;}
.y3628_c00001{bottom:610.506499pt;}
.y26d8_c00001{bottom:610.507067pt;}
.y15c2_c00001{bottom:610.507467pt;}
.y15c9_c00001{bottom:610.508931pt;}
.y3882_c00001{bottom:610.583091pt;}
.y2a2_c00001{bottom:610.587067pt;}
.y298c_c00001{bottom:610.664427pt;}
.y241f_c00001{bottom:610.667067pt;}
.y1da1_c00001{bottom:610.720000pt;}
.y4d3_c00001{bottom:610.747067pt;}
.y2a4_c00001{bottom:610.827067pt;}
.y3356_c00001{bottom:610.880000pt;}
.y3492_c00001{bottom:610.907067pt;}
.ye89_c00001{bottom:610.986067pt;}
.y3457_c00001{bottom:610.987067pt;}
.y5a0_c00001{bottom:611.147067pt;}
.y2e5e_c00001{bottom:611.200000pt;}
.y395e_c00001{bottom:611.227067pt;}
.y2321_c00001{bottom:611.386803pt;}
.y1712_c00001{bottom:611.387067pt;}
.y180f_c00001{bottom:611.387200pt;}
.y72f_c00001{bottom:611.467067pt;}
.yf66_c00001{bottom:611.547067pt;}
.y32d8_c00001{bottom:611.680000pt;}
.y89f_c00001{bottom:611.787067pt;}
.y11c3_c00001{bottom:611.787779pt;}
.y37b8_c00001{bottom:611.867067pt;}
.ya3e_c00001{bottom:611.947067pt;}
.y1532_c00001{bottom:612.027067pt;}
.y15fe_c00001{bottom:612.107067pt;}
.y1c99_c00001{bottom:612.160000pt;}
.y67_c00001{bottom:612.187067pt;}
.y4c2_c00001{bottom:612.347067pt;}
.y12bc_c00001{bottom:612.347371pt;}
.y11cf_c00001{bottom:612.505211pt;}
.y3831_c00001{bottom:612.506555pt;}
.y2038_c00001{bottom:612.506675pt;}
.y5c8_c00001{bottom:612.507067pt;}
.y1b03_c00001{bottom:612.640000pt;}
.yeba_c00001{bottom:612.667067pt;}
.y33cc_c00001{bottom:612.667131pt;}
.y2010_c00001{bottom:612.747067pt;}
.yff2_c00001{bottom:612.827067pt;}
.y1af_c00001{bottom:612.907067pt;}
.y787_c00001{bottom:612.987067pt;}
.y189b_c00001{bottom:613.067067pt;}
.y178a_c00001{bottom:613.147067pt;}
.y29ed_c00001{bottom:613.226019pt;}
.y295a_c00001{bottom:613.226411pt;}
.y484_c00001{bottom:613.227067pt;}
.y2586_c00001{bottom:613.227131pt;}
.y948_c00001{bottom:613.307067pt;}
.y392e_c00001{bottom:613.387067pt;}
.y42b_c00001{bottom:613.467067pt;}
.y9f7_c00001{bottom:613.547067pt;}
.y12cb_c00001{bottom:613.547467pt;}
.y304b_c00001{bottom:613.600000pt;}
.y901_c00001{bottom:613.627315pt;}
.y395f_c00001{bottom:613.707067pt;}
.y1e2c_c00001{bottom:613.760000pt;}
.y22e8_c00001{bottom:613.787067pt;}
.y21c5_c00001{bottom:613.864819pt;}
.y98f_c00001{bottom:613.866187pt;}
.y21ba_c00001{bottom:613.866283pt;}
.y23f5_c00001{bottom:613.867067pt;}
.y1ff4_c00001{bottom:613.947067pt;}
.y2b95_c00001{bottom:614.027067pt;}
.y333c_c00001{bottom:614.080000pt;}
.y3694_c00001{bottom:614.267227pt;}
.y16a7_c00001{bottom:614.347067pt;}
.y3359_c00001{bottom:614.400000pt;}
.y383_c00001{bottom:614.427067pt;}
.y3e2_c00001{bottom:614.507067pt;}
.y1d5e_c00001{bottom:614.560000pt;}
.y235e_c00001{bottom:614.587067pt;}
.y2ef9_c00001{bottom:614.720000pt;}
.y38b3_c00001{bottom:614.747067pt;}
.y23c8_c00001{bottom:614.747131pt;}
.yb54_c00001{bottom:614.827067pt;}
.yc79_c00001{bottom:614.829563pt;}
.y769_c00001{bottom:614.907067pt;}
.y86a_c00001{bottom:615.067067pt;}
.y111b_c00001{bottom:615.147067pt;}
.y33cb_c00001{bottom:615.147147pt;}
.y3181_c00001{bottom:615.200000pt;}
.y3710_c00001{bottom:615.226667pt;}
.y40d_c00001{bottom:615.227067pt;}
.yae6_c00001{bottom:615.307067pt;}
.y4a9_c00001{bottom:615.467067pt;}
.y3b9_c00001{bottom:615.627067pt;}
.y2e2d_c00001{bottom:615.840000pt;}
.ye4f_c00001{bottom:615.947067pt;}
.y31af_c00001{bottom:616.000000pt;}
.y2ae0_c00001{bottom:616.027067pt;}
.ydfc_c00001{bottom:616.106243pt;}
.y109_c00001{bottom:616.187067pt;}
.y12e9_c00001{bottom:616.267067pt;}
.y1b02_c00001{bottom:616.320000pt;}
.y3647_c00001{bottom:616.346811pt;}
.y3a3f_c00001{bottom:616.347067pt;}
.yca1_c00001{bottom:616.351179pt;}
.y3021_c00001{bottom:616.480000pt;}
.y165e_c00001{bottom:616.587067pt;}
.y30cc_c00001{bottom:616.640000pt;}
.y25cf_c00001{bottom:616.667067pt;}
.y255d_c00001{bottom:616.747067pt;}
.y17fb_c00001{bottom:616.907067pt;}
.y1aae_c00001{bottom:616.960000pt;}
.y3a19_c00001{bottom:616.989939pt;}
.y37ce_c00001{bottom:617.147067pt;}
.y1486_c00001{bottom:617.227067pt;}
.y2cdc_c00001{bottom:617.306411pt;}
.y1014_c00001{bottom:617.307067pt;}
.y1049_c00001{bottom:617.387067pt;}
.y328e_c00001{bottom:617.440000pt;}
.y2f73_c00001{bottom:617.443520pt;}
.y243_c00001{bottom:617.467067pt;}
.y2b38_c00001{bottom:617.468195pt;}
.y140f_c00001{bottom:617.547067pt;}
.y315d_c00001{bottom:617.600000pt;}
.y14ce_c00001{bottom:617.627067pt;}
.y28b0_c00001{bottom:617.707067pt;}
.y101c_c00001{bottom:617.787067pt;}
.y453_c00001{bottom:617.867067pt;}
.y1df1_c00001{bottom:617.920000pt;}
.y8b_c00001{bottom:617.947067pt;}
.y2133_c00001{bottom:618.026603pt;}
.y25ac_c00001{bottom:618.027067pt;}
.y2894_c00001{bottom:618.187067pt;}
.y1ef5_c00001{bottom:618.240000pt;}
.y2421_c00001{bottom:618.347067pt;}
.y1e66_c00001{bottom:618.400000pt;}
.y38f9_c00001{bottom:618.427067pt;}
.y27e3_c00001{bottom:618.504699pt;}
.y14a6_c00001{bottom:618.586475pt;}
.y62e_c00001{bottom:618.667067pt;}
.y6db_c00001{bottom:618.747067pt;}
.y31d_c00001{bottom:618.827067pt;}
.y304c_c00001{bottom:618.880000pt;}
.y2695_c00001{bottom:618.906675pt;}
.y24ad_c00001{bottom:618.907067pt;}
.y83e_c00001{bottom:618.987067pt;}
.y3b8_c00001{bottom:619.227067pt;}
.y3469_c00001{bottom:619.307067pt;}
.y2f02_c00001{bottom:619.360000pt;}
.yc43_c00001{bottom:619.467067pt;}
.y31b2_c00001{bottom:619.520000pt;}
.y2252_c00001{bottom:619.627067pt;}
.y16f9_c00001{bottom:619.707067pt;}
.y38e9_c00001{bottom:619.787067pt;}
.y1368_c00001{bottom:619.867067pt;}
.y2e2e_c00001{bottom:620.000000pt;}
.y16b7_c00001{bottom:620.027067pt;}
.y1590_c00001{bottom:620.107067pt;}
.y3429_c00001{bottom:620.187067pt;}
.y184e_c00001{bottom:620.267067pt;}
.y3321_c00001{bottom:620.320000pt;}
.y37ec_c00001{bottom:620.347067pt;}
.y2dc_c00001{bottom:620.427067pt;}
.y19ce_c00001{bottom:620.480000pt;}
.y2210_c00001{bottom:620.507067pt;}
.y1192_c00001{bottom:620.587067pt;}
.y1df4_c00001{bottom:620.640000pt;}
.y1651_c00001{bottom:620.747067pt;}
.y1512_c00001{bottom:620.747147pt;}
.y30cd_c00001{bottom:620.800000pt;}
.y66e_c00001{bottom:620.827067pt;}
.ydd2_c00001{bottom:620.828227pt;}
.y1de_c00001{bottom:620.907067pt;}
.y2da5_c00001{bottom:620.960000pt;}
.y324b_c00001{bottom:621.120000pt;}
.y34f9_c00001{bottom:621.147067pt;}
.y26c_c00001{bottom:621.227067pt;}
.y1a1a_c00001{bottom:621.280000pt;}
.y3436_c00001{bottom:621.307067pt;}
.y36dd_c00001{bottom:621.386507pt;}
.y1f5d_c00001{bottom:621.387067pt;}
.y531_c00001{bottom:621.467067pt;}
.y17b7_c00001{bottom:621.547067pt;}
.y1b48_c00001{bottom:621.600000pt;}
.y347_c00001{bottom:621.627067pt;}
.y25f5_c00001{bottom:621.707067pt;}
.y397a_c00001{bottom:621.787067pt;}
.y3735_c00001{bottom:621.867531pt;}
.y2c7b_c00001{bottom:622.023027pt;}
.y2c6a_c00001{bottom:622.025955pt;}
.y237e_c00001{bottom:622.026675pt;}
.y379f_c00001{bottom:622.027067pt;}
.y1da2_c00001{bottom:622.080000pt;}
.y2532_c00001{bottom:622.106667pt;}
.y29d4_c00001{bottom:622.107067pt;}
.y2613_c00001{bottom:622.187067pt;}
.y2dfb_c00001{bottom:622.246240pt;}
.y38cd_c00001{bottom:622.267067pt;}
.ybee_c00001{bottom:622.347067pt;}
.y1b97_c00001{bottom:622.400000pt;}
.y2b0f_c00001{bottom:622.426024pt;}
.y390b_c00001{bottom:622.427067pt;}
.y810_c00001{bottom:622.507067pt;}
.y1349_c00001{bottom:622.507939pt;}
.y1be0_c00001{bottom:622.560000pt;}
.y3627_c00001{bottom:622.746755pt;}
.ya6a_c00001{bottom:622.746811pt;}
.y3881_c00001{bottom:622.823347pt;}
.yfbd_c00001{bottom:622.827067pt;}
.ye5c_c00001{bottom:622.827315pt;}
.y1564_c00001{bottom:622.829347pt;}
.y2294_c00001{bottom:622.907067pt;}
.y26c2_c00001{bottom:622.987067pt;}
.y575_c00001{bottom:623.067067pt;}
.y112d_c00001{bottom:623.067315pt;}
.y2be1_c00001{bottom:623.227067pt;}
.y1358_c00001{bottom:623.232051pt;}
.y20e0_c00001{bottom:623.305568pt;}
.y2871_c00001{bottom:623.306675pt;}
.y7a3_c00001{bottom:623.307067pt;}
.y1b_c00001{bottom:623.387067pt;}
.y132_c00001{bottom:623.467067pt;}
.y1da3_c00001{bottom:623.520000pt;}
.yf97_c00001{bottom:623.627067pt;}
.y24e0_c00001{bottom:623.704123pt;}
.y28ff_c00001{bottom:623.707067pt;}
.yd87_c00001{bottom:623.709067pt;}
.y2673_c00001{bottom:623.787067pt;}
.y27d0_c00001{bottom:623.787131pt;}
.y1146_c00001{bottom:623.868467pt;}
.y60a_c00001{bottom:624.027067pt;}
.ya57_c00001{bottom:624.107067pt;}
.y2758_c00001{bottom:624.107531pt;}
.y1c20_c00001{bottom:624.160000pt;}
.y222e_c00001{bottom:624.186611pt;}
.y11fd_c00001{bottom:624.187067pt;}
.y4d2_c00001{bottom:624.267067pt;}
.y1e96_c00001{bottom:624.320000pt;}
.yce8_c00001{bottom:624.347067pt;}
.y262f_c00001{bottom:624.426283pt;}
.y2baa_c00001{bottom:624.426611pt;}
.y206_c00001{bottom:624.427067pt;}
.y1156_c00001{bottom:624.595251pt;}
.y1f3e_c00001{bottom:624.671203pt;}
.y3830_c00001{bottom:624.746811pt;}
.y2453_c00001{bottom:624.747067pt;}
.y1007_c00001{bottom:624.827067pt;}
.y2fcf_c00001{bottom:624.960000pt;}
.y2a89_c00001{bottom:625.067067pt;}
.y718_c00001{bottom:625.227067pt;}
.y183_c00001{bottom:625.307067pt;}
.y2802_c00001{bottom:625.387067pt;}
.y7c4_c00001{bottom:625.467067pt;}
.y217e_c00001{bottom:625.547067pt;}
.y22ca_c00001{bottom:625.625955pt;}
.y5ef_c00001{bottom:625.627067pt;}
.y1463_c00001{bottom:625.787067pt;}
.y1b4c_c00001{bottom:625.920000pt;}
.y190b_c00001{bottom:625.928320pt;}
.y18ba_c00001{bottom:625.947067pt;}
.y2a0_c00001{bottom:626.026667pt;}
.y2511_c00001{bottom:626.103667pt;}
.y98e_c00001{bottom:626.186243pt;}
.y2b37_c00001{bottom:626.268187pt;}
.y69b_c00001{bottom:626.347067pt;}
.y2ff1_c00001{bottom:626.400000pt;}
.y283f_c00001{bottom:626.427067pt;}
.y43_c00001{bottom:626.507067pt;}
.y2d76_c00001{bottom:626.560000pt;}
.y3234_c00001{bottom:626.720000pt;}
.y1435_c00001{bottom:626.747067pt;}
.y851_c00001{bottom:626.987067pt;}
.y2f37_c00001{bottom:627.040000pt;}
.y221_c00001{bottom:627.147067pt;}
.y7f8_c00001{bottom:627.307067pt;}
.y1934_c00001{bottom:627.360000pt;}
.y26ad_c00001{bottom:627.387067pt;}
.y15c1_c00001{bottom:627.387387pt;}
.y15c8_c00001{bottom:627.388851pt;}
.y2a8c_c00001{bottom:627.547067pt;}
.y1381_c00001{bottom:627.627067pt;}
.y749_c00001{bottom:627.627675pt;}
.yb26_c00001{bottom:627.627699pt;}
.y19cf_c00001{bottom:627.680000pt;}
.y2af5_c00001{bottom:627.706611pt;}
.y15b_c00001{bottom:627.787067pt;}
.y508_c00001{bottom:627.867067pt;}
.y2272_c00001{bottom:627.944715pt;}
.y2c04_c00001{bottom:627.945107pt;}
.y2bb3_c00001{bottom:627.945171pt;}
.y64f_c00001{bottom:627.947067pt;}
.y2e8c_c00001{bottom:628.000000pt;}
.y18d9_c00001{bottom:628.027067pt;}
.y29f_c00001{bottom:628.107067pt;}
.y10b9_c00001{bottom:628.187067pt;}
.y62d_c00001{bottom:628.267067pt;}
.ydfb_c00001{bottom:628.346499pt;}
.y2a1_c00001{bottom:628.347067pt;}
.y3693_c00001{bottom:628.347139pt;}
.yb2e_c00001{bottom:628.426627pt;}
.y36fb_c00001{bottom:628.427067pt;}
.y126f_c00001{bottom:628.507067pt;}
.y16d8_c00001{bottom:628.587067pt;}
.y1da4_c00001{bottom:628.640000pt;}
.y271f_c00001{bottom:628.663835pt;}
.y59f_c00001{bottom:628.667067pt;}
.y23a7_c00001{bottom:628.747067pt;}
.yb80_c00001{bottom:628.824283pt;}
.yd16_c00001{bottom:628.826811pt;}
.y3e1_c00001{bottom:628.827067pt;}
.y1ae_c00001{bottom:628.907067pt;}
.y2dcd_c00001{bottom:628.960000pt;}
.y72e_c00001{bottom:628.987067pt;}
.y2e5c_c00001{bottom:629.120000pt;}
.y2d53_c00001{bottom:629.131200pt;}
.y187d_c00001{bottom:629.147067pt;}
.ye4_c00001{bottom:629.227067pt;}
.y30f5_c00001{bottom:629.280000pt;}
.y39ef_c00001{bottom:629.306667pt;}
.y124a_c00001{bottom:629.307067pt;}
.y333b_c00001{bottom:629.440000pt;}
.y1b4b_c00001{bottom:629.600000pt;}
.y2bf6_c00001{bottom:629.706611pt;}
.y198d_c00001{bottom:629.762720pt;}
.y15fd_c00001{bottom:629.787747pt;}
.y2108_c00001{bottom:629.867067pt;}
.y1be1_c00001{bottom:629.920000pt;}
.y12bd_c00001{bottom:629.947835pt;}
.y298b_c00001{bottom:630.024363pt;}
.yb4_c00001{bottom:630.027067pt;}
.y1c96_c00001{bottom:630.080000pt;}
.y219c_c00001{bottom:630.107067pt;}
.y3592_c00001{bottom:630.186267pt;}
.y12f7_c00001{bottom:630.187067pt;}
.y2f2e_c00001{bottom:630.240000pt;}
.y2a6a_c00001{bottom:630.267067pt;}
.yb95_c00001{bottom:630.346867pt;}
.y42a_c00001{bottom:630.347067pt;}
.y2c45_c00001{bottom:630.506667pt;}
.y339a_c00001{bottom:630.507067pt;}
.y1aff_c00001{bottom:630.560000pt;}
.y3806_c00001{bottom:630.587067pt;}
.y2320_c00001{bottom:630.746739pt;}
.y5c7_c00001{bottom:630.747067pt;}
.y1a62_c00001{bottom:630.880000pt;}
.y163c_c00001{bottom:630.907067pt;}
.yc7a_c00001{bottom:630.909659pt;}
.y22fd_c00001{bottom:630.987067pt;}
.y1c22_c00001{bottom:631.040000pt;}
.y12cc_c00001{bottom:631.067467pt;}
.y3a18_c00001{bottom:631.069851pt;}
.y3849_c00001{bottom:631.227067pt;}
.y767_c00001{bottom:631.307067pt;}
.y1390_c00001{bottom:631.307179pt;}
.y337b_c00001{bottom:631.391435pt;}
.y4c1_c00001{bottom:631.547067pt;}
.y786_c00001{bottom:631.627067pt;}
.y1e2a_c00001{bottom:631.680000pt;}
.yab7_c00001{bottom:631.707067pt;}
.y281a_c00001{bottom:631.787067pt;}
.y3091_c00001{bottom:631.840000pt;}
.y483_c00001{bottom:631.867067pt;}
.y382_c00001{bottom:631.947067pt;}
.y2036_c00001{bottom:631.947131pt;}
.y900_c00001{bottom:632.027067pt;}
.y1096_c00001{bottom:632.027563pt;}
.yeb9_c00001{bottom:632.107067pt;}
.yc34_c00001{bottom:632.267067pt;}
.y1d1b_c00001{bottom:632.320000pt;}
.y2c26_c00001{bottom:632.347067pt;}
.y139a_c00001{bottom:632.427067pt;}
.yca2_c00001{bottom:632.427299pt;}
.y39f0_c00001{bottom:632.507067pt;}
.y29ec_c00001{bottom:632.585955pt;}
.y2959_c00001{bottom:632.586347pt;}
.y1711_c00001{bottom:632.587067pt;}
.y180e_c00001{bottom:632.587200pt;}
.y1b94_c00001{bottom:632.640000pt;}
.y2a6c_c00001{bottom:632.747067pt;}
.y2ef8_c00001{bottom:632.800000pt;}
.y2c46_c00001{bottom:632.827067pt;}
.y4a8_c00001{bottom:632.987067pt;}
.y23f2_c00001{bottom:633.067067pt;}
.y31db_c00001{bottom:633.120000pt;}
.y1fa7_c00001{bottom:633.147067pt;}
.y21c4_c00001{bottom:633.224755pt;}
.y20a2_c00001{bottom:633.225891pt;}
.y21b9_c00001{bottom:633.226219pt;}
.ya20_c00001{bottom:633.227067pt;}
.y189a_c00001{bottom:633.307067pt;}
.y2f01_c00001{bottom:633.440000pt;}
.y40c_c00001{bottom:633.467067pt;}
.y25ce_c00001{bottom:633.547067pt;}
.y1ef4_c00001{bottom:633.600000pt;}
.y23a6_c00001{bottom:633.627067pt;}
.y161e_c00001{bottom:633.867067pt;}
.ye80_c00001{bottom:633.867739pt;}
.y315e_c00001{bottom:633.920000pt;}
.y2d2b_c00001{bottom:634.018139pt;}
.y311c_c00001{bottom:634.080000pt;}
.y23d1_c00001{bottom:634.107067pt;}
.y869_c00001{bottom:634.187067pt;}
.y11c4_c00001{bottom:634.187155pt;}
.y1c97_c00001{bottom:634.240000pt;}
.y2420_c00001{bottom:634.267067pt;}
.y1789_c00001{bottom:634.347067pt;}
.y2dfa_c00001{bottom:634.402720pt;}
.y1738_c00001{bottom:634.427067pt;}
.yfd8_c00001{bottom:634.507067pt;}
.y2aa4_c00001{bottom:634.586675pt;}
.y8b9_c00001{bottom:634.587067pt;}
.y1c54_c00001{bottom:634.720000pt;}
.y26f8_c00001{bottom:634.747067pt;}
.y108_c00001{bottom:634.827067pt;}
.y11d0_c00001{bottom:634.904587pt;}
.ya69_c00001{bottom:634.987067pt;}
.y3626_c00001{bottom:635.066811pt;}
.y242_c00001{bottom:635.067067pt;}
.y2b36_c00001{bottom:635.068179pt;}
.y3880_c00001{bottom:635.143403pt;}
.y3183_c00001{bottom:635.200000pt;}
.y370f_c00001{bottom:635.306667pt;}
.y89e_c00001{bottom:635.307067pt;}
.y14cd_c00001{bottom:635.307667pt;}
.y1cd6_c00001{bottom:635.368960pt;}
.y3b7_c00001{bottom:635.387067pt;}
.y219b_c00001{bottom:635.467067pt;}
.y3185_c00001{bottom:635.520000pt;}
.y2132_c00001{bottom:635.627067pt;}
.ydb1_c00001{bottom:635.707067pt;}
.y25ab_c00001{bottom:635.787067pt;}
.y3734_c00001{bottom:635.947443pt;}
.y31b0_c00001{bottom:636.160000pt;}
.y11aa_c00001{bottom:636.187067pt;}
.yc2d_c00001{bottom:636.267067pt;}
.y1e61_c00001{bottom:636.320000pt;}
.y31c_c00001{bottom:636.347067pt;}
.y31b1_c00001{bottom:636.480000pt;}
.y195d_c00001{bottom:636.507067pt;}
.y31de_c00001{bottom:636.640000pt;}
.y2cdb_c00001{bottom:636.666347pt;}
.y2157_c00001{bottom:636.667067pt;}
.y452_c00001{bottom:636.747067pt;}
.y306f_c00001{bottom:636.800000pt;}
.yb3e_c00001{bottom:636.827067pt;}
.y3468_c00001{bottom:636.907067pt;}
.y382f_c00001{bottom:636.987067pt;}
.y37cd_c00001{bottom:637.227067pt;}
.y3e0_c00001{bottom:637.387067pt;}
.y1d1c_c00001{bottom:637.440000pt;}
.y350e_c00001{bottom:637.467067pt;}
.y26a_c00001{bottom:637.547067pt;}
.y1f18_c00001{bottom:637.627067pt;}
.y1511_c00001{bottom:637.627667pt;}
.y24ac_c00001{bottom:637.705955pt;}
.y184d_c00001{bottom:637.707067pt;}
.y158e_c00001{bottom:637.707227pt;}
.ydd1_c00001{bottom:637.708147pt;}
.y1d1d_c00001{bottom:637.760000pt;}
.y6da_c00001{bottom:637.787067pt;}
.y27e2_c00001{bottom:637.864635pt;}
.y2e2c_c00001{bottom:637.920000pt;}
.ye91_c00001{bottom:637.942539pt;}
.y14a5_c00001{bottom:638.026931pt;}
.y2531_c00001{bottom:638.027067pt;}
.y17fa_c00001{bottom:638.107067pt;}
.y2757_c00001{bottom:638.187443pt;}
.y2ff2_c00001{bottom:638.240000pt;}
.y2694_c00001{bottom:638.266611pt;}
.y2893_c00001{bottom:638.267067pt;}
.y2d4a_c00001{bottom:638.276731pt;}
.y66d_c00001{bottom:638.347067pt;}
.y98d_c00001{bottom:638.426499pt;}
.y1dd_c00001{bottom:638.427067pt;}
.y2da4_c00001{bottom:638.560000pt;}
.y29bd_c00001{bottom:638.666667pt;}
.y367a_c00001{bottom:638.667155pt;}
.y30ca_c00001{bottom:638.720000pt;}
.y36c2_c00001{bottom:638.747067pt;}
.y2db_c00001{bottom:638.827067pt;}
.y3186_c00001{bottom:638.880000pt;}
.y530_c00001{bottom:638.907067pt;}
.y2857_c00001{bottom:638.987067pt;}
.y2adf_c00001{bottom:639.067067pt;}
.y3577_c00001{bottom:639.226139pt;}
.ybed_c00001{bottom:639.227067pt;}
.y346_c00001{bottom:639.387067pt;}
.y324a_c00001{bottom:639.520000pt;}
.y2741_c00001{bottom:639.547067pt;}
.y1531_c00001{bottom:639.627067pt;}
.y1e95_c00001{bottom:639.680000pt;}
.y1563_c00001{bottom:639.709267pt;}
.y66_c00001{bottom:639.787067pt;}
.y379e_c00001{bottom:639.787443pt;}
.y1754_c00001{bottom:639.867067pt;}
.y2658_c00001{bottom:639.947067pt;}
.y2f71_c00001{bottom:640.000000pt;}
.y4d1_c00001{bottom:640.267067pt;}
.y29d3_c00001{bottom:640.347067pt;}
.y37eb_c00001{bottom:640.427067pt;}
.y1fdd_c00001{bottom:640.507067pt;}
.y244d_c00001{bottom:640.587067pt;}
.yd86_c00001{bottom:640.588987pt;}
.y3527_c00001{bottom:640.663819pt;}
.ydfa_c00001{bottom:640.666555pt;}
.y574_c00001{bottom:640.667067pt;}
.y62b_c00001{bottom:640.746667pt;}
.y33fd_c00001{bottom:640.747067pt;}
.y1147_c00001{bottom:640.748827pt;}
.y3139_c00001{bottom:640.800000pt;}
.y16f8_c00001{bottom:640.827067pt;}
.y947_c00001{bottom:640.907067pt;}
.y1a_c00001{bottom:641.067067pt;}
.y2f36_c00001{bottom:641.120000pt;}
.y9f6_c00001{bottom:641.147067pt;}
.y3225_c00001{bottom:641.153491pt;}
.yce7_c00001{bottom:641.227067pt;}
.y1ec3_c00001{bottom:641.280000pt;}
.y7a2_c00001{bottom:641.307067pt;}
.y2c7a_c00001{bottom:641.382963pt;}
.y2c69_c00001{bottom:641.385891pt;}
.y2d1a_c00001{bottom:641.387067pt;}
.y2eb7_c00001{bottom:641.440000pt;}
.ya0e_c00001{bottom:641.467067pt;}
.y237d_c00001{bottom:641.467131pt;}
.y1ff3_c00001{bottom:641.547067pt;}
.y1157_c00001{bottom:641.555771pt;}
.y16a6_c00001{bottom:641.707067pt;}
.y2b0e_c00001{bottom:641.866480pt;}
.y131_c00001{bottom:641.867067pt;}
.y3048_c00001{bottom:641.920000pt;}
.y11fc_c00001{bottom:641.947067pt;}
.y23f4_c00001{bottom:642.027067pt;}
.y198c_c00001{bottom:642.080000pt;}
.y28fe_c00001{bottom:642.107067pt;}
.y235d_c00001{bottom:642.187067pt;}
.yb53_c00001{bottom:642.267067pt;}
.y3979_c00001{bottom:642.347067pt;}
.y3692_c00001{bottom:642.427051pt;}
.y28eb_c00001{bottom:642.507067pt;}
.y17b6_c00001{bottom:642.667067pt;}
.y20df_c00001{bottom:642.746024pt;}
.y3399_c00001{bottom:642.747067pt;}
.y2870_c00001{bottom:642.747131pt;}
.y34cb_c00001{bottom:642.826667pt;}
.y551_c00001{bottom:642.827067pt;}
.y30cb_c00001{bottom:642.880000pt;}
.yae5_c00001{bottom:642.907067pt;}
.y2293_c00001{bottom:642.987067pt;}
.y24df_c00001{bottom:643.064059pt;}
.y1675_c00001{bottom:643.067067pt;}
.y27cf_c00001{bottom:643.147067pt;}
.y38f8_c00001{bottom:643.227067pt;}
.y21eb_c00001{bottom:643.307155pt;}
.y26d7_c00001{bottom:643.383995pt;}
.y134a_c00001{bottom:643.388283pt;}
.y7c3_c00001{bottom:643.467067pt;}
.y32b4_c00001{bottom:643.520000pt;}
.y29d_c00001{bottom:643.546667pt;}
.y429_c00001{bottom:643.547067pt;}
.y62a_c00001{bottom:643.627067pt;}
.y7a4_c00001{bottom:643.787067pt;}
.y1b45_c00001{bottom:643.840000pt;}
.y262e_c00001{bottom:643.866739pt;}
.y717_c00001{bottom:643.867067pt;}
.y2b35_c00001{bottom:643.868171pt;}
.y182_c00001{bottom:643.947067pt;}
.y32d4_c00001{bottom:644.000000pt;}
.y1359_c00001{bottom:644.112395pt;}
.y2f2d_c00001{bottom:644.160000pt;}
.y165d_c00001{bottom:644.187067pt;}
.y2801_c00001{bottom:644.267067pt;}
.y15c0_c00001{bottom:644.267307pt;}
.y15c7_c00001{bottom:644.268771pt;}
.y2f72_c00001{bottom:644.320000pt;}
.yf76_c00001{bottom:644.347067pt;}
.y1a61_c00001{bottom:644.480000pt;}
.y5ee_c00001{bottom:644.587067pt;}
.y5cd_c00001{bottom:644.667067pt;}
.y333a_c00001{bottom:644.800000pt;}
.y1485_c00001{bottom:644.827067pt;}
.y1ad_c00001{bottom:644.907067pt;}
.y2d75_c00001{bottom:644.960000pt;}
.y22c9_c00001{bottom:645.066411pt;}
.y34a4_c00001{bottom:645.147067pt;}
.y3a17_c00001{bottom:645.149763pt;}
.y2612_c00001{bottom:645.227067pt;}
.y15a_c00001{bottom:645.307067pt;}
.ye85_c00001{bottom:645.386731pt;}
.yfbc_c00001{bottom:645.387067pt;}
.y2510_c00001{bottom:645.463603pt;}
.y69a_c00001{bottom:645.467067pt;}
.y8a_c00001{bottom:645.547067pt;}
.y19cc_c00001{bottom:645.600000pt;}
.y29c_c00001{bottom:645.627067pt;}
.y3784_c00001{bottom:645.707067pt;}
.y1933_c00001{bottom:645.760000pt;}
.y507_c00001{bottom:645.786811pt;}
.y29e_c00001{bottom:645.867067pt;}
.y1a19_c00001{bottom:645.920000pt;}
.y28dd_c00001{bottom:645.947067pt;}
.y748_c00001{bottom:646.027067pt;}
.y1f3d_c00001{bottom:646.110931pt;}
.y95c_c00001{bottom:646.187067pt;}
.y2052_c00001{bottom:646.187155pt;}
.y59e_c00001{bottom:646.267067pt;}
.ya3d_c00001{bottom:646.347067pt;}
.y2470_c00001{bottom:646.347395pt;}
.y18d8_c00001{bottom:646.427067pt;}
.y72d_c00001{bottom:646.507067pt;}
.y83d_c00001{bottom:646.587067pt;}
.y15fc_c00001{bottom:646.587147pt;}
.y1d9c_c00001{bottom:646.720000pt;}
.yc42_c00001{bottom:646.907067pt;}
.y64e_c00001{bottom:646.987067pt;}
.yc7b_c00001{bottom:646.989755pt;}
.y1b96_c00001{bottom:647.040000pt;}
.y18b9_c00001{bottom:647.147067pt;}
.y2fcd_c00001{bottom:647.200000pt;}
.y2251_c00001{bottom:647.227067pt;}
.y3625_c00001{bottom:647.307067pt;}
.y387f_c00001{bottom:647.383659pt;}
.y2271_c00001{bottom:647.385171pt;}
.y2c03_c00001{bottom:647.385563pt;}
.y2bb2_c00001{bottom:647.385627pt;}
.y2786_c00001{bottom:647.387067pt;}
.y126e_c00001{bottom:647.467067pt;}
.y12be_c00001{bottom:647.468139pt;}
.y190a_c00001{bottom:647.531200pt;}
.y16b6_c00001{bottom:647.627067pt;}
.y3233_c00001{bottom:647.680000pt;}
.y1cd5_c00001{bottom:647.686240pt;}
.y34e2_c00001{bottom:647.707067pt;}
.y2d05_c00001{bottom:647.707131pt;}
.y1bde_c00001{bottom:647.840000pt;}
.y205_c00001{bottom:647.947067pt;}
.y1b47_c00001{bottom:648.000000pt;}
.y271e_c00001{bottom:648.023771pt;}
.ye3_c00001{bottom:648.027067pt;}
.y1afb_c00001{bottom:648.160000pt;}
.y1191_c00001{bottom:648.187067pt;}
.y89d_c00001{bottom:648.267747pt;}
.y1e62_c00001{bottom:648.320000pt;}
.yb3_c00001{bottom:648.427067pt;}
.y36fa_c00001{bottom:648.507067pt;}
.yca3_c00001{bottom:648.507531pt;}
.y12cd_c00001{bottom:648.587467pt;}
.y2a88_c00001{bottom:648.667067pt;}
.y313a_c00001{bottom:648.800000pt;}
.y2c24_c00001{bottom:648.827067pt;}
.y111a_c00001{bottom:648.907067pt;}
.y1ef3_c00001{bottom:648.960000pt;}
.y3848_c00001{bottom:648.987067pt;}
.y7d2_c00001{bottom:649.067067pt;}
.y1b95_c00001{bottom:649.120000pt;}
.yff1_c00001{bottom:649.147067pt;}
.y1865_c00001{bottom:649.227067pt;}
.y33c8_c00001{bottom:649.306603pt;}
.y766_c00001{bottom:649.307067pt;}
.ydb0_c00001{bottom:649.307147pt;}
.y4a6_c00001{bottom:649.387067pt;}
.y298a_c00001{bottom:649.464819pt;}
.y381_c00001{bottom:649.467067pt;}
.y785_c00001{bottom:649.547067pt;}
.y2341_c00001{bottom:649.627067pt;}
.y16d7_c00001{bottom:649.707067pt;}
.y308f_c00001{bottom:649.760000pt;}
.y5c6_c00001{bottom:649.947067pt;}
.y382e_c00001{bottom:650.027067pt;}
.yb81_c00001{bottom:650.104091pt;}
.y231f_c00001{bottom:650.106675pt;}
.y80f_c00001{bottom:650.107067pt;}
.y3733_c00001{bottom:650.107155pt;}
.y2e8a_c00001{bottom:650.240000pt;}
.y4c0_c00001{bottom:650.267067pt;}
.y10c9_c00001{bottom:650.347067pt;}
.y1def_c00001{bottom:650.400000pt;}
.y3456_c00001{bottom:650.427067pt;}
.y1095_c00001{bottom:650.427315pt;}
.y2c43_c00001{bottom:650.506667pt;}
.y2d52_c00001{bottom:650.565600pt;}
.y98c_c00001{bottom:650.666755pt;}
.y3805_c00001{bottom:650.667067pt;}
.y25cc_c00001{bottom:650.827067pt;}
.y1c1d_c00001{bottom:650.880000pt;}
.yf54_c00001{bottom:650.987067pt;}
.y3358_c00001{bottom:651.200000pt;}
.y2585_c00001{bottom:651.227067pt;}
.y2037_c00001{bottom:651.307067pt;}
.y3491_c00001{bottom:651.386611pt;}
.y3b6_c00001{bottom:651.387067pt;}
.yeb8_c00001{bottom:651.467067pt;}
.y2fa4_c00001{bottom:651.520000pt;}
.y482_c00001{bottom:651.547067pt;}
.yb96_c00001{bottom:651.626867pt;}
.y609_c00001{bottom:651.627067pt;}
.y1b46_c00001{bottom:651.680000pt;}
.y10b8_c00001{bottom:651.707067pt;}
.y768_c00001{bottom:651.787067pt;}
.y1241_c00001{bottom:651.866491pt;}
.y8b8_c00001{bottom:651.866811pt;}
.y40b_c00001{bottom:651.867067pt;}
.y29eb_c00001{bottom:651.945891pt;}
.y206e_c00001{bottom:651.946219pt;}
.y2958_c00001{bottom:651.946283pt;}
.y37b7_c00001{bottom:651.947067pt;}
.y315a_c00001{bottom:652.000000pt;}
.y219a_c00001{bottom:652.027067pt;}
.y35cf_c00001{bottom:652.107067pt;}
.y14cc_c00001{bottom:652.107667pt;}
.y52f_c00001{bottom:652.187067pt;}
.y2756_c00001{bottom:652.267355pt;}
.y1c94_c00001{bottom:652.320000pt;}
.y1987_c00001{bottom:652.480000pt;}
.y241_c00001{bottom:652.587067pt;}
.y1c51_c00001{bottom:652.640000pt;}
.y21c3_c00001{bottom:652.665211pt;}
.y20a1_c00001{bottom:652.666347pt;}
.y21b8_c00001{bottom:652.666675pt;}
.y2a4a_c00001{bottom:652.666739pt;}
.y2b34_c00001{bottom:652.668163pt;}
.y107_c00001{bottom:652.747067pt;}
.y19cd_c00001{bottom:652.800000pt;}
.y2c44_c00001{bottom:652.827067pt;}
.ydf9_c00001{bottom:652.906811pt;}
.y124b_c00001{bottom:652.986667pt;}
.yf65_c00001{bottom:652.987067pt;}
.y37dd_c00001{bottom:652.987355pt;}
.yaa3_c00001{bottom:653.067067pt;}
.y868_c00001{bottom:653.227067pt;}
.y34f8_c00001{bottom:653.307067pt;}
.y1462_c00001{bottom:653.387067pt;}
.yd42_c00001{bottom:653.547067pt;}
.y31dd_c00001{bottom:653.600000pt;}
.y26f7_c00001{bottom:653.627067pt;}
.y1710_c00001{bottom:653.707067pt;}
.y180d_c00001{bottom:653.707200pt;}
.y2dcc_c00001{bottom:653.760000pt;}
.y2e5b_c00001{bottom:653.762720pt;}
.y6ba_c00001{bottom:653.787067pt;}
.y31b_c00001{bottom:653.867067pt;}
.y379d_c00001{bottom:653.867355pt;}
.y3090_c00001{bottom:653.920000pt;}
.y2aa3_c00001{bottom:653.946611pt;}
.y2530_c00001{bottom:653.947067pt;}
.y2b7c_c00001{bottom:654.027067pt;}
.y42_c00001{bottom:654.107067pt;}
.ye90_c00001{bottom:654.182955pt;}
.y2b94_c00001{bottom:654.187067pt;}
.y2fa5_c00001{bottom:654.240000pt;}
.y66c_c00001{bottom:654.347067pt;}
.y2e8b_c00001{bottom:654.400000pt;}
.y1510_c00001{bottom:654.427067pt;}
.y850_c00001{bottom:654.587067pt;}
.y158d_c00001{bottom:654.587147pt;}
.ydd0_c00001{bottom:654.588067pt;}
.y1403_c00001{bottom:654.668120pt;}
.y301_c00001{bottom:654.747067pt;}
.y7f7_c00001{bottom:654.907067pt;}
.y23f1_c00001{bottom:654.987067pt;}
.y1bdf_c00001{bottom:655.040000pt;}
.y1048_c00001{bottom:655.067067pt;}
.y1d5d_c00001{bottom:655.200000pt;}
.y246f_c00001{bottom:655.227067pt;}
.y392d_c00001{bottom:655.307067pt;}
.y370d_c00001{bottom:655.386667pt;}
.yba1_c00001{bottom:655.467067pt;}
.y315b_c00001{bottom:655.520000pt;}
.y1737_c00001{bottom:655.547067pt;}
.y269_c00001{bottom:655.627067pt;}
.y326a_c00001{bottom:655.680000pt;}
.y3df_c00001{bottom:655.787067pt;}
.y1dc_c00001{bottom:655.947067pt;}
.y2da3_c00001{bottom:656.000000pt;}
.y2cda_c00001{bottom:656.106803pt;}
.ybec_c00001{bottom:656.107067pt;}
.y2f27_c00001{bottom:656.160000pt;}
.y23f3_c00001{bottom:656.187067pt;}
.y2d49_c00001{bottom:656.196091pt;}
.y4d0_c00001{bottom:656.267067pt;}
.y1c95_c00001{bottom:656.480000pt;}
.y2b7d_c00001{bottom:656.507067pt;}
.y1562_c00001{bottom:656.508667pt;}
.y11c5_c00001{bottom:656.586531pt;}
.y3691_c00001{bottom:656.586763pt;}
.y350d_c00001{bottom:656.587067pt;}
.y1ec2_c00001{bottom:656.640000pt;}
.y2939_c00001{bottom:656.747067pt;}
.yb27_c00001{bottom:656.747155pt;}
.y6d9_c00001{bottom:656.747515pt;}
.y32fd_c00001{bottom:656.800000pt;}
.ye8a_c00001{bottom:656.825563pt;}
.y3576_c00001{bottom:656.826603pt;}
.y65_c00001{bottom:656.827067pt;}
.y1391_c00001{bottom:656.827451pt;}
.y32d3_c00001{bottom:657.120000pt;}
.y24ab_c00001{bottom:657.146411pt;}
.y11d1_c00001{bottom:657.303963pt;}
.y27e1_c00001{bottom:657.305091pt;}
.y37cc_c00001{bottom:657.307067pt;}
.y14a4_c00001{bottom:657.386867pt;}
.y21ea_c00001{bottom:657.387067pt;}
.y2da_c00001{bottom:657.467067pt;}
.yb2f_c00001{bottom:657.467259pt;}
.yd85_c00001{bottom:657.468907pt;}
.y95b_c00001{bottom:657.547067pt;}
.y7a0_c00001{bottom:657.707067pt;}
.y1148_c00001{bottom:657.709347pt;}
.y3049_c00001{bottom:657.760000pt;}
.y375d_c00001{bottom:657.787067pt;}
.y28af_c00001{bottom:657.867067pt;}
.y1c1e_c00001{bottom:657.920000pt;}
.y28c9_c00001{bottom:657.947067pt;}
.y139b_c00001{bottom:657.947467pt;}
.y506_c00001{bottom:658.027067pt;}
.y1d9d_c00001{bottom:658.080000pt;}
.y26b_c00001{bottom:658.107067pt;}
.y573_c00001{bottom:658.187067pt;}
.y244a_c00001{bottom:658.267067pt;}
.yd15_c00001{bottom:658.347067pt;}
.yce6_c00001{bottom:658.427067pt;}
.y1158_c00001{bottom:658.436131pt;}
.y3772_c00001{bottom:658.507067pt;}
.y1aad_c00001{bottom:658.563520pt;}
.y345_c00001{bottom:658.587067pt;}
.y19_c00001{bottom:658.667067pt;}
.y36c1_c00001{bottom:658.827067pt;}
.yf96_c00001{bottom:658.907067pt;}
.y629_c00001{bottom:658.987067pt;}
.y92d_c00001{bottom:659.067067pt;}
.y17f9_c00001{bottom:659.227067pt;}
.yab6_c00001{bottom:659.307067pt;}
.y3a16_c00001{bottom:659.309475pt;}
.y1a18_c00001{bottom:659.360000pt;}
.y1fdc_c00001{bottom:659.467067pt;}
.y1d9e_c00001{bottom:659.520000pt;}
.y1820_c00001{bottom:659.547067pt;}
.y387e_c00001{bottom:659.623915pt;}
.yf3b_c00001{bottom:659.627067pt;}
.y1df0_c00001{bottom:659.680000pt;}
.yb52_c00001{bottom:659.787067pt;}
.y1cd4_c00001{bottom:659.842720pt;}
.y8ef_c00001{bottom:659.867067pt;}
.y1e28_c00001{bottom:660.000000pt;}
.y3302_c00001{bottom:660.160000pt;}
.y2051_c00001{bottom:660.267067pt;}
.y32b3_c00001{bottom:660.320000pt;}
.y550_c00001{bottom:660.347067pt;}
.y1006_c00001{bottom:660.426496pt;}
.y130_c00001{bottom:660.507067pt;}
.y181_c00001{bottom:660.587067pt;}
.y1afe_c00001{bottom:660.640000pt;}
.y27b8_c00001{bottom:660.667067pt;}
.y2f35_c00001{bottom:660.800000pt;}
.y2c79_c00001{bottom:660.823419pt;}
.y2c68_c00001{bottom:660.826347pt;}
.ya1f_c00001{bottom:660.827067pt;}
.y1ac_c00001{bottom:660.907067pt;}
.y1753_c00001{bottom:660.987067pt;}
.y29a_c00001{bottom:661.066667pt;}
.y204_c00001{bottom:661.067067pt;}
.y17b5_c00001{bottom:661.147067pt;}
.y15bf_c00001{bottom:661.147227pt;}
.y15c6_c00001{bottom:661.148691pt;}
.y2b0d_c00001{bottom:661.226416pt;}
.y30f4_c00001{bottom:661.280000pt;}
.y5cc_c00001{bottom:661.467067pt;}
.y2b33_c00001{bottom:661.547835pt;}
.y38cc_c00001{bottom:661.707067pt;}
.y317f_c00001{bottom:661.760000pt;}
.y2ba9_c00001{bottom:661.787067pt;}
.y716_c00001{bottom:661.867067pt;}
.y2df9_c00001{bottom:661.920000pt;}
.y428_c00001{bottom:661.947067pt;}
.y16f7_c00001{bottom:662.027067pt;}
.y20de_c00001{bottom:662.105960pt;}
.y237c_c00001{bottom:662.107067pt;}
.y946_c00001{bottom:662.187067pt;}
.y2f6f_c00001{bottom:662.240000pt;}
.y370c_c00001{bottom:662.267067pt;}
.y6f3_c00001{bottom:662.347067pt;}
.y3020_c00001{bottom:662.400000pt;}
.y158f_c00001{bottom:662.427067pt;}
.y24de_c00001{bottom:662.504515pt;}
.y160e_c00001{bottom:662.587067pt;}
.y2be0_c00001{bottom:662.667067pt;}
.y1f77_c00001{bottom:662.669459pt;}
.y31ae_c00001{bottom:662.720000pt;}
.y26d6_c00001{bottom:662.824451pt;}
.y159_c00001{bottom:662.827067pt;}
.y1a60_c00001{bottom:662.880000pt;}
.y3591_c00001{bottom:662.906667pt;}
.y98b_c00001{bottom:662.986811pt;}
.y35a9_c00001{bottom:662.987067pt;}
.y2292_c00001{bottom:663.067067pt;}
.yc7c_c00001{bottom:663.069851pt;}
.y299_c00001{bottom:663.147067pt;}
.y262d_c00001{bottom:663.226675pt;}
.ya3c_c00001{bottom:663.227067pt;}
.y2a86_c00001{bottom:663.307067pt;}
.y2d74_c00001{bottom:663.360000pt;}
.y29b_c00001{bottom:663.387067pt;}
.y1409_c00001{bottom:663.467427pt;}
.y15fb_c00001{bottom:663.467667pt;}
.y2fce_c00001{bottom:663.520000pt;}
.y25aa_c00001{bottom:663.547067pt;}
.y2785_c00001{bottom:663.627067pt;}
.y39ee_c00001{bottom:663.706667pt;}
.y59d_c00001{bottom:663.787067pt;}
.y2f2c_c00001{bottom:663.840000pt;}
.yc2c_c00001{bottom:663.867067pt;}
.y220_c00001{bottom:663.947067pt;}
.y72c_c00001{bottom:664.027067pt;}
.y699_c00001{bottom:664.106531pt;}
.y8b7_c00001{bottom:664.107067pt;}
.y1932_c00001{bottom:664.160000pt;}
.y3732_c00001{bottom:664.187067pt;}
.y3564_c00001{bottom:664.267067pt;}
.y134b_c00001{bottom:664.268627pt;}
.y1ef2_c00001{bottom:664.320000pt;}
.y22c8_c00001{bottom:664.426347pt;}
.y747_c00001{bottom:664.427067pt;}
.y31e0_c00001{bottom:664.480000pt;}
.yca4_c00001{bottom:664.587763pt;}
.y1da0_c00001{bottom:664.640000pt;}
.y2d2a_c00001{bottom:664.659467pt;}
.y33c7_c00001{bottom:664.666595pt;}
.y22e7_c00001{bottom:664.827067pt;}
.y250f_c00001{bottom:664.904059pt;}
.y2aca_c00001{bottom:664.907067pt;}
.y1f5c_c00001{bottom:664.987067pt;}
.y135a_c00001{bottom:664.992739pt;}
.yc13_c00001{bottom:665.067067pt;}
.y12bf_c00001{bottom:665.068603pt;}
.y30c9_c00001{bottom:665.120000pt;}
.ydf8_c00001{bottom:665.147067pt;}
.y89c_c00001{bottom:665.147667pt;}
.y2611_c00001{bottom:665.227067pt;}
.y126d_c00001{bottom:665.307067pt;}
.y34b7_c00001{bottom:665.467067pt;}
.y304a_c00001{bottom:665.600000pt;}
.y64d_c00001{bottom:665.626531pt;}
.ya68_c00001{bottom:665.627011pt;}
.y39ce_c00001{bottom:665.627067pt;}
.y2a13_c00001{bottom:665.707067pt;}
.y1d19_c00001{bottom:665.760000pt;}
.y1119_c00001{bottom:665.787067pt;}
.yb2_c00001{bottom:665.867067pt;}
.y1b44_c00001{bottom:665.920000pt;}
.y23a5_c00001{bottom:665.947067pt;}
.y6b9_c00001{bottom:666.027067pt;}
.y1d1a_c00001{bottom:666.080000pt;}
.ydaf_c00001{bottom:666.187067pt;}
.y12ce_c00001{bottom:666.187867pt;}
.y1e5f_c00001{bottom:666.240000pt;}
.y2a87_c00001{bottom:666.267067pt;}
.y2f70_c00001{bottom:666.400000pt;}
.y25cb_c00001{bottom:666.426675pt;}
.ye2_c00001{bottom:666.427067pt;}
.y283e_c00001{bottom:666.587067pt;}
.y16a5_c00001{bottom:666.587448pt;}
.y2270_c00001{bottom:666.745107pt;}
.y2c02_c00001{bottom:666.745499pt;}
.y2584_c00001{bottom:666.745563pt;}
.y3b5_c00001{bottom:666.747067pt;}
.y765_c00001{bottom:666.827067pt;}
.y32af_c00001{bottom:666.880000pt;}
.y39ed_c00001{bottom:666.907067pt;}
.yff0_c00001{bottom:666.987067pt;}
.y1b92_c00001{bottom:667.040000pt;}
.y380_c00001{bottom:667.067067pt;}
.y37dc_c00001{bottom:667.147067pt;}
.y2dcb_c00001{bottom:667.360000pt;}
.y271d_c00001{bottom:667.383707pt;}
.y4a5_c00001{bottom:667.387067pt;}
.y200f_c00001{bottom:667.467067pt;}
.y18d7_c00001{bottom:667.547067pt;}
.y1f3c_c00001{bottom:667.550659pt;}
.y1864_c00001{bottom:667.627067pt;}
.y165c_c00001{bottom:667.707067pt;}
.yd41_c00001{bottom:667.867067pt;}
.y784_c00001{bottom:667.947067pt;}
.y2ff0_c00001{bottom:668.000000pt;}
.y379c_c00001{bottom:668.027067pt;}
.y4bf_c00001{bottom:668.187067pt;}
.y18b8_c00001{bottom:668.267067pt;}
.y315c_c00001{bottom:668.320000pt;}
.y1f17_c00001{bottom:668.429587pt;}
.y36f9_c00001{bottom:668.507067pt;}
.y2199_c00001{bottom:668.587067pt;}
.y3180_c00001{bottom:668.640000pt;}
.y5c5_c00001{bottom:668.667067pt;}
.y14ee_c00001{bottom:668.747067pt;}
.y1e60_c00001{bottom:668.800000pt;}
.y2989_c00001{bottom:668.824755pt;}
.y2985_c00001{bottom:668.826219pt;}
.y9f5_c00001{bottom:668.827067pt;}
.y22fc_c00001{bottom:668.827227pt;}
.y14cb_c00001{bottom:668.907067pt;}
.y1909_c00001{bottom:668.965600pt;}
.y2d19_c00001{bottom:668.987067pt;}
.y7d1_c00001{bottom:669.067067pt;}
.yfbb_c00001{bottom:669.067315pt;}
.y1ff2_c00001{bottom:669.147067pt;}
.y168c_c00001{bottom:669.547067pt;}
.y231e_c00001{bottom:669.547131pt;}
.y1c53_c00001{bottom:669.600000pt;}
.y66b_c00001{bottom:669.707067pt;}
.y246e_c00001{bottom:669.787067pt;}
.y4a7_c00001{bottom:669.867067pt;}
.yf53_c00001{bottom:669.947067pt;}
.y240_c00001{bottom:670.107067pt;}
.y1e29_c00001{bottom:670.240000pt;}
.y64_c00001{bottom:670.267067pt;}
.yc41_c00001{bottom:670.347067pt;}
.y2b32_c00001{bottom:670.347827pt;}
.y1e94_c00001{bottom:670.400000pt;}
.y255c_c00001{bottom:670.427067pt;}
.y52e_c00001{bottom:670.587067pt;}
.y481_c00001{bottom:670.587200pt;}
.y3690_c00001{bottom:670.666675pt;}
.y1674_c00001{bottom:670.667067pt;}
.y1aac_c00001{bottom:670.720000pt;}
.y3804_c00001{bottom:670.747067pt;}
.y3490_c00001{bottom:670.827067pt;}
.y19ca_c00001{bottom:670.880000pt;}
.yeb7_c00001{bottom:670.907067pt;}
.ye2d_c00001{bottom:670.987067pt;}
.ye4e_c00001{bottom:671.067067pt;}
.y3428_c00001{bottom:671.147067pt;}
.y2a2c_c00001{bottom:671.227067pt;}
.y28ea_c00001{bottom:671.307067pt;}
.yb82_c00001{bottom:671.383899pt;}
.y29ea_c00001{bottom:671.386347pt;}
.y2034_c00001{bottom:671.386675pt;}
.y2957_c00001{bottom:671.386739pt;}
.y106_c00001{bottom:671.387067pt;}
.y31a_c00001{bottom:671.467067pt;}
.y158c_c00001{bottom:671.467667pt;}
.ydcf_c00001{bottom:671.467987pt;}
.y505_c00001{bottom:671.547067pt;}
.y1402_c00001{bottom:671.548040pt;}
.y3526_c00001{bottom:671.624283pt;}
.y3138_c00001{bottom:671.680000pt;}
.y144e_c00001{bottom:671.787200pt;}
.y328c_c00001{bottom:671.840000pt;}
.y387d_c00001{bottom:671.943971pt;}
.y2d51_c00001{bottom:671.989760pt;}
.y1ec1_c00001{bottom:672.000000pt;}
.y21c2_c00001{bottom:672.025147pt;}
.y2635_c00001{bottom:672.025499pt;}
.y20a0_c00001{bottom:672.026283pt;}
.y21b7_c00001{bottom:672.026611pt;}
.y2a49_c00001{bottom:672.026675pt;}
.y37b6_c00001{bottom:672.027067pt;}
.y150f_c00001{bottom:672.027147pt;}
.y1cd3_c00001{bottom:672.160000pt;}
.y35ce_c00001{bottom:672.187067pt;}
.y4cf_c00001{bottom:672.267067pt;}
.y2e88_c00001{bottom:672.320000pt;}
.y3455_c00001{bottom:672.347067pt;}
.y140e_c00001{bottom:672.426667pt;}
.y1484_c00001{bottom:672.427067pt;}
.y3de_c00001{bottom:672.507067pt;}
.y252f_c00001{bottom:672.586603pt;}
.y311b_c00001{bottom:672.800000pt;}
.yce5_c00001{bottom:672.827067pt;}
.yb97_c00001{bottom:672.906867pt;}
.y392c_c00001{bottom:672.907067pt;}
.y1bdc_c00001{bottom:672.960000pt;}
.y8e0_c00001{bottom:672.987067pt;}
.y1899_c00001{bottom:673.067067pt;}
.y89_c00001{bottom:673.147067pt;}
.y2aa5_c00001{bottom:673.387067pt;}
.y1561_c00001{bottom:673.388587pt;}
.y3a15_c00001{bottom:673.389387pt;}
.y1db_c00001{bottom:673.467067pt;}
.y1380_c00001{bottom:673.627067pt;}
.y451_c00001{bottom:673.707067pt;}
.y32d2_c00001{bottom:673.920000pt;}
.y180_c00001{bottom:674.027067pt;}
.y3269_c00001{bottom:674.080000pt;}
.y2b7b_c00001{bottom:674.107067pt;}
.y2d48_c00001{bottom:674.115451pt;}
.y83c_c00001{bottom:674.187067pt;}
.y2f26_c00001{bottom:674.240000pt;}
.y628_c00001{bottom:674.267067pt;}
.yd84_c00001{bottom:674.348827pt;}
.y1c92_c00001{bottom:674.400000pt;}
.y3542_c00001{bottom:674.427067pt;}
.y198a_c00001{bottom:674.560000pt;}
.y26f6_c00001{bottom:674.587067pt;}
.yf75_c00001{bottom:674.667067pt;}
.y1149_c00001{bottom:674.669867pt;}
.y2f34_c00001{bottom:674.720000pt;}
.y28dc_c00001{bottom:674.747067pt;}
.y2250_c00001{bottom:674.827067pt;}
.y170f_c00001{bottom:674.907067pt;}
.y180c_c00001{bottom:674.907200pt;}
.y2657_c00001{bottom:674.987067pt;}
.y3224_c00001{bottom:675.072907pt;}
.y6d8_c00001{bottom:675.147067pt;}
.y1367_c00001{bottom:675.147200pt;}
.y98a_c00001{bottom:675.227067pt;}
.y1159_c00001{bottom:675.396651pt;}
.y2cd9_c00001{bottom:675.466739pt;}
.y2d9_c00001{bottom:675.467067pt;}
.y3301_c00001{bottom:675.520000pt;}
.yd14_c00001{bottom:675.547067pt;}
.y1242_c00001{bottom:675.547091pt;}
.y572_c00001{bottom:675.707067pt;}
.y21e9_c00001{bottom:675.787067pt;}
.y1c1a_c00001{bottom:675.840000pt;}
.y6b8_c00001{bottom:675.867067pt;}
.y33b0_c00001{bottom:676.027067pt;}
.y6ef_c00001{bottom:676.187067pt;}
.y40a_c00001{bottom:676.267067pt;}
.y3249_c00001{bottom:676.320000pt;}
.y18_c00001{bottom:676.347067pt;}
.y1fdb_c00001{bottom:676.427067pt;}
.y2e89_c00001{bottom:676.480000pt;}
.y24aa_c00001{bottom:676.506347pt;}
.y2131_c00001{bottom:676.587067pt;}
.y27e0_c00001{bottom:676.665027pt;}
.y124c_c00001{bottom:676.666267pt;}
.y27ce_c00001{bottom:676.666872pt;}
.y1788_c00001{bottom:676.667067pt;}
.y14a3_c00001{bottom:676.746803pt;}
.y1736_c00001{bottom:676.747067pt;}
.y2938_c00001{bottom:676.827067pt;}
.y1ab_c00001{bottom:676.907067pt;}
.y29d2_c00001{bottom:676.987067pt;}
.y5ed_c00001{bottom:677.067067pt;}
.y34f7_c00001{bottom:677.227067pt;}
.y32b1_c00001{bottom:677.280000pt;}
.y2ba8_c00001{bottom:677.306675pt;}
.y220f_c00001{bottom:677.387067pt;}
.y1afd_c00001{bottom:677.440000pt;}
.y350c_c00001{bottom:677.465979pt;}
.y33fc_c00001{bottom:677.467067pt;}
.y1c1b_c00001{bottom:677.600000pt;}
.y344_c00001{bottom:677.627067pt;}
.y95a_c00001{bottom:677.707067pt;}
.y33ca_c00001{bottom:677.707203pt;}
.y2693_c00001{bottom:677.786803pt;}
.y222d_c00001{bottom:677.787067pt;}
.y54f_c00001{bottom:677.867067pt;}
.y2f2b_c00001{bottom:677.920000pt;}
.ya67_c00001{bottom:677.947067pt;}
.yf1b_c00001{bottom:678.027067pt;}
.y15be_c00001{bottom:678.027147pt;}
.y15c5_c00001{bottom:678.028611pt;}
.y19cb_c00001{bottom:678.080000pt;}
.y255b_c00001{bottom:678.107067pt;}
.y7a1_c00001{bottom:678.187067pt;}
.y2da2_c00001{bottom:678.240000pt;}
.y12f_c00001{bottom:678.267067pt;}
.y5cb_c00001{bottom:678.347067pt;}
.y2892_c00001{bottom:678.427067pt;}
.y11fb_c00001{bottom:678.507067pt;}
.y1c93_c00001{bottom:678.560000pt;}
.y3771_c00001{bottom:678.587067pt;}
.y296_c00001{bottom:678.666667pt;}
.y2672_c00001{bottom:678.667067pt;}
.y36c0_c00001{bottom:678.827067pt;}
.y1408_c00001{bottom:678.827419pt;}
.y2edf_c00001{bottom:678.880000pt;}
.y28fd_c00001{bottom:678.907067pt;}
.y11c6_c00001{bottom:678.985907pt;}
.y2c41_c00001{bottom:678.987067pt;}
.y222c_c00001{bottom:679.067067pt;}
.y2b31_c00001{bottom:679.147819pt;}
.ydf7_c00001{bottom:679.148587pt;}
.yc7d_c00001{bottom:679.149947pt;}
.y608_c00001{bottom:679.227067pt;}
.y35e8_c00001{bottom:679.307067pt;}
.y1752_c00001{bottom:679.467067pt;}
.y1ef1_c00001{bottom:679.520000pt;}
.y17b4_c00001{bottom:679.547067pt;}
.y3b4_c00001{bottom:679.627067pt;}
.y30f3_c00001{bottom:679.680000pt;}
.y11d2_c00001{bottom:679.703339pt;}
.ye81_c00001{bottom:679.707235pt;}
.y2291_c00001{bottom:679.787067pt;}
.ya3b_c00001{bottom:680.107067pt;}
.y2c78_c00001{bottom:680.183355pt;}
.y2c67_c00001{bottom:680.186283pt;}
.y203_c00001{bottom:680.187067pt;}
.y715_c00001{bottom:680.267067pt;}
.y33c6_c00001{bottom:680.267280pt;}
.y1bdd_c00001{bottom:680.320000pt;}
.y158_c00001{bottom:680.347067pt;}
.y17f8_c00001{bottom:680.427067pt;}
.y16f6_c00001{bottom:680.507067pt;}
.y2af4_c00001{bottom:680.586352pt;}
.yab5_c00001{bottom:680.587067pt;}
.y181f_c00001{bottom:680.667067pt;}
.yca5_c00001{bottom:680.667995pt;}
.y295_c00001{bottom:680.747067pt;}
.y237b_c00001{bottom:680.906675pt;}
.y1d18_c00001{bottom:680.960000pt;}
.y298_c00001{bottom:680.987067pt;}
.y1aa8_c00001{bottom:681.120000pt;}
.y2754_c00001{bottom:681.147067pt;}
.y340d_c00001{bottom:681.227067pt;}
.yd66_c00001{bottom:681.307019pt;}
.y59c_c00001{bottom:681.307067pt;}
.y2a12_c00001{bottom:681.387067pt;}
.y1b93_c00001{bottom:681.440000pt;}
.y2c42_c00001{bottom:681.467067pt;}
.y20dd_c00001{bottom:681.546416pt;}
.y72b_c00001{bottom:681.547067pt;}
.y2fcc_c00001{bottom:681.600000pt;}
.y29ac_c00001{bottom:681.626667pt;}
.y41_c00001{bottom:681.707067pt;}
.y2d73_c00001{bottom:681.760000pt;}
.y746_c00001{bottom:681.787067pt;}
.y24dd_c00001{bottom:681.864451pt;}
.yc12_c00001{bottom:681.867067pt;}
.y1434_c00001{bottom:681.947067pt;}
.y3783_c00001{bottom:682.107067pt;}
.y286f_c00001{bottom:682.182923pt;}
.y26d5_c00001{bottom:682.184387pt;}
.y96c_c00001{bottom:682.187067pt;}
.y2e2a_c00001{bottom:682.240000pt;}
.y97a_c00001{bottom:682.267067pt;}
.y1392_c00001{bottom:682.267563pt;}
.y300_c00001{bottom:682.347067pt;}
.ye9e_c00001{bottom:682.347200pt;}
.y13fd_c00001{bottom:682.427067pt;}
.y7f6_c00001{bottom:682.507067pt;}
.y1931_c00001{bottom:682.560000pt;}
.y262c_c00001{bottom:682.586611pt;}
.y1118_c00001{bottom:682.587067pt;}
.y12c0_c00001{bottom:682.588907pt;}
.y1a5f_c00001{bottom:682.720000pt;}
.y64c_c00001{bottom:682.827067pt;}
.y30c7_c00001{bottom:683.040000pt;}
.y379b_c00001{bottom:683.067067pt;}
.y368f_c00001{bottom:683.146331pt;}
.y179f_c00001{bottom:683.147067pt;}
.y385f_c00001{bottom:683.147200pt;}
.ye1_c00001{bottom:683.227067pt;}
.y3dd_c00001{bottom:683.387067pt;}
.y21e8_c00001{bottom:683.467067pt;}
.y139c_c00001{bottom:683.467867pt;}
.y1b41_c00001{bottom:683.520000pt;}
.y1085_c00001{bottom:683.547067pt;}
.y25a9_c00001{bottom:683.627067pt;}
.yc40_c00001{bottom:683.707067pt;}
.y12cf_c00001{bottom:683.707867pt;}
.ye93_c00001{bottom:683.782035pt;}
.y22c7_c00001{bottom:683.786283pt;}
.y4a3_c00001{bottom:683.787067pt;}
.y2a85_c00001{bottom:683.947067pt;}
.y1d5b_c00001{bottom:684.160000pt;}
.y387c_c00001{bottom:684.184227pt;}
.yd40_c00001{bottom:684.187067pt;}
.y250e_c00001{bottom:684.263995pt;}
.y1190_c00001{bottom:684.267067pt;}
.y2f6d_c00001{bottom:684.320000pt;}
.y764_c00001{bottom:684.347067pt;}
.y2919_c00001{bottom:684.427067pt;}
.y1cd1_c00001{bottom:684.480000pt;}
.y3232_c00001{bottom:684.481280pt;}
.y195c_c00001{bottom:684.507067pt;}
.y37f_c00001{bottom:684.587067pt;}
.y1c1c_c00001{bottom:684.640000pt;}
.y14ed_c00001{bottom:684.827067pt;}
.y3563_c00001{bottom:684.907067pt;}
.y16a4_c00001{bottom:684.987200pt;}
.y7d0_c00001{bottom:685.067067pt;}
.y989_c00001{bottom:685.147200pt;}
.y134c_c00001{bottom:685.148971pt;}
.y3947_c00001{bottom:685.227067pt;}
.y301e_c00001{bottom:685.280000pt;}
.y1b43_c00001{bottom:685.440000pt;}
.y3603_c00001{bottom:685.467067pt;}
.y2dca_c00001{bottom:685.600000pt;}
.y1005_c00001{bottom:685.706848pt;}
.y39cd_c00001{bottom:685.707067pt;}
.y22fb_c00001{bottom:685.707147pt;}
.y1e93_c00001{bottom:685.760000pt;}
.y25ca_c00001{bottom:685.786611pt;}
.yb28_c00001{bottom:685.787787pt;}
.y34e1_c00001{bottom:685.867067pt;}
.y135b_c00001{bottom:685.873083pt;}
.y3847_c00001{bottom:685.946811pt;}
.y35a8_c00001{bottom:685.947067pt;}
.y1863_c00001{bottom:686.027067pt;}
.y2fef_c00001{bottom:686.080000pt;}
.y22e6_c00001{bottom:686.107067pt;}
.y226f_c00001{bottom:686.185563pt;}
.y2c01_c00001{bottom:686.185955pt;}
.y2583_c00001{bottom:686.186019pt;}
.y140d_c00001{bottom:686.187067pt;}
.y2e2b_c00001{bottom:686.400000pt;}
.y14ca_c00001{bottom:686.507147pt;}
.y2df8_c00001{bottom:686.560000pt;}
.yb30_c00001{bottom:686.586715pt;}
.y5c4_c00001{bottom:686.587067pt;}
.y23f0_c00001{bottom:686.667067pt;}
.y2085_c00001{bottom:686.747067pt;}
.y271c_c00001{bottom:686.824163pt;}
.y4be_c00001{bottom:686.827067pt;}
.y783_c00001{bottom:686.907067pt;}
.y450_c00001{bottom:687.147067pt;}
.y30c8_c00001{bottom:687.200000pt;}
.y8c7_c00001{bottom:687.227067pt;}
.y101b_c00001{bottom:687.227363pt;}
.y92c_c00001{bottom:687.307067pt;}
.y1ec0_c00001{bottom:687.360000pt;}
.yf52_c00001{bottom:687.387067pt;}
.yfba_c00001{bottom:687.467067pt;}
.y3a14_c00001{bottom:687.469299pt;}
.y504_c00001{bottom:687.547067pt;}
.y23f_c00001{bottom:687.627067pt;}
.yba4_c00001{bottom:687.707067pt;}
.y3467_c00001{bottom:687.867067pt;}
.y52d_c00001{bottom:687.947067pt;}
.y2b30_c00001{bottom:687.947811pt;}
.y3357_c00001{bottom:688.000000pt;}
.y246d_c00001{bottom:688.107067pt;}
.y2988_c00001{bottom:688.265211pt;}
.y2984_c00001{bottom:688.266675pt;}
.yb1_c00001{bottom:688.267067pt;}
.y1e26_c00001{bottom:688.320000pt;}
.ydce_c00001{bottom:688.347907pt;}
.ybac_c00001{bottom:688.425835pt;}
.y235c_c00001{bottom:688.426499pt;}
.ya1e_c00001{bottom:688.427067pt;}
.y1401_c00001{bottom:688.427960pt;}
.y2f6e_c00001{bottom:688.480000pt;}
.y36f8_c00001{bottom:688.587067pt;}
.y18d6_c00001{bottom:688.667067pt;}
.y34f6_c00001{bottom:688.747067pt;}
.y306e_c00001{bottom:688.800000pt;}
.y4ce_c00001{bottom:688.907067pt;}
.y150e_c00001{bottom:688.907667pt;}
.y1d15_c00001{bottom:688.960000pt;}
.y480_c00001{bottom:688.987067pt;}
.y319_c00001{bottom:688.987200pt;}
.y627_c00001{bottom:689.067067pt;}
.y1f3b_c00001{bottom:689.070539pt;}
.y105_c00001{bottom:689.227067pt;}
.y2a68_c00001{bottom:689.307067pt;}
.y1dee_c00001{bottom:689.440000pt;}
.y18b7_c00001{bottom:689.467067pt;}
.yc2b_c00001{bottom:689.547067pt;}
.ybeb_c00001{bottom:689.867067pt;}
.ye2c_c00001{bottom:689.869987pt;}
.y3159_c00001{bottom:689.920000pt;}
.y29bc_c00001{bottom:690.027067pt;}
.y3646_c00001{bottom:690.107067pt;}
.y160d_c00001{bottom:690.187067pt;}
.yeb6_c00001{bottom:690.267067pt;}
.y1560_c00001{bottom:690.268507pt;}
.y395c_c00001{bottom:690.347067pt;}
.y1908_c00001{bottom:690.389760pt;}
.y3454_c00001{bottom:690.507067pt;}
.y6f2_c00001{bottom:690.587067pt;}
.y268_c00001{bottom:690.667067pt;}
.y3300_c00001{bottom:690.720000pt;}
.y29e9_c00001{bottom:690.746283pt;}
.y2033_c00001{bottom:690.746611pt;}
.y2740_c00001{bottom:690.746667pt;}
.y2956_c00001{bottom:690.746675pt;}
.y2bdf_c00001{bottom:690.747067pt;}
.y348f_c00001{bottom:690.827067pt;}
.y32d1_c00001{bottom:690.880000pt;}
.y1da_c00001{bottom:691.067067pt;}
.y35cc_c00001{bottom:691.147200pt;}
.ye86_c00001{bottom:691.147403pt;}
.yd83_c00001{bottom:691.148227pt;}
.y17f_c00001{bottom:691.227067pt;}
.y1cd2_c00001{bottom:691.360000pt;}
.y867_c00001{bottom:691.387067pt;}
.y21c1_c00001{bottom:691.465603pt;}
.y2634_c00001{bottom:691.465955pt;}
.y209f_c00001{bottom:691.466739pt;}
.y1771_c00001{bottom:691.467067pt;}
.y2a48_c00001{bottom:691.467131pt;}
.y317c_c00001{bottom:691.520000pt;}
.y21f_c00001{bottom:691.547067pt;}
.y114a_c00001{bottom:691.550227pt;}
.y390a_c00001{bottom:691.627067pt;}
.y2f25_c00001{bottom:691.680000pt;}
.y2aa1_c00001{bottom:691.947067pt;}
.y427_c00001{bottom:692.027067pt;}
.y2d47_c00001{bottom:692.034811pt;}
.y1047_c00001{bottom:692.106811pt;}
.y37b5_c00001{bottom:692.107067pt;}
.y14ec_c00001{bottom:692.187067pt;}
.y115a_c00001{bottom:692.277011pt;}
.yd13_c00001{bottom:692.427067pt;}
.y2d50_c00001{bottom:692.476160pt;}
.y31aa_c00001{bottom:692.480000pt;}
.y2656_c00001{bottom:692.507067pt;}
.y2107_c00001{bottom:692.587067pt;}
.yb83_c00001{bottom:692.663707pt;}
.y187c_c00001{bottom:692.667067pt;}
.yf04_c00001{bottom:692.667971pt;}
.y21b6_c00001{bottom:692.747067pt;}
.y3624_c00001{bottom:692.827067pt;}
.y1aa_c00001{bottom:692.907067pt;}
.y1989_c00001{bottom:692.960000pt;}
.y571_c00001{bottom:693.227067pt;}
.y6ee_c00001{bottom:693.307067pt;}
.y1f76_c00001{bottom:693.310787pt;}
.y220e_c00001{bottom:693.387067pt;}
.y337a_c00001{bottom:693.390707pt;}
.y6d7_c00001{bottom:693.547067pt;}
.y294_c00001{bottom:693.627067pt;}
.y3435_c00001{bottom:693.787067pt;}
.y3047_c00001{bottom:693.920000pt;}
.y17_c00001{bottom:693.947067pt;}
.ye0_c00001{bottom:694.027067pt;}
.y1d16_c00001{bottom:694.080000pt;}
.y22ac_c00001{bottom:694.107067pt;}
.y1407_c00001{bottom:694.107251pt;}
.yb98_c00001{bottom:694.186867pt;}
.y1898_c00001{bottom:694.187067pt;}
.y1d17_c00001{bottom:694.240000pt;}
.y2b93_c00001{bottom:694.267067pt;}
.y3b3_c00001{bottom:694.347067pt;}
.y2e87_c00001{bottom:694.400000pt;}
.y2d8_c00001{bottom:694.507067pt;}
.y1304_c00001{bottom:694.587067pt;}
.y63_c00001{bottom:694.667067pt;}
.y3248_c00001{bottom:694.720000pt;}
.y20bc_c00001{bottom:694.827067pt;}
.y1ef0_c00001{bottom:694.880000pt;}
.y15bd_c00001{bottom:694.907067pt;}
.y2cd8_c00001{bottom:694.907195pt;}
.y15c4_c00001{bottom:694.908531pt;}
.y200e_c00001{bottom:694.987200pt;}
.y1a17_c00001{bottom:695.043520pt;}
.y745_c00001{bottom:695.067067pt;}
.y350b_c00001{bottom:695.146603pt;}
.y317d_c00001{bottom:695.200000pt;}
.y1735_c00001{bottom:695.227067pt;}
.yc7e_c00001{bottom:695.230043pt;}
.y29d1_c00001{bottom:695.307067pt;}
.y1d9a_c00001{bottom:695.360000pt;}
.y23a4_c00001{bottom:695.387067pt;}
.y368e_c00001{bottom:695.466387pt;}
.y54e_c00001{bottom:695.467067pt;}
.y26f5_c00001{bottom:695.547067pt;}
.y3590_c00001{bottom:695.627067pt;}
.y3679_c00001{bottom:695.707067pt;}
.y1b42_c00001{bottom:695.840000pt;}
.y24a9_c00001{bottom:695.946803pt;}
.ydf6_c00001{bottom:695.947987pt;}
.y19c8_c00001{bottom:696.000000pt;}
.y27df_c00001{bottom:696.024963pt;}
.y27cd_c00001{bottom:696.026808pt;}
.y170e_c00001{bottom:696.027067pt;}
.y180b_c00001{bottom:696.027200pt;}
.y137f_c00001{bottom:696.107067pt;}
.y293_c00001{bottom:696.187067pt;}
.y14a2_c00001{bottom:696.187259pt;}
.yf95_c00001{bottom:696.347067pt;}
.y387b_c00001{bottom:696.424483pt;}
.y59b_c00001{bottom:696.427067pt;}
.y1c90_c00001{bottom:696.480000pt;}
.y2c25_c00001{bottom:696.507067pt;}
.y343_c00001{bottom:696.587067pt;}
.y1f16_c00001{bottom:696.588475pt;}
.y12e_c00001{bottom:696.667067pt;}
.y1ff1_c00001{bottom:696.747067pt;}
.y2ba7_c00001{bottom:696.747131pt;}
.yca6_c00001{bottom:696.748227pt;}
.y301f_c00001{bottom:696.800000pt;}
.y2e5a_c00001{bottom:696.802720pt;}
.y2937_c00001{bottom:696.827067pt;}
.y2b2f_c00001{bottom:696.827483pt;}
.y3320_c00001{bottom:696.960000pt;}
.y1fc3_c00001{bottom:696.987067pt;}
.ya3a_c00001{bottom:696.987200pt;}
.y2449_c00001{bottom:697.067067pt;}
.y2fa6_c00001{bottom:697.120000pt;}
.y2691_c00001{bottom:697.146739pt;}
.y168b_c00001{bottom:697.147067pt;}
.y347a_c00001{bottom:697.147200pt;}
.y33c9_c00001{bottom:697.147659pt;}
.y38f7_c00001{bottom:697.227067pt;}
.y2da1_c00001{bottom:697.280000pt;}
.y28fc_c00001{bottom:697.307067pt;}
.y37cb_c00001{bottom:697.387067pt;}
.y2130_c00001{bottom:697.467067pt;}
.y1fda_c00001{bottom:697.547067pt;}
.ya56_c00001{bottom:697.707067pt;}
.y222b_c00001{bottom:697.785891pt;}
.y1787_c00001{bottom:697.787067pt;}
.y1751_c00001{bottom:697.867067pt;}
.y15fa_c00001{bottom:697.867147pt;}
.y1d5a_c00001{bottom:697.920000pt;}
.y157_c00001{bottom:697.947067pt;}
.y39eb_c00001{bottom:698.106667pt;}
.y255a_c00001{bottom:698.107067pt;}
.yae4_c00001{bottom:698.187067pt;}
.y1bda_c00001{bottom:698.240000pt;}
.y1673_c00001{bottom:698.267067pt;}
.y317e_c00001{bottom:698.400000pt;}
.y33c5_c00001{bottom:698.427067pt;}
.y37db_c00001{bottom:698.507067pt;}
.y1e27_c00001{bottom:698.560000pt;}
.y2ade_c00001{bottom:698.587067pt;}
.y409_c00001{bottom:698.667067pt;}
.y30f2_c00001{bottom:698.720000pt;}
.yc11_c00001{bottom:698.747067pt;}
.y16f5_c00001{bottom:698.827067pt;}
.yaa2_c00001{bottom:698.907067pt;}
.y2eea_c00001{bottom:699.040000pt;}
.y12e8_c00001{bottom:699.067067pt;}
.y714_c00001{bottom:699.147200pt;}
.y1243_c00001{bottom:699.227691pt;}
.y1aa9_c00001{bottom:699.360000pt;}
.y2156_c00001{bottom:699.387067pt;}
.y144d_c00001{bottom:699.387200pt;}
.y2198_c00001{bottom:699.467067pt;}
.y2c77_c00001{bottom:699.623811pt;}
.y2c66_c00001{bottom:699.626739pt;}
.y426_c00001{bottom:699.627067pt;}
.y698_c00001{bottom:699.707067pt;}
.y27a4_c00001{bottom:699.787067pt;}
.y7c2_c00001{bottom:699.947067pt;}
.ye92_c00001{bottom:700.022451pt;}
.y140c_c00001{bottom:700.026667pt;}
.y2af3_c00001{bottom:700.026808pt;}
.y1483_c00001{bottom:700.027067pt;}
.y12c1_c00001{bottom:700.109211pt;}
.y2d72_c00001{bottom:700.160000pt;}
.y1117_c00001{bottom:700.187067pt;}
.y237a_c00001{bottom:700.266611pt;}
.y124d_c00001{bottom:700.345867pt;}
.y8df_c00001{bottom:700.507067pt;}
.y2d04_c00001{bottom:700.585891pt;}
.y17b3_c00001{bottom:700.587067pt;}
.y1c91_c00001{bottom:700.640000pt;}
.y88_c00001{bottom:700.667067pt;}
.y235b_c00001{bottom:700.746555pt;}
.y13fc_c00001{bottom:700.827067pt;}
.y20dc_c00001{bottom:700.906352pt;}
.yc3f_c00001{bottom:700.906499pt;}
.y1930_c00001{bottom:700.960000pt;}
.y118f_c00001{bottom:701.067067pt;}
.y1e92_c00001{bottom:701.120000pt;}
.y38cb_c00001{bottom:701.147200pt;}
.y24dc_c00001{bottom:701.224387pt;}
.y52c_c00001{bottom:701.227067pt;}
.y12d0_c00001{bottom:701.227867pt;}
.y39ec_c00001{bottom:701.307067pt;}
.y11c7_c00001{bottom:701.386619pt;}
.y39ea_c00001{bottom:701.387067pt;}
.y1b90_c00001{bottom:701.440000pt;}
.y9be_c00001{bottom:701.467067pt;}
.y17f7_c00001{bottom:701.547067pt;}
.y286e_c00001{bottom:701.623379pt;}
.y26d4_c00001{bottom:701.624843pt;}
.y3a13_c00001{bottom:701.629011pt;}
.y3dc_c00001{bottom:701.787067pt;}
.y181e_c00001{bottom:701.867067pt;}
.y262b_c00001{bottom:702.027067pt;}
.y11d3_c00001{bottom:702.102715pt;}
.y3602_c00001{bottom:702.106499pt;}
.y37e_c00001{bottom:702.107067pt;}
.ydae_c00001{bottom:702.107280pt;}
.yf74_c00001{bottom:702.267067pt;}
.y2a84_c00001{bottom:702.347067pt;}
.y1c50_c00001{bottom:702.400000pt;}
.y23c6_c00001{bottom:702.426675pt;}
.y224f_c00001{bottom:702.427067pt;}
.yd3f_c00001{bottom:702.507067pt;}
.y1c17_c00001{bottom:702.560000pt;}
.y3525_c00001{bottom:702.584747pt;}
.ye8b_c00001{bottom:702.584899pt;}
.y22fa_c00001{bottom:702.587067pt;}
.y340c_c00001{bottom:702.666675pt;}
.y217d_c00001{bottom:702.667067pt;}
.y1ebf_c00001{bottom:702.720000pt;}
.y126c_c00001{bottom:702.747067pt;}
.y1366_c00001{bottom:702.747200pt;}
.y6f1_c00001{bottom:702.827067pt;}
.y3655_c00001{bottom:702.987200pt;}
.y385e_c00001{bottom:703.147200pt;}
.y19c9_c00001{bottom:703.200000pt;}
.y22c6_c00001{bottom:703.226739pt;}
.y26c1_c00001{bottom:703.227067pt;}
.y14c9_c00001{bottom:703.387667pt;}
.y503_c00001{bottom:703.547067pt;}
.y25a8_c00001{bottom:703.627067pt;}
.y2fcb_c00001{bottom:703.680000pt;}
.y250d_c00001{bottom:703.704451pt;}
.y3562_c00001{bottom:703.707067pt;}
.y4cc_c00001{bottom:703.866667pt;}
.y328a_c00001{bottom:704.160000pt;}
.y4a4_c00001{bottom:704.267067pt;}
.y1c18_c00001{bottom:704.320000pt;}
.y18fa_c00001{bottom:704.343811pt;}
.y318_c00001{bottom:704.347067pt;}
.y6b7_c00001{bottom:704.507067pt;}
.yfef_c00001{bottom:704.587067pt;}
.yba5_c00001{bottom:704.746411pt;}
.y2610_c00001{bottom:704.747067pt;}
.y5ec_c00001{bottom:704.827067pt;}
.y5c3_c00001{bottom:704.987200pt;}
.y30c6_c00001{bottom:705.120000pt;}
.y23e_c00001{bottom:705.147200pt;}
.ydcd_c00001{bottom:705.147307pt;}
.y25cd_c00001{bottom:705.227067pt;}
.y14eb_c00001{bottom:705.228827pt;}
.y959_c00001{bottom:705.307067pt;}
.y1400_c00001{bottom:705.307880pt;}
.y1bdb_c00001{bottom:705.440000pt;}
.ybad_c00001{bottom:705.466515pt;}
.y4bd_c00001{bottom:705.467067pt;}
.y226e_c00001{bottom:705.545499pt;}
.y2c00_c00001{bottom:705.545891pt;}
.y2582_c00001{bottom:705.545955pt;}
.y44f_c00001{bottom:705.547067pt;}
.y101a_c00001{bottom:705.547315pt;}
.y2ef6_c00001{bottom:705.600000pt;}
.y2a2b_c00001{bottom:705.627067pt;}
.y2b2e_c00001{bottom:705.627475pt;}
.y150d_c00001{bottom:705.707067pt;}
.y1069_c00001{bottom:705.787067pt;}
.yb51_c00001{bottom:705.787944pt;}
.y292_c00001{bottom:705.867067pt;}
.y158b_c00001{bottom:705.867147pt;}
.y2671_c00001{bottom:705.947067pt;}
.y23ef_c00001{bottom:706.027067pt;}
.y134d_c00001{bottom:706.029315pt;}
.y32ff_c00001{bottom:706.080000pt;}
.y782_c00001{bottom:706.107067pt;}
.y271b_c00001{bottom:706.184099pt;}
.y2711_c00001{bottom:706.185563pt;}
.y7cf_c00001{bottom:706.267067pt;}
.y2f6b_c00001{bottom:706.400000pt;}
.y246c_c00001{bottom:706.427067pt;}
.y25c9_c00001{bottom:706.507067pt;}
.ybea_c00001{bottom:706.667067pt;}
.ye2b_c00001{bottom:706.669387pt;}
.y283d_c00001{bottom:706.747067pt;}
.y135c_c00001{bottom:706.747411pt;}
.y598_c00001{bottom:706.827067pt;}
.y35e7_c00001{bottom:706.907067pt;}
.ycba_c00001{bottom:706.987200pt;}
.y34b6_c00001{bottom:707.067067pt;}
.y3398_c00001{bottom:707.147067pt;}
.y59a_c00001{bottom:707.147200pt;}
.y155f_c00001{bottom:707.148427pt;}
.y1a16_c00001{bottom:707.200000pt;}
.y47f_c00001{bottom:707.307067pt;}
.y1deb_c00001{bottom:707.360000pt;}
.y1a5e_c00001{bottom:707.365440pt;}
.yce4_c00001{bottom:707.467067pt;}
.y3266_c00001{bottom:707.520000pt;}
.y241e_c00001{bottom:707.547067pt;}
.y2aa0_c00001{bottom:707.547195pt;}
.y2987_c00001{bottom:707.625147pt;}
.y34ca_c00001{bottom:707.626139pt;}
.y2983_c00001{bottom:707.626611pt;}
.y104_c00001{bottom:707.627067pt;}
.y2dc9_c00001{bottom:707.686240pt;}
.y368d_c00001{bottom:707.706643pt;}
.y5ca_c00001{bottom:707.707067pt;}
.y34f5_c00001{bottom:707.787067pt;}
.y1393_c00001{bottom:707.787835pt;}
.y1e5e_c00001{bottom:707.840000pt;}
.y202_c00001{bottom:707.867067pt;}
.yf03_c00001{bottom:707.947803pt;}
.yd82_c00001{bottom:708.028147pt;}
.y2c23_c00001{bottom:708.107067pt;}
.y2084_c00001{bottom:708.186611pt;}
.y267_c00001{bottom:708.187067pt;}
.y3466_c00001{bottom:708.267067pt;}
.y2ef5_c00001{bottom:708.320000pt;}
.y2655_c00001{bottom:708.347067pt;}
.y1f5b_c00001{bottom:708.427067pt;}
.y2e29_c00001{bottom:708.480000pt;}
.y7f5_c00001{bottom:708.507067pt;}
.y114b_c00001{bottom:708.510747pt;}
.y1d9_c00001{bottom:708.587067pt;}
.y1afa_c00001{bottom:708.640000pt;}
.y79f_c00001{bottom:708.667067pt;}
.y387a_c00001{bottom:708.744539pt;}
.y2a67_c00001{bottom:708.747067pt;}
.y1a9_c00001{bottom:708.907067pt;}
.y139d_c00001{bottom:708.907867pt;}
.y2bcc_c00001{bottom:708.987200pt;}
.y3223_c00001{bottom:708.992323pt;}
.y220d_c00001{bottom:709.067067pt;}
.y1d14_c00001{bottom:709.120000pt;}
.y3623_c00001{bottom:709.147200pt;}
.y115b_c00001{bottom:709.237531pt;}
.y1cce_c00001{bottom:709.280000pt;}
.y40_c00001{bottom:709.307067pt;}
.y3b2_c00001{bottom:709.387067pt;}
.y1406_c00001{bottom:709.467243pt;}
.yeb5_c00001{bottom:709.547067pt;}
.y96b_c00001{bottom:709.707067pt;}
.y1aab_c00001{bottom:709.760000pt;}
.y979_c00001{bottom:709.787067pt;}
.y2ff_c00001{bottom:709.867067pt;}
.ye9d_c00001{bottom:709.867200pt;}
.y2d46_c00001{bottom:709.954171pt;}
.y21b5_c00001{bottom:710.027067pt;}
.y1dec_c00001{bottom:710.080000pt;}
.y29e8_c00001{bottom:710.186739pt;}
.y2035_c00001{bottom:710.187067pt;}
.y2955_c00001{bottom:710.187131pt;}
.y1eef_c00001{bottom:710.240000pt;}
.y866_c00001{bottom:710.427067pt;}
.y11fa_c00001{bottom:710.506688pt;}
.y1f3a_c00001{bottom:710.510267pt;}
.y2f6c_c00001{bottom:710.560000pt;}
.y12f6_c00001{bottom:710.587067pt;}
.y27b7_c00001{bottom:710.667067pt;}
.y3541_c00001{bottom:710.667376pt;}
.y570_c00001{bottom:710.747067pt;}
.y2633_c00001{bottom:710.825891pt;}
.y209e_c00001{bottom:710.826675pt;}
.y1fa6_c00001{bottom:710.827067pt;}
.y1907_c00001{bottom:710.876160pt;}
.y1d98_c00001{bottom:710.880000pt;}
.y3803_c00001{bottom:710.907067pt;}
.y1004_c00001{bottom:710.987200pt;}
.y1084_c00001{bottom:711.067067pt;}
.y2050_c00001{bottom:711.147200pt;}
.y1ccf_c00001{bottom:711.200000pt;}
.y370b_c00001{bottom:711.227067pt;}
.y35a7_c00001{bottom:711.307067pt;}
.yc7f_c00001{bottom:711.310139pt;}
.y1c19_c00001{bottom:711.360000pt;}
.y2032_c00001{bottom:711.467067pt;}
.y16_c00001{bottom:711.547067pt;}
.y35cb_c00001{bottom:711.627067pt;}
.y2eb6_c00001{bottom:711.680000pt;}
.y392b_c00001{bottom:711.867067pt;}
.y6d6_c00001{bottom:711.947067pt;}
.y156_c00001{bottom:712.027067pt;}
.y2a47_c00001{bottom:712.107067pt;}
.y23a3_c00001{bottom:712.187067pt;}
.y1d99_c00001{bottom:712.320000pt;}
.ydf_c00001{bottom:712.427067pt;}
.y2800_c00001{bottom:712.507067pt;}
.y6f0_c00001{bottom:712.587067pt;}
.y31ab_c00001{bottom:712.640000pt;}
.y348e_c00001{bottom:712.667067pt;}
.y350a_c00001{bottom:712.747067pt;}
.ydf5_c00001{bottom:712.827907pt;}
.yca7_c00001{bottom:712.828459pt;}
.y2c98_c00001{bottom:712.907067pt;}
.y31ac_c00001{bottom:712.960000pt;}
.y235a_c00001{bottom:712.986811pt;}
.y3427_c00001{bottom:713.067067pt;}
.y3247_c00001{bottom:713.120000pt;}
.yc3e_c00001{bottom:713.146755pt;}
.y2b7a_c00001{bottom:713.147200pt;}
.y16d6_c00001{bottom:713.227067pt;}
.y395d_c00001{bottom:713.307067pt;}
.y29ab_c00001{bottom:713.387067pt;}
.y2d7_c00001{bottom:713.467067pt;}
.y1734_c00001{bottom:713.547067pt;}
.y22ab_c00001{bottom:713.627067pt;}
.y160c_c00001{bottom:713.707067pt;}
.y66a_c00001{bottom:713.707827pt;}
.ya39_c00001{bottom:713.787067pt;}
.yb84_c00001{bottom:713.943515pt;}
.y35cd_c00001{bottom:714.107067pt;}
.y212f_c00001{bottom:714.187067pt;}
.y28c8_c00001{bottom:714.267067pt;}
.y2cd7_c00001{bottom:714.267131pt;}
.y3601_c00001{bottom:714.346755pt;}
.y2b92_c00001{bottom:714.347067pt;}
.y2106_c00001{bottom:714.427067pt;}
.y2b2d_c00001{bottom:714.427467pt;}
.y8b6_c00001{bottom:714.507067pt;}
.ye4d_c00001{bottom:714.667067pt;}
.y2da0_c00001{bottom:714.720000pt;}
.y13c3_c00001{bottom:714.747099pt;}
.y11a9_c00001{bottom:714.747563pt;}
.y15f9_c00001{bottom:714.747667pt;}
.y33af_c00001{bottom:714.907067pt;}
.yb29_c00001{bottom:714.907243pt;}
.y342_c00001{bottom:714.987200pt;}
.y2ee9_c00001{bottom:715.040000pt;}
.y12d_c00001{bottom:715.067067pt;}
.y38f6_c00001{bottom:715.147200pt;}
.y24a8_c00001{bottom:715.306739pt;}
.y1897_c00001{bottom:715.307067pt;}
.y27de_c00001{bottom:715.465419pt;}
.y27cc_c00001{bottom:715.467264pt;}
.yb99_c00001{bottom:715.546667pt;}
.y14a1_c00001{bottom:715.547195pt;}
.yc10_c00001{bottom:715.627067pt;}
.yb31_c00001{bottom:715.627347pt;}
.y9d9_c00001{bottom:715.707067pt;}
.y3a12_c00001{bottom:715.708923pt;}
.y1b91_c00001{bottom:715.840000pt;}
.yb0_c00001{bottom:715.867067pt;}
.y54d_c00001{bottom:716.027067pt;}
.y2ba6_c00001{bottom:716.107067pt;}
.y31ad_c00001{bottom:716.160000pt;}
.y1d59_c00001{bottom:716.320000pt;}
.y2448_c00001{bottom:716.427067pt;}
.y1e24_c00001{bottom:716.480000pt;}
.y2290_c00001{bottom:716.587067pt;}
.y2690_c00001{bottom:716.587195pt;}
.y2e85_c00001{bottom:716.640000pt;}
.y317_c00001{bottom:716.667067pt;}
.y3045_c00001{bottom:716.800000pt;}
.y17e_c00001{bottom:716.907067pt;}
.y306c_c00001{bottom:716.960000pt;}
.y1116_c00001{bottom:716.987200pt;}
.y62_c00001{bottom:717.067067pt;}
.y1d11_c00001{bottom:717.120000pt;}
.y1722_c00001{bottom:717.147067pt;}
.y180a_c00001{bottom:717.147200pt;}
.y222a_c00001{bottom:717.226347pt;}
.y16f4_c00001{bottom:717.227067pt;}
.y89b_c00001{bottom:717.228040pt;}
.yaa1_c00001{bottom:717.307067pt;}
.y64b_c00001{bottom:717.387067pt;}
.y1d9b_c00001{bottom:717.440000pt;}
.y37ca_c00001{bottom:717.467067pt;}
.y1a14_c00001{bottom:717.600000pt;}
.y1046_c00001{bottom:717.627067pt;}
.y12c2_c00001{bottom:717.709675pt;}
.y760_c00001{bottom:717.787067pt;}
.y38b1_c00001{bottom:717.867067pt;}
.y192f_c00001{bottom:717.920000pt;}
.y33fb_c00001{bottom:717.946611pt;}
.y599_c00001{bottom:717.947067pt;}
.yf1a_c00001{bottom:718.026811pt;}
.y28ae_c00001{bottom:718.027067pt;}
.y1cd0_c00001{bottom:718.080000pt;}
.y697_c00001{bottom:718.107067pt;}
.y2559_c00001{bottom:718.187067pt;}
.y713_c00001{bottom:718.347067pt;}
.y2fee_c00001{bottom:718.400000pt;}
.y37d_c00001{bottom:718.427067pt;}
.y1fd9_c00001{bottom:718.507067pt;}
.y2d71_c00001{bottom:718.560000pt;}
.y3770_c00001{bottom:718.667067pt;}
.y1c8e_c00001{bottom:718.720000pt;}
.y12d1_c00001{bottom:718.828267pt;}
.y121a_c00001{bottom:718.907067pt;}
.y2c76_c00001{bottom:718.983747pt;}
.y2c65_c00001{bottom:718.986675pt;}
.yf26_c00001{bottom:718.987067pt;}
.ydad_c00001{bottom:718.987200pt;}
.y21e_c00001{bottom:719.067067pt;}
.y1ded_c00001{bottom:719.200000pt;}
.y13fb_c00001{bottom:719.227067pt;}
.y4a2_c00001{bottom:719.307067pt;}
.y2e58_c00001{bottom:719.360000pt;}
.y2af2_c00001{bottom:719.386744pt;}
.y502_c00001{bottom:719.547067pt;}
.y52b_c00001{bottom:719.627067pt;}
.y301c_c00001{bottom:719.680000pt;}
.y1a5d_c00001{bottom:719.682720pt;}
.yd65_c00001{bottom:719.707067pt;}
.y27a3_c00001{bottom:719.787067pt;}
.y25f4_c00001{bottom:719.947067pt;}
.y3231_c00001{bottom:720.000000pt;}
.y2dc8_c00001{bottom:720.003520pt;}
.y2d03_c00001{bottom:720.026347pt;}
.y38ca_c00001{bottom:720.107067pt;}
.y3db_c00001{bottom:720.187067pt;}
.y2918_c00001{bottom:720.267067pt;}
.y2f1d_c00001{bottom:720.320000pt;}
.y20db_c00001{bottom:720.346808pt;}
.y3158_c00001{bottom:720.640000pt;}
.y24db_c00001{bottom:720.664843pt;}
.y37ea_c00001{bottom:720.667067pt;}
.y33c4_c00001{bottom:720.747067pt;}
.y2e86_c00001{bottom:720.800000pt;}
.y2ac9_c00001{bottom:720.827200pt;}
.y79e_c00001{bottom:720.907067pt;}
.y286d_c00001{bottom:720.983315pt;}
.y26d3_c00001{bottom:720.984779pt;}
.y3879_c00001{bottom:720.984795pt;}
.y2379_c00001{bottom:720.987200pt;}
.y3453_c00001{bottom:721.067067pt;}
.y30f1_c00001{bottom:721.123520pt;}
.y246b_c00001{bottom:721.147200pt;}
.y2155_c00001{bottom:721.227067pt;}
.y19c2_c00001{bottom:721.280000pt;}
.y6b6_c00001{bottom:721.387067pt;}
.y317b_c00001{bottom:721.440000pt;}
.y3645_c00001{bottom:721.547067pt;}
.y368c_c00001{bottom:721.547155pt;}
.y3782_c00001{bottom:721.706139pt;}
.yba6_c00001{bottom:721.706931pt;}
.y17b2_c00001{bottom:721.787067pt;}
.y39e9_c00001{bottom:721.867067pt;}
.y23c5_c00001{bottom:721.867131pt;}
.y763_c00001{bottom:721.947067pt;}
.yd3e_c00001{bottom:722.026632pt;}
.y1303_c00001{bottom:722.027067pt;}
.ydcc_c00001{bottom:722.027227pt;}
.y340b_c00001{bottom:722.107131pt;}
.y13ff_c00001{bottom:722.107280pt;}
.y14ea_c00001{bottom:722.108747pt;}
.y1d12_c00001{bottom:722.240000pt;}
.y34a3_c00001{bottom:722.267067pt;}
.y3992_c00001{bottom:722.347067pt;}
.y306d_c00001{bottom:722.400000pt;}
.y3678_c00001{bottom:722.426667pt;}
.ybae_c00001{bottom:722.427035pt;}
.y273f_c00001{bottom:722.427067pt;}
.y1d13_c00001{bottom:722.560000pt;}
.y22c5_c00001{bottom:722.586675pt;}
.y200d_c00001{bottom:722.587067pt;}
.y23d_c00001{bottom:722.667067pt;}
.y11f9_c00001{bottom:722.746944pt;}
.y1862_c00001{bottom:722.747067pt;}
.y158a_c00001{bottom:722.747667pt;}
.y1c8f_c00001{bottom:722.880000pt;}
.y181d_c00001{bottom:722.987067pt;}
.y1244_c00001{bottom:722.987115pt;}
.y250c_c00001{bottom:723.064387pt;}
.y3561_c00001{bottom:723.067067pt;}
.y7ce_c00001{bottom:723.147200pt;}
.yef6_c00001{bottom:723.147795pt;}
.y31d7_c00001{bottom:723.200000pt;}
.y20bb_c00001{bottom:723.227067pt;}
.y2b2c_c00001{bottom:723.227459pt;}
.y26c0_c00001{bottom:723.307067pt;}
.yf02_c00001{bottom:723.307795pt;}
.y1bd8_c00001{bottom:723.360000pt;}
.y2df7_c00001{bottom:723.368960pt;}
.y44e_c00001{bottom:723.467067pt;}
.y2e59_c00001{bottom:723.520000pt;}
.y17d_c00001{bottom:723.547067pt;}
.ye2a_c00001{bottom:723.549307pt;}
.y5c2_c00001{bottom:723.627067pt;}
.y137e_c00001{bottom:723.707067pt;}
.y18f9_c00001{bottom:723.784267pt;}
.y11c8_c00001{bottom:723.785995pt;}
.y7f4_c00001{bottom:723.787067pt;}
.ycb9_c00001{bottom:723.867067pt;}
.y8de_c00001{bottom:723.947067pt;}
.y9f4_c00001{bottom:724.027067pt;}
.y155e_c00001{bottom:724.028347pt;}
.y124e_c00001{bottom:724.105867pt;}
.y87_c00001{bottom:724.187067pt;}
.yb50_c00001{bottom:724.187696pt;}
.y155_c00001{bottom:724.267067pt;}
.y32d0_c00001{bottom:724.320000pt;}
.y1ff0_c00001{bottom:724.347067pt;}
.y231d_c00001{bottom:724.427067pt;}
.y2ef4_c00001{bottom:724.480000pt;}
.y11d4_c00001{bottom:724.502091pt;}
.y26ac_c00001{bottom:724.507067pt;}
.y1fc2_c00001{bottom:724.587067pt;}
.y168a_c00001{bottom:724.667067pt;}
.y47e_c00001{bottom:724.747067pt;}
.y3540_c00001{bottom:724.747288pt;}
.y27b6_c00001{bottom:724.827200pt;}
.y1405_c00001{bottom:724.827235pt;}
.y226d_c00001{bottom:724.905435pt;}
.y2bff_c00001{bottom:724.905827pt;}
.y2581_c00001{bottom:724.905891pt;}
.y597_c00001{bottom:724.907067pt;}
.yd81_c00001{bottom:724.908067pt;}
.y1a15_c00001{bottom:724.960000pt;}
.y2784_c00001{bottom:724.987200pt;}
.y4bc_c00001{bottom:725.147200pt;}
.y2359_c00001{bottom:725.227067pt;}
.y114c_c00001{bottom:725.391107pt;}
.yc3d_c00001{bottom:725.466811pt;}
.y179e_c00001{bottom:725.467067pt;}
.ye82_c00001{bottom:725.546731pt;}
.y1eee_c00001{bottom:725.600000pt;}
.y3355_c00001{bottom:725.605600pt;}
.y271a_c00001{bottom:725.624555pt;}
.y2710_c00001{bottom:725.626019pt;}
.y21b4_c00001{bottom:725.626411pt;}
.y3802_c00001{bottom:725.627067pt;}
.y1e5c_c00001{bottom:725.760000pt;}
.y266_c00001{bottom:725.787067pt;}
.y1672_c00001{bottom:725.867067pt;}
.y370a_c00001{bottom:725.947443pt;}
.y2d29_c00001{bottom:726.022043pt;}
.y1d8_c00001{bottom:726.107067pt;}
.y115c_c00001{bottom:726.117891pt;}
.y103_c00001{bottom:726.187067pt;}
.y1f15_c00001{bottom:726.189163pt;}
.y408_c00001{bottom:726.267067pt;}
.y4cb_c00001{bottom:726.347067pt;}
.y2e28_c00001{bottom:726.400000pt;}
.y12e7_c00001{bottom:726.507067pt;}
.y2bcb_c00001{bottom:726.587067pt;}
.yce3_c00001{bottom:726.665875pt;}
.y3600_c00001{bottom:726.666811pt;}
.y3622_c00001{bottom:726.667067pt;}
.y1985_c00001{bottom:726.720000pt;}
.y283c_c00001{bottom:726.747067pt;}
.y220c_c00001{bottom:726.827200pt;}
.y1e25_c00001{bottom:726.880000pt;}
.y34f4_c00001{bottom:726.907067pt;}
.y2a9f_c00001{bottom:726.907131pt;}
.y134e_c00001{bottom:726.909659pt;}
.y3b1_c00001{bottom:726.987200pt;}
.y1906_c00001{bottom:727.040000pt;}
.y2986_c00001{bottom:727.065603pt;}
.y2c22_c00001{bottom:727.067067pt;}
.y30c4_c00001{bottom:727.200000pt;}
.y23a2_c00001{bottom:727.227067pt;}
.y375c_c00001{bottom:727.307067pt;}
.y1d97_c00001{bottom:727.360000pt;}
.y36dc_c00001{bottom:727.387067pt;}
.yc80_c00001{bottom:727.390235pt;}
.y32ad_c00001{bottom:727.520000pt;}
.y140b_c00001{bottom:727.626667pt;}
.y1482_c00001{bottom:727.627067pt;}
.y135d_c00001{bottom:727.627755pt;}
.y1aa7_c00001{bottom:727.680000pt;}
.y2d45_c00001{bottom:727.794475pt;}
.y33ae_c00001{bottom:727.867067pt;}
.yac5_c00001{bottom:728.107067pt;}
.y15bc_c00001{bottom:728.187067pt;}
.y56f_c00001{bottom:728.267067pt;}
.y3046_c00001{bottom:728.320000pt;}
.y2982_c00001{bottom:728.347067pt;}
.y92b_c00001{bottom:728.427067pt;}
.y19c6_c00001{bottom:728.480000pt;}
.y248c_c00001{bottom:728.507067pt;}
.y2f69_c00001{bottom:728.640000pt;}
.y2030_c00001{bottom:728.747067pt;}
.y316_c00001{bottom:728.907067pt;}
.yca8_c00001{bottom:728.908691pt;}
.y1003_c00001{bottom:728.987200pt;}
.y15_c00001{bottom:729.227067pt;}
.y1c14_c00001{bottom:729.280000pt;}
.y6d5_c00001{bottom:729.307067pt;}
.y83b_c00001{bottom:729.387067pt;}
.y865_c00001{bottom:729.467067pt;}
.y29e7_c00001{bottom:729.546675pt;}
.y295d_c00001{bottom:729.547067pt;}
.y3267_c00001{bottom:729.600000pt;}
.ye95_c00001{bottom:729.621531pt;}
.yeb4_c00001{bottom:729.706744pt;}
.ydf4_c00001{bottom:729.707827pt;}
.y395b_c00001{bottom:729.787067pt;}
.y3a11_c00001{bottom:729.788835pt;}
.yf73_c00001{bottom:729.867067pt;}
.y2fca_c00001{bottom:729.920000pt;}
.y224e_c00001{bottom:730.027067pt;}
.y260f_c00001{bottom:730.107067pt;}
.y762_c00001{bottom:730.187067pt;}
.y2632_c00001{bottom:730.266347pt;}
.yf19_c00001{bottom:730.267067pt;}
.y209d_c00001{bottom:730.267131pt;}
.y2753_c00001{bottom:730.267328pt;}
.y348d_c00001{bottom:730.347067pt;}
.y308d_c00001{bottom:730.400000pt;}
.y1650_c00001{bottom:730.427067pt;}
.y1bd9_c00001{bottom:730.560000pt;}
.y35c9_c00001{bottom:730.587067pt;}
.y669_c00001{bottom:730.587747pt;}
.y79d_c00001{bottom:730.667067pt;}
.yde_c00001{bottom:730.827200pt;}
.y2fa1_c00001{bottom:730.880000pt;}
.y744_c00001{bottom:730.907067pt;}
.y18d5_c00001{bottom:730.987067pt;}
.y1c15_c00001{bottom:731.040000pt;}
.y28db_c00001{bottom:731.067200pt;}
.y2197_c00001{bottom:731.147200pt;}
.y301d_c00001{bottom:731.200000pt;}
.y382d_c00001{bottom:731.307067pt;}
.y30c5_c00001{bottom:731.360000pt;}
.y3818_c00001{bottom:731.467067pt;}
.y192e_c00001{bottom:731.520000pt;}
.y15f8_c00001{bottom:731.547067pt;}
.y7cd_c00001{bottom:731.627067pt;}
.y1e91_c00001{bottom:731.680000pt;}
.y2a69_c00001{bottom:731.707067pt;}
.y18b6_c00001{bottom:731.787067pt;}
.y2d6_c00001{bottom:731.867067pt;}
.y1733_c00001{bottom:731.947067pt;}
.y1f39_c00001{bottom:731.949995pt;}
.y1a5c_c00001{bottom:732.000000pt;}
.y2b2b_c00001{bottom:732.027451pt;}
.y2dc7_c00001{bottom:732.160000pt;}
.y2891_c00001{bottom:732.187067pt;}
.y291_c00001{bottom:732.427067pt;}
.y39e8_c00001{bottom:732.506667pt;}
.yc0f_c00001{bottom:732.507067pt;}
.yf94_c00001{bottom:732.587595pt;}
.y31d9_c00001{bottom:732.640000pt;}
.y2f6a_c00001{bottom:732.800000pt;}
.y54c_c00001{bottom:732.907067pt;}
.y12c_c00001{bottom:733.067067pt;}
.y13c2_c00001{bottom:733.146851pt;}
.y3426_c00001{bottom:733.147200pt;}
.y11a8_c00001{bottom:733.147315pt;}
.y3878_c00001{bottom:733.225051pt;}
.y1ebe_c00001{bottom:733.280000pt;}
.y1394_c00001{bottom:733.308107pt;}
.y341_c00001{bottom:733.387067pt;}
.y2ee8_c00001{bottom:733.440000pt;}
.y35c7_c00001{bottom:733.467067pt;}
.y3524_c00001{bottom:733.545211pt;}
.y37da_c00001{bottom:733.547067pt;}
.y2b79_c00001{bottom:733.627067pt;}
.y1770_c00001{bottom:733.707067pt;}
.y1115_c00001{bottom:733.867067pt;}
.y2d9f_c00001{bottom:733.920000pt;}
.y36f7_c00001{bottom:734.027067pt;}
.y28fb_c00001{bottom:734.107067pt;}
.y89a_c00001{bottom:734.107960pt;}
.y696_c00001{bottom:734.187067pt;}
.yd3d_c00001{bottom:734.266888pt;}
.y195b_c00001{bottom:734.267067pt;}
.y37c_c00001{bottom:734.347067pt;}
.y607_c00001{bottom:734.427067pt;}
.y139e_c00001{bottom:734.428267pt;}
.y1045_c00001{bottom:734.507067pt;}
.y311a_c00001{bottom:734.560000pt;}
.y24a6_c00001{bottom:734.666675pt;}
.y4a1_c00001{bottom:734.667067pt;}
.y3397_c00001{bottom:734.747067pt;}
.y27dd_c00001{bottom:734.825355pt;}
.y118e_c00001{bottom:734.827200pt;}
.y33c3_c00001{bottom:734.907067pt;}
.y187b_c00001{bottom:734.987067pt;}
.y11f8_c00001{bottom:734.987200pt;}
.y14a0_c00001{bottom:734.987651pt;}
.y16a3_c00001{bottom:735.067067pt;}
.y12c3_c00001{bottom:735.229979pt;}
.yb85_c00001{bottom:735.303483pt;}
.y2105_c00001{bottom:735.307067pt;}
.y1d8f_c00001{bottom:735.360000pt;}
.y154_c00001{bottom:735.387067pt;}
.y201_c00001{bottom:735.467067pt;}
.y262a_c00001{bottom:735.547067pt;}
.y368b_c00001{bottom:735.627067pt;}
.y2df6_c00001{bottom:735.686240pt;}
.yaa0_c00001{bottom:735.707067pt;}
.y39e7_c00001{bottom:735.787067pt;}
.y1b8d_c00001{bottom:735.840000pt;}
.y2447_c00001{bottom:735.867067pt;}
.ydac_c00001{bottom:735.867667pt;}
.y268f_c00001{bottom:735.947131pt;}
.y1ccb_c00001{bottom:736.000000pt;}
.y501_c00001{bottom:736.107067pt;}
.y1461_c00001{bottom:736.187067pt;}
.y27a2_c00001{bottom:736.267067pt;}
.y2936_c00001{bottom:736.347067pt;}
.y12d2_c00001{bottom:736.348267pt;}
.y1896_c00001{bottom:736.507067pt;}
.y2229_c00001{bottom:736.586283pt;}
.y1a8_c00001{bottom:736.587067pt;}
.y3644_c00001{bottom:736.747067pt;}
.y1af9_c00001{bottom:736.800000pt;}
.yb9a_c00001{bottom:736.826667pt;}
.y3f_c00001{bottom:736.907067pt;}
.y2d70_c00001{bottom:736.960000pt;}
.ye87_c00001{bottom:736.986899pt;}
.y1de8_c00001{bottom:737.120000pt;}
.y1433_c00001{bottom:737.147067pt;}
.y75f_c00001{bottom:737.147200pt;}
.y2c40_c00001{bottom:737.227067pt;}
.y882_c00001{bottom:737.387067pt;}
.y1d94_c00001{bottom:737.440000pt;}
.y2fe_c00001{bottom:737.467067pt;}
.ye9c_c00001{bottom:737.467200pt;}
.y246a_c00001{bottom:737.547067pt;}
.y1e5d_c00001{bottom:737.600000pt;}
.y13fa_c00001{bottom:737.627067pt;}
.yc3c_c00001{bottom:737.707067pt;}
.y2bdd_c00001{bottom:737.787067pt;}
.y14c8_c00001{bottom:737.787147pt;}
.y1ccc_c00001{bottom:737.920000pt;}
.y47d_c00001{bottom:738.027067pt;}
.y64a_c00001{bottom:738.027200pt;}
.y1c16_c00001{bottom:738.080000pt;}
.y28ad_c00001{bottom:738.107067pt;}
.y6b5_c00001{bottom:738.267067pt;}
.y2c75_c00001{bottom:738.343683pt;}
.y2c64_c00001{bottom:738.346611pt;}
.y52a_c00001{bottom:738.347067pt;}
.y1fa5_c00001{bottom:738.427067pt;}
.yef5_c00001{bottom:738.507787pt;}
.y34c9_c00001{bottom:738.586603pt;}
.y3da_c00001{bottom:738.587067pt;}
.y1083_c00001{bottom:738.667067pt;}
.yf01_c00001{bottom:738.667787pt;}
.y2e84_c00001{bottom:738.720000pt;}
.yba7_c00001{bottom:738.746275pt;}
.yd64_c00001{bottom:738.747067pt;}
.y2b0c_c00001{bottom:738.827200pt;}
.y2340_c00001{bottom:738.907067pt;}
.ydcb_c00001{bottom:738.907147pt;}
.y14e9_c00001{bottom:738.908147pt;}
.yce2_c00001{bottom:738.985931pt;}
.y13fe_c00001{bottom:738.987200pt;}
.y31a7_c00001{bottom:739.040000pt;}
.y36bf_c00001{bottom:739.067067pt;}
.y7f3_c00001{bottom:739.147200pt;}
.y2eb5_c00001{bottom:739.200000pt;}
.y2856_c00001{bottom:739.227067pt;}
.y3781_c00001{bottom:739.306603pt;}
.y1b8e_c00001{bottom:739.360000pt;}
.y2d02_c00001{bottom:739.386283pt;}
.y25c7_c00001{bottom:739.386739pt;}
.y25f3_c00001{bottom:739.387067pt;}
.ybaf_c00001{bottom:739.467715pt;}
.y1589_c00001{bottom:739.547067pt;}
.y761_c00001{bottom:739.627067pt;}
.y2a46_c00001{bottom:739.705499pt;}
.y20da_c00001{bottom:739.706744pt;}
.y21e7_c00001{bottom:739.707067pt;}
.y1de9_c00001{bottom:739.840000pt;}
.y33ad_c00001{bottom:739.867067pt;}
.y3677_c00001{bottom:739.946667pt;}
.y24da_c00001{bottom:740.024779pt;}
.y126b_c00001{bottom:740.027467pt;}
.y1404_c00001{bottom:740.107067pt;}
.y3709_c00001{bottom:740.107155pt;}
.y23c_c00001{bottom:740.187067pt;}
.yf93_c00001{bottom:740.267419pt;}
.y286c_c00001{bottom:740.343251pt;}
.y26d2_c00001{bottom:740.344715pt;}
.ybe9_c00001{bottom:740.427067pt;}
.ye29_c00001{bottom:740.429227pt;}
.y32ac_c00001{bottom:740.480000pt;}
.y596_c00001{bottom:740.507067pt;}
.y1fd8_c00001{bottom:740.507200pt;}
.y38c9_c00001{bottom:740.587067pt;}
.y2a2a_c00001{bottom:740.667067pt;}
.ycb8_c00001{bottom:740.747067pt;}
.y1c8c_c00001{bottom:740.800000pt;}
.y2b2a_c00001{bottom:740.907123pt;}
.y155d_c00001{bottom:740.908267pt;}
.y1eed_c00001{bottom:740.960000pt;}
.y23c7_c00001{bottom:741.227067pt;}
.y140a_c00001{bottom:741.387067pt;}
.y2e56_c00001{bottom:741.440000pt;}
.y340a_c00001{bottom:741.467067pt;}
.y3946_c00001{bottom:741.547067pt;}
.y6ed_c00001{bottom:741.627067pt;}
.yf51_c00001{bottom:741.787067pt;}
.yd80_c00001{bottom:741.787987pt;}
.y2154_c00001{bottom:742.027067pt;}
.y22c4_c00001{bottom:742.027131pt;}
.y8b5_c00001{bottom:742.107067pt;}
.y3801_c00001{bottom:742.187067pt;}
.y5c1_c00001{bottom:742.267067pt;}
.y34a2_c00001{bottom:742.347067pt;}
.y1219_c00001{bottom:742.347696pt;}
.y114d_c00001{bottom:742.351627pt;}
.y315_c00001{bottom:742.427067pt;}
.y250b_c00001{bottom:742.504843pt;}
.y23c4_c00001{bottom:742.507067pt;}
.y17c_c00001{bottom:742.587067pt;}
.yb4f_c00001{bottom:742.587448pt;}
.y1d7_c00001{bottom:742.667067pt;}
.y217c_c00001{bottom:742.827200pt;}
.y1a12_c00001{bottom:742.880000pt;}
.y17b1_c00001{bottom:742.907067pt;}
.y3222_c00001{bottom:742.911739pt;}
.y28c7_c00001{bottom:742.987200pt;}
.yd12_c00001{bottom:743.067067pt;}
.y115d_c00001{bottom:743.078411pt;}
.y18f8_c00001{bottom:743.144203pt;}
.y385d_c00001{bottom:743.307067pt;}
.y26f4_c00001{bottom:743.387067pt;}
.yaf_c00001{bottom:743.467067pt;}
.yc81_c00001{bottom:743.470331pt;}
.y3230_c00001{bottom:743.520000pt;}
.y2a11_c00001{bottom:743.547067pt;}
.ya1d_c00001{bottom:743.627067pt;}
.y12e6_c00001{bottom:743.706811pt;}
.y25a7_c00001{bottom:743.787067pt;}
.y17f6_c00001{bottom:743.867067pt;}
.y15bb_c00001{bottom:743.947067pt;}
.yb2a_c00001{bottom:743.947875pt;}
.y3a10_c00001{bottom:743.948547pt;}
.yb3d_c00001{bottom:744.027067pt;}
.y743_c00001{bottom:744.187067pt;}
.y4bb_c00001{bottom:744.187200pt;}
.y161d_c00001{bottom:744.267067pt;}
.y2ef3_c00001{bottom:744.320000pt;}
.y226c_c00001{bottom:744.345891pt;}
.y202f_c00001{bottom:744.346283pt;}
.y2580_c00001{bottom:744.346347pt;}
.y206c_c00001{bottom:744.347131pt;}
.y3b0_c00001{bottom:744.507067pt;}
.y3509_c00001{bottom:744.587067pt;}
.y61_c00001{bottom:744.667067pt;}
.yb32_c00001{bottom:744.746803pt;}
.y1ccd_c00001{bottom:744.800000pt;}
.y23ee_c00001{bottom:744.827200pt;}
.y2783_c00001{bottom:744.907067pt;}
.y1c8d_c00001{bottom:744.960000pt;}
.y2719_c00001{bottom:744.984491pt;}
.y270f_c00001{bottom:744.985955pt;}
.y2a41_c00001{bottom:744.986219pt;}
.y21b3_c00001{bottom:744.986347pt;}
.yca9_c00001{bottom:744.988923pt;}
.y56e_c00001{bottom:745.147200pt;}
.y306b_c00001{bottom:745.280000pt;}
.y244c_c00001{bottom:745.307067pt;}
.y4ca_c00001{bottom:745.387067pt;}
.y1905_c00001{bottom:745.440000pt;}
.y35a6_c00001{bottom:745.467067pt;}
.y3877_c00001{bottom:745.545107pt;}
.y2bca_c00001{bottom:745.547067pt;}
.y2fec_c00001{bottom:745.600000pt;}
.y26ab_c00001{bottom:745.627067pt;}
.y220b_c00001{bottom:745.707067pt;}
.y1f9b_c00001{bottom:745.713835pt;}
.y2e57_c00001{bottom:745.760000pt;}
.ye94_c00001{bottom:745.861947pt;}
.y39cc_c00001{bottom:745.867067pt;}
.y92a_c00001{bottom:745.947067pt;}
.y31a8_c00001{bottom:746.080000pt;}
.y144c_c00001{bottom:746.107067pt;}
.y11c9_c00001{bottom:746.185371pt;}
.y2aa2_c00001{bottom:746.267067pt;}
.y1a7_c00001{bottom:746.347067pt;}
.y19bd_c00001{bottom:746.400000pt;}
.y2c21_c00001{bottom:746.427067pt;}
.y1282_c00001{bottom:746.507067pt;}
.yd3c_c00001{bottom:746.507144pt;}
.y179d_c00001{bottom:746.587067pt;}
.ydf3_c00001{bottom:746.587747pt;}
.y1245_c00001{bottom:746.666379pt;}
.y86_c00001{bottom:746.667067pt;}
.y283b_c00001{bottom:746.827200pt;}
.y11d5_c00001{bottom:746.901467pt;}
.y4a0_c00001{bottom:746.987200pt;}
.y1a5b_c00001{bottom:747.040000pt;}
.y2981_c00001{bottom:747.066283pt;}
.y265_c00001{bottom:747.067067pt;}
.y137d_c00001{bottom:747.227067pt;}
.y150b_c00001{bottom:747.307067pt;}
.y2dc6_c00001{bottom:747.360000pt;}
.y150c_c00001{bottom:747.387067pt;}
.y79c_c00001{bottom:747.467067pt;}
.y668_c00001{bottom:747.467667pt;}
.ya38_c00001{bottom:747.547067pt;}
.y134f_c00001{bottom:747.709843pt;}
.y124f_c00001{bottom:747.785467pt;}
.ya55_c00001{bottom:747.787067pt;}
.y2fa0_c00001{bottom:747.840000pt;}
.y248b_c00001{bottom:747.867067pt;}
.y34b5_c00001{bottom:747.947067pt;}
.y2083_c00001{bottom:747.947200pt;}
.yf92_c00001{bottom:747.947243pt;}
.y2df5_c00001{bottom:748.003520pt;}
.y1d93_c00001{bottom:748.160000pt;}
.y37b_c00001{bottom:748.187067pt;}
.y11f7_c00001{bottom:748.267067pt;}
.y29aa_c00001{bottom:748.347067pt;}
.ye8c_c00001{bottom:748.424395pt;}
.ydd_c00001{bottom:748.427067pt;}
.y30f0_c00001{bottom:748.480000pt;}
.y1c4f_c00001{bottom:748.482720pt;}
.y135e_c00001{bottom:748.508099pt;}
.y864_c00001{bottom:748.587067pt;}
.y1365_c00001{bottom:748.587200pt;}
.y1bd6_c00001{bottom:748.640000pt;}
.y1dea_c00001{bottom:748.960000pt;}
.y29e6_c00001{bottom:748.987131pt;}
.yeb3_c00001{bottom:749.147200pt;}
.y15f6_c00001{bottom:749.147827pt;}
.y2a66_c00001{bottom:749.307067pt;}
.y30c2_c00001{bottom:749.440000pt;}
.y22aa_c00001{bottom:749.547067pt;}
.y2954_c00001{bottom:749.625955pt;}
.y2631_c00001{bottom:749.626283pt;}
.y1302_c00001{bottom:749.627067pt;}
.y2752_c00001{bottom:749.627264pt;}
.y153_c00001{bottom:749.707067pt;}
.y2b29_c00001{bottom:749.707115pt;}
.y36f6_c00001{bottom:749.867067pt;}
.y192d_c00001{bottom:749.920000pt;}
.y35c8_c00001{bottom:750.027067pt;}
.y1a13_c00001{bottom:750.080000pt;}
.y14_c00001{bottom:750.187067pt;}
.y2d5_c00001{bottom:750.267067pt;}
.y1732_c00001{bottom:750.347067pt;}
.y3575_c00001{bottom:750.427067pt;}
.y1d0e_c00001{bottom:750.560000pt;}
.y2f67_c00001{bottom:750.720000pt;}
.y1114_c00001{bottom:750.747067pt;}
.y290_c00001{bottom:750.827200pt;}
.y1d10_c00001{bottom:750.880000pt;}
.y209c_c00001{bottom:750.907067pt;}
.y899_c00001{bottom:750.987880pt;}
.y37d9_c00001{bottom:751.067067pt;}
.y3479_c00001{bottom:751.147200pt;}
.y3044_c00001{bottom:751.200000pt;}
.yce1_c00001{bottom:751.226187pt;}
.y2196_c00001{bottom:751.227067pt;}
.y22f9_c00001{bottom:751.307067pt;}
.y1044_c00001{bottom:751.387067pt;}
.y11a7_c00001{bottom:751.547067pt;}
.y9f3_c00001{bottom:751.627067pt;}
.yfee_c00001{bottom:751.707067pt;}
.yab4_c00001{bottom:751.787067pt;}
.y2ee7_c00001{bottom:751.840000pt;}
.y1fef_c00001{bottom:751.947067pt;}
.y2104_c00001{bottom:752.027067pt;}
.y18d4_c00001{bottom:752.107067pt;}
.y1b8f_c00001{bottom:752.160000pt;}
.y1f5a_c00001{bottom:752.187067pt;}
.y1689_c00001{bottom:752.267067pt;}
.y1aa6_c00001{bottom:752.322720pt;}
.y35ff_c00001{bottom:752.427067pt;}
.y28fa_c00001{bottom:752.507067pt;}
.y27ff_c00001{bottom:752.587067pt;}
.ydab_c00001{bottom:752.667067pt;}
.y12c4_c00001{bottom:752.750283pt;}
.y2d4f_c00001{bottom:752.800000pt;}
.yf18_c00001{bottom:752.827067pt;}
.y44d_c00001{bottom:752.827200pt;}
.y83a_c00001{bottom:752.907067pt;}
.ya9f_c00001{bottom:753.147200pt;}
.yae3_c00001{bottom:753.227067pt;}
.y1f38_c00001{bottom:753.389723pt;}
.y1671_c00001{bottom:753.467067pt;}
.y30c3_c00001{bottom:753.600000pt;}
.y35ca_c00001{bottom:753.627067pt;}
.y2b78_c00001{bottom:753.707067pt;}
.yef4_c00001{bottom:753.787619pt;}
.y2378_c00001{bottom:753.866283pt;}
.y407_c00001{bottom:753.867067pt;}
.y12d3_c00001{bottom:753.868267pt;}
.y27b5_c00001{bottom:753.947067pt;}
.yf00_c00001{bottom:753.947619pt;}
.y301b_c00001{bottom:754.080000pt;}
.y24a5_c00001{bottom:754.107131pt;}
.y3708_c00001{bottom:754.187067pt;}
.y149f_c00001{bottom:754.267067pt;}
.y500_c00001{bottom:754.507067pt;}
.y1984_c00001{bottom:754.560000pt;}
.y14c7_c00001{bottom:754.667667pt;}
.y33c2_c00001{bottom:754.827200pt;}
.y2f68_c00001{bottom:754.880000pt;}
.y176f_c00001{bottom:754.907067pt;}
.y212e_c00001{bottom:754.987067pt;}
.y1d6_c00001{bottom:754.987200pt;}
.y1e23_c00001{bottom:755.040000pt;}
.y6b4_c00001{bottom:755.067067pt;}
.y2446_c00001{bottom:755.147200pt;}
.y1481_c00001{bottom:755.227067pt;}
.y2692_c00001{bottom:755.307067pt;}
.y1b40_c00001{bottom:755.360000pt;}
.y1f75_c00001{bottom:755.389979pt;}
.y1e58_c00001{bottom:755.520000pt;}
.y16d5_c00001{bottom:755.547067pt;}
.yf91_c00001{bottom:755.627067pt;}
.y26bf_c00001{bottom:755.627651pt;}
.yba8_c00001{bottom:755.706795pt;}
.y106a_c00001{bottom:755.707067pt;}
.ydca_c00001{bottom:755.787067pt;}
.y14e8_c00001{bottom:755.788067pt;}
.y1bd7_c00001{bottom:755.840000pt;}
.y96a_c00001{bottom:755.867067pt;}
.y12e5_c00001{bottom:755.947067pt;}
.y1c13_c00001{bottom:756.000000pt;}
.y2227_c00001{bottom:756.026739pt;}
.y33ac_c00001{bottom:756.027067pt;}
.y187a_c00001{bottom:756.107067pt;}
.y1f14_c00001{bottom:756.108115pt;}
.y34c8_c00001{bottom:756.187067pt;}
.y529_c00001{bottom:756.267067pt;}
.y1eec_c00001{bottom:756.320000pt;}
.y28e9_c00001{bottom:756.347067pt;}
.y47c_c00001{bottom:756.427067pt;}
.y649_c00001{bottom:756.427200pt;}
.ybb0_c00001{bottom:756.428235pt;}
.y2ef2_c00001{bottom:756.480000pt;}
.y13ed_c00001{bottom:756.508147pt;}
.y268e_c00001{bottom:756.587067pt;}
.y2d28_c00001{bottom:756.663371pt;}
.y2a29_c00001{bottom:756.667200pt;}
.y3780_c00001{bottom:756.907067pt;}
.y23b_c00001{bottom:756.987200pt;}
.y1588_c00001{bottom:757.147667pt;}
.y231b_c00001{bottom:757.305435pt;}
.ybe8_c00001{bottom:757.307067pt;}
.ye28_c00001{bottom:757.309147pt;}
.y2af1_c00001{bottom:757.387067pt;}
.y2fed_c00001{bottom:757.440000pt;}
.y3675_c00001{bottom:757.466667pt;}
.y3d9_c00001{bottom:757.467067pt;}
.ycb7_c00001{bottom:757.627067pt;}
.y155c_c00001{bottom:757.707667pt;}
.y1d58_c00001{bottom:757.760000pt;}
.y2c74_c00001{bottom:757.784139pt;}
.y3876_c00001{bottom:757.785363pt;}
.yd63_c00001{bottom:757.787067pt;}
.y3978_c00001{bottom:757.867067pt;}
.y164f_c00001{bottom:758.027067pt;}
.y3a0f_c00001{bottom:758.028459pt;}
.y317a_c00001{bottom:758.080000pt;}
.y28ac_c00001{bottom:758.107067pt;}
.yc0e_c00001{bottom:758.187067pt;}
.y56d_c00001{bottom:758.187747pt;}
.y1e5a_c00001{bottom:758.240000pt;}
.y2558_c00001{bottom:758.347067pt;}
.y1af8_c00001{bottom:758.406240pt;}
.y2c3f_c00001{bottom:758.427067pt;}
.y314_c00001{bottom:758.507067pt;}
.y2b28_c00001{bottom:758.507107pt;}
.y2153_c00001{bottom:758.667200pt;}
.yd7f_c00001{bottom:758.667907pt;}
.y2d01_c00001{bottom:758.746219pt;}
.y25c6_c00001{bottom:758.746675pt;}
.y1395_c00001{bottom:758.748219pt;}
.yd3b_c00001{bottom:758.827200pt;}
.y264_c00001{bottom:758.907067pt;}
.y2c63_c00001{bottom:759.067067pt;}
.y2a45_c00001{bottom:759.145955pt;}
.y20e3_c00001{bottom:759.147200pt;}
.y49f_c00001{bottom:759.227067pt;}
.y114e_c00001{bottom:759.231987pt;}
.y27a1_c00001{bottom:759.307067pt;}
.y24d9_c00001{bottom:759.465235pt;}
.y16f3_c00001{bottom:759.467067pt;}
.y3674_c00001{bottom:759.547067pt;}
.y3909_c00001{bottom:759.707067pt;}
.y286b_c00001{bottom:759.783707pt;}
.y26d1_c00001{bottom:759.785171pt;}
.y3676_c00001{bottom:759.787067pt;}
.y102_c00001{bottom:759.867067pt;}
.y139f_c00001{bottom:759.948667pt;}
.y5eb_c00001{bottom:760.027067pt;}
.y115e_c00001{bottom:760.038931pt;}
.y2df4_c00001{bottom:760.160000pt;}
.y137c_c00001{bottom:760.187907pt;}
.y20d9_c00001{bottom:760.427067pt;}
.y958_c00001{bottom:760.507067pt;}
.y3800_c00001{bottom:760.587067pt;}
.y2fa3_c00001{bottom:760.640000pt;}
.y2917_c00001{bottom:760.747067pt;}
.y1218_c00001{bottom:760.747448pt;}
.y1c4e_c00001{bottom:760.800000pt;}
.y2670_c00001{bottom:760.827067pt;}
.y37e9_c00001{bottom:760.827200pt;}
.y2bde_c00001{bottom:760.907067pt;}
.y695_c00001{bottom:760.987067pt;}
.y340_c00001{bottom:760.987200pt;}
.y1a6_c00001{bottom:761.067067pt;}
.y244b_c00001{bottom:761.147200pt;}
.y1750_c00001{bottom:761.227067pt;}
.y23c3_c00001{bottom:761.306675pt;}
.y22cc_c00001{bottom:761.387067pt;}
.y34e0_c00001{bottom:761.547067pt;}
.y17b_c00001{bottom:761.707067pt;}
.y1fd7_c00001{bottom:761.707200pt;}
.y250a_c00001{bottom:761.864779pt;}
.y3560_c00001{bottom:761.867067pt;}
.y5c0_c00001{bottom:761.947067pt;}
.y3af_c00001{bottom:762.027067pt;}
.y35e6_c00001{bottom:762.107067pt;}
.yf90_c00001{bottom:762.187067pt;}
.y1d5_c00001{bottom:762.267067pt;}
.y12b_c00001{bottom:762.347067pt;}
.y1e90_c00001{bottom:762.400000pt;}
.yb3c_c00001{bottom:762.427067pt;}
.y18f7_c00001{bottom:762.504139pt;}
.y3991_c00001{bottom:762.507067pt;}
.y2d9e_c00001{bottom:762.562560pt;}
.y4c9_c00001{bottom:762.587067pt;}
.y4ba_c00001{bottom:762.587200pt;}
.y16a2_c00001{bottom:762.667067pt;}
.y22c3_c00001{bottom:762.667200pt;}
.y1cc9_c00001{bottom:762.720000pt;}
.y929_c00001{bottom:762.827200pt;}
.y1c8a_c00001{bottom:762.880000pt;}
.y2654_c00001{bottom:762.987067pt;}
.y15ba_c00001{bottom:762.987200pt;}
.y152_c00001{bottom:763.067067pt;}
.y353f_c00001{bottom:763.227067pt;}
.y2a83_c00001{bottom:763.307067pt;}
.y26f3_c00001{bottom:763.387067pt;}
.yce0_c00001{bottom:763.466443pt;}
.ydf2_c00001{bottom:763.467667pt;}
.y1d91_c00001{bottom:763.520000pt;}
.y2a10_c00001{bottom:763.627067pt;}
.y1f9a_c00001{bottom:763.633195pt;}
.y2e54_c00001{bottom:763.680000pt;}
.y226b_c00001{bottom:763.705827pt;}
.y202e_c00001{bottom:763.706219pt;}
.y257f_c00001{bottom:763.706283pt;}
.y206d_c00001{bottom:763.707067pt;}
.y144b_c00001{bottom:763.787067pt;}
.y25a6_c00001{bottom:763.867067pt;}
.y1ebd_c00001{bottom:764.000000pt;}
.y375b_c00001{bottom:764.107067pt;}
.y322f_c00001{bottom:764.160000pt;}
.y23ed_c00001{bottom:764.186611pt;}
.y667_c00001{bottom:764.267067pt;}
.y2f24_c00001{bottom:764.320000pt;}
.y2718_c00001{bottom:764.424947pt;}
.y270e_c00001{bottom:764.426411pt;}
.y2a40_c00001{bottom:764.426675pt;}
.y21b2_c00001{bottom:764.426803pt;}
.y3523_c00001{bottom:764.505675pt;}
.y3e_c00001{bottom:764.507067pt;}
.y3508_c00001{bottom:764.587067pt;}
.y1aa5_c00001{bottom:764.640000pt;}
.ya37_c00001{bottom:764.747067pt;}
.y32fc_c00001{bottom:764.800000pt;}
.ya0d_c00001{bottom:764.907067pt;}
.y1d92_c00001{bottom:764.960000pt;}
.y17f5_c00001{bottom:764.987067pt;}
.y206b_c00001{bottom:764.987200pt;}
.y2fd_c00001{bottom:765.067067pt;}
.ye9b_c00001{bottom:765.067200pt;}
.y11f6_c00001{bottom:765.147200pt;}
.y181c_c00001{bottom:765.307067pt;}
.y79b_c00001{bottom:765.386707pt;}
.y37a_c00001{bottom:765.387067pt;}
.y19c1_c00001{bottom:765.600000pt;}
.y2c20_c00001{bottom:765.707067pt;}
.y220a_c00001{bottom:765.787067pt;}
.y44c_c00001{bottom:765.867800pt;}
.y39cb_c00001{bottom:765.947067pt;}
.y1fa4_c00001{bottom:766.027067pt;}
.y15f5_c00001{bottom:766.027747pt;}
.y9d8_c00001{bottom:766.107067pt;}
.y38b0_c00001{bottom:766.187067pt;}
.ya54_c00001{bottom:766.268227pt;}
.y2a9e_c00001{bottom:766.346808pt;}
.y204f_c00001{bottom:766.347067pt;}
.y2980_c00001{bottom:766.506739pt;}
.y2416_c00001{bottom:766.507067pt;}
.y13f9_c00001{bottom:766.587067pt;}
.y23a1_c00001{bottom:766.747067pt;}
.ydc_c00001{bottom:766.827200pt;}
.y39e6_c00001{bottom:766.906667pt;}
.y283a_c00001{bottom:766.907067pt;}
.ya9e_c00001{bottom:766.987200pt;}
.y1c8b_c00001{bottom:767.040000pt;}
.y1301_c00001{bottom:767.066811pt;}
.y2cd6_c00001{bottom:767.145171pt;}
.y150a_c00001{bottom:767.307067pt;}
.y2b27_c00001{bottom:767.307099pt;}
.y13_c00001{bottom:767.467067pt;}
.y3339_c00001{bottom:767.520000pt;}
.y863_c00001{bottom:767.627067pt;}
.y2d4_c00001{bottom:767.707067pt;}
.y179c_c00001{bottom:767.787067pt;}
.y2e55_c00001{bottom:767.840000pt;}
.y898_c00001{bottom:767.867800pt;}
.y1a10_c00001{bottom:768.000000pt;}
.y34b4_c00001{bottom:768.027067pt;}
.y2c97_c00001{bottom:768.107067pt;}
.y1983_c00001{bottom:768.160000pt;}
.y1043_c00001{bottom:768.187067pt;}
.yf8f_c00001{bottom:768.267067pt;}
.y192c_c00001{bottom:768.320000pt;}
.y29f5_c00001{bottom:768.347067pt;}
.yeb2_c00001{bottom:768.427067pt;}
.y29d0_c00001{bottom:768.507067pt;}
.y11ca_c00001{bottom:768.584747pt;}
.y118d_c00001{bottom:768.587067pt;}
.y1350_c00001{bottom:768.590187pt;}
.y36f5_c00001{bottom:768.667200pt;}
.y1731_c00001{bottom:768.747067pt;}
.y241d_c00001{bottom:768.907067pt;}
.y31a6_c00001{bottom:768.960000pt;}
.y2953_c00001{bottom:768.985891pt;}
.y2629_c00001{bottom:768.986219pt;}
.y27ca_c00001{bottom:768.986675pt;}
.y2755_c00001{bottom:768.987200pt;}
.y200c_c00001{bottom:769.147200pt;}
.yef3_c00001{bottom:769.147611pt;}
.y28f_c00001{bottom:769.227067pt;}
.y11d6_c00001{bottom:769.302179pt;}
.y22e5_c00001{bottom:769.307067pt;}
.yeff_c00001{bottom:769.307611pt;}
.y135f_c00001{bottom:769.308283pt;}
.ydaa_c00001{bottom:769.547067pt;}
.y29e5_c00001{bottom:769.627067pt;}
.y8b4_c00001{bottom:769.707067pt;}
.y7f2_c00001{bottom:769.787067pt;}
.ye4c_c00001{bottom:769.867067pt;}
.y1d57_c00001{bottom:769.922720pt;}
.y9bd_c00001{bottom:769.947067pt;}
.y3875_c00001{bottom:770.025619pt;}
.y39b3_c00001{bottom:770.027067pt;}
.y2fc9_c00001{bottom:770.080000pt;}
.y12e4_c00001{bottom:770.107067pt;}
.y9a9_c00001{bottom:770.187067pt;}
.y1b8b_c00001{bottom:770.240000pt;}
.y273e_c00001{bottom:770.267067pt;}
.y1246_c00001{bottom:770.346979pt;}
.y12c5_c00001{bottom:770.350747pt;}
.y1a5_c00001{bottom:770.427067pt;}
.y2ef1_c00001{bottom:770.560000pt;}
.y17b0_c00001{bottom:770.587067pt;}
.y1af7_c00001{bottom:770.723520pt;}
.y1fc1_c00001{bottom:770.747067pt;}
.y28f9_c00001{bottom:770.907067pt;}
.y2103_c00001{bottom:770.987200pt;}
.y3465_c00001{bottom:771.067067pt;}
.y35c6_c00001{bottom:771.147200pt;}
.y1904_c00001{bottom:771.200000pt;}
.yae_c00001{bottom:771.227067pt;}
.y2195_c00001{bottom:771.307067pt;}
.ye83_c00001{bottom:771.307403pt;}
.y1e59_c00001{bottom:771.360000pt;}
.y1250_c00001{bottom:771.465067pt;}
.y14c6_c00001{bottom:771.467067pt;}
.y12d4_c00001{bottom:771.468667pt;}
.y1cca_c00001{bottom:771.520000pt;}
.y33c1_c00001{bottom:771.547067pt;}
.y28c6_c00001{bottom:771.787067pt;}
.y161c_c00001{bottom:771.867067pt;}
.y1a5a_c00001{bottom:772.000000pt;}
.y2a28_c00001{bottom:772.027067pt;}
.y3a0e_c00001{bottom:772.108371pt;}
.y2dc5_c00001{bottom:772.160000pt;}
.y60_c00001{bottom:772.267067pt;}
.y4c8_c00001{bottom:772.267200pt;}
.y37b4_c00001{bottom:772.347067pt;}
.y31ce_c00001{bottom:772.480000pt;}
.y392a_c00001{bottom:772.507067pt;}
.y27fe_c00001{bottom:772.667200pt;}
.y14e7_c00001{bottom:772.667987pt;}
.yba9_c00001{bottom:772.746139pt;}
.y2f65_c00001{bottom:772.800000pt;}
.ydc9_c00001{bottom:772.827067pt;}
.y6b3_c00001{bottom:772.827200pt;}
.y4ff_c00001{bottom:772.907067pt;}
.y308c_c00001{bottom:772.960000pt;}
.y1654_c00001{bottom:772.987067pt;}
.y2af0_c00001{bottom:772.987131pt;}
.yb2b_c00001{bottom:773.067331pt;}
.y1e21_c00001{bottom:773.120000pt;}
.y2377_c00001{bottom:773.226219pt;}
.y18d3_c00001{bottom:773.307067pt;}
.y176e_c00001{bottom:773.387067pt;}
.y13ec_c00001{bottom:773.388067pt;}
.y306a_c00001{bottom:773.440000pt;}
.y2e27_c00001{bottom:773.446240pt;}
.y24a7_c00001{bottom:773.467067pt;}
.ybb1_c00001{bottom:773.468915pt;}
.y1879_c00001{bottom:773.546811pt;}
.y331f_c00001{bottom:773.600000pt;}
.y1bd4_c00001{bottom:773.760000pt;}
.yb9d_c00001{bottom:773.787067pt;}
.yb33_c00001{bottom:773.787435pt;}
.y268d_c00001{bottom:773.947067pt;}
.y1587_c00001{bottom:773.947667pt;}
.y21e6_c00001{bottom:774.027067pt;}
.yac4_c00001{bottom:774.107067pt;}
.ybe7_c00001{bottom:774.187067pt;}
.ye27_c00001{bottom:774.189067pt;}
.y85_c00001{bottom:774.267067pt;}
.y149e_c00001{bottom:774.427328pt;}
.ycb6_c00001{bottom:774.507067pt;}
.y528_c00001{bottom:774.667067pt;}
.y47b_c00001{bottom:774.747067pt;}
.y648_c00001{bottom:774.827200pt;}
.y2d4e_c00001{bottom:774.880000pt;}
.y195a_c00001{bottom:774.907067pt;}
.y1f37_c00001{bottom:774.909603pt;}
.y3672_c00001{bottom:775.066667pt;}
.y56c_c00001{bottom:775.067667pt;}
.y377f_c00001{bottom:775.147200pt;}
.yf50_c00001{bottom:775.307067pt;}
.y1a11_c00001{bottom:775.360000pt;}
.ye97_c00001{bottom:775.386651pt;}
.y2226_c00001{bottom:775.386675pt;}
.y23a_c00001{bottom:775.387067pt;}
.yd7e_c00001{bottom:775.467307pt;}
.y30c1_c00001{bottom:775.680000pt;}
.ycdf_c00001{bottom:775.786499pt;}
.y1c4d_c00001{bottom:775.840000pt;}
.y30ef_c00001{bottom:776.000000pt;}
.y17cc_c00001{bottom:776.027067pt;}
.yd3a_c00001{bottom:776.107067pt;}
.y2b26_c00001{bottom:776.107091pt;}
.y212d_c00001{bottom:776.187067pt;}
.y114f_c00001{bottom:776.192507pt;}
.y1480_c00001{bottom:776.267067pt;}
.y2935_c00001{bottom:776.427067pt;}
.y3d8_c00001{bottom:776.507067pt;}
.y224d_c00001{bottom:776.587067pt;}
.y16d4_c00001{bottom:776.667067pt;}
.yae2_c00001{bottom:776.667200pt;}
.y231a_c00001{bottom:776.745891pt;}
.yd11_c00001{bottom:776.747067pt;}
.y3221_c00001{bottom:776.831155pt;}
.y313_c00001{bottom:776.907067pt;}
.y115f_c00001{bottom:776.919291pt;}
.y2f66_c00001{bottom:776.960000pt;}
.y1b3f_c00001{bottom:776.968960pt;}
.y2469_c00001{bottom:776.987200pt;}
.y2445_c00001{bottom:777.067067pt;}
.y137b_c00001{bottom:777.067827pt;}
.y3671_c00001{bottom:777.147200pt;}
.y20ba_c00001{bottom:777.307067pt;}
.y3673_c00001{bottom:777.387067pt;}
.y2eb4_c00001{bottom:777.440000pt;}
.y38e8_c00001{bottom:777.467067pt;}
.y2c3e_c00001{bottom:777.627067pt;}
.y2152_c00001{bottom:777.707067pt;}
.y1e8f_c00001{bottom:777.760000pt;}
.y3908_c00001{bottom:777.787067pt;}
.y2c62_c00001{bottom:777.866739pt;}
.y3135_c00001{bottom:777.920000pt;}
.y358f_c00001{bottom:777.947067pt;}
.y2d00_c00001{bottom:778.186675pt;}
.y28ab_c00001{bottom:778.187067pt;}
.y25c5_c00001{bottom:778.187131pt;}
.y12a_c00001{bottom:778.267067pt;}
.y2557_c00001{bottom:778.347067pt;}
.y101_c00001{bottom:778.427067pt;}
.y2a44_c00001{bottom:778.505891pt;}
.y2f99_c00001{bottom:778.560000pt;}
.y24d8_c00001{bottom:778.825171pt;}
.y1895_c00001{bottom:778.827067pt;}
.y25f2_c00001{bottom:778.827200pt;}
.y1d0b_c00001{bottom:778.880000pt;}
.y1d0c_c00001{bottom:779.040000pt;}
.y9f2_c00001{bottom:779.067067pt;}
.y20d8_c00001{bottom:779.143643pt;}
.y26d0_c00001{bottom:779.145107pt;}
.y1217_c00001{bottom:779.147200pt;}
.y1300_c00001{bottom:779.307067pt;}
.y1ebc_c00001{bottom:779.360000pt;}
.y33f_c00001{bottom:779.387067pt;}
.y1d4_c00001{bottom:779.467067pt;}
.y2d9d_c00001{bottom:779.520000pt;}
.y3ae_c00001{bottom:779.547067pt;}
.yb3b_c00001{bottom:779.627067pt;}
.y1688_c00001{bottom:779.867067pt;}
.y3452_c00001{bottom:779.947067pt;}
.y38c8_c00001{bottom:780.027067pt;}
.ydf1_c00001{bottom:780.267067pt;}
.y928_c00001{bottom:780.347067pt;}
.y13f8_c00001{bottom:780.426667pt;}
.yf17_c00001{bottom:780.427067pt;}
.y3574_c00001{bottom:780.507067pt;}
.y3654_c00001{bottom:780.587067pt;}
.y23c1_c00001{bottom:780.666611pt;}
.yc0d_c00001{bottom:780.667067pt;}
.y260e_c00001{bottom:780.667200pt;}
.y1c12_c00001{bottom:780.811680pt;}
.y37e8_c00001{bottom:780.827200pt;}
.y1bd5_c00001{bottom:780.960000pt;}
.y2d3_c00001{bottom:780.987067pt;}
.y4b9_c00001{bottom:780.987200pt;}
.y379_c00001{bottom:781.067067pt;}
.y3846_c00001{bottom:781.147200pt;}
.y13e5_c00001{bottom:781.227067pt;}
.y2f9c_c00001{bottom:781.280000pt;}
.y2509_c00001{bottom:781.305235pt;}
.y406_c00001{bottom:781.307067pt;}
.y22c2_c00001{bottom:781.466739pt;}
.y151_c00001{bottom:781.467067pt;}
.ya53_c00001{bottom:781.548059pt;}
.y1f99_c00001{bottom:781.552555pt;}
.ya36_c00001{bottom:781.627067pt;}
.y18f6_c00001{bottom:781.944595pt;}
.y2916_c00001{bottom:781.947067pt;}
.y37ff_c00001{bottom:782.026739pt;}
.y666_c00001{bottom:782.027067pt;}
.y3042_c00001{bottom:782.080000pt;}
.y34c7_c00001{bottom:782.187067pt;}
.y1d56_c00001{bottom:782.240000pt;}
.y15f7_c00001{bottom:782.267067pt;}
.y3874_c00001{bottom:782.345675pt;}
.y2069_c00001{bottom:782.347067pt;}
.y79a_c00001{bottom:782.347147pt;}
.y174f_c00001{bottom:782.427067pt;}
.y34a1_c00001{bottom:782.507067pt;}
.y36db_c00001{bottom:782.587067pt;}
.y44b_c00001{bottom:782.667200pt;}
.ye88_c00001{bottom:782.826395pt;}
.y1fd6_c00001{bottom:782.827200pt;}
.y1af6_c00001{bottom:782.880000pt;}
.y15b9_c00001{bottom:782.907067pt;}
.y15f4_c00001{bottom:782.907667pt;}
.y226a_c00001{bottom:783.146283pt;}
.y202d_c00001{bottom:783.146675pt;}
.y257e_c00001{bottom:783.146739pt;}
.y3136_c00001{bottom:783.200000pt;}
.y353e_c00001{bottom:783.307067pt;}
.y1e22_c00001{bottom:783.360000pt;}
.y3643_c00001{bottom:783.387067pt;}
.y969_c00001{bottom:783.467067pt;}
.y23ec_c00001{bottom:783.627067pt;}
.y2a0f_c00001{bottom:783.707067pt;}
.y2717_c00001{bottom:783.784883pt;}
.y209b_c00001{bottom:783.785891pt;}
.y270d_c00001{bottom:783.786347pt;}
.y2a3f_c00001{bottom:783.786611pt;}
.y21b1_c00001{bottom:783.786739pt;}
.y25a5_c00001{bottom:783.947067pt;}
.y2f23_c00001{bottom:784.160000pt;}
.y2653_c00001{bottom:784.187067pt;}
.y1396_c00001{bottom:784.268491pt;}
.y1e5b_c00001{bottom:784.320000pt;}
.y2a82_c00001{bottom:784.427067pt;}
.y1b8c_c00001{bottom:784.480000pt;}
.y1113_c00001{bottom:784.507067pt;}
.yef2_c00001{bottom:784.507603pt;}
.y3178_c00001{bottom:784.640000pt;}
.y1082_c00001{bottom:784.667067pt;}
.y897_c00001{bottom:784.667200pt;}
.yefe_c00001{bottom:784.667603pt;}
.y241c_c00001{bottom:784.747067pt;}
.y1509_c00001{bottom:784.987200pt;}
.y2b25_c00001{bottom:784.987427pt;}
.y1042_c00001{bottom:785.067067pt;}
.y1c88_c00001{bottom:785.120000pt;}
.y7f1_c00001{bottom:785.147200pt;}
.ydb_c00001{bottom:785.227067pt;}
.yea2_c00001{bottom:785.307067pt;}
.y126a_c00001{bottom:785.387067pt;}
.y13a0_c00001{bottom:785.388667pt;}
.y38af_c00001{bottom:785.467067pt;}
.y23a0_c00001{bottom:785.547067pt;}
.y1a59_c00001{bottom:785.600000pt;}
.y2e26_c00001{bottom:785.602720pt;}
.y2e83_c00001{bottom:785.605440pt;}
.y2dc4_c00001{bottom:785.760000pt;}
.y118c_c00001{bottom:785.787067pt;}
.y2a9d_c00001{bottom:785.787264pt;}
.y297f_c00001{bottom:785.866675pt;}
.y2209_c00001{bottom:785.867067pt;}
.y1f13_c00001{bottom:786.027067pt;}
.ya9d_c00001{bottom:786.107067pt;}
.y17f4_c00001{bottom:786.187067pt;}
.y3a0d_c00001{bottom:786.268083pt;}
.y2c1f_c00001{bottom:786.347067pt;}
.yda9_c00001{bottom:786.427067pt;}
.y181b_c00001{bottom:786.507067pt;}
.y1982_c00001{bottom:786.560000pt;}
.y2cd5_c00001{bottom:786.585627pt;}
.y862_c00001{bottom:786.667200pt;}
.y192b_c00001{bottom:786.720000pt;}
.y29cf_c00001{bottom:786.747067pt;}
.y1eeb_c00001{bottom:786.880000pt;}
.y2839_c00001{bottom:786.987200pt;}
.yf4f_c00001{bottom:786.987288pt;}
.yfed_c00001{bottom:787.067067pt;}
.y1730_c00001{bottom:787.147067pt;}
.y29a9_c00001{bottom:787.147200pt;}
.y2d27_c00001{bottom:787.304699pt;}
.y1a4_c00001{bottom:787.307067pt;}
.y28da_c00001{bottom:787.387067pt;}
.y12_c00001{bottom:787.467355pt;}
.y72a_c00001{bottom:787.627067pt;}
.y3179_c00001{bottom:787.840000pt;}
.y12c6_c00001{bottom:787.871051pt;}
.y957_c00001{bottom:787.947067pt;}
.ycde_c00001{bottom:788.026755pt;}
.y28e_c00001{bottom:788.107067pt;}
.y1d88_c00001{bottom:788.160000pt;}
.y379a_c00001{bottom:788.267067pt;}
.ya0c_c00001{bottom:788.347315pt;}
.y2952_c00001{bottom:788.426347pt;}
.y2628_c00001{bottom:788.426675pt;}
.y27c9_c00001{bottom:788.427131pt;}
.y3019_c00001{bottom:788.480000pt;}
.y233f_c00001{bottom:788.507067pt;}
.yeb1_c00001{bottom:788.586739pt;}
.y9d7_c00001{bottom:788.587067pt;}
.y2ee6_c00001{bottom:788.640000pt;}
.y1d3_c00001{bottom:788.827200pt;}
.y179b_c00001{bottom:788.907067pt;}
.y12d5_c00001{bottom:788.987067pt;}
.y14c5_c00001{bottom:789.067147pt;}
.y32c5_c00001{bottom:789.120000pt;}
.y1b3e_c00001{bottom:789.125440pt;}
.y12e3_c00001{bottom:789.147200pt;}
.y1c89_c00001{bottom:789.280000pt;}
.y2890_c00001{bottom:789.307067pt;}
.y1cc7_c00001{bottom:789.440000pt;}
.yf72_c00001{bottom:789.467067pt;}
.y1351_c00001{bottom:789.470531pt;}
.y268c_c00001{bottom:789.547195pt;}
.y14e6_c00001{bottom:789.547907pt;}
.y606_c00001{bottom:789.627067pt;}
.ybaa_c00001{bottom:789.706659pt;}
.y35e5_c00001{bottom:789.707067pt;}
.y36f4_c00001{bottom:789.787067pt;}
.y2e53_c00001{bottom:789.920000pt;}
.y3396_c00001{bottom:789.947067pt;}
.y28f8_c00001{bottom:790.027443pt;}
.y147f_c00001{bottom:790.107067pt;}
.yf4e_c00001{bottom:790.107240pt;}
.y1360_c00001{bottom:790.188627pt;}
.y2ef0_c00001{bottom:790.240000pt;}
.y16a1_c00001{bottom:790.267067pt;}
.y13eb_c00001{bottom:790.267987pt;}
.y3817_c00001{bottom:790.427067pt;}
.ybb2_c00001{bottom:790.429435pt;}
.y200_c00001{bottom:790.507067pt;}
.y200b_c00001{bottom:790.586739pt;}
.y595_c00001{bottom:790.667067pt;}
.y263_c00001{bottom:790.667200pt;}
.y1586_c00001{bottom:790.747067pt;}
.y2102_c00001{bottom:790.907355pt;}
.y11cb_c00001{bottom:790.985459pt;}
.ybe6_c00001{bottom:790.987200pt;}
.ye26_c00001{bottom:791.068987pt;}
.y27b4_c00001{bottom:791.147067pt;}
.y3119_c00001{bottom:791.200000pt;}
.y626_c00001{bottom:791.227067pt;}
.y3478_c00001{bottom:791.307067pt;}
.y3289_c00001{bottom:791.360000pt;}
.ycb5_c00001{bottom:791.387067pt;}
.y348c_c00001{bottom:791.547067pt;}
.ye96_c00001{bottom:791.621283pt;}
.y11d7_c00001{bottom:791.701555pt;}
.y176d_c00001{bottom:791.787067pt;}
.y32cc_c00001{bottom:791.840000pt;}
.y56b_c00001{bottom:791.867067pt;}
.y4fe_c00001{bottom:792.027067pt;}
.y3d_c00001{bottom:792.107067pt;}
.y155b_c00001{bottom:792.107827pt;}
.y2d6f_c00001{bottom:792.160000pt;}
.y3977_c00001{bottom:792.267067pt;}
.y1432_c00001{bottom:792.347067pt;}
.yd7d_c00001{bottom:792.347227pt;}
.y37b3_c00001{bottom:792.427067pt;}
.y32f8_c00001{bottom:792.480000pt;}
.y38e7_c00001{bottom:792.507067pt;}
.y366f_c00001{bottom:792.586667pt;}
.y38e6_c00001{bottom:792.587067pt;}
.y301a_c00001{bottom:792.640000pt;}
.y2376_c00001{bottom:792.666675pt;}
.y2fc_c00001{bottom:792.667067pt;}
.y362_c00001{bottom:792.667200pt;}
.y27fd_c00001{bottom:792.747067pt;}
.y31d1_c00001{bottom:792.960000pt;}
.y21e5_c00001{bottom:792.987200pt;}
.y527_c00001{bottom:793.067067pt;}
.y1e8e_c00001{bottom:793.120000pt;}
.y1c11_c00001{bottom:793.128960pt;}
.yf4d_c00001{bottom:793.147200pt;}
.y1150_c00001{bottom:793.153027pt;}
.y1903_c00001{bottom:793.280000pt;}
.yd39_c00001{bottom:793.307067pt;}
.y3d7_c00001{bottom:793.387067pt;}
.y1af3_c00001{bottom:793.440000pt;}
.y47a_c00001{bottom:793.547067pt;}
.y30bf_c00001{bottom:793.600000pt;}
.yd10_c00001{bottom:793.627067pt;}
.yb3a_c00001{bottom:793.707067pt;}
.yee7_c00001{bottom:793.707419pt;}
.y239_c00001{bottom:793.787067pt;}
.y149d_c00001{bottom:793.787264pt;}
.y2b24_c00001{bottom:793.787419pt;}
.y24a4_c00001{bottom:793.867067pt;}
.y137a_c00001{bottom:793.867227pt;}
.y1160_c00001{bottom:793.879811pt;}
.y204e_c00001{bottom:793.947067pt;}
.y1959_c00001{bottom:794.027067pt;}
.y1247_c00001{bottom:794.027579pt;}
.y13f7_c00001{bottom:794.187067pt;}
.ye8d_c00001{bottom:794.263891pt;}
.y26be_c00001{bottom:794.267067pt;}
.y1fc0_c00001{bottom:794.267315pt;}
.y2add_c00001{bottom:794.347067pt;}
.y18d2_c00001{bottom:794.427067pt;}
.y2468_c00001{bottom:794.507067pt;}
.y3873_c00001{bottom:794.585931pt;}
.y2b91_c00001{bottom:794.587067pt;}
.y366e_c00001{bottom:794.667200pt;}
.y1ebb_c00001{bottom:794.720000pt;}
.yad_c00001{bottom:794.747067pt;}
.y2225_c00001{bottom:794.827131pt;}
.y2eb3_c00001{bottom:794.880000pt;}
.y2fc8_c00001{bottom:794.883520pt;}
.y3670_c00001{bottom:794.907067pt;}
.y2f63_c00001{bottom:795.040000pt;}
.y1251_c00001{bottom:795.144667pt;}
.y18b5_c00001{bottom:795.227067pt;}
.y312_c00001{bottom:795.307067pt;}
.y1aa4_c00001{bottom:795.360000pt;}
.y3522_c00001{bottom:795.466139pt;}
.y3621_c00001{bottom:795.467067pt;}
.y3338_c00001{bottom:795.520000pt;}
.yab3_c00001{bottom:795.547067pt;}
.y2782_c00001{bottom:795.707067pt;}
.y1f59_c00001{bottom:795.787067pt;}
.yd62_c00001{bottom:795.947067pt;}
.y2319_c00001{bottom:796.105827pt;}
.y1f36_c00001{bottom:796.349331pt;}
.y2934_c00001{bottom:796.507067pt;}
.ycab_c00001{bottom:796.587067pt;}
.y5ea_c00001{bottom:796.667067pt;}
.y1de4_c00001{bottom:796.800000pt;}
.y100_c00001{bottom:796.827067pt;}
.yb9c_c00001{bottom:796.906619pt;}
.ya52_c00001{bottom:796.908051pt;}
.y3ad_c00001{bottom:797.067067pt;}
.y2c61_c00001{bottom:797.226675pt;}
.y927_c00001{bottom:797.227067pt;}
.y1d55_c00001{bottom:797.280000pt;}
.y8b3_c00001{bottom:797.307067pt;}
.y34f3_c00001{bottom:797.387067pt;}
.y2d07_c00001{bottom:797.546067pt;}
.y2cff_c00001{bottom:797.546611pt;}
.y25c8_c00001{bottom:797.547067pt;}
.y1af5_c00001{bottom:797.600000pt;}
.y37c9_c00001{bottom:797.707067pt;}
.y2151_c00001{bottom:797.707155pt;}
.y30c0_c00001{bottom:797.760000pt;}
.y3731_c00001{bottom:797.787067pt;}
.yac3_c00001{bottom:797.787315pt;}
.y2a43_c00001{bottom:797.865827pt;}
.y2068_c00001{bottom:797.865891pt;}
.y16d3_c00001{bottom:797.867067pt;}
.y2e25_c00001{bottom:797.920000pt;}
.y2e82_c00001{bottom:797.922720pt;}
.y378_c00001{bottom:797.947067pt;}
.y2f22_c00001{bottom:798.080000pt;}
.y694_c00001{bottom:798.187067pt;}
.y1cc8_c00001{bottom:798.240000pt;}
.y24d7_c00001{bottom:798.265627pt;}
.y25f1_c00001{bottom:798.267067pt;}
.y33e_c00001{bottom:798.427067pt;}
.ya35_c00001{bottom:798.507067pt;}
.y20d7_c00001{bottom:798.584099pt;}
.y26cf_c00001{bottom:798.585563pt;}
.y1fee_c00001{bottom:798.667067pt;}
.y31a4_c00001{bottom:798.720000pt;}
.ya1c_c00001{bottom:798.827067pt;}
.y2d9c_c00001{bottom:798.880000pt;}
.y839_c00001{bottom:798.907067pt;}
.y1bd1_c00001{bottom:799.040000pt;}
.y228f_c00001{bottom:799.067067pt;}
.y2f64_c00001{bottom:799.200000pt;}
.y799_c00001{bottom:799.227067pt;}
.y3451_c00001{bottom:799.307067pt;}
.y2d2_c00001{bottom:799.387067pt;}
.y161b_c00001{bottom:799.467067pt;}
.y1f98_c00001{bottom:799.471915pt;}
.y1de6_c00001{bottom:799.520000pt;}
.y13e4_c00001{bottom:799.627067pt;}
.y5f_c00001{bottom:799.707067pt;}
.y15f3_c00001{bottom:799.707667pt;}
.y38f5_c00001{bottom:799.787067pt;}
.yef1_c00001{bottom:799.787435pt;}
.y150_c00001{bottom:799.867067pt;}
.yefd_c00001{bottom:799.947435pt;}
.y3653_c00001{bottom:800.027067pt;}
.y23c2_c00001{bottom:800.107067pt;}
.y2df3_c00001{bottom:800.160000pt;}
.y34df_c00001{bottom:800.187067pt;}
.ycdd_c00001{bottom:800.267011pt;}
.y3a0c_c00001{bottom:800.347995pt;}
.y44a_c00001{bottom:800.427067pt;}
.y1a0f_c00001{bottom:800.480000pt;}
.y7f0_c00001{bottom:800.507067pt;}
.y15b8_c00001{bottom:800.587067pt;}
.y308b_c00001{bottom:800.640000pt;}
.y2508_c00001{bottom:800.665171pt;}
.y241b_c00001{bottom:800.667067pt;}
.y35fe_c00001{bottom:800.747067pt;}
.y22c1_c00001{bottom:800.826675pt;}
.y2ac8_c00001{bottom:800.907067pt;}
.y665_c00001{bottom:801.067067pt;}
.y1af4_c00001{bottom:801.280000pt;}
.y18f5_c00001{bottom:801.304531pt;}
.y39e5_c00001{bottom:801.306667pt;}
.y37fe_c00001{bottom:801.386675pt;}
.y23c0_c00001{bottom:801.387067pt;}
.y1b3d_c00001{bottom:801.442720pt;}
.y36da_c00001{bottom:801.467067pt;}
.y331c_c00001{bottom:801.600000pt;}
.y11_c00001{bottom:801.627067pt;}
.y3069_c00001{bottom:801.760000pt;}
.y13c1_c00001{bottom:801.787067pt;}
.y84_c00001{bottom:801.867067pt;}
.y1d01_c00001{bottom:801.920000pt;}
.y1041_c00001{bottom:801.947067pt;}
.yf8e_c00001{bottom:802.027067pt;}
.yb2c_c00001{bottom:802.186787pt;}
.y1e53_c00001{bottom:802.240000pt;}
.y13b5_c00001{bottom:802.267067pt;}
.y2269_c00001{bottom:802.506219pt;}
.y202c_c00001{bottom:802.506611pt;}
.y257d_c00001{bottom:802.506675pt;}
.y34a0_c00001{bottom:802.507067pt;}
.y2eef_c00001{bottom:802.560000pt;}
.y118b_c00001{bottom:802.587067pt;}
.y2b23_c00001{bottom:802.587411pt;}
.y2a27_c00001{bottom:802.667067pt;}
.y248a_c00001{bottom:802.667243pt;}
.yb34_c00001{bottom:802.906891pt;}
.y217b_c00001{bottom:802.987067pt;}
.y2915_c00001{bottom:803.067067pt;}
.y266f_c00001{bottom:803.147067pt;}
.y3043_c00001{bottom:803.200000pt;}
.y2716_c00001{bottom:803.225339pt;}
.y209a_c00001{bottom:803.226347pt;}
.y270c_c00001{bottom:803.226803pt;}
.y2a3e_c00001{bottom:803.227067pt;}
.y21b0_c00001{bottom:803.227195pt;}
.yda8_c00001{bottom:803.307147pt;}
.y147e_c00001{bottom:803.387067pt;}
.y385c_c00001{bottom:803.467067pt;}
.y1c4c_c00001{bottom:803.520000pt;}
.y174e_c00001{bottom:803.547067pt;}
.yda_c00001{bottom:803.627067pt;}
.y30ee_c00001{bottom:803.680000pt;}
.y7cc_c00001{bottom:803.707067pt;}
.y31d4_c00001{bottom:803.840000pt;}
.y1fd5_c00001{bottom:803.867067pt;}
.yfec_c00001{bottom:803.947067pt;}
.y2dc3_c00001{bottom:804.160000pt;}
.y1a3_c00001{bottom:804.187067pt;}
.y28f7_c00001{bottom:804.187155pt;}
.y32a9_c00001{bottom:804.320000pt;}
.y39b2_c00001{bottom:804.427067pt;}
.y212c_c00001{bottom:804.507067pt;}
.y39e4_c00001{bottom:804.587067pt;}
.y1a58_c00001{bottom:804.640000pt;}
.y3507_c00001{bottom:804.747067pt;}
.y32f7_c00001{bottom:804.800000pt;}
.y1e56_c00001{bottom:804.960000pt;}
.y2101_c00001{bottom:805.067067pt;}
.y192a_c00001{bottom:805.120000pt;}
.ya9c_c00001{bottom:805.147200pt;}
.y32fb_c00001{bottom:805.280000pt;}
.y1c10_c00001{bottom:805.285440pt;}
.y2415_c00001{bottom:805.307067pt;}
.y297e_c00001{bottom:805.307131pt;}
.y2bdb_c00001{bottom:805.387067pt;}
.y12c7_c00001{bottom:805.391355pt;}
.y172f_c00001{bottom:805.547067pt;}
.y31a5_c00001{bottom:805.600000pt;}
.y2a81_c00001{bottom:805.627067pt;}
.y1d2_c00001{bottom:805.707067pt;}
.y1aa2_c00001{bottom:805.760000pt;}
.y861_c00001{bottom:805.787067pt;}
.y3157_c00001{bottom:805.920000pt;}
.y2cd4_c00001{bottom:805.945563pt;}
.y2208_c00001{bottom:805.947067pt;}
.y14c4_c00001{bottom:805.947667pt;}
.y729_c00001{bottom:806.027067pt;}
.y239f_c00001{bottom:806.187067pt;}
.y3132_c00001{bottom:806.240000pt;}
.y2a9c_c00001{bottom:806.427067pt;}
.y14e5_c00001{bottom:806.427827pt;}
.y12d6_c00001{bottom:806.507067pt;}
.y9f1_c00001{bottom:806.667067pt;}
.ybab_c00001{bottom:806.746003pt;}
.ya0b_c00001{bottom:806.747067pt;}
.y3872_c00001{bottom:806.826187pt;}
.y605_c00001{bottom:806.907067pt;}
.y896_c00001{bottom:806.987067pt;}
.y2ee5_c00001{bottom:807.040000pt;}
.y13ea_c00001{bottom:807.147907pt;}
.y1c86_c00001{bottom:807.200000pt;}
.y28d_c00001{bottom:807.227067pt;}
.y17f3_c00001{bottom:807.307067pt;}
.y1d8e_c00001{bottom:807.360000pt;}
.y17af_c00001{bottom:807.387067pt;}
.y1687_c00001{bottom:807.467067pt;}
.ybb3_c00001{bottom:807.470115pt;}
.y33ab_c00001{bottom:807.547067pt;}
.y181a_c00001{bottom:807.627067pt;}
.y2951_c00001{bottom:807.786283pt;}
.y2627_c00001{bottom:807.786611pt;}
.y27cb_c00001{bottom:807.787067pt;}
.y2e51_c00001{bottom:807.840000pt;}
.ye25_c00001{bottom:807.868387pt;}
.yeb0_c00001{bottom:807.946675pt;}
.y13f6_c00001{bottom:808.026667pt;}
.yea1_c00001{bottom:808.027067pt;}
.y2eb2_c00001{bottom:808.160000pt;}
.ycb4_c00001{bottom:808.187067pt;}
.yc0c_c00001{bottom:808.267067pt;}
.y1e8d_c00001{bottom:808.320000pt;}
.y1585_c00001{bottom:808.347147pt;}
.y2c3d_c00001{bottom:808.427067pt;}
.y1508_c00001{bottom:808.507067pt;}
.ybe5_c00001{bottom:808.587067pt;}
.y1de7_c00001{bottom:808.640000pt;}
.y1670_c00001{bottom:808.667067pt;}
.y3134_c00001{bottom:808.800000pt;}
.y268b_c00001{bottom:808.907131pt;}
.yee6_c00001{bottom:808.987251pt;}
.y155a_c00001{bottom:808.987747pt;}
.y594_c00001{bottom:809.067067pt;}
.y26aa_c00001{bottom:809.147200pt;}
.yd7c_c00001{bottom:809.227147pt;}
.y1d8c_c00001{bottom:809.280000pt;}
.y19bc_c00001{bottom:809.446240pt;}
.y262_c00001{bottom:809.627067pt;}
.yae1_c00001{bottom:809.707067pt;}
.y31d0_c00001{bottom:809.760000pt;}
.y34c6_c00001{bottom:809.787067pt;}
.y1397_c00001{bottom:809.788763pt;}
.y382c_c00001{bottom:809.867067pt;}
.y1aa3_c00001{bottom:809.920000pt;}
.y200a_c00001{bottom:809.946675pt;}
.y1151_c00001{bottom:810.033387pt;}
.y366d_c00001{bottom:810.106667pt;}
.y179a_c00001{bottom:810.107067pt;}
.yd38_c00001{bottom:810.187067pt;}
.y2e81_c00001{bottom:810.240000pt;}
.y625_c00001{bottom:810.267067pt;}
.y273d_c00001{bottom:810.347067pt;}
.y1352_c00001{bottom:810.350875pt;}
.yd0f_c00001{bottom:810.507067pt;}
.y2d6e_c00001{bottom:810.560000pt;}
.y2a65_c00001{bottom:810.667067pt;}
.y3176_c00001{bottom:810.720000pt;}
.y1379_c00001{bottom:810.747147pt;}
.y1161_c00001{bottom:810.747427pt;}
.y3220_c00001{bottom:810.750571pt;}
.y3642_c00001{bottom:810.827067pt;}
.y3d6_c00001{bottom:810.907067pt;}
.y13a1_c00001{bottom:810.909067pt;}
.y36f3_c00001{bottom:810.987067pt;}
.y4fd_c00001{bottom:811.067067pt;}
.y1361_c00001{bottom:811.068971pt;}
.y1c87_c00001{bottom:811.360000pt;}
.y2194_c00001{bottom:811.387067pt;}
.y2b22_c00001{bottom:811.387403pt;}
.y479_c00001{bottom:811.467067pt;}
.y2e24_c00001{bottom:811.520000pt;}
.y956_c00001{bottom:811.627067pt;}
.y1e20_c00001{bottom:811.680000pt;}
.y2150_c00001{bottom:811.787067pt;}
.y38e5_c00001{bottom:811.867067pt;}
.y3928_c00001{bottom:811.947067pt;}
.y322e_c00001{bottom:812.000000pt;}
.y2375_c00001{bottom:812.026611pt;}
.y7cb_c00001{bottom:812.027067pt;}
.y3620_c00001{bottom:812.106499pt;}
.y2082_c00001{bottom:812.107067pt;}
.y831_c00001{bottom:812.107723pt;}
.y10ae_c00001{bottom:812.107731pt;}
.y2e52_c00001{bottom:812.160000pt;}
.y238_c00001{bottom:812.187067pt;}
.y1081_c00001{bottom:812.267067pt;}
.ya51_c00001{bottom:812.268043pt;}
.y10b7_c00001{bottom:812.268051pt;}
.y2aef_c00001{bottom:812.426675pt;}
.y33fa_c00001{bottom:812.427067pt;}
.ycdc_c00001{bottom:812.587067pt;}
.y2feb_c00001{bottom:812.640000pt;}
.y1fbf_c00001{bottom:812.667067pt;}
.y3976_c00001{bottom:812.747067pt;}
.y2f9b_c00001{bottom:812.800000pt;}
.yb39_c00001{bottom:812.827067pt;}
.yf71_c00001{bottom:812.907067pt;}
.y21e4_c00001{bottom:812.907355pt;}
.y24a3_c00001{bottom:812.987067pt;}
.y1957_c00001{bottom:813.067067pt;}
.y2d4d_c00001{bottom:813.104000pt;}
.y149c_c00001{bottom:813.147200pt;}
.y1958_c00001{bottom:813.227067pt;}
.y3018_c00001{bottom:813.283520pt;}
.y11cc_c00001{bottom:813.384835pt;}
.y3425_c00001{bottom:813.387067pt;}
.ye4b_c00001{bottom:813.467067pt;}
.y1f12_c00001{bottom:813.627067pt;}
.y311_c00001{bottom:813.707067pt;}
.y1b3c_c00001{bottom:813.760000pt;}
.y28e8_c00001{bottom:813.867067pt;}
.y377e_c00001{bottom:813.947067pt;}
.y3117_c00001{bottom:814.080000pt;}
.y11d8_c00001{bottom:814.100931pt;}
.y243f_c00001{bottom:814.107067pt;}
.y2228_c00001{bottom:814.187067pt;}
.y368a_c00001{bottom:814.347067pt;}
.y3929_c00001{bottom:814.427067pt;}
.y3a0b_c00001{bottom:814.427907pt;}
.y3ac_c00001{bottom:814.587067pt;}
.y2b90_c00001{bottom:814.667067pt;}
.y926_c00001{bottom:814.747067pt;}
.y377_c00001{bottom:814.827067pt;}
.yd61_c00001{bottom:814.987067pt;}
.y20b9_c00001{bottom:815.067067pt;}
.yef0_c00001{bottom:815.147427pt;}
.yff_c00001{bottom:815.227067pt;}
.yefc_c00001{bottom:815.307427pt;}
.ya34_c00001{bottom:815.387067pt;}
.y2224_c00001{bottom:815.467067pt;}
.y1af0_c00001{bottom:815.520000pt;}
.y2318_c00001{bottom:815.546283pt;}
.y18d1_c00001{bottom:815.627067pt;}
.yab2_c00001{bottom:815.707067pt;}
.y7ef_c00001{bottom:815.787067pt;}
.y30bd_c00001{bottom:815.840000pt;}
.y1431_c00001{bottom:815.867067pt;}
.y38f4_c00001{bottom:816.027067pt;}
.y693_c00001{bottom:816.107067pt;}
.y9d6_c00001{bottom:816.187067pt;}
.y1cc5_c00001{bottom:816.320000pt;}
.y18b4_c00001{bottom:816.347067pt;}
.ydf0_c00001{bottom:816.427067pt;}
.y2eee_c00001{bottom:816.480000pt;}
.y10_c00001{bottom:816.507067pt;}
.y2933_c00001{bottom:816.587067pt;}
.y2c60_c00001{bottom:816.667131pt;}
.y2489_c00001{bottom:816.747155pt;}
.y1d06_c00001{bottom:816.800000pt;}
.y798_c00001{bottom:816.907067pt;}
.y32f6_c00001{bottom:816.960000pt;}
.y3288_c00001{bottom:816.969600pt;}
.y2d06_c00001{bottom:816.986523pt;}
.y2f61_c00001{bottom:817.120000pt;}
.y23eb_c00001{bottom:817.147200pt;}
.yac_c00001{bottom:817.227067pt;}
.y2a42_c00001{bottom:817.306283pt;}
.y2067_c00001{bottom:817.306347pt;}
.y1f97_c00001{bottom:817.312219pt;}
.y1f74_c00001{bottom:817.389251pt;}
.ycaa_c00001{bottom:817.467067pt;}
.y3395_c00001{bottom:817.547067pt;}
.y1eea_c00001{bottom:817.600000pt;}
.y1c0f_c00001{bottom:817.602720pt;}
.y24d6_c00001{bottom:817.625563pt;}
.y33d_c00001{bottom:817.627067pt;}
.y3845_c00001{bottom:817.707067pt;}
.y1248_c00001{bottom:817.787003pt;}
.y34de_c00001{bottom:817.787067pt;}
.y1f35_c00001{bottom:817.789059pt;}
.y16a0_c00001{bottom:817.867067pt;}
.y2f21_c00001{bottom:817.920000pt;}
.y20d6_c00001{bottom:817.944035pt;}
.y26ce_c00001{bottom:817.945499pt;}
.yf8d_c00001{bottom:817.947067pt;}
.y2d26_c00001{bottom:818.025947pt;}
.y13e3_c00001{bottom:818.027067pt;}
.y1e55_c00001{bottom:818.080000pt;}
.y2d1_c00001{bottom:818.107067pt;}
.y49e_c00001{bottom:818.267067pt;}
.y17cb_c00001{bottom:818.347067pt;}
.y1a0d_c00001{bottom:818.400000pt;}
.y2556_c00001{bottom:818.507067pt;}
.y2a26_c00001{bottom:818.667067pt;}
.y14f_c00001{bottom:818.827067pt;}
.y1b8a_c00001{bottom:818.880000pt;}
.y1112_c00001{bottom:818.907067pt;}
.y1252_c00001{bottom:818.907200pt;}
.y1460_c00001{bottom:818.987067pt;}
.y3871_c00001{bottom:819.146243pt;}
.y1040_c00001{bottom:819.147200pt;}
.y3118_c00001{bottom:819.360000pt;}
.y3652_c00001{bottom:819.387067pt;}
.y449_c00001{bottom:819.467067pt;}
.y3c_c00001{bottom:819.547067pt;}
.y224c_c00001{bottom:819.627067pt;}
.y1af2_c00001{bottom:819.680000pt;}
.yb9b_c00001{bottom:819.707067pt;}
.y38ae_c00001{bottom:819.867067pt;}
.y30be_c00001{bottom:820.000000pt;}
.y2507_c00001{bottom:820.025107pt;}
.y3450_c00001{bottom:820.027067pt;}
.yda7_c00001{bottom:820.187067pt;}
.y2b21_c00001{bottom:820.187395pt;}
.y2fb_c00001{bottom:820.267067pt;}
.y22c0_c00001{bottom:820.267131pt;}
.y23bf_c00001{bottom:820.507067pt;}
.y3573_c00001{bottom:820.587067pt;}
.y2fc7_c00001{bottom:820.640000pt;}
.y18f4_c00001{bottom:820.744987pt;}
.y37fd_c00001{bottom:820.746611pt;}
.y5e9_c00001{bottom:820.747067pt;}
.yfeb_c00001{bottom:820.827067pt;}
.y2ac7_c00001{bottom:820.907067pt;}
.y1b89_c00001{bottom:820.960000pt;}
.y37e7_c00001{bottom:820.987067pt;}
.y147d_c00001{bottom:821.067067pt;}
.y2a3d_c00001{bottom:821.147200pt;}
.y1fa3_c00001{bottom:821.227067pt;}
.y36d9_c00001{bottom:821.227531pt;}
.y2f62_c00001{bottom:821.280000pt;}
.y1d09_c00001{bottom:821.440000pt;}
.y204d_c00001{bottom:821.547067pt;}
.y19bb_c00001{bottom:821.602720pt;}
.y2d99_c00001{bottom:821.760000pt;}
.y13f5_c00001{bottom:821.787067pt;}
.y1a2_c00001{bottom:821.867067pt;}
.y2268_c00001{bottom:821.946675pt;}
.y2031_c00001{bottom:821.947067pt;}
.y257c_c00001{bottom:821.947131pt;}
.yd9_c00001{bottom:822.027067pt;}
.y3133_c00001{bottom:822.080000pt;}
.y1507_c00001{bottom:822.107987pt;}
.ya1b_c00001{bottom:822.346611pt;}
.y2715_c00001{bottom:822.585275pt;}
.y2099_c00001{bottom:822.586283pt;}
.y270b_c00001{bottom:822.586739pt;}
.y349f_c00001{bottom:822.587067pt;}
.y21af_c00001{bottom:822.587131pt;}
.y3990_c00001{bottom:822.667067pt;}
.y14c3_c00001{bottom:822.747067pt;}
.y16f2_c00001{bottom:822.987067pt;}
.y12c8_c00001{bottom:822.991819pt;}
.y217a_c00001{bottom:823.067067pt;}
.y1d1_c00001{bottom:823.147200pt;}
.y202b_c00001{bottom:823.227067pt;}
.y14e4_c00001{bottom:823.227227pt;}
.y2781_c00001{bottom:823.307067pt;}
.y1af1_c00001{bottom:823.360000pt;}
.y1f58_c00001{bottom:823.387067pt;}
.y353d_c00001{bottom:823.467067pt;}
.y1929_c00001{bottom:823.520000pt;}
.y385b_c00001{bottom:823.547067pt;}
.y1e8c_c00001{bottom:823.680000pt;}
.y2c3c_c00001{bottom:823.707067pt;}
.y2a0e_c00001{bottom:823.787067pt;}
.y2e80_c00001{bottom:823.840000pt;}
.y172e_c00001{bottom:823.947067pt;}
.y25a4_c00001{bottom:824.027067pt;}
.y13e9_c00001{bottom:824.027827pt;}
.y5e_c00001{bottom:824.107067pt;}
.y12d7_c00001{bottom:824.107467pt;}
.y1b39_c00001{bottom:824.160000pt;}
.ya9b_c00001{bottom:824.187067pt;}
.y2914_c00001{bottom:824.267067pt;}
.y361f_c00001{bottom:824.346755pt;}
.y266e_c00001{bottom:824.347067pt;}
.yee5_c00001{bottom:824.347243pt;}
.y358e_c00001{bottom:824.427067pt;}
.y2a80_c00001{bottom:824.587067pt;}
.y955_c00001{bottom:824.587907pt;}
.y2414_c00001{bottom:824.667067pt;}
.y8b2_c00001{bottom:824.747067pt;}
.ye24_c00001{bottom:824.748307pt;}
.y860_c00001{bottom:824.827067pt;}
.y728_c00001{bottom:824.907067pt;}
.y1cc6_c00001{bottom:824.960000pt;}
.ycb3_c00001{bottom:825.067067pt;}
.yc2a_c00001{bottom:825.147200pt;}
.y1584_c00001{bottom:825.227067pt;}
.y1eba_c00001{bottom:825.280000pt;}
.y28c_c00001{bottom:825.307067pt;}
.y2cd3_c00001{bottom:825.386019pt;}
.y80e_c00001{bottom:825.387067pt;}
.y2ee4_c00001{bottom:825.440000pt;}
.y34dd_c00001{bottom:825.467067pt;}
.y2a9b_c00001{bottom:825.547067pt;}
.y9f0_c00001{bottom:825.707067pt;}
.y1a0e_c00001{bottom:825.760000pt;}
.y17ae_c00001{bottom:825.787067pt;}
.y1fd4_c00001{bottom:825.867067pt;}
.y1559_c00001{bottom:825.867667pt;}
.y2207_c00001{bottom:825.947067pt;}
.y3040_c00001{bottom:826.080000pt;}
.ycdb_c00001{bottom:826.107067pt;}
.y239e_c00001{bottom:826.267067pt;}
.y29a8_c00001{bottom:826.347067pt;}
.y3521_c00001{bottom:826.426603pt;}
.y27c8_c00001{bottom:826.427067pt;}
.y2652_c00001{bottom:826.507067pt;}
.y1ddf_c00001{bottom:826.560000pt;}
.y228e_c00001{bottom:826.667067pt;}
.y2dc2_c00001{bottom:826.880000pt;}
.y33aa_c00001{bottom:826.907067pt;}
.y38e4_c00001{bottom:826.987067pt;}
.y1152_c00001{bottom:826.993907pt;}
.y1a57_c00001{bottom:827.042720pt;}
.yd37_c00001{bottom:827.067067pt;}
.y2d9b_c00001{bottom:827.200000pt;}
.y2950_c00001{bottom:827.226739pt;}
.y2630_c00001{bottom:827.227067pt;}
.y12e2_c00001{bottom:827.307067pt;}
.yd0e_c00001{bottom:827.387067pt;}
.yeaf_c00001{bottom:827.387131pt;}
.y830_c00001{bottom:827.387555pt;}
.y10ad_c00001{bottom:827.387563pt;}
.y3155_c00001{bottom:827.520000pt;}
.y838_c00001{bottom:827.547875pt;}
.y10b6_c00001{bottom:827.547883pt;}
.y366b_c00001{bottom:827.626667pt;}
.y1162_c00001{bottom:827.707947pt;}
.y1a9c_c00001{bottom:827.840000pt;}
.y2adc_c00001{bottom:827.947067pt;}
.y1981_c00001{bottom:828.000000pt;}
.y593_c00001{bottom:828.027067pt;}
.y308a_c00001{bottom:828.160000pt;}
.y405_c00001{bottom:828.187067pt;}
.y2100_c00001{bottom:828.267067pt;}
.y1b3b_c00001{bottom:828.320000pt;}
.y2bdc_c00001{bottom:828.427067pt;}
.y1de3_c00001{bottom:828.480000pt;}
.y17f2_c00001{bottom:828.507067pt;}
.y382b_c00001{bottom:828.587067pt;}
.y3a0a_c00001{bottom:828.587619pt;}
.y3041_c00001{bottom:828.640000pt;}
.y261_c00001{bottom:828.667067pt;}
.yae0_c00001{bottom:828.827067pt;}
.y233e_c00001{bottom:828.827131pt;}
.y1d8b_c00001{bottom:828.960000pt;}
.y4fc_c00001{bottom:828.986811pt;}
.yf8c_c00001{bottom:829.067067pt;}
.y31d3_c00001{bottom:829.120000pt;}
.y1c84_c00001{bottom:829.280000pt;}
.y2009_c00001{bottom:829.306611pt;}
.y624_c00001{bottom:829.307067pt;}
.y1210_c00001{bottom:829.387067pt;}
.y83_c00001{bottom:829.467067pt;}
.y268a_c00001{bottom:829.547067pt;}
.y1e16_c00001{bottom:829.600000pt;}
.y366a_c00001{bottom:829.707067pt;}
.y13f0_c00001{bottom:829.707251pt;}
.y237_c00001{bottom:829.787067pt;}
.y478_c00001{bottom:829.867067pt;}
.y1c0e_c00001{bottom:829.920000pt;}
.y366c_c00001{bottom:829.947067pt;}
.y33c0_c00001{bottom:830.027067pt;}
.y2e50_c00001{bottom:830.080000pt;}
.y3d5_c00001{bottom:830.107067pt;}
.y26a9_c00001{bottom:830.267067pt;}
.y273c_c00001{bottom:830.427067pt;}
.yeef_c00001{bottom:830.507419pt;}
.yefb_c00001{bottom:830.667419pt;}
.y2488_c00001{bottom:830.827067pt;}
.y1c4b_c00001{bottom:831.040000pt;}
.y348b_c00001{bottom:831.067067pt;}
.y7ee_c00001{bottom:831.147200pt;}
.y30ed_c00001{bottom:831.200000pt;}
.y176c_c00001{bottom:831.227067pt;}
.y1353_c00001{bottom:831.231219pt;}
.y33f9_c00001{bottom:831.307067pt;}
.y1d8d_c00001{bottom:831.360000pt;}
.y3870_c00001{bottom:831.386499pt;}
.y3477_c00001{bottom:831.387067pt;}
.y1956_c00001{bottom:831.467067pt;}
.y1902_c00001{bottom:831.504000pt;}
.y22f8_c00001{bottom:831.547067pt;}
.y925_c00001{bottom:831.627067pt;}
.y376_c00001{bottom:831.707067pt;}
.y2aed_c00001{bottom:831.786611pt;}
.yc0b_c00001{bottom:831.787067pt;}
.y2f20_c00001{bottom:831.840000pt;}
.yb38_c00001{bottom:831.867067pt;}
.y1429_c00001{bottom:831.946283pt;}
.y35fb_c00001{bottom:831.946667pt;}
.y1362_c00001{bottom:831.949315pt;}
.y1b3a_c00001{bottom:832.000000pt;}
.y3927_c00001{bottom:832.027067pt;}
.y310_c00001{bottom:832.107067pt;}
.y3ab_c00001{bottom:832.187067pt;}
.y241a_c00001{bottom:832.347067pt;}
.y3434_c00001{bottom:832.507067pt;}
.y1eb1_c00001{bottom:832.640000pt;}
.y2374_c00001{bottom:832.747067pt;}
.y27fc_c00001{bottom:832.827067pt;}
.y1ee9_c00001{bottom:832.960000pt;}
.y26bd_c00001{bottom:833.067067pt;}
.y2c96_c00001{bottom:833.146915pt;}
.y3689_c00001{bottom:833.227067pt;}
.yf4c_c00001{bottom:833.307067pt;}
.y149b_c00001{bottom:833.307323pt;}
.y1c85_c00001{bottom:833.440000pt;}
.y243e_c00001{bottom:833.467067pt;}
.y19ba_c00001{bottom:833.920000pt;}
.y3287_c00001{bottom:833.927040pt;}
.y2b77_c00001{bottom:833.947067pt;}
.yfe_c00001{bottom:834.107067pt;}
.y15f2_c00001{bottom:834.107147pt;}
.yf_c00001{bottom:834.187067pt;}
.y1e1b_c00001{bottom:834.240000pt;}
.y3707_c00001{bottom:834.427067pt;}
.y692_c00001{bottom:834.507067pt;}
.ydc8_c00001{bottom:834.587067pt;}
.y2a25_c00001{bottom:834.747067pt;}
.y2fea_c00001{bottom:834.880000pt;}
.y2317_c00001{bottom:834.906219pt;}
.y1686_c00001{bottom:834.907067pt;}
.y214f_c00001{bottom:834.987067pt;}
.y26f2_c00001{bottom:835.067067pt;}
.y35fd_c00001{bottom:835.147200pt;}
.y1398_c00001{bottom:835.228875pt;}
.y1f96_c00001{bottom:835.231579pt;}
.y36d8_c00001{bottom:835.307443pt;}
.y3068_c00001{bottom:835.360000pt;}
.y3641_c00001{bottom:835.387067pt;}
.y322d_c00001{bottom:835.520000pt;}
.y34f2_c00001{bottom:835.547067pt;}
.y13f4_c00001{bottom:835.626667pt;}
.yea0_c00001{bottom:835.627067pt;}
.y39e3_c00001{bottom:835.706667pt;}
.y1111_c00001{bottom:835.707067pt;}
.y11cd_c00001{bottom:835.785547pt;}
.y32fa_c00001{bottom:836.000000pt;}
.y2d0_c00001{bottom:836.027067pt;}
.y20b8_c00001{bottom:836.187067pt;}
.y166f_c00001{bottom:836.267067pt;}
.y2eed_c00001{bottom:836.320000pt;}
.y1269_c00001{bottom:836.347067pt;}
.y13e2_c00001{bottom:836.427067pt;}
.y11d9_c00001{bottom:836.506443pt;}
.y10a5_c00001{bottom:836.587259pt;}
.y2a3c_c00001{bottom:836.666219pt;}
.y2066_c00001{bottom:836.666283pt;}
.y361e_c00001{bottom:836.666811pt;}
.y118a_c00001{bottom:836.667067pt;}
.y18d0_c00001{bottom:836.747067pt;}
.y2cfe_c00001{bottom:837.064555pt;}
.y24d5_c00001{bottom:837.066019pt;}
.y25c4_c00001{bottom:837.067067pt;}
.y49d_c00001{bottom:837.227067pt;}
.y2c5f_c00001{bottom:837.307067pt;}
.y20d5_c00001{bottom:837.384491pt;}
.y26cd_c00001{bottom:837.385955pt;}
.y36bd_c00001{bottom:837.467067pt;}
.y18b3_c00001{bottom:837.547067pt;}
.y1aed_c00001{bottom:837.600000pt;}
.yfea_c00001{bottom:837.707067pt;}
.y14e_c00001{bottom:837.867067pt;}
.y30bb_c00001{bottom:837.920000pt;}
.y1d08_c00001{bottom:838.080000pt;}
.y38c6_c00001{bottom:838.347067pt;}
.y1de2_c00001{bottom:838.400000pt;}
.y28aa_c00001{bottom:838.427067pt;}
.y28b_c00001{bottom:838.507067pt;}
.y2555_c00001{bottom:838.587067pt;}
.y968_c00001{bottom:838.667067pt;}
.y2eb1_c00001{bottom:838.720000pt;}
.y344f_c00001{bottom:838.747067pt;}
.y27a0_c00001{bottom:838.827067pt;}
.y3b_c00001{bottom:838.827155pt;}
.y39e2_c00001{bottom:838.907067pt;}
.y1506_c00001{bottom:838.987907pt;}
.y1b86_c00001{bottom:839.040000pt;}
.y376f_c00001{bottom:839.067067pt;}
.y2f60_c00001{bottom:839.200000pt;}
.y448_c00001{bottom:839.307067pt;}
.y1f34_c00001{bottom:839.308939pt;}
.y1a56_c00001{bottom:839.360000pt;}
.y1f11_c00001{bottom:839.387067pt;}
.y2506_c00001{bottom:839.465563pt;}
.y355f_c00001{bottom:839.467067pt;}
.y17ca_c00001{bottom:839.547067pt;}
.y147c_c00001{bottom:839.627067pt;}
.yee4_c00001{bottom:839.707235pt;}
.y1080_c00001{bottom:839.867067pt;}
.y18f3_c00001{bottom:840.104923pt;}
.ye98_c00001{bottom:840.107067pt;}
.y14e3_c00001{bottom:840.107147pt;}
.y336d_c00001{bottom:840.160000pt;}
.y16d2_c00001{bottom:840.187067pt;}
.y3156_c00001{bottom:840.320000pt;}
.y1430_c00001{bottom:840.345211pt;}
.y14c2_c00001{bottom:840.347147pt;}
.yd8_c00001{bottom:840.427067pt;}
.y336e_c00001{bottom:840.480000pt;}
.y2029_c00001{bottom:840.507067pt;}
.y12c9_c00001{bottom:840.512123pt;}
.y1eb9_c00001{bottom:840.640000pt;}
.y3572_c00001{bottom:840.667067pt;}
.y224b_c00001{bottom:840.747067pt;}
.y3799_c00001{bottom:840.827067pt;}
.y13e8_c00001{bottom:840.827227pt;}
.y1a1_c00001{bottom:840.907067pt;}
.ye4a_c00001{bottom:841.067067pt;}
.y4fb_c00001{bottom:841.227067pt;}
.y2267_c00001{bottom:841.306611pt;}
.y2179_c00001{bottom:841.307067pt;}
.y28e7_c00001{bottom:841.467067pt;}
.y1249_c00001{bottom:841.467603pt;}
.y954_c00001{bottom:841.467827pt;}
.yfb9_c00001{bottom:841.547067pt;}
.y32f5_c00001{bottom:841.600000pt;}
.y2b1c_c00001{bottom:841.626675pt;}
.y12d8_c00001{bottom:841.627467pt;}
.ye23_c00001{bottom:841.628227pt;}
.y29ce_c00001{bottom:841.707067pt;}
.y1aef_c00001{bottom:841.760000pt;}
.y3816_c00001{bottom:841.787067pt;}
.y1928_c00001{bottom:841.920000pt;}
.y2714_c00001{bottom:841.945211pt;}
.y2098_c00001{bottom:841.946219pt;}
.y270a_c00001{bottom:841.946675pt;}
.ycb2_c00001{bottom:841.947067pt;}
.y1583_c00001{bottom:842.027067pt;}
.y30bc_c00001{bottom:842.080000pt;}
.y1c0d_c00001{bottom:842.240000pt;}
.ybe4_c00001{bottom:842.267067pt;}
.y172d_c00001{bottom:842.347067pt;}
.y1253_c00001{bottom:842.586800pt;}
.y257b_c00001{bottom:842.587067pt;}
.yc0a_c00001{bottom:842.667067pt;}
.y3a09_c00001{bottom:842.667531pt;}
.y35e4_c00001{bottom:842.746603pt;}
.y398f_c00001{bottom:842.747067pt;}
.y82f_c00001{bottom:842.747547pt;}
.y10ac_c00001{bottom:842.747555pt;}
.y2e7f_c00001{bottom:842.880000pt;}
.y25a3_c00001{bottom:842.907067pt;}
.y837_c00001{bottom:842.907867pt;}
.y10b5_c00001{bottom:842.907875pt;}
.ycda_c00001{bottom:842.987067pt;}
.y1cc2_c00001{bottom:843.040000pt;}
.y2a7f_c00001{bottom:843.067067pt;}
.y260d_c00001{bottom:843.147200pt;}
.y21ae_c00001{bottom:843.227067pt;}
.ya9a_c00001{bottom:843.307067pt;}
.y2dc1_c00001{bottom:843.360000pt;}
.y5e8_c00001{bottom:843.467067pt;}
.y386f_c00001{bottom:843.626755pt;}
.ybb6_c00001{bottom:843.627067pt;}
.y1a0b_c00001{bottom:843.680000pt;}
.y1bd0_c00001{bottom:843.682720pt;}
.y1378_c00001{bottom:843.707067pt;}
.y9d5_c00001{bottom:843.787067pt;}
.y2d4c_c00001{bottom:843.832000pt;}
.y2ee3_c00001{bottom:843.840000pt;}
.y85f_c00001{bottom:843.867067pt;}
.y727_c00001{bottom:844.027067pt;}
.y16f1_c00001{bottom:844.107067pt;}
.y17ad_c00001{bottom:844.187067pt;}
.yd0d_c00001{bottom:844.267067pt;}
.y1aa1_c00001{bottom:844.320000pt;}
.y35a5_c00001{bottom:844.507067pt;}
.y2a9a_c00001{bottom:844.667067pt;}
.y321f_c00001{bottom:844.669987pt;}
.y2cd2_c00001{bottom:844.745955pt;}
.yab_c00001{bottom:844.827067pt;}
.y39c9_c00001{bottom:844.987067pt;}
.yc57_c00001{bottom:845.067067pt;}
.y13ef_c00001{bottom:845.067243pt;}
.y331b_c00001{bottom:845.120000pt;}
.y3394_c00001{bottom:845.147067pt;}
.y358d_c00001{bottom:845.226139pt;}
.y1980_c00001{bottom:845.280000pt;}
.y174d_c00001{bottom:845.387067pt;}
.y1aee_c00001{bottom:845.440000pt;}
.y169f_c00001{bottom:845.467067pt;}
.y228d_c00001{bottom:845.547067pt;}
.y2bc8_c00001{bottom:845.627067pt;}
.y2626_c00001{bottom:845.787067pt;}
.yeee_c00001{bottom:845.787251pt;}
.yeeb_c00001{bottom:845.787371pt;}
.y1786_c00001{bottom:845.867067pt;}
.y8b1_c00001{bottom:845.947067pt;}
.yefa_c00001{bottom:845.947251pt;}
.y2206_c00001{bottom:846.027067pt;}
.y1b36_c00001{bottom:846.240000pt;}
.y239d_c00001{bottom:846.267067pt;}
.y12e1_c00001{bottom:846.347067pt;}
.y236_c00001{bottom:846.427067pt;}
.y7ed_c00001{bottom:846.507067pt;}
.y294f_c00001{bottom:846.586675pt;}
.y5d_c00001{bottom:846.587067pt;}
.yeae_c00001{bottom:846.747067pt;}
.y2d6d_c00001{bottom:846.880000pt;}
.y2c3b_c00001{bottom:846.907067pt;}
.y1fd3_c00001{bottom:846.987067pt;}
.y592_c00001{bottom:847.067067pt;}
.y3975_c00001{bottom:847.147200pt;}
.y29a7_c00001{bottom:847.467067pt;}
.y2fe9_c00001{bottom:847.520000pt;}
.y2651_c00001{bottom:847.627067pt;}
.y19b9_c00001{bottom:847.680000pt;}
.y3669_c00001{bottom:847.706667pt;}
.y623_c00001{bottom:847.707067pt;}
.y24a2_c00001{bottom:847.787067pt;}
.y1ee0_c00001{bottom:847.840000pt;}
.y2fa_c00001{bottom:847.867067pt;}
.y2bc9_c00001{bottom:848.107067pt;}
.y233d_c00001{bottom:848.187067pt;}
.y477_c00001{bottom:848.267067pt;}
.y1ee8_c00001{bottom:848.320000pt;}
.y2eec_c00001{bottom:848.480000pt;}
.y260_c00001{bottom:848.507067pt;}
.y375_c00001{bottom:848.587067pt;}
.y31a2_c00001{bottom:848.640000pt;}
.y2689_c00001{bottom:848.667067pt;}
.y2d25_c00001{bottom:848.667275pt;}
.y2008_c00001{bottom:848.747067pt;}
.y1fa2_c00001{bottom:848.827067pt;}
.y1fbe_c00001{bottom:848.907067pt;}
.y1e51_c00001{bottom:848.960000pt;}
.ya33_c00001{bottom:849.067067pt;}
.y1e1f_c00001{bottom:849.120000pt;}
.y924_c00001{bottom:849.147200pt;}
.y13f3_c00001{bottom:849.387067pt;}
.y36d7_c00001{bottom:849.467155pt;}
.y17f1_c00001{bottom:849.627067pt;}
.y3aa_c00001{bottom:849.707067pt;}
.y1a4f_c00001{bottom:849.760000pt;}
.y22a9_c00001{bottom:849.787067pt;}
.y1819_c00001{bottom:849.947067pt;}
.y3424_c00001{bottom:850.027067pt;}
.y25f0_c00001{bottom:850.107067pt;}
.yf4b_c00001{bottom:850.187067pt;}
.y21e3_c00001{bottom:850.267067pt;}
.y1b38_c00001{bottom:850.400000pt;}
.y30f_c00001{bottom:850.507067pt;}
.y23ea_c00001{bottom:850.587067pt;}
.y3286_c00001{bottom:850.722560pt;}
.y1a0c_c00001{bottom:850.880000pt;}
.yb37_c00001{bottom:850.907067pt;}
.y212b_c00001{bottom:850.987067pt;}
.y15f1_c00001{bottom:850.987667pt;}
.y3409_c00001{bottom:851.146667pt;}
.y27fb_c00001{bottom:851.147200pt;}
.y2aee_c00001{bottom:851.227067pt;}
.y1428_c00001{bottom:851.306219pt;}
.yc09_c00001{bottom:851.467067pt;}
.y1c83_c00001{bottom:851.520000pt;}
.y2193_c00001{bottom:851.547067pt;}
.y1cc4_c00001{bottom:851.680000pt;}
.ye_c00001{bottom:851.787067pt;}
.y829_c00001{bottom:851.947243pt;}
.y10a4_c00001{bottom:851.947251pt;}
.y3926_c00001{bottom:852.107067pt;}
.y1354_c00001{bottom:852.111563pt;}
.y2e4e_c00001{bottom:852.160000pt;}
.y31a3_c00001{bottom:852.320000pt;}
.y176b_c00001{bottom:852.427067pt;}
.y1d54_c00001{bottom:852.480000pt;}
.yc3b_c00001{bottom:852.507067pt;}
.y1110_c00001{bottom:852.587067pt;}
.y27b3_c00001{bottom:852.667067pt;}
.y149a_c00001{bottom:852.667259pt;}
.y33f8_c00001{bottom:852.746611pt;}
.y288f_c00001{bottom:852.747067pt;}
.y3130_c00001{bottom:852.800000pt;}
.y1363_c00001{bottom:852.829659pt;}
.y3a_c00001{bottom:852.907067pt;}
.y21d_c00001{bottom:852.987067pt;}
.y3688_c00001{bottom:852.987376pt;}
.yd60_c00001{bottom:853.147200pt;}
.y1f95_c00001{bottom:853.150939pt;}
.yfd_c00001{bottom:853.227067pt;}
.y1b88_c00001{bottom:853.280000pt;}
.y3945_c00001{bottom:853.306299pt;}
.y36f2_c00001{bottom:853.307067pt;}
.y1189_c00001{bottom:853.547067pt;}
.y1d05_c00001{bottom:853.600000pt;}
.y279f_c00001{bottom:853.627067pt;}
.y2223_c00001{bottom:853.707067pt;}
.y322c_c00001{bottom:853.920000pt;}
.y2b76_c00001{bottom:854.027067pt;}
.y1b37_c00001{bottom:854.080000pt;}
.y2df2_c00001{bottom:854.088960pt;}
.y797_c00001{bottom:854.107067pt;}
.y3464_c00001{bottom:854.267067pt;}
.y2316_c00001{bottom:854.346675pt;}
.y3844_c00001{bottom:854.347067pt;}
.y1e8b_c00001{bottom:854.400000pt;}
.y2cf_c00001{bottom:854.427067pt;}
.yfe9_c00001{bottom:854.507067pt;}
.y161a_c00001{bottom:854.667067pt;}
.y4fa_c00001{bottom:854.747067pt;}
.y13e1_c00001{bottom:854.827067pt;}
.y1c0c_c00001{bottom:854.880000pt;}
.yee3_c00001{bottom:854.987067pt;}
.y1894_c00001{bottom:855.147067pt;}
.y1b87_c00001{bottom:855.360000pt;}
.y14d_c00001{bottom:855.387067pt;}
.y197e_c00001{bottom:855.680000pt;}
.y404_c00001{bottom:855.787067pt;}
.y303e_c00001{bottom:855.840000pt;}
.y20ff_c00001{bottom:855.867067pt;}
.y1505_c00001{bottom:855.867827pt;}
.y386e_c00001{bottom:855.946811pt;}
.y1bcf_c00001{bottom:856.000000pt;}
.y2028_c00001{bottom:856.106675pt;}
.y2065_c00001{bottom:856.106739pt;}
.y49c_c00001{bottom:856.267067pt;}
.y2e4f_c00001{bottom:856.320000pt;}
.y34f1_c00001{bottom:856.346603pt;}
.y2cfd_c00001{bottom:856.424491pt;}
.y24d4_c00001{bottom:856.425955pt;}
.y398e_c00001{bottom:856.427067pt;}
.y2932_c00001{bottom:856.667067pt;}
.y20d4_c00001{bottom:856.744427pt;}
.y26cc_c00001{bottom:856.745891pt;}
.y3a08_c00001{bottom:856.747443pt;}
.y447_c00001{bottom:856.907067pt;}
.y2fe8_c00001{bottom:856.960000pt;}
.y120f_c00001{bottom:856.987067pt;}
.y82_c00001{bottom:857.067067pt;}
.y2eb0_c00001{bottom:857.120000pt;}
.y14c1_c00001{bottom:857.226723pt;}
.y3520_c00001{bottom:857.387067pt;}
.y2fc6_c00001{bottom:857.440000pt;}
.y1d0_c00001{bottom:857.707067pt;}
.y13e7_c00001{bottom:857.707147pt;}
.y28a_c00001{bottom:857.787067pt;}
.yc56_c00001{bottom:857.867067pt;}
.y142f_c00001{bottom:857.945675pt;}
.y18cf_c00001{bottom:857.947067pt;}
.y36be_c00001{bottom:858.107067pt;}
.y82e_c00001{bottom:858.107539pt;}
.y10ab_c00001{bottom:858.107547pt;}
.y147b_c00001{bottom:858.187067pt;}
.y3066_c00001{bottom:858.240000pt;}
.y2c1e_c00001{bottom:858.267067pt;}
.y953_c00001{bottom:858.267227pt;}
.y836_c00001{bottom:858.267859pt;}
.y10b4_c00001{bottom:858.267867pt;}
.y1a0_c00001{bottom:858.347067pt;}
.y28a9_c00001{bottom:858.427067pt;}
.y349e_c00001{bottom:858.507067pt;}
.y25c3_c00001{bottom:858.507131pt;}
.ye22_c00001{bottom:858.508147pt;}
.y18b2_c00001{bottom:858.667067pt;}
.y1c4a_c00001{bottom:858.720000pt;}
.y2505_c00001{bottom:858.825499pt;}
.yd7_c00001{bottom:858.827067pt;}
.y1e1a_c00001{bottom:858.880000pt;}
.y2a7e_c00001{bottom:858.907067pt;}
.y31cc_c00001{bottom:859.040000pt;}
.ybe3_c00001{bottom:859.147200pt;}
.y2d97_c00001{bottom:859.200000pt;}
.y35a4_c00001{bottom:859.227067pt;}
.y39e1_c00001{bottom:859.387067pt;}
.y18f2_c00001{bottom:859.545379pt;}
.y22e4_c00001{bottom:859.627067pt;}
.y1582_c00001{bottom:859.627147pt;}
.y23be_c00001{bottom:859.627619pt;}
.ycd9_c00001{bottom:859.787067pt;}
.y1685_c00001{bottom:859.787315pt;}
.y1927_c00001{bottom:859.840000pt;}
.y3640_c00001{bottom:859.867067pt;}
.y257a_c00001{bottom:859.947067pt;}
.y30b9_c00001{bottom:860.000000pt;}
.y22bf_c00001{bottom:860.027067pt;}
.y38ad_c00001{bottom:860.107067pt;}
.y303f_c00001{bottom:860.160000pt;}
.y3815_c00001{bottom:860.187067pt;}
.y1558_c00001{bottom:860.266883pt;}
.y3246_c00001{bottom:860.320000pt;}
.y13ee_c00001{bottom:860.347075pt;}
.y204c_c00001{bottom:860.347531pt;}
.y2ac6_c00001{bottom:860.427067pt;}
.y1d87_c00001{bottom:860.488960pt;}
.yb63_c00001{bottom:860.507067pt;}
.y21ad_c00001{bottom:860.587067pt;}
.y17c9_c00001{bottom:860.667067pt;}
.yd36_c00001{bottom:860.747067pt;}
.y1f33_c00001{bottom:860.748667pt;}
.y1e52_c00001{bottom:860.800000pt;}
.y3974_c00001{bottom:860.987067pt;}
.yd0c_c00001{bottom:861.067067pt;}
.y2b1b_c00001{bottom:861.067131pt;}
.y1a51_c00001{bottom:861.120000pt;}
.y37e6_c00001{bottom:861.147200pt;}
.yeed_c00001{bottom:861.147243pt;}
.yeea_c00001{bottom:861.147363pt;}
.y16d1_c00001{bottom:861.307067pt;}
.yef9_c00001{bottom:861.307243pt;}
.y2713_c00001{bottom:861.385667pt;}
.y2097_c00001{bottom:861.386675pt;}
.y385a_c00001{bottom:861.387067pt;}
.y2709_c00001{bottom:861.387131pt;}
.y2f5f_c00001{bottom:861.440000pt;}
.y2178_c00001{bottom:861.467067pt;}
.yfb8_c00001{bottom:861.707067pt;}
.y7ec_c00001{bottom:861.787067pt;}
.y2ee2_c00001{bottom:861.920000pt;}
.y425_c00001{bottom:861.947067pt;}
.y2266_c00001{bottom:862.027067pt;}
.y726_c00001{bottom:862.107067pt;}
.y1fed_c00001{bottom:862.187067pt;}
.y1901_c00001{bottom:862.232000pt;}
.y1a52_c00001{bottom:862.240000pt;}
.y25a2_c00001{bottom:862.267067pt;}
.ya99_c00001{bottom:862.347067pt;}
.y361d_c00001{bottom:862.427067pt;}
.y2eeb_c00001{bottom:862.560000pt;}
.y214e_c00001{bottom:862.587067pt;}
.y37fc_c00001{bottom:862.667067pt;}
.y1a55_c00001{bottom:862.720000pt;}
.y358c_c00001{bottom:862.826603pt;}
.y85e_c00001{bottom:862.907067pt;}
.y13f2_c00001{bottom:863.226667pt;}
.ye9f_c00001{bottom:863.227067pt;}
.y2413_c00001{bottom:863.467067pt;}
.y1ee7_c00001{bottom:863.520000pt;}
.y353c_c00001{bottom:863.547067pt;}
.y166e_c00001{bottom:863.627067pt;}
.y3067_c00001{bottom:863.680000pt;}
.y9ef_c00001{bottom:863.867067pt;}
.y2467_c00001{bottom:863.947067pt;}
.y2cd1_c00001{bottom:864.105891pt;}
.y2419_c00001{bottom:864.107067pt;}
.y30ba_c00001{bottom:864.160000pt;}
.y2d98_c00001{bottom:864.320000pt;}
.y34dc_c00001{bottom:864.347067pt;}
.y1c0b_c00001{bottom:864.480000pt;}
.yab1_c00001{bottom:864.507067pt;}
.yf8b_c00001{bottom:864.587067pt;}
.y3506_c00001{bottom:864.907067pt;}
.ya32_c00001{bottom:864.987067pt;}
.y25ef_c00001{bottom:865.147200pt;}
.y188d_c00001{bottom:865.227067pt;}
.y2e7e_c00001{bottom:865.286240pt;}
.y16f0_c00001{bottom:865.307067pt;}
.y374_c00001{bottom:865.387067pt;}
.y235_c00001{bottom:865.467067pt;}
.y3944_c00001{bottom:865.546555pt;}
.y1e1e_c00001{bottom:865.600000pt;}
.y1d04_c00001{bottom:865.760000pt;}
.y3423_c00001{bottom:865.867067pt;}
.ya31_c00001{bottom:865.947067pt;}
.y923_c00001{bottom:866.027067pt;}
.y294e_c00001{bottom:866.027131pt;}
.y19b8_c00001{bottom:866.080000pt;}
.y14c_c00001{bottom:866.107067pt;}
.y3174_c00001{bottom:866.240000pt;}
.y967_c00001{bottom:866.267067pt;}
.y239c_c00001{bottom:866.347067pt;}
.y1a9b_c00001{bottom:866.400000pt;}
.y2df1_c00001{bottom:866.406240pt;}
.y27b2_c00001{bottom:866.507067pt;}
.y2007_c00001{bottom:866.587067pt;}
.y476_c00001{bottom:866.667067pt;}
.y32f3_c00001{bottom:866.720000pt;}
.y38c7_c00001{bottom:866.747067pt;}
.y331a_c00001{bottom:866.880000pt;}
.yadf_c00001{bottom:866.907067pt;}
.y11f5_c00001{bottom:866.987067pt;}
.y1785_c00001{bottom:867.067067pt;}
.y3687_c00001{bottom:867.067288pt;}
.y1164_c00001{bottom:867.147200pt;}
.y3a9_c00001{bottom:867.227067pt;}
.yf4a_c00001{bottom:867.307067pt;}
.y828_c00001{bottom:867.307235pt;}
.y10a3_c00001{bottom:867.307243pt;}
.y3476_c00001{bottom:867.387067pt;}
.y107f_c00001{bottom:867.467067pt;}
.y3285_c00001{bottom:867.680000pt;}
.y279e_c00001{bottom:867.707067pt;}
.y15f0_c00001{bottom:867.787067pt;}
.y2688_c00001{bottom:867.867067pt;}
.y1fd2_c00001{bottom:867.947067pt;}
.y7ca_c00001{bottom:868.027067pt;}
.y1861_c00001{bottom:868.107067pt;}
.y24a1_c00001{bottom:868.187067pt;}
.y26a8_c00001{bottom:868.267067pt;}
.y1b34_c00001{bottom:868.320000pt;}
.yc08_c00001{bottom:868.347067pt;}
.y2f98_c00001{bottom:868.486240pt;}
.ye49_c00001{bottom:868.667067pt;}
.y27fa_c00001{bottom:868.747067pt;}
.y1a05_c00001{bottom:868.800000pt;}
.y233c_c00001{bottom:868.827067pt;}
.y1fbd_c00001{bottom:868.906611pt;}
.y30e_c00001{bottom:868.907067pt;}
.y28f6_c00001{bottom:869.067067pt;}
.y21e2_c00001{bottom:869.147200pt;}
.y19f_c00001{bottom:869.227067pt;}
.y3925_c00001{bottom:869.307067pt;}
.yd_c00001{bottom:869.387067pt;}
.y30ec_c00001{bottom:869.440000pt;}
.y110f_c00001{bottom:869.467067pt;}
.y39b1_c00001{bottom:869.547067pt;}
.y1bce_c00001{bottom:869.600000pt;}
.y1cc1_c00001{bottom:869.760000pt;}
.y22a8_c00001{bottom:869.867067pt;}
.yb36_c00001{bottom:870.027067pt;}
.y39df_c00001{bottom:870.106667pt;}
.y103f_c00001{bottom:870.107067pt;}
.y28e6_c00001{bottom:870.187067pt;}
.y1188_c00001{bottom:870.427067pt;}
.y273b_c00001{bottom:870.507067pt;}
.y3115_c00001{bottom:870.560000pt;}
.y1427_c00001{bottom:870.746675pt;}
.y4f9_c00001{bottom:870.747067pt;}
.y17f0_c00001{bottom:870.827067pt;}
.y3a07_c00001{bottom:870.827355pt;}
.yee2_c00001{bottom:870.907067pt;}
.y2373_c00001{bottom:870.987067pt;}
.y129_c00001{bottom:871.067067pt;}
.y1f94_c00001{bottom:871.070299pt;}
.y1818_c00001{bottom:871.147067pt;}
.y38ac_c00001{bottom:871.147200pt;}
.yfc_c00001{bottom:871.307067pt;}
.y1eb8_c00001{bottom:871.360000pt;}
.y2e23_c00001{bottom:871.366240pt;}
.y75e_c00001{bottom:871.387067pt;}
.y2a24_c00001{bottom:871.547067pt;}
.yc3a_c00001{bottom:871.627067pt;}
.y32a8_c00001{bottom:871.680000pt;}
.y26bc_c00001{bottom:871.867067pt;}
.y1499_c00001{bottom:872.027195pt;}
.y377d_c00001{bottom:872.107067pt;}
.y32cb_c00001{bottom:872.160000pt;}
.yd5f_c00001{bottom:872.187067pt;}
.y243d_c00001{bottom:872.267067pt;}
.y2c1d_c00001{bottom:872.347067pt;}
.yaa_c00001{bottom:872.427067pt;}
.y212a_c00001{bottom:872.427131pt;}
.y1b35_c00001{bottom:872.480000pt;}
.y28d9_c00001{bottom:872.507067pt;}
.y37b2_c00001{bottom:872.667067pt;}
.y3393_c00001{bottom:872.747067pt;}
.y1504_c00001{bottom:872.747747pt;}
.y1d86_c00001{bottom:872.806240pt;}
.y2ce_c00001{bottom:872.827067pt;}
.y2444_c00001{bottom:872.907067pt;}
.y169e_c00001{bottom:873.067067pt;}
.yc55_c00001{bottom:873.227067pt;}
.y39e0_c00001{bottom:873.307067pt;}
.y35a3_c00001{bottom:873.387067pt;}
.y82d_c00001{bottom:873.387371pt;}
.y10aa_c00001{bottom:873.387379pt;}
.y1b80_c00001{bottom:873.440000pt;}
.y176a_c00001{bottom:873.547067pt;}
.y835_c00001{bottom:873.547691pt;}
.y10b3_c00001{bottom:873.547699pt;}
.y1c81_c00001{bottom:873.600000pt;}
.y2315_c00001{bottom:873.706611pt;}
.y35e3_c00001{bottom:873.707067pt;}
.y23bd_c00001{bottom:873.707531pt;}
.y14c0_c00001{bottom:873.947067pt;}
.y5c_c00001{bottom:874.187067pt;}
.y2e4c_c00001{bottom:874.240000pt;}
.y2eaf_c00001{bottom:874.400000pt;}
.y36f1_c00001{bottom:874.427067pt;}
.y2c3a_c00001{bottom:874.507067pt;}
.y204b_c00001{bottom:874.507243pt;}
.y2fc5_c00001{bottom:874.560000pt;}
.y13e6_c00001{bottom:874.587067pt;}
.y3154_c00001{bottom:874.720000pt;}
.y20fe_c00001{bottom:874.747067pt;}
.y2b8f_c00001{bottom:874.827067pt;}
.y144a_c00001{bottom:874.907067pt;}
.y2b20_c00001{bottom:875.146419pt;}
.y2222_c00001{bottom:875.147131pt;}
.y952_c00001{bottom:875.147147pt;}
.y398d_c00001{bottom:875.147200pt;}
.y31a0_c00001{bottom:875.200000pt;}
.y591_c00001{bottom:875.307067pt;}
.y9a8_c00001{bottom:875.387067pt;}
.ye21_c00001{bottom:875.388067pt;}
.y2027_c00001{bottom:875.466611pt;}
.y2064_c00001{bottom:875.466675pt;}
.y39_c00001{bottom:875.467067pt;}
.y142e_c00001{bottom:875.626299pt;}
.y2081_c00001{bottom:875.627067pt;}
.y322b_c00001{bottom:875.680000pt;}
.ycb1_c00001{bottom:875.707067pt;}
.y2cfc_c00001{bottom:875.784427pt;}
.y24d3_c00001{bottom:875.785891pt;}
.y13a3_c00001{bottom:875.787067pt;}
.y3017_c00001{bottom:875.840000pt;}
.y3798_c00001{bottom:875.867067pt;}
.y3116_c00001{bottom:876.000000pt;}
.ybe2_c00001{bottom:876.027067pt;}
.ybb5_c00001{bottom:876.107067pt;}
.y1a09_c00001{bottom:876.160000pt;}
.y20d3_c00001{bottom:876.184883pt;}
.y21ac_c00001{bottom:876.186347pt;}
.y1893_c00001{bottom:876.347067pt;}
.y1fa1_c00001{bottom:876.427067pt;}
.y796_c00001{bottom:876.507067pt;}
.yeec_c00001{bottom:876.507235pt;}
.yee9_c00001{bottom:876.507355pt;}
.ycd8_c00001{bottom:876.667067pt;}
.yef8_c00001{bottom:876.667235pt;}
.y2931_c00001{bottom:876.747067pt;}
.y3131_c00001{bottom:876.800000pt;}
.y147a_c00001{bottom:876.827067pt;}
.y13f1_c00001{bottom:876.987067pt;}
.y1c0a_c00001{bottom:877.120000pt;}
.y1557_c00001{bottom:877.146803pt;}
.y7eb_c00001{bottom:877.147200pt;}
.yd6_c00001{bottom:877.227067pt;}
.y1ae9_c00001{bottom:877.280000pt;}
.y11da_c00001{bottom:877.307067pt;}
.y12da_c00001{bottom:877.387067pt;}
.y2e7d_c00001{bottom:877.442720pt;}
.y2838_c00001{bottom:877.547067pt;}
.yd35_c00001{bottom:877.627067pt;}
.y1c82_c00001{bottom:877.760000pt;}
.y3943_c00001{bottom:877.786811pt;}
.y25c2_c00001{bottom:877.867067pt;}
.yd0b_c00001{bottom:877.947067pt;}
.y1684_c00001{bottom:878.187067pt;}
.y2504_c00001{bottom:878.265955pt;}
.y355e_c00001{bottom:878.267067pt;}
.y38c5_c00001{bottom:878.347067pt;}
.yf8a_c00001{bottom:878.347467pt;}
.y361c_c00001{bottom:878.427067pt;}
.y28a8_c00001{bottom:878.507067pt;}
.y2e4d_c00001{bottom:878.560000pt;}
.y2df0_c00001{bottom:878.562720pt;}
.y321e_c00001{bottom:878.589403pt;}
.y2554_c00001{bottom:878.667067pt;}
.y1e4d_c00001{bottom:878.720000pt;}
.y344e_c00001{bottom:878.827067pt;}
.y1ee6_c00001{bottom:878.880000pt;}
.y18f1_c00001{bottom:878.905315pt;}
.y1de1_c00001{bottom:879.040000pt;}
.y18ce_c00001{bottom:879.067067pt;}
.y172c_c00001{bottom:879.147067pt;}
.y22be_c00001{bottom:879.147200pt;}
.y3264_c00001{bottom:879.195040pt;}
.y1aec_c00001{bottom:879.200000pt;}
.y14e2_c00001{bottom:879.307067pt;}
.y2d24_c00001{bottom:879.308603pt;}
.y2ee1_c00001{bottom:879.360000pt;}
.y39ca_c00001{bottom:879.387067pt;}
.y1f73_c00001{bottom:879.388523pt;}
.y2a99_c00001{bottom:879.466667pt;}
.y20b7_c00001{bottom:879.707067pt;}
.y18b1_c00001{bottom:879.867067pt;}
.y2418_c00001{bottom:879.947067pt;}
.y36d6_c00001{bottom:880.027067pt;}
.y10c8_c00001{bottom:880.107067pt;}
.y1d53_c00001{bottom:880.160000pt;}
.y2ac5_c00001{bottom:880.427067pt;}
.y3089_c00001{bottom:880.480000pt;}
.y446_c00001{bottom:880.587067pt;}
.y2f97_c00001{bottom:880.642720pt;}
.y38e3_c00001{bottom:880.667067pt;}
.y2712_c00001{bottom:880.745603pt;}
.y2096_c00001{bottom:880.746611pt;}
.y85d_c00001{bottom:880.747067pt;}
.y228c_c00001{bottom:880.827067pt;}
.y1013_c00001{bottom:880.987067pt;}
.y279d_c00001{bottom:881.067067pt;}
.y25ee_c00001{bottom:881.147067pt;}
.y3686_c00001{bottom:881.147200pt;}
.ya98_c00001{bottom:881.387067pt;}
.y214d_c00001{bottom:881.467067pt;}
.y3973_c00001{bottom:881.547067pt;}
.y3814_c00001{bottom:881.626675pt;}
.y3422_c00001{bottom:881.707067pt;}
.y164e_c00001{bottom:882.027067pt;}
.y31a1_c00001{bottom:882.080000pt;}
.y1f32_c00001{bottom:882.188395pt;}
.y30b7_c00001{bottom:882.240000pt;}
.y1619_c00001{bottom:882.267067pt;}
.y16d0_c00001{bottom:882.427067pt;}
.y827_c00001{bottom:882.587067pt;}
.y10a2_c00001{bottom:882.587075pt;}
.y373_c00001{bottom:882.667067pt;}
.y2a64_c00001{bottom:882.827067pt;}
.y1e19_c00001{bottom:882.880000pt;}
.y9ee_c00001{bottom:882.907067pt;}
.y403_c00001{bottom:883.387067pt;}
.y3924_c00001{bottom:883.467067pt;}
.y2f5e_c00001{bottom:883.520000pt;}
.y2cd0_c00001{bottom:883.546347pt;}
.y922_c00001{bottom:883.547067pt;}
.y353b_c00001{bottom:883.627067pt;}
.y2e22_c00001{bottom:883.683520pt;}
.y27b1_c00001{bottom:883.707243pt;}
.y3408_c00001{bottom:883.867067pt;}
.y2a0d_c00001{bottom:883.947067pt;}
.yf49_c00001{bottom:884.187067pt;}
.y1a99_c00001{bottom:884.320000pt;}
.y33a9_c00001{bottom:884.347067pt;}
.y12e0_c00001{bottom:884.427067pt;}
.yfb_c00001{bottom:884.507067pt;}
.y1120_c00001{bottom:884.587067pt;}
.y31cd_c00001{bottom:884.640000pt;}
.y81_c00001{bottom:884.667067pt;}
.y3a8_c00001{bottom:884.747067pt;}
.y2006_c00001{bottom:884.827067pt;}
.y3433_c00001{bottom:884.907067pt;}
.y1de0_c00001{bottom:884.960000pt;}
.y3505_c00001{bottom:884.987067pt;}
.y475_c00001{bottom:885.067067pt;}
.y19b7_c00001{bottom:885.120000pt;}
.y1d85_c00001{bottom:885.123520pt;}
.y386d_c00001{bottom:885.147200pt;}
.yc07_c00001{bottom:885.227067pt;}
.y2f1f_c00001{bottom:885.280000pt;}
.ydef_c00001{bottom:885.307067pt;}
.y14b_c00001{bottom:885.387067pt;}
.y15ee_c00001{bottom:885.387907pt;}
.y1a49_c00001{bottom:885.600000pt;}
.y2487_c00001{bottom:885.787067pt;}
.y22a7_c00001{bottom:885.867067pt;}
.yade_c00001{bottom:886.027067pt;}
.y35fa_c00001{bottom:886.107595pt;}
.y1c49_c00001{bottom:886.240000pt;}
.y33bf_c00001{bottom:886.267067pt;}
.y110e_c00001{bottom:886.347067pt;}
.y30b8_c00001{bottom:886.400000pt;}
.y16ef_c00001{bottom:886.427067pt;}
.y1860_c00001{bottom:886.507067pt;}
.y1eb7_c00001{bottom:886.560000pt;}
.y294d_c00001{bottom:886.667067pt;}
.y1c09_c00001{bottom:886.720000pt;}
.y4f8_c00001{bottom:886.747067pt;}
.y103e_c00001{bottom:886.907067pt;}
.y39b0_c00001{bottom:887.067067pt;}
.y39af_c00001{bottom:887.147200pt;}
.y30d_c00001{bottom:887.307067pt;}
.y2d6c_c00001{bottom:887.352320pt;}
.y35c5_c00001{bottom:887.387067pt;}
.y3475_c00001{bottom:887.467067pt;}
.y2bc7_c00001{bottom:887.547067pt;}
.y1b85_c00001{bottom:887.680000pt;}
.y2913_c00001{bottom:887.707067pt;}
.y23e9_c00001{bottom:887.787067pt;}
.y23bc_c00001{bottom:887.787443pt;}
.y2eae_c00001{bottom:887.840000pt;}
.y34b3_c00001{bottom:887.867067pt;}
.y1bcd_c00001{bottom:888.000000pt;}
.y2192_c00001{bottom:888.107067pt;}
.y2fc4_c00001{bottom:888.160000pt;}
.y1784_c00001{bottom:888.187067pt;}
.yfe8_c00001{bottom:888.267067pt;}
.y1fbc_c00001{bottom:888.347067pt;}
.y1a9a_c00001{bottom:888.480000pt;}
.yb35_c00001{bottom:888.507067pt;}
.y166d_c00001{bottom:888.507315pt;}
.y204a_c00001{bottom:888.587155pt;}
.y32a7_c00001{bottom:888.640000pt;}
.y82c_c00001{bottom:888.747363pt;}
.y10a9_c00001{bottom:888.747371pt;}
.y2443_c00001{bottom:888.827067pt;}
.y834_c00001{bottom:888.907683pt;}
.y10b2_c00001{bottom:888.907691pt;}
.y1f93_c00001{bottom:888.989659pt;}
.y1955_c00001{bottom:889.147067pt;}
.yc39_c00001{bottom:889.307067pt;}
.y1163_c00001{bottom:889.547067pt;}
.y8b0_c00001{bottom:889.547315pt;}
.y1503_c00001{bottom:889.627667pt;}
.y691_c00001{bottom:889.707067pt;}
.y1aeb_c00001{bottom:889.760000pt;}
.yb4e_c00001{bottom:889.787067pt;}
.y2780_c00001{bottom:889.787355pt;}
.y1fd1_c00001{bottom:889.947067pt;}
.y3942_c00001{bottom:890.027067pt;}
.y1426_c00001{bottom:890.106611pt;}
.y35e2_c00001{bottom:890.107067pt;}
.yc_c00001{bottom:890.427067pt;}
.y1b33_c00001{bottom:890.560000pt;}
.y197d_c00001{bottom:890.720000pt;}
.ya30_c00001{bottom:890.747067pt;}
.yb62_c00001{bottom:890.827067pt;}
.y2def_c00001{bottom:890.880000pt;}
.y21e1_c00001{bottom:891.067067pt;}
.y13e0_c00001{bottom:891.147067pt;}
.y2cd_c00001{bottom:891.227067pt;}
.y27b0_c00001{bottom:891.387067pt;}
.y1498_c00001{bottom:891.467651pt;}
.y1e1d_c00001{bottom:891.520000pt;}
.y1364_c00001{bottom:891.547067pt;}
.y3907_c00001{bottom:891.627067pt;}
.y2177_c00001{bottom:891.707067pt;}
.ybdf_c00001{bottom:891.787067pt;}
.yee8_c00001{bottom:891.787187pt;}
.y14bf_c00001{bottom:891.867067pt;}
.yef7_c00001{bottom:891.947067pt;}
.y375a_c00001{bottom:892.027067pt;}
.y260c_c00001{bottom:892.107067pt;}
.yf89_c00001{bottom:892.187067pt;}
.ye20_c00001{bottom:892.187467pt;}
.ybe1_c00001{bottom:892.267067pt;}
.y37d8_c00001{bottom:892.427067pt;}
.y7ea_c00001{bottom:892.507067pt;}
.y1449_c00001{bottom:892.587067pt;}
.y3153_c00001{bottom:892.640000pt;}
.y37b1_c00001{bottom:892.667067pt;}
.y13a2_c00001{bottom:892.747067pt;}
.y2f96_c00001{bottom:892.960000pt;}
.y142b_c00001{bottom:893.066443pt;}
.yead_c00001{bottom:893.067067pt;}
.y231c_c00001{bottom:893.147067pt;}
.y142d_c00001{bottom:893.226763pt;}
.y1581_c00001{bottom:893.307067pt;}
.ybde_c00001{bottom:893.467067pt;}
.ycd7_c00001{bottom:893.547067pt;}
.y2b8c_c00001{bottom:893.707067pt;}
.y39de_c00001{bottom:893.787067pt;}
.y35f9_c00001{bottom:893.787419pt;}
.y945_c00001{bottom:893.867067pt;}
.y3088_c00001{bottom:893.920000pt;}
.y1556_c00001{bottom:894.026723pt;}
.y1a00_c00001{bottom:894.080000pt;}
.y1ee5_c00001{bottom:894.240000pt;}
.y2314_c00001{bottom:894.427067pt;}
.y2b1f_c00001{bottom:894.506355pt;}
.yd34_c00001{bottom:894.507067pt;}
.y3263_c00001{bottom:894.560000pt;}
.y1cc0_c00001{bottom:894.563520pt;}
.y349d_c00001{bottom:894.587067pt;}
.y1769_c00001{bottom:894.747067pt;}
.y20fd_c00001{bottom:894.747155pt;}
.yd0a_c00001{bottom:894.827067pt;}
.y202a_c00001{bottom:894.907067pt;}
.y2063_c00001{bottom:894.907131pt;}
.y2264_c00001{bottom:894.907195pt;}
.y107e_c00001{bottom:895.067067pt;}
.y36bc_c00001{bottom:895.147067pt;}
.y2cfb_c00001{bottom:895.224883pt;}
.y24d2_c00001{bottom:895.226347pt;}
.y2a63_c00001{bottom:895.227067pt;}
.y1479_c00001{bottom:895.387067pt;}
.y32f2_c00001{bottom:895.520000pt;}
.y20d2_c00001{bottom:895.544819pt;}
.y20cd_c00001{bottom:895.546283pt;}
.yd5_c00001{bottom:895.627067pt;}
.y1c7f_c00001{bottom:895.680000pt;}
.ybb4_c00001{bottom:895.707067pt;}
.y2e21_c00001{bottom:895.840000pt;}
.y2417_c00001{bottom:895.867067pt;}
.y2026_c00001{bottom:896.187067pt;}
.ye48_c00001{bottom:896.267067pt;}
.y363f_c00001{bottom:896.667067pt;}
.y2080_c00001{bottom:896.747067pt;}
.y3284_c00001{bottom:896.816000pt;}
.y2930_c00001{bottom:896.827067pt;}
.y1a4b_c00001{bottom:896.960000pt;}
.y27f9_c00001{bottom:896.987067pt;}
.y3354_c00001{bottom:897.120000pt;}
.y1d84_c00001{bottom:897.280000pt;}
.y252e_c00001{bottom:897.546835pt;}
.y172b_c00001{bottom:897.547067pt;}
.y2503_c00001{bottom:897.625891pt;}
.y344d_c00001{bottom:897.627067pt;}
.y28f5_c00001{bottom:897.787067pt;}
.y1e50_c00001{bottom:897.920000pt;}
.y10a1_c00001{bottom:897.947067pt;}
.y37c8_c00001{bottom:898.027067pt;}
.y1a4c_c00001{bottom:898.080000pt;}
.y2b8e_c00001{bottom:898.107067pt;}
.y25c1_c00001{bottom:898.267067pt;}
.y18f0_c00001{bottom:898.345771pt;}
.y18b0_c00001{bottom:898.347067pt;}
.y826_c00001{bottom:898.507067pt;}
.y28a7_c00001{bottom:898.587067pt;}
.y5e7_c00001{bottom:898.667067pt;}
.y1a4e_c00001{bottom:898.720000pt;}
.y8ff_c00001{bottom:898.747067pt;}
.y3113_c00001{bottom:898.880000pt;}
.y9d4_c00001{bottom:898.987067pt;}
.y2e4b_c00001{bottom:899.042720pt;}
.y376e_c00001{bottom:899.227067pt;}
.y1c08_c00001{bottom:899.360000pt;}
.y2708_c00001{bottom:899.387067pt;}
.y85c_c00001{bottom:899.787067pt;}
.y1c80_c00001{bottom:899.840000pt;}
.ya9_c00001{bottom:900.027067pt;}
.y28d8_c00001{bottom:900.107067pt;}
.y795_c00001{bottom:900.187067pt;}
.y18cd_c00001{bottom:900.267067pt;}
.y3392_c00001{bottom:900.347067pt;}
.y921_c00001{bottom:900.427067pt;}
.y1926_c00001{bottom:900.476160pt;}
.y2486_c00001{bottom:900.507067pt;}
.y1683_c00001{bottom:900.667067pt;}
.y3474_c00001{bottom:900.747067pt;}
.y20b6_c00001{bottom:900.827067pt;}
.y372_c00001{bottom:901.067067pt;}
.y3813_c00001{bottom:901.067131pt;}
.y37e5_c00001{bottom:901.227067pt;}
.y2095_c00001{bottom:901.467067pt;}
.y214c_c00001{bottom:901.467155pt;}
.y35f8_c00001{bottom:901.467243pt;}
.y35c4_c00001{bottom:901.547067pt;}
.y32ca_c00001{bottom:901.600000pt;}
.y5b_c00001{bottom:901.787067pt;}
.y23bb_c00001{bottom:901.867355pt;}
.y1eb6_c00001{bottom:901.920000pt;}
.y9ed_c00001{bottom:902.027067pt;}
.yc06_c00001{bottom:902.107067pt;}
.y2bda_c00001{bottom:902.187067pt;}
.y3a7_c00001{bottom:902.267067pt;}
.y15ed_c00001{bottom:902.267827pt;}
.y25ed_c00001{bottom:902.347067pt;}
.y2049_c00001{bottom:902.667067pt;}
.y4f7_c00001{bottom:902.747067pt;}
.y2ccf_c00001{bottom:902.906283pt;}
.y725_c00001{bottom:902.907067pt;}
.y3114_c00001{bottom:903.040000pt;}
.y38_c00001{bottom:903.067067pt;}
.y3571_c00001{bottom:903.307067pt;}
.y2d4b_c00001{bottom:903.360000pt;}
.y13df_c00001{bottom:903.387067pt;}
.y474_c00001{bottom:903.467067pt;}
.y2d6b_c00001{bottom:903.516160pt;}
.y1d00_c00001{bottom:903.532480pt;}
.y12df_c00001{bottom:903.547067pt;}
.y16cf_c00001{bottom:903.627067pt;}
.y526_c00001{bottom:903.707067pt;}
.y1f31_c00001{bottom:903.708275pt;}
.y103d_c00001{bottom:903.787067pt;}
.y49b_c00001{bottom:903.787163pt;}
.yc54_c00001{bottom:903.867067pt;}
.y277f_c00001{bottom:903.947067pt;}
.y1fa0_c00001{bottom:904.027067pt;}
.y1187_c00001{bottom:904.107067pt;}
.y82b_c00001{bottom:904.107355pt;}
.y10a8_c00001{bottom:904.107363pt;}
.y1d52_c00001{bottom:904.160000pt;}
.y833_c00001{bottom:904.267675pt;}
.y10b1_c00001{bottom:904.267683pt;}
.y30b5_c00001{bottom:904.320000pt;}
.y3668_c00001{bottom:904.427067pt;}
.y39dd_c00001{bottom:904.506667pt;}
.ybe0_c00001{bottom:904.587067pt;}
.y2442_c00001{bottom:904.667067pt;}
.y239b_c00001{bottom:904.747067pt;}
.y2e7c_c00001{bottom:904.800000pt;}
.y319f_c00001{bottom:904.960000pt;}
.yadd_c00001{bottom:905.067067pt;}
.yfe7_c00001{bottom:905.147067pt;}
.y266d_c00001{bottom:905.307067pt;}
.y32a6_c00001{bottom:905.440000pt;}
.y34b2_c00001{bottom:905.467067pt;}
.y34f0_c00001{bottom:905.627067pt;}
.y30c_c00001{bottom:905.707067pt;}
.y2dee_c00001{bottom:906.080000pt;}
.y260b_c00001{bottom:906.187067pt;}
.y2ead_c00001{bottom:906.240000pt;}
.y386c_c00001{bottom:906.267067pt;}
.y1bcc_c00001{bottom:906.400000pt;}
.y1502_c00001{bottom:906.427067pt;}
.y2a0c_c00001{bottom:906.507067pt;}
.y1a97_c00001{bottom:906.560000pt;}
.y1cbf_c00001{bottom:906.720000pt;}
.y1f92_c00001{bottom:906.829963pt;}
.y164d_c00001{bottom:906.907067pt;}
.y35e1_c00001{bottom:906.987067pt;}
.y3262_c00001{bottom:907.200000pt;}
.yee1_c00001{bottom:907.227067pt;}
.y19b6_c00001{bottom:907.525280pt;}
.y16ee_c00001{bottom:907.627067pt;}
.yb_c00001{bottom:907.707067pt;}
.y7e9_c00001{bottom:907.787067pt;}
.y1b7a_c00001{bottom:907.840000pt;}
.y8af_c00001{bottom:907.947067pt;}
.y1b30_c00001{bottom:908.000000pt;}
.y690_c00001{bottom:908.107067pt;}
.y1dde_c00001{bottom:908.172480pt;}
.y128_c00001{bottom:908.187067pt;}
.yf88_c00001{bottom:908.427067pt;}
.y1fbb_c00001{bottom:908.427131pt;}
.y30b6_c00001{bottom:908.480000pt;}
.y2f5d_c00001{bottom:908.640000pt;}
.y2b8d_c00001{bottom:908.667067pt;}
.y20fc_c00001{bottom:908.827067pt;}
.y363e_c00001{bottom:908.987067pt;}
.y26bb_c00001{bottom:909.067067pt;}
.ye1f_c00001{bottom:909.067387pt;}
.y3175_c00001{bottom:909.120000pt;}
.ya2f_c00001{bottom:909.147067pt;}
.ycb0_c00001{bottom:909.387067pt;}
.y1425_c00001{bottom:909.547067pt;}
.y1ee4_c00001{bottom:909.600000pt;}
.y2cc_c00001{bottom:909.627067pt;}
.y348a_c00001{bottom:909.947067pt;}
.y33be_c00001{bottom:910.027067pt;}
.yd5e_c00001{bottom:910.187067pt;}
.ycd6_c00001{bottom:910.427067pt;}
.y1f57_c00001{bottom:910.587067pt;}
.y1a98_c00001{bottom:910.720000pt;}
.y142a_c00001{bottom:910.747067pt;}
.y1d83_c00001{bottom:910.880000pt;}
.y142c_c00001{bottom:910.906051pt;}
.y2687_c00001{bottom:910.907067pt;}
.y402_c00001{bottom:910.987067pt;}
.y2e20_c00001{bottom:911.040000pt;}
.y1c48_c00001{bottom:911.043520pt;}
.y243c_c00001{bottom:911.067067pt;}
.y1fd0_c00001{bottom:911.147067pt;}
.y322a_c00001{bottom:911.336320pt;}
.y197c_c00001{bottom:911.352320pt;}
.y2e4a_c00001{bottom:911.360000pt;}
.yd33_c00001{bottom:911.387067pt;}
.y2855_c00001{bottom:911.627067pt;}
.y7c9_c00001{bottom:911.707067pt;}
.y102d_c00001{bottom:911.787067pt;}
.ybdd_c00001{bottom:911.867067pt;}
.yf25_c00001{bottom:912.107067pt;}
.y111f_c00001{bottom:912.187067pt;}
.y1954_c00001{bottom:912.266811pt;}
.y80_c00001{bottom:912.267067pt;}
.y1b7f_c00001{bottom:912.480000pt;}
.y321d_c00001{bottom:912.508819pt;}
.y3016_c00001{bottom:912.640000pt;}
.y21e0_c00001{bottom:912.747067pt;}
.y2b74_c00001{bottom:912.827067pt;}
.y2176_c00001{bottom:912.907067pt;}
.y49a_c00001{bottom:912.987067pt;}
.y3a3e_c00001{bottom:913.067067pt;}
.y1a04_c00001{bottom:913.120000pt;}
.y2d95_c00001{bottom:913.122560pt;}
.y2313_c00001{bottom:913.146675pt;}
.y17ef_c00001{bottom:913.147067pt;}
.y1892_c00001{bottom:913.227067pt;}
.y1817_c00001{bottom:913.467067pt;}
.y3283_c00001{bottom:913.611520pt;}
.y10a0_c00001{bottom:913.867067pt;}
.y2b1e_c00001{bottom:913.946811pt;}
.y1478_c00001{bottom:913.947067pt;}
.y2b1a_c00001{bottom:913.947131pt;}
.yd4_c00001{bottom:914.027067pt;}
.y1b7d_c00001{bottom:914.080000pt;}
.y206a_c00001{bottom:914.267067pt;}
.y2263_c00001{bottom:914.267131pt;}
.y2bd9_c00001{bottom:914.507067pt;}
.y2cfa_c00001{bottom:914.584819pt;}
.y24d1_c00001{bottom:914.586283pt;}
.y279c_c00001{bottom:914.667067pt;}
.y2205_c00001{bottom:914.747067pt;}
.y20d1_c00001{bottom:914.904755pt;}
.y2025_c00001{bottom:914.906219pt;}
.y2221_c00001{bottom:914.907067pt;}
.y1d51_c00001{bottom:915.200000pt;}
.y2b75_c00001{bottom:915.307067pt;}
.y3353_c00001{bottom:915.520000pt;}
.y2062_c00001{bottom:915.547067pt;}
.y13de_c00001{bottom:915.627067pt;}
.y1cff_c00001{bottom:915.688960pt;}
.y1768_c00001{bottom:915.867067pt;}
.y172a_c00001{bottom:915.947067pt;}
.y23ba_c00001{bottom:916.027067pt;}
.y2553_c00001{bottom:916.267067pt;}
.y288e_c00001{bottom:916.427067pt;}
.y1925_c00001{bottom:916.640000pt;}
.y3570_c00001{bottom:916.667067pt;}
.y18af_c00001{bottom:916.747067pt;}
.y825_c00001{bottom:916.907067pt;}
.y2502_c00001{bottom:917.066347pt;}
.y113d_c00001{bottom:917.067067pt;}
.y1eb5_c00001{bottom:917.280000pt;}
.y3152_c00001{bottom:917.282720pt;}
.yac2_c00001{bottom:917.387067pt;}
.y18ef_c00001{bottom:917.705707pt;}
.y1c7d_c00001{bottom:917.760000pt;}
.y920_c00001{bottom:917.947067pt;}
.y37c7_c00001{bottom:918.107067pt;}
.y27f8_c00001{bottom:918.187067pt;}
.y2dbf_c00001{bottom:918.240000pt;}
.y32c9_c00001{bottom:918.400000pt;}
.yb61_c00001{bottom:918.427067pt;}
.y207f_c00001{bottom:918.587067pt;}
.y85b_c00001{bottom:918.667067pt;}
.y2094_c00001{bottom:918.747067pt;}
.y33f7_c00001{bottom:918.827067pt;}
.y15ec_c00001{bottom:919.147747pt;}
.yc53_c00001{bottom:919.227067pt;}
.y4f6_c00001{bottom:919.307067pt;}
.ya97_c00001{bottom:919.387067pt;}
.y82a_c00001{bottom:919.387187pt;}
.y10a7_c00001{bottom:919.387195pt;}
.y371_c00001{bottom:919.467067pt;}
.y294c_c00001{bottom:919.547067pt;}
.y832_c00001{bottom:919.547507pt;}
.y10b0_c00001{bottom:919.547515pt;}
.y2d6a_c00001{bottom:919.680000pt;}
.y3a6_c00001{bottom:919.787067pt;}
.y19b5_c00001{bottom:919.842560pt;}
.y2191_c00001{bottom:919.867067pt;}
.y7c8_c00001{bottom:920.027067pt;}
.y25c0_c00001{bottom:920.107067pt;}
.y12d9_c00001{bottom:920.187067pt;}
.y1cbe_c00001{bottom:920.325120pt;}
.y1ddd_c00001{bottom:920.328960pt;}
.y3812_c00001{bottom:920.427067pt;}
.y1b32_c00001{bottom:920.480000pt;}
.y2441_c00001{bottom:920.507067pt;}
.y277e_c00001{bottom:920.587067pt;}
.y103c_c00001{bottom:920.667067pt;}
.y110d_c00001{bottom:920.747067pt;}
.y294b_c00001{bottom:920.827067pt;}
.y9ec_c00001{bottom:920.907067pt;}
.y1ae7_c00001{bottom:920.960000pt;}
.y1186_c00001{bottom:920.987067pt;}
.y33a8_c00001{bottom:921.147067pt;}
.y260a_c00001{bottom:921.227067pt;}
.y8dd_c00001{bottom:921.307067pt;}
.y18cc_c00001{bottom:921.387067pt;}
.y944_c00001{bottom:921.467067pt;}
.y2412_c00001{bottom:921.547067pt;}
.y1a47_c00001{bottom:921.600000pt;}
.y525_c00001{bottom:921.707067pt;}
.y1900_c00001{bottom:921.760000pt;}
.y1c07_c00001{bottom:921.762720pt;}
.y2005_c00001{bottom:921.787067pt;}
.y1e4f_c00001{bottom:921.920000pt;}
.y34b1_c00001{bottom:921.947067pt;}
.yfe6_c00001{bottom:922.027067pt;}
.y473_c00001{bottom:922.107067pt;}
.y2cce_c00001{bottom:922.346739pt;}
.y2129_c00001{bottom:922.347067pt;}
.y32a4_c00001{bottom:922.400000pt;}
.y12de_c00001{bottom:922.427067pt;}
.y794_c00001{bottom:922.667067pt;}
.y1ae8_c00001{bottom:922.720000pt;}
.y37fb_c00001{bottom:922.827067pt;}
.y23e8_c00001{bottom:922.907067pt;}
.y7e8_c00001{bottom:923.147067pt;}
.y1c47_c00001{bottom:923.200000pt;}
.y25ec_c00001{bottom:923.467067pt;}
.y1501_c00001{bottom:923.547067pt;}
.y2eac_c00001{bottom:923.680000pt;}
.y35e0_c00001{bottom:923.867067pt;}
.yadc_c00001{bottom:923.947067pt;}
.y30b_c00001{bottom:924.107067pt;}
.y1953_c00001{bottom:924.507067pt;}
.y16ce_c00001{bottom:924.747067pt;}
.y1f91_c00001{bottom:924.749323pt;}
.y1ee3_c00001{bottom:924.960000pt;}
.y2372_c00001{bottom:925.147067pt;}
.y1f30_c00001{bottom:925.148003pt;}
.y1e89_c00001{bottom:925.280000pt;}
.y20fb_c00001{bottom:925.387067pt;}
.y3667_c00001{bottom:925.547067pt;}
.y2bd8_c00001{bottom:925.627067pt;}
.yf87_c00001{bottom:925.947067pt;}
.ye1e_c00001{bottom:925.947307pt;}
.y5e6_c00001{bottom:926.267067pt;}
.y30b0_c00001{bottom:926.400000pt;}
.y28e5_c00001{bottom:926.507067pt;}
.y9d3_c00001{bottom:926.587067pt;}
.y68f_c00001{bottom:926.747067pt;}
.y15ef_c00001{bottom:926.987067pt;}
.ycd5_c00001{bottom:927.307067pt;}
.y32f1_c00001{bottom:927.360000pt;}
.y386b_c00001{bottom:927.467067pt;}
.ya8_c00001{bottom:927.627067pt;}
.y28d7_c00001{bottom:927.707067pt;}
.ya_c00001{bottom:927.707155pt;}
.y1fba_c00001{bottom:927.787067pt;}
.y1e4e_c00001{bottom:927.840000pt;}
.y1e15_c00001{bottom:927.846240pt;}
.y13dd_c00001{bottom:927.947067pt;}
.y1cfe_c00001{bottom:928.006240pt;}
.y5bf_c00001{bottom:928.027067pt;}
.yd32_c00001{bottom:928.187067pt;}
.y2cb_c00001{bottom:928.267067pt;}
.y33bd_c00001{bottom:928.427067pt;}
.y3797_c00001{bottom:928.507067pt;}
.yd09_c00001{bottom:928.587067pt;}
.y1a94_c00001{bottom:928.640000pt;}
.y1877_c00001{bottom:928.667067pt;}
.y16ed_c00001{bottom:928.747067pt;}
.y2a23_c00001{bottom:928.827155pt;}
.yd5d_c00001{bottom:929.147067pt;}
.y1d82_c00001{bottom:929.280000pt;}
.y5a_c00001{bottom:929.387067pt;}
.y3706_c00001{bottom:929.467067pt;}
.y3151_c00001{bottom:929.600000pt;}
.ybdc_c00001{bottom:929.707067pt;}
.y2e7b_c00001{bottom:929.760000pt;}
.y3972_c00001{bottom:929.787067pt;}
.y1783_c00001{bottom:930.027067pt;}
.y2d94_c00001{bottom:930.080000pt;}
.y26ba_c00001{bottom:930.187067pt;}
.y243b_c00001{bottom:930.427067pt;}
.ya0a_c00001{bottom:930.507067pt;}
.y30b4_c00001{bottom:930.560000pt;}
.y3282_c00001{bottom:930.568960pt;}
.y11a4_c00001{bottom:930.587067pt;}
.y37_c00001{bottom:930.667067pt;}
.y2204_c00001{bottom:930.747067pt;}
.y2ded_c00001{bottom:930.880000pt;}
.y3015_c00001{bottom:931.040000pt;}
.y1f9f_c00001{bottom:931.627067pt;}
.yee0_c00001{bottom:931.787067pt;}
.y1b7c_c00001{bottom:931.840000pt;}
.y19b4_c00001{bottom:931.999040pt;}
.y214b_c00001{bottom:932.107067pt;}
.y2ac4_c00001{bottom:932.187067pt;}
.y109f_c00001{bottom:932.267067pt;}
.yd3_c00001{bottom:932.347067pt;}
.y2c95_c00001{bottom:932.507067pt;}
.y1477_c00001{bottom:932.587067pt;}
.y2312_c00001{bottom:932.587131pt;}
.y1eb4_c00001{bottom:932.640000pt;}
.y1ddc_c00001{bottom:932.646240pt;}
.y2b8b_c00001{bottom:932.747067pt;}
.y1a96_c00001{bottom:932.800000pt;}
.y37b0_c00001{bottom:932.827067pt;}
.y1924_c00001{bottom:932.960000pt;}
.y2b1d_c00001{bottom:933.306747pt;}
.y363d_c00001{bottom:933.467067pt;}
.y2265_c00001{bottom:933.627067pt;}
.yba0_c00001{bottom:933.787067pt;}
.y1bcb_c00001{bottom:933.920000pt;}
.y2cf9_c00001{bottom:934.025275pt;}
.y24d0_c00001{bottom:934.026739pt;}
.y2175_c00001{bottom:934.027067pt;}
.y1c06_c00001{bottom:934.080000pt;}
.y17ee_c00001{bottom:934.267067pt;}
.y20d0_c00001{bottom:934.345211pt;}
.y2024_c00001{bottom:934.346675pt;}
.y1729_c00001{bottom:934.347067pt;}
.y14be_c00001{bottom:934.507067pt;}
.y1816_c00001{bottom:934.587067pt;}
.y1c7e_c00001{bottom:934.720000pt;}
.y10a6_c00001{bottom:934.747187pt;}
.y824_c00001{bottom:934.827067pt;}
.y1580_c00001{bottom:934.907067pt;}
.y10af_c00001{bottom:934.907507pt;}
.y18ae_c00001{bottom:935.067067pt;}
.y10c7_c00001{bottom:935.147067pt;}
.y11ba_c00001{bottom:935.467067pt;}
.yf24_c00001{bottom:935.547067pt;}
.yc05_c00001{bottom:935.707067pt;}
.y7f_c00001{bottom:935.787067pt;}
.y2e1f_c00001{bottom:935.842720pt;}
.y2d69_c00001{bottom:936.000000pt;}
.y15eb_c00001{bottom:936.027667pt;}
.y2485_c00001{bottom:936.267067pt;}
.y2501_c00001{bottom:936.426283pt;}
.y2440_c00001{bottom:936.427067pt;}
.y103b_c00001{bottom:936.587067pt;}
.y2dbe_c00001{bottom:936.640000pt;}
.y2220_c00001{bottom:936.747067pt;}
.y292f_c00001{bottom:936.907067pt;}
.y103a_c00001{bottom:936.987067pt;}
.y18ee_c00001{bottom:937.065643pt;}
.y1767_c00001{bottom:937.067067pt;}
.y2609_c00001{bottom:937.227067pt;}
.y2eab_c00001{bottom:937.280000pt;}
.y3a5_c00001{bottom:937.307067pt;}
.y277d_c00001{bottom:937.387067pt;}
.y1b31_c00001{bottom:937.440000pt;}
.y36bb_c00001{bottom:937.467067pt;}
.y288d_c00001{bottom:937.547067pt;}
.y110c_c00001{bottom:937.627067pt;}
.y4f5_c00001{bottom:937.707067pt;}
.y1497_c00001{bottom:937.787067pt;}
.y370_c00001{bottom:937.867067pt;}
.yc52_c00001{bottom:938.107067pt;}
.y294a_c00001{bottom:938.187067pt;}
.yfe4_c00001{bottom:938.267067pt;}
.y9eb_c00001{bottom:938.347067pt;}
.y401_c00001{bottom:938.427067pt;}
.yfe1_c00001{bottom:938.587067pt;}
.y28a6_c00001{bottom:938.667067pt;}
.y3407_c00001{bottom:938.747067pt;}
.y2bd7_c00001{bottom:938.907067pt;}
.y344c_c00001{bottom:938.987067pt;}
.y1448_c00001{bottom:939.307067pt;}
.y376d_c00001{bottom:939.387067pt;}
.y8dc_c00001{bottom:939.707067pt;}
.y1185_c00001{bottom:939.787067pt;}
.ya1a_c00001{bottom:939.867067pt;}
.y1e88_c00001{bottom:940.000000pt;}
.y1e14_c00001{bottom:940.002720pt;}
.y33a7_c00001{bottom:940.027067pt;}
.y472_c00001{bottom:940.107067pt;}
.y18ff_c00001{bottom:940.160000pt;}
.y1cfd_c00001{bottom:940.162720pt;}
.y2004_c00001{bottom:940.187067pt;}
.y35df_c00001{bottom:940.747067pt;}
.y2bc6_c00001{bottom:940.827067pt;}
.y2128_c00001{bottom:940.987067pt;}
.yfe5_c00001{bottom:941.067067pt;}
.y12dd_c00001{bottom:941.387067pt;}
.y1f72_c00001{bottom:941.387795pt;}
.y30a_c00001{bottom:941.467067pt;}
.y25bf_c00001{bottom:941.547067pt;}
.y2ccd_c00001{bottom:941.706675pt;}
.y9_c00001{bottom:941.787067pt;}
.y197b_c00001{bottom:941.925120pt;}
.y353a_c00001{bottom:942.027067pt;}
.y1424_c00001{bottom:942.107067pt;}
.y23e7_c00001{bottom:942.346611pt;}
.y1f90_c00001{bottom:942.668683pt;}
.yf86_c00001{bottom:942.827067pt;}
.ye1d_c00001{bottom:942.827227pt;}
.yadb_c00001{bottom:942.907067pt;}
.y2e49_c00001{bottom:943.360000pt;}
.ycaf_c00001{bottom:943.467067pt;}
.y3705_c00001{bottom:943.547067pt;}
.y5e5_c00001{bottom:943.627067pt;}
.yfe3_c00001{bottom:943.947067pt;}
.y2d93_c00001{bottom:944.000000pt;}
.yedf_c00001{bottom:944.027067pt;}
.ycd4_c00001{bottom:944.107067pt;}
.y2dec_c00001{bottom:944.480000pt;}
.yc38_c00001{bottom:944.507067pt;}
.y3260_c00001{bottom:944.640000pt;}
.y68e_c00001{bottom:944.667067pt;}
.y7e7_c00001{bottom:944.747067pt;}
.y8fe_c00001{bottom:944.747315pt;}
.y1ddb_c00001{bottom:944.963520pt;}
.y1377_c00001{bottom:944.987067pt;}
.yd31_c00001{bottom:945.067067pt;}
.y361b_c00001{bottom:945.147067pt;}
.y3245_c00001{bottom:945.275040pt;}
.y3941_c00001{bottom:945.307067pt;}
.yd08_c00001{bottom:945.387067pt;}
.ybdb_c00001{bottom:945.627067pt;}
.y363c_c00001{bottom:945.787067pt;}
.yf16_c00001{bottom:945.867067pt;}
.y16cd_c00001{bottom:945.947067pt;}
.yb60_c00001{bottom:946.027067pt;}
.y2ca_c00001{bottom:946.187067pt;}
.y321c_c00001{bottom:946.428235pt;}
.y266c_c00001{bottom:946.587067pt;}
.y1f2f_c00001{bottom:946.587731pt;}
.y5be_c00001{bottom:946.667067pt;}
.y3666_c00001{bottom:946.747067pt;}
.y33bc_c00001{bottom:946.827067pt;}
.yd5c_c00001{bottom:946.907067pt;}
.y823_c00001{bottom:947.067067pt;}
.y19b3_c00001{bottom:947.200000pt;}
.y3281_c00001{bottom:947.364480pt;}
.y1a46_c00001{bottom:947.680000pt;}
.y1eb3_c00001{bottom:948.000000pt;}
.y356f_c00001{bottom:948.027067pt;}
.y2e1e_c00001{bottom:948.160000pt;}
.y1fb9_c00001{bottom:948.187067pt;}
.y2ede_c00001{bottom:948.480000pt;}
.y1555_c00001{bottom:948.507067pt;}
.y386a_c00001{bottom:948.587067pt;}
.y943_c00001{bottom:949.067067pt;}
.y1ae6_c00001{bottom:949.120000pt;}
.y3489_c00001{bottom:949.387067pt;}
.y183d_c00001{bottom:949.867067pt;}
.yd2_c00001{bottom:949.947067pt;}
.y107d_c00001{bottom:950.187067pt;}
.y3014_c00001{bottom:950.240000pt;}
.y793_c00001{bottom:950.267067pt;}
.y30b3_c00001{bottom:950.400000pt;}
.y1a93_c00001{bottom:950.720000pt;}
.y91f_c00001{bottom:950.747067pt;}
.y1e4c_c00001{bottom:951.046240pt;}
.y91e_c00001{bottom:951.067067pt;}
.y1923_c00001{bottom:951.200000pt;}
.y2bd6_c00001{bottom:951.227067pt;}
.y2190_c00001{bottom:951.387067pt;}
.y2203_c00001{bottom:951.947067pt;}
.y10c6_c00001{bottom:952.107067pt;}
.y243a_c00001{bottom:952.267067pt;}
.y1bca_c00001{bottom:952.320000pt;}
.y1b79_c00001{bottom:952.480000pt;}
.y17c8_c00001{bottom:952.747067pt;}
.y15ea_c00001{bottom:952.827667pt;}
.y329f_c00001{bottom:953.120000pt;}
.yfe2_c00001{bottom:953.147067pt;}
.y2311_c00001{bottom:953.227067pt;}
.y292e_c00001{bottom:953.307067pt;}
.y2cf8_c00001{bottom:953.385211pt;}
.y24cf_c00001{bottom:953.386675pt;}
.y1e87_c00001{bottom:953.440000pt;}
.y1fcf_c00001{bottom:953.467067pt;}
.y11f4_c00001{bottom:953.547067pt;}
.y20cf_c00001{bottom:953.705147pt;}
.y2023_c00001{bottom:953.706611pt;}
.y1f56_c00001{bottom:954.027067pt;}
.y9d2_c00001{bottom:954.107067pt;}
.y3971_c00001{bottom:954.267067pt;}
.y23b9_c00001{bottom:954.347067pt;}
.y2d68_c00001{bottom:954.400000pt;}
.y110b_c00001{bottom:954.747067pt;}
.y3a4_c00001{bottom:954.907067pt;}
.y38e2_c00001{bottom:954.987067pt;}
.y2dbd_c00001{bottom:955.040000pt;}
.ya7_c00001{bottom:955.227067pt;}
.y28e4_c00001{bottom:955.307067pt;}
.y1500_c00001{bottom:955.467067pt;}
.y1ee2_c00001{bottom:955.520000pt;}
.y3391_c00001{bottom:955.547067pt;}
.y33f6_c00001{bottom:955.627067pt;}
.y2484_c00001{bottom:955.707067pt;}
.y1815_c00001{bottom:955.787067pt;}
.y32a2_c00001{bottom:955.840000pt;}
.y2500_c00001{bottom:955.866739pt;}
.y1682_c00001{bottom:955.867067pt;}
.y37c5_c00001{bottom:956.027067pt;}
.y4f4_c00001{bottom:956.107067pt;}
.y1423_c00001{bottom:956.187067pt;}
.y2048_c00001{bottom:956.267067pt;}
.y2eaa_c00001{bottom:956.320000pt;}
.y18ed_c00001{bottom:956.506099pt;}
.y28d6_c00001{bottom:956.507067pt;}
.y8_c00001{bottom:956.747067pt;}
.y59_c00001{bottom:956.827067pt;}
.y1447_c00001{bottom:956.987067pt;}
.y344b_c00001{bottom:957.067067pt;}
.y19ff_c00001{bottom:957.120000pt;}
.y3406_c00001{bottom:957.147067pt;}
.y2c39_c00001{bottom:957.307067pt;}
.y37c6_c00001{bottom:957.387067pt;}
.y400_c00001{bottom:957.467067pt;}
.y358b_c00001{bottom:957.547067pt;}
.y221f_c00001{bottom:957.627067pt;}
.y36f0_c00001{bottom:957.947067pt;}
.y363b_c00001{bottom:958.027067pt;}
.y7c7_c00001{bottom:958.107067pt;}
.y1766_c00001{bottom:958.187067pt;}
.y36_c00001{bottom:958.267067pt;}
.y3704_c00001{bottom:958.347067pt;}
.y2608_c00001{bottom:958.427067pt;}
.y471_c00001{bottom:958.507067pt;}
.y18fe_c00001{bottom:958.560000pt;}
.y36ba_c00001{bottom:958.587067pt;}
.y288c_c00001{bottom:958.747067pt;}
.y358a_c00001{bottom:958.827067pt;}
.y38e0_c00001{bottom:958.907067pt;}
.y2003_c00001{bottom:959.067067pt;}
.y12dc_c00001{bottom:959.227067pt;}
.y822_c00001{bottom:959.387067pt;}
.y2410_c00001{bottom:959.467067pt;}
.yf85_c00001{bottom:959.707067pt;}
.ye1c_c00001{bottom:959.707147pt;}
.ycae_c00001{bottom:960.347067pt;}
.y27f7_c00001{bottom:960.507067pt;}
.y1f8f_c00001{bottom:960.588043pt;}
.y3244_c00001{bottom:960.640000pt;}
.yada_c00001{bottom:960.747067pt;}
.ycd3_c00001{bottom:960.987067pt;}
.y2ccc_c00001{bottom:961.147131pt;}
.yb9f_c00001{bottom:961.387067pt;}
.y1f10_c00001{bottom:961.467067pt;}
.y1cbd_c00001{bottom:961.762720pt;}
.y23e6_c00001{bottom:961.787067pt;}
.y361a_c00001{bottom:962.027067pt;}
.y1496_c00001{bottom:962.107067pt;}
.yd30_c00001{bottom:962.267067pt;}
.y2e1d_c00001{bottom:962.400000pt;}
.y109e_c00001{bottom:962.427067pt;}
.yd07_c00001{bottom:962.587067pt;}
.y2deb_c00001{bottom:962.720000pt;}
.y1039_c00001{bottom:962.987067pt;}
.y2d92_c00001{bottom:963.040000pt;}
.y16cc_c00001{bottom:963.066499pt;}
.y68d_c00001{bottom:963.067067pt;}
.y8fd_c00001{bottom:963.147067pt;}
.yf15_c00001{bottom:963.307067pt;}
.y1eb2_c00001{bottom:963.360000pt;}
.y1e4b_c00001{bottom:963.363520pt;}
.y8db_c00001{bottom:963.387067pt;}
.y31f9_c00001{bottom:963.676320pt;}
.y32f0_c00001{bottom:963.680000pt;}
.y25eb_c00001{bottom:963.867067pt;}
.ybda_c00001{bottom:964.027067pt;}
.y3665_c00001{bottom:964.107067pt;}
.y3280_c00001{bottom:964.160000pt;}
.y2c9_c00001{bottom:964.587067pt;}
.y3639_c00001{bottom:964.747067pt;}
.yd5b_c00001{bottom:965.307067pt;}
.y3488_c00001{bottom:965.387067pt;}
.y3906_c00001{bottom:965.467067pt;}
.yc37_c00001{bottom:965.707067pt;}
.y2ac3_c00001{bottom:965.787067pt;}
.y1a45_c00001{bottom:966.080000pt;}
.y2466_c00001{bottom:966.187067pt;}
.y3970_c00001{bottom:966.587067pt;}
.y38e1_c00001{bottom:967.227067pt;}
.y7e6_c00001{bottom:967.307067pt;}
.ye47_c00001{bottom:967.467067pt;}
.y1c7c_c00001{bottom:967.520000pt;}
.y2371_c00001{bottom:967.787067pt;}
.y1476_c00001{bottom:967.867067pt;}
.y988_c00001{bottom:968.107067pt;}
.y1f2e_c00001{bottom:968.107611pt;}
.y1fb8_c00001{bottom:968.187067pt;}
.yd1_c00001{bottom:968.347067pt;}
.y1b2f_c00001{bottom:968.480000pt;}
.y32a1_c00001{bottom:968.640000pt;}
.y2439_c00001{bottom:968.827067pt;}
.y1922_c00001{bottom:969.120000pt;}
.yb5f_c00001{bottom:969.547067pt;}
.y15e9_c00001{bottom:969.627067pt;}
.y197a_c00001{bottom:969.760000pt;}
.y3869_c00001{bottom:969.787067pt;}
.y3a3_c00001{bottom:970.267067pt;}
.y19fe_c00001{bottom:970.720000pt;}
.y3352_c00001{bottom:970.877120pt;}
.y1ee1_c00001{bottom:970.880000pt;}
.y174c_c00001{bottom:970.987067pt;}
.y16ec_c00001{bottom:971.067067pt;}
.y17c7_c00001{bottom:971.147067pt;}
.y821_c00001{bottom:971.627067pt;}
.y19b2_c00001{bottom:971.835520pt;}
.y1e86_c00001{bottom:971.840000pt;}
.y2d67_c00001{bottom:972.160000pt;}
.y2dbc_c00001{bottom:972.320000pt;}
.y2310_c00001{bottom:972.347067pt;}
.y1f9e_c00001{bottom:972.427067pt;}
.y3013_c00001{bottom:972.482720pt;}
.y218f_c00001{bottom:972.507067pt;}
.y2d18_c00001{bottom:972.587067pt;}
.y3229_c00001{bottom:972.632000pt;}
.y292d_c00001{bottom:972.747067pt;}
.y2cf7_c00001{bottom:972.825667pt;}
.y24ce_c00001{bottom:972.827131pt;}
.y2202_c00001{bottom:973.067067pt;}
.y20ce_c00001{bottom:973.145603pt;}
.y110a_c00001{bottom:973.147067pt;}
.yf70_c00001{bottom:973.467067pt;}
.y240f_c00001{bottom:973.547067pt;}
.y1814_c00001{bottom:973.627067pt;}
.y1cbc_c00001{bottom:974.080000pt;}
.y2174_c00001{bottom:974.187067pt;}
.y395a_c00001{bottom:974.267067pt;}
.y7_c00001{bottom:974.347067pt;}
.y1fce_c00001{bottom:974.427067pt;}
.y4f3_c00001{bottom:974.507067pt;}
.y14ff_c00001{bottom:974.587067pt;}
.y109d_c00001{bottom:974.667067pt;}
.y2483_c00001{bottom:975.067067pt;}
.y28a5_c00001{bottom:975.147067pt;}
.y24ff_c00001{bottom:975.226675pt;}
.y3651_c00001{bottom:975.227067pt;}
.y1a92_c00001{bottom:975.360000pt;}
.y16cb_c00001{bottom:975.386555pt;}
.y1e4a_c00001{bottom:975.520000pt;}
.y1952_c00001{bottom:975.627067pt;}
.y23b8_c00001{bottom:975.787067pt;}
.y18ec_c00001{bottom:975.866035pt;}
.y58_c00001{bottom:975.867067pt;}
.y157f_c00001{bottom:976.107067pt;}
.y966_c00001{bottom:976.507067pt;}
.ye1b_c00001{bottom:976.587067pt;}
.y3243_c00001{bottom:976.640000pt;}
.y942_c00001{bottom:976.667067pt;}
.y91d_c00001{bottom:976.827067pt;}
.y18fd_c00001{bottom:976.960000pt;}
.yd06_c00001{bottom:976.987067pt;}
.y470_c00001{bottom:977.147067pt;}
.ycad_c00001{bottom:977.227067pt;}
.y36b9_c00001{bottom:977.307067pt;}
.y792_c00001{bottom:977.707067pt;}
.y2127_c00001{bottom:977.787067pt;}
.y107c_c00001{bottom:977.867067pt;}
.y2002_c00001{bottom:978.187067pt;}
.y344a_c00001{bottom:978.267067pt;}
.y288b_c00001{bottom:978.507067pt;}
.y1f8e_c00001{bottom:978.507403pt;}
.y3539_c00001{bottom:978.907067pt;}
.yad9_c00001{bottom:979.147067pt;}
.y3796_c00001{bottom:979.227067pt;}
.y31f8_c00001{bottom:979.360000pt;}
.y27f6_c00001{bottom:979.467067pt;}
.y2607_c00001{bottom:979.547067pt;}
.y23e5_c00001{bottom:979.707067pt;}
.y2c94_c00001{bottom:979.947067pt;}
.yf84_c00001{bottom:980.027067pt;}
.y3638_c00001{bottom:980.107067pt;}
.y2ea9_c00001{bottom:980.160000pt;}
.y321b_c00001{bottom:980.347651pt;}
.y2ccb_c00001{bottom:980.507067pt;}
.y3940_c00001{bottom:981.307067pt;}
.y9d1_c00001{bottom:981.547067pt;}
.y68c_c00001{bottom:981.707067pt;}
.y363a_c00001{bottom:982.587067pt;}
.ya6_c00001{bottom:982.667067pt;}
.y28f4_c00001{bottom:982.907067pt;}
.y3905_c00001{bottom:982.987067pt;}
.y2c8_c00001{bottom:983.307067pt;}
.y3a2_c00001{bottom:983.467067pt;}
.ybd9_c00001{bottom:983.547467pt;}
.y28d5_c00001{bottom:984.107067pt;}
.y1a44_c00001{bottom:984.480000pt;}
.y1446_c00001{bottom:984.587067pt;}
.y2438_c00001{bottom:984.667067pt;}
.y279b_c00001{bottom:984.747067pt;}
.y2dea_c00001{bottom:984.800000pt;}
.y2d91_c00001{bottom:984.803520pt;}
.y2c38_c00001{bottom:984.907067pt;}
.y2e48_c00001{bottom:984.960000pt;}
.y19b1_c00001{bottom:985.600000pt;}
.yfa_c00001{bottom:985.707067pt;}
.yfa8_c00001{bottom:985.787067pt;}
.y35_c00001{bottom:985.867067pt;}
.y1921_c00001{bottom:986.240000pt;}
.yd0_c00001{bottom:986.667067pt;}
.y109c_c00001{bottom:986.987067pt;}
.y16ca_c00001{bottom:987.626811pt;}
.y240e_c00001{bottom:987.627067pt;}
.y19fd_c00001{bottom:989.120000pt;}
.y336c_c00001{bottom:989.277120pt;}
.y2d66_c00001{bottom:989.280000pt;}
.y1951_c00001{bottom:989.307339pt;}
.y1422_c00001{bottom:989.467067pt;}
.y1f2d_c00001{bottom:989.547339pt;}
.y157e_c00001{bottom:989.707067pt;}
.y15e8_c00001{bottom:990.107067pt;}
.y1e85_c00001{bottom:990.240000pt;}
.ya66_c00001{bottom:990.747067pt;}
.yf6f_c00001{bottom:990.907067pt;}
.ye46_c00001{bottom:990.987067pt;}
.y230f_c00001{bottom:991.467067pt;}
.y2201_c00001{bottom:991.787067pt;}
.y292c_c00001{bottom:992.107067pt;}
.y2cf6_c00001{bottom:992.185603pt;}
.y174b_c00001{bottom:992.187067pt;}
.y16eb_c00001{bottom:992.267067pt;}
.ycd2_c00001{bottom:992.907067pt;}
.y15e7_c00001{bottom:993.067067pt;}
.y2173_c00001{bottom:993.227067pt;}
.y327f_c00001{bottom:993.280000pt;}
.y24cd_c00001{bottom:993.467067pt;}
.y2022_c00001{bottom:993.547067pt;}
.y4f2_c00001{bottom:993.627067pt;}
.y218e_c00001{bottom:993.707067pt;}
.y85a_c00001{bottom:993.787067pt;}
.y37c4_c00001{bottom:994.267067pt;}
.ycac_c00001{bottom:994.427067pt;}
.y14fe_c00001{bottom:994.507067pt;}
.y24fe_c00001{bottom:994.586611pt;}
.yf83_c00001{bottom:994.587067pt;}
.y57_c00001{bottom:994.907067pt;}
.y31f7_c00001{bottom:995.040000pt;}
.y309_c00001{bottom:995.067067pt;}
.y2482_c00001{bottom:995.147200pt;}
.y2de9_c00001{bottom:995.200000pt;}
.y18eb_c00001{bottom:995.306491pt;}
.y18fc_c00001{bottom:995.360000pt;}
.y6_c00001{bottom:995.387067pt;}
.y12db_c00001{bottom:996.107067pt;}
.y1f8d_c00001{bottom:996.347707pt;}
.y2126_c00001{bottom:996.427067pt;}
.y25be_c00001{bottom:996.747067pt;}
.y1b2e_c00001{bottom:996.800000pt;}
.y2d90_c00001{bottom:996.960000pt;}
.y91c_c00001{bottom:997.387067pt;}
.y2cca_c00001{bottom:998.427067pt;}
.y27f5_c00001{bottom:998.587067pt;}
.y68b_c00001{bottom:998.667067pt;}
.y2606_c00001{bottom:998.827067pt;}
.y3795_c00001{bottom:999.307067pt;}
.y3a1_c00001{bottom:999.387067pt;}
.y9d0_c00001{bottom:999.627067pt;}
.y329e_c00001{bottom:999.840000pt;}
.y2c7_c00001{bottom:999.867067pt;}
.ya5_c00001{bottom:1000.107067pt;}
.y393f_c00001{bottom:1000.427067pt;}
.y240d_c00001{bottom:1000.507067pt;}
.y3904_c00001{bottom:1001.307067pt;}
.y2411_c00001{bottom:1001.707067pt;}
.y3228_c00001{bottom:1003.360000pt;}
.y1f71_c00001{bottom:1003.387067pt;}
.y1a43_c00001{bottom:1003.520000pt;}
.y19b0_c00001{bottom:1003.840000pt;}
.y279a_c00001{bottom:1003.867067pt;}
.y941_c00001{bottom:1004.267067pt;}
.yb9e_c00001{bottom:1004.987067pt;}
.y1920_c00001{bottom:1008.320000pt;}
.y1e84_c00001{bottom:1008.640000pt;}
.y2200_c00001{bottom:1010.107067pt;}
.yf82_c00001{bottom:1010.347067pt;}
.y1950_c00001{bottom:1010.747067pt;}
.y1681_c00001{bottom:1010.827067pt;}
.y2d65_c00001{bottom:1010.880000pt;}
.y1f2c_c00001{bottom:1010.987067pt;}
.y1edf_c00001{bottom:1011.040000pt;}
.ycd1_c00001{bottom:1011.307067pt;}
.y15e6_c00001{bottom:1011.387067pt;}
.y28d4_c00001{bottom:1011.627067pt;}
.y1421_c00001{bottom:1012.027067pt;}
.y1445_c00001{bottom:1012.187067pt;}
.y5_c00001{bottom:1012.587067pt;}
.y4f1_c00001{bottom:1012.667067pt;}
.y3a0_c00001{bottom:1013.227067pt;}
.y34_c00001{bottom:1013.307067pt;}
.yf23_c00001{bottom:1013.387067pt;}
.y31f6_c00001{bottom:1013.440000pt;}
.y80d_c00001{bottom:1013.467067pt;}
.y1c7b_c00001{bottom:1013.600000pt;}
.y18fb_c00001{bottom:1013.760000pt;}
.y2125_c00001{bottom:1013.947067pt;}
.y24fd_c00001{bottom:1014.027067pt;}
.y191f_c00001{bottom:1014.267067pt;}
.y2c93_c00001{bottom:1014.587067pt;}
.y18ea_c00001{bottom:1014.666427pt;}
.y2172_c00001{bottom:1014.667067pt;}
.y3794_c00001{bottom:1015.147200pt;}
.y252d_c00001{bottom:1015.307067pt;}
.y2437_c00001{bottom:1016.427067pt;}
.y240c_c00001{bottom:1017.067067pt;}
.y25bd_c00001{bottom:1017.307067pt;}
.y28a4_c00001{bottom:1017.627067pt;}
.y393e_c00001{bottom:1018.267067pt;}
.y1b2d_c00001{bottom:1018.400000pt;}
.y27f4_c00001{bottom:1018.507067pt;}
.y1eb0_c00001{bottom:1018.560000pt;}
.y1376_c00001{bottom:1018.587067pt;}
.y2799_c00001{bottom:1022.107067pt;}
.y940_c00001{bottom:1023.387067pt;}
.y19af_c00001{bottom:1027.360000pt;}
.y1473_c00001{bottom:1030.907067pt;}
.y19fc_c00001{bottom:1032.000000pt;}
.y33a6_c00001{bottom:1042.347067pt;}
.y19ab_c00001{bottom:1042.560000pt;}
.y19ad_c00001{bottom:1045.120000pt;}
.y1420_c00001{bottom:1045.467067pt;}
.y2_c00001{bottom:1047.707067pt;}
.y7e5_c00001{bottom:1047.707075pt;}
.y3ff_c00001{bottom:1047.707163pt;}
.y1fb7_c00001{bottom:1060.747067pt;}
.y1_c00001{bottom:1063.067067pt;}
.h11_c00001{height:2.246250pt;}
.h1c_c00001{height:2.273750pt;}
.ha6_c00001{height:5.482500pt;}
.h14_c00001{height:9.265781pt;}
.h26_c00001{height:9.379219pt;}
.h65_c00001{height:10.364062pt;}
.h5c_c00001{height:10.642500pt;}
.h2e_c00001{height:12.000000pt;}
.h40_c00001{height:15.120000pt;}
.h9c_c00001{height:15.703125pt;}
.h59_c00001{height:16.125000pt;}
.h181_c00001{height:16.560000pt;}
.he7_c00001{height:16.800000pt;}
.heb_c00001{height:16.960000pt;}
.h3b_c00001{height:18.080000pt;}
.he9_c00001{height:18.400000pt;}
.he6_c00001{height:18.401333pt;}
.h17_c00001{height:18.812344pt;}
.h22_c00001{height:19.042656pt;}
.hc1_c00001{height:19.200000pt;}
.h41_c00001{height:21.031719pt;}
.h4b_c00001{height:21.042187pt;}
.hdc_c00001{height:21.438667pt;}
.hd0_c00001{height:21.440000pt;}
.hd7_c00001{height:21.600000pt;}
.h4c_c00001{height:21.607500pt;}
.h1e_c00001{height:23.304844pt;}
.h21_c00001{height:23.590156pt;}
.hc5_c00001{height:24.480000pt;}
.hd5_c00001{height:24.640000pt;}
.hf8_c00001{height:24.641333pt;}
.hf9_c00001{height:25.920000pt;}
.h5f_c00001{height:26.067187pt;}
.hd3_c00001{height:26.080000pt;}
.hd2_c00001{height:26.081333pt;}
.h105_c00001{height:26.381250pt;}
.h8b_c00001{height:26.767500pt;}
.h14a_c00001{height:27.090000pt;}
.he4_c00001{height:27.520000pt;}
.hea_c00001{height:27.521333pt;}
.hed_c00001{height:27.678667pt;}
.he0_c00001{height:27.680000pt;}
.h18_c00001{height:28.078125pt;}
.h2f_c00001{height:28.366406pt;}
.h1b_c00001{height:28.421875pt;}
.h10c_c00001{height:29.118667pt;}
.h10b_c00001{height:29.120000pt;}
.h10d_c00001{height:29.280000pt;}
.h156_c00001{height:30.558667pt;}
.h13b_c00001{height:30.560000pt;}
.hc3_c00001{height:30.720000pt;}
.h71_c00001{height:30.901719pt;}
.h72_c00001{height:30.903319pt;}
.h73_c00001{height:30.903852pt;}
.h13_c00001{height:31.390625pt;}
.h4e_c00001{height:31.406250pt;}
.hc9_c00001{height:32.160000pt;}
.h57_c00001{height:32.250000pt;}
.h2a_c00001{height:33.253594pt;}
.hf6_c00001{height:33.375000pt;}
.hf0_c00001{height:33.600000pt;}
.hde_c00001{height:33.760000pt;}
.hf3_c00001{height:33.761333pt;}
.h6e_c00001{height:34.851562pt;}
.h96_c00001{height:34.861696pt;}
.h98_c00001{height:34.862763pt;}
.h103_c00001{height:35.200000pt;}
.hdb_c00001{height:35.201333pt;}
.h10a_c00001{height:35.358667pt;}
.hd9_c00001{height:35.360000pt;}
.h149_c00001{height:36.640000pt;}
.hfb_c00001{height:36.798667pt;}
.h137_c00001{height:36.800000pt;}
.h14b_c00001{height:37.278667pt;}
.hc_c00001{height:37.343906pt;}
.hd_c00001{height:37.801094pt;}
.h37_c00001{height:37.832812pt;}
.h45_c00001{height:38.303373pt;}
.h44_c00001{height:38.303906pt;}
.h12a_c00001{height:38.304440pt;}
.h196_c00001{height:38.341342pt;}
.h131_c00001{height:38.341875pt;}
.h47_c00001{height:38.373594pt;}
.h2d_c00001{height:38.761094pt;}
.h126_c00001{height:38.792279pt;}
.h124_c00001{height:38.792813pt;}
.h125_c00001{height:38.793346pt;}
.h69_c00001{height:38.801406pt;}
.h70_c00001{height:38.802110pt;}
.h92_c00001{height:38.821758pt;}
.h7f_c00001{height:38.824542pt;}
.h95_c00001{height:38.825950pt;}
.h3_c00001{height:39.030469pt;}
.h76_c00001{height:39.721094pt;}
.hf4_c00001{height:39.840000pt;}
.hef_c00001{height:41.280000pt;}
.h102_c00001{height:41.440000pt;}
.hf7_c00001{height:41.441333pt;}
.h30_c00001{height:41.749531pt;}
.h7_c00001{height:41.770312pt;}
.hb8_c00001{height:42.084375pt;}
.h11d_c00001{height:42.117188pt;}
.h31_c00001{height:42.123750pt;}
.h6d_c00001{height:42.518906pt;}
.h19_c00001{height:42.632812pt;}
.h116_c00001{height:42.656250pt;}
.he2_c00001{height:42.880000pt;}
.he5_c00001{height:42.881333pt;}
.h4d_c00001{height:42.892500pt;}
.he3_c00001{height:43.038667pt;}
.hdd_c00001{height:43.040000pt;}
.h174_c00001{height:43.076654pt;}
.h1a_c00001{height:43.077188pt;}
.h11e_c00001{height:43.103906pt;}
.h11f_c00001{height:43.104440pt;}
.hc4_c00001{height:43.215000pt;}
.hc8_c00001{height:44.722500pt;}
.haa_c00001{height:45.082020pt;}
.hd8_c00001{height:45.918667pt;}
.hdf_c00001{height:45.920000pt;}
.hd6_c00001{height:46.080000pt;}
.h6a_c00001{height:46.468750pt;}
.h16_c00001{height:46.890469pt;}
.h11c_c00001{height:46.892031pt;}
.h7b_c00001{height:46.923217pt;}
.h7a_c00001{height:46.923750pt;}
.h7c_c00001{height:46.924283pt;}
.h94_c00001{height:47.085938pt;}
.h9b_c00001{height:47.109375pt;}
.h15_c00001{height:47.464531pt;}
.h175_c00001{height:47.529935pt;}
.h20_c00001{height:47.530469pt;}
.h32_c00001{height:47.531002pt;}
.h3f_c00001{height:47.531498pt;}
.h39_c00001{height:47.532031pt;}
.h130_c00001{height:47.532565pt;}
.h34_c00001{height:47.720560pt;}
.h25_c00001{height:47.721094pt;}
.h1f_c00001{height:47.721627pt;}
.h12b_c00001{height:47.752812pt;}
.h3c_c00001{height:48.105811pt;}
.h136_c00001{height:48.142500pt;}
.h49_c00001{height:48.223373pt;}
.h48_c00001{height:48.223906pt;}
.h127_c00001{height:48.224440pt;}
.h198_c00001{height:48.261875pt;}
.h3e_c00001{height:48.293594pt;}
.h2_c00001{height:48.294844pt;}
.h5a_c00001{height:48.375000pt;}
.h134_c00001{height:48.681094pt;}
.h16c_c00001{height:48.960000pt;}
.h5_c00001{height:49.097500pt;}
.hfa_c00001{height:49.120000pt;}
.h133_c00001{height:49.270469pt;}
.h132_c00001{height:49.271002pt;}
.he8_c00001{height:49.907812pt;}
.h150_c00001{height:50.560000pt;}
.h14c_c00001{height:50.718667pt;}
.h152_c00001{height:50.720000pt;}
.h17d_c00001{height:50.732031pt;}
.h68_c00001{height:50.840282pt;}
.h29_c00001{height:51.355717pt;}
.h28_c00001{height:51.356250pt;}
.h10_c00001{height:51.382969pt;}
.h173_c00001{height:51.384825pt;}
.h197_c00001{height:51.691498pt;}
.h17b_c00001{height:51.692031pt;}
.h17c_c00001{height:51.692565pt;}
.h108_c00001{height:52.000000pt;}
.h12e_c00001{height:52.009935pt;}
.h12c_c00001{height:52.010469pt;}
.h12d_c00001{height:52.011002pt;}
.hf_c00001{height:52.012031pt;}
.h33_c00001{height:52.043217pt;}
.h2b_c00001{height:52.043750pt;}
.h27_c00001{height:52.044283pt;}
.h100_c00001{height:52.134375pt;}
.h158_c00001{height:52.158667pt;}
.h107_c00001{height:52.160000pt;}
.h120_c00001{height:52.264531pt;}
.h179_c00001{height:52.265065pt;}
.h24_c00001{height:52.330469pt;}
.h17a_c00001{height:52.331002pt;}
.h36_c00001{height:52.421960pt;}
.h1_c00001{height:52.422344pt;}
.h8e_c00001{height:52.448054pt;}
.h51_c00001{height:52.448437pt;}
.h18b_c00001{height:52.521094pt;}
.h121_c00001{height:52.552812pt;}
.h189_c00001{height:52.644844pt;}
.h128_c00001{height:52.645377pt;}
.h182_c00001{height:52.652031pt;}
.h18a_c00001{height:52.964844pt;}
.h122_c00001{height:53.023373pt;}
.h3d_c00001{height:53.023906pt;}
.h123_c00001{height:53.024440pt;}
.hb4_c00001{height:53.535000pt;}
.h185_c00001{height:53.611498pt;}
.h184_c00001{height:53.612031pt;}
.h186_c00001{height:53.612565pt;}
.h15e_c00001{height:53.760000pt;}
.h6_c00001{height:53.857500pt;}
.h74_c00001{height:54.136094pt;}
.h188_c00001{height:54.252031pt;}
.h187_c00001{height:54.571498pt;}
.h14d_c00001{height:55.040000pt;}
.h138_c00001{height:55.200000pt;}
.hb7_c00001{height:55.275000pt;}
.h9f_c00001{height:55.736250pt;}
.h42_c00001{height:56.153210pt;}
.ha_c00001{height:56.156250pt;}
.hf1_c00001{height:56.732813pt;}
.hb6_c00001{height:56.760000pt;}
.hf5_c00001{height:56.800000pt;}
.hb_c00001{height:56.843750pt;}
.h4a_c00001{height:56.845190pt;}
.hbc_c00001{height:56.946094pt;}
.hc0_c00001{height:57.384531pt;}
.h7e_c00001{height:57.385065pt;}
.h1d_c00001{height:57.444844pt;}
.h17f_c00001{height:57.451498pt;}
.h12f_c00001{height:57.452031pt;}
.h56_c00001{height:57.473437pt;}
.h135_c00001{height:57.483750pt;}
.h23_c00001{height:57.641094pt;}
.hf2_c00001{height:57.787500pt;}
.h176_c00001{height:58.123750pt;}
.h180_c00001{height:58.412031pt;}
.h178_c00001{height:58.443217pt;}
.h177_c00001{height:58.443750pt;}
.hb0_c00001{height:58.740000pt;}
.h4_c00001{height:59.017500pt;}
.hcf_c00001{height:59.340000pt;}
.h55_c00001{height:59.379467pt;}
.h53_c00001{height:59.380000pt;}
.h88_c00001{height:59.380533pt;}
.hd4_c00001{height:59.680000pt;}
.hec_c00001{height:59.681333pt;}
.hee_c00001{height:59.838667pt;}
.hcb_c00001{height:59.840000pt;}
.h58_c00001{height:61.076250pt;}
.h15c_c00001{height:61.410000pt;}
.hd1_c00001{height:61.440000pt;}
.h18d_c00001{height:61.612031pt;}
.h191_c00001{height:61.612565pt;}
.h18c_c00001{height:61.932031pt;}
.h194_c00001{height:61.932565pt;}
.h190_c00001{height:62.252031pt;}
.h148_c00001{height:62.718667pt;}
.h46_c00001{height:62.778818pt;}
.h43_c00001{height:62.779458pt;}
.h12_c00001{height:62.781250pt;}
.h38_c00001{height:62.781783pt;}
.hfd_c00001{height:62.792020pt;}
.ha4_c00001{height:62.808927pt;}
.h9a_c00001{height:62.809140pt;}
.h5d_c00001{height:62.809993pt;}
.h90_c00001{height:62.810345pt;}
.hab_c00001{height:62.810996pt;}
.h8_c00001{height:62.812500pt;}
.h8d_c00001{height:62.812948pt;}
.h97_c00001{height:62.813033pt;}
.h81_c00001{height:62.813791pt;}
.h80_c00001{height:62.813812pt;}
.h8c_c00001{height:62.813908pt;}
.h146_c00001{height:62.880000pt;}
.h82_c00001{height:62.913437pt;}
.h78_c00001{height:63.131967pt;}
.h77_c00001{height:63.132500pt;}
.h195_c00001{height:63.212031pt;}
.h6c_c00001{height:63.451967pt;}
.h6b_c00001{height:63.452500pt;}
.h7d_c00001{height:63.453033pt;}
.h192_c00001{height:63.532565pt;}
.hda_c00001{height:63.984375pt;}
.h52_c00001{height:64.092500pt;}
.h54_c00001{height:64.412500pt;}
.h145_c00001{height:64.480000pt;}
.h85_c00001{height:64.497621pt;}
.h84_c00001{height:64.498784pt;}
.h9d_c00001{height:64.499264pt;}
.h9_c00001{height:64.500000pt;}
.h5e_c00001{height:64.500533pt;}
.h35_c00001{height:66.076250pt;}
.he_c00001{height:66.222969pt;}
.h154_c00001{height:66.335000pt;}
.h15b_c00001{height:66.744880pt;}
.ha9_c00001{height:66.750000pt;}
.h155_c00001{height:66.975000pt;}
.h10f_c00001{height:68.958667pt;}
.h106_c00001{height:68.960000pt;}
.h157_c00001{height:69.120000pt;}
.h89_c00001{height:69.452500pt;}
.h75_c00001{height:69.801094pt;}
.h151_c00001{height:70.175000pt;}
.h117_c00001{height:70.462969pt;}
.h79_c00001{height:70.781250pt;}
.h11b_c00001{height:73.176562pt;}
.hfc_c00001{height:73.375000pt;}
.hb9_c00001{height:73.454062pt;}
.hcd_c00001{height:73.490625pt;}
.h104_c00001{height:73.600000pt;}
.hc6_c00001{height:73.601333pt;}
.h86_c00001{height:75.142500pt;}
.hb3_c00001{height:75.465000pt;}
.hba_c00001{height:75.886406pt;}
.h2c_c00001{height:76.521094pt;}
.h166_c00001{height:76.640000pt;}
.hb2_c00001{height:78.097500pt;}
.hb1_c00001{height:78.138460pt;}
.hfe_c00001{height:78.240000pt;}
.h147_c00001{height:79.680000pt;}
.h13a_c00001{height:80.640000pt;}
.h93_c00001{height:80.652500pt;}
.h8a_c00001{height:80.972500pt;}
.h6f_c00001{height:82.921094pt;}
.h15d_c00001{height:83.499062pt;}
.hce_c00001{height:83.540625pt;}
.h183_c00001{height:84.521094pt;}
.h153_c00001{height:85.760000pt;}
.hb5_c00001{height:85.785000pt;}
.h66_c00001{height:85.963750pt;}
.h118_c00001{height:86.107500pt;}
.h62_c00001{height:87.052500pt;}
.h63_c00001{height:88.013033pt;}
.h60_c00001{height:88.332500pt;}
.hca_c00001{height:88.777500pt;}
.h144_c00001{height:88.960000pt;}
.h5b_c00001{height:90.572500pt;}
.h14f_c00001{height:90.655000pt;}
.h99_c00001{height:90.892500pt;}
.h14e_c00001{height:91.295000pt;}
.h87_c00001{height:91.851967pt;}
.h4f_c00001{height:91.852500pt;}
.h64_c00001{height:91.853033pt;}
.h139_c00001{height:92.000000pt;}
.h61_c00001{height:92.172500pt;}
.h50_c00001{height:93.620000pt;}
.h129_c00001{height:93.932031pt;}
.h8f_c00001{height:93.940000pt;}
.he1_c00001{height:94.218750pt;}
.h17e_c00001{height:94.252031pt;}
.h10e_c00001{height:95.040000pt;}
.hcc_c00001{height:96.750000pt;}
.h101_c00001{height:97.966250pt;}
.hff_c00001{height:98.238667pt;}
.h109_c00001{height:98.606250pt;}
.haf_c00001{height:100.125000pt;}
.h9e_c00001{height:100.660000pt;}
.h115_c00001{height:105.562500pt;}
.h168_c00001{height:107.201333pt;}
.h167_c00001{height:107.360000pt;}
.h11a_c00001{height:107.389844pt;}
.h119_c00001{height:107.390932pt;}
.h114_c00001{height:107.392500pt;}
.hc2_c00001{height:107.694520pt;}
.had_c00001{height:107.715000pt;}
.hbe_c00001{height:107.824375pt;}
.h3a_c00001{height:108.972031pt;}
.h91_c00001{height:112.737500pt;}
.h193_c00001{height:114.092031pt;}
.h165_c00001{height:116.640000pt;}
.h18e_c00001{height:119.212031pt;}
.h18f_c00001{height:119.212565pt;}
.hbf_c00001{height:119.531498pt;}
.h83_c00001{height:124.993118pt;}
.h15a_c00001{height:129.000000pt;}
.hbd_c00001{height:129.105625pt;}
.ha3_c00001{height:129.457600pt;}
.ha1_c00001{height:129.459680pt;}
.ha5_c00001{height:129.779147pt;}
.ha2_c00001{height:129.779680pt;}
.ha7_c00001{height:129.780213pt;}
.hbb_c00001{height:130.443750pt;}
.ha8_c00001{height:137.460000pt;}
.h67_c00001{height:137.561786pt;}
.ha0_c00001{height:137.780000pt;}
.h169_c00001{height:138.080000pt;}
.h113_c00001{height:139.642500pt;}
.hae_c00001{height:144.847500pt;}
.h163_c00001{height:147.200000pt;}
.h142_c00001{height:162.558667pt;}
.h15f_c00001{height:163.998667pt;}
.h160_c00001{height:164.160000pt;}
.h161_c00001{height:168.641333pt;}
.h16d_c00001{height:183.840000pt;}
.hc7_c00001{height:184.000000pt;}
.h16f_c00001{height:184.001333pt;}
.h141_c00001{height:187.038667pt;}
.h16e_c00001{height:199.200000pt;}
.h16b_c00001{height:199.360000pt;}
.h16a_c00001{height:199.361333pt;}
.h13f_c00001{height:205.440000pt;}
.h162_c00001{height:210.080000pt;}
.h13d_c00001{height:223.841333pt;}
.h13e_c00001{height:228.480000pt;}
.h143_c00001{height:242.238667pt;}
.h13c_c00001{height:242.240000pt;}
.h140_c00001{height:357.281333pt;}
.h159_c00001{height:398.720000pt;}
.h110_c00001{height:438.560000pt;}
.h164_c00001{height:525.920000pt;}
.h172_c00001{height:571.360000pt;}
.h170_c00001{height:625.601333pt;}
.h111_c00001{height:852.480000pt;}
.h171_c00001{height:854.880000pt;}
.h112_c00001{height:867.680000pt;}
.hac_c00001{height:1122.560000pt;}
.h0_c00001{height:1122.666667pt;}
.w72_c00001{width:3.680000pt;}
.w2_c00001{width:8.560000pt;}
.w74_c00001{width:10.400000pt;}
.w75_c00001{width:17.680000pt;}
.w71_c00001{width:18.400000pt;}
.w73_c00001{width:18.480000pt;}
.w1f_c00001{width:27.678667pt;}
.w1b_c00001{width:27.680000pt;}
.w13_c00001{width:33.440000pt;}
.wc_c00001{width:37.120000pt;}
.w46_c00001{width:37.121333pt;}
.wb_c00001{width:42.558667pt;}
.w7_c00001{width:42.720000pt;}
.w6c_c00001{width:46.240000pt;}
.wf_c00001{width:46.560000pt;}
.w39_c00001{width:48.480000pt;}
.w2f_c00001{width:53.760000pt;}
.w5e_c00001{width:55.520000pt;}
.w69_c00001{width:55.840000pt;}
.w60_c00001{width:55.998667pt;}
.w62_c00001{width:56.000000pt;}
.w31_c00001{width:56.160000pt;}
.w6e_c00001{width:63.200000pt;}
.w4e_c00001{width:65.440000pt;}
.w4c_c00001{width:65.441333pt;}
.w4d_c00001{width:65.600000pt;}
.w3f_c00001{width:101.120000pt;}
.w3e_c00001{width:112.640000pt;}
.w66_c00001{width:119.840000pt;}
.w48_c00001{width:122.080000pt;}
.w23_c00001{width:122.238667pt;}
.w52_c00001{width:131.680000pt;}
.w70_c00001{width:136.320000pt;}
.w36_c00001{width:138.880000pt;}
.w14_c00001{width:140.160000pt;}
.w6b_c00001{width:140.478667pt;}
.w6a_c00001{width:140.640000pt;}
.w30_c00001{width:141.120000pt;}
.w22_c00001{width:150.558667pt;}
.w63_c00001{width:150.560000pt;}
.w3_c00001{width:154.080000pt;}
.w17_c00001{width:160.000000pt;}
.w29_c00001{width:160.001333pt;}
.we_c00001{width:169.280000pt;}
.w11_c00001{width:169.440000pt;}
.w41_c00001{width:178.721333pt;}
.w4b_c00001{width:178.878667pt;}
.w40_c00001{width:178.880000pt;}
.w25_c00001{width:188.320000pt;}
.w33_c00001{width:195.520000pt;}
.w55_c00001{width:197.760000pt;}
.w42_c00001{width:204.960000pt;}
.w57_c00001{width:207.198667pt;}
.w26_c00001{width:207.200000pt;}
.w27_c00001{width:207.360000pt;}
.w2c_c00001{width:214.400000pt;}
.w20_c00001{width:216.640000pt;}
.w1c_c00001{width:216.641333pt;}
.w5b_c00001{width:226.080000pt;}
.w1e_c00001{width:244.960000pt;}
.w19_c00001{width:245.120000pt;}
.w3c_c00001{width:256.480000pt;}
.w58_c00001{width:263.840000pt;}
.w56_c00001{width:273.440000pt;}
.w5c_c00001{width:292.320000pt;}
.w61_c00001{width:301.760000pt;}
.w3b_c00001{width:318.400000pt;}
.w32_c00001{width:320.480000pt;}
.w51_c00001{width:339.520000pt;}
.w21_c00001{width:339.678667pt;}
.w47_c00001{width:348.960000pt;}
.w5f_c00001{width:356.800000pt;}
.w2d_c00001{width:360.480000pt;}
.w43_c00001{width:367.841333pt;}
.w34_c00001{width:377.280000pt;}
.w3a_c00001{width:379.360000pt;}
.w12_c00001{width:396.161333pt;}
.wd_c00001{width:396.318667pt;}
.w54_c00001{width:396.320000pt;}
.w1a_c00001{width:405.760000pt;}
.w16_c00001{width:405.761333pt;}
.w5a_c00001{width:415.040000pt;}
.w2b_c00001{width:415.200000pt;}
.w24_c00001{width:424.800000pt;}
.w6d_c00001{width:432.000000pt;}
.w2a_c00001{width:433.920000pt;}
.w59_c00001{width:434.080000pt;}
.w37_c00001{width:436.000000pt;}
.wa_c00001{width:443.360000pt;}
.w10_c00001{width:443.520000pt;}
.w53_c00001{width:452.960000pt;}
.w3d_c00001{width:460.160000pt;}
.w4a_c00001{width:462.400000pt;}
.w8_c00001{width:462.401333pt;}
.w49_c00001{width:471.840000pt;}
.w15_c00001{width:476.640000pt;}
.w4f_c00001{width:481.280000pt;}
.w28_c00001{width:481.440000pt;}
.w4_c00001{width:485.840000pt;}
.w67_c00001{width:500.160000pt;}
.w45_c00001{width:519.198667pt;}
.w38_c00001{width:526.240000pt;}
.w68_c00001{width:538.080000pt;}
.w6f_c00001{width:556.960000pt;}
.w2e_c00001{width:573.440000pt;}
.w35_c00001{width:575.520000pt;}
.w5d_c00001{width:611.360000pt;}
.w64_c00001{width:613.600000pt;}
.w9_c00001{width:613.601333pt;}
.w65_c00001{width:620.800000pt;}
.w44_c00001{width:639.680000pt;}
.w50_c00001{width:641.920000pt;}
.w1d_c00001{width:651.360000pt;}
.w18_c00001{width:651.520000pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.626667pt;}
.w5_c00001{width:793.760000pt;}
.w6_c00001{width:794.000000pt;}
.x1a8_c00001{left:-38.240000pt;}
.x0_c00001{left:0.000000pt;}
.x23_c00001{left:5.360000pt;}
.x14b_c00001{left:6.880000pt;}
.x150_c00001{left:8.480000pt;}
.x171_c00001{left:9.760000pt;}
.x185_c00001{left:10.720000pt;}
.x170_c00001{left:12.480000pt;}
.x1dc_c00001{left:14.720000pt;}
.x14a_c00001{left:17.280000pt;}
.x1c0_c00001{left:19.040000pt;}
.x168_c00001{left:20.160000pt;}
.x17c_c00001{left:23.200000pt;}
.x177_c00001{left:24.480000pt;}
.x1b1_c00001{left:26.400000pt;}
.x1cf_c00001{left:28.320000pt;}
.x152_c00001{left:29.440000pt;}
.x17f_c00001{left:31.520000pt;}
.x1a9_c00001{left:33.600000pt;}
.x17a_c00001{left:37.440000pt;}
.x1c7_c00001{left:38.720000pt;}
.x16a_c00001{left:40.640000pt;}
.x16b_c00001{left:42.880000pt;}
.x15d_c00001{left:46.240000pt;}
.x14e_c00001{left:47.520000pt;}
.x169_c00001{left:49.280000pt;}
.x164_c00001{left:51.200000pt;}
.x14d_c00001{left:52.160000pt;}
.x15a_c00001{left:54.400000pt;}
.x1d2_c00001{left:55.520000pt;}
.x16d_c00001{left:56.960000pt;}
.x1a2_c00001{left:58.240000pt;}
.x167_c00001{left:60.960000pt;}
.x1b5_c00001{left:62.880000pt;}
.x1bf_c00001{left:64.160000pt;}
.x1b7_c00001{left:66.880000pt;}
.x1ae_c00001{left:68.960000pt;}
.x153_c00001{left:70.720000pt;}
.x148_c00001{left:73.360000pt;}
.x158_c00001{left:75.680000pt;}
.x1af_c00001{left:76.640000pt;}
.x16c_c00001{left:78.880000pt;}
.x173_c00001{left:80.160000pt;}
.x159_c00001{left:81.600000pt;}
.x1b4_c00001{left:82.720000pt;}
.x6a_c00001{left:85.040000pt;}
.x184_c00001{left:86.400000pt;}
.x15b_c00001{left:88.480000pt;}
.x1b0_c00001{left:89.440000pt;}
.x181_c00001{left:90.720000pt;}
.x154_c00001{left:92.160000pt;}
.x15f_c00001{left:93.280000pt;}
.xe6_c00001{left:95.280000pt;}
.xeb_c00001{left:96.400000pt;}
.x1b2_c00001{left:97.920000pt;}
.x1a4_c00001{left:98.880000pt;}
.x182_c00001{left:100.160000pt;}
.x15e_c00001{left:101.600000pt;}
.x18_c00001{left:104.000000pt;}
.x178_c00001{left:104.960000pt;}
.x19b_c00001{left:106.560000pt;}
.x174_c00001{left:107.680000pt;}
.x48_c00001{left:108.880000pt;}
.x1ca_c00001{left:109.920000pt;}
.x144_c00001{left:111.120000pt;}
.x155_c00001{left:112.160000pt;}
.x4_c00001{left:113.439896pt;}
.x106_c00001{left:115.284800pt;}
.x120_c00001{left:116.560000pt;}
.x11b_c00001{left:118.161240pt;}
.x11e_c00001{left:119.363584pt;}
.xe_c00001{left:120.560000pt;}
.x109_c00001{left:121.463600pt;}
.xf_c00001{left:122.800000pt;}
.x3e_c00001{left:124.160000pt;}
.x1c_c00001{left:125.280000pt;}
.x13e_c00001{left:126.246800pt;}
.x138_c00001{left:127.201600pt;}
.x30_c00001{left:128.160000pt;}
.x1c5_c00001{left:129.120000pt;}
.x14_c00001{left:130.080000pt;}
.x161_c00001{left:131.360000pt;}
.xa_c00001{left:132.400000pt;}
.x18e_c00001{left:133.360000pt;}
.x80_c00001{left:134.320000pt;}
.x53_c00001{left:135.360000pt;}
.x40_c00001{left:137.280000pt;}
.x11_c00001{left:139.520000pt;}
.x10f_c00001{left:140.719048pt;}
.x57_c00001{left:141.760000pt;}
.x81_c00001{left:142.879752pt;}
.xcc_c00001{left:143.837808pt;}
.x17_c00001{left:144.800000pt;}
.xc9_c00001{left:145.758976pt;}
.x38_c00001{left:147.520000pt;}
.x2c_c00001{left:149.040000pt;}
.x143_c00001{left:150.160000pt;}
.xb_c00001{left:151.280000pt;}
.x82_c00001{left:152.879712pt;}
.x4f_c00001{left:154.240000pt;}
.x29_c00001{left:155.760000pt;}
.xdc_c00001{left:157.201584pt;}
.x1e_c00001{left:158.400000pt;}
.xdf_c00001{left:159.520000pt;}
.x5a_c00001{left:160.640000pt;}
.xaa_c00001{left:162.240792pt;}
.x54_c00001{left:163.760000pt;}
.x9f_c00001{left:165.286400pt;}
.xa1_c00001{left:166.738400pt;}
.x12_c00001{left:167.760000pt;}
.x66_c00001{left:170.160000pt;}
.xe9_c00001{left:171.128400pt;}
.x5_c00001{left:172.560000pt;}
.xf7_c00001{left:173.759872pt;}
.x41_c00001{left:175.040000pt;}
.xa0_c00001{left:176.728400pt;}
.xae_c00001{left:178.553352pt;}
.x33_c00001{left:180.320000pt;}
.xda_c00001{left:181.282808pt;}
.x98_c00001{left:183.120352pt;}
.xbe_c00001{left:185.124560pt;}
.xad_c00001{left:186.075032pt;}
.x9e_c00001{left:187.122800pt;}
.x70_c00001{left:189.040000pt;}
.xcb_c00001{left:190.238424pt;}
.x13f_c00001{left:191.360000pt;}
.xac_c00001{left:192.558640pt;}
.xdd_c00001{left:194.084080pt;}
.x12b_c00001{left:195.377600pt;}
.x12a_c00001{left:196.403600pt;}
.xf8_c00001{left:197.520592pt;}
.xab_c00001{left:198.880592pt;}
.x125_c00001{left:199.925200pt;}
.x4d_c00001{left:200.880000pt;}
.xdb_c00001{left:202.405480pt;}
.xcd_c00001{left:203.440000pt;}
.x19c_c00001{left:204.640000pt;}
.xc3_c00001{left:205.759528pt;}
.x121_c00001{left:206.803600pt;}
.x51_c00001{left:207.760000pt;}
.x84_c00001{left:210.238200pt;}
.x86_c00001{left:212.238192pt;}
.x108_c00001{left:213.202400pt;}
.x107_c00001{left:214.328000pt;}
.x78_c00001{left:215.440000pt;}
.xd2_c00001{left:216.880000pt;}
.x83_c00001{left:218.318328pt;}
.x73_c00001{left:220.160000pt;}
.x1d0_c00001{left:221.120000pt;}
.xfe_c00001{left:222.160000pt;}
.x12c_c00001{left:223.281200pt;}
.x6b_c00001{left:224.400000pt;}
.x5e_c00001{left:225.360000pt;}
.x130_c00001{left:226.260800pt;}
.x1cc_c00001{left:227.200000pt;}
.xbf_c00001{left:228.167616pt;}
.x85_c00001{left:229.359032pt;}
.xd0_c00001{left:231.200000pt;}
.x7e_c00001{left:232.960000pt;}
.x5d_c00001{left:234.080000pt;}
.xbc_c00001{left:235.041056pt;}
.x100_c00001{left:236.640000pt;}
.x140_c00001{left:237.600000pt;}
.x49_c00001{left:238.800000pt;}
.xf2_c00001{left:239.751632pt;}
.xbd_c00001{left:241.442080pt;}
.x61_c00001{left:242.960312pt;}
.x35_c00001{left:244.400000pt;}
.xea_c00001{left:245.440000pt;}
.x62_c00001{left:246.639656pt;}
.x1d6_c00001{left:247.840000pt;}
.x105_c00001{left:248.883200pt;}
.x146_c00001{left:249.932480pt;}
.x13_c00001{left:251.760000pt;}
.x99_c00001{left:253.680000pt;}
.x3b_c00001{left:255.680000pt;}
.xfc_c00001{left:257.280000pt;}
.x12f_c00001{left:258.254000pt;}
.xa4_c00001{left:261.200000pt;}
.xca_c00001{left:262.638936pt;}
.xa2_c00001{left:263.760000pt;}
.x79_c00001{left:265.520000pt;}
.x191_c00001{left:267.520000pt;}
.x145_c00001{left:268.484640pt;}
.x1dd_c00001{left:269.440000pt;}
.x71_c00001{left:270.400000pt;}
.x3d_c00001{left:272.400000pt;}
.x77_c00001{left:275.520000pt;}
.x43_c00001{left:277.520000pt;}
.x3c_c00001{left:279.280000pt;}
.xb0_c00001{left:280.400000pt;}
.xe0_c00001{left:282.080000pt;}
.xfb_c00001{left:283.040000pt;}
.x190_c00001{left:284.560000pt;}
.x3a_c00001{left:286.400000pt;}
.x69_c00001{left:287.840000pt;}
.x87_c00001{left:289.998736pt;}
.x6f_c00001{left:291.280000pt;}
.xed_c00001{left:292.800000pt;}
.x37_c00001{left:294.400000pt;}
.x32_c00001{left:296.560000pt;}
.x65_c00001{left:297.920000pt;}
.x63_c00001{left:300.158480pt;}
.x88_c00001{left:301.357408pt;}
.x9a_c00001{left:302.800000pt;}
.x36_c00001{left:304.640000pt;}
.x39_c00001{left:306.400000pt;}
.x9_c00001{left:308.000000pt;}
.x34_c00001{left:309.520000pt;}
.x1ce_c00001{left:311.200000pt;}
.x10e_c00001{left:312.883920pt;}
.x8_c00001{left:314.800000pt;}
.x160_c00001{left:316.160000pt;}
.x7_c00001{left:317.600000pt;}
.x1cb_c00001{left:319.040000pt;}
.x163_c00001{left:321.120000pt;}
.x116_c00001{left:323.126048pt;}
.x19d_c00001{left:324.160000pt;}
.x175_c00001{left:325.600000pt;}
.x198_c00001{left:327.200000pt;}
.x6_c00001{left:329.040000pt;}
.xf9_c00001{left:331.680000pt;}
.xce_c00001{left:332.960000pt;}
.x1cd_c00001{left:335.200000pt;}
.x10_c00001{left:336.320000pt;}
.xc0_c00001{left:338.724944pt;}
.x165_c00001{left:340.480000pt;}
.x188_c00001{left:341.760000pt;}
.xf3_c00001{left:343.200000pt;}
.x68_c00001{left:345.840000pt;}
.x1c8_c00001{left:347.520000pt;}
.x1d7_c00001{left:349.520000pt;}
.x18a_c00001{left:350.559976pt;}
.x15c_c00001{left:352.000000pt;}
.xc4_c00001{left:353.920000pt;}
.x5f_c00001{left:355.360000pt;}
.x19a_c00001{left:356.490240pt;}
.x18b_c00001{left:357.600800pt;}
.x142_c00001{left:358.560000pt;}
.x186_c00001{left:359.600000pt;}
.x50_c00001{left:360.720000pt;}
.x8a_c00001{left:362.718552pt;}
.x147_c00001{left:364.000000pt;}
.x3f_c00001{left:366.160000pt;}
.x187_c00001{left:368.000499pt;}
.x1c9_c00001{left:369.443520pt;}
.x89_c00001{left:373.757920pt;}
.x189_c00001{left:375.600000pt;}
.x141_c00001{left:377.040000pt;}
.xc1_c00001{left:378.480000pt;}
.x72_c00001{left:382.720000pt;}
.x11f_c00001{left:384.400000pt;}
.x3_c00001{left:385.760000pt;}
.x19f_c00001{left:387.840000pt;}
.x18d_c00001{left:388.880000pt;}
.x11d_c00001{left:390.960360pt;}
.x2_c00001{left:392.000000pt;}
.xde_c00001{left:394.400000pt;}
.x60_c00001{left:395.920000pt;}
.x1d_c00001{left:396.960000pt;}
.x1c2_c00001{left:399.680000pt;}
.x139_c00001{left:400.640000pt;}
.x2e_c00001{left:401.600000pt;}
.x1d8_c00001{left:403.200000pt;}
.x1d5_c00001{left:404.160000pt;}
.x193_c00001{left:406.240000pt;}
.x13d_c00001{left:407.281392pt;}
.xf1_c00001{left:408.797048pt;}
.x115_c00001{left:409.920624pt;}
.x64_c00001{left:411.440000pt;}
.xcf_c00001{left:413.280000pt;}
.xc6_c00001{left:415.520000pt;}
.x13c_c00001{left:416.880552pt;}
.x114_c00001{left:418.881176pt;}
.x113_c00001{left:420.801008pt;}
.x199_c00001{left:422.560000pt;}
.xaf_c00001{left:424.480000pt;}
.x132_c00001{left:425.840000pt;}
.x117_c00001{left:427.280000pt;}
.xef_c00001{left:428.557824pt;}
.x13b_c00001{left:429.679432pt;}
.xe2_c00001{left:430.720000pt;}
.x5c_c00001{left:432.560176pt;}
.xff_c00001{left:433.920000pt;}
.xa3_c00001{left:435.120000pt;}
.x6c_c00001{left:436.240000pt;}
.xe1_c00001{left:438.560000pt;}
.x162_c00001{left:440.640000pt;}
.xd_c00001{left:441.680000pt;}
.x8c_c00001{left:443.038872pt;}
.x136_c00001{left:444.079384pt;}
.x74_c00001{left:445.680000pt;}
.x8d_c00001{left:446.878536pt;}
.x8e_c00001{left:448.797032pt;}
.x8b_c00001{left:450.238576pt;}
.x135_c00001{left:451.599728pt;}
.x58_c00001{left:452.960000pt;}
.x134_c00001{left:454.239664pt;}
.x124_c00001{left:456.641440pt;}
.x1de_c00001{left:458.560000pt;}
.x126_c00001{left:459.920000pt;}
.x1d9_c00001{left:461.680000pt;}
.x1a0_c00001{left:463.360000pt;}
.x13a_c00001{left:464.800200pt;}
.x19e_c00001{left:465.760000pt;}
.x47_c00001{left:466.799792pt;}
.xf0_c00001{left:468.477504pt;}
.x123_c00001{left:469.441656pt;}
.x129_c00001{left:470.958472pt;}
.x12e_c00001{left:472.878576pt;}
.x7c_c00001{left:475.200000pt;}
.x112_c00001{left:476.961104pt;}
.x18c_c00001{left:479.759840pt;}
.x6d_c00001{left:481.360000pt;}
.xe3_c00001{left:483.040000pt;}
.x12d_c00001{left:485.119008pt;}
.x7a_c00001{left:486.640000pt;}
.xa6_c00001{left:487.599544pt;}
.x179_c00001{left:489.120000pt;}
.x75_c00001{left:490.880000pt;}
.x1d4_c00001{left:493.040000pt;}
.x1bc_c00001{left:494.400000pt;}
.x122_c00001{left:495.441552pt;}
.x7d_c00001{left:496.559968pt;}
.x10d_c00001{left:498.159064pt;}
.x1b_c00001{left:499.280000pt;}
.x11c_c00001{left:500.719440pt;}
.x192_c00001{left:502.400000pt;}
.xd9_c00001{left:503.836864pt;}
.xe8_c00001{left:505.760000pt;}
.x133_c00001{left:506.720416pt;}
.x2d_c00001{left:508.080000pt;}
.x194_c00001{left:509.200000pt;}
.xee_c00001{left:510.637656pt;}
.x11a_c00001{left:513.200000pt;}
.x90_c00001{left:514.796768pt;}
.x195_c00001{left:516.240000pt;}
.x31_c00001{left:517.520000pt;}
.x10c_c00001{left:519.839672pt;}
.x91_c00001{left:521.436688pt;}
.x7b_c00001{left:522.800000pt;}
.x1da_c00001{left:523.760000pt;}
.xec_c00001{left:524.720000pt;}
.x42_c00001{left:525.840000pt;}
.x8f_c00001{left:526.796720pt;}
.x18f_c00001{left:528.560000pt;}
.x2f_c00001{left:529.680264pt;}
.x97_c00001{left:531.200456pt;}
.xe4_c00001{left:532.160000pt;}
.x111_c00001{left:533.360344pt;}
.x5b_c00001{left:534.480000pt;}
.x2a_c00001{left:536.400000pt;}
.xf4_c00001{left:537.360000pt;}
.x96_c00001{left:538.320000pt;}
.x20_c00001{left:540.080000pt;}
.xd8_c00001{left:541.116608pt;}
.x128_c00001{left:542.319576pt;}
.xbb_c00001{left:543.359096pt;}
.xa7_c00001{left:544.879208pt;}
.x4c_c00001{left:545.840000pt;}
.x127_c00001{left:547.199984pt;}
.xc_c00001{left:548.880000pt;}
.x56_c00001{left:550.080000pt;}
.x110_c00001{left:551.600752pt;}
.xc8_c00001{left:553.118736pt;}
.x131_c00001{left:554.320576pt;}
.x44_c00001{left:555.360000pt;}
.xd1_c00001{left:556.800000pt;}
.x1aa_c00001{left:557.920000pt;}
.xd7_c00001{left:559.116536pt;}
.x55_c00001{left:560.560000pt;}
.x52_c00001{left:562.560000pt;}
.xd6_c00001{left:564.636888pt;}
.x196_c00001{left:565.760480pt;}
.xc5_c00001{left:566.879848pt;}
.x10b_c00001{left:568.078624pt;}
.xd5_c00001{left:569.517296pt;}
.xba_c00001{left:570.638880pt;}
.x9b_c00001{left:572.240000pt;}
.x4a_c00001{left:574.160000pt;}
.x104_c00001{left:575.360952pt;}
.xd4_c00001{left:576.397696pt;}
.x1_c00001{left:578.000000pt;}
.xc7_c00001{left:579.118632pt;}
.x166_c00001{left:580.640000pt;}
.xe5_c00001{left:581.600000pt;}
.x103_c00001{left:582.640816pt;}
.x95_c00001{left:584.480000pt;}
.x1db_c00001{left:585.440000pt;}
.xb9_c00001{left:586.398336pt;}
.x92_c00001{left:587.755728pt;}
.x118_c00001{left:589.040000pt;}
.xd3_c00001{left:590.958760pt;}
.xa8_c00001{left:591.919768pt;}
.x1f_c00001{left:593.120000pt;}
.x94_c00001{left:594.474472pt;}
.xe7_c00001{left:595.680000pt;}
.x59_c00001{left:596.639480pt;}
.x102_c00001{left:597.920648pt;}
.x1bd_c00001{left:599.040000pt;}
.xa9_c00001{left:600.160216pt;}
.x93_c00001{left:601.914656pt;}
.x67_c00001{left:603.200000pt;}
.x9c_c00001{left:604.320032pt;}
.xb8_c00001{left:605.758312pt;}
.x6e_c00001{left:607.200000pt;}
.xb7_c00001{left:608.638728pt;}
.xb6_c00001{left:610.078936pt;}
.x22_c00001{left:612.000000pt;}
.x76_c00001{left:613.440000pt;}
.xf6_c00001{left:614.720000pt;}
.x21_c00001{left:615.840000pt;}
.xb5_c00001{left:617.199816pt;}
.x9d_c00001{left:618.478960pt;}
.xf5_c00001{left:619.520000pt;}
.x24_c00001{left:620.560000pt;}
.x1d3_c00001{left:621.520000pt;}
.x4e_c00001{left:623.360000pt;}
.xb4_c00001{left:625.119624pt;}
.x1a_c00001{left:627.440000pt;}
.xb3_c00001{left:628.639984pt;}
.x25_c00001{left:629.600000pt;}
.xc2_c00001{left:631.359696pt;}
.x16_c00001{left:632.880000pt;}
.x4b_c00001{left:634.720000pt;}
.xb2_c00001{left:636.559792pt;}
.x26_c00001{left:638.160000pt;}
.x101_c00001{left:639.680000pt;}
.x46_c00001{left:641.200000pt;}
.x19_c00001{left:642.880000pt;}
.x15_c00001{left:644.720000pt;}
.x27_c00001{left:647.200000pt;}
.x197_c00001{left:648.640000pt;}
.x45_c00001{left:649.760000pt;}
.x14c_c00001{left:650.720000pt;}
.x14f_c00001{left:652.480000pt;}
.x2b_c00001{left:654.080000pt;}
.x28_c00001{left:655.759867pt;}
.x183_c00001{left:657.440000pt;}
.x17e_c00001{left:659.200000pt;}
.x137_c00001{left:660.720000pt;}
.x16e_c00001{left:662.560000pt;}
.x1df_c00001{left:663.679867pt;}
.x1b8_c00001{left:665.120000pt;}
.x1c4_c00001{left:667.360000pt;}
.x1be_c00001{left:668.640000pt;}
.x151_c00001{left:669.600000pt;}
.xb1_c00001{left:671.440000pt;}
.x180_c00001{left:672.640000pt;}
.xfd_c00001{left:673.679867pt;}
.x17d_c00001{left:675.520000pt;}
.x119_c00001{left:677.040000pt;}
.x7f_c00001{left:678.400000pt;}
.xa5_c00001{left:680.320000pt;}
.x10a_c00001{left:681.440440pt;}
.xfa_c00001{left:685.200000pt;}
.x16f_c00001{left:686.400000pt;}
.x1ba_c00001{left:688.480000pt;}
.x1ab_c00001{left:690.240000pt;}
.x1a6_c00001{left:691.680000pt;}
.x1c3_c00001{left:695.200000pt;}
.x1a1_c00001{left:697.120000pt;}
.x149_c00001{left:699.680000pt;}
.x1b3_c00001{left:700.960000pt;}
.x1ac_c00001{left:702.240000pt;}
.x1ad_c00001{left:705.120000pt;}
.x17b_c00001{left:706.560000pt;}
.x1d1_c00001{left:712.320000pt;}
.x1b9_c00001{left:714.240000pt;}
.x156_c00001{left:716.960000pt;}
.x172_c00001{left:720.160000pt;}
.x1a3_c00001{left:721.760000pt;}
.x157_c00001{left:723.520000pt;}
.x176_c00001{left:727.040000pt;}
.x1a7_c00001{left:732.960000pt;}
.x1bb_c00001{left:736.960000pt;}
.x1c6_c00001{left:738.240000pt;}
.x1b6_c00001{left:741.920000pt;}
.x1c1_c00001{left:746.080000pt;}
.x1a5_c00001{left:748.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_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_fd75f9e21a17c9373d933293.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_7dfe9add7ae9844f2f1706dd.woff2')format("woff");}.ff2_c02000{font-family:ff2_c02000;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c02000{vertical-align:-16.560000px;}
.v2_c02000{vertical-align:-5.759400px;}
.v0_c02000{vertical-align:0.000000px;}
.ls23_c02000{letter-spacing:-0.180360px;}
.ls19_c02000{letter-spacing:-0.043200px;}
.ls1a_c02000{letter-spacing:-0.043092px;}
.ls1f_c02000{letter-spacing:-0.039528px;}
.ls1e_c02000{letter-spacing:-0.038304px;}
.ls21_c02000{letter-spacing:-0.014400px;}
.ls1b_c02000{letter-spacing:-0.014364px;}
.ls24_c02000{letter-spacing:-0.013176px;}
.ls20_c02000{letter-spacing:-0.012024px;}
.ls1d_c02000{letter-spacing:-0.004788px;}
.ls18_c02000{letter-spacing:0.000000px;}
.ls4_c02000{letter-spacing:0.006588px;}
.ls16_c02000{letter-spacing:0.007200px;}
.ls1_c02000{letter-spacing:0.009576px;}
.ls0_c02000{letter-spacing:0.014400px;}
.ls6_c02000{letter-spacing:0.019764px;}
.ls13_c02000{letter-spacing:0.021600px;}
.ls9_c02000{letter-spacing:0.026352px;}
.ls14_c02000{letter-spacing:0.028800px;}
.ls15_c02000{letter-spacing:0.030060px;}
.lsf_c02000{letter-spacing:0.032940px;}
.ls12_c02000{letter-spacing:0.039528px;}
.ls17_c02000{letter-spacing:0.043200px;}
.lsc_c02000{letter-spacing:0.046116px;}
.ls11_c02000{letter-spacing:0.052704px;}
.ls2_c02000{letter-spacing:0.059292px;}
.lse_c02000{letter-spacing:0.065880px;}
.lsb_c02000{letter-spacing:0.072468px;}
.ls7_c02000{letter-spacing:0.079056px;}
.lsd_c02000{letter-spacing:0.092232px;}
.ls10_c02000{letter-spacing:0.098820px;}
.ls3_c02000{letter-spacing:0.138852px;}
.ls22_c02000{letter-spacing:0.144288px;}
.ls5_c02000{letter-spacing:0.158112px;}
.ls8_c02000{letter-spacing:0.177876px;}
.ls1c_c02000{letter-spacing:0.181944px;}
.lsa_c02000{letter-spacing:157.860000px;}
.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;}
}
.ws16_c02000{word-spacing:-0.100800px;}
.ws22_c02000{word-spacing:-0.079200px;}
.ws15_c02000{word-spacing:-0.021600px;}
.ws2_c02000{word-spacing:-0.014400px;}
.ws4_c02000{word-spacing:-0.007200px;}
.ws10_c02000{word-spacing:-0.006588px;}
.ws3_c02000{word-spacing:0.000000px;}
.ws8_c02000{word-spacing:0.013176px;}
.wsc_c02000{word-spacing:0.019764px;}
.wse_c02000{word-spacing:0.026352px;}
.ws5_c02000{word-spacing:0.032940px;}
.ws11_c02000{word-spacing:0.039528px;}
.wsa_c02000{word-spacing:0.046116px;}
.ws12_c02000{word-spacing:0.052704px;}
.wsf_c02000{word-spacing:0.059292px;}
.ws6_c02000{word-spacing:0.065880px;}
.ws9_c02000{word-spacing:0.072468px;}
.ws7_c02000{word-spacing:0.085644px;}
.ws14_c02000{word-spacing:0.102204px;}
.wsb_c02000{word-spacing:0.131760px;}
.wsd_c02000{word-spacing:0.401868px;}
.ws1c_c02000{word-spacing:3.669516px;}
.ws1b_c02000{word-spacing:3.702456px;}
.ws17_c02000{word-spacing:4.710420px;}
.ws13_c02000{word-spacing:7.628904px;}
.ws20_c02000{word-spacing:11.347200px;}
.ws21_c02000{word-spacing:11.505600px;}
.ws1f_c02000{word-spacing:26.625600px;}
.ws1d_c02000{word-spacing:26.632800px;}
.ws1e_c02000{word-spacing:26.704800px;}
.ws1a_c02000{word-spacing:31.022892px;}
.ws19_c02000{word-spacing:64.865448px;}
.ws1_c02000{word-spacing:107.569440px;}
.ws0_c02000{word-spacing:140.689440px;}
.ws18_c02000{word-spacing:161.689284px;}
._7_c02000{margin-left:-1.014552px;}
._c_c02000{width:1.113372px;}
._3_c02000{width:67.764168px;}
._13_c02000{width:69.739488px;}
._2_c02000{width:73.426248px;}
._b_c02000{width:108.788184px;}
._1_c02000{width:116.385048px;}
._0_c02000{width:134.551512px;}
._6_c02000{width:141.036372px;}
._5_c02000{width:146.203848px;}
._a_c02000{width:178.965972px;}
._9_c02000{width:365.296464px;}
._12_c02000{width:432.401832px;}
._e_c02000{width:460.585296px;}
._8_c02000{width:638.105544px;}
._11_c02000{width:667.685664px;}
._14_c02000{width:711.381960px;}
._d_c02000{width:746.186040px;}
._4_c02000{width:794.122560px;}
._10_c02000{width:943.786512px;}
._f_c02000{width:1124.985096px;}
.fc0_c02000{color:rgb(0,0,0);}
.fs4_c02000{font-size:42.120000px;}
.fs1_c02000{font-size:47.880000px;}
.fs3_c02000{font-size:60.120000px;}
.fs2_c02000{font-size:65.880000px;}
.fs0_c02000{font-size:72.000000px;}
.y0_c02000{bottom:0.000000px;}
.y4_c02000{bottom:57.360450px;}
.y3_c02000{bottom:78.060450px;}
.y3a_c02000{bottom:109.739523px;}
.y39_c02000{bottom:123.509811px;}
.y38_c02000{bottom:137.280099px;}
.y37_c02000{bottom:151.140162px;}
.y36_c02000{bottom:164.910450px;}
.y35_c02000{bottom:191.280450px;}
.y34_c02000{bottom:222.330450px;}
.y33_c02000{bottom:253.380450px;}
.y32_c02000{bottom:277.680450px;}
.y31_c02000{bottom:314.490234px;}
.y30_c02000{bottom:343.380342px;}
.y2f_c02000{bottom:372.270450px;}
.y2b_c02000{bottom:386.400450px;}
.y2e_c02000{bottom:399.720450px;}
.y2a_c02000{bottom:405.390450px;}
.y2d_c02000{bottom:421.500600px;}
.y29_c02000{bottom:424.380450px;}
.y2c_c02000{bottom:443.370600px;}
.y28_c02000{bottom:444.810450px;}
.y27_c02000{bottom:465.240450px;}
.y26_c02000{bottom:483.870600px;}
.y25_c02000{bottom:505.290600px;}
.y24_c02000{bottom:542.010342px;}
.y23_c02000{bottom:570.900450px;}
.y22_c02000{bottom:585.300450px;}
.y21_c02000{bottom:606.720450px;}
.y20_c02000{bottom:643.440450px;}
.y1f_c02000{bottom:672.870450px;}
.y1d_c02000{bottom:688.350450px;}
.y1e_c02000{bottom:707.340450px;}
.y1c_c02000{bottom:711.480450px;}
.y1b_c02000{bottom:727.140450px;}
.y1a_c02000{bottom:750.180450px;}
.y19_c02000{bottom:765.750450px;}
.y18_c02000{bottom:788.880450px;}
.y17_c02000{bottom:804.540600px;}
.y16_c02000{bottom:827.580450px;}
.y15_c02000{bottom:843.150450px;}
.y14_c02000{bottom:866.280450px;}
.y13_c02000{bottom:881.940450px;}
.y12_c02000{bottom:904.980450px;}
.y11_c02000{bottom:920.640450px;}
.y10_c02000{bottom:943.680450px;}
.yf_c02000{bottom:959.340450px;}
.ye_c02000{bottom:982.380450px;}
.yd_c02000{bottom:997.950450px;}
.yc_c02000{bottom:1021.080450px;}
.yb_c02000{bottom:1036.650450px;}
.ya_c02000{bottom:1059.780450px;}
.y9_c02000{bottom:1074.360450px;}
.y8_c02000{bottom:1088.130450px;}
.y7_c02000{bottom:1101.900450px;}
.y6_c02000{bottom:1117.830450px;}
.y5_c02000{bottom:1139.250450px;}
.y2_c02000{bottom:1172.640450px;}
.y1_c02000{bottom:1193.340450px;}
.h7_c02000{height:37.410293px;}
.h3_c02000{height:42.526230px;}
.h9_c02000{height:52.751777px;}
.h8_c02000{height:53.397598px;}
.ha_c02000{height:57.805840px;}
.h6_c02000{height:58.152935px;}
.h5_c02000{height:58.153535px;}
.h4_c02000{height:58.513535px;}
.h1_c02000{height:63.175781px;}
.h2_c02000{height:63.949219px;}
.h0_c02000{height:1263.000000px;}
.w1_c02000{width:892.500000px;}
.w0_c02000{width:892.830000px;}
.x0_c02000{left:0.000000px;}
.x1_c02000{left:127.620000px;}
.x3_c02000{left:135.630000px;}
.x10_c02000{left:140.760000px;}
.xb_c02000{left:167.670000px;}
.x11_c02000{left:188.820000px;}
.x12_c02000{left:401.490000px;}
.x2_c02000{left:437.490000px;}
.xd_c02000{left:515.880000px;}
.xc_c02000{left:548.910000px;}
.x4_c02000{left:562.680000px;}
.x7_c02000{left:616.140000px;}
.x5_c02000{left:621.450000px;}
.x6_c02000{left:629.460000px;}
.xf_c02000{left:642.690000px;}
.xe_c02000{left:650.970000px;}
.x8_c02000{left:673.470000px;}
.x9_c02000{left:674.640000px;}
.xa_c02000{left:722.160000px;}
@media print{
.v1_c02000{vertical-align:-14.720000pt;}
.v2_c02000{vertical-align:-5.119467pt;}
.v0_c02000{vertical-align:0.000000pt;}
.ls23_c02000{letter-spacing:-0.160320pt;}
.ls19_c02000{letter-spacing:-0.038400pt;}
.ls1a_c02000{letter-spacing:-0.038304pt;}
.ls1f_c02000{letter-spacing:-0.035136pt;}
.ls1e_c02000{letter-spacing:-0.034048pt;}
.ls21_c02000{letter-spacing:-0.012800pt;}
.ls1b_c02000{letter-spacing:-0.012768pt;}
.ls24_c02000{letter-spacing:-0.011712pt;}
.ls20_c02000{letter-spacing:-0.010688pt;}
.ls1d_c02000{letter-spacing:-0.004256pt;}
.ls18_c02000{letter-spacing:0.000000pt;}
.ls4_c02000{letter-spacing:0.005856pt;}
.ls16_c02000{letter-spacing:0.006400pt;}
.ls1_c02000{letter-spacing:0.008512pt;}
.ls0_c02000{letter-spacing:0.012800pt;}
.ls6_c02000{letter-spacing:0.017568pt;}
.ls13_c02000{letter-spacing:0.019200pt;}
.ls9_c02000{letter-spacing:0.023424pt;}
.ls14_c02000{letter-spacing:0.025600pt;}
.ls15_c02000{letter-spacing:0.026720pt;}
.lsf_c02000{letter-spacing:0.029280pt;}
.ls12_c02000{letter-spacing:0.035136pt;}
.ls17_c02000{letter-spacing:0.038400pt;}
.lsc_c02000{letter-spacing:0.040992pt;}
.ls11_c02000{letter-spacing:0.046848pt;}
.ls2_c02000{letter-spacing:0.052704pt;}
.lse_c02000{letter-spacing:0.058560pt;}
.lsb_c02000{letter-spacing:0.064416pt;}
.ls7_c02000{letter-spacing:0.070272pt;}
.lsd_c02000{letter-spacing:0.081984pt;}
.ls10_c02000{letter-spacing:0.087840pt;}
.ls3_c02000{letter-spacing:0.123424pt;}
.ls22_c02000{letter-spacing:0.128256pt;}
.ls5_c02000{letter-spacing:0.140544pt;}
.ls8_c02000{letter-spacing:0.158112pt;}
.ls1c_c02000{letter-spacing:0.161728pt;}
.lsa_c02000{letter-spacing:140.320000pt;}
.ws16_c02000{word-spacing:-0.089600pt;}
.ws22_c02000{word-spacing:-0.070400pt;}
.ws15_c02000{word-spacing:-0.019200pt;}
.ws2_c02000{word-spacing:-0.012800pt;}
.ws4_c02000{word-spacing:-0.006400pt;}
.ws10_c02000{word-spacing:-0.005856pt;}
.ws3_c02000{word-spacing:0.000000pt;}
.ws8_c02000{word-spacing:0.011712pt;}
.wsc_c02000{word-spacing:0.017568pt;}
.wse_c02000{word-spacing:0.023424pt;}
.ws5_c02000{word-spacing:0.029280pt;}
.ws11_c02000{word-spacing:0.035136pt;}
.wsa_c02000{word-spacing:0.040992pt;}
.ws12_c02000{word-spacing:0.046848pt;}
.wsf_c02000{word-spacing:0.052704pt;}
.ws6_c02000{word-spacing:0.058560pt;}
.ws9_c02000{word-spacing:0.064416pt;}
.ws7_c02000{word-spacing:0.076128pt;}
.ws14_c02000{word-spacing:0.090848pt;}
.wsb_c02000{word-spacing:0.117120pt;}
.wsd_c02000{word-spacing:0.357216pt;}
.ws1c_c02000{word-spacing:3.261792pt;}
.ws1b_c02000{word-spacing:3.291072pt;}
.ws17_c02000{word-spacing:4.187040pt;}
.ws13_c02000{word-spacing:6.781248pt;}
.ws20_c02000{word-spacing:10.086400pt;}
.ws21_c02000{word-spacing:10.227200pt;}
.ws1f_c02000{word-spacing:23.667200pt;}
.ws1d_c02000{word-spacing:23.673600pt;}
.ws1e_c02000{word-spacing:23.737600pt;}
.ws1a_c02000{word-spacing:27.575904pt;}
.ws19_c02000{word-spacing:57.658176pt;}
.ws1_c02000{word-spacing:95.617280pt;}
.ws0_c02000{word-spacing:125.057280pt;}
.ws18_c02000{word-spacing:143.723808pt;}
._7_c02000{margin-left:-0.901824pt;}
._c_c02000{width:0.989664pt;}
._3_c02000{width:60.234816pt;}
._13_c02000{width:61.990656pt;}
._2_c02000{width:65.267776pt;}
._b_c02000{width:96.700608pt;}
._1_c02000{width:103.453376pt;}
._0_c02000{width:119.601344pt;}
._6_c02000{width:125.365664pt;}
._5_c02000{width:129.958976pt;}
._a_c02000{width:159.080864pt;}
._9_c02000{width:324.707968pt;}
._12_c02000{width:384.357184pt;}
._e_c02000{width:409.409152pt;}
._8_c02000{width:567.204928pt;}
._11_c02000{width:593.498368pt;}
._14_c02000{width:632.339520pt;}
._d_c02000{width:663.276480pt;}
._4_c02000{width:705.886720pt;}
._10_c02000{width:838.921344pt;}
._f_c02000{width:999.986752pt;}
.fs4_c02000{font-size:37.440000pt;}
.fs1_c02000{font-size:42.560000pt;}
.fs3_c02000{font-size:53.440000pt;}
.fs2_c02000{font-size:58.560000pt;}
.fs0_c02000{font-size:64.000000pt;}
.y0_c02000{bottom:0.000000pt;}
.y4_c02000{bottom:50.987067pt;}
.y3_c02000{bottom:69.387067pt;}
.y3a_c02000{bottom:97.546243pt;}
.y39_c02000{bottom:109.786499pt;}
.y38_c02000{bottom:122.026755pt;}
.y37_c02000{bottom:134.346811pt;}
.y36_c02000{bottom:146.587067pt;}
.y35_c02000{bottom:170.027067pt;}
.y34_c02000{bottom:197.627067pt;}
.y33_c02000{bottom:225.227067pt;}
.y32_c02000{bottom:246.827067pt;}
.y31_c02000{bottom:279.546875pt;}
.y30_c02000{bottom:305.226971pt;}
.y2f_c02000{bottom:330.907067pt;}
.y2b_c02000{bottom:343.467067pt;}
.y2e_c02000{bottom:355.307067pt;}
.y2a_c02000{bottom:360.347067pt;}
.y2d_c02000{bottom:374.667200pt;}
.y29_c02000{bottom:377.227067pt;}
.y2c_c02000{bottom:394.107200pt;}
.y28_c02000{bottom:395.387067pt;}
.y27_c02000{bottom:413.547067pt;}
.y26_c02000{bottom:430.107200pt;}
.y25_c02000{bottom:449.147200pt;}
.y24_c02000{bottom:481.786971pt;}
.y23_c02000{bottom:507.467067pt;}
.y22_c02000{bottom:520.267067pt;}
.y21_c02000{bottom:539.307067pt;}
.y20_c02000{bottom:571.947067pt;}
.y1f_c02000{bottom:598.107067pt;}
.y1d_c02000{bottom:611.867067pt;}
.y1e_c02000{bottom:628.747067pt;}
.y1c_c02000{bottom:632.427067pt;}
.y1b_c02000{bottom:646.347067pt;}
.y1a_c02000{bottom:666.827067pt;}
.y19_c02000{bottom:680.667067pt;}
.y18_c02000{bottom:701.227067pt;}
.y17_c02000{bottom:715.147200pt;}
.y16_c02000{bottom:735.627067pt;}
.y15_c02000{bottom:749.467067pt;}
.y14_c02000{bottom:770.027067pt;}
.y13_c02000{bottom:783.947067pt;}
.y12_c02000{bottom:804.427067pt;}
.y11_c02000{bottom:818.347067pt;}
.y10_c02000{bottom:838.827067pt;}
.yf_c02000{bottom:852.747067pt;}
.ye_c02000{bottom:873.227067pt;}
.yd_c02000{bottom:887.067067pt;}
.yc_c02000{bottom:907.627067pt;}
.yb_c02000{bottom:921.467067pt;}
.ya_c02000{bottom:942.027067pt;}
.y9_c02000{bottom:954.987067pt;}
.y8_c02000{bottom:967.227067pt;}
.y7_c02000{bottom:979.467067pt;}
.y6_c02000{bottom:993.627067pt;}
.y5_c02000{bottom:1012.667067pt;}
.y2_c02000{bottom:1042.347067pt;}
.y1_c02000{bottom:1060.747067pt;}
.h7_c02000{height:33.253594pt;}
.h3_c02000{height:37.801094pt;}
.h9_c02000{height:46.890469pt;}
.h8_c02000{height:47.464531pt;}
.ha_c02000{height:51.382969pt;}
.h6_c02000{height:51.691498pt;}
.h5_c02000{height:51.692031pt;}
.h4_c02000{height:52.012031pt;}
.h1_c02000{height:56.156250pt;}
.h2_c02000{height:56.843750pt;}
.h0_c02000{height:1122.666667pt;}
.w1_c02000{width:793.333333pt;}
.w0_c02000{width:793.626667pt;}
.x0_c02000{left:0.000000pt;}
.x1_c02000{left:113.440000pt;}
.x3_c02000{left:120.560000pt;}
.x10_c02000{left:125.120000pt;}
.xb_c02000{left:149.040000pt;}
.x11_c02000{left:167.840000pt;}
.x12_c02000{left:356.880000pt;}
.x2_c02000{left:388.880000pt;}
.xd_c02000{left:458.560000pt;}
.xc_c02000{left:487.920000pt;}
.x4_c02000{left:500.160000pt;}
.x7_c02000{left:547.680000pt;}
.x5_c02000{left:552.400000pt;}
.x6_c02000{left:559.520000pt;}
.xf_c02000{left:571.280000pt;}
.xe_c02000{left:578.640000pt;}
.x8_c02000{left:598.640000pt;}
.x9_c02000{left:599.680000pt;}
.xa_c02000{left:641.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_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_7cfe3805cbd9228e99325da2.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_9d31e737de0042eba93800ad.woff2')format("woff");}.ff2_c02001{font-family:ff2_c02001;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02001;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff3_c02001{font-family:ff3_c02001;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_c02001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02001{font-family:ff4_c02001;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_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;}
.lsc_c02001{letter-spacing:-0.050400px;}
.lsd_c02001{letter-spacing:-0.021600px;}
.lsf_c02001{letter-spacing:-0.014400px;}
.lse_c02001{letter-spacing:-0.007200px;}
.lsb_c02001{letter-spacing:0.000000px;}
.ls3_c02001{letter-spacing:0.007200px;}
.ls0_c02001{letter-spacing:0.014400px;}
.lsa_c02001{letter-spacing:0.021600px;}
.ls1_c02001{letter-spacing:0.028800px;}
.ls2_c02001{letter-spacing:0.036000px;}
.ls6_c02001{letter-spacing:0.043200px;}
.ls7_c02001{letter-spacing:0.057600px;}
.ls5_c02001{letter-spacing:0.064800px;}
.ls9_c02001{letter-spacing:0.072000px;}
.ls4_c02001{letter-spacing:0.079200px;}
.ls8_c02001{letter-spacing:54.864000px;}
.sc__c02001{text-shadow:none;}
.sc0_c02001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02001{-webkit-text-stroke:0px transparent;}
.sc0_c02001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02001{word-spacing:-72.000000px;}
.ws17_c02001{word-spacing:-0.172800px;}
.ws19_c02001{word-spacing:-0.086400px;}
.wsf_c02001{word-spacing:-0.072000px;}
.ws1a_c02001{word-spacing:-0.057600px;}
.ws10_c02001{word-spacing:-0.036000px;}
.ws1_c02001{word-spacing:-0.014400px;}
.ws2_c02001{word-spacing:0.000000px;}
.ws1c_c02001{word-spacing:0.021600px;}
.ws1d_c02001{word-spacing:0.158400px;}
.ws1e_c02001{word-spacing:1.008000px;}
.ws4_c02001{word-spacing:1.296000px;}
.ws3_c02001{word-spacing:1.411200px;}
.wsd_c02001{word-spacing:2.404800px;}
.wse_c02001{word-spacing:2.491200px;}
.ws7_c02001{word-spacing:2.844000px;}
.ws8_c02001{word-spacing:2.937600px;}
.wsc_c02001{word-spacing:3.924000px;}
.wsb_c02001{word-spacing:3.967200px;}
.ws9_c02001{word-spacing:4.255200px;}
.wsa_c02001{word-spacing:4.327200px;}
.ws28_c02001{word-spacing:7.056000px;}
.ws27_c02001{word-spacing:7.178400px;}
.ws1b_c02001{word-spacing:7.876800px;}
.ws6_c02001{word-spacing:10.216800px;}
.ws5_c02001{word-spacing:10.368000px;}
.ws22_c02001{word-spacing:11.037600px;}
.ws18_c02001{word-spacing:11.131200px;}
.ws23_c02001{word-spacing:11.145600px;}
.ws1f_c02001{word-spacing:11.268000px;}
.ws20_c02001{word-spacing:11.469600px;}
.ws21_c02001{word-spacing:11.534400px;}
.ws12_c02001{word-spacing:11.757600px;}
.ws13_c02001{word-spacing:11.836800px;}
.ws26_c02001{word-spacing:11.872800px;}
.ws14_c02001{word-spacing:11.901600px;}
.ws24_c02001{word-spacing:17.956800px;}
.ws11_c02001{word-spacing:17.964000px;}
.ws25_c02001{word-spacing:17.978400px;}
.ws16_c02001{word-spacing:29.354400px;}
.ws15_c02001{word-spacing:29.462400px;}
._0_c02001{margin-left:-1.548000px;}
.fc0_c02001{color:rgb(0,0,0);}
.fs1_c02001{font-size:47.880000px;}
.fs0_c02001{font-size:72.000000px;}
.y0_c02001{bottom:0.000000px;}
.y4_c02001{bottom:57.360450px;}
.y3_c02001{bottom:78.060450px;}
.y25_c02001{bottom:169.050450px;}
.y24_c02001{bottom:200.100450px;}
.y23_c02001{bottom:231.150450px;}
.y22_c02001{bottom:262.200450px;}
.y21_c02001{bottom:293.250450px;}
.y20_c02001{bottom:324.300450px;}
.y1f_c02001{bottom:355.350450px;}
.y1e_c02001{bottom:386.400450px;}
.y1d_c02001{bottom:417.450450px;}
.y1c_c02001{bottom:448.500450px;}
.y1b_c02001{bottom:479.460450px;}
.y1a_c02001{bottom:511.860450px;}
.y19_c02001{bottom:544.260450px;}
.y18_c02001{bottom:575.220450px;}
.y17_c02001{bottom:607.620450px;}
.y16_c02001{bottom:638.670450px;}
.y15_c02001{bottom:669.720450px;}
.y14_c02001{bottom:700.680450px;}
.y13_c02001{bottom:733.080450px;}
.y12_c02001{bottom:764.130450px;}
.y11_c02001{bottom:795.180450px;}
.y10_c02001{bottom:826.230450px;}
.yf_c02001{bottom:857.280450px;}
.ye_c02001{bottom:888.330450px;}
.yd_c02001{bottom:919.380450px;}
.yc_c02001{bottom:950.430450px;}
.yb_c02001{bottom:981.480450px;}
.ya_c02001{bottom:1012.530450px;}
.y9_c02001{bottom:1043.580450px;}
.y8_c02001{bottom:1074.630450px;}
.y7_c02001{bottom:1105.680450px;}
.y6_c02001{bottom:1124.850450px;}
.y5_c02001{bottom:1139.970450px;}
.y2_c02001{bottom:1172.640450px;}
.y1_c02001{bottom:1193.340450px;}
.h3_c02001{height:42.526230px;}
.h1_c02001{height:63.175781px;}
.h2_c02001{height:63.949219px;}
.h4_c02001{height:75.093750px;}
.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;}
.x3_c02001{left:148.950000px;}
.x4_c02001{left:164.430000px;}
.x5_c02001{left:191.430000px;}
.x2_c02001{left:437.490000px;}
@media print{
.v0_c02001{vertical-align:0.000000pt;}
.lsc_c02001{letter-spacing:-0.044800pt;}
.lsd_c02001{letter-spacing:-0.019200pt;}
.lsf_c02001{letter-spacing:-0.012800pt;}
.lse_c02001{letter-spacing:-0.006400pt;}
.lsb_c02001{letter-spacing:0.000000pt;}
.ls3_c02001{letter-spacing:0.006400pt;}
.ls0_c02001{letter-spacing:0.012800pt;}
.lsa_c02001{letter-spacing:0.019200pt;}
.ls1_c02001{letter-spacing:0.025600pt;}
.ls2_c02001{letter-spacing:0.032000pt;}
.ls6_c02001{letter-spacing:0.038400pt;}
.ls7_c02001{letter-spacing:0.051200pt;}
.ls5_c02001{letter-spacing:0.057600pt;}
.ls9_c02001{letter-spacing:0.064000pt;}
.ls4_c02001{letter-spacing:0.070400pt;}
.ls8_c02001{letter-spacing:48.768000pt;}
.ws0_c02001{word-spacing:-64.000000pt;}
.ws17_c02001{word-spacing:-0.153600pt;}
.ws19_c02001{word-spacing:-0.076800pt;}
.wsf_c02001{word-spacing:-0.064000pt;}
.ws1a_c02001{word-spacing:-0.051200pt;}
.ws10_c02001{word-spacing:-0.032000pt;}
.ws1_c02001{word-spacing:-0.012800pt;}
.ws2_c02001{word-spacing:0.000000pt;}
.ws1c_c02001{word-spacing:0.019200pt;}
.ws1d_c02001{word-spacing:0.140800pt;}
.ws1e_c02001{word-spacing:0.896000pt;}
.ws4_c02001{word-spacing:1.152000pt;}
.ws3_c02001{word-spacing:1.254400pt;}
.wsd_c02001{word-spacing:2.137600pt;}
.wse_c02001{word-spacing:2.214400pt;}
.ws7_c02001{word-spacing:2.528000pt;}
.ws8_c02001{word-spacing:2.611200pt;}
.wsc_c02001{word-spacing:3.488000pt;}
.wsb_c02001{word-spacing:3.526400pt;}
.ws9_c02001{word-spacing:3.782400pt;}
.wsa_c02001{word-spacing:3.846400pt;}
.ws28_c02001{word-spacing:6.272000pt;}
.ws27_c02001{word-spacing:6.380800pt;}
.ws1b_c02001{word-spacing:7.001600pt;}
.ws6_c02001{word-spacing:9.081600pt;}
.ws5_c02001{word-spacing:9.216000pt;}
.ws22_c02001{word-spacing:9.811200pt;}
.ws18_c02001{word-spacing:9.894400pt;}
.ws23_c02001{word-spacing:9.907200pt;}
.ws1f_c02001{word-spacing:10.016000pt;}
.ws20_c02001{word-spacing:10.195200pt;}
.ws21_c02001{word-spacing:10.252800pt;}
.ws12_c02001{word-spacing:10.451200pt;}
.ws13_c02001{word-spacing:10.521600pt;}
.ws26_c02001{word-spacing:10.553600pt;}
.ws14_c02001{word-spacing:10.579200pt;}
.ws24_c02001{word-spacing:15.961600pt;}
.ws11_c02001{word-spacing:15.968000pt;}
.ws25_c02001{word-spacing:15.980800pt;}
.ws16_c02001{word-spacing:26.092800pt;}
.ws15_c02001{word-spacing:26.188800pt;}
._0_c02001{margin-left:-1.376000pt;}
.fs1_c02001{font-size:42.560000pt;}
.fs0_c02001{font-size:64.000000pt;}
.y0_c02001{bottom:0.000000pt;}
.y4_c02001{bottom:50.987067pt;}
.y3_c02001{bottom:69.387067pt;}
.y25_c02001{bottom:150.267067pt;}
.y24_c02001{bottom:177.867067pt;}
.y23_c02001{bottom:205.467067pt;}
.y22_c02001{bottom:233.067067pt;}
.y21_c02001{bottom:260.667067pt;}
.y20_c02001{bottom:288.267067pt;}
.y1f_c02001{bottom:315.867067pt;}
.y1e_c02001{bottom:343.467067pt;}
.y1d_c02001{bottom:371.067067pt;}
.y1c_c02001{bottom:398.667067pt;}
.y1b_c02001{bottom:426.187067pt;}
.y1a_c02001{bottom:454.987067pt;}
.y19_c02001{bottom:483.787067pt;}
.y18_c02001{bottom:511.307067pt;}
.y17_c02001{bottom:540.107067pt;}
.y16_c02001{bottom:567.707067pt;}
.y15_c02001{bottom:595.307067pt;}
.y14_c02001{bottom:622.827067pt;}
.y13_c02001{bottom:651.627067pt;}
.y12_c02001{bottom:679.227067pt;}
.y11_c02001{bottom:706.827067pt;}
.y10_c02001{bottom:734.427067pt;}
.yf_c02001{bottom:762.027067pt;}
.ye_c02001{bottom:789.627067pt;}
.yd_c02001{bottom:817.227067pt;}
.yc_c02001{bottom:844.827067pt;}
.yb_c02001{bottom:872.427067pt;}
.ya_c02001{bottom:900.027067pt;}
.y9_c02001{bottom:927.627067pt;}
.y8_c02001{bottom:955.227067pt;}
.y7_c02001{bottom:982.827067pt;}
.y6_c02001{bottom:999.867067pt;}
.y5_c02001{bottom:1013.307067pt;}
.y2_c02001{bottom:1042.347067pt;}
.y1_c02001{bottom:1060.747067pt;}
.h3_c02001{height:37.801094pt;}
.h1_c02001{height:56.156250pt;}
.h2_c02001{height:56.843750pt;}
.h4_c02001{height:66.750000pt;}
.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;}
.x3_c02001{left:132.400000pt;}
.x4_c02001{left:146.160000pt;}
.x5_c02001{left:170.160000pt;}
.x2_c02001{left:388.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_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_45c6a09263f0553fd1cda50d.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;}
.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;}
.lsd_c02002{letter-spacing:-0.028800px;}
.lse_c02002{letter-spacing:-0.021600px;}
.lsc_c02002{letter-spacing:-0.007200px;}
.lsb_c02002{letter-spacing:0.000000px;}
.ls0_c02002{letter-spacing:0.014400px;}
.ls4_c02002{letter-spacing:0.021600px;}
.ls6_c02002{letter-spacing:0.028800px;}
.ls7_c02002{letter-spacing:0.036000px;}
.ls5_c02002{letter-spacing:0.043200px;}
.ls2_c02002{letter-spacing:0.057600px;}
.ls3_c02002{letter-spacing:0.064800px;}
.ls9_c02002{letter-spacing:0.072000px;}
.ls1_c02002{letter-spacing:0.079200px;}
.ls8_c02002{letter-spacing:0.086400px;}
.lsa_c02002{letter-spacing:0.201600px;}
.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;}
}
.ws15_c02002{word-spacing:-0.223200px;}
.ws3_c02002{word-spacing:-0.144000px;}
.ws14_c02002{word-spacing:-0.093600px;}
.ws0_c02002{word-spacing:-0.014400px;}
.ws1_c02002{word-spacing:0.000000px;}
.ws13_c02002{word-spacing:0.612000px;}
.ws32_c02002{word-spacing:0.619200px;}
.wse_c02002{word-spacing:0.633600px;}
.ws31_c02002{word-spacing:0.691200px;}
.ws12_c02002{word-spacing:0.698400px;}
.ws24_c02002{word-spacing:1.303200px;}
.wsa_c02002{word-spacing:2.728800px;}
.wsb_c02002{word-spacing:2.786400px;}
.ws1d_c02002{word-spacing:3.088800px;}
.ws33_c02002{word-spacing:3.117600px;}
.ws1e_c02002{word-spacing:3.124800px;}
.ws11_c02002{word-spacing:3.139200px;}
.ws34_c02002{word-spacing:3.218400px;}
.ws10_c02002{word-spacing:3.225600px;}
.wsf_c02002{word-spacing:3.564000px;}
.ws2a_c02002{word-spacing:4.017600px;}
.ws29_c02002{word-spacing:4.276800px;}
.ws2b_c02002{word-spacing:4.320000px;}
.ws8_c02002{word-spacing:4.982400px;}
.ws9_c02002{word-spacing:5.047200px;}
.ws5_c02002{word-spacing:6.674400px;}
.ws4_c02002{word-spacing:6.703200px;}
.ws26_c02002{word-spacing:7.358400px;}
.wsc_c02002{word-spacing:7.423200px;}
.ws25_c02002{word-spacing:7.430400px;}
.wsd_c02002{word-spacing:7.516800px;}
.ws35_c02002{word-spacing:7.862400px;}
.ws21_c02002{word-spacing:8.179200px;}
.ws20_c02002{word-spacing:8.244000px;}
.ws30_c02002{word-spacing:9.525600px;}
.ws7_c02002{word-spacing:9.619200px;}
.ws2f_c02002{word-spacing:9.676800px;}
.ws6_c02002{word-spacing:9.691200px;}
.ws2d_c02002{word-spacing:11.073600px;}
.ws2c_c02002{word-spacing:11.167200px;}
.ws2e_c02002{word-spacing:11.188800px;}
.ws2_c02002{word-spacing:12.088800px;}
.ws19_c02002{word-spacing:12.844800px;}
.ws18_c02002{word-spacing:12.931200px;}
.ws1a_c02002{word-spacing:12.945600px;}
.ws28_c02002{word-spacing:14.212800px;}
.ws27_c02002{word-spacing:14.299200px;}
.ws1b_c02002{word-spacing:19.994400px;}
.ws1c_c02002{word-spacing:20.044800px;}
.ws22_c02002{word-spacing:20.448000px;}
.ws23_c02002{word-spacing:24.379200px;}
.ws17_c02002{word-spacing:28.576800px;}
.ws16_c02002{word-spacing:28.648800px;}
.ws1f_c02002{word-spacing:33.091200px;}
._0_c02002{margin-left:-1.065600px;}
.fc0_c02002{color:rgb(0,0,0);}
.fs0_c02002{font-size:72.000000px;}
.y0_c02002{bottom:0.000000px;}
.y4_c02002{bottom:57.360450px;}
.y3_c02002{bottom:78.060450px;}
.y26_c02002{bottom:115.590450px;}
.y25_c02002{bottom:146.640450px;}
.y24_c02002{bottom:177.690450px;}
.y23_c02002{bottom:208.740450px;}
.y22_c02002{bottom:239.790450px;}
.y21_c02002{bottom:270.840450px;}
.y20_c02002{bottom:301.890450px;}
.y1f_c02002{bottom:332.940450px;}
.y1e_c02002{bottom:363.990450px;}
.y1d_c02002{bottom:395.040450px;}
.y1c_c02002{bottom:426.090450px;}
.y1b_c02002{bottom:457.140450px;}
.y1a_c02002{bottom:488.190450px;}
.y19_c02002{bottom:519.240450px;}
.y18_c02002{bottom:550.290450px;}
.y17_c02002{bottom:581.340450px;}
.y16_c02002{bottom:612.390450px;}
.y15_c02002{bottom:643.440450px;}
.y14_c02002{bottom:674.490450px;}
.y13_c02002{bottom:705.540450px;}
.y12_c02002{bottom:736.590450px;}
.y11_c02002{bottom:767.640450px;}
.y10_c02002{bottom:798.600450px;}
.yf_c02002{bottom:829.650450px;}
.ye_c02002{bottom:860.700450px;}
.yd_c02002{bottom:891.750450px;}
.yc_c02002{bottom:922.800450px;}
.yb_c02002{bottom:953.850450px;}
.ya_c02002{bottom:984.900450px;}
.y9_c02002{bottom:1015.950450px;}
.y8_c02002{bottom:1047.000450px;}
.y7_c02002{bottom:1078.050450px;}
.y6_c02002{bottom:1109.100450px;}
.y5_c02002{bottom:1140.150450px;}
.y2_c02002{bottom:1172.640450px;}
.y1_c02002{bottom:1193.340450px;}
.h1_c02002{height:63.175781px;}
.h0_c02002{height:1263.000000px;}
.w1_c02002{width:892.500000px;}
.w0_c02002{width:892.830000px;}
.x0_c02002{left:0.000000px;}
.x1_c02002{left:127.620000px;}
.x3_c02002{left:148.950000px;}
.x2_c02002{left:437.490000px;}
@media print{
.v0_c02002{vertical-align:0.000000pt;}
.lsd_c02002{letter-spacing:-0.025600pt;}
.lse_c02002{letter-spacing:-0.019200pt;}
.lsc_c02002{letter-spacing:-0.006400pt;}
.lsb_c02002{letter-spacing:0.000000pt;}
.ls0_c02002{letter-spacing:0.012800pt;}
.ls4_c02002{letter-spacing:0.019200pt;}
.ls6_c02002{letter-spacing:0.025600pt;}
.ls7_c02002{letter-spacing:0.032000pt;}
.ls5_c02002{letter-spacing:0.038400pt;}
.ls2_c02002{letter-spacing:0.051200pt;}
.ls3_c02002{letter-spacing:0.057600pt;}
.ls9_c02002{letter-spacing:0.064000pt;}
.ls1_c02002{letter-spacing:0.070400pt;}
.ls8_c02002{letter-spacing:0.076800pt;}
.lsa_c02002{letter-spacing:0.179200pt;}
.ws15_c02002{word-spacing:-0.198400pt;}
.ws3_c02002{word-spacing:-0.128000pt;}
.ws14_c02002{word-spacing:-0.083200pt;}
.ws0_c02002{word-spacing:-0.012800pt;}
.ws1_c02002{word-spacing:0.000000pt;}
.ws13_c02002{word-spacing:0.544000pt;}
.ws32_c02002{word-spacing:0.550400pt;}
.wse_c02002{word-spacing:0.563200pt;}
.ws31_c02002{word-spacing:0.614400pt;}
.ws12_c02002{word-spacing:0.620800pt;}
.ws24_c02002{word-spacing:1.158400pt;}
.wsa_c02002{word-spacing:2.425600pt;}
.wsb_c02002{word-spacing:2.476800pt;}
.ws1d_c02002{word-spacing:2.745600pt;}
.ws33_c02002{word-spacing:2.771200pt;}
.ws1e_c02002{word-spacing:2.777600pt;}
.ws11_c02002{word-spacing:2.790400pt;}
.ws34_c02002{word-spacing:2.860800pt;}
.ws10_c02002{word-spacing:2.867200pt;}
.wsf_c02002{word-spacing:3.168000pt;}
.ws2a_c02002{word-spacing:3.571200pt;}
.ws29_c02002{word-spacing:3.801600pt;}
.ws2b_c02002{word-spacing:3.840000pt;}
.ws8_c02002{word-spacing:4.428800pt;}
.ws9_c02002{word-spacing:4.486400pt;}
.ws5_c02002{word-spacing:5.932800pt;}
.ws4_c02002{word-spacing:5.958400pt;}
.ws26_c02002{word-spacing:6.540800pt;}
.wsc_c02002{word-spacing:6.598400pt;}
.ws25_c02002{word-spacing:6.604800pt;}
.wsd_c02002{word-spacing:6.681600pt;}
.ws35_c02002{word-spacing:6.988800pt;}
.ws21_c02002{word-spacing:7.270400pt;}
.ws20_c02002{word-spacing:7.328000pt;}
.ws30_c02002{word-spacing:8.467200pt;}
.ws7_c02002{word-spacing:8.550400pt;}
.ws2f_c02002{word-spacing:8.601600pt;}
.ws6_c02002{word-spacing:8.614400pt;}
.ws2d_c02002{word-spacing:9.843200pt;}
.ws2c_c02002{word-spacing:9.926400pt;}
.ws2e_c02002{word-spacing:9.945600pt;}
.ws2_c02002{word-spacing:10.745600pt;}
.ws19_c02002{word-spacing:11.417600pt;}
.ws18_c02002{word-spacing:11.494400pt;}
.ws1a_c02002{word-spacing:11.507200pt;}
.ws28_c02002{word-spacing:12.633600pt;}
.ws27_c02002{word-spacing:12.710400pt;}
.ws1b_c02002{word-spacing:17.772800pt;}
.ws1c_c02002{word-spacing:17.817600pt;}
.ws22_c02002{word-spacing:18.176000pt;}
.ws23_c02002{word-spacing:21.670400pt;}
.ws17_c02002{word-spacing:25.401600pt;}
.ws16_c02002{word-spacing:25.465600pt;}
.ws1f_c02002{word-spacing:29.414400pt;}
._0_c02002{margin-left:-0.947200pt;}
.fs0_c02002{font-size:64.000000pt;}
.y0_c02002{bottom:0.000000pt;}
.y4_c02002{bottom:50.987067pt;}
.y3_c02002{bottom:69.387067pt;}
.y26_c02002{bottom:102.747067pt;}
.y25_c02002{bottom:130.347067pt;}
.y24_c02002{bottom:157.947067pt;}
.y23_c02002{bottom:185.547067pt;}
.y22_c02002{bottom:213.147067pt;}
.y21_c02002{bottom:240.747067pt;}
.y20_c02002{bottom:268.347067pt;}
.y1f_c02002{bottom:295.947067pt;}
.y1e_c02002{bottom:323.547067pt;}
.y1d_c02002{bottom:351.147067pt;}
.y1c_c02002{bottom:378.747067pt;}
.y1b_c02002{bottom:406.347067pt;}
.y1a_c02002{bottom:433.947067pt;}
.y19_c02002{bottom:461.547067pt;}
.y18_c02002{bottom:489.147067pt;}
.y17_c02002{bottom:516.747067pt;}
.y16_c02002{bottom:544.347067pt;}
.y15_c02002{bottom:571.947067pt;}
.y14_c02002{bottom:599.547067pt;}
.y13_c02002{bottom:627.147067pt;}
.y12_c02002{bottom:654.747067pt;}
.y11_c02002{bottom:682.347067pt;}
.y10_c02002{bottom:709.867067pt;}
.yf_c02002{bottom:737.467067pt;}
.ye_c02002{bottom:765.067067pt;}
.yd_c02002{bottom:792.667067pt;}
.yc_c02002{bottom:820.267067pt;}
.yb_c02002{bottom:847.867067pt;}
.ya_c02002{bottom:875.467067pt;}
.y9_c02002{bottom:903.067067pt;}
.y8_c02002{bottom:930.667067pt;}
.y7_c02002{bottom:958.267067pt;}
.y6_c02002{bottom:985.867067pt;}
.y5_c02002{bottom:1013.467067pt;}
.y2_c02002{bottom:1042.347067pt;}
.y1_c02002{bottom:1060.747067pt;}
.h1_c02002{height:56.156250pt;}
.h0_c02002{height:1122.666667pt;}
.w1_c02002{width:793.333333pt;}
.w0_c02002{width:793.626667pt;}
.x0_c02002{left:0.000000pt;}
.x1_c02002{left:113.440000pt;}
.x3_c02002{left:132.400000pt;}
.x2_c02002{left:388.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_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_b70bb5f79775693dac03edc1.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;}
.m0_c02003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02003{vertical-align:0.000000px;}
.ls1_c02003{letter-spacing:0.000000px;}
.ls0_c02003{letter-spacing:0.014400px;}
.sc__c02003{text-shadow:none;}
.sc0_c02003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02003{-webkit-text-stroke:0px transparent;}
.sc0_c02003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02003{word-spacing:-0.014400px;}
.ws1_c02003{word-spacing:0.000000px;}
.fc0_c02003{color:rgb(0,0,0);}
.fs0_c02003{font-size:72.000000px;}
.y0_c02003{bottom:0.000000px;}
.y4_c02003{bottom:57.360450px;}
.y3_c02003{bottom:78.060450px;}
.y6_c02003{bottom:1109.100450px;}
.y5_c02003{bottom:1140.150450px;}
.y2_c02003{bottom:1172.640450px;}
.y1_c02003{bottom:1193.340450px;}
.h1_c02003{height:63.175781px;}
.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:437.490000px;}
@media print{
.v0_c02003{vertical-align:0.000000pt;}
.ls1_c02003{letter-spacing:0.000000pt;}
.ls0_c02003{letter-spacing:0.012800pt;}
.ws0_c02003{word-spacing:-0.012800pt;}
.ws1_c02003{word-spacing:0.000000pt;}
.fs0_c02003{font-size:64.000000pt;}
.y0_c02003{bottom:0.000000pt;}
.y4_c02003{bottom:50.987067pt;}
.y3_c02003{bottom:69.387067pt;}
.y6_c02003{bottom:985.867067pt;}
.y5_c02003{bottom:1013.467067pt;}
.y2_c02003{bottom:1042.347067pt;}
.y1_c02003{bottom:1060.747067pt;}
.h1_c02003{height:56.156250pt;}
.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:388.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_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_882b2abf7d9bae3d5d9a99f4.woff2')format("woff");}.ff1_c02004{font-family:ff1_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:ff2_c02004;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02004{font-family:ff2_c02004;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;}
.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;}
.ls0_c02004{letter-spacing:0.000000px;}
.ls3_c02004{letter-spacing:0.010800px;}
.ls2_c02004{letter-spacing:0.059940px;}
.ls1_c02004{letter-spacing:0.095904px;}
.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;}
}
.ws2_c02004{word-spacing:-0.215784px;}
.ws3_c02004{word-spacing:-0.010800px;}
.ws0_c02004{word-spacing:0.000000px;}
.ws1_c02004{word-spacing:0.179820px;}
.fc0_c02004{color:rgb(0,0,0);}
.fs3_c02004{font-size:65.880000px;}
.fs2_c02004{font-size:72.000000px;}
.fs1_c02004{font-size:108.000000px;}
.fs0_c02004{font-size:119.880000px;}
.y0_c02004{bottom:0.000000px;}
.y13_c02004{bottom:139.624542px;}
.y12_c02004{bottom:177.783885px;}
.y11_c02004{bottom:215.943228px;}
.y10_c02004{bottom:254.102571px;}
.yf_c02004{bottom:292.261914px;}
.ye_c02004{bottom:330.421257px;}
.yd_c02004{bottom:368.580600px;}
.yc_c02004{bottom:406.200600px;}
.yb_c02004{bottom:462.452250px;}
.ya_c02004{bottom:508.981350px;}
.y9_c02004{bottom:573.600450px;}
.y8_c02004{bottom:640.656093px;}
.y7_c02004{bottom:710.315364px;}
.y6_c02004{bottom:780.064545px;}
.y5_c02004{bottom:849.813726px;}
.y4_c02004{bottom:919.562907px;}
.y3_c02004{bottom:989.312088px;}
.y2_c02004{bottom:1059.061269px;}
.y1_c02004{bottom:1128.810450px;}
.h4_c02004{height:43.909277px;}
.h3_c02004{height:72.562500px;}
.h2_c02004{height:108.843750px;}
.h1_c02004{height:120.816562px;}
.h0_c02004{height:1263.000000px;}
.w1_c02004{width:892.500000px;}
.w0_c02004{width:892.830000px;}
.x0_c02004{left:0.000000px;}
.x7_c02004{left:127.620000px;}
.x5_c02004{left:132.210900px;}
.x3_c02004{left:171.901863px;}
.x6_c02004{left:256.770000px;}
.x4_c02004{left:386.100000px;}
.x2_c02004{left:394.381161px;}
.x1_c02004{left:446.490000px;}
@media print{
.v0_c02004{vertical-align:0.000000pt;}
.ls0_c02004{letter-spacing:0.000000pt;}
.ls3_c02004{letter-spacing:0.009600pt;}
.ls2_c02004{letter-spacing:0.053280pt;}
.ls1_c02004{letter-spacing:0.085248pt;}
.ws2_c02004{word-spacing:-0.191808pt;}
.ws3_c02004{word-spacing:-0.009600pt;}
.ws0_c02004{word-spacing:0.000000pt;}
.ws1_c02004{word-spacing:0.159840pt;}
.fs3_c02004{font-size:58.560000pt;}
.fs2_c02004{font-size:64.000000pt;}
.fs1_c02004{font-size:96.000000pt;}
.fs0_c02004{font-size:106.560000pt;}
.y0_c02004{bottom:0.000000pt;}
.y13_c02004{bottom:124.110704pt;}
.y12_c02004{bottom:158.030120pt;}
.y11_c02004{bottom:191.949536pt;}
.y10_c02004{bottom:225.868952pt;}
.yf_c02004{bottom:259.788368pt;}
.ye_c02004{bottom:293.707784pt;}
.yd_c02004{bottom:327.627200pt;}
.yc_c02004{bottom:361.067200pt;}
.yb_c02004{bottom:411.068667pt;}
.ya_c02004{bottom:452.427867pt;}
.y9_c02004{bottom:509.867067pt;}
.y8_c02004{bottom:569.472083pt;}
.y7_c02004{bottom:631.391435pt;}
.y6_c02004{bottom:693.390707pt;}
.y5_c02004{bottom:755.389979pt;}
.y4_c02004{bottom:817.389251pt;}
.y3_c02004{bottom:879.388523pt;}
.y2_c02004{bottom:941.387795pt;}
.y1_c02004{bottom:1003.387067pt;}
.h4_c02004{height:39.030469pt;}
.h3_c02004{height:64.500000pt;}
.h2_c02004{height:96.750000pt;}
.h1_c02004{height:107.392500pt;}
.h0_c02004{height:1122.666667pt;}
.w1_c02004{width:793.333333pt;}
.w0_c02004{width:793.626667pt;}
.x0_c02004{left:0.000000pt;}
.x7_c02004{left:113.440000pt;}
.x5_c02004{left:117.520800pt;}
.x3_c02004{left:152.801656pt;}
.x6_c02004{left:228.240000pt;}
.x4_c02004{left:343.200000pt;}
.x2_c02004{left:350.561032pt;}
.x1_c02004{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_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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff1_c02005{font-family:ff1_c02005;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;}
.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;}
.ls0_c02005{letter-spacing:0.000000px;}
.sc__c02005{text-shadow:none;}
.sc0_c02005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02005{-webkit-text-stroke:0px transparent;}
.sc0_c02005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02005{word-spacing:0.000000px;}
.fc0_c02005{color:rgb(0,0,0);}
.fs0_c02005{font-size:65.880000px;}
.y0_c02005{bottom:0.000000px;}
.y7_c02005{bottom:912.094392px;}
.y6_c02005{bottom:950.253735px;}
.y5_c02005{bottom:988.413078px;}
.y4_c02005{bottom:1026.572421px;}
.y3_c02005{bottom:1064.731764px;}
.y2_c02005{bottom:1102.891107px;}
.y1_c02005{bottom:1141.050450px;}
.h1_c02005{height:43.909277px;}
.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;}
@media print{
.v0_c02005{vertical-align:0.000000pt;}
.ls0_c02005{letter-spacing:0.000000pt;}
.ws0_c02005{word-spacing:0.000000pt;}
.fs0_c02005{font-size:58.560000pt;}
.y0_c02005{bottom:0.000000pt;}
.y7_c02005{bottom:810.750571pt;}
.y6_c02005{bottom:844.669987pt;}
.y5_c02005{bottom:878.589403pt;}
.y4_c02005{bottom:912.508819pt;}
.y3_c02005{bottom:946.428235pt;}
.y2_c02005{bottom:980.347651pt;}
.y1_c02005{bottom:1014.267067pt;}
.h1_c02005{height:39.030469pt;}
.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;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9d1f698d0d9b631f82daada.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_6c0837c323543e5f14d0339b.woff2')format("woff");}.ff2_c02006{font-family:ff2_c02006;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02006;src:url('chunks/assets/font_e043b5aeabc9185aec1cea06.woff2')format("woff");}.ff3_c02006{font-family:ff3_c02006;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_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);}
.v1_c02006{vertical-align:-96.839460px;}
.v0_c02006{vertical-align:0.000000px;}
.ls11_c02006{letter-spacing:-0.198396px;}
.ls12_c02006{letter-spacing:-0.180360px;}
.lsf_c02006{letter-spacing:-0.096192px;}
.lse_c02006{letter-spacing:-0.057600px;}
.lsd_c02006{letter-spacing:-0.028800px;}
.lsc_c02006{letter-spacing:-0.012600px;}
.ls7_c02006{letter-spacing:0.000000px;}
.lsa_c02006{letter-spacing:0.008388px;}
.ls9_c02006{letter-spacing:0.010800px;}
.ls6_c02006{letter-spacing:0.018036px;}
.lsb_c02006{letter-spacing:0.035964px;}
.ls5_c02006{letter-spacing:0.054108px;}
.ls3_c02006{letter-spacing:0.058716px;}
.ls0_c02006{letter-spacing:0.059940px;}
.ls8_c02006{letter-spacing:0.077940px;}
.ls2_c02006{letter-spacing:0.083880px;}
.ls10_c02006{letter-spacing:0.102204px;}
.ls1_c02006{letter-spacing:194.896800px;}
.ls4_c02006{letter-spacing:1252.160640px;}
.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;}
}
.wsd_c02006{word-spacing:-0.372744px;}
.ws2_c02006{word-spacing:-0.187056px;}
.wsb_c02006{word-spacing:-0.174348px;}
.ws1_c02006{word-spacing:-0.143856px;}
.ws3_c02006{word-spacing:-0.043200px;}
.ws7_c02006{word-spacing:-0.011988px;}
.ws0_c02006{word-spacing:0.000000px;}
.ws5_c02006{word-spacing:0.008388px;}
.wsc_c02006{word-spacing:0.036072px;}
.wse_c02006{word-spacing:0.072144px;}
.ws8_c02006{word-spacing:0.151200px;}
.ws9_c02006{word-spacing:0.187200px;}
.ws6_c02006{word-spacing:0.209700px;}
.wsf_c02006{word-spacing:0.270540px;}
.wsa_c02006{word-spacing:0.288000px;}
.ws4_c02006{word-spacing:0.444564px;}
._7_c02006{margin-left:-1.521036px;}
._6_c02006{width:1.076148px;}
._0_c02006{width:79.804116px;}
._4_c02006{width:86.807700px;}
._1_c02006{width:92.403504px;}
._2_c02006{width:182.409408px;}
._5_c02006{width:194.758200px;}
._3_c02006{width:756.276444px;}
.fc1_c02006{color:rgb(154,154,154);}
.fc0_c02006{color:rgb(0,0,0);}
.fs6_c02006{font-size:60.120000px;}
.fs4_c02006{font-size:63.000000px;}
.fs0_c02006{font-size:72.000000px;}
.fs5_c02006{font-size:83.880000px;}
.fs3_c02006{font-size:108.000000px;}
.fs1_c02006{font-size:119.880000px;}
.fs2_c02006{font-size:155.880000px;}
.y0_c02006{bottom:0.000000px;}
.y25_c02006{bottom:118.651005px;}
.y24_c02006{bottom:135.930996px;}
.y23_c02006{bottom:153.120807px;}
.y22_c02006{bottom:170.400798px;}
.y21_c02006{bottom:187.680789px;}
.y20_c02006{bottom:204.870600px;}
.y1f_c02006{bottom:223.320585px;}
.y1e_c02006{bottom:247.530450px;}
.y1d_c02006{bottom:271.110450px;}
.y1c_c02006{bottom:291.810450px;}
.y1b_c02006{bottom:311.879550px;}
.y1a_c02006{bottom:329.970000px;}
.y19_c02006{bottom:348.060450px;}
.y18_c02006{bottom:367.410450px;}
.y17_c02006{bottom:387.030450px;}
.y16_c02006{bottom:583.412385px;}
.y15_c02006{bottom:631.741944px;}
.y14_c02006{bottom:655.861638px;}
.y13_c02006{bottom:679.981332px;}
.y12_c02006{bottom:704.191197px;}
.y11_c02006{bottom:728.310891px;}
.y10_c02006{bottom:752.430585px;}
.yf_c02006{bottom:776.640825px;}
.ye_c02006{bottom:799.590150px;}
.yd_c02006{bottom:817.680600px;}
.yc_c02006{bottom:838.290600px;}
.yb_c02006{bottom:867.450450px;}
.ya_c02006{bottom:892.470450px;}
.y9_c02006{bottom:935.577462px;}
.y8_c02006{bottom:970.048956px;}
.y7_c02006{bottom:1004.520450px;}
.y6_c02006{bottom:1036.650450px;}
.y5_c02006{bottom:1057.350450px;}
.y4_c02006{bottom:1078.050450px;}
.y3_c02006{bottom:1098.750450px;}
.y2_c02006{bottom:1119.450450px;}
.y1_c02006{bottom:1140.150450px;}
.ha_c02006{height:53.397598px;}
.h1_c02006{height:63.175781px;}
.h6_c02006{height:65.707031px;}
.h9_c02006{height:74.500840px;}
.h4_c02006{height:75.093750px;}
.h7_c02006{height:87.482719px;}
.h8_c02006{height:87.484219px;}
.h2_c02006{height:106.475449px;}
.h5_c02006{height:112.640625px;}
.h3_c02006{height:162.577969px;}
.h0_c02006{height:1263.000000px;}
.w1_c02006{width:892.500000px;}
.w0_c02006{width:892.830000px;}
.x0_c02006{left:0.000000px;}
.x1_c02006{left:127.620000px;}
.x5_c02006{left:219.509370px;}
.x2_c02006{left:238.230000px;}
.x7_c02006{left:262.980000px;}
.x4_c02006{left:267.750000px;}
.xd_c02006{left:281.339622px;}
.x6_c02006{left:297.540000px;}
.x9_c02006{left:301.950261px;}
.xc_c02006{left:319.409109px;}
.x8_c02006{left:322.110000px;}
.xa_c02006{left:379.260072px;}
.xb_c02006{left:398.609694px;}
.x3_c02006{left:446.488533px;}
@media print{
.v1_c02006{vertical-align:-86.079520pt;}
.v0_c02006{vertical-align:0.000000pt;}
.ls11_c02006{letter-spacing:-0.176352pt;}
.ls12_c02006{letter-spacing:-0.160320pt;}
.lsf_c02006{letter-spacing:-0.085504pt;}
.lse_c02006{letter-spacing:-0.051200pt;}
.lsd_c02006{letter-spacing:-0.025600pt;}
.lsc_c02006{letter-spacing:-0.011200pt;}
.ls7_c02006{letter-spacing:0.000000pt;}
.lsa_c02006{letter-spacing:0.007456pt;}
.ls9_c02006{letter-spacing:0.009600pt;}
.ls6_c02006{letter-spacing:0.016032pt;}
.lsb_c02006{letter-spacing:0.031968pt;}
.ls5_c02006{letter-spacing:0.048096pt;}
.ls3_c02006{letter-spacing:0.052192pt;}
.ls0_c02006{letter-spacing:0.053280pt;}
.ls8_c02006{letter-spacing:0.069280pt;}
.ls2_c02006{letter-spacing:0.074560pt;}
.ls10_c02006{letter-spacing:0.090848pt;}
.ls1_c02006{letter-spacing:173.241600pt;}
.ls4_c02006{letter-spacing:1113.031680pt;}
.wsd_c02006{word-spacing:-0.331328pt;}
.ws2_c02006{word-spacing:-0.166272pt;}
.wsb_c02006{word-spacing:-0.154976pt;}
.ws1_c02006{word-spacing:-0.127872pt;}
.ws3_c02006{word-spacing:-0.038400pt;}
.ws7_c02006{word-spacing:-0.010656pt;}
.ws0_c02006{word-spacing:0.000000pt;}
.ws5_c02006{word-spacing:0.007456pt;}
.wsc_c02006{word-spacing:0.032064pt;}
.wse_c02006{word-spacing:0.064128pt;}
.ws8_c02006{word-spacing:0.134400pt;}
.ws9_c02006{word-spacing:0.166400pt;}
.ws6_c02006{word-spacing:0.186400pt;}
.wsf_c02006{word-spacing:0.240480pt;}
.wsa_c02006{word-spacing:0.256000pt;}
.ws4_c02006{word-spacing:0.395168pt;}
._7_c02006{margin-left:-1.352032pt;}
._6_c02006{width:0.956576pt;}
._0_c02006{width:70.936992pt;}
._4_c02006{width:77.162400pt;}
._1_c02006{width:82.136448pt;}
._2_c02006{width:162.141696pt;}
._5_c02006{width:173.118400pt;}
._3_c02006{width:672.245728pt;}
.fs6_c02006{font-size:53.440000pt;}
.fs4_c02006{font-size:56.000000pt;}
.fs0_c02006{font-size:64.000000pt;}
.fs5_c02006{font-size:74.560000pt;}
.fs3_c02006{font-size:96.000000pt;}
.fs1_c02006{font-size:106.560000pt;}
.fs2_c02006{font-size:138.560000pt;}
.y0_c02006{bottom:0.000000pt;}
.y25_c02006{bottom:105.467560pt;}
.y24_c02006{bottom:120.827552pt;}
.y23_c02006{bottom:136.107384pt;}
.y22_c02006{bottom:151.467376pt;}
.y21_c02006{bottom:166.827368pt;}
.y20_c02006{bottom:182.107200pt;}
.y1f_c02006{bottom:198.507187pt;}
.y1e_c02006{bottom:220.027067pt;}
.y1d_c02006{bottom:240.987067pt;}
.y1c_c02006{bottom:259.387067pt;}
.y1b_c02006{bottom:277.226267pt;}
.y1a_c02006{bottom:293.306667pt;}
.y19_c02006{bottom:309.387067pt;}
.y18_c02006{bottom:326.587067pt;}
.y17_c02006{bottom:344.027067pt;}
.y16_c02006{bottom:518.588787pt;}
.y15_c02006{bottom:561.548395pt;}
.y14_c02006{bottom:582.988123pt;}
.y13_c02006{bottom:604.427851pt;}
.y12_c02006{bottom:625.947731pt;}
.y11_c02006{bottom:647.387459pt;}
.y10_c02006{bottom:668.827187pt;}
.yf_c02006{bottom:690.347400pt;}
.ye_c02006{bottom:710.746800pt;}
.yd_c02006{bottom:726.827200pt;}
.yc_c02006{bottom:745.147200pt;}
.yb_c02006{bottom:771.067067pt;}
.ya_c02006{bottom:793.307067pt;}
.y9_c02006{bottom:831.624411pt;}
.y8_c02006{bottom:862.265739pt;}
.y7_c02006{bottom:892.907067pt;}
.y6_c02006{bottom:921.467067pt;}
.y5_c02006{bottom:939.867067pt;}
.y4_c02006{bottom:958.267067pt;}
.y3_c02006{bottom:976.667067pt;}
.y2_c02006{bottom:995.067067pt;}
.y1_c02006{bottom:1013.467067pt;}
.ha_c02006{height:47.464531pt;}
.h1_c02006{height:56.156250pt;}
.h6_c02006{height:58.406250pt;}
.h9_c02006{height:66.222969pt;}
.h4_c02006{height:66.750000pt;}
.h7_c02006{height:77.762417pt;}
.h8_c02006{height:77.763750pt;}
.h2_c02006{height:94.644844pt;}
.h5_c02006{height:100.125000pt;}
.h3_c02006{height:144.513750pt;}
.h0_c02006{height:1122.666667pt;}
.w1_c02006{width:793.333333pt;}
.w0_c02006{width:793.626667pt;}
.x0_c02006{left:0.000000pt;}
.x1_c02006{left:113.440000pt;}
.x5_c02006{left:195.119440pt;}
.x2_c02006{left:211.760000pt;}
.x7_c02006{left:233.760000pt;}
.x4_c02006{left:238.000000pt;}
.xd_c02006{left:250.079664pt;}
.x6_c02006{left:264.480000pt;}
.x9_c02006{left:268.400232pt;}
.xc_c02006{left:283.919208pt;}
.x8_c02006{left:286.320000pt;}
.xa_c02006{left:337.120064pt;}
.xb_c02006{left:354.319728pt;}
.x3_c02006{left:396.878696pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff1_c02007{font-family:ff1_c02007;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;}
.m0_c02007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02007{vertical-align:0.000000px;}
.ls0_c02007{letter-spacing:0.000000px;}
.sc__c02007{text-shadow:none;}
.sc0_c02007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02007{-webkit-text-stroke:0px transparent;}
.sc0_c02007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02007{word-spacing:0.000000px;}
.fc0_c02007{color:rgb(0,0,0);}
.fs0_c02007{font-size:65.880000px;}
.y0_c02007{bottom:0.000000px;}
.y1_c02007{bottom:1141.050450px;}
.h1_c02007{height:43.909277px;}
.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;}
@media print{
.v0_c02007{vertical-align:0.000000pt;}
.ls0_c02007{letter-spacing:0.000000pt;}
.ws0_c02007{word-spacing:0.000000pt;}
.fs0_c02007{font-size:58.560000pt;}
.y0_c02007{bottom:0.000000pt;}
.y1_c02007{bottom:1014.267067pt;}
.h1_c02007{height:39.030469pt;}
.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;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b66eb41adddfcf31cbdc8b5.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_0bcecd7252a6c2da86cbaeef.woff2')format("woff");}.ff2_c02008{font-family:ff2_c02008;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02008;src:url('chunks/assets/font_ff5fdd2a54aeadb9035f7598.woff2')format("woff");}.ff3_c02008{font-family:ff3_c02008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02008;src:url('chunks/assets/font_df1ade491083b7e16caee9f2.woff2')format("woff");}.ff4_c02008{font-family:ff4_c02008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02008{vertical-align:0.000000px;}
.ls18_c02008{letter-spacing:-0.100800px;}
.ls1c_c02008{letter-spacing:-0.057600px;}
.ls1a_c02008{letter-spacing:-0.043200px;}
.ls1d_c02008{letter-spacing:-0.036000px;}
.ls14_c02008{letter-spacing:-0.028836px;}
.ls17_c02008{letter-spacing:-0.028800px;}
.ls19_c02008{letter-spacing:-0.021600px;}
.ls16_c02008{letter-spacing:-0.014400px;}
.ls1b_c02008{letter-spacing:-0.007200px;}
.ls15_c02008{letter-spacing:0.000000px;}
.ls2_c02008{letter-spacing:0.007200px;}
.ls8_c02008{letter-spacing:0.014400px;}
.ls13_c02008{letter-spacing:0.016776px;}
.ls3_c02008{letter-spacing:0.021600px;}
.lsf_c02008{letter-spacing:0.028800px;}
.ls1_c02008{letter-spacing:0.033552px;}
.lsa_c02008{letter-spacing:0.036000px;}
.ls1e_c02008{letter-spacing:0.041940px;}
.ls7_c02008{letter-spacing:0.043200px;}
.ls4_c02008{letter-spacing:0.048060px;}
.ls5_c02008{letter-spacing:0.050400px;}
.ls11_c02008{letter-spacing:0.057600px;}
.lsc_c02008{letter-spacing:0.064800px;}
.lse_c02008{letter-spacing:0.072000px;}
.ls10_c02008{letter-spacing:0.079200px;}
.ls12_c02008{letter-spacing:0.086400px;}
.ls0_c02008{letter-spacing:0.086508px;}
.ls6_c02008{letter-spacing:1.440000px;}
.ls9_c02008{letter-spacing:2.880000px;}
.lsd_c02008{letter-spacing:4.680000px;}
.lsb_c02008{letter-spacing:6.480000px;}
.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:-17.899200px;}
.ws3_c02008{word-spacing:-0.125820px;}
.ws2f_c02008{word-spacing:-0.115200px;}
.ws23_c02008{word-spacing:-0.079200px;}
.ws3e_c02008{word-spacing:-0.028800px;}
.ws4_c02008{word-spacing:-0.007200px;}
.ws1_c02008{word-spacing:0.000000px;}
.ws2_c02008{word-spacing:0.115344px;}
.ws24_c02008{word-spacing:0.252000px;}
.ws25_c02008{word-spacing:0.280800px;}
.ws26_c02008{word-spacing:0.345600px;}
.ws32_c02008{word-spacing:0.640800px;}
.ws30_c02008{word-spacing:0.662400px;}
.ws31_c02008{word-spacing:0.676800px;}
.ws6_c02008{word-spacing:0.986400px;}
.ws5_c02008{word-spacing:1.080000px;}
.ws1a_c02008{word-spacing:1.332000px;}
.ws9_c02008{word-spacing:1.418400px;}
.ws19_c02008{word-spacing:1.440000px;}
.ws8_c02008{word-spacing:1.454400px;}
.wsf_c02008{word-spacing:1.692000px;}
.wse_c02008{word-spacing:1.720800px;}
.ws33_c02008{word-spacing:1.764000px;}
.ws10_c02008{word-spacing:1.814400px;}
.ws12_c02008{word-spacing:2.656800px;}
.ws11_c02008{word-spacing:2.858400px;}
.ws13_c02008{word-spacing:2.865600px;}
.ws14_c02008{word-spacing:2.908800px;}
.ws2b_c02008{word-spacing:3.924000px;}
.ws1d_c02008{word-spacing:4.586400px;}
.ws1e_c02008{word-spacing:4.629600px;}
.ws1f_c02008{word-spacing:4.701600px;}
.ws20_c02008{word-spacing:4.723200px;}
.ws18_c02008{word-spacing:6.429600px;}
.ws17_c02008{word-spacing:6.444000px;}
.ws3d_c02008{word-spacing:6.710400px;}
.ws3c_c02008{word-spacing:6.840000px;}
.ws7_c02008{word-spacing:7.480800px;}
.ws15_c02008{word-spacing:8.532000px;}
.ws16_c02008{word-spacing:8.560800px;}
.ws3b_c02008{word-spacing:8.978400px;}
.ws3a_c02008{word-spacing:9.014400px;}
.ws2c_c02008{word-spacing:9.244800px;}
.ws2e_c02008{word-spacing:9.302400px;}
.ws2d_c02008{word-spacing:9.396000px;}
.wsd_c02008{word-spacing:9.612000px;}
.wsc_c02008{word-spacing:9.676800px;}
.ws1b_c02008{word-spacing:10.324800px;}
.ws1c_c02008{word-spacing:10.396800px;}
.ws37_c02008{word-spacing:11.613600px;}
.ws38_c02008{word-spacing:11.714400px;}
.ws39_c02008{word-spacing:11.880000px;}
.ws2a_c02008{word-spacing:13.586400px;}
.ws35_c02008{word-spacing:19.828800px;}
.ws36_c02008{word-spacing:19.872000px;}
.ws34_c02008{word-spacing:20.167200px;}
.ws3f_c02008{word-spacing:20.399616px;}
.ws40_c02008{word-spacing:20.416392px;}
.ws28_c02008{word-spacing:24.393600px;}
.ws29_c02008{word-spacing:24.415200px;}
.ws27_c02008{word-spacing:24.451200px;}
.wsa_c02008{word-spacing:37.058400px;}
.wsb_c02008{word-spacing:37.094400px;}
.ws21_c02008{word-spacing:54.648000px;}
.ws22_c02008{word-spacing:54.691200px;}
._1_c02008{margin-left:-1.191888px;}
._0_c02008{width:1.065276px;}
._2_c02008{width:6.447888px;}
.fc0_c02008{color:rgb(0,0,0);}
.fs2_c02008{font-size:63.000000px;}
.fs3_c02008{font-size:72.000000px;}
.fs1_c02008{font-size:83.880000px;}
.fs0_c02008{font-size:96.120000px;}
.y0_c02008{bottom:0.000000px;}
.y32_c02008{bottom:114.780450px;}
.y31_c02008{bottom:135.840906px;}
.y30_c02008{bottom:159.960600px;}
.y2f_c02008{bottom:183.720450px;}
.y2e_c02008{bottom:204.420450px;}
.y2d_c02008{bottom:225.120450px;}
.y2c_c02008{bottom:245.820450px;}
.y2b_c02008{bottom:266.520450px;}
.y2a_c02008{bottom:287.220450px;}
.y29_c02008{bottom:307.920450px;}
.y28_c02008{bottom:328.620450px;}
.y27_c02008{bottom:349.320450px;}
.y26_c02008{bottom:370.020450px;}
.y25_c02008{bottom:390.720450px;}
.y24_c02008{bottom:411.420450px;}
.y23_c02008{bottom:432.120450px;}
.y22_c02008{bottom:452.820450px;}
.y21_c02008{bottom:473.520450px;}
.y20_c02008{bottom:494.220450px;}
.y1f_c02008{bottom:514.920450px;}
.y1e_c02008{bottom:535.620450px;}
.y1d_c02008{bottom:556.320450px;}
.y1c_c02008{bottom:577.020450px;}
.y1b_c02008{bottom:597.720450px;}
.y1a_c02008{bottom:618.420450px;}
.y19_c02008{bottom:639.120450px;}
.y18_c02008{bottom:659.820450px;}
.y17_c02008{bottom:680.520450px;}
.y16_c02008{bottom:701.220450px;}
.y15_c02008{bottom:721.830450px;}
.y14_c02008{bottom:742.620450px;}
.y13_c02008{bottom:763.320450px;}
.y12_c02008{bottom:784.020450px;}
.y11_c02008{bottom:804.720450px;}
.y10_c02008{bottom:825.420450px;}
.yf_c02008{bottom:846.120450px;}
.ye_c02008{bottom:866.820450px;}
.yd_c02008{bottom:887.430450px;}
.yc_c02008{bottom:908.130450px;}
.yb_c02008{bottom:928.830450px;}
.ya_c02008{bottom:948.990000px;}
.y9_c02008{bottom:967.080450px;}
.y8_c02008{bottom:986.970450px;}
.y7_c02008{bottom:1012.800000px;}
.y6_c02008{bottom:1030.890450px;}
.y5_c02008{bottom:1049.430450px;}
.y4_c02008{bottom:1070.130450px;}
.y3_c02008{bottom:1090.290450px;}
.y2_c02008{bottom:1109.550450px;}
.y1_c02008{bottom:1134.390450px;}
.h5_c02008{height:55.278809px;}
.h3_c02008{height:55.955566px;}
.h6_c02008{height:63.175781px;}
.h4_c02008{height:63.949219px;}
.h7_c02008{height:70.628906px;}
.h2_c02008{height:74.500840px;}
.h8_c02008{height:82.282676px;}
.h1_c02008{height:85.372207px;}
.h0_c02008{height:1263.000000px;}
.w1_c02008{width:892.500000px;}
.w0_c02008{width:892.830000px;}
.x0_c02008{left:0.000000px;}
.x6_c02008{left:127.620000px;}
.x4_c02008{left:152.460000px;}
.x2_c02008{left:227.790000px;}
.x1_c02008{left:341.100000px;}
.x7_c02008{left:380.520000px;}
.x5_c02008{left:409.500000px;}
.x3_c02008{left:446.490000px;}
@media print{
.v0_c02008{vertical-align:0.000000pt;}
.ls18_c02008{letter-spacing:-0.089600pt;}
.ls1c_c02008{letter-spacing:-0.051200pt;}
.ls1a_c02008{letter-spacing:-0.038400pt;}
.ls1d_c02008{letter-spacing:-0.032000pt;}
.ls14_c02008{letter-spacing:-0.025632pt;}
.ls17_c02008{letter-spacing:-0.025600pt;}
.ls19_c02008{letter-spacing:-0.019200pt;}
.ls16_c02008{letter-spacing:-0.012800pt;}
.ls1b_c02008{letter-spacing:-0.006400pt;}
.ls15_c02008{letter-spacing:0.000000pt;}
.ls2_c02008{letter-spacing:0.006400pt;}
.ls8_c02008{letter-spacing:0.012800pt;}
.ls13_c02008{letter-spacing:0.014912pt;}
.ls3_c02008{letter-spacing:0.019200pt;}
.lsf_c02008{letter-spacing:0.025600pt;}
.ls1_c02008{letter-spacing:0.029824pt;}
.lsa_c02008{letter-spacing:0.032000pt;}
.ls1e_c02008{letter-spacing:0.037280pt;}
.ls7_c02008{letter-spacing:0.038400pt;}
.ls4_c02008{letter-spacing:0.042720pt;}
.ls5_c02008{letter-spacing:0.044800pt;}
.ls11_c02008{letter-spacing:0.051200pt;}
.lsc_c02008{letter-spacing:0.057600pt;}
.lse_c02008{letter-spacing:0.064000pt;}
.ls10_c02008{letter-spacing:0.070400pt;}
.ls12_c02008{letter-spacing:0.076800pt;}
.ls0_c02008{letter-spacing:0.076896pt;}
.ls6_c02008{letter-spacing:1.280000pt;}
.ls9_c02008{letter-spacing:2.560000pt;}
.lsd_c02008{letter-spacing:4.160000pt;}
.lsb_c02008{letter-spacing:5.760000pt;}
.ws0_c02008{word-spacing:-15.910400pt;}
.ws3_c02008{word-spacing:-0.111840pt;}
.ws2f_c02008{word-spacing:-0.102400pt;}
.ws23_c02008{word-spacing:-0.070400pt;}
.ws3e_c02008{word-spacing:-0.025600pt;}
.ws4_c02008{word-spacing:-0.006400pt;}
.ws1_c02008{word-spacing:0.000000pt;}
.ws2_c02008{word-spacing:0.102528pt;}
.ws24_c02008{word-spacing:0.224000pt;}
.ws25_c02008{word-spacing:0.249600pt;}
.ws26_c02008{word-spacing:0.307200pt;}
.ws32_c02008{word-spacing:0.569600pt;}
.ws30_c02008{word-spacing:0.588800pt;}
.ws31_c02008{word-spacing:0.601600pt;}
.ws6_c02008{word-spacing:0.876800pt;}
.ws5_c02008{word-spacing:0.960000pt;}
.ws1a_c02008{word-spacing:1.184000pt;}
.ws9_c02008{word-spacing:1.260800pt;}
.ws19_c02008{word-spacing:1.280000pt;}
.ws8_c02008{word-spacing:1.292800pt;}
.wsf_c02008{word-spacing:1.504000pt;}
.wse_c02008{word-spacing:1.529600pt;}
.ws33_c02008{word-spacing:1.568000pt;}
.ws10_c02008{word-spacing:1.612800pt;}
.ws12_c02008{word-spacing:2.361600pt;}
.ws11_c02008{word-spacing:2.540800pt;}
.ws13_c02008{word-spacing:2.547200pt;}
.ws14_c02008{word-spacing:2.585600pt;}
.ws2b_c02008{word-spacing:3.488000pt;}
.ws1d_c02008{word-spacing:4.076800pt;}
.ws1e_c02008{word-spacing:4.115200pt;}
.ws1f_c02008{word-spacing:4.179200pt;}
.ws20_c02008{word-spacing:4.198400pt;}
.ws18_c02008{word-spacing:5.715200pt;}
.ws17_c02008{word-spacing:5.728000pt;}
.ws3d_c02008{word-spacing:5.964800pt;}
.ws3c_c02008{word-spacing:6.080000pt;}
.ws7_c02008{word-spacing:6.649600pt;}
.ws15_c02008{word-spacing:7.584000pt;}
.ws16_c02008{word-spacing:7.609600pt;}
.ws3b_c02008{word-spacing:7.980800pt;}
.ws3a_c02008{word-spacing:8.012800pt;}
.ws2c_c02008{word-spacing:8.217600pt;}
.ws2e_c02008{word-spacing:8.268800pt;}
.ws2d_c02008{word-spacing:8.352000pt;}
.wsd_c02008{word-spacing:8.544000pt;}
.wsc_c02008{word-spacing:8.601600pt;}
.ws1b_c02008{word-spacing:9.177600pt;}
.ws1c_c02008{word-spacing:9.241600pt;}
.ws37_c02008{word-spacing:10.323200pt;}
.ws38_c02008{word-spacing:10.412800pt;}
.ws39_c02008{word-spacing:10.560000pt;}
.ws2a_c02008{word-spacing:12.076800pt;}
.ws35_c02008{word-spacing:17.625600pt;}
.ws36_c02008{word-spacing:17.664000pt;}
.ws34_c02008{word-spacing:17.926400pt;}
.ws3f_c02008{word-spacing:18.132992pt;}
.ws40_c02008{word-spacing:18.147904pt;}
.ws28_c02008{word-spacing:21.683200pt;}
.ws29_c02008{word-spacing:21.702400pt;}
.ws27_c02008{word-spacing:21.734400pt;}
.wsa_c02008{word-spacing:32.940800pt;}
.wsb_c02008{word-spacing:32.972800pt;}
.ws21_c02008{word-spacing:48.576000pt;}
.ws22_c02008{word-spacing:48.614400pt;}
._1_c02008{margin-left:-1.059456pt;}
._0_c02008{width:0.946912pt;}
._2_c02008{width:5.731456pt;}
.fs2_c02008{font-size:56.000000pt;}
.fs3_c02008{font-size:64.000000pt;}
.fs1_c02008{font-size:74.560000pt;}
.fs0_c02008{font-size:85.440000pt;}
.y0_c02008{bottom:0.000000pt;}
.y32_c02008{bottom:102.027067pt;}
.y31_c02008{bottom:120.747472pt;}
.y30_c02008{bottom:142.187200pt;}
.y2f_c02008{bottom:163.307067pt;}
.y2e_c02008{bottom:181.707067pt;}
.y2d_c02008{bottom:200.107067pt;}
.y2c_c02008{bottom:218.507067pt;}
.y2b_c02008{bottom:236.907067pt;}
.y2a_c02008{bottom:255.307067pt;}
.y29_c02008{bottom:273.707067pt;}
.y28_c02008{bottom:292.107067pt;}
.y27_c02008{bottom:310.507067pt;}
.y26_c02008{bottom:328.907067pt;}
.y25_c02008{bottom:347.307067pt;}
.y24_c02008{bottom:365.707067pt;}
.y23_c02008{bottom:384.107067pt;}
.y22_c02008{bottom:402.507067pt;}
.y21_c02008{bottom:420.907067pt;}
.y20_c02008{bottom:439.307067pt;}
.y1f_c02008{bottom:457.707067pt;}
.y1e_c02008{bottom:476.107067pt;}
.y1d_c02008{bottom:494.507067pt;}
.y1c_c02008{bottom:512.907067pt;}
.y1b_c02008{bottom:531.307067pt;}
.y1a_c02008{bottom:549.707067pt;}
.y19_c02008{bottom:568.107067pt;}
.y18_c02008{bottom:586.507067pt;}
.y17_c02008{bottom:604.907067pt;}
.y16_c02008{bottom:623.307067pt;}
.y15_c02008{bottom:641.627067pt;}
.y14_c02008{bottom:660.107067pt;}
.y13_c02008{bottom:678.507067pt;}
.y12_c02008{bottom:696.907067pt;}
.y11_c02008{bottom:715.307067pt;}
.y10_c02008{bottom:733.707067pt;}
.yf_c02008{bottom:752.107067pt;}
.ye_c02008{bottom:770.507067pt;}
.yd_c02008{bottom:788.827067pt;}
.yc_c02008{bottom:807.227067pt;}
.yb_c02008{bottom:825.627067pt;}
.ya_c02008{bottom:843.546667pt;}
.y9_c02008{bottom:859.627067pt;}
.y8_c02008{bottom:877.307067pt;}
.y7_c02008{bottom:900.266667pt;}
.y6_c02008{bottom:916.347067pt;}
.y5_c02008{bottom:932.827067pt;}
.y4_c02008{bottom:951.227067pt;}
.y3_c02008{bottom:969.147067pt;}
.y2_c02008{bottom:986.267067pt;}
.y1_c02008{bottom:1008.347067pt;}
.h5_c02008{height:49.136719pt;}
.h3_c02008{height:49.738281pt;}
.h6_c02008{height:56.156250pt;}
.h4_c02008{height:56.843750pt;}
.h7_c02008{height:62.781250pt;}
.h2_c02008{height:66.222969pt;}
.h8_c02008{height:73.140156pt;}
.h1_c02008{height:75.886406pt;}
.h0_c02008{height:1122.666667pt;}
.w1_c02008{width:793.333333pt;}
.w0_c02008{width:793.626667pt;}
.x0_c02008{left:0.000000pt;}
.x6_c02008{left:113.440000pt;}
.x4_c02008{left:135.520000pt;}
.x2_c02008{left:202.480000pt;}
.x1_c02008{left:303.200000pt;}
.x7_c02008{left:338.240000pt;}
.x5_c02008{left:364.000000pt;}
.x3_c02008{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_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_787053222b8ddc4e267b813b.woff2')format("woff");}.ff1_c02009{font-family:ff1_c02009;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02009;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff2_c02009{font-family:ff2_c02009;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02009;src:url('chunks/assets/font_fe73f5475f92698cdcc947a9.woff2')format("woff");}.ff3_c02009{font-family:ff3_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;}
@font-face{font-family:ff4_c02009;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff4_c02009{font-family:ff4_c02009;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:ff5_c02009;src:url('chunks/assets/font_59848e8dd092636766aec9f4.woff2')format("woff");}.ff5_c02009{font-family:ff5_c02009;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_c02009;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff6_c02009{font-family:ff6_c02009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4_c02009{vertical-align:-33.480600px;}
.v5_c02009{vertical-align:-22.320000px;}
.v0_c02009{vertical-align:0.000000px;}
.v2_c02009{vertical-align:22.320000px;}
.v3_c02009{vertical-align:49.320000px;}
.v1_c02009{vertical-align:60.480000px;}
.ls16_c02009{letter-spacing:-0.192240px;}
.ls1c_c02009{letter-spacing:-0.180000px;}
.ls1d_c02009{letter-spacing:-0.173016px;}
.ls18_c02009{letter-spacing:-0.171288px;}
.ls20_c02009{letter-spacing:-0.158400px;}
.ls1f_c02009{letter-spacing:-0.079200px;}
.ls1b_c02009{letter-spacing:-0.076896px;}
.ls17_c02009{letter-spacing:-0.014400px;}
.ls1e_c02009{letter-spacing:-0.012024px;}
.ls19_c02009{letter-spacing:-0.007200px;}
.ls15_c02009{letter-spacing:0.000000px;}
.ls1_c02009{letter-spacing:0.007200px;}
.ls9_c02009{letter-spacing:0.014400px;}
.ls2_c02009{letter-spacing:0.021600px;}
.ls12_c02009{letter-spacing:0.028800px;}
.ls8_c02009{letter-spacing:0.036000px;}
.ls0_c02009{letter-spacing:0.041940px;}
.ls11_c02009{letter-spacing:0.043200px;}
.ls1a_c02009{letter-spacing:0.050400px;}
.lsa_c02009{letter-spacing:0.057600px;}
.ls13_c02009{letter-spacing:0.058716px;}
.lse_c02009{letter-spacing:0.059292px;}
.ls14_c02009{letter-spacing:0.067104px;}
.ls7_c02009{letter-spacing:0.072000px;}
.lsf_c02009{letter-spacing:0.072468px;}
.lsb_c02009{letter-spacing:0.085644px;}
.ls4_c02009{letter-spacing:0.089640px;}
.lsc_c02009{letter-spacing:0.098820px;}
.lsd_c02009{letter-spacing:0.105408px;}
.ls10_c02009{letter-spacing:0.125172px;}
.ls5_c02009{letter-spacing:0.138348px;}
.ls3_c02009{letter-spacing:0.151524px;}
.ls6_c02009{letter-spacing:70.200000px;}
.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;}
}
.ws1_c02009{word-spacing:-108.000000px;}
.ws0_c02009{word-spacing:-96.120000px;}
.ws2_c02009{word-spacing:-17.920800px;}
.ws22_c02009{word-spacing:-0.417600px;}
.ws14_c02009{word-spacing:-0.288000px;}
.ws5_c02009{word-spacing:-0.159372px;}
.ws3_c02009{word-spacing:-0.150984px;}
.ws1e_c02009{word-spacing:-0.144000px;}
.ws1a_c02009{word-spacing:-0.136800px;}
.ws4_c02009{word-spacing:-0.134208px;}
.wsc_c02009{word-spacing:-0.098820px;}
.ws21_c02009{word-spacing:-0.093600px;}
.ws12_c02009{word-spacing:-0.079200px;}
.ws9_c02009{word-spacing:-0.076896px;}
.wsd_c02009{word-spacing:-0.072000px;}
.ws13_c02009{word-spacing:-0.064800px;}
.wsa_c02009{word-spacing:-0.059292px;}
.ws1b_c02009{word-spacing:-0.057600px;}
.ws11_c02009{word-spacing:-0.050400px;}
.wsb_c02009{word-spacing:-0.046116px;}
.wse_c02009{word-spacing:-0.036000px;}
.ws1d_c02009{word-spacing:-0.032940px;}
.ws23_c02009{word-spacing:-0.028800px;}
.ws8_c02009{word-spacing:-0.021600px;}
.ws10_c02009{word-spacing:-0.014400px;}
.ws18_c02009{word-spacing:-0.013176px;}
.ws15_c02009{word-spacing:-0.009612px;}
.ws7_c02009{word-spacing:-0.007200px;}
.ws17_c02009{word-spacing:-0.006588px;}
.ws6_c02009{word-spacing:0.000000px;}
.ws16_c02009{word-spacing:0.006588px;}
.wsf_c02009{word-spacing:0.014400px;}
.ws1c_c02009{word-spacing:0.019764px;}
.ws19_c02009{word-spacing:0.032940px;}
.ws20_c02009{word-spacing:0.102204px;}
.ws1f_c02009{word-spacing:0.259524px;}
._b_c02009{margin-left:-10.512000px;}
._4_c02009{margin-left:-1.178496px;}
._e_c02009{width:1.066932px;}
._5_c02009{width:93.846240px;}
._3_c02009{width:134.668800px;}
._a_c02009{width:184.608000px;}
._c_c02009{width:194.407200px;}
._f_c02009{width:235.800000px;}
._7_c02009{width:266.313600px;}
._10_c02009{width:285.945696px;}
._11_c02009{width:334.296000px;}
._d_c02009{width:343.857600px;}
._0_c02009{width:428.400000px;}
._8_c02009{width:435.931200px;}
._1_c02009{width:479.030400px;}
._9_c02009{width:524.520000px;}
._2_c02009{width:888.688800px;}
._6_c02009{width:1793.448000px;}
.fc0_c02009{color:rgb(0,0,0);}
.fs8_c02009{font-size:6.120000px;}
.fs2_c02009{font-size:47.880000px;}
.fs7_c02009{font-size:54.000000px;}
.fs6_c02009{font-size:60.120000px;}
.fs4_c02009{font-size:65.880000px;}
.fs1_c02009{font-size:72.000000px;}
.fs0_c02009{font-size:83.880000px;}
.fs3_c02009{font-size:96.120000px;}
.fs5_c02009{font-size:108.000000px;}
.y0_c02009{bottom:0.000000px;}
.y3c_c02009{bottom:107.580738px;}
.y3b_c02009{bottom:109.290666px;}
.y3a_c02009{bottom:111.000594px;}
.y39_c02009{bottom:112.710522px;}
.y38_c02009{bottom:114.420450px;}
.y37_c02009{bottom:120.540600px;}
.y36_c02009{bottom:141.240450px;}
.y35_c02009{bottom:162.660450px;}
.y34_c02009{bottom:183.360450px;}
.y33_c02009{bottom:204.780600px;}
.y32_c02009{bottom:225.480450px;}
.y2f_c02009{bottom:246.990450px;}
.y31_c02009{bottom:247.170450px;}
.y2e_c02009{bottom:267.690450px;}
.y30_c02009{bottom:267.870450px;}
.y2d_c02009{bottom:296.040450px;}
.y2c_c02009{bottom:324.390450px;}
.y2b_c02009{bottom:347.160450px;}
.y2a_c02009{bottom:373.890540px;}
.y29_c02009{bottom:392.880450px;}
.y28_c02009{bottom:412.860600px;}
.y27_c02009{bottom:433.560450px;}
.y26_c02009{bottom:454.980450px;}
.y25_c02009{bottom:475.680600px;}
.y24_c02009{bottom:507.450600px;}
.y23_c02009{bottom:528.960450px;}
.y22_c02009{bottom:550.380450px;}
.y21_c02009{bottom:571.080450px;}
.y20_c02009{bottom:593.850450px;}
.y1f_c02009{bottom:620.579955px;}
.y1e_c02009{bottom:639.660450px;}
.y1d_c02009{bottom:659.550450px;}
.y1c_c02009{bottom:681.060450px;}
.y1b_c02009{bottom:703.020450px;}
.y18_c02009{bottom:727.410450px;}
.y1a_c02009{bottom:727.590450px;}
.y17_c02009{bottom:748.110450px;}
.y19_c02009{bottom:748.290450px;}
.y15_c02009{bottom:769.530450px;}
.y14_c02009{bottom:790.230450px;}
.y16_c02009{bottom:790.410450px;}
.y13_c02009{bottom:811.650450px;}
.y12_c02009{bottom:833.070450px;}
.yf_c02009{bottom:854.580450px;}
.y11_c02009{bottom:854.760450px;}
.ye_c02009{bottom:875.280450px;}
.y10_c02009{bottom:875.460450px;}
.yd_c02009{bottom:898.050450px;}
.yc_c02009{bottom:910.470450px;}
.yb_c02009{bottom:931.170450px;}
.ya_c02009{bottom:953.940450px;}
.y9_c02009{bottom:979.950162px;}
.y8_c02009{bottom:993.720450px;}
.y7_c02009{bottom:1009.380450px;}
.y6_c02009{bottom:1030.800450px;}
.y5_c02009{bottom:1051.230450px;}
.y4_c02009{bottom:1066.800450px;}
.y3_c02009{bottom:1088.850450px;}
.y2_c02009{bottom:1112.970756px;}
.y1_c02009{bottom:1137.090450px;}
.hc_c02009{height:5.369941px;}
.h4_c02009{height:42.011895px;}
.h8_c02009{height:57.805840px;}
.h9_c02009{height:58.513535px;}
.h7_c02009{height:63.175781px;}
.h3_c02009{height:63.949219px;}
.h1_c02009{height:74.500840px;}
.h5_c02009{height:85.372207px;}
.h2_c02009{height:87.484219px;}
.hb_c02009{height:121.302422px;}
.ha_c02009{height:145.243828px;}
.h6_c02009{height:146.749219px;}
.h0_c02009{height:1263.000000px;}
.w1_c02009{width:892.500000px;}
.w0_c02009{width:892.830000px;}
.x0_c02009{left:0.000000px;}
.x6_c02009{left:82.530000px;}
.x5_c02009{left:127.620000px;}
.x1_c02009{left:138.870000px;}
.x2_c02009{left:196.828983px;}
.xb_c02009{left:242.010000px;}
.x4_c02009{left:263.250000px;}
.xa_c02009{left:295.200000px;}
.x8_c02009{left:305.730000px;}
.x3_c02009{left:446.490000px;}
.xc_c02009{left:454.680000px;}
.xd_c02009{left:582.210000px;}
.x7_c02009{left:645.930000px;}
.x9_c02009{left:720.450000px;}
@media print{
.v4_c02009{vertical-align:-29.760533pt;}
.v5_c02009{vertical-align:-19.840000pt;}
.v0_c02009{vertical-align:0.000000pt;}
.v2_c02009{vertical-align:19.840000pt;}
.v3_c02009{vertical-align:43.840000pt;}
.v1_c02009{vertical-align:53.760000pt;}
.ls16_c02009{letter-spacing:-0.170880pt;}
.ls1c_c02009{letter-spacing:-0.160000pt;}
.ls1d_c02009{letter-spacing:-0.153792pt;}
.ls18_c02009{letter-spacing:-0.152256pt;}
.ls20_c02009{letter-spacing:-0.140800pt;}
.ls1f_c02009{letter-spacing:-0.070400pt;}
.ls1b_c02009{letter-spacing:-0.068352pt;}
.ls17_c02009{letter-spacing:-0.012800pt;}
.ls1e_c02009{letter-spacing:-0.010688pt;}
.ls19_c02009{letter-spacing:-0.006400pt;}
.ls15_c02009{letter-spacing:0.000000pt;}
.ls1_c02009{letter-spacing:0.006400pt;}
.ls9_c02009{letter-spacing:0.012800pt;}
.ls2_c02009{letter-spacing:0.019200pt;}
.ls12_c02009{letter-spacing:0.025600pt;}
.ls8_c02009{letter-spacing:0.032000pt;}
.ls0_c02009{letter-spacing:0.037280pt;}
.ls11_c02009{letter-spacing:0.038400pt;}
.ls1a_c02009{letter-spacing:0.044800pt;}
.lsa_c02009{letter-spacing:0.051200pt;}
.ls13_c02009{letter-spacing:0.052192pt;}
.lse_c02009{letter-spacing:0.052704pt;}
.ls14_c02009{letter-spacing:0.059648pt;}
.ls7_c02009{letter-spacing:0.064000pt;}
.lsf_c02009{letter-spacing:0.064416pt;}
.lsb_c02009{letter-spacing:0.076128pt;}
.ls4_c02009{letter-spacing:0.079680pt;}
.lsc_c02009{letter-spacing:0.087840pt;}
.lsd_c02009{letter-spacing:0.093696pt;}
.ls10_c02009{letter-spacing:0.111264pt;}
.ls5_c02009{letter-spacing:0.122976pt;}
.ls3_c02009{letter-spacing:0.134688pt;}
.ls6_c02009{letter-spacing:62.400000pt;}
.ws1_c02009{word-spacing:-96.000000pt;}
.ws0_c02009{word-spacing:-85.440000pt;}
.ws2_c02009{word-spacing:-15.929600pt;}
.ws22_c02009{word-spacing:-0.371200pt;}
.ws14_c02009{word-spacing:-0.256000pt;}
.ws5_c02009{word-spacing:-0.141664pt;}
.ws3_c02009{word-spacing:-0.134208pt;}
.ws1e_c02009{word-spacing:-0.128000pt;}
.ws1a_c02009{word-spacing:-0.121600pt;}
.ws4_c02009{word-spacing:-0.119296pt;}
.wsc_c02009{word-spacing:-0.087840pt;}
.ws21_c02009{word-spacing:-0.083200pt;}
.ws12_c02009{word-spacing:-0.070400pt;}
.ws9_c02009{word-spacing:-0.068352pt;}
.wsd_c02009{word-spacing:-0.064000pt;}
.ws13_c02009{word-spacing:-0.057600pt;}
.wsa_c02009{word-spacing:-0.052704pt;}
.ws1b_c02009{word-spacing:-0.051200pt;}
.ws11_c02009{word-spacing:-0.044800pt;}
.wsb_c02009{word-spacing:-0.040992pt;}
.wse_c02009{word-spacing:-0.032000pt;}
.ws1d_c02009{word-spacing:-0.029280pt;}
.ws23_c02009{word-spacing:-0.025600pt;}
.ws8_c02009{word-spacing:-0.019200pt;}
.ws10_c02009{word-spacing:-0.012800pt;}
.ws18_c02009{word-spacing:-0.011712pt;}
.ws15_c02009{word-spacing:-0.008544pt;}
.ws7_c02009{word-spacing:-0.006400pt;}
.ws17_c02009{word-spacing:-0.005856pt;}
.ws6_c02009{word-spacing:0.000000pt;}
.ws16_c02009{word-spacing:0.005856pt;}
.wsf_c02009{word-spacing:0.012800pt;}
.ws1c_c02009{word-spacing:0.017568pt;}
.ws19_c02009{word-spacing:0.029280pt;}
.ws20_c02009{word-spacing:0.090848pt;}
.ws1f_c02009{word-spacing:0.230688pt;}
._b_c02009{margin-left:-9.344000pt;}
._4_c02009{margin-left:-1.047552pt;}
._e_c02009{width:0.948384pt;}
._5_c02009{width:83.418880pt;}
._3_c02009{width:119.705600pt;}
._a_c02009{width:164.096000pt;}
._c_c02009{width:172.806400pt;}
._f_c02009{width:209.600000pt;}
._7_c02009{width:236.723200pt;}
._10_c02009{width:254.173952pt;}
._11_c02009{width:297.152000pt;}
._d_c02009{width:305.651200pt;}
._0_c02009{width:380.800000pt;}
._8_c02009{width:387.494400pt;}
._1_c02009{width:425.804800pt;}
._9_c02009{width:466.240000pt;}
._2_c02009{width:789.945600pt;}
._6_c02009{width:1594.176000pt;}
.fs8_c02009{font-size:5.440000pt;}
.fs2_c02009{font-size:42.560000pt;}
.fs7_c02009{font-size:48.000000pt;}
.fs6_c02009{font-size:53.440000pt;}
.fs4_c02009{font-size:58.560000pt;}
.fs1_c02009{font-size:64.000000pt;}
.fs0_c02009{font-size:74.560000pt;}
.fs3_c02009{font-size:85.440000pt;}
.fs5_c02009{font-size:96.000000pt;}
.y0_c02009{bottom:0.000000pt;}
.y3c_c02009{bottom:95.627323pt;}
.y3b_c02009{bottom:97.147259pt;}
.y3a_c02009{bottom:98.667195pt;}
.y39_c02009{bottom:100.187131pt;}
.y38_c02009{bottom:101.707067pt;}
.y37_c02009{bottom:107.147200pt;}
.y36_c02009{bottom:125.547067pt;}
.y35_c02009{bottom:144.587067pt;}
.y34_c02009{bottom:162.987067pt;}
.y33_c02009{bottom:182.027200pt;}
.y32_c02009{bottom:200.427067pt;}
.y2f_c02009{bottom:219.547067pt;}
.y31_c02009{bottom:219.707067pt;}
.y2e_c02009{bottom:237.947067pt;}
.y30_c02009{bottom:238.107067pt;}
.y2d_c02009{bottom:263.147067pt;}
.y2c_c02009{bottom:288.347067pt;}
.y2b_c02009{bottom:308.587067pt;}
.y2a_c02009{bottom:332.347147pt;}
.y29_c02009{bottom:349.227067pt;}
.y28_c02009{bottom:366.987200pt;}
.y27_c02009{bottom:385.387067pt;}
.y26_c02009{bottom:404.427067pt;}
.y25_c02009{bottom:422.827200pt;}
.y24_c02009{bottom:451.067200pt;}
.y23_c02009{bottom:470.187067pt;}
.y22_c02009{bottom:489.227067pt;}
.y21_c02009{bottom:507.627067pt;}
.y20_c02009{bottom:527.867067pt;}
.y1f_c02009{bottom:551.626627pt;}
.y1e_c02009{bottom:568.587067pt;}
.y1d_c02009{bottom:586.267067pt;}
.y1c_c02009{bottom:605.387067pt;}
.y1b_c02009{bottom:624.907067pt;}
.y18_c02009{bottom:646.587067pt;}
.y1a_c02009{bottom:646.747067pt;}
.y17_c02009{bottom:664.987067pt;}
.y19_c02009{bottom:665.147067pt;}
.y15_c02009{bottom:684.027067pt;}
.y14_c02009{bottom:702.427067pt;}
.y16_c02009{bottom:702.587067pt;}
.y13_c02009{bottom:721.467067pt;}
.y12_c02009{bottom:740.507067pt;}
.yf_c02009{bottom:759.627067pt;}
.y11_c02009{bottom:759.787067pt;}
.ye_c02009{bottom:778.027067pt;}
.y10_c02009{bottom:778.187067pt;}
.yd_c02009{bottom:798.267067pt;}
.yc_c02009{bottom:809.307067pt;}
.yb_c02009{bottom:827.707067pt;}
.ya_c02009{bottom:847.947067pt;}
.y9_c02009{bottom:871.066811pt;}
.y8_c02009{bottom:883.307067pt;}
.y7_c02009{bottom:897.227067pt;}
.y6_c02009{bottom:916.267067pt;}
.y5_c02009{bottom:934.427067pt;}
.y4_c02009{bottom:948.267067pt;}
.y3_c02009{bottom:967.867067pt;}
.y2_c02009{bottom:989.307339pt;}
.y1_c02009{bottom:1010.747067pt;}
.hc_c02009{height:4.773281pt;}
.h4_c02009{height:37.343906pt;}
.h8_c02009{height:51.382969pt;}
.h9_c02009{height:52.012031pt;}
.h7_c02009{height:56.156250pt;}
.h3_c02009{height:56.843750pt;}
.h1_c02009{height:66.222969pt;}
.h5_c02009{height:75.886406pt;}
.h2_c02009{height:77.763750pt;}
.hb_c02009{height:107.824375pt;}
.ha_c02009{height:129.105625pt;}
.h6_c02009{height:130.443750pt;}
.h0_c02009{height:1122.666667pt;}
.w1_c02009{width:793.333333pt;}
.w0_c02009{width:793.626667pt;}
.x0_c02009{left:0.000000pt;}
.x6_c02009{left:73.360000pt;}
.x5_c02009{left:113.440000pt;}
.x1_c02009{left:123.440000pt;}
.x2_c02009{left:174.959096pt;}
.xb_c02009{left:215.120000pt;}
.x4_c02009{left:234.000000pt;}
.xa_c02009{left:262.400000pt;}
.x8_c02009{left:271.760000pt;}
.x3_c02009{left:396.880000pt;}
.xc_c02009{left:404.160000pt;}
.xd_c02009{left:517.520000pt;}
.x7_c02009{left:574.160000pt;}
.x9_c02009{left:640.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_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_e28d3dd78ff9835c89f5f6e4.woff2')format("woff");}.ff1_c02010{font-family:ff1_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:ff2_c02010;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff2_c02010{font-family:ff2_c02010;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02010;src:url('chunks/assets/font_43ed48b5aebb001ba6a56ea7.woff2')format("woff");}.ff3_c02010{font-family:ff3_c02010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02010;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff4_c02010{font-family:ff4_c02010;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:ff5_c02010;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c02010{font-family:ff5_c02010;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_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);}
.v1_c02010{vertical-align:-104.400000px;}
.v2_c02010{vertical-align:-99.371520px;}
.v0_c02010{vertical-align:0.000000px;}
.ls10_c02010{letter-spacing:-0.288000px;}
.ls11_c02010{letter-spacing:-0.216000px;}
.lse_c02010{letter-spacing:-0.120240px;}
.ls12_c02010{letter-spacing:-0.119520px;}
.lsb_c02010{letter-spacing:0.000000px;}
.ls14_c02010{letter-spacing:0.059760px;}
.ls15_c02010{letter-spacing:0.072000px;}
.ls0_c02010{letter-spacing:0.120240px;}
.ls1_c02010{letter-spacing:0.180000px;}
.lsf_c02010{letter-spacing:0.240480px;}
.ls6_c02010{letter-spacing:0.288000px;}
.lsc_c02010{letter-spacing:0.336960px;}
.ls13_c02010{letter-spacing:0.358560px;}
.lsd_c02010{letter-spacing:0.360720px;}
.ls3_c02010{letter-spacing:0.383040px;}
.ls4_c02010{letter-spacing:0.720000px;}
.ls8_c02010{letter-spacing:1.440000px;}
.lsa_c02010{letter-spacing:18.720000px;}
.ls5_c02010{letter-spacing:22.320000px;}
.ls2_c02010{letter-spacing:66.960000px;}
.ls9_c02010{letter-spacing:71.549280px;}
.ls7_c02010{letter-spacing:72.911520px;}
.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;}
}
.ws0_c02010{word-spacing:-30.420720px;}
.ws1_c02010{word-spacing:-24.323040px;}
.ws4_c02010{word-spacing:-18.072000px;}
.ws3_c02010{word-spacing:-18.000000px;}
.ws2_c02010{word-spacing:-17.784000px;}
.ws5_c02010{word-spacing:-17.712000px;}
.wsf_c02010{word-spacing:-0.721440px;}
.wsb_c02010{word-spacing:-0.601200px;}
.ws9_c02010{word-spacing:-0.505440px;}
.wsc_c02010{word-spacing:-0.360720px;}
.ws11_c02010{word-spacing:-0.288000px;}
.ws1e_c02010{word-spacing:-0.191520px;}
.ws19_c02010{word-spacing:-0.179280px;}
.ws6_c02010{word-spacing:-0.168480px;}
.ws8_c02010{word-spacing:0.000000px;}
.ws1d_c02010{word-spacing:0.119520px;}
.wse_c02010{word-spacing:0.120240px;}
.wsa_c02010{word-spacing:0.179280px;}
.wsd_c02010{word-spacing:0.240480px;}
.ws13_c02010{word-spacing:0.288000px;}
.ws18_c02010{word-spacing:0.298800px;}
.ws7_c02010{word-spacing:0.574560px;}
.ws1a_c02010{word-spacing:1.440000px;}
.ws1b_c02010{word-spacing:1.728000px;}
.ws15_c02010{word-spacing:2.880000px;}
.ws17_c02010{word-spacing:4.608000px;}
.ws1c_c02010{word-spacing:6.768000px;}
.ws14_c02010{word-spacing:13.968000px;}
.ws20_c02010{word-spacing:18.720000px;}
.ws1f_c02010{word-spacing:19.008000px;}
.ws10_c02010{word-spacing:22.320000px;}
.ws12_c02010{word-spacing:22.608000px;}
.ws16_c02010{word-spacing:40.608000px;}
._3_c02010{margin-left:-20.030400px;}
._1_c02010{margin-left:-2.106000px;}
._2_c02010{margin-left:-1.010880px;}
._0_c02010{width:1.114560px;}
._6_c02010{width:3.242880px;}
._4_c02010{width:21.673440px;}
._5_c02010{width:23.402880px;}
.fc2_c02010{color:rgb(0,0,255);}
.fc1_c02010{color:rgb(0,128,0);}
.fc0_c02010{color:rgb(0,0,0);}
.fs5_c02010{font-size:48.240000px;}
.fs2_c02010{font-size:59.760000px;}
.fs4_c02010{font-size:72.000000px;}
.fs0_c02010{font-size:84.240000px;}
.fs1_c02010{font-size:95.760000px;}
.fs6_c02010{font-size:108.000000px;}
.fs3_c02010{font-size:120.240000px;}
.y0_c02010{bottom:0.000000px;}
.y15_c02010{bottom:4.140000px;}
.y2e_c02010{bottom:4.500000px;}
.y22_c02010{bottom:5.220000px;}
.yf_c02010{bottom:5.400000px;}
.y8_c02010{bottom:6.660000px;}
.y13_c02010{bottom:45.540000px;}
.y11_c02010{bottom:86.940000px;}
.y33_c02010{bottom:142.920000px;}
.y32_c02010{bottom:170.820000px;}
.y31_c02010{bottom:186.120000px;}
.y25_c02010{bottom:190.800000px;}
.y30_c02010{bottom:231.483060px;}
.y2f_c02010{bottom:245.340000px;}
.y24_c02010{bottom:257.040000px;}
.y2d_c02010{bottom:282.240000px;}
.y2c_c02010{bottom:302.940000px;}
.y2b_c02010{bottom:323.640000px;}
.y2a_c02010{bottom:344.340000px;}
.y29_c02010{bottom:365.040000px;}
.y28_c02010{bottom:385.740000px;}
.y27_c02010{bottom:406.440000px;}
.y26_c02010{bottom:427.140000px;}
.y21_c02010{bottom:464.760000px;}
.y23_c02010{bottom:469.980000px;}
.y20_c02010{bottom:495.900000px;}
.y1f_c02010{bottom:509.760000px;}
.y1e_c02010{bottom:526.680000px;}
.y1d_c02010{bottom:554.760000px;}
.y1c_c02010{bottom:570.060000px;}
.y1b_c02010{bottom:590.760000px;}
.y1a_c02010{bottom:636.122880px;}
.y19_c02010{bottom:649.798920px;}
.y18_c02010{bottom:666.900000px;}
.y17_c02010{bottom:694.803960px;}
.y16_c02010{bottom:708.480000px;}
.y10_c02010{bottom:720.180000px;}
.y14_c02010{bottom:745.020000px;}
.y12_c02010{bottom:786.420000px;}
.ye_c02010{bottom:824.400000px;}
.yd_c02010{bottom:855.903960px;}
.yc_c02010{bottom:869.580000px;}
.yb_c02010{bottom:884.880000px;}
.ya_c02010{bottom:931.500000px;}
.y9_c02010{bottom:950.940000px;}
.y7_c02010{bottom:962.640000px;}
.y6_c02010{bottom:1002.060000px;}
.y5_c02010{bottom:1025.271360px;}
.y4_c02010{bottom:1059.665760px;}
.y3_c02010{bottom:1090.980000px;}
.y2_c02010{bottom:1109.520000px;}
.y1_c02010{bottom:1134.360000px;}
.he_c02010{height:27.540000px;}
.hb_c02010{height:27.720000px;}
.h8_c02010{height:34.560000px;}
.ha_c02010{height:47.344922px;}
.h9_c02010{height:48.616875px;}
.h10_c02010{height:50.312812px;}
.h4_c02010{height:60.226875px;}
.hd_c02010{height:70.664062px;}
.h7_c02010{height:72.562500px;}
.h3_c02010{height:84.898125px;}
.h2_c02010{height:96.508125px;}
.hc_c02010{height:103.498500px;}
.h5_c02010{height:121.156335px;}
.h6_c02010{height:121.179375px;}
.hf_c02010{height:207.000000px;}
.h0_c02010{height:1262.880000px;}
.h1_c02010{height:1263.000000px;}
.w2_c02010{width:520.201500px;}
.w3_c02010{width:690.301500px;}
.w0_c02010{width:892.980000px;}
.w1_c02010{width:893.250000px;}
.x0_c02010{left:0.000000px;}
.x9_c02010{left:7.740000px;}
.x5_c02010{left:18.720000px;}
.xe_c02010{left:107.460000px;}
.x3_c02010{left:127.620000px;}
.x7_c02010{left:148.860000px;}
.xa_c02010{left:156.960000px;}
.xb_c02010{left:180.720000px;}
.xc_c02010{left:189.720000px;}
.xd_c02010{left:191.520000px;}
.x2_c02010{left:219.780000px;}
.x4_c02010{left:223.740000px;}
.x8_c02010{left:269.100000px;}
.x1_c02010{left:340.020000px;}
.x6_c02010{left:446.400000px;}
.xf_c02010{left:732.060000px;}
@media print{
.v1_c02010{vertical-align:-92.800000pt;}
.v2_c02010{vertical-align:-88.330240pt;}
.v0_c02010{vertical-align:0.000000pt;}
.ls10_c02010{letter-spacing:-0.256000pt;}
.ls11_c02010{letter-spacing:-0.192000pt;}
.lse_c02010{letter-spacing:-0.106880pt;}
.ls12_c02010{letter-spacing:-0.106240pt;}
.lsb_c02010{letter-spacing:0.000000pt;}
.ls14_c02010{letter-spacing:0.053120pt;}
.ls15_c02010{letter-spacing:0.064000pt;}
.ls0_c02010{letter-spacing:0.106880pt;}
.ls1_c02010{letter-spacing:0.160000pt;}
.lsf_c02010{letter-spacing:0.213760pt;}
.ls6_c02010{letter-spacing:0.256000pt;}
.lsc_c02010{letter-spacing:0.299520pt;}
.ls13_c02010{letter-spacing:0.318720pt;}
.lsd_c02010{letter-spacing:0.320640pt;}
.ls3_c02010{letter-spacing:0.340480pt;}
.ls4_c02010{letter-spacing:0.640000pt;}
.ls8_c02010{letter-spacing:1.280000pt;}
.lsa_c02010{letter-spacing:16.640000pt;}
.ls5_c02010{letter-spacing:19.840000pt;}
.ls2_c02010{letter-spacing:59.520000pt;}
.ls9_c02010{letter-spacing:63.599360pt;}
.ls7_c02010{letter-spacing:64.810240pt;}
.ws0_c02010{word-spacing:-27.040640pt;}
.ws1_c02010{word-spacing:-21.620480pt;}
.ws4_c02010{word-spacing:-16.064000pt;}
.ws3_c02010{word-spacing:-16.000000pt;}
.ws2_c02010{word-spacing:-15.808000pt;}
.ws5_c02010{word-spacing:-15.744000pt;}
.wsf_c02010{word-spacing:-0.641280pt;}
.wsb_c02010{word-spacing:-0.534400pt;}
.ws9_c02010{word-spacing:-0.449280pt;}
.wsc_c02010{word-spacing:-0.320640pt;}
.ws11_c02010{word-spacing:-0.256000pt;}
.ws1e_c02010{word-spacing:-0.170240pt;}
.ws19_c02010{word-spacing:-0.159360pt;}
.ws6_c02010{word-spacing:-0.149760pt;}
.ws8_c02010{word-spacing:0.000000pt;}
.ws1d_c02010{word-spacing:0.106240pt;}
.wse_c02010{word-spacing:0.106880pt;}
.wsa_c02010{word-spacing:0.159360pt;}
.wsd_c02010{word-spacing:0.213760pt;}
.ws13_c02010{word-spacing:0.256000pt;}
.ws18_c02010{word-spacing:0.265600pt;}
.ws7_c02010{word-spacing:0.510720pt;}
.ws1a_c02010{word-spacing:1.280000pt;}
.ws1b_c02010{word-spacing:1.536000pt;}
.ws15_c02010{word-spacing:2.560000pt;}
.ws17_c02010{word-spacing:4.096000pt;}
.ws1c_c02010{word-spacing:6.016000pt;}
.ws14_c02010{word-spacing:12.416000pt;}
.ws20_c02010{word-spacing:16.640000pt;}
.ws1f_c02010{word-spacing:16.896000pt;}
.ws10_c02010{word-spacing:19.840000pt;}
.ws12_c02010{word-spacing:20.096000pt;}
.ws16_c02010{word-spacing:36.096000pt;}
._3_c02010{margin-left:-17.804800pt;}
._1_c02010{margin-left:-1.872000pt;}
._2_c02010{margin-left:-0.898560pt;}
._0_c02010{width:0.990720pt;}
._6_c02010{width:2.882560pt;}
._4_c02010{width:19.265280pt;}
._5_c02010{width:20.802560pt;}
.fs5_c02010{font-size:42.880000pt;}
.fs2_c02010{font-size:53.120000pt;}
.fs4_c02010{font-size:64.000000pt;}
.fs0_c02010{font-size:74.880000pt;}
.fs1_c02010{font-size:85.120000pt;}
.fs6_c02010{font-size:96.000000pt;}
.fs3_c02010{font-size:106.880000pt;}
.y0_c02010{bottom:0.000000pt;}
.y15_c02010{bottom:3.680000pt;}
.y2e_c02010{bottom:4.000000pt;}
.y22_c02010{bottom:4.640000pt;}
.yf_c02010{bottom:4.800000pt;}
.y8_c02010{bottom:5.920000pt;}
.y13_c02010{bottom:40.480000pt;}
.y11_c02010{bottom:77.280000pt;}
.y33_c02010{bottom:127.040000pt;}
.y32_c02010{bottom:151.840000pt;}
.y31_c02010{bottom:165.440000pt;}
.y25_c02010{bottom:169.600000pt;}
.y30_c02010{bottom:205.762720pt;}
.y2f_c02010{bottom:218.080000pt;}
.y24_c02010{bottom:228.480000pt;}
.y2d_c02010{bottom:250.880000pt;}
.y2c_c02010{bottom:269.280000pt;}
.y2b_c02010{bottom:287.680000pt;}
.y2a_c02010{bottom:306.080000pt;}
.y29_c02010{bottom:324.480000pt;}
.y28_c02010{bottom:342.880000pt;}
.y27_c02010{bottom:361.280000pt;}
.y26_c02010{bottom:379.680000pt;}
.y21_c02010{bottom:413.120000pt;}
.y23_c02010{bottom:417.760000pt;}
.y20_c02010{bottom:440.800000pt;}
.y1f_c02010{bottom:453.120000pt;}
.y1e_c02010{bottom:468.160000pt;}
.y1d_c02010{bottom:493.120000pt;}
.y1c_c02010{bottom:506.720000pt;}
.y1b_c02010{bottom:525.120000pt;}
.y1a_c02010{bottom:565.442560pt;}
.y19_c02010{bottom:577.599040pt;}
.y18_c02010{bottom:592.800000pt;}
.y17_c02010{bottom:617.603520pt;}
.y16_c02010{bottom:629.760000pt;}
.y10_c02010{bottom:640.160000pt;}
.y14_c02010{bottom:662.240000pt;}
.y12_c02010{bottom:699.040000pt;}
.ye_c02010{bottom:732.800000pt;}
.yd_c02010{bottom:760.803520pt;}
.yc_c02010{bottom:772.960000pt;}
.yb_c02010{bottom:786.560000pt;}
.ya_c02010{bottom:828.000000pt;}
.y9_c02010{bottom:845.280000pt;}
.y7_c02010{bottom:855.680000pt;}
.y6_c02010{bottom:890.720000pt;}
.y5_c02010{bottom:911.352320pt;}
.y4_c02010{bottom:941.925120pt;}
.y3_c02010{bottom:969.760000pt;}
.y2_c02010{bottom:986.240000pt;}
.y1_c02010{bottom:1008.320000pt;}
.he_c02010{height:24.480000pt;}
.hb_c02010{height:24.640000pt;}
.h8_c02010{height:30.720000pt;}
.ha_c02010{height:42.084375pt;}
.h9_c02010{height:43.215000pt;}
.h10_c02010{height:44.722500pt;}
.h4_c02010{height:53.535000pt;}
.hd_c02010{height:62.812500pt;}
.h7_c02010{height:64.500000pt;}
.h3_c02010{height:75.465000pt;}
.h2_c02010{height:85.785000pt;}
.hc_c02010{height:91.998667pt;}
.h5_c02010{height:107.694520pt;}
.h6_c02010{height:107.715000pt;}
.hf_c02010{height:184.000000pt;}
.h0_c02010{height:1122.560000pt;}
.h1_c02010{height:1122.666667pt;}
.w2_c02010{width:462.401333pt;}
.w3_c02010{width:613.601333pt;}
.w0_c02010{width:793.760000pt;}
.w1_c02010{width:794.000000pt;}
.x0_c02010{left:0.000000pt;}
.x9_c02010{left:6.880000pt;}
.x5_c02010{left:16.640000pt;}
.xe_c02010{left:95.520000pt;}
.x3_c02010{left:113.440000pt;}
.x7_c02010{left:132.320000pt;}
.xa_c02010{left:139.520000pt;}
.xb_c02010{left:160.640000pt;}
.xc_c02010{left:168.640000pt;}
.xd_c02010{left:170.240000pt;}
.x2_c02010{left:195.360000pt;}
.x4_c02010{left:198.880000pt;}
.x8_c02010{left:239.200000pt;}
.x1_c02010{left:302.240000pt;}
.x6_c02010{left:396.800000pt;}
.xf_c02010{left:650.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_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_c2d98ce71ad782b17d98debb.woff2')format("woff");}.ff1_c02011{font-family:ff1_c02011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02011;src:url('chunks/assets/font_9ea6edf8b611fd44bb470690.woff2')format("woff");}.ff2_c02011{font-family:ff2_c02011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02011;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02011{font-family:ff3_c02011;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_c02011;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff4_c02011{font-family:ff4_c02011;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:ff5_c02011;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff5_c02011{font-family:ff5_c02011;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;}
.m0_c02011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02011{vertical-align:-45.360000px;}
.v0_c02011{vertical-align:0.000000px;}
.ls11_c02011{letter-spacing:-0.792000px;}
.ls13_c02011{letter-spacing:-0.758160px;}
.ls16_c02011{letter-spacing:-0.648000px;}
.ls12_c02011{letter-spacing:-0.336960px;}
.ls10_c02011{letter-spacing:-0.288000px;}
.lsf_c02011{letter-spacing:-0.216000px;}
.ls17_c02011{letter-spacing:-0.132480px;}
.lse_c02011{letter-spacing:-0.108000px;}
.lsd_c02011{letter-spacing:0.000000px;}
.ls14_c02011{letter-spacing:0.132480px;}
.lsc_c02011{letter-spacing:0.144000px;}
.ls0_c02011{letter-spacing:0.162000px;}
.ls5_c02011{letter-spacing:0.179280px;}
.ls9_c02011{letter-spacing:0.239040px;}
.ls4_c02011{letter-spacing:0.288000px;}
.ls15_c02011{letter-spacing:0.336960px;}
.ls6_c02011{letter-spacing:0.358560px;}
.ls2_c02011{letter-spacing:0.383040px;}
.lsa_c02011{letter-spacing:0.480960px;}
.lsb_c02011{letter-spacing:0.720000px;}
.ls3_c02011{letter-spacing:3.600000px;}
.ls7_c02011{letter-spacing:5.760000px;}
.ls8_c02011{letter-spacing:11.520000px;}
.ls1_c02011{letter-spacing:2695.680000px;}
.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;}
}
.ws1_c02011{word-spacing:-24.323040px;}
.ws2_c02011{word-spacing:-23.940000px;}
.ws5_c02011{word-spacing:-20.723040px;}
.ws6_c02011{word-spacing:-20.301840px;}
.ws3_c02011{word-spacing:-17.712000px;}
.ws4_c02011{word-spacing:-17.208000px;}
.ws8_c02011{word-spacing:-16.427520px;}
.ws0_c02011{word-spacing:-13.392000px;}
.ws7_c02011{word-spacing:-13.284000px;}
.ws19_c02011{word-spacing:-0.861120px;}
.ws1a_c02011{word-spacing:-0.728640px;}
.ws10_c02011{word-spacing:-0.717120px;}
.ws1c_c02011{word-spacing:-0.505440px;}
.ws11_c02011{word-spacing:-0.383040px;}
.ws1b_c02011{word-spacing:-0.288000px;}
.ws17_c02011{word-spacing:-0.191520px;}
.wse_c02011{word-spacing:-0.179280px;}
.wsf_c02011{word-spacing:-0.168480px;}
.ws16_c02011{word-spacing:-0.144000px;}
.ws18_c02011{word-spacing:-0.132480px;}
.ws9_c02011{word-spacing:0.000000px;}
.wsd_c02011{word-spacing:0.288000px;}
.wsa_c02011{word-spacing:0.378000px;}
.wsb_c02011{word-spacing:3.600000px;}
.wsc_c02011{word-spacing:3.888000px;}
.ws13_c02011{word-spacing:5.040000px;}
.ws12_c02011{word-spacing:5.328000px;}
.ws1e_c02011{word-spacing:5.616000px;}
.ws1d_c02011{word-spacing:5.760000px;}
.ws1f_c02011{word-spacing:6.408000px;}
.ws15_c02011{word-spacing:11.520000px;}
.ws14_c02011{word-spacing:11.808000px;}
._1_c02011{margin-left:-19.310400px;}
._2_c02011{margin-left:-1.494720px;}
._0_c02011{width:1.026000px;}
._3_c02011{width:2.204640px;}
._4_c02011{width:11.646000px;}
.fc2_c02011{color:rgb(0,128,0);}
.fc1_c02011{color:rgb(140,140,140);}
.fc0_c02011{color:rgb(0,0,0);}
.fs8_c02011{font-size:36.000000px;}
.fs2_c02011{font-size:48.240000px;}
.fs1_c02011{font-size:54.000000px;}
.fs6_c02011{font-size:59.760000px;}
.fs7_c02011{font-size:66.240000px;}
.fs0_c02011{font-size:72.000000px;}
.fs5_c02011{font-size:84.240000px;}
.fs3_c02011{font-size:95.760000px;}
.fs4_c02011{font-size:108.000000px;}
.y0_c02011{bottom:0.000000px;}
.y52_c02011{bottom:1.980000px;}
.y4_c02011{bottom:2.880000px;}
.y3a_c02011{bottom:3.420000px;}
.y34_c02011{bottom:4.680000px;}
.y1f_c02011{bottom:5.760000px;}
.y1d_c02011{bottom:8.100000px;}
.y53_c02011{bottom:9.900000px;}
.y1b_c02011{bottom:10.980000px;}
.y1c_c02011{bottom:12.240000px;}
.y50_c02011{bottom:12.780000px;}
.y51_c02011{bottom:14.040000px;}
.y2_c02011{bottom:19.620000px;}
.y16_c02011{bottom:37.980000px;}
.y15_c02011{bottom:40.860000px;}
.y17_c02011{bottom:43.740000px;}
.y42_c02011{bottom:49.500000px;}
.y3b_c02011{bottom:49.680000px;}
.y3e_c02011{bottom:52.380000px;}
.y36_c02011{bottom:52.560000px;}
.y3f_c02011{bottom:55.080000px;}
.y37_c02011{bottom:55.260000px;}
.y6_c02011{bottom:57.600000px;}
.y55_c02011{bottom:141.660000px;}
.y56_c02011{bottom:151.560000px;}
.y4f_c02011{bottom:171.720000px;}
.y54_c02011{bottom:181.620000px;}
.y4e_c02011{bottom:201.780000px;}
.y4d_c02011{bottom:229.687020px;}
.y4c_c02011{bottom:243.543960px;}
.y4b_c02011{bottom:257.220000px;}
.y4a_c02011{bottom:272.520000px;}
.y49_c02011{bottom:293.040000px;}
.y48_c02011{bottom:318.073140px;}
.y47_c02011{bottom:331.930080px;}
.y46_c02011{bottom:345.606120px;}
.y45_c02011{bottom:359.463060px;}
.y44_c02011{bottom:373.320000px;}
.y3d_c02011{bottom:384.840000px;}
.y41_c02011{bottom:405.360000px;}
.y40_c02011{bottom:422.640000px;}
.y43_c02011{bottom:434.340000px;}
.y35_c02011{bottom:454.500000px;}
.y39_c02011{bottom:475.200000px;}
.y38_c02011{bottom:492.480000px;}
.y3c_c02011{bottom:504.180000px;}
.y33_c02011{bottom:524.340000px;}
.y32_c02011{bottom:552.067020px;}
.y31_c02011{bottom:565.743060px;}
.y30_c02011{bottom:579.600000px;}
.y2f_c02011{bottom:594.720000px;}
.y2e_c02011{bottom:614.167020px;}
.y2d_c02011{bottom:627.843060px;}
.y2c_c02011{bottom:641.700000px;}
.y2a_c02011{bottom:653.400000px;}
.y2b_c02011{bottom:661.500000px;}
.y28_c02011{bottom:681.840000px;}
.y29_c02011{bottom:689.940000px;}
.y26_c02011{bottom:710.100000px;}
.y27_c02011{bottom:718.200000px;}
.y24_c02011{bottom:738.540000px;}
.y25_c02011{bottom:746.640000px;}
.y22_c02011{bottom:766.800000px;}
.y23_c02011{bottom:774.900000px;}
.y20_c02011{bottom:795.240000px;}
.y21_c02011{bottom:803.340000px;}
.y1a_c02011{bottom:823.500000px;}
.y1e_c02011{bottom:831.600000px;}
.y14_c02011{bottom:851.940000px;}
.y19_c02011{bottom:854.820000px;}
.y18_c02011{bottom:872.100000px;}
.y13_c02011{bottom:915.847020px;}
.y12_c02011{bottom:929.523060px;}
.y11_c02011{bottom:943.380000px;}
.y10_c02011{bottom:958.860000px;}
.yf_c02011{bottom:979.560000px;}
.ye_c02011{bottom:1000.980000px;}
.yd_c02011{bottom:1026.185940px;}
.yc_c02011{bottom:1040.042880px;}
.yb_c02011{bottom:1053.718920px;}
.ya_c02011{bottom:1070.820000px;}
.y9_c02011{bottom:1098.534960px;}
.y8_c02011{bottom:1114.020000px;}
.y7_c02011{bottom:1134.720000px;}
.y5_c02011{bottom:1161.000000px;}
.y1_c02011{bottom:1172.880000px;}
.y3_c02011{bottom:1175.760000px;}
.h13_c02011{height:24.118500px;}
.hf_c02011{height:24.120000px;}
.hb_c02011{height:27.540000px;}
.h14_c02011{height:29.340000px;}
.h16_c02011{height:29.341500px;}
.h2_c02011{height:36.180000px;}
.h15_c02011{height:36.281250px;}
.h12_c02011{height:47.344922px;}
.h5_c02011{height:48.616875px;}
.h4_c02011{height:54.421875px;}
.hc_c02011{height:60.226875px;}
.ha_c02011{height:60.298500px;}
.h11_c02011{height:68.938500px;}
.h10_c02011{height:69.120000px;}
.h6_c02011{height:70.664062px;}
.h3_c02011{height:72.562500px;}
.hd_c02011{height:82.676953px;}
.h8_c02011{height:84.898125px;}
.he_c02011{height:93.983203px;}
.h9_c02011{height:96.508125px;}
.h7_c02011{height:99.874688px;}
.h0_c02011{height:1262.880000px;}
.h1_c02011{height:1263.000000px;}
.w3_c02011{width:41.760000px;}
.w6_c02011{width:52.380000px;}
.w5_c02011{width:190.440000px;}
.w8_c02011{width:190.620000px;}
.w4_c02011{width:445.858500px;}
.w2_c02011{width:498.780000px;}
.w7_c02011{width:498.960000px;}
.w0_c02011{width:892.980000px;}
.w1_c02011{width:893.250000px;}
.x0_c02011{left:0.000000px;}
.x9_c02011{left:7.740000px;}
.xc_c02011{left:9.540000px;}
.x10_c02011{left:33.120000px;}
.x8_c02011{left:53.460000px;}
.x12_c02011{left:79.560000px;}
.x6_c02011{left:95.580000px;}
.x17_c02011{left:103.680000px;}
.x7_c02011{left:106.380000px;}
.x14_c02011{left:126.000000px;}
.x5_c02011{left:127.620000px;}
.x2_c02011{left:172.620000px;}
.x1_c02011{left:223.740000px;}
.x3_c02011{left:231.300000px;}
.x4_c02011{left:484.200000px;}
.xa_c02011{left:542.700000px;}
.xf_c02011{left:568.260000px;}
.x16_c02011{left:595.800000px;}
.x11_c02011{left:614.700000px;}
.x18_c02011{left:621.540000px;}
.x13_c02011{left:661.140000px;}
.x19_c02011{left:667.980000px;}
.x15_c02011{left:707.580000px;}
.x1a_c02011{left:714.420000px;}
.xb_c02011{left:734.040000px;}
.xe_c02011{left:741.600000px;}
.xd_c02011{left:754.740000px;}
.x1b_c02011{left:760.860000px;}
@media print{
.v1_c02011{vertical-align:-40.320000pt;}
.v0_c02011{vertical-align:0.000000pt;}
.ls11_c02011{letter-spacing:-0.704000pt;}
.ls13_c02011{letter-spacing:-0.673920pt;}
.ls16_c02011{letter-spacing:-0.576000pt;}
.ls12_c02011{letter-spacing:-0.299520pt;}
.ls10_c02011{letter-spacing:-0.256000pt;}
.lsf_c02011{letter-spacing:-0.192000pt;}
.ls17_c02011{letter-spacing:-0.117760pt;}
.lse_c02011{letter-spacing:-0.096000pt;}
.lsd_c02011{letter-spacing:0.000000pt;}
.ls14_c02011{letter-spacing:0.117760pt;}
.lsc_c02011{letter-spacing:0.128000pt;}
.ls0_c02011{letter-spacing:0.144000pt;}
.ls5_c02011{letter-spacing:0.159360pt;}
.ls9_c02011{letter-spacing:0.212480pt;}
.ls4_c02011{letter-spacing:0.256000pt;}
.ls15_c02011{letter-spacing:0.299520pt;}
.ls6_c02011{letter-spacing:0.318720pt;}
.ls2_c02011{letter-spacing:0.340480pt;}
.lsa_c02011{letter-spacing:0.427520pt;}
.lsb_c02011{letter-spacing:0.640000pt;}
.ls3_c02011{letter-spacing:3.200000pt;}
.ls7_c02011{letter-spacing:5.120000pt;}
.ls8_c02011{letter-spacing:10.240000pt;}
.ls1_c02011{letter-spacing:2396.160000pt;}
.ws1_c02011{word-spacing:-21.620480pt;}
.ws2_c02011{word-spacing:-21.280000pt;}
.ws5_c02011{word-spacing:-18.420480pt;}
.ws6_c02011{word-spacing:-18.046080pt;}
.ws3_c02011{word-spacing:-15.744000pt;}
.ws4_c02011{word-spacing:-15.296000pt;}
.ws8_c02011{word-spacing:-14.602240pt;}
.ws0_c02011{word-spacing:-11.904000pt;}
.ws7_c02011{word-spacing:-11.808000pt;}
.ws19_c02011{word-spacing:-0.765440pt;}
.ws1a_c02011{word-spacing:-0.647680pt;}
.ws10_c02011{word-spacing:-0.637440pt;}
.ws1c_c02011{word-spacing:-0.449280pt;}
.ws11_c02011{word-spacing:-0.340480pt;}
.ws1b_c02011{word-spacing:-0.256000pt;}
.ws17_c02011{word-spacing:-0.170240pt;}
.wse_c02011{word-spacing:-0.159360pt;}
.wsf_c02011{word-spacing:-0.149760pt;}
.ws16_c02011{word-spacing:-0.128000pt;}
.ws18_c02011{word-spacing:-0.117760pt;}
.ws9_c02011{word-spacing:0.000000pt;}
.wsd_c02011{word-spacing:0.256000pt;}
.wsa_c02011{word-spacing:0.336000pt;}
.wsb_c02011{word-spacing:3.200000pt;}
.wsc_c02011{word-spacing:3.456000pt;}
.ws13_c02011{word-spacing:4.480000pt;}
.ws12_c02011{word-spacing:4.736000pt;}
.ws1e_c02011{word-spacing:4.992000pt;}
.ws1d_c02011{word-spacing:5.120000pt;}
.ws1f_c02011{word-spacing:5.696000pt;}
.ws15_c02011{word-spacing:10.240000pt;}
.ws14_c02011{word-spacing:10.496000pt;}
._1_c02011{margin-left:-17.164800pt;}
._2_c02011{margin-left:-1.328640pt;}
._0_c02011{width:0.912000pt;}
._3_c02011{width:1.959680pt;}
._4_c02011{width:10.352000pt;}
.fs8_c02011{font-size:32.000000pt;}
.fs2_c02011{font-size:42.880000pt;}
.fs1_c02011{font-size:48.000000pt;}
.fs6_c02011{font-size:53.120000pt;}
.fs7_c02011{font-size:58.880000pt;}
.fs0_c02011{font-size:64.000000pt;}
.fs5_c02011{font-size:74.880000pt;}
.fs3_c02011{font-size:85.120000pt;}
.fs4_c02011{font-size:96.000000pt;}
.y0_c02011{bottom:0.000000pt;}
.y52_c02011{bottom:1.760000pt;}
.y4_c02011{bottom:2.560000pt;}
.y3a_c02011{bottom:3.040000pt;}
.y34_c02011{bottom:4.160000pt;}
.y1f_c02011{bottom:5.120000pt;}
.y1d_c02011{bottom:7.200000pt;}
.y53_c02011{bottom:8.800000pt;}
.y1b_c02011{bottom:9.760000pt;}
.y1c_c02011{bottom:10.880000pt;}
.y50_c02011{bottom:11.360000pt;}
.y51_c02011{bottom:12.480000pt;}
.y2_c02011{bottom:17.440000pt;}
.y16_c02011{bottom:33.760000pt;}
.y15_c02011{bottom:36.320000pt;}
.y17_c02011{bottom:38.880000pt;}
.y42_c02011{bottom:44.000000pt;}
.y3b_c02011{bottom:44.160000pt;}
.y3e_c02011{bottom:46.560000pt;}
.y36_c02011{bottom:46.720000pt;}
.y3f_c02011{bottom:48.960000pt;}
.y37_c02011{bottom:49.120000pt;}
.y6_c02011{bottom:51.200000pt;}
.y55_c02011{bottom:125.920000pt;}
.y56_c02011{bottom:134.720000pt;}
.y4f_c02011{bottom:152.640000pt;}
.y54_c02011{bottom:161.440000pt;}
.y4e_c02011{bottom:179.360000pt;}
.y4d_c02011{bottom:204.166240pt;}
.y4c_c02011{bottom:216.483520pt;}
.y4b_c02011{bottom:228.640000pt;}
.y4a_c02011{bottom:242.240000pt;}
.y49_c02011{bottom:260.480000pt;}
.y48_c02011{bottom:282.731680pt;}
.y47_c02011{bottom:295.048960pt;}
.y46_c02011{bottom:307.205440pt;}
.y45_c02011{bottom:319.522720pt;}
.y44_c02011{bottom:331.840000pt;}
.y3d_c02011{bottom:342.080000pt;}
.y41_c02011{bottom:360.320000pt;}
.y40_c02011{bottom:375.680000pt;}
.y43_c02011{bottom:386.080000pt;}
.y35_c02011{bottom:404.000000pt;}
.y39_c02011{bottom:422.400000pt;}
.y38_c02011{bottom:437.760000pt;}
.y3c_c02011{bottom:448.160000pt;}
.y33_c02011{bottom:466.080000pt;}
.y32_c02011{bottom:490.726240pt;}
.y31_c02011{bottom:502.882720pt;}
.y30_c02011{bottom:515.200000pt;}
.y2f_c02011{bottom:528.640000pt;}
.y2e_c02011{bottom:545.926240pt;}
.y2d_c02011{bottom:558.082720pt;}
.y2c_c02011{bottom:570.400000pt;}
.y2a_c02011{bottom:580.800000pt;}
.y2b_c02011{bottom:588.000000pt;}
.y28_c02011{bottom:606.080000pt;}
.y29_c02011{bottom:613.280000pt;}
.y26_c02011{bottom:631.200000pt;}
.y27_c02011{bottom:638.400000pt;}
.y24_c02011{bottom:656.480000pt;}
.y25_c02011{bottom:663.680000pt;}
.y22_c02011{bottom:681.600000pt;}
.y23_c02011{bottom:688.800000pt;}
.y20_c02011{bottom:706.880000pt;}
.y21_c02011{bottom:714.080000pt;}
.y1a_c02011{bottom:732.000000pt;}
.y1e_c02011{bottom:739.200000pt;}
.y14_c02011{bottom:757.280000pt;}
.y19_c02011{bottom:759.840000pt;}
.y18_c02011{bottom:775.200000pt;}
.y13_c02011{bottom:814.086240pt;}
.y12_c02011{bottom:826.242720pt;}
.y11_c02011{bottom:838.560000pt;}
.y10_c02011{bottom:852.320000pt;}
.yf_c02011{bottom:870.720000pt;}
.ye_c02011{bottom:889.760000pt;}
.yd_c02011{bottom:912.165280pt;}
.yc_c02011{bottom:924.482560pt;}
.yb_c02011{bottom:936.639040pt;}
.ya_c02011{bottom:951.840000pt;}
.y9_c02011{bottom:976.475520pt;}
.y8_c02011{bottom:990.240000pt;}
.y7_c02011{bottom:1008.640000pt;}
.y5_c02011{bottom:1032.000000pt;}
.y1_c02011{bottom:1042.560000pt;}
.y3_c02011{bottom:1045.120000pt;}
.h13_c02011{height:21.438667pt;}
.hf_c02011{height:21.440000pt;}
.hb_c02011{height:24.480000pt;}
.h14_c02011{height:26.080000pt;}
.h16_c02011{height:26.081333pt;}
.h2_c02011{height:32.160000pt;}
.h15_c02011{height:32.250000pt;}
.h12_c02011{height:42.084375pt;}
.h5_c02011{height:43.215000pt;}
.h4_c02011{height:48.375000pt;}
.hc_c02011{height:53.535000pt;}
.ha_c02011{height:53.598667pt;}
.h11_c02011{height:61.278667pt;}
.h10_c02011{height:61.440000pt;}
.h6_c02011{height:62.812500pt;}
.h3_c02011{height:64.500000pt;}
.hd_c02011{height:73.490625pt;}
.h8_c02011{height:75.465000pt;}
.he_c02011{height:83.540625pt;}
.h9_c02011{height:85.785000pt;}
.h7_c02011{height:88.777500pt;}
.h0_c02011{height:1122.560000pt;}
.h1_c02011{height:1122.666667pt;}
.w3_c02011{width:37.120000pt;}
.w6_c02011{width:46.560000pt;}
.w5_c02011{width:169.280000pt;}
.w8_c02011{width:169.440000pt;}
.w4_c02011{width:396.318667pt;}
.w2_c02011{width:443.360000pt;}
.w7_c02011{width:443.520000pt;}
.w0_c02011{width:793.760000pt;}
.w1_c02011{width:794.000000pt;}
.x0_c02011{left:0.000000pt;}
.x9_c02011{left:6.880000pt;}
.xc_c02011{left:8.480000pt;}
.x10_c02011{left:29.440000pt;}
.x8_c02011{left:47.520000pt;}
.x12_c02011{left:70.720000pt;}
.x6_c02011{left:84.960000pt;}
.x17_c02011{left:92.160000pt;}
.x7_c02011{left:94.560000pt;}
.x14_c02011{left:112.000000pt;}
.x5_c02011{left:113.440000pt;}
.x2_c02011{left:153.440000pt;}
.x1_c02011{left:198.880000pt;}
.x3_c02011{left:205.600000pt;}
.x4_c02011{left:430.400000pt;}
.xa_c02011{left:482.400000pt;}
.xf_c02011{left:505.120000pt;}
.x16_c02011{left:529.600000pt;}
.x11_c02011{left:546.400000pt;}
.x18_c02011{left:552.480000pt;}
.x13_c02011{left:587.680000pt;}
.x19_c02011{left:593.760000pt;}
.x15_c02011{left:628.960000pt;}
.x1a_c02011{left:635.040000pt;}
.xb_c02011{left:652.480000pt;}
.xe_c02011{left:659.200000pt;}
.xd_c02011{left:670.880000pt;}
.x1b_c02011{left:676.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_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_6f5c1e6dd4dfb9e3de34ee45.woff2')format("woff");}.ff1_c02012{font-family:ff1_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:ff2_c02012;src:url('chunks/assets/font_8ede44657912bfd17210cad8.woff2')format("woff");}.ff2_c02012{font-family:ff2_c02012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02012;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02012{font-family:ff3_c02012;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_c02012;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02012{font-family:ff4_c02012;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;}
.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);}
.v3_c02012{vertical-align:-78.508080px;}
.v2_c02012{vertical-align:-77.068080px;}
.v1_c02012{vertical-align:-45.360000px;}
.v0_c02012{vertical-align:0.000000px;}
.ls19_c02012{letter-spacing:-1.008000px;}
.lsf_c02012{letter-spacing:-0.792000px;}
.ls12_c02012{letter-spacing:-0.758160px;}
.ls11_c02012{letter-spacing:-0.336960px;}
.ls1a_c02012{letter-spacing:-0.331200px;}
.lsd_c02012{letter-spacing:-0.288000px;}
.lsb_c02012{letter-spacing:-0.216000px;}
.ls18_c02012{letter-spacing:-0.144000px;}
.ls13_c02012{letter-spacing:-0.132480px;}
.lsa_c02012{letter-spacing:-0.108000px;}
.ls9_c02012{letter-spacing:0.000000px;}
.lse_c02012{letter-spacing:0.072000px;}
.ls15_c02012{letter-spacing:0.132480px;}
.ls10_c02012{letter-spacing:0.144000px;}
.ls0_c02012{letter-spacing:0.162000px;}
.ls4_c02012{letter-spacing:0.239040px;}
.ls16_c02012{letter-spacing:0.288000px;}
.ls14_c02012{letter-spacing:0.331200px;}
.ls17_c02012{letter-spacing:0.336960px;}
.lsc_c02012{letter-spacing:0.383040px;}
.ls5_c02012{letter-spacing:0.480960px;}
.ls2_c02012{letter-spacing:0.720000px;}
.ls3_c02012{letter-spacing:5.760000px;}
.ls8_c02012{letter-spacing:10.800000px;}
.ls7_c02012{letter-spacing:11.520000px;}
.ls6_c02012{letter-spacing:72.900000px;}
.ls1_c02012{letter-spacing:2695.680000px;}
.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;}
}
.ws1_c02012{word-spacing:-23.940000px;}
.ws9_c02012{word-spacing:-21.396960px;}
.ws5_c02012{word-spacing:-20.723040px;}
.ws6_c02012{word-spacing:-20.301840px;}
.wsa_c02012{word-spacing:-18.288000px;}
.ws3_c02012{word-spacing:-18.072000px;}
.ws2_c02012{word-spacing:-17.712000px;}
.ws4_c02012{word-spacing:-17.208000px;}
.wsb_c02012{word-spacing:-16.992000px;}
.ws8_c02012{word-spacing:-16.427520px;}
.wsc_c02012{word-spacing:-16.228800px;}
.ws0_c02012{word-spacing:-13.392000px;}
.ws7_c02012{word-spacing:-13.284000px;}
.ws17_c02012{word-spacing:-1.059840px;}
.ws18_c02012{word-spacing:-0.861120px;}
.ws1f_c02012{word-spacing:-0.505440px;}
.wsf_c02012{word-spacing:-0.383040px;}
.ws1a_c02012{word-spacing:-0.288000px;}
.ws16_c02012{word-spacing:-0.191520px;}
.ws15_c02012{word-spacing:-0.168480px;}
.ws13_c02012{word-spacing:-0.144000px;}
.ws19_c02012{word-spacing:-0.132480px;}
.wsd_c02012{word-spacing:0.000000px;}
.ws14_c02012{word-spacing:0.132480px;}
.ws10_c02012{word-spacing:0.288000px;}
.wse_c02012{word-spacing:0.378000px;}
.ws1e_c02012{word-spacing:0.576000px;}
.ws12_c02012{word-spacing:5.760000px;}
.ws11_c02012{word-spacing:6.048000px;}
.ws1b_c02012{word-spacing:10.800000px;}
.ws1d_c02012{word-spacing:10.944000px;}
.ws1c_c02012{word-spacing:11.088000px;}
._1_c02012{margin-left:-1.882080px;}
._0_c02012{width:1.026000px;}
._4_c02012{width:2.900160px;}
._2_c02012{width:5.778000px;}
._3_c02012{width:11.304000px;}
.fc1_c02012{color:rgb(140,140,140);}
.fc0_c02012{color:rgb(0,0,0);}
.fs2_c02012{font-size:48.240000px;}
.fs1_c02012{font-size:54.000000px;}
.fs6_c02012{font-size:59.760000px;}
.fs5_c02012{font-size:66.240000px;}
.fs0_c02012{font-size:72.000000px;}
.fs4_c02012{font-size:84.240000px;}
.fs3_c02012{font-size:95.760000px;}
.y0_c02012{bottom:0.000000px;}
.y4_c02012{bottom:2.880000px;}
.y53_c02012{bottom:3.240000px;}
.y2b_c02012{bottom:3.420000px;}
.y57_c02012{bottom:4.140000px;}
.y27_c02012{bottom:4.680000px;}
.y51_c02012{bottom:4.860000px;}
.y15_c02012{bottom:5.760000px;}
.y3f_c02012{bottom:5.940000px;}
.y13_c02012{bottom:8.100000px;}
.y3d_c02012{bottom:8.280000px;}
.y11_c02012{bottom:10.980000px;}
.y3b_c02012{bottom:11.160000px;}
.y12_c02012{bottom:12.240000px;}
.y3c_c02012{bottom:12.420000px;}
.y2c_c02012{bottom:14.940000px;}
.y31_c02012{bottom:15.120000px;}
.y29_c02012{bottom:17.820000px;}
.y2f_c02012{bottom:18.000000px;}
.y2_c02012{bottom:19.620000px;}
.y2a_c02012{bottom:20.520000px;}
.y30_c02012{bottom:20.700000px;}
.y58_c02012{bottom:21.960000px;}
.y56_c02012{bottom:24.840000px;}
.yd_c02012{bottom:37.980000px;}
.yc_c02012{bottom:40.860000px;}
.ye_c02012{bottom:43.740000px;}
.y6_c02012{bottom:57.600000px;}
.y55_c02012{bottom:113.220000px;}
.y59_c02012{bottom:135.180000px;}
.y52_c02012{bottom:155.520000px;}
.y54_c02012{bottom:170.460000px;}
.y50_c02012{bottom:190.620000px;}
.y4f_c02012{bottom:218.340000px;}
.y4e_c02012{bottom:253.087020px;}
.y4d_c02012{bottom:266.943960px;}
.y4c_c02012{bottom:280.620000px;}
.y4a_c02012{bottom:292.140000px;}
.y4b_c02012{bottom:300.420000px;}
.y48_c02012{bottom:320.580000px;}
.y49_c02012{bottom:328.680000px;}
.y46_c02012{bottom:348.840000px;}
.y47_c02012{bottom:357.120000px;}
.y44_c02012{bottom:377.280000px;}
.y45_c02012{bottom:385.380000px;}
.y42_c02012{bottom:405.540000px;}
.y43_c02012{bottom:413.820000px;}
.y40_c02012{bottom:433.980000px;}
.y41_c02012{bottom:442.080000px;}
.y3a_c02012{bottom:462.240000px;}
.y3e_c02012{bottom:470.520000px;}
.y38_c02012{bottom:490.680000px;}
.y39_c02012{bottom:510.840000px;}
.y37_c02012{bottom:554.760000px;}
.y36_c02012{bottom:570.060000px;}
.y35_c02012{bottom:591.480000px;}
.y34_c02012{bottom:616.863060px;}
.y33_c02012{bottom:630.720000px;}
.y2e_c02012{bottom:642.240000px;}
.y32_c02012{bottom:657.360000px;}
.y28_c02012{bottom:677.520000px;}
.y2d_c02012{bottom:692.460000px;}
.y26_c02012{bottom:712.800000px;}
.y25_c02012{bottom:740.520000px;}
.y24_c02012{bottom:774.907020px;}
.y23_c02012{bottom:788.763960px;}
.y22_c02012{bottom:802.440000px;}
.y20_c02012{bottom:814.320000px;}
.y21_c02012{bottom:822.420000px;}
.y1e_c02012{bottom:842.580000px;}
.y1f_c02012{bottom:850.680000px;}
.y1c_c02012{bottom:871.020000px;}
.y1d_c02012{bottom:879.120000px;}
.y1a_c02012{bottom:899.280000px;}
.y1b_c02012{bottom:907.380000px;}
.y18_c02012{bottom:927.720000px;}
.y19_c02012{bottom:935.820000px;}
.y16_c02012{bottom:955.980000px;}
.y17_c02012{bottom:964.080000px;}
.y10_c02012{bottom:984.420000px;}
.y14_c02012{bottom:992.520000px;}
.yb_c02012{bottom:1012.680000px;}
.yf_c02012{bottom:1032.840000px;}
.ya_c02012{bottom:1076.760000px;}
.y9_c02012{bottom:1092.060000px;}
.y8_c02012{bottom:1112.760000px;}
.y7_c02012{bottom:1134.360000px;}
.y5_c02012{bottom:1161.000000px;}
.y1_c02012{bottom:1172.880000px;}
.y3_c02012{bottom:1175.760000px;}
.hf_c02012{height:24.120000px;}
.h14_c02012{height:24.300000px;}
.hb_c02012{height:27.540000px;}
.h13_c02012{height:27.720000px;}
.h10_c02012{height:34.378500px;}
.h15_c02012{height:34.380000px;}
.h11_c02012{height:34.560000px;}
.h2_c02012{height:36.180000px;}
.h16_c02012{height:41.398500px;}
.h8_c02012{height:47.344922px;}
.h5_c02012{height:48.616875px;}
.h4_c02012{height:54.421875px;}
.hc_c02012{height:60.226875px;}
.h12_c02012{height:60.298500px;}
.h9_c02012{height:60.300000px;}
.h6_c02012{height:70.664062px;}
.h3_c02012{height:72.562500px;}
.hd_c02012{height:82.676953px;}
.ha_c02012{height:84.898125px;}
.he_c02012{height:93.983203px;}
.h7_c02012{height:96.508125px;}
.h0_c02012{height:1262.880000px;}
.h1_c02012{height:1263.000000px;}
.w3_c02012{width:41.760000px;}
.w6_c02012{width:52.380000px;}
.w5_c02012{width:190.620000px;}
.w4_c02012{width:445.681500px;}
.w2_c02012{width:498.780000px;}
.w7_c02012{width:498.960000px;}
.w0_c02012{width:892.980000px;}
.w1_c02012{width:893.250000px;}
.x0_c02012{left:0.000000px;}
.x8_c02012{left:7.560000px;}
.xb_c02012{left:9.720000px;}
.xe_c02012{left:33.300000px;}
.x10_c02012{left:79.740000px;}
.x7_c02012{left:106.740000px;}
.x12_c02012{left:126.180000px;}
.x5_c02012{left:127.620000px;}
.x6_c02012{left:148.860000px;}
.x2_c02012{left:172.620000px;}
.x1_c02012{left:223.740000px;}
.x3_c02012{left:231.300000px;}
.x4_c02012{left:484.200000px;}
.x9_c02012{left:595.800000px;}
.xd_c02012{left:621.540000px;}
.x14_c02012{left:648.900000px;}
.xf_c02012{left:667.980000px;}
.x15_c02012{left:674.640000px;}
.x11_c02012{left:714.420000px;}
.x16_c02012{left:721.080000px;}
.x13_c02012{left:760.860000px;}
.x17_c02012{left:767.520000px;}
.xa_c02012{left:787.140000px;}
.xc_c02012{left:808.020000px;}
.x18_c02012{left:813.960000px;}
@media print{
.v3_c02012{vertical-align:-69.784960pt;}
.v2_c02012{vertical-align:-68.504960pt;}
.v1_c02012{vertical-align:-40.320000pt;}
.v0_c02012{vertical-align:0.000000pt;}
.ls19_c02012{letter-spacing:-0.896000pt;}
.lsf_c02012{letter-spacing:-0.704000pt;}
.ls12_c02012{letter-spacing:-0.673920pt;}
.ls11_c02012{letter-spacing:-0.299520pt;}
.ls1a_c02012{letter-spacing:-0.294400pt;}
.lsd_c02012{letter-spacing:-0.256000pt;}
.lsb_c02012{letter-spacing:-0.192000pt;}
.ls18_c02012{letter-spacing:-0.128000pt;}
.ls13_c02012{letter-spacing:-0.117760pt;}
.lsa_c02012{letter-spacing:-0.096000pt;}
.ls9_c02012{letter-spacing:0.000000pt;}
.lse_c02012{letter-spacing:0.064000pt;}
.ls15_c02012{letter-spacing:0.117760pt;}
.ls10_c02012{letter-spacing:0.128000pt;}
.ls0_c02012{letter-spacing:0.144000pt;}
.ls4_c02012{letter-spacing:0.212480pt;}
.ls16_c02012{letter-spacing:0.256000pt;}
.ls14_c02012{letter-spacing:0.294400pt;}
.ls17_c02012{letter-spacing:0.299520pt;}
.lsc_c02012{letter-spacing:0.340480pt;}
.ls5_c02012{letter-spacing:0.427520pt;}
.ls2_c02012{letter-spacing:0.640000pt;}
.ls3_c02012{letter-spacing:5.120000pt;}
.ls8_c02012{letter-spacing:9.600000pt;}
.ls7_c02012{letter-spacing:10.240000pt;}
.ls6_c02012{letter-spacing:64.800000pt;}
.ls1_c02012{letter-spacing:2396.160000pt;}
.ws1_c02012{word-spacing:-21.280000pt;}
.ws9_c02012{word-spacing:-19.019520pt;}
.ws5_c02012{word-spacing:-18.420480pt;}
.ws6_c02012{word-spacing:-18.046080pt;}
.wsa_c02012{word-spacing:-16.256000pt;}
.ws3_c02012{word-spacing:-16.064000pt;}
.ws2_c02012{word-spacing:-15.744000pt;}
.ws4_c02012{word-spacing:-15.296000pt;}
.wsb_c02012{word-spacing:-15.104000pt;}
.ws8_c02012{word-spacing:-14.602240pt;}
.wsc_c02012{word-spacing:-14.425600pt;}
.ws0_c02012{word-spacing:-11.904000pt;}
.ws7_c02012{word-spacing:-11.808000pt;}
.ws17_c02012{word-spacing:-0.942080pt;}
.ws18_c02012{word-spacing:-0.765440pt;}
.ws1f_c02012{word-spacing:-0.449280pt;}
.wsf_c02012{word-spacing:-0.340480pt;}
.ws1a_c02012{word-spacing:-0.256000pt;}
.ws16_c02012{word-spacing:-0.170240pt;}
.ws15_c02012{word-spacing:-0.149760pt;}
.ws13_c02012{word-spacing:-0.128000pt;}
.ws19_c02012{word-spacing:-0.117760pt;}
.wsd_c02012{word-spacing:0.000000pt;}
.ws14_c02012{word-spacing:0.117760pt;}
.ws10_c02012{word-spacing:0.256000pt;}
.wse_c02012{word-spacing:0.336000pt;}
.ws1e_c02012{word-spacing:0.512000pt;}
.ws12_c02012{word-spacing:5.120000pt;}
.ws11_c02012{word-spacing:5.376000pt;}
.ws1b_c02012{word-spacing:9.600000pt;}
.ws1d_c02012{word-spacing:9.728000pt;}
.ws1c_c02012{word-spacing:9.856000pt;}
._1_c02012{margin-left:-1.672960pt;}
._0_c02012{width:0.912000pt;}
._4_c02012{width:2.577920pt;}
._2_c02012{width:5.136000pt;}
._3_c02012{width:10.048000pt;}
.fs2_c02012{font-size:42.880000pt;}
.fs1_c02012{font-size:48.000000pt;}
.fs6_c02012{font-size:53.120000pt;}
.fs5_c02012{font-size:58.880000pt;}
.fs0_c02012{font-size:64.000000pt;}
.fs4_c02012{font-size:74.880000pt;}
.fs3_c02012{font-size:85.120000pt;}
.y0_c02012{bottom:0.000000pt;}
.y4_c02012{bottom:2.560000pt;}
.y53_c02012{bottom:2.880000pt;}
.y2b_c02012{bottom:3.040000pt;}
.y57_c02012{bottom:3.680000pt;}
.y27_c02012{bottom:4.160000pt;}
.y51_c02012{bottom:4.320000pt;}
.y15_c02012{bottom:5.120000pt;}
.y3f_c02012{bottom:5.280000pt;}
.y13_c02012{bottom:7.200000pt;}
.y3d_c02012{bottom:7.360000pt;}
.y11_c02012{bottom:9.760000pt;}
.y3b_c02012{bottom:9.920000pt;}
.y12_c02012{bottom:10.880000pt;}
.y3c_c02012{bottom:11.040000pt;}
.y2c_c02012{bottom:13.280000pt;}
.y31_c02012{bottom:13.440000pt;}
.y29_c02012{bottom:15.840000pt;}
.y2f_c02012{bottom:16.000000pt;}
.y2_c02012{bottom:17.440000pt;}
.y2a_c02012{bottom:18.240000pt;}
.y30_c02012{bottom:18.400000pt;}
.y58_c02012{bottom:19.520000pt;}
.y56_c02012{bottom:22.080000pt;}
.yd_c02012{bottom:33.760000pt;}
.yc_c02012{bottom:36.320000pt;}
.ye_c02012{bottom:38.880000pt;}
.y6_c02012{bottom:51.200000pt;}
.y55_c02012{bottom:100.640000pt;}
.y59_c02012{bottom:120.160000pt;}
.y52_c02012{bottom:138.240000pt;}
.y54_c02012{bottom:151.520000pt;}
.y50_c02012{bottom:169.440000pt;}
.y4f_c02012{bottom:194.080000pt;}
.y4e_c02012{bottom:224.966240pt;}
.y4d_c02012{bottom:237.283520pt;}
.y4c_c02012{bottom:249.440000pt;}
.y4a_c02012{bottom:259.680000pt;}
.y4b_c02012{bottom:267.040000pt;}
.y48_c02012{bottom:284.960000pt;}
.y49_c02012{bottom:292.160000pt;}
.y46_c02012{bottom:310.080000pt;}
.y47_c02012{bottom:317.440000pt;}
.y44_c02012{bottom:335.360000pt;}
.y45_c02012{bottom:342.560000pt;}
.y42_c02012{bottom:360.480000pt;}
.y43_c02012{bottom:367.840000pt;}
.y40_c02012{bottom:385.760000pt;}
.y41_c02012{bottom:392.960000pt;}
.y3a_c02012{bottom:410.880000pt;}
.y3e_c02012{bottom:418.240000pt;}
.y38_c02012{bottom:436.160000pt;}
.y39_c02012{bottom:454.080000pt;}
.y37_c02012{bottom:493.120000pt;}
.y36_c02012{bottom:506.720000pt;}
.y35_c02012{bottom:525.760000pt;}
.y34_c02012{bottom:548.322720pt;}
.y33_c02012{bottom:560.640000pt;}
.y2e_c02012{bottom:570.880000pt;}
.y32_c02012{bottom:584.320000pt;}
.y28_c02012{bottom:602.240000pt;}
.y2d_c02012{bottom:615.520000pt;}
.y26_c02012{bottom:633.600000pt;}
.y25_c02012{bottom:658.240000pt;}
.y24_c02012{bottom:688.806240pt;}
.y23_c02012{bottom:701.123520pt;}
.y22_c02012{bottom:713.280000pt;}
.y20_c02012{bottom:723.840000pt;}
.y21_c02012{bottom:731.040000pt;}
.y1e_c02012{bottom:748.960000pt;}
.y1f_c02012{bottom:756.160000pt;}
.y1c_c02012{bottom:774.240000pt;}
.y1d_c02012{bottom:781.440000pt;}
.y1a_c02012{bottom:799.360000pt;}
.y1b_c02012{bottom:806.560000pt;}
.y18_c02012{bottom:824.640000pt;}
.y19_c02012{bottom:831.840000pt;}
.y16_c02012{bottom:849.760000pt;}
.y17_c02012{bottom:856.960000pt;}
.y10_c02012{bottom:875.040000pt;}
.y14_c02012{bottom:882.240000pt;}
.yb_c02012{bottom:900.160000pt;}
.yf_c02012{bottom:918.080000pt;}
.ya_c02012{bottom:957.120000pt;}
.y9_c02012{bottom:970.720000pt;}
.y8_c02012{bottom:989.120000pt;}
.y7_c02012{bottom:1008.320000pt;}
.y5_c02012{bottom:1032.000000pt;}
.y1_c02012{bottom:1042.560000pt;}
.y3_c02012{bottom:1045.120000pt;}
.hf_c02012{height:21.440000pt;}
.h14_c02012{height:21.600000pt;}
.hb_c02012{height:24.480000pt;}
.h13_c02012{height:24.640000pt;}
.h10_c02012{height:30.558667pt;}
.h15_c02012{height:30.560000pt;}
.h11_c02012{height:30.720000pt;}
.h2_c02012{height:32.160000pt;}
.h16_c02012{height:36.798667pt;}
.h8_c02012{height:42.084375pt;}
.h5_c02012{height:43.215000pt;}
.h4_c02012{height:48.375000pt;}
.hc_c02012{height:53.535000pt;}
.h12_c02012{height:53.598667pt;}
.h9_c02012{height:53.600000pt;}
.h6_c02012{height:62.812500pt;}
.h3_c02012{height:64.500000pt;}
.hd_c02012{height:73.490625pt;}
.ha_c02012{height:75.465000pt;}
.he_c02012{height:83.540625pt;}
.h7_c02012{height:85.785000pt;}
.h0_c02012{height:1122.560000pt;}
.h1_c02012{height:1122.666667pt;}
.w3_c02012{width:37.120000pt;}
.w6_c02012{width:46.560000pt;}
.w5_c02012{width:169.440000pt;}
.w4_c02012{width:396.161333pt;}
.w2_c02012{width:443.360000pt;}
.w7_c02012{width:443.520000pt;}
.w0_c02012{width:793.760000pt;}
.w1_c02012{width:794.000000pt;}
.x0_c02012{left:0.000000pt;}
.x8_c02012{left:6.720000pt;}
.xb_c02012{left:8.640000pt;}
.xe_c02012{left:29.600000pt;}
.x10_c02012{left:70.880000pt;}
.x7_c02012{left:94.880000pt;}
.x12_c02012{left:112.160000pt;}
.x5_c02012{left:113.440000pt;}
.x6_c02012{left:132.320000pt;}
.x2_c02012{left:153.440000pt;}
.x1_c02012{left:198.880000pt;}
.x3_c02012{left:205.600000pt;}
.x4_c02012{left:430.400000pt;}
.x9_c02012{left:529.600000pt;}
.xd_c02012{left:552.480000pt;}
.x14_c02012{left:576.800000pt;}
.xf_c02012{left:593.760000pt;}
.x15_c02012{left:599.680000pt;}
.x11_c02012{left:635.040000pt;}
.x16_c02012{left:640.960000pt;}
.x13_c02012{left:676.320000pt;}
.x17_c02012{left:682.240000pt;}
.xa_c02012{left:699.680000pt;}
.xc_c02012{left:718.240000pt;}
.x18_c02012{left:723.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_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_9d0f7417c22bedb64866922c.woff2')format("woff");}.ff1_c02013{font-family:ff1_c02013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02013;src:url('chunks/assets/font_4cc1aa06ed17792e1f6de958.woff2')format("woff");}.ff2_c02013{font-family:ff2_c02013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02013;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02013{font-family:ff3_c02013;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;}
.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);}
.v1_c02013{vertical-align:-45.360000px;}
.v0_c02013{vertical-align:0.000000px;}
.v2_c02013{vertical-align:74.880000px;}
.ls12_c02013{letter-spacing:-0.673920px;}
.ls11_c02013{letter-spacing:-0.336960px;}
.ls17_c02013{letter-spacing:-0.331200px;}
.ls10_c02013{letter-spacing:-0.288000px;}
.lse_c02013{letter-spacing:-0.216000px;}
.ls1a_c02013{letter-spacing:-0.132480px;}
.ls16_c02013{letter-spacing:-0.119520px;}
.lsd_c02013{letter-spacing:-0.108000px;}
.ls19_c02013{letter-spacing:-0.059760px;}
.lsc_c02013{letter-spacing:0.000000px;}
.ls4_c02013{letter-spacing:0.079200px;}
.ls1c_c02013{letter-spacing:0.084240px;}
.ls14_c02013{letter-spacing:0.119520px;}
.ls13_c02013{letter-spacing:0.132480px;}
.ls18_c02013{letter-spacing:0.144000px;}
.ls0_c02013{letter-spacing:0.162000px;}
.ls1b_c02013{letter-spacing:0.216000px;}
.lsb_c02013{letter-spacing:0.239040px;}
.ls6_c02013{letter-spacing:0.288000px;}
.lsa_c02013{letter-spacing:0.336960px;}
.ls15_c02013{letter-spacing:0.358560px;}
.ls7_c02013{letter-spacing:0.360000px;}
.lsf_c02013{letter-spacing:0.383040px;}
.ls2_c02013{letter-spacing:7.200000px;}
.ls8_c02013{letter-spacing:10.080000px;}
.ls9_c02013{letter-spacing:18.000000px;}
.ls3_c02013{letter-spacing:26.640000px;}
.ls5_c02013{letter-spacing:34.560000px;}
.ls1_c02013{letter-spacing:2695.680000px;}
.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;}
}
.ws9_c02013{word-spacing:-24.323040px;}
.ws1_c02013{word-spacing:-23.940000px;}
.ws5_c02013{word-spacing:-21.396960px;}
.ws4_c02013{word-spacing:-20.723040px;}
.ws6_c02013{word-spacing:-20.386080px;}
.ws3_c02013{word-spacing:-18.000000px;}
.ws2_c02013{word-spacing:-17.712000px;}
.wsa_c02013{word-spacing:-16.692480px;}
.ws7_c02013{word-spacing:-16.560000px;}
.wsb_c02013{word-spacing:-16.427520px;}
.ws8_c02013{word-spacing:-16.228800px;}
.ws0_c02013{word-spacing:-13.392000px;}
.ws24_c02013{word-spacing:-1.263600px;}
.ws17_c02013{word-spacing:-0.896400px;}
.ws27_c02013{word-spacing:-0.596160px;}
.ws23_c02013{word-spacing:-0.505440px;}
.ws18_c02013{word-spacing:-0.418320px;}
.wse_c02013{word-spacing:-0.383040px;}
.ws2b_c02013{word-spacing:-0.252720px;}
.ws2a_c02013{word-spacing:-0.216000px;}
.ws16_c02013{word-spacing:-0.179280px;}
.ws15_c02013{word-spacing:-0.168480px;}
.ws19_c02013{word-spacing:-0.144000px;}
.ws13_c02013{word-spacing:-0.132480px;}
.wsc_c02013{word-spacing:0.000000px;}
.ws14_c02013{word-spacing:0.059760px;}
.ws26_c02013{word-spacing:0.132480px;}
.ws25_c02013{word-spacing:0.168480px;}
.ws1f_c02013{word-spacing:0.216000px;}
.ws1c_c02013{word-spacing:0.239040px;}
.ws10_c02013{word-spacing:0.288000px;}
.wsd_c02013{word-spacing:0.378000px;}
.ws1b_c02013{word-spacing:0.505440px;}
.wsf_c02013{word-spacing:7.488000px;}
.ws28_c02013{word-spacing:7.920000px;}
.ws29_c02013{word-spacing:8.208000px;}
.ws1e_c02013{word-spacing:9.936000px;}
.ws1d_c02013{word-spacing:10.080000px;}
.ws20_c02013{word-spacing:10.368000px;}
.ws21_c02013{word-spacing:18.000000px;}
.ws22_c02013{word-spacing:18.288000px;}
.ws12_c02013{word-spacing:26.640000px;}
.ws11_c02013{word-spacing:26.928000px;}
.ws1a_c02013{word-spacing:34.848000px;}
._3_c02013{margin-left:-1.728000px;}
._0_c02013{width:1.026000px;}
._7_c02013{width:2.067840px;}
._1_c02013{width:6.973920px;}
._2_c02013{width:8.056080px;}
._6_c02013{width:10.033920px;}
._5_c02013{width:34.621920px;}
._4_c02013{width:63.360000px;}
.fc1_c02013{color:rgb(140,140,140);}
.fc0_c02013{color:rgb(0,0,0);}
.fs5_c02013{font-size:36.000000px;}
.fs2_c02013{font-size:48.240000px;}
.fs1_c02013{font-size:54.000000px;}
.fs8_c02013{font-size:59.760000px;}
.fs6_c02013{font-size:66.240000px;}
.fs0_c02013{font-size:72.000000px;}
.fs4_c02013{font-size:84.240000px;}
.fs3_c02013{font-size:95.760000px;}
.fs7_c02013{font-size:108.000000px;}
.y0_c02013{bottom:0.000000px;}
.y58_c02013{bottom:1.980000px;}
.y2e_c02013{bottom:2.160000px;}
.y4_c02013{bottom:2.880000px;}
.yc_c02013{bottom:4.680000px;}
.y2a_c02013{bottom:4.860000px;}
.yd_c02013{bottom:7.560000px;}
.y2f_c02013{bottom:9.900000px;}
.y2c_c02013{bottom:12.780000px;}
.y2d_c02013{bottom:14.040000px;}
.y1a_c02013{bottom:14.580000px;}
.y13_c02013{bottom:14.760000px;}
.y2_c02013{bottom:19.620000px;}
.y4a_c02013{bottom:28.980000px;}
.y6_c02013{bottom:57.600000px;}
.y5a_c02013{bottom:112.860000px;}
.y5b_c02013{bottom:122.760000px;}
.y57_c02013{bottom:142.920000px;}
.y59_c02013{bottom:152.820000px;}
.y55_c02013{bottom:172.980000px;}
.y56_c02013{bottom:182.880000px;}
.y53_c02013{bottom:203.040000px;}
.y54_c02013{bottom:212.940000px;}
.y51_c02013{bottom:233.100000px;}
.y52_c02013{bottom:243.000000px;}
.y4e_c02013{bottom:263.160000px;}
.y4f_c02013{bottom:265.320000px;}
.y50_c02013{bottom:273.060000px;}
.y4b_c02013{bottom:293.220000px;}
.y4c_c02013{bottom:295.380000px;}
.y4d_c02013{bottom:303.120000px;}
.y49_c02013{bottom:323.280000px;}
.y48_c02013{bottom:375.480000px;}
.y47_c02013{bottom:390.780000px;}
.y46_c02013{bottom:412.200000px;}
.y45_c02013{bottom:437.406120px;}
.y44_c02013{bottom:451.263060px;}
.y43_c02013{bottom:465.120000px;}
.y40_c02013{bottom:476.640000px;}
.y41_c02013{bottom:478.620000px;}
.y42_c02013{bottom:486.540000px;}
.y3d_c02013{bottom:506.700000px;}
.y3e_c02013{bottom:508.860000px;}
.y3f_c02013{bottom:516.600000px;}
.y3a_c02013{bottom:536.760000px;}
.y3b_c02013{bottom:538.920000px;}
.y3c_c02013{bottom:546.660000px;}
.y37_c02013{bottom:566.820000px;}
.y38_c02013{bottom:568.980000px;}
.y39_c02013{bottom:576.720000px;}
.y34_c02013{bottom:596.880000px;}
.y35_c02013{bottom:599.040000px;}
.y36_c02013{bottom:606.780000px;}
.y31_c02013{bottom:626.940000px;}
.y32_c02013{bottom:629.100000px;}
.y33_c02013{bottom:636.840000px;}
.y2b_c02013{bottom:657.000000px;}
.y30_c02013{bottom:666.900000px;}
.y29_c02013{bottom:687.060000px;}
.y28_c02013{bottom:714.960000px;}
.y27_c02013{bottom:730.260000px;}
.y26_c02013{bottom:750.960000px;}
.y25_c02013{bottom:773.280000px;}
.y24_c02013{bottom:801.187020px;}
.y23_c02013{bottom:814.863060px;}
.y22_c02013{bottom:828.720000px;}
.y21_c02013{bottom:845.640000px;}
.y20_c02013{bottom:873.720000px;}
.y1f_c02013{bottom:889.020000px;}
.y1e_c02013{bottom:910.440000px;}
.y1d_c02013{bottom:935.643060px;}
.y1c_c02013{bottom:949.500000px;}
.y19_c02013{bottom:961.200000px;}
.y18_c02013{bottom:963.180000px;}
.y16_c02013{bottom:973.980000px;}
.y17_c02013{bottom:975.240000px;}
.y1b_c02013{bottom:975.780000px;}
.y15_c02013{bottom:992.520000px;}
.y12_c02013{bottom:1001.520000px;}
.y11_c02013{bottom:1003.680000px;}
.yf_c02013{bottom:1014.300000px;}
.y10_c02013{bottom:1015.560000px;}
.y14_c02013{bottom:1016.280000px;}
.ye_c02013{bottom:1033.020000px;}
.yb_c02013{bottom:1042.020000px;}
.ya_c02013{bottom:1071.360000px;}
.y9_c02013{bottom:1092.060000px;}
.y8_c02013{bottom:1112.760000px;}
.y7_c02013{bottom:1134.360000px;}
.y5_c02013{bottom:1161.000000px;}
.y1_c02013{bottom:1172.880000px;}
.y3_c02013{bottom:1175.760000px;}
.h8_c02013{height:24.118500px;}
.h12_c02013{height:24.300000px;}
.h13_c02013{height:29.340000px;}
.h16_c02013{height:29.341500px;}
.h2_c02013{height:36.180000px;}
.ha_c02013{height:36.281250px;}
.hf_c02013{height:39.600000px;}
.hc_c02013{height:39.778500px;}
.h10_c02013{height:47.344922px;}
.h17_c02013{height:48.418500px;}
.h5_c02013{height:48.616875px;}
.h4_c02013{height:54.421875px;}
.h14_c02013{height:60.226875px;}
.h6_c02013{height:70.664062px;}
.hd_c02013{height:71.982422px;}
.h3_c02013{height:72.562500px;}
.h15_c02013{height:82.676953px;}
.h9_c02013{height:84.898125px;}
.h7_c02013{height:96.508125px;}
.h11_c02013{height:108.843750px;}
.he_c02013{height:110.441250px;}
.hb_c02013{height:111.161250px;}
.h0_c02013{height:1262.880000px;}
.h1_c02013{height:1263.000000px;}
.w3_c02013{width:37.620000px;}
.w6_c02013{width:41.760000px;}
.w4_c02013{width:157.680000px;}
.w8_c02013{width:190.620000px;}
.w2_c02013{width:498.780000px;}
.w7_c02013{width:498.960000px;}
.w5_c02013{width:536.220000px;}
.w0_c02013{width:892.980000px;}
.w1_c02013{width:893.250000px;}
.x0_c02013{left:0.000000px;}
.x8_c02013{left:7.740000px;}
.x17_c02013{left:32.760000px;}
.x7_c02013{left:53.460000px;}
.xb_c02013{left:61.200000px;}
.x1a_c02013{left:79.740000px;}
.x6_c02013{left:85.140000px;}
.x9_c02013{left:91.800000px;}
.x14_c02013{left:95.580000px;}
.xc_c02013{left:99.540000px;}
.x1e_c02013{left:103.680000px;}
.x1c_c02013{left:126.180000px;}
.x5_c02013{left:127.620000px;}
.x15_c02013{left:159.660000px;}
.x2_c02013{left:172.620000px;}
.xe_c02013{left:183.600000px;}
.x1_c02013{left:223.740000px;}
.x3_c02013{left:231.300000px;}
.xa_c02013{left:250.200000px;}
.x10_c02013{left:269.280000px;}
.xd_c02013{left:274.320000px;}
.x12_c02013{left:396.000000px;}
.xf_c02013{left:450.180000px;}
.x4_c02013{left:484.200000px;}
.x11_c02013{left:535.860000px;}
.x16_c02013{left:595.800000px;}
.x18_c02013{left:621.540000px;}
.x13_c02013{left:662.580000px;}
.x19_c02013{left:667.980000px;}
.x1b_c02013{left:714.420000px;}
.x1d_c02013{left:760.860000px;}
@media print{
.v1_c02013{vertical-align:-40.320000pt;}
.v0_c02013{vertical-align:0.000000pt;}
.v2_c02013{vertical-align:66.560000pt;}
.ls12_c02013{letter-spacing:-0.599040pt;}
.ls11_c02013{letter-spacing:-0.299520pt;}
.ls17_c02013{letter-spacing:-0.294400pt;}
.ls10_c02013{letter-spacing:-0.256000pt;}
.lse_c02013{letter-spacing:-0.192000pt;}
.ls1a_c02013{letter-spacing:-0.117760pt;}
.ls16_c02013{letter-spacing:-0.106240pt;}
.lsd_c02013{letter-spacing:-0.096000pt;}
.ls19_c02013{letter-spacing:-0.053120pt;}
.lsc_c02013{letter-spacing:0.000000pt;}
.ls4_c02013{letter-spacing:0.070400pt;}
.ls1c_c02013{letter-spacing:0.074880pt;}
.ls14_c02013{letter-spacing:0.106240pt;}
.ls13_c02013{letter-spacing:0.117760pt;}
.ls18_c02013{letter-spacing:0.128000pt;}
.ls0_c02013{letter-spacing:0.144000pt;}
.ls1b_c02013{letter-spacing:0.192000pt;}
.lsb_c02013{letter-spacing:0.212480pt;}
.ls6_c02013{letter-spacing:0.256000pt;}
.lsa_c02013{letter-spacing:0.299520pt;}
.ls15_c02013{letter-spacing:0.318720pt;}
.ls7_c02013{letter-spacing:0.320000pt;}
.lsf_c02013{letter-spacing:0.340480pt;}
.ls2_c02013{letter-spacing:6.400000pt;}
.ls8_c02013{letter-spacing:8.960000pt;}
.ls9_c02013{letter-spacing:16.000000pt;}
.ls3_c02013{letter-spacing:23.680000pt;}
.ls5_c02013{letter-spacing:30.720000pt;}
.ls1_c02013{letter-spacing:2396.160000pt;}
.ws9_c02013{word-spacing:-21.620480pt;}
.ws1_c02013{word-spacing:-21.280000pt;}
.ws5_c02013{word-spacing:-19.019520pt;}
.ws4_c02013{word-spacing:-18.420480pt;}
.ws6_c02013{word-spacing:-18.120960pt;}
.ws3_c02013{word-spacing:-16.000000pt;}
.ws2_c02013{word-spacing:-15.744000pt;}
.wsa_c02013{word-spacing:-14.837760pt;}
.ws7_c02013{word-spacing:-14.720000pt;}
.wsb_c02013{word-spacing:-14.602240pt;}
.ws8_c02013{word-spacing:-14.425600pt;}
.ws0_c02013{word-spacing:-11.904000pt;}
.ws24_c02013{word-spacing:-1.123200pt;}
.ws17_c02013{word-spacing:-0.796800pt;}
.ws27_c02013{word-spacing:-0.529920pt;}
.ws23_c02013{word-spacing:-0.449280pt;}
.ws18_c02013{word-spacing:-0.371840pt;}
.wse_c02013{word-spacing:-0.340480pt;}
.ws2b_c02013{word-spacing:-0.224640pt;}
.ws2a_c02013{word-spacing:-0.192000pt;}
.ws16_c02013{word-spacing:-0.159360pt;}
.ws15_c02013{word-spacing:-0.149760pt;}
.ws19_c02013{word-spacing:-0.128000pt;}
.ws13_c02013{word-spacing:-0.117760pt;}
.wsc_c02013{word-spacing:0.000000pt;}
.ws14_c02013{word-spacing:0.053120pt;}
.ws26_c02013{word-spacing:0.117760pt;}
.ws25_c02013{word-spacing:0.149760pt;}
.ws1f_c02013{word-spacing:0.192000pt;}
.ws1c_c02013{word-spacing:0.212480pt;}
.ws10_c02013{word-spacing:0.256000pt;}
.wsd_c02013{word-spacing:0.336000pt;}
.ws1b_c02013{word-spacing:0.449280pt;}
.wsf_c02013{word-spacing:6.656000pt;}
.ws28_c02013{word-spacing:7.040000pt;}
.ws29_c02013{word-spacing:7.296000pt;}
.ws1e_c02013{word-spacing:8.832000pt;}
.ws1d_c02013{word-spacing:8.960000pt;}
.ws20_c02013{word-spacing:9.216000pt;}
.ws21_c02013{word-spacing:16.000000pt;}
.ws22_c02013{word-spacing:16.256000pt;}
.ws12_c02013{word-spacing:23.680000pt;}
.ws11_c02013{word-spacing:23.936000pt;}
.ws1a_c02013{word-spacing:30.976000pt;}
._3_c02013{margin-left:-1.536000pt;}
._0_c02013{width:0.912000pt;}
._7_c02013{width:1.838080pt;}
._1_c02013{width:6.199040pt;}
._2_c02013{width:7.160960pt;}
._6_c02013{width:8.919040pt;}
._5_c02013{width:30.775040pt;}
._4_c02013{width:56.320000pt;}
.fs5_c02013{font-size:32.000000pt;}
.fs2_c02013{font-size:42.880000pt;}
.fs1_c02013{font-size:48.000000pt;}
.fs8_c02013{font-size:53.120000pt;}
.fs6_c02013{font-size:58.880000pt;}
.fs0_c02013{font-size:64.000000pt;}
.fs4_c02013{font-size:74.880000pt;}
.fs3_c02013{font-size:85.120000pt;}
.fs7_c02013{font-size:96.000000pt;}
.y0_c02013{bottom:0.000000pt;}
.y58_c02013{bottom:1.760000pt;}
.y2e_c02013{bottom:1.920000pt;}
.y4_c02013{bottom:2.560000pt;}
.yc_c02013{bottom:4.160000pt;}
.y2a_c02013{bottom:4.320000pt;}
.yd_c02013{bottom:6.720000pt;}
.y2f_c02013{bottom:8.800000pt;}
.y2c_c02013{bottom:11.360000pt;}
.y2d_c02013{bottom:12.480000pt;}
.y1a_c02013{bottom:12.960000pt;}
.y13_c02013{bottom:13.120000pt;}
.y2_c02013{bottom:17.440000pt;}
.y4a_c02013{bottom:25.760000pt;}
.y6_c02013{bottom:51.200000pt;}
.y5a_c02013{bottom:100.320000pt;}
.y5b_c02013{bottom:109.120000pt;}
.y57_c02013{bottom:127.040000pt;}
.y59_c02013{bottom:135.840000pt;}
.y55_c02013{bottom:153.760000pt;}
.y56_c02013{bottom:162.560000pt;}
.y53_c02013{bottom:180.480000pt;}
.y54_c02013{bottom:189.280000pt;}
.y51_c02013{bottom:207.200000pt;}
.y52_c02013{bottom:216.000000pt;}
.y4e_c02013{bottom:233.920000pt;}
.y4f_c02013{bottom:235.840000pt;}
.y50_c02013{bottom:242.720000pt;}
.y4b_c02013{bottom:260.640000pt;}
.y4c_c02013{bottom:262.560000pt;}
.y4d_c02013{bottom:269.440000pt;}
.y49_c02013{bottom:287.360000pt;}
.y48_c02013{bottom:333.760000pt;}
.y47_c02013{bottom:347.360000pt;}
.y46_c02013{bottom:366.400000pt;}
.y45_c02013{bottom:388.805440pt;}
.y44_c02013{bottom:401.122720pt;}
.y43_c02013{bottom:413.440000pt;}
.y40_c02013{bottom:423.680000pt;}
.y41_c02013{bottom:425.440000pt;}
.y42_c02013{bottom:432.480000pt;}
.y3d_c02013{bottom:450.400000pt;}
.y3e_c02013{bottom:452.320000pt;}
.y3f_c02013{bottom:459.200000pt;}
.y3a_c02013{bottom:477.120000pt;}
.y3b_c02013{bottom:479.040000pt;}
.y3c_c02013{bottom:485.920000pt;}
.y37_c02013{bottom:503.840000pt;}
.y38_c02013{bottom:505.760000pt;}
.y39_c02013{bottom:512.640000pt;}
.y34_c02013{bottom:530.560000pt;}
.y35_c02013{bottom:532.480000pt;}
.y36_c02013{bottom:539.360000pt;}
.y31_c02013{bottom:557.280000pt;}
.y32_c02013{bottom:559.200000pt;}
.y33_c02013{bottom:566.080000pt;}
.y2b_c02013{bottom:584.000000pt;}
.y30_c02013{bottom:592.800000pt;}
.y29_c02013{bottom:610.720000pt;}
.y28_c02013{bottom:635.520000pt;}
.y27_c02013{bottom:649.120000pt;}
.y26_c02013{bottom:667.520000pt;}
.y25_c02013{bottom:687.360000pt;}
.y24_c02013{bottom:712.166240pt;}
.y23_c02013{bottom:724.322720pt;}
.y22_c02013{bottom:736.640000pt;}
.y21_c02013{bottom:751.680000pt;}
.y20_c02013{bottom:776.640000pt;}
.y1f_c02013{bottom:790.240000pt;}
.y1e_c02013{bottom:809.280000pt;}
.y1d_c02013{bottom:831.682720pt;}
.y1c_c02013{bottom:844.000000pt;}
.y19_c02013{bottom:854.400000pt;}
.y18_c02013{bottom:856.160000pt;}
.y16_c02013{bottom:865.760000pt;}
.y17_c02013{bottom:866.880000pt;}
.y1b_c02013{bottom:867.360000pt;}
.y15_c02013{bottom:882.240000pt;}
.y12_c02013{bottom:890.240000pt;}
.y11_c02013{bottom:892.160000pt;}
.yf_c02013{bottom:901.600000pt;}
.y10_c02013{bottom:902.720000pt;}
.y14_c02013{bottom:903.360000pt;}
.ye_c02013{bottom:918.240000pt;}
.yb_c02013{bottom:926.240000pt;}
.ya_c02013{bottom:952.320000pt;}
.y9_c02013{bottom:970.720000pt;}
.y8_c02013{bottom:989.120000pt;}
.y7_c02013{bottom:1008.320000pt;}
.y5_c02013{bottom:1032.000000pt;}
.y1_c02013{bottom:1042.560000pt;}
.y3_c02013{bottom:1045.120000pt;}
.h8_c02013{height:21.438667pt;}
.h12_c02013{height:21.600000pt;}
.h13_c02013{height:26.080000pt;}
.h16_c02013{height:26.081333pt;}
.h2_c02013{height:32.160000pt;}
.ha_c02013{height:32.250000pt;}
.hf_c02013{height:35.200000pt;}
.hc_c02013{height:35.358667pt;}
.h10_c02013{height:42.084375pt;}
.h17_c02013{height:43.038667pt;}
.h5_c02013{height:43.215000pt;}
.h4_c02013{height:48.375000pt;}
.h14_c02013{height:53.535000pt;}
.h6_c02013{height:62.812500pt;}
.hd_c02013{height:63.984375pt;}
.h3_c02013{height:64.500000pt;}
.h15_c02013{height:73.490625pt;}
.h9_c02013{height:75.465000pt;}
.h7_c02013{height:85.785000pt;}
.h11_c02013{height:96.750000pt;}
.he_c02013{height:98.170000pt;}
.hb_c02013{height:98.810000pt;}
.h0_c02013{height:1122.560000pt;}
.h1_c02013{height:1122.666667pt;}
.w3_c02013{width:33.440000pt;}
.w6_c02013{width:37.120000pt;}
.w4_c02013{width:140.160000pt;}
.w8_c02013{width:169.440000pt;}
.w2_c02013{width:443.360000pt;}
.w7_c02013{width:443.520000pt;}
.w5_c02013{width:476.640000pt;}
.w0_c02013{width:793.760000pt;}
.w1_c02013{width:794.000000pt;}
.x0_c02013{left:0.000000pt;}
.x8_c02013{left:6.880000pt;}
.x17_c02013{left:29.120000pt;}
.x7_c02013{left:47.520000pt;}
.xb_c02013{left:54.400000pt;}
.x1a_c02013{left:70.880000pt;}
.x6_c02013{left:75.680000pt;}
.x9_c02013{left:81.600000pt;}
.x14_c02013{left:84.960000pt;}
.xc_c02013{left:88.480000pt;}
.x1e_c02013{left:92.160000pt;}
.x1c_c02013{left:112.160000pt;}
.x5_c02013{left:113.440000pt;}
.x15_c02013{left:141.920000pt;}
.x2_c02013{left:153.440000pt;}
.xe_c02013{left:163.200000pt;}
.x1_c02013{left:198.880000pt;}
.x3_c02013{left:205.600000pt;}
.xa_c02013{left:222.400000pt;}
.x10_c02013{left:239.360000pt;}
.xd_c02013{left:243.840000pt;}
.x12_c02013{left:352.000000pt;}
.xf_c02013{left:400.160000pt;}
.x4_c02013{left:430.400000pt;}
.x11_c02013{left:476.320000pt;}
.x16_c02013{left:529.600000pt;}
.x18_c02013{left:552.480000pt;}
.x13_c02013{left:588.960000pt;}
.x19_c02013{left:593.760000pt;}
.x1b_c02013{left:635.040000pt;}
.x1d_c02013{left:676.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_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_b2fe48e387446dc2bcb21a2d.woff2')format("woff");}.ff1_c02014{font-family:ff1_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:ff2_c02014;src:url('chunks/assets/font_0fbffa61a495f50746cbbf2f.woff2')format("woff");}.ff2_c02014{font-family:ff2_c02014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02014;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02014{font-family:ff3_c02014;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_c02014;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02014{font-family:ff4_c02014;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02014;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff5_c02014{font-family:ff5_c02014;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;}
.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);}
.v3_c02014{vertical-align:-101.548080px;}
.v2_c02014{vertical-align:-77.772240px;}
.v1_c02014{vertical-align:-45.360000px;}
.v0_c02014{vertical-align:0.000000px;}
.ls1a_c02014{letter-spacing:-0.792000px;}
.ls15_c02014{letter-spacing:-0.758160px;}
.ls18_c02014{letter-spacing:-0.728640px;}
.ls10_c02014{letter-spacing:-0.648000px;}
.ls17_c02014{letter-spacing:-0.596160px;}
.ls12_c02014{letter-spacing:-0.336960px;}
.ls1b_c02014{letter-spacing:-0.331200px;}
.lsf_c02014{letter-spacing:-0.288000px;}
.ls1c_c02014{letter-spacing:-0.264960px;}
.lse_c02014{letter-spacing:-0.216000px;}
.ls11_c02014{letter-spacing:-0.144000px;}
.ls16_c02014{letter-spacing:-0.132480px;}
.lsd_c02014{letter-spacing:-0.108000px;}
.lsc_c02014{letter-spacing:0.000000px;}
.ls13_c02014{letter-spacing:0.084240px;}
.ls4_c02014{letter-spacing:0.132480px;}
.ls19_c02014{letter-spacing:0.144000px;}
.ls0_c02014{letter-spacing:0.162000px;}
.ls3_c02014{letter-spacing:0.239040px;}
.ls8_c02014{letter-spacing:0.288000px;}
.ls1d_c02014{letter-spacing:0.331200px;}
.ls14_c02014{letter-spacing:0.336960px;}
.ls9_c02014{letter-spacing:0.358560px;}
.lsa_c02014{letter-spacing:0.360000px;}
.ls6_c02014{letter-spacing:0.383040px;}
.ls7_c02014{letter-spacing:5.040000px;}
.ls2_c02014{letter-spacing:10.800000px;}
.lsb_c02014{letter-spacing:12.240000px;}
.ls5_c02014{letter-spacing:72.900000px;}
.ls1_c02014{letter-spacing:2695.680000px;}
.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;}
}
.wse_c02014{word-spacing:-108.000000px;}
.wsa_c02014{word-spacing:-24.323040px;}
.ws1_c02014{word-spacing:-23.940000px;}
.ws4_c02014{word-spacing:-21.144240px;}
.ws3_c02014{word-spacing:-20.723040px;}
.ws5_c02014{word-spacing:-20.301840px;}
.wsb_c02014{word-spacing:-18.288000px;}
.ws9_c02014{word-spacing:-18.144000px;}
.ws2_c02014{word-spacing:-17.712000px;}
.wsc_c02014{word-spacing:-17.208000px;}
.ws6_c02014{word-spacing:-16.692480px;}
.ws8_c02014{word-spacing:-16.560000px;}
.ws10_c02014{word-spacing:-16.427520px;}
.wsf_c02014{word-spacing:-16.295040px;}
.ws7_c02014{word-spacing:-15.963840px;}
.ws0_c02014{word-spacing:-13.392000px;}
.wsd_c02014{word-spacing:-13.284000px;}
.ws26_c02014{word-spacing:-0.861120px;}
.ws1b_c02014{word-spacing:-0.596160px;}
.ws18_c02014{word-spacing:-0.505440px;}
.ws13_c02014{word-spacing:-0.383040px;}
.ws25_c02014{word-spacing:-0.336960px;}
.ws17_c02014{word-spacing:-0.288000px;}
.ws1a_c02014{word-spacing:-0.168480px;}
.ws1c_c02014{word-spacing:-0.132480px;}
.ws11_c02014{word-spacing:0.000000px;}
.ws1e_c02014{word-spacing:0.132480px;}
.ws16_c02014{word-spacing:0.144000px;}
.ws24_c02014{word-spacing:0.168480px;}
.ws27_c02014{word-spacing:0.179280px;}
.ws21_c02014{word-spacing:0.216000px;}
.ws2d_c02014{word-spacing:0.264960px;}
.ws1f_c02014{word-spacing:0.288000px;}
.ws2a_c02014{word-spacing:0.331200px;}
.ws12_c02014{word-spacing:0.378000px;}
.ws19_c02014{word-spacing:0.589680px;}
.ws15_c02014{word-spacing:0.648000px;}
.ws1d_c02014{word-spacing:0.728640px;}
.ws29_c02014{word-spacing:4.305600px;}
.ws28_c02014{word-spacing:4.438080px;}
.ws23_c02014{word-spacing:4.752000px;}
.ws20_c02014{word-spacing:5.040000px;}
.ws22_c02014{word-spacing:5.328000px;}
.ws14_c02014{word-spacing:10.800000px;}
.ws31_c02014{word-spacing:11.923200px;}
.ws30_c02014{word-spacing:12.121920px;}
.ws2b_c02014{word-spacing:18.017280px;}
.ws2c_c02014{word-spacing:18.149760px;}
.ws2e_c02014{word-spacing:31.662720px;}
.ws2f_c02014{word-spacing:32.060160px;}
._7_c02014{margin-left:-2.282400px;}
._1_c02014{margin-left:-1.162080px;}
._0_c02014{width:1.026000px;}
._2_c02014{width:2.224080px;}
._5_c02014{width:3.312000px;}
._4_c02014{width:5.150880px;}
._3_c02014{width:11.052000px;}
._9_c02014{width:12.657600px;}
._6_c02014{width:17.712000px;}
._8_c02014{width:32.112000px;}
.fc2_c02014{color:rgb(0,0,255);}
.fc1_c02014{color:rgb(140,140,140);}
.fc0_c02014{color:rgb(0,0,0);}
.fs7_c02014{font-size:36.000000px;}
.fs2_c02014{font-size:48.240000px;}
.fs1_c02014{font-size:54.000000px;}
.fs6_c02014{font-size:59.760000px;}
.fs5_c02014{font-size:66.240000px;}
.fs0_c02014{font-size:72.000000px;}
.fs4_c02014{font-size:84.240000px;}
.fs3_c02014{font-size:95.760000px;}
.fs8_c02014{font-size:108.000000px;}
.y0_c02014{bottom:0.000000px;}
.y35_c02014{bottom:1.980000px;}
.y5b_c02014{bottom:2.340000px;}
.y4_c02014{bottom:2.880000px;}
.y26_c02014{bottom:3.240000px;}
.y19_c02014{bottom:3.600000px;}
.yb_c02014{bottom:4.680000px;}
.y3c_c02014{bottom:6.480000px;}
.y53_c02014{bottom:6.660000px;}
.yd_c02014{bottom:7.560000px;}
.ye_c02014{bottom:8.820000px;}
.y3a_c02014{bottom:11.520000px;}
.y51_c02014{bottom:11.700000px;}
.y37_c02014{bottom:14.400000px;}
.y4e_c02014{bottom:14.580000px;}
.y38_c02014{bottom:16.020000px;}
.y4f_c02014{bottom:16.200000px;}
.y1a_c02014{bottom:18.540000px;}
.y2_c02014{bottom:19.620000px;}
.y17_c02014{bottom:21.420000px;}
.y6d_c02014{bottom:21.960000px;}
.y18_c02014{bottom:22.680000px;}
.y4c_c02014{bottom:23.760000px;}
.y44_c02014{bottom:23.940000px;}
.y68_c02014{bottom:24.840000px;}
.y4a_c02014{bottom:28.800000px;}
.y42_c02014{bottom:28.980000px;}
.y46_c02014{bottom:31.680000px;}
.y3e_c02014{bottom:31.860000px;}
.y27_c02014{bottom:32.220000px;}
.y47_c02014{bottom:33.300000px;}
.y3f_c02014{bottom:33.480000px;}
.y23_c02014{bottom:35.100000px;}
.y24_c02014{bottom:37.800000px;}
.y6_c02014{bottom:57.600000px;}
.y30_c02014{bottom:61.560000px;}
.y31_c02014{bottom:64.440000px;}
.y67_c02014{bottom:110.340000px;}
.y6c_c02014{bottom:112.680000px;}
.y6b_c02014{bottom:122.940000px;}
.y6e_c02014{bottom:132.300000px;}
.y6a_c02014{bottom:133.380000px;}
.y69_c02014{bottom:143.640000px;}
.y66_c02014{bottom:155.343060px;}
.y65_c02014{bottom:169.200000px;}
.y64_c02014{bottom:203.583060px;}
.y63_c02014{bottom:217.440000px;}
.y60_c02014{bottom:229.140000px;}
.y61_c02014{bottom:233.100000px;}
.y62_c02014{bottom:240.840000px;}
.y5d_c02014{bottom:261.000000px;}
.y5f_c02014{bottom:272.520000px;}
.y5e_c02014{bottom:277.020000px;}
.y59_c02014{bottom:292.680000px;}
.y5a_c02014{bottom:307.080000px;}
.y5c_c02014{bottom:321.660000px;}
.y54_c02014{bottom:341.820000px;}
.y57_c02014{bottom:343.980000px;}
.y55_c02014{bottom:352.800000px;}
.y56_c02014{bottom:356.220000px;}
.y58_c02014{bottom:370.620000px;}
.y4d_c02014{bottom:390.780000px;}
.y50_c02014{bottom:394.740000px;}
.y52_c02014{bottom:402.480000px;}
.y45_c02014{bottom:422.640000px;}
.y49_c02014{bottom:424.980000px;}
.y48_c02014{bottom:437.040000px;}
.y4b_c02014{bottom:451.440000px;}
.y3d_c02014{bottom:471.600000px;}
.y41_c02014{bottom:473.940000px;}
.y40_c02014{bottom:486.000000px;}
.y43_c02014{bottom:500.580000px;}
.y36_c02014{bottom:520.740000px;}
.y39_c02014{bottom:524.700000px;}
.y3b_c02014{bottom:532.260000px;}
.y2f_c02014{bottom:552.600000px;}
.y34_c02014{bottom:565.740000px;}
.y33_c02014{bottom:583.200000px;}
.y32_c02014{bottom:604.620000px;}
.y2e_c02014{bottom:638.460000px;}
.y2d_c02014{bottom:659.520000px;}
.y2c_c02014{bottom:680.220000px;}
.y2b_c02014{bottom:727.027020px;}
.y2a_c02014{bottom:740.883960px;}
.y29_c02014{bottom:754.560000px;}
.y22_c02014{bottom:766.260000px;}
.y25_c02014{bottom:786.780000px;}
.y28_c02014{bottom:798.480000px;}
.y21_c02014{bottom:818.640000px;}
.y20_c02014{bottom:846.360000px;}
.y1f_c02014{bottom:880.923060px;}
.y1e_c02014{bottom:894.780000px;}
.y1c_c02014{bottom:906.480000px;}
.y1d_c02014{bottom:911.160000px;}
.y16_c02014{bottom:931.320000px;}
.y1b_c02014{bottom:949.860000px;}
.y14_c02014{bottom:970.020000px;}
.y15_c02014{bottom:974.700000px;}
.y12_c02014{bottom:994.860000px;}
.y13_c02014{bottom:999.540000px;}
.y10_c02014{bottom:1019.880000px;}
.y11_c02014{bottom:1024.560000px;}
.yc_c02014{bottom:1044.720000px;}
.yf_c02014{bottom:1049.400000px;}
.ya_c02014{bottom:1069.560000px;}
.y9_c02014{bottom:1097.280000px;}
.y8_c02014{bottom:1112.760000px;}
.y7_c02014{bottom:1134.360000px;}
.y5_c02014{bottom:1161.000000px;}
.y1_c02014{bottom:1172.880000px;}
.y3_c02014{bottom:1175.760000px;}
.h8_c02014{height:24.118500px;}
.hc_c02014{height:24.120000px;}
.h14_c02014{height:30.961500px;}
.h19_c02014{height:31.138500px;}
.h1a_c02014{height:31.140000px;}
.h15_c02014{height:35.332031px;}
.h2_c02014{height:36.180000px;}
.h13_c02014{height:36.281250px;}
.hd_c02014{height:37.980000px;}
.h1b_c02014{height:41.400000px;}
.h10_c02014{height:47.344922px;}
.h18_c02014{height:48.240000px;}
.h17_c02014{height:48.420000px;}
.h5_c02014{height:48.616875px;}
.hf_c02014{height:51.660000px;}
.h4_c02014{height:54.421875px;}
.ha_c02014{height:60.226875px;}
.he_c02014{height:66.757500px;}
.h6_c02014{height:70.664062px;}
.h3_c02014{height:72.562500px;}
.h11_c02014{height:75.093750px;}
.h12_c02014{height:81.000000px;}
.hb_c02014{height:82.676953px;}
.h9_c02014{height:84.898125px;}
.h7_c02014{height:96.508125px;}
.h16_c02014{height:105.996094px;}
.h0_c02014{height:1262.880000px;}
.h1_c02014{height:1263.000000px;}
.w3_c02014{width:41.760000px;}
.w8_c02014{width:52.380000px;}
.w7_c02014{width:180.000000px;}
.w5_c02014{width:190.620000px;}
.w6_c02014{width:456.481500px;}
.w2_c02014{width:498.780000px;}
.w4_c02014{width:498.960000px;}
.w0_c02014{width:892.980000px;}
.w1_c02014{width:893.250000px;}
.x0_c02014{left:0.000000px;}
.x8_c02014{left:7.560000px;}
.x14_c02014{left:9.720000px;}
.x17_c02014{left:26.100000px;}
.xb_c02014{left:33.300000px;}
.x19_c02014{left:52.020000px;}
.xd_c02014{left:79.740000px;}
.x1b_c02014{left:96.120000px;}
.x7_c02014{left:106.740000px;}
.x1f_c02014{left:114.300000px;}
.xf_c02014{left:126.180000px;}
.x5_c02014{left:127.620000px;}
.x1c_c02014{left:140.400000px;}
.x6_c02014{left:148.860000px;}
.x11_c02014{left:156.960000px;}
.x1e_c02014{left:165.780000px;}
.x2_c02014{left:172.620000px;}
.x1_c02014{left:223.740000px;}
.x3_c02014{left:231.300000px;}
.x4_c02014{left:484.200000px;}
.x20_c02014{left:498.960000px;}
.x12_c02014{left:606.420000px;}
.x18_c02014{left:632.160000px;}
.x9_c02014{left:648.900000px;}
.xa_c02014{left:674.640000px;}
.x1a_c02014{left:676.440000px;}
.xc_c02014{left:721.080000px;}
.x1d_c02014{left:764.820000px;}
.xe_c02014{left:767.520000px;}
.x13_c02014{left:787.140000px;}
.x16_c02014{left:794.880000px;}
.x15_c02014{left:808.020000px;}
.x10_c02014{left:813.960000px;}
@media print{
.v3_c02014{vertical-align:-90.264960pt;}
.v2_c02014{vertical-align:-69.130880pt;}
.v1_c02014{vertical-align:-40.320000pt;}
.v0_c02014{vertical-align:0.000000pt;}
.ls1a_c02014{letter-spacing:-0.704000pt;}
.ls15_c02014{letter-spacing:-0.673920pt;}
.ls18_c02014{letter-spacing:-0.647680pt;}
.ls10_c02014{letter-spacing:-0.576000pt;}
.ls17_c02014{letter-spacing:-0.529920pt;}
.ls12_c02014{letter-spacing:-0.299520pt;}
.ls1b_c02014{letter-spacing:-0.294400pt;}
.lsf_c02014{letter-spacing:-0.256000pt;}
.ls1c_c02014{letter-spacing:-0.235520pt;}
.lse_c02014{letter-spacing:-0.192000pt;}
.ls11_c02014{letter-spacing:-0.128000pt;}
.ls16_c02014{letter-spacing:-0.117760pt;}
.lsd_c02014{letter-spacing:-0.096000pt;}
.lsc_c02014{letter-spacing:0.000000pt;}
.ls13_c02014{letter-spacing:0.074880pt;}
.ls4_c02014{letter-spacing:0.117760pt;}
.ls19_c02014{letter-spacing:0.128000pt;}
.ls0_c02014{letter-spacing:0.144000pt;}
.ls3_c02014{letter-spacing:0.212480pt;}
.ls8_c02014{letter-spacing:0.256000pt;}
.ls1d_c02014{letter-spacing:0.294400pt;}
.ls14_c02014{letter-spacing:0.299520pt;}
.ls9_c02014{letter-spacing:0.318720pt;}
.lsa_c02014{letter-spacing:0.320000pt;}
.ls6_c02014{letter-spacing:0.340480pt;}
.ls7_c02014{letter-spacing:4.480000pt;}
.ls2_c02014{letter-spacing:9.600000pt;}
.lsb_c02014{letter-spacing:10.880000pt;}
.ls5_c02014{letter-spacing:64.800000pt;}
.ls1_c02014{letter-spacing:2396.160000pt;}
.wse_c02014{word-spacing:-96.000000pt;}
.wsa_c02014{word-spacing:-21.620480pt;}
.ws1_c02014{word-spacing:-21.280000pt;}
.ws4_c02014{word-spacing:-18.794880pt;}
.ws3_c02014{word-spacing:-18.420480pt;}
.ws5_c02014{word-spacing:-18.046080pt;}
.wsb_c02014{word-spacing:-16.256000pt;}
.ws9_c02014{word-spacing:-16.128000pt;}
.ws2_c02014{word-spacing:-15.744000pt;}
.wsc_c02014{word-spacing:-15.296000pt;}
.ws6_c02014{word-spacing:-14.837760pt;}
.ws8_c02014{word-spacing:-14.720000pt;}
.ws10_c02014{word-spacing:-14.602240pt;}
.wsf_c02014{word-spacing:-14.484480pt;}
.ws7_c02014{word-spacing:-14.190080pt;}
.ws0_c02014{word-spacing:-11.904000pt;}
.wsd_c02014{word-spacing:-11.808000pt;}
.ws26_c02014{word-spacing:-0.765440pt;}
.ws1b_c02014{word-spacing:-0.529920pt;}
.ws18_c02014{word-spacing:-0.449280pt;}
.ws13_c02014{word-spacing:-0.340480pt;}
.ws25_c02014{word-spacing:-0.299520pt;}
.ws17_c02014{word-spacing:-0.256000pt;}
.ws1a_c02014{word-spacing:-0.149760pt;}
.ws1c_c02014{word-spacing:-0.117760pt;}
.ws11_c02014{word-spacing:0.000000pt;}
.ws1e_c02014{word-spacing:0.117760pt;}
.ws16_c02014{word-spacing:0.128000pt;}
.ws24_c02014{word-spacing:0.149760pt;}
.ws27_c02014{word-spacing:0.159360pt;}
.ws21_c02014{word-spacing:0.192000pt;}
.ws2d_c02014{word-spacing:0.235520pt;}
.ws1f_c02014{word-spacing:0.256000pt;}
.ws2a_c02014{word-spacing:0.294400pt;}
.ws12_c02014{word-spacing:0.336000pt;}
.ws19_c02014{word-spacing:0.524160pt;}
.ws15_c02014{word-spacing:0.576000pt;}
.ws1d_c02014{word-spacing:0.647680pt;}
.ws29_c02014{word-spacing:3.827200pt;}
.ws28_c02014{word-spacing:3.944960pt;}
.ws23_c02014{word-spacing:4.224000pt;}
.ws20_c02014{word-spacing:4.480000pt;}
.ws22_c02014{word-spacing:4.736000pt;}
.ws14_c02014{word-spacing:9.600000pt;}
.ws31_c02014{word-spacing:10.598400pt;}
.ws30_c02014{word-spacing:10.775040pt;}
.ws2b_c02014{word-spacing:16.015360pt;}
.ws2c_c02014{word-spacing:16.133120pt;}
.ws2e_c02014{word-spacing:28.144640pt;}
.ws2f_c02014{word-spacing:28.497920pt;}
._7_c02014{margin-left:-2.028800pt;}
._1_c02014{margin-left:-1.032960pt;}
._0_c02014{width:0.912000pt;}
._2_c02014{width:1.976960pt;}
._5_c02014{width:2.944000pt;}
._4_c02014{width:4.578560pt;}
._3_c02014{width:9.824000pt;}
._9_c02014{width:11.251200pt;}
._6_c02014{width:15.744000pt;}
._8_c02014{width:28.544000pt;}
.fs7_c02014{font-size:32.000000pt;}
.fs2_c02014{font-size:42.880000pt;}
.fs1_c02014{font-size:48.000000pt;}
.fs6_c02014{font-size:53.120000pt;}
.fs5_c02014{font-size:58.880000pt;}
.fs0_c02014{font-size:64.000000pt;}
.fs4_c02014{font-size:74.880000pt;}
.fs3_c02014{font-size:85.120000pt;}
.fs8_c02014{font-size:96.000000pt;}
.y0_c02014{bottom:0.000000pt;}
.y35_c02014{bottom:1.760000pt;}
.y5b_c02014{bottom:2.080000pt;}
.y4_c02014{bottom:2.560000pt;}
.y26_c02014{bottom:2.880000pt;}
.y19_c02014{bottom:3.200000pt;}
.yb_c02014{bottom:4.160000pt;}
.y3c_c02014{bottom:5.760000pt;}
.y53_c02014{bottom:5.920000pt;}
.yd_c02014{bottom:6.720000pt;}
.ye_c02014{bottom:7.840000pt;}
.y3a_c02014{bottom:10.240000pt;}
.y51_c02014{bottom:10.400000pt;}
.y37_c02014{bottom:12.800000pt;}
.y4e_c02014{bottom:12.960000pt;}
.y38_c02014{bottom:14.240000pt;}
.y4f_c02014{bottom:14.400000pt;}
.y1a_c02014{bottom:16.480000pt;}
.y2_c02014{bottom:17.440000pt;}
.y17_c02014{bottom:19.040000pt;}
.y6d_c02014{bottom:19.520000pt;}
.y18_c02014{bottom:20.160000pt;}
.y4c_c02014{bottom:21.120000pt;}
.y44_c02014{bottom:21.280000pt;}
.y68_c02014{bottom:22.080000pt;}
.y4a_c02014{bottom:25.600000pt;}
.y42_c02014{bottom:25.760000pt;}
.y46_c02014{bottom:28.160000pt;}
.y3e_c02014{bottom:28.320000pt;}
.y27_c02014{bottom:28.640000pt;}
.y47_c02014{bottom:29.600000pt;}
.y3f_c02014{bottom:29.760000pt;}
.y23_c02014{bottom:31.200000pt;}
.y24_c02014{bottom:33.600000pt;}
.y6_c02014{bottom:51.200000pt;}
.y30_c02014{bottom:54.720000pt;}
.y31_c02014{bottom:57.280000pt;}
.y67_c02014{bottom:98.080000pt;}
.y6c_c02014{bottom:100.160000pt;}
.y6b_c02014{bottom:109.280000pt;}
.y6e_c02014{bottom:117.600000pt;}
.y6a_c02014{bottom:118.560000pt;}
.y69_c02014{bottom:127.680000pt;}
.y66_c02014{bottom:138.082720pt;}
.y65_c02014{bottom:150.400000pt;}
.y64_c02014{bottom:180.962720pt;}
.y63_c02014{bottom:193.280000pt;}
.y60_c02014{bottom:203.680000pt;}
.y61_c02014{bottom:207.200000pt;}
.y62_c02014{bottom:214.080000pt;}
.y5d_c02014{bottom:232.000000pt;}
.y5f_c02014{bottom:242.240000pt;}
.y5e_c02014{bottom:246.240000pt;}
.y59_c02014{bottom:260.160000pt;}
.y5a_c02014{bottom:272.960000pt;}
.y5c_c02014{bottom:285.920000pt;}
.y54_c02014{bottom:303.840000pt;}
.y57_c02014{bottom:305.760000pt;}
.y55_c02014{bottom:313.600000pt;}
.y56_c02014{bottom:316.640000pt;}
.y58_c02014{bottom:329.440000pt;}
.y4d_c02014{bottom:347.360000pt;}
.y50_c02014{bottom:350.880000pt;}
.y52_c02014{bottom:357.760000pt;}
.y45_c02014{bottom:375.680000pt;}
.y49_c02014{bottom:377.760000pt;}
.y48_c02014{bottom:388.480000pt;}
.y4b_c02014{bottom:401.280000pt;}
.y3d_c02014{bottom:419.200000pt;}
.y41_c02014{bottom:421.280000pt;}
.y40_c02014{bottom:432.000000pt;}
.y43_c02014{bottom:444.960000pt;}
.y36_c02014{bottom:462.880000pt;}
.y39_c02014{bottom:466.400000pt;}
.y3b_c02014{bottom:473.120000pt;}
.y2f_c02014{bottom:491.200000pt;}
.y34_c02014{bottom:502.880000pt;}
.y33_c02014{bottom:518.400000pt;}
.y32_c02014{bottom:537.440000pt;}
.y2e_c02014{bottom:567.520000pt;}
.y2d_c02014{bottom:586.240000pt;}
.y2c_c02014{bottom:604.640000pt;}
.y2b_c02014{bottom:646.246240pt;}
.y2a_c02014{bottom:658.563520pt;}
.y29_c02014{bottom:670.720000pt;}
.y22_c02014{bottom:681.120000pt;}
.y25_c02014{bottom:699.360000pt;}
.y28_c02014{bottom:709.760000pt;}
.y21_c02014{bottom:727.680000pt;}
.y20_c02014{bottom:752.320000pt;}
.y1f_c02014{bottom:783.042720pt;}
.y1e_c02014{bottom:795.360000pt;}
.y1c_c02014{bottom:805.760000pt;}
.y1d_c02014{bottom:809.920000pt;}
.y16_c02014{bottom:827.840000pt;}
.y1b_c02014{bottom:844.320000pt;}
.y14_c02014{bottom:862.240000pt;}
.y15_c02014{bottom:866.400000pt;}
.y12_c02014{bottom:884.320000pt;}
.y13_c02014{bottom:888.480000pt;}
.y10_c02014{bottom:906.560000pt;}
.y11_c02014{bottom:910.720000pt;}
.yc_c02014{bottom:928.640000pt;}
.yf_c02014{bottom:932.800000pt;}
.ya_c02014{bottom:950.720000pt;}
.y9_c02014{bottom:975.360000pt;}
.y8_c02014{bottom:989.120000pt;}
.y7_c02014{bottom:1008.320000pt;}
.y5_c02014{bottom:1032.000000pt;}
.y1_c02014{bottom:1042.560000pt;}
.y3_c02014{bottom:1045.120000pt;}
.h8_c02014{height:21.438667pt;}
.hc_c02014{height:21.440000pt;}
.h14_c02014{height:27.521333pt;}
.h19_c02014{height:27.678667pt;}
.h1a_c02014{height:27.680000pt;}
.h15_c02014{height:31.406250pt;}
.h2_c02014{height:32.160000pt;}
.h13_c02014{height:32.250000pt;}
.hd_c02014{height:33.760000pt;}
.h1b_c02014{height:36.800000pt;}
.h10_c02014{height:42.084375pt;}
.h18_c02014{height:42.880000pt;}
.h17_c02014{height:43.040000pt;}
.h5_c02014{height:43.215000pt;}
.hf_c02014{height:45.920000pt;}
.h4_c02014{height:48.375000pt;}
.ha_c02014{height:53.535000pt;}
.he_c02014{height:59.340000pt;}
.h6_c02014{height:62.812500pt;}
.h3_c02014{height:64.500000pt;}
.h11_c02014{height:66.750000pt;}
.h12_c02014{height:72.000000pt;}
.hb_c02014{height:73.490625pt;}
.h9_c02014{height:75.465000pt;}
.h7_c02014{height:85.785000pt;}
.h16_c02014{height:94.218750pt;}
.h0_c02014{height:1122.560000pt;}
.h1_c02014{height:1122.666667pt;}
.w3_c02014{width:37.120000pt;}
.w8_c02014{width:46.560000pt;}
.w7_c02014{width:160.000000pt;}
.w5_c02014{width:169.440000pt;}
.w6_c02014{width:405.761333pt;}
.w2_c02014{width:443.360000pt;}
.w4_c02014{width:443.520000pt;}
.w0_c02014{width:793.760000pt;}
.w1_c02014{width:794.000000pt;}
.x0_c02014{left:0.000000pt;}
.x8_c02014{left:6.720000pt;}
.x14_c02014{left:8.640000pt;}
.x17_c02014{left:23.200000pt;}
.xb_c02014{left:29.600000pt;}
.x19_c02014{left:46.240000pt;}
.xd_c02014{left:70.880000pt;}
.x1b_c02014{left:85.440000pt;}
.x7_c02014{left:94.880000pt;}
.x1f_c02014{left:101.600000pt;}
.xf_c02014{left:112.160000pt;}
.x5_c02014{left:113.440000pt;}
.x1c_c02014{left:124.800000pt;}
.x6_c02014{left:132.320000pt;}
.x11_c02014{left:139.520000pt;}
.x1e_c02014{left:147.360000pt;}
.x2_c02014{left:153.440000pt;}
.x1_c02014{left:198.880000pt;}
.x3_c02014{left:205.600000pt;}
.x4_c02014{left:430.400000pt;}
.x20_c02014{left:443.520000pt;}
.x12_c02014{left:539.040000pt;}
.x18_c02014{left:561.920000pt;}
.x9_c02014{left:576.800000pt;}
.xa_c02014{left:599.680000pt;}
.x1a_c02014{left:601.280000pt;}
.xc_c02014{left:640.960000pt;}
.x1d_c02014{left:679.840000pt;}
.xe_c02014{left:682.240000pt;}
.x13_c02014{left:699.680000pt;}
.x16_c02014{left:706.560000pt;}
.x15_c02014{left:718.240000pt;}
.x10_c02014{left:723.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_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_8422f064ff7c743090911a15.woff2')format("woff");}.ff1_c02015{font-family:ff1_c02015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02015;src:url('chunks/assets/font_62e3b8a67b327f214e73d738.woff2')format("woff");}.ff2_c02015{font-family:ff2_c02015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02015;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02015{font-family:ff3_c02015;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_c02015;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff4_c02015{font-family:ff4_c02015;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;}
.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);}
.v1_c02015{vertical-align:-45.360000px;}
.v0_c02015{vertical-align:0.000000px;}
.ls14_c02015{letter-spacing:-1.440000px;}
.ls1d_c02015{letter-spacing:-0.861120px;}
.ls1b_c02015{letter-spacing:-0.728640px;}
.ls1c_c02015{letter-spacing:-0.397440px;}
.ls12_c02015{letter-spacing:-0.288000px;}
.lsf_c02015{letter-spacing:-0.216000px;}
.ls11_c02015{letter-spacing:-0.168480px;}
.ls15_c02015{letter-spacing:-0.144000px;}
.ls16_c02015{letter-spacing:-0.132480px;}
.ls17_c02015{letter-spacing:-0.119520px;}
.lse_c02015{letter-spacing:-0.108000px;}
.ls18_c02015{letter-spacing:-0.059760px;}
.lsd_c02015{letter-spacing:0.000000px;}
.ls19_c02015{letter-spacing:0.119520px;}
.ls5_c02015{letter-spacing:0.132480px;}
.ls0_c02015{letter-spacing:0.162000px;}
.ls8_c02015{letter-spacing:0.179280px;}
.ls6_c02015{letter-spacing:0.239040px;}
.ls1a_c02015{letter-spacing:0.264960px;}
.ls13_c02015{letter-spacing:0.288000px;}
.ls4_c02015{letter-spacing:0.331200px;}
.ls7_c02015{letter-spacing:0.358560px;}
.ls10_c02015{letter-spacing:0.383040px;}
.ls9_c02015{letter-spacing:5.040000px;}
.lsa_c02015{letter-spacing:5.760000px;}
.lsc_c02015{letter-spacing:7.200000px;}
.lsb_c02015{letter-spacing:7.220160px;}
.ls2_c02015{letter-spacing:7.920000px;}
.ls3_c02015{letter-spacing:10.080000px;}
.ls1_c02015{letter-spacing:2695.680000px;}
.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;}
}
.ws5_c02015{word-spacing:-84.240000px;}
.ws1_c02015{word-spacing:-24.323040px;}
.ws2_c02015{word-spacing:-18.000000px;}
.ws3_c02015{word-spacing:-16.891200px;}
.ws7_c02015{word-spacing:-16.692480px;}
.ws8_c02015{word-spacing:-16.560000px;}
.ws6_c02015{word-spacing:-16.427520px;}
.ws9_c02015{word-spacing:-15.698880px;}
.ws4_c02015{word-spacing:-14.940000px;}
.ws0_c02015{word-spacing:-13.392000px;}
.ws1d_c02015{word-spacing:-0.896400px;}
.ws27_c02015{word-spacing:-0.728640px;}
.ws21_c02015{word-spacing:-0.264960px;}
.ws1b_c02015{word-spacing:-0.179280px;}
.ws13_c02015{word-spacing:-0.132480px;}
.wsa_c02015{word-spacing:0.000000px;}
.ws1e_c02015{word-spacing:0.059760px;}
.ws18_c02015{word-spacing:0.132480px;}
.ws1f_c02015{word-spacing:0.144000px;}
.wsc_c02015{word-spacing:0.168480px;}
.ws19_c02015{word-spacing:0.179280px;}
.ws1c_c02015{word-spacing:0.239040px;}
.wsf_c02015{word-spacing:0.288000px;}
.ws1a_c02015{word-spacing:0.298800px;}
.wsb_c02015{word-spacing:0.378000px;}
.ws29_c02015{word-spacing:0.397440px;}
.ws24_c02015{word-spacing:0.728640px;}
.ws12_c02015{word-spacing:0.864000px;}
.ws11_c02015{word-spacing:1.440000px;}
.ws22_c02015{word-spacing:5.431680px;}
.ws23_c02015{word-spacing:5.630400px;}
.ws20_c02015{word-spacing:5.762880px;}
.ws28_c02015{word-spacing:6.624000px;}
.ws25_c02015{word-spacing:7.087680px;}
.ws26_c02015{word-spacing:7.220160px;}
.wsd_c02015{word-spacing:7.920000px;}
.wse_c02015{word-spacing:8.208000px;}
.ws10_c02015{word-spacing:8.352000px;}
.ws15_c02015{word-spacing:9.207360px;}
.ws17_c02015{word-spacing:9.936000px;}
.ws14_c02015{word-spacing:10.068480px;}
.ws16_c02015{word-spacing:10.200960px;}
._3_c02015{margin-left:-1.944000px;}
._0_c02015{width:1.026000px;}
._4_c02015{width:3.006000px;}
._6_c02015{width:4.775040px;}
._7_c02015{width:6.546240px;}
._1_c02015{width:7.682400px;}
._2_c02015{width:8.755200px;}
._5_c02015{width:10.998720px;}
.fc2_c02015{color:rgb(89,89,89);}
.fc1_c02015{color:rgb(140,140,140);}
.fc0_c02015{color:rgb(0,0,0);}
.fs6_c02015{font-size:36.000000px;}
.fs2_c02015{font-size:48.240000px;}
.fs1_c02015{font-size:54.000000px;}
.fs7_c02015{font-size:59.760000px;}
.fs5_c02015{font-size:66.240000px;}
.fs0_c02015{font-size:72.000000px;}
.fs4_c02015{font-size:84.240000px;}
.fs3_c02015{font-size:95.760000px;}
.y0_c02015{bottom:0.000000px;}
.y2b_c02015{bottom:1.980000px;}
.ye_c02015{bottom:2.160000px;}
.y4_c02015{bottom:2.880000px;}
.y42_c02015{bottom:3.600000px;}
.y14_c02015{bottom:3.780000px;}
.yb_c02015{bottom:4.140000px;}
.y19_c02015{bottom:4.680000px;}
.y61_c02015{bottom:4.860000px;}
.y16_c02015{bottom:7.560000px;}
.y5e_c02015{bottom:7.740000px;}
.y17_c02015{bottom:8.820000px;}
.y5f_c02015{bottom:9.000000px;}
.y52_c02015{bottom:13.860000px;}
.yd_c02015{bottom:14.040000px;}
.y2_c02015{bottom:19.620000px;}
.y10_c02015{bottom:32.940000px;}
.y28_c02015{bottom:52.020000px;}
.y6_c02015{bottom:57.600000px;}
.y5d_c02015{bottom:119.520000px;}
.y62_c02015{bottom:124.380000px;}
.y60_c02015{bottom:128.520000px;}
.y5a_c02015{bottom:144.540000px;}
.y5c_c02015{bottom:149.220000px;}
.y5b_c02015{bottom:153.360000px;}
.y57_c02015{bottom:169.380000px;}
.y59_c02015{bottom:174.060000px;}
.y58_c02015{bottom:178.200000px;}
.y56_c02015{bottom:194.220000px;}
.y54_c02015{bottom:214.740000px;}
.y55_c02015{bottom:228.780000px;}
.y51_c02015{bottom:263.880000px;}
.y53_c02015{bottom:265.860000px;}
.y50_c02015{bottom:293.940000px;}
.y4f_c02015{bottom:318.070080px;}
.y4e_c02015{bottom:331.927020px;}
.y4d_c02015{bottom:345.783960px;}
.y4c_c02015{bottom:359.460000px;}
.y49_c02015{bottom:371.340000px;}
.y4b_c02015{bottom:376.020000px;}
.y4a_c02015{bottom:380.160000px;}
.y46_c02015{bottom:396.180000px;}
.y48_c02015{bottom:400.860000px;}
.y47_c02015{bottom:405.000000px;}
.y43_c02015{bottom:421.020000px;}
.y45_c02015{bottom:425.700000px;}
.y44_c02015{bottom:429.840000px;}
.y41_c02015{bottom:446.040000px;}
.y3d_c02015{bottom:466.380000px;}
.y40_c02015{bottom:468.540000px;}
.y3f_c02015{bottom:480.420000px;}
.y3e_c02015{bottom:499.500000px;}
.y3c_c02015{bottom:534.420000px;}
.y3a_c02015{bottom:564.480000px;}
.y3b_c02015{bottom:568.620000px;}
.y39_c02015{bottom:588.790080px;}
.y38_c02015{bottom:602.647020px;}
.y37_c02015{bottom:616.323060px;}
.y36_c02015{bottom:630.180000px;}
.y33_c02015{bottom:641.880000px;}
.y35_c02015{bottom:646.560000px;}
.y34_c02015{bottom:650.700000px;}
.y30_c02015{bottom:666.900000px;}
.y32_c02015{bottom:671.580000px;}
.y31_c02015{bottom:675.720000px;}
.y2d_c02015{bottom:691.740000px;}
.y2f_c02015{bottom:696.420000px;}
.y2e_c02015{bottom:700.560000px;}
.y2c_c02015{bottom:716.580000px;}
.y27_c02015{bottom:737.100000px;}
.y2a_c02015{bottom:751.140000px;}
.y29_c02015{bottom:770.040000px;}
.y25_c02015{bottom:805.140000px;}
.y26_c02015{bottom:807.120000px;}
.y24_c02015{bottom:835.200000px;}
.y23_c02015{bottom:859.507020px;}
.y22_c02015{bottom:873.183060px;}
.y21_c02015{bottom:887.040000px;}
.y1e_c02015{bottom:898.740000px;}
.y20_c02015{bottom:903.420000px;}
.y1f_c02015{bottom:907.560000px;}
.y1b_c02015{bottom:923.760000px;}
.y1d_c02015{bottom:928.440000px;}
.y1c_c02015{bottom:932.580000px;}
.y15_c02015{bottom:948.600000px;}
.y1a_c02015{bottom:953.280000px;}
.y18_c02015{bottom:957.420000px;}
.y13_c02015{bottom:973.440000px;}
.yf_c02015{bottom:993.960000px;}
.y12_c02015{bottom:995.940000px;}
.y11_c02015{bottom:1008.000000px;}
.yc_c02015{bottom:1042.920000px;}
.ya_c02015{bottom:1072.980000px;}
.y9_c02015{bottom:1097.280000px;}
.y8_c02015{bottom:1112.760000px;}
.y7_c02015{bottom:1134.360000px;}
.y5_c02015{bottom:1161.000000px;}
.y1_c02015{bottom:1172.880000px;}
.y3_c02015{bottom:1175.760000px;}
.h18_c02015{height:18.900000px;}
.he_c02015{height:19.080000px;}
.h8_c02015{height:20.700000px;}
.h16_c02015{height:20.701500px;}
.hf_c02015{height:24.118500px;}
.h12_c02015{height:24.120000px;}
.h1a_c02015{height:24.300000px;}
.h19_c02015{height:29.160000px;}
.h13_c02015{height:29.340000px;}
.ha_c02015{height:29.341500px;}
.h2_c02015{height:36.180000px;}
.hb_c02015{height:36.281250px;}
.hc_c02015{height:48.240000px;}
.h5_c02015{height:48.616875px;}
.h4_c02015{height:54.421875px;}
.h15_c02015{height:58.651172px;}
.h10_c02015{height:60.226875px;}
.hd_c02015{height:66.757500px;}
.h17_c02015{height:67.318500px;}
.h14_c02015{height:67.320000px;}
.h6_c02015{height:70.664062px;}
.h3_c02015{height:72.562500px;}
.h9_c02015{height:75.093750px;}
.h11_c02015{height:84.898125px;}
.h7_c02015{height:96.508125px;}
.h0_c02015{height:1262.880000px;}
.h1_c02015{height:1263.000000px;}
.w6_c02015{width:31.140000px;}
.w7_c02015{width:243.721500px;}
.w4_c02015{width:275.760000px;}
.w5_c02015{width:456.480000px;}
.w2_c02015{width:498.780000px;}
.w3_c02015{width:732.960000px;}
.w0_c02015{width:892.980000px;}
.w1_c02015{width:893.250000px;}
.x0_c02015{left:0.000000px;}
.x9_c02015{left:7.740000px;}
.x6_c02015{left:53.100000px;}
.xa_c02015{left:61.200000px;}
.x1f_c02015{left:63.720000px;}
.xc_c02015{left:85.500000px;}
.xd_c02015{left:104.940000px;}
.x1e_c02015{left:109.260000px;}
.x18_c02015{left:112.500000px;}
.x5_c02015{left:127.620000px;}
.x8_c02015{left:143.280000px;}
.xf_c02015{left:147.780000px;}
.x2_c02015{left:172.620000px;}
.x19_c02015{left:183.960000px;}
.x17_c02015{left:209.160000px;}
.x1c_c02015{left:217.080000px;}
.x1_c02015{left:223.740000px;}
.x20_c02015{left:228.780000px;}
.x3_c02015{left:231.300000px;}
.x1d_c02015{left:237.600000px;}
.x7_c02015{left:240.120000px;}
.x1a_c02015{left:249.120000px;}
.x11_c02015{left:252.180000px;}
.x16_c02015{left:254.700000px;}
.xb_c02015{left:329.940000px;}
.xe_c02015{left:355.680000px;}
.x13_c02015{left:361.260000px;}
.x15_c02015{left:451.980000px;}
.x4_c02015{left:484.200000px;}
.x10_c02015{left:495.720000px;}
.x1b_c02015{left:564.120000px;}
.x12_c02015{left:600.120000px;}
.x14_c02015{left:709.020000px;}
@media print{
.v1_c02015{vertical-align:-40.320000pt;}
.v0_c02015{vertical-align:0.000000pt;}
.ls14_c02015{letter-spacing:-1.280000pt;}
.ls1d_c02015{letter-spacing:-0.765440pt;}
.ls1b_c02015{letter-spacing:-0.647680pt;}
.ls1c_c02015{letter-spacing:-0.353280pt;}
.ls12_c02015{letter-spacing:-0.256000pt;}
.lsf_c02015{letter-spacing:-0.192000pt;}
.ls11_c02015{letter-spacing:-0.149760pt;}
.ls15_c02015{letter-spacing:-0.128000pt;}
.ls16_c02015{letter-spacing:-0.117760pt;}
.ls17_c02015{letter-spacing:-0.106240pt;}
.lse_c02015{letter-spacing:-0.096000pt;}
.ls18_c02015{letter-spacing:-0.053120pt;}
.lsd_c02015{letter-spacing:0.000000pt;}
.ls19_c02015{letter-spacing:0.106240pt;}
.ls5_c02015{letter-spacing:0.117760pt;}
.ls0_c02015{letter-spacing:0.144000pt;}
.ls8_c02015{letter-spacing:0.159360pt;}
.ls6_c02015{letter-spacing:0.212480pt;}
.ls1a_c02015{letter-spacing:0.235520pt;}
.ls13_c02015{letter-spacing:0.256000pt;}
.ls4_c02015{letter-spacing:0.294400pt;}
.ls7_c02015{letter-spacing:0.318720pt;}
.ls10_c02015{letter-spacing:0.340480pt;}
.ls9_c02015{letter-spacing:4.480000pt;}
.lsa_c02015{letter-spacing:5.120000pt;}
.lsc_c02015{letter-spacing:6.400000pt;}
.lsb_c02015{letter-spacing:6.417920pt;}
.ls2_c02015{letter-spacing:7.040000pt;}
.ls3_c02015{letter-spacing:8.960000pt;}
.ls1_c02015{letter-spacing:2396.160000pt;}
.ws5_c02015{word-spacing:-74.880000pt;}
.ws1_c02015{word-spacing:-21.620480pt;}
.ws2_c02015{word-spacing:-16.000000pt;}
.ws3_c02015{word-spacing:-15.014400pt;}
.ws7_c02015{word-spacing:-14.837760pt;}
.ws8_c02015{word-spacing:-14.720000pt;}
.ws6_c02015{word-spacing:-14.602240pt;}
.ws9_c02015{word-spacing:-13.954560pt;}
.ws4_c02015{word-spacing:-13.280000pt;}
.ws0_c02015{word-spacing:-11.904000pt;}
.ws1d_c02015{word-spacing:-0.796800pt;}
.ws27_c02015{word-spacing:-0.647680pt;}
.ws21_c02015{word-spacing:-0.235520pt;}
.ws1b_c02015{word-spacing:-0.159360pt;}
.ws13_c02015{word-spacing:-0.117760pt;}
.wsa_c02015{word-spacing:0.000000pt;}
.ws1e_c02015{word-spacing:0.053120pt;}
.ws18_c02015{word-spacing:0.117760pt;}
.ws1f_c02015{word-spacing:0.128000pt;}
.wsc_c02015{word-spacing:0.149760pt;}
.ws19_c02015{word-spacing:0.159360pt;}
.ws1c_c02015{word-spacing:0.212480pt;}
.wsf_c02015{word-spacing:0.256000pt;}
.ws1a_c02015{word-spacing:0.265600pt;}
.wsb_c02015{word-spacing:0.336000pt;}
.ws29_c02015{word-spacing:0.353280pt;}
.ws24_c02015{word-spacing:0.647680pt;}
.ws12_c02015{word-spacing:0.768000pt;}
.ws11_c02015{word-spacing:1.280000pt;}
.ws22_c02015{word-spacing:4.828160pt;}
.ws23_c02015{word-spacing:5.004800pt;}
.ws20_c02015{word-spacing:5.122560pt;}
.ws28_c02015{word-spacing:5.888000pt;}
.ws25_c02015{word-spacing:6.300160pt;}
.ws26_c02015{word-spacing:6.417920pt;}
.wsd_c02015{word-spacing:7.040000pt;}
.wse_c02015{word-spacing:7.296000pt;}
.ws10_c02015{word-spacing:7.424000pt;}
.ws15_c02015{word-spacing:8.184320pt;}
.ws17_c02015{word-spacing:8.832000pt;}
.ws14_c02015{word-spacing:8.949760pt;}
.ws16_c02015{word-spacing:9.067520pt;}
._3_c02015{margin-left:-1.728000pt;}
._0_c02015{width:0.912000pt;}
._4_c02015{width:2.672000pt;}
._6_c02015{width:4.244480pt;}
._7_c02015{width:5.818880pt;}
._1_c02015{width:6.828800pt;}
._2_c02015{width:7.782400pt;}
._5_c02015{width:9.776640pt;}
.fs6_c02015{font-size:32.000000pt;}
.fs2_c02015{font-size:42.880000pt;}
.fs1_c02015{font-size:48.000000pt;}
.fs7_c02015{font-size:53.120000pt;}
.fs5_c02015{font-size:58.880000pt;}
.fs0_c02015{font-size:64.000000pt;}
.fs4_c02015{font-size:74.880000pt;}
.fs3_c02015{font-size:85.120000pt;}
.y0_c02015{bottom:0.000000pt;}
.y2b_c02015{bottom:1.760000pt;}
.ye_c02015{bottom:1.920000pt;}
.y4_c02015{bottom:2.560000pt;}
.y42_c02015{bottom:3.200000pt;}
.y14_c02015{bottom:3.360000pt;}
.yb_c02015{bottom:3.680000pt;}
.y19_c02015{bottom:4.160000pt;}
.y61_c02015{bottom:4.320000pt;}
.y16_c02015{bottom:6.720000pt;}
.y5e_c02015{bottom:6.880000pt;}
.y17_c02015{bottom:7.840000pt;}
.y5f_c02015{bottom:8.000000pt;}
.y52_c02015{bottom:12.320000pt;}
.yd_c02015{bottom:12.480000pt;}
.y2_c02015{bottom:17.440000pt;}
.y10_c02015{bottom:29.280000pt;}
.y28_c02015{bottom:46.240000pt;}
.y6_c02015{bottom:51.200000pt;}
.y5d_c02015{bottom:106.240000pt;}
.y62_c02015{bottom:110.560000pt;}
.y60_c02015{bottom:114.240000pt;}
.y5a_c02015{bottom:128.480000pt;}
.y5c_c02015{bottom:132.640000pt;}
.y5b_c02015{bottom:136.320000pt;}
.y57_c02015{bottom:150.560000pt;}
.y59_c02015{bottom:154.720000pt;}
.y58_c02015{bottom:158.400000pt;}
.y56_c02015{bottom:172.640000pt;}
.y54_c02015{bottom:190.880000pt;}
.y55_c02015{bottom:203.360000pt;}
.y51_c02015{bottom:234.560000pt;}
.y53_c02015{bottom:236.320000pt;}
.y50_c02015{bottom:261.280000pt;}
.y4f_c02015{bottom:282.728960pt;}
.y4e_c02015{bottom:295.046240pt;}
.y4d_c02015{bottom:307.363520pt;}
.y4c_c02015{bottom:319.520000pt;}
.y49_c02015{bottom:330.080000pt;}
.y4b_c02015{bottom:334.240000pt;}
.y4a_c02015{bottom:337.920000pt;}
.y46_c02015{bottom:352.160000pt;}
.y48_c02015{bottom:356.320000pt;}
.y47_c02015{bottom:360.000000pt;}
.y43_c02015{bottom:374.240000pt;}
.y45_c02015{bottom:378.400000pt;}
.y44_c02015{bottom:382.080000pt;}
.y41_c02015{bottom:396.480000pt;}
.y3d_c02015{bottom:414.560000pt;}
.y40_c02015{bottom:416.480000pt;}
.y3f_c02015{bottom:427.040000pt;}
.y3e_c02015{bottom:444.000000pt;}
.y3c_c02015{bottom:475.040000pt;}
.y3a_c02015{bottom:501.760000pt;}
.y3b_c02015{bottom:505.440000pt;}
.y39_c02015{bottom:523.368960pt;}
.y38_c02015{bottom:535.686240pt;}
.y37_c02015{bottom:547.842720pt;}
.y36_c02015{bottom:560.160000pt;}
.y33_c02015{bottom:570.560000pt;}
.y35_c02015{bottom:574.720000pt;}
.y34_c02015{bottom:578.400000pt;}
.y30_c02015{bottom:592.800000pt;}
.y32_c02015{bottom:596.960000pt;}
.y31_c02015{bottom:600.640000pt;}
.y2d_c02015{bottom:614.880000pt;}
.y2f_c02015{bottom:619.040000pt;}
.y2e_c02015{bottom:622.720000pt;}
.y2c_c02015{bottom:636.960000pt;}
.y27_c02015{bottom:655.200000pt;}
.y2a_c02015{bottom:667.680000pt;}
.y29_c02015{bottom:684.480000pt;}
.y25_c02015{bottom:715.680000pt;}
.y26_c02015{bottom:717.440000pt;}
.y24_c02015{bottom:742.400000pt;}
.y23_c02015{bottom:764.006240pt;}
.y22_c02015{bottom:776.162720pt;}
.y21_c02015{bottom:788.480000pt;}
.y1e_c02015{bottom:798.880000pt;}
.y20_c02015{bottom:803.040000pt;}
.y1f_c02015{bottom:806.720000pt;}
.y1b_c02015{bottom:821.120000pt;}
.y1d_c02015{bottom:825.280000pt;}
.y1c_c02015{bottom:828.960000pt;}
.y15_c02015{bottom:843.200000pt;}
.y1a_c02015{bottom:847.360000pt;}
.y18_c02015{bottom:851.040000pt;}
.y13_c02015{bottom:865.280000pt;}
.yf_c02015{bottom:883.520000pt;}
.y12_c02015{bottom:885.280000pt;}
.y11_c02015{bottom:896.000000pt;}
.yc_c02015{bottom:927.040000pt;}
.ya_c02015{bottom:953.760000pt;}
.y9_c02015{bottom:975.360000pt;}
.y8_c02015{bottom:989.120000pt;}
.y7_c02015{bottom:1008.320000pt;}
.y5_c02015{bottom:1032.000000pt;}
.y1_c02015{bottom:1042.560000pt;}
.y3_c02015{bottom:1045.120000pt;}
.h18_c02015{height:16.800000pt;}
.he_c02015{height:16.960000pt;}
.h8_c02015{height:18.400000pt;}
.h16_c02015{height:18.401333pt;}
.hf_c02015{height:21.438667pt;}
.h12_c02015{height:21.440000pt;}
.h1a_c02015{height:21.600000pt;}
.h19_c02015{height:25.920000pt;}
.h13_c02015{height:26.080000pt;}
.ha_c02015{height:26.081333pt;}
.h2_c02015{height:32.160000pt;}
.hb_c02015{height:32.250000pt;}
.hc_c02015{height:42.880000pt;}
.h5_c02015{height:43.215000pt;}
.h4_c02015{height:48.375000pt;}
.h15_c02015{height:52.134375pt;}
.h10_c02015{height:53.535000pt;}
.hd_c02015{height:59.340000pt;}
.h17_c02015{height:59.838667pt;}
.h14_c02015{height:59.840000pt;}
.h6_c02015{height:62.812500pt;}
.h3_c02015{height:64.500000pt;}
.h9_c02015{height:66.750000pt;}
.h11_c02015{height:75.465000pt;}
.h7_c02015{height:85.785000pt;}
.h0_c02015{height:1122.560000pt;}
.h1_c02015{height:1122.666667pt;}
.w6_c02015{width:27.680000pt;}
.w7_c02015{width:216.641333pt;}
.w4_c02015{width:245.120000pt;}
.w5_c02015{width:405.760000pt;}
.w2_c02015{width:443.360000pt;}
.w3_c02015{width:651.520000pt;}
.w0_c02015{width:793.760000pt;}
.w1_c02015{width:794.000000pt;}
.x0_c02015{left:0.000000pt;}
.x9_c02015{left:6.880000pt;}
.x6_c02015{left:47.200000pt;}
.xa_c02015{left:54.400000pt;}
.x1f_c02015{left:56.640000pt;}
.xc_c02015{left:76.000000pt;}
.xd_c02015{left:93.280000pt;}
.x1e_c02015{left:97.120000pt;}
.x18_c02015{left:100.000000pt;}
.x5_c02015{left:113.440000pt;}
.x8_c02015{left:127.360000pt;}
.xf_c02015{left:131.360000pt;}
.x2_c02015{left:153.440000pt;}
.x19_c02015{left:163.520000pt;}
.x17_c02015{left:185.920000pt;}
.x1c_c02015{left:192.960000pt;}
.x1_c02015{left:198.880000pt;}
.x20_c02015{left:203.360000pt;}
.x3_c02015{left:205.600000pt;}
.x1d_c02015{left:211.200000pt;}
.x7_c02015{left:213.440000pt;}
.x1a_c02015{left:221.440000pt;}
.x11_c02015{left:224.160000pt;}
.x16_c02015{left:226.400000pt;}
.xb_c02015{left:293.280000pt;}
.xe_c02015{left:316.160000pt;}
.x13_c02015{left:321.120000pt;}
.x15_c02015{left:401.760000pt;}
.x4_c02015{left:430.400000pt;}
.x10_c02015{left:440.640000pt;}
.x1b_c02015{left:501.440000pt;}
.x12_c02015{left:533.440000pt;}
.x14_c02015{left:630.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_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_a10fb26812291f347af68fdc.woff2')format("woff");}.ff1_c02016{font-family:ff1_c02016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02016;src:url('chunks/assets/font_39ab3ce3135893677e0125a3.woff2')format("woff");}.ff2_c02016{font-family:ff2_c02016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02016;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02016{font-family:ff3_c02016;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_c02016;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff4_c02016{font-family:ff4_c02016;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;}
.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);}
.v1_c02016{vertical-align:-45.360000px;}
.v0_c02016{vertical-align:0.000000px;}
.ls19_c02016{letter-spacing:-1.059840px;}
.ls18_c02016{letter-spacing:-0.861120px;}
.ls11_c02016{letter-spacing:-0.728640px;}
.ls1b_c02016{letter-spacing:-0.720000px;}
.lsf_c02016{letter-spacing:-0.596160px;}
.ls1c_c02016{letter-spacing:-0.478080px;}
.ls1a_c02016{letter-spacing:-0.288000px;}
.lsd_c02016{letter-spacing:-0.216000px;}
.lse_c02016{letter-spacing:-0.144000px;}
.ls13_c02016{letter-spacing:-0.132480px;}
.ls15_c02016{letter-spacing:-0.119520px;}
.lsc_c02016{letter-spacing:-0.108000px;}
.ls16_c02016{letter-spacing:-0.059760px;}
.lsb_c02016{letter-spacing:0.000000px;}
.ls17_c02016{letter-spacing:0.119520px;}
.ls2_c02016{letter-spacing:0.132480px;}
.ls0_c02016{letter-spacing:0.162000px;}
.ls14_c02016{letter-spacing:0.179280px;}
.ls5_c02016{letter-spacing:0.239040px;}
.ls12_c02016{letter-spacing:0.264960px;}
.ls10_c02016{letter-spacing:0.331200px;}
.ls6_c02016{letter-spacing:0.358560px;}
.ls4_c02016{letter-spacing:0.567360px;}
.ls3_c02016{letter-spacing:1.440000px;}
.ls7_c02016{letter-spacing:2.880000px;}
.lsa_c02016{letter-spacing:10.800000px;}
.ls8_c02016{letter-spacing:15.831360px;}
.ls9_c02016{letter-spacing:16.560000px;}
.ls1_c02016{letter-spacing:2695.680000px;}
.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;}
}
.ws4_c02016{word-spacing:-84.240000px;}
.ws1_c02016{word-spacing:-18.000000px;}
.ws7_c02016{word-spacing:-17.712000px;}
.ws2_c02016{word-spacing:-16.891200px;}
.ws5_c02016{word-spacing:-15.831360px;}
.ws6_c02016{word-spacing:-15.698880px;}
.ws3_c02016{word-spacing:-14.940000px;}
.ws8_c02016{word-spacing:-14.461920px;}
.ws0_c02016{word-spacing:-13.392000px;}
.ws17_c02016{word-spacing:-0.896400px;}
.ws24_c02016{word-spacing:-0.418320px;}
.wsf_c02016{word-spacing:-0.264960px;}
.ws15_c02016{word-spacing:-0.179280px;}
.wsc_c02016{word-spacing:-0.132480px;}
.ws9_c02016{word-spacing:0.000000px;}
.ws18_c02016{word-spacing:0.059760px;}
.ws12_c02016{word-spacing:0.132480px;}
.ws19_c02016{word-spacing:0.144000px;}
.ws13_c02016{word-spacing:0.179280px;}
.ws16_c02016{word-spacing:0.239040px;}
.ws21_c02016{word-spacing:0.288000px;}
.ws14_c02016{word-spacing:0.298800px;}
.wsa_c02016{word-spacing:0.378000px;}
.wsd_c02016{word-spacing:0.596160px;}
.ws20_c02016{word-spacing:0.720000px;}
.wsb_c02016{word-spacing:0.864000px;}
.ws1e_c02016{word-spacing:1.059840px;}
.ws10_c02016{word-spacing:1.457280px;}
.wse_c02016{word-spacing:2.185920px;}
.ws1b_c02016{word-spacing:3.047040px;}
.ws1a_c02016{word-spacing:3.576960px;}
.ws11_c02016{word-spacing:5.034240px;}
.ws23_c02016{word-spacing:10.664640px;}
.ws22_c02016{word-spacing:10.797120px;}
.ws1d_c02016{word-spacing:16.427520px;}
.ws1f_c02016{word-spacing:16.848000px;}
.ws1c_c02016{word-spacing:17.288640px;}
._1_c02016{margin-left:-2.016000px;}
._3_c02016{margin-left:-1.005840px;}
._0_c02016{width:1.026000px;}
._2_c02016{width:2.058480px;}
._4_c02016{width:10.234800px;}
.fc2_c02016{color:rgb(89,89,89);}
.fc1_c02016{color:rgb(140,140,140);}
.fc0_c02016{color:rgb(0,0,0);}
.fs4_c02016{font-size:36.000000px;}
.fs2_c02016{font-size:48.240000px;}
.fs1_c02016{font-size:54.000000px;}
.fs5_c02016{font-size:59.760000px;}
.fs3_c02016{font-size:66.240000px;}
.fs0_c02016{font-size:72.000000px;}
.fs6_c02016{font-size:84.240000px;}
.y0_c02016{bottom:0.000000px;}
.y11_c02016{bottom:1.980000px;}
.y29_c02016{bottom:2.160000px;}
.y4_c02016{bottom:2.880000px;}
.y13_c02016{bottom:3.600000px;}
.y5b_c02016{bottom:3.780000px;}
.y9_c02016{bottom:4.140000px;}
.y18_c02016{bottom:4.680000px;}
.y1e_c02016{bottom:4.860000px;}
.y15_c02016{bottom:7.560000px;}
.y1b_c02016{bottom:7.740000px;}
.y16_c02016{bottom:8.820000px;}
.y1c_c02016{bottom:9.000000px;}
.yb_c02016{bottom:14.040000px;}
.y55_c02016{bottom:14.400000px;}
.y2_c02016{bottom:19.620000px;}
.y2b_c02016{bottom:32.940000px;}
.y41_c02016{bottom:35.100000px;}
.ye_c02016{bottom:52.020000px;}
.y6_c02016{bottom:57.600000px;}
.y65_c02016{bottom:128.700000px;}
.y62_c02016{bottom:140.220000px;}
.y64_c02016{bottom:145.080000px;}
.y63_c02016{bottom:149.220000px;}
.y5f_c02016{bottom:165.240000px;}
.y61_c02016{bottom:169.920000px;}
.y60_c02016{bottom:174.060000px;}
.y5c_c02016{bottom:190.080000px;}
.y5e_c02016{bottom:194.760000px;}
.y5d_c02016{bottom:198.900000px;}
.y5a_c02016{bottom:214.920000px;}
.y57_c02016{bottom:235.440000px;}
.y59_c02016{bottom:237.600000px;}
.y58_c02016{bottom:249.480000px;}
.y54_c02016{bottom:284.580000px;}
.y56_c02016{bottom:286.560000px;}
.y53_c02016{bottom:298.980000px;}
.y52_c02016{bottom:316.260000px;}
.y51_c02016{bottom:340.573140px;}
.y50_c02016{bottom:354.430080px;}
.y4f_c02016{bottom:368.106120px;}
.y4e_c02016{bottom:381.963060px;}
.y4d_c02016{bottom:395.820000px;}
.y4a_c02016{bottom:407.520000px;}
.y4c_c02016{bottom:412.200000px;}
.y4b_c02016{bottom:416.340000px;}
.y47_c02016{bottom:432.360000px;}
.y49_c02016{bottom:437.040000px;}
.y48_c02016{bottom:441.180000px;}
.y44_c02016{bottom:457.200000px;}
.y46_c02016{bottom:462.060000px;}
.y45_c02016{bottom:466.200000px;}
.y43_c02016{bottom:482.220000px;}
.y40_c02016{bottom:502.740000px;}
.y42_c02016{bottom:517.140000px;}
.y3f_c02016{bottom:537.840000px;}
.y3e_c02016{bottom:555.120000px;}
.y3d_c02016{bottom:585.180000px;}
.y3c_c02016{bottom:609.493140px;}
.y3b_c02016{bottom:623.350080px;}
.y3a_c02016{bottom:637.026120px;}
.y39_c02016{bottom:650.883060px;}
.y38_c02016{bottom:664.740000px;}
.y35_c02016{bottom:676.440000px;}
.y37_c02016{bottom:681.120000px;}
.y36_c02016{bottom:685.260000px;}
.y32_c02016{bottom:701.280000px;}
.y34_c02016{bottom:705.960000px;}
.y33_c02016{bottom:710.100000px;}
.y2f_c02016{bottom:726.300000px;}
.y31_c02016{bottom:730.980000px;}
.y30_c02016{bottom:735.120000px;}
.y2e_c02016{bottom:751.140000px;}
.y2a_c02016{bottom:771.660000px;}
.y2d_c02016{bottom:773.820000px;}
.y2c_c02016{bottom:785.520000px;}
.y28_c02016{bottom:820.620000px;}
.y27_c02016{bottom:850.680000px;}
.y26_c02016{bottom:874.990080px;}
.y25_c02016{bottom:888.847020px;}
.y24_c02016{bottom:902.523060px;}
.y23_c02016{bottom:916.380000px;}
.y20_c02016{bottom:928.080000px;}
.y22_c02016{bottom:932.760000px;}
.y21_c02016{bottom:936.900000px;}
.y1a_c02016{bottom:952.920000px;}
.y1f_c02016{bottom:957.780000px;}
.y1d_c02016{bottom:961.920000px;}
.y14_c02016{bottom:977.940000px;}
.y19_c02016{bottom:982.620000px;}
.y17_c02016{bottom:986.760000px;}
.y12_c02016{bottom:1002.780000px;}
.yd_c02016{bottom:1023.300000px;}
.y10_c02016{bottom:1037.340000px;}
.yf_c02016{bottom:1056.240000px;}
.ya_c02016{bottom:1091.340000px;}
.yc_c02016{bottom:1093.320000px;}
.y8_c02016{bottom:1121.400000px;}
.y7_c02016{bottom:1145.700000px;}
.y5_c02016{bottom:1161.000000px;}
.y1_c02016{bottom:1172.880000px;}
.y3_c02016{bottom:1175.760000px;}
.hd_c02016{height:18.900000px;}
.h18_c02016{height:19.080000px;}
.h7_c02016{height:20.700000px;}
.h13_c02016{height:20.701500px;}
.h12_c02016{height:24.118500px;}
.he_c02016{height:24.120000px;}
.h11_c02016{height:24.300000px;}
.h9_c02016{height:29.340000px;}
.h17_c02016{height:30.960000px;}
.h15_c02016{height:35.332031px;}
.h2_c02016{height:36.180000px;}
.ha_c02016{height:36.281250px;}
.h19_c02016{height:47.344922px;}
.h14_c02016{height:48.240000px;}
.h5_c02016{height:48.616875px;}
.h16_c02016{height:51.660000px;}
.h4_c02016{height:54.421875px;}
.hf_c02016{height:60.226875px;}
.hc_c02016{height:66.757500px;}
.hb_c02016{height:67.320000px;}
.h6_c02016{height:70.664062px;}
.h3_c02016{height:72.562500px;}
.h8_c02016{height:75.093750px;}
.h10_c02016{height:84.898125px;}
.h0_c02016{height:1262.880000px;}
.h1_c02016{height:1263.000000px;}
.w6_c02016{width:31.138500px;}
.w7_c02016{width:243.720000px;}
.w4_c02016{width:275.580000px;}
.w5_c02016{width:456.481500px;}
.w2_c02016{width:498.780000px;}
.w3_c02016{width:732.780000px;}
.w0_c02016{width:892.980000px;}
.w1_c02016{width:893.250000px;}
.x0_c02016{left:0.000000px;}
.xa_c02016{left:7.560000px;}
.x8_c02016{left:83.340000px;}
.x18_c02016{left:93.240000px;}
.x6_c02016{left:106.740000px;}
.x9_c02016{left:114.300000px;}
.x5_c02016{left:127.620000px;}
.xc_c02016{left:138.600000px;}
.xf_c02016{left:147.780000px;}
.x1a_c02016{left:155.160000px;}
.xd_c02016{left:158.220000px;}
.x2_c02016{left:172.620000px;}
.x19_c02016{left:212.760000px;}
.x17_c02016{left:220.680000px;}
.x1_c02016{left:223.740000px;}
.x16_c02016{left:228.420000px;}
.x3_c02016{left:231.300000px;}
.x7_c02016{left:251.100000px;}
.x11_c02016{left:252.180000px;}
.x1b_c02016{left:274.320000px;}
.x13_c02016{left:361.260000px;}
.xb_c02016{left:383.040000px;}
.xe_c02016{left:408.780000px;}
.x15_c02016{left:451.980000px;}
.x4_c02016{left:484.200000px;}
.x10_c02016{left:548.820000px;}
.x12_c02016{left:653.220000px;}
.x1c_c02016{left:681.660000px;}
.x14_c02016{left:762.120000px;}
@media print{
.v1_c02016{vertical-align:-40.320000pt;}
.v0_c02016{vertical-align:0.000000pt;}
.ls19_c02016{letter-spacing:-0.942080pt;}
.ls18_c02016{letter-spacing:-0.765440pt;}
.ls11_c02016{letter-spacing:-0.647680pt;}
.ls1b_c02016{letter-spacing:-0.640000pt;}
.lsf_c02016{letter-spacing:-0.529920pt;}
.ls1c_c02016{letter-spacing:-0.424960pt;}
.ls1a_c02016{letter-spacing:-0.256000pt;}
.lsd_c02016{letter-spacing:-0.192000pt;}
.lse_c02016{letter-spacing:-0.128000pt;}
.ls13_c02016{letter-spacing:-0.117760pt;}
.ls15_c02016{letter-spacing:-0.106240pt;}
.lsc_c02016{letter-spacing:-0.096000pt;}
.ls16_c02016{letter-spacing:-0.053120pt;}
.lsb_c02016{letter-spacing:0.000000pt;}
.ls17_c02016{letter-spacing:0.106240pt;}
.ls2_c02016{letter-spacing:0.117760pt;}
.ls0_c02016{letter-spacing:0.144000pt;}
.ls14_c02016{letter-spacing:0.159360pt;}
.ls5_c02016{letter-spacing:0.212480pt;}
.ls12_c02016{letter-spacing:0.235520pt;}
.ls10_c02016{letter-spacing:0.294400pt;}
.ls6_c02016{letter-spacing:0.318720pt;}
.ls4_c02016{letter-spacing:0.504320pt;}
.ls3_c02016{letter-spacing:1.280000pt;}
.ls7_c02016{letter-spacing:2.560000pt;}
.lsa_c02016{letter-spacing:9.600000pt;}
.ls8_c02016{letter-spacing:14.072320pt;}
.ls9_c02016{letter-spacing:14.720000pt;}
.ls1_c02016{letter-spacing:2396.160000pt;}
.ws4_c02016{word-spacing:-74.880000pt;}
.ws1_c02016{word-spacing:-16.000000pt;}
.ws7_c02016{word-spacing:-15.744000pt;}
.ws2_c02016{word-spacing:-15.014400pt;}
.ws5_c02016{word-spacing:-14.072320pt;}
.ws6_c02016{word-spacing:-13.954560pt;}
.ws3_c02016{word-spacing:-13.280000pt;}
.ws8_c02016{word-spacing:-12.855040pt;}
.ws0_c02016{word-spacing:-11.904000pt;}
.ws17_c02016{word-spacing:-0.796800pt;}
.ws24_c02016{word-spacing:-0.371840pt;}
.wsf_c02016{word-spacing:-0.235520pt;}
.ws15_c02016{word-spacing:-0.159360pt;}
.wsc_c02016{word-spacing:-0.117760pt;}
.ws9_c02016{word-spacing:0.000000pt;}
.ws18_c02016{word-spacing:0.053120pt;}
.ws12_c02016{word-spacing:0.117760pt;}
.ws19_c02016{word-spacing:0.128000pt;}
.ws13_c02016{word-spacing:0.159360pt;}
.ws16_c02016{word-spacing:0.212480pt;}
.ws21_c02016{word-spacing:0.256000pt;}
.ws14_c02016{word-spacing:0.265600pt;}
.wsa_c02016{word-spacing:0.336000pt;}
.wsd_c02016{word-spacing:0.529920pt;}
.ws20_c02016{word-spacing:0.640000pt;}
.wsb_c02016{word-spacing:0.768000pt;}
.ws1e_c02016{word-spacing:0.942080pt;}
.ws10_c02016{word-spacing:1.295360pt;}
.wse_c02016{word-spacing:1.943040pt;}
.ws1b_c02016{word-spacing:2.708480pt;}
.ws1a_c02016{word-spacing:3.179520pt;}
.ws11_c02016{word-spacing:4.474880pt;}
.ws23_c02016{word-spacing:9.479680pt;}
.ws22_c02016{word-spacing:9.597440pt;}
.ws1d_c02016{word-spacing:14.602240pt;}
.ws1f_c02016{word-spacing:14.976000pt;}
.ws1c_c02016{word-spacing:15.367680pt;}
._1_c02016{margin-left:-1.792000pt;}
._3_c02016{margin-left:-0.894080pt;}
._0_c02016{width:0.912000pt;}
._2_c02016{width:1.829760pt;}
._4_c02016{width:9.097600pt;}
.fs4_c02016{font-size:32.000000pt;}
.fs2_c02016{font-size:42.880000pt;}
.fs1_c02016{font-size:48.000000pt;}
.fs5_c02016{font-size:53.120000pt;}
.fs3_c02016{font-size:58.880000pt;}
.fs0_c02016{font-size:64.000000pt;}
.fs6_c02016{font-size:74.880000pt;}
.y0_c02016{bottom:0.000000pt;}
.y11_c02016{bottom:1.760000pt;}
.y29_c02016{bottom:1.920000pt;}
.y4_c02016{bottom:2.560000pt;}
.y13_c02016{bottom:3.200000pt;}
.y5b_c02016{bottom:3.360000pt;}
.y9_c02016{bottom:3.680000pt;}
.y18_c02016{bottom:4.160000pt;}
.y1e_c02016{bottom:4.320000pt;}
.y15_c02016{bottom:6.720000pt;}
.y1b_c02016{bottom:6.880000pt;}
.y16_c02016{bottom:7.840000pt;}
.y1c_c02016{bottom:8.000000pt;}
.yb_c02016{bottom:12.480000pt;}
.y55_c02016{bottom:12.800000pt;}
.y2_c02016{bottom:17.440000pt;}
.y2b_c02016{bottom:29.280000pt;}
.y41_c02016{bottom:31.200000pt;}
.ye_c02016{bottom:46.240000pt;}
.y6_c02016{bottom:51.200000pt;}
.y65_c02016{bottom:114.400000pt;}
.y62_c02016{bottom:124.640000pt;}
.y64_c02016{bottom:128.960000pt;}
.y63_c02016{bottom:132.640000pt;}
.y5f_c02016{bottom:146.880000pt;}
.y61_c02016{bottom:151.040000pt;}
.y60_c02016{bottom:154.720000pt;}
.y5c_c02016{bottom:168.960000pt;}
.y5e_c02016{bottom:173.120000pt;}
.y5d_c02016{bottom:176.800000pt;}
.y5a_c02016{bottom:191.040000pt;}
.y57_c02016{bottom:209.280000pt;}
.y59_c02016{bottom:211.200000pt;}
.y58_c02016{bottom:221.760000pt;}
.y54_c02016{bottom:252.960000pt;}
.y56_c02016{bottom:254.720000pt;}
.y53_c02016{bottom:265.760000pt;}
.y52_c02016{bottom:281.120000pt;}
.y51_c02016{bottom:302.731680pt;}
.y50_c02016{bottom:315.048960pt;}
.y4f_c02016{bottom:327.205440pt;}
.y4e_c02016{bottom:339.522720pt;}
.y4d_c02016{bottom:351.840000pt;}
.y4a_c02016{bottom:362.240000pt;}
.y4c_c02016{bottom:366.400000pt;}
.y4b_c02016{bottom:370.080000pt;}
.y47_c02016{bottom:384.320000pt;}
.y49_c02016{bottom:388.480000pt;}
.y48_c02016{bottom:392.160000pt;}
.y44_c02016{bottom:406.400000pt;}
.y46_c02016{bottom:410.720000pt;}
.y45_c02016{bottom:414.400000pt;}
.y43_c02016{bottom:428.640000pt;}
.y40_c02016{bottom:446.880000pt;}
.y42_c02016{bottom:459.680000pt;}
.y3f_c02016{bottom:478.080000pt;}
.y3e_c02016{bottom:493.440000pt;}
.y3d_c02016{bottom:520.160000pt;}
.y3c_c02016{bottom:541.771680pt;}
.y3b_c02016{bottom:554.088960pt;}
.y3a_c02016{bottom:566.245440pt;}
.y39_c02016{bottom:578.562720pt;}
.y38_c02016{bottom:590.880000pt;}
.y35_c02016{bottom:601.280000pt;}
.y37_c02016{bottom:605.440000pt;}
.y36_c02016{bottom:609.120000pt;}
.y32_c02016{bottom:623.360000pt;}
.y34_c02016{bottom:627.520000pt;}
.y33_c02016{bottom:631.200000pt;}
.y2f_c02016{bottom:645.600000pt;}
.y31_c02016{bottom:649.760000pt;}
.y30_c02016{bottom:653.440000pt;}
.y2e_c02016{bottom:667.680000pt;}
.y2a_c02016{bottom:685.920000pt;}
.y2d_c02016{bottom:687.840000pt;}
.y2c_c02016{bottom:698.240000pt;}
.y28_c02016{bottom:729.440000pt;}
.y27_c02016{bottom:756.160000pt;}
.y26_c02016{bottom:777.768960pt;}
.y25_c02016{bottom:790.086240pt;}
.y24_c02016{bottom:802.242720pt;}
.y23_c02016{bottom:814.560000pt;}
.y20_c02016{bottom:824.960000pt;}
.y22_c02016{bottom:829.120000pt;}
.y21_c02016{bottom:832.800000pt;}
.y1a_c02016{bottom:847.040000pt;}
.y1f_c02016{bottom:851.360000pt;}
.y1d_c02016{bottom:855.040000pt;}
.y14_c02016{bottom:869.280000pt;}
.y19_c02016{bottom:873.440000pt;}
.y17_c02016{bottom:877.120000pt;}
.y12_c02016{bottom:891.360000pt;}
.yd_c02016{bottom:909.600000pt;}
.y10_c02016{bottom:922.080000pt;}
.yf_c02016{bottom:938.880000pt;}
.ya_c02016{bottom:970.080000pt;}
.yc_c02016{bottom:971.840000pt;}
.y8_c02016{bottom:996.800000pt;}
.y7_c02016{bottom:1018.400000pt;}
.y5_c02016{bottom:1032.000000pt;}
.y1_c02016{bottom:1042.560000pt;}
.y3_c02016{bottom:1045.120000pt;}
.hd_c02016{height:16.800000pt;}
.h18_c02016{height:16.960000pt;}
.h7_c02016{height:18.400000pt;}
.h13_c02016{height:18.401333pt;}
.h12_c02016{height:21.438667pt;}
.he_c02016{height:21.440000pt;}
.h11_c02016{height:21.600000pt;}
.h9_c02016{height:26.080000pt;}
.h17_c02016{height:27.520000pt;}
.h15_c02016{height:31.406250pt;}
.h2_c02016{height:32.160000pt;}
.ha_c02016{height:32.250000pt;}
.h19_c02016{height:42.084375pt;}
.h14_c02016{height:42.880000pt;}
.h5_c02016{height:43.215000pt;}
.h16_c02016{height:45.920000pt;}
.h4_c02016{height:48.375000pt;}
.hf_c02016{height:53.535000pt;}
.hc_c02016{height:59.340000pt;}
.hb_c02016{height:59.840000pt;}
.h6_c02016{height:62.812500pt;}
.h3_c02016{height:64.500000pt;}
.h8_c02016{height:66.750000pt;}
.h10_c02016{height:75.465000pt;}
.h0_c02016{height:1122.560000pt;}
.h1_c02016{height:1122.666667pt;}
.w6_c02016{width:27.678667pt;}
.w7_c02016{width:216.640000pt;}
.w4_c02016{width:244.960000pt;}
.w5_c02016{width:405.761333pt;}
.w2_c02016{width:443.360000pt;}
.w3_c02016{width:651.360000pt;}
.w0_c02016{width:793.760000pt;}
.w1_c02016{width:794.000000pt;}
.x0_c02016{left:0.000000pt;}
.xa_c02016{left:6.720000pt;}
.x8_c02016{left:74.080000pt;}
.x18_c02016{left:82.880000pt;}
.x6_c02016{left:94.880000pt;}
.x9_c02016{left:101.600000pt;}
.x5_c02016{left:113.440000pt;}
.xc_c02016{left:123.200000pt;}
.xf_c02016{left:131.360000pt;}
.x1a_c02016{left:137.920000pt;}
.xd_c02016{left:140.640000pt;}
.x2_c02016{left:153.440000pt;}
.x19_c02016{left:189.120000pt;}
.x17_c02016{left:196.160000pt;}
.x1_c02016{left:198.880000pt;}
.x16_c02016{left:203.040000pt;}
.x3_c02016{left:205.600000pt;}
.x7_c02016{left:223.200000pt;}
.x11_c02016{left:224.160000pt;}
.x1b_c02016{left:243.840000pt;}
.x13_c02016{left:321.120000pt;}
.xb_c02016{left:340.480000pt;}
.xe_c02016{left:363.360000pt;}
.x15_c02016{left:401.760000pt;}
.x4_c02016{left:430.400000pt;}
.x10_c02016{left:487.840000pt;}
.x12_c02016{left:580.640000pt;}
.x1c_c02016{left:605.920000pt;}
.x14_c02016{left:677.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_c02017 {
    display:none;
  }
  .loading-indicator_c02017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02017 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02017 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02017" -> "#page-container .classname_c02017")
 */
.pf_c02017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02017 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02017 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02017 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02017 {overflow:visible;}
  }
}
.c_c02017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02017 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02017:after { /* webkit #35443 */
  content: '';
}
.t_c02017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02017 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02017 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02017 { /* info for Javascript */
  display:none;
}
.l_c02017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02017;src:url('chunks/assets/font_c01d140749cc67143c1b07c4.woff2')format("woff");}.ff1_c02017{font-family:ff1_c02017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02017;src:url('chunks/assets/font_052e27aa2fc735443de9698c.woff2')format("woff");}.ff2_c02017{font-family:ff2_c02017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02017;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02017{font-family:ff3_c02017;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_c02017;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02017{font-family:ff4_c02017;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:ff5_c02017;src:url('chunks/assets/font_fccbbd0c52f55fe0af990ba3.woff2')format("woff");}.ff5_c02017{font-family:ff5_c02017;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_c02017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02017{vertical-align:-45.360000px;}
.v0_c02017{vertical-align:0.000000px;}
.ls14_c02017{letter-spacing:-0.861120px;}
.ls1d_c02017{letter-spacing:-0.792000px;}
.ls13_c02017{letter-spacing:-0.758160px;}
.ls16_c02017{letter-spacing:-0.728640px;}
.ls19_c02017{letter-spacing:-0.596160px;}
.ls11_c02017{letter-spacing:-0.336960px;}
.ls10_c02017{letter-spacing:-0.288000px;}
.lse_c02017{letter-spacing:-0.216000px;}
.ls1b_c02017{letter-spacing:-0.144000px;}
.ls18_c02017{letter-spacing:-0.132480px;}
.lsd_c02017{letter-spacing:-0.108000px;}
.ls15_c02017{letter-spacing:-0.084240px;}
.lsc_c02017{letter-spacing:0.000000px;}
.ls12_c02017{letter-spacing:0.084240px;}
.ls6_c02017{letter-spacing:0.132480px;}
.ls0_c02017{letter-spacing:0.162000px;}
.ls4_c02017{letter-spacing:0.192960px;}
.ls7_c02017{letter-spacing:0.239040px;}
.ls1a_c02017{letter-spacing:0.288000px;}
.ls17_c02017{letter-spacing:0.331200px;}
.ls1c_c02017{letter-spacing:0.336960px;}
.ls8_c02017{letter-spacing:0.358560px;}
.lsb_c02017{letter-spacing:0.360000px;}
.lsf_c02017{letter-spacing:0.383040px;}
.ls9_c02017{letter-spacing:0.480960px;}
.ls5_c02017{letter-spacing:0.567360px;}
.lsa_c02017{letter-spacing:3.600000px;}
.ls2_c02017{letter-spacing:9.360000px;}
.ls3_c02017{letter-spacing:20.160000px;}
.ls1_c02017{letter-spacing:2695.680000px;}
.sc__c02017{text-shadow:none;}
.sc0_c02017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02017{-webkit-text-stroke:0px transparent;}
.sc0_c02017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c02017{word-spacing:-108.000000px;}
.wsa_c02017{word-spacing:-95.760000px;}
.ws1_c02017{word-spacing:-24.323040px;}
.wse_c02017{word-spacing:-23.940000px;}
.ws2_c02017{word-spacing:-21.060000px;}
.ws4_c02017{word-spacing:-20.723040px;}
.ws5_c02017{word-spacing:-20.301840px;}
.wsf_c02017{word-spacing:-17.856000px;}
.ws3_c02017{word-spacing:-17.712000px;}
.ws10_c02017{word-spacing:-17.208000px;}
.ws8_c02017{word-spacing:-16.692480px;}
.wsb_c02017{word-spacing:-16.560000px;}
.wsd_c02017{word-spacing:-16.427520px;}
.wsc_c02017{word-spacing:-15.831360px;}
.ws6_c02017{word-spacing:-15.698880px;}
.ws9_c02017{word-spacing:-14.940000px;}
.ws0_c02017{word-spacing:-13.392000px;}
.ws11_c02017{word-spacing:-13.284000px;}
.ws7_c02017{word-spacing:-12.252960px;}
.ws2c_c02017{word-spacing:-1.010880px;}
.ws1b_c02017{word-spacing:-0.861120px;}
.ws2b_c02017{word-spacing:-0.505440px;}
.ws24_c02017{word-spacing:-0.383040px;}
.ws1e_c02017{word-spacing:-0.358560px;}
.ws2d_c02017{word-spacing:-0.336960px;}
.ws20_c02017{word-spacing:-0.331200px;}
.ws22_c02017{word-spacing:-0.288000px;}
.ws19_c02017{word-spacing:-0.252720px;}
.ws1f_c02017{word-spacing:-0.191520px;}
.ws23_c02017{word-spacing:-0.168480px;}
.ws1c_c02017{word-spacing:-0.132480px;}
.ws13_c02017{word-spacing:0.000000px;}
.ws1a_c02017{word-spacing:0.084240px;}
.ws2e_c02017{word-spacing:0.132480px;}
.ws2a_c02017{word-spacing:0.168480px;}
.ws1d_c02017{word-spacing:0.179280px;}
.ws27_c02017{word-spacing:0.216000px;}
.ws16_c02017{word-spacing:0.288000px;}
.ws14_c02017{word-spacing:0.378000px;}
.ws21_c02017{word-spacing:0.596160px;}
.ws29_c02017{word-spacing:3.600000px;}
.ws28_c02017{word-spacing:3.888000px;}
.ws15_c02017{word-spacing:9.648000px;}
.ws18_c02017{word-spacing:20.160000px;}
.ws17_c02017{word-spacing:20.448000px;}
.ws25_c02017{word-spacing:24.480000px;}
.ws26_c02017{word-spacing:24.768000px;}
._3_c02017{margin-left:-2.148480px;}
._2_c02017{margin-left:-1.116000px;}
._0_c02017{width:1.026000px;}
._1_c02017{width:9.133920px;}
._4_c02017{width:24.494400px;}
.fc2_c02017{color:rgb(0,0,255);}
.fc1_c02017{color:rgb(140,140,140);}
.fc0_c02017{color:rgb(0,0,0);}
.fs7_c02017{font-size:36.000000px;}
.fs2_c02017{font-size:48.240000px;}
.fs1_c02017{font-size:54.000000px;}
.fs6_c02017{font-size:59.760000px;}
.fs5_c02017{font-size:66.240000px;}
.fs0_c02017{font-size:72.000000px;}
.fs4_c02017{font-size:84.240000px;}
.fs3_c02017{font-size:95.760000px;}
.fs8_c02017{font-size:108.000000px;}
.y0_c02017{bottom:0.000000px;}
.y4_c02017{bottom:2.880000px;}
.y10_c02017{bottom:4.140000px;}
.y45_c02017{bottom:4.860000px;}
.yf_c02017{bottom:5.400000px;}
.y4f_c02017{bottom:6.480000px;}
.y56_c02017{bottom:6.660000px;}
.y4d_c02017{bottom:11.520000px;}
.y54_c02017{bottom:11.700000px;}
.y4a_c02017{bottom:14.400000px;}
.y51_c02017{bottom:14.580000px;}
.y4b_c02017{bottom:15.660000px;}
.y52_c02017{bottom:15.840000px;}
.y19_c02017{bottom:16.200000px;}
.y16_c02017{bottom:18.540000px;}
.y2_c02017{bottom:19.620000px;}
.y13_c02017{bottom:21.420000px;}
.y14_c02017{bottom:22.680000px;}
.yc_c02017{bottom:25.380000px;}
.y37_c02017{bottom:28.260000px;}
.y38_c02017{bottom:30.960000px;}
.y43_c02017{bottom:42.660000px;}
.y46_c02017{bottom:45.540000px;}
.y6_c02017{bottom:57.600000px;}
.y6b_c02017{bottom:118.260000px;}
.y6c_c02017{bottom:122.220000px;}
.y6d_c02017{bottom:129.780000px;}
.y68_c02017{bottom:150.120000px;}
.y69_c02017{bottom:153.900000px;}
.y6a_c02017{bottom:161.640000px;}
.y65_c02017{bottom:181.800000px;}
.y66_c02017{bottom:185.760000px;}
.y67_c02017{bottom:193.500000px;}
.y63_c02017{bottom:213.660000px;}
.y64_c02017{bottom:225.180000px;}
.y60_c02017{bottom:245.520000px;}
.y61_c02017{bottom:249.480000px;}
.y62_c02017{bottom:257.040000px;}
.y5d_c02017{bottom:277.200000px;}
.y5e_c02017{bottom:281.160000px;}
.y5f_c02017{bottom:288.900000px;}
.y5a_c02017{bottom:309.060000px;}
.y5b_c02017{bottom:313.020000px;}
.y5c_c02017{bottom:320.580000px;}
.y57_c02017{bottom:340.740000px;}
.y58_c02017{bottom:344.880000px;}
.y59_c02017{bottom:352.440000px;}
.y50_c02017{bottom:372.600000px;}
.y53_c02017{bottom:376.560000px;}
.y55_c02017{bottom:384.300000px;}
.y49_c02017{bottom:404.460000px;}
.y4c_c02017{bottom:408.420000px;}
.y4e_c02017{bottom:415.980000px;}
.y42_c02017{bottom:436.140000px;}
.y48_c02017{bottom:440.820000px;}
.y47_c02017{bottom:458.100000px;}
.y44_c02017{bottom:463.140000px;}
.y41_c02017{bottom:502.020000px;}
.y40_c02017{bottom:517.320000px;}
.y3f_c02017{bottom:538.020000px;}
.y3e_c02017{bottom:559.620000px;}
.y3d_c02017{bottom:584.643060px;}
.y3c_c02017{bottom:598.500000px;}
.y36_c02017{bottom:610.200000px;}
.y3a_c02017{bottom:612.180000px;}
.y39_c02017{bottom:623.880000px;}
.y3b_c02017{bottom:635.580000px;}
.y35_c02017{bottom:658.800000px;}
.y34_c02017{bottom:673.740000px;}
.y33_c02017{bottom:693.363960px;}
.y32_c02017{bottom:707.040000px;}
.y2f_c02017{bottom:718.560000px;}
.y31_c02017{bottom:734.760000px;}
.y30_c02017{bottom:737.100000px;}
.y2b_c02017{bottom:757.260000px;}
.y2c_c02017{bottom:761.400000px;}
.y2e_c02017{bottom:773.460000px;}
.y2d_c02017{bottom:775.800000px;}
.y27_c02017{bottom:795.960000px;}
.y28_c02017{bottom:800.100000px;}
.y2a_c02017{bottom:812.160000px;}
.y29_c02017{bottom:814.500000px;}
.y24_c02017{bottom:834.660000px;}
.y26_c02017{bottom:850.860000px;}
.y25_c02017{bottom:853.200000px;}
.y21_c02017{bottom:873.360000px;}
.y23_c02017{bottom:889.560000px;}
.y22_c02017{bottom:891.900000px;}
.y1e_c02017{bottom:912.060000px;}
.y20_c02017{bottom:928.260000px;}
.y1f_c02017{bottom:930.600000px;}
.y1a_c02017{bottom:950.760000px;}
.y1b_c02017{bottom:954.900000px;}
.y1d_c02017{bottom:966.960000px;}
.y1c_c02017{bottom:969.300000px;}
.y12_c02017{bottom:989.460000px;}
.y15_c02017{bottom:993.600000px;}
.y18_c02017{bottom:1005.660000px;}
.y17_c02017{bottom:1008.000000px;}
.yb_c02017{bottom:1028.160000px;}
.y11_c02017{bottom:1032.300000px;}
.ye_c02017{bottom:1033.560000px;}
.yd_c02017{bottom:1053.540000px;}
.ya_c02017{bottom:1076.760000px;}
.y9_c02017{bottom:1092.060000px;}
.y8_c02017{bottom:1112.760000px;}
.y7_c02017{bottom:1134.360000px;}
.y5_c02017{bottom:1161.000000px;}
.y1_c02017{bottom:1172.880000px;}
.y3_c02017{bottom:1175.760000px;}
.h15_c02017{height:30.960000px;}
.h19_c02017{height:30.961500px;}
.h1a_c02017{height:31.138500px;}
.h18_c02017{height:31.140000px;}
.h16_c02017{height:35.332031px;}
.h2_c02017{height:36.180000px;}
.h13_c02017{height:36.281250px;}
.h12_c02017{height:37.980000px;}
.hc_c02017{height:37.981500px;}
.h9_c02017{height:44.820000px;}
.h8_c02017{height:47.344922px;}
.h5_c02017{height:48.616875px;}
.h4_c02017{height:54.421875px;}
.he_c02017{height:60.226875px;}
.h14_c02017{height:62.100000px;}
.h11_c02017{height:63.824414px;}
.hd_c02017{height:65.010937px;}
.hb_c02017{height:66.757500px;}
.h6_c02017{height:70.664062px;}
.h3_c02017{height:72.562500px;}
.hf_c02017{height:82.676953px;}
.ha_c02017{height:84.898125px;}
.h10_c02017{height:93.983203px;}
.h7_c02017{height:96.508125px;}
.h17_c02017{height:105.996094px;}
.h0_c02017{height:1262.880000px;}
.h1_c02017{height:1263.000000px;}
.w3_c02017{width:41.760000px;}
.wb_c02017{width:52.380000px;}
.w6_c02017{width:137.518500px;}
.w5_c02017{width:169.378500px;}
.wa_c02017{width:190.440000px;}
.w8_c02017{width:190.620000px;}
.w4_c02017{width:382.138500px;}
.w9_c02017{width:445.858500px;}
.w2_c02017{width:498.780000px;}
.w7_c02017{width:498.960000px;}
.w0_c02017{width:892.980000px;}
.w1_c02017{width:893.250000px;}
.x0_c02017{left:0.000000px;}
.x8_c02017{left:7.740000px;}
.x32_c02017{left:9.540000px;}
.x30_c02017{left:14.040000px;}
.x1d_c02017{left:19.800000px;}
.x28_c02017{left:33.300000px;}
.xf_c02017{left:39.420000px;}
.x10_c02017{left:46.440000px;}
.x15_c02017{left:48.240000px;}
.x7_c02017{left:53.460000px;}
.xb_c02017{left:55.440000px;}
.x1f_c02017{left:64.080000px;}
.x2a_c02017{left:79.740000px;}
.x17_c02017{left:88.740000px;}
.x6_c02017{left:95.580000px;}
.x12_c02017{left:103.680000px;}
.x21_c02017{left:108.720000px;}
.x2c_c02017{left:126.180000px;}
.x5_c02017{left:127.620000px;}
.x19_c02017{left:129.060000px;}
.x2e_c02017{left:136.800000px;}
.xd_c02017{left:140.040000px;}
.x1b_c02017{left:154.440000px;}
.x2_c02017{left:172.620000px;}
.x1_c02017{left:223.740000px;}
.x3_c02017{left:231.300000px;}
.x23_c02017{left:300.600000px;}
.x25_c02017{left:311.580000px;}
.x13_c02017{left:323.280000px;}
.x24_c02017{left:349.560000px;}
.x9_c02017{left:426.420000px;}
.xa_c02017{left:478.800000px;}
.x4_c02017{left:484.200000px;}
.x14_c02017{left:504.540000px;}
.xc_c02017{left:507.960000px;}
.x2f_c02017{left:542.700000px;}
.x16_c02017{left:545.040000px;}
.x35_c02017{left:568.260000px;}
.x18_c02017{left:585.540000px;}
.x26_c02017{left:595.800000px;}
.x36_c02017{left:614.700000px;}
.x27_c02017{left:621.540000px;}
.x1a_c02017{left:625.860000px;}
.xe_c02017{left:648.900000px;}
.x1c_c02017{left:656.640000px;}
.x37_c02017{left:661.140000px;}
.x29_c02017{left:667.980000px;}
.x1e_c02017{left:700.920000px;}
.x11_c02017{left:704.340000px;}
.x38_c02017{left:707.580000px;}
.x2b_c02017{left:714.420000px;}
.x31_c02017{left:734.040000px;}
.x34_c02017{left:741.600000px;}
.x20_c02017{left:745.380000px;}
.x33_c02017{left:754.740000px;}
.x2d_c02017{left:760.860000px;}
.x22_c02017{left:772.200000px;}
@media print{
.v1_c02017{vertical-align:-40.320000pt;}
.v0_c02017{vertical-align:0.000000pt;}
.ls14_c02017{letter-spacing:-0.765440pt;}
.ls1d_c02017{letter-spacing:-0.704000pt;}
.ls13_c02017{letter-spacing:-0.673920pt;}
.ls16_c02017{letter-spacing:-0.647680pt;}
.ls19_c02017{letter-spacing:-0.529920pt;}
.ls11_c02017{letter-spacing:-0.299520pt;}
.ls10_c02017{letter-spacing:-0.256000pt;}
.lse_c02017{letter-spacing:-0.192000pt;}
.ls1b_c02017{letter-spacing:-0.128000pt;}
.ls18_c02017{letter-spacing:-0.117760pt;}
.lsd_c02017{letter-spacing:-0.096000pt;}
.ls15_c02017{letter-spacing:-0.074880pt;}
.lsc_c02017{letter-spacing:0.000000pt;}
.ls12_c02017{letter-spacing:0.074880pt;}
.ls6_c02017{letter-spacing:0.117760pt;}
.ls0_c02017{letter-spacing:0.144000pt;}
.ls4_c02017{letter-spacing:0.171520pt;}
.ls7_c02017{letter-spacing:0.212480pt;}
.ls1a_c02017{letter-spacing:0.256000pt;}
.ls17_c02017{letter-spacing:0.294400pt;}
.ls1c_c02017{letter-spacing:0.299520pt;}
.ls8_c02017{letter-spacing:0.318720pt;}
.lsb_c02017{letter-spacing:0.320000pt;}
.lsf_c02017{letter-spacing:0.340480pt;}
.ls9_c02017{letter-spacing:0.427520pt;}
.ls5_c02017{letter-spacing:0.504320pt;}
.lsa_c02017{letter-spacing:3.200000pt;}
.ls2_c02017{letter-spacing:8.320000pt;}
.ls3_c02017{letter-spacing:17.920000pt;}
.ls1_c02017{letter-spacing:2396.160000pt;}
.ws12_c02017{word-spacing:-96.000000pt;}
.wsa_c02017{word-spacing:-85.120000pt;}
.ws1_c02017{word-spacing:-21.620480pt;}
.wse_c02017{word-spacing:-21.280000pt;}
.ws2_c02017{word-spacing:-18.720000pt;}
.ws4_c02017{word-spacing:-18.420480pt;}
.ws5_c02017{word-spacing:-18.046080pt;}
.wsf_c02017{word-spacing:-15.872000pt;}
.ws3_c02017{word-spacing:-15.744000pt;}
.ws10_c02017{word-spacing:-15.296000pt;}
.ws8_c02017{word-spacing:-14.837760pt;}
.wsb_c02017{word-spacing:-14.720000pt;}
.wsd_c02017{word-spacing:-14.602240pt;}
.wsc_c02017{word-spacing:-14.072320pt;}
.ws6_c02017{word-spacing:-13.954560pt;}
.ws9_c02017{word-spacing:-13.280000pt;}
.ws0_c02017{word-spacing:-11.904000pt;}
.ws11_c02017{word-spacing:-11.808000pt;}
.ws7_c02017{word-spacing:-10.891520pt;}
.ws2c_c02017{word-spacing:-0.898560pt;}
.ws1b_c02017{word-spacing:-0.765440pt;}
.ws2b_c02017{word-spacing:-0.449280pt;}
.ws24_c02017{word-spacing:-0.340480pt;}
.ws1e_c02017{word-spacing:-0.318720pt;}
.ws2d_c02017{word-spacing:-0.299520pt;}
.ws20_c02017{word-spacing:-0.294400pt;}
.ws22_c02017{word-spacing:-0.256000pt;}
.ws19_c02017{word-spacing:-0.224640pt;}
.ws1f_c02017{word-spacing:-0.170240pt;}
.ws23_c02017{word-spacing:-0.149760pt;}
.ws1c_c02017{word-spacing:-0.117760pt;}
.ws13_c02017{word-spacing:0.000000pt;}
.ws1a_c02017{word-spacing:0.074880pt;}
.ws2e_c02017{word-spacing:0.117760pt;}
.ws2a_c02017{word-spacing:0.149760pt;}
.ws1d_c02017{word-spacing:0.159360pt;}
.ws27_c02017{word-spacing:0.192000pt;}
.ws16_c02017{word-spacing:0.256000pt;}
.ws14_c02017{word-spacing:0.336000pt;}
.ws21_c02017{word-spacing:0.529920pt;}
.ws29_c02017{word-spacing:3.200000pt;}
.ws28_c02017{word-spacing:3.456000pt;}
.ws15_c02017{word-spacing:8.576000pt;}
.ws18_c02017{word-spacing:17.920000pt;}
.ws17_c02017{word-spacing:18.176000pt;}
.ws25_c02017{word-spacing:21.760000pt;}
.ws26_c02017{word-spacing:22.016000pt;}
._3_c02017{margin-left:-1.909760pt;}
._2_c02017{margin-left:-0.992000pt;}
._0_c02017{width:0.912000pt;}
._1_c02017{width:8.119040pt;}
._4_c02017{width:21.772800pt;}
.fs7_c02017{font-size:32.000000pt;}
.fs2_c02017{font-size:42.880000pt;}
.fs1_c02017{font-size:48.000000pt;}
.fs6_c02017{font-size:53.120000pt;}
.fs5_c02017{font-size:58.880000pt;}
.fs0_c02017{font-size:64.000000pt;}
.fs4_c02017{font-size:74.880000pt;}
.fs3_c02017{font-size:85.120000pt;}
.fs8_c02017{font-size:96.000000pt;}
.y0_c02017{bottom:0.000000pt;}
.y4_c02017{bottom:2.560000pt;}
.y10_c02017{bottom:3.680000pt;}
.y45_c02017{bottom:4.320000pt;}
.yf_c02017{bottom:4.800000pt;}
.y4f_c02017{bottom:5.760000pt;}
.y56_c02017{bottom:5.920000pt;}
.y4d_c02017{bottom:10.240000pt;}
.y54_c02017{bottom:10.400000pt;}
.y4a_c02017{bottom:12.800000pt;}
.y51_c02017{bottom:12.960000pt;}
.y4b_c02017{bottom:13.920000pt;}
.y52_c02017{bottom:14.080000pt;}
.y19_c02017{bottom:14.400000pt;}
.y16_c02017{bottom:16.480000pt;}
.y2_c02017{bottom:17.440000pt;}
.y13_c02017{bottom:19.040000pt;}
.y14_c02017{bottom:20.160000pt;}
.yc_c02017{bottom:22.560000pt;}
.y37_c02017{bottom:25.120000pt;}
.y38_c02017{bottom:27.520000pt;}
.y43_c02017{bottom:37.920000pt;}
.y46_c02017{bottom:40.480000pt;}
.y6_c02017{bottom:51.200000pt;}
.y6b_c02017{bottom:105.120000pt;}
.y6c_c02017{bottom:108.640000pt;}
.y6d_c02017{bottom:115.360000pt;}
.y68_c02017{bottom:133.440000pt;}
.y69_c02017{bottom:136.800000pt;}
.y6a_c02017{bottom:143.680000pt;}
.y65_c02017{bottom:161.600000pt;}
.y66_c02017{bottom:165.120000pt;}
.y67_c02017{bottom:172.000000pt;}
.y63_c02017{bottom:189.920000pt;}
.y64_c02017{bottom:200.160000pt;}
.y60_c02017{bottom:218.240000pt;}
.y61_c02017{bottom:221.760000pt;}
.y62_c02017{bottom:228.480000pt;}
.y5d_c02017{bottom:246.400000pt;}
.y5e_c02017{bottom:249.920000pt;}
.y5f_c02017{bottom:256.800000pt;}
.y5a_c02017{bottom:274.720000pt;}
.y5b_c02017{bottom:278.240000pt;}
.y5c_c02017{bottom:284.960000pt;}
.y57_c02017{bottom:302.880000pt;}
.y58_c02017{bottom:306.560000pt;}
.y59_c02017{bottom:313.280000pt;}
.y50_c02017{bottom:331.200000pt;}
.y53_c02017{bottom:334.720000pt;}
.y55_c02017{bottom:341.600000pt;}
.y49_c02017{bottom:359.520000pt;}
.y4c_c02017{bottom:363.040000pt;}
.y4e_c02017{bottom:369.760000pt;}
.y42_c02017{bottom:387.680000pt;}
.y48_c02017{bottom:391.840000pt;}
.y47_c02017{bottom:407.200000pt;}
.y44_c02017{bottom:411.680000pt;}
.y41_c02017{bottom:446.240000pt;}
.y40_c02017{bottom:459.840000pt;}
.y3f_c02017{bottom:478.240000pt;}
.y3e_c02017{bottom:497.440000pt;}
.y3d_c02017{bottom:519.682720pt;}
.y3c_c02017{bottom:532.000000pt;}
.y36_c02017{bottom:542.400000pt;}
.y3a_c02017{bottom:544.160000pt;}
.y39_c02017{bottom:554.560000pt;}
.y3b_c02017{bottom:564.960000pt;}
.y35_c02017{bottom:585.600000pt;}
.y34_c02017{bottom:598.880000pt;}
.y33_c02017{bottom:616.323520pt;}
.y32_c02017{bottom:628.480000pt;}
.y2f_c02017{bottom:638.720000pt;}
.y31_c02017{bottom:653.120000pt;}
.y30_c02017{bottom:655.200000pt;}
.y2b_c02017{bottom:673.120000pt;}
.y2c_c02017{bottom:676.800000pt;}
.y2e_c02017{bottom:687.520000pt;}
.y2d_c02017{bottom:689.600000pt;}
.y27_c02017{bottom:707.520000pt;}
.y28_c02017{bottom:711.200000pt;}
.y2a_c02017{bottom:721.920000pt;}
.y29_c02017{bottom:724.000000pt;}
.y24_c02017{bottom:741.920000pt;}
.y26_c02017{bottom:756.320000pt;}
.y25_c02017{bottom:758.400000pt;}
.y21_c02017{bottom:776.320000pt;}
.y23_c02017{bottom:790.720000pt;}
.y22_c02017{bottom:792.800000pt;}
.y1e_c02017{bottom:810.720000pt;}
.y20_c02017{bottom:825.120000pt;}
.y1f_c02017{bottom:827.200000pt;}
.y1a_c02017{bottom:845.120000pt;}
.y1b_c02017{bottom:848.800000pt;}
.y1d_c02017{bottom:859.520000pt;}
.y1c_c02017{bottom:861.600000pt;}
.y12_c02017{bottom:879.520000pt;}
.y15_c02017{bottom:883.200000pt;}
.y18_c02017{bottom:893.920000pt;}
.y17_c02017{bottom:896.000000pt;}
.yb_c02017{bottom:913.920000pt;}
.y11_c02017{bottom:917.600000pt;}
.ye_c02017{bottom:918.720000pt;}
.yd_c02017{bottom:936.480000pt;}
.ya_c02017{bottom:957.120000pt;}
.y9_c02017{bottom:970.720000pt;}
.y8_c02017{bottom:989.120000pt;}
.y7_c02017{bottom:1008.320000pt;}
.y5_c02017{bottom:1032.000000pt;}
.y1_c02017{bottom:1042.560000pt;}
.y3_c02017{bottom:1045.120000pt;}
.h15_c02017{height:27.520000pt;}
.h19_c02017{height:27.521333pt;}
.h1a_c02017{height:27.678667pt;}
.h18_c02017{height:27.680000pt;}
.h16_c02017{height:31.406250pt;}
.h2_c02017{height:32.160000pt;}
.h13_c02017{height:32.250000pt;}
.h12_c02017{height:33.760000pt;}
.hc_c02017{height:33.761333pt;}
.h9_c02017{height:39.840000pt;}
.h8_c02017{height:42.084375pt;}
.h5_c02017{height:43.215000pt;}
.h4_c02017{height:48.375000pt;}
.he_c02017{height:53.535000pt;}
.h14_c02017{height:55.200000pt;}
.h11_c02017{height:56.732813pt;}
.hd_c02017{height:57.787500pt;}
.hb_c02017{height:59.340000pt;}
.h6_c02017{height:62.812500pt;}
.h3_c02017{height:64.500000pt;}
.hf_c02017{height:73.490625pt;}
.ha_c02017{height:75.465000pt;}
.h10_c02017{height:83.540625pt;}
.h7_c02017{height:85.785000pt;}
.h17_c02017{height:94.218750pt;}
.h0_c02017{height:1122.560000pt;}
.h1_c02017{height:1122.666667pt;}
.w3_c02017{width:37.120000pt;}
.wb_c02017{width:46.560000pt;}
.w6_c02017{width:122.238667pt;}
.w5_c02017{width:150.558667pt;}
.wa_c02017{width:169.280000pt;}
.w8_c02017{width:169.440000pt;}
.w4_c02017{width:339.678667pt;}
.w9_c02017{width:396.318667pt;}
.w2_c02017{width:443.360000pt;}
.w7_c02017{width:443.520000pt;}
.w0_c02017{width:793.760000pt;}
.w1_c02017{width:794.000000pt;}
.x0_c02017{left:0.000000pt;}
.x8_c02017{left:6.880000pt;}
.x32_c02017{left:8.480000pt;}
.x30_c02017{left:12.480000pt;}
.x1d_c02017{left:17.600000pt;}
.x28_c02017{left:29.600000pt;}
.xf_c02017{left:35.040000pt;}
.x10_c02017{left:41.280000pt;}
.x15_c02017{left:42.880000pt;}
.x7_c02017{left:47.520000pt;}
.xb_c02017{left:49.280000pt;}
.x1f_c02017{left:56.960000pt;}
.x2a_c02017{left:70.880000pt;}
.x17_c02017{left:78.880000pt;}
.x6_c02017{left:84.960000pt;}
.x12_c02017{left:92.160000pt;}
.x21_c02017{left:96.640000pt;}
.x2c_c02017{left:112.160000pt;}
.x5_c02017{left:113.440000pt;}
.x19_c02017{left:114.720000pt;}
.x2e_c02017{left:121.600000pt;}
.xd_c02017{left:124.480000pt;}
.x1b_c02017{left:137.280000pt;}
.x2_c02017{left:153.440000pt;}
.x1_c02017{left:198.880000pt;}
.x3_c02017{left:205.600000pt;}
.x23_c02017{left:267.200000pt;}
.x25_c02017{left:276.960000pt;}
.x13_c02017{left:287.360000pt;}
.x24_c02017{left:310.720000pt;}
.x9_c02017{left:379.040000pt;}
.xa_c02017{left:425.600000pt;}
.x4_c02017{left:430.400000pt;}
.x14_c02017{left:448.480000pt;}
.xc_c02017{left:451.520000pt;}
.x2f_c02017{left:482.400000pt;}
.x16_c02017{left:484.480000pt;}
.x35_c02017{left:505.120000pt;}
.x18_c02017{left:520.480000pt;}
.x26_c02017{left:529.600000pt;}
.x36_c02017{left:546.400000pt;}
.x27_c02017{left:552.480000pt;}
.x1a_c02017{left:556.320000pt;}
.xe_c02017{left:576.800000pt;}
.x1c_c02017{left:583.680000pt;}
.x37_c02017{left:587.680000pt;}
.x29_c02017{left:593.760000pt;}
.x1e_c02017{left:623.040000pt;}
.x11_c02017{left:626.080000pt;}
.x38_c02017{left:628.960000pt;}
.x2b_c02017{left:635.040000pt;}
.x31_c02017{left:652.480000pt;}
.x34_c02017{left:659.200000pt;}
.x20_c02017{left:662.560000pt;}
.x33_c02017{left:670.880000pt;}
.x2d_c02017{left:676.320000pt;}
.x22_c02017{left:686.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_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_238142c1c18f0fef8d56bdb2.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;}
@font-face{font-family:ff2_c02018;src:url('chunks/assets/font_771f2dadf329b88b87681c35.woff2')format("woff");}.ff2_c02018{font-family:ff2_c02018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02018;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02018{font-family:ff3_c02018;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_c02018;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff4_c02018{font-family:ff4_c02018;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:ff5_c02018;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff5_c02018{font-family:ff5_c02018;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;}
.m0_c02018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02018{vertical-align:-45.360000px;}
.v0_c02018{vertical-align:0.000000px;}
.ls12_c02018{letter-spacing:-0.758160px;}
.ls11_c02018{letter-spacing:-0.336960px;}
.lsd_c02018{letter-spacing:-0.288000px;}
.lsb_c02018{letter-spacing:-0.216000px;}
.ls10_c02018{letter-spacing:-0.168480px;}
.lsf_c02018{letter-spacing:-0.144000px;}
.ls13_c02018{letter-spacing:-0.132480px;}
.lsa_c02018{letter-spacing:-0.108000px;}
.ls9_c02018{letter-spacing:0.000000px;}
.ls7_c02018{letter-spacing:0.132480px;}
.ls3_c02018{letter-spacing:0.144000px;}
.ls0_c02018{letter-spacing:0.162000px;}
.ls14_c02018{letter-spacing:0.192960px;}
.ls5_c02018{letter-spacing:0.239040px;}
.ls15_c02018{letter-spacing:0.264960px;}
.lse_c02018{letter-spacing:0.288000px;}
.ls8_c02018{letter-spacing:0.337680px;}
.lsc_c02018{letter-spacing:0.383040px;}
.ls4_c02018{letter-spacing:0.385920px;}
.ls6_c02018{letter-spacing:0.480960px;}
.ls2_c02018{letter-spacing:6.480000px;}
.ls1_c02018{letter-spacing:2695.680000px;}
.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:-23.940000px;}
.ws4_c02018{word-spacing:-20.723040px;}
.ws5_c02018{word-spacing:-20.301840px;}
.ws3_c02018{word-spacing:-17.856000px;}
.ws2_c02018{word-spacing:-17.712000px;}
.ws8_c02018{word-spacing:-16.560000px;}
.ws6_c02018{word-spacing:-16.427520px;}
.ws0_c02018{word-spacing:-13.392000px;}
.ws7_c02018{word-spacing:-12.252960px;}
.ws1d_c02018{word-spacing:-0.861120px;}
.ws1e_c02018{word-spacing:-0.728640px;}
.ws1c_c02018{word-spacing:-0.596160px;}
.wsb_c02018{word-spacing:-0.383040px;}
.ws1f_c02018{word-spacing:-0.264960px;}
.ws16_c02018{word-spacing:-0.192960px;}
.ws19_c02018{word-spacing:-0.191520px;}
.ws18_c02018{word-spacing:-0.168480px;}
.wsf_c02018{word-spacing:-0.144000px;}
.ws1a_c02018{word-spacing:-0.132480px;}
.ws9_c02018{word-spacing:0.000000px;}
.ws17_c02018{word-spacing:0.132480px;}
.ws15_c02018{word-spacing:0.168480px;}
.ws1b_c02018{word-spacing:0.192960px;}
.ws11_c02018{word-spacing:0.288000px;}
.wsa_c02018{word-spacing:0.378000px;}
.ws14_c02018{word-spacing:4.176000px;}
.ws10_c02018{word-spacing:4.320000px;}
.wsc_c02018{word-spacing:6.480000px;}
.wse_c02018{word-spacing:6.768000px;}
.ws13_c02018{word-spacing:9.072000px;}
.ws12_c02018{word-spacing:9.360000px;}
.wsd_c02018{word-spacing:28.800000px;}
._1_c02018{margin-left:-1.080000px;}
._0_c02018{width:1.026000px;}
._2_c02018{width:2.106000px;}
._3_c02018{width:9.540000px;}
.fc1_c02018{color:rgb(140,140,140);}
.fc0_c02018{color:rgb(0,0,0);}
.fs4_c02018{font-size:36.000000px;}
.fs2_c02018{font-size:48.240000px;}
.fs1_c02018{font-size:54.000000px;}
.fs7_c02018{font-size:59.760000px;}
.fs6_c02018{font-size:66.240000px;}
.fs0_c02018{font-size:72.000000px;}
.fs5_c02018{font-size:84.240000px;}
.fs3_c02018{font-size:95.760000px;}
.y0_c02018{bottom:0.000000px;}
.y17_c02018{bottom:2.700000px;}
.y4_c02018{bottom:2.880000px;}
.y1c_c02018{bottom:5.760000px;}
.y27_c02018{bottom:5.940000px;}
.y1a_c02018{bottom:8.100000px;}
.y25_c02018{bottom:8.280000px;}
.y19_c02018{bottom:12.240000px;}
.y24_c02018{bottom:12.420000px;}
.y2_c02018{bottom:19.620000px;}
.y14_c02018{bottom:27.000000px;}
.y44_c02018{bottom:27.180000px;}
.y13_c02018{bottom:29.880000px;}
.y43_c02018{bottom:30.060000px;}
.y15_c02018{bottom:31.140000px;}
.y45_c02018{bottom:31.320000px;}
.y6_c02018{bottom:57.600000px;}
.y55_c02018{bottom:109.260000px;}
.y56_c02018{bottom:117.540000px;}
.y53_c02018{bottom:137.700000px;}
.y54_c02018{bottom:145.800000px;}
.y51_c02018{bottom:165.960000px;}
.y52_c02018{bottom:174.240000px;}
.y4f_c02018{bottom:194.400000px;}
.y50_c02018{bottom:202.500000px;}
.y4d_c02018{bottom:222.660000px;}
.y4e_c02018{bottom:230.940000px;}
.y4b_c02018{bottom:251.100000px;}
.y4c_c02018{bottom:259.200000px;}
.y49_c02018{bottom:279.360000px;}
.y4a_c02018{bottom:287.640000px;}
.y47_c02018{bottom:307.800000px;}
.y48_c02018{bottom:315.900000px;}
.y42_c02018{bottom:336.060000px;}
.y46_c02018{bottom:352.800000px;}
.y41_c02018{bottom:385.740000px;}
.y40_c02018{bottom:396.000000px;}
.y3e_c02018{bottom:404.820000px;}
.y3f_c02018{bottom:413.100000px;}
.y3c_c02018{bottom:433.260000px;}
.y3d_c02018{bottom:441.360000px;}
.y3a_c02018{bottom:461.520000px;}
.y3b_c02018{bottom:469.800000px;}
.y38_c02018{bottom:489.960000px;}
.y39_c02018{bottom:498.060000px;}
.y36_c02018{bottom:518.220000px;}
.y37_c02018{bottom:526.500000px;}
.y34_c02018{bottom:546.660000px;}
.y35_c02018{bottom:554.760000px;}
.y32_c02018{bottom:574.920000px;}
.y33_c02018{bottom:583.200000px;}
.y30_c02018{bottom:603.360000px;}
.y31_c02018{bottom:619.920000px;}
.y2f_c02018{bottom:652.860000px;}
.y2e_c02018{bottom:663.300000px;}
.y2c_c02018{bottom:672.120000px;}
.y2d_c02018{bottom:680.220000px;}
.y2a_c02018{bottom:700.380000px;}
.y2b_c02018{bottom:708.660000px;}
.y28_c02018{bottom:728.820000px;}
.y29_c02018{bottom:736.920000px;}
.y23_c02018{bottom:757.080000px;}
.y26_c02018{bottom:765.360000px;}
.y21_c02018{bottom:785.520000px;}
.y22_c02018{bottom:793.620000px;}
.y1f_c02018{bottom:813.780000px;}
.y20_c02018{bottom:821.880000px;}
.y1d_c02018{bottom:842.220000px;}
.y1e_c02018{bottom:850.320000px;}
.y18_c02018{bottom:870.480000px;}
.y1b_c02018{bottom:878.580000px;}
.y12_c02018{bottom:898.920000px;}
.y16_c02018{bottom:915.480000px;}
.y11_c02018{bottom:949.143060px;}
.y10_c02018{bottom:963.000000px;}
.yf_c02018{bottom:978.300000px;}
.ye_c02018{bottom:999.000000px;}
.yd_c02018{bottom:1019.700000px;}
.yc_c02018{bottom:1038.060000px;}
.yb_c02018{bottom:1050.660000px;}
.ya_c02018{bottom:1071.360000px;}
.y9_c02018{bottom:1092.060000px;}
.y8_c02018{bottom:1112.760000px;}
.y7_c02018{bottom:1134.360000px;}
.y5_c02018{bottom:1161.000000px;}
.y1_c02018{bottom:1172.880000px;}
.y3_c02018{bottom:1175.760000px;}
.hd_c02018{height:27.540000px;}
.h11_c02018{height:27.720000px;}
.h14_c02018{height:27.721500px;}
.h8_c02018{height:35.332031px;}
.h2_c02018{height:36.180000px;}
.h12_c02018{height:37.546875px;}
.hb_c02018{height:46.440000px;}
.h13_c02018{height:46.621500px;}
.h9_c02018{height:47.344922px;}
.h5_c02018{height:48.616875px;}
.ha_c02018{height:50.312812px;}
.h4_c02018{height:54.421875px;}
.he_c02018{height:60.226875px;}
.h6_c02018{height:70.664062px;}
.h3_c02018{height:72.562500px;}
.hf_c02018{height:82.676953px;}
.hc_c02018{height:84.898125px;}
.h10_c02018{height:93.983203px;}
.h7_c02018{height:96.508125px;}
.h0_c02018{height:1262.880000px;}
.h1_c02018{height:1263.000000px;}
.w3_c02018{width:41.760000px;}
.w6_c02018{width:52.380000px;}
.w5_c02018{width:190.620000px;}
.w4_c02018{width:445.681500px;}
.w2_c02018{width:498.780000px;}
.w0_c02018{width:892.980000px;}
.w1_c02018{width:893.250000px;}
.x0_c02018{left:0.000000px;}
.x8_c02018{left:7.560000px;}
.xd_c02018{left:9.900000px;}
.xb_c02018{left:10.980000px;}
.xf_c02018{left:33.300000px;}
.x11_c02018{left:79.740000px;}
.x7_c02018{left:106.740000px;}
.x13_c02018{left:126.180000px;}
.x5_c02018{left:127.620000px;}
.x6_c02018{left:148.860000px;}
.x2_c02018{left:172.620000px;}
.x1_c02018{left:223.740000px;}
.x3_c02018{left:231.300000px;}
.x4_c02018{left:484.200000px;}
.x9_c02018{left:595.800000px;}
.xe_c02018{left:621.540000px;}
.x10_c02018{left:667.980000px;}
.x12_c02018{left:714.420000px;}
.x14_c02018{left:760.860000px;}
.xa_c02018{left:787.140000px;}
.xc_c02018{left:810.180000px;}
@media print{
.v1_c02018{vertical-align:-40.320000pt;}
.v0_c02018{vertical-align:0.000000pt;}
.ls12_c02018{letter-spacing:-0.673920pt;}
.ls11_c02018{letter-spacing:-0.299520pt;}
.lsd_c02018{letter-spacing:-0.256000pt;}
.lsb_c02018{letter-spacing:-0.192000pt;}
.ls10_c02018{letter-spacing:-0.149760pt;}
.lsf_c02018{letter-spacing:-0.128000pt;}
.ls13_c02018{letter-spacing:-0.117760pt;}
.lsa_c02018{letter-spacing:-0.096000pt;}
.ls9_c02018{letter-spacing:0.000000pt;}
.ls7_c02018{letter-spacing:0.117760pt;}
.ls3_c02018{letter-spacing:0.128000pt;}
.ls0_c02018{letter-spacing:0.144000pt;}
.ls14_c02018{letter-spacing:0.171520pt;}
.ls5_c02018{letter-spacing:0.212480pt;}
.ls15_c02018{letter-spacing:0.235520pt;}
.lse_c02018{letter-spacing:0.256000pt;}
.ls8_c02018{letter-spacing:0.300160pt;}
.lsc_c02018{letter-spacing:0.340480pt;}
.ls4_c02018{letter-spacing:0.343040pt;}
.ls6_c02018{letter-spacing:0.427520pt;}
.ls2_c02018{letter-spacing:5.760000pt;}
.ls1_c02018{letter-spacing:2396.160000pt;}
.ws1_c02018{word-spacing:-21.280000pt;}
.ws4_c02018{word-spacing:-18.420480pt;}
.ws5_c02018{word-spacing:-18.046080pt;}
.ws3_c02018{word-spacing:-15.872000pt;}
.ws2_c02018{word-spacing:-15.744000pt;}
.ws8_c02018{word-spacing:-14.720000pt;}
.ws6_c02018{word-spacing:-14.602240pt;}
.ws0_c02018{word-spacing:-11.904000pt;}
.ws7_c02018{word-spacing:-10.891520pt;}
.ws1d_c02018{word-spacing:-0.765440pt;}
.ws1e_c02018{word-spacing:-0.647680pt;}
.ws1c_c02018{word-spacing:-0.529920pt;}
.wsb_c02018{word-spacing:-0.340480pt;}
.ws1f_c02018{word-spacing:-0.235520pt;}
.ws16_c02018{word-spacing:-0.171520pt;}
.ws19_c02018{word-spacing:-0.170240pt;}
.ws18_c02018{word-spacing:-0.149760pt;}
.wsf_c02018{word-spacing:-0.128000pt;}
.ws1a_c02018{word-spacing:-0.117760pt;}
.ws9_c02018{word-spacing:0.000000pt;}
.ws17_c02018{word-spacing:0.117760pt;}
.ws15_c02018{word-spacing:0.149760pt;}
.ws1b_c02018{word-spacing:0.171520pt;}
.ws11_c02018{word-spacing:0.256000pt;}
.wsa_c02018{word-spacing:0.336000pt;}
.ws14_c02018{word-spacing:3.712000pt;}
.ws10_c02018{word-spacing:3.840000pt;}
.wsc_c02018{word-spacing:5.760000pt;}
.wse_c02018{word-spacing:6.016000pt;}
.ws13_c02018{word-spacing:8.064000pt;}
.ws12_c02018{word-spacing:8.320000pt;}
.wsd_c02018{word-spacing:25.600000pt;}
._1_c02018{margin-left:-0.960000pt;}
._0_c02018{width:0.912000pt;}
._2_c02018{width:1.872000pt;}
._3_c02018{width:8.480000pt;}
.fs4_c02018{font-size:32.000000pt;}
.fs2_c02018{font-size:42.880000pt;}
.fs1_c02018{font-size:48.000000pt;}
.fs7_c02018{font-size:53.120000pt;}
.fs6_c02018{font-size:58.880000pt;}
.fs0_c02018{font-size:64.000000pt;}
.fs5_c02018{font-size:74.880000pt;}
.fs3_c02018{font-size:85.120000pt;}
.y0_c02018{bottom:0.000000pt;}
.y17_c02018{bottom:2.400000pt;}
.y4_c02018{bottom:2.560000pt;}
.y1c_c02018{bottom:5.120000pt;}
.y27_c02018{bottom:5.280000pt;}
.y1a_c02018{bottom:7.200000pt;}
.y25_c02018{bottom:7.360000pt;}
.y19_c02018{bottom:10.880000pt;}
.y24_c02018{bottom:11.040000pt;}
.y2_c02018{bottom:17.440000pt;}
.y14_c02018{bottom:24.000000pt;}
.y44_c02018{bottom:24.160000pt;}
.y13_c02018{bottom:26.560000pt;}
.y43_c02018{bottom:26.720000pt;}
.y15_c02018{bottom:27.680000pt;}
.y45_c02018{bottom:27.840000pt;}
.y6_c02018{bottom:51.200000pt;}
.y55_c02018{bottom:97.120000pt;}
.y56_c02018{bottom:104.480000pt;}
.y53_c02018{bottom:122.400000pt;}
.y54_c02018{bottom:129.600000pt;}
.y51_c02018{bottom:147.520000pt;}
.y52_c02018{bottom:154.880000pt;}
.y4f_c02018{bottom:172.800000pt;}
.y50_c02018{bottom:180.000000pt;}
.y4d_c02018{bottom:197.920000pt;}
.y4e_c02018{bottom:205.280000pt;}
.y4b_c02018{bottom:223.200000pt;}
.y4c_c02018{bottom:230.400000pt;}
.y49_c02018{bottom:248.320000pt;}
.y4a_c02018{bottom:255.680000pt;}
.y47_c02018{bottom:273.600000pt;}
.y48_c02018{bottom:280.800000pt;}
.y42_c02018{bottom:298.720000pt;}
.y46_c02018{bottom:313.600000pt;}
.y41_c02018{bottom:342.880000pt;}
.y40_c02018{bottom:352.000000pt;}
.y3e_c02018{bottom:359.840000pt;}
.y3f_c02018{bottom:367.200000pt;}
.y3c_c02018{bottom:385.120000pt;}
.y3d_c02018{bottom:392.320000pt;}
.y3a_c02018{bottom:410.240000pt;}
.y3b_c02018{bottom:417.600000pt;}
.y38_c02018{bottom:435.520000pt;}
.y39_c02018{bottom:442.720000pt;}
.y36_c02018{bottom:460.640000pt;}
.y37_c02018{bottom:468.000000pt;}
.y34_c02018{bottom:485.920000pt;}
.y35_c02018{bottom:493.120000pt;}
.y32_c02018{bottom:511.040000pt;}
.y33_c02018{bottom:518.400000pt;}
.y30_c02018{bottom:536.320000pt;}
.y31_c02018{bottom:551.040000pt;}
.y2f_c02018{bottom:580.320000pt;}
.y2e_c02018{bottom:589.600000pt;}
.y2c_c02018{bottom:597.440000pt;}
.y2d_c02018{bottom:604.640000pt;}
.y2a_c02018{bottom:622.560000pt;}
.y2b_c02018{bottom:629.920000pt;}
.y28_c02018{bottom:647.840000pt;}
.y29_c02018{bottom:655.040000pt;}
.y23_c02018{bottom:672.960000pt;}
.y26_c02018{bottom:680.320000pt;}
.y21_c02018{bottom:698.240000pt;}
.y22_c02018{bottom:705.440000pt;}
.y1f_c02018{bottom:723.360000pt;}
.y20_c02018{bottom:730.560000pt;}
.y1d_c02018{bottom:748.640000pt;}
.y1e_c02018{bottom:755.840000pt;}
.y18_c02018{bottom:773.760000pt;}
.y1b_c02018{bottom:780.960000pt;}
.y12_c02018{bottom:799.040000pt;}
.y16_c02018{bottom:813.760000pt;}
.y11_c02018{bottom:843.682720pt;}
.y10_c02018{bottom:856.000000pt;}
.yf_c02018{bottom:869.600000pt;}
.ye_c02018{bottom:888.000000pt;}
.yd_c02018{bottom:906.400000pt;}
.yc_c02018{bottom:922.720000pt;}
.yb_c02018{bottom:933.920000pt;}
.ya_c02018{bottom:952.320000pt;}
.y9_c02018{bottom:970.720000pt;}
.y8_c02018{bottom:989.120000pt;}
.y7_c02018{bottom:1008.320000pt;}
.y5_c02018{bottom:1032.000000pt;}
.y1_c02018{bottom:1042.560000pt;}
.y3_c02018{bottom:1045.120000pt;}
.hd_c02018{height:24.480000pt;}
.h11_c02018{height:24.640000pt;}
.h14_c02018{height:24.641333pt;}
.h8_c02018{height:31.406250pt;}
.h2_c02018{height:32.160000pt;}
.h12_c02018{height:33.375000pt;}
.hb_c02018{height:41.280000pt;}
.h13_c02018{height:41.441333pt;}
.h9_c02018{height:42.084375pt;}
.h5_c02018{height:43.215000pt;}
.ha_c02018{height:44.722500pt;}
.h4_c02018{height:48.375000pt;}
.he_c02018{height:53.535000pt;}
.h6_c02018{height:62.812500pt;}
.h3_c02018{height:64.500000pt;}
.hf_c02018{height:73.490625pt;}
.hc_c02018{height:75.465000pt;}
.h10_c02018{height:83.540625pt;}
.h7_c02018{height:85.785000pt;}
.h0_c02018{height:1122.560000pt;}
.h1_c02018{height:1122.666667pt;}
.w3_c02018{width:37.120000pt;}
.w6_c02018{width:46.560000pt;}
.w5_c02018{width:169.440000pt;}
.w4_c02018{width:396.161333pt;}
.w2_c02018{width:443.360000pt;}
.w0_c02018{width:793.760000pt;}
.w1_c02018{width:794.000000pt;}
.x0_c02018{left:0.000000pt;}
.x8_c02018{left:6.720000pt;}
.xd_c02018{left:8.800000pt;}
.xb_c02018{left:9.760000pt;}
.xf_c02018{left:29.600000pt;}
.x11_c02018{left:70.880000pt;}
.x7_c02018{left:94.880000pt;}
.x13_c02018{left:112.160000pt;}
.x5_c02018{left:113.440000pt;}
.x6_c02018{left:132.320000pt;}
.x2_c02018{left:153.440000pt;}
.x1_c02018{left:198.880000pt;}
.x3_c02018{left:205.600000pt;}
.x4_c02018{left:430.400000pt;}
.x9_c02018{left:529.600000pt;}
.xe_c02018{left:552.480000pt;}
.x10_c02018{left:593.760000pt;}
.x12_c02018{left:635.040000pt;}
.x14_c02018{left:676.320000pt;}
.xa_c02018{left:699.680000pt;}
.xc_c02018{left:720.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_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_77a964a771df48e62371f404.woff2')format("woff");}.ff1_c02019{font-family:ff1_c02019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02019;src:url('chunks/assets/font_ab2ad70359e40a9716f7c7a5.woff2')format("woff");}.ff2_c02019{font-family:ff2_c02019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02019;src:url('chunks/assets/font_a874a94eed35b55372ba58e8.woff2')format("woff");}.ff3_c02019{font-family:ff3_c02019;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;}
.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);}
.v2_c02019{vertical-align:-61.240320px;}
.v1_c02019{vertical-align:-45.360000px;}
.v0_c02019{vertical-align:0.000000px;}
.ls13_c02019{letter-spacing:-0.861120px;}
.lsf_c02019{letter-spacing:-0.336960px;}
.lsb_c02019{letter-spacing:-0.288000px;}
.ls9_c02019{letter-spacing:-0.216000px;}
.ls12_c02019{letter-spacing:-0.132480px;}
.ls8_c02019{letter-spacing:-0.108000px;}
.ls11_c02019{letter-spacing:-0.084240px;}
.ls7_c02019{letter-spacing:0.000000px;}
.lse_c02019{letter-spacing:0.119520px;}
.ls6_c02019{letter-spacing:0.132480px;}
.ls3_c02019{letter-spacing:0.144000px;}
.ls0_c02019{letter-spacing:0.162000px;}
.ls5_c02019{letter-spacing:0.239040px;}
.ls14_c02019{letter-spacing:0.264960px;}
.lsc_c02019{letter-spacing:0.324000px;}
.ls10_c02019{letter-spacing:0.336960px;}
.lsd_c02019{letter-spacing:0.358560px;}
.lsa_c02019{letter-spacing:0.383040px;}
.ls2_c02019{letter-spacing:0.720000px;}
.ls4_c02019{letter-spacing:95.940000px;}
.ls1_c02019{letter-spacing:2677.680000px;}
.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:-23.940000px;}
.ws3_c02019{word-spacing:-20.975760px;}
.ws2_c02019{word-spacing:-20.723040px;}
.ws4_c02019{word-spacing:-16.560000px;}
.ws0_c02019{word-spacing:-13.392000px;}
.ws18_c02019{word-spacing:-0.861120px;}
.ws19_c02019{word-spacing:-0.728640px;}
.wsd_c02019{word-spacing:-0.720000px;}
.ws17_c02019{word-spacing:-0.596160px;}
.ws12_c02019{word-spacing:-0.505440px;}
.ws7_c02019{word-spacing:-0.383040px;}
.wsf_c02019{word-spacing:-0.324000px;}
.ws1a_c02019{word-spacing:-0.264960px;}
.ws10_c02019{word-spacing:-0.179280px;}
.ws14_c02019{word-spacing:-0.168480px;}
.ws15_c02019{word-spacing:-0.132480px;}
.ws5_c02019{word-spacing:0.000000px;}
.ws11_c02019{word-spacing:0.059760px;}
.ws13_c02019{word-spacing:0.132480px;}
.wsa_c02019{word-spacing:0.288000px;}
.ws6_c02019{word-spacing:0.378000px;}
.ws8_c02019{word-spacing:0.720000px;}
.ws16_c02019{word-spacing:0.861120px;}
.ws9_c02019{word-spacing:1.008000px;}
.wse_c02019{word-spacing:2.736000px;}
.wsc_c02019{word-spacing:2.880000px;}
.wsb_c02019{word-spacing:5.328000px;}
._6_c02019{margin-left:-2.292480px;}
._1_c02019{margin-left:-1.018080px;}
._0_c02019{width:1.026000px;}
._5_c02019{width:2.088000px;}
._4_c02019{width:3.528000px;}
._3_c02019{width:4.618080px;}
._2_c02019{width:6.642000px;}
.fc1_c02019{color:rgb(140,140,140);}
.fc0_c02019{color:rgb(0,0,0);}
.fs8_c02019{font-size:36.000000px;}
.fs2_c02019{font-size:48.240000px;}
.fs1_c02019{font-size:54.000000px;}
.fs6_c02019{font-size:59.760000px;}
.fs5_c02019{font-size:66.240000px;}
.fs0_c02019{font-size:72.000000px;}
.fs7_c02019{font-size:84.240000px;}
.fs3_c02019{font-size:95.760000px;}
.fs4_c02019{font-size:108.000000px;}
.y0_c02019{bottom:0.000000px;}
.y1e_c02019{bottom:1.980000px;}
.y4c_c02019{bottom:2.160000px;}
.y4_c02019{bottom:2.880000px;}
.y1b_c02019{bottom:4.680000px;}
.y25_c02019{bottom:9.720000px;}
.y1f_c02019{bottom:9.900000px;}
.y24_c02019{bottom:13.860000px;}
.y1d_c02019{bottom:14.040000px;}
.y2_c02019{bottom:19.620000px;}
.y6_c02019{bottom:57.600000px;}
.y5a_c02019{bottom:124.740000px;}
.y57_c02019{bottom:136.440000px;}
.y58_c02019{bottom:138.600000px;}
.y59_c02019{bottom:146.340000px;}
.y54_c02019{bottom:166.500000px;}
.y55_c02019{bottom:168.660000px;}
.y56_c02019{bottom:176.400000px;}
.y52_c02019{bottom:196.560000px;}
.y53_c02019{bottom:206.460000px;}
.y50_c02019{bottom:226.620000px;}
.y51_c02019{bottom:236.520000px;}
.y4e_c02019{bottom:256.680000px;}
.y4f_c02019{bottom:266.580000px;}
.y4b_c02019{bottom:286.740000px;}
.y4d_c02019{bottom:296.640000px;}
.y49_c02019{bottom:316.980000px;}
.y4a_c02019{bottom:326.700000px;}
.y47_c02019{bottom:347.040000px;}
.y48_c02019{bottom:356.940000px;}
.y45_c02019{bottom:377.100000px;}
.y46_c02019{bottom:387.000000px;}
.y43_c02019{bottom:407.160000px;}
.y44_c02019{bottom:417.060000px;}
.y41_c02019{bottom:437.220000px;}
.y42_c02019{bottom:447.120000px;}
.y3f_c02019{bottom:467.280000px;}
.y40_c02019{bottom:477.180000px;}
.y3c_c02019{bottom:497.340000px;}
.y3d_c02019{bottom:499.320000px;}
.y3e_c02019{bottom:507.240000px;}
.y39_c02019{bottom:527.400000px;}
.y3a_c02019{bottom:529.560000px;}
.y3b_c02019{bottom:537.300000px;}
.y36_c02019{bottom:557.460000px;}
.y37_c02019{bottom:559.620000px;}
.y38_c02019{bottom:567.360000px;}
.y33_c02019{bottom:587.520000px;}
.y34_c02019{bottom:589.680000px;}
.y35_c02019{bottom:597.420000px;}
.y30_c02019{bottom:617.580000px;}
.y31_c02019{bottom:619.740000px;}
.y32_c02019{bottom:627.480000px;}
.y2d_c02019{bottom:647.640000px;}
.y2e_c02019{bottom:649.800000px;}
.y2f_c02019{bottom:657.540000px;}
.y2a_c02019{bottom:677.700000px;}
.y2b_c02019{bottom:679.860000px;}
.y2c_c02019{bottom:687.600000px;}
.y27_c02019{bottom:707.760000px;}
.y28_c02019{bottom:709.920000px;}
.y29_c02019{bottom:717.660000px;}
.y23_c02019{bottom:738.000000px;}
.y26_c02019{bottom:747.720000px;}
.y21_c02019{bottom:768.060000px;}
.y22_c02019{bottom:777.960000px;}
.y1c_c02019{bottom:798.120000px;}
.y20_c02019{bottom:808.020000px;}
.y1a_c02019{bottom:828.180000px;}
.y19_c02019{bottom:856.094040px;}
.y18_c02019{bottom:869.770080px;}
.y17_c02019{bottom:883.627020px;}
.y16_c02019{bottom:897.483960px;}
.y15_c02019{bottom:911.160000px;}
.y14_c02019{bottom:925.200000px;}
.y13_c02019{bottom:939.420000px;}
.y12_c02019{bottom:950.220000px;}
.y11_c02019{bottom:964.440000px;}
.y10_c02019{bottom:975.060000px;}
.yf_c02019{bottom:989.280000px;}
.ye_c02019{bottom:1014.670080px;}
.yd_c02019{bottom:1028.527020px;}
.yc_c02019{bottom:1042.383960px;}
.yb_c02019{bottom:1056.060000px;}
.ya_c02019{bottom:1071.360000px;}
.y9_c02019{bottom:1092.060000px;}
.y8_c02019{bottom:1112.760000px;}
.y7_c02019{bottom:1134.360000px;}
.y5_c02019{bottom:1161.000000px;}
.y1_c02019{bottom:1172.880000px;}
.y3_c02019{bottom:1175.760000px;}
.hc_c02019{height:24.118500px;}
.h12_c02019{height:29.160000px;}
.he_c02019{height:29.340000px;}
.h11_c02019{height:29.341500px;}
.h2_c02019{height:36.180000px;}
.hf_c02019{height:36.281250px;}
.h8_c02019{height:47.344922px;}
.h5_c02019{height:48.616875px;}
.h4_c02019{height:54.421875px;}
.h9_c02019{height:60.226875px;}
.hb_c02019{height:66.757500px;}
.h6_c02019{height:70.664062px;}
.ha_c02019{height:71.982422px;}
.h3_c02019{height:72.562500px;}
.h10_c02019{height:82.676953px;}
.hd_c02019{height:84.898125px;}
.h7_c02019{height:96.508125px;}
.h0_c02019{height:1262.880000px;}
.h1_c02019{height:1263.000000px;}
.w3_c02019{width:41.760000px;}
.w5_c02019{width:211.860000px;}
.w4_c02019{width:477.900000px;}
.w2_c02019{width:498.780000px;}
.w0_c02019{width:892.980000px;}
.w1_c02019{width:893.250000px;}
.x0_c02019{left:0.000000px;}
.x9_c02019{left:7.740000px;}
.xc_c02019{left:33.300000px;}
.x8_c02019{left:53.460000px;}
.xe_c02019{left:90.180000px;}
.x6_c02019{left:95.580000px;}
.x13_c02019{left:103.680000px;}
.x5_c02019{left:127.620000px;}
.x10_c02019{left:147.060000px;}
.x7_c02019{left:154.620000px;}
.x2_c02019{left:172.620000px;}
.x12_c02019{left:203.940000px;}
.x1_c02019{left:223.740000px;}
.x3_c02019{left:231.300000px;}
.x4_c02019{left:484.200000px;}
.xa_c02019{left:574.560000px;}
.xb_c02019{left:600.300000px;}
.xd_c02019{left:657.180000px;}
.xf_c02019{left:714.060000px;}
.x11_c02019{left:770.940000px;}
@media print{
.v2_c02019{vertical-align:-54.435840pt;}
.v1_c02019{vertical-align:-40.320000pt;}
.v0_c02019{vertical-align:0.000000pt;}
.ls13_c02019{letter-spacing:-0.765440pt;}
.lsf_c02019{letter-spacing:-0.299520pt;}
.lsb_c02019{letter-spacing:-0.256000pt;}
.ls9_c02019{letter-spacing:-0.192000pt;}
.ls12_c02019{letter-spacing:-0.117760pt;}
.ls8_c02019{letter-spacing:-0.096000pt;}
.ls11_c02019{letter-spacing:-0.074880pt;}
.ls7_c02019{letter-spacing:0.000000pt;}
.lse_c02019{letter-spacing:0.106240pt;}
.ls6_c02019{letter-spacing:0.117760pt;}
.ls3_c02019{letter-spacing:0.128000pt;}
.ls0_c02019{letter-spacing:0.144000pt;}
.ls5_c02019{letter-spacing:0.212480pt;}
.ls14_c02019{letter-spacing:0.235520pt;}
.lsc_c02019{letter-spacing:0.288000pt;}
.ls10_c02019{letter-spacing:0.299520pt;}
.lsd_c02019{letter-spacing:0.318720pt;}
.lsa_c02019{letter-spacing:0.340480pt;}
.ls2_c02019{letter-spacing:0.640000pt;}
.ls4_c02019{letter-spacing:85.280000pt;}
.ls1_c02019{letter-spacing:2380.160000pt;}
.ws1_c02019{word-spacing:-21.280000pt;}
.ws3_c02019{word-spacing:-18.645120pt;}
.ws2_c02019{word-spacing:-18.420480pt;}
.ws4_c02019{word-spacing:-14.720000pt;}
.ws0_c02019{word-spacing:-11.904000pt;}
.ws18_c02019{word-spacing:-0.765440pt;}
.ws19_c02019{word-spacing:-0.647680pt;}
.wsd_c02019{word-spacing:-0.640000pt;}
.ws17_c02019{word-spacing:-0.529920pt;}
.ws12_c02019{word-spacing:-0.449280pt;}
.ws7_c02019{word-spacing:-0.340480pt;}
.wsf_c02019{word-spacing:-0.288000pt;}
.ws1a_c02019{word-spacing:-0.235520pt;}
.ws10_c02019{word-spacing:-0.159360pt;}
.ws14_c02019{word-spacing:-0.149760pt;}
.ws15_c02019{word-spacing:-0.117760pt;}
.ws5_c02019{word-spacing:0.000000pt;}
.ws11_c02019{word-spacing:0.053120pt;}
.ws13_c02019{word-spacing:0.117760pt;}
.wsa_c02019{word-spacing:0.256000pt;}
.ws6_c02019{word-spacing:0.336000pt;}
.ws8_c02019{word-spacing:0.640000pt;}
.ws16_c02019{word-spacing:0.765440pt;}
.ws9_c02019{word-spacing:0.896000pt;}
.wse_c02019{word-spacing:2.432000pt;}
.wsc_c02019{word-spacing:2.560000pt;}
.wsb_c02019{word-spacing:4.736000pt;}
._6_c02019{margin-left:-2.037760pt;}
._1_c02019{margin-left:-0.904960pt;}
._0_c02019{width:0.912000pt;}
._5_c02019{width:1.856000pt;}
._4_c02019{width:3.136000pt;}
._3_c02019{width:4.104960pt;}
._2_c02019{width:5.904000pt;}
.fs8_c02019{font-size:32.000000pt;}
.fs2_c02019{font-size:42.880000pt;}
.fs1_c02019{font-size:48.000000pt;}
.fs6_c02019{font-size:53.120000pt;}
.fs5_c02019{font-size:58.880000pt;}
.fs0_c02019{font-size:64.000000pt;}
.fs7_c02019{font-size:74.880000pt;}
.fs3_c02019{font-size:85.120000pt;}
.fs4_c02019{font-size:96.000000pt;}
.y0_c02019{bottom:0.000000pt;}
.y1e_c02019{bottom:1.760000pt;}
.y4c_c02019{bottom:1.920000pt;}
.y4_c02019{bottom:2.560000pt;}
.y1b_c02019{bottom:4.160000pt;}
.y25_c02019{bottom:8.640000pt;}
.y1f_c02019{bottom:8.800000pt;}
.y24_c02019{bottom:12.320000pt;}
.y1d_c02019{bottom:12.480000pt;}
.y2_c02019{bottom:17.440000pt;}
.y6_c02019{bottom:51.200000pt;}
.y5a_c02019{bottom:110.880000pt;}
.y57_c02019{bottom:121.280000pt;}
.y58_c02019{bottom:123.200000pt;}
.y59_c02019{bottom:130.080000pt;}
.y54_c02019{bottom:148.000000pt;}
.y55_c02019{bottom:149.920000pt;}
.y56_c02019{bottom:156.800000pt;}
.y52_c02019{bottom:174.720000pt;}
.y53_c02019{bottom:183.520000pt;}
.y50_c02019{bottom:201.440000pt;}
.y51_c02019{bottom:210.240000pt;}
.y4e_c02019{bottom:228.160000pt;}
.y4f_c02019{bottom:236.960000pt;}
.y4b_c02019{bottom:254.880000pt;}
.y4d_c02019{bottom:263.680000pt;}
.y49_c02019{bottom:281.760000pt;}
.y4a_c02019{bottom:290.400000pt;}
.y47_c02019{bottom:308.480000pt;}
.y48_c02019{bottom:317.280000pt;}
.y45_c02019{bottom:335.200000pt;}
.y46_c02019{bottom:344.000000pt;}
.y43_c02019{bottom:361.920000pt;}
.y44_c02019{bottom:370.720000pt;}
.y41_c02019{bottom:388.640000pt;}
.y42_c02019{bottom:397.440000pt;}
.y3f_c02019{bottom:415.360000pt;}
.y40_c02019{bottom:424.160000pt;}
.y3c_c02019{bottom:442.080000pt;}
.y3d_c02019{bottom:443.840000pt;}
.y3e_c02019{bottom:450.880000pt;}
.y39_c02019{bottom:468.800000pt;}
.y3a_c02019{bottom:470.720000pt;}
.y3b_c02019{bottom:477.600000pt;}
.y36_c02019{bottom:495.520000pt;}
.y37_c02019{bottom:497.440000pt;}
.y38_c02019{bottom:504.320000pt;}
.y33_c02019{bottom:522.240000pt;}
.y34_c02019{bottom:524.160000pt;}
.y35_c02019{bottom:531.040000pt;}
.y30_c02019{bottom:548.960000pt;}
.y31_c02019{bottom:550.880000pt;}
.y32_c02019{bottom:557.760000pt;}
.y2d_c02019{bottom:575.680000pt;}
.y2e_c02019{bottom:577.600000pt;}
.y2f_c02019{bottom:584.480000pt;}
.y2a_c02019{bottom:602.400000pt;}
.y2b_c02019{bottom:604.320000pt;}
.y2c_c02019{bottom:611.200000pt;}
.y27_c02019{bottom:629.120000pt;}
.y28_c02019{bottom:631.040000pt;}
.y29_c02019{bottom:637.920000pt;}
.y23_c02019{bottom:656.000000pt;}
.y26_c02019{bottom:664.640000pt;}
.y21_c02019{bottom:682.720000pt;}
.y22_c02019{bottom:691.520000pt;}
.y1c_c02019{bottom:709.440000pt;}
.y20_c02019{bottom:718.240000pt;}
.y1a_c02019{bottom:736.160000pt;}
.y19_c02019{bottom:760.972480pt;}
.y18_c02019{bottom:773.128960pt;}
.y17_c02019{bottom:785.446240pt;}
.y16_c02019{bottom:797.763520pt;}
.y15_c02019{bottom:809.920000pt;}
.y14_c02019{bottom:822.400000pt;}
.y13_c02019{bottom:835.040000pt;}
.y12_c02019{bottom:844.640000pt;}
.y11_c02019{bottom:857.280000pt;}
.y10_c02019{bottom:866.720000pt;}
.yf_c02019{bottom:879.360000pt;}
.ye_c02019{bottom:901.928960pt;}
.yd_c02019{bottom:914.246240pt;}
.yc_c02019{bottom:926.563520pt;}
.yb_c02019{bottom:938.720000pt;}
.ya_c02019{bottom:952.320000pt;}
.y9_c02019{bottom:970.720000pt;}
.y8_c02019{bottom:989.120000pt;}
.y7_c02019{bottom:1008.320000pt;}
.y5_c02019{bottom:1032.000000pt;}
.y1_c02019{bottom:1042.560000pt;}
.y3_c02019{bottom:1045.120000pt;}
.hc_c02019{height:21.438667pt;}
.h12_c02019{height:25.920000pt;}
.he_c02019{height:26.080000pt;}
.h11_c02019{height:26.081333pt;}
.h2_c02019{height:32.160000pt;}
.hf_c02019{height:32.250000pt;}
.h8_c02019{height:42.084375pt;}
.h5_c02019{height:43.215000pt;}
.h4_c02019{height:48.375000pt;}
.h9_c02019{height:53.535000pt;}
.hb_c02019{height:59.340000pt;}
.h6_c02019{height:62.812500pt;}
.ha_c02019{height:63.984375pt;}
.h3_c02019{height:64.500000pt;}
.h10_c02019{height:73.490625pt;}
.hd_c02019{height:75.465000pt;}
.h7_c02019{height:85.785000pt;}
.h0_c02019{height:1122.560000pt;}
.h1_c02019{height:1122.666667pt;}
.w3_c02019{width:37.120000pt;}
.w5_c02019{width:188.320000pt;}
.w4_c02019{width:424.800000pt;}
.w2_c02019{width:443.360000pt;}
.w0_c02019{width:793.760000pt;}
.w1_c02019{width:794.000000pt;}
.x0_c02019{left:0.000000pt;}
.x9_c02019{left:6.880000pt;}
.xc_c02019{left:29.600000pt;}
.x8_c02019{left:47.520000pt;}
.xe_c02019{left:80.160000pt;}
.x6_c02019{left:84.960000pt;}
.x13_c02019{left:92.160000pt;}
.x5_c02019{left:113.440000pt;}
.x10_c02019{left:130.720000pt;}
.x7_c02019{left:137.440000pt;}
.x2_c02019{left:153.440000pt;}
.x12_c02019{left:181.280000pt;}
.x1_c02019{left:198.880000pt;}
.x3_c02019{left:205.600000pt;}
.x4_c02019{left:430.400000pt;}
.xa_c02019{left:510.720000pt;}
.xb_c02019{left:533.600000pt;}
.xd_c02019{left:584.160000pt;}
.xf_c02019{left:634.720000pt;}
.x11_c02019{left:685.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_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_be7e8a73dcab3dd150e10171.woff2')format("woff");}.ff1_c02020{font-family:ff1_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:ff2_c02020;src:url('chunks/assets/font_c9916d36fa8edf60deb69994.woff2')format("woff");}.ff2_c02020{font-family:ff2_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:ff3_c02020;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02020{font-family:ff3_c02020;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;}
.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);}
.v2_c02020{vertical-align:-77.760000px;}
.v1_c02020{vertical-align:-45.360000px;}
.v0_c02020{vertical-align:0.000000px;}
.lsd_c02020{letter-spacing:-0.861120px;}
.ls15_c02020{letter-spacing:-0.758160px;}
.lse_c02020{letter-spacing:-0.596160px;}
.lsf_c02020{letter-spacing:-0.397440px;}
.ls12_c02020{letter-spacing:-0.336960px;}
.lsb_c02020{letter-spacing:-0.288000px;}
.ls9_c02020{letter-spacing:-0.216000px;}
.ls10_c02020{letter-spacing:-0.132480px;}
.ls8_c02020{letter-spacing:-0.108000px;}
.ls14_c02020{letter-spacing:-0.084240px;}
.ls7_c02020{letter-spacing:0.000000px;}
.ls16_c02020{letter-spacing:0.084240px;}
.ls6_c02020{letter-spacing:0.132480px;}
.ls2_c02020{letter-spacing:0.144000px;}
.ls0_c02020{letter-spacing:0.162000px;}
.ls5_c02020{letter-spacing:0.239040px;}
.ls11_c02020{letter-spacing:0.264960px;}
.lsc_c02020{letter-spacing:0.288000px;}
.ls4_c02020{letter-spacing:0.324000px;}
.ls17_c02020{letter-spacing:0.331200px;}
.ls13_c02020{letter-spacing:0.336960px;}
.lsa_c02020{letter-spacing:0.383040px;}
.ls3_c02020{letter-spacing:157.860000px;}
.ls1_c02020{letter-spacing:2677.680000px;}
.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;}
}
.ws1_c02020{word-spacing:-24.323040px;}
.ws5_c02020{word-spacing:-20.723040px;}
.ws6_c02020{word-spacing:-20.301840px;}
.ws8_c02020{word-spacing:-16.891200px;}
.ws3_c02020{word-spacing:-16.824960px;}
.ws7_c02020{word-spacing:-16.692480px;}
.ws2_c02020{word-spacing:-16.560000px;}
.ws4_c02020{word-spacing:-16.427520px;}
.wsa_c02020{word-spacing:-16.162560px;}
.ws9_c02020{word-spacing:-15.963840px;}
.ws0_c02020{word-spacing:-13.392000px;}
.ws1c_c02020{word-spacing:-1.059840px;}
.ws1b_c02020{word-spacing:-0.861120px;}
.ws16_c02020{word-spacing:-0.728640px;}
.ws1d_c02020{word-spacing:-0.596160px;}
.ws17_c02020{word-spacing:-0.505440px;}
.wsf_c02020{word-spacing:-0.288000px;}
.ws1a_c02020{word-spacing:-0.252720px;}
.ws19_c02020{word-spacing:-0.168480px;}
.ws10_c02020{word-spacing:-0.144000px;}
.ws15_c02020{word-spacing:-0.132480px;}
.ws18_c02020{word-spacing:-0.084240px;}
.wsb_c02020{word-spacing:0.000000px;}
.ws14_c02020{word-spacing:0.132480px;}
.wsc_c02020{word-spacing:0.378000px;}
.ws13_c02020{word-spacing:0.397440px;}
.ws12_c02020{word-spacing:0.596160px;}
.ws11_c02020{word-spacing:0.861120px;}
.wsd_c02020{word-spacing:3.600000px;}
.wse_c02020{word-spacing:4.608000px;}
._4_c02020{margin-left:-2.383200px;}
._1_c02020{margin-left:-1.054080px;}
._0_c02020{width:1.026000px;}
._3_c02020{width:2.121120px;}
._2_c02020{width:3.520080px;}
.fc1_c02020{color:rgb(140,140,140);}
.fc0_c02020{color:rgb(0,0,0);}
.fs2_c02020{font-size:48.240000px;}
.fs1_c02020{font-size:54.000000px;}
.fs7_c02020{font-size:59.760000px;}
.fs5_c02020{font-size:66.240000px;}
.fs0_c02020{font-size:72.000000px;}
.fs6_c02020{font-size:84.240000px;}
.fs3_c02020{font-size:95.760000px;}
.fs4_c02020{font-size:108.000000px;}
.y0_c02020{bottom:0.000000px;}
.y4_c02020{bottom:2.880000px;}
.y16_c02020{bottom:4.680000px;}
.y22_c02020{bottom:4.860000px;}
.y1c_c02020{bottom:7.560000px;}
.y20_c02020{bottom:7.740000px;}
.y1d_c02020{bottom:8.820000px;}
.y21_c02020{bottom:9.000000px;}
.y2_c02020{bottom:19.620000px;}
.y15_c02020{bottom:28.800000px;}
.y18_c02020{bottom:40.860000px;}
.y6_c02020{bottom:57.600000px;}
.y50_c02020{bottom:117.180000px;}
.y51_c02020{bottom:121.860000px;}
.y4e_c02020{bottom:142.020000px;}
.y4f_c02020{bottom:146.880000px;}
.y4c_c02020{bottom:167.040000px;}
.y4d_c02020{bottom:171.720000px;}
.y4a_c02020{bottom:191.880000px;}
.y4b_c02020{bottom:196.560000px;}
.y48_c02020{bottom:216.720000px;}
.y49_c02020{bottom:221.580000px;}
.y46_c02020{bottom:241.740000px;}
.y47_c02020{bottom:246.420000px;}
.y44_c02020{bottom:266.580000px;}
.y45_c02020{bottom:271.260000px;}
.y42_c02020{bottom:291.420000px;}
.y43_c02020{bottom:296.100000px;}
.y40_c02020{bottom:316.440000px;}
.y41_c02020{bottom:321.120000px;}
.y3e_c02020{bottom:341.280000px;}
.y3f_c02020{bottom:345.960000px;}
.y3c_c02020{bottom:366.120000px;}
.y3d_c02020{bottom:370.800000px;}
.y3a_c02020{bottom:391.140000px;}
.y3b_c02020{bottom:395.820000px;}
.y38_c02020{bottom:415.980000px;}
.y39_c02020{bottom:420.660000px;}
.y36_c02020{bottom:440.820000px;}
.y37_c02020{bottom:445.500000px;}
.y34_c02020{bottom:465.840000px;}
.y35_c02020{bottom:470.520000px;}
.y32_c02020{bottom:490.680000px;}
.y33_c02020{bottom:495.360000px;}
.y30_c02020{bottom:515.520000px;}
.y31_c02020{bottom:520.200000px;}
.y2e_c02020{bottom:540.540000px;}
.y2f_c02020{bottom:545.220000px;}
.y2c_c02020{bottom:565.380000px;}
.y2d_c02020{bottom:570.060000px;}
.y2a_c02020{bottom:590.220000px;}
.y2b_c02020{bottom:594.900000px;}
.y28_c02020{bottom:615.240000px;}
.y29_c02020{bottom:619.920000px;}
.y26_c02020{bottom:640.080000px;}
.y27_c02020{bottom:644.760000px;}
.y24_c02020{bottom:664.920000px;}
.y25_c02020{bottom:669.600000px;}
.y1f_c02020{bottom:689.760000px;}
.y23_c02020{bottom:694.620000px;}
.y1b_c02020{bottom:714.780000px;}
.y1e_c02020{bottom:719.460000px;}
.y17_c02020{bottom:740.340000px;}
.y1a_c02020{bottom:743.220000px;}
.y19_c02020{bottom:758.880000px;}
.y14_c02020{bottom:793.620000px;}
.y13_c02020{bottom:845.463060px;}
.y12_c02020{bottom:859.320000px;}
.y11_c02020{bottom:876.240000px;}
.y10_c02020{bottom:907.380000px;}
.yf_c02020{bottom:938.340000px;}
.ye_c02020{bottom:969.480000px;}
.yd_c02020{bottom:1000.440000px;}
.yc_c02020{bottom:1028.343060px;}
.yb_c02020{bottom:1042.200000px;}
.ya_c02020{bottom:1076.760000px;}
.y9_c02020{bottom:1092.060000px;}
.y8_c02020{bottom:1112.760000px;}
.y7_c02020{bottom:1134.360000px;}
.y5_c02020{bottom:1161.000000px;}
.y1_c02020{bottom:1172.880000px;}
.y3_c02020{bottom:1175.760000px;}
.hd_c02020{height:24.118500px;}
.h11_c02020{height:24.120000px;}
.h10_c02020{height:24.300000px;}
.h2_c02020{height:36.180000px;}
.h8_c02020{height:47.344922px;}
.ha_c02020{height:48.240000px;}
.h5_c02020{height:48.616875px;}
.hc_c02020{height:51.840000px;}
.h4_c02020{height:54.421875px;}
.he_c02020{height:60.226875px;}
.h6_c02020{height:70.664062px;}
.h3_c02020{height:72.562500px;}
.hf_c02020{height:82.676953px;}
.hb_c02020{height:84.898125px;}
.h7_c02020{height:96.508125px;}
.h9_c02020{height:108.843750px;}
.h0_c02020{height:1262.880000px;}
.h1_c02020{height:1263.000000px;}
.w3_c02020{width:41.760000px;}
.w5_c02020{width:233.100000px;}
.w4_c02020{width:456.481500px;}
.w2_c02020{width:498.780000px;}
.w6_c02020{width:732.780000px;}
.w0_c02020{width:892.980000px;}
.w1_c02020{width:893.250000px;}
.x0_c02020{left:0.000000px;}
.x9_c02020{left:7.560000px;}
.x10_c02020{left:33.300000px;}
.x12_c02020{left:79.740000px;}
.x8_c02020{left:106.740000px;}
.xa_c02020{left:113.580000px;}
.xb_c02020{left:121.140000px;}
.x14_c02020{left:126.180000px;}
.x5_c02020{left:127.620000px;}
.x6_c02020{left:148.860000px;}
.x2_c02020{left:172.620000px;}
.x17_c02020{left:218.880000px;}
.x1_c02020{left:223.740000px;}
.x3_c02020{left:231.300000px;}
.x7_c02020{left:253.620000px;}
.xd_c02020{left:366.300000px;}
.xe_c02020{left:473.040000px;}
.x4_c02020{left:484.200000px;}
.xc_c02020{left:606.420000px;}
.xf_c02020{left:632.160000px;}
.x11_c02020{left:678.600000px;}
.x13_c02020{left:725.040000px;}
.x15_c02020{left:771.480000px;}
.x16_c02020{left:817.920000px;}
@media print{
.v2_c02020{vertical-align:-69.120000pt;}
.v1_c02020{vertical-align:-40.320000pt;}
.v0_c02020{vertical-align:0.000000pt;}
.lsd_c02020{letter-spacing:-0.765440pt;}
.ls15_c02020{letter-spacing:-0.673920pt;}
.lse_c02020{letter-spacing:-0.529920pt;}
.lsf_c02020{letter-spacing:-0.353280pt;}
.ls12_c02020{letter-spacing:-0.299520pt;}
.lsb_c02020{letter-spacing:-0.256000pt;}
.ls9_c02020{letter-spacing:-0.192000pt;}
.ls10_c02020{letter-spacing:-0.117760pt;}
.ls8_c02020{letter-spacing:-0.096000pt;}
.ls14_c02020{letter-spacing:-0.074880pt;}
.ls7_c02020{letter-spacing:0.000000pt;}
.ls16_c02020{letter-spacing:0.074880pt;}
.ls6_c02020{letter-spacing:0.117760pt;}
.ls2_c02020{letter-spacing:0.128000pt;}
.ls0_c02020{letter-spacing:0.144000pt;}
.ls5_c02020{letter-spacing:0.212480pt;}
.ls11_c02020{letter-spacing:0.235520pt;}
.lsc_c02020{letter-spacing:0.256000pt;}
.ls4_c02020{letter-spacing:0.288000pt;}
.ls17_c02020{letter-spacing:0.294400pt;}
.ls13_c02020{letter-spacing:0.299520pt;}
.lsa_c02020{letter-spacing:0.340480pt;}
.ls3_c02020{letter-spacing:140.320000pt;}
.ls1_c02020{letter-spacing:2380.160000pt;}
.ws1_c02020{word-spacing:-21.620480pt;}
.ws5_c02020{word-spacing:-18.420480pt;}
.ws6_c02020{word-spacing:-18.046080pt;}
.ws8_c02020{word-spacing:-15.014400pt;}
.ws3_c02020{word-spacing:-14.955520pt;}
.ws7_c02020{word-spacing:-14.837760pt;}
.ws2_c02020{word-spacing:-14.720000pt;}
.ws4_c02020{word-spacing:-14.602240pt;}
.wsa_c02020{word-spacing:-14.366720pt;}
.ws9_c02020{word-spacing:-14.190080pt;}
.ws0_c02020{word-spacing:-11.904000pt;}
.ws1c_c02020{word-spacing:-0.942080pt;}
.ws1b_c02020{word-spacing:-0.765440pt;}
.ws16_c02020{word-spacing:-0.647680pt;}
.ws1d_c02020{word-spacing:-0.529920pt;}
.ws17_c02020{word-spacing:-0.449280pt;}
.wsf_c02020{word-spacing:-0.256000pt;}
.ws1a_c02020{word-spacing:-0.224640pt;}
.ws19_c02020{word-spacing:-0.149760pt;}
.ws10_c02020{word-spacing:-0.128000pt;}
.ws15_c02020{word-spacing:-0.117760pt;}
.ws18_c02020{word-spacing:-0.074880pt;}
.wsb_c02020{word-spacing:0.000000pt;}
.ws14_c02020{word-spacing:0.117760pt;}
.wsc_c02020{word-spacing:0.336000pt;}
.ws13_c02020{word-spacing:0.353280pt;}
.ws12_c02020{word-spacing:0.529920pt;}
.ws11_c02020{word-spacing:0.765440pt;}
.wsd_c02020{word-spacing:3.200000pt;}
.wse_c02020{word-spacing:4.096000pt;}
._4_c02020{margin-left:-2.118400pt;}
._1_c02020{margin-left:-0.936960pt;}
._0_c02020{width:0.912000pt;}
._3_c02020{width:1.885440pt;}
._2_c02020{width:3.128960pt;}
.fs2_c02020{font-size:42.880000pt;}
.fs1_c02020{font-size:48.000000pt;}
.fs7_c02020{font-size:53.120000pt;}
.fs5_c02020{font-size:58.880000pt;}
.fs0_c02020{font-size:64.000000pt;}
.fs6_c02020{font-size:74.880000pt;}
.fs3_c02020{font-size:85.120000pt;}
.fs4_c02020{font-size:96.000000pt;}
.y0_c02020{bottom:0.000000pt;}
.y4_c02020{bottom:2.560000pt;}
.y16_c02020{bottom:4.160000pt;}
.y22_c02020{bottom:4.320000pt;}
.y1c_c02020{bottom:6.720000pt;}
.y20_c02020{bottom:6.880000pt;}
.y1d_c02020{bottom:7.840000pt;}
.y21_c02020{bottom:8.000000pt;}
.y2_c02020{bottom:17.440000pt;}
.y15_c02020{bottom:25.600000pt;}
.y18_c02020{bottom:36.320000pt;}
.y6_c02020{bottom:51.200000pt;}
.y50_c02020{bottom:104.160000pt;}
.y51_c02020{bottom:108.320000pt;}
.y4e_c02020{bottom:126.240000pt;}
.y4f_c02020{bottom:130.560000pt;}
.y4c_c02020{bottom:148.480000pt;}
.y4d_c02020{bottom:152.640000pt;}
.y4a_c02020{bottom:170.560000pt;}
.y4b_c02020{bottom:174.720000pt;}
.y48_c02020{bottom:192.640000pt;}
.y49_c02020{bottom:196.960000pt;}
.y46_c02020{bottom:214.880000pt;}
.y47_c02020{bottom:219.040000pt;}
.y44_c02020{bottom:236.960000pt;}
.y45_c02020{bottom:241.120000pt;}
.y42_c02020{bottom:259.040000pt;}
.y43_c02020{bottom:263.200000pt;}
.y40_c02020{bottom:281.280000pt;}
.y41_c02020{bottom:285.440000pt;}
.y3e_c02020{bottom:303.360000pt;}
.y3f_c02020{bottom:307.520000pt;}
.y3c_c02020{bottom:325.440000pt;}
.y3d_c02020{bottom:329.600000pt;}
.y3a_c02020{bottom:347.680000pt;}
.y3b_c02020{bottom:351.840000pt;}
.y38_c02020{bottom:369.760000pt;}
.y39_c02020{bottom:373.920000pt;}
.y36_c02020{bottom:391.840000pt;}
.y37_c02020{bottom:396.000000pt;}
.y34_c02020{bottom:414.080000pt;}
.y35_c02020{bottom:418.240000pt;}
.y32_c02020{bottom:436.160000pt;}
.y33_c02020{bottom:440.320000pt;}
.y30_c02020{bottom:458.240000pt;}
.y31_c02020{bottom:462.400000pt;}
.y2e_c02020{bottom:480.480000pt;}
.y2f_c02020{bottom:484.640000pt;}
.y2c_c02020{bottom:502.560000pt;}
.y2d_c02020{bottom:506.720000pt;}
.y2a_c02020{bottom:524.640000pt;}
.y2b_c02020{bottom:528.800000pt;}
.y28_c02020{bottom:546.880000pt;}
.y29_c02020{bottom:551.040000pt;}
.y26_c02020{bottom:568.960000pt;}
.y27_c02020{bottom:573.120000pt;}
.y24_c02020{bottom:591.040000pt;}
.y25_c02020{bottom:595.200000pt;}
.y1f_c02020{bottom:613.120000pt;}
.y23_c02020{bottom:617.440000pt;}
.y1b_c02020{bottom:635.360000pt;}
.y1e_c02020{bottom:639.520000pt;}
.y17_c02020{bottom:658.080000pt;}
.y1a_c02020{bottom:660.640000pt;}
.y19_c02020{bottom:674.560000pt;}
.y14_c02020{bottom:705.440000pt;}
.y13_c02020{bottom:751.522720pt;}
.y12_c02020{bottom:763.840000pt;}
.y11_c02020{bottom:778.880000pt;}
.y10_c02020{bottom:806.560000pt;}
.yf_c02020{bottom:834.080000pt;}
.ye_c02020{bottom:861.760000pt;}
.yd_c02020{bottom:889.280000pt;}
.yc_c02020{bottom:914.082720pt;}
.yb_c02020{bottom:926.400000pt;}
.ya_c02020{bottom:957.120000pt;}
.y9_c02020{bottom:970.720000pt;}
.y8_c02020{bottom:989.120000pt;}
.y7_c02020{bottom:1008.320000pt;}
.y5_c02020{bottom:1032.000000pt;}
.y1_c02020{bottom:1042.560000pt;}
.y3_c02020{bottom:1045.120000pt;}
.hd_c02020{height:21.438667pt;}
.h11_c02020{height:21.440000pt;}
.h10_c02020{height:21.600000pt;}
.h2_c02020{height:32.160000pt;}
.h8_c02020{height:42.084375pt;}
.ha_c02020{height:42.880000pt;}
.h5_c02020{height:43.215000pt;}
.hc_c02020{height:46.080000pt;}
.h4_c02020{height:48.375000pt;}
.he_c02020{height:53.535000pt;}
.h6_c02020{height:62.812500pt;}
.h3_c02020{height:64.500000pt;}
.hf_c02020{height:73.490625pt;}
.hb_c02020{height:75.465000pt;}
.h7_c02020{height:85.785000pt;}
.h9_c02020{height:96.750000pt;}
.h0_c02020{height:1122.560000pt;}
.h1_c02020{height:1122.666667pt;}
.w3_c02020{width:37.120000pt;}
.w5_c02020{width:207.200000pt;}
.w4_c02020{width:405.761333pt;}
.w2_c02020{width:443.360000pt;}
.w6_c02020{width:651.360000pt;}
.w0_c02020{width:793.760000pt;}
.w1_c02020{width:794.000000pt;}
.x0_c02020{left:0.000000pt;}
.x9_c02020{left:6.720000pt;}
.x10_c02020{left:29.600000pt;}
.x12_c02020{left:70.880000pt;}
.x8_c02020{left:94.880000pt;}
.xa_c02020{left:100.960000pt;}
.xb_c02020{left:107.680000pt;}
.x14_c02020{left:112.160000pt;}
.x5_c02020{left:113.440000pt;}
.x6_c02020{left:132.320000pt;}
.x2_c02020{left:153.440000pt;}
.x17_c02020{left:194.560000pt;}
.x1_c02020{left:198.880000pt;}
.x3_c02020{left:205.600000pt;}
.x7_c02020{left:225.440000pt;}
.xd_c02020{left:325.600000pt;}
.xe_c02020{left:420.480000pt;}
.x4_c02020{left:430.400000pt;}
.xc_c02020{left:539.040000pt;}
.xf_c02020{left:561.920000pt;}
.x11_c02020{left:603.200000pt;}
.x13_c02020{left:644.480000pt;}
.x15_c02020{left:685.760000pt;}
.x16_c02020{left:727.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_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_b4db35e9f04efc7d743ebeec.woff2')format("woff");}.ff1_c02021{font-family:ff1_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:ff2_c02021;src:url('chunks/assets/font_87d45c669b5ffbebaeb2b9f1.woff2')format("woff");}.ff2_c02021{font-family:ff2_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:ff3_c02021;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02021{font-family:ff3_c02021;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_c02021;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02021{font-family:ff4_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:ff5_c02021;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff5_c02021{font-family:ff5_c02021;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;}
.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);}
.v1_c02021{vertical-align:-45.360000px;}
.v0_c02021{vertical-align:0.000000px;}
.v2_c02021{vertical-align:22.320000px;}
.ls19_c02021{letter-spacing:-2.160000px;}
.ls13_c02021{letter-spacing:-0.861120px;}
.ls10_c02021{letter-spacing:-0.758160px;}
.ls15_c02021{letter-spacing:-0.596160px;}
.lsd_c02021{letter-spacing:-0.336960px;}
.ls1b_c02021{letter-spacing:-0.298800px;}
.ls17_c02021{letter-spacing:-0.288000px;}
.ls1c_c02021{letter-spacing:-0.264960px;}
.lsc_c02021{letter-spacing:-0.216000px;}
.ls12_c02021{letter-spacing:-0.132480px;}
.lsb_c02021{letter-spacing:-0.108000px;}
.lsf_c02021{letter-spacing:-0.084240px;}
.lsa_c02021{letter-spacing:0.000000px;}
.ls11_c02021{letter-spacing:0.084240px;}
.ls7_c02021{letter-spacing:0.119520px;}
.ls2_c02021{letter-spacing:0.132480px;}
.ls0_c02021{letter-spacing:0.162000px;}
.ls6_c02021{letter-spacing:0.179280px;}
.ls1a_c02021{letter-spacing:0.216000px;}
.ls3_c02021{letter-spacing:0.239040px;}
.ls14_c02021{letter-spacing:0.264960px;}
.ls16_c02021{letter-spacing:0.288000px;}
.lse_c02021{letter-spacing:0.336960px;}
.ls18_c02021{letter-spacing:0.383040px;}
.ls8_c02021{letter-spacing:0.480960px;}
.ls4_c02021{letter-spacing:4.320000px;}
.ls5_c02021{letter-spacing:18.000000px;}
.ls9_c02021{letter-spacing:1777.320000px;}
.ls1_c02021{letter-spacing:2677.680000px;}
.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;}
}
.wsc_c02021{word-spacing:-95.760000px;}
.ws7_c02021{word-spacing:-23.940000px;}
.ws1_c02021{word-spacing:-20.723040px;}
.ws2_c02021{word-spacing:-20.301840px;}
.ws9_c02021{word-spacing:-18.216000px;}
.ws8_c02021{word-spacing:-17.784000px;}
.ws4_c02021{word-spacing:-16.824960px;}
.ws5_c02021{word-spacing:-16.692480px;}
.ws6_c02021{word-spacing:-15.963840px;}
.ws3_c02021{word-spacing:-15.698880px;}
.wsa_c02021{word-spacing:-15.179040px;}
.wsb_c02021{word-spacing:-15.059520px;}
.ws0_c02021{word-spacing:-13.392000px;}
.ws14_c02021{word-spacing:-0.861120px;}
.wsf_c02021{word-spacing:-0.505440px;}
.ws18_c02021{word-spacing:-0.383040px;}
.ws16_c02021{word-spacing:-0.288000px;}
.ws12_c02021{word-spacing:-0.252720px;}
.ws22_c02021{word-spacing:-0.191520px;}
.ws11_c02021{word-spacing:-0.168480px;}
.ws15_c02021{word-spacing:-0.132480px;}
.ws10_c02021{word-spacing:-0.084240px;}
.wsd_c02021{word-spacing:0.000000px;}
.ws20_c02021{word-spacing:0.084240px;}
.ws13_c02021{word-spacing:0.132480px;}
.ws24_c02021{word-spacing:0.264960px;}
.ws17_c02021{word-spacing:0.288000px;}
.ws23_c02021{word-spacing:0.298800px;}
.wse_c02021{word-spacing:0.378000px;}
.ws21_c02021{word-spacing:0.478080px;}
.ws19_c02021{word-spacing:4.320000px;}
.ws1a_c02021{word-spacing:4.608000px;}
.ws1f_c02021{word-spacing:7.200000px;}
.ws1e_c02021{word-spacing:11.808000px;}
.ws1b_c02021{word-spacing:18.000000px;}
.ws1d_c02021{word-spacing:18.288000px;}
.ws1c_c02021{word-spacing:20.160000px;}
._2_c02021{margin-left:-2.085120px;}
._1_c02021{margin-left:-1.010880px;}
._0_c02021{width:1.026000px;}
._4_c02021{width:2.862000px;}
._3_c02021{width:5.009040px;}
.fc1_c02021{color:rgb(140,140,140);}
.fc0_c02021{color:rgb(0,0,0);}
.fs7_c02021{font-size:36.000000px;}
.fs2_c02021{font-size:48.240000px;}
.fs1_c02021{font-size:54.000000px;}
.fs5_c02021{font-size:59.760000px;}
.fs4_c02021{font-size:66.240000px;}
.fs0_c02021{font-size:72.000000px;}
.fs3_c02021{font-size:84.240000px;}
.fs6_c02021{font-size:95.760000px;}
.y0_c02021{bottom:0.000000px;}
.y4d_c02021{bottom:1.980000px;}
.y4_c02021{bottom:2.880000px;}
.y36_c02021{bottom:4.140000px;}
.y12_c02021{bottom:4.680000px;}
.ya_c02021{bottom:4.860000px;}
.y59_c02021{bottom:7.380000px;}
.y10_c02021{bottom:7.560000px;}
.y11_c02021{bottom:8.820000px;}
.y56_c02021{bottom:12.600000px;}
.y4b_c02021{bottom:12.780000px;}
.y57_c02021{bottom:13.860000px;}
.y4c_c02021{bottom:14.040000px;}
.y2_c02021{bottom:19.620000px;}
.y37_c02021{bottom:21.960000px;}
.y35_c02021{bottom:24.840000px;}
.y9_c02021{bottom:28.980000px;}
.yc_c02021{bottom:40.680000px;}
.y6_c02021{bottom:57.600000px;}
.y5b_c02021{bottom:118.080000px;}
.y5c_c02021{bottom:120.240000px;}
.y5d_c02021{bottom:125.640000px;}
.y55_c02021{bottom:148.320000px;}
.y58_c02021{bottom:150.300000px;}
.y5a_c02021{bottom:155.700000px;}
.y52_c02021{bottom:178.380000px;}
.y53_c02021{bottom:180.360000px;}
.y54_c02021{bottom:185.940000px;}
.y4f_c02021{bottom:208.440000px;}
.y50_c02021{bottom:210.420000px;}
.y51_c02021{bottom:216.000000px;}
.y4a_c02021{bottom:238.500000px;}
.y4e_c02021{bottom:246.060000px;}
.y48_c02021{bottom:268.560000px;}
.y49_c02021{bottom:273.240000px;}
.y47_c02021{bottom:296.460000px;}
.y46_c02021{bottom:311.760000px;}
.y45_c02021{bottom:332.460000px;}
.y44_c02021{bottom:350.820000px;}
.y43_c02021{bottom:363.420000px;}
.y42_c02021{bottom:384.120000px;}
.y41_c02021{bottom:404.820000px;}
.y40_c02021{bottom:426.420000px;}
.y3f_c02021{bottom:451.443060px;}
.y3e_c02021{bottom:465.300000px;}
.y3b_c02021{bottom:477.000000px;}
.y3c_c02021{bottom:481.140000px;}
.y3d_c02021{bottom:498.960000px;}
.y39_c02021{bottom:519.120000px;}
.y3a_c02021{bottom:541.080000px;}
.y34_c02021{bottom:561.240000px;}
.y38_c02021{bottom:583.200000px;}
.y33_c02021{bottom:606.243060px;}
.y32_c02021{bottom:620.100000px;}
.y31_c02021{bottom:635.220000px;}
.y30_c02021{bottom:654.480000px;}
.y2e_c02021{bottom:666.360000px;}
.y2f_c02021{bottom:671.040000px;}
.y2c_c02021{bottom:691.200000px;}
.y2d_c02021{bottom:695.880000px;}
.y2a_c02021{bottom:716.040000px;}
.y2b_c02021{bottom:720.720000px;}
.y28_c02021{bottom:741.060000px;}
.y29_c02021{bottom:745.740000px;}
.y26_c02021{bottom:765.900000px;}
.y27_c02021{bottom:770.580000px;}
.y24_c02021{bottom:790.740000px;}
.y25_c02021{bottom:795.420000px;}
.y22_c02021{bottom:815.760000px;}
.y23_c02021{bottom:820.440000px;}
.y20_c02021{bottom:840.600000px;}
.y21_c02021{bottom:845.280000px;}
.y1e_c02021{bottom:865.440000px;}
.y1f_c02021{bottom:870.120000px;}
.y1c_c02021{bottom:890.460000px;}
.y1d_c02021{bottom:895.140000px;}
.y1a_c02021{bottom:915.300000px;}
.y1b_c02021{bottom:919.980000px;}
.y18_c02021{bottom:940.140000px;}
.y19_c02021{bottom:944.820000px;}
.y16_c02021{bottom:965.160000px;}
.y17_c02021{bottom:969.840000px;}
.y14_c02021{bottom:990.000000px;}
.y15_c02021{bottom:994.680000px;}
.yf_c02021{bottom:1014.840000px;}
.y13_c02021{bottom:1019.520000px;}
.yb_c02021{bottom:1040.580000px;}
.ye_c02021{bottom:1043.280000px;}
.yd_c02021{bottom:1058.940000px;}
.y8_c02021{bottom:1093.680000px;}
.y7_c02021{bottom:1145.700000px;}
.y5_c02021{bottom:1161.000000px;}
.y1_c02021{bottom:1172.880000px;}
.y3_c02021{bottom:1175.760000px;}
.hd_c02021{height:24.118500px;}
.ha_c02021{height:24.120000px;}
.h18_c02021{height:29.160000px;}
.h12_c02021{height:29.340000px;}
.h17_c02021{height:29.341500px;}
.h10_c02021{height:35.332031px;}
.h2_c02021{height:36.180000px;}
.h13_c02021{height:36.281250px;}
.he_c02021{height:41.400000px;}
.h7_c02021{height:48.420000px;}
.h5_c02021{height:48.616875px;}
.h11_c02021{height:50.312812px;}
.h9_c02021{height:51.660000px;}
.h4_c02021{height:54.421875px;}
.hb_c02021{height:60.226875px;}
.h15_c02021{height:63.824414px;}
.h6_c02021{height:70.664062px;}
.h3_c02021{height:72.562500px;}
.h19_c02021{height:81.826875px;}
.h16_c02021{height:82.546875px;}
.hc_c02021{height:82.676953px;}
.h8_c02021{height:84.898125px;}
.h14_c02021{height:93.983203px;}
.hf_c02021{height:96.508125px;}
.h0_c02021{height:1262.880000px;}
.h1_c02021{height:1263.000000px;}
.w3_c02021{width:41.760000px;}
.w5_c02021{width:233.280000px;}
.w8_c02021{width:243.720000px;}
.w7_c02021{width:445.858500px;}
.w4_c02021{width:456.480000px;}
.w2_c02021{width:498.780000px;}
.w6_c02021{width:732.960000px;}
.w0_c02021{width:892.980000px;}
.w1_c02021{width:893.250000px;}
.x0_c02021{left:0.000000px;}
.x7_c02021{left:7.740000px;}
.x1d_c02021{left:27.540000px;}
.x10_c02021{left:33.300000px;}
.x6_c02021{left:53.460000px;}
.xd_c02021{left:61.200000px;}
.x12_c02021{left:79.740000px;}
.x8_c02021{left:95.940000px;}
.x18_c02021{left:103.680000px;}
.x9_c02021{left:113.580000px;}
.x1f_c02021{left:118.080000px;}
.xa_c02021{left:121.140000px;}
.x14_c02021{left:126.180000px;}
.x5_c02021{left:127.620000px;}
.x1b_c02021{left:133.200000px;}
.x2_c02021{left:172.620000px;}
.x21_c02021{left:208.800000px;}
.x17_c02021{left:218.880000px;}
.x1_c02021{left:223.740000px;}
.x3_c02021{left:231.300000px;}
.xc_c02021{left:366.480000px;}
.xe_c02021{left:419.940000px;}
.x4_c02021{left:484.200000px;}
.x19_c02021{left:542.700000px;}
.x1c_c02021{left:550.260000px;}
.xb_c02021{left:553.140000px;}
.xf_c02021{left:578.880000px;}
.x1a_c02021{left:613.980000px;}
.x11_c02021{left:625.320000px;}
.x1e_c02021{left:644.580000px;}
.x13_c02021{left:671.760000px;}
.x15_c02021{left:718.200000px;}
.x20_c02021{left:735.300000px;}
.x16_c02021{left:764.640000px;}
.x22_c02021{left:766.080000px;}
@media print{
.v1_c02021{vertical-align:-40.320000pt;}
.v0_c02021{vertical-align:0.000000pt;}
.v2_c02021{vertical-align:19.840000pt;}
.ls19_c02021{letter-spacing:-1.920000pt;}
.ls13_c02021{letter-spacing:-0.765440pt;}
.ls10_c02021{letter-spacing:-0.673920pt;}
.ls15_c02021{letter-spacing:-0.529920pt;}
.lsd_c02021{letter-spacing:-0.299520pt;}
.ls1b_c02021{letter-spacing:-0.265600pt;}
.ls17_c02021{letter-spacing:-0.256000pt;}
.ls1c_c02021{letter-spacing:-0.235520pt;}
.lsc_c02021{letter-spacing:-0.192000pt;}
.ls12_c02021{letter-spacing:-0.117760pt;}
.lsb_c02021{letter-spacing:-0.096000pt;}
.lsf_c02021{letter-spacing:-0.074880pt;}
.lsa_c02021{letter-spacing:0.000000pt;}
.ls11_c02021{letter-spacing:0.074880pt;}
.ls7_c02021{letter-spacing:0.106240pt;}
.ls2_c02021{letter-spacing:0.117760pt;}
.ls0_c02021{letter-spacing:0.144000pt;}
.ls6_c02021{letter-spacing:0.159360pt;}
.ls1a_c02021{letter-spacing:0.192000pt;}
.ls3_c02021{letter-spacing:0.212480pt;}
.ls14_c02021{letter-spacing:0.235520pt;}
.ls16_c02021{letter-spacing:0.256000pt;}
.lse_c02021{letter-spacing:0.299520pt;}
.ls18_c02021{letter-spacing:0.340480pt;}
.ls8_c02021{letter-spacing:0.427520pt;}
.ls4_c02021{letter-spacing:3.840000pt;}
.ls5_c02021{letter-spacing:16.000000pt;}
.ls9_c02021{letter-spacing:1579.840000pt;}
.ls1_c02021{letter-spacing:2380.160000pt;}
.wsc_c02021{word-spacing:-85.120000pt;}
.ws7_c02021{word-spacing:-21.280000pt;}
.ws1_c02021{word-spacing:-18.420480pt;}
.ws2_c02021{word-spacing:-18.046080pt;}
.ws9_c02021{word-spacing:-16.192000pt;}
.ws8_c02021{word-spacing:-15.808000pt;}
.ws4_c02021{word-spacing:-14.955520pt;}
.ws5_c02021{word-spacing:-14.837760pt;}
.ws6_c02021{word-spacing:-14.190080pt;}
.ws3_c02021{word-spacing:-13.954560pt;}
.wsa_c02021{word-spacing:-13.492480pt;}
.wsb_c02021{word-spacing:-13.386240pt;}
.ws0_c02021{word-spacing:-11.904000pt;}
.ws14_c02021{word-spacing:-0.765440pt;}
.wsf_c02021{word-spacing:-0.449280pt;}
.ws18_c02021{word-spacing:-0.340480pt;}
.ws16_c02021{word-spacing:-0.256000pt;}
.ws12_c02021{word-spacing:-0.224640pt;}
.ws22_c02021{word-spacing:-0.170240pt;}
.ws11_c02021{word-spacing:-0.149760pt;}
.ws15_c02021{word-spacing:-0.117760pt;}
.ws10_c02021{word-spacing:-0.074880pt;}
.wsd_c02021{word-spacing:0.000000pt;}
.ws20_c02021{word-spacing:0.074880pt;}
.ws13_c02021{word-spacing:0.117760pt;}
.ws24_c02021{word-spacing:0.235520pt;}
.ws17_c02021{word-spacing:0.256000pt;}
.ws23_c02021{word-spacing:0.265600pt;}
.wse_c02021{word-spacing:0.336000pt;}
.ws21_c02021{word-spacing:0.424960pt;}
.ws19_c02021{word-spacing:3.840000pt;}
.ws1a_c02021{word-spacing:4.096000pt;}
.ws1f_c02021{word-spacing:6.400000pt;}
.ws1e_c02021{word-spacing:10.496000pt;}
.ws1b_c02021{word-spacing:16.000000pt;}
.ws1d_c02021{word-spacing:16.256000pt;}
.ws1c_c02021{word-spacing:17.920000pt;}
._2_c02021{margin-left:-1.853440pt;}
._1_c02021{margin-left:-0.898560pt;}
._0_c02021{width:0.912000pt;}
._4_c02021{width:2.544000pt;}
._3_c02021{width:4.452480pt;}
.fs7_c02021{font-size:32.000000pt;}
.fs2_c02021{font-size:42.880000pt;}
.fs1_c02021{font-size:48.000000pt;}
.fs5_c02021{font-size:53.120000pt;}
.fs4_c02021{font-size:58.880000pt;}
.fs0_c02021{font-size:64.000000pt;}
.fs3_c02021{font-size:74.880000pt;}
.fs6_c02021{font-size:85.120000pt;}
.y0_c02021{bottom:0.000000pt;}
.y4d_c02021{bottom:1.760000pt;}
.y4_c02021{bottom:2.560000pt;}
.y36_c02021{bottom:3.680000pt;}
.y12_c02021{bottom:4.160000pt;}
.ya_c02021{bottom:4.320000pt;}
.y59_c02021{bottom:6.560000pt;}
.y10_c02021{bottom:6.720000pt;}
.y11_c02021{bottom:7.840000pt;}
.y56_c02021{bottom:11.200000pt;}
.y4b_c02021{bottom:11.360000pt;}
.y57_c02021{bottom:12.320000pt;}
.y4c_c02021{bottom:12.480000pt;}
.y2_c02021{bottom:17.440000pt;}
.y37_c02021{bottom:19.520000pt;}
.y35_c02021{bottom:22.080000pt;}
.y9_c02021{bottom:25.760000pt;}
.yc_c02021{bottom:36.160000pt;}
.y6_c02021{bottom:51.200000pt;}
.y5b_c02021{bottom:104.960000pt;}
.y5c_c02021{bottom:106.880000pt;}
.y5d_c02021{bottom:111.680000pt;}
.y55_c02021{bottom:131.840000pt;}
.y58_c02021{bottom:133.600000pt;}
.y5a_c02021{bottom:138.400000pt;}
.y52_c02021{bottom:158.560000pt;}
.y53_c02021{bottom:160.320000pt;}
.y54_c02021{bottom:165.280000pt;}
.y4f_c02021{bottom:185.280000pt;}
.y50_c02021{bottom:187.040000pt;}
.y51_c02021{bottom:192.000000pt;}
.y4a_c02021{bottom:212.000000pt;}
.y4e_c02021{bottom:218.720000pt;}
.y48_c02021{bottom:238.720000pt;}
.y49_c02021{bottom:242.880000pt;}
.y47_c02021{bottom:263.520000pt;}
.y46_c02021{bottom:277.120000pt;}
.y45_c02021{bottom:295.520000pt;}
.y44_c02021{bottom:311.840000pt;}
.y43_c02021{bottom:323.040000pt;}
.y42_c02021{bottom:341.440000pt;}
.y41_c02021{bottom:359.840000pt;}
.y40_c02021{bottom:379.040000pt;}
.y3f_c02021{bottom:401.282720pt;}
.y3e_c02021{bottom:413.600000pt;}
.y3b_c02021{bottom:424.000000pt;}
.y3c_c02021{bottom:427.680000pt;}
.y3d_c02021{bottom:443.520000pt;}
.y39_c02021{bottom:461.440000pt;}
.y3a_c02021{bottom:480.960000pt;}
.y34_c02021{bottom:498.880000pt;}
.y38_c02021{bottom:518.400000pt;}
.y33_c02021{bottom:538.882720pt;}
.y32_c02021{bottom:551.200000pt;}
.y31_c02021{bottom:564.640000pt;}
.y30_c02021{bottom:581.760000pt;}
.y2e_c02021{bottom:592.320000pt;}
.y2f_c02021{bottom:596.480000pt;}
.y2c_c02021{bottom:614.400000pt;}
.y2d_c02021{bottom:618.560000pt;}
.y2a_c02021{bottom:636.480000pt;}
.y2b_c02021{bottom:640.640000pt;}
.y28_c02021{bottom:658.720000pt;}
.y29_c02021{bottom:662.880000pt;}
.y26_c02021{bottom:680.800000pt;}
.y27_c02021{bottom:684.960000pt;}
.y24_c02021{bottom:702.880000pt;}
.y25_c02021{bottom:707.040000pt;}
.y22_c02021{bottom:725.120000pt;}
.y23_c02021{bottom:729.280000pt;}
.y20_c02021{bottom:747.200000pt;}
.y21_c02021{bottom:751.360000pt;}
.y1e_c02021{bottom:769.280000pt;}
.y1f_c02021{bottom:773.440000pt;}
.y1c_c02021{bottom:791.520000pt;}
.y1d_c02021{bottom:795.680000pt;}
.y1a_c02021{bottom:813.600000pt;}
.y1b_c02021{bottom:817.760000pt;}
.y18_c02021{bottom:835.680000pt;}
.y19_c02021{bottom:839.840000pt;}
.y16_c02021{bottom:857.920000pt;}
.y17_c02021{bottom:862.080000pt;}
.y14_c02021{bottom:880.000000pt;}
.y15_c02021{bottom:884.160000pt;}
.yf_c02021{bottom:902.080000pt;}
.y13_c02021{bottom:906.240000pt;}
.yb_c02021{bottom:924.960000pt;}
.ye_c02021{bottom:927.360000pt;}
.yd_c02021{bottom:941.280000pt;}
.y8_c02021{bottom:972.160000pt;}
.y7_c02021{bottom:1018.400000pt;}
.y5_c02021{bottom:1032.000000pt;}
.y1_c02021{bottom:1042.560000pt;}
.y3_c02021{bottom:1045.120000pt;}
.hd_c02021{height:21.438667pt;}
.ha_c02021{height:21.440000pt;}
.h18_c02021{height:25.920000pt;}
.h12_c02021{height:26.080000pt;}
.h17_c02021{height:26.081333pt;}
.h10_c02021{height:31.406250pt;}
.h2_c02021{height:32.160000pt;}
.h13_c02021{height:32.250000pt;}
.he_c02021{height:36.800000pt;}
.h7_c02021{height:43.040000pt;}
.h5_c02021{height:43.215000pt;}
.h11_c02021{height:44.722500pt;}
.h9_c02021{height:45.920000pt;}
.h4_c02021{height:48.375000pt;}
.hb_c02021{height:53.535000pt;}
.h15_c02021{height:56.732813pt;}
.h6_c02021{height:62.812500pt;}
.h3_c02021{height:64.500000pt;}
.h19_c02021{height:72.735000pt;}
.h16_c02021{height:73.375000pt;}
.hc_c02021{height:73.490625pt;}
.h8_c02021{height:75.465000pt;}
.h14_c02021{height:83.540625pt;}
.hf_c02021{height:85.785000pt;}
.h0_c02021{height:1122.560000pt;}
.h1_c02021{height:1122.666667pt;}
.w3_c02021{width:37.120000pt;}
.w5_c02021{width:207.360000pt;}
.w8_c02021{width:216.640000pt;}
.w7_c02021{width:396.318667pt;}
.w4_c02021{width:405.760000pt;}
.w2_c02021{width:443.360000pt;}
.w6_c02021{width:651.520000pt;}
.w0_c02021{width:793.760000pt;}
.w1_c02021{width:794.000000pt;}
.x0_c02021{left:0.000000pt;}
.x7_c02021{left:6.880000pt;}
.x1d_c02021{left:24.480000pt;}
.x10_c02021{left:29.600000pt;}
.x6_c02021{left:47.520000pt;}
.xd_c02021{left:54.400000pt;}
.x12_c02021{left:70.880000pt;}
.x8_c02021{left:85.280000pt;}
.x18_c02021{left:92.160000pt;}
.x9_c02021{left:100.960000pt;}
.x1f_c02021{left:104.960000pt;}
.xa_c02021{left:107.680000pt;}
.x14_c02021{left:112.160000pt;}
.x5_c02021{left:113.440000pt;}
.x1b_c02021{left:118.400000pt;}
.x2_c02021{left:153.440000pt;}
.x21_c02021{left:185.600000pt;}
.x17_c02021{left:194.560000pt;}
.x1_c02021{left:198.880000pt;}
.x3_c02021{left:205.600000pt;}
.xc_c02021{left:325.760000pt;}
.xe_c02021{left:373.280000pt;}
.x4_c02021{left:430.400000pt;}
.x19_c02021{left:482.400000pt;}
.x1c_c02021{left:489.120000pt;}
.xb_c02021{left:491.680000pt;}
.xf_c02021{left:514.560000pt;}
.x1a_c02021{left:545.760000pt;}
.x11_c02021{left:555.840000pt;}
.x1e_c02021{left:572.960000pt;}
.x13_c02021{left:597.120000pt;}
.x15_c02021{left:638.400000pt;}
.x20_c02021{left:653.600000pt;}
.x16_c02021{left:679.680000pt;}
.x22_c02021{left:680.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_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_ae29a1b1ff056b395b631f70.woff2')format("woff");}.ff1_c02022{font-family:ff1_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;}
@font-face{font-family:ff2_c02022;src:url('chunks/assets/font_715a4b2664810d04429747f5.woff2')format("woff");}.ff2_c02022{font-family:ff2_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:ff3_c02022;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02022{font-family:ff3_c02022;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_c02022;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02022{font-family:ff4_c02022;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02022;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff5_c02022{font-family:ff5_c02022;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;}
.m0_c02022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c02022{vertical-align:-100.092240px;}
.v1_c02022{vertical-align:-45.360000px;}
.v0_c02022{vertical-align:0.000000px;}
.ls16_c02022{letter-spacing:-0.792000px;}
.ls15_c02022{letter-spacing:-0.758160px;}
.ls10_c02022{letter-spacing:-0.596160px;}
.ls12_c02022{letter-spacing:-0.336960px;}
.lsf_c02022{letter-spacing:-0.288000px;}
.lsc_c02022{letter-spacing:-0.216000px;}
.ls11_c02022{letter-spacing:-0.132480px;}
.lsb_c02022{letter-spacing:-0.108000px;}
.lsa_c02022{letter-spacing:0.000000px;}
.ls14_c02022{letter-spacing:0.084240px;}
.ls5_c02022{letter-spacing:0.132480px;}
.ls8_c02022{letter-spacing:0.144000px;}
.ls0_c02022{letter-spacing:0.162000px;}
.ls6_c02022{letter-spacing:0.239040px;}
.ls17_c02022{letter-spacing:0.331200px;}
.ls13_c02022{letter-spacing:0.336960px;}
.lsd_c02022{letter-spacing:0.360720px;}
.lse_c02022{letter-spacing:0.383040px;}
.ls3_c02022{letter-spacing:6.480000px;}
.ls4_c02022{letter-spacing:6.491520px;}
.ls9_c02022{letter-spacing:7.920000px;}
.ls7_c02022{letter-spacing:12.240000px;}
.ls2_c02022{letter-spacing:72.900000px;}
.ls1_c02022{letter-spacing:2677.680000px;}
.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;}
}
.wsa_c02022{word-spacing:-27.000000px;}
.ws6_c02022{word-spacing:-24.323040px;}
.ws1_c02022{word-spacing:-23.940000px;}
.ws3_c02022{word-spacing:-21.396960px;}
.ws2_c02022{word-spacing:-20.723040px;}
.ws8_c02022{word-spacing:-20.301840px;}
.ws7_c02022{word-spacing:-17.712000px;}
.ws9_c02022{word-spacing:-17.208000px;}
.ws5_c02022{word-spacing:-16.692480px;}
.ws4_c02022{word-spacing:-16.560000px;}
.wsc_c02022{word-spacing:-16.427520px;}
.ws0_c02022{word-spacing:-13.392000px;}
.wsb_c02022{word-spacing:-13.284000px;}
.ws17_c02022{word-spacing:-1.263600px;}
.ws26_c02022{word-spacing:-1.059840px;}
.ws25_c02022{word-spacing:-0.861120px;}
.wsf_c02022{word-spacing:-0.841680px;}
.ws1b_c02022{word-spacing:-0.728640px;}
.ws1c_c02022{word-spacing:-0.596160px;}
.ws16_c02022{word-spacing:-0.505440px;}
.ws10_c02022{word-spacing:-0.383040px;}
.ws18_c02022{word-spacing:-0.252720px;}
.ws24_c02022{word-spacing:-0.191520px;}
.ws1a_c02022{word-spacing:-0.168480px;}
.ws21_c02022{word-spacing:-0.144000px;}
.ws15_c02022{word-spacing:-0.132480px;}
.wsd_c02022{word-spacing:0.000000px;}
.ws19_c02022{word-spacing:0.132480px;}
.ws11_c02022{word-spacing:0.288000px;}
.wse_c02022{word-spacing:0.378000px;}
.ws13_c02022{word-spacing:0.596160px;}
.ws1f_c02022{word-spacing:5.760000px;}
.ws20_c02022{word-spacing:6.048000px;}
.ws12_c02022{word-spacing:6.359040px;}
.ws14_c02022{word-spacing:6.624000px;}
.ws22_c02022{word-spacing:7.920000px;}
.ws23_c02022{word-spacing:8.208000px;}
.ws1e_c02022{word-spacing:11.520000px;}
.ws1d_c02022{word-spacing:11.808000px;}
._1_c02022{margin-left:-1.442880px;}
._0_c02022{width:1.026000px;}
._4_c02022{width:2.268000px;}
._2_c02022{width:6.883920px;}
._5_c02022{width:9.442080px;}
._3_c02022{width:11.473920px;}
.fc1_c02022{color:rgb(140,140,140);}
.fc0_c02022{color:rgb(0,0,0);}
.fs7_c02022{font-size:36.000000px;}
.fs2_c02022{font-size:48.240000px;}
.fs1_c02022{font-size:54.000000px;}
.fs8_c02022{font-size:59.760000px;}
.fs5_c02022{font-size:66.240000px;}
.fs0_c02022{font-size:72.000000px;}
.fs6_c02022{font-size:84.240000px;}
.fs4_c02022{font-size:95.760000px;}
.fs9_c02022{font-size:108.000000px;}
.fs3_c02022{font-size:120.240000px;}
.y0_c02022{bottom:0.000000px;}
.y14_c02022{bottom:1.980000px;}
.y1c_c02022{bottom:2.160000px;}
.y4_c02022{bottom:2.880000px;}
.y10_c02022{bottom:4.680000px;}
.y5a_c02022{bottom:4.860000px;}
.y3e_c02022{bottom:5.040000px;}
.y5c_c02022{bottom:5.220000px;}
.y9_c02022{bottom:6.660000px;}
.y3b_c02022{bottom:7.560000px;}
.y58_c02022{bottom:7.740000px;}
.y3c_c02022{bottom:8.820000px;}
.y59_c02022{bottom:9.000000px;}
.y15_c02022{bottom:9.720000px;}
.y1d_c02022{bottom:9.900000px;}
.y12_c02022{bottom:12.600000px;}
.y1a_c02022{bottom:12.780000px;}
.y13_c02022{bottom:13.860000px;}
.y1b_c02022{bottom:14.040000px;}
.y2_c02022{bottom:19.620000px;}
.y6_c02022{bottom:57.600000px;}
.y35_c02022{bottom:65.700000px;}
.y34_c02022{bottom:68.580000px;}
.y36_c02022{bottom:71.460000px;}
.y5f_c02022{bottom:107.640000px;}
.y60_c02022{bottom:112.320000px;}
.y5d_c02022{bottom:132.480000px;}
.y5e_c02022{bottom:137.160000px;}
.y57_c02022{bottom:157.320000px;}
.y5b_c02022{bottom:162.180000px;}
.y55_c02022{bottom:182.340000px;}
.y56_c02022{bottom:187.020000px;}
.y53_c02022{bottom:207.180000px;}
.y54_c02022{bottom:211.860000px;}
.y51_c02022{bottom:232.020000px;}
.y52_c02022{bottom:236.700000px;}
.y4f_c02022{bottom:257.040000px;}
.y50_c02022{bottom:261.720000px;}
.y4d_c02022{bottom:281.880000px;}
.y4e_c02022{bottom:286.560000px;}
.y4b_c02022{bottom:306.720000px;}
.y4c_c02022{bottom:311.400000px;}
.y49_c02022{bottom:331.740000px;}
.y4a_c02022{bottom:336.420000px;}
.y47_c02022{bottom:356.580000px;}
.y48_c02022{bottom:361.260000px;}
.y45_c02022{bottom:381.420000px;}
.y46_c02022{bottom:386.100000px;}
.y43_c02022{bottom:406.440000px;}
.y44_c02022{bottom:411.120000px;}
.y41_c02022{bottom:431.280000px;}
.y42_c02022{bottom:435.960000px;}
.y3f_c02022{bottom:456.120000px;}
.y40_c02022{bottom:460.800000px;}
.y3a_c02022{bottom:481.140000px;}
.y3d_c02022{bottom:485.820000px;}
.y33_c02022{bottom:505.980000px;}
.y39_c02022{bottom:519.300000px;}
.y38_c02022{bottom:537.840000px;}
.y37_c02022{bottom:565.020000px;}
.y32_c02022{bottom:597.423060px;}
.y31_c02022{bottom:611.280000px;}
.y30_c02022{bottom:626.760000px;}
.y2f_c02022{bottom:647.460000px;}
.y2e_c02022{bottom:668.160000px;}
.y2d_c02022{bottom:714.790080px;}
.y2c_c02022{bottom:728.647020px;}
.y2b_c02022{bottom:742.323060px;}
.y2a_c02022{bottom:756.180000px;}
.y27_c02022{bottom:767.880000px;}
.y28_c02022{bottom:770.040000px;}
.y29_c02022{bottom:777.780000px;}
.y24_c02022{bottom:797.940000px;}
.y25_c02022{bottom:800.100000px;}
.y26_c02022{bottom:807.840000px;}
.y21_c02022{bottom:828.000000px;}
.y22_c02022{bottom:830.160000px;}
.y23_c02022{bottom:837.900000px;}
.y1f_c02022{bottom:858.060000px;}
.y20_c02022{bottom:867.960000px;}
.y19_c02022{bottom:888.120000px;}
.y1e_c02022{bottom:898.020000px;}
.y17_c02022{bottom:918.360000px;}
.y18_c02022{bottom:928.080000px;}
.y11_c02022{bottom:948.420000px;}
.y16_c02022{bottom:958.140000px;}
.yf_c02022{bottom:978.480000px;}
.ye_c02022{bottom:1006.383960px;}
.yd_c02022{bottom:1020.060000px;}
.yc_c02022{bottom:1035.365760px;}
.yb_c02022{bottom:1081.983060px;}
.ya_c02022{bottom:1095.840000px;}
.y8_c02022{bottom:1107.540000px;}
.y7_c02022{bottom:1145.700000px;}
.y5_c02022{bottom:1161.000000px;}
.y1_c02022{bottom:1172.880000px;}
.y3_c02022{bottom:1175.760000px;}
.h17_c02022{height:24.118500px;}
.hb_c02022{height:24.120000px;}
.h18_c02022{height:24.300000px;}
.hd_c02022{height:29.160000px;}
.h11_c02022{height:29.340000px;}
.h12_c02022{height:29.341500px;}
.h7_c02022{height:34.560000px;}
.h2_c02022{height:36.180000px;}
.he_c02022{height:36.281250px;}
.ha_c02022{height:47.344922px;}
.h5_c02022{height:48.616875px;}
.h13_c02022{height:50.312812px;}
.h4_c02022{height:54.421875px;}
.hf_c02022{height:60.226875px;}
.h9_c02022{height:70.641022px;}
.h6_c02022{height:70.664062px;}
.h3_c02022{height:72.562500px;}
.h10_c02022{height:82.676953px;}
.hc_c02022{height:84.898125px;}
.h14_c02022{height:88.020000px;}
.h15_c02022{height:96.508125px;}
.h16_c02022{height:108.843750px;}
.h8_c02022{height:121.179375px;}
.h0_c02022{height:1262.880000px;}
.h1_c02022{height:1263.000000px;}
.w4_c02022{width:41.760000px;}
.w9_c02022{width:52.380000px;}
.w8_c02022{width:190.620000px;}
.w6_c02022{width:233.100000px;}
.w7_c02022{width:445.681500px;}
.w5_c02022{width:456.481500px;}
.w2_c02022{width:498.780000px;}
.w3_c02022{width:541.620000px;}
.w0_c02022{width:892.980000px;}
.w1_c02022{width:893.250000px;}
.x0_c02022{left:0.000000px;}
.xa_c02022{left:7.560000px;}
.x7_c02022{left:9.540000px;}
.x1a_c02022{left:26.100000px;}
.xd_c02022{left:33.300000px;}
.x14_c02022{left:42.120000px;}
.x1d_c02022{left:79.740000px;}
.xf_c02022{left:95.400000px;}
.x9_c02022{left:106.740000px;}
.x1f_c02022{left:126.180000px;}
.x5_c02022{left:127.620000px;}
.x8_c02022{left:148.857840px;}
.x11_c02022{left:157.500000px;}
.x2_c02022{left:172.620000px;}
.x6_c02022{left:212.940000px;}
.x13_c02022{left:219.600000px;}
.x1_c02022{left:223.740000px;}
.x3_c02022{left:231.300000px;}
.x4_c02022{left:484.200000px;}
.x15_c02022{left:595.800000px;}
.xb_c02022{left:606.420000px;}
.x1b_c02022{left:621.540000px;}
.xc_c02022{left:632.160000px;}
.x1c_c02022{left:667.980000px;}
.xe_c02022{left:694.260000px;}
.x1e_c02022{left:714.420000px;}
.x10_c02022{left:756.360000px;}
.x20_c02022{left:760.860000px;}
.x16_c02022{left:787.140000px;}
.x19_c02022{left:794.880000px;}
.x18_c02022{left:806.580000px;}
.x17_c02022{left:813.240000px;}
.x12_c02022{left:818.640000px;}
@media print{
.v2_c02022{vertical-align:-88.970880pt;}
.v1_c02022{vertical-align:-40.320000pt;}
.v0_c02022{vertical-align:0.000000pt;}
.ls16_c02022{letter-spacing:-0.704000pt;}
.ls15_c02022{letter-spacing:-0.673920pt;}
.ls10_c02022{letter-spacing:-0.529920pt;}
.ls12_c02022{letter-spacing:-0.299520pt;}
.lsf_c02022{letter-spacing:-0.256000pt;}
.lsc_c02022{letter-spacing:-0.192000pt;}
.ls11_c02022{letter-spacing:-0.117760pt;}
.lsb_c02022{letter-spacing:-0.096000pt;}
.lsa_c02022{letter-spacing:0.000000pt;}
.ls14_c02022{letter-spacing:0.074880pt;}
.ls5_c02022{letter-spacing:0.117760pt;}
.ls8_c02022{letter-spacing:0.128000pt;}
.ls0_c02022{letter-spacing:0.144000pt;}
.ls6_c02022{letter-spacing:0.212480pt;}
.ls17_c02022{letter-spacing:0.294400pt;}
.ls13_c02022{letter-spacing:0.299520pt;}
.lsd_c02022{letter-spacing:0.320640pt;}
.lse_c02022{letter-spacing:0.340480pt;}
.ls3_c02022{letter-spacing:5.760000pt;}
.ls4_c02022{letter-spacing:5.770240pt;}
.ls9_c02022{letter-spacing:7.040000pt;}
.ls7_c02022{letter-spacing:10.880000pt;}
.ls2_c02022{letter-spacing:64.800000pt;}
.ls1_c02022{letter-spacing:2380.160000pt;}
.wsa_c02022{word-spacing:-24.000000pt;}
.ws6_c02022{word-spacing:-21.620480pt;}
.ws1_c02022{word-spacing:-21.280000pt;}
.ws3_c02022{word-spacing:-19.019520pt;}
.ws2_c02022{word-spacing:-18.420480pt;}
.ws8_c02022{word-spacing:-18.046080pt;}
.ws7_c02022{word-spacing:-15.744000pt;}
.ws9_c02022{word-spacing:-15.296000pt;}
.ws5_c02022{word-spacing:-14.837760pt;}
.ws4_c02022{word-spacing:-14.720000pt;}
.wsc_c02022{word-spacing:-14.602240pt;}
.ws0_c02022{word-spacing:-11.904000pt;}
.wsb_c02022{word-spacing:-11.808000pt;}
.ws17_c02022{word-spacing:-1.123200pt;}
.ws26_c02022{word-spacing:-0.942080pt;}
.ws25_c02022{word-spacing:-0.765440pt;}
.wsf_c02022{word-spacing:-0.748160pt;}
.ws1b_c02022{word-spacing:-0.647680pt;}
.ws1c_c02022{word-spacing:-0.529920pt;}
.ws16_c02022{word-spacing:-0.449280pt;}
.ws10_c02022{word-spacing:-0.340480pt;}
.ws18_c02022{word-spacing:-0.224640pt;}
.ws24_c02022{word-spacing:-0.170240pt;}
.ws1a_c02022{word-spacing:-0.149760pt;}
.ws21_c02022{word-spacing:-0.128000pt;}
.ws15_c02022{word-spacing:-0.117760pt;}
.wsd_c02022{word-spacing:0.000000pt;}
.ws19_c02022{word-spacing:0.117760pt;}
.ws11_c02022{word-spacing:0.256000pt;}
.wse_c02022{word-spacing:0.336000pt;}
.ws13_c02022{word-spacing:0.529920pt;}
.ws1f_c02022{word-spacing:5.120000pt;}
.ws20_c02022{word-spacing:5.376000pt;}
.ws12_c02022{word-spacing:5.652480pt;}
.ws14_c02022{word-spacing:5.888000pt;}
.ws22_c02022{word-spacing:7.040000pt;}
.ws23_c02022{word-spacing:7.296000pt;}
.ws1e_c02022{word-spacing:10.240000pt;}
.ws1d_c02022{word-spacing:10.496000pt;}
._1_c02022{margin-left:-1.282560pt;}
._0_c02022{width:0.912000pt;}
._4_c02022{width:2.016000pt;}
._2_c02022{width:6.119040pt;}
._5_c02022{width:8.392960pt;}
._3_c02022{width:10.199040pt;}
.fs7_c02022{font-size:32.000000pt;}
.fs2_c02022{font-size:42.880000pt;}
.fs1_c02022{font-size:48.000000pt;}
.fs8_c02022{font-size:53.120000pt;}
.fs5_c02022{font-size:58.880000pt;}
.fs0_c02022{font-size:64.000000pt;}
.fs6_c02022{font-size:74.880000pt;}
.fs4_c02022{font-size:85.120000pt;}
.fs9_c02022{font-size:96.000000pt;}
.fs3_c02022{font-size:106.880000pt;}
.y0_c02022{bottom:0.000000pt;}
.y14_c02022{bottom:1.760000pt;}
.y1c_c02022{bottom:1.920000pt;}
.y4_c02022{bottom:2.560000pt;}
.y10_c02022{bottom:4.160000pt;}
.y5a_c02022{bottom:4.320000pt;}
.y3e_c02022{bottom:4.480000pt;}
.y5c_c02022{bottom:4.640000pt;}
.y9_c02022{bottom:5.920000pt;}
.y3b_c02022{bottom:6.720000pt;}
.y58_c02022{bottom:6.880000pt;}
.y3c_c02022{bottom:7.840000pt;}
.y59_c02022{bottom:8.000000pt;}
.y15_c02022{bottom:8.640000pt;}
.y1d_c02022{bottom:8.800000pt;}
.y12_c02022{bottom:11.200000pt;}
.y1a_c02022{bottom:11.360000pt;}
.y13_c02022{bottom:12.320000pt;}
.y1b_c02022{bottom:12.480000pt;}
.y2_c02022{bottom:17.440000pt;}
.y6_c02022{bottom:51.200000pt;}
.y35_c02022{bottom:58.400000pt;}
.y34_c02022{bottom:60.960000pt;}
.y36_c02022{bottom:63.520000pt;}
.y5f_c02022{bottom:95.680000pt;}
.y60_c02022{bottom:99.840000pt;}
.y5d_c02022{bottom:117.760000pt;}
.y5e_c02022{bottom:121.920000pt;}
.y57_c02022{bottom:139.840000pt;}
.y5b_c02022{bottom:144.160000pt;}
.y55_c02022{bottom:162.080000pt;}
.y56_c02022{bottom:166.240000pt;}
.y53_c02022{bottom:184.160000pt;}
.y54_c02022{bottom:188.320000pt;}
.y51_c02022{bottom:206.240000pt;}
.y52_c02022{bottom:210.400000pt;}
.y4f_c02022{bottom:228.480000pt;}
.y50_c02022{bottom:232.640000pt;}
.y4d_c02022{bottom:250.560000pt;}
.y4e_c02022{bottom:254.720000pt;}
.y4b_c02022{bottom:272.640000pt;}
.y4c_c02022{bottom:276.800000pt;}
.y49_c02022{bottom:294.880000pt;}
.y4a_c02022{bottom:299.040000pt;}
.y47_c02022{bottom:316.960000pt;}
.y48_c02022{bottom:321.120000pt;}
.y45_c02022{bottom:339.040000pt;}
.y46_c02022{bottom:343.200000pt;}
.y43_c02022{bottom:361.280000pt;}
.y44_c02022{bottom:365.440000pt;}
.y41_c02022{bottom:383.360000pt;}
.y42_c02022{bottom:387.520000pt;}
.y3f_c02022{bottom:405.440000pt;}
.y40_c02022{bottom:409.600000pt;}
.y3a_c02022{bottom:427.680000pt;}
.y3d_c02022{bottom:431.840000pt;}
.y33_c02022{bottom:449.760000pt;}
.y39_c02022{bottom:461.600000pt;}
.y38_c02022{bottom:478.080000pt;}
.y37_c02022{bottom:502.240000pt;}
.y32_c02022{bottom:531.042720pt;}
.y31_c02022{bottom:543.360000pt;}
.y30_c02022{bottom:557.120000pt;}
.y2f_c02022{bottom:575.520000pt;}
.y2e_c02022{bottom:593.920000pt;}
.y2d_c02022{bottom:635.368960pt;}
.y2c_c02022{bottom:647.686240pt;}
.y2b_c02022{bottom:659.842720pt;}
.y2a_c02022{bottom:672.160000pt;}
.y27_c02022{bottom:682.560000pt;}
.y28_c02022{bottom:684.480000pt;}
.y29_c02022{bottom:691.360000pt;}
.y24_c02022{bottom:709.280000pt;}
.y25_c02022{bottom:711.200000pt;}
.y26_c02022{bottom:718.080000pt;}
.y21_c02022{bottom:736.000000pt;}
.y22_c02022{bottom:737.920000pt;}
.y23_c02022{bottom:744.800000pt;}
.y1f_c02022{bottom:762.720000pt;}
.y20_c02022{bottom:771.520000pt;}
.y19_c02022{bottom:789.440000pt;}
.y1e_c02022{bottom:798.240000pt;}
.y17_c02022{bottom:816.320000pt;}
.y18_c02022{bottom:824.960000pt;}
.y11_c02022{bottom:843.040000pt;}
.y16_c02022{bottom:851.680000pt;}
.yf_c02022{bottom:869.760000pt;}
.ye_c02022{bottom:894.563520pt;}
.yd_c02022{bottom:906.720000pt;}
.yc_c02022{bottom:920.325120pt;}
.yb_c02022{bottom:961.762720pt;}
.ya_c02022{bottom:974.080000pt;}
.y8_c02022{bottom:984.480000pt;}
.y7_c02022{bottom:1018.400000pt;}
.y5_c02022{bottom:1032.000000pt;}
.y1_c02022{bottom:1042.560000pt;}
.y3_c02022{bottom:1045.120000pt;}
.h17_c02022{height:21.438667pt;}
.hb_c02022{height:21.440000pt;}
.h18_c02022{height:21.600000pt;}
.hd_c02022{height:25.920000pt;}
.h11_c02022{height:26.080000pt;}
.h12_c02022{height:26.081333pt;}
.h7_c02022{height:30.720000pt;}
.h2_c02022{height:32.160000pt;}
.he_c02022{height:32.250000pt;}
.ha_c02022{height:42.084375pt;}
.h5_c02022{height:43.215000pt;}
.h13_c02022{height:44.722500pt;}
.h4_c02022{height:48.375000pt;}
.hf_c02022{height:53.535000pt;}
.h9_c02022{height:62.792020pt;}
.h6_c02022{height:62.812500pt;}
.h3_c02022{height:64.500000pt;}
.h10_c02022{height:73.490625pt;}
.hc_c02022{height:75.465000pt;}
.h14_c02022{height:78.240000pt;}
.h15_c02022{height:85.785000pt;}
.h16_c02022{height:96.750000pt;}
.h8_c02022{height:107.715000pt;}
.h0_c02022{height:1122.560000pt;}
.h1_c02022{height:1122.666667pt;}
.w4_c02022{width:37.120000pt;}
.w9_c02022{width:46.560000pt;}
.w8_c02022{width:169.440000pt;}
.w6_c02022{width:207.200000pt;}
.w7_c02022{width:396.161333pt;}
.w5_c02022{width:405.761333pt;}
.w2_c02022{width:443.360000pt;}
.w3_c02022{width:481.440000pt;}
.w0_c02022{width:793.760000pt;}
.w1_c02022{width:794.000000pt;}
.x0_c02022{left:0.000000pt;}
.xa_c02022{left:6.720000pt;}
.x7_c02022{left:8.480000pt;}
.x1a_c02022{left:23.200000pt;}
.xd_c02022{left:29.600000pt;}
.x14_c02022{left:37.440000pt;}
.x1d_c02022{left:70.880000pt;}
.xf_c02022{left:84.800000pt;}
.x9_c02022{left:94.880000pt;}
.x1f_c02022{left:112.160000pt;}
.x5_c02022{left:113.440000pt;}
.x8_c02022{left:132.318080pt;}
.x11_c02022{left:140.000000pt;}
.x2_c02022{left:153.440000pt;}
.x6_c02022{left:189.280000pt;}
.x13_c02022{left:195.200000pt;}
.x1_c02022{left:198.880000pt;}
.x3_c02022{left:205.600000pt;}
.x4_c02022{left:430.400000pt;}
.x15_c02022{left:529.600000pt;}
.xb_c02022{left:539.040000pt;}
.x1b_c02022{left:552.480000pt;}
.xc_c02022{left:561.920000pt;}
.x1c_c02022{left:593.760000pt;}
.xe_c02022{left:617.120000pt;}
.x1e_c02022{left:635.040000pt;}
.x10_c02022{left:672.320000pt;}
.x20_c02022{left:676.320000pt;}
.x16_c02022{left:699.680000pt;}
.x19_c02022{left:706.560000pt;}
.x18_c02022{left:716.960000pt;}
.x17_c02022{left:722.880000pt;}
.x12_c02022{left:727.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_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_c7989eb36543a75b4a4df36f.woff2')format("woff");}.ff1_c02023{font-family:ff1_c02023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02023;src:url('chunks/assets/font_df2eadebb28d583833518c25.woff2')format("woff");}.ff2_c02023{font-family:ff2_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:ff3_c02023;src:url('chunks/assets/font_a874a94eed35b55372ba58e8.woff2')format("woff");}.ff3_c02023{font-family:ff3_c02023;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_c02023;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02023{font-family:ff4_c02023;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;}
.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);}
.v1_c02023{vertical-align:-45.360000px;}
.v0_c02023{vertical-align:0.000000px;}
.v2_c02023{vertical-align:75.600000px;}
.ls14_c02023{letter-spacing:-1.192320px;}
.ls10_c02023{letter-spacing:-0.792000px;}
.lsf_c02023{letter-spacing:-0.758160px;}
.ls13_c02023{letter-spacing:-0.596160px;}
.ls17_c02023{letter-spacing:-0.397440px;}
.ls12_c02023{letter-spacing:-0.358560px;}
.lsd_c02023{letter-spacing:-0.336960px;}
.lsc_c02023{letter-spacing:-0.288000px;}
.ls1a_c02023{letter-spacing:-0.239040px;}
.lsa_c02023{letter-spacing:-0.216000px;}
.ls19_c02023{letter-spacing:-0.132480px;}
.ls9_c02023{letter-spacing:-0.108000px;}
.ls18_c02023{letter-spacing:-0.059760px;}
.ls8_c02023{letter-spacing:0.000000px;}
.ls16_c02023{letter-spacing:0.119520px;}
.ls4_c02023{letter-spacing:0.132480px;}
.ls0_c02023{letter-spacing:0.162000px;}
.ls15_c02023{letter-spacing:0.239040px;}
.ls7_c02023{letter-spacing:0.264960px;}
.ls5_c02023{letter-spacing:0.288000px;}
.ls11_c02023{letter-spacing:0.324000px;}
.lse_c02023{letter-spacing:0.336960px;}
.ls6_c02023{letter-spacing:0.360000px;}
.lsb_c02023{letter-spacing:0.383040px;}
.ls1b_c02023{letter-spacing:1.008000px;}
.ls2_c02023{letter-spacing:7.920000px;}
.ls3_c02023{letter-spacing:20.160000px;}
.ls1_c02023{letter-spacing:2677.680000px;}
.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;}
}
.ws8_c02023{word-spacing:-108.000000px;}
.ws1_c02023{word-spacing:-23.940000px;}
.ws3_c02023{word-spacing:-20.723040px;}
.ws4_c02023{word-spacing:-20.301840px;}
.ws10_c02023{word-spacing:-19.008000px;}
.ws11_c02023{word-spacing:-17.784000px;}
.ws2_c02023{word-spacing:-17.712000px;}
.ws5_c02023{word-spacing:-17.208000px;}
.ws7_c02023{word-spacing:-16.692480px;}
.ws9_c02023{word-spacing:-16.560000px;}
.wse_c02023{word-spacing:-16.427520px;}
.wsd_c02023{word-spacing:-16.162560px;}
.wsa_c02023{word-spacing:-15.963840px;}
.wsb_c02023{word-spacing:-15.367680px;}
.wsc_c02023{word-spacing:-15.179040px;}
.wsf_c02023{word-spacing:-14.700960px;}
.ws0_c02023{word-spacing:-13.392000px;}
.ws6_c02023{word-spacing:-13.284000px;}
.ws21_c02023{word-spacing:-0.861120px;}
.ws1c_c02023{word-spacing:-0.505440px;}
.ws14_c02023{word-spacing:-0.383040px;}
.ws1e_c02023{word-spacing:-0.324000px;}
.ws24_c02023{word-spacing:-0.288000px;}
.ws1b_c02023{word-spacing:-0.191520px;}
.ws1d_c02023{word-spacing:-0.132480px;}
.ws12_c02023{word-spacing:0.000000px;}
.ws22_c02023{word-spacing:0.059760px;}
.ws23_c02023{word-spacing:0.239040px;}
.ws1a_c02023{word-spacing:0.288000px;}
.ws1f_c02023{word-spacing:0.324000px;}
.ws20_c02023{word-spacing:0.358560px;}
.ws13_c02023{word-spacing:0.378000px;}
.ws15_c02023{word-spacing:7.200000px;}
.ws17_c02023{word-spacing:7.920000px;}
.ws16_c02023{word-spacing:8.208000px;}
.ws18_c02023{word-spacing:19.872000px;}
.ws19_c02023{word-spacing:20.448000px;}
._1_c02023{margin-left:-1.882080px;}
._0_c02023{width:1.026000px;}
._4_c02023{width:2.702160px;}
._3_c02023{width:7.354080px;}
._2_c02023{width:8.478000px;}
._5_c02023{width:79.920000px;}
.fc1_c02023{color:rgb(140,140,140);}
.fc0_c02023{color:rgb(0,0,0);}
.fs6_c02023{font-size:36.000000px;}
.fs2_c02023{font-size:48.240000px;}
.fs1_c02023{font-size:54.000000px;}
.fs8_c02023{font-size:59.760000px;}
.fs7_c02023{font-size:66.240000px;}
.fs0_c02023{font-size:72.000000px;}
.fs4_c02023{font-size:84.240000px;}
.fs3_c02023{font-size:95.760000px;}
.fs5_c02023{font-size:108.000000px;}
.y0_c02023{bottom:0.000000px;}
.y4_c02023{bottom:2.880000px;}
.y43_c02023{bottom:3.780000px;}
.y1b_c02023{bottom:4.140000px;}
.y67_c02023{bottom:4.500000px;}
.y25_c02023{bottom:5.940000px;}
.y1e_c02023{bottom:6.120000px;}
.y27_c02023{bottom:6.480000px;}
.y20_c02023{bottom:6.660000px;}
.y2_c02023{bottom:19.620000px;}
.y3d_c02023{bottom:21.600000px;}
.y3f_c02023{bottom:22.140000px;}
.y22_c02023{bottom:22.680000px;}
.y23_c02023{bottom:22.860000px;}
.y68_c02023{bottom:37.080000px;}
.y38_c02023{bottom:38.340000px;}
.y3a_c02023{bottom:38.520000px;}
.y64_c02023{bottom:45.540000px;}
.y65_c02023{bottom:45.900000px;}
.y6_c02023{bottom:57.600000px;}
.yf_c02023{bottom:84.600000px;}
.ye_c02023{bottom:87.480000px;}
.y15_c02023{bottom:90.360000px;}
.y6e_c02023{bottom:145.080000px;}
.y70_c02023{bottom:149.580000px;}
.y6f_c02023{bottom:170.280000px;}
.y71_c02023{bottom:182.160000px;}
.y6a_c02023{bottom:208.080000px;}
.y6c_c02023{bottom:212.580000px;}
.y6b_c02023{bottom:233.280000px;}
.y6d_c02023{bottom:245.160000px;}
.y63_c02023{bottom:270.900000px;}
.y66_c02023{bottom:296.100000px;}
.y69_c02023{bottom:307.980000px;}
.y62_c02023{bottom:336.794940px;}
.y61_c02023{bottom:350.290080px;}
.y60_c02023{bottom:364.147020px;}
.y5f_c02023{bottom:378.003960px;}
.y5e_c02023{bottom:391.680000px;}
.y5d_c02023{bottom:406.800000px;}
.y5c_c02023{bottom:426.250080px;}
.y5b_c02023{bottom:439.926120px;}
.y5a_c02023{bottom:453.783060px;}
.y59_c02023{bottom:467.640000px;}
.y54_c02023{bottom:479.340000px;}
.y57_c02023{bottom:483.120000px;}
.y55_c02023{bottom:498.960000px;}
.y56_c02023{bottom:500.580000px;}
.y58_c02023{bottom:500.940000px;}
.y52_c02023{bottom:526.680000px;}
.y50_c02023{bottom:546.300000px;}
.y51_c02023{bottom:547.920000px;}
.y53_c02023{bottom:548.280000px;}
.y4f_c02023{bottom:565.020000px;}
.y4b_c02023{bottom:574.020000px;}
.y4d_c02023{bottom:579.780000px;}
.y4e_c02023{bottom:579.960000px;}
.y4a_c02023{bottom:596.700000px;}
.y4c_c02023{bottom:596.880000px;}
.y45_c02023{bottom:605.700000px;}
.y48_c02023{bottom:609.480000px;}
.y46_c02023{bottom:625.500000px;}
.y47_c02023{bottom:627.120000px;}
.y49_c02023{bottom:627.300000px;}
.y40_c02023{bottom:653.040000px;}
.y41_c02023{bottom:672.840000px;}
.y42_c02023{bottom:674.460000px;}
.y44_c02023{bottom:674.640000px;}
.y37_c02023{bottom:700.380000px;}
.y3c_c02023{bottom:704.160000px;}
.y39_c02023{bottom:720.000000px;}
.y3b_c02023{bottom:721.620000px;}
.y3e_c02023{bottom:721.980000px;}
.y33_c02023{bottom:747.720000px;}
.y35_c02023{bottom:753.480000px;}
.y36_c02023{bottom:753.840000px;}
.y32_c02023{bottom:770.580000px;}
.y34_c02023{bottom:770.760000px;}
.y2f_c02023{bottom:779.580000px;}
.y30_c02023{bottom:785.340000px;}
.y31_c02023{bottom:785.520000px;}
.y2e_c02023{bottom:802.260000px;}
.y2b_c02023{bottom:811.260000px;}
.y2c_c02023{bottom:817.020000px;}
.y2d_c02023{bottom:817.380000px;}
.y28_c02023{bottom:843.120000px;}
.y29_c02023{bottom:848.880000px;}
.y2a_c02023{bottom:849.240000px;}
.y21_c02023{bottom:874.980000px;}
.y24_c02023{bottom:880.740000px;}
.y26_c02023{bottom:880.920000px;}
.y1a_c02023{bottom:906.660000px;}
.y1d_c02023{bottom:912.420000px;}
.y1f_c02023{bottom:912.780000px;}
.y19_c02023{bottom:929.520000px;}
.y1c_c02023{bottom:929.700000px;}
.yd_c02023{bottom:938.520000px;}
.y14_c02023{bottom:941.400000px;}
.y13_c02023{bottom:955.080000px;}
.y18_c02023{bottom:957.060000px;}
.y12_c02023{bottom:970.740000px;}
.y17_c02023{bottom:975.600000px;}
.y11_c02023{bottom:993.060000px;}
.y16_c02023{bottom:1005.300000px;}
.y10_c02023{bottom:1006.920000px;}
.yc_c02023{bottom:1049.227020px;}
.yb_c02023{bottom:1063.083960px;}
.ya_c02023{bottom:1076.760000px;}
.y9_c02023{bottom:1092.060000px;}
.y8_c02023{bottom:1112.760000px;}
.y7_c02023{bottom:1134.360000px;}
.y5_c02023{bottom:1161.000000px;}
.y1_c02023{bottom:1172.880000px;}
.y3_c02023{bottom:1175.760000px;}
.h13_c02023{height:30.960000px;}
.h12_c02023{height:30.961500px;}
.h14_c02023{height:31.138500px;}
.hd_c02023{height:31.140000px;}
.he_c02023{height:35.332031px;}
.h2_c02023{height:36.180000px;}
.hc_c02023{height:36.281250px;}
.h15_c02023{height:46.620000px;}
.h17_c02023{height:46.621500px;}
.h8_c02023{height:47.344922px;}
.h5_c02023{height:48.616875px;}
.h4_c02023{height:54.421875px;}
.h16_c02023{height:58.651172px;}
.h10_c02023{height:60.226875px;}
.h1a_c02023{height:62.100000px;}
.h19_c02023{height:65.010937px;}
.h6_c02023{height:70.664062px;}
.hf_c02023{height:71.982422px;}
.h3_c02023{height:72.562500px;}
.ha_c02023{height:84.898125px;}
.h7_c02023{height:96.508125px;}
.h11_c02023{height:105.996094px;}
.h9_c02023{height:106.920000px;}
.hb_c02023{height:108.843750px;}
.h18_c02023{height:110.932031px;}
.h0_c02023{height:1262.880000px;}
.h1_c02023{height:1263.000000px;}
.w3_c02023{width:41.760000px;}
.w6_c02023{width:52.380000px;}
.w5_c02023{width:180.001500px;}
.w8_c02023{width:190.620000px;}
.w4_c02023{width:456.480000px;}
.w7_c02023{width:488.160000px;}
.w2_c02023{width:498.780000px;}
.w0_c02023{width:892.980000px;}
.w1_c02023{width:893.250000px;}
.x0_c02023{left:0.000000px;}
.x8_c02023{left:7.740000px;}
.xc_c02023{left:9.540000px;}
.x12_c02023{left:35.460000px;}
.x7_c02023{left:53.460000px;}
.x10_c02023{left:61.200000px;}
.x14_c02023{left:83.160000px;}
.x6_c02023{left:95.580000px;}
.x9_c02023{left:103.680000px;}
.x19_c02023{left:106.740000px;}
.x18_c02023{left:107.820000px;}
.x1a_c02023{left:114.300000px;}
.x5_c02023{left:127.620000px;}
.x16_c02023{left:131.040000px;}
.x2_c02023{left:172.620000px;}
.x1_c02023{left:223.740000px;}
.x3_c02023{left:231.300000px;}
.x4_c02023{left:484.200000px;}
.xa_c02023{left:553.140000px;}
.x11_c02023{left:577.260000px;}
.x1b_c02023{left:595.800000px;}
.x1c_c02023{left:619.920000px;}
.x13_c02023{left:625.140000px;}
.x1d_c02023{left:667.800000px;}
.x15_c02023{left:673.020000px;}
.x17_c02023{left:714.060000px;}
.x1e_c02023{left:715.680000px;}
.xb_c02023{left:734.040000px;}
.xf_c02023{left:741.600000px;}
.xe_c02023{left:753.300000px;}
.x1f_c02023{left:756.720000px;}
.xd_c02023{left:759.960000px;}
@media print{
.v1_c02023{vertical-align:-40.320000pt;}
.v0_c02023{vertical-align:0.000000pt;}
.v2_c02023{vertical-align:67.200000pt;}
.ls14_c02023{letter-spacing:-1.059840pt;}
.ls10_c02023{letter-spacing:-0.704000pt;}
.lsf_c02023{letter-spacing:-0.673920pt;}
.ls13_c02023{letter-spacing:-0.529920pt;}
.ls17_c02023{letter-spacing:-0.353280pt;}
.ls12_c02023{letter-spacing:-0.318720pt;}
.lsd_c02023{letter-spacing:-0.299520pt;}
.lsc_c02023{letter-spacing:-0.256000pt;}
.ls1a_c02023{letter-spacing:-0.212480pt;}
.lsa_c02023{letter-spacing:-0.192000pt;}
.ls19_c02023{letter-spacing:-0.117760pt;}
.ls9_c02023{letter-spacing:-0.096000pt;}
.ls18_c02023{letter-spacing:-0.053120pt;}
.ls8_c02023{letter-spacing:0.000000pt;}
.ls16_c02023{letter-spacing:0.106240pt;}
.ls4_c02023{letter-spacing:0.117760pt;}
.ls0_c02023{letter-spacing:0.144000pt;}
.ls15_c02023{letter-spacing:0.212480pt;}
.ls7_c02023{letter-spacing:0.235520pt;}
.ls5_c02023{letter-spacing:0.256000pt;}
.ls11_c02023{letter-spacing:0.288000pt;}
.lse_c02023{letter-spacing:0.299520pt;}
.ls6_c02023{letter-spacing:0.320000pt;}
.lsb_c02023{letter-spacing:0.340480pt;}
.ls1b_c02023{letter-spacing:0.896000pt;}
.ls2_c02023{letter-spacing:7.040000pt;}
.ls3_c02023{letter-spacing:17.920000pt;}
.ls1_c02023{letter-spacing:2380.160000pt;}
.ws8_c02023{word-spacing:-96.000000pt;}
.ws1_c02023{word-spacing:-21.280000pt;}
.ws3_c02023{word-spacing:-18.420480pt;}
.ws4_c02023{word-spacing:-18.046080pt;}
.ws10_c02023{word-spacing:-16.896000pt;}
.ws11_c02023{word-spacing:-15.808000pt;}
.ws2_c02023{word-spacing:-15.744000pt;}
.ws5_c02023{word-spacing:-15.296000pt;}
.ws7_c02023{word-spacing:-14.837760pt;}
.ws9_c02023{word-spacing:-14.720000pt;}
.wse_c02023{word-spacing:-14.602240pt;}
.wsd_c02023{word-spacing:-14.366720pt;}
.wsa_c02023{word-spacing:-14.190080pt;}
.wsb_c02023{word-spacing:-13.660160pt;}
.wsc_c02023{word-spacing:-13.492480pt;}
.wsf_c02023{word-spacing:-13.067520pt;}
.ws0_c02023{word-spacing:-11.904000pt;}
.ws6_c02023{word-spacing:-11.808000pt;}
.ws21_c02023{word-spacing:-0.765440pt;}
.ws1c_c02023{word-spacing:-0.449280pt;}
.ws14_c02023{word-spacing:-0.340480pt;}
.ws1e_c02023{word-spacing:-0.288000pt;}
.ws24_c02023{word-spacing:-0.256000pt;}
.ws1b_c02023{word-spacing:-0.170240pt;}
.ws1d_c02023{word-spacing:-0.117760pt;}
.ws12_c02023{word-spacing:0.000000pt;}
.ws22_c02023{word-spacing:0.053120pt;}
.ws23_c02023{word-spacing:0.212480pt;}
.ws1a_c02023{word-spacing:0.256000pt;}
.ws1f_c02023{word-spacing:0.288000pt;}
.ws20_c02023{word-spacing:0.318720pt;}
.ws13_c02023{word-spacing:0.336000pt;}
.ws15_c02023{word-spacing:6.400000pt;}
.ws17_c02023{word-spacing:7.040000pt;}
.ws16_c02023{word-spacing:7.296000pt;}
.ws18_c02023{word-spacing:17.664000pt;}
.ws19_c02023{word-spacing:18.176000pt;}
._1_c02023{margin-left:-1.672960pt;}
._0_c02023{width:0.912000pt;}
._4_c02023{width:2.401920pt;}
._3_c02023{width:6.536960pt;}
._2_c02023{width:7.536000pt;}
._5_c02023{width:71.040000pt;}
.fs6_c02023{font-size:32.000000pt;}
.fs2_c02023{font-size:42.880000pt;}
.fs1_c02023{font-size:48.000000pt;}
.fs8_c02023{font-size:53.120000pt;}
.fs7_c02023{font-size:58.880000pt;}
.fs0_c02023{font-size:64.000000pt;}
.fs4_c02023{font-size:74.880000pt;}
.fs3_c02023{font-size:85.120000pt;}
.fs5_c02023{font-size:96.000000pt;}
.y0_c02023{bottom:0.000000pt;}
.y4_c02023{bottom:2.560000pt;}
.y43_c02023{bottom:3.360000pt;}
.y1b_c02023{bottom:3.680000pt;}
.y67_c02023{bottom:4.000000pt;}
.y25_c02023{bottom:5.280000pt;}
.y1e_c02023{bottom:5.440000pt;}
.y27_c02023{bottom:5.760000pt;}
.y20_c02023{bottom:5.920000pt;}
.y2_c02023{bottom:17.440000pt;}
.y3d_c02023{bottom:19.200000pt;}
.y3f_c02023{bottom:19.680000pt;}
.y22_c02023{bottom:20.160000pt;}
.y23_c02023{bottom:20.320000pt;}
.y68_c02023{bottom:32.960000pt;}
.y38_c02023{bottom:34.080000pt;}
.y3a_c02023{bottom:34.240000pt;}
.y64_c02023{bottom:40.480000pt;}
.y65_c02023{bottom:40.800000pt;}
.y6_c02023{bottom:51.200000pt;}
.yf_c02023{bottom:75.200000pt;}
.ye_c02023{bottom:77.760000pt;}
.y15_c02023{bottom:80.320000pt;}
.y6e_c02023{bottom:128.960000pt;}
.y70_c02023{bottom:132.960000pt;}
.y6f_c02023{bottom:151.360000pt;}
.y71_c02023{bottom:161.920000pt;}
.y6a_c02023{bottom:184.960000pt;}
.y6c_c02023{bottom:188.960000pt;}
.y6b_c02023{bottom:207.360000pt;}
.y6d_c02023{bottom:217.920000pt;}
.y63_c02023{bottom:240.800000pt;}
.y66_c02023{bottom:263.200000pt;}
.y69_c02023{bottom:273.760000pt;}
.y62_c02023{bottom:299.373280pt;}
.y61_c02023{bottom:311.368960pt;}
.y60_c02023{bottom:323.686240pt;}
.y5f_c02023{bottom:336.003520pt;}
.y5e_c02023{bottom:348.160000pt;}
.y5d_c02023{bottom:361.600000pt;}
.y5c_c02023{bottom:378.888960pt;}
.y5b_c02023{bottom:391.045440pt;}
.y5a_c02023{bottom:403.362720pt;}
.y59_c02023{bottom:415.680000pt;}
.y54_c02023{bottom:426.080000pt;}
.y57_c02023{bottom:429.440000pt;}
.y55_c02023{bottom:443.520000pt;}
.y56_c02023{bottom:444.960000pt;}
.y58_c02023{bottom:445.280000pt;}
.y52_c02023{bottom:468.160000pt;}
.y50_c02023{bottom:485.600000pt;}
.y51_c02023{bottom:487.040000pt;}
.y53_c02023{bottom:487.360000pt;}
.y4f_c02023{bottom:502.240000pt;}
.y4b_c02023{bottom:510.240000pt;}
.y4d_c02023{bottom:515.360000pt;}
.y4e_c02023{bottom:515.520000pt;}
.y4a_c02023{bottom:530.400000pt;}
.y4c_c02023{bottom:530.560000pt;}
.y45_c02023{bottom:538.400000pt;}
.y48_c02023{bottom:541.760000pt;}
.y46_c02023{bottom:556.000000pt;}
.y47_c02023{bottom:557.440000pt;}
.y49_c02023{bottom:557.600000pt;}
.y40_c02023{bottom:580.480000pt;}
.y41_c02023{bottom:598.080000pt;}
.y42_c02023{bottom:599.520000pt;}
.y44_c02023{bottom:599.680000pt;}
.y37_c02023{bottom:622.560000pt;}
.y3c_c02023{bottom:625.920000pt;}
.y39_c02023{bottom:640.000000pt;}
.y3b_c02023{bottom:641.440000pt;}
.y3e_c02023{bottom:641.760000pt;}
.y33_c02023{bottom:664.640000pt;}
.y35_c02023{bottom:669.760000pt;}
.y36_c02023{bottom:670.080000pt;}
.y32_c02023{bottom:684.960000pt;}
.y34_c02023{bottom:685.120000pt;}
.y2f_c02023{bottom:692.960000pt;}
.y30_c02023{bottom:698.080000pt;}
.y31_c02023{bottom:698.240000pt;}
.y2e_c02023{bottom:713.120000pt;}
.y2b_c02023{bottom:721.120000pt;}
.y2c_c02023{bottom:726.240000pt;}
.y2d_c02023{bottom:726.560000pt;}
.y28_c02023{bottom:749.440000pt;}
.y29_c02023{bottom:754.560000pt;}
.y2a_c02023{bottom:754.880000pt;}
.y21_c02023{bottom:777.760000pt;}
.y24_c02023{bottom:782.880000pt;}
.y26_c02023{bottom:783.040000pt;}
.y1a_c02023{bottom:805.920000pt;}
.y1d_c02023{bottom:811.040000pt;}
.y1f_c02023{bottom:811.360000pt;}
.y19_c02023{bottom:826.240000pt;}
.y1c_c02023{bottom:826.400000pt;}
.yd_c02023{bottom:834.240000pt;}
.y14_c02023{bottom:836.800000pt;}
.y13_c02023{bottom:848.960000pt;}
.y18_c02023{bottom:850.720000pt;}
.y12_c02023{bottom:862.880000pt;}
.y17_c02023{bottom:867.200000pt;}
.y11_c02023{bottom:882.720000pt;}
.y16_c02023{bottom:893.600000pt;}
.y10_c02023{bottom:895.040000pt;}
.yc_c02023{bottom:932.646240pt;}
.yb_c02023{bottom:944.963520pt;}
.ya_c02023{bottom:957.120000pt;}
.y9_c02023{bottom:970.720000pt;}
.y8_c02023{bottom:989.120000pt;}
.y7_c02023{bottom:1008.320000pt;}
.y5_c02023{bottom:1032.000000pt;}
.y1_c02023{bottom:1042.560000pt;}
.y3_c02023{bottom:1045.120000pt;}
.h13_c02023{height:27.520000pt;}
.h12_c02023{height:27.521333pt;}
.h14_c02023{height:27.678667pt;}
.hd_c02023{height:27.680000pt;}
.he_c02023{height:31.406250pt;}
.h2_c02023{height:32.160000pt;}
.hc_c02023{height:32.250000pt;}
.h15_c02023{height:41.440000pt;}
.h17_c02023{height:41.441333pt;}
.h8_c02023{height:42.084375pt;}
.h5_c02023{height:43.215000pt;}
.h4_c02023{height:48.375000pt;}
.h16_c02023{height:52.134375pt;}
.h10_c02023{height:53.535000pt;}
.h1a_c02023{height:55.200000pt;}
.h19_c02023{height:57.787500pt;}
.h6_c02023{height:62.812500pt;}
.hf_c02023{height:63.984375pt;}
.h3_c02023{height:64.500000pt;}
.ha_c02023{height:75.465000pt;}
.h7_c02023{height:85.785000pt;}
.h11_c02023{height:94.218750pt;}
.h9_c02023{height:95.040000pt;}
.hb_c02023{height:96.750000pt;}
.h18_c02023{height:98.606250pt;}
.h0_c02023{height:1122.560000pt;}
.h1_c02023{height:1122.666667pt;}
.w3_c02023{width:37.120000pt;}
.w6_c02023{width:46.560000pt;}
.w5_c02023{width:160.001333pt;}
.w8_c02023{width:169.440000pt;}
.w4_c02023{width:405.760000pt;}
.w7_c02023{width:433.920000pt;}
.w2_c02023{width:443.360000pt;}
.w0_c02023{width:793.760000pt;}
.w1_c02023{width:794.000000pt;}
.x0_c02023{left:0.000000pt;}
.x8_c02023{left:6.880000pt;}
.xc_c02023{left:8.480000pt;}
.x12_c02023{left:31.520000pt;}
.x7_c02023{left:47.520000pt;}
.x10_c02023{left:54.400000pt;}
.x14_c02023{left:73.920000pt;}
.x6_c02023{left:84.960000pt;}
.x9_c02023{left:92.160000pt;}
.x19_c02023{left:94.880000pt;}
.x18_c02023{left:95.840000pt;}
.x1a_c02023{left:101.600000pt;}
.x5_c02023{left:113.440000pt;}
.x16_c02023{left:116.480000pt;}
.x2_c02023{left:153.440000pt;}
.x1_c02023{left:198.880000pt;}
.x3_c02023{left:205.600000pt;}
.x4_c02023{left:430.400000pt;}
.xa_c02023{left:491.680000pt;}
.x11_c02023{left:513.120000pt;}
.x1b_c02023{left:529.600000pt;}
.x1c_c02023{left:551.040000pt;}
.x13_c02023{left:555.680000pt;}
.x1d_c02023{left:593.600000pt;}
.x15_c02023{left:598.240000pt;}
.x17_c02023{left:634.720000pt;}
.x1e_c02023{left:636.160000pt;}
.xb_c02023{left:652.480000pt;}
.xf_c02023{left:659.200000pt;}
.xe_c02023{left:669.600000pt;}
.x1f_c02023{left:672.640000pt;}
.xd_c02023{left:675.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_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_3408087ab2d05779efae84b5.woff2')format("woff");}.ff1_c02024{font-family:ff1_c02024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02024;src:url('chunks/assets/font_e6e5849a6635d455888676fc.woff2')format("woff");}.ff2_c02024{font-family:ff2_c02024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02024;src:url('chunks/assets/font_a874a94eed35b55372ba58e8.woff2')format("woff");}.ff3_c02024{font-family:ff3_c02024;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_c02024;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02024{font-family:ff4_c02024;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;}
.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);}
.v3_c02024{vertical-align:-108.000000px;}
.v2_c02024{vertical-align:-100.080000px;}
.v4_c02024{vertical-align:-78.495840px;}
.v1_c02024{vertical-align:-45.360000px;}
.v0_c02024{vertical-align:0.000000px;}
.ls18_c02024{letter-spacing:-0.792000px;}
.ls17_c02024{letter-spacing:-0.758160px;}
.ls19_c02024{letter-spacing:-0.728640px;}
.ls15_c02024{letter-spacing:-0.720000px;}
.ls1b_c02024{letter-spacing:-0.596160px;}
.ls16_c02024{letter-spacing:-0.336960px;}
.ls11_c02024{letter-spacing:-0.288000px;}
.ls1a_c02024{letter-spacing:-0.264960px;}
.lse_c02024{letter-spacing:-0.216000px;}
.ls13_c02024{letter-spacing:-0.132480px;}
.lsd_c02024{letter-spacing:-0.108000px;}
.lsc_c02024{letter-spacing:0.000000px;}
.lsa_c02024{letter-spacing:0.132480px;}
.ls10_c02024{letter-spacing:0.144000px;}
.ls0_c02024{letter-spacing:0.162000px;}
.ls7_c02024{letter-spacing:0.288000px;}
.ls12_c02024{letter-spacing:0.324000px;}
.ls14_c02024{letter-spacing:0.331200px;}
.ls9_c02024{letter-spacing:0.360000px;}
.lsf_c02024{letter-spacing:0.383040px;}
.ls3_c02024{letter-spacing:8.640000px;}
.ls5_c02024{letter-spacing:10.080000px;}
.ls6_c02024{letter-spacing:10.800000px;}
.ls2_c02024{letter-spacing:12.960000px;}
.lsb_c02024{letter-spacing:13.680000px;}
.ls8_c02024{letter-spacing:37.800000px;}
.ls4_c02024{letter-spacing:72.900000px;}
.ls1_c02024{letter-spacing:2677.680000px;}
.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;}
}
.wsd_c02024{word-spacing:-108.000000px;}
.wsb_c02024{word-spacing:-27.000000px;}
.ws1_c02024{word-spacing:-24.323040px;}
.ws6_c02024{word-spacing:-23.940000px;}
.ws8_c02024{word-spacing:-20.723040px;}
.ws9_c02024{word-spacing:-20.301840px;}
.ws7_c02024{word-spacing:-18.000000px;}
.ws12_c02024{word-spacing:-17.784000px;}
.ws2_c02024{word-spacing:-17.712000px;}
.wsa_c02024{word-spacing:-17.208000px;}
.ws5_c02024{word-spacing:-16.891200px;}
.wse_c02024{word-spacing:-16.692480px;}
.ws3_c02024{word-spacing:-16.560000px;}
.ws4_c02024{word-spacing:-16.427520px;}
.ws10_c02024{word-spacing:-16.295040px;}
.ws11_c02024{word-spacing:-15.963840px;}
.wsf_c02024{word-spacing:-15.831360px;}
.ws0_c02024{word-spacing:-13.392000px;}
.wsc_c02024{word-spacing:-13.284000px;}
.ws29_c02024{word-spacing:-0.861120px;}
.ws22_c02024{word-spacing:-0.728640px;}
.ws2d_c02024{word-spacing:-0.331200px;}
.ws20_c02024{word-spacing:-0.324000px;}
.ws27_c02024{word-spacing:-0.288000px;}
.ws28_c02024{word-spacing:-0.191520px;}
.ws21_c02024{word-spacing:-0.132480px;}
.ws13_c02024{word-spacing:0.000000px;}
.ws1f_c02024{word-spacing:0.288000px;}
.ws14_c02024{word-spacing:0.378000px;}
.ws2a_c02024{word-spacing:0.728640px;}
.ws31_c02024{word-spacing:2.053440px;}
.ws30_c02024{word-spacing:2.185920px;}
.ws32_c02024{word-spacing:2.782080px;}
.ws15_c02024{word-spacing:7.920000px;}
.ws1b_c02024{word-spacing:8.640000px;}
.ws1a_c02024{word-spacing:8.928000px;}
.ws23_c02024{word-spacing:10.080000px;}
.ws24_c02024{word-spacing:10.368000px;}
.ws25_c02024{word-spacing:10.800000px;}
.ws2c_c02024{word-spacing:12.651840px;}
.ws17_c02024{word-spacing:12.672000px;}
.ws16_c02024{word-spacing:12.816000px;}
.ws18_c02024{word-spacing:13.248000px;}
.ws2b_c02024{word-spacing:13.711680px;}
.ws26_c02024{word-spacing:18.720000px;}
.ws19_c02024{word-spacing:25.920000px;}
.ws1d_c02024{word-spacing:31.680000px;}
.ws1c_c02024{word-spacing:31.968000px;}
.ws1e_c02024{word-spacing:32.688000px;}
.ws2e_c02024{word-spacing:60.344640px;}
.ws2f_c02024{word-spacing:60.477120px;}
._2_c02024{margin-left:-1.296000px;}
._0_c02024{width:1.026000px;}
._3_c02024{width:2.322000px;}
._1_c02024{width:7.873920px;}
._6_c02024{width:10.638000px;}
._8_c02024{width:12.931200px;}
._9_c02024{width:14.304960px;}
._7_c02024{width:19.008000px;}
._4_c02024{width:32.904000px;}
._a_c02024{width:61.079040px;}
._5_c02024{width:139.739040px;}
.fc2_c02024{color:rgb(255,0,0);}
.fc1_c02024{color:rgb(140,140,140);}
.fc0_c02024{color:rgb(0,0,0);}
.fs8_c02024{font-size:30.240000px;}
.fs4_c02024{font-size:36.000000px;}
.fs2_c02024{font-size:48.240000px;}
.fs1_c02024{font-size:54.000000px;}
.fs9_c02024{font-size:59.760000px;}
.fs6_c02024{font-size:66.240000px;}
.fs0_c02024{font-size:72.000000px;}
.fs7_c02024{font-size:84.240000px;}
.fs3_c02024{font-size:95.760000px;}
.fs5_c02024{font-size:108.000000px;}
.y0_c02024{bottom:0.000000px;}
.y1d_c02024{bottom:1.980000px;}
.y49_c02024{bottom:2.340000px;}
.y4_c02024{bottom:2.880000px;}
.y54_c02024{bottom:3.600000px;}
.y59_c02024{bottom:3.780000px;}
.y33_c02024{bottom:4.140000px;}
.y29_c02024{bottom:5.940000px;}
.y21_c02024{bottom:6.120000px;}
.y2b_c02024{bottom:6.480000px;}
.y23_c02024{bottom:6.660000px;}
.y34_c02024{bottom:12.960000px;}
.y36_c02024{bottom:13.500000px;}
.y27_c02024{bottom:14.400000px;}
.y1f_c02024{bottom:14.580000px;}
.y28_c02024{bottom:16.020000px;}
.y20_c02024{bottom:16.200000px;}
.y2_c02024{bottom:19.620000px;}
.y31_c02024{bottom:21.420000px;}
.y32_c02024{bottom:23.040000px;}
.y4a_c02024{bottom:23.400000px;}
.y4c_c02024{bottom:23.940000px;}
.y55_c02024{bottom:26.640000px;}
.y46_c02024{bottom:31.860000px;}
.y47_c02024{bottom:33.480000px;}
.y51_c02024{bottom:35.100000px;}
.y52_c02024{bottom:38.160000px;}
.y6_c02024{bottom:57.600000px;}
.y19_c02024{bottom:65.520000px;}
.y18_c02024{bottom:68.400000px;}
.y1a_c02024{bottom:71.280000px;}
.y57_c02024{bottom:111.420000px;}
.y58_c02024{bottom:132.480000px;}
.y5a_c02024{bottom:138.060000px;}
.y50_c02024{bottom:163.980000px;}
.y53_c02024{bottom:184.860000px;}
.y56_c02024{bottom:190.620000px;}
.y4f_c02024{bottom:219.240000px;}
.y4e_c02024{bottom:253.983960px;}
.y4d_c02024{bottom:267.660000px;}
.y45_c02024{bottom:279.180000px;}
.y48_c02024{bottom:293.580000px;}
.y4b_c02024{bottom:302.580000px;}
.y42_c02024{bottom:328.320000px;}
.y43_c02024{bottom:332.280000px;}
.y44_c02024{bottom:334.260000px;}
.y3f_c02024{bottom:360.180000px;}
.y40_c02024{bottom:365.580000px;}
.y41_c02024{bottom:366.120000px;}
.y3d_c02024{bottom:391.860000px;}
.y3e_c02024{bottom:404.820000px;}
.y3a_c02024{bottom:430.560000px;}
.y3b_c02024{bottom:434.520000px;}
.y3c_c02024{bottom:436.680000px;}
.y37_c02024{bottom:462.420000px;}
.y38_c02024{bottom:466.380000px;}
.y39_c02024{bottom:468.360000px;}
.y30_c02024{bottom:494.100000px;}
.y35_c02024{bottom:507.060000px;}
.y2e_c02024{bottom:532.800000px;}
.y2f_c02024{bottom:538.920000px;}
.y2c_c02024{bottom:564.660000px;}
.y2d_c02024{bottom:570.780000px;}
.y26_c02024{bottom:596.520000px;}
.y2a_c02024{bottom:602.460000px;}
.y24_c02024{bottom:628.200000px;}
.y25_c02024{bottom:634.320000px;}
.y1e_c02024{bottom:660.060000px;}
.y22_c02024{bottom:666.180000px;}
.y17_c02024{bottom:691.920000px;}
.y1c_c02024{bottom:705.060000px;}
.y1b_c02024{bottom:750.780000px;}
.y16_c02024{bottom:783.360000px;}
.y15_c02024{bottom:798.840000px;}
.y14_c02024{bottom:819.540000px;}
.y13_c02024{bottom:866.160000px;}
.y12_c02024{bottom:880.020000px;}
.y11_c02024{bottom:896.940000px;}
.y10_c02024{bottom:928.080000px;}
.yf_c02024{bottom:959.040000px;}
.ye_c02024{bottom:990.180000px;}
.yd_c02024{bottom:1017.180000px;}
.yc_c02024{bottom:1029.600000px;}
.yb_c02024{bottom:1050.660000px;}
.ya_c02024{bottom:1071.360000px;}
.y9_c02024{bottom:1092.060000px;}
.y8_c02024{bottom:1112.760000px;}
.y7_c02024{bottom:1134.360000px;}
.y5_c02024{bottom:1161.000000px;}
.y1_c02024{bottom:1172.880000px;}
.y3_c02024{bottom:1175.760000px;}
.h14_c02024{height:29.678906px;}
.he_c02024{height:30.960000px;}
.h12_c02024{height:30.961500px;}
.hf_c02024{height:31.138500px;}
.hc_c02024{height:31.140000px;}
.h13_c02024{height:35.332031px;}
.h2_c02024{height:36.180000px;}
.h8_c02024{height:36.281250px;}
.h10_c02024{height:37.980000px;}
.h16_c02024{height:47.344922px;}
.h15_c02024{height:48.420000px;}
.h5_c02024{height:48.616875px;}
.h17_c02024{height:51.658500px;}
.h19_c02024{height:51.660000px;}
.h4_c02024{height:54.421875px;}
.h18_c02024{height:58.651172px;}
.h11_c02024{height:66.757500px;}
.h6_c02024{height:70.664062px;}
.h9_c02024{height:71.982422px;}
.h3_c02024{height:72.562500px;}
.hb_c02024{height:84.898125px;}
.ha_c02024{height:87.840000px;}
.h7_c02024{height:96.508125px;}
.hd_c02024{height:105.996094px;}
.h1a_c02024{height:108.843750px;}
.h0_c02024{height:1262.880000px;}
.h1_c02024{height:1263.000000px;}
.w3_c02024{width:41.760000px;}
.w6_c02024{width:52.380000px;}
.w5_c02024{width:190.620000px;}
.w4_c02024{width:445.681500px;}
.w2_c02024{width:498.780000px;}
.w7_c02024{width:498.960000px;}
.w0_c02024{width:892.980000px;}
.w1_c02024{width:893.250000px;}
.x0_c02024{left:0.000000px;}
.x9_c02024{left:7.560000px;}
.xd_c02024{left:9.720000px;}
.xf_c02024{left:26.100000px;}
.x11_c02024{left:54.900000px;}
.x13_c02024{left:102.060000px;}
.x8_c02024{left:106.740000px;}
.xa_c02024{left:116.460000px;}
.x5_c02024{left:127.620000px;}
.x6_c02024{left:148.860000px;}
.x16_c02024{left:156.960000px;}
.x2_c02024{left:172.620000px;}
.x7_c02024{left:180.720000px;}
.x1_c02024{left:223.740000px;}
.x3_c02024{left:231.300000px;}
.x4_c02024{left:484.200000px;}
.xb_c02024{left:595.800000px;}
.x10_c02024{left:619.920000px;}
.x17_c02024{left:648.900000px;}
.x12_c02024{left:667.080000px;}
.x18_c02024{left:673.020000px;}
.x14_c02024{left:714.060000px;}
.x19_c02024{left:720.180000px;}
.x15_c02024{left:761.220000px;}
.x1a_c02024{left:767.160000px;}
.xc_c02024{left:787.140000px;}
.xe_c02024{left:794.880000px;}
.x1b_c02024{left:814.320000px;}
@media print{
.v3_c02024{vertical-align:-96.000000pt;}
.v2_c02024{vertical-align:-88.960000pt;}
.v4_c02024{vertical-align:-69.774080pt;}
.v1_c02024{vertical-align:-40.320000pt;}
.v0_c02024{vertical-align:0.000000pt;}
.ls18_c02024{letter-spacing:-0.704000pt;}
.ls17_c02024{letter-spacing:-0.673920pt;}
.ls19_c02024{letter-spacing:-0.647680pt;}
.ls15_c02024{letter-spacing:-0.640000pt;}
.ls1b_c02024{letter-spacing:-0.529920pt;}
.ls16_c02024{letter-spacing:-0.299520pt;}
.ls11_c02024{letter-spacing:-0.256000pt;}
.ls1a_c02024{letter-spacing:-0.235520pt;}
.lse_c02024{letter-spacing:-0.192000pt;}
.ls13_c02024{letter-spacing:-0.117760pt;}
.lsd_c02024{letter-spacing:-0.096000pt;}
.lsc_c02024{letter-spacing:0.000000pt;}
.lsa_c02024{letter-spacing:0.117760pt;}
.ls10_c02024{letter-spacing:0.128000pt;}
.ls0_c02024{letter-spacing:0.144000pt;}
.ls7_c02024{letter-spacing:0.256000pt;}
.ls12_c02024{letter-spacing:0.288000pt;}
.ls14_c02024{letter-spacing:0.294400pt;}
.ls9_c02024{letter-spacing:0.320000pt;}
.lsf_c02024{letter-spacing:0.340480pt;}
.ls3_c02024{letter-spacing:7.680000pt;}
.ls5_c02024{letter-spacing:8.960000pt;}
.ls6_c02024{letter-spacing:9.600000pt;}
.ls2_c02024{letter-spacing:11.520000pt;}
.lsb_c02024{letter-spacing:12.160000pt;}
.ls8_c02024{letter-spacing:33.600000pt;}
.ls4_c02024{letter-spacing:64.800000pt;}
.ls1_c02024{letter-spacing:2380.160000pt;}
.wsd_c02024{word-spacing:-96.000000pt;}
.wsb_c02024{word-spacing:-24.000000pt;}
.ws1_c02024{word-spacing:-21.620480pt;}
.ws6_c02024{word-spacing:-21.280000pt;}
.ws8_c02024{word-spacing:-18.420480pt;}
.ws9_c02024{word-spacing:-18.046080pt;}
.ws7_c02024{word-spacing:-16.000000pt;}
.ws12_c02024{word-spacing:-15.808000pt;}
.ws2_c02024{word-spacing:-15.744000pt;}
.wsa_c02024{word-spacing:-15.296000pt;}
.ws5_c02024{word-spacing:-15.014400pt;}
.wse_c02024{word-spacing:-14.837760pt;}
.ws3_c02024{word-spacing:-14.720000pt;}
.ws4_c02024{word-spacing:-14.602240pt;}
.ws10_c02024{word-spacing:-14.484480pt;}
.ws11_c02024{word-spacing:-14.190080pt;}
.wsf_c02024{word-spacing:-14.072320pt;}
.ws0_c02024{word-spacing:-11.904000pt;}
.wsc_c02024{word-spacing:-11.808000pt;}
.ws29_c02024{word-spacing:-0.765440pt;}
.ws22_c02024{word-spacing:-0.647680pt;}
.ws2d_c02024{word-spacing:-0.294400pt;}
.ws20_c02024{word-spacing:-0.288000pt;}
.ws27_c02024{word-spacing:-0.256000pt;}
.ws28_c02024{word-spacing:-0.170240pt;}
.ws21_c02024{word-spacing:-0.117760pt;}
.ws13_c02024{word-spacing:0.000000pt;}
.ws1f_c02024{word-spacing:0.256000pt;}
.ws14_c02024{word-spacing:0.336000pt;}
.ws2a_c02024{word-spacing:0.647680pt;}
.ws31_c02024{word-spacing:1.825280pt;}
.ws30_c02024{word-spacing:1.943040pt;}
.ws32_c02024{word-spacing:2.472960pt;}
.ws15_c02024{word-spacing:7.040000pt;}
.ws1b_c02024{word-spacing:7.680000pt;}
.ws1a_c02024{word-spacing:7.936000pt;}
.ws23_c02024{word-spacing:8.960000pt;}
.ws24_c02024{word-spacing:9.216000pt;}
.ws25_c02024{word-spacing:9.600000pt;}
.ws2c_c02024{word-spacing:11.246080pt;}
.ws17_c02024{word-spacing:11.264000pt;}
.ws16_c02024{word-spacing:11.392000pt;}
.ws18_c02024{word-spacing:11.776000pt;}
.ws2b_c02024{word-spacing:12.188160pt;}
.ws26_c02024{word-spacing:16.640000pt;}
.ws19_c02024{word-spacing:23.040000pt;}
.ws1d_c02024{word-spacing:28.160000pt;}
.ws1c_c02024{word-spacing:28.416000pt;}
.ws1e_c02024{word-spacing:29.056000pt;}
.ws2e_c02024{word-spacing:53.639680pt;}
.ws2f_c02024{word-spacing:53.757440pt;}
._2_c02024{margin-left:-1.152000pt;}
._0_c02024{width:0.912000pt;}
._3_c02024{width:2.064000pt;}
._1_c02024{width:6.999040pt;}
._6_c02024{width:9.456000pt;}
._8_c02024{width:11.494400pt;}
._9_c02024{width:12.715520pt;}
._7_c02024{width:16.896000pt;}
._4_c02024{width:29.248000pt;}
._a_c02024{width:54.292480pt;}
._5_c02024{width:124.212480pt;}
.fs8_c02024{font-size:26.880000pt;}
.fs4_c02024{font-size:32.000000pt;}
.fs2_c02024{font-size:42.880000pt;}
.fs1_c02024{font-size:48.000000pt;}
.fs9_c02024{font-size:53.120000pt;}
.fs6_c02024{font-size:58.880000pt;}
.fs0_c02024{font-size:64.000000pt;}
.fs7_c02024{font-size:74.880000pt;}
.fs3_c02024{font-size:85.120000pt;}
.fs5_c02024{font-size:96.000000pt;}
.y0_c02024{bottom:0.000000pt;}
.y1d_c02024{bottom:1.760000pt;}
.y49_c02024{bottom:2.080000pt;}
.y4_c02024{bottom:2.560000pt;}
.y54_c02024{bottom:3.200000pt;}
.y59_c02024{bottom:3.360000pt;}
.y33_c02024{bottom:3.680000pt;}
.y29_c02024{bottom:5.280000pt;}
.y21_c02024{bottom:5.440000pt;}
.y2b_c02024{bottom:5.760000pt;}
.y23_c02024{bottom:5.920000pt;}
.y34_c02024{bottom:11.520000pt;}
.y36_c02024{bottom:12.000000pt;}
.y27_c02024{bottom:12.800000pt;}
.y1f_c02024{bottom:12.960000pt;}
.y28_c02024{bottom:14.240000pt;}
.y20_c02024{bottom:14.400000pt;}
.y2_c02024{bottom:17.440000pt;}
.y31_c02024{bottom:19.040000pt;}
.y32_c02024{bottom:20.480000pt;}
.y4a_c02024{bottom:20.800000pt;}
.y4c_c02024{bottom:21.280000pt;}
.y55_c02024{bottom:23.680000pt;}
.y46_c02024{bottom:28.320000pt;}
.y47_c02024{bottom:29.760000pt;}
.y51_c02024{bottom:31.200000pt;}
.y52_c02024{bottom:33.920000pt;}
.y6_c02024{bottom:51.200000pt;}
.y19_c02024{bottom:58.240000pt;}
.y18_c02024{bottom:60.800000pt;}
.y1a_c02024{bottom:63.360000pt;}
.y57_c02024{bottom:99.040000pt;}
.y58_c02024{bottom:117.760000pt;}
.y5a_c02024{bottom:122.720000pt;}
.y50_c02024{bottom:145.760000pt;}
.y53_c02024{bottom:164.320000pt;}
.y56_c02024{bottom:169.440000pt;}
.y4f_c02024{bottom:194.880000pt;}
.y4e_c02024{bottom:225.763520pt;}
.y4d_c02024{bottom:237.920000pt;}
.y45_c02024{bottom:248.160000pt;}
.y48_c02024{bottom:260.960000pt;}
.y4b_c02024{bottom:268.960000pt;}
.y42_c02024{bottom:291.840000pt;}
.y43_c02024{bottom:295.360000pt;}
.y44_c02024{bottom:297.120000pt;}
.y3f_c02024{bottom:320.160000pt;}
.y40_c02024{bottom:324.960000pt;}
.y41_c02024{bottom:325.440000pt;}
.y3d_c02024{bottom:348.320000pt;}
.y3e_c02024{bottom:359.840000pt;}
.y3a_c02024{bottom:382.720000pt;}
.y3b_c02024{bottom:386.240000pt;}
.y3c_c02024{bottom:388.160000pt;}
.y37_c02024{bottom:411.040000pt;}
.y38_c02024{bottom:414.560000pt;}
.y39_c02024{bottom:416.320000pt;}
.y30_c02024{bottom:439.200000pt;}
.y35_c02024{bottom:450.720000pt;}
.y2e_c02024{bottom:473.600000pt;}
.y2f_c02024{bottom:479.040000pt;}
.y2c_c02024{bottom:501.920000pt;}
.y2d_c02024{bottom:507.360000pt;}
.y26_c02024{bottom:530.240000pt;}
.y2a_c02024{bottom:535.520000pt;}
.y24_c02024{bottom:558.400000pt;}
.y25_c02024{bottom:563.840000pt;}
.y1e_c02024{bottom:586.720000pt;}
.y22_c02024{bottom:592.160000pt;}
.y17_c02024{bottom:615.040000pt;}
.y1c_c02024{bottom:626.720000pt;}
.y1b_c02024{bottom:667.360000pt;}
.y16_c02024{bottom:696.320000pt;}
.y15_c02024{bottom:710.080000pt;}
.y14_c02024{bottom:728.480000pt;}
.y13_c02024{bottom:769.920000pt;}
.y12_c02024{bottom:782.240000pt;}
.y11_c02024{bottom:797.280000pt;}
.y10_c02024{bottom:824.960000pt;}
.yf_c02024{bottom:852.480000pt;}
.ye_c02024{bottom:880.160000pt;}
.yd_c02024{bottom:904.160000pt;}
.yc_c02024{bottom:915.200000pt;}
.yb_c02024{bottom:933.920000pt;}
.ya_c02024{bottom:952.320000pt;}
.y9_c02024{bottom:970.720000pt;}
.y8_c02024{bottom:989.120000pt;}
.y7_c02024{bottom:1008.320000pt;}
.y5_c02024{bottom:1032.000000pt;}
.y1_c02024{bottom:1042.560000pt;}
.y3_c02024{bottom:1045.120000pt;}
.h14_c02024{height:26.381250pt;}
.he_c02024{height:27.520000pt;}
.h12_c02024{height:27.521333pt;}
.hf_c02024{height:27.678667pt;}
.hc_c02024{height:27.680000pt;}
.h13_c02024{height:31.406250pt;}
.h2_c02024{height:32.160000pt;}
.h8_c02024{height:32.250000pt;}
.h10_c02024{height:33.760000pt;}
.h16_c02024{height:42.084375pt;}
.h15_c02024{height:43.040000pt;}
.h5_c02024{height:43.215000pt;}
.h17_c02024{height:45.918667pt;}
.h19_c02024{height:45.920000pt;}
.h4_c02024{height:48.375000pt;}
.h18_c02024{height:52.134375pt;}
.h11_c02024{height:59.340000pt;}
.h6_c02024{height:62.812500pt;}
.h9_c02024{height:63.984375pt;}
.h3_c02024{height:64.500000pt;}
.hb_c02024{height:75.465000pt;}
.ha_c02024{height:78.080000pt;}
.h7_c02024{height:85.785000pt;}
.hd_c02024{height:94.218750pt;}
.h1a_c02024{height:96.750000pt;}
.h0_c02024{height:1122.560000pt;}
.h1_c02024{height:1122.666667pt;}
.w3_c02024{width:37.120000pt;}
.w6_c02024{width:46.560000pt;}
.w5_c02024{width:169.440000pt;}
.w4_c02024{width:396.161333pt;}
.w2_c02024{width:443.360000pt;}
.w7_c02024{width:443.520000pt;}
.w0_c02024{width:793.760000pt;}
.w1_c02024{width:794.000000pt;}
.x0_c02024{left:0.000000pt;}
.x9_c02024{left:6.720000pt;}
.xd_c02024{left:8.640000pt;}
.xf_c02024{left:23.200000pt;}
.x11_c02024{left:48.800000pt;}
.x13_c02024{left:90.720000pt;}
.x8_c02024{left:94.880000pt;}
.xa_c02024{left:103.520000pt;}
.x5_c02024{left:113.440000pt;}
.x6_c02024{left:132.320000pt;}
.x16_c02024{left:139.520000pt;}
.x2_c02024{left:153.440000pt;}
.x7_c02024{left:160.640000pt;}
.x1_c02024{left:198.880000pt;}
.x3_c02024{left:205.600000pt;}
.x4_c02024{left:430.400000pt;}
.xb_c02024{left:529.600000pt;}
.x10_c02024{left:551.040000pt;}
.x17_c02024{left:576.800000pt;}
.x12_c02024{left:592.960000pt;}
.x18_c02024{left:598.240000pt;}
.x14_c02024{left:634.720000pt;}
.x19_c02024{left:640.160000pt;}
.x15_c02024{left:676.640000pt;}
.x1a_c02024{left:681.920000pt;}
.xc_c02024{left:699.680000pt;}
.xe_c02024{left:706.560000pt;}
.x1b_c02024{left:723.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_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_bca0dfac721e7c66d652c09a.woff2')format("woff");}.ff1_c02025{font-family:ff1_c02025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02025;src:url('chunks/assets/font_0b5c92dc68ccc8f534cd4b6a.woff2')format("woff");}.ff2_c02025{font-family:ff2_c02025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02025;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02025{font-family:ff3_c02025;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_c02025;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02025{font-family:ff4_c02025;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;}
.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);}
.v1_c02025{vertical-align:-45.360000px;}
.v0_c02025{vertical-align:0.000000px;}
.ls12_c02025{letter-spacing:-0.792000px;}
.ls11_c02025{letter-spacing:-0.758160px;}
.ls15_c02025{letter-spacing:-0.728640px;}
.lse_c02025{letter-spacing:-0.720000px;}
.ls16_c02025{letter-spacing:-0.596160px;}
.lsf_c02025{letter-spacing:-0.336960px;}
.ls17_c02025{letter-spacing:-0.331200px;}
.lsd_c02025{letter-spacing:-0.288000px;}
.lsc_c02025{letter-spacing:-0.216000px;}
.ls13_c02025{letter-spacing:-0.132480px;}
.lsb_c02025{letter-spacing:-0.108000px;}
.lsa_c02025{letter-spacing:0.000000px;}
.ls5_c02025{letter-spacing:0.072000px;}
.ls7_c02025{letter-spacing:0.132480px;}
.ls0_c02025{letter-spacing:0.162000px;}
.ls8_c02025{letter-spacing:0.239040px;}
.ls4_c02025{letter-spacing:0.288000px;}
.ls14_c02025{letter-spacing:0.331200px;}
.ls10_c02025{letter-spacing:0.336960px;}
.ls9_c02025{letter-spacing:0.360000px;}
.ls3_c02025{letter-spacing:5.040000px;}
.ls2_c02025{letter-spacing:8.640000px;}
.ls6_c02025{letter-spacing:18.720000px;}
.ls1_c02025{letter-spacing:2677.680000px;}
.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;}
}
.ws8_c02025{word-spacing:-108.000000px;}
.ws1_c02025{word-spacing:-23.940000px;}
.ws3_c02025{word-spacing:-20.723040px;}
.ws4_c02025{word-spacing:-20.301840px;}
.ws2_c02025{word-spacing:-17.712000px;}
.ws5_c02025{word-spacing:-17.208000px;}
.wsb_c02025{word-spacing:-16.692480px;}
.ws9_c02025{word-spacing:-16.427520px;}
.wsc_c02025{word-spacing:-15.963840px;}
.wsa_c02025{word-spacing:-15.831360px;}
.ws7_c02025{word-spacing:-14.940000px;}
.ws0_c02025{word-spacing:-13.392000px;}
.ws6_c02025{word-spacing:-13.284000px;}
.ws20_c02025{word-spacing:-0.861120px;}
.ws21_c02025{word-spacing:-0.728640px;}
.ws1d_c02025{word-spacing:-0.596160px;}
.ws16_c02025{word-spacing:-0.505440px;}
.ws1e_c02025{word-spacing:-0.331200px;}
.ws24_c02025{word-spacing:-0.288000px;}
.ws1c_c02025{word-spacing:-0.168480px;}
.ws1b_c02025{word-spacing:-0.132480px;}
.wsd_c02025{word-spacing:0.000000px;}
.ws1f_c02025{word-spacing:0.132480px;}
.ws15_c02025{word-spacing:0.288000px;}
.ws17_c02025{word-spacing:0.324000px;}
.ws22_c02025{word-spacing:0.331200px;}
.wse_c02025{word-spacing:0.378000px;}
.ws23_c02025{word-spacing:0.596160px;}
.ws14_c02025{word-spacing:0.720000px;}
.ws13_c02025{word-spacing:4.752000px;}
.ws12_c02025{word-spacing:5.040000px;}
.ws10_c02025{word-spacing:8.352000px;}
.ws11_c02025{word-spacing:9.360000px;}
.wsf_c02025{word-spacing:9.648000px;}
.ws1a_c02025{word-spacing:17.884800px;}
.ws19_c02025{word-spacing:18.745920px;}
.ws18_c02025{word-spacing:18.878400px;}
._1_c02025{margin-left:-1.242000px;}
._0_c02025{width:1.026000px;}
.fc1_c02025{color:rgb(140,140,140);}
.fc0_c02025{color:rgb(0,0,0);}
.fs5_c02025{font-size:36.000000px;}
.fs2_c02025{font-size:48.240000px;}
.fs1_c02025{font-size:54.000000px;}
.fs8_c02025{font-size:59.760000px;}
.fs7_c02025{font-size:66.240000px;}
.fs0_c02025{font-size:72.000000px;}
.fs4_c02025{font-size:84.240000px;}
.fs3_c02025{font-size:95.760000px;}
.fs6_c02025{font-size:108.000000px;}
.y0_c02025{bottom:0.000000px;}
.y1c_c02025{bottom:2.160000px;}
.y4_c02025{bottom:2.880000px;}
.y5f_c02025{bottom:3.060000px;}
.y31_c02025{bottom:6.480000px;}
.y2a_c02025{bottom:6.660000px;}
.y2f_c02025{bottom:11.520000px;}
.y28_c02025{bottom:11.700000px;}
.y2c_c02025{bottom:14.400000px;}
.y25_c02025{bottom:14.580000px;}
.y2d_c02025{bottom:16.020000px;}
.y26_c02025{bottom:16.200000px;}
.y2_c02025{bottom:19.620000px;}
.y1f_c02025{bottom:23.760000px;}
.y48_c02025{bottom:27.360000px;}
.y1d_c02025{bottom:28.800000px;}
.y19_c02025{bottom:31.680000px;}
.y46_c02025{bottom:32.400000px;}
.y1a_c02025{bottom:33.300000px;}
.y42_c02025{bottom:35.280000px;}
.y43_c02025{bottom:36.900000px;}
.y60_c02025{bottom:49.500000px;}
.y57_c02025{bottom:49.680000px;}
.y5a_c02025{bottom:52.380000px;}
.y51_c02025{bottom:52.560000px;}
.y6_c02025{bottom:57.600000px;}
.y63_c02025{bottom:58.140000px;}
.y52_c02025{bottom:58.320000px;}
.yf_c02025{bottom:80.640000px;}
.y14_c02025{bottom:83.520000px;}
.y69_c02025{bottom:144.180000px;}
.y6d_c02025{bottom:160.920000px;}
.y6c_c02025{bottom:174.780000px;}
.y6b_c02025{bottom:188.640000px;}
.y6e_c02025{bottom:193.680000px;}
.y6a_c02025{bottom:202.320000px;}
.y62_c02025{bottom:214.020000px;}
.y67_c02025{bottom:216.900000px;}
.y66_c02025{bottom:230.760000px;}
.y65_c02025{bottom:244.620000px;}
.y64_c02025{bottom:258.300000px;}
.y68_c02025{bottom:263.520000px;}
.y59_c02025{bottom:283.680000px;}
.y5e_c02025{bottom:300.420000px;}
.y5d_c02025{bottom:314.280000px;}
.y5c_c02025{bottom:328.140000px;}
.y61_c02025{bottom:333.180000px;}
.y5b_c02025{bottom:341.820000px;}
.y50_c02025{bottom:353.340000px;}
.y56_c02025{bottom:356.400000px;}
.y55_c02025{bottom:370.260000px;}
.y54_c02025{bottom:383.940000px;}
.y53_c02025{bottom:397.800000px;}
.y58_c02025{bottom:403.020000px;}
.y4f_c02025{bottom:426.067020px;}
.y4e_c02025{bottom:439.743060px;}
.y4d_c02025{bottom:453.600000px;}
.y4c_c02025{bottom:468.720000px;}
.y4b_c02025{bottom:488.167020px;}
.y4a_c02025{bottom:501.843060px;}
.y49_c02025{bottom:515.700000px;}
.y41_c02025{bottom:527.400000px;}
.y45_c02025{bottom:530.460000px;}
.y44_c02025{bottom:545.220000px;}
.y47_c02025{bottom:559.800000px;}
.y3e_c02025{bottom:579.960000px;}
.y3f_c02025{bottom:583.920000px;}
.y40_c02025{bottom:591.480000px;}
.y3b_c02025{bottom:611.640000px;}
.y3c_c02025{bottom:615.600000px;}
.y3d_c02025{bottom:623.340000px;}
.y38_c02025{bottom:643.500000px;}
.y39_c02025{bottom:647.460000px;}
.y3a_c02025{bottom:655.020000px;}
.y35_c02025{bottom:675.360000px;}
.y36_c02025{bottom:689.760000px;}
.y37_c02025{bottom:704.160000px;}
.y32_c02025{bottom:724.320000px;}
.y33_c02025{bottom:728.280000px;}
.y34_c02025{bottom:736.020000px;}
.y2b_c02025{bottom:756.180000px;}
.y2e_c02025{bottom:760.140000px;}
.y30_c02025{bottom:767.700000px;}
.y24_c02025{bottom:787.860000px;}
.y27_c02025{bottom:791.820000px;}
.y29_c02025{bottom:799.560000px;}
.y20_c02025{bottom:819.720000px;}
.y22_c02025{bottom:822.060000px;}
.y21_c02025{bottom:834.120000px;}
.y23_c02025{bottom:848.520000px;}
.y18_c02025{bottom:868.860000px;}
.y1b_c02025{bottom:883.080000px;}
.y1e_c02025{bottom:897.660000px;}
.ye_c02025{bottom:917.820000px;}
.y13_c02025{bottom:920.700000px;}
.y12_c02025{bottom:936.360000px;}
.y17_c02025{bottom:943.200000px;}
.y11_c02025{bottom:958.680000px;}
.y16_c02025{bottom:961.740000px;}
.y10_c02025{bottom:974.340000px;}
.y15_c02025{bottom:988.920000px;}
.yd_c02025{bottom:1021.683960px;}
.yc_c02025{bottom:1035.360000px;}
.yb_c02025{bottom:1050.660000px;}
.ya_c02025{bottom:1071.360000px;}
.y9_c02025{bottom:1092.060000px;}
.y8_c02025{bottom:1112.760000px;}
.y7_c02025{bottom:1134.360000px;}
.y5_c02025{bottom:1161.000000px;}
.y1_c02025{bottom:1172.880000px;}
.y3_c02025{bottom:1175.760000px;}
.h14_c02025{height:30.960000px;}
.h13_c02025{height:30.961500px;}
.h15_c02025{height:31.138500px;}
.h12_c02025{height:31.140000px;}
.hf_c02025{height:35.332031px;}
.h2_c02025{height:36.180000px;}
.hb_c02025{height:36.281250px;}
.h8_c02025{height:47.344922px;}
.hd_c02025{height:48.240000px;}
.h5_c02025{height:48.616875px;}
.h16_c02025{height:51.840000px;}
.h4_c02025{height:54.421875px;}
.h10_c02025{height:60.226875px;}
.he_c02025{height:66.757500px;}
.h18_c02025{height:68.940000px;}
.h17_c02025{height:69.120000px;}
.h6_c02025{height:70.664062px;}
.h3_c02025{height:72.562500px;}
.ha_c02025{height:84.898125px;}
.h7_c02025{height:96.508125px;}
.h9_c02025{height:100.080000px;}
.h11_c02025{height:105.996094px;}
.hc_c02025{height:108.843750px;}
.h0_c02025{height:1262.880000px;}
.h1_c02025{height:1263.000000px;}
.w3_c02025{width:41.760000px;}
.w6_c02025{width:52.380000px;}
.w5_c02025{width:190.440000px;}
.w8_c02025{width:211.860000px;}
.w4_c02025{width:445.858500px;}
.w7_c02025{width:467.100000px;}
.w2_c02025{width:498.780000px;}
.w0_c02025{width:892.980000px;}
.w1_c02025{width:893.250000px;}
.x0_c02025{left:0.000000px;}
.x8_c02025{left:7.740000px;}
.x10_c02025{left:9.540000px;}
.x15_c02025{left:33.120000px;}
.xa_c02025{left:51.480000px;}
.x7_c02025{left:53.460000px;}
.x1b_c02025{left:64.080000px;}
.x17_c02025{left:79.560000px;}
.x9_c02025{left:95.940000px;}
.x13_c02025{left:103.680000px;}
.x6_c02025{left:106.380000px;}
.xd_c02025{left:112.680000px;}
.x1c_c02025{left:114.300000px;}
.x19_c02025{left:126.000000px;}
.x5_c02025{left:127.620000px;}
.x2_c02025{left:172.620000px;}
.x1_c02025{left:223.740000px;}
.x3_c02025{left:231.300000px;}
.xb_c02025{left:271.620000px;}
.xc_c02025{left:318.780000px;}
.x4_c02025{left:484.200000px;}
.xe_c02025{left:542.700000px;}
.x14_c02025{left:568.260000px;}
.x1d_c02025{left:574.560000px;}
.x1e_c02025{left:600.300000px;}
.x16_c02025{left:614.700000px;}
.x1f_c02025{left:646.740000px;}
.x18_c02025{left:661.140000px;}
.x20_c02025{left:693.180000px;}
.x1a_c02025{left:707.580000px;}
.xf_c02025{left:734.040000px;}
.x21_c02025{left:739.620000px;}
.x12_c02025{left:741.600000px;}
.x11_c02025{left:759.960000px;}
@media print{
.v1_c02025{vertical-align:-40.320000pt;}
.v0_c02025{vertical-align:0.000000pt;}
.ls12_c02025{letter-spacing:-0.704000pt;}
.ls11_c02025{letter-spacing:-0.673920pt;}
.ls15_c02025{letter-spacing:-0.647680pt;}
.lse_c02025{letter-spacing:-0.640000pt;}
.ls16_c02025{letter-spacing:-0.529920pt;}
.lsf_c02025{letter-spacing:-0.299520pt;}
.ls17_c02025{letter-spacing:-0.294400pt;}
.lsd_c02025{letter-spacing:-0.256000pt;}
.lsc_c02025{letter-spacing:-0.192000pt;}
.ls13_c02025{letter-spacing:-0.117760pt;}
.lsb_c02025{letter-spacing:-0.096000pt;}
.lsa_c02025{letter-spacing:0.000000pt;}
.ls5_c02025{letter-spacing:0.064000pt;}
.ls7_c02025{letter-spacing:0.117760pt;}
.ls0_c02025{letter-spacing:0.144000pt;}
.ls8_c02025{letter-spacing:0.212480pt;}
.ls4_c02025{letter-spacing:0.256000pt;}
.ls14_c02025{letter-spacing:0.294400pt;}
.ls10_c02025{letter-spacing:0.299520pt;}
.ls9_c02025{letter-spacing:0.320000pt;}
.ls3_c02025{letter-spacing:4.480000pt;}
.ls2_c02025{letter-spacing:7.680000pt;}
.ls6_c02025{letter-spacing:16.640000pt;}
.ls1_c02025{letter-spacing:2380.160000pt;}
.ws8_c02025{word-spacing:-96.000000pt;}
.ws1_c02025{word-spacing:-21.280000pt;}
.ws3_c02025{word-spacing:-18.420480pt;}
.ws4_c02025{word-spacing:-18.046080pt;}
.ws2_c02025{word-spacing:-15.744000pt;}
.ws5_c02025{word-spacing:-15.296000pt;}
.wsb_c02025{word-spacing:-14.837760pt;}
.ws9_c02025{word-spacing:-14.602240pt;}
.wsc_c02025{word-spacing:-14.190080pt;}
.wsa_c02025{word-spacing:-14.072320pt;}
.ws7_c02025{word-spacing:-13.280000pt;}
.ws0_c02025{word-spacing:-11.904000pt;}
.ws6_c02025{word-spacing:-11.808000pt;}
.ws20_c02025{word-spacing:-0.765440pt;}
.ws21_c02025{word-spacing:-0.647680pt;}
.ws1d_c02025{word-spacing:-0.529920pt;}
.ws16_c02025{word-spacing:-0.449280pt;}
.ws1e_c02025{word-spacing:-0.294400pt;}
.ws24_c02025{word-spacing:-0.256000pt;}
.ws1c_c02025{word-spacing:-0.149760pt;}
.ws1b_c02025{word-spacing:-0.117760pt;}
.wsd_c02025{word-spacing:0.000000pt;}
.ws1f_c02025{word-spacing:0.117760pt;}
.ws15_c02025{word-spacing:0.256000pt;}
.ws17_c02025{word-spacing:0.288000pt;}
.ws22_c02025{word-spacing:0.294400pt;}
.wse_c02025{word-spacing:0.336000pt;}
.ws23_c02025{word-spacing:0.529920pt;}
.ws14_c02025{word-spacing:0.640000pt;}
.ws13_c02025{word-spacing:4.224000pt;}
.ws12_c02025{word-spacing:4.480000pt;}
.ws10_c02025{word-spacing:7.424000pt;}
.ws11_c02025{word-spacing:8.320000pt;}
.wsf_c02025{word-spacing:8.576000pt;}
.ws1a_c02025{word-spacing:15.897600pt;}
.ws19_c02025{word-spacing:16.663040pt;}
.ws18_c02025{word-spacing:16.780800pt;}
._1_c02025{margin-left:-1.104000pt;}
._0_c02025{width:0.912000pt;}
.fs5_c02025{font-size:32.000000pt;}
.fs2_c02025{font-size:42.880000pt;}
.fs1_c02025{font-size:48.000000pt;}
.fs8_c02025{font-size:53.120000pt;}
.fs7_c02025{font-size:58.880000pt;}
.fs0_c02025{font-size:64.000000pt;}
.fs4_c02025{font-size:74.880000pt;}
.fs3_c02025{font-size:85.120000pt;}
.fs6_c02025{font-size:96.000000pt;}
.y0_c02025{bottom:0.000000pt;}
.y1c_c02025{bottom:1.920000pt;}
.y4_c02025{bottom:2.560000pt;}
.y5f_c02025{bottom:2.720000pt;}
.y31_c02025{bottom:5.760000pt;}
.y2a_c02025{bottom:5.920000pt;}
.y2f_c02025{bottom:10.240000pt;}
.y28_c02025{bottom:10.400000pt;}
.y2c_c02025{bottom:12.800000pt;}
.y25_c02025{bottom:12.960000pt;}
.y2d_c02025{bottom:14.240000pt;}
.y26_c02025{bottom:14.400000pt;}
.y2_c02025{bottom:17.440000pt;}
.y1f_c02025{bottom:21.120000pt;}
.y48_c02025{bottom:24.320000pt;}
.y1d_c02025{bottom:25.600000pt;}
.y19_c02025{bottom:28.160000pt;}
.y46_c02025{bottom:28.800000pt;}
.y1a_c02025{bottom:29.600000pt;}
.y42_c02025{bottom:31.360000pt;}
.y43_c02025{bottom:32.800000pt;}
.y60_c02025{bottom:44.000000pt;}
.y57_c02025{bottom:44.160000pt;}
.y5a_c02025{bottom:46.560000pt;}
.y51_c02025{bottom:46.720000pt;}
.y6_c02025{bottom:51.200000pt;}
.y63_c02025{bottom:51.680000pt;}
.y52_c02025{bottom:51.840000pt;}
.yf_c02025{bottom:71.680000pt;}
.y14_c02025{bottom:74.240000pt;}
.y69_c02025{bottom:128.160000pt;}
.y6d_c02025{bottom:143.040000pt;}
.y6c_c02025{bottom:155.360000pt;}
.y6b_c02025{bottom:167.680000pt;}
.y6e_c02025{bottom:172.160000pt;}
.y6a_c02025{bottom:179.840000pt;}
.y62_c02025{bottom:190.240000pt;}
.y67_c02025{bottom:192.800000pt;}
.y66_c02025{bottom:205.120000pt;}
.y65_c02025{bottom:217.440000pt;}
.y64_c02025{bottom:229.600000pt;}
.y68_c02025{bottom:234.240000pt;}
.y59_c02025{bottom:252.160000pt;}
.y5e_c02025{bottom:267.040000pt;}
.y5d_c02025{bottom:279.360000pt;}
.y5c_c02025{bottom:291.680000pt;}
.y61_c02025{bottom:296.160000pt;}
.y5b_c02025{bottom:303.840000pt;}
.y50_c02025{bottom:314.080000pt;}
.y56_c02025{bottom:316.800000pt;}
.y55_c02025{bottom:329.120000pt;}
.y54_c02025{bottom:341.280000pt;}
.y53_c02025{bottom:353.600000pt;}
.y58_c02025{bottom:358.240000pt;}
.y4f_c02025{bottom:378.726240pt;}
.y4e_c02025{bottom:390.882720pt;}
.y4d_c02025{bottom:403.200000pt;}
.y4c_c02025{bottom:416.640000pt;}
.y4b_c02025{bottom:433.926240pt;}
.y4a_c02025{bottom:446.082720pt;}
.y49_c02025{bottom:458.400000pt;}
.y41_c02025{bottom:468.800000pt;}
.y45_c02025{bottom:471.520000pt;}
.y44_c02025{bottom:484.640000pt;}
.y47_c02025{bottom:497.600000pt;}
.y3e_c02025{bottom:515.520000pt;}
.y3f_c02025{bottom:519.040000pt;}
.y40_c02025{bottom:525.760000pt;}
.y3b_c02025{bottom:543.680000pt;}
.y3c_c02025{bottom:547.200000pt;}
.y3d_c02025{bottom:554.080000pt;}
.y38_c02025{bottom:572.000000pt;}
.y39_c02025{bottom:575.520000pt;}
.y3a_c02025{bottom:582.240000pt;}
.y35_c02025{bottom:600.320000pt;}
.y36_c02025{bottom:613.120000pt;}
.y37_c02025{bottom:625.920000pt;}
.y32_c02025{bottom:643.840000pt;}
.y33_c02025{bottom:647.360000pt;}
.y34_c02025{bottom:654.240000pt;}
.y2b_c02025{bottom:672.160000pt;}
.y2e_c02025{bottom:675.680000pt;}
.y30_c02025{bottom:682.400000pt;}
.y24_c02025{bottom:700.320000pt;}
.y27_c02025{bottom:703.840000pt;}
.y29_c02025{bottom:710.720000pt;}
.y20_c02025{bottom:728.640000pt;}
.y22_c02025{bottom:730.720000pt;}
.y21_c02025{bottom:741.440000pt;}
.y23_c02025{bottom:754.240000pt;}
.y18_c02025{bottom:772.320000pt;}
.y1b_c02025{bottom:784.960000pt;}
.y1e_c02025{bottom:797.920000pt;}
.ye_c02025{bottom:815.840000pt;}
.y13_c02025{bottom:818.400000pt;}
.y12_c02025{bottom:832.320000pt;}
.y17_c02025{bottom:838.400000pt;}
.y11_c02025{bottom:852.160000pt;}
.y16_c02025{bottom:854.880000pt;}
.y10_c02025{bottom:866.080000pt;}
.y15_c02025{bottom:879.040000pt;}
.yd_c02025{bottom:908.163520pt;}
.yc_c02025{bottom:920.320000pt;}
.yb_c02025{bottom:933.920000pt;}
.ya_c02025{bottom:952.320000pt;}
.y9_c02025{bottom:970.720000pt;}
.y8_c02025{bottom:989.120000pt;}
.y7_c02025{bottom:1008.320000pt;}
.y5_c02025{bottom:1032.000000pt;}
.y1_c02025{bottom:1042.560000pt;}
.y3_c02025{bottom:1045.120000pt;}
.h14_c02025{height:27.520000pt;}
.h13_c02025{height:27.521333pt;}
.h15_c02025{height:27.678667pt;}
.h12_c02025{height:27.680000pt;}
.hf_c02025{height:31.406250pt;}
.h2_c02025{height:32.160000pt;}
.hb_c02025{height:32.250000pt;}
.h8_c02025{height:42.084375pt;}
.hd_c02025{height:42.880000pt;}
.h5_c02025{height:43.215000pt;}
.h16_c02025{height:46.080000pt;}
.h4_c02025{height:48.375000pt;}
.h10_c02025{height:53.535000pt;}
.he_c02025{height:59.340000pt;}
.h18_c02025{height:61.280000pt;}
.h17_c02025{height:61.440000pt;}
.h6_c02025{height:62.812500pt;}
.h3_c02025{height:64.500000pt;}
.ha_c02025{height:75.465000pt;}
.h7_c02025{height:85.785000pt;}
.h9_c02025{height:88.960000pt;}
.h11_c02025{height:94.218750pt;}
.hc_c02025{height:96.750000pt;}
.h0_c02025{height:1122.560000pt;}
.h1_c02025{height:1122.666667pt;}
.w3_c02025{width:37.120000pt;}
.w6_c02025{width:46.560000pt;}
.w5_c02025{width:169.280000pt;}
.w8_c02025{width:188.320000pt;}
.w4_c02025{width:396.318667pt;}
.w7_c02025{width:415.200000pt;}
.w2_c02025{width:443.360000pt;}
.w0_c02025{width:793.760000pt;}
.w1_c02025{width:794.000000pt;}
.x0_c02025{left:0.000000pt;}
.x8_c02025{left:6.880000pt;}
.x10_c02025{left:8.480000pt;}
.x15_c02025{left:29.440000pt;}
.xa_c02025{left:45.760000pt;}
.x7_c02025{left:47.520000pt;}
.x1b_c02025{left:56.960000pt;}
.x17_c02025{left:70.720000pt;}
.x9_c02025{left:85.280000pt;}
.x13_c02025{left:92.160000pt;}
.x6_c02025{left:94.560000pt;}
.xd_c02025{left:100.160000pt;}
.x1c_c02025{left:101.600000pt;}
.x19_c02025{left:112.000000pt;}
.x5_c02025{left:113.440000pt;}
.x2_c02025{left:153.440000pt;}
.x1_c02025{left:198.880000pt;}
.x3_c02025{left:205.600000pt;}
.xb_c02025{left:241.440000pt;}
.xc_c02025{left:283.360000pt;}
.x4_c02025{left:430.400000pt;}
.xe_c02025{left:482.400000pt;}
.x14_c02025{left:505.120000pt;}
.x1d_c02025{left:510.720000pt;}
.x1e_c02025{left:533.600000pt;}
.x16_c02025{left:546.400000pt;}
.x1f_c02025{left:574.880000pt;}
.x18_c02025{left:587.680000pt;}
.x20_c02025{left:616.160000pt;}
.x1a_c02025{left:628.960000pt;}
.xf_c02025{left:652.480000pt;}
.x21_c02025{left:657.440000pt;}
.x12_c02025{left:659.200000pt;}
.x11_c02025{left:675.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_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_cc4499be5c2570ad0dfb9c9d.woff2')format("woff");}.ff1_c02026{font-family:ff1_c02026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02026;src:url('chunks/assets/font_30a2956007bf72acc05a297c.woff2')format("woff");}.ff2_c02026{font-family:ff2_c02026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02026;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02026{font-family:ff3_c02026;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_c02026;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02026{font-family:ff4_c02026;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;}
.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);}
.v2_c02026{vertical-align:-77.080320px;}
.v1_c02026{vertical-align:-45.360000px;}
.v0_c02026{vertical-align:0.000000px;}
.lsc_c02026{letter-spacing:-0.792000px;}
.lsb_c02026{letter-spacing:-0.758160px;}
.ls10_c02026{letter-spacing:-0.728640px;}
.lsd_c02026{letter-spacing:-0.596160px;}
.lsa_c02026{letter-spacing:-0.336960px;}
.lse_c02026{letter-spacing:-0.331200px;}
.ls9_c02026{letter-spacing:-0.288000px;}
.lsf_c02026{letter-spacing:-0.264960px;}
.ls8_c02026{letter-spacing:-0.216000px;}
.ls7_c02026{letter-spacing:-0.108000px;}
.ls6_c02026{letter-spacing:0.000000px;}
.ls2_c02026{letter-spacing:0.132480px;}
.ls0_c02026{letter-spacing:0.162000px;}
.ls3_c02026{letter-spacing:0.239040px;}
.ls12_c02026{letter-spacing:0.288000px;}
.ls11_c02026{letter-spacing:0.331200px;}
.ls4_c02026{letter-spacing:0.360000px;}
.ls5_c02026{letter-spacing:72.900000px;}
.ls1_c02026{letter-spacing:2677.680000px;}
.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;}
}
.wsa_c02026{word-spacing:-108.000000px;}
.ws6_c02026{word-spacing:-27.000000px;}
.ws1_c02026{word-spacing:-23.940000px;}
.ws3_c02026{word-spacing:-20.723040px;}
.ws4_c02026{word-spacing:-20.301840px;}
.ws2_c02026{word-spacing:-17.712000px;}
.ws5_c02026{word-spacing:-17.208000px;}
.wse_c02026{word-spacing:-16.891200px;}
.ws8_c02026{word-spacing:-16.692480px;}
.wsc_c02026{word-spacing:-16.560000px;}
.wsd_c02026{word-spacing:-16.228800px;}
.wsb_c02026{word-spacing:-15.963840px;}
.wsf_c02026{word-spacing:-15.831360px;}
.ws9_c02026{word-spacing:-14.940000px;}
.ws0_c02026{word-spacing:-13.392000px;}
.ws7_c02026{word-spacing:-13.284000px;}
.ws18_c02026{word-spacing:-0.861120px;}
.ws1b_c02026{word-spacing:-0.728640px;}
.ws1f_c02026{word-spacing:-0.288000px;}
.ws17_c02026{word-spacing:-0.191520px;}
.ws1a_c02026{word-spacing:-0.168480px;}
.ws19_c02026{word-spacing:-0.132480px;}
.ws10_c02026{word-spacing:0.000000px;}
.ws1d_c02026{word-spacing:0.264960px;}
.ws16_c02026{word-spacing:0.288000px;}
.ws11_c02026{word-spacing:0.378000px;}
.ws1c_c02026{word-spacing:0.596160px;}
.ws1e_c02026{word-spacing:0.728640px;}
.ws12_c02026{word-spacing:13.968000px;}
.ws15_c02026{word-spacing:23.760000px;}
.ws14_c02026{word-spacing:24.048000px;}
.ws13_c02026{word-spacing:24.768000px;}
._3_c02026{margin-left:-1.152000px;}
._0_c02026{width:1.026000px;}
._2_c02026{width:2.358000px;}
._1_c02026{width:14.400000px;}
.fc1_c02026{color:rgb(140,140,140);}
.fc0_c02026{color:rgb(0,0,0);}
.fs5_c02026{font-size:36.000000px;}
.fs2_c02026{font-size:48.240000px;}
.fs1_c02026{font-size:54.000000px;}
.fs8_c02026{font-size:59.760000px;}
.fs7_c02026{font-size:66.240000px;}
.fs0_c02026{font-size:72.000000px;}
.fs4_c02026{font-size:84.240000px;}
.fs3_c02026{font-size:95.760000px;}
.fs6_c02026{font-size:108.000000px;}
.y0_c02026{bottom:0.000000px;}
.y4_c02026{bottom:2.880000px;}
.y18_c02026{bottom:3.060000px;}
.y1b_c02026{bottom:8.280000px;}
.y2e_c02026{bottom:8.460000px;}
.y19_c02026{bottom:13.320000px;}
.y2c_c02026{bottom:13.500000px;}
.y16_c02026{bottom:16.200000px;}
.y2a_c02026{bottom:16.380000px;}
.y17_c02026{bottom:17.820000px;}
.y2b_c02026{bottom:18.000000px;}
.y2_c02026{bottom:19.620000px;}
.y52_c02026{bottom:49.500000px;}
.y4c_c02026{bottom:52.380000px;}
.y6_c02026{bottom:57.600000px;}
.y4d_c02026{bottom:58.140000px;}
.ye_c02026{bottom:65.700000px;}
.yd_c02026{bottom:68.580000px;}
.y10_c02026{bottom:71.460000px;}
.y59_c02026{bottom:113.580000px;}
.y5d_c02026{bottom:116.640000px;}
.y5c_c02026{bottom:130.320000px;}
.y5b_c02026{bottom:144.180000px;}
.y5a_c02026{bottom:158.040000px;}
.y5e_c02026{bottom:163.080000px;}
.y54_c02026{bottom:183.420000px;}
.y57_c02026{bottom:200.160000px;}
.y56_c02026{bottom:214.020000px;}
.y55_c02026{bottom:227.700000px;}
.y58_c02026{bottom:232.920000px;}
.y4b_c02026{bottom:253.080000px;}
.y51_c02026{bottom:256.140000px;}
.y50_c02026{bottom:269.820000px;}
.y4f_c02026{bottom:283.680000px;}
.y4e_c02026{bottom:297.540000px;}
.y53_c02026{bottom:302.580000px;}
.y4a_c02026{bottom:325.633140px;}
.y49_c02026{bottom:339.490080px;}
.y48_c02026{bottom:353.166120px;}
.y47_c02026{bottom:367.023060px;}
.y46_c02026{bottom:380.880000px;}
.y45_c02026{bottom:415.270080px;}
.y44_c02026{bottom:429.127020px;}
.y43_c02026{bottom:442.983960px;}
.y42_c02026{bottom:456.660000px;}
.y40_c02026{bottom:468.540000px;}
.y41_c02026{bottom:481.860000px;}
.y3d_c02026{bottom:502.020000px;}
.y3e_c02026{bottom:504.900000px;}
.y3f_c02026{bottom:515.340000px;}
.y3b_c02026{bottom:535.500000px;}
.y3c_c02026{bottom:548.820000px;}
.y39_c02026{bottom:568.980000px;}
.y3a_c02026{bottom:582.300000px;}
.y36_c02026{bottom:602.640000px;}
.y37_c02026{bottom:605.520000px;}
.y38_c02026{bottom:615.960000px;}
.y34_c02026{bottom:636.120000px;}
.y35_c02026{bottom:649.440000px;}
.y32_c02026{bottom:669.600000px;}
.y33_c02026{bottom:682.920000px;}
.y2f_c02026{bottom:703.080000px;}
.y30_c02026{bottom:706.140000px;}
.y31_c02026{bottom:716.400000px;}
.y29_c02026{bottom:736.560000px;}
.y2d_c02026{bottom:750.060000px;}
.y27_c02026{bottom:770.220000px;}
.y28_c02026{bottom:783.540000px;}
.y24_c02026{bottom:803.700000px;}
.y25_c02026{bottom:806.760000px;}
.y26_c02026{bottom:817.020000px;}
.y22_c02026{bottom:837.180000px;}
.y23_c02026{bottom:850.500000px;}
.y1f_c02026{bottom:870.660000px;}
.y20_c02026{bottom:873.720000px;}
.y21_c02026{bottom:883.980000px;}
.y1c_c02026{bottom:904.320000px;}
.y1d_c02026{bottom:907.200000px;}
.y1e_c02026{bottom:917.640000px;}
.y15_c02026{bottom:937.800000px;}
.y1a_c02026{bottom:951.120000px;}
.yc_c02026{bottom:971.280000px;}
.y14_c02026{bottom:973.440000px;}
.y13_c02026{bottom:984.600000px;}
.y12_c02026{bottom:1003.140000px;}
.y11_c02026{bottom:1030.320000px;}
.yf_c02026{bottom:1036.980000px;}
.yb_c02026{bottom:1063.083960px;}
.ya_c02026{bottom:1076.760000px;}
.y9_c02026{bottom:1092.060000px;}
.y8_c02026{bottom:1112.760000px;}
.y7_c02026{bottom:1134.360000px;}
.y5_c02026{bottom:1161.000000px;}
.y1_c02026{bottom:1172.880000px;}
.y3_c02026{bottom:1175.760000px;}
.hd_c02026{height:32.758500px;}
.h10_c02026{height:32.760000px;}
.h11_c02026{height:32.940000px;}
.h2_c02026{height:36.180000px;}
.hb_c02026{height:36.281250px;}
.h8_c02026{height:47.344922px;}
.h5_c02026{height:48.616875px;}
.h4_c02026{height:54.421875px;}
.he_c02026{height:60.226875px;}
.h12_c02026{height:68.938500px;}
.h13_c02026{height:68.940000px;}
.h6_c02026{height:70.664062px;}
.h3_c02026{height:72.562500px;}
.ha_c02026{height:84.898125px;}
.h9_c02026{height:88.020000px;}
.h7_c02026{height:96.508125px;}
.hf_c02026{height:105.996094px;}
.hc_c02026{height:108.843750px;}
.h0_c02026{height:1262.880000px;}
.h1_c02026{height:1263.000000px;}
.w3_c02026{width:41.760000px;}
.w6_c02026{width:52.380000px;}
.w5_c02026{width:190.620000px;}
.w4_c02026{width:445.681500px;}
.w2_c02026{width:498.780000px;}
.w7_c02026{width:498.960000px;}
.w0_c02026{width:892.980000px;}
.w1_c02026{width:893.250000px;}
.x0_c02026{left:0.000000px;}
.x8_c02026{left:7.560000px;}
.xc_c02026{left:9.720000px;}
.x11_c02026{left:33.300000px;}
.x13_c02026{left:79.740000px;}
.x7_c02026{left:106.740000px;}
.x15_c02026{left:126.180000px;}
.x5_c02026{left:127.620000px;}
.x6_c02026{left:148.860000px;}
.x17_c02026{left:156.960000px;}
.x2_c02026{left:172.620000px;}
.x1_c02026{left:223.740000px;}
.x3_c02026{left:231.300000px;}
.x4_c02026{left:484.200000px;}
.x9_c02026{left:586.260000px;}
.xa_c02026{left:595.800000px;}
.x10_c02026{left:621.540000px;}
.x18_c02026{left:648.900000px;}
.x12_c02026{left:667.980000px;}
.x19_c02026{left:674.640000px;}
.x14_c02026{left:714.420000px;}
.x1a_c02026{left:721.080000px;}
.x16_c02026{left:760.860000px;}
.x1b_c02026{left:767.520000px;}
.xb_c02026{left:787.140000px;}
.xf_c02026{left:794.880000px;}
.xe_c02026{left:806.580000px;}
.xd_c02026{left:813.240000px;}
@media print{
.v2_c02026{vertical-align:-68.515840pt;}
.v1_c02026{vertical-align:-40.320000pt;}
.v0_c02026{vertical-align:0.000000pt;}
.lsc_c02026{letter-spacing:-0.704000pt;}
.lsb_c02026{letter-spacing:-0.673920pt;}
.ls10_c02026{letter-spacing:-0.647680pt;}
.lsd_c02026{letter-spacing:-0.529920pt;}
.lsa_c02026{letter-spacing:-0.299520pt;}
.lse_c02026{letter-spacing:-0.294400pt;}
.ls9_c02026{letter-spacing:-0.256000pt;}
.lsf_c02026{letter-spacing:-0.235520pt;}
.ls8_c02026{letter-spacing:-0.192000pt;}
.ls7_c02026{letter-spacing:-0.096000pt;}
.ls6_c02026{letter-spacing:0.000000pt;}
.ls2_c02026{letter-spacing:0.117760pt;}
.ls0_c02026{letter-spacing:0.144000pt;}
.ls3_c02026{letter-spacing:0.212480pt;}
.ls12_c02026{letter-spacing:0.256000pt;}
.ls11_c02026{letter-spacing:0.294400pt;}
.ls4_c02026{letter-spacing:0.320000pt;}
.ls5_c02026{letter-spacing:64.800000pt;}
.ls1_c02026{letter-spacing:2380.160000pt;}
.wsa_c02026{word-spacing:-96.000000pt;}
.ws6_c02026{word-spacing:-24.000000pt;}
.ws1_c02026{word-spacing:-21.280000pt;}
.ws3_c02026{word-spacing:-18.420480pt;}
.ws4_c02026{word-spacing:-18.046080pt;}
.ws2_c02026{word-spacing:-15.744000pt;}
.ws5_c02026{word-spacing:-15.296000pt;}
.wse_c02026{word-spacing:-15.014400pt;}
.ws8_c02026{word-spacing:-14.837760pt;}
.wsc_c02026{word-spacing:-14.720000pt;}
.wsd_c02026{word-spacing:-14.425600pt;}
.wsb_c02026{word-spacing:-14.190080pt;}
.wsf_c02026{word-spacing:-14.072320pt;}
.ws9_c02026{word-spacing:-13.280000pt;}
.ws0_c02026{word-spacing:-11.904000pt;}
.ws7_c02026{word-spacing:-11.808000pt;}
.ws18_c02026{word-spacing:-0.765440pt;}
.ws1b_c02026{word-spacing:-0.647680pt;}
.ws1f_c02026{word-spacing:-0.256000pt;}
.ws17_c02026{word-spacing:-0.170240pt;}
.ws1a_c02026{word-spacing:-0.149760pt;}
.ws19_c02026{word-spacing:-0.117760pt;}
.ws10_c02026{word-spacing:0.000000pt;}
.ws1d_c02026{word-spacing:0.235520pt;}
.ws16_c02026{word-spacing:0.256000pt;}
.ws11_c02026{word-spacing:0.336000pt;}
.ws1c_c02026{word-spacing:0.529920pt;}
.ws1e_c02026{word-spacing:0.647680pt;}
.ws12_c02026{word-spacing:12.416000pt;}
.ws15_c02026{word-spacing:21.120000pt;}
.ws14_c02026{word-spacing:21.376000pt;}
.ws13_c02026{word-spacing:22.016000pt;}
._3_c02026{margin-left:-1.024000pt;}
._0_c02026{width:0.912000pt;}
._2_c02026{width:2.096000pt;}
._1_c02026{width:12.800000pt;}
.fs5_c02026{font-size:32.000000pt;}
.fs2_c02026{font-size:42.880000pt;}
.fs1_c02026{font-size:48.000000pt;}
.fs8_c02026{font-size:53.120000pt;}
.fs7_c02026{font-size:58.880000pt;}
.fs0_c02026{font-size:64.000000pt;}
.fs4_c02026{font-size:74.880000pt;}
.fs3_c02026{font-size:85.120000pt;}
.fs6_c02026{font-size:96.000000pt;}
.y0_c02026{bottom:0.000000pt;}
.y4_c02026{bottom:2.560000pt;}
.y18_c02026{bottom:2.720000pt;}
.y1b_c02026{bottom:7.360000pt;}
.y2e_c02026{bottom:7.520000pt;}
.y19_c02026{bottom:11.840000pt;}
.y2c_c02026{bottom:12.000000pt;}
.y16_c02026{bottom:14.400000pt;}
.y2a_c02026{bottom:14.560000pt;}
.y17_c02026{bottom:15.840000pt;}
.y2b_c02026{bottom:16.000000pt;}
.y2_c02026{bottom:17.440000pt;}
.y52_c02026{bottom:44.000000pt;}
.y4c_c02026{bottom:46.560000pt;}
.y6_c02026{bottom:51.200000pt;}
.y4d_c02026{bottom:51.680000pt;}
.ye_c02026{bottom:58.400000pt;}
.yd_c02026{bottom:60.960000pt;}
.y10_c02026{bottom:63.520000pt;}
.y59_c02026{bottom:100.960000pt;}
.y5d_c02026{bottom:103.680000pt;}
.y5c_c02026{bottom:115.840000pt;}
.y5b_c02026{bottom:128.160000pt;}
.y5a_c02026{bottom:140.480000pt;}
.y5e_c02026{bottom:144.960000pt;}
.y54_c02026{bottom:163.040000pt;}
.y57_c02026{bottom:177.920000pt;}
.y56_c02026{bottom:190.240000pt;}
.y55_c02026{bottom:202.400000pt;}
.y58_c02026{bottom:207.040000pt;}
.y4b_c02026{bottom:224.960000pt;}
.y51_c02026{bottom:227.680000pt;}
.y50_c02026{bottom:239.840000pt;}
.y4f_c02026{bottom:252.160000pt;}
.y4e_c02026{bottom:264.480000pt;}
.y53_c02026{bottom:268.960000pt;}
.y4a_c02026{bottom:289.451680pt;}
.y49_c02026{bottom:301.768960pt;}
.y48_c02026{bottom:313.925440pt;}
.y47_c02026{bottom:326.242720pt;}
.y46_c02026{bottom:338.560000pt;}
.y45_c02026{bottom:369.128960pt;}
.y44_c02026{bottom:381.446240pt;}
.y43_c02026{bottom:393.763520pt;}
.y42_c02026{bottom:405.920000pt;}
.y40_c02026{bottom:416.480000pt;}
.y41_c02026{bottom:428.320000pt;}
.y3d_c02026{bottom:446.240000pt;}
.y3e_c02026{bottom:448.800000pt;}
.y3f_c02026{bottom:458.080000pt;}
.y3b_c02026{bottom:476.000000pt;}
.y3c_c02026{bottom:487.840000pt;}
.y39_c02026{bottom:505.760000pt;}
.y3a_c02026{bottom:517.600000pt;}
.y36_c02026{bottom:535.680000pt;}
.y37_c02026{bottom:538.240000pt;}
.y38_c02026{bottom:547.520000pt;}
.y34_c02026{bottom:565.440000pt;}
.y35_c02026{bottom:577.280000pt;}
.y32_c02026{bottom:595.200000pt;}
.y33_c02026{bottom:607.040000pt;}
.y2f_c02026{bottom:624.960000pt;}
.y30_c02026{bottom:627.680000pt;}
.y31_c02026{bottom:636.800000pt;}
.y29_c02026{bottom:654.720000pt;}
.y2d_c02026{bottom:666.720000pt;}
.y27_c02026{bottom:684.640000pt;}
.y28_c02026{bottom:696.480000pt;}
.y24_c02026{bottom:714.400000pt;}
.y25_c02026{bottom:717.120000pt;}
.y26_c02026{bottom:726.240000pt;}
.y22_c02026{bottom:744.160000pt;}
.y23_c02026{bottom:756.000000pt;}
.y1f_c02026{bottom:773.920000pt;}
.y20_c02026{bottom:776.640000pt;}
.y21_c02026{bottom:785.760000pt;}
.y1c_c02026{bottom:803.840000pt;}
.y1d_c02026{bottom:806.400000pt;}
.y1e_c02026{bottom:815.680000pt;}
.y15_c02026{bottom:833.600000pt;}
.y1a_c02026{bottom:845.440000pt;}
.yc_c02026{bottom:863.360000pt;}
.y14_c02026{bottom:865.280000pt;}
.y13_c02026{bottom:875.200000pt;}
.y12_c02026{bottom:891.680000pt;}
.y11_c02026{bottom:915.840000pt;}
.yf_c02026{bottom:921.760000pt;}
.yb_c02026{bottom:944.963520pt;}
.ya_c02026{bottom:957.120000pt;}
.y9_c02026{bottom:970.720000pt;}
.y8_c02026{bottom:989.120000pt;}
.y7_c02026{bottom:1008.320000pt;}
.y5_c02026{bottom:1032.000000pt;}
.y1_c02026{bottom:1042.560000pt;}
.y3_c02026{bottom:1045.120000pt;}
.hd_c02026{height:29.118667pt;}
.h10_c02026{height:29.120000pt;}
.h11_c02026{height:29.280000pt;}
.h2_c02026{height:32.160000pt;}
.hb_c02026{height:32.250000pt;}
.h8_c02026{height:42.084375pt;}
.h5_c02026{height:43.215000pt;}
.h4_c02026{height:48.375000pt;}
.he_c02026{height:53.535000pt;}
.h12_c02026{height:61.278667pt;}
.h13_c02026{height:61.280000pt;}
.h6_c02026{height:62.812500pt;}
.h3_c02026{height:64.500000pt;}
.ha_c02026{height:75.465000pt;}
.h9_c02026{height:78.240000pt;}
.h7_c02026{height:85.785000pt;}
.hf_c02026{height:94.218750pt;}
.hc_c02026{height:96.750000pt;}
.h0_c02026{height:1122.560000pt;}
.h1_c02026{height:1122.666667pt;}
.w3_c02026{width:37.120000pt;}
.w6_c02026{width:46.560000pt;}
.w5_c02026{width:169.440000pt;}
.w4_c02026{width:396.161333pt;}
.w2_c02026{width:443.360000pt;}
.w7_c02026{width:443.520000pt;}
.w0_c02026{width:793.760000pt;}
.w1_c02026{width:794.000000pt;}
.x0_c02026{left:0.000000pt;}
.x8_c02026{left:6.720000pt;}
.xc_c02026{left:8.640000pt;}
.x11_c02026{left:29.600000pt;}
.x13_c02026{left:70.880000pt;}
.x7_c02026{left:94.880000pt;}
.x15_c02026{left:112.160000pt;}
.x5_c02026{left:113.440000pt;}
.x6_c02026{left:132.320000pt;}
.x17_c02026{left:139.520000pt;}
.x2_c02026{left:153.440000pt;}
.x1_c02026{left:198.880000pt;}
.x3_c02026{left:205.600000pt;}
.x4_c02026{left:430.400000pt;}
.x9_c02026{left:521.120000pt;}
.xa_c02026{left:529.600000pt;}
.x10_c02026{left:552.480000pt;}
.x18_c02026{left:576.800000pt;}
.x12_c02026{left:593.760000pt;}
.x19_c02026{left:599.680000pt;}
.x14_c02026{left:635.040000pt;}
.x1a_c02026{left:640.960000pt;}
.x16_c02026{left:676.320000pt;}
.x1b_c02026{left:682.240000pt;}
.xb_c02026{left:699.680000pt;}
.xf_c02026{left:706.560000pt;}
.xe_c02026{left:716.960000pt;}
.xd_c02026{left:722.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_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_784ed5f7244ab11f30690244.woff2')format("woff");}.ff1_c02027{font-family:ff1_c02027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02027;src:url('chunks/assets/font_096d60185023468e2c9e2a3b.woff2')format("woff");}.ff2_c02027{font-family:ff2_c02027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02027;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02027{font-family:ff3_c02027;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_c02027;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff4_c02027{font-family:ff4_c02027;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:ff5_c02027;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff5_c02027{font-family:ff5_c02027;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;}
.m0_c02027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02027{vertical-align:-45.360000px;}
.v0_c02027{vertical-align:0.000000px;}
.ls14_c02027{letter-spacing:-1.457280px;}
.ls12_c02027{letter-spacing:-0.792000px;}
.ls11_c02027{letter-spacing:-0.758160px;}
.ls15_c02027{letter-spacing:-0.728640px;}
.ls16_c02027{letter-spacing:-0.596160px;}
.ls17_c02027{letter-spacing:-0.463680px;}
.ls18_c02027{letter-spacing:-0.397440px;}
.lse_c02027{letter-spacing:-0.336960px;}
.lsd_c02027{letter-spacing:-0.288000px;}
.lsb_c02027{letter-spacing:-0.216000px;}
.ls13_c02027{letter-spacing:-0.132480px;}
.lsa_c02027{letter-spacing:-0.108000px;}
.ls9_c02027{letter-spacing:0.000000px;}
.ls10_c02027{letter-spacing:0.084240px;}
.ls7_c02027{letter-spacing:0.132480px;}
.ls0_c02027{letter-spacing:0.162000px;}
.ls4_c02027{letter-spacing:0.239040px;}
.ls8_c02027{letter-spacing:0.264960px;}
.ls19_c02027{letter-spacing:0.288000px;}
.ls6_c02027{letter-spacing:0.331200px;}
.lsf_c02027{letter-spacing:0.336960px;}
.ls5_c02027{letter-spacing:0.360000px;}
.lsc_c02027{letter-spacing:0.383040px;}
.ls3_c02027{letter-spacing:7.920000px;}
.ls2_c02027{letter-spacing:12.240000px;}
.ls1_c02027{letter-spacing:2677.680000px;}
.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;}
}
.wsc_c02027{word-spacing:-108.000000px;}
.ws6_c02027{word-spacing:-27.000000px;}
.ws1_c02027{word-spacing:-24.323040px;}
.ws3_c02027{word-spacing:-20.723040px;}
.ws4_c02027{word-spacing:-20.301840px;}
.ws2_c02027{word-spacing:-17.712000px;}
.ws5_c02027{word-spacing:-17.208000px;}
.ws9_c02027{word-spacing:-16.692480px;}
.ws10_c02027{word-spacing:-16.560000px;}
.ws8_c02027{word-spacing:-16.427520px;}
.wsf_c02027{word-spacing:-16.096320px;}
.wse_c02027{word-spacing:-15.963840px;}
.wsd_c02027{word-spacing:-15.831360px;}
.wsa_c02027{word-spacing:-15.102720px;}
.wsb_c02027{word-spacing:-14.940000px;}
.ws0_c02027{word-spacing:-13.392000px;}
.ws7_c02027{word-spacing:-13.284000px;}
.ws1f_c02027{word-spacing:-1.059840px;}
.ws21_c02027{word-spacing:-0.861120px;}
.ws1e_c02027{word-spacing:-0.728640px;}
.ws17_c02027{word-spacing:-0.505440px;}
.ws1d_c02027{word-spacing:-0.331200px;}
.ws24_c02027{word-spacing:-0.288000px;}
.ws22_c02027{word-spacing:-0.264960px;}
.ws18_c02027{word-spacing:-0.252720px;}
.ws16_c02027{word-spacing:-0.191520px;}
.ws1b_c02027{word-spacing:-0.168480px;}
.ws19_c02027{word-spacing:-0.132480px;}
.ws11_c02027{word-spacing:0.000000px;}
.ws1c_c02027{word-spacing:0.132480px;}
.ws15_c02027{word-spacing:0.288000px;}
.ws12_c02027{word-spacing:0.378000px;}
.ws23_c02027{word-spacing:0.397440px;}
.ws20_c02027{word-spacing:0.596160px;}
.ws1a_c02027{word-spacing:0.728640px;}
.ws14_c02027{word-spacing:8.208000px;}
.ws13_c02027{word-spacing:12.528000px;}
._4_c02027{margin-left:-1.769040px;}
._0_c02027{width:1.026000px;}
._2_c02027{width:2.278080px;}
._5_c02027{width:3.934080px;}
._3_c02027{width:8.208000px;}
._1_c02027{width:12.193920px;}
.fc1_c02027{color:rgb(140,140,140);}
.fc0_c02027{color:rgb(0,0,0);}
.fs2_c02027{font-size:48.240000px;}
.fs1_c02027{font-size:54.000000px;}
.fs7_c02027{font-size:59.760000px;}
.fs6_c02027{font-size:66.240000px;}
.fs0_c02027{font-size:72.000000px;}
.fs4_c02027{font-size:84.240000px;}
.fs3_c02027{font-size:95.760000px;}
.fs5_c02027{font-size:108.000000px;}
.y0_c02027{bottom:0.000000px;}
.y4_c02027{bottom:2.880000px;}
.y4a_c02027{bottom:3.060000px;}
.y11_c02027{bottom:4.680000px;}
.y22_c02027{bottom:6.480000px;}
.y1c_c02027{bottom:6.660000px;}
.y20_c02027{bottom:11.520000px;}
.y1a_c02027{bottom:11.700000px;}
.y1e_c02027{bottom:14.400000px;}
.y18_c02027{bottom:14.580000px;}
.y1f_c02027{bottom:16.020000px;}
.y19_c02027{bottom:16.200000px;}
.y2_c02027{bottom:19.620000px;}
.y6_c02027{bottom:57.600000px;}
.y4b_c02027{bottom:63.360000px;}
.y44_c02027{bottom:66.240000px;}
.y45_c02027{bottom:72.000000px;}
.ye_c02027{bottom:77.760000px;}
.yd_c02027{bottom:80.640000px;}
.y13_c02027{bottom:83.520000px;}
.y54_c02027{bottom:127.440000px;}
.y59_c02027{bottom:130.320000px;}
.y58_c02027{bottom:144.180000px;}
.y57_c02027{bottom:158.040000px;}
.y56_c02027{bottom:171.720000px;}
.y55_c02027{bottom:185.580000px;}
.y5a_c02027{bottom:190.800000px;}
.y4d_c02027{bottom:210.960000px;}
.y52_c02027{bottom:214.020000px;}
.y51_c02027{bottom:227.700000px;}
.y50_c02027{bottom:241.560000px;}
.y4f_c02027{bottom:255.240000px;}
.y4e_c02027{bottom:269.100000px;}
.y53_c02027{bottom:274.320000px;}
.y43_c02027{bottom:294.480000px;}
.y49_c02027{bottom:311.220000px;}
.y48_c02027{bottom:325.080000px;}
.y47_c02027{bottom:338.940000px;}
.y46_c02027{bottom:352.620000px;}
.y4c_c02027{bottom:357.840000px;}
.y42_c02027{bottom:380.887020px;}
.y41_c02027{bottom:394.563060px;}
.y40_c02027{bottom:408.420000px;}
.y3f_c02027{bottom:423.540000px;}
.y3e_c02027{bottom:444.240000px;}
.y3d_c02027{bottom:464.940000px;}
.y3b_c02027{bottom:482.220000px;}
.y3c_c02027{bottom:493.920000px;}
.y39_c02027{bottom:514.080000px;}
.y3a_c02027{bottom:525.600000px;}
.y37_c02027{bottom:545.940000px;}
.y38_c02027{bottom:557.460000px;}
.y35_c02027{bottom:577.620000px;}
.y36_c02027{bottom:589.320000px;}
.y33_c02027{bottom:609.480000px;}
.y34_c02027{bottom:621.000000px;}
.y31_c02027{bottom:641.160000px;}
.y32_c02027{bottom:652.860000px;}
.y2f_c02027{bottom:673.020000px;}
.y30_c02027{bottom:684.720000px;}
.y2d_c02027{bottom:704.880000px;}
.y2e_c02027{bottom:716.400000px;}
.y2b_c02027{bottom:736.560000px;}
.y2c_c02027{bottom:748.260000px;}
.y29_c02027{bottom:768.420000px;}
.y2a_c02027{bottom:780.120000px;}
.y27_c02027{bottom:800.280000px;}
.y28_c02027{bottom:811.800000px;}
.y25_c02027{bottom:831.960000px;}
.y26_c02027{bottom:843.660000px;}
.y23_c02027{bottom:863.820000px;}
.y24_c02027{bottom:875.520000px;}
.y1d_c02027{bottom:895.680000px;}
.y21_c02027{bottom:907.200000px;}
.y17_c02027{bottom:927.360000px;}
.y1b_c02027{bottom:939.060000px;}
.yc_c02027{bottom:959.220000px;}
.y12_c02027{bottom:963.900000px;}
.y16_c02027{bottom:974.160000px;}
.y10_c02027{bottom:988.020000px;}
.y15_c02027{bottom:992.880000px;}
.yf_c02027{bottom:1012.140000px;}
.y14_c02027{bottom:1022.040000px;}
.yb_c02027{bottom:1062.903960px;}
.ya_c02027{bottom:1076.580000px;}
.y9_c02027{bottom:1092.060000px;}
.y8_c02027{bottom:1112.760000px;}
.y7_c02027{bottom:1134.360000px;}
.y5_c02027{bottom:1161.000000px;}
.y1_c02027{bottom:1172.880000px;}
.y3_c02027{bottom:1175.760000px;}
.hf_c02027{height:30.960000px;}
.h11_c02027{height:30.961500px;}
.h10_c02027{height:31.138500px;}
.hc_c02027{height:31.140000px;}
.h2_c02027{height:36.180000px;}
.h13_c02027{height:47.344922px;}
.h5_c02027{height:48.616875px;}
.h8_c02027{height:50.312812px;}
.h4_c02027{height:54.421875px;}
.hd_c02027{height:60.226875px;}
.h6_c02027{height:70.664062px;}
.h3_c02027{height:72.562500px;}
.h14_c02027{height:82.800000px;}
.h12_c02027{height:82.801500px;}
.ha_c02027{height:84.898125px;}
.h7_c02027{height:96.508125px;}
.h9_c02027{height:100.081500px;}
.he_c02027{height:105.996094px;}
.hb_c02027{height:108.843750px;}
.h0_c02027{height:1262.880000px;}
.h1_c02027{height:1263.000000px;}
.w3_c02027{width:41.760000px;}
.w6_c02027{width:52.380000px;}
.w5_c02027{width:190.440000px;}
.w8_c02027{width:190.620000px;}
.w4_c02027{width:445.858500px;}
.w2_c02027{width:498.780000px;}
.w7_c02027{width:498.960000px;}
.w0_c02027{width:892.980000px;}
.w1_c02027{width:893.250000px;}
.x0_c02027{left:0.000000px;}
.x8_c02027{left:7.740000px;}
.x10_c02027{left:9.540000px;}
.x15_c02027{left:33.120000px;}
.x7_c02027{left:53.460000px;}
.x17_c02027{left:79.560000px;}
.x6_c02027{left:95.580000px;}
.x9_c02027{left:97.200000px;}
.x1b_c02027{left:103.680000px;}
.xc_c02027{left:117.360000px;}
.x19_c02027{left:126.000000px;}
.x5_c02027{left:127.620000px;}
.x2_c02027{left:172.620000px;}
.xb_c02027{left:208.080000px;}
.x1_c02027{left:223.740000px;}
.x3_c02027{left:231.300000px;}
.xa_c02027{left:318.780000px;}
.xd_c02027{left:424.440000px;}
.x4_c02027{left:484.200000px;}
.xe_c02027{left:542.700000px;}
.x14_c02027{left:568.260000px;}
.x1c_c02027{left:595.800000px;}
.x16_c02027{left:614.700000px;}
.x1d_c02027{left:621.540000px;}
.x18_c02027{left:661.140000px;}
.x1e_c02027{left:667.980000px;}
.x1a_c02027{left:707.580000px;}
.x1f_c02027{left:714.420000px;}
.xf_c02027{left:734.040000px;}
.x13_c02027{left:741.600000px;}
.x12_c02027{left:753.300000px;}
.x11_c02027{left:759.960000px;}
@media print{
.v1_c02027{vertical-align:-40.320000pt;}
.v0_c02027{vertical-align:0.000000pt;}
.ls14_c02027{letter-spacing:-1.295360pt;}
.ls12_c02027{letter-spacing:-0.704000pt;}
.ls11_c02027{letter-spacing:-0.673920pt;}
.ls15_c02027{letter-spacing:-0.647680pt;}
.ls16_c02027{letter-spacing:-0.529920pt;}
.ls17_c02027{letter-spacing:-0.412160pt;}
.ls18_c02027{letter-spacing:-0.353280pt;}
.lse_c02027{letter-spacing:-0.299520pt;}
.lsd_c02027{letter-spacing:-0.256000pt;}
.lsb_c02027{letter-spacing:-0.192000pt;}
.ls13_c02027{letter-spacing:-0.117760pt;}
.lsa_c02027{letter-spacing:-0.096000pt;}
.ls9_c02027{letter-spacing:0.000000pt;}
.ls10_c02027{letter-spacing:0.074880pt;}
.ls7_c02027{letter-spacing:0.117760pt;}
.ls0_c02027{letter-spacing:0.144000pt;}
.ls4_c02027{letter-spacing:0.212480pt;}
.ls8_c02027{letter-spacing:0.235520pt;}
.ls19_c02027{letter-spacing:0.256000pt;}
.ls6_c02027{letter-spacing:0.294400pt;}
.lsf_c02027{letter-spacing:0.299520pt;}
.ls5_c02027{letter-spacing:0.320000pt;}
.lsc_c02027{letter-spacing:0.340480pt;}
.ls3_c02027{letter-spacing:7.040000pt;}
.ls2_c02027{letter-spacing:10.880000pt;}
.ls1_c02027{letter-spacing:2380.160000pt;}
.wsc_c02027{word-spacing:-96.000000pt;}
.ws6_c02027{word-spacing:-24.000000pt;}
.ws1_c02027{word-spacing:-21.620480pt;}
.ws3_c02027{word-spacing:-18.420480pt;}
.ws4_c02027{word-spacing:-18.046080pt;}
.ws2_c02027{word-spacing:-15.744000pt;}
.ws5_c02027{word-spacing:-15.296000pt;}
.ws9_c02027{word-spacing:-14.837760pt;}
.ws10_c02027{word-spacing:-14.720000pt;}
.ws8_c02027{word-spacing:-14.602240pt;}
.wsf_c02027{word-spacing:-14.307840pt;}
.wse_c02027{word-spacing:-14.190080pt;}
.wsd_c02027{word-spacing:-14.072320pt;}
.wsa_c02027{word-spacing:-13.424640pt;}
.wsb_c02027{word-spacing:-13.280000pt;}
.ws0_c02027{word-spacing:-11.904000pt;}
.ws7_c02027{word-spacing:-11.808000pt;}
.ws1f_c02027{word-spacing:-0.942080pt;}
.ws21_c02027{word-spacing:-0.765440pt;}
.ws1e_c02027{word-spacing:-0.647680pt;}
.ws17_c02027{word-spacing:-0.449280pt;}
.ws1d_c02027{word-spacing:-0.294400pt;}
.ws24_c02027{word-spacing:-0.256000pt;}
.ws22_c02027{word-spacing:-0.235520pt;}
.ws18_c02027{word-spacing:-0.224640pt;}
.ws16_c02027{word-spacing:-0.170240pt;}
.ws1b_c02027{word-spacing:-0.149760pt;}
.ws19_c02027{word-spacing:-0.117760pt;}
.ws11_c02027{word-spacing:0.000000pt;}
.ws1c_c02027{word-spacing:0.117760pt;}
.ws15_c02027{word-spacing:0.256000pt;}
.ws12_c02027{word-spacing:0.336000pt;}
.ws23_c02027{word-spacing:0.353280pt;}
.ws20_c02027{word-spacing:0.529920pt;}
.ws1a_c02027{word-spacing:0.647680pt;}
.ws14_c02027{word-spacing:7.296000pt;}
.ws13_c02027{word-spacing:11.136000pt;}
._4_c02027{margin-left:-1.572480pt;}
._0_c02027{width:0.912000pt;}
._2_c02027{width:2.024960pt;}
._5_c02027{width:3.496960pt;}
._3_c02027{width:7.296000pt;}
._1_c02027{width:10.839040pt;}
.fs2_c02027{font-size:42.880000pt;}
.fs1_c02027{font-size:48.000000pt;}
.fs7_c02027{font-size:53.120000pt;}
.fs6_c02027{font-size:58.880000pt;}
.fs0_c02027{font-size:64.000000pt;}
.fs4_c02027{font-size:74.880000pt;}
.fs3_c02027{font-size:85.120000pt;}
.fs5_c02027{font-size:96.000000pt;}
.y0_c02027{bottom:0.000000pt;}
.y4_c02027{bottom:2.560000pt;}
.y4a_c02027{bottom:2.720000pt;}
.y11_c02027{bottom:4.160000pt;}
.y22_c02027{bottom:5.760000pt;}
.y1c_c02027{bottom:5.920000pt;}
.y20_c02027{bottom:10.240000pt;}
.y1a_c02027{bottom:10.400000pt;}
.y1e_c02027{bottom:12.800000pt;}
.y18_c02027{bottom:12.960000pt;}
.y1f_c02027{bottom:14.240000pt;}
.y19_c02027{bottom:14.400000pt;}
.y2_c02027{bottom:17.440000pt;}
.y6_c02027{bottom:51.200000pt;}
.y4b_c02027{bottom:56.320000pt;}
.y44_c02027{bottom:58.880000pt;}
.y45_c02027{bottom:64.000000pt;}
.ye_c02027{bottom:69.120000pt;}
.yd_c02027{bottom:71.680000pt;}
.y13_c02027{bottom:74.240000pt;}
.y54_c02027{bottom:113.280000pt;}
.y59_c02027{bottom:115.840000pt;}
.y58_c02027{bottom:128.160000pt;}
.y57_c02027{bottom:140.480000pt;}
.y56_c02027{bottom:152.640000pt;}
.y55_c02027{bottom:164.960000pt;}
.y5a_c02027{bottom:169.600000pt;}
.y4d_c02027{bottom:187.520000pt;}
.y52_c02027{bottom:190.240000pt;}
.y51_c02027{bottom:202.400000pt;}
.y50_c02027{bottom:214.720000pt;}
.y4f_c02027{bottom:226.880000pt;}
.y4e_c02027{bottom:239.200000pt;}
.y53_c02027{bottom:243.840000pt;}
.y43_c02027{bottom:261.760000pt;}
.y49_c02027{bottom:276.640000pt;}
.y48_c02027{bottom:288.960000pt;}
.y47_c02027{bottom:301.280000pt;}
.y46_c02027{bottom:313.440000pt;}
.y4c_c02027{bottom:318.080000pt;}
.y42_c02027{bottom:338.566240pt;}
.y41_c02027{bottom:350.722720pt;}
.y40_c02027{bottom:363.040000pt;}
.y3f_c02027{bottom:376.480000pt;}
.y3e_c02027{bottom:394.880000pt;}
.y3d_c02027{bottom:413.280000pt;}
.y3b_c02027{bottom:428.640000pt;}
.y3c_c02027{bottom:439.040000pt;}
.y39_c02027{bottom:456.960000pt;}
.y3a_c02027{bottom:467.200000pt;}
.y37_c02027{bottom:485.280000pt;}
.y38_c02027{bottom:495.520000pt;}
.y35_c02027{bottom:513.440000pt;}
.y36_c02027{bottom:523.840000pt;}
.y33_c02027{bottom:541.760000pt;}
.y34_c02027{bottom:552.000000pt;}
.y31_c02027{bottom:569.920000pt;}
.y32_c02027{bottom:580.320000pt;}
.y2f_c02027{bottom:598.240000pt;}
.y30_c02027{bottom:608.640000pt;}
.y2d_c02027{bottom:626.560000pt;}
.y2e_c02027{bottom:636.800000pt;}
.y2b_c02027{bottom:654.720000pt;}
.y2c_c02027{bottom:665.120000pt;}
.y29_c02027{bottom:683.040000pt;}
.y2a_c02027{bottom:693.440000pt;}
.y27_c02027{bottom:711.360000pt;}
.y28_c02027{bottom:721.600000pt;}
.y25_c02027{bottom:739.520000pt;}
.y26_c02027{bottom:749.920000pt;}
.y23_c02027{bottom:767.840000pt;}
.y24_c02027{bottom:778.240000pt;}
.y1d_c02027{bottom:796.160000pt;}
.y21_c02027{bottom:806.400000pt;}
.y17_c02027{bottom:824.320000pt;}
.y1b_c02027{bottom:834.720000pt;}
.yc_c02027{bottom:852.640000pt;}
.y12_c02027{bottom:856.800000pt;}
.y16_c02027{bottom:865.920000pt;}
.y10_c02027{bottom:878.240000pt;}
.y15_c02027{bottom:882.560000pt;}
.yf_c02027{bottom:899.680000pt;}
.y14_c02027{bottom:908.480000pt;}
.yb_c02027{bottom:944.803520pt;}
.ya_c02027{bottom:956.960000pt;}
.y9_c02027{bottom:970.720000pt;}
.y8_c02027{bottom:989.120000pt;}
.y7_c02027{bottom:1008.320000pt;}
.y5_c02027{bottom:1032.000000pt;}
.y1_c02027{bottom:1042.560000pt;}
.y3_c02027{bottom:1045.120000pt;}
.hf_c02027{height:27.520000pt;}
.h11_c02027{height:27.521333pt;}
.h10_c02027{height:27.678667pt;}
.hc_c02027{height:27.680000pt;}
.h2_c02027{height:32.160000pt;}
.h13_c02027{height:42.084375pt;}
.h5_c02027{height:43.215000pt;}
.h8_c02027{height:44.722500pt;}
.h4_c02027{height:48.375000pt;}
.hd_c02027{height:53.535000pt;}
.h6_c02027{height:62.812500pt;}
.h3_c02027{height:64.500000pt;}
.h14_c02027{height:73.600000pt;}
.h12_c02027{height:73.601333pt;}
.ha_c02027{height:75.465000pt;}
.h7_c02027{height:85.785000pt;}
.h9_c02027{height:88.961333pt;}
.he_c02027{height:94.218750pt;}
.hb_c02027{height:96.750000pt;}
.h0_c02027{height:1122.560000pt;}
.h1_c02027{height:1122.666667pt;}
.w3_c02027{width:37.120000pt;}
.w6_c02027{width:46.560000pt;}
.w5_c02027{width:169.280000pt;}
.w8_c02027{width:169.440000pt;}
.w4_c02027{width:396.318667pt;}
.w2_c02027{width:443.360000pt;}
.w7_c02027{width:443.520000pt;}
.w0_c02027{width:793.760000pt;}
.w1_c02027{width:794.000000pt;}
.x0_c02027{left:0.000000pt;}
.x8_c02027{left:6.880000pt;}
.x10_c02027{left:8.480000pt;}
.x15_c02027{left:29.440000pt;}
.x7_c02027{left:47.520000pt;}
.x17_c02027{left:70.720000pt;}
.x6_c02027{left:84.960000pt;}
.x9_c02027{left:86.400000pt;}
.x1b_c02027{left:92.160000pt;}
.xc_c02027{left:104.320000pt;}
.x19_c02027{left:112.000000pt;}
.x5_c02027{left:113.440000pt;}
.x2_c02027{left:153.440000pt;}
.xb_c02027{left:184.960000pt;}
.x1_c02027{left:198.880000pt;}
.x3_c02027{left:205.600000pt;}
.xa_c02027{left:283.360000pt;}
.xd_c02027{left:377.280000pt;}
.x4_c02027{left:430.400000pt;}
.xe_c02027{left:482.400000pt;}
.x14_c02027{left:505.120000pt;}
.x1c_c02027{left:529.600000pt;}
.x16_c02027{left:546.400000pt;}
.x1d_c02027{left:552.480000pt;}
.x18_c02027{left:587.680000pt;}
.x1e_c02027{left:593.760000pt;}
.x1a_c02027{left:628.960000pt;}
.x1f_c02027{left:635.040000pt;}
.xf_c02027{left:652.480000pt;}
.x13_c02027{left:659.200000pt;}
.x12_c02027{left:669.600000pt;}
.x11_c02027{left:675.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_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_7e7cc49d354b557dc3e98fdf.woff2')format("woff");}.ff1_c02028{font-family:ff1_c02028;line-height:1.311035;font-style:normal;font-weight:normal;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_93f5d93869a19a5d254552a5.woff2')format("woff");}.ff2_c02028{font-family:ff2_c02028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02028;src:url('chunks/assets/font_155e6ee4daeebcde6b62acef.woff2')format("woff");}.ff3_c02028{font-family:ff3_c02028;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_c02028;src:url('chunks/assets/font_80eba90d15e9434d5983c8a5.woff2')format("woff");}.ff4_c02028{font-family:ff4_c02028;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;}
.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);}
.v2_c02028{vertical-align:-77.800320px;}
.v1_c02028{vertical-align:-45.360000px;}
.v0_c02028{vertical-align:0.000000px;}
.ls11_c02028{letter-spacing:-0.792000px;}
.ls10_c02028{letter-spacing:-0.758160px;}
.ls12_c02028{letter-spacing:-0.728640px;}
.ls14_c02028{letter-spacing:-0.596160px;}
.lsf_c02028{letter-spacing:-0.336960px;}
.lse_c02028{letter-spacing:-0.288000px;}
.lsd_c02028{letter-spacing:-0.216000px;}
.ls15_c02028{letter-spacing:-0.132480px;}
.lsc_c02028{letter-spacing:-0.108000px;}
.lsb_c02028{letter-spacing:0.000000px;}
.ls4_c02028{letter-spacing:0.132480px;}
.ls0_c02028{letter-spacing:0.162000px;}
.ls5_c02028{letter-spacing:0.239040px;}
.ls16_c02028{letter-spacing:0.288000px;}
.ls13_c02028{letter-spacing:0.331200px;}
.ls6_c02028{letter-spacing:0.360000px;}
.ls9_c02028{letter-spacing:6.480000px;}
.ls7_c02028{letter-spacing:18.720000px;}
.ls2_c02028{letter-spacing:27.360000px;}
.ls3_c02028{letter-spacing:28.080000px;}
.ls8_c02028{letter-spacing:58.320000px;}
.lsa_c02028{letter-spacing:72.900000px;}
.ls1_c02028{letter-spacing:2677.680000px;}
.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;}
}
.ws9_c02028{word-spacing:-108.000000px;}
.ws1_c02028{word-spacing:-23.940000px;}
.ws3_c02028{word-spacing:-20.723040px;}
.ws4_c02028{word-spacing:-20.301840px;}
.ws2_c02028{word-spacing:-17.712000px;}
.ws5_c02028{word-spacing:-17.208000px;}
.wsa_c02028{word-spacing:-16.692480px;}
.wsb_c02028{word-spacing:-15.963840px;}
.ws7_c02028{word-spacing:-15.831360px;}
.ws8_c02028{word-spacing:-14.940000px;}
.ws0_c02028{word-spacing:-13.392000px;}
.ws6_c02028{word-spacing:-13.284000px;}
.ws12_c02028{word-spacing:-0.861120px;}
.ws19_c02028{word-spacing:-0.596160px;}
.ws18_c02028{word-spacing:-0.331200px;}
.ws1c_c02028{word-spacing:-0.288000px;}
.ws10_c02028{word-spacing:-0.191520px;}
.ws13_c02028{word-spacing:-0.168480px;}
.ws11_c02028{word-spacing:-0.132480px;}
.wsc_c02028{word-spacing:0.000000px;}
.wsf_c02028{word-spacing:0.288000px;}
.wsd_c02028{word-spacing:0.378000px;}
.ws15_c02028{word-spacing:0.728640px;}
.ws1b_c02028{word-spacing:6.491520px;}
.ws1a_c02028{word-spacing:17.156160px;}
.ws16_c02028{word-spacing:17.884800px;}
.ws14_c02028{word-spacing:18.017280px;}
.wse_c02028{word-spacing:27.648000px;}
.ws17_c02028{word-spacing:58.158720px;}
._6_c02028{margin-left:-2.191680px;}
._2_c02028{margin-left:-1.080000px;}
._0_c02028{width:1.026000px;}
._5_c02028{width:2.484720px;}
._3_c02028{width:18.305280px;}
._4_c02028{width:19.678320px;}
._1_c02028{width:28.080000px;}
.fc1_c02028{color:rgb(140,140,140);}
.fc0_c02028{color:rgb(0,0,0);}
.fs5_c02028{font-size:36.000000px;}
.fs2_c02028{font-size:48.240000px;}
.fs1_c02028{font-size:54.000000px;}
.fs8_c02028{font-size:59.760000px;}
.fs7_c02028{font-size:66.240000px;}
.fs0_c02028{font-size:72.000000px;}
.fs4_c02028{font-size:84.240000px;}
.fs3_c02028{font-size:95.760000px;}
.fs6_c02028{font-size:108.000000px;}
.y0_c02028{bottom:0.000000px;}
.y4_c02028{bottom:2.880000px;}
.y27_c02028{bottom:3.060000px;}
.y19_c02028{bottom:8.280000px;}
.y33_c02028{bottom:8.460000px;}
.y17_c02028{bottom:13.320000px;}
.y31_c02028{bottom:13.500000px;}
.y14_c02028{bottom:16.200000px;}
.y2f_c02028{bottom:16.380000px;}
.y15_c02028{bottom:17.820000px;}
.y30_c02028{bottom:18.000000px;}
.y2_c02028{bottom:19.620000px;}
.y3a_c02028{bottom:27.180000px;}
.y21_c02028{bottom:27.360000px;}
.y38_c02028{bottom:32.220000px;}
.y1f_c02028{bottom:32.400000px;}
.y35_c02028{bottom:35.100000px;}
.y1b_c02028{bottom:35.280000px;}
.y36_c02028{bottom:36.720000px;}
.y1c_c02028{bottom:36.900000px;}
.y4f_c02028{bottom:49.500000px;}
.y4a_c02028{bottom:52.380000px;}
.ye_c02028{bottom:55.260000px;}
.y6_c02028{bottom:57.600000px;}
.yd_c02028{bottom:58.140000px;}
.y10_c02028{bottom:61.020000px;}
.y65_c02028{bottom:115.200000px;}
.y64_c02028{bottom:135.900000px;}
.y63_c02028{bottom:154.800000px;}
.y5d_c02028{bottom:166.680000px;}
.y61_c02028{bottom:183.420000px;}
.y60_c02028{bottom:197.280000px;}
.y5f_c02028{bottom:210.960000px;}
.y62_c02028{bottom:216.180000px;}
.y5e_c02028{bottom:224.820000px;}
.y57_c02028{bottom:236.340000px;}
.y5b_c02028{bottom:239.400000px;}
.y5a_c02028{bottom:253.080000px;}
.y59_c02028{bottom:266.940000px;}
.y58_c02028{bottom:280.800000px;}
.y5c_c02028{bottom:285.840000px;}
.y51_c02028{bottom:306.180000px;}
.y55_c02028{bottom:322.920000px;}
.y54_c02028{bottom:336.780000px;}
.y53_c02028{bottom:350.460000px;}
.y56_c02028{bottom:355.680000px;}
.y52_c02028{bottom:364.320000px;}
.y49_c02028{bottom:375.840000px;}
.y4e_c02028{bottom:378.900000px;}
.y4d_c02028{bottom:392.580000px;}
.y4c_c02028{bottom:406.440000px;}
.y4b_c02028{bottom:420.300000px;}
.y50_c02028{bottom:425.340000px;}
.y48_c02028{bottom:448.390080px;}
.y47_c02028{bottom:462.247020px;}
.y46_c02028{bottom:475.923060px;}
.y45_c02028{bottom:489.780000px;}
.y44_c02028{bottom:524.350080px;}
.y43_c02028{bottom:538.026120px;}
.y42_c02028{bottom:551.883060px;}
.y41_c02028{bottom:565.740000px;}
.y3d_c02028{bottom:577.440000px;}
.y3f_c02028{bottom:580.500000px;}
.y3e_c02028{bottom:595.260000px;}
.y40_c02028{bottom:609.660000px;}
.y3b_c02028{bottom:630.000000px;}
.y3c_c02028{bottom:643.320000px;}
.y34_c02028{bottom:663.480000px;}
.y37_c02028{bottom:681.300000px;}
.y39_c02028{bottom:695.700000px;}
.y2e_c02028{bottom:715.860000px;}
.y32_c02028{bottom:729.360000px;}
.y2b_c02028{bottom:749.520000px;}
.y2c_c02028{bottom:752.400000px;}
.y2d_c02028{bottom:762.840000px;}
.y29_c02028{bottom:783.000000px;}
.y2a_c02028{bottom:796.320000px;}
.y26_c02028{bottom:816.480000px;}
.y28_c02028{bottom:829.800000px;}
.y22_c02028{bottom:849.960000px;}
.y24_c02028{bottom:853.020000px;}
.y23_c02028{bottom:867.780000px;}
.y25_c02028{bottom:882.360000px;}
.y1a_c02028{bottom:902.520000px;}
.y1e_c02028{bottom:905.580000px;}
.y1d_c02028{bottom:920.340000px;}
.y20_c02028{bottom:934.920000px;}
.y13_c02028{bottom:955.080000px;}
.y16_c02028{bottom:957.960000px;}
.y18_c02028{bottom:968.400000px;}
.yc_c02028{bottom:988.560000px;}
.y12_c02028{bottom:1010.160000px;}
.y11_c02028{bottom:1037.160000px;}
.yf_c02028{bottom:1043.820000px;}
.yb_c02028{bottom:1069.927020px;}
.ya_c02028{bottom:1083.783960px;}
.y9_c02028{bottom:1097.460000px;}
.y8_c02028{bottom:1112.760000px;}
.y7_c02028{bottom:1134.360000px;}
.y5_c02028{bottom:1161.000000px;}
.y1_c02028{bottom:1172.880000px;}
.y3_c02028{bottom:1175.760000px;}
.hd_c02028{height:32.758500px;}
.h12_c02028{height:32.760000px;}
.h13_c02028{height:32.940000px;}
.h2_c02028{height:36.180000px;}
.hb_c02028{height:36.281250px;}
.h8_c02028{height:47.344922px;}
.h5_c02028{height:48.616875px;}
.h14_c02028{height:51.658500px;}
.h15_c02028{height:51.660000px;}
.h10_c02028{height:51.840000px;}
.h4_c02028{height:54.421875px;}
.he_c02028{height:60.226875px;}
.h11_c02028{height:66.757500px;}
.h17_c02028{height:68.938500px;}
.h16_c02028{height:68.940000px;}
.h6_c02028{height:70.664062px;}
.h3_c02028{height:72.562500px;}
.h9_c02028{height:77.578500px;}
.ha_c02028{height:84.898125px;}
.h7_c02028{height:96.508125px;}
.hf_c02028{height:105.996094px;}
.hc_c02028{height:108.843750px;}
.h0_c02028{height:1262.880000px;}
.h1_c02028{height:1263.000000px;}
.w3_c02028{width:41.760000px;}
.w6_c02028{width:52.380000px;}
.w5_c02028{width:190.620000px;}
.w4_c02028{width:445.681500px;}
.w2_c02028{width:498.780000px;}
.w7_c02028{width:498.960000px;}
.w0_c02028{width:892.980000px;}
.w1_c02028{width:893.250000px;}
.x0_c02028{left:0.000000px;}
.x8_c02028{left:7.560000px;}
.xd_c02028{left:9.720000px;}
.x9_c02028{left:12.060000px;}
.x12_c02028{left:33.300000px;}
.x14_c02028{left:79.740000px;}
.x7_c02028{left:106.740000px;}
.x16_c02028{left:126.180000px;}
.x5_c02028{left:127.620000px;}
.x6_c02028{left:148.860000px;}
.x10_c02028{left:156.960000px;}
.x2_c02028{left:172.620000px;}
.x1_c02028{left:223.740000px;}
.x3_c02028{left:231.300000px;}
.x4_c02028{left:484.200000px;}
.xa_c02028{left:582.660000px;}
.xb_c02028{left:595.800000px;}
.x11_c02028{left:621.540000px;}
.x18_c02028{left:648.900000px;}
.x13_c02028{left:667.980000px;}
.x19_c02028{left:674.640000px;}
.x15_c02028{left:714.420000px;}
.x1a_c02028{left:721.080000px;}
.x17_c02028{left:760.860000px;}
.x1b_c02028{left:767.520000px;}
.xc_c02028{left:787.140000px;}
.xf_c02028{left:806.580000px;}
.xe_c02028{left:813.240000px;}
@media print{
.v2_c02028{vertical-align:-69.155840pt;}
.v1_c02028{vertical-align:-40.320000pt;}
.v0_c02028{vertical-align:0.000000pt;}
.ls11_c02028{letter-spacing:-0.704000pt;}
.ls10_c02028{letter-spacing:-0.673920pt;}
.ls12_c02028{letter-spacing:-0.647680pt;}
.ls14_c02028{letter-spacing:-0.529920pt;}
.lsf_c02028{letter-spacing:-0.299520pt;}
.lse_c02028{letter-spacing:-0.256000pt;}
.lsd_c02028{letter-spacing:-0.192000pt;}
.ls15_c02028{letter-spacing:-0.117760pt;}
.lsc_c02028{letter-spacing:-0.096000pt;}
.lsb_c02028{letter-spacing:0.000000pt;}
.ls4_c02028{letter-spacing:0.117760pt;}
.ls0_c02028{letter-spacing:0.144000pt;}
.ls5_c02028{letter-spacing:0.212480pt;}
.ls16_c02028{letter-spacing:0.256000pt;}
.ls13_c02028{letter-spacing:0.294400pt;}
.ls6_c02028{letter-spacing:0.320000pt;}
.ls9_c02028{letter-spacing:5.760000pt;}
.ls7_c02028{letter-spacing:16.640000pt;}
.ls2_c02028{letter-spacing:24.320000pt;}
.ls3_c02028{letter-spacing:24.960000pt;}
.ls8_c02028{letter-spacing:51.840000pt;}
.lsa_c02028{letter-spacing:64.800000pt;}
.ls1_c02028{letter-spacing:2380.160000pt;}
.ws9_c02028{word-spacing:-96.000000pt;}
.ws1_c02028{word-spacing:-21.280000pt;}
.ws3_c02028{word-spacing:-18.420480pt;}
.ws4_c02028{word-spacing:-18.046080pt;}
.ws2_c02028{word-spacing:-15.744000pt;}
.ws5_c02028{word-spacing:-15.296000pt;}
.wsa_c02028{word-spacing:-14.837760pt;}
.wsb_c02028{word-spacing:-14.190080pt;}
.ws7_c02028{word-spacing:-14.072320pt;}
.ws8_c02028{word-spacing:-13.280000pt;}
.ws0_c02028{word-spacing:-11.904000pt;}
.ws6_c02028{word-spacing:-11.808000pt;}
.ws12_c02028{word-spacing:-0.765440pt;}
.ws19_c02028{word-spacing:-0.529920pt;}
.ws18_c02028{word-spacing:-0.294400pt;}
.ws1c_c02028{word-spacing:-0.256000pt;}
.ws10_c02028{word-spacing:-0.170240pt;}
.ws13_c02028{word-spacing:-0.149760pt;}
.ws11_c02028{word-spacing:-0.117760pt;}
.wsc_c02028{word-spacing:0.000000pt;}
.wsf_c02028{word-spacing:0.256000pt;}
.wsd_c02028{word-spacing:0.336000pt;}
.ws15_c02028{word-spacing:0.647680pt;}
.ws1b_c02028{word-spacing:5.770240pt;}
.ws1a_c02028{word-spacing:15.249920pt;}
.ws16_c02028{word-spacing:15.897600pt;}
.ws14_c02028{word-spacing:16.015360pt;}
.wse_c02028{word-spacing:24.576000pt;}
.ws17_c02028{word-spacing:51.696640pt;}
._6_c02028{margin-left:-1.948160pt;}
._2_c02028{margin-left:-0.960000pt;}
._0_c02028{width:0.912000pt;}
._5_c02028{width:2.208640pt;}
._3_c02028{width:16.271360pt;}
._4_c02028{width:17.491840pt;}
._1_c02028{width:24.960000pt;}
.fs5_c02028{font-size:32.000000pt;}
.fs2_c02028{font-size:42.880000pt;}
.fs1_c02028{font-size:48.000000pt;}
.fs8_c02028{font-size:53.120000pt;}
.fs7_c02028{font-size:58.880000pt;}
.fs0_c02028{font-size:64.000000pt;}
.fs4_c02028{font-size:74.880000pt;}
.fs3_c02028{font-size:85.120000pt;}
.fs6_c02028{font-size:96.000000pt;}
.y0_c02028{bottom:0.000000pt;}
.y4_c02028{bottom:2.560000pt;}
.y27_c02028{bottom:2.720000pt;}
.y19_c02028{bottom:7.360000pt;}
.y33_c02028{bottom:7.520000pt;}
.y17_c02028{bottom:11.840000pt;}
.y31_c02028{bottom:12.000000pt;}
.y14_c02028{bottom:14.400000pt;}
.y2f_c02028{bottom:14.560000pt;}
.y15_c02028{bottom:15.840000pt;}
.y30_c02028{bottom:16.000000pt;}
.y2_c02028{bottom:17.440000pt;}
.y3a_c02028{bottom:24.160000pt;}
.y21_c02028{bottom:24.320000pt;}
.y38_c02028{bottom:28.640000pt;}
.y1f_c02028{bottom:28.800000pt;}
.y35_c02028{bottom:31.200000pt;}
.y1b_c02028{bottom:31.360000pt;}
.y36_c02028{bottom:32.640000pt;}
.y1c_c02028{bottom:32.800000pt;}
.y4f_c02028{bottom:44.000000pt;}
.y4a_c02028{bottom:46.560000pt;}
.ye_c02028{bottom:49.120000pt;}
.y6_c02028{bottom:51.200000pt;}
.yd_c02028{bottom:51.680000pt;}
.y10_c02028{bottom:54.240000pt;}
.y65_c02028{bottom:102.400000pt;}
.y64_c02028{bottom:120.800000pt;}
.y63_c02028{bottom:137.600000pt;}
.y5d_c02028{bottom:148.160000pt;}
.y61_c02028{bottom:163.040000pt;}
.y60_c02028{bottom:175.360000pt;}
.y5f_c02028{bottom:187.520000pt;}
.y62_c02028{bottom:192.160000pt;}
.y5e_c02028{bottom:199.840000pt;}
.y57_c02028{bottom:210.080000pt;}
.y5b_c02028{bottom:212.800000pt;}
.y5a_c02028{bottom:224.960000pt;}
.y59_c02028{bottom:237.280000pt;}
.y58_c02028{bottom:249.600000pt;}
.y5c_c02028{bottom:254.080000pt;}
.y51_c02028{bottom:272.160000pt;}
.y55_c02028{bottom:287.040000pt;}
.y54_c02028{bottom:299.360000pt;}
.y53_c02028{bottom:311.520000pt;}
.y56_c02028{bottom:316.160000pt;}
.y52_c02028{bottom:323.840000pt;}
.y49_c02028{bottom:334.080000pt;}
.y4e_c02028{bottom:336.800000pt;}
.y4d_c02028{bottom:348.960000pt;}
.y4c_c02028{bottom:361.280000pt;}
.y4b_c02028{bottom:373.600000pt;}
.y50_c02028{bottom:378.080000pt;}
.y48_c02028{bottom:398.568960pt;}
.y47_c02028{bottom:410.886240pt;}
.y46_c02028{bottom:423.042720pt;}
.y45_c02028{bottom:435.360000pt;}
.y44_c02028{bottom:466.088960pt;}
.y43_c02028{bottom:478.245440pt;}
.y42_c02028{bottom:490.562720pt;}
.y41_c02028{bottom:502.880000pt;}
.y3d_c02028{bottom:513.280000pt;}
.y3f_c02028{bottom:516.000000pt;}
.y3e_c02028{bottom:529.120000pt;}
.y40_c02028{bottom:541.920000pt;}
.y3b_c02028{bottom:560.000000pt;}
.y3c_c02028{bottom:571.840000pt;}
.y34_c02028{bottom:589.760000pt;}
.y37_c02028{bottom:605.600000pt;}
.y39_c02028{bottom:618.400000pt;}
.y2e_c02028{bottom:636.320000pt;}
.y32_c02028{bottom:648.320000pt;}
.y2b_c02028{bottom:666.240000pt;}
.y2c_c02028{bottom:668.800000pt;}
.y2d_c02028{bottom:678.080000pt;}
.y29_c02028{bottom:696.000000pt;}
.y2a_c02028{bottom:707.840000pt;}
.y26_c02028{bottom:725.760000pt;}
.y28_c02028{bottom:737.600000pt;}
.y22_c02028{bottom:755.520000pt;}
.y24_c02028{bottom:758.240000pt;}
.y23_c02028{bottom:771.360000pt;}
.y25_c02028{bottom:784.320000pt;}
.y1a_c02028{bottom:802.240000pt;}
.y1e_c02028{bottom:804.960000pt;}
.y1d_c02028{bottom:818.080000pt;}
.y20_c02028{bottom:831.040000pt;}
.y13_c02028{bottom:848.960000pt;}
.y16_c02028{bottom:851.520000pt;}
.y18_c02028{bottom:860.800000pt;}
.yc_c02028{bottom:878.720000pt;}
.y12_c02028{bottom:897.920000pt;}
.y11_c02028{bottom:921.920000pt;}
.yf_c02028{bottom:927.840000pt;}
.yb_c02028{bottom:951.046240pt;}
.ya_c02028{bottom:963.363520pt;}
.y9_c02028{bottom:975.520000pt;}
.y8_c02028{bottom:989.120000pt;}
.y7_c02028{bottom:1008.320000pt;}
.y5_c02028{bottom:1032.000000pt;}
.y1_c02028{bottom:1042.560000pt;}
.y3_c02028{bottom:1045.120000pt;}
.hd_c02028{height:29.118667pt;}
.h12_c02028{height:29.120000pt;}
.h13_c02028{height:29.280000pt;}
.h2_c02028{height:32.160000pt;}
.hb_c02028{height:32.250000pt;}
.h8_c02028{height:42.084375pt;}
.h5_c02028{height:43.215000pt;}
.h14_c02028{height:45.918667pt;}
.h15_c02028{height:45.920000pt;}
.h10_c02028{height:46.080000pt;}
.h4_c02028{height:48.375000pt;}
.he_c02028{height:53.535000pt;}
.h11_c02028{height:59.340000pt;}
.h17_c02028{height:61.278667pt;}
.h16_c02028{height:61.280000pt;}
.h6_c02028{height:62.812500pt;}
.h3_c02028{height:64.500000pt;}
.h9_c02028{height:68.958667pt;}
.ha_c02028{height:75.465000pt;}
.h7_c02028{height:85.785000pt;}
.hf_c02028{height:94.218750pt;}
.hc_c02028{height:96.750000pt;}
.h0_c02028{height:1122.560000pt;}
.h1_c02028{height:1122.666667pt;}
.w3_c02028{width:37.120000pt;}
.w6_c02028{width:46.560000pt;}
.w5_c02028{width:169.440000pt;}
.w4_c02028{width:396.161333pt;}
.w2_c02028{width:443.360000pt;}
.w7_c02028{width:443.520000pt;}
.w0_c02028{width:793.760000pt;}
.w1_c02028{width:794.000000pt;}
.x0_c02028{left:0.000000pt;}
.x8_c02028{left:6.720000pt;}
.xd_c02028{left:8.640000pt;}
.x9_c02028{left:10.720000pt;}
.x12_c02028{left:29.600000pt;}
.x14_c02028{left:70.880000pt;}
.x7_c02028{left:94.880000pt;}
.x16_c02028{left:112.160000pt;}
.x5_c02028{left:113.440000pt;}
.x6_c02028{left:132.320000pt;}
.x10_c02028{left:139.520000pt;}
.x2_c02028{left:153.440000pt;}
.x1_c02028{left:198.880000pt;}
.x3_c02028{left:205.600000pt;}
.x4_c02028{left:430.400000pt;}
.xa_c02028{left:517.920000pt;}
.xb_c02028{left:529.600000pt;}
.x11_c02028{left:552.480000pt;}
.x18_c02028{left:576.800000pt;}
.x13_c02028{left:593.760000pt;}
.x19_c02028{left:599.680000pt;}
.x15_c02028{left:635.040000pt;}
.x1a_c02028{left:640.960000pt;}
.x17_c02028{left:676.320000pt;}
.x1b_c02028{left:682.240000pt;}
.xc_c02028{left:699.680000pt;}
.xf_c02028{left:716.960000pt;}
.xe_c02028{left:722.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_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_ed95c02cf2a72e9d0fe0c556.woff2')format("woff");}.ff1_c02029{font-family:ff1_c02029;line-height:1.311035;font-style:normal;font-weight:normal;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_1cf3df70585d9f2e185fb4b6.woff2')format("woff");}.ff2_c02029{font-family:ff2_c02029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02029;src:url('chunks/assets/font_93e4a9c9a7abaf9a9ffb556d.woff2')format("woff");}.ff3_c02029{font-family:ff3_c02029;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_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);}
.v3_c02029{vertical-align:-115.853040px;}
.v2_c02029{vertical-align:-92.832480px;}
.v1_c02029{vertical-align:-45.360000px;}
.v0_c02029{vertical-align:0.000000px;}
.ls10_c02029{letter-spacing:-0.673920px;}
.lsd_c02029{letter-spacing:-0.358560px;}
.lsc_c02029{letter-spacing:-0.288000px;}
.lsb_c02029{letter-spacing:-0.216000px;}
.lsf_c02029{letter-spacing:-0.191520px;}
.lsa_c02029{letter-spacing:-0.108000px;}
.ls9_c02029{letter-spacing:0.000000px;}
.ls0_c02029{letter-spacing:0.162000px;}
.ls3_c02029{letter-spacing:0.288000px;}
.lse_c02029{letter-spacing:0.336960px;}
.ls4_c02029{letter-spacing:10.080000px;}
.ls5_c02029{letter-spacing:10.800000px;}
.ls8_c02029{letter-spacing:10.980000px;}
.ls6_c02029{letter-spacing:13.680000px;}
.ls2_c02029{letter-spacing:18.720000px;}
.ls7_c02029{letter-spacing:754.020000px;}
.ls1_c02029{letter-spacing:2677.680000px;}
.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;}
}
.ws1_c02029{word-spacing:-17.712000px;}
.ws0_c02029{word-spacing:-13.392000px;}
.wsf_c02029{word-spacing:-0.505440px;}
.ws11_c02029{word-spacing:-0.191520px;}
.ws2_c02029{word-spacing:0.000000px;}
.wsd_c02029{word-spacing:0.179280px;}
.ws12_c02029{word-spacing:0.191520px;}
.ws7_c02029{word-spacing:0.216000px;}
.wsc_c02029{word-spacing:0.288000px;}
.ws13_c02029{word-spacing:0.324000px;}
.ws3_c02029{word-spacing:0.378000px;}
.wse_c02029{word-spacing:0.537840px;}
.ws10_c02029{word-spacing:0.574560px;}
.ws15_c02029{word-spacing:0.673920px;}
.ws9_c02029{word-spacing:10.080000px;}
.ws8_c02029{word-spacing:10.368000px;}
.wsa_c02029{word-spacing:13.680000px;}
.wsb_c02029{word-spacing:13.968000px;}
.ws6_c02029{word-spacing:18.432000px;}
.ws5_c02029{word-spacing:18.720000px;}
.ws4_c02029{word-spacing:19.008000px;}
.ws14_c02029{word-spacing:22.492080px;}
.ws16_c02029{word-spacing:39.845520px;}
._7_c02029{margin-left:-2.682000px;}
._2_c02029{margin-left:-1.530000px;}
._0_c02029{width:1.026000px;}
._5_c02029{width:2.088000px;}
._3_c02029{width:10.782000px;}
._4_c02029{width:14.544000px;}
._1_c02029{width:19.620000px;}
._6_c02029{width:23.510880px;}
.fc1_c02029{color:rgb(140,140,140);}
.fc0_c02029{color:rgb(0,0,0);}
.fs2_c02029{font-size:48.240000px;}
.fs1_c02029{font-size:54.000000px;}
.fs3_c02029{font-size:59.760000px;}
.fs0_c02029{font-size:72.000000px;}
.fs5_c02029{font-size:84.240000px;}
.fs4_c02029{font-size:95.760000px;}
.fs6_c02029{font-size:108.000000px;}
.y0_c02029{bottom:0.000000px;}
.y4_c02029{bottom:2.880000px;}
.y2_c02029{bottom:19.620000px;}
.y6_c02029{bottom:57.600000px;}
.y3c_c02029{bottom:112.863060px;}
.y3b_c02029{bottom:126.720000px;}
.y3a_c02029{bottom:142.032600px;}
.y39_c02029{bottom:166.146300px;}
.y38_c02029{bottom:190.260000px;}
.y37_c02029{bottom:214.020000px;}
.y36_c02029{bottom:234.720000px;}
.y35_c02029{bottom:255.420000px;}
.y34_c02029{bottom:276.120000px;}
.y33_c02029{bottom:327.403260px;}
.y32_c02029{bottom:344.688840px;}
.y31_c02029{bottom:361.974420px;}
.y30_c02029{bottom:379.260000px;}
.y2f_c02029{bottom:397.440000px;}
.y2e_c02029{bottom:422.097480px;}
.y2d_c02029{bottom:449.820000px;}
.ye_c02029{bottom:471.060000px;}
.y2c_c02029{bottom:500.028120px;}
.y2b_c02029{bottom:517.134420px;}
.y2a_c02029{bottom:534.420000px;}
.yd_c02029{bottom:548.640000px;}
.y29_c02029{bottom:552.420000px;}
.y28_c02029{bottom:569.700000px;}
.y27_c02029{bottom:586.980000px;}
.y26_c02029{bottom:604.260000px;}
.y25_c02029{bottom:621.360000px;}
.y24_c02029{bottom:638.640000px;}
.y23_c02029{bottom:655.920000px;}
.y22_c02029{bottom:673.200000px;}
.y21_c02029{bottom:690.480000px;}
.y20_c02029{bottom:707.760000px;}
.y1f_c02029{bottom:724.860000px;}
.y1e_c02029{bottom:742.140000px;}
.y1d_c02029{bottom:759.420000px;}
.y1c_c02029{bottom:776.700000px;}
.y1b_c02029{bottom:793.980000px;}
.y1a_c02029{bottom:811.260000px;}
.y19_c02029{bottom:828.360000px;}
.y18_c02029{bottom:845.640000px;}
.y17_c02029{bottom:862.920000px;}
.y16_c02029{bottom:880.200000px;}
.y15_c02029{bottom:897.480000px;}
.y14_c02029{bottom:914.760000px;}
.y13_c02029{bottom:931.860000px;}
.y12_c02029{bottom:949.140000px;}
.y11_c02029{bottom:966.420000px;}
.y10_c02029{bottom:983.700000px;}
.yf_c02029{bottom:1000.980000px;}
.yc_c02029{bottom:1046.160000px;}
.yb_c02029{bottom:1062.900000px;}
.ya_c02029{bottom:1078.020000px;}
.y9_c02029{bottom:1098.720000px;}
.y8_c02029{bottom:1119.420000px;}
.y7_c02029{bottom:1140.120000px;}
.y5_c02029{bottom:1161.000000px;}
.y1_c02029{bottom:1172.880000px;}
.y3_c02029{bottom:1175.760000px;}
.h2_c02029{height:36.180000px;}
.he_c02029{height:47.344922px;}
.h5_c02029{height:48.616875px;}
.h4_c02029{height:54.421875px;}
.ha_c02029{height:58.651172px;}
.h7_c02029{height:60.226875px;}
.hc_c02029{height:70.628906px;}
.h6_c02029{height:70.664062px;}
.h3_c02029{height:72.562500px;}
.hd_c02029{height:82.635820px;}
.hb_c02029{height:84.898125px;}
.h9_c02029{height:96.508125px;}
.h8_c02029{height:493.380000px;}
.h0_c02029{height:1262.880000px;}
.h1_c02029{height:1263.000000px;}
.w2_c02029{width:498.780000px;}
.w3_c02029{width:732.960000px;}
.w0_c02029{width:892.980000px;}
.w1_c02029{width:893.250000px;}
.x0_c02029{left:0.000000px;}
.x7_c02029{left:7.740000px;}
.x6_c02029{left:53.460000px;}
.x8_c02029{left:61.200000px;}
.x5_c02029{left:127.620000px;}
.x2_c02029{left:172.620000px;}
.xa_c02029{left:174.232260px;}
.x1_c02029{left:223.740000px;}
.x9_c02029{left:228.600000px;}
.x3_c02029{left:231.300000px;}
.xb_c02029{left:259.920000px;}
.x4_c02029{left:484.200000px;}
@media print{
.v3_c02029{vertical-align:-102.980480pt;}
.v2_c02029{vertical-align:-82.517760pt;}
.v1_c02029{vertical-align:-40.320000pt;}
.v0_c02029{vertical-align:0.000000pt;}
.ls10_c02029{letter-spacing:-0.599040pt;}
.lsd_c02029{letter-spacing:-0.318720pt;}
.lsc_c02029{letter-spacing:-0.256000pt;}
.lsb_c02029{letter-spacing:-0.192000pt;}
.lsf_c02029{letter-spacing:-0.170240pt;}
.lsa_c02029{letter-spacing:-0.096000pt;}
.ls9_c02029{letter-spacing:0.000000pt;}
.ls0_c02029{letter-spacing:0.144000pt;}
.ls3_c02029{letter-spacing:0.256000pt;}
.lse_c02029{letter-spacing:0.299520pt;}
.ls4_c02029{letter-spacing:8.960000pt;}
.ls5_c02029{letter-spacing:9.600000pt;}
.ls8_c02029{letter-spacing:9.760000pt;}
.ls6_c02029{letter-spacing:12.160000pt;}
.ls2_c02029{letter-spacing:16.640000pt;}
.ls7_c02029{letter-spacing:670.240000pt;}
.ls1_c02029{letter-spacing:2380.160000pt;}
.ws1_c02029{word-spacing:-15.744000pt;}
.ws0_c02029{word-spacing:-11.904000pt;}
.wsf_c02029{word-spacing:-0.449280pt;}
.ws11_c02029{word-spacing:-0.170240pt;}
.ws2_c02029{word-spacing:0.000000pt;}
.wsd_c02029{word-spacing:0.159360pt;}
.ws12_c02029{word-spacing:0.170240pt;}
.ws7_c02029{word-spacing:0.192000pt;}
.wsc_c02029{word-spacing:0.256000pt;}
.ws13_c02029{word-spacing:0.288000pt;}
.ws3_c02029{word-spacing:0.336000pt;}
.wse_c02029{word-spacing:0.478080pt;}
.ws10_c02029{word-spacing:0.510720pt;}
.ws15_c02029{word-spacing:0.599040pt;}
.ws9_c02029{word-spacing:8.960000pt;}
.ws8_c02029{word-spacing:9.216000pt;}
.wsa_c02029{word-spacing:12.160000pt;}
.wsb_c02029{word-spacing:12.416000pt;}
.ws6_c02029{word-spacing:16.384000pt;}
.ws5_c02029{word-spacing:16.640000pt;}
.ws4_c02029{word-spacing:16.896000pt;}
.ws14_c02029{word-spacing:19.992960pt;}
.ws16_c02029{word-spacing:35.418240pt;}
._7_c02029{margin-left:-2.384000pt;}
._2_c02029{margin-left:-1.360000pt;}
._0_c02029{width:0.912000pt;}
._5_c02029{width:1.856000pt;}
._3_c02029{width:9.584000pt;}
._4_c02029{width:12.928000pt;}
._1_c02029{width:17.440000pt;}
._6_c02029{width:20.898560pt;}
.fs2_c02029{font-size:42.880000pt;}
.fs1_c02029{font-size:48.000000pt;}
.fs3_c02029{font-size:53.120000pt;}
.fs0_c02029{font-size:64.000000pt;}
.fs5_c02029{font-size:74.880000pt;}
.fs4_c02029{font-size:85.120000pt;}
.fs6_c02029{font-size:96.000000pt;}
.y0_c02029{bottom:0.000000pt;}
.y4_c02029{bottom:2.560000pt;}
.y2_c02029{bottom:17.440000pt;}
.y6_c02029{bottom:51.200000pt;}
.y3c_c02029{bottom:100.322720pt;}
.y3b_c02029{bottom:112.640000pt;}
.y3a_c02029{bottom:126.251200pt;}
.y39_c02029{bottom:147.685600pt;}
.y38_c02029{bottom:169.120000pt;}
.y37_c02029{bottom:190.240000pt;}
.y36_c02029{bottom:208.640000pt;}
.y35_c02029{bottom:227.040000pt;}
.y34_c02029{bottom:245.440000pt;}
.y33_c02029{bottom:291.025120pt;}
.y32_c02029{bottom:306.390080pt;}
.y31_c02029{bottom:321.755040pt;}
.y30_c02029{bottom:337.120000pt;}
.y2f_c02029{bottom:353.280000pt;}
.y2e_c02029{bottom:375.197760pt;}
.y2d_c02029{bottom:399.840000pt;}
.ye_c02029{bottom:418.720000pt;}
.y2c_c02029{bottom:444.469440pt;}
.y2b_c02029{bottom:459.675040pt;}
.y2a_c02029{bottom:475.040000pt;}
.yd_c02029{bottom:487.680000pt;}
.y29_c02029{bottom:491.040000pt;}
.y28_c02029{bottom:506.400000pt;}
.y27_c02029{bottom:521.760000pt;}
.y26_c02029{bottom:537.120000pt;}
.y25_c02029{bottom:552.320000pt;}
.y24_c02029{bottom:567.680000pt;}
.y23_c02029{bottom:583.040000pt;}
.y22_c02029{bottom:598.400000pt;}
.y21_c02029{bottom:613.760000pt;}
.y20_c02029{bottom:629.120000pt;}
.y1f_c02029{bottom:644.320000pt;}
.y1e_c02029{bottom:659.680000pt;}
.y1d_c02029{bottom:675.040000pt;}
.y1c_c02029{bottom:690.400000pt;}
.y1b_c02029{bottom:705.760000pt;}
.y1a_c02029{bottom:721.120000pt;}
.y19_c02029{bottom:736.320000pt;}
.y18_c02029{bottom:751.680000pt;}
.y17_c02029{bottom:767.040000pt;}
.y16_c02029{bottom:782.400000pt;}
.y15_c02029{bottom:797.760000pt;}
.y14_c02029{bottom:813.120000pt;}
.y13_c02029{bottom:828.320000pt;}
.y12_c02029{bottom:843.680000pt;}
.y11_c02029{bottom:859.040000pt;}
.y10_c02029{bottom:874.400000pt;}
.yf_c02029{bottom:889.760000pt;}
.yc_c02029{bottom:929.920000pt;}
.yb_c02029{bottom:944.800000pt;}
.ya_c02029{bottom:958.240000pt;}
.y9_c02029{bottom:976.640000pt;}
.y8_c02029{bottom:995.040000pt;}
.y7_c02029{bottom:1013.440000pt;}
.y5_c02029{bottom:1032.000000pt;}
.y1_c02029{bottom:1042.560000pt;}
.y3_c02029{bottom:1045.120000pt;}
.h2_c02029{height:32.160000pt;}
.he_c02029{height:42.084375pt;}
.h5_c02029{height:43.215000pt;}
.h4_c02029{height:48.375000pt;}
.ha_c02029{height:52.134375pt;}
.h7_c02029{height:53.535000pt;}
.hc_c02029{height:62.781250pt;}
.h6_c02029{height:62.812500pt;}
.h3_c02029{height:64.500000pt;}
.hd_c02029{height:73.454062pt;}
.hb_c02029{height:75.465000pt;}
.h9_c02029{height:85.785000pt;}
.h8_c02029{height:438.560000pt;}
.h0_c02029{height:1122.560000pt;}
.h1_c02029{height:1122.666667pt;}
.w2_c02029{width:443.360000pt;}
.w3_c02029{width:651.520000pt;}
.w0_c02029{width:793.760000pt;}
.w1_c02029{width:794.000000pt;}
.x0_c02029{left:0.000000pt;}
.x7_c02029{left:6.880000pt;}
.x6_c02029{left:47.520000pt;}
.x8_c02029{left:54.400000pt;}
.x5_c02029{left:113.440000pt;}
.x2_c02029{left:153.440000pt;}
.xa_c02029{left:154.873120pt;}
.x1_c02029{left:198.880000pt;}
.x9_c02029{left:203.200000pt;}
.x3_c02029{left:205.600000pt;}
.xb_c02029{left:231.040000pt;}
.x4_c02029{left:430.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_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_644687d0f356df10967ab9b5.woff2')format("woff");}.ff1_c02030{font-family:ff1_c02030;line-height:1.311035;font-style:normal;font-weight:normal;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_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff2_c02030{font-family:ff2_c02030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02030;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c02030{font-family:ff3_c02030;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_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);}
.v2_c02030{vertical-align:-61.920000px;}
.v1_c02030{vertical-align:-45.360000px;}
.v0_c02030{vertical-align:0.000000px;}
.ls5_c02030{letter-spacing:-0.216000px;}
.ls4_c02030{letter-spacing:-0.108000px;}
.ls3_c02030{letter-spacing:0.000000px;}
.ls0_c02030{letter-spacing:0.162000px;}
.ls2_c02030{letter-spacing:38.340000px;}
.ls1_c02030{letter-spacing:2677.680000px;}
.sc__c02030{text-shadow:none;}
.sc0_c02030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02030{-webkit-text-stroke:0px transparent;}
.sc0_c02030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02030{word-spacing:-13.392000px;}
.ws1_c02030{word-spacing:0.000000px;}
.ws2_c02030{word-spacing:0.378000px;}
._0_c02030{width:1.026000px;}
.fc1_c02030{color:rgb(140,140,140);}
.fc0_c02030{color:rgb(0,0,0);}
.fs2_c02030{font-size:48.240000px;}
.fs1_c02030{font-size:54.000000px;}
.fs3_c02030{font-size:59.760000px;}
.fs0_c02030{font-size:72.000000px;}
.fs4_c02030{font-size:95.760000px;}
.y0_c02030{bottom:0.000000px;}
.y4_c02030{bottom:2.880000px;}
.y2_c02030{bottom:19.620000px;}
.y6_c02030{bottom:57.600000px;}
.y42_c02030{bottom:109.800000px;}
.y41_c02030{bottom:127.800000px;}
.y40_c02030{bottom:148.500000px;}
.y8_c02030{bottom:179.640000px;}
.y3f_c02030{bottom:183.420000px;}
.y3e_c02030{bottom:200.520000px;}
.y3d_c02030{bottom:217.800000px;}
.y3c_c02030{bottom:235.080000px;}
.y3b_c02030{bottom:252.360000px;}
.y3a_c02030{bottom:269.640000px;}
.y39_c02030{bottom:286.740000px;}
.y38_c02030{bottom:304.020000px;}
.y37_c02030{bottom:321.300000px;}
.y36_c02030{bottom:338.580000px;}
.y35_c02030{bottom:355.860000px;}
.y34_c02030{bottom:373.140000px;}
.y33_c02030{bottom:390.240000px;}
.y32_c02030{bottom:407.520000px;}
.y31_c02030{bottom:424.800000px;}
.y30_c02030{bottom:442.080000px;}
.y2f_c02030{bottom:459.360000px;}
.y2e_c02030{bottom:476.640000px;}
.y2d_c02030{bottom:493.740000px;}
.y2c_c02030{bottom:511.020000px;}
.y2b_c02030{bottom:528.300000px;}
.y2a_c02030{bottom:545.580000px;}
.y29_c02030{bottom:562.860000px;}
.y28_c02030{bottom:580.140000px;}
.y27_c02030{bottom:597.240000px;}
.y26_c02030{bottom:614.520000px;}
.y25_c02030{bottom:631.800000px;}
.y24_c02030{bottom:649.080000px;}
.y23_c02030{bottom:666.360000px;}
.y22_c02030{bottom:683.460000px;}
.y21_c02030{bottom:700.740000px;}
.y20_c02030{bottom:718.020000px;}
.y1f_c02030{bottom:735.300000px;}
.y1e_c02030{bottom:752.580000px;}
.y1d_c02030{bottom:769.860000px;}
.y1c_c02030{bottom:786.960000px;}
.y1b_c02030{bottom:804.240000px;}
.y1a_c02030{bottom:821.520000px;}
.y19_c02030{bottom:838.800000px;}
.y18_c02030{bottom:856.080000px;}
.y17_c02030{bottom:873.360000px;}
.y16_c02030{bottom:890.460000px;}
.y15_c02030{bottom:907.740000px;}
.y14_c02030{bottom:925.020000px;}
.y9_c02030{bottom:936.720000px;}
.y13_c02030{bottom:942.300000px;}
.y12_c02030{bottom:959.580000px;}
.y11_c02030{bottom:976.680000px;}
.y10_c02030{bottom:993.960000px;}
.yf_c02030{bottom:1011.240000px;}
.ye_c02030{bottom:1028.520000px;}
.yd_c02030{bottom:1045.800000px;}
.yc_c02030{bottom:1063.080000px;}
.yb_c02030{bottom:1080.180000px;}
.ya_c02030{bottom:1097.460000px;}
.y7_c02030{bottom:1143.180000px;}
.y5_c02030{bottom:1161.000000px;}
.y1_c02030{bottom:1172.880000px;}
.y3_c02030{bottom:1175.760000px;}
.h2_c02030{height:36.180000px;}
.h5_c02030{height:48.616875px;}
.h4_c02030{height:54.421875px;}
.h7_c02030{height:58.651172px;}
.hb_c02030{height:60.226875px;}
.ha_c02030{height:70.628906px;}
.h6_c02030{height:70.664062px;}
.h3_c02030{height:72.562500px;}
.h9_c02030{height:96.508125px;}
.h8_c02030{height:959.040000px;}
.h0_c02030{height:1262.880000px;}
.h1_c02030{height:1263.000000px;}
.w2_c02030{width:498.780000px;}
.w3_c02030{width:732.780000px;}
.w0_c02030{width:892.980000px;}
.w1_c02030{width:893.250000px;}
.x0_c02030{left:0.000000px;}
.x7_c02030{left:7.560000px;}
.x6_c02030{left:106.740000px;}
.x8_c02030{left:114.300000px;}
.x5_c02030{left:127.620000px;}
.x2_c02030{left:172.620000px;}
.x1_c02030{left:223.740000px;}
.x3_c02030{left:231.300000px;}
.x4_c02030{left:484.200000px;}
@media print{
.v2_c02030{vertical-align:-55.040000pt;}
.v1_c02030{vertical-align:-40.320000pt;}
.v0_c02030{vertical-align:0.000000pt;}
.ls5_c02030{letter-spacing:-0.192000pt;}
.ls4_c02030{letter-spacing:-0.096000pt;}
.ls3_c02030{letter-spacing:0.000000pt;}
.ls0_c02030{letter-spacing:0.144000pt;}
.ls2_c02030{letter-spacing:34.080000pt;}
.ls1_c02030{letter-spacing:2380.160000pt;}
.ws0_c02030{word-spacing:-11.904000pt;}
.ws1_c02030{word-spacing:0.000000pt;}
.ws2_c02030{word-spacing:0.336000pt;}
._0_c02030{width:0.912000pt;}
.fs2_c02030{font-size:42.880000pt;}
.fs1_c02030{font-size:48.000000pt;}
.fs3_c02030{font-size:53.120000pt;}
.fs0_c02030{font-size:64.000000pt;}
.fs4_c02030{font-size:85.120000pt;}
.y0_c02030{bottom:0.000000pt;}
.y4_c02030{bottom:2.560000pt;}
.y2_c02030{bottom:17.440000pt;}
.y6_c02030{bottom:51.200000pt;}
.y42_c02030{bottom:97.600000pt;}
.y41_c02030{bottom:113.600000pt;}
.y40_c02030{bottom:132.000000pt;}
.y8_c02030{bottom:159.680000pt;}
.y3f_c02030{bottom:163.040000pt;}
.y3e_c02030{bottom:178.240000pt;}
.y3d_c02030{bottom:193.600000pt;}
.y3c_c02030{bottom:208.960000pt;}
.y3b_c02030{bottom:224.320000pt;}
.y3a_c02030{bottom:239.680000pt;}
.y39_c02030{bottom:254.880000pt;}
.y38_c02030{bottom:270.240000pt;}
.y37_c02030{bottom:285.600000pt;}
.y36_c02030{bottom:300.960000pt;}
.y35_c02030{bottom:316.320000pt;}
.y34_c02030{bottom:331.680000pt;}
.y33_c02030{bottom:346.880000pt;}
.y32_c02030{bottom:362.240000pt;}
.y31_c02030{bottom:377.600000pt;}
.y30_c02030{bottom:392.960000pt;}
.y2f_c02030{bottom:408.320000pt;}
.y2e_c02030{bottom:423.680000pt;}
.y2d_c02030{bottom:438.880000pt;}
.y2c_c02030{bottom:454.240000pt;}
.y2b_c02030{bottom:469.600000pt;}
.y2a_c02030{bottom:484.960000pt;}
.y29_c02030{bottom:500.320000pt;}
.y28_c02030{bottom:515.680000pt;}
.y27_c02030{bottom:530.880000pt;}
.y26_c02030{bottom:546.240000pt;}
.y25_c02030{bottom:561.600000pt;}
.y24_c02030{bottom:576.960000pt;}
.y23_c02030{bottom:592.320000pt;}
.y22_c02030{bottom:607.520000pt;}
.y21_c02030{bottom:622.880000pt;}
.y20_c02030{bottom:638.240000pt;}
.y1f_c02030{bottom:653.600000pt;}
.y1e_c02030{bottom:668.960000pt;}
.y1d_c02030{bottom:684.320000pt;}
.y1c_c02030{bottom:699.520000pt;}
.y1b_c02030{bottom:714.880000pt;}
.y1a_c02030{bottom:730.240000pt;}
.y19_c02030{bottom:745.600000pt;}
.y18_c02030{bottom:760.960000pt;}
.y17_c02030{bottom:776.320000pt;}
.y16_c02030{bottom:791.520000pt;}
.y15_c02030{bottom:806.880000pt;}
.y14_c02030{bottom:822.240000pt;}
.y9_c02030{bottom:832.640000pt;}
.y13_c02030{bottom:837.600000pt;}
.y12_c02030{bottom:852.960000pt;}
.y11_c02030{bottom:868.160000pt;}
.y10_c02030{bottom:883.520000pt;}
.yf_c02030{bottom:898.880000pt;}
.ye_c02030{bottom:914.240000pt;}
.yd_c02030{bottom:929.600000pt;}
.yc_c02030{bottom:944.960000pt;}
.yb_c02030{bottom:960.160000pt;}
.ya_c02030{bottom:975.520000pt;}
.y7_c02030{bottom:1016.160000pt;}
.y5_c02030{bottom:1032.000000pt;}
.y1_c02030{bottom:1042.560000pt;}
.y3_c02030{bottom:1045.120000pt;}
.h2_c02030{height:32.160000pt;}
.h5_c02030{height:43.215000pt;}
.h4_c02030{height:48.375000pt;}
.h7_c02030{height:52.134375pt;}
.hb_c02030{height:53.535000pt;}
.ha_c02030{height:62.781250pt;}
.h6_c02030{height:62.812500pt;}
.h3_c02030{height:64.500000pt;}
.h9_c02030{height:85.785000pt;}
.h8_c02030{height:852.480000pt;}
.h0_c02030{height:1122.560000pt;}
.h1_c02030{height:1122.666667pt;}
.w2_c02030{width:443.360000pt;}
.w3_c02030{width:651.360000pt;}
.w0_c02030{width:793.760000pt;}
.w1_c02030{width:794.000000pt;}
.x0_c02030{left:0.000000pt;}
.x7_c02030{left:6.720000pt;}
.x6_c02030{left:94.880000pt;}
.x8_c02030{left:101.600000pt;}
.x5_c02030{left:113.440000pt;}
.x2_c02030{left:153.440000pt;}
.x1_c02030{left:198.880000pt;}
.x3_c02030{left:205.600000pt;}
.x4_c02030{left:430.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_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_644687d0f356df10967ab9b5.woff2')format("woff");}.ff1_c02031{font-family:ff1_c02031;line-height:1.311035;font-style:normal;font-weight:normal;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_a9e58764648ef2dc28d29ce1.woff2')format("woff");}.ff2_c02031{font-family:ff2_c02031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02031;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c02031{font-family:ff3_c02031;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_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);}
.v2_c02031{vertical-align:-84.240000px;}
.v1_c02031{vertical-align:-45.360000px;}
.v0_c02031{vertical-align:0.000000px;}
.ls5_c02031{letter-spacing:-0.216000px;}
.ls4_c02031{letter-spacing:-0.108000px;}
.ls3_c02031{letter-spacing:0.000000px;}
.ls0_c02031{letter-spacing:0.162000px;}
.ls2_c02031{letter-spacing:250.740000px;}
.ls1_c02031{letter-spacing:2677.680000px;}
.sc__c02031{text-shadow:none;}
.sc0_c02031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02031{-webkit-text-stroke:0px transparent;}
.sc0_c02031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02031{word-spacing:-13.392000px;}
.ws1_c02031{word-spacing:0.000000px;}
.ws3_c02031{word-spacing:0.179280px;}
.ws2_c02031{word-spacing:0.378000px;}
._1_c02031{margin-left:-1.434240px;}
._0_c02031{width:1.026000px;}
.fc1_c02031{color:rgb(140,140,140);}
.fc0_c02031{color:rgb(0,0,0);}
.fs2_c02031{font-size:48.240000px;}
.fs1_c02031{font-size:54.000000px;}
.fs4_c02031{font-size:59.760000px;}
.fs0_c02031{font-size:72.000000px;}
.fs3_c02031{font-size:95.760000px;}
.y0_c02031{bottom:0.000000px;}
.y4_c02031{bottom:2.880000px;}
.y2_c02031{bottom:19.620000px;}
.y6_c02031{bottom:57.600000px;}
.y7_c02031{bottom:179.640000px;}
.y3f_c02031{bottom:183.420000px;}
.y3e_c02031{bottom:200.520000px;}
.y3d_c02031{bottom:217.800000px;}
.y3c_c02031{bottom:235.080000px;}
.y3b_c02031{bottom:252.360000px;}
.y3a_c02031{bottom:269.640000px;}
.y39_c02031{bottom:286.740000px;}
.y38_c02031{bottom:304.020000px;}
.y37_c02031{bottom:321.300000px;}
.y36_c02031{bottom:338.580000px;}
.y35_c02031{bottom:355.860000px;}
.y34_c02031{bottom:373.140000px;}
.y33_c02031{bottom:390.240000px;}
.y32_c02031{bottom:407.520000px;}
.y31_c02031{bottom:424.800000px;}
.y30_c02031{bottom:442.080000px;}
.y2f_c02031{bottom:459.360000px;}
.y2e_c02031{bottom:476.640000px;}
.y2d_c02031{bottom:493.740000px;}
.y2c_c02031{bottom:511.020000px;}
.y2b_c02031{bottom:528.300000px;}
.y2a_c02031{bottom:545.580000px;}
.y29_c02031{bottom:562.860000px;}
.y28_c02031{bottom:580.140000px;}
.y27_c02031{bottom:597.240000px;}
.y26_c02031{bottom:614.520000px;}
.y25_c02031{bottom:631.800000px;}
.y24_c02031{bottom:649.080000px;}
.y23_c02031{bottom:666.360000px;}
.y22_c02031{bottom:683.460000px;}
.y21_c02031{bottom:700.740000px;}
.y20_c02031{bottom:718.020000px;}
.y1f_c02031{bottom:735.300000px;}
.y1e_c02031{bottom:752.580000px;}
.y1d_c02031{bottom:769.860000px;}
.y1c_c02031{bottom:786.960000px;}
.y1b_c02031{bottom:804.240000px;}
.y1a_c02031{bottom:821.520000px;}
.y19_c02031{bottom:838.800000px;}
.y18_c02031{bottom:856.080000px;}
.y17_c02031{bottom:873.360000px;}
.y16_c02031{bottom:890.460000px;}
.y15_c02031{bottom:907.740000px;}
.y14_c02031{bottom:925.020000px;}
.y13_c02031{bottom:942.300000px;}
.y8_c02031{bottom:953.820000px;}
.y12_c02031{bottom:959.580000px;}
.y11_c02031{bottom:976.680000px;}
.y10_c02031{bottom:993.960000px;}
.yf_c02031{bottom:1011.240000px;}
.ye_c02031{bottom:1028.520000px;}
.yd_c02031{bottom:1045.800000px;}
.yc_c02031{bottom:1063.080000px;}
.yb_c02031{bottom:1080.180000px;}
.ya_c02031{bottom:1097.460000px;}
.y9_c02031{bottom:1114.740000px;}
.y5_c02031{bottom:1161.000000px;}
.y1_c02031{bottom:1172.880000px;}
.y3_c02031{bottom:1175.760000px;}
.h2_c02031{height:36.180000px;}
.h5_c02031{height:48.616875px;}
.h4_c02031{height:54.421875px;}
.h9_c02031{height:58.651172px;}
.h6_c02031{height:70.664062px;}
.h3_c02031{height:72.562500px;}
.h8_c02031{height:96.508125px;}
.h7_c02031{height:976.138500px;}
.h0_c02031{height:1262.880000px;}
.h1_c02031{height:1263.000000px;}
.w2_c02031{width:498.780000px;}
.w3_c02031{width:732.960000px;}
.w0_c02031{width:892.980000px;}
.w1_c02031{width:893.250000px;}
.x0_c02031{left:0.000000px;}
.x7_c02031{left:7.740000px;}
.x6_c02031{left:53.460000px;}
.x8_c02031{left:61.200000px;}
.x5_c02031{left:127.620000px;}
.x2_c02031{left:172.620000px;}
.x1_c02031{left:223.740000px;}
.x3_c02031{left:231.300000px;}
.x4_c02031{left:484.200000px;}
@media print{
.v2_c02031{vertical-align:-74.880000pt;}
.v1_c02031{vertical-align:-40.320000pt;}
.v0_c02031{vertical-align:0.000000pt;}
.ls5_c02031{letter-spacing:-0.192000pt;}
.ls4_c02031{letter-spacing:-0.096000pt;}
.ls3_c02031{letter-spacing:0.000000pt;}
.ls0_c02031{letter-spacing:0.144000pt;}
.ls2_c02031{letter-spacing:222.880000pt;}
.ls1_c02031{letter-spacing:2380.160000pt;}
.ws0_c02031{word-spacing:-11.904000pt;}
.ws1_c02031{word-spacing:0.000000pt;}
.ws3_c02031{word-spacing:0.159360pt;}
.ws2_c02031{word-spacing:0.336000pt;}
._1_c02031{margin-left:-1.274880pt;}
._0_c02031{width:0.912000pt;}
.fs2_c02031{font-size:42.880000pt;}
.fs1_c02031{font-size:48.000000pt;}
.fs4_c02031{font-size:53.120000pt;}
.fs0_c02031{font-size:64.000000pt;}
.fs3_c02031{font-size:85.120000pt;}
.y0_c02031{bottom:0.000000pt;}
.y4_c02031{bottom:2.560000pt;}
.y2_c02031{bottom:17.440000pt;}
.y6_c02031{bottom:51.200000pt;}
.y7_c02031{bottom:159.680000pt;}
.y3f_c02031{bottom:163.040000pt;}
.y3e_c02031{bottom:178.240000pt;}
.y3d_c02031{bottom:193.600000pt;}
.y3c_c02031{bottom:208.960000pt;}
.y3b_c02031{bottom:224.320000pt;}
.y3a_c02031{bottom:239.680000pt;}
.y39_c02031{bottom:254.880000pt;}
.y38_c02031{bottom:270.240000pt;}
.y37_c02031{bottom:285.600000pt;}
.y36_c02031{bottom:300.960000pt;}
.y35_c02031{bottom:316.320000pt;}
.y34_c02031{bottom:331.680000pt;}
.y33_c02031{bottom:346.880000pt;}
.y32_c02031{bottom:362.240000pt;}
.y31_c02031{bottom:377.600000pt;}
.y30_c02031{bottom:392.960000pt;}
.y2f_c02031{bottom:408.320000pt;}
.y2e_c02031{bottom:423.680000pt;}
.y2d_c02031{bottom:438.880000pt;}
.y2c_c02031{bottom:454.240000pt;}
.y2b_c02031{bottom:469.600000pt;}
.y2a_c02031{bottom:484.960000pt;}
.y29_c02031{bottom:500.320000pt;}
.y28_c02031{bottom:515.680000pt;}
.y27_c02031{bottom:530.880000pt;}
.y26_c02031{bottom:546.240000pt;}
.y25_c02031{bottom:561.600000pt;}
.y24_c02031{bottom:576.960000pt;}
.y23_c02031{bottom:592.320000pt;}
.y22_c02031{bottom:607.520000pt;}
.y21_c02031{bottom:622.880000pt;}
.y20_c02031{bottom:638.240000pt;}
.y1f_c02031{bottom:653.600000pt;}
.y1e_c02031{bottom:668.960000pt;}
.y1d_c02031{bottom:684.320000pt;}
.y1c_c02031{bottom:699.520000pt;}
.y1b_c02031{bottom:714.880000pt;}
.y1a_c02031{bottom:730.240000pt;}
.y19_c02031{bottom:745.600000pt;}
.y18_c02031{bottom:760.960000pt;}
.y17_c02031{bottom:776.320000pt;}
.y16_c02031{bottom:791.520000pt;}
.y15_c02031{bottom:806.880000pt;}
.y14_c02031{bottom:822.240000pt;}
.y13_c02031{bottom:837.600000pt;}
.y8_c02031{bottom:847.840000pt;}
.y12_c02031{bottom:852.960000pt;}
.y11_c02031{bottom:868.160000pt;}
.y10_c02031{bottom:883.520000pt;}
.yf_c02031{bottom:898.880000pt;}
.ye_c02031{bottom:914.240000pt;}
.yd_c02031{bottom:929.600000pt;}
.yc_c02031{bottom:944.960000pt;}
.yb_c02031{bottom:960.160000pt;}
.ya_c02031{bottom:975.520000pt;}
.y9_c02031{bottom:990.880000pt;}
.y5_c02031{bottom:1032.000000pt;}
.y1_c02031{bottom:1042.560000pt;}
.y3_c02031{bottom:1045.120000pt;}
.h2_c02031{height:32.160000pt;}
.h5_c02031{height:43.215000pt;}
.h4_c02031{height:48.375000pt;}
.h9_c02031{height:52.134375pt;}
.h6_c02031{height:62.812500pt;}
.h3_c02031{height:64.500000pt;}
.h8_c02031{height:85.785000pt;}
.h7_c02031{height:867.678667pt;}
.h0_c02031{height:1122.560000pt;}
.h1_c02031{height:1122.666667pt;}
.w2_c02031{width:443.360000pt;}
.w3_c02031{width:651.520000pt;}
.w0_c02031{width:793.760000pt;}
.w1_c02031{width:794.000000pt;}
.x0_c02031{left:0.000000pt;}
.x7_c02031{left:6.880000pt;}
.x6_c02031{left:47.520000pt;}
.x8_c02031{left:54.400000pt;}
.x5_c02031{left:113.440000pt;}
.x2_c02031{left:153.440000pt;}
.x1_c02031{left:198.880000pt;}
.x3_c02031{left:205.600000pt;}
.x4_c02031{left:430.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_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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff1_c02032{font-family:ff1_c02032;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;}
.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;}
.ls0_c02032{letter-spacing:0.000000px;}
.sc__c02032{text-shadow:none;}
.sc0_c02032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02032{-webkit-text-stroke:0px transparent;}
.sc0_c02032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02032{word-spacing:0.000000px;}
.fc0_c02032{color:rgb(0,0,0);}
.fs0_c02032{font-size:65.880000px;}
.y0_c02032{bottom:0.000000px;}
.y1b_c02032{bottom:148.816947px;}
.y1a_c02032{bottom:186.976290px;}
.y19_c02032{bottom:225.135633px;}
.y18_c02032{bottom:263.294976px;}
.y17_c02032{bottom:301.454319px;}
.y16_c02032{bottom:339.704247px;}
.y15_c02032{bottom:377.863590px;}
.y14_c02032{bottom:416.022933px;}
.y13_c02032{bottom:454.182276px;}
.y12_c02032{bottom:492.341619px;}
.y11_c02032{bottom:530.500962px;}
.y10_c02032{bottom:568.660305px;}
.yf_c02032{bottom:606.819648px;}
.ye_c02032{bottom:644.978991px;}
.yd_c02032{bottom:683.138334px;}
.yc_c02032{bottom:721.297677px;}
.yb_c02032{bottom:759.457020px;}
.ya_c02032{bottom:797.616363px;}
.y9_c02032{bottom:835.775706px;}
.y8_c02032{bottom:873.935049px;}
.y7_c02032{bottom:912.094392px;}
.y6_c02032{bottom:950.253735px;}
.y5_c02032{bottom:988.413078px;}
.y4_c02032{bottom:1026.572421px;}
.y3_c02032{bottom:1064.731764px;}
.y2_c02032{bottom:1102.891107px;}
.y1_c02032{bottom:1141.050450px;}
.h1_c02032{height:43.909277px;}
.h0_c02032{height:1263.000000px;}
.w1_c02032{width:892.500000px;}
.w0_c02032{width:892.830000px;}
.x0_c02032{left:0.000000px;}
.x1_c02032{left:127.620000px;}
@media print{
.v0_c02032{vertical-align:0.000000pt;}
.ls0_c02032{letter-spacing:0.000000pt;}
.ws0_c02032{word-spacing:0.000000pt;}
.fs0_c02032{font-size:58.560000pt;}
.y0_c02032{bottom:0.000000pt;}
.y1b_c02032{bottom:132.281731pt;}
.y1a_c02032{bottom:166.201147pt;}
.y19_c02032{bottom:200.120563pt;}
.y18_c02032{bottom:234.039979pt;}
.y17_c02032{bottom:267.959395pt;}
.y16_c02032{bottom:301.959331pt;}
.y15_c02032{bottom:335.878747pt;}
.y14_c02032{bottom:369.798163pt;}
.y13_c02032{bottom:403.717579pt;}
.y12_c02032{bottom:437.636995pt;}
.y11_c02032{bottom:471.556411pt;}
.y10_c02032{bottom:505.475827pt;}
.yf_c02032{bottom:539.395243pt;}
.ye_c02032{bottom:573.314659pt;}
.yd_c02032{bottom:607.234075pt;}
.yc_c02032{bottom:641.153491pt;}
.yb_c02032{bottom:675.072907pt;}
.ya_c02032{bottom:708.992323pt;}
.y9_c02032{bottom:742.911739pt;}
.y8_c02032{bottom:776.831155pt;}
.y7_c02032{bottom:810.750571pt;}
.y6_c02032{bottom:844.669987pt;}
.y5_c02032{bottom:878.589403pt;}
.y4_c02032{bottom:912.508819pt;}
.y3_c02032{bottom:946.428235pt;}
.y2_c02032{bottom:980.347651pt;}
.y1_c02032{bottom:1014.267067pt;}
.h1_c02032{height:39.030469pt;}
.h0_c02032{height:1122.666667pt;}
.w1_c02032{width:793.333333pt;}
.w0_c02032{width:793.626667pt;}
.x0_c02032{left:0.000000pt;}
.x1_c02032{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_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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff1_c02033{font-family:ff1_c02033;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;}
.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;}
.ls0_c02033{letter-spacing:0.000000px;}
.sc__c02033{text-shadow:none;}
.sc0_c02033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02033{-webkit-text-stroke:0px transparent;}
.sc0_c02033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02033{word-spacing:0.000000px;}
.fc0_c02033{color:rgb(0,0,0);}
.fs0_c02033{font-size:65.880000px;}
.y0_c02033{bottom:0.000000px;}
.y1_c02033{bottom:1141.050450px;}
.h1_c02033{height:43.909277px;}
.h0_c02033{height:1263.000000px;}
.w1_c02033{width:892.500000px;}
.w0_c02033{width:892.830000px;}
.x0_c02033{left:0.000000px;}
.x1_c02033{left:127.620000px;}
@media print{
.v0_c02033{vertical-align:0.000000pt;}
.ls0_c02033{letter-spacing:0.000000pt;}
.ws0_c02033{word-spacing:0.000000pt;}
.fs0_c02033{font-size:58.560000pt;}
.y0_c02033{bottom:0.000000pt;}
.y1_c02033{bottom:1014.267067pt;}
.h1_c02033{height:39.030469pt;}
.h0_c02033{height:1122.666667pt;}
.w1_c02033{width:793.333333pt;}
.w0_c02033{width:793.626667pt;}
.x0_c02033{left:0.000000pt;}
.x1_c02033{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_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_c24b09b82581bd05f0ceb5c4.woff2')format("woff");}.ff1_c02034{font-family:ff1_c02034;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02034;src:url('chunks/assets/font_8cdd2098132e7146358f1628.woff2')format("woff");}.ff2_c02034{font-family:ff2_c02034;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02034{font-family:ff3_c02034;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_c02034;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02034{font-family:ff4_c02034;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:ff5_c02034;src:url('chunks/assets/font_5edbc3a716b82ff2f3cc1b62.woff2')format("woff");}.ff5_c02034{font-family:ff5_c02034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c02034{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0_c02034{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m4_c02034{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m5_c02034{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1_c02034{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.m3_c02034{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.v0_c02034{vertical-align:0.000000px;}
.lsb_c02034{letter-spacing:-0.115344px;}
.lsa_c02034{letter-spacing:-0.076896px;}
.ls10_c02034{letter-spacing:-0.067284px;}
.ls11_c02034{letter-spacing:-0.057672px;}
.lsc_c02034{letter-spacing:-0.048060px;}
.ls9_c02034{letter-spacing:-0.038448px;}
.lse_c02034{letter-spacing:-0.019224px;}
.ls8_c02034{letter-spacing:-0.014400px;}
.lsd_c02034{letter-spacing:-0.009612px;}
.ls7_c02034{letter-spacing:0.000000px;}
.ls6_c02034{letter-spacing:0.008388px;}
.ls1_c02034{letter-spacing:0.009612px;}
.ls15_c02034{letter-spacing:0.033552px;}
.ls0_c02034{letter-spacing:0.043200px;}
.ls3_c02034{letter-spacing:0.048060px;}
.ls4_c02034{letter-spacing:0.058716px;}
.ls13_c02034{letter-spacing:0.067104px;}
.ls16_c02034{letter-spacing:0.075492px;}
.ls17_c02034{letter-spacing:0.109044px;}
.ls12_c02034{letter-spacing:0.117432px;}
.ls14_c02034{letter-spacing:0.159372px;}
.ls5_c02034{letter-spacing:0.167760px;}
.lsf_c02034{letter-spacing:0.240300px;}
.ls2_c02034{letter-spacing:0.249912px;}
.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;}
}
.ws1_c02034{word-spacing:-144.000000px;}
.ws4_c02034{word-spacing:-96.120000px;}
.ws10_c02034{word-spacing:-0.201312px;}
.ws0_c02034{word-spacing:-0.187200px;}
.ws11_c02034{word-spacing:-0.150984px;}
.wsb_c02034{word-spacing:-0.144180px;}
.ws17_c02034{word-spacing:-0.142596px;}
.ws13_c02034{word-spacing:-0.134208px;}
.ws2_c02034{word-spacing:-0.129600px;}
.ws6_c02034{word-spacing:-0.105732px;}
.ws9_c02034{word-spacing:-0.086508px;}
.wsa_c02034{word-spacing:-0.076896px;}
.ws18_c02034{word-spacing:-0.058716px;}
.ws3_c02034{word-spacing:-0.057672px;}
.ws8_c02034{word-spacing:-0.048060px;}
.wsd_c02034{word-spacing:-0.038448px;}
.wsf_c02034{word-spacing:-0.032400px;}
.wsc_c02034{word-spacing:-0.028836px;}
.ws7_c02034{word-spacing:-0.019224px;}
.wse_c02034{word-spacing:0.000000px;}
.ws15_c02034{word-spacing:0.016776px;}
.ws5_c02034{word-spacing:0.019224px;}
.ws16_c02034{word-spacing:0.025164px;}
.ws12_c02034{word-spacing:0.033552px;}
.ws14_c02034{word-spacing:0.058716px;}
.ws19_c02034{word-spacing:0.109044px;}
._0_c02034{width:1.090440px;}
.fc0_c02034{color:rgb(0,0,0);}
.fs3_c02034{font-size:47.880000px;}
.fs8_c02034{font-size:65.880000px;}
.fs0_c02034{font-size:72.000000px;}
.fs7_c02034{font-size:83.880000px;}
.fs5_c02034{font-size:96.120000px;}
.fs6_c02034{font-size:108.000000px;}
.fs2_c02034{font-size:119.880000px;}
.fs4_c02034{font-size:144.000000px;}
.fs1_c02034{font-size:155.880000px;}
.y0_c02034{bottom:0.000000px;}
.y21_c02034{bottom:146.744040px;}
.y20_c02034{bottom:174.550260px;}
.y1f_c02034{bottom:202.272600px;}
.y1e_c02034{bottom:230.078820px;}
.y1d_c02034{bottom:257.528550px;}
.y1c_c02034{bottom:285.334770px;}
.y1b_c02034{bottom:313.413600px;}
.y1a_c02034{bottom:341.135940px;}
.y19_c02034{bottom:368.669550px;}
.y18_c02034{bottom:396.664500px;}
.y17_c02034{bottom:424.470720px;}
.y16_c02034{bottom:451.920450px;}
.y15_c02034{bottom:475.680450px;}
.y14_c02034{bottom:496.380450px;}
.y13_c02034{bottom:516.720450px;}
.y12_c02034{bottom:536.429100px;}
.y11_c02034{bottom:560.649450px;}
.y10_c02034{bottom:584.764950px;}
.yf_c02034{bottom:608.880450px;}
.ye_c02034{bottom:637.950450px;}
.yd_c02034{bottom:670.890450px;}
.yc_c02034{bottom:717.330450px;}
.yb_c02034{bottom:751.971270px;}
.ya_c02034{bottom:783.642810px;}
.y9_c02034{bottom:816.948390px;}
.y8_c02034{bottom:850.614420px;}
.y7_c02034{bottom:884.280450px;}
.y6_c02034{bottom:915.330450px;}
.y5_c02034{bottom:944.310450px;}
.y4_c02034{bottom:985.530450px;}
.y3_c02034{bottom:1023.330450px;}
.y2_c02034{bottom:1081.650450px;}
.y1_c02034{bottom:1139.880450px;}
.h6_c02034{height:47.988281px;}
.h4_c02034{height:48.254063px;}
.hb_c02034{height:64.657617px;}
.hc_c02034{height:70.664062px;}
.h1_c02034{height:72.562500px;}
.h7_c02034{height:79.270840px;}
.hd_c02034{height:82.323633px;}
.ha_c02034{height:84.535312px;}
.h8_c02034{height:96.870938px;}
.h9_c02034{height:108.843750px;}
.h5_c02034{height:118.757812px;}
.h3_c02034{height:120.816562px;}
.h2_c02034{height:157.097813px;}
.h0_c02034{height:1263.000000px;}
.w1_c02034{width:892.500000px;}
.w0_c02034{width:892.830000px;}
.x0_c02034{left:0.000000px;}
.x1_c02034{left:127.620000px;}
.x14_c02034{left:142.995566px;}
.x5_c02034{left:147.960000px;}
.x6_c02034{left:173.157557px;}
.x2_c02034{left:175.770000px;}
.x7_c02034{left:177.745482px;}
.xd_c02034{left:235.995835px;}
.xc_c02034{left:282.614434px;}
.xb_c02034{left:304.477382px;}
.x13_c02034{left:309.493555px;}
.x11_c02034{left:330.748618px;}
.x4_c02034{left:333.450000px;}
.xf_c02034{left:337.770754px;}
.x10_c02034{left:374.139130px;}
.x9_c02034{left:383.849399px;}
.x8_c02034{left:404.550000px;}
.xe_c02034{left:408.600000px;}
.xa_c02034{left:410.040000px;}
.x15_c02034{left:411.450778px;}
.x16_c02034{left:425.495050px;}
.x3_c02034{left:446.490000px;}
.x12_c02034{left:499.761998px;}
@media print{
.v0_c02034{vertical-align:0.000000pt;}
.lsb_c02034{letter-spacing:-0.102528pt;}
.lsa_c02034{letter-spacing:-0.068352pt;}
.ls10_c02034{letter-spacing:-0.059808pt;}
.ls11_c02034{letter-spacing:-0.051264pt;}
.lsc_c02034{letter-spacing:-0.042720pt;}
.ls9_c02034{letter-spacing:-0.034176pt;}
.lse_c02034{letter-spacing:-0.017088pt;}
.ls8_c02034{letter-spacing:-0.012800pt;}
.lsd_c02034{letter-spacing:-0.008544pt;}
.ls7_c02034{letter-spacing:0.000000pt;}
.ls6_c02034{letter-spacing:0.007456pt;}
.ls1_c02034{letter-spacing:0.008544pt;}
.ls15_c02034{letter-spacing:0.029824pt;}
.ls0_c02034{letter-spacing:0.038400pt;}
.ls3_c02034{letter-spacing:0.042720pt;}
.ls4_c02034{letter-spacing:0.052192pt;}
.ls13_c02034{letter-spacing:0.059648pt;}
.ls16_c02034{letter-spacing:0.067104pt;}
.ls17_c02034{letter-spacing:0.096928pt;}
.ls12_c02034{letter-spacing:0.104384pt;}
.ls14_c02034{letter-spacing:0.141664pt;}
.ls5_c02034{letter-spacing:0.149120pt;}
.lsf_c02034{letter-spacing:0.213600pt;}
.ls2_c02034{letter-spacing:0.222144pt;}
.ws1_c02034{word-spacing:-128.000000pt;}
.ws4_c02034{word-spacing:-85.440000pt;}
.ws10_c02034{word-spacing:-0.178944pt;}
.ws0_c02034{word-spacing:-0.166400pt;}
.ws11_c02034{word-spacing:-0.134208pt;}
.wsb_c02034{word-spacing:-0.128160pt;}
.ws17_c02034{word-spacing:-0.126752pt;}
.ws13_c02034{word-spacing:-0.119296pt;}
.ws2_c02034{word-spacing:-0.115200pt;}
.ws6_c02034{word-spacing:-0.093984pt;}
.ws9_c02034{word-spacing:-0.076896pt;}
.wsa_c02034{word-spacing:-0.068352pt;}
.ws18_c02034{word-spacing:-0.052192pt;}
.ws3_c02034{word-spacing:-0.051264pt;}
.ws8_c02034{word-spacing:-0.042720pt;}
.wsd_c02034{word-spacing:-0.034176pt;}
.wsf_c02034{word-spacing:-0.028800pt;}
.wsc_c02034{word-spacing:-0.025632pt;}
.ws7_c02034{word-spacing:-0.017088pt;}
.wse_c02034{word-spacing:0.000000pt;}
.ws15_c02034{word-spacing:0.014912pt;}
.ws5_c02034{word-spacing:0.017088pt;}
.ws16_c02034{word-spacing:0.022368pt;}
.ws12_c02034{word-spacing:0.029824pt;}
.ws14_c02034{word-spacing:0.052192pt;}
.ws19_c02034{word-spacing:0.096928pt;}
._0_c02034{width:0.969280pt;}
.fs3_c02034{font-size:42.560000pt;}
.fs8_c02034{font-size:58.560000pt;}
.fs0_c02034{font-size:64.000000pt;}
.fs7_c02034{font-size:74.560000pt;}
.fs5_c02034{font-size:85.440000pt;}
.fs6_c02034{font-size:96.000000pt;}
.fs2_c02034{font-size:106.560000pt;}
.fs4_c02034{font-size:128.000000pt;}
.fs1_c02034{font-size:138.560000pt;}
.y0_c02034{bottom:0.000000pt;}
.y21_c02034{bottom:130.439147pt;}
.y20_c02034{bottom:155.155787pt;}
.y1f_c02034{bottom:179.797867pt;}
.y1e_c02034{bottom:204.514507pt;}
.y1d_c02034{bottom:228.914267pt;}
.y1c_c02034{bottom:253.630907pt;}
.y1b_c02034{bottom:278.589867pt;}
.y1a_c02034{bottom:303.231947pt;}
.y19_c02034{bottom:327.706267pt;}
.y18_c02034{bottom:352.590667pt;}
.y17_c02034{bottom:377.307307pt;}
.y16_c02034{bottom:401.707067pt;}
.y15_c02034{bottom:422.827067pt;}
.y14_c02034{bottom:441.227067pt;}
.y13_c02034{bottom:459.307067pt;}
.y12_c02034{bottom:476.825867pt;}
.y11_c02034{bottom:498.355067pt;}
.y10_c02034{bottom:519.791067pt;}
.yf_c02034{bottom:541.227067pt;}
.ye_c02034{bottom:567.067067pt;}
.yd_c02034{bottom:596.347067pt;}
.yc_c02034{bottom:637.627067pt;}
.yb_c02034{bottom:668.418907pt;}
.ya_c02034{bottom:696.571387pt;}
.y9_c02034{bottom:726.176347pt;}
.y8_c02034{bottom:756.101707pt;}
.y7_c02034{bottom:786.027067pt;}
.y6_c02034{bottom:813.627067pt;}
.y5_c02034{bottom:839.387067pt;}
.y4_c02034{bottom:876.027067pt;}
.y3_c02034{bottom:909.627067pt;}
.y2_c02034{bottom:961.467067pt;}
.y1_c02034{bottom:1013.227067pt;}
.h6_c02034{height:42.656250pt;}
.h4_c02034{height:42.892500pt;}
.hb_c02034{height:57.473437pt;}
.hc_c02034{height:62.812500pt;}
.h1_c02034{height:64.500000pt;}
.h7_c02034{height:70.462969pt;}
.hd_c02034{height:73.176562pt;}
.ha_c02034{height:75.142500pt;}
.h8_c02034{height:86.107500pt;}
.h9_c02034{height:96.750000pt;}
.h5_c02034{height:105.562500pt;}
.h3_c02034{height:107.392500pt;}
.h2_c02034{height:139.642500pt;}
.h0_c02034{height:1122.666667pt;}
.w1_c02034{width:793.333333pt;}
.w0_c02034{width:793.626667pt;}
.x0_c02034{left:0.000000pt;}
.x1_c02034{left:113.440000pt;}
.x14_c02034{left:127.107170pt;}
.x5_c02034{left:131.520000pt;}
.x6_c02034{left:153.917828pt;}
.x2_c02034{left:156.240000pt;}
.x7_c02034{left:157.995984pt;}
.xd_c02034{left:209.774076pt;}
.xc_c02034{left:251.212830pt;}
.xb_c02034{left:270.646562pt;}
.x13_c02034{left:275.105382pt;}
.x11_c02034{left:293.998771pt;}
.x4_c02034{left:296.400000pt;}
.xf_c02034{left:300.240670pt;}
.x10_c02034{left:332.568115pt;}
.x9_c02034{left:341.199465pt;}
.x8_c02034{left:359.600000pt;}
.xe_c02034{left:363.200000pt;}
.xa_c02034{left:364.480000pt;}
.x15_c02034{left:365.734025pt;}
.x16_c02034{left:378.217822pt;}
.x3_c02034{left:396.880000pt;}
.x12_c02034{left:444.232887pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c02035{font-family:ff1_c02035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02035;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02035{font-family:ff2_c02035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02035{vertical-align:-82.800000px;}
.v0_c02035{vertical-align:0.000000px;}
.ls1_c02035{letter-spacing:0.000000px;}
.ls0_c02035{letter-spacing:1045.080000px;}
.sc__c02035{text-shadow:none;}
.sc0_c02035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02035{-webkit-text-stroke:0px transparent;}
.sc0_c02035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02035{word-spacing:0.000000px;}
.fc0_c02035{color:rgb(0,0,0);}
.fs0_c02035{font-size:72.000000px;}
.y0_c02035{bottom:0.000000px;}
.y31_c02035{bottom:125.760450px;}
.y30_c02035{bottom:146.460450px;}
.y2f_c02035{bottom:167.160450px;}
.y2e_c02035{bottom:187.860450px;}
.y2d_c02035{bottom:208.560450px;}
.y2c_c02035{bottom:229.260450px;}
.y2b_c02035{bottom:249.960450px;}
.y2a_c02035{bottom:270.660450px;}
.y29_c02035{bottom:291.360450px;}
.y28_c02035{bottom:312.060450px;}
.y27_c02035{bottom:332.760450px;}
.y26_c02035{bottom:353.460450px;}
.y25_c02035{bottom:374.160450px;}
.y24_c02035{bottom:394.860450px;}
.y23_c02035{bottom:415.560450px;}
.y22_c02035{bottom:436.260450px;}
.y21_c02035{bottom:456.960450px;}
.y20_c02035{bottom:477.660450px;}
.y1f_c02035{bottom:498.360450px;}
.y1e_c02035{bottom:519.060450px;}
.y1d_c02035{bottom:539.760450px;}
.y1c_c02035{bottom:560.460450px;}
.y1b_c02035{bottom:581.160450px;}
.y1a_c02035{bottom:601.860450px;}
.y19_c02035{bottom:622.560450px;}
.y18_c02035{bottom:643.260450px;}
.y17_c02035{bottom:663.960450px;}
.y16_c02035{bottom:684.660450px;}
.y15_c02035{bottom:705.360450px;}
.y14_c02035{bottom:726.060450px;}
.y13_c02035{bottom:746.760450px;}
.y12_c02035{bottom:767.460450px;}
.y11_c02035{bottom:788.070450px;}
.y10_c02035{bottom:808.770450px;}
.yf_c02035{bottom:829.470450px;}
.ye_c02035{bottom:850.170450px;}
.yd_c02035{bottom:870.870450px;}
.yc_c02035{bottom:891.570450px;}
.yb_c02035{bottom:912.270450px;}
.ya_c02035{bottom:932.970450px;}
.y9_c02035{bottom:953.670450px;}
.y8_c02035{bottom:974.370450px;}
.y7_c02035{bottom:995.070450px;}
.y6_c02035{bottom:1015.770450px;}
.y5_c02035{bottom:1036.470450px;}
.y4_c02035{bottom:1057.170450px;}
.y3_c02035{bottom:1077.870450px;}
.y2_c02035{bottom:1119.270450px;}
.y1_c02035{bottom:1140.150450px;}
.h1_c02035{height:70.664062px;}
.h2_c02035{height:72.562500px;}
.h0_c02035{height:1263.000000px;}
.w1_c02035{width:892.500000px;}
.w0_c02035{width:892.830000px;}
.x0_c02035{left:0.000000px;}
.x1_c02035{left:233.820000px;}
.x2_c02035{left:499.590000px;}
@media print{
.v1_c02035{vertical-align:-73.600000pt;}
.v0_c02035{vertical-align:0.000000pt;}
.ls1_c02035{letter-spacing:0.000000pt;}
.ls0_c02035{letter-spacing:928.960000pt;}
.ws0_c02035{word-spacing:0.000000pt;}
.fs0_c02035{font-size:64.000000pt;}
.y0_c02035{bottom:0.000000pt;}
.y31_c02035{bottom:111.787067pt;}
.y30_c02035{bottom:130.187067pt;}
.y2f_c02035{bottom:148.587067pt;}
.y2e_c02035{bottom:166.987067pt;}
.y2d_c02035{bottom:185.387067pt;}
.y2c_c02035{bottom:203.787067pt;}
.y2b_c02035{bottom:222.187067pt;}
.y2a_c02035{bottom:240.587067pt;}
.y29_c02035{bottom:258.987067pt;}
.y28_c02035{bottom:277.387067pt;}
.y27_c02035{bottom:295.787067pt;}
.y26_c02035{bottom:314.187067pt;}
.y25_c02035{bottom:332.587067pt;}
.y24_c02035{bottom:350.987067pt;}
.y23_c02035{bottom:369.387067pt;}
.y22_c02035{bottom:387.787067pt;}
.y21_c02035{bottom:406.187067pt;}
.y20_c02035{bottom:424.587067pt;}
.y1f_c02035{bottom:442.987067pt;}
.y1e_c02035{bottom:461.387067pt;}
.y1d_c02035{bottom:479.787067pt;}
.y1c_c02035{bottom:498.187067pt;}
.y1b_c02035{bottom:516.587067pt;}
.y1a_c02035{bottom:534.987067pt;}
.y19_c02035{bottom:553.387067pt;}
.y18_c02035{bottom:571.787067pt;}
.y17_c02035{bottom:590.187067pt;}
.y16_c02035{bottom:608.587067pt;}
.y15_c02035{bottom:626.987067pt;}
.y14_c02035{bottom:645.387067pt;}
.y13_c02035{bottom:663.787067pt;}
.y12_c02035{bottom:682.187067pt;}
.y11_c02035{bottom:700.507067pt;}
.y10_c02035{bottom:718.907067pt;}
.yf_c02035{bottom:737.307067pt;}
.ye_c02035{bottom:755.707067pt;}
.yd_c02035{bottom:774.107067pt;}
.yc_c02035{bottom:792.507067pt;}
.yb_c02035{bottom:810.907067pt;}
.ya_c02035{bottom:829.307067pt;}
.y9_c02035{bottom:847.707067pt;}
.y8_c02035{bottom:866.107067pt;}
.y7_c02035{bottom:884.507067pt;}
.y6_c02035{bottom:902.907067pt;}
.y5_c02035{bottom:921.307067pt;}
.y4_c02035{bottom:939.707067pt;}
.y3_c02035{bottom:958.107067pt;}
.y2_c02035{bottom:994.907067pt;}
.y1_c02035{bottom:1013.467067pt;}
.h1_c02035{height:62.812500pt;}
.h2_c02035{height:64.500000pt;}
.h0_c02035{height:1122.666667pt;}
.w1_c02035{width:793.333333pt;}
.w0_c02035{width:793.626667pt;}
.x0_c02035{left:0.000000pt;}
.x1_c02035{left:207.840000pt;}
.x2_c02035{left:444.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_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_41092dfb4a12eb9e298c3910.woff2')format("woff");}.ff1_c02036{font-family:ff1_c02036;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02036;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c02036{font-family:ff2_c02036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c02036{letter-spacing:-0.019224px;}
.ls6_c02036{letter-spacing:-0.007200px;}
.ls4_c02036{letter-spacing:0.000000px;}
.ls2_c02036{letter-spacing:0.007200px;}
.ls7_c02036{letter-spacing:0.008388px;}
.ls3_c02036{letter-spacing:0.014400px;}
.ls0_c02036{letter-spacing:0.025164px;}
.ls1_c02036{letter-spacing:0.028800px;}
.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;}
}
.ws2_c02036{word-spacing:-0.249912px;}
.ws7_c02036{word-spacing:-0.151200px;}
.ws0_c02036{word-spacing:-0.117432px;}
.wsb_c02036{word-spacing:-0.100800px;}
.ws8_c02036{word-spacing:-0.072000px;}
.ws9_c02036{word-spacing:-0.064800px;}
.ws3_c02036{word-spacing:-0.028800px;}
.ws6_c02036{word-spacing:-0.014400px;}
.ws5_c02036{word-spacing:-0.007200px;}
.ws1_c02036{word-spacing:0.000000px;}
.ws4_c02036{word-spacing:0.007200px;}
.wsa_c02036{word-spacing:194.371200px;}
._b_c02036{margin-left:-194.400000px;}
._c_c02036{margin-left:-115.560000px;}
._6_c02036{margin-left:-4.680000px;}
._0_c02036{margin-left:-1.036800px;}
._d_c02036{width:19.080000px;}
._4_c02036{width:61.920000px;}
._a_c02036{width:79.560000px;}
._3_c02036{width:87.120000px;}
._9_c02036{width:106.257600px;}
._1_c02036{width:125.640000px;}
._7_c02036{width:154.346400px;}
._8_c02036{width:171.720000px;}
._5_c02036{width:189.720000px;}
._2_c02036{width:194.400000px;}
.fc0_c02036{color:rgb(0,0,0);}
.fs1_c02036{font-size:47.880000px;}
.fs3_c02036{font-size:72.000000px;}
.fs0_c02036{font-size:83.880000px;}
.fs2_c02036{font-size:96.120000px;}
.y0_c02036{bottom:0.000000px;}
.y35_c02036{bottom:111.990450px;}
.y34_c02036{bottom:132.690450px;}
.y33_c02036{bottom:152.040600px;}
.y32_c02036{bottom:167.160450px;}
.y31_c02036{bottom:187.860450px;}
.y30_c02036{bottom:207.210600px;}
.y2f_c02036{bottom:222.330600px;}
.y2e_c02036{bottom:243.030600px;}
.y2d_c02036{bottom:263.730600px;}
.y2c_c02036{bottom:284.430600px;}
.y2b_c02036{bottom:305.130600px;}
.y2a_c02036{bottom:325.830600px;}
.y29_c02036{bottom:346.530600px;}
.y28_c02036{bottom:367.230600px;}
.y27_c02036{bottom:387.930600px;}
.y26_c02036{bottom:407.370600px;}
.y25_c02036{bottom:422.490450px;}
.y24_c02036{bottom:443.100450px;}
.y23_c02036{bottom:463.800450px;}
.y22_c02036{bottom:484.500450px;}
.y21_c02036{bottom:505.200450px;}
.y20_c02036{bottom:525.900450px;}
.y1f_c02036{bottom:546.600450px;}
.y1e_c02036{bottom:567.300450px;}
.y1d_c02036{bottom:588.000450px;}
.y1c_c02036{bottom:608.700450px;}
.y1b_c02036{bottom:628.140450px;}
.y1a_c02036{bottom:643.260450px;}
.y19_c02036{bottom:663.960450px;}
.y18_c02036{bottom:684.660450px;}
.y17_c02036{bottom:705.360450px;}
.y16_c02036{bottom:726.060450px;}
.y15_c02036{bottom:746.760450px;}
.y14_c02036{bottom:767.460450px;}
.y13_c02036{bottom:786.810450px;}
.y12_c02036{bottom:801.930450px;}
.y11_c02036{bottom:822.630450px;}
.y10_c02036{bottom:843.330450px;}
.yf_c02036{bottom:864.030450px;}
.ye_c02036{bottom:884.730450px;}
.yd_c02036{bottom:905.430450px;}
.yc_c02036{bottom:926.130450px;}
.yb_c02036{bottom:946.830450px;}
.ya_c02036{bottom:966.450450px;}
.y9_c02036{bottom:981.300450px;}
.y8_c02036{bottom:1000.650450px;}
.y7_c02036{bottom:1016.400450px;}
.y6_c02036{bottom:1038.630450px;}
.y5_c02036{bottom:1053.750450px;}
.y4_c02036{bottom:1074.450450px;}
.y3_c02036{bottom:1096.500450px;}
.y2_c02036{bottom:1121.430450px;}
.y1_c02036{bottom:1137.090450px;}
.h5_c02036{height:46.991602px;}
.h2_c02036{height:48.254063px;}
.h4_c02036{height:72.562500px;}
.h1_c02036{height:84.535312px;}
.h3_c02036{height:96.870938px;}
.h0_c02036{height:1263.000000px;}
.w1_c02036{width:892.500000px;}
.w0_c02036{width:892.830000px;}
.x0_c02036{left:0.000000px;}
.x7_c02036{left:127.620000px;}
.x8_c02036{left:170.190000px;}
.x4_c02036{left:177.570000px;}
.x5_c02036{left:266.040000px;}
.x1_c02036{left:334.800000px;}
.x3_c02036{left:404.820000px;}
.x6_c02036{left:418.500000px;}
.x2_c02036{left:446.490000px;}
@media print{
.v0_c02036{vertical-align:0.000000pt;}
.ls5_c02036{letter-spacing:-0.017088pt;}
.ls6_c02036{letter-spacing:-0.006400pt;}
.ls4_c02036{letter-spacing:0.000000pt;}
.ls2_c02036{letter-spacing:0.006400pt;}
.ls7_c02036{letter-spacing:0.007456pt;}
.ls3_c02036{letter-spacing:0.012800pt;}
.ls0_c02036{letter-spacing:0.022368pt;}
.ls1_c02036{letter-spacing:0.025600pt;}
.ws2_c02036{word-spacing:-0.222144pt;}
.ws7_c02036{word-spacing:-0.134400pt;}
.ws0_c02036{word-spacing:-0.104384pt;}
.wsb_c02036{word-spacing:-0.089600pt;}
.ws8_c02036{word-spacing:-0.064000pt;}
.ws9_c02036{word-spacing:-0.057600pt;}
.ws3_c02036{word-spacing:-0.025600pt;}
.ws6_c02036{word-spacing:-0.012800pt;}
.ws5_c02036{word-spacing:-0.006400pt;}
.ws1_c02036{word-spacing:0.000000pt;}
.ws4_c02036{word-spacing:0.006400pt;}
.wsa_c02036{word-spacing:172.774400pt;}
._b_c02036{margin-left:-172.800000pt;}
._c_c02036{margin-left:-102.720000pt;}
._6_c02036{margin-left:-4.160000pt;}
._0_c02036{margin-left:-0.921600pt;}
._d_c02036{width:16.960000pt;}
._4_c02036{width:55.040000pt;}
._a_c02036{width:70.720000pt;}
._3_c02036{width:77.440000pt;}
._9_c02036{width:94.451200pt;}
._1_c02036{width:111.680000pt;}
._7_c02036{width:137.196800pt;}
._8_c02036{width:152.640000pt;}
._5_c02036{width:168.640000pt;}
._2_c02036{width:172.800000pt;}
.fs1_c02036{font-size:42.560000pt;}
.fs3_c02036{font-size:64.000000pt;}
.fs0_c02036{font-size:74.560000pt;}
.fs2_c02036{font-size:85.440000pt;}
.y0_c02036{bottom:0.000000pt;}
.y35_c02036{bottom:99.547067pt;}
.y34_c02036{bottom:117.947067pt;}
.y33_c02036{bottom:135.147200pt;}
.y32_c02036{bottom:148.587067pt;}
.y31_c02036{bottom:166.987067pt;}
.y30_c02036{bottom:184.187200pt;}
.y2f_c02036{bottom:197.627200pt;}
.y2e_c02036{bottom:216.027200pt;}
.y2d_c02036{bottom:234.427200pt;}
.y2c_c02036{bottom:252.827200pt;}
.y2b_c02036{bottom:271.227200pt;}
.y2a_c02036{bottom:289.627200pt;}
.y29_c02036{bottom:308.027200pt;}
.y28_c02036{bottom:326.427200pt;}
.y27_c02036{bottom:344.827200pt;}
.y26_c02036{bottom:362.107200pt;}
.y25_c02036{bottom:375.547067pt;}
.y24_c02036{bottom:393.867067pt;}
.y23_c02036{bottom:412.267067pt;}
.y22_c02036{bottom:430.667067pt;}
.y21_c02036{bottom:449.067067pt;}
.y20_c02036{bottom:467.467067pt;}
.y1f_c02036{bottom:485.867067pt;}
.y1e_c02036{bottom:504.267067pt;}
.y1d_c02036{bottom:522.667067pt;}
.y1c_c02036{bottom:541.067067pt;}
.y1b_c02036{bottom:558.347067pt;}
.y1a_c02036{bottom:571.787067pt;}
.y19_c02036{bottom:590.187067pt;}
.y18_c02036{bottom:608.587067pt;}
.y17_c02036{bottom:626.987067pt;}
.y16_c02036{bottom:645.387067pt;}
.y15_c02036{bottom:663.787067pt;}
.y14_c02036{bottom:682.187067pt;}
.y13_c02036{bottom:699.387067pt;}
.y12_c02036{bottom:712.827067pt;}
.y11_c02036{bottom:731.227067pt;}
.y10_c02036{bottom:749.627067pt;}
.yf_c02036{bottom:768.027067pt;}
.ye_c02036{bottom:786.427067pt;}
.yd_c02036{bottom:804.827067pt;}
.yc_c02036{bottom:823.227067pt;}
.yb_c02036{bottom:841.627067pt;}
.ya_c02036{bottom:859.067067pt;}
.y9_c02036{bottom:872.267067pt;}
.y8_c02036{bottom:889.467067pt;}
.y7_c02036{bottom:903.467067pt;}
.y6_c02036{bottom:923.227067pt;}
.y5_c02036{bottom:936.667067pt;}
.y4_c02036{bottom:955.067067pt;}
.y3_c02036{bottom:974.667067pt;}
.y2_c02036{bottom:996.827067pt;}
.y1_c02036{bottom:1010.747067pt;}
.h5_c02036{height:41.770312pt;}
.h2_c02036{height:42.892500pt;}
.h4_c02036{height:64.500000pt;}
.h1_c02036{height:75.142500pt;}
.h3_c02036{height:86.107500pt;}
.h0_c02036{height:1122.666667pt;}
.w1_c02036{width:793.333333pt;}
.w0_c02036{width:793.626667pt;}
.x0_c02036{left:0.000000pt;}
.x7_c02036{left:113.440000pt;}
.x8_c02036{left:151.280000pt;}
.x4_c02036{left:157.840000pt;}
.x5_c02036{left:236.480000pt;}
.x1_c02036{left:297.600000pt;}
.x3_c02036{left:359.840000pt;}
.x6_c02036{left:372.000000pt;}
.x2_c02036{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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c02037{font-family:ff1_c02037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c02037{letter-spacing:0.000000px;}
.sc__c02037{text-shadow:none;}
.sc0_c02037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02037{-webkit-text-stroke:0px transparent;}
.sc0_c02037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02037{word-spacing:0.000000px;}
.fc0_c02037{color:rgb(0,0,0);}
.fs0_c02037{font-size:72.000000px;}
.y0_c02037{bottom:0.000000px;}
.y17_c02037{bottom:127.110450px;}
.y16_c02037{bottom:173.190450px;}
.y15_c02037{bottom:219.180450px;}
.y14_c02037{bottom:265.260450px;}
.y13_c02037{bottom:311.340450px;}
.y12_c02037{bottom:357.330450px;}
.y11_c02037{bottom:403.410450px;}
.y10_c02037{bottom:449.490450px;}
.yf_c02037{bottom:495.480450px;}
.ye_c02037{bottom:541.560450px;}
.yd_c02037{bottom:587.640450px;}
.yc_c02037{bottom:633.630450px;}
.yb_c02037{bottom:679.710450px;}
.ya_c02037{bottom:725.700450px;}
.y9_c02037{bottom:771.780450px;}
.y8_c02037{bottom:817.860450px;}
.y7_c02037{bottom:863.850450px;}
.y6_c02037{bottom:909.930450px;}
.y5_c02037{bottom:956.010450px;}
.y4_c02037{bottom:1002.000450px;}
.y3_c02037{bottom:1048.080450px;}
.y2_c02037{bottom:1094.160450px;}
.y1_c02037{bottom:1140.150450px;}
.h1_c02037{height:70.664062px;}
.h0_c02037{height:1263.000000px;}
.w1_c02037{width:892.500000px;}
.w0_c02037{width:892.830000px;}
.x0_c02037{left:0.000000px;}
.x1_c02037{left:127.620000px;}
@media print{
.v0_c02037{vertical-align:0.000000pt;}
.ls0_c02037{letter-spacing:0.000000pt;}
.ws0_c02037{word-spacing:0.000000pt;}
.fs0_c02037{font-size:64.000000pt;}
.y0_c02037{bottom:0.000000pt;}
.y17_c02037{bottom:112.987067pt;}
.y16_c02037{bottom:153.947067pt;}
.y15_c02037{bottom:194.827067pt;}
.y14_c02037{bottom:235.787067pt;}
.y13_c02037{bottom:276.747067pt;}
.y12_c02037{bottom:317.627067pt;}
.y11_c02037{bottom:358.587067pt;}
.y10_c02037{bottom:399.547067pt;}
.yf_c02037{bottom:440.427067pt;}
.ye_c02037{bottom:481.387067pt;}
.yd_c02037{bottom:522.347067pt;}
.yc_c02037{bottom:563.227067pt;}
.yb_c02037{bottom:604.187067pt;}
.ya_c02037{bottom:645.067067pt;}
.y9_c02037{bottom:686.027067pt;}
.y8_c02037{bottom:726.987067pt;}
.y7_c02037{bottom:767.867067pt;}
.y6_c02037{bottom:808.827067pt;}
.y5_c02037{bottom:849.787067pt;}
.y4_c02037{bottom:890.667067pt;}
.y3_c02037{bottom:931.627067pt;}
.y2_c02037{bottom:972.587067pt;}
.y1_c02037{bottom:1013.467067pt;}
.h1_c02037{height:62.812500pt;}
.h0_c02037{height:1122.666667pt;}
.w1_c02037{width:793.333333pt;}
.w0_c02037{width:793.626667pt;}
.x0_c02037{left:0.000000pt;}
.x1_c02037{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_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_fed369cf28202fd4b86bb80b.woff2')format("woff");}.ff1_c02038{font-family:ff1_c02038;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02038;src:url('chunks/assets/font_d382a2739fd330ee7fe9196c.woff2')format("woff");}.ff2_c02038{font-family:ff2_c02038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c02038{letter-spacing:-0.028800px;}
.ls8_c02038{letter-spacing:-0.021600px;}
.lsb_c02038{letter-spacing:-0.007200px;}
.lsa_c02038{letter-spacing:0.000000px;}
.ls5_c02038{letter-spacing:0.007200px;}
.ls6_c02038{letter-spacing:0.014400px;}
.ls9_c02038{letter-spacing:0.021600px;}
.ls2_c02038{letter-spacing:0.028800px;}
.ls1_c02038{letter-spacing:0.036000px;}
.ls3_c02038{letter-spacing:0.043200px;}
.ls0_c02038{letter-spacing:0.050400px;}
.ls7_c02038{letter-spacing:0.057600px;}
.ls4_c02038{letter-spacing:0.079200px;}
.sc__c02038{text-shadow:none;}
.sc0_c02038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02038{-webkit-text-stroke:0px transparent;}
.sc0_c02038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02038{word-spacing:-0.230400px;}
.ws11_c02038{word-spacing:-0.057600px;}
.ws2_c02038{word-spacing:-0.021600px;}
.ws3_c02038{word-spacing:0.000000px;}
.ws0_c02038{word-spacing:0.021600px;}
.wsb_c02038{word-spacing:1.051200px;}
.wsd_c02038{word-spacing:1.116000px;}
.wsc_c02038{word-spacing:1.130400px;}
.ws9_c02038{word-spacing:3.492000px;}
.wsa_c02038{word-spacing:3.506400px;}
.ws4_c02038{word-spacing:5.004000px;}
.ws5_c02038{word-spacing:5.083200px;}
.wsf_c02038{word-spacing:7.488000px;}
.ws10_c02038{word-spacing:7.545600px;}
.wse_c02038{word-spacing:7.552800px;}
.ws6_c02038{word-spacing:15.984000px;}
.ws7_c02038{word-spacing:16.099200px;}
.ws8_c02038{word-spacing:16.228800px;}
._0_c02038{margin-left:-1.231200px;}
.fc0_c02038{color:rgb(0,0,0);}
.fs0_c02038{font-size:72.000000px;}
.y0_c02038{bottom:0.000000px;}
.y21_c02038{bottom:119.280450px;}
.y20_c02038{bottom:150.330450px;}
.y1f_c02038{bottom:181.380450px;}
.y1e_c02038{bottom:212.340450px;}
.y1d_c02038{bottom:243.390450px;}
.y1c_c02038{bottom:274.440450px;}
.y1b_c02038{bottom:305.490450px;}
.y1a_c02038{bottom:336.540450px;}
.y19_c02038{bottom:367.590450px;}
.y18_c02038{bottom:398.640450px;}
.y17_c02038{bottom:429.690450px;}
.y16_c02038{bottom:460.740450px;}
.y15_c02038{bottom:491.790450px;}
.y14_c02038{bottom:522.840450px;}
.y13_c02038{bottom:553.890450px;}
.y12_c02038{bottom:584.940450px;}
.y11_c02038{bottom:615.990450px;}
.y10_c02038{bottom:647.040450px;}
.yf_c02038{bottom:678.090450px;}
.ye_c02038{bottom:709.140450px;}
.yd_c02038{bottom:740.190450px;}
.yc_c02038{bottom:771.240450px;}
.yb_c02038{bottom:802.290450px;}
.ya_c02038{bottom:833.340450px;}
.y9_c02038{bottom:879.420450px;}
.y8_c02038{bottom:910.470450px;}
.y7_c02038{bottom:941.430450px;}
.y6_c02038{bottom:972.480450px;}
.y5_c02038{bottom:1003.530450px;}
.y4_c02038{bottom:1034.580450px;}
.y3_c02038{bottom:1080.480450px;}
.y2_c02038{bottom:1101.180450px;}
.y1_c02038{bottom:1139.880450px;}
.h2_c02038{height:70.664062px;}
.h1_c02038{height:72.562500px;}
.h0_c02038{height:1263.000000px;}
.w1_c02038{width:892.500000px;}
.w0_c02038{width:892.830000px;}
.x0_c02038{left:0.000000px;}
.x3_c02038{left:127.620000px;}
.x4_c02038{left:148.950000px;}
.x2_c02038{left:253.710000px;}
.x1_c02038{left:415.260000px;}
@media print{
.v0_c02038{vertical-align:0.000000pt;}
.lsc_c02038{letter-spacing:-0.025600pt;}
.ls8_c02038{letter-spacing:-0.019200pt;}
.lsb_c02038{letter-spacing:-0.006400pt;}
.lsa_c02038{letter-spacing:0.000000pt;}
.ls5_c02038{letter-spacing:0.006400pt;}
.ls6_c02038{letter-spacing:0.012800pt;}
.ls9_c02038{letter-spacing:0.019200pt;}
.ls2_c02038{letter-spacing:0.025600pt;}
.ls1_c02038{letter-spacing:0.032000pt;}
.ls3_c02038{letter-spacing:0.038400pt;}
.ls0_c02038{letter-spacing:0.044800pt;}
.ls7_c02038{letter-spacing:0.051200pt;}
.ls4_c02038{letter-spacing:0.070400pt;}
.ws1_c02038{word-spacing:-0.204800pt;}
.ws11_c02038{word-spacing:-0.051200pt;}
.ws2_c02038{word-spacing:-0.019200pt;}
.ws3_c02038{word-spacing:0.000000pt;}
.ws0_c02038{word-spacing:0.019200pt;}
.wsb_c02038{word-spacing:0.934400pt;}
.wsd_c02038{word-spacing:0.992000pt;}
.wsc_c02038{word-spacing:1.004800pt;}
.ws9_c02038{word-spacing:3.104000pt;}
.wsa_c02038{word-spacing:3.116800pt;}
.ws4_c02038{word-spacing:4.448000pt;}
.ws5_c02038{word-spacing:4.518400pt;}
.wsf_c02038{word-spacing:6.656000pt;}
.ws10_c02038{word-spacing:6.707200pt;}
.wse_c02038{word-spacing:6.713600pt;}
.ws6_c02038{word-spacing:14.208000pt;}
.ws7_c02038{word-spacing:14.310400pt;}
.ws8_c02038{word-spacing:14.425600pt;}
._0_c02038{margin-left:-1.094400pt;}
.fs0_c02038{font-size:64.000000pt;}
.y0_c02038{bottom:0.000000pt;}
.y21_c02038{bottom:106.027067pt;}
.y20_c02038{bottom:133.627067pt;}
.y1f_c02038{bottom:161.227067pt;}
.y1e_c02038{bottom:188.747067pt;}
.y1d_c02038{bottom:216.347067pt;}
.y1c_c02038{bottom:243.947067pt;}
.y1b_c02038{bottom:271.547067pt;}
.y1a_c02038{bottom:299.147067pt;}
.y19_c02038{bottom:326.747067pt;}
.y18_c02038{bottom:354.347067pt;}
.y17_c02038{bottom:381.947067pt;}
.y16_c02038{bottom:409.547067pt;}
.y15_c02038{bottom:437.147067pt;}
.y14_c02038{bottom:464.747067pt;}
.y13_c02038{bottom:492.347067pt;}
.y12_c02038{bottom:519.947067pt;}
.y11_c02038{bottom:547.547067pt;}
.y10_c02038{bottom:575.147067pt;}
.yf_c02038{bottom:602.747067pt;}
.ye_c02038{bottom:630.347067pt;}
.yd_c02038{bottom:657.947067pt;}
.yc_c02038{bottom:685.547067pt;}
.yb_c02038{bottom:713.147067pt;}
.ya_c02038{bottom:740.747067pt;}
.y9_c02038{bottom:781.707067pt;}
.y8_c02038{bottom:809.307067pt;}
.y7_c02038{bottom:836.827067pt;}
.y6_c02038{bottom:864.427067pt;}
.y5_c02038{bottom:892.027067pt;}
.y4_c02038{bottom:919.627067pt;}
.y3_c02038{bottom:960.427067pt;}
.y2_c02038{bottom:978.827067pt;}
.y1_c02038{bottom:1013.227067pt;}
.h2_c02038{height:62.812500pt;}
.h1_c02038{height:64.500000pt;}
.h0_c02038{height:1122.666667pt;}
.w1_c02038{width:793.333333pt;}
.w0_c02038{width:793.626667pt;}
.x0_c02038{left:0.000000pt;}
.x3_c02038{left:113.440000pt;}
.x4_c02038{left:132.400000pt;}
.x2_c02038{left:225.520000pt;}
.x1_c02038{left:369.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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c02039{font-family:ff1_c02039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02039;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02039{font-family:ff2_c02039;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;}
.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;}
.ls0_c02039{letter-spacing:0.000000px;}
.sc__c02039{text-shadow:none;}
.sc0_c02039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02039{-webkit-text-stroke:0px transparent;}
.sc0_c02039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02039{word-spacing:0.000000px;}
.fc0_c02039{color:rgb(0,0,0);}
.fs1_c02039{font-size:65.880000px;}
.fs0_c02039{font-size:72.000000px;}
.y0_c02039{bottom:0.000000px;}
.y21_c02039{bottom:124.410450px;}
.y20_c02039{bottom:170.580450px;}
.y1f_c02039{bottom:209.640450px;}
.y1e_c02039{bottom:239.790450px;}
.y1d_c02039{bottom:270.840450px;}
.y1c_c02039{bottom:301.890450px;}
.y1b_c02039{bottom:332.940450px;}
.y1a_c02039{bottom:363.990450px;}
.y19_c02039{bottom:395.040450px;}
.y18_c02039{bottom:426.090450px;}
.y17_c02039{bottom:457.140450px;}
.y16_c02039{bottom:488.190450px;}
.y15_c02039{bottom:519.240450px;}
.y14_c02039{bottom:550.290450px;}
.y13_c02039{bottom:581.340450px;}
.y12_c02039{bottom:612.390450px;}
.y11_c02039{bottom:643.440450px;}
.y10_c02039{bottom:674.490450px;}
.yf_c02039{bottom:705.540450px;}
.ye_c02039{bottom:736.590450px;}
.yd_c02039{bottom:767.640450px;}
.yc_c02039{bottom:798.600450px;}
.yb_c02039{bottom:829.650450px;}
.ya_c02039{bottom:860.700450px;}
.y9_c02039{bottom:891.750450px;}
.y8_c02039{bottom:922.800450px;}
.y7_c02039{bottom:953.850450px;}
.y6_c02039{bottom:984.900450px;}
.y5_c02039{bottom:1015.950450px;}
.y4_c02039{bottom:1047.000450px;}
.y3_c02039{bottom:1078.050450px;}
.y2_c02039{bottom:1109.100450px;}
.y1_c02039{bottom:1140.150450px;}
.h2_c02039{height:43.909277px;}
.h1_c02039{height:70.664062px;}
.h0_c02039{height:1263.000000px;}
.w1_c02039{width:892.500000px;}
.w0_c02039{width:892.830000px;}
.x0_c02039{left:0.000000px;}
.x1_c02039{left:127.620000px;}
@media print{
.v0_c02039{vertical-align:0.000000pt;}
.ls0_c02039{letter-spacing:0.000000pt;}
.ws0_c02039{word-spacing:0.000000pt;}
.fs1_c02039{font-size:58.560000pt;}
.fs0_c02039{font-size:64.000000pt;}
.y0_c02039{bottom:0.000000pt;}
.y21_c02039{bottom:110.587067pt;}
.y20_c02039{bottom:151.627067pt;}
.y1f_c02039{bottom:186.347067pt;}
.y1e_c02039{bottom:213.147067pt;}
.y1d_c02039{bottom:240.747067pt;}
.y1c_c02039{bottom:268.347067pt;}
.y1b_c02039{bottom:295.947067pt;}
.y1a_c02039{bottom:323.547067pt;}
.y19_c02039{bottom:351.147067pt;}
.y18_c02039{bottom:378.747067pt;}
.y17_c02039{bottom:406.347067pt;}
.y16_c02039{bottom:433.947067pt;}
.y15_c02039{bottom:461.547067pt;}
.y14_c02039{bottom:489.147067pt;}
.y13_c02039{bottom:516.747067pt;}
.y12_c02039{bottom:544.347067pt;}
.y11_c02039{bottom:571.947067pt;}
.y10_c02039{bottom:599.547067pt;}
.yf_c02039{bottom:627.147067pt;}
.ye_c02039{bottom:654.747067pt;}
.yd_c02039{bottom:682.347067pt;}
.yc_c02039{bottom:709.867067pt;}
.yb_c02039{bottom:737.467067pt;}
.ya_c02039{bottom:765.067067pt;}
.y9_c02039{bottom:792.667067pt;}
.y8_c02039{bottom:820.267067pt;}
.y7_c02039{bottom:847.867067pt;}
.y6_c02039{bottom:875.467067pt;}
.y5_c02039{bottom:903.067067pt;}
.y4_c02039{bottom:930.667067pt;}
.y3_c02039{bottom:958.267067pt;}
.y2_c02039{bottom:985.867067pt;}
.y1_c02039{bottom:1013.467067pt;}
.h2_c02039{height:39.030469pt;}
.h1_c02039{height:62.812500pt;}
.h0_c02039{height:1122.666667pt;}
.w1_c02039{width:793.333333pt;}
.w0_c02039{width:793.626667pt;}
.x0_c02039{left:0.000000pt;}
.x1_c02039{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_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_e4bf3da90664c781118ffe79.woff2')format("woff");}.ff1_c02040{font-family:ff1_c02040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02040;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff2_c02040{font-family:ff2_c02040;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02040{font-family:ff3_c02040;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_c02040;src:url('chunks/assets/font_6fdcd2839433be1225a95bf5.woff2')format("woff");}.ff4_c02040{font-family:ff4_c02040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02040{vertical-align:-5.400000px;}
.v0_c02040{vertical-align:0.000000px;}
.v1_c02040{vertical-align:55.080000px;}
.ls1c_c02040{letter-spacing:-0.168336px;}
.ls1a_c02040{letter-spacing:-0.090180px;}
.ls15_c02040{letter-spacing:-0.086184px;}
.ls18_c02040{letter-spacing:-0.072144px;}
.ls16_c02040{letter-spacing:-0.043092px;}
.ls19_c02040{letter-spacing:-0.036072px;}
.ls12_c02040{letter-spacing:-0.014400px;}
.ls14_c02040{letter-spacing:-0.009576px;}
.ls13_c02040{letter-spacing:-0.007200px;}
.ls11_c02040{letter-spacing:0.000000px;}
.ls0_c02040{letter-spacing:0.007200px;}
.ls17_c02040{letter-spacing:0.014364px;}
.ls2_c02040{letter-spacing:0.014400px;}
.lsa_c02040{letter-spacing:0.021600px;}
.ls5_c02040{letter-spacing:0.028800px;}
.ls3_c02040{letter-spacing:0.036000px;}
.ls9_c02040{letter-spacing:0.043200px;}
.ls6_c02040{letter-spacing:0.050400px;}
.ls7_c02040{letter-spacing:0.057600px;}
.lsc_c02040{letter-spacing:0.062244px;}
.ls4_c02040{letter-spacing:0.064800px;}
.lse_c02040{letter-spacing:0.067032px;}
.ls1_c02040{letter-spacing:0.079056px;}
.ls8_c02040{letter-spacing:0.093600px;}
.lsd_c02040{letter-spacing:0.114912px;}
.lsb_c02040{letter-spacing:0.129276px;}
.ls10_c02040{letter-spacing:0.171288px;}
.lsf_c02040{letter-spacing:0.177876px;}
.ls1b_c02040{letter-spacing:264.778308px;}
.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;}
}
.ws11_c02040{word-spacing:-0.266400px;}
.ws14_c02040{word-spacing:-0.234468px;}
.ws12_c02040{word-spacing:-0.198396px;}
.ws15_c02040{word-spacing:-0.180360px;}
.ws24_c02040{word-spacing:-0.115200px;}
.ws1_c02040{word-spacing:-0.086400px;}
.ws5_c02040{word-spacing:-0.036000px;}
.ws4_c02040{word-spacing:-0.014400px;}
.ws0_c02040{word-spacing:-0.007200px;}
.ws2_c02040{word-spacing:0.000000px;}
.ws3_c02040{word-spacing:0.014400px;}
.wsa_c02040{word-spacing:0.525600px;}
.wsb_c02040{word-spacing:0.648000px;}
.wsf_c02040{word-spacing:0.964800px;}
.ws10_c02040{word-spacing:1.058400px;}
.ws1c_c02040{word-spacing:2.044800px;}
.ws1d_c02040{word-spacing:2.080800px;}
.ws23_c02040{word-spacing:2.462400px;}
.ws22_c02040{word-spacing:2.534400px;}
.ws1b_c02040{word-spacing:2.793600px;}
.ws1a_c02040{word-spacing:2.858400px;}
.ws7_c02040{word-spacing:5.335200px;}
.ws6_c02040{word-spacing:7.884000px;}
.ws20_c02040{word-spacing:10.713600px;}
.ws21_c02040{word-spacing:10.800000px;}
.wsd_c02040{word-spacing:14.342400px;}
.wse_c02040{word-spacing:14.486400px;}
.wsc_c02040{word-spacing:14.760000px;}
.ws8_c02040{word-spacing:22.111200px;}
.ws9_c02040{word-spacing:22.327200px;}
.ws1f_c02040{word-spacing:22.629600px;}
.ws1e_c02040{word-spacing:22.665600px;}
.ws19_c02040{word-spacing:36.360000px;}
.ws18_c02040{word-spacing:97.120296px;}
.ws13_c02040{word-spacing:130.231584px;}
.ws16_c02040{word-spacing:130.238172px;}
.ws17_c02040{word-spacing:162.993708px;}
._15_c02040{margin-left:-264.918456px;}
._16_c02040{margin-left:-102.324492px;}
._f_c02040{margin-left:-49.981788px;}
._14_c02040{margin-left:-32.768712px;}
._1b_c02040{margin-left:-17.626752px;}
._1_c02040{margin-left:-1.317600px;}
._4_c02040{width:77.546412px;}
._6_c02040{width:96.297912px;}
._5_c02040{width:97.797168px;}
._8_c02040{width:99.957168px;}
._7_c02040{width:118.977912px;}
._3_c02040{width:124.669296px;}
._b_c02040{width:129.160188px;}
._19_c02040{width:155.895696px;}
._12_c02040{width:162.273816px;}
._9_c02040{width:165.944952px;}
._1a_c02040{width:188.647380px;}
._d_c02040{width:189.721224px;}
._0_c02040{width:194.400000px;}
._2_c02040{width:195.713856px;}
._17_c02040{width:199.064952px;}
._e_c02040{width:205.449696px;}
._10_c02040{width:218.796336px;}
._c_c02040{width:221.765256px;}
._13_c02040{width:222.839100px;}
._a_c02040{width:231.482556px;}
._11_c02040{width:264.244680px;}
._18_c02040{width:281.026656px;}
.fc0_c02040{color:rgb(0,0,0);}
.fs2_c02040{font-size:47.880000px;}
.fs3_c02040{font-size:60.120000px;}
.fs1_c02040{font-size:65.880000px;}
.fs0_c02040{font-size:72.000000px;}
.y0_c02040{bottom:0.000000px;}
.y3_c02040{bottom:57.721170px;}
.y2_c02040{bottom:77.880450px;}
.y2a_c02040{bottom:136.560450px;}
.y29_c02040{bottom:167.610450px;}
.y28_c02040{bottom:198.660450px;}
.y27_c02040{bottom:229.710450px;}
.y26_c02040{bottom:260.760450px;}
.y25_c02040{bottom:291.810450px;}
.y24_c02040{bottom:322.860450px;}
.y23_c02040{bottom:353.910450px;}
.y22_c02040{bottom:384.960450px;}
.y21_c02040{bottom:416.010450px;}
.y20_c02040{bottom:446.880450px;}
.y1f_c02040{bottom:474.150126px;}
.y1e_c02040{bottom:506.100450px;}
.y1d_c02040{bottom:523.200600px;}
.y1c_c02040{bottom:542.910450px;}
.y1b_c02040{bottom:562.620450px;}
.y1a_c02040{bottom:582.330450px;}
.y19_c02040{bottom:602.040450px;}
.y18_c02040{bottom:621.750450px;}
.y17_c02040{bottom:641.550450px;}
.y16_c02040{bottom:661.260450px;}
.y15_c02040{bottom:680.970450px;}
.y14_c02040{bottom:700.680450px;}
.y13_c02040{bottom:720.390450px;}
.y12_c02040{bottom:737.760450px;}
.y11_c02040{bottom:751.530450px;}
.y10_c02040{bottom:777.990450px;}
.yf_c02040{bottom:808.950450px;}
.ye_c02040{bottom:840.000450px;}
.yd_c02040{bottom:871.050450px;}
.yc_c02040{bottom:902.100450px;}
.yb_c02040{bottom:933.150450px;}
.ya_c02040{bottom:964.200450px;}
.y9_c02040{bottom:995.250450px;}
.y8_c02040{bottom:1026.300450px;}
.y7_c02040{bottom:1057.170450px;}
.y6_c02040{bottom:1083.810981px;}
.y5_c02040{bottom:1108.920450px;}
.y4_c02040{bottom:1139.970450px;}
.y1_c02040{bottom:1193.160450px;}
.ha_c02040{height:31.912207px;}
.h3_c02040{height:43.909277px;}
.h4_c02040{height:46.991602px;}
.h6_c02040{height:48.254063px;}
.h2_c02040{height:54.331699px;}
.h9_c02040{height:60.994087px;}
.h8_c02040{height:60.994687px;}
.h5_c02040{height:70.664062px;}
.h1_c02040{height:72.562500px;}
.h7_c02040{height:103.334062px;}
.h0_c02040{height:1263.000000px;}
.w1_c02040{width:892.500000px;}
.w0_c02040{width:892.830000px;}
.x0_c02040{left:0.000000px;}
.x1_c02040{left:127.620000px;}
.x5_c02040{left:135.630000px;}
.x4_c02040{left:148.500000px;}
.x6_c02040{left:232.020000px;}
.x7_c02040{left:289.620000px;}
.x8_c02040{left:363.690000px;}
.x3_c02040{left:406.260000px;}
.x9_c02040{left:416.160000px;}
.x2_c02040{left:442.350000px;}
.xa_c02040{left:480.060000px;}
.xb_c02040{left:543.780000px;}
.xc_c02040{left:607.590000px;}
.xd_c02040{left:672.030000px;}
.xe_c02040{left:732.870000px;}
@media print{
.v2_c02040{vertical-align:-4.800000pt;}
.v0_c02040{vertical-align:0.000000pt;}
.v1_c02040{vertical-align:48.960000pt;}
.ls1c_c02040{letter-spacing:-0.149632pt;}
.ls1a_c02040{letter-spacing:-0.080160pt;}
.ls15_c02040{letter-spacing:-0.076608pt;}
.ls18_c02040{letter-spacing:-0.064128pt;}
.ls16_c02040{letter-spacing:-0.038304pt;}
.ls19_c02040{letter-spacing:-0.032064pt;}
.ls12_c02040{letter-spacing:-0.012800pt;}
.ls14_c02040{letter-spacing:-0.008512pt;}
.ls13_c02040{letter-spacing:-0.006400pt;}
.ls11_c02040{letter-spacing:0.000000pt;}
.ls0_c02040{letter-spacing:0.006400pt;}
.ls17_c02040{letter-spacing:0.012768pt;}
.ls2_c02040{letter-spacing:0.012800pt;}
.lsa_c02040{letter-spacing:0.019200pt;}
.ls5_c02040{letter-spacing:0.025600pt;}
.ls3_c02040{letter-spacing:0.032000pt;}
.ls9_c02040{letter-spacing:0.038400pt;}
.ls6_c02040{letter-spacing:0.044800pt;}
.ls7_c02040{letter-spacing:0.051200pt;}
.lsc_c02040{letter-spacing:0.055328pt;}
.ls4_c02040{letter-spacing:0.057600pt;}
.lse_c02040{letter-spacing:0.059584pt;}
.ls1_c02040{letter-spacing:0.070272pt;}
.ls8_c02040{letter-spacing:0.083200pt;}
.lsd_c02040{letter-spacing:0.102144pt;}
.lsb_c02040{letter-spacing:0.114912pt;}
.ls10_c02040{letter-spacing:0.152256pt;}
.lsf_c02040{letter-spacing:0.158112pt;}
.ls1b_c02040{letter-spacing:235.358496pt;}
.ws11_c02040{word-spacing:-0.236800pt;}
.ws14_c02040{word-spacing:-0.208416pt;}
.ws12_c02040{word-spacing:-0.176352pt;}
.ws15_c02040{word-spacing:-0.160320pt;}
.ws24_c02040{word-spacing:-0.102400pt;}
.ws1_c02040{word-spacing:-0.076800pt;}
.ws5_c02040{word-spacing:-0.032000pt;}
.ws4_c02040{word-spacing:-0.012800pt;}
.ws0_c02040{word-spacing:-0.006400pt;}
.ws2_c02040{word-spacing:0.000000pt;}
.ws3_c02040{word-spacing:0.012800pt;}
.wsa_c02040{word-spacing:0.467200pt;}
.wsb_c02040{word-spacing:0.576000pt;}
.wsf_c02040{word-spacing:0.857600pt;}
.ws10_c02040{word-spacing:0.940800pt;}
.ws1c_c02040{word-spacing:1.817600pt;}
.ws1d_c02040{word-spacing:1.849600pt;}
.ws23_c02040{word-spacing:2.188800pt;}
.ws22_c02040{word-spacing:2.252800pt;}
.ws1b_c02040{word-spacing:2.483200pt;}
.ws1a_c02040{word-spacing:2.540800pt;}
.ws7_c02040{word-spacing:4.742400pt;}
.ws6_c02040{word-spacing:7.008000pt;}
.ws20_c02040{word-spacing:9.523200pt;}
.ws21_c02040{word-spacing:9.600000pt;}
.wsd_c02040{word-spacing:12.748800pt;}
.wse_c02040{word-spacing:12.876800pt;}
.wsc_c02040{word-spacing:13.120000pt;}
.ws8_c02040{word-spacing:19.654400pt;}
.ws9_c02040{word-spacing:19.846400pt;}
.ws1f_c02040{word-spacing:20.115200pt;}
.ws1e_c02040{word-spacing:20.147200pt;}
.ws19_c02040{word-spacing:32.320000pt;}
.ws18_c02040{word-spacing:86.329152pt;}
.ws13_c02040{word-spacing:115.761408pt;}
.ws16_c02040{word-spacing:115.767264pt;}
.ws17_c02040{word-spacing:144.883296pt;}
._15_c02040{margin-left:-235.483072pt;}
._16_c02040{margin-left:-90.955104pt;}
._f_c02040{margin-left:-44.428256pt;}
._14_c02040{margin-left:-29.127744pt;}
._1b_c02040{margin-left:-15.668224pt;}
._1_c02040{margin-left:-1.171200pt;}
._4_c02040{width:68.930144pt;}
._6_c02040{width:85.598144pt;}
._5_c02040{width:86.930816pt;}
._8_c02040{width:88.850816pt;}
._7_c02040{width:105.758144pt;}
._3_c02040{width:110.817152pt;}
._b_c02040{width:114.809056pt;}
._19_c02040{width:138.573952pt;}
._12_c02040{width:144.243392pt;}
._9_c02040{width:147.506624pt;}
._1a_c02040{width:167.686560pt;}
._d_c02040{width:168.641088pt;}
._0_c02040{width:172.800000pt;}
._2_c02040{width:173.967872pt;}
._17_c02040{width:176.946624pt;}
._e_c02040{width:182.621952pt;}
._10_c02040{width:194.485632pt;}
._c_c02040{width:197.124672pt;}
._13_c02040{width:198.079200pt;}
._a_c02040{width:205.762272pt;}
._11_c02040{width:234.884160pt;}
._18_c02040{width:249.801472pt;}
.fs2_c02040{font-size:42.560000pt;}
.fs3_c02040{font-size:53.440000pt;}
.fs1_c02040{font-size:58.560000pt;}
.fs0_c02040{font-size:64.000000pt;}
.y0_c02040{bottom:0.000000pt;}
.y3_c02040{bottom:51.307707pt;}
.y2_c02040{bottom:69.227067pt;}
.y2a_c02040{bottom:121.387067pt;}
.y29_c02040{bottom:148.987067pt;}
.y28_c02040{bottom:176.587067pt;}
.y27_c02040{bottom:204.187067pt;}
.y26_c02040{bottom:231.787067pt;}
.y25_c02040{bottom:259.387067pt;}
.y24_c02040{bottom:286.987067pt;}
.y23_c02040{bottom:314.587067pt;}
.y22_c02040{bottom:342.187067pt;}
.y21_c02040{bottom:369.787067pt;}
.y20_c02040{bottom:397.227067pt;}
.y1f_c02040{bottom:421.466779pt;}
.y1e_c02040{bottom:449.867067pt;}
.y1d_c02040{bottom:465.067200pt;}
.y1c_c02040{bottom:482.587067pt;}
.y1b_c02040{bottom:500.107067pt;}
.y1a_c02040{bottom:517.627067pt;}
.y19_c02040{bottom:535.147067pt;}
.y18_c02040{bottom:552.667067pt;}
.y17_c02040{bottom:570.267067pt;}
.y16_c02040{bottom:587.787067pt;}
.y15_c02040{bottom:605.307067pt;}
.y14_c02040{bottom:622.827067pt;}
.y13_c02040{bottom:640.347067pt;}
.y12_c02040{bottom:655.787067pt;}
.y11_c02040{bottom:668.027067pt;}
.y10_c02040{bottom:691.547067pt;}
.yf_c02040{bottom:719.067067pt;}
.ye_c02040{bottom:746.667067pt;}
.yd_c02040{bottom:774.267067pt;}
.yc_c02040{bottom:801.867067pt;}
.yb_c02040{bottom:829.467067pt;}
.ya_c02040{bottom:857.067067pt;}
.y9_c02040{bottom:884.667067pt;}
.y8_c02040{bottom:912.267067pt;}
.y7_c02040{bottom:939.707067pt;}
.y6_c02040{bottom:963.387539pt;}
.y5_c02040{bottom:985.707067pt;}
.y4_c02040{bottom:1013.307067pt;}
.y1_c02040{bottom:1060.587067pt;}
.ha_c02040{height:28.366406pt;}
.h3_c02040{height:39.030469pt;}
.h4_c02040{height:41.770312pt;}
.h6_c02040{height:42.892500pt;}
.h2_c02040{height:48.294844pt;}
.h9_c02040{height:54.216967pt;}
.h8_c02040{height:54.217500pt;}
.h5_c02040{height:62.812500pt;}
.h1_c02040{height:64.500000pt;}
.h7_c02040{height:91.852500pt;}
.h0_c02040{height:1122.666667pt;}
.w1_c02040{width:793.333333pt;}
.w0_c02040{width:793.626667pt;}
.x0_c02040{left:0.000000pt;}
.x1_c02040{left:113.440000pt;}
.x5_c02040{left:120.560000pt;}
.x4_c02040{left:132.000000pt;}
.x6_c02040{left:206.240000pt;}
.x7_c02040{left:257.440000pt;}
.x8_c02040{left:323.280000pt;}
.x3_c02040{left:361.120000pt;}
.x9_c02040{left:369.920000pt;}
.x2_c02040{left:393.200000pt;}
.xa_c02040{left:426.720000pt;}
.xb_c02040{left:483.360000pt;}
.xc_c02040{left:540.080000pt;}
.xd_c02040{left:597.360000pt;}
.xe_c02040{left:651.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_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_f7accf76aa77426188bebb6c.woff2')format("woff");}.ff1_c02041{font-family:ff1_c02041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02041;src:url('chunks/assets/font_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02041{font-family:ff2_c02041;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02041{font-family:ff3_c02041;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_c02041;src:url('chunks/assets/font_0707bab31854588974b7a939.woff2')format("woff");}.ff4_c02041{font-family:ff4_c02041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02041{vertical-align:-74.880000px;}
.v3_c02041{vertical-align:-5.400000px;}
.v0_c02041{vertical-align:0.000000px;}
.v2_c02041{vertical-align:69.120000px;}
.ls17_c02041{letter-spacing:-0.312624px;}
.ls15_c02041{letter-spacing:-0.168336px;}
.ls1d_c02041{letter-spacing:-0.060120px;}
.ls23_c02041{letter-spacing:-0.048096px;}
.ls1f_c02041{letter-spacing:-0.042084px;}
.ls14_c02041{letter-spacing:-0.024048px;}
.ls21_c02041{letter-spacing:-0.018036px;}
.ls1a_c02041{letter-spacing:-0.014400px;}
.ls16_c02041{letter-spacing:-0.007200px;}
.ls1c_c02041{letter-spacing:-0.006012px;}
.ls13_c02041{letter-spacing:0.000000px;}
.lsb_c02041{letter-spacing:0.006012px;}
.ls0_c02041{letter-spacing:0.007200px;}
.lsc_c02041{letter-spacing:0.012024px;}
.ls12_c02041{letter-spacing:0.014400px;}
.lsd_c02041{letter-spacing:0.021600px;}
.ls8_c02041{letter-spacing:0.028800px;}
.ls11_c02041{letter-spacing:0.036000px;}
.lse_c02041{letter-spacing:0.043200px;}
.ls24_c02041{letter-spacing:0.060120px;}
.ls9_c02041{letter-spacing:0.078156px;}
.ls1_c02041{letter-spacing:0.079056px;}
.ls20_c02041{letter-spacing:0.084168px;}
.lsa_c02041{letter-spacing:0.090180px;}
.ls5_c02041{letter-spacing:0.096192px;}
.ls2_c02041{letter-spacing:0.108216px;}
.ls19_c02041{letter-spacing:0.120240px;}
.ls10_c02041{letter-spacing:0.129600px;}
.ls1b_c02041{letter-spacing:0.138276px;}
.ls18_c02041{letter-spacing:0.144288px;}
.lsf_c02041{letter-spacing:0.144936px;}
.ls3_c02041{letter-spacing:0.158112px;}
.ls7_c02041{letter-spacing:0.164700px;}
.ls6_c02041{letter-spacing:0.168336px;}
.ls1e_c02041{letter-spacing:0.174348px;}
.ls4_c02041{letter-spacing:0.177876px;}
.ls22_c02041{letter-spacing:113.939460px;}
.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;}
}
.ws9_c02041{word-spacing:-0.438876px;}
.ws12_c02041{word-spacing:-0.408816px;}
.ws5_c02041{word-spacing:-0.378756px;}
.ws8_c02041{word-spacing:-0.366732px;}
.ws1d_c02041{word-spacing:-0.354708px;}
.wse_c02041{word-spacing:-0.348696px;}
.ws21_c02041{word-spacing:-0.330660px;}
.ws15_c02041{word-spacing:-0.282564px;}
.ws4_c02041{word-spacing:-0.246492px;}
.ws20_c02041{word-spacing:-0.222444px;}
.ws2b_c02041{word-spacing:-0.129600px;}
.ws1f_c02041{word-spacing:-0.102204px;}
.ws2_c02041{word-spacing:-0.086400px;}
.wsd_c02041{word-spacing:-0.054108px;}
.ws1c_c02041{word-spacing:-0.043200px;}
.wsf_c02041{word-spacing:-0.030060px;}
.ws18_c02041{word-spacing:-0.021600px;}
.ws1_c02041{word-spacing:-0.007200px;}
.ws3_c02041{word-spacing:0.000000px;}
.ws7_c02041{word-spacing:0.007200px;}
.ws2c_c02041{word-spacing:0.014400px;}
.ws14_c02041{word-spacing:0.084168px;}
.ws13_c02041{word-spacing:0.096192px;}
.ws1e_c02041{word-spacing:0.108216px;}
.ws19_c02041{word-spacing:0.132264px;}
.wsc_c02041{word-spacing:0.402804px;}
.ws26_c02041{word-spacing:0.482400px;}
.ws25_c02041{word-spacing:0.662400px;}
.ws27_c02041{word-spacing:0.712800px;}
.ws23_c02041{word-spacing:4.428000px;}
.ws22_c02041{word-spacing:4.579200px;}
.ws24_c02041{word-spacing:4.680000px;}
.ws28_c02041{word-spacing:8.136000px;}
.ws29_c02041{word-spacing:8.208000px;}
.ws2a_c02041{word-spacing:8.244000px;}
.ws2f_c02041{word-spacing:9.698400px;}
.ws2e_c02041{word-spacing:9.748800px;}
.ws31_c02041{word-spacing:9.864000px;}
.ws30_c02041{word-spacing:10.094400px;}
.ws2d_c02041{word-spacing:16.171200px;}
.ws0_c02041{word-spacing:96.611328px;}
.wsb_c02041{word-spacing:184.602348px;}
.ws17_c02041{word-spacing:233.564364px;}
.ws1b_c02041{word-spacing:233.926704px;}
.ws16_c02041{word-spacing:299.793528px;}
.ws1a_c02041{word-spacing:300.149280px;}
.wsa_c02041{word-spacing:315.181800px;}
.ws11_c02041{word-spacing:404.206740px;}
.ws10_c02041{word-spacing:470.429316px;}
.ws6_c02041{word-spacing:740.340000px;}
._4_c02041{margin-left:-622.080000px;}
._c_c02041{margin-left:-196.921800px;}
._27_c02041{margin-left:-113.761584px;}
._a_c02041{margin-left:-42.481800px;}
._11_c02041{margin-left:-1.076148px;}
._10_c02041{width:1.166328px;}
._1d_c02041{width:64.713960px;}
._1_c02041{width:73.080000px;}
._23_c02041{width:80.314308px;}
._b_c02041{width:84.958200px;}
._6_c02041{width:89.644140px;}
._9_c02041{width:96.098256px;}
._7_c02041{width:105.833808px;}
._1b_c02041{width:107.052552px;}
._8_c02041{width:108.353808px;}
._f_c02041{width:113.234544px;}
._1a_c02041{width:138.836628px;}
._14_c02041{width:146.504520px;}
._20_c02041{width:156.076308px;}
._1f_c02041{width:179.641584px;}
._1c_c02041{width:185.615640px;}
._0_c02041{width:194.400000px;}
._19_c02041{width:205.091280px;}
._d_c02041{width:207.027900px;}
._1e_c02041{width:221.409504px;}
._13_c02041{width:281.423916px;}
._21_c02041{width:283.876920px;}
._e_c02041{width:286.037784px;}
._12_c02041{width:299.783916px;}
._3_c02041{width:314.367048px;}
._16_c02041{width:327.990168px;}
._15_c02041{width:443.523924px;}
._2_c02041{width:544.896864px;}
._5_c02041{width:625.879440px;}
._18_c02041{width:633.436200px;}
._17_c02041{width:699.125148px;}
._24_c02041{width:790.270596px;}
._28_c02041{width:886.992264px;}
._22_c02041{width:953.219844px;}
._29_c02041{width:1111.443660px;}
._25_c02041{width:1126.533780px;}
._26_c02041{width:1153.804824px;}
._2a_c02041{width:1301.266656px;}
.fc0_c02041{color:rgb(0,0,0);}
.fs4_c02041{font-size:47.880000px;}
.fs3_c02041{font-size:54.000000px;}
.fs2_c02041{font-size:60.120000px;}
.fs1_c02041{font-size:65.880000px;}
.fs0_c02041{font-size:72.000000px;}
.y0_c02041{bottom:0.000000px;}
.y3_c02041{bottom:57.721170px;}
.y2_c02041{bottom:77.880450px;}
.y31_c02041{bottom:132.060450px;}
.y30_c02041{bottom:163.110450px;}
.y2f_c02041{bottom:194.160450px;}
.y2e_c02041{bottom:220.620600px;}
.y2d_c02041{bottom:245.910450px;}
.y2c_c02041{bottom:276.960450px;}
.y2b_c02041{bottom:308.010450px;}
.y2a_c02041{bottom:339.060450px;}
.y29_c02041{bottom:370.110450px;}
.y28_c02041{bottom:392.430600px;}
.y27_c02041{bottom:412.140450px;}
.y26_c02041{bottom:431.850450px;}
.y25_c02041{bottom:451.560450px;}
.y24_c02041{bottom:471.270600px;}
.y23_c02041{bottom:491.070450px;}
.y22_c02041{bottom:510.780600px;}
.y21_c02041{bottom:530.490450px;}
.y20_c02041{bottom:549.120450px;}
.y1f_c02041{bottom:570.270450px;}
.y1e_c02041{bottom:590.070450px;}
.y1d_c02041{bottom:609.330450px;}
.y1c_c02041{bottom:626.610450px;}
.y1b_c02041{bottom:645.240450px;}
.y1a_c02041{bottom:666.750450px;}
.y19_c02041{bottom:705.810450px;}
.y18_c02041{bottom:725.430450px;}
.y17_c02041{bottom:745.230450px;}
.y16_c02041{bottom:764.490450px;}
.y15_c02041{bottom:781.770450px;}
.y14_c02041{bottom:799.050450px;}
.y13_c02041{bottom:817.680600px;}
.y12_c02041{bottom:838.830450px;}
.y11_c02041{bottom:858.540600px;}
.y10_c02041{bottom:877.890450px;}
.yf_c02041{bottom:895.170450px;}
.ye_c02041{bottom:913.800450px;}
.yd_c02041{bottom:935.310450px;}
.yc_c02041{bottom:972.840450px;}
.yb_c02041{bottom:988.050450px;}
.ya_c02041{bottom:1007.130450px;}
.y9_c02041{bottom:1023.690450px;}
.y8_c02041{bottom:1042.320450px;}
.y7_c02041{bottom:1063.470450px;}
.y6_c02041{bottom:1082.550450px;}
.y5_c02041{bottom:1117.830450px;}
.y4_c02041{bottom:1139.250450px;}
.y1_c02041{bottom:1193.160450px;}
.h3_c02041{height:43.909277px;}
.h7_c02041{height:46.991602px;}
.h2_c02041{height:54.331699px;}
.h4_c02041{height:54.421875px;}
.h6_c02041{height:60.589687px;}
.hb_c02041{height:60.994087px;}
.ha_c02041{height:60.994687px;}
.hc_c02041{height:60.995288px;}
.h9_c02041{height:64.657617px;}
.h5_c02041{height:66.394687px;}
.hd_c02041{height:70.664062px;}
.h1_c02041{height:72.562500px;}
.h8_c02041{height:129.709688px;}
.h0_c02041{height:1263.000000px;}
.w1_c02041{width:892.500000px;}
.w0_c02041{width:892.830000px;}
.x0_c02041{left:0.000000px;}
.x1_c02041{left:127.620000px;}
.x22_c02041{left:148.950000px;}
.x4_c02041{left:225.990000px;}
.x1b_c02041{left:230.670000px;}
.x10_c02041{left:239.940000px;}
.x11_c02041{left:253.890000px;}
.xa_c02041{left:255.510000px;}
.x9_c02041{left:260.730000px;}
.xf_c02041{left:270.720000px;}
.x21_c02041{left:272.430000px;}
.x8_c02041{left:279.090000px;}
.x20_c02041{left:288.990000px;}
.x19_c02041{left:293.760000px;}
.x18_c02041{left:302.040000px;}
.x7_c02041{left:309.420000px;}
.xe_c02041{left:310.950000px;}
.x1c_c02041{left:325.980000px;}
.xd_c02041{left:331.560000px;}
.x12_c02041{left:348.300000px;}
.x13_c02041{left:360.180000px;}
.x6_c02041{left:366.480000px;}
.x1a_c02041{left:373.230000px;}
.x3_c02041{left:376.740000px;}
.xb_c02041{left:393.750000px;}
.x5_c02041{left:398.340000px;}
.x1d_c02041{left:419.130000px;}
.x15_c02041{left:439.650000px;}
.x2_c02041{left:442.350000px;}
.x1e_c02041{left:481.320000px;}
.x16_c02041{left:493.290000px;}
.x14_c02041{left:520.470000px;}
.xc_c02041{left:525.150000px;}
.x1f_c02041{left:536.760000px;}
.x17_c02041{left:631.350000px;}
@media print{
.v1_c02041{vertical-align:-66.560000pt;}
.v3_c02041{vertical-align:-4.800000pt;}
.v0_c02041{vertical-align:0.000000pt;}
.v2_c02041{vertical-align:61.440000pt;}
.ls17_c02041{letter-spacing:-0.277888pt;}
.ls15_c02041{letter-spacing:-0.149632pt;}
.ls1d_c02041{letter-spacing:-0.053440pt;}
.ls23_c02041{letter-spacing:-0.042752pt;}
.ls1f_c02041{letter-spacing:-0.037408pt;}
.ls14_c02041{letter-spacing:-0.021376pt;}
.ls21_c02041{letter-spacing:-0.016032pt;}
.ls1a_c02041{letter-spacing:-0.012800pt;}
.ls16_c02041{letter-spacing:-0.006400pt;}
.ls1c_c02041{letter-spacing:-0.005344pt;}
.ls13_c02041{letter-spacing:0.000000pt;}
.lsb_c02041{letter-spacing:0.005344pt;}
.ls0_c02041{letter-spacing:0.006400pt;}
.lsc_c02041{letter-spacing:0.010688pt;}
.ls12_c02041{letter-spacing:0.012800pt;}
.lsd_c02041{letter-spacing:0.019200pt;}
.ls8_c02041{letter-spacing:0.025600pt;}
.ls11_c02041{letter-spacing:0.032000pt;}
.lse_c02041{letter-spacing:0.038400pt;}
.ls24_c02041{letter-spacing:0.053440pt;}
.ls9_c02041{letter-spacing:0.069472pt;}
.ls1_c02041{letter-spacing:0.070272pt;}
.ls20_c02041{letter-spacing:0.074816pt;}
.lsa_c02041{letter-spacing:0.080160pt;}
.ls5_c02041{letter-spacing:0.085504pt;}
.ls2_c02041{letter-spacing:0.096192pt;}
.ls19_c02041{letter-spacing:0.106880pt;}
.ls10_c02041{letter-spacing:0.115200pt;}
.ls1b_c02041{letter-spacing:0.122912pt;}
.ls18_c02041{letter-spacing:0.128256pt;}
.lsf_c02041{letter-spacing:0.128832pt;}
.ls3_c02041{letter-spacing:0.140544pt;}
.ls7_c02041{letter-spacing:0.146400pt;}
.ls6_c02041{letter-spacing:0.149632pt;}
.ls1e_c02041{letter-spacing:0.154976pt;}
.ls4_c02041{letter-spacing:0.158112pt;}
.ls22_c02041{letter-spacing:101.279520pt;}
.ws9_c02041{word-spacing:-0.390112pt;}
.ws12_c02041{word-spacing:-0.363392pt;}
.ws5_c02041{word-spacing:-0.336672pt;}
.ws8_c02041{word-spacing:-0.325984pt;}
.ws1d_c02041{word-spacing:-0.315296pt;}
.wse_c02041{word-spacing:-0.309952pt;}
.ws21_c02041{word-spacing:-0.293920pt;}
.ws15_c02041{word-spacing:-0.251168pt;}
.ws4_c02041{word-spacing:-0.219104pt;}
.ws20_c02041{word-spacing:-0.197728pt;}
.ws2b_c02041{word-spacing:-0.115200pt;}
.ws1f_c02041{word-spacing:-0.090848pt;}
.ws2_c02041{word-spacing:-0.076800pt;}
.wsd_c02041{word-spacing:-0.048096pt;}
.ws1c_c02041{word-spacing:-0.038400pt;}
.wsf_c02041{word-spacing:-0.026720pt;}
.ws18_c02041{word-spacing:-0.019200pt;}
.ws1_c02041{word-spacing:-0.006400pt;}
.ws3_c02041{word-spacing:0.000000pt;}
.ws7_c02041{word-spacing:0.006400pt;}
.ws2c_c02041{word-spacing:0.012800pt;}
.ws14_c02041{word-spacing:0.074816pt;}
.ws13_c02041{word-spacing:0.085504pt;}
.ws1e_c02041{word-spacing:0.096192pt;}
.ws19_c02041{word-spacing:0.117568pt;}
.wsc_c02041{word-spacing:0.358048pt;}
.ws26_c02041{word-spacing:0.428800pt;}
.ws25_c02041{word-spacing:0.588800pt;}
.ws27_c02041{word-spacing:0.633600pt;}
.ws23_c02041{word-spacing:3.936000pt;}
.ws22_c02041{word-spacing:4.070400pt;}
.ws24_c02041{word-spacing:4.160000pt;}
.ws28_c02041{word-spacing:7.232000pt;}
.ws29_c02041{word-spacing:7.296000pt;}
.ws2a_c02041{word-spacing:7.328000pt;}
.ws2f_c02041{word-spacing:8.620800pt;}
.ws2e_c02041{word-spacing:8.665600pt;}
.ws31_c02041{word-spacing:8.768000pt;}
.ws30_c02041{word-spacing:8.972800pt;}
.ws2d_c02041{word-spacing:14.374400pt;}
.ws0_c02041{word-spacing:85.876736pt;}
.wsb_c02041{word-spacing:164.090976pt;}
.ws17_c02041{word-spacing:207.612768pt;}
.ws1b_c02041{word-spacing:207.934848pt;}
.ws16_c02041{word-spacing:266.483136pt;}
.ws1a_c02041{word-spacing:266.799360pt;}
.wsa_c02041{word-spacing:280.161600pt;}
.ws11_c02041{word-spacing:359.294880pt;}
.ws10_c02041{word-spacing:418.159392pt;}
.ws6_c02041{word-spacing:658.080000pt;}
._4_c02041{margin-left:-552.960000pt;}
._c_c02041{margin-left:-175.041600pt;}
._27_c02041{margin-left:-101.121408pt;}
._a_c02041{margin-left:-37.761600pt;}
._11_c02041{margin-left:-0.956576pt;}
._10_c02041{width:1.036736pt;}
._1d_c02041{width:57.523520pt;}
._1_c02041{width:64.960000pt;}
._23_c02041{width:71.390496pt;}
._b_c02041{width:75.518400pt;}
._6_c02041{width:79.683680pt;}
._9_c02041{width:85.420672pt;}
._7_c02041{width:94.074496pt;}
._1b_c02041{width:95.157824pt;}
._8_c02041{width:96.314496pt;}
._f_c02041{width:100.652928pt;}
._1a_c02041{width:123.410336pt;}
._14_c02041{width:130.226240pt;}
._20_c02041{width:138.734496pt;}
._1f_c02041{width:159.681408pt;}
._1c_c02041{width:164.991680pt;}
._0_c02041{width:172.800000pt;}
._19_c02041{width:182.303360pt;}
._d_c02041{width:184.024800pt;}
._1e_c02041{width:196.808448pt;}
._13_c02041{width:250.154592pt;}
._21_c02041{width:252.335040pt;}
._e_c02041{width:254.255808pt;}
._12_c02041{width:266.474592pt;}
._3_c02041{width:279.437376pt;}
._16_c02041{width:291.546816pt;}
._15_c02041{width:394.243488pt;}
._2_c02041{width:484.352768pt;}
._5_c02041{width:556.337280pt;}
._18_c02041{width:563.054400pt;}
._17_c02041{width:621.444576pt;}
._24_c02041{width:702.462752pt;}
._28_c02041{width:788.437568pt;}
._22_c02041{width:847.306528pt;}
._29_c02041{width:987.949920pt;}
._25_c02041{width:1001.363360pt;}
._26_c02041{width:1025.604288pt;}
._2a_c02041{width:1156.681472pt;}
.fs4_c02041{font-size:42.560000pt;}
.fs3_c02041{font-size:48.000000pt;}
.fs2_c02041{font-size:53.440000pt;}
.fs1_c02041{font-size:58.560000pt;}
.fs0_c02041{font-size:64.000000pt;}
.y0_c02041{bottom:0.000000pt;}
.y3_c02041{bottom:51.307707pt;}
.y2_c02041{bottom:69.227067pt;}
.y31_c02041{bottom:117.387067pt;}
.y30_c02041{bottom:144.987067pt;}
.y2f_c02041{bottom:172.587067pt;}
.y2e_c02041{bottom:196.107200pt;}
.y2d_c02041{bottom:218.587067pt;}
.y2c_c02041{bottom:246.187067pt;}
.y2b_c02041{bottom:273.787067pt;}
.y2a_c02041{bottom:301.387067pt;}
.y29_c02041{bottom:328.987067pt;}
.y28_c02041{bottom:348.827200pt;}
.y27_c02041{bottom:366.347067pt;}
.y26_c02041{bottom:383.867067pt;}
.y25_c02041{bottom:401.387067pt;}
.y24_c02041{bottom:418.907200pt;}
.y23_c02041{bottom:436.507067pt;}
.y22_c02041{bottom:454.027200pt;}
.y21_c02041{bottom:471.547067pt;}
.y20_c02041{bottom:488.107067pt;}
.y1f_c02041{bottom:506.907067pt;}
.y1e_c02041{bottom:524.507067pt;}
.y1d_c02041{bottom:541.627067pt;}
.y1c_c02041{bottom:556.987067pt;}
.y1b_c02041{bottom:573.547067pt;}
.y1a_c02041{bottom:592.667067pt;}
.y19_c02041{bottom:627.387067pt;}
.y18_c02041{bottom:644.827067pt;}
.y17_c02041{bottom:662.427067pt;}
.y16_c02041{bottom:679.547067pt;}
.y15_c02041{bottom:694.907067pt;}
.y14_c02041{bottom:710.267067pt;}
.y13_c02041{bottom:726.827200pt;}
.y12_c02041{bottom:745.627067pt;}
.y11_c02041{bottom:763.147200pt;}
.y10_c02041{bottom:780.347067pt;}
.yf_c02041{bottom:795.707067pt;}
.ye_c02041{bottom:812.267067pt;}
.yd_c02041{bottom:831.387067pt;}
.yc_c02041{bottom:864.747067pt;}
.yb_c02041{bottom:878.267067pt;}
.ya_c02041{bottom:895.227067pt;}
.y9_c02041{bottom:909.947067pt;}
.y8_c02041{bottom:926.507067pt;}
.y7_c02041{bottom:945.307067pt;}
.y6_c02041{bottom:962.267067pt;}
.y5_c02041{bottom:993.627067pt;}
.y4_c02041{bottom:1012.667067pt;}
.y1_c02041{bottom:1060.587067pt;}
.h3_c02041{height:39.030469pt;}
.h7_c02041{height:41.770312pt;}
.h2_c02041{height:48.294844pt;}
.h4_c02041{height:48.375000pt;}
.h6_c02041{height:53.857500pt;}
.hb_c02041{height:54.216967pt;}
.ha_c02041{height:54.217500pt;}
.hc_c02041{height:54.218033pt;}
.h9_c02041{height:57.473437pt;}
.h5_c02041{height:59.017500pt;}
.hd_c02041{height:62.812500pt;}
.h1_c02041{height:64.500000pt;}
.h8_c02041{height:115.297500pt;}
.h0_c02041{height:1122.666667pt;}
.w1_c02041{width:793.333333pt;}
.w0_c02041{width:793.626667pt;}
.x0_c02041{left:0.000000pt;}
.x1_c02041{left:113.440000pt;}
.x22_c02041{left:132.400000pt;}
.x4_c02041{left:200.880000pt;}
.x1b_c02041{left:205.040000pt;}
.x10_c02041{left:213.280000pt;}
.x11_c02041{left:225.680000pt;}
.xa_c02041{left:227.120000pt;}
.x9_c02041{left:231.760000pt;}
.xf_c02041{left:240.640000pt;}
.x21_c02041{left:242.160000pt;}
.x8_c02041{left:248.080000pt;}
.x20_c02041{left:256.880000pt;}
.x19_c02041{left:261.120000pt;}
.x18_c02041{left:268.480000pt;}
.x7_c02041{left:275.040000pt;}
.xe_c02041{left:276.400000pt;}
.x1c_c02041{left:289.760000pt;}
.xd_c02041{left:294.720000pt;}
.x12_c02041{left:309.600000pt;}
.x13_c02041{left:320.160000pt;}
.x6_c02041{left:325.760000pt;}
.x1a_c02041{left:331.760000pt;}
.x3_c02041{left:334.880000pt;}
.xb_c02041{left:350.000000pt;}
.x5_c02041{left:354.080000pt;}
.x1d_c02041{left:372.560000pt;}
.x15_c02041{left:390.800000pt;}
.x2_c02041{left:393.200000pt;}
.x1e_c02041{left:427.840000pt;}
.x16_c02041{left:438.480000pt;}
.x14_c02041{left:462.640000pt;}
.xc_c02041{left:466.800000pt;}
.x1f_c02041{left:477.120000pt;}
.x17_c02041{left:561.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_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_0cf3f8afb61df079c40f8e9e.woff2')format("woff");}.ff1_c02042{font-family:ff1_c02042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02042;src:url('chunks/assets/font_b6e6eeecf38d8e91f5d0b66d.woff2')format("woff");}.ff2_c02042{font-family:ff2_c02042;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02042{font-family:ff3_c02042;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_c02042;src:url('chunks/assets/font_14027fe1df4b3c281a9963a9.woff2')format("woff");}.ff4_c02042{font-family:ff4_c02042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6_c02042{vertical-align:-8.640000px;}
.v7_c02042{vertical-align:-6.839400px;}
.v0_c02042{vertical-align:0.000000px;}
.v3_c02042{vertical-align:2.520000px;}
.v4_c02042{vertical-align:5.400000px;}
.v2_c02042{vertical-align:35.280000px;}
.v5_c02042{vertical-align:59.400000px;}
.v1_c02042{vertical-align:69.120000px;}
.ls1b_c02042{letter-spacing:-0.174348px;}
.ls1c_c02042{letter-spacing:-0.168336px;}
.ls25_c02042{letter-spacing:-0.138996px;}
.ls22_c02042{letter-spacing:-0.130572px;}
.ls23_c02042{letter-spacing:-0.113724px;}
.ls27_c02042{letter-spacing:-0.109512px;}
.ls26_c02042{letter-spacing:-0.101088px;}
.ls1d_c02042{letter-spacing:-0.096192px;}
.ls24_c02042{letter-spacing:-0.092664px;}
.ls1f_c02042{letter-spacing:-0.090180px;}
.ls28_c02042{letter-spacing:-0.080028px;}
.ls2b_c02042{letter-spacing:-0.028800px;}
.ls20_c02042{letter-spacing:-0.018036px;}
.ls21_c02042{letter-spacing:-0.016200px;}
.ls29_c02042{letter-spacing:-0.014400px;}
.ls2a_c02042{letter-spacing:-0.007200px;}
.ls1a_c02042{letter-spacing:0.000000px;}
.ls0_c02042{letter-spacing:0.007200px;}
.ls11_c02042{letter-spacing:0.014400px;}
.ls16_c02042{letter-spacing:0.016848px;}
.ls5_c02042{letter-spacing:0.021600px;}
.ls15_c02042{letter-spacing:0.027000px;}
.ls2_c02042{letter-spacing:0.028800px;}
.ls4_c02042{letter-spacing:0.036000px;}
.ls12_c02042{letter-spacing:0.037800px;}
.ls7_c02042{letter-spacing:0.043200px;}
.ls17_c02042{letter-spacing:0.048600px;}
.ls6_c02042{letter-spacing:0.064800px;}
.ls19_c02042{letter-spacing:0.072000px;}
.ls8_c02042{letter-spacing:0.072144px;}
.ls1_c02042{letter-spacing:0.079056px;}
.ls3_c02042{letter-spacing:0.079200px;}
.lsa_c02042{letter-spacing:0.090180px;}
.lsc_c02042{letter-spacing:0.096192px;}
.ls9_c02042{letter-spacing:0.102204px;}
.lsf_c02042{letter-spacing:0.120240px;}
.ls14_c02042{letter-spacing:0.131760px;}
.ls1e_c02042{letter-spacing:0.138276px;}
.ls13_c02042{letter-spacing:0.144936px;}
.lse_c02042{letter-spacing:0.150300px;}
.ls10_c02042{letter-spacing:0.164700px;}
.lsb_c02042{letter-spacing:0.177876px;}
.lsd_c02042{letter-spacing:0.180360px;}
.ls18_c02042{letter-spacing:509.760000px;}
.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;}
}
.ws12_c02042{word-spacing:-0.408816px;}
.wsd_c02042{word-spacing:-0.372744px;}
.wsf_c02042{word-spacing:-0.366732px;}
.wse_c02042{word-spacing:-0.360720px;}
.wsa_c02042{word-spacing:-0.244800px;}
.ws10_c02042{word-spacing:-0.174348px;}
.ws1c_c02042{word-spacing:-0.105300px;}
.wsc_c02042{word-spacing:-0.096192px;}
.ws11_c02042{word-spacing:-0.093600px;}
.ws1_c02042{word-spacing:-0.086400px;}
.wsb_c02042{word-spacing:-0.028800px;}
.ws9_c02042{word-spacing:-0.021600px;}
.ws15_c02042{word-spacing:-0.014400px;}
.ws1e_c02042{word-spacing:-0.008424px;}
.ws0_c02042{word-spacing:-0.007200px;}
.ws2_c02042{word-spacing:0.000000px;}
.ws19_c02042{word-spacing:0.004212px;}
.ws23_c02042{word-spacing:0.007200px;}
.ws1b_c02042{word-spacing:0.012636px;}
.ws1d_c02042{word-spacing:0.021060px;}
.ws18_c02042{word-spacing:0.025272px;}
.ws17_c02042{word-spacing:0.042120px;}
.ws1a_c02042{word-spacing:0.050544px;}
.ws16_c02042{word-spacing:0.140400px;}
.ws25_c02042{word-spacing:2.484000px;}
.ws26_c02042{word-spacing:2.498400px;}
.ws24_c02042{word-spacing:2.548800px;}
.ws3_c02042{word-spacing:3.571200px;}
.ws4_c02042{word-spacing:3.621600px;}
.ws28_c02042{word-spacing:6.048000px;}
.ws27_c02042{word-spacing:6.105600px;}
.ws8_c02042{word-spacing:6.400800px;}
.ws7_c02042{word-spacing:6.408000px;}
.ws21_c02042{word-spacing:12.492000px;}
.ws22_c02042{word-spacing:12.513600px;}
.ws5_c02042{word-spacing:13.543200px;}
.ws6_c02042{word-spacing:13.593600px;}
.ws2a_c02042{word-spacing:14.313600px;}
.ws29_c02042{word-spacing:14.371200px;}
.ws2b_c02042{word-spacing:14.414400px;}
.ws20_c02042{word-spacing:17.863200px;}
.ws1f_c02042{word-spacing:17.928000px;}
.ws2c_c02042{word-spacing:25.545600px;}
.ws14_c02042{word-spacing:233.926704px;}
.ws13_c02042{word-spacing:300.149280px;}
._1_c02042{margin-left:-1.353600px;}
._2_c02042{width:1.052100px;}
._d_c02042{width:104.409144px;}
._6_c02042{width:155.885256px;}
._0_c02042{width:194.400000px;}
._10_c02042{width:205.319844px;}
._11_c02042{width:207.752580px;}
._b_c02042{width:231.597540px;}
._13_c02042{width:240.890220px;}
._a_c02042{width:252.644400px;}
._4_c02042{width:262.233540px;}
._c_c02042{width:274.348080px;}
._12_c02042{width:278.899776px;}
._14_c02042{width:299.226348px;}
._9_c02042{width:300.930048px;}
._18_c02042{width:323.814420px;}
._3_c02042{width:324.950112px;}
._f_c02042{width:335.190852px;}
._15_c02042{width:339.534684px;}
._17_c02042{width:396.528336px;}
._e_c02042{width:400.688748px;}
._16_c02042{width:456.627600px;}
._8_c02042{width:513.772272px;}
._19_c02042{width:584.341200px;}
._7_c02042{width:633.060684px;}
._5_c02042{width:699.125148px;}
.fc0_c02042{color:rgb(0,0,0);}
.fs4_c02042{font-size:42.120000px;}
.fs5_c02042{font-size:47.880000px;}
.fs3_c02042{font-size:54.000000px;}
.fs2_c02042{font-size:60.120000px;}
.fs1_c02042{font-size:65.880000px;}
.fs0_c02042{font-size:72.000000px;}
.y0_c02042{bottom:0.000000px;}
.y3_c02042{bottom:57.721170px;}
.y2_c02042{bottom:77.880450px;}
.y3a_c02042{bottom:112.260450px;}
.y39_c02042{bottom:143.310450px;}
.y38_c02042{bottom:174.360450px;}
.y37_c02042{bottom:205.410450px;}
.y36_c02042{bottom:231.780600px;}
.y35_c02042{bottom:257.070450px;}
.y34_c02042{bottom:288.120450px;}
.y33_c02042{bottom:319.170450px;}
.y32_c02042{bottom:350.220450px;}
.y31_c02042{bottom:381.090450px;}
.y30_c02042{bottom:427.170450px;}
.y2f_c02042{bottom:450.300450px;}
.y2d_c02042{bottom:469.110600px;}
.y2e_c02042{bottom:471.900450px;}
.y2c_c02042{bottom:484.680600px;}
.y2b_c02042{bottom:500.880450px;}
.y2a_c02042{bottom:516.450600px;}
.y28_c02042{bottom:532.740450px;}
.y29_c02042{bottom:535.530450px;}
.y27_c02042{bottom:548.220450px;}
.y26_c02042{bottom:563.880450px;}
.y25_c02042{bottom:575.940450px;}
.y20_c02042{bottom:585.210450px;}
.y24_c02042{bottom:588.000450px;}
.y23_c02042{bottom:600.060450px;}
.y1f_c02042{bottom:600.690450px;}
.y22_c02042{bottom:612.120450px;}
.y21_c02042{bottom:624.180450px;}
.y1e_c02042{bottom:637.050450px;}
.y1b_c02042{bottom:640.290450px;}
.y1d_c02042{bottom:649.110450px;}
.y1a_c02042{bottom:655.860450px;}
.y1c_c02042{bottom:661.170450px;}
.y19_c02042{bottom:674.670450px;}
.y18_c02042{bottom:690.240450px;}
.y17_c02042{bottom:707.430450px;}
.y16_c02042{bottom:728.580450px;}
.y15_c02042{bottom:748.290450px;}
.y14_c02042{bottom:767.640450px;}
.y13_c02042{bottom:784.920450px;}
.y12_c02042{bottom:803.550450px;}
.y11_c02042{bottom:824.700450px;}
.y10_c02042{bottom:844.410450px;}
.yf_c02042{bottom:863.760450px;}
.ye_c02042{bottom:882.480450px;}
.yd_c02042{bottom:903.630450px;}
.yc_c02042{bottom:923.340450px;}
.yb_c02042{bottom:942.690450px;}
.ya_c02042{bottom:959.970450px;}
.y9_c02042{bottom:978.600450px;}
.y8_c02042{bottom:1000.020450px;}
.y7_c02042{bottom:1047.000450px;}
.y6_c02042{bottom:1078.050450px;}
.y5_c02042{bottom:1109.100450px;}
.y4_c02042{bottom:1140.150450px;}
.y1_c02042{bottom:1193.160450px;}
.ha_c02042{height:42.449062px;}
.h3_c02042{height:43.909277px;}
.h11_c02042{height:46.991602px;}
.h2_c02042{height:54.331699px;}
.h8_c02042{height:54.421875px;}
.he_c02042{height:57.754687px;}
.h5_c02042{height:60.589687px;}
.h10_c02042{height:65.723100px;}
.h7_c02042{height:66.394687px;}
.h4_c02042{height:70.664062px;}
.hc_c02042{height:71.434688px;}
.hb_c02042{height:71.794688px;}
.h1_c02042{height:72.562500px;}
.h9_c02042{height:77.729063px;}
.hf_c02042{height:77.729663px;}
.hd_c02042{height:101.849062px;}
.h6_c02042{height:129.709688px;}
.h0_c02042{height:1263.000000px;}
.w1_c02042{width:892.500000px;}
.w0_c02042{width:892.830000px;}
.x0_c02042{left:0.000000px;}
.x1_c02042{left:127.620000px;}
.x21_c02042{left:148.950000px;}
.x4_c02042{left:225.990000px;}
.x13_c02042{left:227.160000px;}
.x18_c02042{left:234.090000px;}
.xc_c02042{left:242.460000px;}
.x20_c02042{left:244.980000px;}
.x6_c02042{left:246.420000px;}
.x14_c02042{left:251.010000px;}
.xb_c02042{left:254.700000px;}
.x11_c02042{left:261.810000px;}
.x10_c02042{left:278.370000px;}
.x9_c02042{left:286.020000px;}
.x5_c02042{left:294.300000px;}
.x19_c02042{left:319.230000px;}
.xd_c02042{left:322.380000px;}
.x1c_c02042{left:324.810000px;}
.x16_c02042{left:333.450000px;}
.x17_c02042{left:357.300000px;}
.x1d_c02042{left:362.070000px;}
.x1f_c02042{left:368.460000px;}
.x1e_c02042{left:372.240000px;}
.x15_c02042{left:375.840000px;}
.x8_c02042{left:378.810000px;}
.x12_c02042{left:380.700000px;}
.x1b_c02042{left:385.380000px;}
.xa_c02042{left:387.090000px;}
.x3_c02042{left:394.470000px;}
.x1a_c02042{left:405.090000px;}
.xe_c02042{left:418.050000px;}
.x2_c02042{left:442.350000px;}
.x7_c02042{left:474.390000px;}
.xf_c02042{left:509.400000px;}
@media print{
.v6_c02042{vertical-align:-7.680000pt;}
.v7_c02042{vertical-align:-6.079467pt;}
.v0_c02042{vertical-align:0.000000pt;}
.v3_c02042{vertical-align:2.240000pt;}
.v4_c02042{vertical-align:4.800000pt;}
.v2_c02042{vertical-align:31.360000pt;}
.v5_c02042{vertical-align:52.800000pt;}
.v1_c02042{vertical-align:61.440000pt;}
.ls1b_c02042{letter-spacing:-0.154976pt;}
.ls1c_c02042{letter-spacing:-0.149632pt;}
.ls25_c02042{letter-spacing:-0.123552pt;}
.ls22_c02042{letter-spacing:-0.116064pt;}
.ls23_c02042{letter-spacing:-0.101088pt;}
.ls27_c02042{letter-spacing:-0.097344pt;}
.ls26_c02042{letter-spacing:-0.089856pt;}
.ls1d_c02042{letter-spacing:-0.085504pt;}
.ls24_c02042{letter-spacing:-0.082368pt;}
.ls1f_c02042{letter-spacing:-0.080160pt;}
.ls28_c02042{letter-spacing:-0.071136pt;}
.ls2b_c02042{letter-spacing:-0.025600pt;}
.ls20_c02042{letter-spacing:-0.016032pt;}
.ls21_c02042{letter-spacing:-0.014400pt;}
.ls29_c02042{letter-spacing:-0.012800pt;}
.ls2a_c02042{letter-spacing:-0.006400pt;}
.ls1a_c02042{letter-spacing:0.000000pt;}
.ls0_c02042{letter-spacing:0.006400pt;}
.ls11_c02042{letter-spacing:0.012800pt;}
.ls16_c02042{letter-spacing:0.014976pt;}
.ls5_c02042{letter-spacing:0.019200pt;}
.ls15_c02042{letter-spacing:0.024000pt;}
.ls2_c02042{letter-spacing:0.025600pt;}
.ls4_c02042{letter-spacing:0.032000pt;}
.ls12_c02042{letter-spacing:0.033600pt;}
.ls7_c02042{letter-spacing:0.038400pt;}
.ls17_c02042{letter-spacing:0.043200pt;}
.ls6_c02042{letter-spacing:0.057600pt;}
.ls19_c02042{letter-spacing:0.064000pt;}
.ls8_c02042{letter-spacing:0.064128pt;}
.ls1_c02042{letter-spacing:0.070272pt;}
.ls3_c02042{letter-spacing:0.070400pt;}
.lsa_c02042{letter-spacing:0.080160pt;}
.lsc_c02042{letter-spacing:0.085504pt;}
.ls9_c02042{letter-spacing:0.090848pt;}
.lsf_c02042{letter-spacing:0.106880pt;}
.ls14_c02042{letter-spacing:0.117120pt;}
.ls1e_c02042{letter-spacing:0.122912pt;}
.ls13_c02042{letter-spacing:0.128832pt;}
.lse_c02042{letter-spacing:0.133600pt;}
.ls10_c02042{letter-spacing:0.146400pt;}
.lsb_c02042{letter-spacing:0.158112pt;}
.lsd_c02042{letter-spacing:0.160320pt;}
.ls18_c02042{letter-spacing:453.120000pt;}
.ws12_c02042{word-spacing:-0.363392pt;}
.wsd_c02042{word-spacing:-0.331328pt;}
.wsf_c02042{word-spacing:-0.325984pt;}
.wse_c02042{word-spacing:-0.320640pt;}
.wsa_c02042{word-spacing:-0.217600pt;}
.ws10_c02042{word-spacing:-0.154976pt;}
.ws1c_c02042{word-spacing:-0.093600pt;}
.wsc_c02042{word-spacing:-0.085504pt;}
.ws11_c02042{word-spacing:-0.083200pt;}
.ws1_c02042{word-spacing:-0.076800pt;}
.wsb_c02042{word-spacing:-0.025600pt;}
.ws9_c02042{word-spacing:-0.019200pt;}
.ws15_c02042{word-spacing:-0.012800pt;}
.ws1e_c02042{word-spacing:-0.007488pt;}
.ws0_c02042{word-spacing:-0.006400pt;}
.ws2_c02042{word-spacing:0.000000pt;}
.ws19_c02042{word-spacing:0.003744pt;}
.ws23_c02042{word-spacing:0.006400pt;}
.ws1b_c02042{word-spacing:0.011232pt;}
.ws1d_c02042{word-spacing:0.018720pt;}
.ws18_c02042{word-spacing:0.022464pt;}
.ws17_c02042{word-spacing:0.037440pt;}
.ws1a_c02042{word-spacing:0.044928pt;}
.ws16_c02042{word-spacing:0.124800pt;}
.ws25_c02042{word-spacing:2.208000pt;}
.ws26_c02042{word-spacing:2.220800pt;}
.ws24_c02042{word-spacing:2.265600pt;}
.ws3_c02042{word-spacing:3.174400pt;}
.ws4_c02042{word-spacing:3.219200pt;}
.ws28_c02042{word-spacing:5.376000pt;}
.ws27_c02042{word-spacing:5.427200pt;}
.ws8_c02042{word-spacing:5.689600pt;}
.ws7_c02042{word-spacing:5.696000pt;}
.ws21_c02042{word-spacing:11.104000pt;}
.ws22_c02042{word-spacing:11.123200pt;}
.ws5_c02042{word-spacing:12.038400pt;}
.ws6_c02042{word-spacing:12.083200pt;}
.ws2a_c02042{word-spacing:12.723200pt;}
.ws29_c02042{word-spacing:12.774400pt;}
.ws2b_c02042{word-spacing:12.812800pt;}
.ws20_c02042{word-spacing:15.878400pt;}
.ws1f_c02042{word-spacing:15.936000pt;}
.ws2c_c02042{word-spacing:22.707200pt;}
.ws14_c02042{word-spacing:207.934848pt;}
.ws13_c02042{word-spacing:266.799360pt;}
._1_c02042{margin-left:-1.203200pt;}
._2_c02042{width:0.935200pt;}
._d_c02042{width:92.808128pt;}
._6_c02042{width:138.564672pt;}
._0_c02042{width:172.800000pt;}
._10_c02042{width:182.506528pt;}
._11_c02042{width:184.668960pt;}
._b_c02042{width:205.864480pt;}
._13_c02042{width:214.124640pt;}
._a_c02042{width:224.572800pt;}
._4_c02042{width:233.096480pt;}
._c_c02042{width:243.864960pt;}
._12_c02042{width:247.910912pt;}
._14_c02042{width:265.978976pt;}
._9_c02042{width:267.493376pt;}
._18_c02042{width:287.835040pt;}
._3_c02042{width:288.844544pt;}
._f_c02042{width:297.947424pt;}
._15_c02042{width:301.808608pt;}
._17_c02042{width:352.469632pt;}
._e_c02042{width:356.167776pt;}
._16_c02042{width:405.891200pt;}
._8_c02042{width:456.686464pt;}
._19_c02042{width:519.414400pt;}
._7_c02042{width:562.720608pt;}
._5_c02042{width:621.444576pt;}
.fs4_c02042{font-size:37.440000pt;}
.fs5_c02042{font-size:42.560000pt;}
.fs3_c02042{font-size:48.000000pt;}
.fs2_c02042{font-size:53.440000pt;}
.fs1_c02042{font-size:58.560000pt;}
.fs0_c02042{font-size:64.000000pt;}
.y0_c02042{bottom:0.000000pt;}
.y3_c02042{bottom:51.307707pt;}
.y2_c02042{bottom:69.227067pt;}
.y3a_c02042{bottom:99.787067pt;}
.y39_c02042{bottom:127.387067pt;}
.y38_c02042{bottom:154.987067pt;}
.y37_c02042{bottom:182.587067pt;}
.y36_c02042{bottom:206.027200pt;}
.y35_c02042{bottom:228.507067pt;}
.y34_c02042{bottom:256.107067pt;}
.y33_c02042{bottom:283.707067pt;}
.y32_c02042{bottom:311.307067pt;}
.y31_c02042{bottom:338.747067pt;}
.y30_c02042{bottom:379.707067pt;}
.y2f_c02042{bottom:400.267067pt;}
.y2d_c02042{bottom:416.987200pt;}
.y2e_c02042{bottom:419.467067pt;}
.y2c_c02042{bottom:430.827200pt;}
.y2b_c02042{bottom:445.227067pt;}
.y2a_c02042{bottom:459.067200pt;}
.y28_c02042{bottom:473.547067pt;}
.y29_c02042{bottom:476.027067pt;}
.y27_c02042{bottom:487.307067pt;}
.y26_c02042{bottom:501.227067pt;}
.y25_c02042{bottom:511.947067pt;}
.y20_c02042{bottom:520.187067pt;}
.y24_c02042{bottom:522.667067pt;}
.y23_c02042{bottom:533.387067pt;}
.y1f_c02042{bottom:533.947067pt;}
.y22_c02042{bottom:544.107067pt;}
.y21_c02042{bottom:554.827067pt;}
.y1e_c02042{bottom:566.267067pt;}
.y1b_c02042{bottom:569.147067pt;}
.y1d_c02042{bottom:576.987067pt;}
.y1a_c02042{bottom:582.987067pt;}
.y1c_c02042{bottom:587.707067pt;}
.y19_c02042{bottom:599.707067pt;}
.y18_c02042{bottom:613.547067pt;}
.y17_c02042{bottom:628.827067pt;}
.y16_c02042{bottom:647.627067pt;}
.y15_c02042{bottom:665.147067pt;}
.y14_c02042{bottom:682.347067pt;}
.y13_c02042{bottom:697.707067pt;}
.y12_c02042{bottom:714.267067pt;}
.y11_c02042{bottom:733.067067pt;}
.y10_c02042{bottom:750.587067pt;}
.yf_c02042{bottom:767.787067pt;}
.ye_c02042{bottom:784.427067pt;}
.yd_c02042{bottom:803.227067pt;}
.yc_c02042{bottom:820.747067pt;}
.yb_c02042{bottom:837.947067pt;}
.ya_c02042{bottom:853.307067pt;}
.y9_c02042{bottom:869.867067pt;}
.y8_c02042{bottom:888.907067pt;}
.y7_c02042{bottom:930.667067pt;}
.y6_c02042{bottom:958.267067pt;}
.y5_c02042{bottom:985.867067pt;}
.y4_c02042{bottom:1013.467067pt;}
.y1_c02042{bottom:1060.587067pt;}
.ha_c02042{height:37.732500pt;}
.h3_c02042{height:39.030469pt;}
.h11_c02042{height:41.770312pt;}
.h2_c02042{height:48.294844pt;}
.h8_c02042{height:48.375000pt;}
.he_c02042{height:51.337500pt;}
.h5_c02042{height:53.857500pt;}
.h10_c02042{height:58.420533pt;}
.h7_c02042{height:59.017500pt;}
.h4_c02042{height:62.812500pt;}
.hc_c02042{height:63.497500pt;}
.hb_c02042{height:63.817500pt;}
.h1_c02042{height:64.500000pt;}
.h9_c02042{height:69.092500pt;}
.hf_c02042{height:69.093033pt;}
.hd_c02042{height:90.532500pt;}
.h6_c02042{height:115.297500pt;}
.h0_c02042{height:1122.666667pt;}
.w1_c02042{width:793.333333pt;}
.w0_c02042{width:793.626667pt;}
.x0_c02042{left:0.000000pt;}
.x1_c02042{left:113.440000pt;}
.x21_c02042{left:132.400000pt;}
.x4_c02042{left:200.880000pt;}
.x13_c02042{left:201.920000pt;}
.x18_c02042{left:208.080000pt;}
.xc_c02042{left:215.520000pt;}
.x20_c02042{left:217.760000pt;}
.x6_c02042{left:219.040000pt;}
.x14_c02042{left:223.120000pt;}
.xb_c02042{left:226.400000pt;}
.x11_c02042{left:232.720000pt;}
.x10_c02042{left:247.440000pt;}
.x9_c02042{left:254.240000pt;}
.x5_c02042{left:261.600000pt;}
.x19_c02042{left:283.760000pt;}
.xd_c02042{left:286.560000pt;}
.x1c_c02042{left:288.720000pt;}
.x16_c02042{left:296.400000pt;}
.x17_c02042{left:317.600000pt;}
.x1d_c02042{left:321.840000pt;}
.x1f_c02042{left:327.520000pt;}
.x1e_c02042{left:330.880000pt;}
.x15_c02042{left:334.080000pt;}
.x8_c02042{left:336.720000pt;}
.x12_c02042{left:338.400000pt;}
.x1b_c02042{left:342.560000pt;}
.xa_c02042{left:344.080000pt;}
.x3_c02042{left:350.640000pt;}
.x1a_c02042{left:360.080000pt;}
.xe_c02042{left:371.600000pt;}
.x2_c02042{left:393.200000pt;}
.x7_c02042{left:421.680000pt;}
.xf_c02042{left:452.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_c02043 {
    display:none;
  }
  .loading-indicator_c02043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c02043 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c02043 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c02043" -> "#page-container .classname_c02043")
 */
.pf_c02043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c02043 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c02043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c02043 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c02043 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c02043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c02043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c02043 {overflow:visible;}
  }
}
.c_c02043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c02043 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c02043:after { /* webkit #35443 */
  content: '';
}
.t_c02043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c02043 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c02043 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c02043 { /* info for Javascript */
  display:none;
}
.l_c02043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c02043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c02043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c02043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c02043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c02043;src:url('chunks/assets/font_5534d55061e122bc9c375e42.woff2')format("woff");}.ff1_c02043{font-family:ff1_c02043;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02043;src:url('chunks/assets/font_4f581026b92c246964411cb4.woff2')format("woff");}.ff2_c02043{font-family:ff2_c02043;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02043;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02043{font-family:ff3_c02043;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_c02043;src:url('chunks/assets/font_9abb87dfc39d25c96f435c69.woff2')format("woff");}.ff4_c02043{font-family:ff4_c02043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02043{vertical-align:0.000000px;}
.v2_c02043{vertical-align:32.760000px;}
.v1_c02043{vertical-align:55.080000px;}
.ls25_c02043{letter-spacing:-0.222444px;}
.ls2f_c02043{letter-spacing:-0.168336px;}
.ls21_c02043{letter-spacing:-0.144288px;}
.ls28_c02043{letter-spacing:-0.114228px;}
.ls31_c02043{letter-spacing:-0.108216px;}
.ls2a_c02043{letter-spacing:-0.102204px;}
.ls2d_c02043{letter-spacing:-0.096192px;}
.ls29_c02043{letter-spacing:-0.090180px;}
.ls30_c02043{letter-spacing:-0.084168px;}
.ls1f_c02043{letter-spacing:-0.078156px;}
.ls22_c02043{letter-spacing:-0.072144px;}
.ls23_c02043{letter-spacing:-0.066132px;}
.ls26_c02043{letter-spacing:-0.054108px;}
.ls2b_c02043{letter-spacing:-0.042084px;}
.ls1c_c02043{letter-spacing:-0.038304px;}
.ls2c_c02043{letter-spacing:-0.036072px;}
.ls2e_c02043{letter-spacing:-0.024048px;}
.ls32_c02043{letter-spacing:-0.018036px;}
.ls1d_c02043{letter-spacing:-0.014400px;}
.ls1b_c02043{letter-spacing:-0.014364px;}
.ls24_c02043{letter-spacing:-0.012024px;}
.ls18_c02043{letter-spacing:-0.007200px;}
.ls27_c02043{letter-spacing:-0.006012px;}
.ls17_c02043{letter-spacing:0.000000px;}
.ls13_c02043{letter-spacing:0.006012px;}
.ls0_c02043{letter-spacing:0.007200px;}
.lsd_c02043{letter-spacing:0.012024px;}
.ls6_c02043{letter-spacing:0.014364px;}
.ls2_c02043{letter-spacing:0.014400px;}
.ls5_c02043{letter-spacing:0.021600px;}
.lsa_c02043{letter-spacing:0.030060px;}
.ls15_c02043{letter-spacing:0.036072px;}
.ls1e_c02043{letter-spacing:0.046116px;}
.ls9_c02043{letter-spacing:0.047880px;}
.ls10_c02043{letter-spacing:0.048096px;}
.ls19_c02043{letter-spacing:0.052668px;}
.ls12_c02043{letter-spacing:0.054108px;}
.lse_c02043{letter-spacing:0.060120px;}
.ls4_c02043{letter-spacing:0.064800px;}
.lsc_c02043{letter-spacing:0.066132px;}
.lsf_c02043{letter-spacing:0.078156px;}
.ls1_c02043{letter-spacing:0.079056px;}
.ls3_c02043{letter-spacing:0.079200px;}
.ls7_c02043{letter-spacing:0.081396px;}
.lsb_c02043{letter-spacing:0.084168px;}
.ls14_c02043{letter-spacing:0.090180px;}
.ls16_c02043{letter-spacing:0.096192px;}
.ls8_c02043{letter-spacing:0.100548px;}
.ls1a_c02043{letter-spacing:0.105336px;}
.ls20_c02043{letter-spacing:0.144288px;}
.ls11_c02043{letter-spacing:0.162324px;}
.sc__c02043{text-shadow:none;}
.sc0_c02043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02043{-webkit-text-stroke:0px transparent;}
.sc0_c02043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02043{word-spacing:-15.174288px;}
.ws4_c02043{word-spacing:-14.945832px;}
.ws2_c02043{word-spacing:-14.939820px;}
.ws3_c02043{word-spacing:-14.861664px;}
.ws0_c02043{word-spacing:-12.051396px;}
.ws14_c02043{word-spacing:-0.354708px;}
.ws1a_c02043{word-spacing:-0.348696px;}
.ws16_c02043{word-spacing:-0.336672px;}
.ws19_c02043{word-spacing:-0.330660px;}
.ws17_c02043{word-spacing:-0.282564px;}
.ws18_c02043{word-spacing:-0.258516px;}
.ws33_c02043{word-spacing:-0.234468px;}
.ws23_c02043{word-spacing:-0.228456px;}
.ws15_c02043{word-spacing:-0.204408px;}
.ws26_c02043{word-spacing:-0.198396px;}
.ws24_c02043{word-spacing:-0.192384px;}
.ws11_c02043{word-spacing:-0.191520px;}
.ws34_c02043{word-spacing:-0.180360px;}
.ws22_c02043{word-spacing:-0.168336px;}
.ws10_c02043{word-spacing:-0.105336px;}
.ws6_c02043{word-spacing:-0.086400px;}
.ws5_c02043{word-spacing:-0.007200px;}
.ws7_c02043{word-spacing:0.000000px;}
.ws31_c02043{word-spacing:0.006012px;}
.wsf_c02043{word-spacing:0.007200px;}
.ws32_c02043{word-spacing:0.012024px;}
.ws30_c02043{word-spacing:0.114228px;}
.ws25_c02043{word-spacing:0.192384px;}
.ws2a_c02043{word-spacing:0.486972px;}
.ws1e_c02043{word-spacing:2.975940px;}
.ws1d_c02043{word-spacing:5.182344px;}
.wsd_c02043{word-spacing:6.465600px;}
.wse_c02043{word-spacing:6.530400px;}
.wsc_c02043{word-spacing:8.481600px;}
.wsb_c02043{word-spacing:8.503200px;}
.ws1c_c02043{word-spacing:8.591148px;}
.ws35_c02043{word-spacing:11.512980px;}
.ws28_c02043{word-spacing:12.270492px;}
.ws36_c02043{word-spacing:16.202340px;}
.wsa_c02043{word-spacing:17.438400px;}
.ws9_c02043{word-spacing:17.517600px;}
.ws8_c02043{word-spacing:17.568000px;}
.ws37_c02043{word-spacing:23.759424px;}
.ws2f_c02043{word-spacing:24.925752px;}
.ws2d_c02043{word-spacing:25.208316px;}
.ws38_c02043{word-spacing:29.188260px;}
.ws3d_c02043{word-spacing:33.354576px;}
.ws2e_c02043{word-spacing:35.104068px;}
.ws2c_c02043{word-spacing:40.063968px;}
.ws1f_c02043{word-spacing:58.063896px;}
.ws13_c02043{word-spacing:64.502748px;}
.ws3a_c02043{word-spacing:66.330396px;}
.ws40_c02043{word-spacing:66.715164px;}
.ws41_c02043{word-spacing:73.141992px;}
.ws3f_c02043{word-spacing:80.049780px;}
.ws27_c02043{word-spacing:81.366408px;}
.ws1b_c02043{word-spacing:92.891412px;}
.ws39_c02043{word-spacing:98.392392px;}
.ws20_c02043{word-spacing:106.406388px;}
.ws3e_c02043{word-spacing:109.905372px;}
.ws12_c02043{word-spacing:115.009560px;}
.ws3b_c02043{word-spacing:116.308152px;}
.ws21_c02043{word-spacing:224.566236px;}
.ws2b_c02043{word-spacing:224.830764px;}
.ws29_c02043{word-spacing:231.155388px;}
.ws3c_c02043{word-spacing:381.365208px;}
._1_c02043{margin-left:-1.303200px;}
._4_c02043{width:1.388772px;}
._0_c02043{width:194.400000px;}
._2_c02043{width:376.284600px;}
._3_c02043{width:484.029720px;}
.fc0_c02043{color:rgb(0,0,0);}
.fs2_c02043{font-size:47.880000px;}
.fs3_c02043{font-size:60.120000px;}
.fs1_c02043{font-size:65.880000px;}
.fs0_c02043{font-size:72.000000px;}
.y0_c02043{bottom:0.000000px;}
.y3_c02043{bottom:57.721170px;}
.y2_c02043{bottom:77.880450px;}
.y68_c02043{bottom:114.600450px;}
.y67_c02043{bottom:129.631287px;}
.y66_c02043{bottom:146.911278px;}
.y59_c02043{bottom:163.921089px;}
.y65_c02043{bottom:164.101089px;}
.y58_c02043{bottom:181.201080px;}
.y64_c02043{bottom:181.381080px;}
.y57_c02043{bottom:198.481071px;}
.y63_c02043{bottom:198.661071px;}
.y56_c02043{bottom:215.670882px;}
.y62_c02043{bottom:215.850882px;}
.y55_c02043{bottom:232.950873px;}
.y61_c02043{bottom:233.130873px;}
.y49_c02043{bottom:246.720666px;}
.y54_c02043{bottom:250.230864px;}
.y60_c02043{bottom:250.410864px;}
.y48_c02043{bottom:264.000657px;}
.y53_c02043{bottom:267.420675px;}
.y5f_c02043{bottom:267.600675px;}
.y47_c02043{bottom:281.280648px;}
.y52_c02043{bottom:284.700666px;}
.y5e_c02043{bottom:284.880666px;}
.y46_c02043{bottom:298.470459px;}
.y51_c02043{bottom:301.980657px;}
.y4d_c02043{bottom:301.981467px;}
.y5d_c02043{bottom:302.160657px;}
.y45_c02043{bottom:315.750450px;}
.y50_c02043{bottom:319.170468px;}
.y4c_c02043{bottom:319.171278px;}
.y5c_c02043{bottom:319.350468px;}
.y44_c02043{bottom:333.390540px;}
.y4f_c02043{bottom:336.450459px;}
.y4b_c02043{bottom:336.451269px;}
.y5b_c02043{bottom:336.630459px;}
.y43_c02043{bottom:352.380450px;}
.y4e_c02043{bottom:353.730450px;}
.y4a_c02043{bottom:353.731260px;}
.y5a_c02043{bottom:353.910450px;}
.y42_c02043{bottom:371.010450px;}
.y41_c02043{bottom:384.870450px;}
.y40_c02043{bottom:398.640450px;}
.y3f_c02043{bottom:412.410450px;}
.y3e_c02043{bottom:438.780450px;}
.y3d_c02043{bottom:469.830450px;}
.y3c_c02043{bottom:490.622250px;}
.y3b_c02043{bottom:507.902241px;}
.y3a_c02043{bottom:525.182232px;}
.y39_c02043{bottom:542.372043px;}
.y38_c02043{bottom:559.652034px;}
.y31_c02043{bottom:576.751665px;}
.y37_c02043{bottom:576.932025px;}
.y30_c02043{bottom:593.941476px;}
.y36_c02043{bottom:594.121836px;}
.y2b_c02043{bottom:607.800639px;}
.y2f_c02043{bottom:611.221467px;}
.y35_c02043{bottom:611.401827px;}
.y2a_c02043{bottom:624.990450px;}
.y2e_c02043{bottom:628.501458px;}
.y34_c02043{bottom:628.681818px;}
.y29_c02043{bottom:642.630540px;}
.y2d_c02043{bottom:645.691269px;}
.y33_c02043{bottom:645.871629px;}
.y28_c02043{bottom:661.620450px;}
.y2c_c02043{bottom:662.971260px;}
.y32_c02043{bottom:663.151620px;}
.y27_c02043{bottom:680.340450px;}
.y26_c02043{bottom:694.110450px;}
.y25_c02043{bottom:707.880450px;}
.y24_c02043{bottom:721.740450px;}
.y23_c02043{bottom:748.110450px;}
.y22_c02043{bottom:779.160450px;}
.y1a_c02043{bottom:799.771683px;}
.y19_c02043{bottom:816.961494px;}
.y21_c02043{bottom:817.141854px;}
.y18_c02043{bottom:834.241485px;}
.y20_c02043{bottom:834.421845px;}
.y12_c02043{bottom:848.010468px;}
.y17_c02043{bottom:851.521476px;}
.y1f_c02043{bottom:851.701836px;}
.y11_c02043{bottom:865.290459px;}
.y16_c02043{bottom:868.711287px;}
.y1e_c02043{bottom:868.891647px;}
.y10_c02043{bottom:882.570450px;}
.y15_c02043{bottom:885.991278px;}
.y1d_c02043{bottom:886.171638px;}
.yf_c02043{bottom:900.211125px;}
.y14_c02043{bottom:903.271269px;}
.y1c_c02043{bottom:903.451629px;}
.ye_c02043{bottom:919.110450px;}
.y13_c02043{bottom:920.461080px;}
.y1b_c02043{bottom:920.641440px;}
.yd_c02043{bottom:937.830450px;}
.yc_c02043{bottom:951.600450px;}
.yb_c02043{bottom:965.460450px;}
.ya_c02043{bottom:979.230450px;}
.y9_c02043{bottom:1001.010729px;}
.y8_c02043{bottom:1021.710450px;}
.y7_c02043{bottom:1047.000450px;}
.y6_c02043{bottom:1078.050450px;}
.y5_c02043{bottom:1109.100450px;}
.y4_c02043{bottom:1140.150450px;}
.y1_c02043{bottom:1193.160450px;}
.h3_c02043{height:43.909277px;}
.h5_c02043{height:46.991602px;}
.h6_c02043{height:48.254063px;}
.h2_c02043{height:54.331699px;}
.hb_c02043{height:59.004492px;}
.ha_c02043{height:60.589687px;}
.hf_c02043{height:66.392131px;}
.h9_c02043{height:66.394687px;}
.h4_c02043{height:70.664062px;}
.he_c02043{height:72.558432px;}
.h1_c02043{height:72.562500px;}
.h7_c02043{height:103.334062px;}
.hc_c02043{height:103.694063px;}
.h8_c02043{height:105.322500px;}
.hd_c02043{height:105.682500px;}
.h0_c02043{height:1263.000000px;}
.w1_c02043{width:892.500000px;}
.w0_c02043{width:892.830000px;}
.x0_c02043{left:0.000000px;}
.x1_c02043{left:127.620000px;}
.x3_c02043{left:135.630000px;}
.x5_c02043{left:253.530000px;}
.x4_c02043{left:263.340000px;}
.xa_c02043{left:268.108929px;}
.x8_c02043{left:273.330351px;}
.x9_c02043{left:277.469613px;}
.xd_c02043{left:287.009154px;}
.xb_c02043{left:337.678290px;}
.x6_c02043{left:399.780000px;}
.x2_c02043{left:442.350000px;}
.x7_c02043{left:445.410000px;}
.xc_c02043{left:614.067966px;}
@media print{
.v0_c02043{vertical-align:0.000000pt;}
.v2_c02043{vertical-align:29.120000pt;}
.v1_c02043{vertical-align:48.960000pt;}
.ls25_c02043{letter-spacing:-0.197728pt;}
.ls2f_c02043{letter-spacing:-0.149632pt;}
.ls21_c02043{letter-spacing:-0.128256pt;}
.ls28_c02043{letter-spacing:-0.101536pt;}
.ls31_c02043{letter-spacing:-0.096192pt;}
.ls2a_c02043{letter-spacing:-0.090848pt;}
.ls2d_c02043{letter-spacing:-0.085504pt;}
.ls29_c02043{letter-spacing:-0.080160pt;}
.ls30_c02043{letter-spacing:-0.074816pt;}
.ls1f_c02043{letter-spacing:-0.069472pt;}
.ls22_c02043{letter-spacing:-0.064128pt;}
.ls23_c02043{letter-spacing:-0.058784pt;}
.ls26_c02043{letter-spacing:-0.048096pt;}
.ls2b_c02043{letter-spacing:-0.037408pt;}
.ls1c_c02043{letter-spacing:-0.034048pt;}
.ls2c_c02043{letter-spacing:-0.032064pt;}
.ls2e_c02043{letter-spacing:-0.021376pt;}
.ls32_c02043{letter-spacing:-0.016032pt;}
.ls1d_c02043{letter-spacing:-0.012800pt;}
.ls1b_c02043{letter-spacing:-0.012768pt;}
.ls24_c02043{letter-spacing:-0.010688pt;}
.ls18_c02043{letter-spacing:-0.006400pt;}
.ls27_c02043{letter-spacing:-0.005344pt;}
.ls17_c02043{letter-spacing:0.000000pt;}
.ls13_c02043{letter-spacing:0.005344pt;}
.ls0_c02043{letter-spacing:0.006400pt;}
.lsd_c02043{letter-spacing:0.010688pt;}
.ls6_c02043{letter-spacing:0.012768pt;}
.ls2_c02043{letter-spacing:0.012800pt;}
.ls5_c02043{letter-spacing:0.019200pt;}
.lsa_c02043{letter-spacing:0.026720pt;}
.ls15_c02043{letter-spacing:0.032064pt;}
.ls1e_c02043{letter-spacing:0.040992pt;}
.ls9_c02043{letter-spacing:0.042560pt;}
.ls10_c02043{letter-spacing:0.042752pt;}
.ls19_c02043{letter-spacing:0.046816pt;}
.ls12_c02043{letter-spacing:0.048096pt;}
.lse_c02043{letter-spacing:0.053440pt;}
.ls4_c02043{letter-spacing:0.057600pt;}
.lsc_c02043{letter-spacing:0.058784pt;}
.lsf_c02043{letter-spacing:0.069472pt;}
.ls1_c02043{letter-spacing:0.070272pt;}
.ls3_c02043{letter-spacing:0.070400pt;}
.ls7_c02043{letter-spacing:0.072352pt;}
.lsb_c02043{letter-spacing:0.074816pt;}
.ls14_c02043{letter-spacing:0.080160pt;}
.ls16_c02043{letter-spacing:0.085504pt;}
.ls8_c02043{letter-spacing:0.089376pt;}
.ls1a_c02043{letter-spacing:0.093632pt;}
.ls20_c02043{letter-spacing:0.128256pt;}
.ls11_c02043{letter-spacing:0.144288pt;}
.ws1_c02043{word-spacing:-13.488256pt;}
.ws4_c02043{word-spacing:-13.285184pt;}
.ws2_c02043{word-spacing:-13.279840pt;}
.ws3_c02043{word-spacing:-13.210368pt;}
.ws0_c02043{word-spacing:-10.712352pt;}
.ws14_c02043{word-spacing:-0.315296pt;}
.ws1a_c02043{word-spacing:-0.309952pt;}
.ws16_c02043{word-spacing:-0.299264pt;}
.ws19_c02043{word-spacing:-0.293920pt;}
.ws17_c02043{word-spacing:-0.251168pt;}
.ws18_c02043{word-spacing:-0.229792pt;}
.ws33_c02043{word-spacing:-0.208416pt;}
.ws23_c02043{word-spacing:-0.203072pt;}
.ws15_c02043{word-spacing:-0.181696pt;}
.ws26_c02043{word-spacing:-0.176352pt;}
.ws24_c02043{word-spacing:-0.171008pt;}
.ws11_c02043{word-spacing:-0.170240pt;}
.ws34_c02043{word-spacing:-0.160320pt;}
.ws22_c02043{word-spacing:-0.149632pt;}
.ws10_c02043{word-spacing:-0.093632pt;}
.ws6_c02043{word-spacing:-0.076800pt;}
.ws5_c02043{word-spacing:-0.006400pt;}
.ws7_c02043{word-spacing:0.000000pt;}
.ws31_c02043{word-spacing:0.005344pt;}
.wsf_c02043{word-spacing:0.006400pt;}
.ws32_c02043{word-spacing:0.010688pt;}
.ws30_c02043{word-spacing:0.101536pt;}
.ws25_c02043{word-spacing:0.171008pt;}
.ws2a_c02043{word-spacing:0.432864pt;}
.ws1e_c02043{word-spacing:2.645280pt;}
.ws1d_c02043{word-spacing:4.606528pt;}
.wsd_c02043{word-spacing:5.747200pt;}
.wse_c02043{word-spacing:5.804800pt;}
.wsc_c02043{word-spacing:7.539200pt;}
.wsb_c02043{word-spacing:7.558400pt;}
.ws1c_c02043{word-spacing:7.636576pt;}
.ws35_c02043{word-spacing:10.233760pt;}
.ws28_c02043{word-spacing:10.907104pt;}
.ws36_c02043{word-spacing:14.402080pt;}
.wsa_c02043{word-spacing:15.500800pt;}
.ws9_c02043{word-spacing:15.571200pt;}
.ws8_c02043{word-spacing:15.616000pt;}
.ws37_c02043{word-spacing:21.119488pt;}
.ws2f_c02043{word-spacing:22.156224pt;}
.ws2d_c02043{word-spacing:22.407392pt;}
.ws38_c02043{word-spacing:25.945120pt;}
.ws3d_c02043{word-spacing:29.648512pt;}
.ws2e_c02043{word-spacing:31.203616pt;}
.ws2c_c02043{word-spacing:35.612416pt;}
.ws1f_c02043{word-spacing:51.612352pt;}
.ws13_c02043{word-spacing:57.335776pt;}
.ws3a_c02043{word-spacing:58.960352pt;}
.ws40_c02043{word-spacing:59.302368pt;}
.ws41_c02043{word-spacing:65.015104pt;}
.ws3f_c02043{word-spacing:71.155360pt;}
.ws27_c02043{word-spacing:72.325696pt;}
.ws1b_c02043{word-spacing:82.570144pt;}
.ws39_c02043{word-spacing:87.459904pt;}
.ws20_c02043{word-spacing:94.583456pt;}
.ws3e_c02043{word-spacing:97.693664pt;}
.ws12_c02043{word-spacing:102.230720pt;}
.ws3b_c02043{word-spacing:103.385024pt;}
.ws21_c02043{word-spacing:199.614432pt;}
.ws2b_c02043{word-spacing:199.849568pt;}
.ws29_c02043{word-spacing:205.471456pt;}
.ws3c_c02043{word-spacing:338.991296pt;}
._1_c02043{margin-left:-1.158400pt;}
._4_c02043{width:1.234464pt;}
._0_c02043{width:172.800000pt;}
._2_c02043{width:334.475200pt;}
._3_c02043{width:430.248640pt;}
.fs2_c02043{font-size:42.560000pt;}
.fs3_c02043{font-size:53.440000pt;}
.fs1_c02043{font-size:58.560000pt;}
.fs0_c02043{font-size:64.000000pt;}
.y0_c02043{bottom:0.000000pt;}
.y3_c02043{bottom:51.307707pt;}
.y2_c02043{bottom:69.227067pt;}
.y68_c02043{bottom:101.867067pt;}
.y67_c02043{bottom:115.227811pt;}
.y66_c02043{bottom:130.587803pt;}
.y59_c02043{bottom:145.707635pt;}
.y65_c02043{bottom:145.867635pt;}
.y58_c02043{bottom:161.067627pt;}
.y64_c02043{bottom:161.227627pt;}
.y57_c02043{bottom:176.427619pt;}
.y63_c02043{bottom:176.587619pt;}
.y56_c02043{bottom:191.707451pt;}
.y62_c02043{bottom:191.867451pt;}
.y55_c02043{bottom:207.067443pt;}
.y61_c02043{bottom:207.227443pt;}
.y49_c02043{bottom:219.307259pt;}
.y54_c02043{bottom:222.427435pt;}
.y60_c02043{bottom:222.587435pt;}
.y48_c02043{bottom:234.667251pt;}
.y53_c02043{bottom:237.707267pt;}
.y5f_c02043{bottom:237.867267pt;}
.y47_c02043{bottom:250.027243pt;}
.y52_c02043{bottom:253.067259pt;}
.y5e_c02043{bottom:253.227259pt;}
.y46_c02043{bottom:265.307075pt;}
.y51_c02043{bottom:268.427251pt;}
.y4d_c02043{bottom:268.427971pt;}
.y5d_c02043{bottom:268.587251pt;}
.y45_c02043{bottom:280.667067pt;}
.y50_c02043{bottom:283.707083pt;}
.y4c_c02043{bottom:283.707803pt;}
.y5c_c02043{bottom:283.867083pt;}
.y44_c02043{bottom:296.347147pt;}
.y4f_c02043{bottom:299.067075pt;}
.y4b_c02043{bottom:299.067795pt;}
.y5b_c02043{bottom:299.227075pt;}
.y43_c02043{bottom:313.227067pt;}
.y4e_c02043{bottom:314.427067pt;}
.y4a_c02043{bottom:314.427787pt;}
.y5a_c02043{bottom:314.587067pt;}
.y42_c02043{bottom:329.787067pt;}
.y41_c02043{bottom:342.107067pt;}
.y40_c02043{bottom:354.347067pt;}
.y3f_c02043{bottom:366.587067pt;}
.y3e_c02043{bottom:390.027067pt;}
.y3d_c02043{bottom:417.627067pt;}
.y3c_c02043{bottom:436.108667pt;}
.y3b_c02043{bottom:451.468659pt;}
.y3a_c02043{bottom:466.828651pt;}
.y39_c02043{bottom:482.108483pt;}
.y38_c02043{bottom:497.468475pt;}
.y31_c02043{bottom:512.668147pt;}
.y37_c02043{bottom:512.828467pt;}
.y30_c02043{bottom:527.947979pt;}
.y36_c02043{bottom:528.108299pt;}
.y2b_c02043{bottom:540.267235pt;}
.y2f_c02043{bottom:543.307971pt;}
.y35_c02043{bottom:543.468291pt;}
.y2a_c02043{bottom:555.547067pt;}
.y2e_c02043{bottom:558.667963pt;}
.y34_c02043{bottom:558.828283pt;}
.y29_c02043{bottom:571.227147pt;}
.y2d_c02043{bottom:573.947795pt;}
.y33_c02043{bottom:574.108115pt;}
.y28_c02043{bottom:588.107067pt;}
.y2c_c02043{bottom:589.307787pt;}
.y32_c02043{bottom:589.468107pt;}
.y27_c02043{bottom:604.747067pt;}
.y26_c02043{bottom:616.987067pt;}
.y25_c02043{bottom:629.227067pt;}
.y24_c02043{bottom:641.547067pt;}
.y23_c02043{bottom:664.987067pt;}
.y22_c02043{bottom:692.587067pt;}
.y1a_c02043{bottom:710.908163pt;}
.y19_c02043{bottom:726.187995pt;}
.y21_c02043{bottom:726.348315pt;}
.y18_c02043{bottom:741.547987pt;}
.y20_c02043{bottom:741.708307pt;}
.y12_c02043{bottom:753.787083pt;}
.y17_c02043{bottom:756.907979pt;}
.y1f_c02043{bottom:757.068299pt;}
.y11_c02043{bottom:769.147075pt;}
.y16_c02043{bottom:772.187811pt;}
.y1e_c02043{bottom:772.348131pt;}
.y10_c02043{bottom:784.507067pt;}
.y15_c02043{bottom:787.547803pt;}
.y1d_c02043{bottom:787.708123pt;}
.yf_c02043{bottom:800.187667pt;}
.y14_c02043{bottom:802.907795pt;}
.y1c_c02043{bottom:803.068115pt;}
.ye_c02043{bottom:816.987067pt;}
.y13_c02043{bottom:818.187627pt;}
.y1b_c02043{bottom:818.347947pt;}
.yd_c02043{bottom:833.627067pt;}
.yc_c02043{bottom:845.867067pt;}
.yb_c02043{bottom:858.187067pt;}
.ya_c02043{bottom:870.427067pt;}
.y9_c02043{bottom:889.787315pt;}
.y8_c02043{bottom:908.187067pt;}
.y7_c02043{bottom:930.667067pt;}
.y6_c02043{bottom:958.267067pt;}
.y5_c02043{bottom:985.867067pt;}
.y4_c02043{bottom:1013.467067pt;}
.y1_c02043{bottom:1060.587067pt;}
.h3_c02043{height:39.030469pt;}
.h5_c02043{height:41.770312pt;}
.h6_c02043{height:42.892500pt;}
.h2_c02043{height:48.294844pt;}
.hb_c02043{height:52.448437pt;}
.ha_c02043{height:53.857500pt;}
.hf_c02043{height:59.015228pt;}
.h9_c02043{height:59.017500pt;}
.h4_c02043{height:62.812500pt;}
.he_c02043{height:64.496384pt;}
.h1_c02043{height:64.500000pt;}
.h7_c02043{height:91.852500pt;}
.hc_c02043{height:92.172500pt;}
.h8_c02043{height:93.620000pt;}
.hd_c02043{height:93.940000pt;}
.h0_c02043{height:1122.666667pt;}
.w1_c02043{width:793.333333pt;}
.w0_c02043{width:793.626667pt;}
.x0_c02043{left:0.000000pt;}
.x1_c02043{left:113.440000pt;}
.x3_c02043{left:120.560000pt;}
.x5_c02043{left:225.360000pt;}
.x4_c02043{left:234.080000pt;}
.xa_c02043{left:238.319048pt;}
.x8_c02043{left:242.960312pt;}
.x9_c02043{left:246.639656pt;}
.xd_c02043{left:255.119248pt;}
.xb_c02043{left:300.158480pt;}
.x6_c02043{left:355.360000pt;}
.x2_c02043{left:393.200000pt;}
.x7_c02043{left:395.920000pt;}
.xc_c02043{left:545.838192pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92f213b89db5a7c4ef8d1aa7.woff2')format("woff");}.ff1_c02044{font-family:ff1_c02044;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02044;src:url('chunks/assets/font_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff2_c02044{font-family:ff2_c02044;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02044{font-family:ff3_c02044;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_c02044;src:url('chunks/assets/font_01afe140f4a294c853832803.woff2')format("woff");}.ff4_c02044{font-family:ff4_c02044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02044{vertical-align:-5.760000px;}
.v0_c02044{vertical-align:0.000000px;}
.v2_c02044{vertical-align:32.760000px;}
.v1_c02044{vertical-align:55.080000px;}
.ls25_c02044{letter-spacing:-0.144288px;}
.ls22_c02044{letter-spacing:-0.114228px;}
.ls29_c02044{letter-spacing:-0.102204px;}
.ls28_c02044{letter-spacing:-0.078156px;}
.ls26_c02044{letter-spacing:-0.072144px;}
.ls27_c02044{letter-spacing:-0.066132px;}
.ls31_c02044{letter-spacing:-0.060120px;}
.ls32_c02044{letter-spacing:-0.054108px;}
.ls34_c02044{letter-spacing:-0.043200px;}
.ls20_c02044{letter-spacing:-0.038304px;}
.ls23_c02044{letter-spacing:-0.036072px;}
.ls33_c02044{letter-spacing:-0.024048px;}
.ls2c_c02044{letter-spacing:-0.018036px;}
.ls21_c02044{letter-spacing:-0.014400px;}
.ls1f_c02044{letter-spacing:-0.014364px;}
.ls2a_c02044{letter-spacing:-0.012024px;}
.ls35_c02044{letter-spacing:-0.007200px;}
.ls2b_c02044{letter-spacing:-0.006012px;}
.ls1c_c02044{letter-spacing:0.000000px;}
.ls0_c02044{letter-spacing:0.007200px;}
.ls1b_c02044{letter-spacing:0.013176px;}
.ls2_c02044{letter-spacing:0.014364px;}
.ls12_c02044{letter-spacing:0.014400px;}
.lse_c02044{letter-spacing:0.018036px;}
.ls2e_c02044{letter-spacing:0.019764px;}
.lsf_c02044{letter-spacing:0.021600px;}
.ls2d_c02044{letter-spacing:0.026352px;}
.ls13_c02044{letter-spacing:0.028800px;}
.ls18_c02044{letter-spacing:0.032940px;}
.ls11_c02044{letter-spacing:0.036000px;}
.ls6_c02044{letter-spacing:0.036072px;}
.ls1a_c02044{letter-spacing:0.039528px;}
.ls10_c02044{letter-spacing:0.043200px;}
.ls16_c02044{letter-spacing:0.046116px;}
.ls5_c02044{letter-spacing:0.047880px;}
.lsc_c02044{letter-spacing:0.048096px;}
.ls1d_c02044{letter-spacing:0.052668px;}
.ls19_c02044{letter-spacing:0.052704px;}
.ls17_c02044{letter-spacing:0.059292px;}
.lsa_c02044{letter-spacing:0.060120px;}
.ls15_c02044{letter-spacing:0.072000px;}
.ls8_c02044{letter-spacing:0.072144px;}
.ls2f_c02044{letter-spacing:0.072468px;}
.ls9_c02044{letter-spacing:0.078156px;}
.ls1_c02044{letter-spacing:0.079056px;}
.ls3_c02044{letter-spacing:0.081396px;}
.ls14_c02044{letter-spacing:0.086400px;}
.ls7_c02044{letter-spacing:0.090180px;}
.ls30_c02044{letter-spacing:0.097200px;}
.ls4_c02044{letter-spacing:0.100548px;}
.ls1e_c02044{letter-spacing:0.105336px;}
.lsb_c02044{letter-spacing:0.108216px;}
.lsd_c02044{letter-spacing:0.126252px;}
.ls24_c02044{letter-spacing:0.144288px;}
.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;}
}
.ws1_c02044{word-spacing:-15.174288px;}
.ws0_c02044{word-spacing:-12.051396px;}
.ws9_c02044{word-spacing:-0.360720px;}
.wsa_c02044{word-spacing:-0.342684px;}
.wsd_c02044{word-spacing:-0.330660px;}
.ws7_c02044{word-spacing:-0.306612px;}
.ws2b_c02044{word-spacing:-0.266400px;}
.wse_c02044{word-spacing:-0.258516px;}
.ws20_c02044{word-spacing:-0.246492px;}
.wsb_c02044{word-spacing:-0.192384px;}
.ws6_c02044{word-spacing:-0.191520px;}
.wsf_c02044{word-spacing:-0.168336px;}
.ws5_c02044{word-spacing:-0.105336px;}
.ws3_c02044{word-spacing:-0.086400px;}
.ws2f_c02044{word-spacing:-0.036000px;}
.ws2_c02044{word-spacing:-0.007200px;}
.ws4_c02044{word-spacing:0.000000px;}
.ws33_c02044{word-spacing:0.007200px;}
.wsc_c02044{word-spacing:0.012024px;}
.ws37_c02044{word-spacing:0.013176px;}
.ws36_c02044{word-spacing:0.032940px;}
.ws38_c02044{word-spacing:0.039528px;}
.ws34_c02044{word-spacing:0.046116px;}
.ws35_c02044{word-spacing:0.052704px;}
.ws19_c02044{word-spacing:0.059292px;}
.ws18_c02044{word-spacing:0.090180px;}
.ws8_c02044{word-spacing:0.126252px;}
.ws26_c02044{word-spacing:1.260000px;}
.ws25_c02044{word-spacing:1.396800px;}
.ws27_c02044{word-spacing:1.454400px;}
.ws28_c02044{word-spacing:2.412000px;}
.ws29_c02044{word-spacing:2.433600px;}
.ws2a_c02044{word-spacing:2.534400px;}
.ws1c_c02044{word-spacing:2.981952px;}
.ws32_c02044{word-spacing:3.528000px;}
.ws31_c02044{word-spacing:3.571200px;}
.ws30_c02044{word-spacing:3.585600px;}
.ws39_c02044{word-spacing:6.172956px;}
.ws3a_c02044{word-spacing:6.199308px;}
.ws2d_c02044{word-spacing:8.956800px;}
.ws2c_c02044{word-spacing:9.014400px;}
.ws2e_c02044{word-spacing:9.072000px;}
.ws12_c02044{word-spacing:12.282516px;}
.ws1b_c02044{word-spacing:13.466880px;}
.ws11_c02044{word-spacing:14.092128px;}
.ws22_c02044{word-spacing:19.706400px;}
.ws21_c02044{word-spacing:19.843200px;}
.ws24_c02044{word-spacing:20.433600px;}
.ws23_c02044{word-spacing:20.498400px;}
.ws17_c02044{word-spacing:25.575048px;}
.ws1a_c02044{word-spacing:37.809468px;}
.ws14_c02044{word-spacing:42.576984px;}
.ws15_c02044{word-spacing:90.324288px;}
.ws13_c02044{word-spacing:94.490604px;}
.ws10_c02044{word-spacing:101.139876px;}
.ws1d_c02044{word-spacing:114.191928px;}
.ws1e_c02044{word-spacing:118.893312px;}
.ws16_c02044{word-spacing:147.348108px;}
.ws1f_c02044{word-spacing:152.752896px;}
._3_c02044{margin-left:-1.208412px;}
._4_c02044{width:1.046088px;}
._5_c02044{width:60.241212px;}
._0_c02044{width:194.400000px;}
._1_c02044{width:376.284600px;}
._2_c02044{width:462.789720px;}
.fc0_c02044{color:rgb(0,0,0);}
.fs2_c02044{font-size:47.880000px;}
.fs4_c02044{font-size:54.000000px;}
.fs3_c02044{font-size:60.120000px;}
.fs1_c02044{font-size:65.880000px;}
.fs0_c02044{font-size:72.000000px;}
.y0_c02044{bottom:0.000000px;}
.y3_c02044{bottom:57.721170px;}
.y2_c02044{bottom:77.880450px;}
.y4e_c02044{bottom:128.012250px;}
.y4d_c02044{bottom:146.911575px;}
.y4c_c02044{bottom:165.901485px;}
.y4b_c02044{bottom:184.891395px;}
.y4a_c02044{bottom:203.881305px;}
.y49_c02044{bottom:222.871215px;}
.y48_c02044{bottom:241.861125px;}
.y47_c02044{bottom:260.760450px;}
.y46_c02044{bottom:290.460450px;}
.y45_c02044{bottom:321.510450px;}
.y44_c02044{bottom:347.970450px;}
.y43_c02044{bottom:373.260450px;}
.y42_c02044{bottom:404.310450px;}
.y41_c02044{bottom:430.770600px;}
.y40_c02044{bottom:456.060450px;}
.y3f_c02044{bottom:487.110450px;}
.y3e_c02044{bottom:518.160450px;}
.y3d_c02044{bottom:544.620450px;}
.y3c_c02044{bottom:569.910450px;}
.y3b_c02044{bottom:600.960450px;}
.y3a_c02044{bottom:632.010450px;}
.y39_c02044{bottom:658.470729px;}
.y38_c02044{bottom:679.170450px;}
.y37_c02044{bottom:694.201224px;}
.y2d_c02044{bottom:701.311485px;}
.y36_c02044{bottom:711.481215px;}
.y2c_c02044{bottom:720.301395px;}
.y35_c02044{bottom:728.671026px;}
.y2b_c02044{bottom:739.200720px;}
.y34_c02044{bottom:745.951017px;}
.y2a_c02044{bottom:758.190630px;}
.y30_c02044{bottom:763.050648px;}
.y33_c02044{bottom:763.231008px;}
.y29_c02044{bottom:777.180540px;}
.y2f_c02044{bottom:780.240459px;}
.y32_c02044{bottom:780.420819px;}
.y28_c02044{bottom:796.170450px;}
.y31_c02044{bottom:797.700810px;}
.y2e_c02044{bottom:798.960450px;}
.y27_c02044{bottom:814.800450px;}
.y26_c02044{bottom:828.660450px;}
.y25_c02044{bottom:842.430600px;}
.y24_c02044{bottom:856.200450px;}
.y23_c02044{bottom:878.070729px;}
.y22_c02044{bottom:898.770450px;}
.y18_c02044{bottom:913.621890px;}
.y17_c02044{bottom:930.811701px;}
.y16_c02044{bottom:948.091692px;}
.y21_c02044{bottom:948.272052px;}
.y15_c02044{bottom:965.371683px;}
.y20_c02044{bottom:965.552043px;}
.y14_c02044{bottom:982.561494px;}
.y1f_c02044{bottom:982.741854px;}
.yd_c02044{bottom:996.420657px;}
.y13_c02044{bottom:999.841485px;}
.y1e_c02044{bottom:1000.021845px;}
.yc_c02044{bottom:1013.610468px;}
.y12_c02044{bottom:1017.121476px;}
.y1d_c02044{bottom:1017.301836px;}
.yb_c02044{bottom:1030.890459px;}
.y11_c02044{bottom:1034.311287px;}
.y1c_c02044{bottom:1034.491647px;}
.ya_c02044{bottom:1048.170450px;}
.y10_c02044{bottom:1051.591278px;}
.y1b_c02044{bottom:1051.771638px;}
.y9_c02044{bottom:1065.720540px;}
.yf_c02044{bottom:1068.871269px;}
.y1a_c02044{bottom:1069.051629px;}
.y8_c02044{bottom:1084.710450px;}
.ye_c02044{bottom:1086.061080px;}
.y19_c02044{bottom:1086.241440px;}
.y7_c02044{bottom:1103.430450px;}
.y6_c02044{bottom:1117.200450px;}
.y5_c02044{bottom:1131.060450px;}
.y4_c02044{bottom:1144.830450px;}
.y1_c02044{bottom:1193.160450px;}
.h3_c02044{height:43.909277px;}
.ha_c02044{height:46.991602px;}
.h4_c02044{height:48.254063px;}
.h2_c02044{height:54.331699px;}
.hd_c02044{height:54.829688px;}
.h9_c02044{height:59.004492px;}
.h8_c02044{height:60.589687px;}
.hf_c02044{height:64.657617px;}
.h7_c02044{height:66.394687px;}
.he_c02044{height:70.664062px;}
.h1_c02044{height:72.562500px;}
.hb_c02044{height:103.333463px;}
.h5_c02044{height:103.334063px;}
.hc_c02044{height:105.321900px;}
.h6_c02044{height:105.322500px;}
.h0_c02044{height:1263.000000px;}
.w1_c02044{width:892.500000px;}
.w0_c02044{width:892.830000px;}
.x0_c02044{left:0.000000px;}
.x1_c02044{left:127.620000px;}
.x3_c02044{left:135.630000px;}
.xf_c02044{left:170.190000px;}
.x5_c02044{left:253.530000px;}
.xe_c02044{left:254.790000px;}
.x4_c02044{left:263.340000px;}
.xa_c02044{left:268.108929px;}
.x8_c02044{left:273.330351px;}
.x9_c02044{left:277.469613px;}
.xb_c02044{left:287.009154px;}
.xc_c02044{left:337.679793px;}
.x6_c02044{left:394.470000px;}
.x7_c02044{left:440.100000px;}
.x2_c02044{left:442.350000px;}
.xd_c02044{left:603.449271px;}
@media print{
.v3_c02044{vertical-align:-5.120000pt;}
.v0_c02044{vertical-align:0.000000pt;}
.v2_c02044{vertical-align:29.120000pt;}
.v1_c02044{vertical-align:48.960000pt;}
.ls25_c02044{letter-spacing:-0.128256pt;}
.ls22_c02044{letter-spacing:-0.101536pt;}
.ls29_c02044{letter-spacing:-0.090848pt;}
.ls28_c02044{letter-spacing:-0.069472pt;}
.ls26_c02044{letter-spacing:-0.064128pt;}
.ls27_c02044{letter-spacing:-0.058784pt;}
.ls31_c02044{letter-spacing:-0.053440pt;}
.ls32_c02044{letter-spacing:-0.048096pt;}
.ls34_c02044{letter-spacing:-0.038400pt;}
.ls20_c02044{letter-spacing:-0.034048pt;}
.ls23_c02044{letter-spacing:-0.032064pt;}
.ls33_c02044{letter-spacing:-0.021376pt;}
.ls2c_c02044{letter-spacing:-0.016032pt;}
.ls21_c02044{letter-spacing:-0.012800pt;}
.ls1f_c02044{letter-spacing:-0.012768pt;}
.ls2a_c02044{letter-spacing:-0.010688pt;}
.ls35_c02044{letter-spacing:-0.006400pt;}
.ls2b_c02044{letter-spacing:-0.005344pt;}
.ls1c_c02044{letter-spacing:0.000000pt;}
.ls0_c02044{letter-spacing:0.006400pt;}
.ls1b_c02044{letter-spacing:0.011712pt;}
.ls2_c02044{letter-spacing:0.012768pt;}
.ls12_c02044{letter-spacing:0.012800pt;}
.lse_c02044{letter-spacing:0.016032pt;}
.ls2e_c02044{letter-spacing:0.017568pt;}
.lsf_c02044{letter-spacing:0.019200pt;}
.ls2d_c02044{letter-spacing:0.023424pt;}
.ls13_c02044{letter-spacing:0.025600pt;}
.ls18_c02044{letter-spacing:0.029280pt;}
.ls11_c02044{letter-spacing:0.032000pt;}
.ls6_c02044{letter-spacing:0.032064pt;}
.ls1a_c02044{letter-spacing:0.035136pt;}
.ls10_c02044{letter-spacing:0.038400pt;}
.ls16_c02044{letter-spacing:0.040992pt;}
.ls5_c02044{letter-spacing:0.042560pt;}
.lsc_c02044{letter-spacing:0.042752pt;}
.ls1d_c02044{letter-spacing:0.046816pt;}
.ls19_c02044{letter-spacing:0.046848pt;}
.ls17_c02044{letter-spacing:0.052704pt;}
.lsa_c02044{letter-spacing:0.053440pt;}
.ls15_c02044{letter-spacing:0.064000pt;}
.ls8_c02044{letter-spacing:0.064128pt;}
.ls2f_c02044{letter-spacing:0.064416pt;}
.ls9_c02044{letter-spacing:0.069472pt;}
.ls1_c02044{letter-spacing:0.070272pt;}
.ls3_c02044{letter-spacing:0.072352pt;}
.ls14_c02044{letter-spacing:0.076800pt;}
.ls7_c02044{letter-spacing:0.080160pt;}
.ls30_c02044{letter-spacing:0.086400pt;}
.ls4_c02044{letter-spacing:0.089376pt;}
.ls1e_c02044{letter-spacing:0.093632pt;}
.lsb_c02044{letter-spacing:0.096192pt;}
.lsd_c02044{letter-spacing:0.112224pt;}
.ls24_c02044{letter-spacing:0.128256pt;}
.ws1_c02044{word-spacing:-13.488256pt;}
.ws0_c02044{word-spacing:-10.712352pt;}
.ws9_c02044{word-spacing:-0.320640pt;}
.wsa_c02044{word-spacing:-0.304608pt;}
.wsd_c02044{word-spacing:-0.293920pt;}
.ws7_c02044{word-spacing:-0.272544pt;}
.ws2b_c02044{word-spacing:-0.236800pt;}
.wse_c02044{word-spacing:-0.229792pt;}
.ws20_c02044{word-spacing:-0.219104pt;}
.wsb_c02044{word-spacing:-0.171008pt;}
.ws6_c02044{word-spacing:-0.170240pt;}
.wsf_c02044{word-spacing:-0.149632pt;}
.ws5_c02044{word-spacing:-0.093632pt;}
.ws3_c02044{word-spacing:-0.076800pt;}
.ws2f_c02044{word-spacing:-0.032000pt;}
.ws2_c02044{word-spacing:-0.006400pt;}
.ws4_c02044{word-spacing:0.000000pt;}
.ws33_c02044{word-spacing:0.006400pt;}
.wsc_c02044{word-spacing:0.010688pt;}
.ws37_c02044{word-spacing:0.011712pt;}
.ws36_c02044{word-spacing:0.029280pt;}
.ws38_c02044{word-spacing:0.035136pt;}
.ws34_c02044{word-spacing:0.040992pt;}
.ws35_c02044{word-spacing:0.046848pt;}
.ws19_c02044{word-spacing:0.052704pt;}
.ws18_c02044{word-spacing:0.080160pt;}
.ws8_c02044{word-spacing:0.112224pt;}
.ws26_c02044{word-spacing:1.120000pt;}
.ws25_c02044{word-spacing:1.241600pt;}
.ws27_c02044{word-spacing:1.292800pt;}
.ws28_c02044{word-spacing:2.144000pt;}
.ws29_c02044{word-spacing:2.163200pt;}
.ws2a_c02044{word-spacing:2.252800pt;}
.ws1c_c02044{word-spacing:2.650624pt;}
.ws32_c02044{word-spacing:3.136000pt;}
.ws31_c02044{word-spacing:3.174400pt;}
.ws30_c02044{word-spacing:3.187200pt;}
.ws39_c02044{word-spacing:5.487072pt;}
.ws3a_c02044{word-spacing:5.510496pt;}
.ws2d_c02044{word-spacing:7.961600pt;}
.ws2c_c02044{word-spacing:8.012800pt;}
.ws2e_c02044{word-spacing:8.064000pt;}
.ws12_c02044{word-spacing:10.917792pt;}
.ws1b_c02044{word-spacing:11.970560pt;}
.ws11_c02044{word-spacing:12.526336pt;}
.ws22_c02044{word-spacing:17.516800pt;}
.ws21_c02044{word-spacing:17.638400pt;}
.ws24_c02044{word-spacing:18.163200pt;}
.ws23_c02044{word-spacing:18.220800pt;}
.ws17_c02044{word-spacing:22.733376pt;}
.ws1a_c02044{word-spacing:33.608416pt;}
.ws14_c02044{word-spacing:37.846208pt;}
.ws15_c02044{word-spacing:80.288256pt;}
.ws13_c02044{word-spacing:83.991648pt;}
.ws10_c02044{word-spacing:89.902112pt;}
.ws1d_c02044{word-spacing:101.503936pt;}
.ws1e_c02044{word-spacing:105.682944pt;}
.ws16_c02044{word-spacing:130.976096pt;}
.ws1f_c02044{word-spacing:135.780352pt;}
._3_c02044{margin-left:-1.074144pt;}
._4_c02044{width:0.929856pt;}
._5_c02044{width:53.547744pt;}
._0_c02044{width:172.800000pt;}
._1_c02044{width:334.475200pt;}
._2_c02044{width:411.368640pt;}
.fs2_c02044{font-size:42.560000pt;}
.fs4_c02044{font-size:48.000000pt;}
.fs3_c02044{font-size:53.440000pt;}
.fs1_c02044{font-size:58.560000pt;}
.fs0_c02044{font-size:64.000000pt;}
.y0_c02044{bottom:0.000000pt;}
.y3_c02044{bottom:51.307707pt;}
.y2_c02044{bottom:69.227067pt;}
.y4e_c02044{bottom:113.788667pt;}
.y4d_c02044{bottom:130.588067pt;}
.y4c_c02044{bottom:147.467987pt;}
.y4b_c02044{bottom:164.347907pt;}
.y4a_c02044{bottom:181.227827pt;}
.y49_c02044{bottom:198.107747pt;}
.y48_c02044{bottom:214.987667pt;}
.y47_c02044{bottom:231.787067pt;}
.y46_c02044{bottom:258.187067pt;}
.y45_c02044{bottom:285.787067pt;}
.y44_c02044{bottom:309.307067pt;}
.y43_c02044{bottom:331.787067pt;}
.y42_c02044{bottom:359.387067pt;}
.y41_c02044{bottom:382.907200pt;}
.y40_c02044{bottom:405.387067pt;}
.y3f_c02044{bottom:432.987067pt;}
.y3e_c02044{bottom:460.587067pt;}
.y3d_c02044{bottom:484.107067pt;}
.y3c_c02044{bottom:506.587067pt;}
.y3b_c02044{bottom:534.187067pt;}
.y3a_c02044{bottom:561.787067pt;}
.y39_c02044{bottom:585.307315pt;}
.y38_c02044{bottom:603.707067pt;}
.y37_c02044{bottom:617.067755pt;}
.y2d_c02044{bottom:623.387987pt;}
.y36_c02044{bottom:632.427747pt;}
.y2c_c02044{bottom:640.267907pt;}
.y35_c02044{bottom:647.707579pt;}
.y2b_c02044{bottom:657.067307pt;}
.y34_c02044{bottom:663.067571pt;}
.y2a_c02044{bottom:673.947227pt;}
.y30_c02044{bottom:678.267243pt;}
.y33_c02044{bottom:678.427563pt;}
.y29_c02044{bottom:690.827147pt;}
.y2f_c02044{bottom:693.547075pt;}
.y32_c02044{bottom:693.707395pt;}
.y28_c02044{bottom:707.707067pt;}
.y31_c02044{bottom:709.067387pt;}
.y2e_c02044{bottom:710.187067pt;}
.y27_c02044{bottom:724.267067pt;}
.y26_c02044{bottom:736.587067pt;}
.y25_c02044{bottom:748.827200pt;}
.y24_c02044{bottom:761.067067pt;}
.y23_c02044{bottom:780.507315pt;}
.y22_c02044{bottom:798.907067pt;}
.y18_c02044{bottom:812.108347pt;}
.y17_c02044{bottom:827.388179pt;}
.y16_c02044{bottom:842.748171pt;}
.y21_c02044{bottom:842.908491pt;}
.y15_c02044{bottom:858.108163pt;}
.y20_c02044{bottom:858.268483pt;}
.y14_c02044{bottom:873.387995pt;}
.y1f_c02044{bottom:873.548315pt;}
.yd_c02044{bottom:885.707251pt;}
.y13_c02044{bottom:888.747987pt;}
.y1e_c02044{bottom:888.908307pt;}
.yc_c02044{bottom:900.987083pt;}
.y12_c02044{bottom:904.107979pt;}
.y1d_c02044{bottom:904.268299pt;}
.yb_c02044{bottom:916.347075pt;}
.y11_c02044{bottom:919.387811pt;}
.y1c_c02044{bottom:919.548131pt;}
.ya_c02044{bottom:931.707067pt;}
.y10_c02044{bottom:934.747803pt;}
.y1b_c02044{bottom:934.908123pt;}
.y9_c02044{bottom:947.307147pt;}
.yf_c02044{bottom:950.107795pt;}
.y1a_c02044{bottom:950.268115pt;}
.y8_c02044{bottom:964.187067pt;}
.ye_c02044{bottom:965.387627pt;}
.y19_c02044{bottom:965.547947pt;}
.y7_c02044{bottom:980.827067pt;}
.y6_c02044{bottom:993.067067pt;}
.y5_c02044{bottom:1005.387067pt;}
.y4_c02044{bottom:1017.627067pt;}
.y1_c02044{bottom:1060.587067pt;}
.h3_c02044{height:39.030469pt;}
.ha_c02044{height:41.770312pt;}
.h4_c02044{height:42.892500pt;}
.h2_c02044{height:48.294844pt;}
.hd_c02044{height:48.737500pt;}
.h9_c02044{height:52.448437pt;}
.h8_c02044{height:53.857500pt;}
.hf_c02044{height:57.473437pt;}
.h7_c02044{height:59.017500pt;}
.he_c02044{height:62.812500pt;}
.h1_c02044{height:64.500000pt;}
.hb_c02044{height:91.851967pt;}
.h5_c02044{height:91.852500pt;}
.hc_c02044{height:93.619467pt;}
.h6_c02044{height:93.620000pt;}
.h0_c02044{height:1122.666667pt;}
.w1_c02044{width:793.333333pt;}
.w0_c02044{width:793.626667pt;}
.x0_c02044{left:0.000000pt;}
.x1_c02044{left:113.440000pt;}
.x3_c02044{left:120.560000pt;}
.xf_c02044{left:151.280000pt;}
.x5_c02044{left:225.360000pt;}
.xe_c02044{left:226.480000pt;}
.x4_c02044{left:234.080000pt;}
.xa_c02044{left:238.319048pt;}
.x8_c02044{left:242.960312pt;}
.x9_c02044{left:246.639656pt;}
.xb_c02044{left:255.119248pt;}
.xc_c02044{left:300.159816pt;}
.x6_c02044{left:350.640000pt;}
.x7_c02044{left:391.200000pt;}
.x2_c02044{left:393.200000pt;}
.xd_c02044{left:536.399352pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ca6fecee6051bf5a055c5e0.woff2')format("woff");}.ff1_c02045{font-family:ff1_c02045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02045;src:url('chunks/assets/font_ea3dc8613b3cbe82c5eec2e4.woff2')format("woff");}.ff2_c02045{font-family:ff2_c02045;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02045{font-family:ff3_c02045;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_c02045;src:url('chunks/assets/font_61795936a4773104c1948b20.woff2')format("woff");}.ff4_c02045{font-family:ff4_c02045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls13_c02045{letter-spacing:-0.014400px;}
.ls15_c02045{letter-spacing:-0.007200px;}
.ls12_c02045{letter-spacing:0.000000px;}
.ls10_c02045{letter-spacing:0.006588px;}
.ls0_c02045{letter-spacing:0.007200px;}
.lsf_c02045{letter-spacing:0.013176px;}
.lsc_c02045{letter-spacing:0.014400px;}
.ls8_c02045{letter-spacing:0.021600px;}
.lse_c02045{letter-spacing:0.026352px;}
.lsd_c02045{letter-spacing:0.028800px;}
.ls4_c02045{letter-spacing:0.032940px;}
.ls9_c02045{letter-spacing:0.036000px;}
.ls2_c02045{letter-spacing:0.039528px;}
.ls5_c02045{letter-spacing:0.046116px;}
.ls14_c02045{letter-spacing:0.050400px;}
.ls7_c02045{letter-spacing:0.052704px;}
.lsa_c02045{letter-spacing:0.057600px;}
.ls6_c02045{letter-spacing:0.059292px;}
.ls11_c02045{letter-spacing:0.064800px;}
.lsb_c02045{letter-spacing:0.072000px;}
.ls3_c02045{letter-spacing:0.072468px;}
.ls1_c02045{letter-spacing:0.079056px;}
.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;}
}
.ws1b_c02045{word-spacing:-0.100800px;}
.ws1_c02045{word-spacing:-0.086400px;}
.ws1a_c02045{word-spacing:-0.072000px;}
.ws18_c02045{word-spacing:-0.014400px;}
.ws0_c02045{word-spacing:-0.007200px;}
.ws2_c02045{word-spacing:0.000000px;}
.ws23_c02045{word-spacing:0.007200px;}
.ws21_c02045{word-spacing:0.013176px;}
.ws1d_c02045{word-spacing:0.032940px;}
.wsb_c02045{word-spacing:0.039528px;}
.ws22_c02045{word-spacing:0.046116px;}
.wsc_c02045{word-spacing:0.052704px;}
.ws19_c02045{word-spacing:0.057600px;}
.ws5_c02045{word-spacing:0.059292px;}
.ws1f_c02045{word-spacing:0.065880px;}
.ws1c_c02045{word-spacing:0.072468px;}
.ws1e_c02045{word-spacing:0.079056px;}
.ws20_c02045{word-spacing:0.085644px;}
.ws28_c02045{word-spacing:1.375200px;}
.ws27_c02045{word-spacing:1.418400px;}
.ws10_c02045{word-spacing:1.569600px;}
.wsf_c02045{word-spacing:1.641600px;}
.ws24_c02045{word-spacing:1.713600px;}
.ws16_c02045{word-spacing:1.728000px;}
.ws17_c02045{word-spacing:1.764000px;}
.wsd_c02045{word-spacing:1.778400px;}
.wse_c02045{word-spacing:1.814400px;}
.ws14_c02045{word-spacing:3.837600px;}
.ws13_c02045{word-spacing:3.952800px;}
.ws15_c02045{word-spacing:3.967200px;}
.ws9_c02045{word-spacing:4.690656px;}
.ws4_c02045{word-spacing:4.697244px;}
.ws8_c02045{word-spacing:4.710420px;}
.wsa_c02045{word-spacing:4.717008px;}
.ws3_c02045{word-spacing:4.730184px;}
.ws11_c02045{word-spacing:8.460000px;}
.ws12_c02045{word-spacing:8.596800px;}
.ws2a_c02045{word-spacing:11.884752px;}
.ws29_c02045{word-spacing:11.891340px;}
.ws6_c02045{word-spacing:12.978360px;}
.ws7_c02045{word-spacing:13.004712px;}
.ws26_c02045{word-spacing:28.728000px;}
.ws25_c02045{word-spacing:28.735200px;}
._1_c02045{margin-left:-1.396800px;}
._2_c02045{width:1.166076px;}
._0_c02045{width:194.400000px;}
.fc0_c02045{color:rgb(0,0,0);}
.fs2_c02045{font-size:47.880000px;}
.fs1_c02045{font-size:65.880000px;}
.fs0_c02045{font-size:72.000000px;}
.y0_c02045{bottom:0.000000px;}
.y3_c02045{bottom:57.721170px;}
.y2_c02045{bottom:77.880450px;}
.y31_c02045{bottom:158.610027px;}
.y30_c02045{bottom:174.720450px;}
.y2f_c02045{bottom:189.391665px;}
.y2e_c02045{bottom:208.381575px;}
.y2d_c02045{bottom:227.371485px;}
.y2c_c02045{bottom:246.361395px;}
.y2b_c02045{bottom:265.260720px;}
.y2a_c02045{bottom:284.250630px;}
.y29_c02045{bottom:303.240540px;}
.y28_c02045{bottom:322.230450px;}
.y27_c02045{bottom:351.930600px;}
.y26_c02045{bottom:382.980600px;}
.y25_c02045{bottom:414.030600px;}
.y24_c02045{bottom:445.080600px;}
.y23_c02045{bottom:475.950600px;}
.y22_c02045{bottom:507.000600px;}
.y21_c02045{bottom:527.433030px;}
.y20_c02045{bottom:546.422940px;}
.y1f_c02045{bottom:565.412850px;}
.y1e_c02045{bottom:584.402760px;}
.y1d_c02045{bottom:603.392670px;}
.y1c_c02045{bottom:622.291995px;}
.y1b_c02045{bottom:641.281905px;}
.y1a_c02045{bottom:660.271815px;}
.y19_c02045{bottom:679.261725px;}
.y18_c02045{bottom:698.251635px;}
.y17_c02045{bottom:717.241545px;}
.y16_c02045{bottom:736.140870px;}
.y15_c02045{bottom:755.130780px;}
.y14_c02045{bottom:774.120690px;}
.y13_c02045{bottom:793.110600px;}
.y12_c02045{bottom:822.810450px;}
.y11_c02045{bottom:849.270450px;}
.y10_c02045{bottom:874.560450px;}
.yf_c02045{bottom:905.610450px;}
.ye_c02045{bottom:936.660450px;}
.yd_c02045{bottom:967.710450px;}
.yc_c02045{bottom:998.760450px;}
.yb_c02045{bottom:1018.200162px;}
.ya_c02045{bottom:1031.970450px;}
.y9_c02045{bottom:1046.642556px;}
.y8_c02045{bottom:1065.632466px;}
.y7_c02045{bottom:1084.622376px;}
.y6_c02045{bottom:1103.612286px;}
.y5_c02045{bottom:1122.511611px;}
.y4_c02045{bottom:1141.501521px;}
.y1_c02045{bottom:1193.160450px;}
.h3_c02045{height:43.909277px;}
.h5_c02045{height:46.991602px;}
.h7_c02045{height:48.254063px;}
.h2_c02045{height:54.331699px;}
.h4_c02045{height:64.657617px;}
.h6_c02045{height:70.664062px;}
.h1_c02045{height:72.562500px;}
.h0_c02045{height:1263.000000px;}
.w1_c02045{width:892.500000px;}
.w0_c02045{width:892.830000px;}
.x0_c02045{left:0.000000px;}
.x1_c02045{left:127.620000px;}
.x4_c02045{left:148.950000px;}
.x3_c02045{left:170.189838px;}
.x5_c02045{left:180.810000px;}
.x2_c02045{left:442.350000px;}
@media print{
.v0_c02045{vertical-align:0.000000pt;}
.ls13_c02045{letter-spacing:-0.012800pt;}
.ls15_c02045{letter-spacing:-0.006400pt;}
.ls12_c02045{letter-spacing:0.000000pt;}
.ls10_c02045{letter-spacing:0.005856pt;}
.ls0_c02045{letter-spacing:0.006400pt;}
.lsf_c02045{letter-spacing:0.011712pt;}
.lsc_c02045{letter-spacing:0.012800pt;}
.ls8_c02045{letter-spacing:0.019200pt;}
.lse_c02045{letter-spacing:0.023424pt;}
.lsd_c02045{letter-spacing:0.025600pt;}
.ls4_c02045{letter-spacing:0.029280pt;}
.ls9_c02045{letter-spacing:0.032000pt;}
.ls2_c02045{letter-spacing:0.035136pt;}
.ls5_c02045{letter-spacing:0.040992pt;}
.ls14_c02045{letter-spacing:0.044800pt;}
.ls7_c02045{letter-spacing:0.046848pt;}
.lsa_c02045{letter-spacing:0.051200pt;}
.ls6_c02045{letter-spacing:0.052704pt;}
.ls11_c02045{letter-spacing:0.057600pt;}
.lsb_c02045{letter-spacing:0.064000pt;}
.ls3_c02045{letter-spacing:0.064416pt;}
.ls1_c02045{letter-spacing:0.070272pt;}
.ws1b_c02045{word-spacing:-0.089600pt;}
.ws1_c02045{word-spacing:-0.076800pt;}
.ws1a_c02045{word-spacing:-0.064000pt;}
.ws18_c02045{word-spacing:-0.012800pt;}
.ws0_c02045{word-spacing:-0.006400pt;}
.ws2_c02045{word-spacing:0.000000pt;}
.ws23_c02045{word-spacing:0.006400pt;}
.ws21_c02045{word-spacing:0.011712pt;}
.ws1d_c02045{word-spacing:0.029280pt;}
.wsb_c02045{word-spacing:0.035136pt;}
.ws22_c02045{word-spacing:0.040992pt;}
.wsc_c02045{word-spacing:0.046848pt;}
.ws19_c02045{word-spacing:0.051200pt;}
.ws5_c02045{word-spacing:0.052704pt;}
.ws1f_c02045{word-spacing:0.058560pt;}
.ws1c_c02045{word-spacing:0.064416pt;}
.ws1e_c02045{word-spacing:0.070272pt;}
.ws20_c02045{word-spacing:0.076128pt;}
.ws28_c02045{word-spacing:1.222400pt;}
.ws27_c02045{word-spacing:1.260800pt;}
.ws10_c02045{word-spacing:1.395200pt;}
.wsf_c02045{word-spacing:1.459200pt;}
.ws24_c02045{word-spacing:1.523200pt;}
.ws16_c02045{word-spacing:1.536000pt;}
.ws17_c02045{word-spacing:1.568000pt;}
.wsd_c02045{word-spacing:1.580800pt;}
.wse_c02045{word-spacing:1.612800pt;}
.ws14_c02045{word-spacing:3.411200pt;}
.ws13_c02045{word-spacing:3.513600pt;}
.ws15_c02045{word-spacing:3.526400pt;}
.ws9_c02045{word-spacing:4.169472pt;}
.ws4_c02045{word-spacing:4.175328pt;}
.ws8_c02045{word-spacing:4.187040pt;}
.wsa_c02045{word-spacing:4.192896pt;}
.ws3_c02045{word-spacing:4.204608pt;}
.ws11_c02045{word-spacing:7.520000pt;}
.ws12_c02045{word-spacing:7.641600pt;}
.ws2a_c02045{word-spacing:10.564224pt;}
.ws29_c02045{word-spacing:10.570080pt;}
.ws6_c02045{word-spacing:11.536320pt;}
.ws7_c02045{word-spacing:11.559744pt;}
.ws26_c02045{word-spacing:25.536000pt;}
.ws25_c02045{word-spacing:25.542400pt;}
._1_c02045{margin-left:-1.241600pt;}
._2_c02045{width:1.036512pt;}
._0_c02045{width:172.800000pt;}
.fs2_c02045{font-size:42.560000pt;}
.fs1_c02045{font-size:58.560000pt;}
.fs0_c02045{font-size:64.000000pt;}
.y0_c02045{bottom:0.000000pt;}
.y3_c02045{bottom:51.307707pt;}
.y2_c02045{bottom:69.227067pt;}
.y31_c02045{bottom:140.986691pt;}
.y30_c02045{bottom:155.307067pt;}
.y2f_c02045{bottom:168.348147pt;}
.y2e_c02045{bottom:185.228067pt;}
.y2d_c02045{bottom:202.107987pt;}
.y2c_c02045{bottom:218.987907pt;}
.y2b_c02045{bottom:235.787307pt;}
.y2a_c02045{bottom:252.667227pt;}
.y29_c02045{bottom:269.547147pt;}
.y28_c02045{bottom:286.427067pt;}
.y27_c02045{bottom:312.827200pt;}
.y26_c02045{bottom:340.427200pt;}
.y25_c02045{bottom:368.027200pt;}
.y24_c02045{bottom:395.627200pt;}
.y23_c02045{bottom:423.067200pt;}
.y22_c02045{bottom:450.667200pt;}
.y21_c02045{bottom:468.829360pt;}
.y20_c02045{bottom:485.709280pt;}
.y1f_c02045{bottom:502.589200pt;}
.y1e_c02045{bottom:519.469120pt;}
.y1d_c02045{bottom:536.349040pt;}
.y1c_c02045{bottom:553.148440pt;}
.y1b_c02045{bottom:570.028360pt;}
.y1a_c02045{bottom:586.908280pt;}
.y19_c02045{bottom:603.788200pt;}
.y18_c02045{bottom:620.668120pt;}
.y17_c02045{bottom:637.548040pt;}
.y16_c02045{bottom:654.347440pt;}
.y15_c02045{bottom:671.227360pt;}
.y14_c02045{bottom:688.107280pt;}
.y13_c02045{bottom:704.987200pt;}
.y12_c02045{bottom:731.387067pt;}
.y11_c02045{bottom:754.907067pt;}
.y10_c02045{bottom:777.387067pt;}
.yf_c02045{bottom:804.987067pt;}
.ye_c02045{bottom:832.587067pt;}
.yd_c02045{bottom:860.187067pt;}
.yc_c02045{bottom:887.787067pt;}
.yb_c02045{bottom:905.066811pt;}
.ya_c02045{bottom:917.307067pt;}
.y9_c02045{bottom:930.348939pt;}
.y8_c02045{bottom:947.228859pt;}
.y7_c02045{bottom:964.108779pt;}
.y6_c02045{bottom:980.988699pt;}
.y5_c02045{bottom:997.788099pt;}
.y4_c02045{bottom:1014.668019pt;}
.y1_c02045{bottom:1060.587067pt;}
.h3_c02045{height:39.030469pt;}
.h5_c02045{height:41.770312pt;}
.h7_c02045{height:42.892500pt;}
.h2_c02045{height:48.294844pt;}
.h4_c02045{height:57.473437pt;}
.h6_c02045{height:62.812500pt;}
.h1_c02045{height:64.500000pt;}
.h0_c02045{height:1122.666667pt;}
.w1_c02045{width:793.333333pt;}
.w0_c02045{width:793.626667pt;}
.x0_c02045{left:0.000000pt;}
.x1_c02045{left:113.440000pt;}
.x4_c02045{left:132.400000pt;}
.x3_c02045{left:151.279856pt;}
.x5_c02045{left:160.720000pt;}
.x2_c02045{left:393.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_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_c5fc851a36e00d33ad60d5bb.woff2')format("woff");}.ff1_c02046{font-family:ff1_c02046;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02046;src:url('chunks/assets/font_0cec2893f087417c014c03ae.woff2')format("woff");}.ff2_c02046{font-family:ff2_c02046;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02046{font-family:ff3_c02046;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_c02046;src:url('chunks/assets/font_62bc7a64d88b65243ece0ac8.woff2')format("woff");}.ff4_c02046{font-family:ff4_c02046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02046{vertical-align:-81.360000px;}
.v0_c02046{vertical-align:0.000000px;}
.ls1a_c02046{letter-spacing:-0.043200px;}
.ls19_c02046{letter-spacing:-0.014400px;}
.ls18_c02046{letter-spacing:-0.007200px;}
.ls17_c02046{letter-spacing:0.000000px;}
.ls16_c02046{letter-spacing:0.006588px;}
.ls0_c02046{letter-spacing:0.007200px;}
.lsb_c02046{letter-spacing:0.014400px;}
.ls14_c02046{letter-spacing:0.019764px;}
.ls7_c02046{letter-spacing:0.021600px;}
.ls9_c02046{letter-spacing:0.026352px;}
.ls3_c02046{letter-spacing:0.028800px;}
.ls4_c02046{letter-spacing:0.036000px;}
.ls12_c02046{letter-spacing:0.039528px;}
.lsa_c02046{letter-spacing:0.043200px;}
.lsf_c02046{letter-spacing:0.046116px;}
.lsc_c02046{letter-spacing:0.050400px;}
.ls1b_c02046{letter-spacing:0.052704px;}
.ls6_c02046{letter-spacing:0.057600px;}
.ls13_c02046{letter-spacing:0.059292px;}
.ls10_c02046{letter-spacing:0.065880px;}
.ls5_c02046{letter-spacing:0.072000px;}
.ls1_c02046{letter-spacing:0.079056px;}
.lse_c02046{letter-spacing:0.086400px;}
.ls15_c02046{letter-spacing:0.092232px;}
.ls2_c02046{letter-spacing:0.093600px;}
.ls8_c02046{letter-spacing:0.100800px;}
.ls11_c02046{letter-spacing:0.105408px;}
.lsd_c02046{letter-spacing:76.320000px;}
.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;}
}
.ws21_c02046{word-spacing:-0.187200px;}
.wsd_c02046{word-spacing:-0.180000px;}
.ws17_c02046{word-spacing:-0.151200px;}
.ws1d_c02046{word-spacing:-0.136800px;}
.ws1_c02046{word-spacing:-0.086400px;}
.ws1c_c02046{word-spacing:-0.057600px;}
.ws18_c02046{word-spacing:-0.050400px;}
.ws22_c02046{word-spacing:-0.036000px;}
.ws16_c02046{word-spacing:-0.021600px;}
.ws0_c02046{word-spacing:-0.007200px;}
.ws2_c02046{word-spacing:0.000000px;}
.ws1b_c02046{word-spacing:0.014400px;}
.ws23_c02046{word-spacing:0.026352px;}
.ws27_c02046{word-spacing:0.032940px;}
.wse_c02046{word-spacing:0.046116px;}
.ws26_c02046{word-spacing:0.052704px;}
.wsf_c02046{word-spacing:0.065880px;}
.ws2b_c02046{word-spacing:0.072468px;}
.ws2a_c02046{word-spacing:0.085644px;}
.ws14_c02046{word-spacing:1.382400px;}
.ws15_c02046{word-spacing:1.425600px;}
.ws29_c02046{word-spacing:2.549556px;}
.ws10_c02046{word-spacing:5.356800px;}
.ws11_c02046{word-spacing:5.364000px;}
.ws5_c02046{word-spacing:5.911200px;}
.ws6_c02046{word-spacing:6.127200px;}
.ws7_c02046{word-spacing:6.170400px;}
.ws4_c02046{word-spacing:7.466400px;}
.ws3_c02046{word-spacing:7.552800px;}
.ws24_c02046{word-spacing:9.045324px;}
.ws9_c02046{word-spacing:11.714400px;}
.ws8_c02046{word-spacing:11.808000px;}
.ws1a_c02046{word-spacing:11.815200px;}
.ws19_c02046{word-spacing:11.894400px;}
.ws13_c02046{word-spacing:12.153600px;}
.ws12_c02046{word-spacing:12.232800px;}
.wsc_c02046{word-spacing:12.376800px;}
.wsa_c02046{word-spacing:12.470400px;}
.wsb_c02046{word-spacing:12.600000px;}
.ws1f_c02046{word-spacing:14.522400px;}
.ws20_c02046{word-spacing:14.738400px;}
.ws1e_c02046{word-spacing:14.774400px;}
.ws28_c02046{word-spacing:22.392612px;}
.ws25_c02046{word-spacing:25.245216px;}
._1_c02046{margin-left:-1.310400px;}
._3_c02046{width:1.192428px;}
._2_c02046{width:8.999208px;}
._0_c02046{width:194.400000px;}
.fc0_c02046{color:rgb(0,0,0);}
.fs3_c02046{font-size:36.000000px;}
.fs2_c02046{font-size:47.880000px;}
.fs1_c02046{font-size:65.880000px;}
.fs0_c02046{font-size:72.000000px;}
.y0_c02046{bottom:0.000000px;}
.y3_c02046{bottom:57.721170px;}
.y2_c02046{bottom:77.880450px;}
.y30_c02046{bottom:121.531071px;}
.y2f_c02046{bottom:137.370972px;}
.y2e_c02046{bottom:153.300648px;}
.y2d_c02046{bottom:169.140549px;}
.y2c_c02046{bottom:184.980450px;}
.y2b_c02046{bottom:202.527948px;}
.y2a_c02046{bottom:224.307876px;}
.y29_c02046{bottom:246.178389px;}
.y28_c02046{bottom:267.958317px;}
.y27_c02046{bottom:289.738245px;}
.y26_c02046{bottom:311.608758px;}
.y25_c02046{bottom:333.388686px;}
.y24_c02046{bottom:355.259199px;}
.y23_c02046{bottom:377.039127px;}
.y22_c02046{bottom:398.909640px;}
.y21_c02046{bottom:420.689568px;}
.y20_c02046{bottom:442.560081px;}
.y1f_c02046{bottom:464.340009px;}
.y1e_c02046{bottom:486.119937px;}
.y1d_c02046{bottom:507.990450px;}
.y1c_c02046{bottom:530.310450px;}
.y1b_c02046{bottom:552.000648px;}
.y1a_c02046{bottom:567.840549px;}
.y19_c02046{bottom:583.680450px;}
.y18_c02046{bottom:601.770450px;}
.y17_c02046{bottom:625.530450px;}
.y16_c02046{bottom:649.380450px;}
.y15_c02046{bottom:673.140450px;}
.y14_c02046{bottom:717.330450px;}
.y13_c02046{bottom:740.010450px;}
.y12_c02046{bottom:766.200729px;}
.y11_c02046{bottom:786.900450px;}
.y10_c02046{bottom:812.460450px;}
.yf_c02046{bottom:843.510450px;}
.ye_c02046{bottom:874.560450px;}
.yd_c02046{bottom:905.610450px;}
.yc_c02046{bottom:931.800729px;}
.yb_c02046{bottom:952.500450px;}
.ya_c02046{bottom:967.260540px;}
.y9_c02046{bottom:986.250450px;}
.y8_c02046{bottom:1015.950450px;}
.y7_c02046{bottom:1047.000450px;}
.y6_c02046{bottom:1078.050450px;}
.y5_c02046{bottom:1109.100450px;}
.y4_c02046{bottom:1140.150450px;}
.y1_c02046{bottom:1193.160450px;}
.h7_c02046{height:35.332031px;}
.h3_c02046{height:43.909277px;}
.h8_c02046{height:46.991602px;}
.h6_c02046{height:48.254063px;}
.h2_c02046{height:54.331699px;}
.h5_c02046{height:64.657617px;}
.h4_c02046{height:70.664062px;}
.h1_c02046{height:72.562500px;}
.h0_c02046{height:1263.000000px;}
.w1_c02046{width:892.500000px;}
.w0_c02046{width:892.830000px;}
.x0_c02046{left:0.000000px;}
.x1_c02046{left:127.620000px;}
.x4_c02046{left:148.950000px;}
.x3_c02046{left:170.190000px;}
.x5_c02046{left:191.430000px;}
.x2_c02046{left:442.350000px;}
@media print{
.v1_c02046{vertical-align:-72.320000pt;}
.v0_c02046{vertical-align:0.000000pt;}
.ls1a_c02046{letter-spacing:-0.038400pt;}
.ls19_c02046{letter-spacing:-0.012800pt;}
.ls18_c02046{letter-spacing:-0.006400pt;}
.ls17_c02046{letter-spacing:0.000000pt;}
.ls16_c02046{letter-spacing:0.005856pt;}
.ls0_c02046{letter-spacing:0.006400pt;}
.lsb_c02046{letter-spacing:0.012800pt;}
.ls14_c02046{letter-spacing:0.017568pt;}
.ls7_c02046{letter-spacing:0.019200pt;}
.ls9_c02046{letter-spacing:0.023424pt;}
.ls3_c02046{letter-spacing:0.025600pt;}
.ls4_c02046{letter-spacing:0.032000pt;}
.ls12_c02046{letter-spacing:0.035136pt;}
.lsa_c02046{letter-spacing:0.038400pt;}
.lsf_c02046{letter-spacing:0.040992pt;}
.lsc_c02046{letter-spacing:0.044800pt;}
.ls1b_c02046{letter-spacing:0.046848pt;}
.ls6_c02046{letter-spacing:0.051200pt;}
.ls13_c02046{letter-spacing:0.052704pt;}
.ls10_c02046{letter-spacing:0.058560pt;}
.ls5_c02046{letter-spacing:0.064000pt;}
.ls1_c02046{letter-spacing:0.070272pt;}
.lse_c02046{letter-spacing:0.076800pt;}
.ls15_c02046{letter-spacing:0.081984pt;}
.ls2_c02046{letter-spacing:0.083200pt;}
.ls8_c02046{letter-spacing:0.089600pt;}
.ls11_c02046{letter-spacing:0.093696pt;}
.lsd_c02046{letter-spacing:67.840000pt;}
.ws21_c02046{word-spacing:-0.166400pt;}
.wsd_c02046{word-spacing:-0.160000pt;}
.ws17_c02046{word-spacing:-0.134400pt;}
.ws1d_c02046{word-spacing:-0.121600pt;}
.ws1_c02046{word-spacing:-0.076800pt;}
.ws1c_c02046{word-spacing:-0.051200pt;}
.ws18_c02046{word-spacing:-0.044800pt;}
.ws22_c02046{word-spacing:-0.032000pt;}
.ws16_c02046{word-spacing:-0.019200pt;}
.ws0_c02046{word-spacing:-0.006400pt;}
.ws2_c02046{word-spacing:0.000000pt;}
.ws1b_c02046{word-spacing:0.012800pt;}
.ws23_c02046{word-spacing:0.023424pt;}
.ws27_c02046{word-spacing:0.029280pt;}
.wse_c02046{word-spacing:0.040992pt;}
.ws26_c02046{word-spacing:0.046848pt;}
.wsf_c02046{word-spacing:0.058560pt;}
.ws2b_c02046{word-spacing:0.064416pt;}
.ws2a_c02046{word-spacing:0.076128pt;}
.ws14_c02046{word-spacing:1.228800pt;}
.ws15_c02046{word-spacing:1.267200pt;}
.ws29_c02046{word-spacing:2.266272pt;}
.ws10_c02046{word-spacing:4.761600pt;}
.ws11_c02046{word-spacing:4.768000pt;}
.ws5_c02046{word-spacing:5.254400pt;}
.ws6_c02046{word-spacing:5.446400pt;}
.ws7_c02046{word-spacing:5.484800pt;}
.ws4_c02046{word-spacing:6.636800pt;}
.ws3_c02046{word-spacing:6.713600pt;}
.ws24_c02046{word-spacing:8.040288pt;}
.ws9_c02046{word-spacing:10.412800pt;}
.ws8_c02046{word-spacing:10.496000pt;}
.ws1a_c02046{word-spacing:10.502400pt;}
.ws19_c02046{word-spacing:10.572800pt;}
.ws13_c02046{word-spacing:10.803200pt;}
.ws12_c02046{word-spacing:10.873600pt;}
.wsc_c02046{word-spacing:11.001600pt;}
.wsa_c02046{word-spacing:11.084800pt;}
.wsb_c02046{word-spacing:11.200000pt;}
.ws1f_c02046{word-spacing:12.908800pt;}
.ws20_c02046{word-spacing:13.100800pt;}
.ws1e_c02046{word-spacing:13.132800pt;}
.ws28_c02046{word-spacing:19.904544pt;}
.ws25_c02046{word-spacing:22.440192pt;}
._1_c02046{margin-left:-1.164800pt;}
._3_c02046{width:1.059936pt;}
._2_c02046{width:7.999296pt;}
._0_c02046{width:172.800000pt;}
.fs3_c02046{font-size:32.000000pt;}
.fs2_c02046{font-size:42.560000pt;}
.fs1_c02046{font-size:58.560000pt;}
.fs0_c02046{font-size:64.000000pt;}
.y0_c02046{bottom:0.000000pt;}
.y3_c02046{bottom:51.307707pt;}
.y2_c02046{bottom:69.227067pt;}
.y30_c02046{bottom:108.027619pt;}
.y2f_c02046{bottom:122.107531pt;}
.y2e_c02046{bottom:136.267243pt;}
.y2d_c02046{bottom:150.347155pt;}
.y2c_c02046{bottom:164.427067pt;}
.y2b_c02046{bottom:180.024843pt;}
.y2a_c02046{bottom:199.384779pt;}
.y29_c02046{bottom:218.825235pt;}
.y28_c02046{bottom:238.185171pt;}
.y27_c02046{bottom:257.545107pt;}
.y26_c02046{bottom:276.985563pt;}
.y25_c02046{bottom:296.345499pt;}
.y24_c02046{bottom:315.785955pt;}
.y23_c02046{bottom:335.145891pt;}
.y22_c02046{bottom:354.586347pt;}
.y21_c02046{bottom:373.946283pt;}
.y20_c02046{bottom:393.386739pt;}
.y1f_c02046{bottom:412.746675pt;}
.y1e_c02046{bottom:432.106611pt;}
.y1d_c02046{bottom:451.547067pt;}
.y1c_c02046{bottom:471.387067pt;}
.y1b_c02046{bottom:490.667243pt;}
.y1a_c02046{bottom:504.747155pt;}
.y19_c02046{bottom:518.827067pt;}
.y18_c02046{bottom:534.907067pt;}
.y17_c02046{bottom:556.027067pt;}
.y16_c02046{bottom:577.227067pt;}
.y15_c02046{bottom:598.347067pt;}
.y14_c02046{bottom:637.627067pt;}
.y13_c02046{bottom:657.787067pt;}
.y12_c02046{bottom:681.067315pt;}
.y11_c02046{bottom:699.467067pt;}
.y10_c02046{bottom:722.187067pt;}
.yf_c02046{bottom:749.787067pt;}
.ye_c02046{bottom:777.387067pt;}
.yd_c02046{bottom:804.987067pt;}
.yc_c02046{bottom:828.267315pt;}
.yb_c02046{bottom:846.667067pt;}
.ya_c02046{bottom:859.787147pt;}
.y9_c02046{bottom:876.667067pt;}
.y8_c02046{bottom:903.067067pt;}
.y7_c02046{bottom:930.667067pt;}
.y6_c02046{bottom:958.267067pt;}
.y5_c02046{bottom:985.867067pt;}
.y4_c02046{bottom:1013.467067pt;}
.y1_c02046{bottom:1060.587067pt;}
.h7_c02046{height:31.406250pt;}
.h3_c02046{height:39.030469pt;}
.h8_c02046{height:41.770312pt;}
.h6_c02046{height:42.892500pt;}
.h2_c02046{height:48.294844pt;}
.h5_c02046{height:57.473437pt;}
.h4_c02046{height:62.812500pt;}
.h1_c02046{height:64.500000pt;}
.h0_c02046{height:1122.666667pt;}
.w1_c02046{width:793.333333pt;}
.w0_c02046{width:793.626667pt;}
.x0_c02046{left:0.000000pt;}
.x1_c02046{left:113.440000pt;}
.x4_c02046{left:132.400000pt;}
.x3_c02046{left:151.280000pt;}
.x5_c02046{left:170.160000pt;}
.x2_c02046{left:393.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_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_398ad94e49f2a9761d51d28b.woff2')format("woff");}.ff1_c02047{font-family:ff1_c02047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02047;src:url('chunks/assets/font_cf6d2f74b49ed7a896ed132b.woff2')format("woff");}.ff2_c02047{font-family:ff2_c02047;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02047{font-family:ff3_c02047;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_c02047;src:url('chunks/assets/font_91c35084b36a8fc1ba87d792.woff2')format("woff");}.ff4_c02047{font-family:ff4_c02047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19_c02047{letter-spacing:-0.180360px;}
.ls1f_c02047{letter-spacing:-0.108000px;}
.ls1b_c02047{letter-spacing:-0.054108px;}
.ls1d_c02047{letter-spacing:-0.036000px;}
.ls1e_c02047{letter-spacing:-0.028800px;}
.ls1c_c02047{letter-spacing:-0.021600px;}
.ls17_c02047{letter-spacing:-0.007200px;}
.ls16_c02047{letter-spacing:0.000000px;}
.ls0_c02047{letter-spacing:0.007200px;}
.ls2_c02047{letter-spacing:0.014400px;}
.ls4_c02047{letter-spacing:0.021600px;}
.ls11_c02047{letter-spacing:0.028800px;}
.lsf_c02047{letter-spacing:0.032940px;}
.ls3_c02047{letter-spacing:0.036000px;}
.ls13_c02047{letter-spacing:0.043200px;}
.lsc_c02047{letter-spacing:0.046116px;}
.ls10_c02047{letter-spacing:0.050400px;}
.ls9_c02047{letter-spacing:0.052704px;}
.ls12_c02047{letter-spacing:0.057600px;}
.lsd_c02047{letter-spacing:0.059292px;}
.ls15_c02047{letter-spacing:0.064800px;}
.lsa_c02047{letter-spacing:0.065880px;}
.ls1_c02047{letter-spacing:0.079056px;}
.ls8_c02047{letter-spacing:0.085644px;}
.lsb_c02047{letter-spacing:0.092232px;}
.ls1a_c02047{letter-spacing:0.096192px;}
.lse_c02047{letter-spacing:0.105408px;}
.ls18_c02047{letter-spacing:0.144288px;}
.ls14_c02047{letter-spacing:16.560000px;}
.ls6_c02047{letter-spacing:69.930000px;}
.ls5_c02047{letter-spacing:113.130000px;}
.ls7_c02047{letter-spacing:1601.010000px;}
.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;}
}
.ws2c_c02047{word-spacing:-0.115200px;}
.ws6_c02047{word-spacing:-0.100800px;}
.ws1_c02047{word-spacing:-0.086400px;}
.ws1a_c02047{word-spacing:-0.072000px;}
.ws4_c02047{word-spacing:-0.064800px;}
.ws3_c02047{word-spacing:-0.036000px;}
.ws5_c02047{word-spacing:-0.021600px;}
.ws0_c02047{word-spacing:-0.007200px;}
.ws2_c02047{word-spacing:0.000000px;}
.ws7_c02047{word-spacing:0.006588px;}
.wsc_c02047{word-spacing:0.013176px;}
.ws1b_c02047{word-spacing:0.021600px;}
.ws9_c02047{word-spacing:0.026352px;}
.ws8_c02047{word-spacing:0.039528px;}
.wsa_c02047{word-spacing:0.046116px;}
.ws11_c02047{word-spacing:0.059292px;}
.ws19_c02047{word-spacing:0.208800px;}
.ws17_c02047{word-spacing:0.273600px;}
.ws18_c02047{word-spacing:0.331200px;}
.ws12_c02047{word-spacing:2.484000px;}
.ws13_c02047{word-spacing:2.491200px;}
.ws14_c02047{word-spacing:2.505600px;}
.wsb_c02047{word-spacing:2.529792px;}
.ws27_c02047{word-spacing:4.039200px;}
.ws25_c02047{word-spacing:4.276800px;}
.ws26_c02047{word-spacing:4.305600px;}
.ws1d_c02047{word-spacing:5.731200px;}
.ws1c_c02047{word-spacing:5.752800px;}
.ws2a_c02047{word-spacing:7.106400px;}
.ws2b_c02047{word-spacing:7.200000px;}
.ws22_c02047{word-spacing:7.336800px;}
.ws24_c02047{word-spacing:7.524000px;}
.ws23_c02047{word-spacing:7.581600px;}
.wsd_c02047{word-spacing:9.743652px;}
.ws10_c02047{word-spacing:11.199600px;}
.ws15_c02047{word-spacing:13.557600px;}
.ws16_c02047{word-spacing:13.658400px;}
.ws28_c02047{word-spacing:16.552800px;}
.ws29_c02047{word-spacing:16.588800px;}
.ws1e_c02047{word-spacing:22.939200px;}
.ws1f_c02047{word-spacing:23.083200px;}
.ws20_c02047{word-spacing:36.583200px;}
.ws21_c02047{word-spacing:36.633600px;}
.wsf_c02047{word-spacing:37.064088px;}
.wse_c02047{word-spacing:37.110204px;}
._7_c02047{margin-left:-2.516616px;}
._1_c02047{margin-left:-1.116000px;}
._3_c02047{width:39.870720px;}
._4_c02047{width:40.950720px;}
._8_c02047{width:49.324356px;}
._2_c02047{width:50.653296px;}
._9_c02047{width:58.679316px;}
._6_c02047{width:68.396616px;}
._0_c02047{width:194.400000px;}
._5_c02047{width:1343.634840px;}
.fc0_c02047{color:rgb(0,0,0);}
.fs2_c02047{font-size:47.880000px;}
.fs3_c02047{font-size:60.120000px;}
.fs1_c02047{font-size:65.880000px;}
.fs0_c02047{font-size:72.000000px;}
.y0_c02047{bottom:0.000000px;}
.y3_c02047{bottom:57.721170px;}
.y2_c02047{bottom:77.880450px;}
.y2f_c02047{bottom:131.610600px;}
.y2e_c02047{bottom:162.660600px;}
.y2d_c02047{bottom:193.710600px;}
.y2c_c02047{bottom:219.900450px;}
.y2b_c02047{bottom:245.460600px;}
.y2a_c02047{bottom:276.510600px;}
.y29_c02047{bottom:307.560600px;}
.y28_c02047{bottom:338.610600px;}
.y27_c02047{bottom:369.660600px;}
.y26_c02047{bottom:400.710600px;}
.y25_c02047{bottom:422.220774px;}
.y24_c02047{bottom:438.150450px;}
.y23_c02047{bottom:463.530450px;}
.y22_c02047{bottom:494.580450px;}
.y21_c02047{bottom:525.630450px;}
.y20_c02047{bottom:556.680450px;}
.y1f_c02047{bottom:583.140450px;}
.y1e_c02047{bottom:608.340450px;}
.y1d_c02047{bottom:629.940450px;}
.y1c_c02047{bottom:647.400009px;}
.y1b_c02047{bottom:669.270522px;}
.y1a_c02047{bottom:691.050450px;}
.y19_c02047{bottom:713.460450px;}
.y18_c02047{bottom:735.060450px;}
.y17_c02047{bottom:752.520009px;}
.y16_c02047{bottom:774.390522px;}
.y15_c02047{bottom:796.170450px;}
.y14_c02047{bottom:818.580450px;}
.y13_c02047{bottom:839.011719px;}
.y12_c02047{bottom:857.911044px;}
.y11_c02047{bottom:876.900954px;}
.y10_c02047{bottom:895.890864px;}
.yf_c02047{bottom:914.880774px;}
.ye_c02047{bottom:933.870684px;}
.yd_c02047{bottom:952.770009px;}
.yc_c02047{bottom:974.640522px;}
.yb_c02047{bottom:996.420450px;}
.ya_c02047{bottom:1016.670450px;}
.y9_c02047{bottom:1034.310450px;}
.y8_c02047{bottom:1054.920450px;}
.y7_c02047{bottom:1074.450450px;}
.y6_c02047{bottom:1092.450450px;}
.y5_c02047{bottom:1116.300450px;}
.y4_c02047{bottom:1140.060450px;}
.y1_c02047{bottom:1193.160450px;}
.h3_c02047{height:43.909277px;}
.h5_c02047{height:46.991602px;}
.h9_c02047{height:48.254063px;}
.h2_c02047{height:54.331699px;}
.h6_c02047{height:59.869687px;}
.h7_c02047{height:64.657617px;}
.h4_c02047{height:70.664062px;}
.h8_c02047{height:70.665826px;}
.h1_c02047{height:72.562500px;}
.h0_c02047{height:1263.000000px;}
.w1_c02047{width:892.500000px;}
.w0_c02047{width:892.830000px;}
.x0_c02047{left:0.000000px;}
.x1_c02047{left:127.620000px;}
.x5_c02047{left:135.630000px;}
.xa_c02047{left:148.950000px;}
.x3_c02047{left:170.190000px;}
.x9_c02047{left:180.720000px;}
.x4_c02047{left:191.430000px;}
.x6_c02047{left:212.670000px;}
.x7_c02047{left:234.000297px;}
.x8_c02047{left:255.240009px;}
.x2_c02047{left:442.350000px;}
@media print{
.v0_c02047{vertical-align:0.000000pt;}
.ls19_c02047{letter-spacing:-0.160320pt;}
.ls1f_c02047{letter-spacing:-0.096000pt;}
.ls1b_c02047{letter-spacing:-0.048096pt;}
.ls1d_c02047{letter-spacing:-0.032000pt;}
.ls1e_c02047{letter-spacing:-0.025600pt;}
.ls1c_c02047{letter-spacing:-0.019200pt;}
.ls17_c02047{letter-spacing:-0.006400pt;}
.ls16_c02047{letter-spacing:0.000000pt;}
.ls0_c02047{letter-spacing:0.006400pt;}
.ls2_c02047{letter-spacing:0.012800pt;}
.ls4_c02047{letter-spacing:0.019200pt;}
.ls11_c02047{letter-spacing:0.025600pt;}
.lsf_c02047{letter-spacing:0.029280pt;}
.ls3_c02047{letter-spacing:0.032000pt;}
.ls13_c02047{letter-spacing:0.038400pt;}
.lsc_c02047{letter-spacing:0.040992pt;}
.ls10_c02047{letter-spacing:0.044800pt;}
.ls9_c02047{letter-spacing:0.046848pt;}
.ls12_c02047{letter-spacing:0.051200pt;}
.lsd_c02047{letter-spacing:0.052704pt;}
.ls15_c02047{letter-spacing:0.057600pt;}
.lsa_c02047{letter-spacing:0.058560pt;}
.ls1_c02047{letter-spacing:0.070272pt;}
.ls8_c02047{letter-spacing:0.076128pt;}
.lsb_c02047{letter-spacing:0.081984pt;}
.ls1a_c02047{letter-spacing:0.085504pt;}
.lse_c02047{letter-spacing:0.093696pt;}
.ls18_c02047{letter-spacing:0.128256pt;}
.ls14_c02047{letter-spacing:14.720000pt;}
.ls6_c02047{letter-spacing:62.160000pt;}
.ls5_c02047{letter-spacing:100.560000pt;}
.ls7_c02047{letter-spacing:1423.120000pt;}
.ws2c_c02047{word-spacing:-0.102400pt;}
.ws6_c02047{word-spacing:-0.089600pt;}
.ws1_c02047{word-spacing:-0.076800pt;}
.ws1a_c02047{word-spacing:-0.064000pt;}
.ws4_c02047{word-spacing:-0.057600pt;}
.ws3_c02047{word-spacing:-0.032000pt;}
.ws5_c02047{word-spacing:-0.019200pt;}
.ws0_c02047{word-spacing:-0.006400pt;}
.ws2_c02047{word-spacing:0.000000pt;}
.ws7_c02047{word-spacing:0.005856pt;}
.wsc_c02047{word-spacing:0.011712pt;}
.ws1b_c02047{word-spacing:0.019200pt;}
.ws9_c02047{word-spacing:0.023424pt;}
.ws8_c02047{word-spacing:0.035136pt;}
.wsa_c02047{word-spacing:0.040992pt;}
.ws11_c02047{word-spacing:0.052704pt;}
.ws19_c02047{word-spacing:0.185600pt;}
.ws17_c02047{word-spacing:0.243200pt;}
.ws18_c02047{word-spacing:0.294400pt;}
.ws12_c02047{word-spacing:2.208000pt;}
.ws13_c02047{word-spacing:2.214400pt;}
.ws14_c02047{word-spacing:2.227200pt;}
.wsb_c02047{word-spacing:2.248704pt;}
.ws27_c02047{word-spacing:3.590400pt;}
.ws25_c02047{word-spacing:3.801600pt;}
.ws26_c02047{word-spacing:3.827200pt;}
.ws1d_c02047{word-spacing:5.094400pt;}
.ws1c_c02047{word-spacing:5.113600pt;}
.ws2a_c02047{word-spacing:6.316800pt;}
.ws2b_c02047{word-spacing:6.400000pt;}
.ws22_c02047{word-spacing:6.521600pt;}
.ws24_c02047{word-spacing:6.688000pt;}
.ws23_c02047{word-spacing:6.739200pt;}
.wsd_c02047{word-spacing:8.661024pt;}
.ws10_c02047{word-spacing:9.955200pt;}
.ws15_c02047{word-spacing:12.051200pt;}
.ws16_c02047{word-spacing:12.140800pt;}
.ws28_c02047{word-spacing:14.713600pt;}
.ws29_c02047{word-spacing:14.745600pt;}
.ws1e_c02047{word-spacing:20.390400pt;}
.ws1f_c02047{word-spacing:20.518400pt;}
.ws20_c02047{word-spacing:32.518400pt;}
.ws21_c02047{word-spacing:32.563200pt;}
.wsf_c02047{word-spacing:32.945856pt;}
.wse_c02047{word-spacing:32.986848pt;}
._7_c02047{margin-left:-2.236992pt;}
._1_c02047{margin-left:-0.992000pt;}
._3_c02047{width:35.440640pt;}
._4_c02047{width:36.400640pt;}
._8_c02047{width:43.843872pt;}
._2_c02047{width:45.025152pt;}
._9_c02047{width:52.159392pt;}
._6_c02047{width:60.796992pt;}
._0_c02047{width:172.800000pt;}
._5_c02047{width:1194.342080pt;}
.fs2_c02047{font-size:42.560000pt;}
.fs3_c02047{font-size:53.440000pt;}
.fs1_c02047{font-size:58.560000pt;}
.fs0_c02047{font-size:64.000000pt;}
.y0_c02047{bottom:0.000000pt;}
.y3_c02047{bottom:51.307707pt;}
.y2_c02047{bottom:69.227067pt;}
.y2f_c02047{bottom:116.987200pt;}
.y2e_c02047{bottom:144.587200pt;}
.y2d_c02047{bottom:172.187200pt;}
.y2c_c02047{bottom:195.467067pt;}
.y2b_c02047{bottom:218.187200pt;}
.y2a_c02047{bottom:245.787200pt;}
.y29_c02047{bottom:273.387200pt;}
.y28_c02047{bottom:300.987200pt;}
.y27_c02047{bottom:328.587200pt;}
.y26_c02047{bottom:356.187200pt;}
.y25_c02047{bottom:375.307355pt;}
.y24_c02047{bottom:389.467067pt;}
.y23_c02047{bottom:412.027067pt;}
.y22_c02047{bottom:439.627067pt;}
.y21_c02047{bottom:467.227067pt;}
.y20_c02047{bottom:494.827067pt;}
.y1f_c02047{bottom:518.347067pt;}
.y1e_c02047{bottom:540.747067pt;}
.y1d_c02047{bottom:559.947067pt;}
.y1c_c02047{bottom:575.466675pt;}
.y1b_c02047{bottom:594.907131pt;}
.y1a_c02047{bottom:614.267067pt;}
.y19_c02047{bottom:634.187067pt;}
.y18_c02047{bottom:653.387067pt;}
.y17_c02047{bottom:668.906675pt;}
.y16_c02047{bottom:688.347131pt;}
.y15_c02047{bottom:707.707067pt;}
.y14_c02047{bottom:727.627067pt;}
.y13_c02047{bottom:745.788195pt;}
.y12_c02047{bottom:762.587595pt;}
.y11_c02047{bottom:779.467515pt;}
.y10_c02047{bottom:796.347435pt;}
.yf_c02047{bottom:813.227355pt;}
.ye_c02047{bottom:830.107275pt;}
.yd_c02047{bottom:846.906675pt;}
.yc_c02047{bottom:866.347131pt;}
.yb_c02047{bottom:885.707067pt;}
.ya_c02047{bottom:903.707067pt;}
.y9_c02047{bottom:919.387067pt;}
.y8_c02047{bottom:937.707067pt;}
.y7_c02047{bottom:955.067067pt;}
.y6_c02047{bottom:971.067067pt;}
.y5_c02047{bottom:992.267067pt;}
.y4_c02047{bottom:1013.387067pt;}
.y1_c02047{bottom:1060.587067pt;}
.h3_c02047{height:39.030469pt;}
.h5_c02047{height:41.770312pt;}
.h9_c02047{height:42.892500pt;}
.h2_c02047{height:48.294844pt;}
.h6_c02047{height:53.217500pt;}
.h7_c02047{height:57.473437pt;}
.h4_c02047{height:62.812500pt;}
.h8_c02047{height:62.814068pt;}
.h1_c02047{height:64.500000pt;}
.h0_c02047{height:1122.666667pt;}
.w1_c02047{width:793.333333pt;}
.w0_c02047{width:793.626667pt;}
.x0_c02047{left:0.000000pt;}
.x1_c02047{left:113.440000pt;}
.x5_c02047{left:120.560000pt;}
.xa_c02047{left:132.400000pt;}
.x3_c02047{left:151.280000pt;}
.x9_c02047{left:160.640000pt;}
.x4_c02047{left:170.160000pt;}
.x6_c02047{left:189.040000pt;}
.x7_c02047{left:208.000264pt;}
.x8_c02047{left:226.880008pt;}
.x2_c02047{left:393.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_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_bea0de8d0850cd725184eeb4.woff2')format("woff");}.ff1_c02048{font-family:ff1_c02048;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02048;src:url('chunks/assets/font_863ee29fe2919617d207b792.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;}
.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;}
.ls1b_c02048{letter-spacing:-0.201600px;}
.ls1a_c02048{letter-spacing:-0.036000px;}
.ls19_c02048{letter-spacing:-0.014400px;}
.ls1c_c02048{letter-spacing:-0.007200px;}
.ls18_c02048{letter-spacing:0.000000px;}
.ls16_c02048{letter-spacing:0.006588px;}
.ls0_c02048{letter-spacing:0.007200px;}
.ls10_c02048{letter-spacing:0.014400px;}
.ls4_c02048{letter-spacing:0.019764px;}
.ls3_c02048{letter-spacing:0.021600px;}
.lsd_c02048{letter-spacing:0.026352px;}
.ls12_c02048{letter-spacing:0.028800px;}
.ls9_c02048{letter-spacing:0.032940px;}
.ls13_c02048{letter-spacing:0.036000px;}
.ls6_c02048{letter-spacing:0.039528px;}
.ls2_c02048{letter-spacing:0.043200px;}
.lsc_c02048{letter-spacing:0.046116px;}
.ls11_c02048{letter-spacing:0.050400px;}
.lsa_c02048{letter-spacing:0.052704px;}
.ls1_c02048{letter-spacing:0.057600px;}
.lse_c02048{letter-spacing:0.059292px;}
.ls5_c02048{letter-spacing:0.065880px;}
.ls8_c02048{letter-spacing:0.072000px;}
.ls7_c02048{letter-spacing:0.072468px;}
.ls15_c02048{letter-spacing:0.079056px;}
.lsb_c02048{letter-spacing:0.085644px;}
.ls17_c02048{letter-spacing:0.092232px;}
.lsf_c02048{letter-spacing:0.115200px;}
.ls14_c02048{letter-spacing:0.131760px;}
.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;}
}
.ws1_c02048{word-spacing:-16.601760px;}
.ws0_c02048{word-spacing:-16.555644px;}
.ws27_c02048{word-spacing:-0.187200px;}
.ws8_c02048{word-spacing:-0.165600px;}
.ws1c_c02048{word-spacing:-0.108000px;}
.ws26_c02048{word-spacing:-0.086400px;}
.ws25_c02048{word-spacing:-0.079200px;}
.ws10_c02048{word-spacing:-0.072000px;}
.ws1b_c02048{word-spacing:-0.028800px;}
.ws2_c02048{word-spacing:-0.021600px;}
.ws14_c02048{word-spacing:-0.014400px;}
.ws5_c02048{word-spacing:-0.007200px;}
.ws3_c02048{word-spacing:0.000000px;}
.ws2f_c02048{word-spacing:0.007200px;}
.ws4_c02048{word-spacing:0.014400px;}
.ws17_c02048{word-spacing:0.032940px;}
.ws9_c02048{word-spacing:0.036000px;}
.ws13_c02048{word-spacing:0.039528px;}
.wsf_c02048{word-spacing:0.052704px;}
.ws12_c02048{word-spacing:0.059292px;}
.ws1a_c02048{word-spacing:0.093600px;}
.wsa_c02048{word-spacing:1.870992px;}
.wsb_c02048{word-spacing:2.905308px;}
.wsc_c02048{word-spacing:2.931660px;}
.ws22_c02048{word-spacing:3.211200px;}
.ws30_c02048{word-spacing:3.247884px;}
.ws31_c02048{word-spacing:3.254472px;}
.ws32_c02048{word-spacing:3.294000px;}
.ws16_c02048{word-spacing:4.025268px;}
.ws20_c02048{word-spacing:4.154400px;}
.ws21_c02048{word-spacing:4.327200px;}
.ws2c_c02048{word-spacing:4.710420px;}
.ws2d_c02048{word-spacing:4.749948px;}
.ws2e_c02048{word-spacing:4.763124px;}
.ws15_c02048{word-spacing:5.085936px;}
.ws18_c02048{word-spacing:6.172956px;}
.ws19_c02048{word-spacing:6.192720px;}
.ws1f_c02048{word-spacing:7.653600px;}
.ws1e_c02048{word-spacing:7.797600px;}
.ws1d_c02048{word-spacing:7.934400px;}
.ws11_c02048{word-spacing:9.789768px;}
.ws29_c02048{word-spacing:9.802944px;}
.ws2b_c02048{word-spacing:11.173248px;}
.ws2a_c02048{word-spacing:11.225952px;}
.ws23_c02048{word-spacing:12.096000px;}
.ws24_c02048{word-spacing:12.153600px;}
.wse_c02048{word-spacing:18.018180px;}
.wsd_c02048{word-spacing:18.090648px;}
.ws28_c02048{word-spacing:19.810116px;}
.ws6_c02048{word-spacing:20.764800px;}
.ws7_c02048{word-spacing:20.836800px;}
._1_c02048{margin-left:-1.051200px;}
._2_c02048{width:1.087020px;}
._3_c02048{width:3.952800px;}
._0_c02048{width:194.421600px;}
.fc0_c02048{color:rgb(0,0,0);}
.fs3_c02048{font-size:11.880000px;}
.fs1_c02048{font-size:47.880000px;}
.fs2_c02048{font-size:65.880000px;}
.fs0_c02048{font-size:72.000000px;}
.y0_c02048{bottom:0.000000px;}
.y3_c02048{bottom:57.360450px;}
.y2_c02048{bottom:78.060450px;}
.y37_c02048{bottom:107.940450px;}
.y36_c02048{bottom:114.330450px;}
.y35_c02048{bottom:128.910450px;}
.y34_c02048{bottom:147.900450px;}
.y33_c02048{bottom:166.890450px;}
.y32_c02048{bottom:184.710600px;}
.y31_c02048{bottom:199.830450px;}
.y30_c02048{bottom:221.160450px;}
.y2f_c02048{bottom:240.060450px;}
.y2e_c02048{bottom:259.050450px;}
.y2d_c02048{bottom:278.040450px;}
.y2c_c02048{bottom:297.030450px;}
.y2b_c02048{bottom:316.020450px;}
.y2a_c02048{bottom:333.840450px;}
.y29_c02048{bottom:348.960600px;}
.y28_c02048{bottom:380.910450px;}
.y27_c02048{bottom:411.960450px;}
.y26_c02048{bottom:443.010450px;}
.y25_c02048{bottom:474.060450px;}
.y24_c02048{bottom:505.110450px;}
.y23_c02048{bottom:536.160450px;}
.y22_c02048{bottom:567.210450px;}
.y21_c02048{bottom:586.650450px;}
.y20_c02048{bottom:601.230450px;}
.y1f_c02048{bottom:615.900450px;}
.y1e_c02048{bottom:634.890450px;}
.y1d_c02048{bottom:652.980450px;}
.y1c_c02048{bottom:667.650450px;}
.y1b_c02048{bottom:686.640450px;}
.y1a_c02048{bottom:704.730450px;}
.y19_c02048{bottom:719.400450px;}
.y18_c02048{bottom:738.390450px;}
.y17_c02048{bottom:756.210450px;}
.y16_c02048{bottom:771.330450px;}
.y15_c02048{bottom:791.670450px;}
.y14_c02048{bottom:806.340450px;}
.y13_c02048{bottom:825.330450px;}
.y12_c02048{bottom:843.150450px;}
.y11_c02048{bottom:858.270450px;}
.y10_c02048{bottom:878.700450px;}
.yf_c02048{bottom:893.370450px;}
.ye_c02048{bottom:912.360450px;}
.yd_c02048{bottom:931.350450px;}
.yc_c02048{bottom:950.250450px;}
.yb_c02048{bottom:968.160450px;}
.ya_c02048{bottom:983.280450px;}
.y9_c02048{bottom:1004.700450px;}
.y8_c02048{bottom:1036.650450px;}
.y7_c02048{bottom:1067.700450px;}
.y6_c02048{bottom:1088.400450px;}
.y5_c02048{bottom:1108.920450px;}
.y4_c02048{bottom:1139.970450px;}
.y1_c02048{bottom:1193.160450px;}
.h7_c02048{height:10.424004px;}
.h5_c02048{height:42.011895px;}
.h3_c02048{height:42.526230px;}
.h4_c02048{height:57.805840px;}
.h6_c02048{height:58.513535px;}
.h2_c02048{height:63.175781px;}
.h1_c02048{height:63.949219px;}
.h0_c02048{height:1263.000000px;}
.w1_c02048{width:892.500000px;}
.w0_c02048{width:892.830000px;}
.x0_c02048{left:0.000000px;}
.x1_c02048{left:127.620000px;}
.x6_c02048{left:130.140000px;}
.x5_c02048{left:148.950000px;}
.x4_c02048{left:289.800000px;}
.x3_c02048{left:406.260000px;}
.x2_c02048{left:441.990000px;}
@media print{
.v0_c02048{vertical-align:0.000000pt;}
.ls1b_c02048{letter-spacing:-0.179200pt;}
.ls1a_c02048{letter-spacing:-0.032000pt;}
.ls19_c02048{letter-spacing:-0.012800pt;}
.ls1c_c02048{letter-spacing:-0.006400pt;}
.ls18_c02048{letter-spacing:0.000000pt;}
.ls16_c02048{letter-spacing:0.005856pt;}
.ls0_c02048{letter-spacing:0.006400pt;}
.ls10_c02048{letter-spacing:0.012800pt;}
.ls4_c02048{letter-spacing:0.017568pt;}
.ls3_c02048{letter-spacing:0.019200pt;}
.lsd_c02048{letter-spacing:0.023424pt;}
.ls12_c02048{letter-spacing:0.025600pt;}
.ls9_c02048{letter-spacing:0.029280pt;}
.ls13_c02048{letter-spacing:0.032000pt;}
.ls6_c02048{letter-spacing:0.035136pt;}
.ls2_c02048{letter-spacing:0.038400pt;}
.lsc_c02048{letter-spacing:0.040992pt;}
.ls11_c02048{letter-spacing:0.044800pt;}
.lsa_c02048{letter-spacing:0.046848pt;}
.ls1_c02048{letter-spacing:0.051200pt;}
.lse_c02048{letter-spacing:0.052704pt;}
.ls5_c02048{letter-spacing:0.058560pt;}
.ls8_c02048{letter-spacing:0.064000pt;}
.ls7_c02048{letter-spacing:0.064416pt;}
.ls15_c02048{letter-spacing:0.070272pt;}
.lsb_c02048{letter-spacing:0.076128pt;}
.ls17_c02048{letter-spacing:0.081984pt;}
.lsf_c02048{letter-spacing:0.102400pt;}
.ls14_c02048{letter-spacing:0.117120pt;}
.ws1_c02048{word-spacing:-14.757120pt;}
.ws0_c02048{word-spacing:-14.716128pt;}
.ws27_c02048{word-spacing:-0.166400pt;}
.ws8_c02048{word-spacing:-0.147200pt;}
.ws1c_c02048{word-spacing:-0.096000pt;}
.ws26_c02048{word-spacing:-0.076800pt;}
.ws25_c02048{word-spacing:-0.070400pt;}
.ws10_c02048{word-spacing:-0.064000pt;}
.ws1b_c02048{word-spacing:-0.025600pt;}
.ws2_c02048{word-spacing:-0.019200pt;}
.ws14_c02048{word-spacing:-0.012800pt;}
.ws5_c02048{word-spacing:-0.006400pt;}
.ws3_c02048{word-spacing:0.000000pt;}
.ws2f_c02048{word-spacing:0.006400pt;}
.ws4_c02048{word-spacing:0.012800pt;}
.ws17_c02048{word-spacing:0.029280pt;}
.ws9_c02048{word-spacing:0.032000pt;}
.ws13_c02048{word-spacing:0.035136pt;}
.wsf_c02048{word-spacing:0.046848pt;}
.ws12_c02048{word-spacing:0.052704pt;}
.ws1a_c02048{word-spacing:0.083200pt;}
.wsa_c02048{word-spacing:1.663104pt;}
.wsb_c02048{word-spacing:2.582496pt;}
.wsc_c02048{word-spacing:2.605920pt;}
.ws22_c02048{word-spacing:2.854400pt;}
.ws30_c02048{word-spacing:2.887008pt;}
.ws31_c02048{word-spacing:2.892864pt;}
.ws32_c02048{word-spacing:2.928000pt;}
.ws16_c02048{word-spacing:3.578016pt;}
.ws20_c02048{word-spacing:3.692800pt;}
.ws21_c02048{word-spacing:3.846400pt;}
.ws2c_c02048{word-spacing:4.187040pt;}
.ws2d_c02048{word-spacing:4.222176pt;}
.ws2e_c02048{word-spacing:4.233888pt;}
.ws15_c02048{word-spacing:4.520832pt;}
.ws18_c02048{word-spacing:5.487072pt;}
.ws19_c02048{word-spacing:5.504640pt;}
.ws1f_c02048{word-spacing:6.803200pt;}
.ws1e_c02048{word-spacing:6.931200pt;}
.ws1d_c02048{word-spacing:7.052800pt;}
.ws11_c02048{word-spacing:8.702016pt;}
.ws29_c02048{word-spacing:8.713728pt;}
.ws2b_c02048{word-spacing:9.931776pt;}
.ws2a_c02048{word-spacing:9.978624pt;}
.ws23_c02048{word-spacing:10.752000pt;}
.ws24_c02048{word-spacing:10.803200pt;}
.wse_c02048{word-spacing:16.016160pt;}
.wsd_c02048{word-spacing:16.080576pt;}
.ws28_c02048{word-spacing:17.608992pt;}
.ws6_c02048{word-spacing:18.457600pt;}
.ws7_c02048{word-spacing:18.521600pt;}
._1_c02048{margin-left:-0.934400pt;}
._2_c02048{width:0.966240pt;}
._3_c02048{width:3.513600pt;}
._0_c02048{width:172.819200pt;}
.fs3_c02048{font-size:10.560000pt;}
.fs1_c02048{font-size:42.560000pt;}
.fs2_c02048{font-size:58.560000pt;}
.fs0_c02048{font-size:64.000000pt;}
.y0_c02048{bottom:0.000000pt;}
.y3_c02048{bottom:50.987067pt;}
.y2_c02048{bottom:69.387067pt;}
.y37_c02048{bottom:95.947067pt;}
.y36_c02048{bottom:101.627067pt;}
.y35_c02048{bottom:114.587067pt;}
.y34_c02048{bottom:131.467067pt;}
.y33_c02048{bottom:148.347067pt;}
.y32_c02048{bottom:164.187200pt;}
.y31_c02048{bottom:177.627067pt;}
.y30_c02048{bottom:196.587067pt;}
.y2f_c02048{bottom:213.387067pt;}
.y2e_c02048{bottom:230.267067pt;}
.y2d_c02048{bottom:247.147067pt;}
.y2c_c02048{bottom:264.027067pt;}
.y2b_c02048{bottom:280.907067pt;}
.y2a_c02048{bottom:296.747067pt;}
.y29_c02048{bottom:310.187200pt;}
.y28_c02048{bottom:338.587067pt;}
.y27_c02048{bottom:366.187067pt;}
.y26_c02048{bottom:393.787067pt;}
.y25_c02048{bottom:421.387067pt;}
.y24_c02048{bottom:448.987067pt;}
.y23_c02048{bottom:476.587067pt;}
.y22_c02048{bottom:504.187067pt;}
.y21_c02048{bottom:521.467067pt;}
.y20_c02048{bottom:534.427067pt;}
.y1f_c02048{bottom:547.467067pt;}
.y1e_c02048{bottom:564.347067pt;}
.y1d_c02048{bottom:580.427067pt;}
.y1c_c02048{bottom:593.467067pt;}
.y1b_c02048{bottom:610.347067pt;}
.y1a_c02048{bottom:626.427067pt;}
.y19_c02048{bottom:639.467067pt;}
.y18_c02048{bottom:656.347067pt;}
.y17_c02048{bottom:672.187067pt;}
.y16_c02048{bottom:685.627067pt;}
.y15_c02048{bottom:703.707067pt;}
.y14_c02048{bottom:716.747067pt;}
.y13_c02048{bottom:733.627067pt;}
.y12_c02048{bottom:749.467067pt;}
.y11_c02048{bottom:762.907067pt;}
.y10_c02048{bottom:781.067067pt;}
.yf_c02048{bottom:794.107067pt;}
.ye_c02048{bottom:810.987067pt;}
.yd_c02048{bottom:827.867067pt;}
.yc_c02048{bottom:844.667067pt;}
.yb_c02048{bottom:860.587067pt;}
.ya_c02048{bottom:874.027067pt;}
.y9_c02048{bottom:893.067067pt;}
.y8_c02048{bottom:921.467067pt;}
.y7_c02048{bottom:949.067067pt;}
.y6_c02048{bottom:967.467067pt;}
.y5_c02048{bottom:985.707067pt;}
.y4_c02048{bottom:1013.307067pt;}
.y1_c02048{bottom:1060.587067pt;}
.h7_c02048{height:9.265781pt;}
.h5_c02048{height:37.343906pt;}
.h3_c02048{height:37.801094pt;}
.h4_c02048{height:51.382969pt;}
.h6_c02048{height:52.012031pt;}
.h2_c02048{height:56.156250pt;}
.h1_c02048{height:56.843750pt;}
.h0_c02048{height:1122.666667pt;}
.w1_c02048{width:793.333333pt;}
.w0_c02048{width:793.626667pt;}
.x0_c02048{left:0.000000pt;}
.x1_c02048{left:113.440000pt;}
.x6_c02048{left:115.680000pt;}
.x5_c02048{left:132.400000pt;}
.x4_c02048{left:257.600000pt;}
.x3_c02048{left:361.120000pt;}
.x2_c02048{left:392.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_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_bde3972ef3fe2fc8f4e79535.woff2')format("woff");}.ff1_c02049{font-family:ff1_c02049;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02049;src:url('chunks/assets/font_aee60be2b033f2d281cf810d.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;}
.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;}
.ls1a_c02049{letter-spacing:-0.090972px;}
.ls1c_c02049{letter-spacing:-0.028800px;}
.ls18_c02049{letter-spacing:-0.014400px;}
.ls19_c02049{letter-spacing:-0.007200px;}
.ls1b_c02049{letter-spacing:-0.006588px;}
.ls17_c02049{letter-spacing:0.000000px;}
.ls1_c02049{letter-spacing:0.007200px;}
.ls12_c02049{letter-spacing:0.013176px;}
.ls2_c02049{letter-spacing:0.014400px;}
.ls13_c02049{letter-spacing:0.019764px;}
.lsc_c02049{letter-spacing:0.021600px;}
.lsa_c02049{letter-spacing:0.026352px;}
.ls14_c02049{letter-spacing:0.028800px;}
.ls7_c02049{letter-spacing:0.032940px;}
.ls15_c02049{letter-spacing:0.036000px;}
.ls5_c02049{letter-spacing:0.039528px;}
.ls3_c02049{letter-spacing:0.043200px;}
.ls16_c02049{letter-spacing:0.050400px;}
.ls6_c02049{letter-spacing:0.052704px;}
.ls11_c02049{letter-spacing:0.059292px;}
.lsf_c02049{letter-spacing:0.065880px;}
.ls0_c02049{letter-spacing:0.072000px;}
.ls8_c02049{letter-spacing:0.072468px;}
.ls9_c02049{letter-spacing:0.079056px;}
.lsd_c02049{letter-spacing:0.079200px;}
.ls10_c02049{letter-spacing:0.085644px;}
.lse_c02049{letter-spacing:0.105408px;}
.lsb_c02049{letter-spacing:0.115200px;}
.ls4_c02049{letter-spacing:0.131760px;}
.sc__c02049{text-shadow:none;}
.sc0_c02049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02049{-webkit-text-stroke:0px transparent;}
.sc0_c02049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02049{word-spacing:-16.601760px;}
.wsb_c02049{word-spacing:-0.266400px;}
.wsf_c02049{word-spacing:-0.187200px;}
.ws2b_c02049{word-spacing:-0.136800px;}
.ws18_c02049{word-spacing:-0.079200px;}
.ws21_c02049{word-spacing:-0.028800px;}
.ws1_c02049{word-spacing:-0.021600px;}
.wsa_c02049{word-spacing:-0.007200px;}
.ws2_c02049{word-spacing:0.000000px;}
.ws17_c02049{word-spacing:0.007200px;}
.ws11_c02049{word-spacing:0.013176px;}
.ws10_c02049{word-spacing:0.019764px;}
.ws24_c02049{word-spacing:0.026352px;}
.wse_c02049{word-spacing:0.059292px;}
.ws12_c02049{word-spacing:0.065880px;}
.ws20_c02049{word-spacing:0.072468px;}
.ws1f_c02049{word-spacing:0.079056px;}
.ws23_c02049{word-spacing:0.342576px;}
.ws22_c02049{word-spacing:0.415044px;}
.ws25_c02049{word-spacing:0.454572px;}
.ws1a_c02049{word-spacing:2.147688px;}
.ws19_c02049{word-spacing:2.174040px;}
.ws14_c02049{word-spacing:2.800800px;}
.ws15_c02049{word-spacing:2.836800px;}
.ws13_c02049{word-spacing:2.858400px;}
.ws1d_c02049{word-spacing:4.334904px;}
.ws1e_c02049{word-spacing:4.348080px;}
.ws8_c02049{word-spacing:4.665600px;}
.ws9_c02049{word-spacing:4.680000px;}
.ws27_c02049{word-spacing:5.066172px;}
.ws26_c02049{word-spacing:5.099112px;}
.ws7_c02049{word-spacing:5.594400px;}
.ws6_c02049{word-spacing:5.716800px;}
.ws5_c02049{word-spacing:5.745600px;}
.ws16_c02049{word-spacing:7.156800px;}
.ws2a_c02049{word-spacing:9.964800px;}
.ws29_c02049{word-spacing:10.008000px;}
.ws28_c02049{word-spacing:10.044000px;}
.ws1c_c02049{word-spacing:13.683276px;}
.ws1b_c02049{word-spacing:13.703040px;}
.wsd_c02049{word-spacing:15.514740px;}
.wsc_c02049{word-spacing:15.527916px;}
.ws3_c02049{word-spacing:17.812800px;}
.ws4_c02049{word-spacing:17.920800px;}
._1_c02049{margin-left:-1.584000px;}
._2_c02049{width:1.108800px;}
._3_c02049{width:2.750400px;}
._0_c02049{width:194.421600px;}
.fc0_c02049{color:rgb(0,0,0);}
.fs1_c02049{font-size:47.880000px;}
.fs2_c02049{font-size:65.880000px;}
.fs0_c02049{font-size:72.000000px;}
.y0_c02049{bottom:0.000000px;}
.y3_c02049{bottom:57.360450px;}
.y2_c02049{bottom:78.060450px;}
.y36_c02049{bottom:123.240450px;}
.y35_c02049{bottom:143.940450px;}
.y34_c02049{bottom:174.990450px;}
.y33_c02049{bottom:206.220450px;}
.y32_c02049{bottom:237.270450px;}
.y31_c02049{bottom:268.320450px;}
.y30_c02049{bottom:287.490162px;}
.y2f_c02049{bottom:301.260450px;}
.y2e_c02049{bottom:316.110450px;}
.y2d_c02049{bottom:330.780450px;}
.y2c_c02049{bottom:349.770450px;}
.y2b_c02049{bottom:367.590450px;}
.y2a_c02049{bottom:382.710600px;}
.y29_c02049{bottom:403.140450px;}
.y28_c02049{bottom:417.720450px;}
.y27_c02049{bottom:436.710600px;}
.y26_c02049{bottom:455.700600px;}
.y25_c02049{bottom:473.520600px;}
.y24_c02049{bottom:488.640450px;}
.y23_c02049{bottom:509.070450px;}
.y22_c02049{bottom:523.740450px;}
.y21_c02049{bottom:542.730450px;}
.y20_c02049{bottom:561.630450px;}
.y1f_c02049{bottom:580.620450px;}
.y1e_c02049{bottom:599.790450px;}
.y1d_c02049{bottom:620.220450px;}
.y1c_c02049{bottom:634.890450px;}
.y1b_c02049{bottom:653.790450px;}
.y1a_c02049{bottom:672.780450px;}
.y19_c02049{bottom:690.690450px;}
.y18_c02049{bottom:705.810450px;}
.y17_c02049{bottom:726.150450px;}
.y16_c02049{bottom:751.530450px;}
.y15_c02049{bottom:782.580450px;}
.y14_c02049{bottom:813.630450px;}
.y13_c02049{bottom:833.070450px;}
.y12_c02049{bottom:847.650450px;}
.y11_c02049{bottom:862.320450px;}
.y10_c02049{bottom:881.310450px;}
.yf_c02049{bottom:899.130450px;}
.ye_c02049{bottom:914.250450px;}
.yd_c02049{bottom:934.680450px;}
.yc_c02049{bottom:949.350450px;}
.yb_c02049{bottom:968.250450px;}
.ya_c02049{bottom:986.160450px;}
.y9_c02049{bottom:1001.280450px;}
.y8_c02049{bottom:1021.620450px;}
.y7_c02049{bottom:1047.000450px;}
.y6_c02049{bottom:1078.050450px;}
.y5_c02049{bottom:1109.100450px;}
.y4_c02049{bottom:1140.150450px;}
.y1_c02049{bottom:1193.160450px;}
.h3_c02049{height:42.011895px;}
.h4_c02049{height:42.526230px;}
.h6_c02049{height:57.805840px;}
.h5_c02049{height:58.513535px;}
.h2_c02049{height:63.175781px;}
.h1_c02049{height:63.949219px;}
.h0_c02049{height:1263.000000px;}
.w1_c02049{width:892.500000px;}
.w0_c02049{width:892.830000px;}
.x0_c02049{left:0.000000px;}
.x1_c02049{left:127.620000px;}
.x3_c02049{left:148.950000px;}
.x2_c02049{left:437.490000px;}
@media print{
.v0_c02049{vertical-align:0.000000pt;}
.ls1a_c02049{letter-spacing:-0.080864pt;}
.ls1c_c02049{letter-spacing:-0.025600pt;}
.ls18_c02049{letter-spacing:-0.012800pt;}
.ls19_c02049{letter-spacing:-0.006400pt;}
.ls1b_c02049{letter-spacing:-0.005856pt;}
.ls17_c02049{letter-spacing:0.000000pt;}
.ls1_c02049{letter-spacing:0.006400pt;}
.ls12_c02049{letter-spacing:0.011712pt;}
.ls2_c02049{letter-spacing:0.012800pt;}
.ls13_c02049{letter-spacing:0.017568pt;}
.lsc_c02049{letter-spacing:0.019200pt;}
.lsa_c02049{letter-spacing:0.023424pt;}
.ls14_c02049{letter-spacing:0.025600pt;}
.ls7_c02049{letter-spacing:0.029280pt;}
.ls15_c02049{letter-spacing:0.032000pt;}
.ls5_c02049{letter-spacing:0.035136pt;}
.ls3_c02049{letter-spacing:0.038400pt;}
.ls16_c02049{letter-spacing:0.044800pt;}
.ls6_c02049{letter-spacing:0.046848pt;}
.ls11_c02049{letter-spacing:0.052704pt;}
.lsf_c02049{letter-spacing:0.058560pt;}
.ls0_c02049{letter-spacing:0.064000pt;}
.ls8_c02049{letter-spacing:0.064416pt;}
.ls9_c02049{letter-spacing:0.070272pt;}
.lsd_c02049{letter-spacing:0.070400pt;}
.ls10_c02049{letter-spacing:0.076128pt;}
.lse_c02049{letter-spacing:0.093696pt;}
.lsb_c02049{letter-spacing:0.102400pt;}
.ls4_c02049{letter-spacing:0.117120pt;}
.ws0_c02049{word-spacing:-14.757120pt;}
.wsb_c02049{word-spacing:-0.236800pt;}
.wsf_c02049{word-spacing:-0.166400pt;}
.ws2b_c02049{word-spacing:-0.121600pt;}
.ws18_c02049{word-spacing:-0.070400pt;}
.ws21_c02049{word-spacing:-0.025600pt;}
.ws1_c02049{word-spacing:-0.019200pt;}
.wsa_c02049{word-spacing:-0.006400pt;}
.ws2_c02049{word-spacing:0.000000pt;}
.ws17_c02049{word-spacing:0.006400pt;}
.ws11_c02049{word-spacing:0.011712pt;}
.ws10_c02049{word-spacing:0.017568pt;}
.ws24_c02049{word-spacing:0.023424pt;}
.wse_c02049{word-spacing:0.052704pt;}
.ws12_c02049{word-spacing:0.058560pt;}
.ws20_c02049{word-spacing:0.064416pt;}
.ws1f_c02049{word-spacing:0.070272pt;}
.ws23_c02049{word-spacing:0.304512pt;}
.ws22_c02049{word-spacing:0.368928pt;}
.ws25_c02049{word-spacing:0.404064pt;}
.ws1a_c02049{word-spacing:1.909056pt;}
.ws19_c02049{word-spacing:1.932480pt;}
.ws14_c02049{word-spacing:2.489600pt;}
.ws15_c02049{word-spacing:2.521600pt;}
.ws13_c02049{word-spacing:2.540800pt;}
.ws1d_c02049{word-spacing:3.853248pt;}
.ws1e_c02049{word-spacing:3.864960pt;}
.ws8_c02049{word-spacing:4.147200pt;}
.ws9_c02049{word-spacing:4.160000pt;}
.ws27_c02049{word-spacing:4.503264pt;}
.ws26_c02049{word-spacing:4.532544pt;}
.ws7_c02049{word-spacing:4.972800pt;}
.ws6_c02049{word-spacing:5.081600pt;}
.ws5_c02049{word-spacing:5.107200pt;}
.ws16_c02049{word-spacing:6.361600pt;}
.ws2a_c02049{word-spacing:8.857600pt;}
.ws29_c02049{word-spacing:8.896000pt;}
.ws28_c02049{word-spacing:8.928000pt;}
.ws1c_c02049{word-spacing:12.162912pt;}
.ws1b_c02049{word-spacing:12.180480pt;}
.wsd_c02049{word-spacing:13.790880pt;}
.wsc_c02049{word-spacing:13.802592pt;}
.ws3_c02049{word-spacing:15.833600pt;}
.ws4_c02049{word-spacing:15.929600pt;}
._1_c02049{margin-left:-1.408000pt;}
._2_c02049{width:0.985600pt;}
._3_c02049{width:2.444800pt;}
._0_c02049{width:172.819200pt;}
.fs1_c02049{font-size:42.560000pt;}
.fs2_c02049{font-size:58.560000pt;}
.fs0_c02049{font-size:64.000000pt;}
.y0_c02049{bottom:0.000000pt;}
.y3_c02049{bottom:50.987067pt;}
.y2_c02049{bottom:69.387067pt;}
.y36_c02049{bottom:109.547067pt;}
.y35_c02049{bottom:127.947067pt;}
.y34_c02049{bottom:155.547067pt;}
.y33_c02049{bottom:183.307067pt;}
.y32_c02049{bottom:210.907067pt;}
.y31_c02049{bottom:238.507067pt;}
.y30_c02049{bottom:255.546811pt;}
.y2f_c02049{bottom:267.787067pt;}
.y2e_c02049{bottom:280.987067pt;}
.y2d_c02049{bottom:294.027067pt;}
.y2c_c02049{bottom:310.907067pt;}
.y2b_c02049{bottom:326.747067pt;}
.y2a_c02049{bottom:340.187200pt;}
.y29_c02049{bottom:358.347067pt;}
.y28_c02049{bottom:371.307067pt;}
.y27_c02049{bottom:388.187200pt;}
.y26_c02049{bottom:405.067200pt;}
.y25_c02049{bottom:420.907200pt;}
.y24_c02049{bottom:434.347067pt;}
.y23_c02049{bottom:452.507067pt;}
.y22_c02049{bottom:465.547067pt;}
.y21_c02049{bottom:482.427067pt;}
.y20_c02049{bottom:499.227067pt;}
.y1f_c02049{bottom:516.107067pt;}
.y1e_c02049{bottom:533.147067pt;}
.y1d_c02049{bottom:551.307067pt;}
.y1c_c02049{bottom:564.347067pt;}
.y1b_c02049{bottom:581.147067pt;}
.y1a_c02049{bottom:598.027067pt;}
.y19_c02049{bottom:613.947067pt;}
.y18_c02049{bottom:627.387067pt;}
.y17_c02049{bottom:645.467067pt;}
.y16_c02049{bottom:668.027067pt;}
.y15_c02049{bottom:695.627067pt;}
.y14_c02049{bottom:723.227067pt;}
.y13_c02049{bottom:740.507067pt;}
.y12_c02049{bottom:753.467067pt;}
.y11_c02049{bottom:766.507067pt;}
.y10_c02049{bottom:783.387067pt;}
.yf_c02049{bottom:799.227067pt;}
.ye_c02049{bottom:812.667067pt;}
.yd_c02049{bottom:830.827067pt;}
.yc_c02049{bottom:843.867067pt;}
.yb_c02049{bottom:860.667067pt;}
.ya_c02049{bottom:876.587067pt;}
.y9_c02049{bottom:890.027067pt;}
.y8_c02049{bottom:908.107067pt;}
.y7_c02049{bottom:930.667067pt;}
.y6_c02049{bottom:958.267067pt;}
.y5_c02049{bottom:985.867067pt;}
.y4_c02049{bottom:1013.467067pt;}
.y1_c02049{bottom:1060.587067pt;}
.h3_c02049{height:37.343906pt;}
.h4_c02049{height:37.801094pt;}
.h6_c02049{height:51.382969pt;}
.h5_c02049{height:52.012031pt;}
.h2_c02049{height:56.156250pt;}
.h1_c02049{height:56.843750pt;}
.h0_c02049{height:1122.666667pt;}
.w1_c02049{width:793.333333pt;}
.w0_c02049{width:793.626667pt;}
.x0_c02049{left:0.000000pt;}
.x1_c02049{left:113.440000pt;}
.x3_c02049{left:132.400000pt;}
.x2_c02049{left:388.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_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_9106ac5c1d0e969f067c4a91.woff2')format("woff");}.ff1_c02050{font-family:ff1_c02050;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02050;src:url('chunks/assets/font_283947b3d11a6fee57c2ad9c.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;}
.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;}
.lsc_c02050{letter-spacing:-0.021600px;}
.lsb_c02050{letter-spacing:-0.007200px;}
.lsa_c02050{letter-spacing:0.000000px;}
.ls0_c02050{letter-spacing:0.007200px;}
.ls5_c02050{letter-spacing:0.014400px;}
.ls4_c02050{letter-spacing:0.021600px;}
.ls3_c02050{letter-spacing:0.036000px;}
.ls2_c02050{letter-spacing:0.043200px;}
.ls6_c02050{letter-spacing:0.050400px;}
.ls1_c02050{letter-spacing:0.057600px;}
.ls9_c02050{letter-spacing:0.072000px;}
.ls8_c02050{letter-spacing:0.079200px;}
.ls7_c02050{letter-spacing:0.100800px;}
.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;}
}
.ws15_c02050{word-spacing:-0.460800px;}
.ws3_c02050{word-spacing:-0.244800px;}
.ws1c_c02050{word-spacing:-0.057600px;}
.ws23_c02050{word-spacing:-0.050400px;}
.ws0_c02050{word-spacing:-0.021600px;}
.ws2_c02050{word-spacing:-0.014400px;}
.ws2a_c02050{word-spacing:-0.007200px;}
.ws1_c02050{word-spacing:0.000000px;}
.ws4_c02050{word-spacing:0.007200px;}
.ws24_c02050{word-spacing:0.108000px;}
.ws5_c02050{word-spacing:0.316800px;}
.ws1f_c02050{word-spacing:1.980000px;}
.ws11_c02050{word-spacing:2.052000px;}
.ws12_c02050{word-spacing:2.066400px;}
.ws20_c02050{word-spacing:2.080800px;}
.ws10_c02050{word-spacing:4.377600px;}
.wsf_c02050{word-spacing:4.658400px;}
.ws9_c02050{word-spacing:5.364000px;}
.ws8_c02050{word-spacing:5.400000px;}
.ws1e_c02050{word-spacing:5.601600px;}
.ws1d_c02050{word-spacing:5.680800px;}
.ws6_c02050{word-spacing:6.004800px;}
.ws7_c02050{word-spacing:6.076800px;}
.ws22_c02050{word-spacing:6.314400px;}
.ws14_c02050{word-spacing:6.386400px;}
.ws21_c02050{word-spacing:6.408000px;}
.ws13_c02050{word-spacing:6.458400px;}
.wsa_c02050{word-spacing:8.834400px;}
.wsc_c02050{word-spacing:8.978400px;}
.wsb_c02050{word-spacing:8.992800px;}
.ws28_c02050{word-spacing:10.656000px;}
.ws29_c02050{word-spacing:10.785600px;}
.wsd_c02050{word-spacing:11.865600px;}
.ws17_c02050{word-spacing:12.204000px;}
.ws1a_c02050{word-spacing:13.543200px;}
.ws1b_c02050{word-spacing:13.579200px;}
.ws26_c02050{word-spacing:18.057600px;}
.ws27_c02050{word-spacing:18.302400px;}
.wse_c02050{word-spacing:29.498400px;}
.ws18_c02050{word-spacing:35.964000px;}
.ws19_c02050{word-spacing:36.007200px;}
.ws25_c02050{word-spacing:38.138400px;}
.ws16_c02050{word-spacing:41.745600px;}
._2_c02050{margin-left:-1.555200px;}
._1_c02050{width:1.051200px;}
._0_c02050{width:194.421600px;}
.fc0_c02050{color:rgb(0,0,0);}
.fs1_c02050{font-size:47.880000px;}
.fs0_c02050{font-size:72.000000px;}
.y0_c02050{bottom:0.000000px;}
.y3_c02050{bottom:57.360450px;}
.y2_c02050{bottom:78.060450px;}
.y29_c02050{bottom:122.340450px;}
.y28_c02050{bottom:143.040450px;}
.y27_c02050{bottom:163.740450px;}
.y26_c02050{bottom:184.440450px;}
.y25_c02050{bottom:205.140450px;}
.y24_c02050{bottom:225.840450px;}
.y23_c02050{bottom:246.540450px;}
.y22_c02050{bottom:267.240450px;}
.y21_c02050{bottom:287.940450px;}
.y20_c02050{bottom:307.560450px;}
.y1f_c02050{bottom:332.760600px;}
.y1e_c02050{bottom:363.810600px;}
.y1d_c02050{bottom:394.860600px;}
.y1c_c02050{bottom:426.090600px;}
.y1b_c02050{bottom:452.550450px;}
.y1a_c02050{bottom:477.840450px;}
.y19_c02050{bottom:508.890450px;}
.y18_c02050{bottom:539.940450px;}
.y17_c02050{bottom:570.990450px;}
.y16_c02050{bottom:597.450450px;}
.y15_c02050{bottom:622.560450px;}
.y14_c02050{bottom:653.610450px;}
.y13_c02050{bottom:684.660450px;}
.y12_c02050{bottom:715.710450px;}
.y11_c02050{bottom:746.760450px;}
.y10_c02050{bottom:773.400450px;}
.yf_c02050{bottom:798.600450px;}
.ye_c02050{bottom:829.650450px;}
.yd_c02050{bottom:860.700450px;}
.yc_c02050{bottom:891.750450px;}
.yb_c02050{bottom:922.800450px;}
.ya_c02050{bottom:953.850450px;}
.y9_c02050{bottom:984.900450px;}
.y8_c02050{bottom:1015.950450px;}
.y7_c02050{bottom:1047.000450px;}
.y6_c02050{bottom:1078.050450px;}
.y5_c02050{bottom:1108.920450px;}
.y4_c02050{bottom:1139.970450px;}
.y1_c02050{bottom:1193.160450px;}
.h3_c02050{height:42.011895px;}
.h2_c02050{height:63.175781px;}
.h1_c02050{height:63.949219px;}
.h0_c02050{height:1263.000000px;}
.w1_c02050{width:892.500000px;}
.w0_c02050{width:892.830000px;}
.x0_c02050{left:0.000000px;}
.x1_c02050{left:127.620000px;}
.x3_c02050{left:148.950000px;}
.x2_c02050{left:437.490000px;}
@media print{
.v0_c02050{vertical-align:0.000000pt;}
.lsc_c02050{letter-spacing:-0.019200pt;}
.lsb_c02050{letter-spacing:-0.006400pt;}
.lsa_c02050{letter-spacing:0.000000pt;}
.ls0_c02050{letter-spacing:0.006400pt;}
.ls5_c02050{letter-spacing:0.012800pt;}
.ls4_c02050{letter-spacing:0.019200pt;}
.ls3_c02050{letter-spacing:0.032000pt;}
.ls2_c02050{letter-spacing:0.038400pt;}
.ls6_c02050{letter-spacing:0.044800pt;}
.ls1_c02050{letter-spacing:0.051200pt;}
.ls9_c02050{letter-spacing:0.064000pt;}
.ls8_c02050{letter-spacing:0.070400pt;}
.ls7_c02050{letter-spacing:0.089600pt;}
.ws15_c02050{word-spacing:-0.409600pt;}
.ws3_c02050{word-spacing:-0.217600pt;}
.ws1c_c02050{word-spacing:-0.051200pt;}
.ws23_c02050{word-spacing:-0.044800pt;}
.ws0_c02050{word-spacing:-0.019200pt;}
.ws2_c02050{word-spacing:-0.012800pt;}
.ws2a_c02050{word-spacing:-0.006400pt;}
.ws1_c02050{word-spacing:0.000000pt;}
.ws4_c02050{word-spacing:0.006400pt;}
.ws24_c02050{word-spacing:0.096000pt;}
.ws5_c02050{word-spacing:0.281600pt;}
.ws1f_c02050{word-spacing:1.760000pt;}
.ws11_c02050{word-spacing:1.824000pt;}
.ws12_c02050{word-spacing:1.836800pt;}
.ws20_c02050{word-spacing:1.849600pt;}
.ws10_c02050{word-spacing:3.891200pt;}
.wsf_c02050{word-spacing:4.140800pt;}
.ws9_c02050{word-spacing:4.768000pt;}
.ws8_c02050{word-spacing:4.800000pt;}
.ws1e_c02050{word-spacing:4.979200pt;}
.ws1d_c02050{word-spacing:5.049600pt;}
.ws6_c02050{word-spacing:5.337600pt;}
.ws7_c02050{word-spacing:5.401600pt;}
.ws22_c02050{word-spacing:5.612800pt;}
.ws14_c02050{word-spacing:5.676800pt;}
.ws21_c02050{word-spacing:5.696000pt;}
.ws13_c02050{word-spacing:5.740800pt;}
.wsa_c02050{word-spacing:7.852800pt;}
.wsc_c02050{word-spacing:7.980800pt;}
.wsb_c02050{word-spacing:7.993600pt;}
.ws28_c02050{word-spacing:9.472000pt;}
.ws29_c02050{word-spacing:9.587200pt;}
.wsd_c02050{word-spacing:10.547200pt;}
.ws17_c02050{word-spacing:10.848000pt;}
.ws1a_c02050{word-spacing:12.038400pt;}
.ws1b_c02050{word-spacing:12.070400pt;}
.ws26_c02050{word-spacing:16.051200pt;}
.ws27_c02050{word-spacing:16.268800pt;}
.wse_c02050{word-spacing:26.220800pt;}
.ws18_c02050{word-spacing:31.968000pt;}
.ws19_c02050{word-spacing:32.006400pt;}
.ws25_c02050{word-spacing:33.900800pt;}
.ws16_c02050{word-spacing:37.107200pt;}
._2_c02050{margin-left:-1.382400pt;}
._1_c02050{width:0.934400pt;}
._0_c02050{width:172.819200pt;}
.fs1_c02050{font-size:42.560000pt;}
.fs0_c02050{font-size:64.000000pt;}
.y0_c02050{bottom:0.000000pt;}
.y3_c02050{bottom:50.987067pt;}
.y2_c02050{bottom:69.387067pt;}
.y29_c02050{bottom:108.747067pt;}
.y28_c02050{bottom:127.147067pt;}
.y27_c02050{bottom:145.547067pt;}
.y26_c02050{bottom:163.947067pt;}
.y25_c02050{bottom:182.347067pt;}
.y24_c02050{bottom:200.747067pt;}
.y23_c02050{bottom:219.147067pt;}
.y22_c02050{bottom:237.547067pt;}
.y21_c02050{bottom:255.947067pt;}
.y20_c02050{bottom:273.387067pt;}
.y1f_c02050{bottom:295.787200pt;}
.y1e_c02050{bottom:323.387200pt;}
.y1d_c02050{bottom:350.987200pt;}
.y1c_c02050{bottom:378.747200pt;}
.y1b_c02050{bottom:402.267067pt;}
.y1a_c02050{bottom:424.747067pt;}
.y19_c02050{bottom:452.347067pt;}
.y18_c02050{bottom:479.947067pt;}
.y17_c02050{bottom:507.547067pt;}
.y16_c02050{bottom:531.067067pt;}
.y15_c02050{bottom:553.387067pt;}
.y14_c02050{bottom:580.987067pt;}
.y13_c02050{bottom:608.587067pt;}
.y12_c02050{bottom:636.187067pt;}
.y11_c02050{bottom:663.787067pt;}
.y10_c02050{bottom:687.467067pt;}
.yf_c02050{bottom:709.867067pt;}
.ye_c02050{bottom:737.467067pt;}
.yd_c02050{bottom:765.067067pt;}
.yc_c02050{bottom:792.667067pt;}
.yb_c02050{bottom:820.267067pt;}
.ya_c02050{bottom:847.867067pt;}
.y9_c02050{bottom:875.467067pt;}
.y8_c02050{bottom:903.067067pt;}
.y7_c02050{bottom:930.667067pt;}
.y6_c02050{bottom:958.267067pt;}
.y5_c02050{bottom:985.707067pt;}
.y4_c02050{bottom:1013.307067pt;}
.y1_c02050{bottom:1060.587067pt;}
.h3_c02050{height:37.343906pt;}
.h2_c02050{height:56.156250pt;}
.h1_c02050{height:56.843750pt;}
.h0_c02050{height:1122.666667pt;}
.w1_c02050{width:793.333333pt;}
.w0_c02050{width:793.626667pt;}
.x0_c02050{left:0.000000pt;}
.x1_c02050{left:113.440000pt;}
.x3_c02050{left:132.400000pt;}
.x2_c02050{left:388.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_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_08680e79bf321ce7e02cc742.woff2')format("woff");}.ff1_c02051{font-family:ff1_c02051;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02051;src:url('chunks/assets/font_72815456637f4925f5d2d97d.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02051{font-family:ff3_c02051;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;}
.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;}
.ls17_c02051{letter-spacing:-0.108000px;}
.ls15_c02051{letter-spacing:-0.050400px;}
.ls18_c02051{letter-spacing:-0.036000px;}
.ls16_c02051{letter-spacing:-0.021600px;}
.ls14_c02051{letter-spacing:-0.007200px;}
.ls13_c02051{letter-spacing:0.000000px;}
.ls0_c02051{letter-spacing:0.007200px;}
.lsa_c02051{letter-spacing:0.013176px;}
.ls2_c02051{letter-spacing:0.014400px;}
.lsb_c02051{letter-spacing:0.026352px;}
.ls3_c02051{letter-spacing:0.028800px;}
.ls8_c02051{letter-spacing:0.032940px;}
.ls9_c02051{letter-spacing:0.039528px;}
.ls6_c02051{letter-spacing:0.043200px;}
.ls7_c02051{letter-spacing:0.046116px;}
.ls4_c02051{letter-spacing:0.050400px;}
.ls12_c02051{letter-spacing:0.064800px;}
.lsc_c02051{letter-spacing:0.065880px;}
.ls10_c02051{letter-spacing:0.072468px;}
.lsf_c02051{letter-spacing:0.079056px;}
.ls11_c02051{letter-spacing:0.086400px;}
.lsd_c02051{letter-spacing:0.092232px;}
.ls1_c02051{letter-spacing:0.100656px;}
.lse_c02051{letter-spacing:0.171288px;}
.ls5_c02051{letter-spacing:5.400000px;}
.sc__c02051{text-shadow:none;}
.sc0_c02051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02051{-webkit-text-stroke:0px transparent;}
.sc0_c02051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02051{word-spacing:-21.070656px;}
.ws2_c02051{word-spacing:-18.086400px;}
.ws1_c02051{word-spacing:-18.000000px;}
.wsb_c02051{word-spacing:-0.252000px;}
.ws1b_c02051{word-spacing:-0.208800px;}
.ws5_c02051{word-spacing:-0.187200px;}
.ws1c_c02051{word-spacing:-0.100800px;}
.ws3_c02051{word-spacing:-0.021600px;}
.ws7_c02051{word-spacing:-0.014400px;}
.wsa_c02051{word-spacing:-0.007200px;}
.ws4_c02051{word-spacing:0.000000px;}
.ws6_c02051{word-spacing:0.007200px;}
.ws13_c02051{word-spacing:0.013176px;}
.ws14_c02051{word-spacing:0.019764px;}
.ws12_c02051{word-spacing:0.026352px;}
.ws15_c02051{word-spacing:0.036000px;}
.wsc_c02051{word-spacing:0.046116px;}
.ws1d_c02051{word-spacing:0.052704px;}
.ws1a_c02051{word-spacing:2.383200px;}
.ws19_c02051{word-spacing:2.455200px;}
.ws11_c02051{word-spacing:4.341492px;}
.ws8_c02051{word-spacing:5.263200px;}
.ws9_c02051{word-spacing:5.349600px;}
.ws18_c02051{word-spacing:8.452800px;}
.ws16_c02051{word-spacing:8.539200px;}
.ws17_c02051{word-spacing:8.640000px;}
.wse_c02051{word-spacing:12.648960px;}
.wsd_c02051{word-spacing:12.655548px;}
.ws10_c02051{word-spacing:28.506276px;}
.wsf_c02051{word-spacing:28.519452px;}
._2_c02051{margin-left:-1.209600px;}
._1_c02051{width:5.853600px;}
._0_c02051{width:194.421600px;}
.fc1_c02051{color:rgb(0,0,255);}
.fc0_c02051{color:rgb(0,0,0);}
.fs3_c02051{font-size:2.880000px;}
.fs2_c02051{font-size:65.880000px;}
.fs0_c02051{font-size:72.000000px;}
.fs1_c02051{font-size:83.880000px;}
.y0_c02051{bottom:0.000000px;}
.y3_c02051{bottom:57.360450px;}
.y2_c02051{bottom:78.060450px;}
.y2e_c02051{bottom:135.300450px;}
.y2d_c02051{bottom:166.350450px;}
.y2c_c02051{bottom:197.400450px;}
.y2b_c02051{bottom:228.450450px;}
.y2a_c02051{bottom:259.500450px;}
.y29_c02051{bottom:290.550450px;}
.y28_c02051{bottom:321.600450px;}
.y27_c02051{bottom:352.650450px;}
.y26_c02051{bottom:383.700450px;}
.y25_c02051{bottom:414.750450px;}
.y24_c02051{bottom:445.710450px;}
.y23_c02051{bottom:476.760450px;}
.y22_c02051{bottom:507.810450px;}
.y21_c02051{bottom:538.860450px;}
.y20_c02051{bottom:559.560450px;}
.y1f_c02051{bottom:586.920450px;}
.y1e_c02051{bottom:597.810450px;}
.y1d_c02051{bottom:617.430450px;}
.y1c_c02051{bottom:637.140450px;}
.y1b_c02051{bottom:656.130450px;}
.y1a_c02051{bottom:675.570450px;}
.y19_c02051{bottom:696.270450px;}
.y18_c02051{bottom:716.970450px;}
.y17_c02051{bottom:737.670450px;}
.y16_c02051{bottom:758.910450px;}
.y15_c02051{bottom:780.420450px;}
.y14_c02051{bottom:801.840450px;}
.y13_c02051{bottom:822.540450px;}
.y12_c02051{bottom:843.240450px;}
.y11_c02051{bottom:863.940450px;}
.y10_c02051{bottom:885.090540px;}
.yf_c02051{bottom:904.080450px;}
.ye_c02051{bottom:923.790600px;}
.yd_c02051{bottom:942.780450px;}
.yc_c02051{bottom:961.770450px;}
.yb_c02051{bottom:980.670450px;}
.ya_c02051{bottom:1000.470450px;}
.y9_c02051{bottom:1020.630450px;}
.y8_c02051{bottom:1041.330450px;}
.y7_c02051{bottom:1062.030450px;}
.y6_c02051{bottom:1083.270450px;}
.y5_c02051{bottom:1105.320450px;}
.y4_c02051{bottom:1139.970450px;}
.y1_c02051{bottom:1193.160450px;}
.h6_c02051{height:2.527031px;}
.h5_c02051{height:57.805840px;}
.h4_c02051{height:58.513535px;}
.h2_c02051{height:63.175781px;}
.h1_c02051{height:63.949219px;}
.h3_c02051{height:74.500840px;}
.h0_c02051{height:1263.000000px;}
.w1_c02051{width:892.500000px;}
.w0_c02051{width:892.830000px;}
.x0_c02051{left:0.000000px;}
.x1_c02051{left:127.620000px;}
.x3_c02051{left:135.630000px;}
.x6_c02051{left:138.150000px;}
.x9_c02051{left:146.340000px;}
.x5_c02051{left:156.960000px;}
.x7_c02051{left:188.730000px;}
.x8_c02051{left:283.230000px;}
.x4_c02051{left:378.360000px;}
.x2_c02051{left:437.490000px;}
@media print{
.v0_c02051{vertical-align:0.000000pt;}
.ls17_c02051{letter-spacing:-0.096000pt;}
.ls15_c02051{letter-spacing:-0.044800pt;}
.ls18_c02051{letter-spacing:-0.032000pt;}
.ls16_c02051{letter-spacing:-0.019200pt;}
.ls14_c02051{letter-spacing:-0.006400pt;}
.ls13_c02051{letter-spacing:0.000000pt;}
.ls0_c02051{letter-spacing:0.006400pt;}
.lsa_c02051{letter-spacing:0.011712pt;}
.ls2_c02051{letter-spacing:0.012800pt;}
.lsb_c02051{letter-spacing:0.023424pt;}
.ls3_c02051{letter-spacing:0.025600pt;}
.ls8_c02051{letter-spacing:0.029280pt;}
.ls9_c02051{letter-spacing:0.035136pt;}
.ls6_c02051{letter-spacing:0.038400pt;}
.ls7_c02051{letter-spacing:0.040992pt;}
.ls4_c02051{letter-spacing:0.044800pt;}
.ls12_c02051{letter-spacing:0.057600pt;}
.lsc_c02051{letter-spacing:0.058560pt;}
.ls10_c02051{letter-spacing:0.064416pt;}
.lsf_c02051{letter-spacing:0.070272pt;}
.ls11_c02051{letter-spacing:0.076800pt;}
.lsd_c02051{letter-spacing:0.081984pt;}
.ls1_c02051{letter-spacing:0.089472pt;}
.lse_c02051{letter-spacing:0.152256pt;}
.ls5_c02051{letter-spacing:4.800000pt;}
.ws0_c02051{word-spacing:-18.729472pt;}
.ws2_c02051{word-spacing:-16.076800pt;}
.ws1_c02051{word-spacing:-16.000000pt;}
.wsb_c02051{word-spacing:-0.224000pt;}
.ws1b_c02051{word-spacing:-0.185600pt;}
.ws5_c02051{word-spacing:-0.166400pt;}
.ws1c_c02051{word-spacing:-0.089600pt;}
.ws3_c02051{word-spacing:-0.019200pt;}
.ws7_c02051{word-spacing:-0.012800pt;}
.wsa_c02051{word-spacing:-0.006400pt;}
.ws4_c02051{word-spacing:0.000000pt;}
.ws6_c02051{word-spacing:0.006400pt;}
.ws13_c02051{word-spacing:0.011712pt;}
.ws14_c02051{word-spacing:0.017568pt;}
.ws12_c02051{word-spacing:0.023424pt;}
.ws15_c02051{word-spacing:0.032000pt;}
.wsc_c02051{word-spacing:0.040992pt;}
.ws1d_c02051{word-spacing:0.046848pt;}
.ws1a_c02051{word-spacing:2.118400pt;}
.ws19_c02051{word-spacing:2.182400pt;}
.ws11_c02051{word-spacing:3.859104pt;}
.ws8_c02051{word-spacing:4.678400pt;}
.ws9_c02051{word-spacing:4.755200pt;}
.ws18_c02051{word-spacing:7.513600pt;}
.ws16_c02051{word-spacing:7.590400pt;}
.ws17_c02051{word-spacing:7.680000pt;}
.wse_c02051{word-spacing:11.243520pt;}
.wsd_c02051{word-spacing:11.249376pt;}
.ws10_c02051{word-spacing:25.338912pt;}
.wsf_c02051{word-spacing:25.350624pt;}
._2_c02051{margin-left:-1.075200pt;}
._1_c02051{width:5.203200pt;}
._0_c02051{width:172.819200pt;}
.fs3_c02051{font-size:2.560000pt;}
.fs2_c02051{font-size:58.560000pt;}
.fs0_c02051{font-size:64.000000pt;}
.fs1_c02051{font-size:74.560000pt;}
.y0_c02051{bottom:0.000000pt;}
.y3_c02051{bottom:50.987067pt;}
.y2_c02051{bottom:69.387067pt;}
.y2e_c02051{bottom:120.267067pt;}
.y2d_c02051{bottom:147.867067pt;}
.y2c_c02051{bottom:175.467067pt;}
.y2b_c02051{bottom:203.067067pt;}
.y2a_c02051{bottom:230.667067pt;}
.y29_c02051{bottom:258.267067pt;}
.y28_c02051{bottom:285.867067pt;}
.y27_c02051{bottom:313.467067pt;}
.y26_c02051{bottom:341.067067pt;}
.y25_c02051{bottom:368.667067pt;}
.y24_c02051{bottom:396.187067pt;}
.y23_c02051{bottom:423.787067pt;}
.y22_c02051{bottom:451.387067pt;}
.y21_c02051{bottom:478.987067pt;}
.y20_c02051{bottom:497.387067pt;}
.y1f_c02051{bottom:521.707067pt;}
.y1e_c02051{bottom:531.387067pt;}
.y1d_c02051{bottom:548.827067pt;}
.y1c_c02051{bottom:566.347067pt;}
.y1b_c02051{bottom:583.227067pt;}
.y1a_c02051{bottom:600.507067pt;}
.y19_c02051{bottom:618.907067pt;}
.y18_c02051{bottom:637.307067pt;}
.y17_c02051{bottom:655.707067pt;}
.y16_c02051{bottom:674.587067pt;}
.y15_c02051{bottom:693.707067pt;}
.y14_c02051{bottom:712.747067pt;}
.y13_c02051{bottom:731.147067pt;}
.y12_c02051{bottom:749.547067pt;}
.y11_c02051{bottom:767.947067pt;}
.y10_c02051{bottom:786.747147pt;}
.yf_c02051{bottom:803.627067pt;}
.ye_c02051{bottom:821.147200pt;}
.yd_c02051{bottom:838.027067pt;}
.yc_c02051{bottom:854.907067pt;}
.yb_c02051{bottom:871.707067pt;}
.ya_c02051{bottom:889.307067pt;}
.y9_c02051{bottom:907.227067pt;}
.y8_c02051{bottom:925.627067pt;}
.y7_c02051{bottom:944.027067pt;}
.y6_c02051{bottom:962.907067pt;}
.y5_c02051{bottom:982.507067pt;}
.y4_c02051{bottom:1013.307067pt;}
.y1_c02051{bottom:1060.587067pt;}
.h6_c02051{height:2.246250pt;}
.h5_c02051{height:51.382969pt;}
.h4_c02051{height:52.012031pt;}
.h2_c02051{height:56.156250pt;}
.h1_c02051{height:56.843750pt;}
.h3_c02051{height:66.222969pt;}
.h0_c02051{height:1122.666667pt;}
.w1_c02051{width:793.333333pt;}
.w0_c02051{width:793.626667pt;}
.x0_c02051{left:0.000000pt;}
.x1_c02051{left:113.440000pt;}
.x3_c02051{left:120.560000pt;}
.x6_c02051{left:122.800000pt;}
.x9_c02051{left:130.080000pt;}
.x5_c02051{left:139.520000pt;}
.x7_c02051{left:167.760000pt;}
.x8_c02051{left:251.760000pt;}
.x4_c02051{left:336.320000pt;}
.x2_c02051{left:388.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_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_0bac47b3b56ce446be7d5355.woff2')format("woff");}.ff1_c02052{font-family:ff1_c02052;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02052;src:url('chunks/assets/font_2ca29f5b266b27e8bd99e113.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_47dd05d3d24d5842205bbc4c.woff2')format("woff");}.ff3_c02052{font-family:ff3_c02052;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_c02052;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff4_c02052{font-family:ff4_c02052;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;}
.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);}
.v1_c02052{vertical-align:-9.000000px;}
.v0_c02052{vertical-align:0.000000px;}
.ls13_c02052{letter-spacing:-0.021600px;}
.ls11_c02052{letter-spacing:-0.014400px;}
.ls12_c02052{letter-spacing:-0.007200px;}
.ls10_c02052{letter-spacing:0.000000px;}
.ls0_c02052{letter-spacing:0.007200px;}
.ls3_c02052{letter-spacing:0.014400px;}
.ls8_c02052{letter-spacing:0.021600px;}
.ls5_c02052{letter-spacing:0.028800px;}
.ls4_c02052{letter-spacing:0.036000px;}
.ls6_c02052{letter-spacing:0.043200px;}
.lse_c02052{letter-spacing:0.050400px;}
.lsd_c02052{letter-spacing:0.052704px;}
.ls7_c02052{letter-spacing:0.057600px;}
.lsc_c02052{letter-spacing:0.059292px;}
.ls9_c02052{letter-spacing:0.064800px;}
.lsb_c02052{letter-spacing:0.065880px;}
.ls1_c02052{letter-spacing:0.093600px;}
.lsf_c02052{letter-spacing:0.100800px;}
.lsa_c02052{letter-spacing:0.171288px;}
.ls2_c02052{letter-spacing:0.180000px;}
.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;}
}
.ws1_c02052{word-spacing:-18.100800px;}
.ws0_c02052{word-spacing:-18.000000px;}
.ws26_c02052{word-spacing:-0.410400px;}
.ws15_c02052{word-spacing:-0.388800px;}
.ws27_c02052{word-spacing:-0.273600px;}
.ws4_c02052{word-spacing:-0.244800px;}
.ws21_c02052{word-spacing:-0.208800px;}
.ws1b_c02052{word-spacing:-0.172800px;}
.wsb_c02052{word-spacing:-0.122400px;}
.ws17_c02052{word-spacing:-0.108000px;}
.ws1e_c02052{word-spacing:-0.100800px;}
.ws8_c02052{word-spacing:-0.072000px;}
.wsf_c02052{word-spacing:-0.064800px;}
.wse_c02052{word-spacing:-0.043200px;}
.wsd_c02052{word-spacing:-0.028800px;}
.ws2_c02052{word-spacing:-0.021600px;}
.ws16_c02052{word-spacing:-0.014400px;}
.ws9_c02052{word-spacing:-0.007200px;}
.ws3_c02052{word-spacing:0.000000px;}
.wsc_c02052{word-spacing:0.007200px;}
.ws5_c02052{word-spacing:0.014400px;}
.ws25_c02052{word-spacing:0.021600px;}
.ws22_c02052{word-spacing:0.026352px;}
.ws23_c02052{word-spacing:0.032940px;}
.ws24_c02052{word-spacing:0.039528px;}
.ws13_c02052{word-spacing:0.612000px;}
.ws14_c02052{word-spacing:0.712800px;}
.ws11_c02052{word-spacing:1.353600px;}
.ws10_c02052{word-spacing:1.375200px;}
.ws12_c02052{word-spacing:1.461600px;}
.ws1c_c02052{word-spacing:2.059200px;}
.ws1d_c02052{word-spacing:2.095200px;}
.ws19_c02052{word-spacing:9.770400px;}
.ws1a_c02052{word-spacing:9.842400px;}
.ws18_c02052{word-spacing:10.080000px;}
.ws1f_c02052{word-spacing:16.178400px;}
.ws20_c02052{word-spacing:16.257600px;}
.ws7_c02052{word-spacing:24.055200px;}
.ws6_c02052{word-spacing:24.134400px;}
.wsa_c02052{word-spacing:31.982400px;}
._3_c02052{margin-left:-1.008000px;}
._1_c02052{width:1.058400px;}
._0_c02052{width:194.421600px;}
._4_c02052{width:197.056800px;}
._5_c02052{width:201.016800px;}
._2_c02052{width:249.984000px;}
._6_c02052{width:362.880000px;}
.fc0_c02052{color:rgb(0,0,0);}
.fs2_c02052{font-size:42.120000px;}
.fs1_c02052{font-size:47.880000px;}
.fs3_c02052{font-size:60.120000px;}
.fs4_c02052{font-size:65.880000px;}
.fs0_c02052{font-size:72.000000px;}
.y0_c02052{bottom:0.000000px;}
.y3_c02052{bottom:57.360450px;}
.y2_c02052{bottom:78.060450px;}
.y30_c02052{bottom:113.790450px;}
.y2f_c02052{bottom:144.840450px;}
.y2e_c02052{bottom:175.890450px;}
.y2d_c02052{bottom:206.940450px;}
.y2c_c02052{bottom:237.990450px;}
.y2b_c02052{bottom:269.040450px;}
.y2a_c02052{bottom:300.090450px;}
.y29_c02052{bottom:331.140450px;}
.y28_c02052{bottom:362.190450px;}
.y27_c02052{bottom:393.420450px;}
.y26_c02052{bottom:414.120450px;}
.y25_c02052{bottom:434.730450px;}
.y24_c02052{bottom:455.430450px;}
.y23_c02052{bottom:476.130450px;}
.y22_c02052{bottom:497.640450px;}
.y21_c02052{bottom:518.340600px;}
.y20_c02052{bottom:539.580450px;}
.y1f_c02052{bottom:561.180450px;}
.y1e_c02052{bottom:582.510450px;}
.y1d_c02052{bottom:603.930450px;}
.y1c_c02052{bottom:625.350450px;}
.y1b_c02052{bottom:647.040450px;}
.y1a_c02052{bottom:667.740450px;}
.y19_c02052{bottom:688.440450px;}
.y18_c02052{bottom:709.140450px;}
.y17_c02052{bottom:729.840450px;}
.y16_c02052{bottom:750.540450px;}
.y15_c02052{bottom:771.240450px;}
.y14_c02052{bottom:791.850450px;}
.y13_c02052{bottom:812.550450px;}
.y12_c02052{bottom:833.250450px;}
.y11_c02052{bottom:854.580450px;}
.y10_c02052{bottom:876.180600px;}
.yf_c02052{bottom:896.880450px;}
.ye_c02052{bottom:918.120450px;}
.yd_c02052{bottom:939.630450px;}
.yc_c02052{bottom:961.050450px;}
.yb_c02052{bottom:981.750450px;}
.ya_c02052{bottom:1003.170450px;}
.y9_c02052{bottom:1024.680450px;}
.y8_c02052{bottom:1046.190450px;}
.y7_c02052{bottom:1066.890450px;}
.y6_c02052{bottom:1087.590450px;}
.y5_c02052{bottom:1108.200450px;}
.y4_c02052{bottom:1139.970450px;}
.y1_c02052{bottom:1193.160450px;}
.h2_c02052{height:63.175781px;}
.h1_c02052{height:63.949219px;}
.h4_c02052{height:70.628906px;}
.h3_c02052{height:70.988906px;}
.h0_c02052{height:1263.000000px;}
.w1_c02052{width:892.500000px;}
.w0_c02052{width:892.830000px;}
.x0_c02052{left:0.000000px;}
.x1_c02052{left:127.620000px;}
.x3_c02052{left:135.630000px;}
.x4_c02052{left:273.870000px;}
.x2_c02052{left:437.490000px;}
@media print{
.v1_c02052{vertical-align:-8.000000pt;}
.v0_c02052{vertical-align:0.000000pt;}
.ls13_c02052{letter-spacing:-0.019200pt;}
.ls11_c02052{letter-spacing:-0.012800pt;}
.ls12_c02052{letter-spacing:-0.006400pt;}
.ls10_c02052{letter-spacing:0.000000pt;}
.ls0_c02052{letter-spacing:0.006400pt;}
.ls3_c02052{letter-spacing:0.012800pt;}
.ls8_c02052{letter-spacing:0.019200pt;}
.ls5_c02052{letter-spacing:0.025600pt;}
.ls4_c02052{letter-spacing:0.032000pt;}
.ls6_c02052{letter-spacing:0.038400pt;}
.lse_c02052{letter-spacing:0.044800pt;}
.lsd_c02052{letter-spacing:0.046848pt;}
.ls7_c02052{letter-spacing:0.051200pt;}
.lsc_c02052{letter-spacing:0.052704pt;}
.ls9_c02052{letter-spacing:0.057600pt;}
.lsb_c02052{letter-spacing:0.058560pt;}
.ls1_c02052{letter-spacing:0.083200pt;}
.lsf_c02052{letter-spacing:0.089600pt;}
.lsa_c02052{letter-spacing:0.152256pt;}
.ls2_c02052{letter-spacing:0.160000pt;}
.ws1_c02052{word-spacing:-16.089600pt;}
.ws0_c02052{word-spacing:-16.000000pt;}
.ws26_c02052{word-spacing:-0.364800pt;}
.ws15_c02052{word-spacing:-0.345600pt;}
.ws27_c02052{word-spacing:-0.243200pt;}
.ws4_c02052{word-spacing:-0.217600pt;}
.ws21_c02052{word-spacing:-0.185600pt;}
.ws1b_c02052{word-spacing:-0.153600pt;}
.wsb_c02052{word-spacing:-0.108800pt;}
.ws17_c02052{word-spacing:-0.096000pt;}
.ws1e_c02052{word-spacing:-0.089600pt;}
.ws8_c02052{word-spacing:-0.064000pt;}
.wsf_c02052{word-spacing:-0.057600pt;}
.wse_c02052{word-spacing:-0.038400pt;}
.wsd_c02052{word-spacing:-0.025600pt;}
.ws2_c02052{word-spacing:-0.019200pt;}
.ws16_c02052{word-spacing:-0.012800pt;}
.ws9_c02052{word-spacing:-0.006400pt;}
.ws3_c02052{word-spacing:0.000000pt;}
.wsc_c02052{word-spacing:0.006400pt;}
.ws5_c02052{word-spacing:0.012800pt;}
.ws25_c02052{word-spacing:0.019200pt;}
.ws22_c02052{word-spacing:0.023424pt;}
.ws23_c02052{word-spacing:0.029280pt;}
.ws24_c02052{word-spacing:0.035136pt;}
.ws13_c02052{word-spacing:0.544000pt;}
.ws14_c02052{word-spacing:0.633600pt;}
.ws11_c02052{word-spacing:1.203200pt;}
.ws10_c02052{word-spacing:1.222400pt;}
.ws12_c02052{word-spacing:1.299200pt;}
.ws1c_c02052{word-spacing:1.830400pt;}
.ws1d_c02052{word-spacing:1.862400pt;}
.ws19_c02052{word-spacing:8.684800pt;}
.ws1a_c02052{word-spacing:8.748800pt;}
.ws18_c02052{word-spacing:8.960000pt;}
.ws1f_c02052{word-spacing:14.380800pt;}
.ws20_c02052{word-spacing:14.451200pt;}
.ws7_c02052{word-spacing:21.382400pt;}
.ws6_c02052{word-spacing:21.452800pt;}
.wsa_c02052{word-spacing:28.428800pt;}
._3_c02052{margin-left:-0.896000pt;}
._1_c02052{width:0.940800pt;}
._0_c02052{width:172.819200pt;}
._4_c02052{width:175.161600pt;}
._5_c02052{width:178.681600pt;}
._2_c02052{width:222.208000pt;}
._6_c02052{width:322.560000pt;}
.fs2_c02052{font-size:37.440000pt;}
.fs1_c02052{font-size:42.560000pt;}
.fs3_c02052{font-size:53.440000pt;}
.fs4_c02052{font-size:58.560000pt;}
.fs0_c02052{font-size:64.000000pt;}
.y0_c02052{bottom:0.000000pt;}
.y3_c02052{bottom:50.987067pt;}
.y2_c02052{bottom:69.387067pt;}
.y30_c02052{bottom:101.147067pt;}
.y2f_c02052{bottom:128.747067pt;}
.y2e_c02052{bottom:156.347067pt;}
.y2d_c02052{bottom:183.947067pt;}
.y2c_c02052{bottom:211.547067pt;}
.y2b_c02052{bottom:239.147067pt;}
.y2a_c02052{bottom:266.747067pt;}
.y29_c02052{bottom:294.347067pt;}
.y28_c02052{bottom:321.947067pt;}
.y27_c02052{bottom:349.707067pt;}
.y26_c02052{bottom:368.107067pt;}
.y25_c02052{bottom:386.427067pt;}
.y24_c02052{bottom:404.827067pt;}
.y23_c02052{bottom:423.227067pt;}
.y22_c02052{bottom:442.347067pt;}
.y21_c02052{bottom:460.747200pt;}
.y20_c02052{bottom:479.627067pt;}
.y1f_c02052{bottom:498.827067pt;}
.y1e_c02052{bottom:517.787067pt;}
.y1d_c02052{bottom:536.827067pt;}
.y1c_c02052{bottom:555.867067pt;}
.y1b_c02052{bottom:575.147067pt;}
.y1a_c02052{bottom:593.547067pt;}
.y19_c02052{bottom:611.947067pt;}
.y18_c02052{bottom:630.347067pt;}
.y17_c02052{bottom:648.747067pt;}
.y16_c02052{bottom:667.147067pt;}
.y15_c02052{bottom:685.547067pt;}
.y14_c02052{bottom:703.867067pt;}
.y13_c02052{bottom:722.267067pt;}
.y12_c02052{bottom:740.667067pt;}
.y11_c02052{bottom:759.627067pt;}
.y10_c02052{bottom:778.827200pt;}
.yf_c02052{bottom:797.227067pt;}
.ye_c02052{bottom:816.107067pt;}
.yd_c02052{bottom:835.227067pt;}
.yc_c02052{bottom:854.267067pt;}
.yb_c02052{bottom:872.667067pt;}
.ya_c02052{bottom:891.707067pt;}
.y9_c02052{bottom:910.827067pt;}
.y8_c02052{bottom:929.947067pt;}
.y7_c02052{bottom:948.347067pt;}
.y6_c02052{bottom:966.747067pt;}
.y5_c02052{bottom:985.067067pt;}
.y4_c02052{bottom:1013.307067pt;}
.y1_c02052{bottom:1060.587067pt;}
.h2_c02052{height:56.156250pt;}
.h1_c02052{height:56.843750pt;}
.h4_c02052{height:62.781250pt;}
.h3_c02052{height:63.101250pt;}
.h0_c02052{height:1122.666667pt;}
.w1_c02052{width:793.333333pt;}
.w0_c02052{width:793.626667pt;}
.x0_c02052{left:0.000000pt;}
.x1_c02052{left:113.440000pt;}
.x3_c02052{left:120.560000pt;}
.x4_c02052{left:243.440000pt;}
.x2_c02052{left:388.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_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_44d2253a3b462d6b727b4290.woff2')format("woff");}.ff1_c02053{font-family:ff1_c02053;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02053;src:url('chunks/assets/font_cf29d263dfe7f51a154f59a1.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;}
.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;}
.ls11_c02053{letter-spacing:-0.021600px;}
.lsf_c02053{letter-spacing:-0.007200px;}
.ls13_c02053{letter-spacing:-0.006012px;}
.lse_c02053{letter-spacing:0.000000px;}
.ls10_c02053{letter-spacing:0.014400px;}
.ls0_c02053{letter-spacing:0.028800px;}
.lsd_c02053{letter-spacing:0.039528px;}
.ls5_c02053{letter-spacing:0.059292px;}
.ls3_c02053{letter-spacing:0.065880px;}
.lsc_c02053{letter-spacing:0.072468px;}
.ls9_c02053{letter-spacing:0.079056px;}
.lsa_c02053{letter-spacing:0.085644px;}
.ls2_c02053{letter-spacing:0.092232px;}
.ls7_c02053{letter-spacing:0.111996px;}
.ls4_c02053{letter-spacing:0.138348px;}
.ls12_c02053{letter-spacing:0.144288px;}
.ls6_c02053{letter-spacing:0.151524px;}
.lsb_c02053{letter-spacing:0.158112px;}
.ls8_c02053{letter-spacing:0.177876px;}
.ls1_c02053{letter-spacing:0.180360px;}
.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;}
}
.ws3_c02053{word-spacing:-16.647876px;}
.wsa_c02053{word-spacing:-0.194400px;}
.ws9_c02053{word-spacing:-0.172800px;}
.wsc_c02053{word-spacing:-0.115200px;}
.wsf_c02053{word-spacing:-0.090180px;}
.wsd_c02053{word-spacing:-0.057600px;}
.ws7_c02053{word-spacing:-0.021600px;}
.ws12_c02053{word-spacing:-0.019764px;}
.ws8_c02053{word-spacing:0.000000px;}
.wse_c02053{word-spacing:0.021600px;}
.ws10_c02053{word-spacing:0.026352px;}
.ws11_c02053{word-spacing:0.032940px;}
.ws13_c02053{word-spacing:0.052704px;}
.wsb_c02053{word-spacing:19.771200px;}
.ws2_c02053{word-spacing:133.162380px;}
.ws1_c02053{word-spacing:165.922380px;}
.ws6_c02053{word-spacing:166.453020px;}
.ws0_c02053{word-spacing:199.066608px;}
.ws5_c02053{word-spacing:199.573020px;}
.ws4_c02053{word-spacing:281.506608px;}
._1_c02053{margin-left:-1.148292px;}
._11_c02053{width:87.409440px;}
._e_c02053{width:89.558496px;}
._4_c02053{width:116.010000px;}
._9_c02053{width:122.316372px;}
._7_c02053{width:155.794248px;}
._3_c02053{width:191.608704px;}
._0_c02053{width:194.421600px;}
._a_c02053{width:241.960392px;}
._2_c02053{width:276.079284px;}
._f_c02053{width:297.640620px;}
._8_c02053{width:306.707256px;}
._12_c02053{width:325.039536px;}
._b_c02053{width:372.644424px;}
._10_c02053{width:389.050776px;}
._c_c02053{width:401.901732px;}
._d_c02053{width:434.901024px;}
._6_c02053{width:449.486856px;}
._5_c02053{width:467.757504px;}
.fc0_c02053{color:rgb(0,0,0);}
.fs1_c02053{font-size:54.000000px;}
.fs2_c02053{font-size:60.120000px;}
.fs3_c02053{font-size:65.880000px;}
.fs0_c02053{font-size:72.000000px;}
.y0_c02053{bottom:0.000000px;}
.y3_c02053{bottom:57.360450px;}
.y2_c02053{bottom:78.060450px;}
.y21_c02053{bottom:121.710150px;}
.y20_c02053{bottom:137.279700px;}
.y1f_c02053{bottom:152.760150px;}
.y1e_c02053{bottom:168.240600px;}
.y1d_c02053{bottom:183.810150px;}
.y1c_c02053{bottom:199.290600px;}
.y1b_c02053{bottom:217.020450px;}
.y1a_c02053{bottom:236.010450px;}
.y19_c02053{bottom:255.000450px;}
.y18_c02053{bottom:274.710450px;}
.y17_c02053{bottom:293.700450px;}
.y16_c02053{bottom:312.600450px;}
.y15_c02053{bottom:331.590450px;}
.y14_c02053{bottom:350.580450px;}
.y13_c02053{bottom:369.570450px;}
.y12_c02053{bottom:388.560450px;}
.y11_c02053{bottom:407.100450px;}
.y10_c02053{bottom:425.370600px;}
.yf_c02053{bottom:448.500900px;}
.ye_c02053{bottom:464.070450px;}
.yd_c02053{bottom:491.070450px;}
.yc_c02053{bottom:522.120450px;}
.yb_c02053{bottom:552.990450px;}
.ya_c02053{bottom:584.040450px;}
.y9_c02053{bottom:604.740450px;}
.y8_c02053{bottom:621.480450px;}
.y7_c02053{bottom:844.770450px;}
.y6_c02053{bottom:871.950450px;}
.y5_c02053{bottom:1108.920450px;}
.y4_c02053{bottom:1139.970450px;}
.y1_c02053{bottom:1193.160450px;}
.h3_c02053{height:47.961914px;}
.h4_c02053{height:53.397598px;}
.h5_c02053{height:58.513535px;}
.h2_c02053{height:63.175781px;}
.h1_c02053{height:63.949219px;}
.h0_c02053{height:1263.000000px;}
.w1_c02053{width:892.500000px;}
.w0_c02053{width:892.830000px;}
.x0_c02053{left:0.000000px;}
.x1_c02053{left:127.620000px;}
.x6_c02053{left:135.630000px;}
.x5_c02053{left:148.950000px;}
.x7_c02053{left:172.980000px;}
.x2_c02053{left:437.490000px;}
.x4_c02053{left:593.370000px;}
.x3_c02053{left:670.410000px;}
@media print{
.v0_c02053{vertical-align:0.000000pt;}
.ls11_c02053{letter-spacing:-0.019200pt;}
.lsf_c02053{letter-spacing:-0.006400pt;}
.ls13_c02053{letter-spacing:-0.005344pt;}
.lse_c02053{letter-spacing:0.000000pt;}
.ls10_c02053{letter-spacing:0.012800pt;}
.ls0_c02053{letter-spacing:0.025600pt;}
.lsd_c02053{letter-spacing:0.035136pt;}
.ls5_c02053{letter-spacing:0.052704pt;}
.ls3_c02053{letter-spacing:0.058560pt;}
.lsc_c02053{letter-spacing:0.064416pt;}
.ls9_c02053{letter-spacing:0.070272pt;}
.lsa_c02053{letter-spacing:0.076128pt;}
.ls2_c02053{letter-spacing:0.081984pt;}
.ls7_c02053{letter-spacing:0.099552pt;}
.ls4_c02053{letter-spacing:0.122976pt;}
.ls12_c02053{letter-spacing:0.128256pt;}
.ls6_c02053{letter-spacing:0.134688pt;}
.lsb_c02053{letter-spacing:0.140544pt;}
.ls8_c02053{letter-spacing:0.158112pt;}
.ls1_c02053{letter-spacing:0.160320pt;}
.ws3_c02053{word-spacing:-14.798112pt;}
.wsa_c02053{word-spacing:-0.172800pt;}
.ws9_c02053{word-spacing:-0.153600pt;}
.wsc_c02053{word-spacing:-0.102400pt;}
.wsf_c02053{word-spacing:-0.080160pt;}
.wsd_c02053{word-spacing:-0.051200pt;}
.ws7_c02053{word-spacing:-0.019200pt;}
.ws12_c02053{word-spacing:-0.017568pt;}
.ws8_c02053{word-spacing:0.000000pt;}
.wse_c02053{word-spacing:0.019200pt;}
.ws10_c02053{word-spacing:0.023424pt;}
.ws11_c02053{word-spacing:0.029280pt;}
.ws13_c02053{word-spacing:0.046848pt;}
.wsb_c02053{word-spacing:17.574400pt;}
.ws2_c02053{word-spacing:118.366560pt;}
.ws1_c02053{word-spacing:147.486560pt;}
.ws6_c02053{word-spacing:147.958240pt;}
.ws0_c02053{word-spacing:176.948096pt;}
.ws5_c02053{word-spacing:177.398240pt;}
.ws4_c02053{word-spacing:250.228096pt;}
._1_c02053{margin-left:-1.020704pt;}
._11_c02053{width:77.697280pt;}
._e_c02053{width:79.607552pt;}
._4_c02053{width:103.120000pt;}
._9_c02053{width:108.725664pt;}
._7_c02053{width:138.483776pt;}
._3_c02053{width:170.318848pt;}
._0_c02053{width:172.819200pt;}
._a_c02053{width:215.075904pt;}
._2_c02053{width:245.403808pt;}
._f_c02053{width:264.569440pt;}
._8_c02053{width:272.628672pt;}
._12_c02053{width:288.924032pt;}
._b_c02053{width:331.239488pt;}
._10_c02053{width:345.822912pt;}
._c_c02053{width:357.245984pt;}
._d_c02053{width:386.578688pt;}
._6_c02053{width:399.543872pt;}
._5_c02053{width:415.784448pt;}
.fs1_c02053{font-size:48.000000pt;}
.fs2_c02053{font-size:53.440000pt;}
.fs3_c02053{font-size:58.560000pt;}
.fs0_c02053{font-size:64.000000pt;}
.y0_c02053{bottom:0.000000pt;}
.y3_c02053{bottom:50.987067pt;}
.y2_c02053{bottom:69.387067pt;}
.y21_c02053{bottom:108.186800pt;}
.y20_c02053{bottom:122.026400pt;}
.y1f_c02053{bottom:135.786800pt;}
.y1e_c02053{bottom:149.547200pt;}
.y1d_c02053{bottom:163.386800pt;}
.y1c_c02053{bottom:177.147200pt;}
.y1b_c02053{bottom:192.907067pt;}
.y1a_c02053{bottom:209.787067pt;}
.y19_c02053{bottom:226.667067pt;}
.y18_c02053{bottom:244.187067pt;}
.y17_c02053{bottom:261.067067pt;}
.y16_c02053{bottom:277.867067pt;}
.y15_c02053{bottom:294.747067pt;}
.y14_c02053{bottom:311.627067pt;}
.y13_c02053{bottom:328.507067pt;}
.y12_c02053{bottom:345.387067pt;}
.y11_c02053{bottom:361.867067pt;}
.y10_c02053{bottom:378.107200pt;}
.yf_c02053{bottom:398.667467pt;}
.ye_c02053{bottom:412.507067pt;}
.yd_c02053{bottom:436.507067pt;}
.yc_c02053{bottom:464.107067pt;}
.yb_c02053{bottom:491.547067pt;}
.ya_c02053{bottom:519.147067pt;}
.y9_c02053{bottom:537.547067pt;}
.y8_c02053{bottom:552.427067pt;}
.y7_c02053{bottom:750.907067pt;}
.y6_c02053{bottom:775.067067pt;}
.y5_c02053{bottom:985.707067pt;}
.y4_c02053{bottom:1013.307067pt;}
.y1_c02053{bottom:1060.587067pt;}
.h3_c02053{height:42.632812pt;}
.h4_c02053{height:47.464531pt;}
.h5_c02053{height:52.012031pt;}
.h2_c02053{height:56.156250pt;}
.h1_c02053{height:56.843750pt;}
.h0_c02053{height:1122.666667pt;}
.w1_c02053{width:793.333333pt;}
.w0_c02053{width:793.626667pt;}
.x0_c02053{left:0.000000pt;}
.x1_c02053{left:113.440000pt;}
.x6_c02053{left:120.560000pt;}
.x5_c02053{left:132.400000pt;}
.x7_c02053{left:153.760000pt;}
.x2_c02053{left:388.880000pt;}
.x4_c02053{left:527.440000pt;}
.x3_c02053{left:595.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_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_77512a02e0e00e9575d53c9f.woff2')format("woff");}.ff1_c02054{font-family:ff1_c02054;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02054;src:url('chunks/assets/font_22d923dd63665a69fbce1068.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;}
.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);}
.v7_c02054{vertical-align:-19.440000px;}
.v5_c02054{vertical-align:-18.360000px;}
.v6_c02054{vertical-align:-16.560000px;}
.v8_c02054{vertical-align:-12.600000px;}
.v9_c02054{vertical-align:-11.160000px;}
.v10_c02054{vertical-align:-6.841800px;}
.vb_c02054{vertical-align:-4.320600px;}
.va_c02054{vertical-align:-2.520600px;}
.v4_c02054{vertical-align:-1.440000px;}
.v0_c02054{vertical-align:0.000000px;}
.v2_c02054{vertical-align:1.080000px;}
.ve_c02054{vertical-align:2.520000px;}
.vd_c02054{vertical-align:3.960000px;}
.v1_c02054{vertical-align:5.400000px;}
.vc_c02054{vertical-align:6.841800px;}
.vf_c02054{vertical-align:9.360000px;}
.v3_c02054{vertical-align:16.560000px;}
.ls2d_c02054{letter-spacing:-0.090972px;}
.ls28_c02054{letter-spacing:-0.086184px;}
.ls24_c02054{letter-spacing:-0.043200px;}
.ls26_c02054{letter-spacing:-0.019152px;}
.ls25_c02054{letter-spacing:-0.010800px;}
.ls22_c02054{letter-spacing:-0.007200px;}
.ls30_c02054{letter-spacing:-0.006012px;}
.ls21_c02054{letter-spacing:0.000000px;}
.ls5_c02054{letter-spacing:0.005400px;}
.ls1_c02054{letter-spacing:0.007200px;}
.ls2_c02054{letter-spacing:0.010800px;}
.ls11_c02054{letter-spacing:0.014400px;}
.ls2c_c02054{letter-spacing:0.021600px;}
.ls4_c02054{letter-spacing:0.028728px;}
.ls0_c02054{letter-spacing:0.028800px;}
.ls6_c02054{letter-spacing:0.032400px;}
.ls3_c02054{letter-spacing:0.043092px;}
.lsa_c02054{letter-spacing:0.043200px;}
.ls19_c02054{letter-spacing:0.046116px;}
.lse_c02054{letter-spacing:0.052668px;}
.ls1b_c02054{letter-spacing:0.052704px;}
.ls1c_c02054{letter-spacing:0.059292px;}
.ls12_c02054{letter-spacing:0.059400px;}
.ls17_c02054{letter-spacing:0.072468px;}
.ls8_c02054{letter-spacing:0.076608px;}
.ls1e_c02054{letter-spacing:0.079056px;}
.ls14_c02054{letter-spacing:0.085644px;}
.ls29_c02054{letter-spacing:0.091800px;}
.ls13_c02054{letter-spacing:0.092232px;}
.ls20_c02054{letter-spacing:0.111996px;}
.lsf_c02054{letter-spacing:0.114912px;}
.ls10_c02054{letter-spacing:0.138852px;}
.ls2f_c02054{letter-spacing:0.144288px;}
.ls23_c02054{letter-spacing:0.151200px;}
.ls15_c02054{letter-spacing:0.151524px;}
.ls7_c02054{letter-spacing:0.158112px;}
.lsd_c02054{letter-spacing:0.162792px;}
.ls1a_c02054{letter-spacing:0.164700px;}
.ls27_c02054{letter-spacing:0.167580px;}
.ls1d_c02054{letter-spacing:0.171288px;}
.ls1f_c02054{letter-spacing:0.177876px;}
.ls2a_c02054{letter-spacing:0.178200px;}
.lsb_c02054{letter-spacing:0.180000px;}
.ls18_c02054{letter-spacing:0.180360px;}
.ls9_c02054{letter-spacing:0.181944px;}
.ls2e_c02054{letter-spacing:113.940000px;}
.ls16_c02054{letter-spacing:156.778200px;}
.lsc_c02054{letter-spacing:200.790000px;}
.ls2b_c02054{letter-spacing:1139.578200px;}
.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;}
}
.ws1_c02054{word-spacing:-16.647876px;}
.ws9_c02054{word-spacing:-0.272916px;}
.wsc_c02054{word-spacing:-0.253764px;}
.wsf_c02054{word-spacing:-0.229824px;}
.wse_c02054{word-spacing:-0.205884px;}
.ws8_c02054{word-spacing:-0.183600px;}
.wsd_c02054{word-spacing:-0.119700px;}
.ws5_c02054{word-spacing:-0.115200px;}
.ws17_c02054{word-spacing:-0.090180px;}
.ws3_c02054{word-spacing:-0.021600px;}
.ws10_c02054{word-spacing:-0.014400px;}
.ws6_c02054{word-spacing:-0.007200px;}
.ws4_c02054{word-spacing:0.000000px;}
.ws7_c02054{word-spacing:0.007200px;}
.ws16_c02054{word-spacing:0.019764px;}
.ws1a_c02054{word-spacing:0.039528px;}
.ws18_c02054{word-spacing:0.046116px;}
.ws11_c02054{word-spacing:0.118800px;}
.ws13_c02054{word-spacing:62.429400px;}
.ws0_c02054{word-spacing:85.969440px;}
.ws15_c02054{word-spacing:88.140852px;}
.ws1e_c02054{word-spacing:89.913024px;}
.ws2_c02054{word-spacing:112.969440px;}
.ws12_c02054{word-spacing:113.754996px;}
.ws1c_c02054{word-spacing:122.681736px;}
.ws19_c02054{word-spacing:122.688324px;}
.ws1b_c02054{word-spacing:122.694912px;}
.ws14_c02054{word-spacing:146.886048px;}
.ws1d_c02054{word-spacing:155.812788px;}
.wsb_c02054{word-spacing:156.243600px;}
.wsa_c02054{word-spacing:156.330000px;}
.ws1f_c02054{word-spacing:601.899444px;}
._27_c02054{margin-left:-156.619764px;}
._1_c02054{margin-left:-1.296000px;}
._16_c02054{width:1.105200px;}
._26_c02054{width:13.316400px;}
._17_c02054{width:42.832800px;}
._22_c02054{width:51.409440px;}
._11_c02054{width:61.912800px;}
._25_c02054{width:66.920076px;}
._23_c02054{width:68.234220px;}
._1e_c02054{width:69.714000px;}
._21_c02054{width:73.684440px;}
._14_c02054{width:75.420000px;}
._9_c02054{width:76.924440px;}
._d_c02054{width:78.769440px;}
._a_c02054{width:79.918200px;}
._10_c02054{width:83.340000px;}
._3_c02054{width:84.474000px;}
._b_c02054{width:87.278400px;}
._2_c02054{width:88.581600px;}
._e_c02054{width:90.553248px;}
._1a_c02054{width:97.740000px;}
._c_c02054{width:100.598400px;}
._24_c02054{width:102.171348px;}
._8_c02054{width:105.467688px;}
._20_c02054{width:106.791228px;}
._1d_c02054{width:109.821600px;}
._7_c02054{width:111.391524px;}
._1b_c02054{width:115.918200px;}
._1c_c02054{width:121.065300px;}
._4_c02054{width:122.220000px;}
._5_c02054{width:127.980000px;}
._13_c02054{width:129.744000px;}
._15_c02054{width:134.074296px;}
._29_c02054{width:135.832320px;}
._6_c02054{width:139.618944px;}
._1f_c02054{width:143.100000px;}
._12_c02054{width:146.455200px;}
._19_c02054{width:156.780000px;}
._18_c02054{width:171.066384px;}
._2d_c02054{width:191.177172px;}
._0_c02054{width:194.421600px;}
._2b_c02054{width:223.932708px;}
._f_c02054{width:225.444168px;}
._2f_c02054{width:339.861744px;}
._28_c02054{width:382.426992px;}
._31_c02054{width:519.476976px;}
._2c_c02054{width:585.403092px;}
._2e_c02054{width:614.660400px;}
._30_c02054{width:647.659692px;}
._2a_c02054{width:651.454380px;}
.fc0_c02054{color:rgb(0,0,0);}
.fs2_c02054{font-size:47.880000px;}
.fs1_c02054{font-size:54.000000px;}
.fs4_c02054{font-size:60.120000px;}
.fs3_c02054{font-size:65.880000px;}
.fs0_c02054{font-size:72.000000px;}
.y0_c02054{bottom:0.000000px;}
.y3_c02054{bottom:57.360450px;}
.y2_c02054{bottom:78.060450px;}
.y3f_c02054{bottom:113.880450px;}
.y3e_c02054{bottom:134.580450px;}
.y3d_c02054{bottom:155.280450px;}
.y3c_c02054{bottom:175.980450px;}
.y3b_c02054{bottom:196.680450px;}
.y3a_c02054{bottom:217.380450px;}
.y39_c02054{bottom:238.080450px;}
.y38_c02054{bottom:258.780450px;}
.y37_c02054{bottom:279.480450px;}
.y36_c02054{bottom:300.180450px;}
.y35_c02054{bottom:320.880450px;}
.y34_c02054{bottom:341.580450px;}
.y33_c02054{bottom:362.280450px;}
.y32_c02054{bottom:382.980450px;}
.y31_c02054{bottom:403.680450px;}
.y30_c02054{bottom:424.380450px;}
.y2f_c02054{bottom:445.080450px;}
.y2e_c02054{bottom:465.780450px;}
.y2d_c02054{bottom:486.480450px;}
.y2c_c02054{bottom:507.180450px;}
.y2b_c02054{bottom:527.880450px;}
.y2a_c02054{bottom:548.490450px;}
.y29_c02054{bottom:567.390450px;}
.y28_c02054{bottom:587.100450px;}
.y27_c02054{bottom:606.090450px;}
.y26_c02054{bottom:625.080450px;}
.y25_c02054{bottom:644.070450px;}
.y24_c02054{bottom:663.060450px;}
.y23_c02054{bottom:681.600450px;}
.y22_c02054{bottom:699.960450px;}
.y21_c02054{bottom:723.090450px;}
.y20_c02054{bottom:739.200450px;}
.y1f_c02054{bottom:758.640450px;}
.y1e_c02054{bottom:779.340450px;}
.y1d_c02054{bottom:798.960450px;}
.y1c_c02054{bottom:799.320000px;}
.y1b_c02054{bottom:817.950450px;}
.y1a_c02054{bottom:818.311350px;}
.y19_c02054{bottom:837.930600px;}
.y18_c02054{bottom:857.100450px;}
.y17_c02054{bottom:873.570450px;}
.y16_c02054{bottom:895.620450px;}
.y15_c02054{bottom:911.460450px;}
.y13_c02054{bottom:932.250000px;}
.y14_c02054{bottom:933.600450px;}
.y11_c02054{bottom:951.150450px;}
.y12_c02054{bottom:952.500450px;}
.y10_c02054{bottom:970.140450px;}
.ye_c02054{bottom:989.130000px;}
.yf_c02054{bottom:990.480450px;}
.yc_c02054{bottom:1008.120000px;}
.yd_c02054{bottom:1009.470450px;}
.ya_c02054{bottom:1027.110900px;}
.yb_c02054{bottom:1028.460450px;}
.y9_c02054{bottom:1043.220450px;}
.y8_c02054{bottom:1062.480450px;}
.y7_c02054{bottom:1079.310450px;}
.y6_c02054{bottom:1101.360450px;}
.y5_c02054{bottom:1118.010450px;}
.y4_c02054{bottom:1139.250450px;}
.y1_c02054{bottom:1193.160450px;}
.h6_c02054{height:42.526230px;}
.h3_c02054{height:47.961914px;}
.h4_c02054{height:48.461836px;}
.h7_c02054{height:53.397598px;}
.h8_c02054{height:58.513535px;}
.h5_c02054{height:59.086230px;}
.h9_c02054{height:62.473535px;}
.h2_c02054{height:63.175781px;}
.h1_c02054{height:63.949219px;}
.h0_c02054{height:1263.000000px;}
.w1_c02054{width:892.500000px;}
.w0_c02054{width:892.830000px;}
.x0_c02054{left:0.000000px;}
.x1_c02054{left:127.620000px;}
.x3_c02054{left:135.630000px;}
.x4_c02054{left:143.910000px;}
.x7_c02054{left:147.690000px;}
.x5_c02054{left:150.299400px;}
.x8_c02054{left:172.620000px;}
.x9_c02054{left:204.930000px;}
.x6_c02054{left:220.680000px;}
.x2_c02054{left:437.490000px;}
@media print{
.v7_c02054{vertical-align:-17.280000pt;}
.v5_c02054{vertical-align:-16.320000pt;}
.v6_c02054{vertical-align:-14.720000pt;}
.v8_c02054{vertical-align:-11.200000pt;}
.v9_c02054{vertical-align:-9.920000pt;}
.v10_c02054{vertical-align:-6.081600pt;}
.vb_c02054{vertical-align:-3.840533pt;}
.va_c02054{vertical-align:-2.240533pt;}
.v4_c02054{vertical-align:-1.280000pt;}
.v0_c02054{vertical-align:0.000000pt;}
.v2_c02054{vertical-align:0.960000pt;}
.ve_c02054{vertical-align:2.240000pt;}
.vd_c02054{vertical-align:3.520000pt;}
.v1_c02054{vertical-align:4.800000pt;}
.vc_c02054{vertical-align:6.081600pt;}
.vf_c02054{vertical-align:8.320000pt;}
.v3_c02054{vertical-align:14.720000pt;}
.ls2d_c02054{letter-spacing:-0.080864pt;}
.ls28_c02054{letter-spacing:-0.076608pt;}
.ls24_c02054{letter-spacing:-0.038400pt;}
.ls26_c02054{letter-spacing:-0.017024pt;}
.ls25_c02054{letter-spacing:-0.009600pt;}
.ls22_c02054{letter-spacing:-0.006400pt;}
.ls30_c02054{letter-spacing:-0.005344pt;}
.ls21_c02054{letter-spacing:0.000000pt;}
.ls5_c02054{letter-spacing:0.004800pt;}
.ls1_c02054{letter-spacing:0.006400pt;}
.ls2_c02054{letter-spacing:0.009600pt;}
.ls11_c02054{letter-spacing:0.012800pt;}
.ls2c_c02054{letter-spacing:0.019200pt;}
.ls4_c02054{letter-spacing:0.025536pt;}
.ls0_c02054{letter-spacing:0.025600pt;}
.ls6_c02054{letter-spacing:0.028800pt;}
.ls3_c02054{letter-spacing:0.038304pt;}
.lsa_c02054{letter-spacing:0.038400pt;}
.ls19_c02054{letter-spacing:0.040992pt;}
.lse_c02054{letter-spacing:0.046816pt;}
.ls1b_c02054{letter-spacing:0.046848pt;}
.ls1c_c02054{letter-spacing:0.052704pt;}
.ls12_c02054{letter-spacing:0.052800pt;}
.ls17_c02054{letter-spacing:0.064416pt;}
.ls8_c02054{letter-spacing:0.068096pt;}
.ls1e_c02054{letter-spacing:0.070272pt;}
.ls14_c02054{letter-spacing:0.076128pt;}
.ls29_c02054{letter-spacing:0.081600pt;}
.ls13_c02054{letter-spacing:0.081984pt;}
.ls20_c02054{letter-spacing:0.099552pt;}
.lsf_c02054{letter-spacing:0.102144pt;}
.ls10_c02054{letter-spacing:0.123424pt;}
.ls2f_c02054{letter-spacing:0.128256pt;}
.ls23_c02054{letter-spacing:0.134400pt;}
.ls15_c02054{letter-spacing:0.134688pt;}
.ls7_c02054{letter-spacing:0.140544pt;}
.lsd_c02054{letter-spacing:0.144704pt;}
.ls1a_c02054{letter-spacing:0.146400pt;}
.ls27_c02054{letter-spacing:0.148960pt;}
.ls1d_c02054{letter-spacing:0.152256pt;}
.ls1f_c02054{letter-spacing:0.158112pt;}
.ls2a_c02054{letter-spacing:0.158400pt;}
.lsb_c02054{letter-spacing:0.160000pt;}
.ls18_c02054{letter-spacing:0.160320pt;}
.ls9_c02054{letter-spacing:0.161728pt;}
.ls2e_c02054{letter-spacing:101.280000pt;}
.ls16_c02054{letter-spacing:139.358400pt;}
.lsc_c02054{letter-spacing:178.480000pt;}
.ls2b_c02054{letter-spacing:1012.958400pt;}
.ws1_c02054{word-spacing:-14.798112pt;}
.ws9_c02054{word-spacing:-0.242592pt;}
.wsc_c02054{word-spacing:-0.225568pt;}
.wsf_c02054{word-spacing:-0.204288pt;}
.wse_c02054{word-spacing:-0.183008pt;}
.ws8_c02054{word-spacing:-0.163200pt;}
.wsd_c02054{word-spacing:-0.106400pt;}
.ws5_c02054{word-spacing:-0.102400pt;}
.ws17_c02054{word-spacing:-0.080160pt;}
.ws3_c02054{word-spacing:-0.019200pt;}
.ws10_c02054{word-spacing:-0.012800pt;}
.ws6_c02054{word-spacing:-0.006400pt;}
.ws4_c02054{word-spacing:0.000000pt;}
.ws7_c02054{word-spacing:0.006400pt;}
.ws16_c02054{word-spacing:0.017568pt;}
.ws1a_c02054{word-spacing:0.035136pt;}
.ws18_c02054{word-spacing:0.040992pt;}
.ws11_c02054{word-spacing:0.105600pt;}
.ws13_c02054{word-spacing:55.492800pt;}
.ws0_c02054{word-spacing:76.417280pt;}
.ws15_c02054{word-spacing:78.347424pt;}
.ws1e_c02054{word-spacing:79.922688pt;}
.ws2_c02054{word-spacing:100.417280pt;}
.ws12_c02054{word-spacing:101.115552pt;}
.ws1c_c02054{word-spacing:109.050432pt;}
.ws19_c02054{word-spacing:109.056288pt;}
.ws1b_c02054{word-spacing:109.062144pt;}
.ws14_c02054{word-spacing:130.565376pt;}
.ws1d_c02054{word-spacing:138.500256pt;}
.wsb_c02054{word-spacing:138.883200pt;}
.wsa_c02054{word-spacing:138.960000pt;}
.ws1f_c02054{word-spacing:535.021728pt;}
._27_c02054{margin-left:-139.217568pt;}
._1_c02054{margin-left:-1.152000pt;}
._16_c02054{width:0.982400pt;}
._26_c02054{width:11.836800pt;}
._17_c02054{width:38.073600pt;}
._22_c02054{width:45.697280pt;}
._11_c02054{width:55.033600pt;}
._25_c02054{width:59.484512pt;}
._23_c02054{width:60.652640pt;}
._1e_c02054{width:61.968000pt;}
._21_c02054{width:65.497280pt;}
._14_c02054{width:67.040000pt;}
._9_c02054{width:68.377280pt;}
._d_c02054{width:70.017280pt;}
._a_c02054{width:71.038400pt;}
._10_c02054{width:74.080000pt;}
._3_c02054{width:75.088000pt;}
._b_c02054{width:77.580800pt;}
._2_c02054{width:78.739200pt;}
._e_c02054{width:80.491776pt;}
._1a_c02054{width:86.880000pt;}
._c_c02054{width:89.420800pt;}
._24_c02054{width:90.818976pt;}
._8_c02054{width:93.749056pt;}
._20_c02054{width:94.925536pt;}
._1d_c02054{width:97.619200pt;}
._7_c02054{width:99.014688pt;}
._1b_c02054{width:103.038400pt;}
._1c_c02054{width:107.613600pt;}
._4_c02054{width:108.640000pt;}
._5_c02054{width:113.760000pt;}
._13_c02054{width:115.328000pt;}
._15_c02054{width:119.177152pt;}
._29_c02054{width:120.739840pt;}
._6_c02054{width:124.105728pt;}
._1f_c02054{width:127.200000pt;}
._12_c02054{width:130.182400pt;}
._19_c02054{width:139.360000pt;}
._18_c02054{width:152.059008pt;}
._2d_c02054{width:169.935264pt;}
._0_c02054{width:172.819200pt;}
._2b_c02054{width:199.051296pt;}
._f_c02054{width:200.394816pt;}
._2f_c02054{width:302.099328pt;}
._28_c02054{width:339.935104pt;}
._31_c02054{width:461.757312pt;}
._2c_c02054{width:520.358304pt;}
._2e_c02054{width:546.364800pt;}
._30_c02054{width:575.697504pt;}
._2a_c02054{width:579.070560pt;}
.fs2_c02054{font-size:42.560000pt;}
.fs1_c02054{font-size:48.000000pt;}
.fs4_c02054{font-size:53.440000pt;}
.fs3_c02054{font-size:58.560000pt;}
.fs0_c02054{font-size:64.000000pt;}
.y0_c02054{bottom:0.000000pt;}
.y3_c02054{bottom:50.987067pt;}
.y2_c02054{bottom:69.387067pt;}
.y3f_c02054{bottom:101.227067pt;}
.y3e_c02054{bottom:119.627067pt;}
.y3d_c02054{bottom:138.027067pt;}
.y3c_c02054{bottom:156.427067pt;}
.y3b_c02054{bottom:174.827067pt;}
.y3a_c02054{bottom:193.227067pt;}
.y39_c02054{bottom:211.627067pt;}
.y38_c02054{bottom:230.027067pt;}
.y37_c02054{bottom:248.427067pt;}
.y36_c02054{bottom:266.827067pt;}
.y35_c02054{bottom:285.227067pt;}
.y34_c02054{bottom:303.627067pt;}
.y33_c02054{bottom:322.027067pt;}
.y32_c02054{bottom:340.427067pt;}
.y31_c02054{bottom:358.827067pt;}
.y30_c02054{bottom:377.227067pt;}
.y2f_c02054{bottom:395.627067pt;}
.y2e_c02054{bottom:414.027067pt;}
.y2d_c02054{bottom:432.427067pt;}
.y2c_c02054{bottom:450.827067pt;}
.y2b_c02054{bottom:469.227067pt;}
.y2a_c02054{bottom:487.547067pt;}
.y29_c02054{bottom:504.347067pt;}
.y28_c02054{bottom:521.867067pt;}
.y27_c02054{bottom:538.747067pt;}
.y26_c02054{bottom:555.627067pt;}
.y25_c02054{bottom:572.507067pt;}
.y24_c02054{bottom:589.387067pt;}
.y23_c02054{bottom:605.867067pt;}
.y22_c02054{bottom:622.187067pt;}
.y21_c02054{bottom:642.747067pt;}
.y20_c02054{bottom:657.067067pt;}
.y1f_c02054{bottom:674.347067pt;}
.y1e_c02054{bottom:692.747067pt;}
.y1d_c02054{bottom:710.187067pt;}
.y1c_c02054{bottom:710.506667pt;}
.y1b_c02054{bottom:727.067067pt;}
.y1a_c02054{bottom:727.387867pt;}
.y19_c02054{bottom:744.827200pt;}
.y18_c02054{bottom:761.867067pt;}
.y17_c02054{bottom:776.507067pt;}
.y16_c02054{bottom:796.107067pt;}
.y15_c02054{bottom:810.187067pt;}
.y13_c02054{bottom:828.666667pt;}
.y14_c02054{bottom:829.867067pt;}
.y11_c02054{bottom:845.467067pt;}
.y12_c02054{bottom:846.667067pt;}
.y10_c02054{bottom:862.347067pt;}
.ye_c02054{bottom:879.226667pt;}
.yf_c02054{bottom:880.427067pt;}
.yc_c02054{bottom:896.106667pt;}
.yd_c02054{bottom:897.307067pt;}
.ya_c02054{bottom:912.987467pt;}
.yb_c02054{bottom:914.187067pt;}
.y9_c02054{bottom:927.307067pt;}
.y8_c02054{bottom:944.427067pt;}
.y7_c02054{bottom:959.387067pt;}
.y6_c02054{bottom:978.987067pt;}
.y5_c02054{bottom:993.787067pt;}
.y4_c02054{bottom:1012.667067pt;}
.y1_c02054{bottom:1060.587067pt;}
.h6_c02054{height:37.801094pt;}
.h3_c02054{height:42.632812pt;}
.h4_c02054{height:43.077187pt;}
.h7_c02054{height:47.464531pt;}
.h8_c02054{height:52.012031pt;}
.h5_c02054{height:52.521094pt;}
.h9_c02054{height:55.532031pt;}
.h2_c02054{height:56.156250pt;}
.h1_c02054{height:56.843750pt;}
.h0_c02054{height:1122.666667pt;}
.w1_c02054{width:793.333333pt;}
.w0_c02054{width:793.626667pt;}
.x0_c02054{left:0.000000pt;}
.x1_c02054{left:113.440000pt;}
.x3_c02054{left:120.560000pt;}
.x4_c02054{left:127.920000pt;}
.x7_c02054{left:131.280000pt;}
.x5_c02054{left:133.599467pt;}
.x8_c02054{left:153.440000pt;}
.x9_c02054{left:182.160000pt;}
.x6_c02054{left:196.160000pt;}
.x2_c02054{left:388.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_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_d5c0d6c48539a0325b3d7876.woff2')format("woff");}.ff1_c02055{font-family:ff1_c02055;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02055;src:url('chunks/assets/font_592ef83d045c65f1e4e855c7.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;}
.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);}
.v2_c02055{vertical-align:-5.760000px;}
.v0_c02055{vertical-align:0.000000px;}
.v1_c02055{vertical-align:1.440000px;}
.ls16_c02055{letter-spacing:-0.086400px;}
.ls17_c02055{letter-spacing:-0.052704px;}
.ls14_c02055{letter-spacing:-0.032940px;}
.ls15_c02055{letter-spacing:-0.026352px;}
.ls11_c02055{letter-spacing:-0.014400px;}
.ls13_c02055{letter-spacing:-0.013176px;}
.ls12_c02055{letter-spacing:-0.007200px;}
.ls10_c02055{letter-spacing:0.000000px;}
.ls0_c02055{letter-spacing:0.007200px;}
.ls6_c02055{letter-spacing:0.013176px;}
.ls4_c02055{letter-spacing:0.019764px;}
.lsc_c02055{letter-spacing:0.026352px;}
.lsf_c02055{letter-spacing:0.028800px;}
.lsd_c02055{letter-spacing:0.032940px;}
.ls2_c02055{letter-spacing:0.039528px;}
.lsa_c02055{letter-spacing:0.046116px;}
.lsb_c02055{letter-spacing:0.052704px;}
.ls9_c02055{letter-spacing:0.059292px;}
.ls5_c02055{letter-spacing:0.065880px;}
.ls1_c02055{letter-spacing:0.072468px;}
.lse_c02055{letter-spacing:0.079056px;}
.ls7_c02055{letter-spacing:0.085644px;}
.ls3_c02055{letter-spacing:0.098820px;}
.ls8_c02055{letter-spacing:0.105408px;}
.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;}
}
.ws12_c02055{word-spacing:-0.115200px;}
.ws13_c02055{word-spacing:-0.086400px;}
.ws0_c02055{word-spacing:-0.021600px;}
.wsa_c02055{word-spacing:-0.013176px;}
.ws3_c02055{word-spacing:-0.007200px;}
.ws1_c02055{word-spacing:0.000000px;}
.ws9_c02055{word-spacing:0.006588px;}
.ws4_c02055{word-spacing:0.007200px;}
.ws11_c02055{word-spacing:0.013176px;}
.ws2_c02055{word-spacing:0.014400px;}
.ws5_c02055{word-spacing:0.019764px;}
.ws7_c02055{word-spacing:0.026352px;}
.wsb_c02055{word-spacing:0.032940px;}
.wsd_c02055{word-spacing:0.039528px;}
.wsc_c02055{word-spacing:0.046116px;}
.wse_c02055{word-spacing:0.052704px;}
.ws10_c02055{word-spacing:0.059292px;}
.wsf_c02055{word-spacing:0.065880px;}
.ws8_c02055{word-spacing:0.079056px;}
.ws6_c02055{word-spacing:272.160000px;}
._a_c02055{margin-left:-64.800000px;}
._10_c02055{margin-left:-1.172664px;}
._20_c02055{width:1.021140px;}
._1_c02055{width:65.407068px;}
._4_c02055{width:96.810048px;}
._6_c02055{width:101.605680px;}
._2_c02055{width:115.338168px;}
._5_c02055{width:116.438220px;}
._3_c02055{width:129.525840px;}
._0_c02055{width:194.421600px;}
._9_c02055{width:225.720000px;}
._13_c02055{width:345.348612px;}
._2b_c02055{width:391.998960px;}
._7_c02055{width:410.686128px;}
._8_c02055{width:565.920000px;}
._15_c02055{width:629.739396px;}
._d_c02055{width:680.104656px;}
._1d_c02055{width:771.025644px;}
._1e_c02055{width:785.802528px;}
._19_c02055{width:844.903476px;}
._16_c02055{width:883.001880px;}
._12_c02055{width:906.178464px;}
._23_c02055{width:910.500192px;}
._2a_c02055{width:937.642752px;}
._24_c02055{width:962.347752px;}
._30_c02055{width:983.534760px;}
._2e_c02055{width:997.909776px;}
._22_c02055{width:1027.061676px;}
._1f_c02055{width:1090.339416px;}
._2f_c02055{width:1101.084444px;}
._21_c02055{width:1135.954728px;}
._29_c02055{width:1184.455584px;}
._25_c02055{width:1187.650764px;}
._1c_c02055{width:1261.706472px;}
._1b_c02055{width:1392.109344px;}
._31_c02055{width:1434.681720px;}
._c_c02055{width:1456.705404px;}
._14_c02055{width:1541.367792px;}
._1a_c02055{width:1578.557052px;}
._26_c02055{width:1580.736960px;}
._17_c02055{width:1587.641184px;}
._18_c02055{width:1629.053352px;}
._27_c02055{width:1666.137924px;}
._e_c02055{width:1674.471024px;}
._f_c02055{width:1729.454472px;}
._11_c02055{width:1748.414736px;}
._b_c02055{width:1791.288000px;}
._2d_c02055{width:1863.982152px;}
._2c_c02055{width:1913.892120px;}
._32_c02055{width:2247.861024px;}
._28_c02055{width:2337.764040px;}
.fc0_c02055{color:rgb(0,0,0);}
.fs2_c02055{font-size:11.880000px;}
.fs1_c02055{font-size:65.880000px;}
.fs0_c02055{font-size:72.000000px;}
.y0_c02055{bottom:0.000000px;}
.y3_c02055{bottom:57.360450px;}
.y2_c02055{bottom:78.060450px;}
.y35_c02055{bottom:112.170450px;}
.y34_c02055{bottom:130.440450px;}
.y33_c02055{bottom:139.260450px;}
.y32_c02055{bottom:160.770450px;}
.y31_c02055{bottom:182.190450px;}
.y30_c02055{bottom:203.610450px;}
.y2f_c02055{bottom:225.030600px;}
.y2e_c02055{bottom:246.540600px;}
.y2d_c02055{bottom:267.960450px;}
.y2c_c02055{bottom:289.380450px;}
.y2b_c02055{bottom:310.890450px;}
.y2a_c02055{bottom:332.310450px;}
.y29_c02055{bottom:352.020450px;}
.y28_c02055{bottom:371.010450px;}
.y27_c02055{bottom:392.430600px;}
.y26_c02055{bottom:413.940450px;}
.y25_c02055{bottom:435.360600px;}
.y24_c02055{bottom:456.780600px;}
.y23_c02055{bottom:478.290600px;}
.y22_c02055{bottom:499.710600px;}
.y21_c02055{bottom:521.130450px;}
.y20_c02055{bottom:542.640450px;}
.y1f_c02055{bottom:564.060450px;}
.y1e_c02055{bottom:585.480450px;}
.y1d_c02055{bottom:606.900450px;}
.y1c_c02055{bottom:628.410450px;}
.y1b_c02055{bottom:649.830450px;}
.y1a_c02055{bottom:671.250450px;}
.y19_c02055{bottom:692.760450px;}
.y18_c02055{bottom:714.180450px;}
.y17_c02055{bottom:735.600450px;}
.y16_c02055{bottom:757.110450px;}
.y15_c02055{bottom:778.530450px;}
.y14_c02055{bottom:799.950450px;}
.y13_c02055{bottom:821.460450px;}
.y12_c02055{bottom:842.880450px;}
.y11_c02055{bottom:864.300450px;}
.y10_c02055{bottom:885.810450px;}
.yf_c02055{bottom:907.230450px;}
.ye_c02055{bottom:928.650450px;}
.yd_c02055{bottom:950.160450px;}
.yc_c02055{bottom:970.140450px;}
.yb_c02055{bottom:991.560450px;}
.ya_c02055{bottom:1012.800450px;}
.y9_c02055{bottom:1034.220450px;}
.y8_c02055{bottom:1054.920450px;}
.y7_c02055{bottom:1075.620450px;}
.y6_c02055{bottom:1097.310450px;}
.y5_c02055{bottom:1118.010450px;}
.y4_c02055{bottom:1139.250450px;}
.y1_c02055{bottom:1193.160450px;}
.h6_c02055{height:10.424004px;}
.h3_c02055{height:58.513535px;}
.h2_c02055{height:63.175781px;}
.h1_c02055{height:63.949219px;}
.h4_c02055{height:64.615781px;}
.h5_c02055{height:64.975781px;}
.h0_c02055{height:1263.000000px;}
.w1_c02055{width:892.500000px;}
.w0_c02055{width:892.830000px;}
.x0_c02055{left:0.000000px;}
.x1_c02055{left:127.620000px;}
.x3_c02055{left:135.630000px;}
.x6_c02055{left:137.520000px;}
.x4_c02055{left:263.430000px;}
.x5_c02055{left:333.180000px;}
.x7_c02055{left:335.160000px;}
.x2_c02055{left:437.490000px;}
@media print{
.v2_c02055{vertical-align:-5.120000pt;}
.v0_c02055{vertical-align:0.000000pt;}
.v1_c02055{vertical-align:1.280000pt;}
.ls16_c02055{letter-spacing:-0.076800pt;}
.ls17_c02055{letter-spacing:-0.046848pt;}
.ls14_c02055{letter-spacing:-0.029280pt;}
.ls15_c02055{letter-spacing:-0.023424pt;}
.ls11_c02055{letter-spacing:-0.012800pt;}
.ls13_c02055{letter-spacing:-0.011712pt;}
.ls12_c02055{letter-spacing:-0.006400pt;}
.ls10_c02055{letter-spacing:0.000000pt;}
.ls0_c02055{letter-spacing:0.006400pt;}
.ls6_c02055{letter-spacing:0.011712pt;}
.ls4_c02055{letter-spacing:0.017568pt;}
.lsc_c02055{letter-spacing:0.023424pt;}
.lsf_c02055{letter-spacing:0.025600pt;}
.lsd_c02055{letter-spacing:0.029280pt;}
.ls2_c02055{letter-spacing:0.035136pt;}
.lsa_c02055{letter-spacing:0.040992pt;}
.lsb_c02055{letter-spacing:0.046848pt;}
.ls9_c02055{letter-spacing:0.052704pt;}
.ls5_c02055{letter-spacing:0.058560pt;}
.ls1_c02055{letter-spacing:0.064416pt;}
.lse_c02055{letter-spacing:0.070272pt;}
.ls7_c02055{letter-spacing:0.076128pt;}
.ls3_c02055{letter-spacing:0.087840pt;}
.ls8_c02055{letter-spacing:0.093696pt;}
.ws12_c02055{word-spacing:-0.102400pt;}
.ws13_c02055{word-spacing:-0.076800pt;}
.ws0_c02055{word-spacing:-0.019200pt;}
.wsa_c02055{word-spacing:-0.011712pt;}
.ws3_c02055{word-spacing:-0.006400pt;}
.ws1_c02055{word-spacing:0.000000pt;}
.ws9_c02055{word-spacing:0.005856pt;}
.ws4_c02055{word-spacing:0.006400pt;}
.ws11_c02055{word-spacing:0.011712pt;}
.ws2_c02055{word-spacing:0.012800pt;}
.ws5_c02055{word-spacing:0.017568pt;}
.ws7_c02055{word-spacing:0.023424pt;}
.wsb_c02055{word-spacing:0.029280pt;}
.wsd_c02055{word-spacing:0.035136pt;}
.wsc_c02055{word-spacing:0.040992pt;}
.wse_c02055{word-spacing:0.046848pt;}
.ws10_c02055{word-spacing:0.052704pt;}
.wsf_c02055{word-spacing:0.058560pt;}
.ws8_c02055{word-spacing:0.070272pt;}
.ws6_c02055{word-spacing:241.920000pt;}
._a_c02055{margin-left:-57.600000pt;}
._10_c02055{margin-left:-1.042368pt;}
._20_c02055{width:0.907680pt;}
._1_c02055{width:58.139616pt;}
._4_c02055{width:86.053376pt;}
._6_c02055{width:90.316160pt;}
._2_c02055{width:102.522816pt;}
._5_c02055{width:103.500640pt;}
._3_c02055{width:115.134080pt;}
._0_c02055{width:172.819200pt;}
._9_c02055{width:200.640000pt;}
._13_c02055{width:306.976544pt;}
._2b_c02055{width:348.443520pt;}
._7_c02055{width:365.054336pt;}
._8_c02055{width:503.040000pt;}
._15_c02055{width:559.768352pt;}
._d_c02055{width:604.537472pt;}
._1d_c02055{width:685.356128pt;}
._1e_c02055{width:698.491136pt;}
._19_c02055{width:751.025312pt;}
._16_c02055{width:784.890560pt;}
._12_c02055{width:805.491968pt;}
._23_c02055{width:809.333504pt;}
._2a_c02055{width:833.460224pt;}
._24_c02055{width:855.420224pt;}
._30_c02055{width:874.253120pt;}
._2e_c02055{width:887.030912pt;}
._22_c02055{width:912.943712pt;}
._1f_c02055{width:969.190592pt;}
._2f_c02055{width:978.741728pt;}
._21_c02055{width:1009.737536pt;}
._29_c02055{width:1052.849408pt;}
._25_c02055{width:1055.689568pt;}
._1c_c02055{width:1121.516864pt;}
._1b_c02055{width:1237.430528pt;}
._31_c02055{width:1275.272640pt;}
._c_c02055{width:1294.849248pt;}
._14_c02055{width:1370.104704pt;}
._1a_c02055{width:1403.161824pt;}
._26_c02055{width:1405.099520pt;}
._17_c02055{width:1411.236608pt;}
._18_c02055{width:1448.047424pt;}
._27_c02055{width:1481.011488pt;}
._e_c02055{width:1488.418688pt;}
._f_c02055{width:1537.292864pt;}
._11_c02055{width:1554.146432pt;}
._b_c02055{width:1592.256000pt;}
._2d_c02055{width:1656.873024pt;}
._2c_c02055{width:1701.237440pt;}
._32_c02055{width:1998.098688pt;}
._28_c02055{width:2078.012480pt;}
.fs2_c02055{font-size:10.560000pt;}
.fs1_c02055{font-size:58.560000pt;}
.fs0_c02055{font-size:64.000000pt;}
.y0_c02055{bottom:0.000000pt;}
.y3_c02055{bottom:50.987067pt;}
.y2_c02055{bottom:69.387067pt;}
.y35_c02055{bottom:99.707067pt;}
.y34_c02055{bottom:115.947067pt;}
.y33_c02055{bottom:123.787067pt;}
.y32_c02055{bottom:142.907067pt;}
.y31_c02055{bottom:161.947067pt;}
.y30_c02055{bottom:180.987067pt;}
.y2f_c02055{bottom:200.027200pt;}
.y2e_c02055{bottom:219.147200pt;}
.y2d_c02055{bottom:238.187067pt;}
.y2c_c02055{bottom:257.227067pt;}
.y2b_c02055{bottom:276.347067pt;}
.y2a_c02055{bottom:295.387067pt;}
.y29_c02055{bottom:312.907067pt;}
.y28_c02055{bottom:329.787067pt;}
.y27_c02055{bottom:348.827200pt;}
.y26_c02055{bottom:367.947067pt;}
.y25_c02055{bottom:386.987200pt;}
.y24_c02055{bottom:406.027200pt;}
.y23_c02055{bottom:425.147200pt;}
.y22_c02055{bottom:444.187200pt;}
.y21_c02055{bottom:463.227067pt;}
.y20_c02055{bottom:482.347067pt;}
.y1f_c02055{bottom:501.387067pt;}
.y1e_c02055{bottom:520.427067pt;}
.y1d_c02055{bottom:539.467067pt;}
.y1c_c02055{bottom:558.587067pt;}
.y1b_c02055{bottom:577.627067pt;}
.y1a_c02055{bottom:596.667067pt;}
.y19_c02055{bottom:615.787067pt;}
.y18_c02055{bottom:634.827067pt;}
.y17_c02055{bottom:653.867067pt;}
.y16_c02055{bottom:672.987067pt;}
.y15_c02055{bottom:692.027067pt;}
.y14_c02055{bottom:711.067067pt;}
.y13_c02055{bottom:730.187067pt;}
.y12_c02055{bottom:749.227067pt;}
.y11_c02055{bottom:768.267067pt;}
.y10_c02055{bottom:787.387067pt;}
.yf_c02055{bottom:806.427067pt;}
.ye_c02055{bottom:825.467067pt;}
.yd_c02055{bottom:844.587067pt;}
.yc_c02055{bottom:862.347067pt;}
.yb_c02055{bottom:881.387067pt;}
.ya_c02055{bottom:900.267067pt;}
.y9_c02055{bottom:919.307067pt;}
.y8_c02055{bottom:937.707067pt;}
.y7_c02055{bottom:956.107067pt;}
.y6_c02055{bottom:975.387067pt;}
.y5_c02055{bottom:993.787067pt;}
.y4_c02055{bottom:1012.667067pt;}
.y1_c02055{bottom:1060.587067pt;}
.h6_c02055{height:9.265781pt;}
.h3_c02055{height:52.012031pt;}
.h2_c02055{height:56.156250pt;}
.h1_c02055{height:56.843750pt;}
.h4_c02055{height:57.436250pt;}
.h5_c02055{height:57.756250pt;}
.h0_c02055{height:1122.666667pt;}
.w1_c02055{width:793.333333pt;}
.w0_c02055{width:793.626667pt;}
.x0_c02055{left:0.000000pt;}
.x1_c02055{left:113.440000pt;}
.x3_c02055{left:120.560000pt;}
.x6_c02055{left:122.240000pt;}
.x4_c02055{left:234.160000pt;}
.x5_c02055{left:296.160000pt;}
.x7_c02055{left:297.920000pt;}
.x2_c02055{left:388.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_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_66b1ace9c45d8a2b7cc29e66.woff2')format("woff");}.ff1_c02056{font-family:ff1_c02056;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02056;src:url('chunks/assets/font_45c5b9d59325a6e273233b9a.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;}
.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);}
.v2_c02056{vertical-align:-22.320000px;}
.v1_c02056{vertical-align:-16.919400px;}
.v3_c02056{vertical-align:-5.400000px;}
.v0_c02056{vertical-align:0.000000px;}
.ls16_c02056{letter-spacing:-0.181116px;}
.ls14_c02056{letter-spacing:-0.180360px;}
.ls13_c02056{letter-spacing:-0.176904px;}
.ls15_c02056{letter-spacing:-0.032940px;}
.ls12_c02056{letter-spacing:0.000000px;}
.ls2_c02056{letter-spacing:0.006588px;}
.lse_c02056{letter-spacing:0.013176px;}
.ls5_c02056{letter-spacing:0.019764px;}
.lsc_c02056{letter-spacing:0.026352px;}
.lsd_c02056{letter-spacing:0.032940px;}
.lsf_c02056{letter-spacing:0.039528px;}
.lsa_c02056{letter-spacing:0.046116px;}
.ls4_c02056{letter-spacing:0.052704px;}
.ls11_c02056{letter-spacing:0.059292px;}
.lsb_c02056{letter-spacing:0.065880px;}
.ls0_c02056{letter-spacing:0.072468px;}
.ls7_c02056{letter-spacing:0.079056px;}
.ls10_c02056{letter-spacing:0.085644px;}
.ls8_c02056{letter-spacing:0.092232px;}
.ls6_c02056{letter-spacing:0.105408px;}
.ls9_c02056{letter-spacing:0.131760px;}
.ls3_c02056{letter-spacing:0.138348px;}
.ls1_c02056{letter-spacing:0.181944px;}
.sc__c02056{text-shadow:none;}
.sc0_c02056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02056{-webkit-text-stroke:0px transparent;}
.sc0_c02056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02056{word-spacing:-0.021600px;}
.ws1_c02056{word-spacing:0.000000px;}
.wsa_c02056{word-spacing:0.013176px;}
.ws4_c02056{word-spacing:0.019764px;}
.ws1d_c02056{word-spacing:0.026352px;}
.ws23_c02056{word-spacing:0.032940px;}
.ws6_c02056{word-spacing:0.039528px;}
.wsc_c02056{word-spacing:0.046116px;}
.ws17_c02056{word-spacing:0.059292px;}
.ws8_c02056{word-spacing:0.065880px;}
.wsb_c02056{word-spacing:0.072468px;}
.ws1a_c02056{word-spacing:0.408456px;}
.ws26_c02056{word-spacing:1.133136px;}
.ws22_c02056{word-spacing:1.844640px;}
.ws12_c02056{word-spacing:2.595672px;}
.ws14_c02056{word-spacing:3.979152px;}
.wsd_c02056{word-spacing:3.985740px;}
.ws13_c02056{word-spacing:4.749948px;}
.ws5_c02056{word-spacing:5.125464px;}
.ws16_c02056{word-spacing:5.810616px;}
.ws24_c02056{word-spacing:7.595964px;}
.ws1c_c02056{word-spacing:7.938540px;}
.ws1f_c02056{word-spacing:8.287704px;}
.ws11_c02056{word-spacing:11.219364px;}
.wse_c02056{word-spacing:14.381604px;}
.wsf_c02056{word-spacing:14.407956px;}
.ws1b_c02056{word-spacing:18.037944px;}
.ws15_c02056{word-spacing:18.736272px;}
.ws25_c02056{word-spacing:20.521620px;}
.ws19_c02056{word-spacing:21.602052px;}
.ws20_c02056{word-spacing:23.051412px;}
.ws9_c02056{word-spacing:24.922404px;}
.ws18_c02056{word-spacing:26.325648px;}
.ws10_c02056{word-spacing:28.526040px;}
.ws7_c02056{word-spacing:28.868616px;}
.ws1e_c02056{word-spacing:37.143144px;}
.ws3_c02056{word-spacing:38.961432px;}
.ws2_c02056{word-spacing:48.689172px;}
.ws21_c02056{word-spacing:57.638412px;}
._7_c02056{margin-left:-1.383480px;}
._6_c02056{width:1.051956px;}
._2_c02056{width:39.870720px;}
._3_c02056{width:40.950720px;}
._5_c02056{width:55.174464px;}
._1_c02056{width:73.850472px;}
._0_c02056{width:194.421600px;}
._4_c02056{width:1380.620880px;}
.fc0_c02056{color:rgb(0,0,0);}
.fs5_c02056{font-size:36.000000px;}
.fs1_c02056{font-size:42.120000px;}
.fs4_c02056{font-size:47.880000px;}
.fs2_c02056{font-size:60.120000px;}
.fs3_c02056{font-size:65.880000px;}
.fs0_c02056{font-size:72.000000px;}
.y0_c02056{bottom:0.000000px;}
.y3_c02056{bottom:57.360450px;}
.y2_c02056{bottom:78.060450px;}
.y58_c02056{bottom:125.221485px;}
.y57_c02056{bottom:144.211395px;}
.y56_c02056{bottom:163.110720px;}
.y55_c02056{bottom:182.100630px;}
.y54_c02056{bottom:201.090540px;}
.y59_c02056{bottom:219.991512px;}
.y53_c02056{bottom:225.750450px;}
.y52_c02056{bottom:239.702367px;}
.y51_c02056{bottom:258.692277px;}
.y4e_c02056{bottom:258.781215px;}
.y50_c02056{bottom:277.682187px;}
.y4d_c02056{bottom:277.771125px;}
.y4f_c02056{bottom:296.581512px;}
.y4c_c02056{bottom:302.340450px;}
.y47_c02056{bottom:314.940450px;}
.y4b_c02056{bottom:326.731305px;}
.y46_c02056{bottom:326.821305px;}
.y4a_c02056{bottom:345.630630px;}
.y45_c02056{bottom:345.720630px;}
.y49_c02056{bottom:364.620540px;}
.y44_c02056{bottom:364.710540px;}
.y48_c02056{bottom:383.610450px;}
.y43_c02056{bottom:389.370450px;}
.y40_c02056{bottom:403.411635px;}
.y3f_c02056{bottom:422.401545px;}
.y3e_c02056{bottom:441.391455px;}
.y3d_c02056{bottom:460.381365px;}
.y42_c02056{bottom:479.191752px;}
.y3c_c02056{bottom:479.280690px;}
.y41_c02056{bottom:498.181662px;}
.y3b_c02056{bottom:503.940600px;}
.y3a_c02056{bottom:517.892637px;}
.y39_c02056{bottom:536.882547px;}
.y38_c02056{bottom:555.872457px;}
.y33_c02056{bottom:555.961395px;}
.y37_c02056{bottom:574.862367px;}
.y32_c02056{bottom:574.951305px;}
.y36_c02056{bottom:593.852277px;}
.y31_c02056{bottom:593.941215px;}
.y35_c02056{bottom:612.751602px;}
.y30_c02056{bottom:612.840540px;}
.y34_c02056{bottom:631.741512px;}
.y2f_c02056{bottom:637.500450px;}
.y2e_c02056{bottom:651.449955px;}
.y2c_c02056{bottom:651.540540px;}
.y2d_c02056{bottom:670.439865px;}
.y2b_c02056{bottom:676.200450px;}
.y2a_c02056{bottom:690.152727px;}
.y29_c02056{bottom:709.142637px;}
.y28_c02056{bottom:728.132547px;}
.y27_c02056{bottom:747.122457px;}
.y22_c02056{bottom:747.211395px;}
.y26_c02056{bottom:766.112367px;}
.y21_c02056{bottom:766.201305px;}
.y25_c02056{bottom:785.011692px;}
.y20_c02056{bottom:785.100630px;}
.y24_c02056{bottom:804.001602px;}
.y1f_c02056{bottom:804.090540px;}
.y23_c02056{bottom:822.991512px;}
.y1e_c02056{bottom:828.750450px;}
.y1c_c02056{bottom:841.260450px;}
.y1d_c02056{bottom:853.050450px;}
.y1b_c02056{bottom:858.810450px;}
.y1a_c02056{bottom:872.760045px;}
.y19_c02056{bottom:891.749955px;}
.y17_c02056{bottom:891.840540px;}
.y18_c02056{bottom:910.739865px;}
.y16_c02056{bottom:916.500450px;}
.y15_c02056{bottom:930.452727px;}
.y14_c02056{bottom:949.442637px;}
.y13_c02056{bottom:968.432547px;}
.y12_c02056{bottom:987.422457px;}
.y11_c02056{bottom:1006.321782px;}
.yd_c02056{bottom:1006.410720px;}
.y10_c02056{bottom:1025.311692px;}
.yc_c02056{bottom:1025.400630px;}
.yf_c02056{bottom:1044.301602px;}
.yb_c02056{bottom:1044.390540px;}
.ye_c02056{bottom:1063.291512px;}
.ya_c02056{bottom:1069.050450px;}
.y9_c02056{bottom:1083.000045px;}
.y8_c02056{bottom:1101.989955px;}
.y6_c02056{bottom:1102.080540px;}
.y7_c02056{bottom:1120.979865px;}
.y5_c02056{bottom:1126.740450px;}
.y4_c02056{bottom:1146.270450px;}
.y1_c02056{bottom:1193.160450px;}
.h7_c02056{height:31.587891px;}
.h4_c02056{height:36.957832px;}
.h3_c02056{height:37.410293px;}
.h5_c02056{height:57.805840px;}
.h6_c02056{height:58.513535px;}
.h2_c02056{height:63.175781px;}
.h1_c02056{height:63.949219px;}
.h0_c02056{height:1263.000000px;}
.w1_c02056{width:892.500000px;}
.w0_c02056{width:892.830000px;}
.x0_c02056{left:0.000000px;}
.x1_c02056{left:127.620000px;}
.x3_c02056{left:135.630000px;}
.x4_c02056{left:273.870000px;}
.x2_c02056{left:437.490000px;}
.x8_c02056{left:702.539631px;}
.x5_c02056{left:706.230558px;}
.x6_c02056{left:707.577804px;}
.x7_c02056{left:710.370000px;}
@media print{
.v2_c02056{vertical-align:-19.840000pt;}
.v1_c02056{vertical-align:-15.039467pt;}
.v3_c02056{vertical-align:-4.800000pt;}
.v0_c02056{vertical-align:0.000000pt;}
.ls16_c02056{letter-spacing:-0.160992pt;}
.ls14_c02056{letter-spacing:-0.160320pt;}
.ls13_c02056{letter-spacing:-0.157248pt;}
.ls15_c02056{letter-spacing:-0.029280pt;}
.ls12_c02056{letter-spacing:0.000000pt;}
.ls2_c02056{letter-spacing:0.005856pt;}
.lse_c02056{letter-spacing:0.011712pt;}
.ls5_c02056{letter-spacing:0.017568pt;}
.lsc_c02056{letter-spacing:0.023424pt;}
.lsd_c02056{letter-spacing:0.029280pt;}
.lsf_c02056{letter-spacing:0.035136pt;}
.lsa_c02056{letter-spacing:0.040992pt;}
.ls4_c02056{letter-spacing:0.046848pt;}
.ls11_c02056{letter-spacing:0.052704pt;}
.lsb_c02056{letter-spacing:0.058560pt;}
.ls0_c02056{letter-spacing:0.064416pt;}
.ls7_c02056{letter-spacing:0.070272pt;}
.ls10_c02056{letter-spacing:0.076128pt;}
.ls8_c02056{letter-spacing:0.081984pt;}
.ls6_c02056{letter-spacing:0.093696pt;}
.ls9_c02056{letter-spacing:0.117120pt;}
.ls3_c02056{letter-spacing:0.122976pt;}
.ls1_c02056{letter-spacing:0.161728pt;}
.ws0_c02056{word-spacing:-0.019200pt;}
.ws1_c02056{word-spacing:0.000000pt;}
.wsa_c02056{word-spacing:0.011712pt;}
.ws4_c02056{word-spacing:0.017568pt;}
.ws1d_c02056{word-spacing:0.023424pt;}
.ws23_c02056{word-spacing:0.029280pt;}
.ws6_c02056{word-spacing:0.035136pt;}
.wsc_c02056{word-spacing:0.040992pt;}
.ws17_c02056{word-spacing:0.052704pt;}
.ws8_c02056{word-spacing:0.058560pt;}
.wsb_c02056{word-spacing:0.064416pt;}
.ws1a_c02056{word-spacing:0.363072pt;}
.ws26_c02056{word-spacing:1.007232pt;}
.ws22_c02056{word-spacing:1.639680pt;}
.ws12_c02056{word-spacing:2.307264pt;}
.ws14_c02056{word-spacing:3.537024pt;}
.wsd_c02056{word-spacing:3.542880pt;}
.ws13_c02056{word-spacing:4.222176pt;}
.ws5_c02056{word-spacing:4.555968pt;}
.ws16_c02056{word-spacing:5.164992pt;}
.ws24_c02056{word-spacing:6.751968pt;}
.ws1c_c02056{word-spacing:7.056480pt;}
.ws1f_c02056{word-spacing:7.366848pt;}
.ws11_c02056{word-spacing:9.972768pt;}
.wse_c02056{word-spacing:12.783648pt;}
.wsf_c02056{word-spacing:12.807072pt;}
.ws1b_c02056{word-spacing:16.033728pt;}
.ws15_c02056{word-spacing:16.654464pt;}
.ws25_c02056{word-spacing:18.241440pt;}
.ws19_c02056{word-spacing:19.201824pt;}
.ws20_c02056{word-spacing:20.490144pt;}
.ws9_c02056{word-spacing:22.153248pt;}
.ws18_c02056{word-spacing:23.400576pt;}
.ws10_c02056{word-spacing:25.356480pt;}
.ws7_c02056{word-spacing:25.660992pt;}
.ws1e_c02056{word-spacing:33.016128pt;}
.ws3_c02056{word-spacing:34.632384pt;}
.ws2_c02056{word-spacing:43.279264pt;}
.ws21_c02056{word-spacing:51.234144pt;}
._7_c02056{margin-left:-1.229760pt;}
._6_c02056{width:0.935072pt;}
._2_c02056{width:35.440640pt;}
._3_c02056{width:36.400640pt;}
._5_c02056{width:49.043968pt;}
._1_c02056{width:65.644864pt;}
._0_c02056{width:172.819200pt;}
._4_c02056{width:1227.218560pt;}
.fs5_c02056{font-size:32.000000pt;}
.fs1_c02056{font-size:37.440000pt;}
.fs4_c02056{font-size:42.560000pt;}
.fs2_c02056{font-size:53.440000pt;}
.fs3_c02056{font-size:58.560000pt;}
.fs0_c02056{font-size:64.000000pt;}
.y0_c02056{bottom:0.000000pt;}
.y3_c02056{bottom:50.987067pt;}
.y2_c02056{bottom:69.387067pt;}
.y58_c02056{bottom:111.307987pt;}
.y57_c02056{bottom:128.187907pt;}
.y56_c02056{bottom:144.987307pt;}
.y55_c02056{bottom:161.867227pt;}
.y54_c02056{bottom:178.747147pt;}
.y59_c02056{bottom:195.548011pt;}
.y53_c02056{bottom:200.667067pt;}
.y52_c02056{bottom:213.068771pt;}
.y51_c02056{bottom:229.948691pt;}
.y4e_c02056{bottom:230.027747pt;}
.y50_c02056{bottom:246.828611pt;}
.y4d_c02056{bottom:246.907667pt;}
.y4f_c02056{bottom:263.628011pt;}
.y4c_c02056{bottom:268.747067pt;}
.y47_c02056{bottom:279.947067pt;}
.y4b_c02056{bottom:290.427827pt;}
.y46_c02056{bottom:290.507827pt;}
.y4a_c02056{bottom:307.227227pt;}
.y45_c02056{bottom:307.307227pt;}
.y49_c02056{bottom:324.107147pt;}
.y44_c02056{bottom:324.187147pt;}
.y48_c02056{bottom:340.987067pt;}
.y43_c02056{bottom:346.107067pt;}
.y40_c02056{bottom:358.588120pt;}
.y3f_c02056{bottom:375.468040pt;}
.y3e_c02056{bottom:392.347960pt;}
.y3d_c02056{bottom:409.227880pt;}
.y42_c02056{bottom:425.948224pt;}
.y3c_c02056{bottom:426.027280pt;}
.y41_c02056{bottom:442.828144pt;}
.y3b_c02056{bottom:447.947200pt;}
.y3a_c02056{bottom:460.349011pt;}
.y39_c02056{bottom:477.228931pt;}
.y38_c02056{bottom:494.108851pt;}
.y33_c02056{bottom:494.187907pt;}
.y37_c02056{bottom:510.988771pt;}
.y32_c02056{bottom:511.067827pt;}
.y36_c02056{bottom:527.868691pt;}
.y31_c02056{bottom:527.947747pt;}
.y35_c02056{bottom:544.668091pt;}
.y30_c02056{bottom:544.747147pt;}
.y34_c02056{bottom:561.548011pt;}
.y2f_c02056{bottom:566.667067pt;}
.y2e_c02056{bottom:579.066627pt;}
.y2c_c02056{bottom:579.147147pt;}
.y2d_c02056{bottom:595.946547pt;}
.y2b_c02056{bottom:601.067067pt;}
.y2a_c02056{bottom:613.469091pt;}
.y29_c02056{bottom:630.349011pt;}
.y28_c02056{bottom:647.228931pt;}
.y27_c02056{bottom:664.108851pt;}
.y22_c02056{bottom:664.187907pt;}
.y26_c02056{bottom:680.988771pt;}
.y21_c02056{bottom:681.067827pt;}
.y25_c02056{bottom:697.788171pt;}
.y20_c02056{bottom:697.867227pt;}
.y24_c02056{bottom:714.668091pt;}
.y1f_c02056{bottom:714.747147pt;}
.y23_c02056{bottom:731.548011pt;}
.y1e_c02056{bottom:736.667067pt;}
.y1c_c02056{bottom:747.787067pt;}
.y1d_c02056{bottom:758.267067pt;}
.y1b_c02056{bottom:763.387067pt;}
.y1a_c02056{bottom:775.786707pt;}
.y19_c02056{bottom:792.666627pt;}
.y17_c02056{bottom:792.747147pt;}
.y18_c02056{bottom:809.546547pt;}
.y16_c02056{bottom:814.667067pt;}
.y15_c02056{bottom:827.069091pt;}
.y14_c02056{bottom:843.949011pt;}
.y13_c02056{bottom:860.828931pt;}
.y12_c02056{bottom:877.708851pt;}
.y11_c02056{bottom:894.508251pt;}
.yd_c02056{bottom:894.587307pt;}
.y10_c02056{bottom:911.388171pt;}
.yc_c02056{bottom:911.467227pt;}
.yf_c02056{bottom:928.268091pt;}
.yb_c02056{bottom:928.347147pt;}
.ye_c02056{bottom:945.148011pt;}
.ya_c02056{bottom:950.267067pt;}
.y9_c02056{bottom:962.666707pt;}
.y8_c02056{bottom:979.546627pt;}
.y6_c02056{bottom:979.627147pt;}
.y7_c02056{bottom:996.426547pt;}
.y5_c02056{bottom:1001.547067pt;}
.y4_c02056{bottom:1018.907067pt;}
.y1_c02056{bottom:1060.587067pt;}
.h7_c02056{height:28.078125pt;}
.h4_c02056{height:32.851406pt;}
.h3_c02056{height:33.253594pt;}
.h5_c02056{height:51.382969pt;}
.h6_c02056{height:52.012031pt;}
.h2_c02056{height:56.156250pt;}
.h1_c02056{height:56.843750pt;}
.h0_c02056{height:1122.666667pt;}
.w1_c02056{width:793.333333pt;}
.w0_c02056{width:793.626667pt;}
.x0_c02056{left:0.000000pt;}
.x1_c02056{left:113.440000pt;}
.x3_c02056{left:120.560000pt;}
.x4_c02056{left:243.440000pt;}
.x2_c02056{left:388.880000pt;}
.x8_c02056{left:624.479672pt;}
.x5_c02056{left:627.760496pt;}
.x6_c02056{left:628.958048pt;}
.x7_c02056{left:631.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_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_7b3e1cc7d5cf7907e6abf105.woff2')format("woff");}.ff1_c02057{font-family:ff1_c02057;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02057;src:url('chunks/assets/font_0c5ad5d5e2b9aaa14e847fb5.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;}
.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);}
.v2_c02057{vertical-align:-22.320000px;}
.v1_c02057{vertical-align:-16.919400px;}
.v3_c02057{vertical-align:-5.400000px;}
.v0_c02057{vertical-align:0.000000px;}
.ls17_c02057{letter-spacing:-0.181116px;}
.ls15_c02057{letter-spacing:-0.180360px;}
.ls14_c02057{letter-spacing:-0.176904px;}
.ls16_c02057{letter-spacing:-0.032940px;}
.ls13_c02057{letter-spacing:0.000000px;}
.ls11_c02057{letter-spacing:0.006588px;}
.ls2_c02057{letter-spacing:0.013176px;}
.ls12_c02057{letter-spacing:0.019764px;}
.ls4_c02057{letter-spacing:0.026352px;}
.ls7_c02057{letter-spacing:0.032940px;}
.ls5_c02057{letter-spacing:0.039528px;}
.ls3_c02057{letter-spacing:0.046116px;}
.ls6_c02057{letter-spacing:0.052704px;}
.ls10_c02057{letter-spacing:0.059292px;}
.lsa_c02057{letter-spacing:0.065880px;}
.ls0_c02057{letter-spacing:0.072468px;}
.lsb_c02057{letter-spacing:0.079056px;}
.lsf_c02057{letter-spacing:0.085644px;}
.ls8_c02057{letter-spacing:0.092232px;}
.lsc_c02057{letter-spacing:0.105408px;}
.lsd_c02057{letter-spacing:0.118584px;}
.lse_c02057{letter-spacing:0.131760px;}
.ls9_c02057{letter-spacing:0.138348px;}
.ls1_c02057{letter-spacing:0.181944px;}
.sc__c02057{text-shadow:none;}
.sc0_c02057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02057{-webkit-text-stroke:0px transparent;}
.sc0_c02057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02057{word-spacing:-0.021600px;}
.ws1_c02057{word-spacing:0.000000px;}
.ws15_c02057{word-spacing:0.006588px;}
.ws11_c02057{word-spacing:0.013176px;}
.wsd_c02057{word-spacing:0.019764px;}
.ws23_c02057{word-spacing:0.026352px;}
.ws19_c02057{word-spacing:0.032940px;}
.ws6_c02057{word-spacing:0.052704px;}
.ws12_c02057{word-spacing:0.065880px;}
.ws1d_c02057{word-spacing:0.079056px;}
.ws8_c02057{word-spacing:0.415044px;}
.ws10_c02057{word-spacing:0.744444px;}
.ws21_c02057{word-spacing:2.200392px;}
.wsb_c02057{word-spacing:3.274236px;}
.ws16_c02057{word-spacing:3.280824px;}
.ws1b_c02057{word-spacing:5.066172px;}
.ws22_c02057{word-spacing:5.810616px;}
.ws1e_c02057{word-spacing:10.883376px;}
.ws5_c02057{word-spacing:11.581704px;}
.ws1c_c02057{word-spacing:11.891340px;}
.ws9_c02057{word-spacing:15.521328px;}
.ws18_c02057{word-spacing:16.568820px;}
.ws17_c02057{word-spacing:16.588584px;}
.ws13_c02057{word-spacing:24.810408px;}
.ws14_c02057{word-spacing:24.876288px;}
.wsc_c02057{word-spacing:31.727808px;}
.ws1a_c02057{word-spacing:33.855732px;}
.wsf_c02057{word-spacing:36.438228px;}
.ws1f_c02057{word-spacing:38.592504px;}
.ws3_c02057{word-spacing:47.235960px;}
.ws20_c02057{word-spacing:48.626028px;}
.ws2_c02057{word-spacing:48.689172px;}
.ws7_c02057{word-spacing:51.518160px;}
.wsa_c02057{word-spacing:52.249428px;}
.wse_c02057{word-spacing:56.907144px;}
.ws4_c02057{word-spacing:173.560860px;}
._7_c02057{margin-left:-1.108908px;}
._6_c02057{width:1.179252px;}
._2_c02057{width:39.870720px;}
._3_c02057{width:40.950720px;}
._5_c02057{width:55.174464px;}
._1_c02057{width:73.850472px;}
._0_c02057{width:194.421600px;}
._9_c02057{width:341.264988px;}
._a_c02057{width:392.168340px;}
._8_c02057{width:644.264748px;}
._4_c02057{width:1380.620880px;}
.fc0_c02057{color:rgb(0,0,0);}
.fs1_c02057{font-size:42.120000px;}
.fs4_c02057{font-size:47.880000px;}
.fs2_c02057{font-size:60.120000px;}
.fs3_c02057{font-size:65.880000px;}
.fs0_c02057{font-size:72.000000px;}
.y0_c02057{bottom:0.000000px;}
.y3_c02057{bottom:57.360450px;}
.y2_c02057{bottom:78.060450px;}
.y4d_c02057{bottom:113.700450px;}
.y4c_c02057{bottom:134.400450px;}
.y4b_c02057{bottom:155.100450px;}
.y4a_c02057{bottom:175.800450px;}
.y49_c02057{bottom:196.500450px;}
.y48_c02057{bottom:217.200450px;}
.y47_c02057{bottom:237.900450px;}
.y46_c02057{bottom:258.600450px;}
.y45_c02057{bottom:279.300450px;}
.y44_c02057{bottom:300.000450px;}
.y3d_c02057{bottom:320.250450px;}
.y43_c02057{bottom:334.831485px;}
.y3c_c02057{bottom:334.921485px;}
.y42_c02057{bottom:353.730810px;}
.y3b_c02057{bottom:353.820810px;}
.y41_c02057{bottom:372.720720px;}
.y3a_c02057{bottom:372.810720px;}
.y40_c02057{bottom:391.710630px;}
.y39_c02057{bottom:391.800630px;}
.y3f_c02057{bottom:410.700540px;}
.y38_c02057{bottom:410.790540px;}
.y3e_c02057{bottom:429.690450px;}
.y37_c02057{bottom:435.450600px;}
.y36_c02057{bottom:449.401080px;}
.y35_c02057{bottom:468.390990px;}
.y34_c02057{bottom:487.290315px;}
.y33_c02057{bottom:506.280225px;}
.y32_c02057{bottom:525.270135px;}
.y2e_c02057{bottom:525.360720px;}
.y31_c02057{bottom:544.260045px;}
.y2d_c02057{bottom:544.350630px;}
.y30_c02057{bottom:563.249955px;}
.y2c_c02057{bottom:563.340540px;}
.y2f_c02057{bottom:582.239865px;}
.y2b_c02057{bottom:588.000450px;}
.y29_c02057{bottom:602.041215px;}
.y28_c02057{bottom:620.940540px;}
.y2a_c02057{bottom:639.841512px;}
.y27_c02057{bottom:645.600450px;}
.y26_c02057{bottom:665.310450px;}
.y25_c02057{bottom:679.350540px;}
.y24_c02057{bottom:704.010450px;}
.y22_c02057{bottom:718.141125px;}
.y23_c02057{bottom:736.951512px;}
.y21_c02057{bottom:742.710450px;}
.y20_c02057{bottom:756.750540px;}
.y1f_c02057{bottom:781.410450px;}
.y1e_c02057{bottom:795.360195px;}
.y1b_c02057{bottom:795.450780px;}
.y1d_c02057{bottom:814.350105px;}
.y1a_c02057{bottom:814.440690px;}
.y1c_c02057{bottom:833.340015px;}
.y19_c02057{bottom:839.100450px;}
.y17_c02057{bottom:853.140540px;}
.y18_c02057{bottom:872.039865px;}
.y16_c02057{bottom:877.800450px;}
.y14_c02057{bottom:891.841485px;}
.y13_c02057{bottom:910.831395px;}
.y12_c02057{bottom:929.821305px;}
.y11_c02057{bottom:948.811215px;}
.y10_c02057{bottom:967.710540px;}
.y15_c02057{bottom:986.611512px;}
.yf_c02057{bottom:992.370450px;}
.ye_c02057{bottom:1006.320045px;}
.yd_c02057{bottom:1025.309955px;}
.yb_c02057{bottom:1025.400540px;}
.yc_c02057{bottom:1044.299865px;}
.ya_c02057{bottom:1050.060450px;}
.y8_c02057{bottom:1064.100720px;}
.y7_c02057{bottom:1083.090630px;}
.y6_c02057{bottom:1102.080540px;}
.y9_c02057{bottom:1120.981512px;}
.y5_c02057{bottom:1126.740450px;}
.y4_c02057{bottom:1146.270450px;}
.y1_c02057{bottom:1193.160450px;}
.h4_c02057{height:36.957832px;}
.h3_c02057{height:37.410293px;}
.h7_c02057{height:42.011895px;}
.h5_c02057{height:57.805840px;}
.h6_c02057{height:58.513535px;}
.h2_c02057{height:63.175781px;}
.h1_c02057{height:63.949219px;}
.h0_c02057{height:1263.000000px;}
.w1_c02057{width:892.500000px;}
.w0_c02057{width:892.830000px;}
.x0_c02057{left:0.000000px;}
.x1_c02057{left:127.620000px;}
.x3_c02057{left:135.630000px;}
.x4_c02057{left:273.870000px;}
.x2_c02057{left:437.490000px;}
.x7_c02057{left:702.539631px;}
.x5_c02057{left:706.680189px;}
.x6_c02057{left:710.369469px;}
.x8_c02057{left:728.190009px;}
@media print{
.v2_c02057{vertical-align:-19.840000pt;}
.v1_c02057{vertical-align:-15.039467pt;}
.v3_c02057{vertical-align:-4.800000pt;}
.v0_c02057{vertical-align:0.000000pt;}
.ls17_c02057{letter-spacing:-0.160992pt;}
.ls15_c02057{letter-spacing:-0.160320pt;}
.ls14_c02057{letter-spacing:-0.157248pt;}
.ls16_c02057{letter-spacing:-0.029280pt;}
.ls13_c02057{letter-spacing:0.000000pt;}
.ls11_c02057{letter-spacing:0.005856pt;}
.ls2_c02057{letter-spacing:0.011712pt;}
.ls12_c02057{letter-spacing:0.017568pt;}
.ls4_c02057{letter-spacing:0.023424pt;}
.ls7_c02057{letter-spacing:0.029280pt;}
.ls5_c02057{letter-spacing:0.035136pt;}
.ls3_c02057{letter-spacing:0.040992pt;}
.ls6_c02057{letter-spacing:0.046848pt;}
.ls10_c02057{letter-spacing:0.052704pt;}
.lsa_c02057{letter-spacing:0.058560pt;}
.ls0_c02057{letter-spacing:0.064416pt;}
.lsb_c02057{letter-spacing:0.070272pt;}
.lsf_c02057{letter-spacing:0.076128pt;}
.ls8_c02057{letter-spacing:0.081984pt;}
.lsc_c02057{letter-spacing:0.093696pt;}
.lsd_c02057{letter-spacing:0.105408pt;}
.lse_c02057{letter-spacing:0.117120pt;}
.ls9_c02057{letter-spacing:0.122976pt;}
.ls1_c02057{letter-spacing:0.161728pt;}
.ws0_c02057{word-spacing:-0.019200pt;}
.ws1_c02057{word-spacing:0.000000pt;}
.ws15_c02057{word-spacing:0.005856pt;}
.ws11_c02057{word-spacing:0.011712pt;}
.wsd_c02057{word-spacing:0.017568pt;}
.ws23_c02057{word-spacing:0.023424pt;}
.ws19_c02057{word-spacing:0.029280pt;}
.ws6_c02057{word-spacing:0.046848pt;}
.ws12_c02057{word-spacing:0.058560pt;}
.ws1d_c02057{word-spacing:0.070272pt;}
.ws8_c02057{word-spacing:0.368928pt;}
.ws10_c02057{word-spacing:0.661728pt;}
.ws21_c02057{word-spacing:1.955904pt;}
.wsb_c02057{word-spacing:2.910432pt;}
.ws16_c02057{word-spacing:2.916288pt;}
.ws1b_c02057{word-spacing:4.503264pt;}
.ws22_c02057{word-spacing:5.164992pt;}
.ws1e_c02057{word-spacing:9.674112pt;}
.ws5_c02057{word-spacing:10.294848pt;}
.ws1c_c02057{word-spacing:10.570080pt;}
.ws9_c02057{word-spacing:13.796736pt;}
.ws18_c02057{word-spacing:14.727840pt;}
.ws17_c02057{word-spacing:14.745408pt;}
.ws13_c02057{word-spacing:22.053696pt;}
.ws14_c02057{word-spacing:22.112256pt;}
.wsc_c02057{word-spacing:28.202496pt;}
.ws1a_c02057{word-spacing:30.093984pt;}
.wsf_c02057{word-spacing:32.389536pt;}
.ws1f_c02057{word-spacing:34.304448pt;}
.ws3_c02057{word-spacing:41.987520pt;}
.ws20_c02057{word-spacing:43.223136pt;}
.ws2_c02057{word-spacing:43.279264pt;}
.ws7_c02057{word-spacing:45.793920pt;}
.wsa_c02057{word-spacing:46.443936pt;}
.wse_c02057{word-spacing:50.584128pt;}
.ws4_c02057{word-spacing:154.276320pt;}
._7_c02057{margin-left:-0.985696pt;}
._6_c02057{width:1.048224pt;}
._2_c02057{width:35.440640pt;}
._3_c02057{width:36.400640pt;}
._5_c02057{width:49.043968pt;}
._1_c02057{width:65.644864pt;}
._0_c02057{width:172.819200pt;}
._9_c02057{width:303.346656pt;}
._a_c02057{width:348.594080pt;}
._8_c02057{width:572.679776pt;}
._4_c02057{width:1227.218560pt;}
.fs1_c02057{font-size:37.440000pt;}
.fs4_c02057{font-size:42.560000pt;}
.fs2_c02057{font-size:53.440000pt;}
.fs3_c02057{font-size:58.560000pt;}
.fs0_c02057{font-size:64.000000pt;}
.y0_c02057{bottom:0.000000pt;}
.y3_c02057{bottom:50.987067pt;}
.y2_c02057{bottom:69.387067pt;}
.y4d_c02057{bottom:101.067067pt;}
.y4c_c02057{bottom:119.467067pt;}
.y4b_c02057{bottom:137.867067pt;}
.y4a_c02057{bottom:156.267067pt;}
.y49_c02057{bottom:174.667067pt;}
.y48_c02057{bottom:193.067067pt;}
.y47_c02057{bottom:211.467067pt;}
.y46_c02057{bottom:229.867067pt;}
.y45_c02057{bottom:248.267067pt;}
.y44_c02057{bottom:266.667067pt;}
.y3d_c02057{bottom:284.667067pt;}
.y43_c02057{bottom:297.627987pt;}
.y3c_c02057{bottom:297.707987pt;}
.y42_c02057{bottom:314.427387pt;}
.y3b_c02057{bottom:314.507387pt;}
.y41_c02057{bottom:331.307307pt;}
.y3a_c02057{bottom:331.387307pt;}
.y40_c02057{bottom:348.187227pt;}
.y39_c02057{bottom:348.267227pt;}
.y3f_c02057{bottom:365.067147pt;}
.y38_c02057{bottom:365.147147pt;}
.y3e_c02057{bottom:381.947067pt;}
.y37_c02057{bottom:387.067200pt;}
.y36_c02057{bottom:399.467627pt;}
.y35_c02057{bottom:416.347547pt;}
.y34_c02057{bottom:433.146947pt;}
.y33_c02057{bottom:450.026867pt;}
.y32_c02057{bottom:466.906787pt;}
.y2e_c02057{bottom:466.987307pt;}
.y31_c02057{bottom:483.786707pt;}
.y2d_c02057{bottom:483.867227pt;}
.y30_c02057{bottom:500.666627pt;}
.y2c_c02057{bottom:500.747147pt;}
.y2f_c02057{bottom:517.546547pt;}
.y2b_c02057{bottom:522.667067pt;}
.y29_c02057{bottom:535.147747pt;}
.y28_c02057{bottom:551.947147pt;}
.y2a_c02057{bottom:568.748011pt;}
.y27_c02057{bottom:573.867067pt;}
.y26_c02057{bottom:591.387067pt;}
.y25_c02057{bottom:603.867147pt;}
.y24_c02057{bottom:625.787067pt;}
.y22_c02057{bottom:638.347667pt;}
.y23_c02057{bottom:655.068011pt;}
.y21_c02057{bottom:660.187067pt;}
.y20_c02057{bottom:672.667147pt;}
.y1f_c02057{bottom:694.587067pt;}
.y1e_c02057{bottom:706.986840pt;}
.y1b_c02057{bottom:707.067360pt;}
.y1d_c02057{bottom:723.866760pt;}
.y1a_c02057{bottom:723.947280pt;}
.y1c_c02057{bottom:740.746680pt;}
.y19_c02057{bottom:745.867067pt;}
.y17_c02057{bottom:758.347147pt;}
.y18_c02057{bottom:775.146547pt;}
.y16_c02057{bottom:780.267067pt;}
.y14_c02057{bottom:792.747987pt;}
.y13_c02057{bottom:809.627907pt;}
.y12_c02057{bottom:826.507827pt;}
.y11_c02057{bottom:843.387747pt;}
.y10_c02057{bottom:860.187147pt;}
.y15_c02057{bottom:876.988011pt;}
.yf_c02057{bottom:882.107067pt;}
.ye_c02057{bottom:894.506707pt;}
.yd_c02057{bottom:911.386627pt;}
.yb_c02057{bottom:911.467147pt;}
.yc_c02057{bottom:928.266547pt;}
.ya_c02057{bottom:933.387067pt;}
.y8_c02057{bottom:945.867307pt;}
.y7_c02057{bottom:962.747227pt;}
.y6_c02057{bottom:979.627147pt;}
.y9_c02057{bottom:996.428011pt;}
.y5_c02057{bottom:1001.547067pt;}
.y4_c02057{bottom:1018.907067pt;}
.y1_c02057{bottom:1060.587067pt;}
.h4_c02057{height:32.851406pt;}
.h3_c02057{height:33.253594pt;}
.h7_c02057{height:37.343906pt;}
.h5_c02057{height:51.382969pt;}
.h6_c02057{height:52.012031pt;}
.h2_c02057{height:56.156250pt;}
.h1_c02057{height:56.843750pt;}
.h0_c02057{height:1122.666667pt;}
.w1_c02057{width:793.333333pt;}
.w0_c02057{width:793.626667pt;}
.x0_c02057{left:0.000000pt;}
.x1_c02057{left:113.440000pt;}
.x3_c02057{left:120.560000pt;}
.x4_c02057{left:243.440000pt;}
.x2_c02057{left:388.880000pt;}
.x7_c02057{left:624.479672pt;}
.x5_c02057{left:628.160168pt;}
.x6_c02057{left:631.439528pt;}
.x8_c02057{left:647.280008pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c87c5f6cca0020ad69ea999c.woff2')format("woff");}.ff1_c02058{font-family:ff1_c02058;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02058;src:url('chunks/assets/font_1a2036c51c182b5a5663c9e4.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02058{font-family:ff3_c02058;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_c02058;src:url('chunks/assets/font_d4e5402b62ba8e24dd48b98f.woff2')format("woff");}.ff4_c02058{font-family:ff4_c02058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02058;src:url('chunks/assets/font_6da5d8f47408666caab96410.woff2')format("woff");}.ff5_c02058{font-family:ff5_c02058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02058;src:url('chunks/assets/font_59848e8dd092636766aec9f4.woff2')format("woff");}.ff6_c02058{font-family:ff6_c02058;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;}
.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);}
.v1_c02058{vertical-align:-9.000000px;}
.v0_c02058{vertical-align:0.000000px;}
.lsf_c02058{letter-spacing:-0.050400px;}
.ls10_c02058{letter-spacing:-0.028800px;}
.ls11_c02058{letter-spacing:-0.021600px;}
.lse_c02058{letter-spacing:-0.014400px;}
.lsd_c02058{letter-spacing:-0.007200px;}
.lsc_c02058{letter-spacing:0.000000px;}
.lsa_c02058{letter-spacing:0.007200px;}
.ls2_c02058{letter-spacing:0.014400px;}
.ls5_c02058{letter-spacing:0.021600px;}
.ls9_c02058{letter-spacing:0.028800px;}
.ls0_c02058{letter-spacing:0.036000px;}
.ls1_c02058{letter-spacing:0.043200px;}
.lsb_c02058{letter-spacing:0.050400px;}
.ls4_c02058{letter-spacing:0.057600px;}
.ls3_c02058{letter-spacing:0.072000px;}
.ls6_c02058{letter-spacing:0.093600px;}
.ls7_c02058{letter-spacing:0.144000px;}
.ls8_c02058{letter-spacing:0.180000px;}
.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;}
}
.ws1_c02058{word-spacing:-18.021600px;}
.ws0_c02058{word-spacing:-18.000000px;}
.ws21_c02058{word-spacing:-0.410400px;}
.ws22_c02058{word-spacing:-0.288000px;}
.wsf_c02058{word-spacing:-0.266400px;}
.ws1b_c02058{word-spacing:-0.244800px;}
.ws1e_c02058{word-spacing:-0.223200px;}
.ws1d_c02058{word-spacing:-0.208800px;}
.ws1c_c02058{word-spacing:-0.144000px;}
.ws4_c02058{word-spacing:-0.129600px;}
.wse_c02058{word-spacing:-0.122400px;}
.ws1a_c02058{word-spacing:-0.108000px;}
.ws23_c02058{word-spacing:-0.100800px;}
.ws19_c02058{word-spacing:-0.086400px;}
.ws18_c02058{word-spacing:-0.057600px;}
.ws12_c02058{word-spacing:-0.036000px;}
.ws17_c02058{word-spacing:-0.028800px;}
.ws2_c02058{word-spacing:-0.021600px;}
.ws15_c02058{word-spacing:-0.014400px;}
.ws1f_c02058{word-spacing:-0.007200px;}
.ws3_c02058{word-spacing:0.000000px;}
.ws16_c02058{word-spacing:0.007200px;}
.wsd_c02058{word-spacing:0.014400px;}
.ws20_c02058{word-spacing:0.021600px;}
.ws6_c02058{word-spacing:2.426400px;}
.ws5_c02058{word-spacing:2.484000px;}
.ws13_c02058{word-spacing:2.822400px;}
.ws14_c02058{word-spacing:2.865600px;}
.wsc_c02058{word-spacing:3.470400px;}
.wsb_c02058{word-spacing:3.556800px;}
.wsa_c02058{word-spacing:8.431200px;}
.ws9_c02058{word-spacing:8.546400px;}
.ws7_c02058{word-spacing:8.625600px;}
.ws8_c02058{word-spacing:8.647200px;}
.ws10_c02058{word-spacing:24.422400px;}
.ws11_c02058{word-spacing:24.444000px;}
._1_c02058{margin-left:-1.252800px;}
._0_c02058{width:194.421600px;}
._3_c02058{width:197.056800px;}
._4_c02058{width:201.016800px;}
._2_c02058{width:249.984000px;}
._5_c02058{width:363.196800px;}
.fc0_c02058{color:rgb(0,0,0);}
.fs3_c02058{font-size:11.880000px;}
.fs1_c02058{font-size:47.880000px;}
.fs2_c02058{font-size:65.880000px;}
.fs0_c02058{font-size:72.000000px;}
.y0_c02058{bottom:0.000000px;}
.y3_c02058{bottom:57.360450px;}
.y2_c02058{bottom:78.060450px;}
.y37_c02058{bottom:119.010450px;}
.y36_c02058{bottom:139.710450px;}
.y35_c02058{bottom:160.410450px;}
.y34_c02058{bottom:181.110450px;}
.y33_c02058{bottom:201.810450px;}
.y32_c02058{bottom:222.510450px;}
.y31_c02058{bottom:239.970738px;}
.y30_c02058{bottom:243.480684px;}
.y2f_c02058{bottom:246.900639px;}
.y2e_c02058{bottom:250.320594px;}
.y2d_c02058{bottom:253.830540px;}
.y2c_c02058{bottom:257.250495px;}
.y2b_c02058{bottom:260.670450px;}
.y2a_c02058{bottom:268.320450px;}
.y29_c02058{bottom:289.560450px;}
.y28_c02058{bottom:311.160450px;}
.y27_c02058{bottom:332.400450px;}
.y26_c02058{bottom:354.090450px;}
.y25_c02058{bottom:375.330600px;}
.y24_c02058{bottom:396.930600px;}
.y23_c02058{bottom:417.630600px;}
.y22_c02058{bottom:438.330600px;}
.y21_c02058{bottom:459.030600px;}
.y20_c02058{bottom:480.360600px;}
.y1f_c02058{bottom:501.960600px;}
.y1e_c02058{bottom:523.200600px;}
.y1d_c02058{bottom:544.710450px;}
.y1c_c02058{bottom:566.130450px;}
.y1b_c02058{bottom:587.550450px;}
.y1a_c02058{bottom:609.150450px;}
.y19_c02058{bottom:629.760450px;}
.y18_c02058{bottom:651.180450px;}
.y17_c02058{bottom:672.060450px;}
.y16_c02058{bottom:692.760450px;}
.y15_c02058{bottom:730.650450px;}
.y14_c02058{bottom:751.530450px;}
.y13_c02058{bottom:772.230450px;}
.y12_c02058{bottom:792.930450px;}
.y11_c02058{bottom:814.170450px;}
.y10_c02058{bottom:835.680600px;}
.yf_c02058{bottom:856.020450px;}
.ye_c02058{bottom:870.870450px;}
.yd_c02058{bottom:891.750450px;}
.yc_c02058{bottom:912.450450px;}
.yb_c02058{bottom:943.500450px;}
.ya_c02058{bottom:974.550450px;}
.y9_c02058{bottom:1005.600450px;}
.y8_c02058{bottom:1036.650450px;}
.y7_c02058{bottom:1067.700450px;}
.y6_c02058{bottom:1088.220450px;}
.y5_c02058{bottom:1114.860450px;}
.y4_c02058{bottom:1139.970450px;}
.y1_c02058{bottom:1193.160450px;}
.h7_c02058{height:10.424004px;}
.h3_c02058{height:42.011895px;}
.h2_c02058{height:63.175781px;}
.h1_c02058{height:63.949219px;}
.h6_c02058{height:64.669219px;}
.h5_c02058{height:70.628906px;}
.h4_c02058{height:70.988906px;}
.h0_c02058{height:1263.000000px;}
.w1_c02058{width:892.500000px;}
.w0_c02058{width:892.830000px;}
.x0_c02058{left:0.000000px;}
.x1_c02058{left:127.620000px;}
.x4_c02058{left:135.630000px;}
.x3_c02058{left:148.950000px;}
.x5_c02058{left:189.630000px;}
.x6_c02058{left:273.870000px;}
.x2_c02058{left:437.490000px;}
@media print{
.v1_c02058{vertical-align:-8.000000pt;}
.v0_c02058{vertical-align:0.000000pt;}
.lsf_c02058{letter-spacing:-0.044800pt;}
.ls10_c02058{letter-spacing:-0.025600pt;}
.ls11_c02058{letter-spacing:-0.019200pt;}
.lse_c02058{letter-spacing:-0.012800pt;}
.lsd_c02058{letter-spacing:-0.006400pt;}
.lsc_c02058{letter-spacing:0.000000pt;}
.lsa_c02058{letter-spacing:0.006400pt;}
.ls2_c02058{letter-spacing:0.012800pt;}
.ls5_c02058{letter-spacing:0.019200pt;}
.ls9_c02058{letter-spacing:0.025600pt;}
.ls0_c02058{letter-spacing:0.032000pt;}
.ls1_c02058{letter-spacing:0.038400pt;}
.lsb_c02058{letter-spacing:0.044800pt;}
.ls4_c02058{letter-spacing:0.051200pt;}
.ls3_c02058{letter-spacing:0.064000pt;}
.ls6_c02058{letter-spacing:0.083200pt;}
.ls7_c02058{letter-spacing:0.128000pt;}
.ls8_c02058{letter-spacing:0.160000pt;}
.ws1_c02058{word-spacing:-16.019200pt;}
.ws0_c02058{word-spacing:-16.000000pt;}
.ws21_c02058{word-spacing:-0.364800pt;}
.ws22_c02058{word-spacing:-0.256000pt;}
.wsf_c02058{word-spacing:-0.236800pt;}
.ws1b_c02058{word-spacing:-0.217600pt;}
.ws1e_c02058{word-spacing:-0.198400pt;}
.ws1d_c02058{word-spacing:-0.185600pt;}
.ws1c_c02058{word-spacing:-0.128000pt;}
.ws4_c02058{word-spacing:-0.115200pt;}
.wse_c02058{word-spacing:-0.108800pt;}
.ws1a_c02058{word-spacing:-0.096000pt;}
.ws23_c02058{word-spacing:-0.089600pt;}
.ws19_c02058{word-spacing:-0.076800pt;}
.ws18_c02058{word-spacing:-0.051200pt;}
.ws12_c02058{word-spacing:-0.032000pt;}
.ws17_c02058{word-spacing:-0.025600pt;}
.ws2_c02058{word-spacing:-0.019200pt;}
.ws15_c02058{word-spacing:-0.012800pt;}
.ws1f_c02058{word-spacing:-0.006400pt;}
.ws3_c02058{word-spacing:0.000000pt;}
.ws16_c02058{word-spacing:0.006400pt;}
.wsd_c02058{word-spacing:0.012800pt;}
.ws20_c02058{word-spacing:0.019200pt;}
.ws6_c02058{word-spacing:2.156800pt;}
.ws5_c02058{word-spacing:2.208000pt;}
.ws13_c02058{word-spacing:2.508800pt;}
.ws14_c02058{word-spacing:2.547200pt;}
.wsc_c02058{word-spacing:3.084800pt;}
.wsb_c02058{word-spacing:3.161600pt;}
.wsa_c02058{word-spacing:7.494400pt;}
.ws9_c02058{word-spacing:7.596800pt;}
.ws7_c02058{word-spacing:7.667200pt;}
.ws8_c02058{word-spacing:7.686400pt;}
.ws10_c02058{word-spacing:21.708800pt;}
.ws11_c02058{word-spacing:21.728000pt;}
._1_c02058{margin-left:-1.113600pt;}
._0_c02058{width:172.819200pt;}
._3_c02058{width:175.161600pt;}
._4_c02058{width:178.681600pt;}
._2_c02058{width:222.208000pt;}
._5_c02058{width:322.841600pt;}
.fs3_c02058{font-size:10.560000pt;}
.fs1_c02058{font-size:42.560000pt;}
.fs2_c02058{font-size:58.560000pt;}
.fs0_c02058{font-size:64.000000pt;}
.y0_c02058{bottom:0.000000pt;}
.y3_c02058{bottom:50.987067pt;}
.y2_c02058{bottom:69.387067pt;}
.y37_c02058{bottom:105.787067pt;}
.y36_c02058{bottom:124.187067pt;}
.y35_c02058{bottom:142.587067pt;}
.y34_c02058{bottom:160.987067pt;}
.y33_c02058{bottom:179.387067pt;}
.y32_c02058{bottom:197.787067pt;}
.y31_c02058{bottom:213.307323pt;}
.y30_c02058{bottom:216.427275pt;}
.y2f_c02058{bottom:219.467235pt;}
.y2e_c02058{bottom:222.507195pt;}
.y2d_c02058{bottom:225.627147pt;}
.y2c_c02058{bottom:228.667107pt;}
.y2b_c02058{bottom:231.707067pt;}
.y2a_c02058{bottom:238.507067pt;}
.y29_c02058{bottom:257.387067pt;}
.y28_c02058{bottom:276.587067pt;}
.y27_c02058{bottom:295.467067pt;}
.y26_c02058{bottom:314.747067pt;}
.y25_c02058{bottom:333.627200pt;}
.y24_c02058{bottom:352.827200pt;}
.y23_c02058{bottom:371.227200pt;}
.y22_c02058{bottom:389.627200pt;}
.y21_c02058{bottom:408.027200pt;}
.y20_c02058{bottom:426.987200pt;}
.y1f_c02058{bottom:446.187200pt;}
.y1e_c02058{bottom:465.067200pt;}
.y1d_c02058{bottom:484.187067pt;}
.y1c_c02058{bottom:503.227067pt;}
.y1b_c02058{bottom:522.267067pt;}
.y1a_c02058{bottom:541.467067pt;}
.y19_c02058{bottom:559.787067pt;}
.y18_c02058{bottom:578.827067pt;}
.y17_c02058{bottom:597.387067pt;}
.y16_c02058{bottom:615.787067pt;}
.y15_c02058{bottom:649.467067pt;}
.y14_c02058{bottom:668.027067pt;}
.y13_c02058{bottom:686.427067pt;}
.y12_c02058{bottom:704.827067pt;}
.y11_c02058{bottom:723.707067pt;}
.y10_c02058{bottom:742.827200pt;}
.yf_c02058{bottom:760.907067pt;}
.ye_c02058{bottom:774.107067pt;}
.yd_c02058{bottom:792.667067pt;}
.yc_c02058{bottom:811.067067pt;}
.yb_c02058{bottom:838.667067pt;}
.ya_c02058{bottom:866.267067pt;}
.y9_c02058{bottom:893.867067pt;}
.y8_c02058{bottom:921.467067pt;}
.y7_c02058{bottom:949.067067pt;}
.y6_c02058{bottom:967.307067pt;}
.y5_c02058{bottom:990.987067pt;}
.y4_c02058{bottom:1013.307067pt;}
.y1_c02058{bottom:1060.587067pt;}
.h7_c02058{height:9.265781pt;}
.h3_c02058{height:37.343906pt;}
.h2_c02058{height:56.156250pt;}
.h1_c02058{height:56.843750pt;}
.h6_c02058{height:57.483750pt;}
.h5_c02058{height:62.781250pt;}
.h4_c02058{height:63.101250pt;}
.h0_c02058{height:1122.666667pt;}
.w1_c02058{width:793.333333pt;}
.w0_c02058{width:793.626667pt;}
.x0_c02058{left:0.000000pt;}
.x1_c02058{left:113.440000pt;}
.x4_c02058{left:120.560000pt;}
.x3_c02058{left:132.400000pt;}
.x5_c02058{left:168.560000pt;}
.x6_c02058{left:243.440000pt;}
.x2_c02058{left:388.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_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_6c88052908f15739f500471c.woff2')format("woff");}.ff1_c02059{font-family:ff1_c02059;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02059;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02059{vertical-align:-4.319400px;}
.v6_c02059{vertical-align:-3.240000px;}
.v4_c02059{vertical-align:-1.800000px;}
.v0_c02059{vertical-align:0.000000px;}
.v1_c02059{vertical-align:2.160000px;}
.v5_c02059{vertical-align:4.320000px;}
.v2_c02059{vertical-align:5.400000px;}
.v7_c02059{vertical-align:29.160000px;}
.ls2a_c02059{letter-spacing:-0.168336px;}
.ls37_c02059{letter-spacing:-0.102600px;}
.ls36_c02059{letter-spacing:-0.086400px;}
.ls30_c02059{letter-spacing:-0.086184px;}
.ls29_c02059{letter-spacing:-0.066132px;}
.ls2c_c02059{letter-spacing:-0.043200px;}
.ls2e_c02059{letter-spacing:-0.019152px;}
.ls35_c02059{letter-spacing:-0.016200px;}
.ls2d_c02059{letter-spacing:-0.010800px;}
.ls27_c02059{letter-spacing:-0.006012px;}
.ls31_c02059{letter-spacing:-0.004788px;}
.ls25_c02059{letter-spacing:0.000000px;}
.lsa_c02059{letter-spacing:0.007200px;}
.lsc_c02059{letter-spacing:0.010800px;}
.ls26_c02059{letter-spacing:0.014400px;}
.ls1f_c02059{letter-spacing:0.016200px;}
.ls17_c02059{letter-spacing:0.019152px;}
.lsb_c02059{letter-spacing:0.021600px;}
.ls4_c02059{letter-spacing:0.024048px;}
.ls1e_c02059{letter-spacing:0.027000px;}
.lse_c02059{letter-spacing:0.028728px;}
.ls9_c02059{letter-spacing:0.028800px;}
.ls10_c02059{letter-spacing:0.032400px;}
.ls7_c02059{letter-spacing:0.036072px;}
.ls13_c02059{letter-spacing:0.037800px;}
.lsd_c02059{letter-spacing:0.043092px;}
.ls12_c02059{letter-spacing:0.043200px;}
.ls1b_c02059{letter-spacing:0.052704px;}
.ls24_c02059{letter-spacing:0.054000px;}
.ls19_c02059{letter-spacing:0.059292px;}
.lsf_c02059{letter-spacing:0.059400px;}
.ls1a_c02059{letter-spacing:0.065880px;}
.ls23_c02059{letter-spacing:0.066132px;}
.ls33_c02059{letter-spacing:0.081396px;}
.ls8_c02059{letter-spacing:0.084168px;}
.ls38_c02059{letter-spacing:0.090180px;}
.ls1c_c02059{letter-spacing:0.095760px;}
.ls6_c02059{letter-spacing:0.105408px;}
.ls1_c02059{letter-spacing:0.114228px;}
.ls11_c02059{letter-spacing:0.124488px;}
.ls22_c02059{letter-spacing:0.125172px;}
.ls16_c02059{letter-spacing:0.134064px;}
.ls28_c02059{letter-spacing:0.138276px;}
.ls14_c02059{letter-spacing:0.138348px;}
.ls0_c02059{letter-spacing:0.144288px;}
.ls2b_c02059{letter-spacing:0.151200px;}
.ls2_c02059{letter-spacing:0.151524px;}
.ls5_c02059{letter-spacing:0.158112px;}
.ls2f_c02059{letter-spacing:0.167580px;}
.ls3_c02059{letter-spacing:0.177876px;}
.ls20_c02059{letter-spacing:0.180360px;}
.ls1d_c02059{letter-spacing:0.181944px;}
.ls32_c02059{letter-spacing:156.778200px;}
.ls34_c02059{letter-spacing:180.000000px;}
.ls15_c02059{letter-spacing:200.790000px;}
.ls21_c02059{letter-spacing:203.850000px;}
.ls18_c02059{letter-spacing:850.500000px;}
.sc__c02059{text-shadow:none;}
.sc0_c02059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02059{-webkit-text-stroke:0px transparent;}
.sc0_c02059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02059{word-spacing:-16.647876px;}
.ws3_c02059{word-spacing:-15.210360px;}
.wsb_c02059{word-spacing:-0.408816px;}
.wsc_c02059{word-spacing:-0.384768px;}
.wse_c02059{word-spacing:-0.306612px;}
.ws16_c02059{word-spacing:-0.272916px;}
.ws13_c02059{word-spacing:-0.225036px;}
.ws12_c02059{word-spacing:-0.215460px;}
.ws20_c02059{word-spacing:-0.189000px;}
.ws1b_c02059{word-spacing:-0.186732px;}
.ws15_c02059{word-spacing:-0.172368px;}
.ws18_c02059{word-spacing:-0.119700px;}
.ws10_c02059{word-spacing:-0.115200px;}
.ws17_c02059{word-spacing:-0.110124px;}
.ws9_c02059{word-spacing:-0.108000px;}
.wsa_c02059{word-spacing:-0.054108px;}
.wsd_c02059{word-spacing:-0.024048px;}
.ws5_c02059{word-spacing:-0.021600px;}
.ws7_c02059{word-spacing:-0.014400px;}
.ws8_c02059{word-spacing:-0.007200px;}
.ws6_c02059{word-spacing:0.000000px;}
.wsf_c02059{word-spacing:0.006012px;}
.ws1a_c02059{word-spacing:0.026352px;}
.ws19_c02059{word-spacing:0.032940px;}
.ws11_c02059{word-spacing:0.118800px;}
.ws27_c02059{word-spacing:0.124200px;}
.ws26_c02059{word-spacing:0.135000px;}
.ws1e_c02059{word-spacing:0.145800px;}
.ws1c_c02059{word-spacing:0.151200px;}
.ws28_c02059{word-spacing:0.156600px;}
.ws1d_c02059{word-spacing:0.162000px;}
.ws2a_c02059{word-spacing:0.167400px;}
.ws29_c02059{word-spacing:0.178200px;}
.ws1f_c02059{word-spacing:0.194400px;}
.ws21_c02059{word-spacing:0.264600px;}
.ws22_c02059{word-spacing:0.280800px;}
.ws24_c02059{word-spacing:6.615000px;}
.ws25_c02059{word-spacing:6.636600px;}
.ws23_c02059{word-spacing:6.647400px;}
.ws1_c02059{word-spacing:58.969440px;}
.ws2_c02059{word-spacing:116.626608px;}
.ws14_c02059{word-spacing:172.935000px;}
.ws4_c02059{word-spacing:203.429340px;}
._2b_c02059{margin-left:-33.653808px;}
._25_c02059{margin-left:-32.537772px;}
._27_c02059{margin-left:-15.838200px;}
._1_c02059{margin-left:-1.148292px;}
._35_c02059{width:1.026000px;}
._28_c02059{width:25.612200px;}
._15_c02059{width:47.809440px;}
._13_c02059{width:49.958496px;}
._21_c02059{width:51.051348px;}
._22_c02059{width:57.373200px;}
._1d_c02059{width:65.131272px;}
._26_c02059{width:68.401800px;}
._1e_c02059{width:75.717000px;}
._b_c02059{width:82.716372px;}
._19_c02059{width:84.474000px;}
._f_c02059{width:87.084504px;}
._18_c02059{width:88.581600px;}
._1f_c02059{width:100.792296px;}
._4_c02059{width:105.570000px;}
._20_c02059{width:107.569440px;}
._8_c02059{width:116.194248px;}
._c_c02059{width:119.842380px;}
._1a_c02059{width:122.220000px;}
._1b_c02059{width:127.980000px;}
._23_c02059{width:129.733200px;}
._2a_c02059{width:132.915600px;}
._29_c02059{width:136.200168px;}
._1c_c02059{width:139.618944px;}
._24_c02059{width:149.146920px;}
._3_c02059{width:150.568704px;}
._9_c02059{width:152.986608px;}
._2c_c02059{width:157.727016px;}
._39_c02059{width:188.639640px;}
._0_c02059{width:194.421600px;}
._6_c02059{width:198.810000px;}
._30_c02059{width:203.308920px;}
._16_c02059{width:204.309792px;}
._a_c02059{width:208.509012px;}
._2_c02059{width:212.359284px;}
._31_c02059{width:218.068560px;}
._17_c02059{width:228.222972px;}
._11_c02059{width:235.426608px;}
._d_c02059{width:251.831484px;}
._e_c02059{width:266.212296px;}
._14_c02059{width:279.243360px;}
._2e_c02059{width:287.726112px;}
._10_c02059{width:297.980208px;}
._37_c02059{width:308.428920px;}
._32_c02059{width:318.655800px;}
._12_c02059{width:323.506656px;}
._7_c02059{width:341.519112px;}
._5_c02059{width:362.236356px;}
._2f_c02059{width:376.090200px;}
._36_c02059{width:445.663800px;}
._33_c02059{width:476.114400px;}
._34_c02059{width:477.804600px;}
._2d_c02059{width:521.892288px;}
._38_c02059{width:777.470220px;}
.fc0_c02059{color:rgb(0,0,0);}
.fs1_c02059{font-size:47.880000px;}
.fs2_c02059{font-size:54.000000px;}
.fs3_c02059{font-size:60.120000px;}
.fs4_c02059{font-size:65.880000px;}
.fs0_c02059{font-size:72.000000px;}
.y0_c02059{bottom:0.000000px;}
.y3_c02059{bottom:57.360450px;}
.y2_c02059{bottom:78.060450px;}
.y35_c02059{bottom:122.070600px;}
.y34_c02059{bottom:137.640150px;}
.y33_c02059{bottom:153.120600px;}
.y32_c02059{bottom:171.300450px;}
.y31_c02059{bottom:191.280450px;}
.y30_c02059{bottom:208.560450px;}
.y2f_c02059{bottom:224.130450px;}
.y2e_c02059{bottom:239.610450px;}
.y2d_c02059{bottom:256.890450px;}
.y2c_c02059{bottom:274.080450px;}
.y2b_c02059{bottom:291.360450px;}
.y2a_c02059{bottom:309.000450px;}
.y28_c02059{bottom:309.810450px;}
.y29_c02059{bottom:325.110450px;}
.y27_c02059{bottom:342.030450px;}
.y26_c02059{bottom:361.110450px;}
.y25_c02059{bottom:380.910450px;}
.y24_c02059{bottom:384.690900px;}
.y23_c02059{bottom:399.900450px;}
.y22_c02059{bottom:403.681050px;}
.y21_c02059{bottom:418.890450px;}
.y20_c02059{bottom:422.670900px;}
.y1f_c02059{bottom:437.790600px;}
.y1e_c02059{bottom:441.660000px;}
.y1d_c02059{bottom:456.780600px;}
.y1c_c02059{bottom:460.650450px;}
.y1b_c02059{bottom:476.850450px;}
.y1a_c02059{bottom:496.020600px;}
.y19_c02059{bottom:512.850450px;}
.y18_c02059{bottom:533.280450px;}
.y17_c02059{bottom:550.200450px;}
.y16_c02059{bottom:570.720450px;}
.y15_c02059{bottom:586.920450px;}
.y14_c02059{bottom:605.910450px;}
.y13_c02059{bottom:624.810450px;}
.y12_c02059{bottom:644.610450px;}
.y11_c02059{bottom:663.510450px;}
.y10_c02059{bottom:682.500450px;}
.yf_c02059{bottom:701.490450px;}
.ye_c02059{bottom:720.480450px;}
.yd_c02059{bottom:739.470450px;}
.yc_c02059{bottom:758.370450px;}
.yb_c02059{bottom:777.360600px;}
.ya_c02059{bottom:795.270450px;}
.y9_c02059{bottom:817.590450px;}
.y8_c02059{bottom:833.790450px;}
.y7_c02059{bottom:854.490450px;}
.y6_c02059{bottom:871.230450px;}
.y5_c02059{bottom:1119.270450px;}
.y4_c02059{bottom:1139.970450px;}
.y1_c02059{bottom:1193.160450px;}
.he_c02059{height:42.011895px;}
.h3_c02059{height:42.526230px;}
.h4_c02059{height:47.381836px;}
.ha_c02059{height:47.961914px;}
.h5_c02059{height:53.397598px;}
.hb_c02059{height:58.513535px;}
.h8_c02059{height:59.605840px;}
.h7_c02059{height:59.953535px;}
.h6_c02059{height:59.965840px;}
.h9_c02059{height:60.313535px;}
.hd_c02059{height:62.473535px;}
.hc_c02059{height:62.833535px;}
.h2_c02059{height:63.175781px;}
.h1_c02059{height:63.949219px;}
.hf_c02059{height:81.911777px;}
.h0_c02059{height:1263.000000px;}
.w1_c02059{width:892.500000px;}
.w0_c02059{width:892.830000px;}
.x0_c02059{left:0.000000px;}
.x1_c02059{left:127.620000px;}
.x9_c02059{left:134.550000px;}
.x4_c02059{left:135.630000px;}
.x6_c02059{left:143.910000px;}
.x7_c02059{left:150.300000px;}
.x5_c02059{left:162.360000px;}
.x8_c02059{left:220.680000px;}
.xa_c02059{left:380.700000px;}
.xb_c02059{left:403.740000px;}
.x2_c02059{left:437.490000px;}
.x3_c02059{left:678.870000px;}
@media print{
.v3_c02059{vertical-align:-3.839467pt;}
.v6_c02059{vertical-align:-2.880000pt;}
.v4_c02059{vertical-align:-1.600000pt;}
.v0_c02059{vertical-align:0.000000pt;}
.v1_c02059{vertical-align:1.920000pt;}
.v5_c02059{vertical-align:3.840000pt;}
.v2_c02059{vertical-align:4.800000pt;}
.v7_c02059{vertical-align:25.920000pt;}
.ls2a_c02059{letter-spacing:-0.149632pt;}
.ls37_c02059{letter-spacing:-0.091200pt;}
.ls36_c02059{letter-spacing:-0.076800pt;}
.ls30_c02059{letter-spacing:-0.076608pt;}
.ls29_c02059{letter-spacing:-0.058784pt;}
.ls2c_c02059{letter-spacing:-0.038400pt;}
.ls2e_c02059{letter-spacing:-0.017024pt;}
.ls35_c02059{letter-spacing:-0.014400pt;}
.ls2d_c02059{letter-spacing:-0.009600pt;}
.ls27_c02059{letter-spacing:-0.005344pt;}
.ls31_c02059{letter-spacing:-0.004256pt;}
.ls25_c02059{letter-spacing:0.000000pt;}
.lsa_c02059{letter-spacing:0.006400pt;}
.lsc_c02059{letter-spacing:0.009600pt;}
.ls26_c02059{letter-spacing:0.012800pt;}
.ls1f_c02059{letter-spacing:0.014400pt;}
.ls17_c02059{letter-spacing:0.017024pt;}
.lsb_c02059{letter-spacing:0.019200pt;}
.ls4_c02059{letter-spacing:0.021376pt;}
.ls1e_c02059{letter-spacing:0.024000pt;}
.lse_c02059{letter-spacing:0.025536pt;}
.ls9_c02059{letter-spacing:0.025600pt;}
.ls10_c02059{letter-spacing:0.028800pt;}
.ls7_c02059{letter-spacing:0.032064pt;}
.ls13_c02059{letter-spacing:0.033600pt;}
.lsd_c02059{letter-spacing:0.038304pt;}
.ls12_c02059{letter-spacing:0.038400pt;}
.ls1b_c02059{letter-spacing:0.046848pt;}
.ls24_c02059{letter-spacing:0.048000pt;}
.ls19_c02059{letter-spacing:0.052704pt;}
.lsf_c02059{letter-spacing:0.052800pt;}
.ls1a_c02059{letter-spacing:0.058560pt;}
.ls23_c02059{letter-spacing:0.058784pt;}
.ls33_c02059{letter-spacing:0.072352pt;}
.ls8_c02059{letter-spacing:0.074816pt;}
.ls38_c02059{letter-spacing:0.080160pt;}
.ls1c_c02059{letter-spacing:0.085120pt;}
.ls6_c02059{letter-spacing:0.093696pt;}
.ls1_c02059{letter-spacing:0.101536pt;}
.ls11_c02059{letter-spacing:0.110656pt;}
.ls22_c02059{letter-spacing:0.111264pt;}
.ls16_c02059{letter-spacing:0.119168pt;}
.ls28_c02059{letter-spacing:0.122912pt;}
.ls14_c02059{letter-spacing:0.122976pt;}
.ls0_c02059{letter-spacing:0.128256pt;}
.ls2b_c02059{letter-spacing:0.134400pt;}
.ls2_c02059{letter-spacing:0.134688pt;}
.ls5_c02059{letter-spacing:0.140544pt;}
.ls2f_c02059{letter-spacing:0.148960pt;}
.ls3_c02059{letter-spacing:0.158112pt;}
.ls20_c02059{letter-spacing:0.160320pt;}
.ls1d_c02059{letter-spacing:0.161728pt;}
.ls32_c02059{letter-spacing:139.358400pt;}
.ls34_c02059{letter-spacing:160.000000pt;}
.ls15_c02059{letter-spacing:178.480000pt;}
.ls21_c02059{letter-spacing:181.200000pt;}
.ls18_c02059{letter-spacing:756.000000pt;}
.ws0_c02059{word-spacing:-14.798112pt;}
.ws3_c02059{word-spacing:-13.520320pt;}
.wsb_c02059{word-spacing:-0.363392pt;}
.wsc_c02059{word-spacing:-0.342016pt;}
.wse_c02059{word-spacing:-0.272544pt;}
.ws16_c02059{word-spacing:-0.242592pt;}
.ws13_c02059{word-spacing:-0.200032pt;}
.ws12_c02059{word-spacing:-0.191520pt;}
.ws20_c02059{word-spacing:-0.168000pt;}
.ws1b_c02059{word-spacing:-0.165984pt;}
.ws15_c02059{word-spacing:-0.153216pt;}
.ws18_c02059{word-spacing:-0.106400pt;}
.ws10_c02059{word-spacing:-0.102400pt;}
.ws17_c02059{word-spacing:-0.097888pt;}
.ws9_c02059{word-spacing:-0.096000pt;}
.wsa_c02059{word-spacing:-0.048096pt;}
.wsd_c02059{word-spacing:-0.021376pt;}
.ws5_c02059{word-spacing:-0.019200pt;}
.ws7_c02059{word-spacing:-0.012800pt;}
.ws8_c02059{word-spacing:-0.006400pt;}
.ws6_c02059{word-spacing:0.000000pt;}
.wsf_c02059{word-spacing:0.005344pt;}
.ws1a_c02059{word-spacing:0.023424pt;}
.ws19_c02059{word-spacing:0.029280pt;}
.ws11_c02059{word-spacing:0.105600pt;}
.ws27_c02059{word-spacing:0.110400pt;}
.ws26_c02059{word-spacing:0.120000pt;}
.ws1e_c02059{word-spacing:0.129600pt;}
.ws1c_c02059{word-spacing:0.134400pt;}
.ws28_c02059{word-spacing:0.139200pt;}
.ws1d_c02059{word-spacing:0.144000pt;}
.ws2a_c02059{word-spacing:0.148800pt;}
.ws29_c02059{word-spacing:0.158400pt;}
.ws1f_c02059{word-spacing:0.172800pt;}
.ws21_c02059{word-spacing:0.235200pt;}
.ws22_c02059{word-spacing:0.249600pt;}
.ws24_c02059{word-spacing:5.880000pt;}
.ws25_c02059{word-spacing:5.899200pt;}
.ws23_c02059{word-spacing:5.908800pt;}
.ws1_c02059{word-spacing:52.417280pt;}
.ws2_c02059{word-spacing:103.668096pt;}
.ws14_c02059{word-spacing:153.720000pt;}
.ws4_c02059{word-spacing:180.826080pt;}
._2b_c02059{margin-left:-29.914496pt;}
._25_c02059{margin-left:-28.922464pt;}
._27_c02059{margin-left:-14.078400pt;}
._1_c02059{margin-left:-1.020704pt;}
._35_c02059{width:0.912000pt;}
._28_c02059{width:22.766400pt;}
._15_c02059{width:42.497280pt;}
._13_c02059{width:44.407552pt;}
._21_c02059{width:45.378976pt;}
._22_c02059{width:50.998400pt;}
._1d_c02059{width:57.894464pt;}
._26_c02059{width:60.801600pt;}
._1e_c02059{width:67.304000pt;}
._b_c02059{width:73.525664pt;}
._19_c02059{width:75.088000pt;}
._f_c02059{width:77.408448pt;}
._18_c02059{width:78.739200pt;}
._1f_c02059{width:89.593152pt;}
._4_c02059{width:93.840000pt;}
._20_c02059{width:95.617280pt;}
._8_c02059{width:103.283776pt;}
._c_c02059{width:106.526560pt;}
._1a_c02059{width:108.640000pt;}
._1b_c02059{width:113.760000pt;}
._23_c02059{width:115.318400pt;}
._2a_c02059{width:118.147200pt;}
._29_c02059{width:121.066816pt;}
._1c_c02059{width:124.105728pt;}
._24_c02059{width:132.575040pt;}
._3_c02059{width:133.838848pt;}
._9_c02059{width:135.988096pt;}
._2c_c02059{width:140.201792pt;}
._39_c02059{width:167.679680pt;}
._0_c02059{width:172.819200pt;}
._6_c02059{width:176.720000pt;}
._30_c02059{width:180.719040pt;}
._16_c02059{width:181.608704pt;}
._a_c02059{width:185.341344pt;}
._2_c02059{width:188.763808pt;}
._31_c02059{width:193.838720pt;}
._17_c02059{width:202.864864pt;}
._11_c02059{width:209.268096pt;}
._d_c02059{width:223.850208pt;}
._e_c02059{width:236.633152pt;}
._14_c02059{width:248.216320pt;}
._2e_c02059{width:255.756544pt;}
._10_c02059{width:264.871296pt;}
._37_c02059{width:274.159040pt;}
._32_c02059{width:283.249600pt;}
._12_c02059{width:287.561472pt;}
._7_c02059{width:303.572544pt;}
._5_c02059{width:321.987872pt;}
._2f_c02059{width:334.302400pt;}
._36_c02059{width:396.145600pt;}
._33_c02059{width:423.212800pt;}
._34_c02059{width:424.715200pt;}
._2d_c02059{width:463.904256pt;}
._38_c02059{width:691.084640pt;}
.fs1_c02059{font-size:42.560000pt;}
.fs2_c02059{font-size:48.000000pt;}
.fs3_c02059{font-size:53.440000pt;}
.fs4_c02059{font-size:58.560000pt;}
.fs0_c02059{font-size:64.000000pt;}
.y0_c02059{bottom:0.000000pt;}
.y3_c02059{bottom:50.987067pt;}
.y2_c02059{bottom:69.387067pt;}
.y35_c02059{bottom:108.507200pt;}
.y34_c02059{bottom:122.346800pt;}
.y33_c02059{bottom:136.107200pt;}
.y32_c02059{bottom:152.267067pt;}
.y31_c02059{bottom:170.027067pt;}
.y30_c02059{bottom:185.387067pt;}
.y2f_c02059{bottom:199.227067pt;}
.y2e_c02059{bottom:212.987067pt;}
.y2d_c02059{bottom:228.347067pt;}
.y2c_c02059{bottom:243.627067pt;}
.y2b_c02059{bottom:258.987067pt;}
.y2a_c02059{bottom:274.667067pt;}
.y28_c02059{bottom:275.387067pt;}
.y29_c02059{bottom:288.987067pt;}
.y27_c02059{bottom:304.027067pt;}
.y26_c02059{bottom:320.987067pt;}
.y25_c02059{bottom:338.587067pt;}
.y24_c02059{bottom:341.947467pt;}
.y23_c02059{bottom:355.467067pt;}
.y22_c02059{bottom:358.827600pt;}
.y21_c02059{bottom:372.347067pt;}
.y20_c02059{bottom:375.707467pt;}
.y1f_c02059{bottom:389.147200pt;}
.y1e_c02059{bottom:392.586667pt;}
.y1d_c02059{bottom:406.027200pt;}
.y1c_c02059{bottom:409.467067pt;}
.y1b_c02059{bottom:423.867067pt;}
.y1a_c02059{bottom:440.907200pt;}
.y19_c02059{bottom:455.867067pt;}
.y18_c02059{bottom:474.027067pt;}
.y17_c02059{bottom:489.067067pt;}
.y16_c02059{bottom:507.307067pt;}
.y15_c02059{bottom:521.707067pt;}
.y14_c02059{bottom:538.587067pt;}
.y13_c02059{bottom:555.387067pt;}
.y12_c02059{bottom:572.987067pt;}
.y11_c02059{bottom:589.787067pt;}
.y10_c02059{bottom:606.667067pt;}
.yf_c02059{bottom:623.547067pt;}
.ye_c02059{bottom:640.427067pt;}
.yd_c02059{bottom:657.307067pt;}
.yc_c02059{bottom:674.107067pt;}
.yb_c02059{bottom:690.987200pt;}
.ya_c02059{bottom:706.907067pt;}
.y9_c02059{bottom:726.747067pt;}
.y8_c02059{bottom:741.147067pt;}
.y7_c02059{bottom:759.547067pt;}
.y6_c02059{bottom:774.427067pt;}
.y5_c02059{bottom:994.907067pt;}
.y4_c02059{bottom:1013.307067pt;}
.y1_c02059{bottom:1060.587067pt;}
.he_c02059{height:37.343906pt;}
.h3_c02059{height:37.801094pt;}
.h4_c02059{height:42.117188pt;}
.ha_c02059{height:42.632812pt;}
.h5_c02059{height:47.464531pt;}
.hb_c02059{height:52.012031pt;}
.h8_c02059{height:52.982969pt;}
.h7_c02059{height:53.292031pt;}
.h6_c02059{height:53.302969pt;}
.h9_c02059{height:53.612031pt;}
.hd_c02059{height:55.532031pt;}
.hc_c02059{height:55.852031pt;}
.h2_c02059{height:56.156250pt;}
.h1_c02059{height:56.843750pt;}
.hf_c02059{height:72.810469pt;}
.h0_c02059{height:1122.666667pt;}
.w1_c02059{width:793.333333pt;}
.w0_c02059{width:793.626667pt;}
.x0_c02059{left:0.000000pt;}
.x1_c02059{left:113.440000pt;}
.x9_c02059{left:119.600000pt;}
.x4_c02059{left:120.560000pt;}
.x6_c02059{left:127.920000pt;}
.x7_c02059{left:133.600000pt;}
.x5_c02059{left:144.320000pt;}
.x8_c02059{left:196.160000pt;}
.xa_c02059{left:338.400000pt;}
.xb_c02059{left:358.880000pt;}
.x2_c02059{left:388.880000pt;}
.x3_c02059{left:603.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_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_5d4082ed4020343e17254ce2.woff2')format("woff");}.ff1_c02060{font-family:ff1_c02060;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02060;src:url('chunks/assets/font_3f2847b76b342518c5417622.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;}
.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);}
.v4_c02060{vertical-align:-21.960000px;}
.v6_c02060{vertical-align:-17.280000px;}
.v3_c02060{vertical-align:-5.760000px;}
.v5_c02060{vertical-align:-4.680000px;}
.v0_c02060{vertical-align:0.000000px;}
.v1_c02060{vertical-align:1.440000px;}
.v2_c02060{vertical-align:11.160000px;}
.ls1f_c02060{letter-spacing:-0.181116px;}
.ls1d_c02060{letter-spacing:-0.180360px;}
.ls1b_c02060{letter-spacing:-0.086400px;}
.ls17_c02060{letter-spacing:-0.032940px;}
.ls18_c02060{letter-spacing:-0.026352px;}
.ls15_c02060{letter-spacing:-0.014400px;}
.ls16_c02060{letter-spacing:-0.013176px;}
.ls1a_c02060{letter-spacing:-0.007200px;}
.ls14_c02060{letter-spacing:0.000000px;}
.ls13_c02060{letter-spacing:0.006588px;}
.ls5_c02060{letter-spacing:0.007200px;}
.lsd_c02060{letter-spacing:0.013176px;}
.ls0_c02060{letter-spacing:0.014400px;}
.ls4_c02060{letter-spacing:0.019764px;}
.ls10_c02060{letter-spacing:0.026352px;}
.ls2_c02060{letter-spacing:0.039528px;}
.ls19_c02060{letter-spacing:0.043200px;}
.ls8_c02060{letter-spacing:0.046116px;}
.ls6_c02060{letter-spacing:0.050400px;}
.lsa_c02060{letter-spacing:0.052704px;}
.ls11_c02060{letter-spacing:0.059292px;}
.ls1e_c02060{letter-spacing:0.062244px;}
.lsb_c02060{letter-spacing:0.065880px;}
.ls1_c02060{letter-spacing:0.072468px;}
.ls9_c02060{letter-spacing:0.079056px;}
.lsc_c02060{letter-spacing:0.085644px;}
.ls12_c02060{letter-spacing:0.092232px;}
.ls3_c02060{letter-spacing:0.098820px;}
.lse_c02060{letter-spacing:0.105408px;}
.lsf_c02060{letter-spacing:0.131760px;}
.ls1c_c02060{letter-spacing:0.144288px;}
.ls7_c02060{letter-spacing:0.181944px;}
.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;}
}
.ws4_c02060{word-spacing:-0.180000px;}
.wsa_c02060{word-spacing:-0.093600px;}
.ws9_c02060{word-spacing:-0.072000px;}
.ws0_c02060{word-spacing:-0.021600px;}
.ws3_c02060{word-spacing:-0.014400px;}
.ws13_c02060{word-spacing:-0.013176px;}
.ws8_c02060{word-spacing:-0.007200px;}
.ws1_c02060{word-spacing:0.000000px;}
.ws7_c02060{word-spacing:0.007200px;}
.ws2_c02060{word-spacing:0.014400px;}
.ws5_c02060{word-spacing:0.019764px;}
.ws16_c02060{word-spacing:0.039528px;}
.ws19_c02060{word-spacing:0.046116px;}
.ws1c_c02060{word-spacing:2.266272px;}
.ws25_c02060{word-spacing:2.872368px;}
.wsd_c02060{word-spacing:2.892132px;}
.ws1b_c02060{word-spacing:2.905308px;}
.ws26_c02060{word-spacing:2.911896px;}
.ws12_c02060{word-spacing:2.958012px;}
.wse_c02060{word-spacing:4.354668px;}
.ws24_c02060{word-spacing:4.730184px;}
.ws10_c02060{word-spacing:5.046408px;}
.ws11_c02060{word-spacing:5.441688px;}
.ws1d_c02060{word-spacing:5.797440px;}
.ws1e_c02060{word-spacing:5.823792px;}
.ws27_c02060{word-spacing:6.205896px;}
.ws21_c02060{word-spacing:7.958304px;}
.ws15_c02060{word-spacing:8.314056px;}
.ws20_c02060{word-spacing:10.488096px;}
.ws1f_c02060{word-spacing:10.540800px;}
.ws14_c02060{word-spacing:15.541092px;}
.ws1a_c02060{word-spacing:20.185632px;}
.ws18_c02060{word-spacing:24.151608px;}
.wsc_c02060{word-spacing:28.124172px;}
.ws17_c02060{word-spacing:29.211192px;}
.ws22_c02060{word-spacing:39.224952px;}
.ws23_c02060{word-spacing:39.323772px;}
.wsb_c02060{word-spacing:49.048272px;}
.wsf_c02060{word-spacing:51.504984px;}
.ws6_c02060{word-spacing:236.116800px;}
._b_c02060{margin-left:-28.843200px;}
._14_c02060{margin-left:-1.133424px;}
._15_c02060{width:1.073844px;}
._8_c02060{width:36.000000px;}
._11_c02060{width:39.510720px;}
._10_c02060{width:40.590720px;}
._12_c02060{width:55.260000px;}
._1_c02060{width:65.407068px;}
._f_c02060{width:91.570896px;}
._4_c02060{width:96.810048px;}
._6_c02060{width:101.605680px;}
._2_c02060{width:115.338168px;}
._5_c02060{width:116.438220px;}
._3_c02060{width:129.525840px;}
._0_c02060{width:194.421600px;}
._a_c02060{width:261.633600px;}
._7_c02060{width:458.566128px;}
._d_c02060{width:541.440000px;}
._9_c02060{width:565.876800px;}
._13_c02060{width:1451.116440px;}
._c_c02060{width:1791.288000px;}
._e_c02060{width:2232.561600px;}
.fc0_c02060{color:rgb(0,0,0);}
.fs4_c02060{font-size:42.120000px;}
.fs3_c02060{font-size:47.880000px;}
.fs2_c02060{font-size:60.120000px;}
.fs1_c02060{font-size:65.880000px;}
.fs0_c02060{font-size:72.000000px;}
.y0_c02060{bottom:0.000000px;}
.y3_c02060{bottom:57.360450px;}
.y2_c02060{bottom:78.060450px;}
.y3f_c02060{bottom:116.761395px;}
.y3e_c02060{bottom:135.660720px;}
.y3d_c02060{bottom:154.650630px;}
.y3c_c02060{bottom:173.640540px;}
.y40_c02060{bottom:192.541512px;}
.y3b_c02060{bottom:198.120600px;}
.y39_c02060{bottom:212.341575px;}
.y38_c02060{bottom:231.331485px;}
.y37_c02060{bottom:250.321395px;}
.y36_c02060{bottom:269.220720px;}
.y35_c02060{bottom:288.210630px;}
.y34_c02060{bottom:307.200540px;}
.y3a_c02060{bottom:326.101512px;}
.y33_c02060{bottom:331.680450px;}
.y30_c02060{bottom:345.900630px;}
.y32_c02060{bottom:364.799955px;}
.y2f_c02060{bottom:364.890540px;}
.y31_c02060{bottom:383.789865px;}
.y2e_c02060{bottom:389.370450px;}
.y2c_c02060{bottom:403.591545px;}
.y2b_c02060{bottom:422.581455px;}
.y2a_c02060{bottom:441.480780px;}
.y29_c02060{bottom:460.470690px;}
.y2d_c02060{bottom:479.371662px;}
.y28_c02060{bottom:484.950600px;}
.y26_c02060{bottom:499.170720px;}
.y25_c02060{bottom:518.160630px;}
.y24_c02060{bottom:537.150540px;}
.y27_c02060{bottom:556.051512px;}
.y23_c02060{bottom:561.630450px;}
.y21_c02060{bottom:575.851305px;}
.y20_c02060{bottom:594.841215px;}
.y1f_c02060{bottom:613.740540px;}
.y22_c02060{bottom:632.641512px;}
.y1e_c02060{bottom:638.220450px;}
.y1c_c02060{bottom:652.441755px;}
.y1b_c02060{bottom:671.431665px;}
.y1a_c02060{bottom:690.421575px;}
.y19_c02060{bottom:709.411485px;}
.y18_c02060{bottom:728.401395px;}
.y17_c02060{bottom:747.391305px;}
.y16_c02060{bottom:766.290630px;}
.y15_c02060{bottom:785.280540px;}
.y1d_c02060{bottom:804.181512px;}
.y14_c02060{bottom:809.760450px;}
.y13_c02060{bottom:823.530450px;}
.y12_c02060{bottom:842.160450px;}
.y11_c02060{bottom:863.670450px;}
.y10_c02060{bottom:884.370450px;}
.yf_c02060{bottom:905.070450px;}
.ye_c02060{bottom:926.490450px;}
.yd_c02060{bottom:947.910450px;}
.yc_c02060{bottom:969.330450px;}
.yb_c02060{bottom:990.840450px;}
.ya_c02060{bottom:1012.800450px;}
.y9_c02060{bottom:1034.220450px;}
.y8_c02060{bottom:1054.920450px;}
.y7_c02060{bottom:1075.620450px;}
.y6_c02060{bottom:1097.310450px;}
.y5_c02060{bottom:1118.010450px;}
.y4_c02060{bottom:1139.250450px;}
.y1_c02060{bottom:1193.160450px;}
.h6_c02060{height:37.410293px;}
.h5_c02060{height:53.686230px;}
.h7_c02060{height:57.805840px;}
.h3_c02060{height:58.513535px;}
.h2_c02060{height:63.175781px;}
.h1_c02060{height:63.949219px;}
.h4_c02060{height:64.615781px;}
.h0_c02060{height:1263.000000px;}
.w1_c02060{width:892.500000px;}
.w0_c02060{width:892.830000px;}
.x0_c02060{left:0.000000px;}
.x1_c02060{left:127.620000px;}
.x3_c02060{left:135.630000px;}
.x6_c02060{left:137.520000px;}
.x4_c02060{left:246.960000px;}
.x8_c02060{left:284.580000px;}
.x5_c02060{left:332.190000px;}
.x7_c02060{left:335.160000px;}
.x2_c02060{left:437.490000px;}
.x9_c02060{left:720.990531px;}
.xa_c02060{left:738.900009px;}
@media print{
.v4_c02060{vertical-align:-19.520000pt;}
.v6_c02060{vertical-align:-15.360000pt;}
.v3_c02060{vertical-align:-5.120000pt;}
.v5_c02060{vertical-align:-4.160000pt;}
.v0_c02060{vertical-align:0.000000pt;}
.v1_c02060{vertical-align:1.280000pt;}
.v2_c02060{vertical-align:9.920000pt;}
.ls1f_c02060{letter-spacing:-0.160992pt;}
.ls1d_c02060{letter-spacing:-0.160320pt;}
.ls1b_c02060{letter-spacing:-0.076800pt;}
.ls17_c02060{letter-spacing:-0.029280pt;}
.ls18_c02060{letter-spacing:-0.023424pt;}
.ls15_c02060{letter-spacing:-0.012800pt;}
.ls16_c02060{letter-spacing:-0.011712pt;}
.ls1a_c02060{letter-spacing:-0.006400pt;}
.ls14_c02060{letter-spacing:0.000000pt;}
.ls13_c02060{letter-spacing:0.005856pt;}
.ls5_c02060{letter-spacing:0.006400pt;}
.lsd_c02060{letter-spacing:0.011712pt;}
.ls0_c02060{letter-spacing:0.012800pt;}
.ls4_c02060{letter-spacing:0.017568pt;}
.ls10_c02060{letter-spacing:0.023424pt;}
.ls2_c02060{letter-spacing:0.035136pt;}
.ls19_c02060{letter-spacing:0.038400pt;}
.ls8_c02060{letter-spacing:0.040992pt;}
.ls6_c02060{letter-spacing:0.044800pt;}
.lsa_c02060{letter-spacing:0.046848pt;}
.ls11_c02060{letter-spacing:0.052704pt;}
.ls1e_c02060{letter-spacing:0.055328pt;}
.lsb_c02060{letter-spacing:0.058560pt;}
.ls1_c02060{letter-spacing:0.064416pt;}
.ls9_c02060{letter-spacing:0.070272pt;}
.lsc_c02060{letter-spacing:0.076128pt;}
.ls12_c02060{letter-spacing:0.081984pt;}
.ls3_c02060{letter-spacing:0.087840pt;}
.lse_c02060{letter-spacing:0.093696pt;}
.lsf_c02060{letter-spacing:0.117120pt;}
.ls1c_c02060{letter-spacing:0.128256pt;}
.ls7_c02060{letter-spacing:0.161728pt;}
.ws4_c02060{word-spacing:-0.160000pt;}
.wsa_c02060{word-spacing:-0.083200pt;}
.ws9_c02060{word-spacing:-0.064000pt;}
.ws0_c02060{word-spacing:-0.019200pt;}
.ws3_c02060{word-spacing:-0.012800pt;}
.ws13_c02060{word-spacing:-0.011712pt;}
.ws8_c02060{word-spacing:-0.006400pt;}
.ws1_c02060{word-spacing:0.000000pt;}
.ws7_c02060{word-spacing:0.006400pt;}
.ws2_c02060{word-spacing:0.012800pt;}
.ws5_c02060{word-spacing:0.017568pt;}
.ws16_c02060{word-spacing:0.035136pt;}
.ws19_c02060{word-spacing:0.040992pt;}
.ws1c_c02060{word-spacing:2.014464pt;}
.ws25_c02060{word-spacing:2.553216pt;}
.wsd_c02060{word-spacing:2.570784pt;}
.ws1b_c02060{word-spacing:2.582496pt;}
.ws26_c02060{word-spacing:2.588352pt;}
.ws12_c02060{word-spacing:2.629344pt;}
.wse_c02060{word-spacing:3.870816pt;}
.ws24_c02060{word-spacing:4.204608pt;}
.ws10_c02060{word-spacing:4.485696pt;}
.ws11_c02060{word-spacing:4.837056pt;}
.ws1d_c02060{word-spacing:5.153280pt;}
.ws1e_c02060{word-spacing:5.176704pt;}
.ws27_c02060{word-spacing:5.516352pt;}
.ws21_c02060{word-spacing:7.074048pt;}
.ws15_c02060{word-spacing:7.390272pt;}
.ws20_c02060{word-spacing:9.322752pt;}
.ws1f_c02060{word-spacing:9.369600pt;}
.ws14_c02060{word-spacing:13.814304pt;}
.ws1a_c02060{word-spacing:17.942784pt;}
.ws18_c02060{word-spacing:21.468096pt;}
.wsc_c02060{word-spacing:24.999264pt;}
.ws17_c02060{word-spacing:25.965504pt;}
.ws22_c02060{word-spacing:34.866624pt;}
.ws23_c02060{word-spacing:34.954464pt;}
.wsb_c02060{word-spacing:43.598464pt;}
.wsf_c02060{word-spacing:45.782208pt;}
.ws6_c02060{word-spacing:209.881600pt;}
._b_c02060{margin-left:-25.638400pt;}
._14_c02060{margin-left:-1.007488pt;}
._15_c02060{width:0.954528pt;}
._8_c02060{width:32.000000pt;}
._11_c02060{width:35.120640pt;}
._10_c02060{width:36.080640pt;}
._12_c02060{width:49.120000pt;}
._1_c02060{width:58.139616pt;}
._f_c02060{width:81.396352pt;}
._4_c02060{width:86.053376pt;}
._6_c02060{width:90.316160pt;}
._2_c02060{width:102.522816pt;}
._5_c02060{width:103.500640pt;}
._3_c02060{width:115.134080pt;}
._0_c02060{width:172.819200pt;}
._a_c02060{width:232.563200pt;}
._7_c02060{width:407.614336pt;}
._d_c02060{width:481.280000pt;}
._9_c02060{width:503.001600pt;}
._13_c02060{width:1289.881280pt;}
._c_c02060{width:1592.256000pt;}
._e_c02060{width:1984.499200pt;}
.fs4_c02060{font-size:37.440000pt;}
.fs3_c02060{font-size:42.560000pt;}
.fs2_c02060{font-size:53.440000pt;}
.fs1_c02060{font-size:58.560000pt;}
.fs0_c02060{font-size:64.000000pt;}
.y0_c02060{bottom:0.000000pt;}
.y3_c02060{bottom:50.987067pt;}
.y2_c02060{bottom:69.387067pt;}
.y3f_c02060{bottom:103.787907pt;}
.y3e_c02060{bottom:120.587307pt;}
.y3d_c02060{bottom:137.467227pt;}
.y3c_c02060{bottom:154.347147pt;}
.y40_c02060{bottom:171.148011pt;}
.y3b_c02060{bottom:176.107200pt;}
.y39_c02060{bottom:188.748067pt;}
.y38_c02060{bottom:205.627987pt;}
.y37_c02060{bottom:222.507907pt;}
.y36_c02060{bottom:239.307307pt;}
.y35_c02060{bottom:256.187227pt;}
.y34_c02060{bottom:273.067147pt;}
.y3a_c02060{bottom:289.868011pt;}
.y33_c02060{bottom:294.827067pt;}
.y30_c02060{bottom:307.467227pt;}
.y32_c02060{bottom:324.266627pt;}
.y2f_c02060{bottom:324.347147pt;}
.y31_c02060{bottom:341.146547pt;}
.y2e_c02060{bottom:346.107067pt;}
.y2c_c02060{bottom:358.748040pt;}
.y2b_c02060{bottom:375.627960pt;}
.y2a_c02060{bottom:392.427360pt;}
.y29_c02060{bottom:409.307280pt;}
.y2d_c02060{bottom:426.108144pt;}
.y28_c02060{bottom:431.067200pt;}
.y26_c02060{bottom:443.707307pt;}
.y25_c02060{bottom:460.587227pt;}
.y24_c02060{bottom:477.467147pt;}
.y27_c02060{bottom:494.268011pt;}
.y23_c02060{bottom:499.227067pt;}
.y21_c02060{bottom:511.867827pt;}
.y20_c02060{bottom:528.747747pt;}
.y1f_c02060{bottom:545.547147pt;}
.y22_c02060{bottom:562.348011pt;}
.y1e_c02060{bottom:567.307067pt;}
.y1c_c02060{bottom:579.948227pt;}
.y1b_c02060{bottom:596.828147pt;}
.y1a_c02060{bottom:613.708067pt;}
.y19_c02060{bottom:630.587987pt;}
.y18_c02060{bottom:647.467907pt;}
.y17_c02060{bottom:664.347827pt;}
.y16_c02060{bottom:681.147227pt;}
.y15_c02060{bottom:698.027147pt;}
.y1d_c02060{bottom:714.828011pt;}
.y14_c02060{bottom:719.787067pt;}
.y13_c02060{bottom:732.027067pt;}
.y12_c02060{bottom:748.587067pt;}
.y11_c02060{bottom:767.707067pt;}
.y10_c02060{bottom:786.107067pt;}
.yf_c02060{bottom:804.507067pt;}
.ye_c02060{bottom:823.547067pt;}
.yd_c02060{bottom:842.587067pt;}
.yc_c02060{bottom:861.627067pt;}
.yb_c02060{bottom:880.747067pt;}
.ya_c02060{bottom:900.267067pt;}
.y9_c02060{bottom:919.307067pt;}
.y8_c02060{bottom:937.707067pt;}
.y7_c02060{bottom:956.107067pt;}
.y6_c02060{bottom:975.387067pt;}
.y5_c02060{bottom:993.787067pt;}
.y4_c02060{bottom:1012.667067pt;}
.y1_c02060{bottom:1060.587067pt;}
.h6_c02060{height:33.253594pt;}
.h5_c02060{height:47.721094pt;}
.h7_c02060{height:51.382969pt;}
.h3_c02060{height:52.012031pt;}
.h2_c02060{height:56.156250pt;}
.h1_c02060{height:56.843750pt;}
.h4_c02060{height:57.436250pt;}
.h0_c02060{height:1122.666667pt;}
.w1_c02060{width:793.333333pt;}
.w0_c02060{width:793.626667pt;}
.x0_c02060{left:0.000000pt;}
.x1_c02060{left:113.440000pt;}
.x3_c02060{left:120.560000pt;}
.x6_c02060{left:122.240000pt;}
.x4_c02060{left:219.520000pt;}
.x8_c02060{left:252.960000pt;}
.x5_c02060{left:295.280000pt;}
.x7_c02060{left:297.920000pt;}
.x2_c02060{left:388.880000pt;}
.x9_c02060{left:640.880472pt;}
.xa_c02060{left:656.800008pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d694cd27dd4146aac239d56.woff2')format("woff");}.ff1_c02061{font-family:ff1_c02061;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02061;src:url('chunks/assets/font_881fe7bcaeb19f2533965932.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;}
.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);}
.v5_c02061{vertical-align:-17.280000px;}
.v3_c02061{vertical-align:-16.200000px;}
.v2_c02061{vertical-align:-5.760000px;}
.v4_c02061{vertical-align:-4.680000px;}
.v0_c02061{vertical-align:0.000000px;}
.v1_c02061{vertical-align:11.159400px;}
.ls14_c02061{letter-spacing:-0.181116px;}
.ls12_c02061{letter-spacing:-0.180360px;}
.ls15_c02061{letter-spacing:-0.006588px;}
.ls10_c02061{letter-spacing:0.000000px;}
.lse_c02061{letter-spacing:0.006588px;}
.ls5_c02061{letter-spacing:0.013176px;}
.ls2_c02061{letter-spacing:0.019764px;}
.lsf_c02061{letter-spacing:0.026352px;}
.ls8_c02061{letter-spacing:0.032940px;}
.ls4_c02061{letter-spacing:0.039528px;}
.lsa_c02061{letter-spacing:0.046116px;}
.lsc_c02061{letter-spacing:0.052704px;}
.ls9_c02061{letter-spacing:0.059292px;}
.ls13_c02061{letter-spacing:0.062244px;}
.ls7_c02061{letter-spacing:0.065880px;}
.ls6_c02061{letter-spacing:0.072468px;}
.ls1_c02061{letter-spacing:0.085644px;}
.lsd_c02061{letter-spacing:0.092232px;}
.lsb_c02061{letter-spacing:0.118584px;}
.ls3_c02061{letter-spacing:0.131760px;}
.ls11_c02061{letter-spacing:0.144288px;}
.ls0_c02061{letter-spacing:0.181944px;}
.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;}
}
.ws15_c02061{word-spacing:-0.335988px;}
.ws0_c02061{word-spacing:-0.021600px;}
.ws1_c02061{word-spacing:0.000000px;}
.ws5_c02061{word-spacing:0.013176px;}
.ws10_c02061{word-spacing:0.019764px;}
.ws1e_c02061{word-spacing:0.032940px;}
.ws2b_c02061{word-spacing:0.039528px;}
.ws11_c02061{word-spacing:0.052704px;}
.ws14_c02061{word-spacing:0.059292px;}
.ws9_c02061{word-spacing:0.065880px;}
.ws26_c02061{word-spacing:0.098820px;}
.ws2f_c02061{word-spacing:0.401868px;}
.ws13_c02061{word-spacing:0.447984px;}
.ws18_c02061{word-spacing:2.206980px;}
.ws16_c02061{word-spacing:3.992328px;}
.ws21_c02061{word-spacing:4.348080px;}
.ws20_c02061{word-spacing:4.354668px;}
.ws17_c02061{word-spacing:5.085936px;}
.ws29_c02061{word-spacing:5.481216px;}
.ws28_c02061{word-spacing:5.757912px;}
.ws27_c02061{word-spacing:5.804028px;}
.ws3_c02061{word-spacing:6.126840px;}
.ws12_c02061{word-spacing:6.502356px;}
.ws8_c02061{word-spacing:7.273152px;}
.ws19_c02061{word-spacing:7.292916px;}
.ws4_c02061{word-spacing:7.925364px;}
.ws1d_c02061{word-spacing:8.333820px;}
.ws2a_c02061{word-spacing:8.702748px;}
.ws32_c02061{word-spacing:9.401076px;}
.ws1a_c02061{word-spacing:10.152108px;}
.wsb_c02061{word-spacing:11.166660px;}
.wsa_c02061{word-spacing:11.232540px;}
.ws1f_c02061{word-spacing:11.555352px;}
.ws30_c02061{word-spacing:11.930868px;}
.ws25_c02061{word-spacing:14.065380px;}
.ws23_c02061{word-spacing:15.514740px;}
.ws24_c02061{word-spacing:15.527916px;}
.ws22_c02061{word-spacing:15.863904px;}
.ws2e_c02061{word-spacing:24.507360px;}
.ws2d_c02061{word-spacing:24.527124px;}
.wse_c02061{word-spacing:26.332236px;}
.ws31_c02061{word-spacing:29.566944px;}
.ws1c_c02061{word-spacing:30.212568px;}
.ws1b_c02061{word-spacing:30.627612px;}
.wsc_c02061{word-spacing:30.647376px;}
.wsd_c02061{word-spacing:34.962516px;}
.ws7_c02061{word-spacing:41.471460px;}
.wsf_c02061{word-spacing:44.357004px;}
.ws6_c02061{word-spacing:48.962016px;}
.ws2_c02061{word-spacing:49.048272px;}
.ws2c_c02061{word-spacing:57.289248px;}
._7_c02061{margin-left:-1.077300px;}
._8_c02061{width:1.218780px;}
._3_c02061{width:39.510720px;}
._2_c02061{width:40.590720px;}
._4_c02061{width:55.260000px;}
._1_c02061{width:91.570896px;}
._6_c02061{width:97.294464px;}
._0_c02061{width:194.421600px;}
._5_c02061{width:1451.116440px;}
.fc0_c02061{color:rgb(0,0,0);}
.fs5_c02061{font-size:36.000000px;}
.fs3_c02061{font-size:42.120000px;}
.fs2_c02061{font-size:47.880000px;}
.fs1_c02061{font-size:60.120000px;}
.fs4_c02061{font-size:65.880000px;}
.fs0_c02061{font-size:72.000000px;}
.y0_c02061{bottom:0.000000px;}
.y3_c02061{bottom:57.360450px;}
.y2_c02061{bottom:78.060450px;}
.y46_c02061{bottom:115.591755px;}
.y45_c02061{bottom:134.581665px;}
.y44_c02061{bottom:153.571575px;}
.y43_c02061{bottom:172.561485px;}
.y42_c02061{bottom:191.460810px;}
.y41_c02061{bottom:210.450720px;}
.y40_c02061{bottom:229.440630px;}
.y3f_c02061{bottom:248.430540px;}
.y47_c02061{bottom:267.331512px;}
.y3e_c02061{bottom:272.910450px;}
.y3c_c02061{bottom:286.230450px;}
.y3b_c02061{bottom:300.900630px;}
.y3a_c02061{bottom:319.890540px;}
.y3d_c02061{bottom:338.790450px;}
.y39_c02061{bottom:344.370450px;}
.y37_c02061{bottom:357.690450px;}
.y36_c02061{bottom:372.360540px;}
.y38_c02061{bottom:391.260450px;}
.y35_c02061{bottom:396.840600px;}
.y33_c02061{bottom:410.250600px;}
.y32_c02061{bottom:424.921635px;}
.y31_c02061{bottom:443.820960px;}
.y30_c02061{bottom:462.810870px;}
.y2f_c02061{bottom:481.800780px;}
.y2e_c02061{bottom:500.790690px;}
.y34_c02061{bottom:519.690600px;}
.y2d_c02061{bottom:525.270600px;}
.y2b_c02061{bottom:538.590450px;}
.y2a_c02061{bottom:553.261305px;}
.y29_c02061{bottom:572.251215px;}
.y28_c02061{bottom:591.241125px;}
.y2c_c02061{bottom:610.050450px;}
.y27_c02061{bottom:615.630450px;}
.y25_c02061{bottom:629.040450px;}
.y24_c02061{bottom:643.710630px;}
.y23_c02061{bottom:662.700540px;}
.y26_c02061{bottom:681.600450px;}
.y22_c02061{bottom:687.180450px;}
.y20_c02061{bottom:700.500450px;}
.y1f_c02061{bottom:715.170630px;}
.y1e_c02061{bottom:734.160540px;}
.y21_c02061{bottom:753.060450px;}
.y1d_c02061{bottom:758.640450px;}
.y1b_c02061{bottom:771.330450px;}
.y1a_c02061{bottom:783.211215px;}
.y19_c02061{bottom:802.201125px;}
.y1c_c02061{bottom:821.010450px;}
.y18_c02061{bottom:826.590450px;}
.y16_c02061{bottom:839.370450px;}
.y15_c02061{bottom:851.252160px;}
.y14_c02061{bottom:870.151485px;}
.y13_c02061{bottom:889.141395px;}
.y12_c02061{bottom:908.131305px;}
.y11_c02061{bottom:927.121215px;}
.y10_c02061{bottom:946.111125px;}
.y17_c02061{bottom:964.920450px;}
.yf_c02061{bottom:970.500450px;}
.yd_c02061{bottom:983.280450px;}
.yc_c02061{bottom:995.161305px;}
.yb_c02061{bottom:1014.060630px;}
.ya_c02061{bottom:1033.050540px;}
.y9_c02061{bottom:1052.040450px;}
.y8_c02061{bottom:1070.130450px;}
.y7_c02061{bottom:1084.800630px;}
.y6_c02061{bottom:1103.790540px;}
.ye_c02061{bottom:1122.690450px;}
.y5_c02061{bottom:1128.270450px;}
.y4_c02061{bottom:1142.040600px;}
.y1_c02061{bottom:1193.160450px;}
.h7_c02061{height:31.587891px;}
.h4_c02061{height:37.410293px;}
.h6_c02061{height:42.011895px;}
.h3_c02061{height:53.685630px;}
.h5_c02061{height:57.805840px;}
.h8_c02061{height:58.513535px;}
.h2_c02061{height:63.175781px;}
.h1_c02061{height:63.949219px;}
.h0_c02061{height:1263.000000px;}
.w1_c02061{width:892.500000px;}
.w0_c02061{width:892.830000px;}
.x0_c02061{left:0.000000px;}
.x1_c02061{left:127.620000px;}
.x3_c02061{left:135.630000px;}
.x4_c02061{left:284.580000px;}
.x2_c02061{left:437.490000px;}
.x5_c02061{left:720.990000px;}
@media print{
.v5_c02061{vertical-align:-15.360000pt;}
.v3_c02061{vertical-align:-14.400000pt;}
.v2_c02061{vertical-align:-5.120000pt;}
.v4_c02061{vertical-align:-4.160000pt;}
.v0_c02061{vertical-align:0.000000pt;}
.v1_c02061{vertical-align:9.919467pt;}
.ls14_c02061{letter-spacing:-0.160992pt;}
.ls12_c02061{letter-spacing:-0.160320pt;}
.ls15_c02061{letter-spacing:-0.005856pt;}
.ls10_c02061{letter-spacing:0.000000pt;}
.lse_c02061{letter-spacing:0.005856pt;}
.ls5_c02061{letter-spacing:0.011712pt;}
.ls2_c02061{letter-spacing:0.017568pt;}
.lsf_c02061{letter-spacing:0.023424pt;}
.ls8_c02061{letter-spacing:0.029280pt;}
.ls4_c02061{letter-spacing:0.035136pt;}
.lsa_c02061{letter-spacing:0.040992pt;}
.lsc_c02061{letter-spacing:0.046848pt;}
.ls9_c02061{letter-spacing:0.052704pt;}
.ls13_c02061{letter-spacing:0.055328pt;}
.ls7_c02061{letter-spacing:0.058560pt;}
.ls6_c02061{letter-spacing:0.064416pt;}
.ls1_c02061{letter-spacing:0.076128pt;}
.lsd_c02061{letter-spacing:0.081984pt;}
.lsb_c02061{letter-spacing:0.105408pt;}
.ls3_c02061{letter-spacing:0.117120pt;}
.ls11_c02061{letter-spacing:0.128256pt;}
.ls0_c02061{letter-spacing:0.161728pt;}
.ws15_c02061{word-spacing:-0.298656pt;}
.ws0_c02061{word-spacing:-0.019200pt;}
.ws1_c02061{word-spacing:0.000000pt;}
.ws5_c02061{word-spacing:0.011712pt;}
.ws10_c02061{word-spacing:0.017568pt;}
.ws1e_c02061{word-spacing:0.029280pt;}
.ws2b_c02061{word-spacing:0.035136pt;}
.ws11_c02061{word-spacing:0.046848pt;}
.ws14_c02061{word-spacing:0.052704pt;}
.ws9_c02061{word-spacing:0.058560pt;}
.ws26_c02061{word-spacing:0.087840pt;}
.ws2f_c02061{word-spacing:0.357216pt;}
.ws13_c02061{word-spacing:0.398208pt;}
.ws18_c02061{word-spacing:1.961760pt;}
.ws16_c02061{word-spacing:3.548736pt;}
.ws21_c02061{word-spacing:3.864960pt;}
.ws20_c02061{word-spacing:3.870816pt;}
.ws17_c02061{word-spacing:4.520832pt;}
.ws29_c02061{word-spacing:4.872192pt;}
.ws28_c02061{word-spacing:5.118144pt;}
.ws27_c02061{word-spacing:5.159136pt;}
.ws3_c02061{word-spacing:5.446080pt;}
.ws12_c02061{word-spacing:5.779872pt;}
.ws8_c02061{word-spacing:6.465024pt;}
.ws19_c02061{word-spacing:6.482592pt;}
.ws4_c02061{word-spacing:7.044768pt;}
.ws1d_c02061{word-spacing:7.407840pt;}
.ws2a_c02061{word-spacing:7.735776pt;}
.ws32_c02061{word-spacing:8.356512pt;}
.ws1a_c02061{word-spacing:9.024096pt;}
.wsb_c02061{word-spacing:9.925920pt;}
.wsa_c02061{word-spacing:9.984480pt;}
.ws1f_c02061{word-spacing:10.271424pt;}
.ws30_c02061{word-spacing:10.605216pt;}
.ws25_c02061{word-spacing:12.502560pt;}
.ws23_c02061{word-spacing:13.790880pt;}
.ws24_c02061{word-spacing:13.802592pt;}
.ws22_c02061{word-spacing:14.101248pt;}
.ws2e_c02061{word-spacing:21.784320pt;}
.ws2d_c02061{word-spacing:21.801888pt;}
.wse_c02061{word-spacing:23.406432pt;}
.ws31_c02061{word-spacing:26.281728pt;}
.ws1c_c02061{word-spacing:26.855616pt;}
.ws1b_c02061{word-spacing:27.224544pt;}
.wsc_c02061{word-spacing:27.242112pt;}
.wsd_c02061{word-spacing:31.077792pt;}
.ws7_c02061{word-spacing:36.863520pt;}
.wsf_c02061{word-spacing:39.428448pt;}
.ws6_c02061{word-spacing:43.521792pt;}
.ws2_c02061{word-spacing:43.598464pt;}
.ws2c_c02061{word-spacing:50.923776pt;}
._7_c02061{margin-left:-0.957600pt;}
._8_c02061{width:1.083360pt;}
._3_c02061{width:35.120640pt;}
._2_c02061{width:36.080640pt;}
._4_c02061{width:49.120000pt;}
._1_c02061{width:81.396352pt;}
._6_c02061{width:86.483968pt;}
._0_c02061{width:172.819200pt;}
._5_c02061{width:1289.881280pt;}
.fs5_c02061{font-size:32.000000pt;}
.fs3_c02061{font-size:37.440000pt;}
.fs2_c02061{font-size:42.560000pt;}
.fs1_c02061{font-size:53.440000pt;}
.fs4_c02061{font-size:58.560000pt;}
.fs0_c02061{font-size:64.000000pt;}
.y0_c02061{bottom:0.000000pt;}
.y3_c02061{bottom:50.987067pt;}
.y2_c02061{bottom:69.387067pt;}
.y46_c02061{bottom:102.748227pt;}
.y45_c02061{bottom:119.628147pt;}
.y44_c02061{bottom:136.508067pt;}
.y43_c02061{bottom:153.387987pt;}
.y42_c02061{bottom:170.187387pt;}
.y41_c02061{bottom:187.067307pt;}
.y40_c02061{bottom:203.947227pt;}
.y3f_c02061{bottom:220.827147pt;}
.y47_c02061{bottom:237.628011pt;}
.y3e_c02061{bottom:242.587067pt;}
.y3c_c02061{bottom:254.427067pt;}
.y3b_c02061{bottom:267.467227pt;}
.y3a_c02061{bottom:284.347147pt;}
.y3d_c02061{bottom:301.147067pt;}
.y39_c02061{bottom:306.107067pt;}
.y37_c02061{bottom:317.947067pt;}
.y36_c02061{bottom:330.987147pt;}
.y38_c02061{bottom:347.787067pt;}
.y35_c02061{bottom:352.747200pt;}
.y33_c02061{bottom:364.667200pt;}
.y32_c02061{bottom:377.708120pt;}
.y31_c02061{bottom:394.507520pt;}
.y30_c02061{bottom:411.387440pt;}
.y2f_c02061{bottom:428.267360pt;}
.y2e_c02061{bottom:445.147280pt;}
.y34_c02061{bottom:461.947200pt;}
.y2d_c02061{bottom:466.907200pt;}
.y2b_c02061{bottom:478.747067pt;}
.y2a_c02061{bottom:491.787827pt;}
.y29_c02061{bottom:508.667747pt;}
.y28_c02061{bottom:525.547667pt;}
.y2c_c02061{bottom:542.267067pt;}
.y27_c02061{bottom:547.227067pt;}
.y25_c02061{bottom:559.147067pt;}
.y24_c02061{bottom:572.187227pt;}
.y23_c02061{bottom:589.067147pt;}
.y26_c02061{bottom:605.867067pt;}
.y22_c02061{bottom:610.827067pt;}
.y20_c02061{bottom:622.667067pt;}
.y1f_c02061{bottom:635.707227pt;}
.y1e_c02061{bottom:652.587147pt;}
.y21_c02061{bottom:669.387067pt;}
.y1d_c02061{bottom:674.347067pt;}
.y1b_c02061{bottom:685.627067pt;}
.y1a_c02061{bottom:696.187747pt;}
.y19_c02061{bottom:713.067667pt;}
.y1c_c02061{bottom:729.787067pt;}
.y18_c02061{bottom:734.747067pt;}
.y16_c02061{bottom:746.107067pt;}
.y15_c02061{bottom:756.668587pt;}
.y14_c02061{bottom:773.467987pt;}
.y13_c02061{bottom:790.347907pt;}
.y12_c02061{bottom:807.227827pt;}
.y11_c02061{bottom:824.107747pt;}
.y10_c02061{bottom:840.987667pt;}
.y17_c02061{bottom:857.707067pt;}
.yf_c02061{bottom:862.667067pt;}
.yd_c02061{bottom:874.027067pt;}
.yc_c02061{bottom:884.587827pt;}
.yb_c02061{bottom:901.387227pt;}
.ya_c02061{bottom:918.267147pt;}
.y9_c02061{bottom:935.147067pt;}
.y8_c02061{bottom:951.227067pt;}
.y7_c02061{bottom:964.267227pt;}
.y6_c02061{bottom:981.147147pt;}
.ye_c02061{bottom:997.947067pt;}
.y5_c02061{bottom:1002.907067pt;}
.y4_c02061{bottom:1015.147200pt;}
.y1_c02061{bottom:1060.587067pt;}
.h7_c02061{height:28.078125pt;}
.h4_c02061{height:33.253594pt;}
.h6_c02061{height:37.343906pt;}
.h3_c02061{height:47.720560pt;}
.h5_c02061{height:51.382969pt;}
.h8_c02061{height:52.012031pt;}
.h2_c02061{height:56.156250pt;}
.h1_c02061{height:56.843750pt;}
.h0_c02061{height:1122.666667pt;}
.w1_c02061{width:793.333333pt;}
.w0_c02061{width:793.626667pt;}
.x0_c02061{left:0.000000pt;}
.x1_c02061{left:113.440000pt;}
.x3_c02061{left:120.560000pt;}
.x4_c02061{left:252.960000pt;}
.x2_c02061{left:388.880000pt;}
.x5_c02061{left:640.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_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_998cfd8ad411d79bf14a4794.woff2')format("woff");}.ff1_c02062{font-family:ff1_c02062;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02062;src:url('chunks/assets/font_010c8b66abeaecc8ca393b78.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;}
.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);}
.v3_c02062{vertical-align:-16.200000px;}
.v2_c02062{vertical-align:-5.760000px;}
.v0_c02062{vertical-align:0.000000px;}
.v1_c02062{vertical-align:11.159400px;}
.lsf_c02062{letter-spacing:-0.181116px;}
.lsd_c02062{letter-spacing:-0.180360px;}
.ls11_c02062{letter-spacing:-0.039528px;}
.lsb_c02062{letter-spacing:0.000000px;}
.ls4_c02062{letter-spacing:0.013176px;}
.lsa_c02062{letter-spacing:0.026352px;}
.ls5_c02062{letter-spacing:0.032940px;}
.ls2_c02062{letter-spacing:0.039528px;}
.ls7_c02062{letter-spacing:0.046116px;}
.ls9_c02062{letter-spacing:0.052704px;}
.ls8_c02062{letter-spacing:0.059292px;}
.lse_c02062{letter-spacing:0.062244px;}
.ls3_c02062{letter-spacing:0.065880px;}
.ls1_c02062{letter-spacing:0.072468px;}
.ls10_c02062{letter-spacing:0.092232px;}
.ls6_c02062{letter-spacing:0.131760px;}
.lsc_c02062{letter-spacing:0.144288px;}
.ls0_c02062{letter-spacing:0.181944px;}
.sc__c02062{text-shadow:none;}
.sc0_c02062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02062{-webkit-text-stroke:0px transparent;}
.sc0_c02062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02062{word-spacing:-0.021600px;}
.ws1_c02062{word-spacing:0.000000px;}
.ws7_c02062{word-spacing:0.026352px;}
.wsb_c02062{word-spacing:0.059292px;}
.ws14_c02062{word-spacing:0.065880px;}
.ws10_c02062{word-spacing:0.487512px;}
.ws9_c02062{word-spacing:2.958012px;}
.ws8_c02062{word-spacing:3.985740px;}
.ws11_c02062{word-spacing:4.743360px;}
.wsd_c02062{word-spacing:5.072760px;}
.wsc_c02062{word-spacing:5.085936px;}
.ws4_c02062{word-spacing:7.918776px;}
.ws3_c02062{word-spacing:7.938540px;}
.wse_c02062{word-spacing:7.945128px;}
.wsf_c02062{word-spacing:7.958304px;}
.ws12_c02062{word-spacing:16.970688px;}
.ws5_c02062{word-spacing:19.487304px;}
.ws6_c02062{word-spacing:29.204604px;}
.ws13_c02062{word-spacing:29.935872px;}
.ws2_c02062{word-spacing:49.048272px;}
.wsa_c02062{word-spacing:55.128384px;}
._7_c02062{margin-left:-1.077300px;}
._8_c02062{width:1.166076px;}
._3_c02062{width:39.510720px;}
._2_c02062{width:40.590720px;}
._4_c02062{width:55.260000px;}
._1_c02062{width:91.570896px;}
._6_c02062{width:97.294464px;}
._0_c02062{width:194.421600px;}
._5_c02062{width:1451.116440px;}
.fc0_c02062{color:rgb(0,0,0);}
.fs3_c02062{font-size:42.120000px;}
.fs2_c02062{font-size:47.880000px;}
.fs1_c02062{font-size:60.120000px;}
.fs4_c02062{font-size:65.880000px;}
.fs0_c02062{font-size:72.000000px;}
.y0_c02062{bottom:0.000000px;}
.y3_c02062{bottom:57.360450px;}
.y2_c02062{bottom:78.060450px;}
.y38_c02062{bottom:121.080450px;}
.y37_c02062{bottom:141.780450px;}
.y36_c02062{bottom:162.480450px;}
.y35_c02062{bottom:183.180450px;}
.y34_c02062{bottom:203.880450px;}
.y33_c02062{bottom:224.580450px;}
.y32_c02062{bottom:245.280450px;}
.y31_c02062{bottom:265.890450px;}
.y30_c02062{bottom:286.590450px;}
.y2f_c02062{bottom:307.290450px;}
.y2e_c02062{bottom:327.990450px;}
.y2d_c02062{bottom:348.690450px;}
.y2c_c02062{bottom:369.390450px;}
.y2b_c02062{bottom:390.090450px;}
.y2a_c02062{bottom:410.790450px;}
.y29_c02062{bottom:431.490450px;}
.y28_c02062{bottom:452.190450px;}
.y27_c02062{bottom:472.890450px;}
.y26_c02062{bottom:493.590450px;}
.y25_c02062{bottom:514.290450px;}
.y24_c02062{bottom:534.990450px;}
.y23_c02062{bottom:555.690450px;}
.y22_c02062{bottom:576.390450px;}
.y21_c02062{bottom:597.090450px;}
.y20_c02062{bottom:617.790450px;}
.y1f_c02062{bottom:638.490450px;}
.y1e_c02062{bottom:659.190450px;}
.y1d_c02062{bottom:690.240450px;}
.y1c_c02062{bottom:721.290450px;}
.y1a_c02062{bottom:742.532520px;}
.y19_c02062{bottom:761.522430px;}
.y18_c02062{bottom:780.512340px;}
.y17_c02062{bottom:799.502250px;}
.y16_c02062{bottom:818.401575px;}
.y15_c02062{bottom:837.391485px;}
.y14_c02062{bottom:856.381395px;}
.y13_c02062{bottom:875.371305px;}
.y12_c02062{bottom:894.361215px;}
.y11_c02062{bottom:913.351125px;}
.y1b_c02062{bottom:932.163159px;}
.y10_c02062{bottom:937.740450px;}
.ye_c02062{bottom:952.052430px;}
.yd_c02062{bottom:970.951755px;}
.yc_c02062{bottom:989.941665px;}
.yb_c02062{bottom:1008.931575px;}
.ya_c02062{bottom:1027.921485px;}
.y9_c02062{bottom:1046.911395px;}
.y8_c02062{bottom:1065.810720px;}
.y7_c02062{bottom:1084.800630px;}
.y6_c02062{bottom:1103.790540px;}
.yf_c02062{bottom:1122.693159px;}
.y5_c02062{bottom:1128.270450px;}
.y4_c02062{bottom:1142.040600px;}
.y1_c02062{bottom:1193.160450px;}
.h4_c02062{height:37.410293px;}
.h3_c02062{height:53.685630px;}
.h5_c02062{height:57.805840px;}
.h6_c02062{height:58.513535px;}
.h2_c02062{height:63.175781px;}
.h1_c02062{height:63.949219px;}
.h0_c02062{height:1263.000000px;}
.w1_c02062{width:892.500000px;}
.w0_c02062{width:892.830000px;}
.x0_c02062{left:0.000000px;}
.x1_c02062{left:127.620000px;}
.x3_c02062{left:135.630000px;}
.x4_c02062{left:284.580000px;}
.x2_c02062{left:437.490000px;}
.x5_c02062{left:720.990531px;}
@media print{
.v3_c02062{vertical-align:-14.400000pt;}
.v2_c02062{vertical-align:-5.120000pt;}
.v0_c02062{vertical-align:0.000000pt;}
.v1_c02062{vertical-align:9.919467pt;}
.lsf_c02062{letter-spacing:-0.160992pt;}
.lsd_c02062{letter-spacing:-0.160320pt;}
.ls11_c02062{letter-spacing:-0.035136pt;}
.lsb_c02062{letter-spacing:0.000000pt;}
.ls4_c02062{letter-spacing:0.011712pt;}
.lsa_c02062{letter-spacing:0.023424pt;}
.ls5_c02062{letter-spacing:0.029280pt;}
.ls2_c02062{letter-spacing:0.035136pt;}
.ls7_c02062{letter-spacing:0.040992pt;}
.ls9_c02062{letter-spacing:0.046848pt;}
.ls8_c02062{letter-spacing:0.052704pt;}
.lse_c02062{letter-spacing:0.055328pt;}
.ls3_c02062{letter-spacing:0.058560pt;}
.ls1_c02062{letter-spacing:0.064416pt;}
.ls10_c02062{letter-spacing:0.081984pt;}
.ls6_c02062{letter-spacing:0.117120pt;}
.lsc_c02062{letter-spacing:0.128256pt;}
.ls0_c02062{letter-spacing:0.161728pt;}
.ws0_c02062{word-spacing:-0.019200pt;}
.ws1_c02062{word-spacing:0.000000pt;}
.ws7_c02062{word-spacing:0.023424pt;}
.wsb_c02062{word-spacing:0.052704pt;}
.ws14_c02062{word-spacing:0.058560pt;}
.ws10_c02062{word-spacing:0.433344pt;}
.ws9_c02062{word-spacing:2.629344pt;}
.ws8_c02062{word-spacing:3.542880pt;}
.ws11_c02062{word-spacing:4.216320pt;}
.wsd_c02062{word-spacing:4.509120pt;}
.wsc_c02062{word-spacing:4.520832pt;}
.ws4_c02062{word-spacing:7.038912pt;}
.ws3_c02062{word-spacing:7.056480pt;}
.wse_c02062{word-spacing:7.062336pt;}
.wsf_c02062{word-spacing:7.074048pt;}
.ws12_c02062{word-spacing:15.085056pt;}
.ws5_c02062{word-spacing:17.322048pt;}
.ws6_c02062{word-spacing:25.959648pt;}
.ws13_c02062{word-spacing:26.609664pt;}
.ws2_c02062{word-spacing:43.598464pt;}
.wsa_c02062{word-spacing:49.003008pt;}
._7_c02062{margin-left:-0.957600pt;}
._8_c02062{width:1.036512pt;}
._3_c02062{width:35.120640pt;}
._2_c02062{width:36.080640pt;}
._4_c02062{width:49.120000pt;}
._1_c02062{width:81.396352pt;}
._6_c02062{width:86.483968pt;}
._0_c02062{width:172.819200pt;}
._5_c02062{width:1289.881280pt;}
.fs3_c02062{font-size:37.440000pt;}
.fs2_c02062{font-size:42.560000pt;}
.fs1_c02062{font-size:53.440000pt;}
.fs4_c02062{font-size:58.560000pt;}
.fs0_c02062{font-size:64.000000pt;}
.y0_c02062{bottom:0.000000pt;}
.y3_c02062{bottom:50.987067pt;}
.y2_c02062{bottom:69.387067pt;}
.y38_c02062{bottom:107.627067pt;}
.y37_c02062{bottom:126.027067pt;}
.y36_c02062{bottom:144.427067pt;}
.y35_c02062{bottom:162.827067pt;}
.y34_c02062{bottom:181.227067pt;}
.y33_c02062{bottom:199.627067pt;}
.y32_c02062{bottom:218.027067pt;}
.y31_c02062{bottom:236.347067pt;}
.y30_c02062{bottom:254.747067pt;}
.y2f_c02062{bottom:273.147067pt;}
.y2e_c02062{bottom:291.547067pt;}
.y2d_c02062{bottom:309.947067pt;}
.y2c_c02062{bottom:328.347067pt;}
.y2b_c02062{bottom:346.747067pt;}
.y2a_c02062{bottom:365.147067pt;}
.y29_c02062{bottom:383.547067pt;}
.y28_c02062{bottom:401.947067pt;}
.y27_c02062{bottom:420.347067pt;}
.y26_c02062{bottom:438.747067pt;}
.y25_c02062{bottom:457.147067pt;}
.y24_c02062{bottom:475.547067pt;}
.y23_c02062{bottom:493.947067pt;}
.y22_c02062{bottom:512.347067pt;}
.y21_c02062{bottom:530.747067pt;}
.y20_c02062{bottom:549.147067pt;}
.y1f_c02062{bottom:567.547067pt;}
.y1e_c02062{bottom:585.947067pt;}
.y1d_c02062{bottom:613.547067pt;}
.y1c_c02062{bottom:641.147067pt;}
.y1a_c02062{bottom:660.028907pt;}
.y19_c02062{bottom:676.908827pt;}
.y18_c02062{bottom:693.788747pt;}
.y17_c02062{bottom:710.668667pt;}
.y16_c02062{bottom:727.468067pt;}
.y15_c02062{bottom:744.347987pt;}
.y14_c02062{bottom:761.227907pt;}
.y13_c02062{bottom:778.107827pt;}
.y12_c02062{bottom:794.987747pt;}
.y11_c02062{bottom:811.867667pt;}
.y1b_c02062{bottom:828.589475pt;}
.y10_c02062{bottom:833.547067pt;}
.ye_c02062{bottom:846.268827pt;}
.yd_c02062{bottom:863.068227pt;}
.yc_c02062{bottom:879.948147pt;}
.yb_c02062{bottom:896.828067pt;}
.ya_c02062{bottom:913.707987pt;}
.y9_c02062{bottom:930.587907pt;}
.y8_c02062{bottom:947.387307pt;}
.y7_c02062{bottom:964.267227pt;}
.y6_c02062{bottom:981.147147pt;}
.yf_c02062{bottom:997.949475pt;}
.y5_c02062{bottom:1002.907067pt;}
.y4_c02062{bottom:1015.147200pt;}
.y1_c02062{bottom:1060.587067pt;}
.h4_c02062{height:33.253594pt;}
.h3_c02062{height:47.720560pt;}
.h5_c02062{height:51.382969pt;}
.h6_c02062{height:52.012031pt;}
.h2_c02062{height:56.156250pt;}
.h1_c02062{height:56.843750pt;}
.h0_c02062{height:1122.666667pt;}
.w1_c02062{width:793.333333pt;}
.w0_c02062{width:793.626667pt;}
.x0_c02062{left:0.000000pt;}
.x1_c02062{left:113.440000pt;}
.x3_c02062{left:120.560000pt;}
.x4_c02062{left:252.960000pt;}
.x2_c02062{left:388.880000pt;}
.x5_c02062{left:640.880472pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c87a8974fbae6fd20f874b05.woff2')format("woff");}.ff1_c02063{font-family:ff1_c02063;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02063;src:url('chunks/assets/font_4fc2316c3547c2ddf7ccc4db.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02063{font-family:ff3_c02063;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_c02063;src:url('chunks/assets/font_53ed408a493af10f052bfe8d.woff2')format("woff");}.ff4_c02063{font-family:ff4_c02063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02063;src:url('chunks/assets/font_bab1014d6608bd75c17ec44b.woff2')format("woff");}.ff5_c02063{font-family:ff5_c02063;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_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);}
.v1_c02063{vertical-align:-9.000000px;}
.v0_c02063{vertical-align:0.000000px;}
.ls17_c02063{letter-spacing:-0.108216px;}
.ls16_c02063{letter-spacing:-0.084168px;}
.ls18_c02063{letter-spacing:-0.078156px;}
.ls15_c02063{letter-spacing:-0.050400px;}
.ls1a_c02063{letter-spacing:-0.028800px;}
.ls19_c02063{letter-spacing:-0.007200px;}
.ls14_c02063{letter-spacing:0.000000px;}
.ls4_c02063{letter-spacing:0.007200px;}
.ls7_c02063{letter-spacing:0.014400px;}
.ls5_c02063{letter-spacing:0.021600px;}
.ls0_c02063{letter-spacing:0.028800px;}
.ls1_c02063{letter-spacing:0.036000px;}
.ls2_c02063{letter-spacing:0.043200px;}
.ls8_c02063{letter-spacing:0.048096px;}
.ls13_c02063{letter-spacing:0.050400px;}
.ls6_c02063{letter-spacing:0.057600px;}
.ls11_c02063{letter-spacing:0.059292px;}
.lsf_c02063{letter-spacing:0.064800px;}
.ls3_c02063{letter-spacing:0.072000px;}
.lsd_c02063{letter-spacing:0.079200px;}
.lse_c02063{letter-spacing:0.086400px;}
.ls12_c02063{letter-spacing:0.092232px;}
.lsa_c02063{letter-spacing:0.093600px;}
.ls9_c02063{letter-spacing:0.132264px;}
.lsb_c02063{letter-spacing:0.144000px;}
.ls10_c02063{letter-spacing:0.171288px;}
.lsc_c02063{letter-spacing:0.180000px;}
.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;}
}
.ws1_c02063{word-spacing:-65.880000px;}
.ws0_c02063{word-spacing:-60.120000px;}
.ws29_c02063{word-spacing:-0.410400px;}
.ws15_c02063{word-spacing:-0.402804px;}
.ws2a_c02063{word-spacing:-0.288000px;}
.ws24_c02063{word-spacing:-0.244800px;}
.ws26_c02063{word-spacing:-0.208800px;}
.ws11_c02063{word-spacing:-0.201600px;}
.ws27_c02063{word-spacing:-0.180000px;}
.ws25_c02063{word-spacing:-0.144000px;}
.wsc_c02063{word-spacing:-0.129600px;}
.wsd_c02063{word-spacing:-0.122400px;}
.ws4_c02063{word-spacing:-0.115200px;}
.ws23_c02063{word-spacing:-0.108000px;}
.ws2b_c02063{word-spacing:-0.100800px;}
.ws21_c02063{word-spacing:-0.064800px;}
.ws1c_c02063{word-spacing:-0.043200px;}
.ws12_c02063{word-spacing:-0.036000px;}
.ws1b_c02063{word-spacing:-0.028800px;}
.ws2_c02063{word-spacing:-0.021600px;}
.ws22_c02063{word-spacing:-0.014400px;}
.ws19_c02063{word-spacing:-0.007200px;}
.ws3_c02063{word-spacing:0.000000px;}
.ws1a_c02063{word-spacing:0.007200px;}
.ws28_c02063{word-spacing:0.032940px;}
.ws16_c02063{word-spacing:0.168336px;}
.ws13_c02063{word-spacing:0.174348px;}
.ws14_c02063{word-spacing:0.198396px;}
.ws9_c02063{word-spacing:2.044800px;}
.ws8_c02063{word-spacing:2.059200px;}
.ws17_c02063{word-spacing:3.816000px;}
.ws18_c02063{word-spacing:3.844800px;}
.ws5_c02063{word-spacing:4.291200px;}
.ws7_c02063{word-spacing:5.724000px;}
.ws6_c02063{word-spacing:5.738400px;}
.wsb_c02063{word-spacing:9.950400px;}
.wsa_c02063{word-spacing:10.000800px;}
.wsf_c02063{word-spacing:11.851200px;}
.ws10_c02063{word-spacing:11.865600px;}
.wse_c02063{word-spacing:12.240000px;}
.ws1f_c02063{word-spacing:18.626400px;}
.ws20_c02063{word-spacing:18.748800px;}
.ws1e_c02063{word-spacing:21.247200px;}
.ws1d_c02063{word-spacing:21.297600px;}
._1_c02063{margin-left:-1.051200px;}
._0_c02063{width:194.421600px;}
._3_c02063{width:197.056800px;}
._4_c02063{width:201.016800px;}
._2_c02063{width:249.984000px;}
._5_c02063{width:363.196800px;}
.fc0_c02063{color:rgb(0,0,0);}
.fs2_c02063{font-size:47.880000px;}
.fs1_c02063{font-size:60.120000px;}
.fs3_c02063{font-size:65.880000px;}
.fs0_c02063{font-size:72.000000px;}
.y0_c02063{bottom:0.000000px;}
.y3_c02063{bottom:57.360450px;}
.y2_c02063{bottom:78.060450px;}
.y31_c02063{bottom:115.320450px;}
.y30_c02063{bottom:146.370450px;}
.y2f_c02063{bottom:177.420450px;}
.y2e_c02063{bottom:199.020450px;}
.y2d_c02063{bottom:220.350450px;}
.y2c_c02063{bottom:241.950600px;}
.y2b_c02063{bottom:263.190450px;}
.y2a_c02063{bottom:284.430450px;}
.y29_c02063{bottom:303.690450px;}
.y28_c02063{bottom:325.110450px;}
.y27_c02063{bottom:346.710450px;}
.y26_c02063{bottom:367.410450px;}
.y25_c02063{bottom:388.110450px;}
.y24_c02063{bottom:408.810450px;}
.y23_c02063{bottom:429.510450px;}
.y22_c02063{bottom:450.750450px;}
.y21_c02063{bottom:472.440450px;}
.y20_c02063{bottom:493.140450px;}
.y1f_c02063{bottom:514.380450px;}
.y1e_c02063{bottom:535.800450px;}
.y1d_c02063{bottom:557.310450px;}
.y1c_c02063{bottom:578.730450px;}
.y1b_c02063{bottom:600.240450px;}
.y1a_c02063{bottom:620.850450px;}
.y19_c02063{bottom:642.360450px;}
.y18_c02063{bottom:662.520657px;}
.y17_c02063{bottom:679.800648px;}
.y16_c02063{bottom:696.990459px;}
.y15_c02063{bottom:714.270450px;}
.y14_c02063{bottom:747.300450px;}
.y13_c02063{bottom:765.210450px;}
.y12_c02063{bottom:786.000450px;}
.y11_c02063{bottom:806.700450px;}
.y10_c02063{bottom:828.030450px;}
.yf_c02063{bottom:849.450450px;}
.ye_c02063{bottom:870.870450px;}
.yd_c02063{bottom:891.750450px;}
.yc_c02063{bottom:912.450450px;}
.yb_c02063{bottom:943.500450px;}
.ya_c02063{bottom:974.550450px;}
.y9_c02063{bottom:1005.600450px;}
.y8_c02063{bottom:1036.650450px;}
.y7_c02063{bottom:1067.700450px;}
.y6_c02063{bottom:1098.570450px;}
.y5_c02063{bottom:1119.270450px;}
.y4_c02063{bottom:1139.970450px;}
.y1_c02063{bottom:1193.160450px;}
.h4_c02063{height:52.751777px;}
.h3_c02063{height:53.397598px;}
.h7_c02063{height:58.513535px;}
.h2_c02063{height:63.175781px;}
.h1_c02063{height:63.949219px;}
.h6_c02063{height:70.628906px;}
.h5_c02063{height:70.988906px;}
.h0_c02063{height:1263.000000px;}
.w1_c02063{width:892.500000px;}
.w0_c02063{width:892.830000px;}
.x0_c02063{left:0.000000px;}
.x1_c02063{left:127.620000px;}
.x4_c02063{left:135.630000px;}
.x5_c02063{left:138.150000px;}
.x7_c02063{left:146.250000px;}
.x3_c02063{left:148.950000px;}
.x6_c02063{left:273.870000px;}
.x2_c02063{left:437.490000px;}
@media print{
.v1_c02063{vertical-align:-8.000000pt;}
.v0_c02063{vertical-align:0.000000pt;}
.ls17_c02063{letter-spacing:-0.096192pt;}
.ls16_c02063{letter-spacing:-0.074816pt;}
.ls18_c02063{letter-spacing:-0.069472pt;}
.ls15_c02063{letter-spacing:-0.044800pt;}
.ls1a_c02063{letter-spacing:-0.025600pt;}
.ls19_c02063{letter-spacing:-0.006400pt;}
.ls14_c02063{letter-spacing:0.000000pt;}
.ls4_c02063{letter-spacing:0.006400pt;}
.ls7_c02063{letter-spacing:0.012800pt;}
.ls5_c02063{letter-spacing:0.019200pt;}
.ls0_c02063{letter-spacing:0.025600pt;}
.ls1_c02063{letter-spacing:0.032000pt;}
.ls2_c02063{letter-spacing:0.038400pt;}
.ls8_c02063{letter-spacing:0.042752pt;}
.ls13_c02063{letter-spacing:0.044800pt;}
.ls6_c02063{letter-spacing:0.051200pt;}
.ls11_c02063{letter-spacing:0.052704pt;}
.lsf_c02063{letter-spacing:0.057600pt;}
.ls3_c02063{letter-spacing:0.064000pt;}
.lsd_c02063{letter-spacing:0.070400pt;}
.lse_c02063{letter-spacing:0.076800pt;}
.ls12_c02063{letter-spacing:0.081984pt;}
.lsa_c02063{letter-spacing:0.083200pt;}
.ls9_c02063{letter-spacing:0.117568pt;}
.lsb_c02063{letter-spacing:0.128000pt;}
.ls10_c02063{letter-spacing:0.152256pt;}
.lsc_c02063{letter-spacing:0.160000pt;}
.ws1_c02063{word-spacing:-58.560000pt;}
.ws0_c02063{word-spacing:-53.440000pt;}
.ws29_c02063{word-spacing:-0.364800pt;}
.ws15_c02063{word-spacing:-0.358048pt;}
.ws2a_c02063{word-spacing:-0.256000pt;}
.ws24_c02063{word-spacing:-0.217600pt;}
.ws26_c02063{word-spacing:-0.185600pt;}
.ws11_c02063{word-spacing:-0.179200pt;}
.ws27_c02063{word-spacing:-0.160000pt;}
.ws25_c02063{word-spacing:-0.128000pt;}
.wsc_c02063{word-spacing:-0.115200pt;}
.wsd_c02063{word-spacing:-0.108800pt;}
.ws4_c02063{word-spacing:-0.102400pt;}
.ws23_c02063{word-spacing:-0.096000pt;}
.ws2b_c02063{word-spacing:-0.089600pt;}
.ws21_c02063{word-spacing:-0.057600pt;}
.ws1c_c02063{word-spacing:-0.038400pt;}
.ws12_c02063{word-spacing:-0.032000pt;}
.ws1b_c02063{word-spacing:-0.025600pt;}
.ws2_c02063{word-spacing:-0.019200pt;}
.ws22_c02063{word-spacing:-0.012800pt;}
.ws19_c02063{word-spacing:-0.006400pt;}
.ws3_c02063{word-spacing:0.000000pt;}
.ws1a_c02063{word-spacing:0.006400pt;}
.ws28_c02063{word-spacing:0.029280pt;}
.ws16_c02063{word-spacing:0.149632pt;}
.ws13_c02063{word-spacing:0.154976pt;}
.ws14_c02063{word-spacing:0.176352pt;}
.ws9_c02063{word-spacing:1.817600pt;}
.ws8_c02063{word-spacing:1.830400pt;}
.ws17_c02063{word-spacing:3.392000pt;}
.ws18_c02063{word-spacing:3.417600pt;}
.ws5_c02063{word-spacing:3.814400pt;}
.ws7_c02063{word-spacing:5.088000pt;}
.ws6_c02063{word-spacing:5.100800pt;}
.wsb_c02063{word-spacing:8.844800pt;}
.wsa_c02063{word-spacing:8.889600pt;}
.wsf_c02063{word-spacing:10.534400pt;}
.ws10_c02063{word-spacing:10.547200pt;}
.wse_c02063{word-spacing:10.880000pt;}
.ws1f_c02063{word-spacing:16.556800pt;}
.ws20_c02063{word-spacing:16.665600pt;}
.ws1e_c02063{word-spacing:18.886400pt;}
.ws1d_c02063{word-spacing:18.931200pt;}
._1_c02063{margin-left:-0.934400pt;}
._0_c02063{width:172.819200pt;}
._3_c02063{width:175.161600pt;}
._4_c02063{width:178.681600pt;}
._2_c02063{width:222.208000pt;}
._5_c02063{width:322.841600pt;}
.fs2_c02063{font-size:42.560000pt;}
.fs1_c02063{font-size:53.440000pt;}
.fs3_c02063{font-size:58.560000pt;}
.fs0_c02063{font-size:64.000000pt;}
.y0_c02063{bottom:0.000000pt;}
.y3_c02063{bottom:50.987067pt;}
.y2_c02063{bottom:69.387067pt;}
.y31_c02063{bottom:102.507067pt;}
.y30_c02063{bottom:130.107067pt;}
.y2f_c02063{bottom:157.707067pt;}
.y2e_c02063{bottom:176.907067pt;}
.y2d_c02063{bottom:195.867067pt;}
.y2c_c02063{bottom:215.067200pt;}
.y2b_c02063{bottom:233.947067pt;}
.y2a_c02063{bottom:252.827067pt;}
.y29_c02063{bottom:269.947067pt;}
.y28_c02063{bottom:288.987067pt;}
.y27_c02063{bottom:308.187067pt;}
.y26_c02063{bottom:326.587067pt;}
.y25_c02063{bottom:344.987067pt;}
.y24_c02063{bottom:363.387067pt;}
.y23_c02063{bottom:381.787067pt;}
.y22_c02063{bottom:400.667067pt;}
.y21_c02063{bottom:419.947067pt;}
.y20_c02063{bottom:438.347067pt;}
.y1f_c02063{bottom:457.227067pt;}
.y1e_c02063{bottom:476.267067pt;}
.y1d_c02063{bottom:495.387067pt;}
.y1c_c02063{bottom:514.427067pt;}
.y1b_c02063{bottom:533.547067pt;}
.y1a_c02063{bottom:551.867067pt;}
.y19_c02063{bottom:570.987067pt;}
.y18_c02063{bottom:588.907251pt;}
.y17_c02063{bottom:604.267243pt;}
.y16_c02063{bottom:619.547075pt;}
.y15_c02063{bottom:634.907067pt;}
.y14_c02063{bottom:664.267067pt;}
.y13_c02063{bottom:680.187067pt;}
.y12_c02063{bottom:698.667067pt;}
.y11_c02063{bottom:717.067067pt;}
.y10_c02063{bottom:736.027067pt;}
.yf_c02063{bottom:755.067067pt;}
.ye_c02063{bottom:774.107067pt;}
.yd_c02063{bottom:792.667067pt;}
.yc_c02063{bottom:811.067067pt;}
.yb_c02063{bottom:838.667067pt;}
.ya_c02063{bottom:866.267067pt;}
.y9_c02063{bottom:893.867067pt;}
.y8_c02063{bottom:921.467067pt;}
.y7_c02063{bottom:949.067067pt;}
.y6_c02063{bottom:976.507067pt;}
.y5_c02063{bottom:994.907067pt;}
.y4_c02063{bottom:1013.307067pt;}
.y1_c02063{bottom:1060.587067pt;}
.h4_c02063{height:46.890469pt;}
.h3_c02063{height:47.464531pt;}
.h7_c02063{height:52.012031pt;}
.h2_c02063{height:56.156250pt;}
.h1_c02063{height:56.843750pt;}
.h6_c02063{height:62.781250pt;}
.h5_c02063{height:63.101250pt;}
.h0_c02063{height:1122.666667pt;}
.w1_c02063{width:793.333333pt;}
.w0_c02063{width:793.626667pt;}
.x0_c02063{left:0.000000pt;}
.x1_c02063{left:113.440000pt;}
.x4_c02063{left:120.560000pt;}
.x5_c02063{left:122.800000pt;}
.x7_c02063{left:130.000000pt;}
.x3_c02063{left:132.400000pt;}
.x6_c02063{left:243.440000pt;}
.x2_c02063{left:388.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_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_e1b95be7a0fff8f5a9919533.woff2')format("woff");}.ff1_c02064{font-family:ff1_c02064;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02064;src:url('chunks/assets/font_22d923dd63665a69fbce1068.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;}
.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);}
.v8_c02064{vertical-align:-15.480000px;}
.v9_c02064{vertical-align:-12.960000px;}
.va_c02064{vertical-align:-11.160000px;}
.v2_c02064{vertical-align:-5.040000px;}
.v6_c02064{vertical-align:-3.960000px;}
.v5_c02064{vertical-align:-2.520000px;}
.v1_c02064{vertical-align:-1.440000px;}
.v0_c02064{vertical-align:0.000000px;}
.v3_c02064{vertical-align:1.800000px;}
.vb_c02064{vertical-align:2.880600px;}
.v7_c02064{vertical-align:3.960000px;}
.v4_c02064{vertical-align:5.400000px;}
.ls2a_c02064{letter-spacing:-0.168336px;}
.ls25_c02064{letter-spacing:-0.086184px;}
.ls28_c02064{letter-spacing:-0.066132px;}
.ls2c_c02064{letter-spacing:-0.043200px;}
.ls24_c02064{letter-spacing:-0.027000px;}
.ls2e_c02064{letter-spacing:-0.019152px;}
.ls2d_c02064{letter-spacing:-0.010800px;}
.ls31_c02064{letter-spacing:-0.009576px;}
.ls22_c02064{letter-spacing:-0.007200px;}
.ls32_c02064{letter-spacing:-0.004788px;}
.ls20_c02064{letter-spacing:0.000000px;}
.ls12_c02064{letter-spacing:0.005400px;}
.lse_c02064{letter-spacing:0.007200px;}
.lsf_c02064{letter-spacing:0.010800px;}
.ls21_c02064{letter-spacing:0.014400px;}
.ls1f_c02064{letter-spacing:0.019152px;}
.ls23_c02064{letter-spacing:0.021600px;}
.ls7_c02064{letter-spacing:0.024048px;}
.ls11_c02064{letter-spacing:0.028728px;}
.lsd_c02064{letter-spacing:0.028800px;}
.ls13_c02064{letter-spacing:0.032400px;}
.lsb_c02064{letter-spacing:0.036072px;}
.ls16_c02064{letter-spacing:0.037800px;}
.ls10_c02064{letter-spacing:0.043092px;}
.ls15_c02064{letter-spacing:0.043200px;}
.ls27_c02064{letter-spacing:0.048096px;}
.lsa_c02064{letter-spacing:0.072468px;}
.ls19_c02064{letter-spacing:0.081396px;}
.lsc_c02064{letter-spacing:0.084168px;}
.ls26_c02064{letter-spacing:0.086184px;}
.ls0_c02064{letter-spacing:0.090180px;}
.ls29_c02064{letter-spacing:0.092232px;}
.ls14_c02064{letter-spacing:0.110124px;}
.ls1d_c02064{letter-spacing:0.124488px;}
.ls3_c02064{letter-spacing:0.126252px;}
.ls5_c02064{letter-spacing:0.132264px;}
.ls1e_c02064{letter-spacing:0.134064px;}
.ls2_c02064{letter-spacing:0.138348px;}
.ls2b_c02064{letter-spacing:0.151200px;}
.ls4_c02064{letter-spacing:0.151524px;}
.ls9_c02064{letter-spacing:0.158112px;}
.ls2f_c02064{letter-spacing:0.167580px;}
.ls6_c02064{letter-spacing:0.177876px;}
.ls1a_c02064{letter-spacing:0.181944px;}
.ls18_c02064{letter-spacing:0.205884px;}
.ls30_c02064{letter-spacing:156.778200px;}
.ls1c_c02064{letter-spacing:157.140000px;}
.ls1_c02064{letter-spacing:173.340000px;}
.ls17_c02064{letter-spacing:200.790000px;}
.ls8_c02064{letter-spacing:206.460000px;}
.ls1b_c02064{letter-spacing:235.980000px;}
.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;}
}
.ws5_c02064{word-spacing:-16.647876px;}
.ws14_c02064{word-spacing:-0.402804px;}
.ws13_c02064{word-spacing:-0.390780px;}
.ws12_c02064{word-spacing:-0.360720px;}
.ws16_c02064{word-spacing:-0.306612px;}
.ws1c_c02064{word-spacing:-0.296856px;}
.ws1b_c02064{word-spacing:-0.272916px;}
.ws20_c02064{word-spacing:-0.225036px;}
.ws1f_c02064{word-spacing:-0.215460px;}
.ws1a_c02064{word-spacing:-0.183600px;}
.ws11_c02064{word-spacing:-0.177156px;}
.wse_c02064{word-spacing:-0.172800px;}
.ws21_c02064{word-spacing:-0.172368px;}
.ws23_c02064{word-spacing:-0.119700px;}
.ws18_c02064{word-spacing:-0.115200px;}
.ws22_c02064{word-spacing:-0.110124px;}
.ws19_c02064{word-spacing:-0.108000px;}
.ws10_c02064{word-spacing:-0.093600px;}
.ws1e_c02064{word-spacing:-0.081396px;}
.wsb_c02064{word-spacing:-0.021600px;}
.wsd_c02064{word-spacing:-0.014400px;}
.wsf_c02064{word-spacing:-0.007200px;}
.wsc_c02064{word-spacing:0.000000px;}
.ws17_c02064{word-spacing:0.006012px;}
.ws15_c02064{word-spacing:0.042084px;}
.wsa_c02064{word-spacing:58.969440px;}
.ws8_c02064{word-spacing:88.129440px;}
.ws4_c02064{word-spacing:89.602380px;}
.ws7_c02064{word-spacing:90.278496px;}
.ws2_c02064{word-spacing:122.362380px;}
.ws9_c02064{word-spacing:122.893020px;}
.ws1_c02064{word-spacing:123.036372px;}
.ws3_c02064{word-spacing:123.038496px;}
.ws0_c02064{word-spacing:155.506608px;}
.ws1d_c02064{word-spacing:172.935000px;}
.ws6_c02064{word-spacing:238.043304px;}
._23_c02064{margin-left:-27.761400px;}
._25_c02064{margin-left:-15.838200px;}
._4_c02064{margin-left:-1.190376px;}
._2a_c02064{width:41.401800px;}
._1c_c02064{width:51.300000px;}
._24_c02064{width:63.001800px;}
._17_c02064{width:68.644440px;}
._21_c02064{width:75.420000px;}
._18_c02064{width:77.398200px;}
._1f_c02064{width:83.340000px;}
._11_c02064{width:84.474000px;}
._19_c02064{width:87.278400px;}
._10_c02064{width:88.581600px;}
._27_c02064{width:97.740000px;}
._1a_c02064{width:100.598400px;}
._1d_c02064{width:104.479380px;}
._16_c02064{width:108.347688px;}
._1b_c02064{width:113.689440px;}
._22_c02064{width:115.329276px;}
._15_c02064{width:119.311524px;}
._12_c02064{width:122.220000px;}
._3_c02064{width:126.270000px;}
._13_c02064{width:127.980000px;}
._20_c02064{width:129.864960px;}
._1e_c02064{width:132.915600px;}
._2b_c02064{width:136.200168px;}
._14_c02064{width:139.618944px;}
._29_c02064{width:149.146920px;}
._28_c02064{width:152.642160px;}
._26_c02064{width:156.780000px;}
._0_c02064{width:194.421600px;}
._2_c02064{width:205.187688px;}
._5_c02064{width:211.934556px;}
._c_c02064{width:254.080620px;}
._1_c02064{width:437.526000px;}
._7_c02064{width:499.169268px;}
._8_c02064{width:505.097100px;}
._6_c02064{width:513.441756px;}
._e_c02064{width:629.109792px;}
._f_c02064{width:653.065056px;}
._9_c02064{width:691.012296px;}
._d_c02064{width:704.043360px;}
._a_c02064{width:722.780208px;}
._b_c02064{width:748.306656px;}
.fc0_c02064{color:rgb(0,0,0);}
.fs5_c02064{font-size:11.880000px;}
.fs1_c02064{font-size:47.880000px;}
.fs2_c02064{font-size:54.000000px;}
.fs3_c02064{font-size:60.120000px;}
.fs4_c02064{font-size:65.880000px;}
.fs0_c02064{font-size:72.000000px;}
.y0_c02064{bottom:0.000000px;}
.y3_c02064{bottom:57.360450px;}
.y2_c02064{bottom:78.060450px;}
.y3a_c02064{bottom:128.190774px;}
.y39_c02064{bottom:131.520738px;}
.y38_c02064{bottom:134.940693px;}
.y37_c02064{bottom:138.450639px;}
.y36_c02064{bottom:141.870594px;}
.y35_c02064{bottom:145.290549px;}
.y34_c02064{bottom:148.800495px;}
.y33_c02064{bottom:152.220450px;}
.y31_c02064{bottom:157.980450px;}
.y32_c02064{bottom:158.430600px;}
.y30_c02064{bottom:161.850000px;}
.y2e_c02064{bottom:176.970450px;}
.y2f_c02064{bottom:177.330450px;}
.y2d_c02064{bottom:180.840000px;}
.y2b_c02064{bottom:195.960600px;}
.y2c_c02064{bottom:196.320450px;}
.y2a_c02064{bottom:199.830000px;}
.y28_c02064{bottom:214.950600px;}
.y29_c02064{bottom:215.310450px;}
.y27_c02064{bottom:218.730900px;}
.y25_c02064{bottom:233.940450px;}
.y26_c02064{bottom:234.300450px;}
.y24_c02064{bottom:237.720450px;}
.y23_c02064{bottom:256.710450px;}
.y21_c02064{bottom:271.830450px;}
.y22_c02064{bottom:272.190450px;}
.y20_c02064{bottom:275.700450px;}
.y1f_c02064{bottom:294.690450px;}
.y1e_c02064{bottom:309.810450px;}
.y1d_c02064{bottom:313.590450px;}
.y1c_c02064{bottom:329.790450px;}
.y1b_c02064{bottom:349.050450px;}
.y1a_c02064{bottom:365.880450px;}
.y19_c02064{bottom:389.280450px;}
.y18_c02064{bottom:406.200600px;}
.y17_c02064{bottom:426.721050px;}
.y16_c02064{bottom:442.290600px;}
.y15_c02064{bottom:459.570450px;}
.y14_c02064{bottom:478.560450px;}
.y13_c02064{bottom:497.460600px;}
.y12_c02064{bottom:517.260450px;}
.y11_c02064{bottom:536.160450px;}
.y10_c02064{bottom:555.150450px;}
.yf_c02064{bottom:575.850450px;}
.ye_c02064{bottom:594.840450px;}
.yd_c02064{bottom:613.830450px;}
.yc_c02064{bottom:632.820450px;}
.yb_c02064{bottom:649.740450px;}
.ya_c02064{bottom:666.570450px;}
.y9_c02064{bottom:696.360450px;}
.y8_c02064{bottom:721.740450px;}
.y7_c02064{bottom:748.110450px;}
.y6_c02064{bottom:769.530450px;}
.y5_c02064{bottom:1108.920450px;}
.y4_c02064{bottom:1139.970450px;}
.y1_c02064{bottom:1193.160450px;}
.h13_c02064{height:10.424004px;}
.h12_c02064{height:10.551621px;}
.h3_c02064{height:42.526230px;}
.hc_c02064{height:47.381836px;}
.h4_c02064{height:47.961914px;}
.hd_c02064{height:48.461836px;}
.h5_c02064{height:53.397598px;}
.he_c02064{height:58.513535px;}
.h6_c02064{height:59.605840px;}
.h8_c02064{height:59.606440px;}
.ha_c02064{height:59.953535px;}
.hb_c02064{height:59.954135px;}
.h7_c02064{height:59.965840px;}
.h9_c02064{height:60.312935px;}
.h11_c02064{height:62.472935px;}
.hf_c02064{height:62.473535px;}
.h10_c02064{height:62.833535px;}
.h2_c02064{height:63.175781px;}
.h1_c02064{height:63.949219px;}
.h0_c02064{height:1263.000000px;}
.w1_c02064{width:892.500000px;}
.w0_c02064{width:892.830000px;}
.x0_c02064{left:0.000000px;}
.x1_c02064{left:127.620000px;}
.x5_c02064{left:135.630000px;}
.x7_c02064{left:143.910000px;}
.x8_c02064{left:150.300000px;}
.x6_c02064{left:212.040000px;}
.x9_c02064{left:220.680000px;}
.x3_c02064{left:389.070000px;}
.x2_c02064{left:437.490000px;}
.xa_c02064{left:546.120450px;}
.x4_c02064{left:717.120000px;}
@media print{
.v8_c02064{vertical-align:-13.760000pt;}
.v9_c02064{vertical-align:-11.520000pt;}
.va_c02064{vertical-align:-9.920000pt;}
.v2_c02064{vertical-align:-4.480000pt;}
.v6_c02064{vertical-align:-3.520000pt;}
.v5_c02064{vertical-align:-2.240000pt;}
.v1_c02064{vertical-align:-1.280000pt;}
.v0_c02064{vertical-align:0.000000pt;}
.v3_c02064{vertical-align:1.600000pt;}
.vb_c02064{vertical-align:2.560533pt;}
.v7_c02064{vertical-align:3.520000pt;}
.v4_c02064{vertical-align:4.800000pt;}
.ls2a_c02064{letter-spacing:-0.149632pt;}
.ls25_c02064{letter-spacing:-0.076608pt;}
.ls28_c02064{letter-spacing:-0.058784pt;}
.ls2c_c02064{letter-spacing:-0.038400pt;}
.ls24_c02064{letter-spacing:-0.024000pt;}
.ls2e_c02064{letter-spacing:-0.017024pt;}
.ls2d_c02064{letter-spacing:-0.009600pt;}
.ls31_c02064{letter-spacing:-0.008512pt;}
.ls22_c02064{letter-spacing:-0.006400pt;}
.ls32_c02064{letter-spacing:-0.004256pt;}
.ls20_c02064{letter-spacing:0.000000pt;}
.ls12_c02064{letter-spacing:0.004800pt;}
.lse_c02064{letter-spacing:0.006400pt;}
.lsf_c02064{letter-spacing:0.009600pt;}
.ls21_c02064{letter-spacing:0.012800pt;}
.ls1f_c02064{letter-spacing:0.017024pt;}
.ls23_c02064{letter-spacing:0.019200pt;}
.ls7_c02064{letter-spacing:0.021376pt;}
.ls11_c02064{letter-spacing:0.025536pt;}
.lsd_c02064{letter-spacing:0.025600pt;}
.ls13_c02064{letter-spacing:0.028800pt;}
.lsb_c02064{letter-spacing:0.032064pt;}
.ls16_c02064{letter-spacing:0.033600pt;}
.ls10_c02064{letter-spacing:0.038304pt;}
.ls15_c02064{letter-spacing:0.038400pt;}
.ls27_c02064{letter-spacing:0.042752pt;}
.lsa_c02064{letter-spacing:0.064416pt;}
.ls19_c02064{letter-spacing:0.072352pt;}
.lsc_c02064{letter-spacing:0.074816pt;}
.ls26_c02064{letter-spacing:0.076608pt;}
.ls0_c02064{letter-spacing:0.080160pt;}
.ls29_c02064{letter-spacing:0.081984pt;}
.ls14_c02064{letter-spacing:0.097888pt;}
.ls1d_c02064{letter-spacing:0.110656pt;}
.ls3_c02064{letter-spacing:0.112224pt;}
.ls5_c02064{letter-spacing:0.117568pt;}
.ls1e_c02064{letter-spacing:0.119168pt;}
.ls2_c02064{letter-spacing:0.122976pt;}
.ls2b_c02064{letter-spacing:0.134400pt;}
.ls4_c02064{letter-spacing:0.134688pt;}
.ls9_c02064{letter-spacing:0.140544pt;}
.ls2f_c02064{letter-spacing:0.148960pt;}
.ls6_c02064{letter-spacing:0.158112pt;}
.ls1a_c02064{letter-spacing:0.161728pt;}
.ls18_c02064{letter-spacing:0.183008pt;}
.ls30_c02064{letter-spacing:139.358400pt;}
.ls1c_c02064{letter-spacing:139.680000pt;}
.ls1_c02064{letter-spacing:154.080000pt;}
.ls17_c02064{letter-spacing:178.480000pt;}
.ls8_c02064{letter-spacing:183.520000pt;}
.ls1b_c02064{letter-spacing:209.760000pt;}
.ws5_c02064{word-spacing:-14.798112pt;}
.ws14_c02064{word-spacing:-0.358048pt;}
.ws13_c02064{word-spacing:-0.347360pt;}
.ws12_c02064{word-spacing:-0.320640pt;}
.ws16_c02064{word-spacing:-0.272544pt;}
.ws1c_c02064{word-spacing:-0.263872pt;}
.ws1b_c02064{word-spacing:-0.242592pt;}
.ws20_c02064{word-spacing:-0.200032pt;}
.ws1f_c02064{word-spacing:-0.191520pt;}
.ws1a_c02064{word-spacing:-0.163200pt;}
.ws11_c02064{word-spacing:-0.157472pt;}
.wse_c02064{word-spacing:-0.153600pt;}
.ws21_c02064{word-spacing:-0.153216pt;}
.ws23_c02064{word-spacing:-0.106400pt;}
.ws18_c02064{word-spacing:-0.102400pt;}
.ws22_c02064{word-spacing:-0.097888pt;}
.ws19_c02064{word-spacing:-0.096000pt;}
.ws10_c02064{word-spacing:-0.083200pt;}
.ws1e_c02064{word-spacing:-0.072352pt;}
.wsb_c02064{word-spacing:-0.019200pt;}
.wsd_c02064{word-spacing:-0.012800pt;}
.wsf_c02064{word-spacing:-0.006400pt;}
.wsc_c02064{word-spacing:0.000000pt;}
.ws17_c02064{word-spacing:0.005344pt;}
.ws15_c02064{word-spacing:0.037408pt;}
.wsa_c02064{word-spacing:52.417280pt;}
.ws8_c02064{word-spacing:78.337280pt;}
.ws4_c02064{word-spacing:79.646560pt;}
.ws7_c02064{word-spacing:80.247552pt;}
.ws2_c02064{word-spacing:108.766560pt;}
.ws9_c02064{word-spacing:109.238240pt;}
.ws1_c02064{word-spacing:109.365664pt;}
.ws3_c02064{word-spacing:109.367552pt;}
.ws0_c02064{word-spacing:138.228096pt;}
.ws1d_c02064{word-spacing:153.720000pt;}
.ws6_c02064{word-spacing:211.594048pt;}
._23_c02064{margin-left:-24.676800pt;}
._25_c02064{margin-left:-14.078400pt;}
._4_c02064{margin-left:-1.058112pt;}
._2a_c02064{width:36.801600pt;}
._1c_c02064{width:45.600000pt;}
._24_c02064{width:56.001600pt;}
._17_c02064{width:61.017280pt;}
._21_c02064{width:67.040000pt;}
._18_c02064{width:68.798400pt;}
._1f_c02064{width:74.080000pt;}
._11_c02064{width:75.088000pt;}
._19_c02064{width:77.580800pt;}
._10_c02064{width:78.739200pt;}
._27_c02064{width:86.880000pt;}
._1a_c02064{width:89.420800pt;}
._1d_c02064{width:92.870560pt;}
._16_c02064{width:96.309056pt;}
._1b_c02064{width:101.057280pt;}
._22_c02064{width:102.514912pt;}
._15_c02064{width:106.054688pt;}
._12_c02064{width:108.640000pt;}
._3_c02064{width:112.240000pt;}
._13_c02064{width:113.760000pt;}
._20_c02064{width:115.435520pt;}
._1e_c02064{width:118.147200pt;}
._2b_c02064{width:121.066816pt;}
._14_c02064{width:124.105728pt;}
._29_c02064{width:132.575040pt;}
._28_c02064{width:135.681920pt;}
._26_c02064{width:139.360000pt;}
._0_c02064{width:172.819200pt;}
._2_c02064{width:182.389056pt;}
._5_c02064{width:188.386272pt;}
._c_c02064{width:225.849440pt;}
._1_c02064{width:388.912000pt;}
._7_c02064{width:443.706016pt;}
._8_c02064{width:448.975200pt;}
._6_c02064{width:456.392672pt;}
._e_c02064{width:559.208704pt;}
._f_c02064{width:580.502272pt;}
._9_c02064{width:614.233152pt;}
._d_c02064{width:625.816320pt;}
._a_c02064{width:642.471296pt;}
._b_c02064{width:665.161472pt;}
.fs5_c02064{font-size:10.560000pt;}
.fs1_c02064{font-size:42.560000pt;}
.fs2_c02064{font-size:48.000000pt;}
.fs3_c02064{font-size:53.440000pt;}
.fs4_c02064{font-size:58.560000pt;}
.fs0_c02064{font-size:64.000000pt;}
.y0_c02064{bottom:0.000000pt;}
.y3_c02064{bottom:50.987067pt;}
.y2_c02064{bottom:69.387067pt;}
.y3a_c02064{bottom:113.947355pt;}
.y39_c02064{bottom:116.907323pt;}
.y38_c02064{bottom:119.947283pt;}
.y37_c02064{bottom:123.067235pt;}
.y36_c02064{bottom:126.107195pt;}
.y35_c02064{bottom:129.147155pt;}
.y34_c02064{bottom:132.267107pt;}
.y33_c02064{bottom:135.307067pt;}
.y31_c02064{bottom:140.427067pt;}
.y32_c02064{bottom:140.827200pt;}
.y30_c02064{bottom:143.866667pt;}
.y2e_c02064{bottom:157.307067pt;}
.y2f_c02064{bottom:157.627067pt;}
.y2d_c02064{bottom:160.746667pt;}
.y2b_c02064{bottom:174.187200pt;}
.y2c_c02064{bottom:174.507067pt;}
.y2a_c02064{bottom:177.626667pt;}
.y28_c02064{bottom:191.067200pt;}
.y29_c02064{bottom:191.387067pt;}
.y27_c02064{bottom:194.427467pt;}
.y25_c02064{bottom:207.947067pt;}
.y26_c02064{bottom:208.267067pt;}
.y24_c02064{bottom:211.307067pt;}
.y23_c02064{bottom:228.187067pt;}
.y21_c02064{bottom:241.627067pt;}
.y22_c02064{bottom:241.947067pt;}
.y20_c02064{bottom:245.067067pt;}
.y1f_c02064{bottom:261.947067pt;}
.y1e_c02064{bottom:275.387067pt;}
.y1d_c02064{bottom:278.747067pt;}
.y1c_c02064{bottom:293.147067pt;}
.y1b_c02064{bottom:310.267067pt;}
.y1a_c02064{bottom:325.227067pt;}
.y19_c02064{bottom:346.027067pt;}
.y18_c02064{bottom:361.067200pt;}
.y17_c02064{bottom:379.307600pt;}
.y16_c02064{bottom:393.147200pt;}
.y15_c02064{bottom:408.507067pt;}
.y14_c02064{bottom:425.387067pt;}
.y13_c02064{bottom:442.187200pt;}
.y12_c02064{bottom:459.787067pt;}
.y11_c02064{bottom:476.587067pt;}
.y10_c02064{bottom:493.467067pt;}
.yf_c02064{bottom:511.867067pt;}
.ye_c02064{bottom:528.747067pt;}
.yd_c02064{bottom:545.627067pt;}
.yc_c02064{bottom:562.507067pt;}
.yb_c02064{bottom:577.547067pt;}
.ya_c02064{bottom:592.507067pt;}
.y9_c02064{bottom:618.987067pt;}
.y8_c02064{bottom:641.547067pt;}
.y7_c02064{bottom:664.987067pt;}
.y6_c02064{bottom:684.027067pt;}
.y5_c02064{bottom:985.707067pt;}
.y4_c02064{bottom:1013.307067pt;}
.y1_c02064{bottom:1060.587067pt;}
.h13_c02064{height:9.265781pt;}
.h12_c02064{height:9.379219pt;}
.h3_c02064{height:37.801094pt;}
.hc_c02064{height:42.117188pt;}
.h4_c02064{height:42.632812pt;}
.hd_c02064{height:43.077188pt;}
.h5_c02064{height:47.464531pt;}
.he_c02064{height:52.012031pt;}
.h6_c02064{height:52.982969pt;}
.h8_c02064{height:52.983502pt;}
.ha_c02064{height:53.292031pt;}
.hb_c02064{height:53.292565pt;}
.h7_c02064{height:53.302969pt;}
.h9_c02064{height:53.611498pt;}
.h11_c02064{height:55.531498pt;}
.hf_c02064{height:55.532031pt;}
.h10_c02064{height:55.852031pt;}
.h2_c02064{height:56.156250pt;}
.h1_c02064{height:56.843750pt;}
.h0_c02064{height:1122.666667pt;}
.w1_c02064{width:793.333333pt;}
.w0_c02064{width:793.626667pt;}
.x0_c02064{left:0.000000pt;}
.x1_c02064{left:113.440000pt;}
.x5_c02064{left:120.560000pt;}
.x7_c02064{left:127.920000pt;}
.x8_c02064{left:133.600000pt;}
.x6_c02064{left:188.480000pt;}
.x9_c02064{left:196.160000pt;}
.x3_c02064{left:345.840000pt;}
.x2_c02064{left:388.880000pt;}
.xa_c02064{left:485.440400pt;}
.x4_c02064{left:637.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_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_65ec73de59a1ff6677bd93f1.woff2')format("woff");}.ff1_c02065{font-family:ff1_c02065;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02065;src:url('chunks/assets/font_3e1e4701354758eb95b652b6.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;}
.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);}
.v3_c02065{vertical-align:-22.680000px;}
.v2_c02065{vertical-align:-5.400000px;}
.v0_c02065{vertical-align:0.000000px;}
.v1_c02065{vertical-align:11.160000px;}
.ls1d_c02065{letter-spacing:-0.181116px;}
.ls1b_c02065{letter-spacing:-0.180360px;}
.ls18_c02065{letter-spacing:-0.032940px;}
.ls16_c02065{letter-spacing:-0.014400px;}
.ls17_c02065{letter-spacing:-0.013176px;}
.ls19_c02065{letter-spacing:-0.007200px;}
.ls1e_c02065{letter-spacing:-0.006588px;}
.ls15_c02065{letter-spacing:0.000000px;}
.lsd_c02065{letter-spacing:0.006588px;}
.ls6_c02065{letter-spacing:0.007200px;}
.ls0_c02065{letter-spacing:0.014400px;}
.ls4_c02065{letter-spacing:0.019764px;}
.ls9_c02065{letter-spacing:0.026352px;}
.ls8_c02065{letter-spacing:0.032940px;}
.ls2_c02065{letter-spacing:0.039528px;}
.lse_c02065{letter-spacing:0.046116px;}
.lsc_c02065{letter-spacing:0.052704px;}
.lsb_c02065{letter-spacing:0.059292px;}
.ls1c_c02065{letter-spacing:0.062244px;}
.ls14_c02065{letter-spacing:0.065880px;}
.ls1_c02065{letter-spacing:0.072468px;}
.ls12_c02065{letter-spacing:0.079056px;}
.ls11_c02065{letter-spacing:0.085644px;}
.ls10_c02065{letter-spacing:0.092232px;}
.ls3_c02065{letter-spacing:0.098820px;}
.lsf_c02065{letter-spacing:0.105408px;}
.ls13_c02065{letter-spacing:0.111996px;}
.ls5_c02065{letter-spacing:0.125172px;}
.lsa_c02065{letter-spacing:0.131760px;}
.ls1a_c02065{letter-spacing:0.144288px;}
.ls7_c02065{letter-spacing:0.181944px;}
.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;}
}
.ws8_c02065{word-spacing:-0.093600px;}
.ws0_c02065{word-spacing:-0.021600px;}
.ws3_c02065{word-spacing:-0.014400px;}
.ws1c_c02065{word-spacing:-0.013176px;}
.ws1_c02065{word-spacing:0.000000px;}
.ws33_c02065{word-spacing:0.006588px;}
.ws7_c02065{word-spacing:0.007200px;}
.ws20_c02065{word-spacing:0.013176px;}
.ws2_c02065{word-spacing:0.014400px;}
.ws4_c02065{word-spacing:0.019764px;}
.ws32_c02065{word-spacing:0.032940px;}
.ws31_c02065{word-spacing:0.039528px;}
.ws6_c02065{word-spacing:0.052704px;}
.ws23_c02065{word-spacing:0.059292px;}
.ws16_c02065{word-spacing:0.072468px;}
.ws12_c02065{word-spacing:0.092232px;}
.ws26_c02065{word-spacing:0.783972px;}
.ws2f_c02065{word-spacing:1.073844px;}
.ws30_c02065{word-spacing:1.133136px;}
.ws10_c02065{word-spacing:2.977776px;}
.wsa_c02065{word-spacing:6.528708px;}
.ws14_c02065{word-spacing:6.877872px;}
.ws2c_c02065{word-spacing:7.556436px;}
.ws2b_c02065{word-spacing:7.602552px;}
.ws24_c02065{word-spacing:8.320644px;}
.wsd_c02065{word-spacing:8.966268px;}
.wsc_c02065{word-spacing:9.058500px;}
.ws2d_c02065{word-spacing:10.138932px;}
.ws1e_c02065{word-spacing:10.804320px;}
.ws1d_c02065{word-spacing:10.830672px;}
.ws17_c02065{word-spacing:12.655548px;}
.wsb_c02065{word-spacing:13.004712px;}
.ws21_c02065{word-spacing:14.019264px;}
.ws22_c02065{word-spacing:14.032440px;}
.ws1b_c02065{word-spacing:14.842764px;}
.ws11_c02065{word-spacing:15.903432px;}
.ws18_c02065{word-spacing:16.601760px;}
.ws1a_c02065{word-spacing:16.904808px;}
.ws19_c02065{word-spacing:16.977276px;}
.ws2a_c02065{word-spacing:18.393696px;}
.ws15_c02065{word-spacing:20.244924px;}
.ws25_c02065{word-spacing:21.621816px;}
.ws1f_c02065{word-spacing:31.721220px;}
.wse_c02065{word-spacing:33.170580px;}
.ws13_c02065{word-spacing:34.949340px;}
.wsf_c02065{word-spacing:37.136556px;}
.ws27_c02065{word-spacing:40.002336px;}
.ws28_c02065{word-spacing:40.015512px;}
.ws29_c02065{word-spacing:40.371264px;}
.ws9_c02065{word-spacing:49.048272px;}
.ws2e_c02065{word-spacing:53.310096px;}
.ws5_c02065{word-spacing:276.445656px;}
._a_c02065{margin-left:-28.802736px;}
._13_c02065{margin-left:-1.443060px;}
._12_c02065{width:1.199016px;}
._f_c02065{width:39.510720px;}
._e_c02065{width:40.590720px;}
._10_c02065{width:55.260000px;}
._1_c02065{width:65.407068px;}
._d_c02065{width:91.570896px;}
._4_c02065{width:96.810048px;}
._6_c02065{width:101.605680px;}
._2_c02065{width:115.338168px;}
._5_c02065{width:116.438220px;}
._3_c02065{width:129.525840px;}
._7_c02065{width:183.653676px;}
._0_c02065{width:194.421600px;}
._9_c02065{width:264.653136px;}
._8_c02065{width:604.857456px;}
._c_c02065{width:651.139200px;}
._11_c02065{width:1451.116440px;}
._b_c02065{width:1836.905472px;}
.fc0_c02065{color:rgb(0,0,0);}
.fs4_c02065{font-size:42.120000px;}
.fs3_c02065{font-size:47.880000px;}
.fs2_c02065{font-size:60.120000px;}
.fs1_c02065{font-size:65.880000px;}
.fs0_c02065{font-size:72.000000px;}
.y0_c02065{bottom:0.000000px;}
.y3_c02065{bottom:57.360450px;}
.y2_c02065{bottom:78.060450px;}
.y3c_c02065{bottom:125.760450px;}
.y3b_c02065{bottom:140.430630px;}
.y3a_c02065{bottom:159.420540px;}
.y3d_c02065{bottom:178.320450px;}
.y39_c02065{bottom:184.080450px;}
.y37_c02065{bottom:198.122670px;}
.y36_c02065{bottom:217.112580px;}
.y35_c02065{bottom:236.011905px;}
.y34_c02065{bottom:255.001815px;}
.y33_c02065{bottom:273.991725px;}
.y32_c02065{bottom:292.981635px;}
.y31_c02065{bottom:311.971545px;}
.y30_c02065{bottom:330.870870px;}
.y2f_c02065{bottom:349.860780px;}
.y2e_c02065{bottom:368.850690px;}
.y2d_c02065{bottom:387.840600px;}
.y2c_c02065{bottom:405.930600px;}
.y2b_c02065{bottom:420.601395px;}
.y2a_c02065{bottom:439.591305px;}
.y29_c02065{bottom:458.581215px;}
.y28_c02065{bottom:477.480540px;}
.y27_c02065{bottom:496.470450px;}
.y26_c02065{bottom:514.650450px;}
.y25_c02065{bottom:529.230810px;}
.y24_c02065{bottom:548.220720px;}
.y23_c02065{bottom:567.210630px;}
.y22_c02065{bottom:586.200540px;}
.y38_c02065{bottom:605.102958px;}
.y21_c02065{bottom:610.860450px;}
.y1f_c02065{bottom:624.000450px;}
.y1e_c02065{bottom:638.670720px;}
.y1d_c02065{bottom:657.660630px;}
.y1c_c02065{bottom:676.650540px;}
.y20_c02065{bottom:695.550450px;}
.y1b_c02065{bottom:701.310450px;}
.y19_c02065{bottom:714.450450px;}
.y18_c02065{bottom:729.121665px;}
.y17_c02065{bottom:748.111575px;}
.y16_c02065{bottom:767.101485px;}
.y15_c02065{bottom:786.000810px;}
.y14_c02065{bottom:804.990720px;}
.y13_c02065{bottom:823.980630px;}
.y12_c02065{bottom:842.970540px;}
.y1a_c02065{bottom:861.870450px;}
.y11_c02065{bottom:867.630450px;}
.y10_c02065{bottom:881.220450px;}
.yf_c02065{bottom:899.850450px;}
.ye_c02065{bottom:931.620450px;}
.yd_c02065{bottom:953.130450px;}
.yc_c02065{bottom:974.280450px;}
.yb_c02065{bottom:994.260450px;}
.ya_c02065{bottom:1016.310450px;}
.y9_c02065{bottom:1035.930450px;}
.y8_c02065{bottom:1056.360450px;}
.y7_c02065{bottom:1075.620450px;}
.y6_c02065{bottom:1097.130450px;}
.y5_c02065{bottom:1117.830450px;}
.y4_c02065{bottom:1139.250450px;}
.y1_c02065{bottom:1193.160450px;}
.h6_c02065{height:36.957832px;}
.h7_c02065{height:42.011895px;}
.h5_c02065{height:53.686230px;}
.h4_c02065{height:57.805840px;}
.h3_c02065{height:58.513535px;}
.h2_c02065{height:63.175781px;}
.h1_c02065{height:63.949219px;}
.h0_c02065{height:1263.000000px;}
.w1_c02065{width:892.500000px;}
.w0_c02065{width:892.830000px;}
.x0_c02065{left:0.000000px;}
.x1_c02065{left:127.620000px;}
.x3_c02065{left:135.630000px;}
.x6_c02065{left:137.520000px;}
.x4_c02065{left:246.960000px;}
.x8_c02065{left:284.580000px;}
.x5_c02065{left:323.820000px;}
.x7_c02065{left:335.160000px;}
.x2_c02065{left:437.490000px;}
.x9_c02065{left:722.430000px;}
@media print{
.v3_c02065{vertical-align:-20.160000pt;}
.v2_c02065{vertical-align:-4.800000pt;}
.v0_c02065{vertical-align:0.000000pt;}
.v1_c02065{vertical-align:9.920000pt;}
.ls1d_c02065{letter-spacing:-0.160992pt;}
.ls1b_c02065{letter-spacing:-0.160320pt;}
.ls18_c02065{letter-spacing:-0.029280pt;}
.ls16_c02065{letter-spacing:-0.012800pt;}
.ls17_c02065{letter-spacing:-0.011712pt;}
.ls19_c02065{letter-spacing:-0.006400pt;}
.ls1e_c02065{letter-spacing:-0.005856pt;}
.ls15_c02065{letter-spacing:0.000000pt;}
.lsd_c02065{letter-spacing:0.005856pt;}
.ls6_c02065{letter-spacing:0.006400pt;}
.ls0_c02065{letter-spacing:0.012800pt;}
.ls4_c02065{letter-spacing:0.017568pt;}
.ls9_c02065{letter-spacing:0.023424pt;}
.ls8_c02065{letter-spacing:0.029280pt;}
.ls2_c02065{letter-spacing:0.035136pt;}
.lse_c02065{letter-spacing:0.040992pt;}
.lsc_c02065{letter-spacing:0.046848pt;}
.lsb_c02065{letter-spacing:0.052704pt;}
.ls1c_c02065{letter-spacing:0.055328pt;}
.ls14_c02065{letter-spacing:0.058560pt;}
.ls1_c02065{letter-spacing:0.064416pt;}
.ls12_c02065{letter-spacing:0.070272pt;}
.ls11_c02065{letter-spacing:0.076128pt;}
.ls10_c02065{letter-spacing:0.081984pt;}
.ls3_c02065{letter-spacing:0.087840pt;}
.lsf_c02065{letter-spacing:0.093696pt;}
.ls13_c02065{letter-spacing:0.099552pt;}
.ls5_c02065{letter-spacing:0.111264pt;}
.lsa_c02065{letter-spacing:0.117120pt;}
.ls1a_c02065{letter-spacing:0.128256pt;}
.ls7_c02065{letter-spacing:0.161728pt;}
.ws8_c02065{word-spacing:-0.083200pt;}
.ws0_c02065{word-spacing:-0.019200pt;}
.ws3_c02065{word-spacing:-0.012800pt;}
.ws1c_c02065{word-spacing:-0.011712pt;}
.ws1_c02065{word-spacing:0.000000pt;}
.ws33_c02065{word-spacing:0.005856pt;}
.ws7_c02065{word-spacing:0.006400pt;}
.ws20_c02065{word-spacing:0.011712pt;}
.ws2_c02065{word-spacing:0.012800pt;}
.ws4_c02065{word-spacing:0.017568pt;}
.ws32_c02065{word-spacing:0.029280pt;}
.ws31_c02065{word-spacing:0.035136pt;}
.ws6_c02065{word-spacing:0.046848pt;}
.ws23_c02065{word-spacing:0.052704pt;}
.ws16_c02065{word-spacing:0.064416pt;}
.ws12_c02065{word-spacing:0.081984pt;}
.ws26_c02065{word-spacing:0.696864pt;}
.ws2f_c02065{word-spacing:0.954528pt;}
.ws30_c02065{word-spacing:1.007232pt;}
.ws10_c02065{word-spacing:2.646912pt;}
.wsa_c02065{word-spacing:5.803296pt;}
.ws14_c02065{word-spacing:6.113664pt;}
.ws2c_c02065{word-spacing:6.716832pt;}
.ws2b_c02065{word-spacing:6.757824pt;}
.ws24_c02065{word-spacing:7.396128pt;}
.wsd_c02065{word-spacing:7.970016pt;}
.wsc_c02065{word-spacing:8.052000pt;}
.ws2d_c02065{word-spacing:9.012384pt;}
.ws1e_c02065{word-spacing:9.603840pt;}
.ws1d_c02065{word-spacing:9.627264pt;}
.ws17_c02065{word-spacing:11.249376pt;}
.wsb_c02065{word-spacing:11.559744pt;}
.ws21_c02065{word-spacing:12.461568pt;}
.ws22_c02065{word-spacing:12.473280pt;}
.ws1b_c02065{word-spacing:13.193568pt;}
.ws11_c02065{word-spacing:14.136384pt;}
.ws18_c02065{word-spacing:14.757120pt;}
.ws1a_c02065{word-spacing:15.026496pt;}
.ws19_c02065{word-spacing:15.090912pt;}
.ws2a_c02065{word-spacing:16.349952pt;}
.ws15_c02065{word-spacing:17.995488pt;}
.ws25_c02065{word-spacing:19.219392pt;}
.ws1f_c02065{word-spacing:28.196640pt;}
.wse_c02065{word-spacing:29.484960pt;}
.ws13_c02065{word-spacing:31.066080pt;}
.wsf_c02065{word-spacing:33.010272pt;}
.ws27_c02065{word-spacing:35.557632pt;}
.ws28_c02065{word-spacing:35.569344pt;}
.ws29_c02065{word-spacing:35.885568pt;}
.ws9_c02065{word-spacing:43.598464pt;}
.ws2e_c02065{word-spacing:47.386752pt;}
.ws5_c02065{word-spacing:245.729472pt;}
._a_c02065{margin-left:-25.602432pt;}
._13_c02065{margin-left:-1.282720pt;}
._12_c02065{width:1.065792pt;}
._f_c02065{width:35.120640pt;}
._e_c02065{width:36.080640pt;}
._10_c02065{width:49.120000pt;}
._1_c02065{width:58.139616pt;}
._d_c02065{width:81.396352pt;}
._4_c02065{width:86.053376pt;}
._6_c02065{width:90.316160pt;}
._2_c02065{width:102.522816pt;}
._5_c02065{width:103.500640pt;}
._3_c02065{width:115.134080pt;}
._7_c02065{width:163.247712pt;}
._0_c02065{width:172.819200pt;}
._9_c02065{width:235.247232pt;}
._8_c02065{width:537.651072pt;}
._c_c02065{width:578.790400pt;}
._11_c02065{width:1289.881280pt;}
._b_c02065{width:1632.804864pt;}
.fs4_c02065{font-size:37.440000pt;}
.fs3_c02065{font-size:42.560000pt;}
.fs2_c02065{font-size:53.440000pt;}
.fs1_c02065{font-size:58.560000pt;}
.fs0_c02065{font-size:64.000000pt;}
.y0_c02065{bottom:0.000000pt;}
.y3_c02065{bottom:50.987067pt;}
.y2_c02065{bottom:69.387067pt;}
.y3c_c02065{bottom:111.787067pt;}
.y3b_c02065{bottom:124.827227pt;}
.y3a_c02065{bottom:141.707147pt;}
.y3d_c02065{bottom:158.507067pt;}
.y39_c02065{bottom:163.627067pt;}
.y37_c02065{bottom:176.109040pt;}
.y36_c02065{bottom:192.988960pt;}
.y35_c02065{bottom:209.788360pt;}
.y34_c02065{bottom:226.668280pt;}
.y33_c02065{bottom:243.548200pt;}
.y32_c02065{bottom:260.428120pt;}
.y31_c02065{bottom:277.308040pt;}
.y30_c02065{bottom:294.107440pt;}
.y2f_c02065{bottom:310.987360pt;}
.y2e_c02065{bottom:327.867280pt;}
.y2d_c02065{bottom:344.747200pt;}
.y2c_c02065{bottom:360.827200pt;}
.y2b_c02065{bottom:373.867907pt;}
.y2a_c02065{bottom:390.747827pt;}
.y29_c02065{bottom:407.627747pt;}
.y28_c02065{bottom:424.427147pt;}
.y27_c02065{bottom:441.307067pt;}
.y26_c02065{bottom:457.467067pt;}
.y25_c02065{bottom:470.427387pt;}
.y24_c02065{bottom:487.307307pt;}
.y23_c02065{bottom:504.187227pt;}
.y22_c02065{bottom:521.067147pt;}
.y38_c02065{bottom:537.869296pt;}
.y21_c02065{bottom:542.987067pt;}
.y1f_c02065{bottom:554.667067pt;}
.y1e_c02065{bottom:567.707307pt;}
.y1d_c02065{bottom:584.587227pt;}
.y1c_c02065{bottom:601.467147pt;}
.y20_c02065{bottom:618.267067pt;}
.y1b_c02065{bottom:623.387067pt;}
.y19_c02065{bottom:635.067067pt;}
.y18_c02065{bottom:648.108147pt;}
.y17_c02065{bottom:664.988067pt;}
.y16_c02065{bottom:681.867987pt;}
.y15_c02065{bottom:698.667387pt;}
.y14_c02065{bottom:715.547307pt;}
.y13_c02065{bottom:732.427227pt;}
.y12_c02065{bottom:749.307147pt;}
.y1a_c02065{bottom:766.107067pt;}
.y11_c02065{bottom:771.227067pt;}
.y10_c02065{bottom:783.307067pt;}
.yf_c02065{bottom:799.867067pt;}
.ye_c02065{bottom:828.107067pt;}
.yd_c02065{bottom:847.227067pt;}
.yc_c02065{bottom:866.027067pt;}
.yb_c02065{bottom:883.787067pt;}
.ya_c02065{bottom:903.387067pt;}
.y9_c02065{bottom:920.827067pt;}
.y8_c02065{bottom:938.987067pt;}
.y7_c02065{bottom:956.107067pt;}
.y6_c02065{bottom:975.227067pt;}
.y5_c02065{bottom:993.627067pt;}
.y4_c02065{bottom:1012.667067pt;}
.y1_c02065{bottom:1060.587067pt;}
.h6_c02065{height:32.851406pt;}
.h7_c02065{height:37.343906pt;}
.h5_c02065{height:47.721094pt;}
.h4_c02065{height:51.382969pt;}
.h3_c02065{height:52.012031pt;}
.h2_c02065{height:56.156250pt;}
.h1_c02065{height:56.843750pt;}
.h0_c02065{height:1122.666667pt;}
.w1_c02065{width:793.333333pt;}
.w0_c02065{width:793.626667pt;}
.x0_c02065{left:0.000000pt;}
.x1_c02065{left:113.440000pt;}
.x3_c02065{left:120.560000pt;}
.x6_c02065{left:122.240000pt;}
.x4_c02065{left:219.520000pt;}
.x8_c02065{left:252.960000pt;}
.x5_c02065{left:287.840000pt;}
.x7_c02065{left:297.920000pt;}
.x2_c02065{left:388.880000pt;}
.x9_c02065{left:642.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_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_998cfd8ad411d79bf14a4794.woff2')format("woff");}.ff1_c02066{font-family:ff1_c02066;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02066;src:url('chunks/assets/font_7bb546a8c07de1e89bf4f126.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;}
.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);}
.v3_c02066{vertical-align:-17.280000px;}
.v2_c02066{vertical-align:-5.400000px;}
.v0_c02066{vertical-align:0.000000px;}
.v1_c02066{vertical-align:11.159400px;}
.lsd_c02066{letter-spacing:-0.181116px;}
.lsb_c02066{letter-spacing:-0.180360px;}
.ls9_c02066{letter-spacing:0.000000px;}
.ls6_c02066{letter-spacing:0.006588px;}
.ls8_c02066{letter-spacing:0.032940px;}
.ls4_c02066{letter-spacing:0.039528px;}
.ls7_c02066{letter-spacing:0.046116px;}
.ls5_c02066{letter-spacing:0.052704px;}
.lsc_c02066{letter-spacing:0.062244px;}
.ls1_c02066{letter-spacing:0.065880px;}
.ls3_c02066{letter-spacing:0.085644px;}
.ls2_c02066{letter-spacing:0.131760px;}
.lsa_c02066{letter-spacing:0.144288px;}
.ls0_c02066{letter-spacing:0.181944px;}
.sc__c02066{text-shadow:none;}
.sc0_c02066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02066{-webkit-text-stroke:0px transparent;}
.sc0_c02066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02066{word-spacing:-0.021600px;}
.ws1_c02066{word-spacing:0.000000px;}
.ws8_c02066{word-spacing:0.026352px;}
.ws4_c02066{word-spacing:0.046116px;}
.wsc_c02066{word-spacing:0.059292px;}
.wsa_c02066{word-spacing:3.682692px;}
.ws9_c02066{word-spacing:4.717008px;}
.ws5_c02066{word-spacing:8.643456px;}
.ws3_c02066{word-spacing:10.105992px;}
.ws6_c02066{word-spacing:20.211984px;}
.ws7_c02066{word-spacing:30.291624px;}
.ws2_c02066{word-spacing:49.048272px;}
.wsb_c02066{word-spacing:55.846476px;}
._7_c02066{margin-left:-1.077300px;}
._8_c02066{width:1.159488px;}
._3_c02066{width:39.510720px;}
._2_c02066{width:40.590720px;}
._4_c02066{width:55.260000px;}
._1_c02066{width:91.570896px;}
._6_c02066{width:97.294464px;}
._0_c02066{width:194.421600px;}
._5_c02066{width:1451.116440px;}
.fc0_c02066{color:rgb(0,0,0);}
.fs3_c02066{font-size:42.120000px;}
.fs2_c02066{font-size:47.880000px;}
.fs1_c02066{font-size:60.120000px;}
.fs4_c02066{font-size:65.880000px;}
.fs0_c02066{font-size:72.000000px;}
.y0_c02066{bottom:0.000000px;}
.y3_c02066{bottom:57.360450px;}
.y2_c02066{bottom:78.060450px;}
.y2c_c02066{bottom:138.270450px;}
.y2b_c02066{bottom:169.320450px;}
.y2a_c02066{bottom:200.370450px;}
.y29_c02066{bottom:231.420450px;}
.y28_c02066{bottom:262.470450px;}
.y27_c02066{bottom:293.520450px;}
.y26_c02066{bottom:324.570450px;}
.y25_c02066{bottom:355.620450px;}
.y24_c02066{bottom:386.670450px;}
.y23_c02066{bottom:417.720450px;}
.y22_c02066{bottom:448.770450px;}
.y21_c02066{bottom:479.820450px;}
.y20_c02066{bottom:510.870450px;}
.y1f_c02066{bottom:541.920450px;}
.y1e_c02066{bottom:572.970450px;}
.y1d_c02066{bottom:604.020450px;}
.y1c_c02066{bottom:635.070450px;}
.y1b_c02066{bottom:666.120450px;}
.y1a_c02066{bottom:697.170450px;}
.y19_c02066{bottom:728.220450px;}
.y18_c02066{bottom:759.270450px;}
.y17_c02066{bottom:790.320450px;}
.y16_c02066{bottom:821.370450px;}
.y15_c02066{bottom:852.420450px;}
.y14_c02066{bottom:883.470450px;}
.y12_c02066{bottom:903.810450px;}
.y11_c02066{bottom:918.480450px;}
.y10_c02066{bottom:937.470450px;}
.yf_c02066{bottom:956.460450px;}
.ye_c02066{bottom:975.360900px;}
.yd_c02066{bottom:994.350810px;}
.yc_c02066{bottom:1013.340720px;}
.yb_c02066{bottom:1032.330630px;}
.ya_c02066{bottom:1051.320540px;}
.y13_c02066{bottom:1070.220450px;}
.y9_c02066{bottom:1075.980450px;}
.y7_c02066{bottom:1089.120450px;}
.y6_c02066{bottom:1103.790540px;}
.y8_c02066{bottom:1122.690450px;}
.y5_c02066{bottom:1128.450450px;}
.y4_c02066{bottom:1142.040600px;}
.y1_c02066{bottom:1193.160450px;}
.h4_c02066{height:36.957832px;}
.h6_c02066{height:42.011895px;}
.h3_c02066{height:53.685630px;}
.h5_c02066{height:57.805840px;}
.h7_c02066{height:58.513535px;}
.h2_c02066{height:63.175781px;}
.h1_c02066{height:63.949219px;}
.h0_c02066{height:1263.000000px;}
.w1_c02066{width:892.500000px;}
.w0_c02066{width:892.830000px;}
.x0_c02066{left:0.000000px;}
.x1_c02066{left:127.620000px;}
.x3_c02066{left:135.630000px;}
.x4_c02066{left:284.580000px;}
.x2_c02066{left:437.490000px;}
.x5_c02066{left:722.430000px;}
@media print{
.v3_c02066{vertical-align:-15.360000pt;}
.v2_c02066{vertical-align:-4.800000pt;}
.v0_c02066{vertical-align:0.000000pt;}
.v1_c02066{vertical-align:9.919467pt;}
.lsd_c02066{letter-spacing:-0.160992pt;}
.lsb_c02066{letter-spacing:-0.160320pt;}
.ls9_c02066{letter-spacing:0.000000pt;}
.ls6_c02066{letter-spacing:0.005856pt;}
.ls8_c02066{letter-spacing:0.029280pt;}
.ls4_c02066{letter-spacing:0.035136pt;}
.ls7_c02066{letter-spacing:0.040992pt;}
.ls5_c02066{letter-spacing:0.046848pt;}
.lsc_c02066{letter-spacing:0.055328pt;}
.ls1_c02066{letter-spacing:0.058560pt;}
.ls3_c02066{letter-spacing:0.076128pt;}
.ls2_c02066{letter-spacing:0.117120pt;}
.lsa_c02066{letter-spacing:0.128256pt;}
.ls0_c02066{letter-spacing:0.161728pt;}
.ws0_c02066{word-spacing:-0.019200pt;}
.ws1_c02066{word-spacing:0.000000pt;}
.ws8_c02066{word-spacing:0.023424pt;}
.ws4_c02066{word-spacing:0.040992pt;}
.wsc_c02066{word-spacing:0.052704pt;}
.wsa_c02066{word-spacing:3.273504pt;}
.ws9_c02066{word-spacing:4.192896pt;}
.ws5_c02066{word-spacing:7.683072pt;}
.ws3_c02066{word-spacing:8.983104pt;}
.ws6_c02066{word-spacing:17.966208pt;}
.ws7_c02066{word-spacing:26.925888pt;}
.ws2_c02066{word-spacing:43.598464pt;}
.wsb_c02066{word-spacing:49.641312pt;}
._7_c02066{margin-left:-0.957600pt;}
._8_c02066{width:1.030656pt;}
._3_c02066{width:35.120640pt;}
._2_c02066{width:36.080640pt;}
._4_c02066{width:49.120000pt;}
._1_c02066{width:81.396352pt;}
._6_c02066{width:86.483968pt;}
._0_c02066{width:172.819200pt;}
._5_c02066{width:1289.881280pt;}
.fs3_c02066{font-size:37.440000pt;}
.fs2_c02066{font-size:42.560000pt;}
.fs1_c02066{font-size:53.440000pt;}
.fs4_c02066{font-size:58.560000pt;}
.fs0_c02066{font-size:64.000000pt;}
.y0_c02066{bottom:0.000000pt;}
.y3_c02066{bottom:50.987067pt;}
.y2_c02066{bottom:69.387067pt;}
.y2c_c02066{bottom:122.907067pt;}
.y2b_c02066{bottom:150.507067pt;}
.y2a_c02066{bottom:178.107067pt;}
.y29_c02066{bottom:205.707067pt;}
.y28_c02066{bottom:233.307067pt;}
.y27_c02066{bottom:260.907067pt;}
.y26_c02066{bottom:288.507067pt;}
.y25_c02066{bottom:316.107067pt;}
.y24_c02066{bottom:343.707067pt;}
.y23_c02066{bottom:371.307067pt;}
.y22_c02066{bottom:398.907067pt;}
.y21_c02066{bottom:426.507067pt;}
.y20_c02066{bottom:454.107067pt;}
.y1f_c02066{bottom:481.707067pt;}
.y1e_c02066{bottom:509.307067pt;}
.y1d_c02066{bottom:536.907067pt;}
.y1c_c02066{bottom:564.507067pt;}
.y1b_c02066{bottom:592.107067pt;}
.y1a_c02066{bottom:619.707067pt;}
.y19_c02066{bottom:647.307067pt;}
.y18_c02066{bottom:674.907067pt;}
.y17_c02066{bottom:702.507067pt;}
.y16_c02066{bottom:730.107067pt;}
.y15_c02066{bottom:757.707067pt;}
.y14_c02066{bottom:785.307067pt;}
.y12_c02066{bottom:803.387067pt;}
.y11_c02066{bottom:816.427067pt;}
.y10_c02066{bottom:833.307067pt;}
.yf_c02066{bottom:850.187067pt;}
.ye_c02066{bottom:866.987467pt;}
.yd_c02066{bottom:883.867387pt;}
.yc_c02066{bottom:900.747307pt;}
.yb_c02066{bottom:917.627227pt;}
.ya_c02066{bottom:934.507147pt;}
.y13_c02066{bottom:951.307067pt;}
.y9_c02066{bottom:956.427067pt;}
.y7_c02066{bottom:968.107067pt;}
.y6_c02066{bottom:981.147147pt;}
.y8_c02066{bottom:997.947067pt;}
.y5_c02066{bottom:1003.067067pt;}
.y4_c02066{bottom:1015.147200pt;}
.y1_c02066{bottom:1060.587067pt;}
.h4_c02066{height:32.851406pt;}
.h6_c02066{height:37.343906pt;}
.h3_c02066{height:47.720560pt;}
.h5_c02066{height:51.382969pt;}
.h7_c02066{height:52.012031pt;}
.h2_c02066{height:56.156250pt;}
.h1_c02066{height:56.843750pt;}
.h0_c02066{height:1122.666667pt;}
.w1_c02066{width:793.333333pt;}
.w0_c02066{width:793.626667pt;}
.x0_c02066{left:0.000000pt;}
.x1_c02066{left:113.440000pt;}
.x3_c02066{left:120.560000pt;}
.x4_c02066{left:252.960000pt;}
.x2_c02066{left:388.880000pt;}
.x5_c02066{left:642.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_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_31ca6c9aa5905c7627297cdb.woff2')format("woff");}.ff1_c02067{font-family:ff1_c02067;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02067;src:url('chunks/assets/font_1768118388cf0019b1b8ebda.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_1c0b39459b51bc1c0cb50f67.woff2')format("woff");}.ff3_c02067{font-family:ff3_c02067;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_c02067;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff4_c02067{font-family:ff4_c02067;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:ff5_c02067;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff5_c02067{font-family:ff5_c02067;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;}
.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);}
.v1_c02067{vertical-align:-11.160000px;}
.v0_c02067{vertical-align:0.000000px;}
.v2_c02067{vertical-align:1.080000px;}
.v3_c02067{vertical-align:11.159400px;}
.ls20_c02067{letter-spacing:-0.118800px;}
.ls1e_c02067{letter-spacing:-0.021600px;}
.ls1c_c02067{letter-spacing:-0.014400px;}
.ls1d_c02067{letter-spacing:-0.007200px;}
.ls1b_c02067{letter-spacing:0.000000px;}
.ls8_c02067{letter-spacing:0.007200px;}
.ls14_c02067{letter-spacing:0.013176px;}
.ls0_c02067{letter-spacing:0.014400px;}
.ls16_c02067{letter-spacing:0.019764px;}
.ls5_c02067{letter-spacing:0.021600px;}
.lse_c02067{letter-spacing:0.026352px;}
.ls6_c02067{letter-spacing:0.028800px;}
.ls19_c02067{letter-spacing:0.032940px;}
.ls4_c02067{letter-spacing:0.036000px;}
.ls21_c02067{letter-spacing:0.037800px;}
.ls11_c02067{letter-spacing:0.039528px;}
.ls3_c02067{letter-spacing:0.043200px;}
.ls1a_c02067{letter-spacing:0.046116px;}
.lsa_c02067{letter-spacing:0.050400px;}
.ls1_c02067{letter-spacing:0.057600px;}
.ls15_c02067{letter-spacing:0.059292px;}
.ls18_c02067{letter-spacing:0.065880px;}
.lsc_c02067{letter-spacing:0.072000px;}
.ls2_c02067{letter-spacing:0.086400px;}
.ls17_c02067{letter-spacing:0.098820px;}
.lsd_c02067{letter-spacing:0.100800px;}
.ls1f_c02067{letter-spacing:0.115200px;}
.lsf_c02067{letter-spacing:0.129600px;}
.ls7_c02067{letter-spacing:0.144000px;}
.ls12_c02067{letter-spacing:0.145800px;}
.ls10_c02067{letter-spacing:0.151200px;}
.ls22_c02067{letter-spacing:0.178200px;}
.lsb_c02067{letter-spacing:41.760000px;}
.ls13_c02067{letter-spacing:75.420000px;}
.ls9_c02067{letter-spacing:828.900000px;}
.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;}
}
.ws2_c02067{word-spacing:-54.000000px;}
.ws1_c02067{word-spacing:-18.115200px;}
.ws0_c02067{word-spacing:-17.978400px;}
.ws15_c02067{word-spacing:-0.432000px;}
.ws14_c02067{word-spacing:-0.187200px;}
.ws20_c02067{word-spacing:-0.100800px;}
.ws1f_c02067{word-spacing:-0.072000px;}
.ws3_c02067{word-spacing:-0.021600px;}
.ws5_c02067{word-spacing:-0.014400px;}
.ws16_c02067{word-spacing:-0.007200px;}
.ws28_c02067{word-spacing:-0.006588px;}
.ws4_c02067{word-spacing:0.000000px;}
.ws17_c02067{word-spacing:0.007200px;}
.ws29_c02067{word-spacing:0.026352px;}
.ws25_c02067{word-spacing:0.032940px;}
.ws2b_c02067{word-spacing:0.046116px;}
.ws22_c02067{word-spacing:0.052704px;}
.ws2a_c02067{word-spacing:0.059292px;}
.ws1e_c02067{word-spacing:0.064800px;}
.ws21_c02067{word-spacing:0.065880px;}
.ws26_c02067{word-spacing:0.072468px;}
.ws24_c02067{word-spacing:0.079056px;}
.ws23_c02067{word-spacing:0.140400px;}
.ws9_c02067{word-spacing:0.273600px;}
.ws8_c02067{word-spacing:0.302400px;}
.ws27_c02067{word-spacing:0.408456px;}
.ws6_c02067{word-spacing:3.175200px;}
.ws7_c02067{word-spacing:3.254400px;}
.ws10_c02067{word-spacing:3.916800px;}
.wsf_c02067{word-spacing:4.176000px;}
.ws13_c02067{word-spacing:6.127200px;}
.ws12_c02067{word-spacing:7.531200px;}
.ws11_c02067{word-spacing:7.545600px;}
.ws1a_c02067{word-spacing:8.488800px;}
.ws18_c02067{word-spacing:8.503200px;}
.wsc_c02067{word-spacing:8.625600px;}
.ws19_c02067{word-spacing:8.640000px;}
.wsb_c02067{word-spacing:8.647200px;}
.wsa_c02067{word-spacing:8.654400px;}
.wsd_c02067{word-spacing:9.259200px;}
.wse_c02067{word-spacing:9.324000px;}
.ws1d_c02067{word-spacing:41.659200px;}
.ws1c_c02067{word-spacing:41.709600px;}
.ws1b_c02067{word-spacing:41.724000px;}
._1_c02067{margin-left:-2.332800px;}
._2_c02067{margin-left:-1.296000px;}
._4_c02067{width:1.339200px;}
._3_c02067{width:8.640000px;}
._5_c02067{width:57.488400px;}
._8_c02067{width:59.940000px;}
._10_c02067{width:99.968400px;}
._12_c02067{width:102.420000px;}
._0_c02067{width:194.421600px;}
._e_c02067{width:264.932028px;}
._c_c02067{width:398.399508px;}
._7_c02067{width:403.718400px;}
._11_c02067{width:433.776168px;}
._f_c02067{width:449.950608px;}
._b_c02067{width:472.112640px;}
._a_c02067{width:549.473688px;}
._6_c02067{width:656.616168px;}
._9_c02067{width:659.910168px;}
._d_c02067{width:667.618128px;}
.fc0_c02067{color:rgb(0,0,0);}
.fs1_c02067{font-size:54.000000px;}
.fs2_c02067{font-size:65.880000px;}
.fs0_c02067{font-size:72.000000px;}
.y0_c02067{bottom:0.000000px;}
.y3_c02067{bottom:57.360450px;}
.y2_c02067{bottom:78.060450px;}
.y32_c02067{bottom:124.320450px;}
.y31_c02067{bottom:145.020450px;}
.y30_c02067{bottom:165.720450px;}
.y2f_c02067{bottom:186.420450px;}
.y2e_c02067{bottom:207.120450px;}
.y2d_c02067{bottom:227.820450px;}
.y2c_c02067{bottom:249.060450px;}
.y2b_c02067{bottom:269.940450px;}
.y2a_c02067{bottom:290.280450px;}
.y29_c02067{bottom:305.760450px;}
.y28_c02067{bottom:325.470450px;}
.y27_c02067{bottom:341.760450px;}
.y26_c02067{bottom:357.960600px;}
.y25_c02067{bottom:376.320450px;}
.y24_c02067{bottom:396.030450px;}
.y23_c02067{bottom:415.740450px;}
.y22_c02067{bottom:435.450600px;}
.y21_c02067{bottom:455.160450px;}
.y20_c02067{bottom:474.870600px;}
.y1f_c02067{bottom:494.580450px;}
.y1e_c02067{bottom:514.380450px;}
.y1d_c02067{bottom:530.580450px;}
.y1c_c02067{bottom:546.150450px;}
.y1b_c02067{bottom:561.630450px;}
.y1a_c02067{bottom:579.090450px;}
.y19_c02067{bottom:599.790450px;}
.y18_c02067{bottom:620.490450px;}
.y17_c02067{bottom:641.190450px;}
.y16_c02067{bottom:662.430450px;}
.y15_c02067{bottom:683.850450px;}
.y14_c02067{bottom:704.640900px;}
.y13_c02067{bottom:720.210450px;}
.y12_c02067{bottom:736.410450px;}
.y11_c02067{bottom:757.290450px;}
.y10_c02067{bottom:777.990450px;}
.yf_c02067{bottom:798.600450px;}
.ye_c02067{bottom:829.650450px;}
.yd_c02067{bottom:860.700450px;}
.yc_c02067{bottom:891.750450px;}
.yb_c02067{bottom:922.800450px;}
.ya_c02067{bottom:953.850450px;}
.y9_c02067{bottom:984.900450px;}
.y8_c02067{bottom:1015.950450px;}
.y7_c02067{bottom:1047.000450px;}
.y6_c02067{bottom:1077.870450px;}
.y5_c02067{bottom:1108.920450px;}
.y4_c02067{bottom:1139.970450px;}
.y1_c02067{bottom:1193.160450px;}
.h5_c02067{height:47.381836px;}
.h4_c02067{height:47.961914px;}
.h7_c02067{height:48.461236px;}
.h6_c02067{height:48.461836px;}
.h8_c02067{height:48.462436px;}
.h9_c02067{height:58.513535px;}
.h2_c02067{height:63.175781px;}
.h1_c02067{height:63.949219px;}
.h3_c02067{height:70.628906px;}
.h0_c02067{height:1263.000000px;}
.w1_c02067{width:892.500000px;}
.w0_c02067{width:892.830000px;}
.x0_c02067{left:0.000000px;}
.x1_c02067{left:127.620000px;}
.x4_c02067{left:135.630000px;}
.x5_c02067{left:138.150000px;}
.x6_c02067{left:146.340000px;}
.x3_c02067{left:148.950000px;}
.x9_c02067{left:162.900000px;}
.xa_c02067{left:205.380000px;}
.x2_c02067{left:437.490000px;}
.xb_c02067{left:545.580000px;}
.x8_c02067{left:710.010000px;}
.x7_c02067{left:724.950000px;}
@media print{
.v1_c02067{vertical-align:-9.920000pt;}
.v0_c02067{vertical-align:0.000000pt;}
.v2_c02067{vertical-align:0.960000pt;}
.v3_c02067{vertical-align:9.919467pt;}
.ls20_c02067{letter-spacing:-0.105600pt;}
.ls1e_c02067{letter-spacing:-0.019200pt;}
.ls1c_c02067{letter-spacing:-0.012800pt;}
.ls1d_c02067{letter-spacing:-0.006400pt;}
.ls1b_c02067{letter-spacing:0.000000pt;}
.ls8_c02067{letter-spacing:0.006400pt;}
.ls14_c02067{letter-spacing:0.011712pt;}
.ls0_c02067{letter-spacing:0.012800pt;}
.ls16_c02067{letter-spacing:0.017568pt;}
.ls5_c02067{letter-spacing:0.019200pt;}
.lse_c02067{letter-spacing:0.023424pt;}
.ls6_c02067{letter-spacing:0.025600pt;}
.ls19_c02067{letter-spacing:0.029280pt;}
.ls4_c02067{letter-spacing:0.032000pt;}
.ls21_c02067{letter-spacing:0.033600pt;}
.ls11_c02067{letter-spacing:0.035136pt;}
.ls3_c02067{letter-spacing:0.038400pt;}
.ls1a_c02067{letter-spacing:0.040992pt;}
.lsa_c02067{letter-spacing:0.044800pt;}
.ls1_c02067{letter-spacing:0.051200pt;}
.ls15_c02067{letter-spacing:0.052704pt;}
.ls18_c02067{letter-spacing:0.058560pt;}
.lsc_c02067{letter-spacing:0.064000pt;}
.ls2_c02067{letter-spacing:0.076800pt;}
.ls17_c02067{letter-spacing:0.087840pt;}
.lsd_c02067{letter-spacing:0.089600pt;}
.ls1f_c02067{letter-spacing:0.102400pt;}
.lsf_c02067{letter-spacing:0.115200pt;}
.ls7_c02067{letter-spacing:0.128000pt;}
.ls12_c02067{letter-spacing:0.129600pt;}
.ls10_c02067{letter-spacing:0.134400pt;}
.ls22_c02067{letter-spacing:0.158400pt;}
.lsb_c02067{letter-spacing:37.120000pt;}
.ls13_c02067{letter-spacing:67.040000pt;}
.ls9_c02067{letter-spacing:736.800000pt;}
.ws2_c02067{word-spacing:-48.000000pt;}
.ws1_c02067{word-spacing:-16.102400pt;}
.ws0_c02067{word-spacing:-15.980800pt;}
.ws15_c02067{word-spacing:-0.384000pt;}
.ws14_c02067{word-spacing:-0.166400pt;}
.ws20_c02067{word-spacing:-0.089600pt;}
.ws1f_c02067{word-spacing:-0.064000pt;}
.ws3_c02067{word-spacing:-0.019200pt;}
.ws5_c02067{word-spacing:-0.012800pt;}
.ws16_c02067{word-spacing:-0.006400pt;}
.ws28_c02067{word-spacing:-0.005856pt;}
.ws4_c02067{word-spacing:0.000000pt;}
.ws17_c02067{word-spacing:0.006400pt;}
.ws29_c02067{word-spacing:0.023424pt;}
.ws25_c02067{word-spacing:0.029280pt;}
.ws2b_c02067{word-spacing:0.040992pt;}
.ws22_c02067{word-spacing:0.046848pt;}
.ws2a_c02067{word-spacing:0.052704pt;}
.ws1e_c02067{word-spacing:0.057600pt;}
.ws21_c02067{word-spacing:0.058560pt;}
.ws26_c02067{word-spacing:0.064416pt;}
.ws24_c02067{word-spacing:0.070272pt;}
.ws23_c02067{word-spacing:0.124800pt;}
.ws9_c02067{word-spacing:0.243200pt;}
.ws8_c02067{word-spacing:0.268800pt;}
.ws27_c02067{word-spacing:0.363072pt;}
.ws6_c02067{word-spacing:2.822400pt;}
.ws7_c02067{word-spacing:2.892800pt;}
.ws10_c02067{word-spacing:3.481600pt;}
.wsf_c02067{word-spacing:3.712000pt;}
.ws13_c02067{word-spacing:5.446400pt;}
.ws12_c02067{word-spacing:6.694400pt;}
.ws11_c02067{word-spacing:6.707200pt;}
.ws1a_c02067{word-spacing:7.545600pt;}
.ws18_c02067{word-spacing:7.558400pt;}
.wsc_c02067{word-spacing:7.667200pt;}
.ws19_c02067{word-spacing:7.680000pt;}
.wsb_c02067{word-spacing:7.686400pt;}
.wsa_c02067{word-spacing:7.692800pt;}
.wsd_c02067{word-spacing:8.230400pt;}
.wse_c02067{word-spacing:8.288000pt;}
.ws1d_c02067{word-spacing:37.030400pt;}
.ws1c_c02067{word-spacing:37.075200pt;}
.ws1b_c02067{word-spacing:37.088000pt;}
._1_c02067{margin-left:-2.073600pt;}
._2_c02067{margin-left:-1.152000pt;}
._4_c02067{width:1.190400pt;}
._3_c02067{width:7.680000pt;}
._5_c02067{width:51.100800pt;}
._8_c02067{width:53.280000pt;}
._10_c02067{width:88.860800pt;}
._12_c02067{width:91.040000pt;}
._0_c02067{width:172.819200pt;}
._e_c02067{width:235.495136pt;}
._c_c02067{width:354.132896pt;}
._7_c02067{width:358.860800pt;}
._11_c02067{width:385.578816pt;}
._f_c02067{width:399.956096pt;}
._b_c02067{width:419.655680pt;}
._a_c02067{width:488.421056pt;}
._6_c02067{width:583.658816pt;}
._9_c02067{width:586.586816pt;}
._d_c02067{width:593.438336pt;}
.fs1_c02067{font-size:48.000000pt;}
.fs2_c02067{font-size:58.560000pt;}
.fs0_c02067{font-size:64.000000pt;}
.y0_c02067{bottom:0.000000pt;}
.y3_c02067{bottom:50.987067pt;}
.y2_c02067{bottom:69.387067pt;}
.y32_c02067{bottom:110.507067pt;}
.y31_c02067{bottom:128.907067pt;}
.y30_c02067{bottom:147.307067pt;}
.y2f_c02067{bottom:165.707067pt;}
.y2e_c02067{bottom:184.107067pt;}
.y2d_c02067{bottom:202.507067pt;}
.y2c_c02067{bottom:221.387067pt;}
.y2b_c02067{bottom:239.947067pt;}
.y2a_c02067{bottom:258.027067pt;}
.y29_c02067{bottom:271.787067pt;}
.y28_c02067{bottom:289.307067pt;}
.y27_c02067{bottom:303.787067pt;}
.y26_c02067{bottom:318.187200pt;}
.y25_c02067{bottom:334.507067pt;}
.y24_c02067{bottom:352.027067pt;}
.y23_c02067{bottom:369.547067pt;}
.y22_c02067{bottom:387.067200pt;}
.y21_c02067{bottom:404.587067pt;}
.y20_c02067{bottom:422.107200pt;}
.y1f_c02067{bottom:439.627067pt;}
.y1e_c02067{bottom:457.227067pt;}
.y1d_c02067{bottom:471.627067pt;}
.y1c_c02067{bottom:485.467067pt;}
.y1b_c02067{bottom:499.227067pt;}
.y1a_c02067{bottom:514.747067pt;}
.y19_c02067{bottom:533.147067pt;}
.y18_c02067{bottom:551.547067pt;}
.y17_c02067{bottom:569.947067pt;}
.y16_c02067{bottom:588.827067pt;}
.y15_c02067{bottom:607.867067pt;}
.y14_c02067{bottom:626.347467pt;}
.y13_c02067{bottom:640.187067pt;}
.y12_c02067{bottom:654.587067pt;}
.y11_c02067{bottom:673.147067pt;}
.y10_c02067{bottom:691.547067pt;}
.yf_c02067{bottom:709.867067pt;}
.ye_c02067{bottom:737.467067pt;}
.yd_c02067{bottom:765.067067pt;}
.yc_c02067{bottom:792.667067pt;}
.yb_c02067{bottom:820.267067pt;}
.ya_c02067{bottom:847.867067pt;}
.y9_c02067{bottom:875.467067pt;}
.y8_c02067{bottom:903.067067pt;}
.y7_c02067{bottom:930.667067pt;}
.y6_c02067{bottom:958.107067pt;}
.y5_c02067{bottom:985.707067pt;}
.y4_c02067{bottom:1013.307067pt;}
.y1_c02067{bottom:1060.587067pt;}
.h5_c02067{height:42.117188pt;}
.h4_c02067{height:42.632812pt;}
.h7_c02067{height:43.076654pt;}
.h6_c02067{height:43.077188pt;}
.h8_c02067{height:43.077721pt;}
.h9_c02067{height:52.012031pt;}
.h2_c02067{height:56.156250pt;}
.h1_c02067{height:56.843750pt;}
.h3_c02067{height:62.781250pt;}
.h0_c02067{height:1122.666667pt;}
.w1_c02067{width:793.333333pt;}
.w0_c02067{width:793.626667pt;}
.x0_c02067{left:0.000000pt;}
.x1_c02067{left:113.440000pt;}
.x4_c02067{left:120.560000pt;}
.x5_c02067{left:122.800000pt;}
.x6_c02067{left:130.080000pt;}
.x3_c02067{left:132.400000pt;}
.x9_c02067{left:144.800000pt;}
.xa_c02067{left:182.560000pt;}
.x2_c02067{left:388.880000pt;}
.xb_c02067{left:484.960000pt;}
.x8_c02067{left:631.120000pt;}
.x7_c02067{left:644.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_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_44cf27fbbe1c688bf5eac1d0.woff2')format("woff");}.ff1_c02068{font-family:ff1_c02068;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02068;src:url('chunks/assets/font_288f585c58196d33696b873d.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_b8a0d26321a23fb29c53e00c.woff2')format("woff");}.ff3_c02068{font-family:ff3_c02068;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_c02068;src:url('chunks/assets/font_8bb4779b8291803887e777e5.woff2')format("woff");}.ff4_c02068{font-family:ff4_c02068;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_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);}
.v1_c02068{vertical-align:-9.000000px;}
.v0_c02068{vertical-align:0.000000px;}
.lsf_c02068{letter-spacing:-0.028800px;}
.lsc_c02068{letter-spacing:-0.021600px;}
.lse_c02068{letter-spacing:-0.014400px;}
.lsd_c02068{letter-spacing:-0.007200px;}
.lsb_c02068{letter-spacing:0.000000px;}
.ls0_c02068{letter-spacing:0.007200px;}
.ls4_c02068{letter-spacing:0.014400px;}
.ls5_c02068{letter-spacing:0.021600px;}
.ls6_c02068{letter-spacing:0.028800px;}
.ls8_c02068{letter-spacing:0.043200px;}
.ls9_c02068{letter-spacing:0.050400px;}
.lsa_c02068{letter-spacing:0.057600px;}
.ls7_c02068{letter-spacing:0.064800px;}
.ls1_c02068{letter-spacing:0.093600px;}
.ls2_c02068{letter-spacing:0.144000px;}
.ls3_c02068{letter-spacing:0.180000px;}
.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;}
}
.ws1d_c02068{word-spacing:-0.410400px;}
.ws1e_c02068{word-spacing:-0.302400px;}
.ws14_c02068{word-spacing:-0.244800px;}
.ws1f_c02068{word-spacing:-0.237600px;}
.wsf_c02068{word-spacing:-0.208800px;}
.ws19_c02068{word-spacing:-0.187200px;}
.ws18_c02068{word-spacing:-0.136800px;}
.ws7_c02068{word-spacing:-0.129600px;}
.ws13_c02068{word-spacing:-0.108000px;}
.wsa_c02068{word-spacing:-0.100800px;}
.ws12_c02068{word-spacing:-0.079200px;}
.wsb_c02068{word-spacing:-0.072000px;}
.ws1a_c02068{word-spacing:-0.043200px;}
.ws1c_c02068{word-spacing:-0.036000px;}
.ws1b_c02068{word-spacing:-0.028800px;}
.ws0_c02068{word-spacing:-0.021600px;}
.wsc_c02068{word-spacing:-0.014400px;}
.ws2_c02068{word-spacing:-0.007200px;}
.ws1_c02068{word-spacing:0.000000px;}
.ws8_c02068{word-spacing:0.007200px;}
.ws9_c02068{word-spacing:0.014400px;}
.ws11_c02068{word-spacing:5.234400px;}
.ws10_c02068{word-spacing:5.277600px;}
.ws4_c02068{word-spacing:11.073600px;}
.ws3_c02068{word-spacing:11.145600px;}
.wsd_c02068{word-spacing:12.880800px;}
.wse_c02068{word-spacing:12.938400px;}
.ws5_c02068{word-spacing:15.112800px;}
.ws6_c02068{word-spacing:15.141600px;}
.ws17_c02068{word-spacing:16.761600px;}
.ws16_c02068{word-spacing:16.819200px;}
.ws15_c02068{word-spacing:16.948800px;}
._5_c02068{margin-left:-1.368000px;}
._6_c02068{width:1.101600px;}
._2_c02068{width:112.096800px;}
._3_c02068{width:116.056800px;}
._1_c02068{width:165.024000px;}
._0_c02068{width:194.421600px;}
._4_c02068{width:278.006400px;}
.fc0_c02068{color:rgb(0,0,0);}
.fs1_c02068{font-size:47.880000px;}
.fs0_c02068{font-size:72.000000px;}
.y0_c02068{bottom:0.000000px;}
.y3_c02068{bottom:57.360450px;}
.y2_c02068{bottom:78.060450px;}
.y31_c02068{bottom:114.510450px;}
.y30_c02068{bottom:145.560450px;}
.y2f_c02068{bottom:176.610450px;}
.y2e_c02068{bottom:207.660450px;}
.y2d_c02068{bottom:238.710450px;}
.y2c_c02068{bottom:269.760450px;}
.y2b_c02068{bottom:300.810450px;}
.y2a_c02068{bottom:331.860450px;}
.y29_c02068{bottom:362.910450px;}
.y28_c02068{bottom:384.510450px;}
.y27_c02068{bottom:405.210600px;}
.y26_c02068{bottom:426.450600px;}
.y25_c02068{bottom:448.140450px;}
.y24_c02068{bottom:468.840600px;}
.y23_c02068{bottom:490.080450px;}
.y22_c02068{bottom:511.680600px;}
.y21_c02068{bottom:532.380450px;}
.y20_c02068{bottom:553.080450px;}
.y1f_c02068{bottom:573.600450px;}
.y1e_c02068{bottom:595.110450px;}
.y1d_c02068{bottom:616.710450px;}
.y1c_c02068{bottom:637.410450px;}
.y1b_c02068{bottom:658.110450px;}
.y1a_c02068{bottom:678.810450px;}
.y19_c02068{bottom:699.510450px;}
.y18_c02068{bottom:720.210450px;}
.y17_c02068{bottom:740.910450px;}
.y16_c02068{bottom:762.150450px;}
.y15_c02068{bottom:783.750450px;}
.y14_c02068{bottom:804.450450px;}
.y13_c02068{bottom:825.780450px;}
.y12_c02068{bottom:847.200450px;}
.y11_c02068{bottom:867.900450px;}
.y10_c02068{bottom:888.600450px;}
.yf_c02068{bottom:909.300450px;}
.ye_c02068{bottom:930.000450px;}
.yd_c02068{bottom:950.700450px;}
.yc_c02068{bottom:971.400450px;}
.yb_c02068{bottom:992.100450px;}
.ya_c02068{bottom:1013.520450px;}
.y9_c02068{bottom:1035.030450px;}
.y8_c02068{bottom:1056.540450px;}
.y7_c02068{bottom:1077.240450px;}
.y6_c02068{bottom:1097.850450px;}
.y5_c02068{bottom:1119.450450px;}
.y4_c02068{bottom:1139.970450px;}
.y1_c02068{bottom:1193.160450px;}
.h2_c02068{height:63.175781px;}
.h1_c02068{height:63.949219px;}
.h4_c02068{height:70.628906px;}
.h3_c02068{height:70.988906px;}
.h0_c02068{height:1263.000000px;}
.w1_c02068{width:892.500000px;}
.w0_c02068{width:892.830000px;}
.x0_c02068{left:0.000000px;}
.x1_c02068{left:127.620000px;}
.x3_c02068{left:135.630000px;}
.x4_c02068{left:252.630000px;}
.x2_c02068{left:437.490000px;}
@media print{
.v1_c02068{vertical-align:-8.000000pt;}
.v0_c02068{vertical-align:0.000000pt;}
.lsf_c02068{letter-spacing:-0.025600pt;}
.lsc_c02068{letter-spacing:-0.019200pt;}
.lse_c02068{letter-spacing:-0.012800pt;}
.lsd_c02068{letter-spacing:-0.006400pt;}
.lsb_c02068{letter-spacing:0.000000pt;}
.ls0_c02068{letter-spacing:0.006400pt;}
.ls4_c02068{letter-spacing:0.012800pt;}
.ls5_c02068{letter-spacing:0.019200pt;}
.ls6_c02068{letter-spacing:0.025600pt;}
.ls8_c02068{letter-spacing:0.038400pt;}
.ls9_c02068{letter-spacing:0.044800pt;}
.lsa_c02068{letter-spacing:0.051200pt;}
.ls7_c02068{letter-spacing:0.057600pt;}
.ls1_c02068{letter-spacing:0.083200pt;}
.ls2_c02068{letter-spacing:0.128000pt;}
.ls3_c02068{letter-spacing:0.160000pt;}
.ws1d_c02068{word-spacing:-0.364800pt;}
.ws1e_c02068{word-spacing:-0.268800pt;}
.ws14_c02068{word-spacing:-0.217600pt;}
.ws1f_c02068{word-spacing:-0.211200pt;}
.wsf_c02068{word-spacing:-0.185600pt;}
.ws19_c02068{word-spacing:-0.166400pt;}
.ws18_c02068{word-spacing:-0.121600pt;}
.ws7_c02068{word-spacing:-0.115200pt;}
.ws13_c02068{word-spacing:-0.096000pt;}
.wsa_c02068{word-spacing:-0.089600pt;}
.ws12_c02068{word-spacing:-0.070400pt;}
.wsb_c02068{word-spacing:-0.064000pt;}
.ws1a_c02068{word-spacing:-0.038400pt;}
.ws1c_c02068{word-spacing:-0.032000pt;}
.ws1b_c02068{word-spacing:-0.025600pt;}
.ws0_c02068{word-spacing:-0.019200pt;}
.wsc_c02068{word-spacing:-0.012800pt;}
.ws2_c02068{word-spacing:-0.006400pt;}
.ws1_c02068{word-spacing:0.000000pt;}
.ws8_c02068{word-spacing:0.006400pt;}
.ws9_c02068{word-spacing:0.012800pt;}
.ws11_c02068{word-spacing:4.652800pt;}
.ws10_c02068{word-spacing:4.691200pt;}
.ws4_c02068{word-spacing:9.843200pt;}
.ws3_c02068{word-spacing:9.907200pt;}
.wsd_c02068{word-spacing:11.449600pt;}
.wse_c02068{word-spacing:11.500800pt;}
.ws5_c02068{word-spacing:13.433600pt;}
.ws6_c02068{word-spacing:13.459200pt;}
.ws17_c02068{word-spacing:14.899200pt;}
.ws16_c02068{word-spacing:14.950400pt;}
.ws15_c02068{word-spacing:15.065600pt;}
._5_c02068{margin-left:-1.216000pt;}
._6_c02068{width:0.979200pt;}
._2_c02068{width:99.641600pt;}
._3_c02068{width:103.161600pt;}
._1_c02068{width:146.688000pt;}
._0_c02068{width:172.819200pt;}
._4_c02068{width:247.116800pt;}
.fs1_c02068{font-size:42.560000pt;}
.fs0_c02068{font-size:64.000000pt;}
.y0_c02068{bottom:0.000000pt;}
.y3_c02068{bottom:50.987067pt;}
.y2_c02068{bottom:69.387067pt;}
.y31_c02068{bottom:101.787067pt;}
.y30_c02068{bottom:129.387067pt;}
.y2f_c02068{bottom:156.987067pt;}
.y2e_c02068{bottom:184.587067pt;}
.y2d_c02068{bottom:212.187067pt;}
.y2c_c02068{bottom:239.787067pt;}
.y2b_c02068{bottom:267.387067pt;}
.y2a_c02068{bottom:294.987067pt;}
.y29_c02068{bottom:322.587067pt;}
.y28_c02068{bottom:341.787067pt;}
.y27_c02068{bottom:360.187200pt;}
.y26_c02068{bottom:379.067200pt;}
.y25_c02068{bottom:398.347067pt;}
.y24_c02068{bottom:416.747200pt;}
.y23_c02068{bottom:435.627067pt;}
.y22_c02068{bottom:454.827200pt;}
.y21_c02068{bottom:473.227067pt;}
.y20_c02068{bottom:491.627067pt;}
.y1f_c02068{bottom:509.867067pt;}
.y1e_c02068{bottom:528.987067pt;}
.y1d_c02068{bottom:548.187067pt;}
.y1c_c02068{bottom:566.587067pt;}
.y1b_c02068{bottom:584.987067pt;}
.y1a_c02068{bottom:603.387067pt;}
.y19_c02068{bottom:621.787067pt;}
.y18_c02068{bottom:640.187067pt;}
.y17_c02068{bottom:658.587067pt;}
.y16_c02068{bottom:677.467067pt;}
.y15_c02068{bottom:696.667067pt;}
.y14_c02068{bottom:715.067067pt;}
.y13_c02068{bottom:734.027067pt;}
.y12_c02068{bottom:753.067067pt;}
.y11_c02068{bottom:771.467067pt;}
.y10_c02068{bottom:789.867067pt;}
.yf_c02068{bottom:808.267067pt;}
.ye_c02068{bottom:826.667067pt;}
.yd_c02068{bottom:845.067067pt;}
.yc_c02068{bottom:863.467067pt;}
.yb_c02068{bottom:881.867067pt;}
.ya_c02068{bottom:900.907067pt;}
.y9_c02068{bottom:920.027067pt;}
.y8_c02068{bottom:939.147067pt;}
.y7_c02068{bottom:957.547067pt;}
.y6_c02068{bottom:975.867067pt;}
.y5_c02068{bottom:995.067067pt;}
.y4_c02068{bottom:1013.307067pt;}
.y1_c02068{bottom:1060.587067pt;}
.h2_c02068{height:56.156250pt;}
.h1_c02068{height:56.843750pt;}
.h4_c02068{height:62.781250pt;}
.h3_c02068{height:63.101250pt;}
.h0_c02068{height:1122.666667pt;}
.w1_c02068{width:793.333333pt;}
.w0_c02068{width:793.626667pt;}
.x0_c02068{left:0.000000pt;}
.x1_c02068{left:113.440000pt;}
.x3_c02068{left:120.560000pt;}
.x4_c02068{left:224.560000pt;}
.x2_c02068{left:388.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_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_d6705f3acb0eccb8927e027b.woff2')format("woff");}.ff1_c02069{font-family:ff1_c02069;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02069;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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_6db3ada5dfcb5700e58886ca.woff2')format("woff");}.ff3_c02069{font-family:ff3_c02069;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_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);}
.v1_c02069{vertical-align:-5.760000px;}
.v0_c02069{vertical-align:0.000000px;}
.ls21_c02069{letter-spacing:-0.046116px;}
.ls20_c02069{letter-spacing:-0.028800px;}
.ls1e_c02069{letter-spacing:-0.026352px;}
.ls1a_c02069{letter-spacing:-0.021600px;}
.ls1b_c02069{letter-spacing:-0.014400px;}
.ls19_c02069{letter-spacing:-0.007200px;}
.ls1d_c02069{letter-spacing:-0.006588px;}
.ls1c_c02069{letter-spacing:-0.006012px;}
.ls18_c02069{letter-spacing:0.000000px;}
.ls2_c02069{letter-spacing:0.014400px;}
.ls1f_c02069{letter-spacing:0.021600px;}
.ls1_c02069{letter-spacing:0.028800px;}
.ls15_c02069{letter-spacing:0.036000px;}
.ls12_c02069{letter-spacing:0.039528px;}
.ls10_c02069{letter-spacing:0.046116px;}
.ls0_c02069{letter-spacing:0.050400px;}
.ls16_c02069{letter-spacing:0.057600px;}
.ls9_c02069{letter-spacing:0.059292px;}
.ls7_c02069{letter-spacing:0.065880px;}
.lsf_c02069{letter-spacing:0.072468px;}
.lsa_c02069{letter-spacing:0.079056px;}
.lsc_c02069{letter-spacing:0.085644px;}
.ls4_c02069{letter-spacing:0.092232px;}
.lse_c02069{letter-spacing:0.105408px;}
.ls5_c02069{letter-spacing:0.138348px;}
.ls3_c02069{letter-spacing:0.144288px;}
.ls8_c02069{letter-spacing:0.151524px;}
.lsd_c02069{letter-spacing:0.158112px;}
.lsb_c02069{letter-spacing:0.177876px;}
.ls11_c02069{letter-spacing:65.609892px;}
.ls17_c02069{letter-spacing:117.450000px;}
.ls6_c02069{letter-spacing:150.300000px;}
.ls14_c02069{letter-spacing:395.730000px;}
.ls13_c02069{letter-spacing:416.250000px;}
.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;}
}
.ws9_c02069{word-spacing:-16.647876px;}
.wse_c02069{word-spacing:-16.628112px;}
.ws17_c02069{word-spacing:-0.172800px;}
.ws23_c02069{word-spacing:-0.151200px;}
.ws1b_c02069{word-spacing:-0.144000px;}
.ws25_c02069{word-spacing:-0.129600px;}
.ws1c_c02069{word-spacing:-0.054108px;}
.ws19_c02069{word-spacing:-0.050400px;}
.ws1a_c02069{word-spacing:-0.028800px;}
.ws14_c02069{word-spacing:-0.021600px;}
.ws16_c02069{word-spacing:-0.014400px;}
.ws15_c02069{word-spacing:0.000000px;}
.ws1f_c02069{word-spacing:0.013176px;}
.ws1d_c02069{word-spacing:0.026352px;}
.ws24_c02069{word-spacing:0.028800px;}
.ws1e_c02069{word-spacing:0.032940px;}
.ws20_c02069{word-spacing:0.046116px;}
.ws21_c02069{word-spacing:0.052704px;}
.ws22_c02069{word-spacing:0.098820px;}
.ws18_c02069{word-spacing:0.237600px;}
.wsc_c02069{word-spacing:65.089440px;}
.ws13_c02069{word-spacing:67.238496px;}
.ws8_c02069{word-spacing:67.642380px;}
.ws3_c02069{word-spacing:99.996372px;}
.ws7_c02069{word-spacing:99.998496px;}
.ws4_c02069{word-spacing:100.402380px;}
.wsb_c02069{word-spacing:100.426608px;}
.wsd_c02069{word-spacing:100.933020px;}
.ws6_c02069{word-spacing:133.116372px;}
.ws0_c02069{word-spacing:133.546608px;}
.ws5_c02069{word-spacing:150.082380px;}
.ws2_c02069{word-spacing:150.106608px;}
.ws11_c02069{word-spacing:182.842380px;}
.ws1_c02069{word-spacing:182.866608px;}
.ws10_c02069{word-spacing:215.833572px;}
.ws12_c02069{word-spacing:215.986608px;}
.wsf_c02069{word-spacing:216.270000px;}
.wsa_c02069{word-spacing:415.786608px;}
._3_c02069{margin-left:-1.195200px;}
._19_c02069{width:65.089440px;}
._12_c02069{width:67.644504px;}
._16_c02069{width:83.886372px;}
._e_c02069{width:99.996372px;}
._f_c02069{width:101.168388px;}
._6_c02069{width:104.490000px;}
._7_c02069{width:115.970040px;}
._b_c02069{width:133.906608px;}
._a_c02069{width:150.300000px;}
._5_c02069{width:169.288704px;}
._1a_c02069{width:171.252900px;}
._21_c02069{width:182.718216px;}
._22_c02069{width:184.031784px;}
._d_c02069{width:187.907256px;}
._0_c02069{width:194.421600px;}
._1b_c02069{width:206.239536px;}
._4_c02069{width:216.726192px;}
._23_c02069{width:231.656364px;}
._10_c02069{width:235.512144px;}
._1d_c02069{width:250.189704px;}
._11_c02069{width:253.844424px;}
._18_c02069{width:270.250776px;}
._13_c02069{width:283.101732px;}
._c_c02069{width:297.926856px;}
._14_c02069{width:316.101024px;}
._8_c02069{width:348.957504px;}
._15_c02069{width:350.181936px;}
._2_c02069{width:359.625600px;}
._17_c02069{width:366.040620px;}
._20_c02069{width:382.853808px;}
._1f_c02069{width:409.942728px;}
._9_c02069{width:415.613808px;}
._1e_c02069{width:643.907412px;}
._1c_c02069{width:664.648056px;}
._1_c02069{width:2479.679400px;}
.fc0_c02069{color:rgb(0,0,0);}
.fs4_c02069{font-size:29.880000px;}
.fs1_c02069{font-size:47.880000px;}
.fs2_c02069{font-size:60.120000px;}
.fs3_c02069{font-size:65.880000px;}
.fs0_c02069{font-size:72.000000px;}
.y0_c02069{bottom:0.000000px;}
.y3_c02069{bottom:57.360450px;}
.y2_c02069{bottom:78.060450px;}
.y2b_c02069{bottom:121.530450px;}
.y2a_c02069{bottom:132.510450px;}
.y29_c02069{bottom:151.500450px;}
.y28_c02069{bottom:170.490450px;}
.y27_c02069{bottom:189.390450px;}
.y26_c02069{bottom:208.740450px;}
.y25_c02069{bottom:227.730450px;}
.y24_c02069{bottom:246.720450px;}
.y23_c02069{bottom:265.710450px;}
.y22_c02069{bottom:284.700450px;}
.y21_c02069{bottom:303.690450px;}
.y20_c02069{bottom:322.590450px;}
.y1f_c02069{bottom:341.220450px;}
.y1d_c02069{bottom:359.130450px;}
.y1c_c02069{bottom:379.830600px;}
.y1b_c02069{bottom:400.530450px;}
.y1e_c02069{bottom:421.230450px;}
.y1a_c02069{bottom:422.670450px;}
.y19_c02069{bottom:440.400450px;}
.y18_c02069{bottom:451.380450px;}
.y17_c02069{bottom:470.370600px;}
.y16_c02069{bottom:489.360600px;}
.y15_c02069{bottom:508.260450px;}
.y14_c02069{bottom:527.610450px;}
.y13_c02069{bottom:546.600450px;}
.y12_c02069{bottom:565.590450px;}
.y11_c02069{bottom:584.580450px;}
.y10_c02069{bottom:603.570450px;}
.yf_c02069{bottom:622.560450px;}
.ye_c02069{bottom:641.460450px;}
.yd_c02069{bottom:660.090450px;}
.yc_c02069{bottom:678.000450px;}
.yb_c02069{bottom:698.700450px;}
.ya_c02069{bottom:719.400450px;}
.y9_c02069{bottom:740.100450px;}
.y8_c02069{bottom:767.190450px;}
.y7_c02069{bottom:788.700450px;}
.y6_c02069{bottom:799.860450px;}
.y5_c02069{bottom:1108.920450px;}
.y4_c02069{bottom:1139.970450px;}
.y1_c02069{bottom:1193.160450px;}
.h9_c02069{height:26.538926px;}
.h4_c02069{height:42.526230px;}
.h6_c02069{height:53.397598px;}
.h7_c02069{height:58.513535px;}
.h8_c02069{height:58.873535px;}
.h2_c02069{height:63.175781px;}
.h1_c02069{height:63.949219px;}
.h3_c02069{height:63.949819px;}
.h5_c02069{height:75.093750px;}
.h0_c02069{height:1263.000000px;}
.w1_c02069{width:892.500000px;}
.w0_c02069{width:892.830000px;}
.x0_c02069{left:0.000000px;}
.x4_c02069{left:95.670000px;}
.x1_c02069{left:127.620000px;}
.x6_c02069{left:135.630000px;}
.x10_c02069{left:160.920000px;}
.x7_c02069{left:164.700000px;}
.x11_c02069{left:165.960000px;}
.x12_c02069{left:242.010000px;}
.x9_c02069{left:247.590000px;}
.x8_c02069{left:267.570000px;}
.x13_c02069{left:289.350000px;}
.x5_c02069{left:357.300000px;}
.x3_c02069{left:389.070000px;}
.xc_c02069{left:415.710000px;}
.x14_c02069{left:421.920000px;}
.xb_c02069{left:433.710000px;}
.x2_c02069{left:437.490000px;}
.x15_c02069{left:443.430000px;}
.xa_c02069{left:462.690000px;}
.xe_c02069{left:592.470000px;}
.xf_c02069{left:595.620000px;}
.x17_c02069{left:601.290000px;}
.x16_c02069{left:610.290000px;}
.x18_c02069{left:618.030000px;}
.xd_c02069{left:637.290000px;}
@media print{
.v1_c02069{vertical-align:-5.120000pt;}
.v0_c02069{vertical-align:0.000000pt;}
.ls21_c02069{letter-spacing:-0.040992pt;}
.ls20_c02069{letter-spacing:-0.025600pt;}
.ls1e_c02069{letter-spacing:-0.023424pt;}
.ls1a_c02069{letter-spacing:-0.019200pt;}
.ls1b_c02069{letter-spacing:-0.012800pt;}
.ls19_c02069{letter-spacing:-0.006400pt;}
.ls1d_c02069{letter-spacing:-0.005856pt;}
.ls1c_c02069{letter-spacing:-0.005344pt;}
.ls18_c02069{letter-spacing:0.000000pt;}
.ls2_c02069{letter-spacing:0.012800pt;}
.ls1f_c02069{letter-spacing:0.019200pt;}
.ls1_c02069{letter-spacing:0.025600pt;}
.ls15_c02069{letter-spacing:0.032000pt;}
.ls12_c02069{letter-spacing:0.035136pt;}
.ls10_c02069{letter-spacing:0.040992pt;}
.ls0_c02069{letter-spacing:0.044800pt;}
.ls16_c02069{letter-spacing:0.051200pt;}
.ls9_c02069{letter-spacing:0.052704pt;}
.ls7_c02069{letter-spacing:0.058560pt;}
.lsf_c02069{letter-spacing:0.064416pt;}
.lsa_c02069{letter-spacing:0.070272pt;}
.lsc_c02069{letter-spacing:0.076128pt;}
.ls4_c02069{letter-spacing:0.081984pt;}
.lse_c02069{letter-spacing:0.093696pt;}
.ls5_c02069{letter-spacing:0.122976pt;}
.ls3_c02069{letter-spacing:0.128256pt;}
.ls8_c02069{letter-spacing:0.134688pt;}
.lsd_c02069{letter-spacing:0.140544pt;}
.lsb_c02069{letter-spacing:0.158112pt;}
.ls11_c02069{letter-spacing:58.319904pt;}
.ls17_c02069{letter-spacing:104.400000pt;}
.ls6_c02069{letter-spacing:133.600000pt;}
.ls14_c02069{letter-spacing:351.760000pt;}
.ls13_c02069{letter-spacing:370.000000pt;}
.ws9_c02069{word-spacing:-14.798112pt;}
.wse_c02069{word-spacing:-14.780544pt;}
.ws17_c02069{word-spacing:-0.153600pt;}
.ws23_c02069{word-spacing:-0.134400pt;}
.ws1b_c02069{word-spacing:-0.128000pt;}
.ws25_c02069{word-spacing:-0.115200pt;}
.ws1c_c02069{word-spacing:-0.048096pt;}
.ws19_c02069{word-spacing:-0.044800pt;}
.ws1a_c02069{word-spacing:-0.025600pt;}
.ws14_c02069{word-spacing:-0.019200pt;}
.ws16_c02069{word-spacing:-0.012800pt;}
.ws15_c02069{word-spacing:0.000000pt;}
.ws1f_c02069{word-spacing:0.011712pt;}
.ws1d_c02069{word-spacing:0.023424pt;}
.ws24_c02069{word-spacing:0.025600pt;}
.ws1e_c02069{word-spacing:0.029280pt;}
.ws20_c02069{word-spacing:0.040992pt;}
.ws21_c02069{word-spacing:0.046848pt;}
.ws22_c02069{word-spacing:0.087840pt;}
.ws18_c02069{word-spacing:0.211200pt;}
.wsc_c02069{word-spacing:57.857280pt;}
.ws13_c02069{word-spacing:59.767552pt;}
.ws8_c02069{word-spacing:60.126560pt;}
.ws3_c02069{word-spacing:88.885664pt;}
.ws7_c02069{word-spacing:88.887552pt;}
.ws4_c02069{word-spacing:89.246560pt;}
.wsb_c02069{word-spacing:89.268096pt;}
.wsd_c02069{word-spacing:89.718240pt;}
.ws6_c02069{word-spacing:118.325664pt;}
.ws0_c02069{word-spacing:118.708096pt;}
.ws5_c02069{word-spacing:133.406560pt;}
.ws2_c02069{word-spacing:133.428096pt;}
.ws11_c02069{word-spacing:162.526560pt;}
.ws1_c02069{word-spacing:162.548096pt;}
.ws10_c02069{word-spacing:191.852064pt;}
.ws12_c02069{word-spacing:191.988096pt;}
.wsf_c02069{word-spacing:192.240000pt;}
.wsa_c02069{word-spacing:369.588096pt;}
._3_c02069{margin-left:-1.062400pt;}
._19_c02069{width:57.857280pt;}
._12_c02069{width:60.128448pt;}
._16_c02069{width:74.565664pt;}
._e_c02069{width:88.885664pt;}
._f_c02069{width:89.927456pt;}
._6_c02069{width:92.880000pt;}
._7_c02069{width:103.084480pt;}
._b_c02069{width:119.028096pt;}
._a_c02069{width:133.600000pt;}
._5_c02069{width:150.478848pt;}
._1a_c02069{width:152.224800pt;}
._21_c02069{width:162.416192pt;}
._22_c02069{width:163.583808pt;}
._d_c02069{width:167.028672pt;}
._0_c02069{width:172.819200pt;}
._1b_c02069{width:183.324032pt;}
._4_c02069{width:192.645504pt;}
._23_c02069{width:205.916768pt;}
._10_c02069{width:209.344128pt;}
._1d_c02069{width:222.390848pt;}
._11_c02069{width:225.639488pt;}
._18_c02069{width:240.222912pt;}
._13_c02069{width:251.645984pt;}
._c_c02069{width:264.823872pt;}
._14_c02069{width:280.978688pt;}
._8_c02069{width:310.184448pt;}
._15_c02069{width:311.272832pt;}
._2_c02069{width:319.667200pt;}
._17_c02069{width:325.369440pt;}
._20_c02069{width:340.314496pt;}
._1f_c02069{width:364.393536pt;}
._9_c02069{width:369.434496pt;}
._1e_c02069{width:572.362144pt;}
._1c_c02069{width:590.798272pt;}
._1_c02069{width:2204.159467pt;}
.fs4_c02069{font-size:26.560000pt;}
.fs1_c02069{font-size:42.560000pt;}
.fs2_c02069{font-size:53.440000pt;}
.fs3_c02069{font-size:58.560000pt;}
.fs0_c02069{font-size:64.000000pt;}
.y0_c02069{bottom:0.000000pt;}
.y3_c02069{bottom:50.987067pt;}
.y2_c02069{bottom:69.387067pt;}
.y2b_c02069{bottom:108.027067pt;}
.y2a_c02069{bottom:117.787067pt;}
.y29_c02069{bottom:134.667067pt;}
.y28_c02069{bottom:151.547067pt;}
.y27_c02069{bottom:168.347067pt;}
.y26_c02069{bottom:185.547067pt;}
.y25_c02069{bottom:202.427067pt;}
.y24_c02069{bottom:219.307067pt;}
.y23_c02069{bottom:236.187067pt;}
.y22_c02069{bottom:253.067067pt;}
.y21_c02069{bottom:269.947067pt;}
.y20_c02069{bottom:286.747067pt;}
.y1f_c02069{bottom:303.307067pt;}
.y1d_c02069{bottom:319.227067pt;}
.y1c_c02069{bottom:337.627200pt;}
.y1b_c02069{bottom:356.027067pt;}
.y1e_c02069{bottom:374.427067pt;}
.y1a_c02069{bottom:375.707067pt;}
.y19_c02069{bottom:391.467067pt;}
.y18_c02069{bottom:401.227067pt;}
.y17_c02069{bottom:418.107200pt;}
.y16_c02069{bottom:434.987200pt;}
.y15_c02069{bottom:451.787067pt;}
.y14_c02069{bottom:468.987067pt;}
.y13_c02069{bottom:485.867067pt;}
.y12_c02069{bottom:502.747067pt;}
.y11_c02069{bottom:519.627067pt;}
.y10_c02069{bottom:536.507067pt;}
.yf_c02069{bottom:553.387067pt;}
.ye_c02069{bottom:570.187067pt;}
.yd_c02069{bottom:586.747067pt;}
.yc_c02069{bottom:602.667067pt;}
.yb_c02069{bottom:621.067067pt;}
.ya_c02069{bottom:639.467067pt;}
.y9_c02069{bottom:657.867067pt;}
.y8_c02069{bottom:681.947067pt;}
.y7_c02069{bottom:701.067067pt;}
.y6_c02069{bottom:710.987067pt;}
.y5_c02069{bottom:985.707067pt;}
.y4_c02069{bottom:1013.307067pt;}
.y1_c02069{bottom:1060.587067pt;}
.h9_c02069{height:23.590156pt;}
.h4_c02069{height:37.801094pt;}
.h6_c02069{height:47.464531pt;}
.h7_c02069{height:52.012031pt;}
.h8_c02069{height:52.332031pt;}
.h2_c02069{height:56.156250pt;}
.h1_c02069{height:56.843750pt;}
.h3_c02069{height:56.844283pt;}
.h5_c02069{height:66.750000pt;}
.h0_c02069{height:1122.666667pt;}
.w1_c02069{width:793.333333pt;}
.w0_c02069{width:793.626667pt;}
.x0_c02069{left:0.000000pt;}
.x4_c02069{left:85.040000pt;}
.x1_c02069{left:113.440000pt;}
.x6_c02069{left:120.560000pt;}
.x10_c02069{left:143.040000pt;}
.x7_c02069{left:146.400000pt;}
.x11_c02069{left:147.520000pt;}
.x12_c02069{left:215.120000pt;}
.x9_c02069{left:220.080000pt;}
.x8_c02069{left:237.840000pt;}
.x13_c02069{left:257.200000pt;}
.x5_c02069{left:317.600000pt;}
.x3_c02069{left:345.840000pt;}
.xc_c02069{left:369.520000pt;}
.x14_c02069{left:375.040000pt;}
.xb_c02069{left:385.520000pt;}
.x2_c02069{left:388.880000pt;}
.x15_c02069{left:394.160000pt;}
.xa_c02069{left:411.280000pt;}
.xe_c02069{left:526.640000pt;}
.xf_c02069{left:529.440000pt;}
.x17_c02069{left:534.480000pt;}
.x16_c02069{left:542.480000pt;}
.x18_c02069{left:549.360000pt;}
.xd_c02069{left:566.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_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_065c812560207b5d605c71a4.woff2')format("woff");}.ff1_c02070{font-family:ff1_c02070;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02070;src:url('chunks/assets/font_0acb7da01fb5693016ff4398.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;}
.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);}
.v8_c02070{vertical-align:-15.480000px;}
.vb_c02070{vertical-align:-13.680000px;}
.va_c02070{vertical-align:-12.600000px;}
.v9_c02070{vertical-align:-11.160000px;}
.v4_c02070{vertical-align:-3.960000px;}
.vc_c02070{vertical-align:-2.520000px;}
.v5_c02070{vertical-align:-1.440000px;}
.v0_c02070{vertical-align:0.000000px;}
.v2_c02070{vertical-align:1.080000px;}
.v7_c02070{vertical-align:2.520000px;}
.v6_c02070{vertical-align:3.960000px;}
.v1_c02070{vertical-align:5.400000px;}
.v3_c02070{vertical-align:11.160000px;}
.ls35_c02070{letter-spacing:-0.086184px;}
.ls31_c02070{letter-spacing:-0.062244px;}
.ls3a_c02070{letter-spacing:-0.059292px;}
.ls3b_c02070{letter-spacing:-0.039528px;}
.ls33_c02070{letter-spacing:-0.019152px;}
.ls2c_c02070{letter-spacing:-0.014400px;}
.ls32_c02070{letter-spacing:-0.010800px;}
.ls38_c02070{letter-spacing:-0.009576px;}
.ls2d_c02070{letter-spacing:-0.007200px;}
.ls2f_c02070{letter-spacing:-0.006588px;}
.ls2e_c02070{letter-spacing:-0.006012px;}
.ls39_c02070{letter-spacing:-0.004788px;}
.ls2b_c02070{letter-spacing:0.000000px;}
.ls13_c02070{letter-spacing:0.005400px;}
.lse_c02070{letter-spacing:0.007200px;}
.ls10_c02070{letter-spacing:0.010800px;}
.lsf_c02070{letter-spacing:0.014400px;}
.ls23_c02070{letter-spacing:0.019152px;}
.ls24_c02070{letter-spacing:0.019764px;}
.ls12_c02070{letter-spacing:0.028728px;}
.ls0_c02070{letter-spacing:0.028800px;}
.ls14_c02070{letter-spacing:0.032400px;}
.ls18_c02070{letter-spacing:0.037800px;}
.lsb_c02070{letter-spacing:0.039528px;}
.ls11_c02070{letter-spacing:0.043092px;}
.ls17_c02070{letter-spacing:0.043200px;}
.ls5_c02070{letter-spacing:0.059292px;}
.ls20_c02070{letter-spacing:0.059400px;}
.ls3_c02070{letter-spacing:0.065880px;}
.ls29_c02070{letter-spacing:0.067032px;}
.ls15_c02070{letter-spacing:0.076608px;}
.ls6_c02070{letter-spacing:0.079056px;}
.ls1f_c02070{letter-spacing:0.081396px;}
.ls8_c02070{letter-spacing:0.085644px;}
.ls3c_c02070{letter-spacing:0.086184px;}
.ls2_c02070{letter-spacing:0.092232px;}
.ls28_c02070{letter-spacing:0.095760px;}
.ls2a_c02070{letter-spacing:0.100548px;}
.lsa_c02070{letter-spacing:0.105408px;}
.ls21_c02070{letter-spacing:0.124488px;}
.ls27_c02070{letter-spacing:0.125172px;}
.ls22_c02070{letter-spacing:0.134064px;}
.lsd_c02070{letter-spacing:0.138348px;}
.ls1_c02070{letter-spacing:0.144288px;}
.ls25_c02070{letter-spacing:0.144936px;}
.ls30_c02070{letter-spacing:0.151200px;}
.ls4_c02070{letter-spacing:0.151524px;}
.ls9_c02070{letter-spacing:0.158112px;}
.ls1d_c02070{letter-spacing:0.162792px;}
.ls1a_c02070{letter-spacing:0.164700px;}
.ls34_c02070{letter-spacing:0.167580px;}
.ls7_c02070{letter-spacing:0.177876px;}
.ls16_c02070{letter-spacing:0.181944px;}
.lsc_c02070{letter-spacing:87.929892px;}
.ls1b_c02070{letter-spacing:154.893168px;}
.ls36_c02070{letter-spacing:156.778200px;}
.ls37_c02070{letter-spacing:157.140000px;}
.ls26_c02070{letter-spacing:191.970000px;}
.ls19_c02070{letter-spacing:200.790000px;}
.ls1c_c02070{letter-spacing:239.846832px;}
.ls1e_c02070{letter-spacing:241.380000px;}
.sc__c02070{text-shadow:none;}
.sc0_c02070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02070{-webkit-text-stroke:0px transparent;}
.sc0_c02070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02070{word-spacing:-16.647876px;}
.ws1_c02070{word-spacing:-16.628112px;}
.ws1d_c02070{word-spacing:-0.329400px;}
.ws12_c02070{word-spacing:-0.272916px;}
.ws14_c02070{word-spacing:-0.253764px;}
.ws18_c02070{word-spacing:-0.225036px;}
.ws17_c02070{word-spacing:-0.215460px;}
.ws26_c02070{word-spacing:-0.191520px;}
.ws11_c02070{word-spacing:-0.183600px;}
.ws19_c02070{word-spacing:-0.172368px;}
.ws1b_c02070{word-spacing:-0.119700px;}
.wsf_c02070{word-spacing:-0.115200px;}
.ws1a_c02070{word-spacing:-0.110124px;}
.ws16_c02070{word-spacing:-0.081396px;}
.ws10_c02070{word-spacing:-0.072000px;}
.ws9_c02070{word-spacing:-0.054108px;}
.ws1f_c02070{word-spacing:-0.052704px;}
.ws8_c02070{word-spacing:-0.028800px;}
.ws5_c02070{word-spacing:-0.021600px;}
.ws20_c02070{word-spacing:-0.013176px;}
.ws7_c02070{word-spacing:-0.007200px;}
.ws6_c02070{word-spacing:0.000000px;}
.wsc_c02070{word-spacing:0.013176px;}
.wsa_c02070{word-spacing:0.026352px;}
.wsb_c02070{word-spacing:0.032940px;}
.wsd_c02070{word-spacing:0.052704px;}
.ws1c_c02070{word-spacing:0.072468px;}
.wse_c02070{word-spacing:0.098820px;}
.ws1e_c02070{word-spacing:0.131760px;}
.ws21_c02070{word-spacing:0.536256px;}
.ws22_c02070{word-spacing:0.550620px;}
.ws23_c02070{word-spacing:2.724372px;}
.ws25_c02070{word-spacing:2.748312px;}
.ws24_c02070{word-spacing:2.762676px;}
.ws2_c02070{word-spacing:58.969440px;}
.ws13_c02070{word-spacing:80.202312px;}
.ws15_c02070{word-spacing:156.735000px;}
.ws4_c02070{word-spacing:191.449440px;}
.ws3_c02070{word-spacing:307.009440px;}
._2_c02070{margin-left:-1.148292px;}
._2a_c02070{width:1.123092px;}
._24_c02070{width:41.694264px;}
._27_c02070{width:61.267248px;}
._20_c02070{width:62.340048px;}
._1d_c02070{width:69.300000px;}
._23_c02070{width:75.420000px;}
._1a_c02070{width:76.924440px;}
._1b_c02070{width:79.918200px;}
._1c_c02070{width:81.649440px;}
._15_c02070{width:82.755576px;}
._11_c02070{width:87.409440px;}
._d_c02070{width:89.964504px;}
._1e_c02070{width:91.288440px;}
._14_c02070{width:99.741600px;}
._26_c02070{width:101.001924px;}
._28_c02070{width:104.427756px;}
._19_c02070{width:105.467688px;}
._18_c02070{width:111.295152px;}
._5_c02070{width:114.930000px;}
._21_c02070{width:120.176244px;}
._9_c02070{width:122.316372px;}
._2c_c02070{width:124.320168px;}
._16_c02070{width:127.883628px;}
._22_c02070{width:129.733200px;}
._2b_c02070{width:137.266920px;}
._17_c02070{width:139.618944px;}
._29_c02070{width:140.762160px;}
._2e_c02070{width:145.847016px;}
._7_c02070{width:155.794248px;}
._2d_c02070{width:157.068144px;}
._25_c02070{width:159.186384px;}
._4_c02070{width:176.128704px;}
._a_c02070{width:179.267256px;}
._31_c02070{width:191.436372px;}
._0_c02070{width:194.421600px;}
._12_c02070{width:197.599536px;}
._3_c02070{width:212.359284px;}
._1f_c02070{width:219.324168px;}
._b_c02070{width:226.872144px;}
._f_c02070{width:238.306608px;}
._13_c02070{width:241.549704px;}
._c_c02070{width:245.204424px;}
._10_c02070{width:261.610776px;}
._30_c02070{width:269.751528px;}
._e_c02070{width:274.461732px;}
._33_c02070{width:276.541632px;}
._8_c02070{width:289.286856px;}
._6_c02070{width:307.197504px;}
._32_c02070{width:357.266520px;}
._1_c02070{width:377.625600px;}
._2f_c02070{width:379.474200px;}
._34_c02070{width:583.070220px;}
.fc0_c02070{color:rgb(0,0,0);}
.fs4_c02070{font-size:47.880000px;}
.fs3_c02070{font-size:54.000000px;}
.fs1_c02070{font-size:60.120000px;}
.fs2_c02070{font-size:65.880000px;}
.fs0_c02070{font-size:72.000000px;}
.y0_c02070{bottom:0.000000px;}
.y3_c02070{bottom:57.360450px;}
.y2_c02070{bottom:78.060450px;}
.y45_c02070{bottom:120.809550px;}
.y44_c02070{bottom:136.290000px;}
.y43_c02070{bottom:151.770450px;}
.y42_c02070{bottom:167.250024px;}
.y41_c02070{bottom:181.020312px;}
.y40_c02070{bottom:194.790600px;}
.y3f_c02070{bottom:213.150450px;}
.y3e_c02070{bottom:233.580450px;}
.y3d_c02070{bottom:254.100450px;}
.y3c_c02070{bottom:274.530450px;}
.y3b_c02070{bottom:295.050450px;}
.y37_c02070{bottom:316.290450px;}
.y3a_c02070{bottom:316.380450px;}
.y39_c02070{bottom:337.620450px;}
.y38_c02070{bottom:356.520450px;}
.y36_c02070{bottom:377.760450px;}
.y35_c02070{bottom:396.030000px;}
.y34_c02070{bottom:411.510450px;}
.y33_c02070{bottom:427.080000px;}
.y32_c02070{bottom:442.560450px;}
.y31_c02070{bottom:458.130450px;}
.y30_c02070{bottom:461.911050px;}
.y2f_c02070{bottom:477.030600px;}
.y2e_c02070{bottom:480.900000px;}
.y2d_c02070{bottom:496.020600px;}
.y2c_c02070{bottom:499.890000px;}
.y2b_c02070{bottom:515.010450px;}
.y2a_c02070{bottom:518.880000px;}
.y29_c02070{bottom:534.000450px;}
.y28_c02070{bottom:537.780900px;}
.y27_c02070{bottom:556.770450px;}
.y26_c02070{bottom:571.980450px;}
.y25_c02070{bottom:575.760900px;}
.y24_c02070{bottom:594.750450px;}
.y23_c02070{bottom:609.870450px;}
.y22_c02070{bottom:613.740000px;}
.y21_c02070{bottom:628.860450px;}
.y20_c02070{bottom:632.640900px;}
.y1f_c02070{bottom:647.850450px;}
.y1e_c02070{bottom:651.630900px;}
.y1d_c02070{bottom:667.830450px;}
.y1c_c02070{bottom:687.090450px;}
.y1b_c02070{bottom:703.560450px;}
.y1a_c02070{bottom:725.520450px;}
.y19_c02070{bottom:742.170450px;}
.y18_c02070{bottom:763.410450px;}
.y17_c02070{bottom:783.930450px;}
.y16_c02070{bottom:799.500000px;}
.y15_c02070{bottom:814.980450px;}
.y14_c02070{bottom:831.450450px;}
.y13_c02070{bottom:851.880450px;}
.y12_c02070{bottom:871.230450px;}
.y11_c02070{bottom:890.220450px;}
.y10_c02070{bottom:909.210450px;}
.yf_c02070{bottom:928.110450px;}
.ye_c02070{bottom:947.460450px;}
.yd_c02070{bottom:966.450450px;}
.yc_c02070{bottom:985.440450px;}
.yb_c02070{bottom:1004.430450px;}
.ya_c02070{bottom:1023.420450px;}
.y9_c02070{bottom:1042.320450px;}
.y8_c02070{bottom:1061.310450px;}
.y7_c02070{bottom:1079.940450px;}
.y6_c02070{bottom:1097.850450px;}
.y5_c02070{bottom:1118.550450px;}
.y4_c02070{bottom:1139.250450px;}
.y1_c02070{bottom:1193.160450px;}
.hf_c02070{height:42.011895px;}
.h6_c02070{height:47.961914px;}
.h7_c02070{height:48.461836px;}
.h3_c02070{height:53.397598px;}
.he_c02070{height:57.805840px;}
.h4_c02070{height:58.513535px;}
.h5_c02070{height:58.873535px;}
.h8_c02070{height:59.121914px;}
.h9_c02070{height:62.473535px;}
.hd_c02070{height:62.474135px;}
.hc_c02070{height:62.832935px;}
.ha_c02070{height:62.833535px;}
.hb_c02070{height:62.834135px;}
.h2_c02070{height:63.175781px;}
.h1_c02070{height:63.949219px;}
.h0_c02070{height:1263.000000px;}
.w1_c02070{width:892.500000px;}
.w0_c02070{width:892.830000px;}
.x0_c02070{left:0.000000px;}
.x1_c02070{left:127.620000px;}
.xc_c02070{left:134.550000px;}
.x7_c02070{left:135.630000px;}
.x9_c02070{left:139.680000px;}
.x8_c02070{left:147.690000px;}
.xa_c02070{left:154.080000px;}
.x6_c02070{left:160.920000px;}
.x3_c02070{left:164.700000px;}
.xb_c02070{left:220.680000px;}
.x4_c02070{left:244.800000px;}
.x5_c02070{left:250.920000px;}
.xd_c02070{left:326.250000px;}
.xf_c02070{left:353.970000px;}
.xe_c02070{left:381.600000px;}
.x2_c02070{left:437.490000px;}
@media print{
.v8_c02070{vertical-align:-13.760000pt;}
.vb_c02070{vertical-align:-12.160000pt;}
.va_c02070{vertical-align:-11.200000pt;}
.v9_c02070{vertical-align:-9.920000pt;}
.v4_c02070{vertical-align:-3.520000pt;}
.vc_c02070{vertical-align:-2.240000pt;}
.v5_c02070{vertical-align:-1.280000pt;}
.v0_c02070{vertical-align:0.000000pt;}
.v2_c02070{vertical-align:0.960000pt;}
.v7_c02070{vertical-align:2.240000pt;}
.v6_c02070{vertical-align:3.520000pt;}
.v1_c02070{vertical-align:4.800000pt;}
.v3_c02070{vertical-align:9.920000pt;}
.ls35_c02070{letter-spacing:-0.076608pt;}
.ls31_c02070{letter-spacing:-0.055328pt;}
.ls3a_c02070{letter-spacing:-0.052704pt;}
.ls3b_c02070{letter-spacing:-0.035136pt;}
.ls33_c02070{letter-spacing:-0.017024pt;}
.ls2c_c02070{letter-spacing:-0.012800pt;}
.ls32_c02070{letter-spacing:-0.009600pt;}
.ls38_c02070{letter-spacing:-0.008512pt;}
.ls2d_c02070{letter-spacing:-0.006400pt;}
.ls2f_c02070{letter-spacing:-0.005856pt;}
.ls2e_c02070{letter-spacing:-0.005344pt;}
.ls39_c02070{letter-spacing:-0.004256pt;}
.ls2b_c02070{letter-spacing:0.000000pt;}
.ls13_c02070{letter-spacing:0.004800pt;}
.lse_c02070{letter-spacing:0.006400pt;}
.ls10_c02070{letter-spacing:0.009600pt;}
.lsf_c02070{letter-spacing:0.012800pt;}
.ls23_c02070{letter-spacing:0.017024pt;}
.ls24_c02070{letter-spacing:0.017568pt;}
.ls12_c02070{letter-spacing:0.025536pt;}
.ls0_c02070{letter-spacing:0.025600pt;}
.ls14_c02070{letter-spacing:0.028800pt;}
.ls18_c02070{letter-spacing:0.033600pt;}
.lsb_c02070{letter-spacing:0.035136pt;}
.ls11_c02070{letter-spacing:0.038304pt;}
.ls17_c02070{letter-spacing:0.038400pt;}
.ls5_c02070{letter-spacing:0.052704pt;}
.ls20_c02070{letter-spacing:0.052800pt;}
.ls3_c02070{letter-spacing:0.058560pt;}
.ls29_c02070{letter-spacing:0.059584pt;}
.ls15_c02070{letter-spacing:0.068096pt;}
.ls6_c02070{letter-spacing:0.070272pt;}
.ls1f_c02070{letter-spacing:0.072352pt;}
.ls8_c02070{letter-spacing:0.076128pt;}
.ls3c_c02070{letter-spacing:0.076608pt;}
.ls2_c02070{letter-spacing:0.081984pt;}
.ls28_c02070{letter-spacing:0.085120pt;}
.ls2a_c02070{letter-spacing:0.089376pt;}
.lsa_c02070{letter-spacing:0.093696pt;}
.ls21_c02070{letter-spacing:0.110656pt;}
.ls27_c02070{letter-spacing:0.111264pt;}
.ls22_c02070{letter-spacing:0.119168pt;}
.lsd_c02070{letter-spacing:0.122976pt;}
.ls1_c02070{letter-spacing:0.128256pt;}
.ls25_c02070{letter-spacing:0.128832pt;}
.ls30_c02070{letter-spacing:0.134400pt;}
.ls4_c02070{letter-spacing:0.134688pt;}
.ls9_c02070{letter-spacing:0.140544pt;}
.ls1d_c02070{letter-spacing:0.144704pt;}
.ls1a_c02070{letter-spacing:0.146400pt;}
.ls34_c02070{letter-spacing:0.148960pt;}
.ls7_c02070{letter-spacing:0.158112pt;}
.ls16_c02070{letter-spacing:0.161728pt;}
.lsc_c02070{letter-spacing:78.159904pt;}
.ls1b_c02070{letter-spacing:137.682816pt;}
.ls36_c02070{letter-spacing:139.358400pt;}
.ls37_c02070{letter-spacing:139.680000pt;}
.ls26_c02070{letter-spacing:170.640000pt;}
.ls19_c02070{letter-spacing:178.480000pt;}
.ls1c_c02070{letter-spacing:213.197184pt;}
.ls1e_c02070{letter-spacing:214.560000pt;}
.ws0_c02070{word-spacing:-14.798112pt;}
.ws1_c02070{word-spacing:-14.780544pt;}
.ws1d_c02070{word-spacing:-0.292800pt;}
.ws12_c02070{word-spacing:-0.242592pt;}
.ws14_c02070{word-spacing:-0.225568pt;}
.ws18_c02070{word-spacing:-0.200032pt;}
.ws17_c02070{word-spacing:-0.191520pt;}
.ws26_c02070{word-spacing:-0.170240pt;}
.ws11_c02070{word-spacing:-0.163200pt;}
.ws19_c02070{word-spacing:-0.153216pt;}
.ws1b_c02070{word-spacing:-0.106400pt;}
.wsf_c02070{word-spacing:-0.102400pt;}
.ws1a_c02070{word-spacing:-0.097888pt;}
.ws16_c02070{word-spacing:-0.072352pt;}
.ws10_c02070{word-spacing:-0.064000pt;}
.ws9_c02070{word-spacing:-0.048096pt;}
.ws1f_c02070{word-spacing:-0.046848pt;}
.ws8_c02070{word-spacing:-0.025600pt;}
.ws5_c02070{word-spacing:-0.019200pt;}
.ws20_c02070{word-spacing:-0.011712pt;}
.ws7_c02070{word-spacing:-0.006400pt;}
.ws6_c02070{word-spacing:0.000000pt;}
.wsc_c02070{word-spacing:0.011712pt;}
.wsa_c02070{word-spacing:0.023424pt;}
.wsb_c02070{word-spacing:0.029280pt;}
.wsd_c02070{word-spacing:0.046848pt;}
.ws1c_c02070{word-spacing:0.064416pt;}
.wse_c02070{word-spacing:0.087840pt;}
.ws1e_c02070{word-spacing:0.117120pt;}
.ws21_c02070{word-spacing:0.476672pt;}
.ws22_c02070{word-spacing:0.489440pt;}
.ws23_c02070{word-spacing:2.421664pt;}
.ws25_c02070{word-spacing:2.442944pt;}
.ws24_c02070{word-spacing:2.455712pt;}
.ws2_c02070{word-spacing:52.417280pt;}
.ws13_c02070{word-spacing:71.290944pt;}
.ws15_c02070{word-spacing:139.320000pt;}
.ws4_c02070{word-spacing:170.177280pt;}
.ws3_c02070{word-spacing:272.897280pt;}
._2_c02070{margin-left:-1.020704pt;}
._2a_c02070{width:0.998304pt;}
._24_c02070{width:37.061568pt;}
._27_c02070{width:54.459776pt;}
._20_c02070{width:55.413376pt;}
._1d_c02070{width:61.600000pt;}
._23_c02070{width:67.040000pt;}
._1a_c02070{width:68.377280pt;}
._1b_c02070{width:71.038400pt;}
._1c_c02070{width:72.577280pt;}
._15_c02070{width:73.560512pt;}
._11_c02070{width:77.697280pt;}
._d_c02070{width:79.968448pt;}
._1e_c02070{width:81.145280pt;}
._14_c02070{width:88.659200pt;}
._26_c02070{width:89.779488pt;}
._28_c02070{width:92.824672pt;}
._19_c02070{width:93.749056pt;}
._18_c02070{width:98.929024pt;}
._5_c02070{width:102.160000pt;}
._21_c02070{width:106.823328pt;}
._9_c02070{width:108.725664pt;}
._2c_c02070{width:110.506816pt;}
._16_c02070{width:113.674336pt;}
._22_c02070{width:115.318400pt;}
._2b_c02070{width:122.015040pt;}
._17_c02070{width:124.105728pt;}
._29_c02070{width:125.121920pt;}
._2e_c02070{width:129.641792pt;}
._7_c02070{width:138.483776pt;}
._2d_c02070{width:139.616128pt;}
._25_c02070{width:141.499008pt;}
._4_c02070{width:156.558848pt;}
._a_c02070{width:159.348672pt;}
._31_c02070{width:170.165664pt;}
._0_c02070{width:172.819200pt;}
._12_c02070{width:175.644032pt;}
._3_c02070{width:188.763808pt;}
._1f_c02070{width:194.954816pt;}
._b_c02070{width:201.664128pt;}
._f_c02070{width:211.828096pt;}
._13_c02070{width:214.710848pt;}
._c_c02070{width:217.959488pt;}
._10_c02070{width:232.542912pt;}
._30_c02070{width:239.779136pt;}
._e_c02070{width:243.965984pt;}
._33_c02070{width:245.814784pt;}
._8_c02070{width:257.143872pt;}
._6_c02070{width:273.064448pt;}
._32_c02070{width:317.570240pt;}
._1_c02070{width:335.667200pt;}
._2f_c02070{width:337.310400pt;}
._34_c02070{width:518.284640pt;}
.fs4_c02070{font-size:42.560000pt;}
.fs3_c02070{font-size:48.000000pt;}
.fs1_c02070{font-size:53.440000pt;}
.fs2_c02070{font-size:58.560000pt;}
.fs0_c02070{font-size:64.000000pt;}
.y0_c02070{bottom:0.000000pt;}
.y3_c02070{bottom:50.987067pt;}
.y2_c02070{bottom:69.387067pt;}
.y45_c02070{bottom:107.386267pt;}
.y44_c02070{bottom:121.146667pt;}
.y43_c02070{bottom:134.907067pt;}
.y42_c02070{bottom:148.666688pt;}
.y41_c02070{bottom:160.906944pt;}
.y40_c02070{bottom:173.147200pt;}
.y3f_c02070{bottom:189.467067pt;}
.y3e_c02070{bottom:207.627067pt;}
.y3d_c02070{bottom:225.867067pt;}
.y3c_c02070{bottom:244.027067pt;}
.y3b_c02070{bottom:262.267067pt;}
.y37_c02070{bottom:281.147067pt;}
.y3a_c02070{bottom:281.227067pt;}
.y39_c02070{bottom:300.107067pt;}
.y38_c02070{bottom:316.907067pt;}
.y36_c02070{bottom:335.787067pt;}
.y35_c02070{bottom:352.026667pt;}
.y34_c02070{bottom:365.787067pt;}
.y33_c02070{bottom:379.626667pt;}
.y32_c02070{bottom:393.387067pt;}
.y31_c02070{bottom:407.227067pt;}
.y30_c02070{bottom:410.587600pt;}
.y2f_c02070{bottom:424.027200pt;}
.y2e_c02070{bottom:427.466667pt;}
.y2d_c02070{bottom:440.907200pt;}
.y2c_c02070{bottom:444.346667pt;}
.y2b_c02070{bottom:457.787067pt;}
.y2a_c02070{bottom:461.226667pt;}
.y29_c02070{bottom:474.667067pt;}
.y28_c02070{bottom:478.027467pt;}
.y27_c02070{bottom:494.907067pt;}
.y26_c02070{bottom:508.427067pt;}
.y25_c02070{bottom:511.787467pt;}
.y24_c02070{bottom:528.667067pt;}
.y23_c02070{bottom:542.107067pt;}
.y22_c02070{bottom:545.546667pt;}
.y21_c02070{bottom:558.987067pt;}
.y20_c02070{bottom:562.347467pt;}
.y1f_c02070{bottom:575.867067pt;}
.y1e_c02070{bottom:579.227467pt;}
.y1d_c02070{bottom:593.627067pt;}
.y1c_c02070{bottom:610.747067pt;}
.y1b_c02070{bottom:625.387067pt;}
.y1a_c02070{bottom:644.907067pt;}
.y19_c02070{bottom:659.707067pt;}
.y18_c02070{bottom:678.587067pt;}
.y17_c02070{bottom:696.827067pt;}
.y16_c02070{bottom:710.666667pt;}
.y15_c02070{bottom:724.427067pt;}
.y14_c02070{bottom:739.067067pt;}
.y13_c02070{bottom:757.227067pt;}
.y12_c02070{bottom:774.427067pt;}
.y11_c02070{bottom:791.307067pt;}
.y10_c02070{bottom:808.187067pt;}
.yf_c02070{bottom:824.987067pt;}
.ye_c02070{bottom:842.187067pt;}
.yd_c02070{bottom:859.067067pt;}
.yc_c02070{bottom:875.947067pt;}
.yb_c02070{bottom:892.827067pt;}
.ya_c02070{bottom:909.707067pt;}
.y9_c02070{bottom:926.507067pt;}
.y8_c02070{bottom:943.387067pt;}
.y7_c02070{bottom:959.947067pt;}
.y6_c02070{bottom:975.867067pt;}
.y5_c02070{bottom:994.267067pt;}
.y4_c02070{bottom:1012.667067pt;}
.y1_c02070{bottom:1060.587067pt;}
.hf_c02070{height:37.343906pt;}
.h6_c02070{height:42.632812pt;}
.h7_c02070{height:43.077188pt;}
.h3_c02070{height:47.464531pt;}
.he_c02070{height:51.382969pt;}
.h4_c02070{height:52.012031pt;}
.h5_c02070{height:52.332031pt;}
.h8_c02070{height:52.552812pt;}
.h9_c02070{height:55.532031pt;}
.hd_c02070{height:55.532565pt;}
.hc_c02070{height:55.851498pt;}
.ha_c02070{height:55.852031pt;}
.hb_c02070{height:55.852565pt;}
.h2_c02070{height:56.156250pt;}
.h1_c02070{height:56.843750pt;}
.h0_c02070{height:1122.666667pt;}
.w1_c02070{width:793.333333pt;}
.w0_c02070{width:793.626667pt;}
.x0_c02070{left:0.000000pt;}
.x1_c02070{left:113.440000pt;}
.xc_c02070{left:119.600000pt;}
.x7_c02070{left:120.560000pt;}
.x9_c02070{left:124.160000pt;}
.x8_c02070{left:131.280000pt;}
.xa_c02070{left:136.960000pt;}
.x6_c02070{left:143.040000pt;}
.x3_c02070{left:146.400000pt;}
.xb_c02070{left:196.160000pt;}
.x4_c02070{left:217.600000pt;}
.x5_c02070{left:223.040000pt;}
.xd_c02070{left:290.000000pt;}
.xf_c02070{left:314.640000pt;}
.xe_c02070{left:339.200000pt;}
.x2_c02070{left:388.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_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_eb7464ddec5bc9bebc4a2d95.woff2')format("woff");}.ff1_c02071{font-family:ff1_c02071;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02071;src:url('chunks/assets/font_d266aae6129a76b58eef4520.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;}
.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);}
.v11_c02071{vertical-align:-19.080000px;}
.vf_c02071{vertical-align:-18.000000px;}
.v8_c02071{vertical-align:-16.560000px;}
.v2_c02071{vertical-align:-14.040000px;}
.ve_c02071{vertical-align:-12.600000px;}
.v9_c02071{vertical-align:-11.520000px;}
.vc_c02071{vertical-align:-9.360000px;}
.vb_c02071{vertical-align:-5.760000px;}
.v1_c02071{vertical-align:-4.320000px;}
.vd_c02071{vertical-align:-2.160000px;}
.v13_c02071{vertical-align:-1.080000px;}
.v0_c02071{vertical-align:0.000000px;}
.v5_c02071{vertical-align:1.080600px;}
.v4_c02071{vertical-align:5.400000px;}
.va_c02071{vertical-align:7.198200px;}
.v6_c02071{vertical-align:11.160000px;}
.v3_c02071{vertical-align:13.680000px;}
.v12_c02071{vertical-align:14.758200px;}
.v7_c02071{vertical-align:16.560600px;}
.v10_c02071{vertical-align:18.360000px;}
.ls32_c02071{letter-spacing:-0.138996px;}
.ls34_c02071{letter-spacing:-0.130572px;}
.ls3c_c02071{letter-spacing:-0.118800px;}
.ls33_c02071{letter-spacing:-0.113724px;}
.ls30_c02071{letter-spacing:-0.102600px;}
.ls2e_c02071{letter-spacing:-0.086400px;}
.ls39_c02071{letter-spacing:-0.086184px;}
.ls3d_c02071{letter-spacing:-0.070200px;}
.ls36_c02071{letter-spacing:-0.043200px;}
.ls2c_c02071{letter-spacing:-0.019152px;}
.ls2f_c02071{letter-spacing:-0.016200px;}
.ls37_c02071{letter-spacing:-0.010800px;}
.ls40_c02071{letter-spacing:-0.009576px;}
.ls3b_c02071{letter-spacing:-0.004788px;}
.ls2b_c02071{letter-spacing:0.000000px;}
.ls12_c02071{letter-spacing:0.005400px;}
.ls9_c02071{letter-spacing:0.010800px;}
.ls7_c02071{letter-spacing:0.016200px;}
.ls1d_c02071{letter-spacing:0.019152px;}
.ls8_c02071{letter-spacing:0.027000px;}
.ls11_c02071{letter-spacing:0.028728px;}
.ls5_c02071{letter-spacing:0.032400px;}
.ls0_c02071{letter-spacing:0.032940px;}
.lsb_c02071{letter-spacing:0.037800px;}
.ls10_c02071{letter-spacing:0.043092px;}
.ls14_c02071{letter-spacing:0.043200px;}
.ls1_c02071{letter-spacing:0.046116px;}
.ls28_c02071{letter-spacing:0.052668px;}
.ls2_c02071{letter-spacing:0.052704px;}
.ls3_c02071{letter-spacing:0.057456px;}
.ls25_c02071{letter-spacing:0.059400px;}
.lsf_c02071{letter-spacing:0.072468px;}
.ls13_c02071{letter-spacing:0.076608px;}
.ls23_c02071{letter-spacing:0.081396px;}
.ls31_c02071{letter-spacing:0.092232px;}
.lsc_c02071{letter-spacing:0.109512px;}
.ls1e_c02071{letter-spacing:0.110124px;}
.ls29_c02071{letter-spacing:0.114912px;}
.lse_c02071{letter-spacing:0.117936px;}
.ls1b_c02071{letter-spacing:0.124488px;}
.ls1c_c02071{letter-spacing:0.134064px;}
.ls3e_c02071{letter-spacing:0.135000px;}
.ls15_c02071{letter-spacing:0.138348px;}
.ls2a_c02071{letter-spacing:0.138852px;}
.ls35_c02071{letter-spacing:0.151200px;}
.ls6_c02071{letter-spacing:0.158112px;}
.ls1a_c02071{letter-spacing:0.162792px;}
.ls17_c02071{letter-spacing:0.164700px;}
.ls38_c02071{letter-spacing:0.167580px;}
.lsd_c02071{letter-spacing:0.176904px;}
.ls2d_c02071{letter-spacing:0.177876px;}
.ls4_c02071{letter-spacing:0.181944px;}
.ls1f_c02071{letter-spacing:0.205884px;}
.ls24_c02071{letter-spacing:125.101800px;}
.ls42_c02071{letter-spacing:154.887156px;}
.ls3a_c02071{letter-spacing:156.060000px;}
.ls3f_c02071{letter-spacing:156.421800px;}
.ls27_c02071{letter-spacing:156.778200px;}
.ls41_c02071{letter-spacing:178.021800px;}
.ls21_c02071{letter-spacing:179.550000px;}
.lsa_c02071{letter-spacing:191.970000px;}
.ls19_c02071{letter-spacing:199.260000px;}
.ls16_c02071{letter-spacing:200.790000px;}
.ls18_c02071{letter-spacing:316.261800px;}
.ls22_c02071{letter-spacing:335.970000px;}
.ls20_c02071{letter-spacing:337.500000px;}
.ls26_c02071{letter-spacing:410.130000px;}
.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;}
}
.ws19_c02071{word-spacing:-0.568620px;}
.ws25_c02071{word-spacing:-0.296856px;}
.ws1c_c02071{word-spacing:-0.272916px;}
.ws1e_c02071{word-spacing:-0.253764px;}
.ws2a_c02071{word-spacing:-0.229824px;}
.ws20_c02071{word-spacing:-0.225036px;}
.ws1f_c02071{word-spacing:-0.215460px;}
.ws29_c02071{word-spacing:-0.205884px;}
.ws12_c02071{word-spacing:-0.189000px;}
.ws1b_c02071{word-spacing:-0.183600px;}
.ws21_c02071{word-spacing:-0.172368px;}
.wsc_c02071{word-spacing:-0.148428px;}
.ws23_c02071{word-spacing:-0.119700px;}
.ws22_c02071{word-spacing:-0.110124px;}
.ws27_c02071{word-spacing:-0.081396px;}
.ws8_c02071{word-spacing:-0.021600px;}
.ws9_c02071{word-spacing:0.000000px;}
.ws1a_c02071{word-spacing:0.019764px;}
.ws17_c02071{word-spacing:0.025272px;}
.ws24_c02071{word-spacing:0.039528px;}
.ws18_c02071{word-spacing:0.042120px;}
.wsb_c02071{word-spacing:0.046116px;}
.wsa_c02071{word-spacing:0.059292px;}
.ws28_c02071{word-spacing:0.118800px;}
.wsd_c02071{word-spacing:0.145800px;}
.ws10_c02071{word-spacing:0.151200px;}
.wsf_c02071{word-spacing:0.162000px;}
.ws11_c02071{word-spacing:0.194400px;}
.wse_c02071{word-spacing:0.264600px;}
.ws13_c02071{word-spacing:0.280800px;}
.ws16_c02071{word-spacing:0.454896px;}
.ws15_c02071{word-spacing:0.522288px;}
.ws14_c02071{word-spacing:0.770796px;}
.ws2_c02071{word-spacing:58.969440px;}
.ws1d_c02071{word-spacing:79.846560px;}
.ws5_c02071{word-spacing:87.769440px;}
.ws6_c02071{word-spacing:111.889440px;}
.ws3_c02071{word-spacing:116.986608px;}
.ws4_c02071{word-spacing:117.083304px;}
.ws7_c02071{word-spacing:143.986608px;}
.ws26_c02071{word-spacing:156.735000px;}
.ws1_c02071{word-spacing:191.449440px;}
.ws0_c02071{word-spacing:307.009440px;}
._22_c02071{margin-left:-42.838200px;}
._36_c02071{margin-left:-21.600000px;}
._e_c02071{margin-left:-1.044360px;}
._9_c02071{width:1.026000px;}
._31_c02071{width:22.566780px;}
._35_c02071{width:41.589540px;}
._30_c02071{width:52.287840px;}
._1c_c02071{width:62.340048px;}
._1d_c02071{width:73.584000px;}
._1f_c02071{width:75.420000px;}
._16_c02071{width:77.284440px;}
._17_c02071{width:79.558200px;}
._19_c02071{width:81.649440px;}
._20_c02071{width:84.060000px;}
._10_c02071{width:85.914000px;}
._f_c02071{width:87.861600px;}
._1a_c02071{width:90.874440px;}
._2f_c02071{width:93.927312px;}
._24_c02071{width:99.061164px;}
._18_c02071{width:100.375200px;}
._2d_c02071{width:102.864600px;}
._38_c02071{width:104.038200px;}
._15_c02071{width:105.467688px;}
._3a_c02071{width:109.185300px;}
._14_c02071{width:111.391524px;}
._2c_c02071{width:114.501600px;}
._37_c02071{width:115.910460px;}
._2e_c02071{width:118.116000px;}
._25_c02071{width:119.705220px;}
._29_c02071{width:121.035600px;}
._11_c02071{width:122.220000px;}
._28_c02071{width:124.320168px;}
._26_c02071{width:126.695016px;}
._12_c02071{width:127.980000px;}
._1e_c02071{width:129.373200px;}
._32_c02071{width:130.830696px;}
._2b_c02071{width:131.914584px;}
._27_c02071{width:137.266920px;}
._13_c02071{width:139.258944px;}
._34_c02071{width:140.762160px;}
._2a_c02071{width:145.847016px;}
._21_c02071{width:156.178836px;}
._23_c02071{width:159.186384px;}
._d_c02071{width:175.315536px;}
._33_c02071{width:180.191340px;}
._4_c02071{width:191.436372px;}
._0_c02071{width:194.421600px;}
._1b_c02071{width:219.324168px;}
._39_c02071{width:254.395656px;}
._2_c02071{width:287.726112px;}
._7_c02071{width:291.290400px;}
._b_c02071{width:306.996372px;}
._3_c02071{width:312.895800px;}
._6_c02071{width:370.330200px;}
._a_c02071{width:439.903800px;}
._8_c02071{width:470.354400px;}
._5_c02071{width:472.044600px;}
._1_c02071{width:551.261592px;}
._c_c02071{width:799.695000px;}
.fc0_c02071{color:rgb(0,0,0);}
.fs5_c02071{font-size:11.880000px;}
.fs4_c02071{font-size:42.120000px;}
.fs2_c02071{font-size:47.880000px;}
.fs3_c02071{font-size:54.000000px;}
.fs6_c02071{font-size:60.120000px;}
.fs1_c02071{font-size:65.880000px;}
.fs0_c02071{font-size:72.000000px;}
.y0_c02071{bottom:0.000000px;}
.y3_c02071{bottom:57.360450px;}
.y2_c02071{bottom:78.060450px;}
.y5d_c02071{bottom:111.360540px;}
.y5c_c02071{bottom:130.350450px;}
.y5a_c02071{bottom:152.490000px;}
.y5b_c02071{bottom:153.840450px;}
.y58_c02071{bottom:171.480000px;}
.y59_c02071{bottom:172.830450px;}
.y56_c02071{bottom:190.470000px;}
.y57_c02071{bottom:191.820450px;}
.y54_c02071{bottom:209.371050px;}
.y55_c02071{bottom:210.720450px;}
.y52_c02071{bottom:228.361050px;}
.y53_c02071{bottom:229.710600px;}
.y51_c02071{bottom:247.350450px;}
.y4f_c02071{bottom:266.340000px;}
.y50_c02071{bottom:267.690450px;}
.y4d_c02071{bottom:285.330450px;}
.y4e_c02071{bottom:286.680450px;}
.y4c_c02071{bottom:304.230450px;}
.y4a_c02071{bottom:323.220450px;}
.y4b_c02071{bottom:324.570450px;}
.y49_c02071{bottom:342.210600px;}
.y47_c02071{bottom:361.200000px;}
.y48_c02071{bottom:362.550450px;}
.y45_c02071{bottom:380.190000px;}
.y46_c02071{bottom:381.540600px;}
.y43_c02071{bottom:399.090600px;}
.y44_c02071{bottom:400.440450px;}
.y42_c02071{bottom:415.290600px;}
.y41_c02071{bottom:434.550450px;}
.y40_c02071{bottom:451.020600px;}
.y3f_c02071{bottom:471.810450px;}
.y3d_c02071{bottom:484.410450px;}
.y3e_c02071{bottom:485.760450px;}
.y3c_c02071{bottom:503.400450px;}
.y3a_c02071{bottom:522.390450px;}
.y3b_c02071{bottom:523.740450px;}
.y38_c02071{bottom:541.290450px;}
.y39_c02071{bottom:542.640450px;}
.y36_c02071{bottom:560.280450px;}
.y37_c02071{bottom:561.630450px;}
.y35_c02071{bottom:579.270450px;}
.y33_c02071{bottom:598.260450px;}
.y34_c02071{bottom:599.610450px;}
.y32_c02071{bottom:614.460450px;}
.y31_c02071{bottom:633.630450px;}
.y30_c02071{bottom:649.830450px;}
.y2f_c02071{bottom:669.180450px;}
.y2e_c02071{bottom:678.990450px;}
.y2c_c02071{bottom:681.780450px;}
.y2d_c02071{bottom:683.130450px;}
.y2b_c02071{bottom:697.980450px;}
.y29_c02071{bottom:700.770450px;}
.y2a_c02071{bottom:702.120450px;}
.y28_c02071{bottom:716.970450px;}
.y26_c02071{bottom:719.760450px;}
.y27_c02071{bottom:721.110450px;}
.y25_c02071{bottom:735.960450px;}
.y23_c02071{bottom:738.750450px;}
.y24_c02071{bottom:740.100450px;}
.y22_c02071{bottom:754.860450px;}
.y20_c02071{bottom:757.650450px;}
.y21_c02071{bottom:759.000450px;}
.y1f_c02071{bottom:776.640450px;}
.y1e_c02071{bottom:792.840450px;}
.y1c_c02071{bottom:795.630450px;}
.y1d_c02071{bottom:796.980450px;}
.y1b_c02071{bottom:811.830450px;}
.y19_c02071{bottom:814.620450px;}
.y1a_c02071{bottom:815.970450px;}
.y18_c02071{bottom:830.820450px;}
.y16_c02071{bottom:833.610600px;}
.y17_c02071{bottom:834.960450px;}
.y15_c02071{bottom:849.720450px;}
.y14_c02071{bottom:868.980450px;}
.y13_c02071{bottom:885.180600px;}
.y12_c02071{bottom:904.080450px;}
.y11_c02071{bottom:918.930441px;}
.y10_c02071{bottom:930.990450px;}
.yf_c02071{bottom:950.700450px;}
.ye_c02071{bottom:971.220450px;}
.yd_c02071{bottom:993.450450px;}
.yc_c02071{bottom:1009.020450px;}
.yb_c02071{bottom:1029.450450px;}
.ya_c02071{bottom:1049.970450px;}
.y9_c02071{bottom:1070.400450px;}
.y8_c02071{bottom:1090.920450px;}
.y7_c02071{bottom:1108.290450px;}
.y5_c02071{bottom:1109.370450px;}
.y6_c02071{bottom:1124.310450px;}
.y4_c02071{bottom:1141.500450px;}
.y1_c02071{bottom:1193.160450px;}
.he_c02071{height:10.551621px;}
.h7_c02071{height:36.957832px;}
.h4_c02071{height:42.526230px;}
.hb_c02071{height:43.060036px;}
.hd_c02071{height:43.063636px;}
.hc_c02071{height:43.064236px;}
.hf_c02071{height:43.091895px;}
.h8_c02071{height:47.381836px;}
.h5_c02071{height:47.961914px;}
.h9_c02071{height:48.462436px;}
.h3_c02071{height:58.513535px;}
.h10_c02071{height:59.121314px;}
.ha_c02071{height:59.121914px;}
.h2_c02071{height:63.175781px;}
.h1_c02071{height:63.949219px;}
.h6_c02071{height:71.485840px;}
.h0_c02071{height:1263.000000px;}
.w1_c02071{width:892.500000px;}
.w0_c02071{width:892.830000px;}
.x0_c02071{left:0.000000px;}
.x1_c02071{left:127.620000px;}
.x3_c02071{left:134.550000px;}
.x6_c02071{left:135.630000px;}
.x7_c02071{left:143.730000px;}
.x8_c02071{left:150.120000px;}
.x9_c02071{left:220.680000px;}
.x4_c02071{left:375.930000px;}
.x5_c02071{left:403.740000px;}
.x2_c02071{left:437.490000px;}
.xa_c02071{left:728.280000px;}
@media print{
.v11_c02071{vertical-align:-16.960000pt;}
.vf_c02071{vertical-align:-16.000000pt;}
.v8_c02071{vertical-align:-14.720000pt;}
.v2_c02071{vertical-align:-12.480000pt;}
.ve_c02071{vertical-align:-11.200000pt;}
.v9_c02071{vertical-align:-10.240000pt;}
.vc_c02071{vertical-align:-8.320000pt;}
.vb_c02071{vertical-align:-5.120000pt;}
.v1_c02071{vertical-align:-3.840000pt;}
.vd_c02071{vertical-align:-1.920000pt;}
.v13_c02071{vertical-align:-0.960000pt;}
.v0_c02071{vertical-align:0.000000pt;}
.v5_c02071{vertical-align:0.960533pt;}
.v4_c02071{vertical-align:4.800000pt;}
.va_c02071{vertical-align:6.398400pt;}
.v6_c02071{vertical-align:9.920000pt;}
.v3_c02071{vertical-align:12.160000pt;}
.v12_c02071{vertical-align:13.118400pt;}
.v7_c02071{vertical-align:14.720533pt;}
.v10_c02071{vertical-align:16.320000pt;}
.ls32_c02071{letter-spacing:-0.123552pt;}
.ls34_c02071{letter-spacing:-0.116064pt;}
.ls3c_c02071{letter-spacing:-0.105600pt;}
.ls33_c02071{letter-spacing:-0.101088pt;}
.ls30_c02071{letter-spacing:-0.091200pt;}
.ls2e_c02071{letter-spacing:-0.076800pt;}
.ls39_c02071{letter-spacing:-0.076608pt;}
.ls3d_c02071{letter-spacing:-0.062400pt;}
.ls36_c02071{letter-spacing:-0.038400pt;}
.ls2c_c02071{letter-spacing:-0.017024pt;}
.ls2f_c02071{letter-spacing:-0.014400pt;}
.ls37_c02071{letter-spacing:-0.009600pt;}
.ls40_c02071{letter-spacing:-0.008512pt;}
.ls3b_c02071{letter-spacing:-0.004256pt;}
.ls2b_c02071{letter-spacing:0.000000pt;}
.ls12_c02071{letter-spacing:0.004800pt;}
.ls9_c02071{letter-spacing:0.009600pt;}
.ls7_c02071{letter-spacing:0.014400pt;}
.ls1d_c02071{letter-spacing:0.017024pt;}
.ls8_c02071{letter-spacing:0.024000pt;}
.ls11_c02071{letter-spacing:0.025536pt;}
.ls5_c02071{letter-spacing:0.028800pt;}
.ls0_c02071{letter-spacing:0.029280pt;}
.lsb_c02071{letter-spacing:0.033600pt;}
.ls10_c02071{letter-spacing:0.038304pt;}
.ls14_c02071{letter-spacing:0.038400pt;}
.ls1_c02071{letter-spacing:0.040992pt;}
.ls28_c02071{letter-spacing:0.046816pt;}
.ls2_c02071{letter-spacing:0.046848pt;}
.ls3_c02071{letter-spacing:0.051072pt;}
.ls25_c02071{letter-spacing:0.052800pt;}
.lsf_c02071{letter-spacing:0.064416pt;}
.ls13_c02071{letter-spacing:0.068096pt;}
.ls23_c02071{letter-spacing:0.072352pt;}
.ls31_c02071{letter-spacing:0.081984pt;}
.lsc_c02071{letter-spacing:0.097344pt;}
.ls1e_c02071{letter-spacing:0.097888pt;}
.ls29_c02071{letter-spacing:0.102144pt;}
.lse_c02071{letter-spacing:0.104832pt;}
.ls1b_c02071{letter-spacing:0.110656pt;}
.ls1c_c02071{letter-spacing:0.119168pt;}
.ls3e_c02071{letter-spacing:0.120000pt;}
.ls15_c02071{letter-spacing:0.122976pt;}
.ls2a_c02071{letter-spacing:0.123424pt;}
.ls35_c02071{letter-spacing:0.134400pt;}
.ls6_c02071{letter-spacing:0.140544pt;}
.ls1a_c02071{letter-spacing:0.144704pt;}
.ls17_c02071{letter-spacing:0.146400pt;}
.ls38_c02071{letter-spacing:0.148960pt;}
.lsd_c02071{letter-spacing:0.157248pt;}
.ls2d_c02071{letter-spacing:0.158112pt;}
.ls4_c02071{letter-spacing:0.161728pt;}
.ls1f_c02071{letter-spacing:0.183008pt;}
.ls24_c02071{letter-spacing:111.201600pt;}
.ls42_c02071{letter-spacing:137.677472pt;}
.ls3a_c02071{letter-spacing:138.720000pt;}
.ls3f_c02071{letter-spacing:139.041600pt;}
.ls27_c02071{letter-spacing:139.358400pt;}
.ls41_c02071{letter-spacing:158.241600pt;}
.ls21_c02071{letter-spacing:159.600000pt;}
.lsa_c02071{letter-spacing:170.640000pt;}
.ls19_c02071{letter-spacing:177.120000pt;}
.ls16_c02071{letter-spacing:178.480000pt;}
.ls18_c02071{letter-spacing:281.121600pt;}
.ls22_c02071{letter-spacing:298.640000pt;}
.ls20_c02071{letter-spacing:300.000000pt;}
.ls26_c02071{letter-spacing:364.560000pt;}
.ws19_c02071{word-spacing:-0.505440pt;}
.ws25_c02071{word-spacing:-0.263872pt;}
.ws1c_c02071{word-spacing:-0.242592pt;}
.ws1e_c02071{word-spacing:-0.225568pt;}
.ws2a_c02071{word-spacing:-0.204288pt;}
.ws20_c02071{word-spacing:-0.200032pt;}
.ws1f_c02071{word-spacing:-0.191520pt;}
.ws29_c02071{word-spacing:-0.183008pt;}
.ws12_c02071{word-spacing:-0.168000pt;}
.ws1b_c02071{word-spacing:-0.163200pt;}
.ws21_c02071{word-spacing:-0.153216pt;}
.wsc_c02071{word-spacing:-0.131936pt;}
.ws23_c02071{word-spacing:-0.106400pt;}
.ws22_c02071{word-spacing:-0.097888pt;}
.ws27_c02071{word-spacing:-0.072352pt;}
.ws8_c02071{word-spacing:-0.019200pt;}
.ws9_c02071{word-spacing:0.000000pt;}
.ws1a_c02071{word-spacing:0.017568pt;}
.ws17_c02071{word-spacing:0.022464pt;}
.ws24_c02071{word-spacing:0.035136pt;}
.ws18_c02071{word-spacing:0.037440pt;}
.wsb_c02071{word-spacing:0.040992pt;}
.wsa_c02071{word-spacing:0.052704pt;}
.ws28_c02071{word-spacing:0.105600pt;}
.wsd_c02071{word-spacing:0.129600pt;}
.ws10_c02071{word-spacing:0.134400pt;}
.wsf_c02071{word-spacing:0.144000pt;}
.ws11_c02071{word-spacing:0.172800pt;}
.wse_c02071{word-spacing:0.235200pt;}
.ws13_c02071{word-spacing:0.249600pt;}
.ws16_c02071{word-spacing:0.404352pt;}
.ws15_c02071{word-spacing:0.464256pt;}
.ws14_c02071{word-spacing:0.685152pt;}
.ws2_c02071{word-spacing:52.417280pt;}
.ws1d_c02071{word-spacing:70.974720pt;}
.ws5_c02071{word-spacing:78.017280pt;}
.ws6_c02071{word-spacing:99.457280pt;}
.ws3_c02071{word-spacing:103.988096pt;}
.ws4_c02071{word-spacing:104.074048pt;}
.ws7_c02071{word-spacing:127.988096pt;}
.ws26_c02071{word-spacing:139.320000pt;}
.ws1_c02071{word-spacing:170.177280pt;}
.ws0_c02071{word-spacing:272.897280pt;}
._22_c02071{margin-left:-38.078400pt;}
._36_c02071{margin-left:-19.200000pt;}
._e_c02071{margin-left:-0.928320pt;}
._9_c02071{width:0.912000pt;}
._31_c02071{width:20.059360pt;}
._35_c02071{width:36.968480pt;}
._30_c02071{width:46.478080pt;}
._1c_c02071{width:55.413376pt;}
._1d_c02071{width:65.408000pt;}
._1f_c02071{width:67.040000pt;}
._16_c02071{width:68.697280pt;}
._17_c02071{width:70.718400pt;}
._19_c02071{width:72.577280pt;}
._20_c02071{width:74.720000pt;}
._10_c02071{width:76.368000pt;}
._f_c02071{width:78.099200pt;}
._1a_c02071{width:80.777280pt;}
._2f_c02071{width:83.490944pt;}
._24_c02071{width:88.054368pt;}
._18_c02071{width:89.222400pt;}
._2d_c02071{width:91.435200pt;}
._38_c02071{width:92.478400pt;}
._15_c02071{width:93.749056pt;}
._3a_c02071{width:97.053600pt;}
._14_c02071{width:99.014688pt;}
._2c_c02071{width:101.779200pt;}
._37_c02071{width:103.031520pt;}
._2e_c02071{width:104.992000pt;}
._25_c02071{width:106.404640pt;}
._29_c02071{width:107.587200pt;}
._11_c02071{width:108.640000pt;}
._28_c02071{width:110.506816pt;}
._26_c02071{width:112.617792pt;}
._12_c02071{width:113.760000pt;}
._1e_c02071{width:114.998400pt;}
._32_c02071{width:116.293952pt;}
._2b_c02071{width:117.257408pt;}
._27_c02071{width:122.015040pt;}
._13_c02071{width:123.785728pt;}
._34_c02071{width:125.121920pt;}
._2a_c02071{width:129.641792pt;}
._21_c02071{width:138.825632pt;}
._23_c02071{width:141.499008pt;}
._d_c02071{width:155.836032pt;}
._33_c02071{width:160.170080pt;}
._4_c02071{width:170.165664pt;}
._0_c02071{width:172.819200pt;}
._1b_c02071{width:194.954816pt;}
._39_c02071{width:226.129472pt;}
._2_c02071{width:255.756544pt;}
._7_c02071{width:258.924800pt;}
._b_c02071{width:272.885664pt;}
._3_c02071{width:278.129600pt;}
._6_c02071{width:329.182400pt;}
._a_c02071{width:391.025600pt;}
._8_c02071{width:418.092800pt;}
._5_c02071{width:419.595200pt;}
._1_c02071{width:490.010304pt;}
._c_c02071{width:710.840000pt;}
.fs5_c02071{font-size:10.560000pt;}
.fs4_c02071{font-size:37.440000pt;}
.fs2_c02071{font-size:42.560000pt;}
.fs3_c02071{font-size:48.000000pt;}
.fs6_c02071{font-size:53.440000pt;}
.fs1_c02071{font-size:58.560000pt;}
.fs0_c02071{font-size:64.000000pt;}
.y0_c02071{bottom:0.000000pt;}
.y3_c02071{bottom:50.987067pt;}
.y2_c02071{bottom:69.387067pt;}
.y5d_c02071{bottom:98.987147pt;}
.y5c_c02071{bottom:115.867067pt;}
.y5a_c02071{bottom:135.546667pt;}
.y5b_c02071{bottom:136.747067pt;}
.y58_c02071{bottom:152.426667pt;}
.y59_c02071{bottom:153.627067pt;}
.y56_c02071{bottom:169.306667pt;}
.y57_c02071{bottom:170.507067pt;}
.y54_c02071{bottom:186.107600pt;}
.y55_c02071{bottom:187.307067pt;}
.y52_c02071{bottom:202.987600pt;}
.y53_c02071{bottom:204.187200pt;}
.y51_c02071{bottom:219.867067pt;}
.y4f_c02071{bottom:236.746667pt;}
.y50_c02071{bottom:237.947067pt;}
.y4d_c02071{bottom:253.627067pt;}
.y4e_c02071{bottom:254.827067pt;}
.y4c_c02071{bottom:270.427067pt;}
.y4a_c02071{bottom:287.307067pt;}
.y4b_c02071{bottom:288.507067pt;}
.y49_c02071{bottom:304.187200pt;}
.y47_c02071{bottom:321.066667pt;}
.y48_c02071{bottom:322.267067pt;}
.y45_c02071{bottom:337.946667pt;}
.y46_c02071{bottom:339.147200pt;}
.y43_c02071{bottom:354.747200pt;}
.y44_c02071{bottom:355.947067pt;}
.y42_c02071{bottom:369.147200pt;}
.y41_c02071{bottom:386.267067pt;}
.y40_c02071{bottom:400.907200pt;}
.y3f_c02071{bottom:419.387067pt;}
.y3d_c02071{bottom:430.587067pt;}
.y3e_c02071{bottom:431.787067pt;}
.y3c_c02071{bottom:447.467067pt;}
.y3a_c02071{bottom:464.347067pt;}
.y3b_c02071{bottom:465.547067pt;}
.y38_c02071{bottom:481.147067pt;}
.y39_c02071{bottom:482.347067pt;}
.y36_c02071{bottom:498.027067pt;}
.y37_c02071{bottom:499.227067pt;}
.y35_c02071{bottom:514.907067pt;}
.y33_c02071{bottom:531.787067pt;}
.y34_c02071{bottom:532.987067pt;}
.y32_c02071{bottom:546.187067pt;}
.y31_c02071{bottom:563.227067pt;}
.y30_c02071{bottom:577.627067pt;}
.y2f_c02071{bottom:594.827067pt;}
.y2e_c02071{bottom:603.547067pt;}
.y2c_c02071{bottom:606.027067pt;}
.y2d_c02071{bottom:607.227067pt;}
.y2b_c02071{bottom:620.427067pt;}
.y29_c02071{bottom:622.907067pt;}
.y2a_c02071{bottom:624.107067pt;}
.y28_c02071{bottom:637.307067pt;}
.y26_c02071{bottom:639.787067pt;}
.y27_c02071{bottom:640.987067pt;}
.y25_c02071{bottom:654.187067pt;}
.y23_c02071{bottom:656.667067pt;}
.y24_c02071{bottom:657.867067pt;}
.y22_c02071{bottom:670.987067pt;}
.y20_c02071{bottom:673.467067pt;}
.y21_c02071{bottom:674.667067pt;}
.y1f_c02071{bottom:690.347067pt;}
.y1e_c02071{bottom:704.747067pt;}
.y1c_c02071{bottom:707.227067pt;}
.y1d_c02071{bottom:708.427067pt;}
.y1b_c02071{bottom:721.627067pt;}
.y19_c02071{bottom:724.107067pt;}
.y1a_c02071{bottom:725.307067pt;}
.y18_c02071{bottom:738.507067pt;}
.y16_c02071{bottom:740.987200pt;}
.y17_c02071{bottom:742.187067pt;}
.y15_c02071{bottom:755.307067pt;}
.y14_c02071{bottom:772.427067pt;}
.y13_c02071{bottom:786.827200pt;}
.y12_c02071{bottom:803.627067pt;}
.y11_c02071{bottom:816.827059pt;}
.y10_c02071{bottom:827.547067pt;}
.yf_c02071{bottom:845.067067pt;}
.ye_c02071{bottom:863.307067pt;}
.yd_c02071{bottom:883.067067pt;}
.yc_c02071{bottom:896.907067pt;}
.yb_c02071{bottom:915.067067pt;}
.ya_c02071{bottom:933.307067pt;}
.y9_c02071{bottom:951.467067pt;}
.y8_c02071{bottom:969.707067pt;}
.y7_c02071{bottom:985.147067pt;}
.y5_c02071{bottom:986.107067pt;}
.y6_c02071{bottom:999.387067pt;}
.y4_c02071{bottom:1014.667067pt;}
.y1_c02071{bottom:1060.587067pt;}
.he_c02071{height:9.379219pt;}
.h7_c02071{height:32.851406pt;}
.h4_c02071{height:37.801094pt;}
.hb_c02071{height:38.275588pt;}
.hd_c02071{height:38.278787pt;}
.hc_c02071{height:38.279321pt;}
.hf_c02071{height:38.303906pt;}
.h8_c02071{height:42.117188pt;}
.h5_c02071{height:42.632812pt;}
.h9_c02071{height:43.077721pt;}
.h3_c02071{height:52.012031pt;}
.h10_c02071{height:52.552279pt;}
.ha_c02071{height:52.552812pt;}
.h2_c02071{height:56.156250pt;}
.h1_c02071{height:56.843750pt;}
.h6_c02071{height:63.542969pt;}
.h0_c02071{height:1122.666667pt;}
.w1_c02071{width:793.333333pt;}
.w0_c02071{width:793.626667pt;}
.x0_c02071{left:0.000000pt;}
.x1_c02071{left:113.440000pt;}
.x3_c02071{left:119.600000pt;}
.x6_c02071{left:120.560000pt;}
.x7_c02071{left:127.760000pt;}
.x8_c02071{left:133.440000pt;}
.x9_c02071{left:196.160000pt;}
.x4_c02071{left:334.160000pt;}
.x5_c02071{left:358.880000pt;}
.x2_c02071{left:388.880000pt;}
.xa_c02071{left:647.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e78b5fb15c9d6911c3375ac.woff2')format("woff");}.ff1_c02072{font-family:ff1_c02072;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02072;src:url('chunks/assets/font_ad94a5db9a43f76d9edf7ac1.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;}
.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);}
.v3_c02072{vertical-align:-19.080000px;}
.v1_c02072{vertical-align:-4.320000px;}
.v2_c02072{vertical-align:-2.520000px;}
.v0_c02072{vertical-align:0.000000px;}
.v4_c02072{vertical-align:1.080000px;}
.ls31_c02072{letter-spacing:-0.078156px;}
.ls2d_c02072{letter-spacing:-0.067032px;}
.ls2a_c02072{letter-spacing:-0.052668px;}
.ls2b_c02072{letter-spacing:-0.033516px;}
.ls28_c02072{letter-spacing:-0.019152px;}
.ls2c_c02072{letter-spacing:-0.014364px;}
.ls29_c02072{letter-spacing:-0.009576px;}
.ls2f_c02072{letter-spacing:-0.006012px;}
.ls27_c02072{letter-spacing:0.000000px;}
.ls12_c02072{letter-spacing:0.006588px;}
.ls30_c02072{letter-spacing:0.007200px;}
.ls1e_c02072{letter-spacing:0.013176px;}
.ls17_c02072{letter-spacing:0.014400px;}
.ls21_c02072{letter-spacing:0.018036px;}
.ls1_c02072{letter-spacing:0.019764px;}
.ls13_c02072{letter-spacing:0.023940px;}
.ls23_c02072{letter-spacing:0.026352px;}
.ls16_c02072{letter-spacing:0.028728px;}
.ls1b_c02072{letter-spacing:0.039528px;}
.lsc_c02072{letter-spacing:0.043092px;}
.ls19_c02072{letter-spacing:0.046116px;}
.ls11_c02072{letter-spacing:0.052704px;}
.ls2_c02072{letter-spacing:0.057456px;}
.ls1f_c02072{letter-spacing:0.059292px;}
.ls1c_c02072{letter-spacing:0.065880px;}
.lsf_c02072{letter-spacing:0.066132px;}
.lsa_c02072{letter-spacing:0.067032px;}
.ls22_c02072{letter-spacing:0.072468px;}
.lsd_c02072{letter-spacing:0.076608px;}
.ls0_c02072{letter-spacing:0.079056px;}
.ls10_c02072{letter-spacing:0.084168px;}
.ls26_c02072{letter-spacing:0.085644px;}
.ls9_c02072{letter-spacing:0.086184px;}
.ls25_c02072{letter-spacing:0.092232px;}
.ls6_c02072{letter-spacing:0.105408px;}
.lsb_c02072{letter-spacing:0.114912px;}
.lse_c02072{letter-spacing:0.119700px;}
.ls14_c02072{letter-spacing:0.124488px;}
.ls8_c02072{letter-spacing:0.125172px;}
.ls15_c02072{letter-spacing:0.134064px;}
.ls1d_c02072{letter-spacing:0.138348px;}
.ls18_c02072{letter-spacing:0.144288px;}
.ls5_c02072{letter-spacing:0.144936px;}
.ls1a_c02072{letter-spacing:0.151524px;}
.ls4_c02072{letter-spacing:0.158112px;}
.ls24_c02072{letter-spacing:0.164700px;}
.ls20_c02072{letter-spacing:0.177876px;}
.ls3_c02072{letter-spacing:0.181944px;}
.ls2e_c02072{letter-spacing:0.184464px;}
.ls7_c02072{letter-spacing:191.970000px;}
.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;}
}
.ws3_c02072{word-spacing:-16.647876px;}
.ws2_c02072{word-spacing:-16.476588px;}
.ws1a_c02072{word-spacing:-0.225036px;}
.ws16_c02072{word-spacing:-0.215460px;}
.ws10_c02072{word-spacing:-0.210672px;}
.ws8_c02072{word-spacing:-0.148428px;}
.ws15_c02072{word-spacing:-0.114912px;}
.ws1b_c02072{word-spacing:-0.086400px;}
.ws18_c02072{word-spacing:-0.076608px;}
.ws22_c02072{word-spacing:-0.064800px;}
.ws17_c02072{word-spacing:-0.057456px;}
.ws1d_c02072{word-spacing:-0.054108px;}
.ws9_c02072{word-spacing:-0.052704px;}
.ws14_c02072{word-spacing:-0.038304px;}
.ws19_c02072{word-spacing:-0.023940px;}
.ws4_c02072{word-spacing:-0.021600px;}
.ws1c_c02072{word-spacing:-0.014400px;}
.wsa_c02072{word-spacing:-0.013176px;}
.ws5_c02072{word-spacing:0.000000px;}
.ws12_c02072{word-spacing:0.006012px;}
.ws25_c02072{word-spacing:0.006588px;}
.ws6_c02072{word-spacing:0.013176px;}
.ws23_c02072{word-spacing:0.019764px;}
.ws11_c02072{word-spacing:0.024048px;}
.ws20_c02072{word-spacing:0.026352px;}
.ws13_c02072{word-spacing:0.039528px;}
.ws1e_c02072{word-spacing:0.046116px;}
.ws1f_c02072{word-spacing:0.052704px;}
.ws24_c02072{word-spacing:0.065880px;}
.ws7_c02072{word-spacing:0.072468px;}
.ws21_c02072{word-spacing:0.079056px;}
.wsd_c02072{word-spacing:1.235304px;}
.wsf_c02072{word-spacing:1.273608px;}
.wse_c02072{word-spacing:1.307124px;}
.wsb_c02072{word-spacing:5.941908px;}
.wsc_c02072{word-spacing:5.961060px;}
.ws1_c02072{word-spacing:191.449440px;}
.ws0_c02072{word-spacing:307.009440px;}
._1_c02072{margin-left:-1.014552px;}
._c_c02072{width:1.268820px;}
._1f_c02072{width:104.002380px;}
._23_c02072{width:122.515776px;}
._18_c02072{width:136.358496px;}
._16_c02072{width:140.850000px;}
._2a_c02072{width:152.176212px;}
._1c_c02072{width:169.834248px;}
._25_c02072{width:171.380232px;}
._17_c02072{width:174.202416px;}
._a_c02072{width:175.315536px;}
._1d_c02072{width:183.649608px;}
._5_c02072{width:191.436372px;}
._0_c02072{width:194.421600px;}
._15_c02072{width:205.288704px;}
._14_c02072{width:241.025544px;}
._28_c02072{width:247.063176px;}
._1a_c02072{width:252.450000px;}
._1b_c02072{width:259.885944px;}
._4_c02072{width:269.751528px;}
._7_c02072{width:276.541632px;}
._19_c02072{width:282.267504px;}
._3_c02072{width:287.726112px;}
._1e_c02072{width:302.444424px;}
._8_c02072{width:307.354248px;}
._27_c02072{width:324.972864px;}
._20_c02072{width:331.701732px;}
._2b_c02072{width:336.422808px;}
._11_c02072{width:352.894572px;}
._6_c02072{width:357.266520px;}
._21_c02072{width:364.701024px;}
._d_c02072{width:372.870108px;}
._2_c02072{width:385.954200px;}
._f_c02072{width:422.770140px;}
._26_c02072{width:437.166504px;}
._10_c02072{width:484.042680px;}
._12_c02072{width:510.471936px;}
._e_c02072{width:512.397216px;}
._b_c02072{width:521.892288px;}
._24_c02072{width:545.413932px;}
._29_c02072{width:553.141656px;}
._9_c02072{width:583.070220px;}
._13_c02072{width:810.964440px;}
._22_c02072{width:816.179940px;}
.fc0_c02072{color:rgb(0,0,0);}
.fs5_c02072{font-size:18.000000px;}
.fs2_c02072{font-size:47.880000px;}
.fs4_c02072{font-size:54.000000px;}
.fs3_c02072{font-size:60.120000px;}
.fs1_c02072{font-size:65.880000px;}
.fs0_c02072{font-size:72.000000px;}
.y0_c02072{bottom:0.000000px;}
.y3_c02072{bottom:57.360450px;}
.y2_c02072{bottom:78.060450px;}
.y41_c02072{bottom:129.630450px;}
.y40_c02072{bottom:134.850450px;}
.y3f_c02072{bottom:139.980450px;}
.y3e_c02072{bottom:145.200450px;}
.y3d_c02072{bottom:150.330450px;}
.y3c_c02072{bottom:155.550450px;}
.y3b_c02072{bottom:163.740450px;}
.y3a_c02072{bottom:182.640450px;}
.y39_c02072{bottom:201.630450px;}
.y38_c02072{bottom:220.620600px;}
.y37_c02072{bottom:239.610450px;}
.y36_c02072{bottom:258.600450px;}
.y35_c02072{bottom:277.590450px;}
.y34_c02072{bottom:296.130450px;}
.y33_c02072{bottom:314.400450px;}
.y32_c02072{bottom:337.530900px;}
.y31_c02072{bottom:353.100450px;}
.y30_c02072{bottom:370.740450px;}
.y2f_c02072{bottom:389.730450px;}
.y2e_c02072{bottom:408.720450px;}
.y2d_c02072{bottom:427.710600px;}
.y2c_c02072{bottom:446.700600px;}
.y2b_c02072{bottom:465.600450px;}
.y2a_c02072{bottom:484.590600px;}
.y29_c02072{bottom:503.220450px;}
.y28_c02072{bottom:521.130450px;}
.y27_c02072{bottom:543.090900px;}
.y26_c02072{bottom:558.660450px;}
.y25_c02072{bottom:575.850450px;}
.y24_c02072{bottom:596.370000px;}
.y23_c02072{bottom:611.850450px;}
.y22_c02072{bottom:627.329874px;}
.y21_c02072{bottom:641.100162px;}
.y20_c02072{bottom:654.870450px;}
.y1f_c02072{bottom:677.370450px;}
.y1e_c02072{bottom:701.400450px;}
.y1d_c02072{bottom:715.170450px;}
.y1c_c02072{bottom:735.600450px;}
.y1b_c02072{bottom:756.120450px;}
.y1a_c02072{bottom:776.550450px;}
.y19_c02072{bottom:797.070450px;}
.y18_c02072{bottom:817.500450px;}
.y17_c02072{bottom:833.880450px;}
.y15_c02072{bottom:834.600450px;}
.y16_c02072{bottom:849.630450px;}
.y14_c02072{bottom:868.080450px;}
.y13_c02072{bottom:886.260450px;}
.y12_c02072{bottom:902.280648px;}
.y11_c02072{bottom:919.560639px;}
.y10_c02072{bottom:936.750450px;}
.yf_c02072{bottom:953.489874px;}
.ye_c02072{bottom:967.260162px;}
.yd_c02072{bottom:981.030450px;}
.yc_c02072{bottom:999.390450px;}
.yb_c02072{bottom:1019.820450px;}
.ya_c02072{bottom:1040.340450px;}
.y9_c02072{bottom:1060.770450px;}
.y8_c02072{bottom:1081.290450px;}
.y7_c02072{bottom:1101.720450px;}
.y5_c02072{bottom:1102.530450px;}
.y6_c02072{bottom:1117.560450px;}
.y4_c02072{bottom:1141.500450px;}
.y1_c02072{bottom:1193.160450px;}
.ha_c02072{height:15.987305px;}
.h5_c02072{height:42.011895px;}
.h4_c02072{height:42.526230px;}
.h7_c02072{height:47.961914px;}
.h6_c02072{height:52.751777px;}
.h9_c02072{height:53.397598px;}
.h3_c02072{height:58.513535px;}
.h8_c02072{height:58.885840px;}
.h2_c02072{height:63.175781px;}
.h1_c02072{height:63.949219px;}
.h0_c02072{height:1263.000000px;}
.w1_c02072{width:892.500000px;}
.w0_c02072{width:892.830000px;}
.x0_c02072{left:0.000000px;}
.x1_c02072{left:127.620000px;}
.x3_c02072{left:134.550000px;}
.x9_c02072{left:135.630000px;}
.x6_c02072{left:148.950576px;}
.xa_c02072{left:162.450000px;}
.xb_c02072{left:319.950000px;}
.x4_c02072{left:327.330000px;}
.x5_c02072{left:355.140000px;}
.x7_c02072{left:375.930000px;}
.x8_c02072{left:403.740000px;}
.x2_c02072{left:437.490000px;}
@media print{
.v3_c02072{vertical-align:-16.960000pt;}
.v1_c02072{vertical-align:-3.840000pt;}
.v2_c02072{vertical-align:-2.240000pt;}
.v0_c02072{vertical-align:0.000000pt;}
.v4_c02072{vertical-align:0.960000pt;}
.ls31_c02072{letter-spacing:-0.069472pt;}
.ls2d_c02072{letter-spacing:-0.059584pt;}
.ls2a_c02072{letter-spacing:-0.046816pt;}
.ls2b_c02072{letter-spacing:-0.029792pt;}
.ls28_c02072{letter-spacing:-0.017024pt;}
.ls2c_c02072{letter-spacing:-0.012768pt;}
.ls29_c02072{letter-spacing:-0.008512pt;}
.ls2f_c02072{letter-spacing:-0.005344pt;}
.ls27_c02072{letter-spacing:0.000000pt;}
.ls12_c02072{letter-spacing:0.005856pt;}
.ls30_c02072{letter-spacing:0.006400pt;}
.ls1e_c02072{letter-spacing:0.011712pt;}
.ls17_c02072{letter-spacing:0.012800pt;}
.ls21_c02072{letter-spacing:0.016032pt;}
.ls1_c02072{letter-spacing:0.017568pt;}
.ls13_c02072{letter-spacing:0.021280pt;}
.ls23_c02072{letter-spacing:0.023424pt;}
.ls16_c02072{letter-spacing:0.025536pt;}
.ls1b_c02072{letter-spacing:0.035136pt;}
.lsc_c02072{letter-spacing:0.038304pt;}
.ls19_c02072{letter-spacing:0.040992pt;}
.ls11_c02072{letter-spacing:0.046848pt;}
.ls2_c02072{letter-spacing:0.051072pt;}
.ls1f_c02072{letter-spacing:0.052704pt;}
.ls1c_c02072{letter-spacing:0.058560pt;}
.lsf_c02072{letter-spacing:0.058784pt;}
.lsa_c02072{letter-spacing:0.059584pt;}
.ls22_c02072{letter-spacing:0.064416pt;}
.lsd_c02072{letter-spacing:0.068096pt;}
.ls0_c02072{letter-spacing:0.070272pt;}
.ls10_c02072{letter-spacing:0.074816pt;}
.ls26_c02072{letter-spacing:0.076128pt;}
.ls9_c02072{letter-spacing:0.076608pt;}
.ls25_c02072{letter-spacing:0.081984pt;}
.ls6_c02072{letter-spacing:0.093696pt;}
.lsb_c02072{letter-spacing:0.102144pt;}
.lse_c02072{letter-spacing:0.106400pt;}
.ls14_c02072{letter-spacing:0.110656pt;}
.ls8_c02072{letter-spacing:0.111264pt;}
.ls15_c02072{letter-spacing:0.119168pt;}
.ls1d_c02072{letter-spacing:0.122976pt;}
.ls18_c02072{letter-spacing:0.128256pt;}
.ls5_c02072{letter-spacing:0.128832pt;}
.ls1a_c02072{letter-spacing:0.134688pt;}
.ls4_c02072{letter-spacing:0.140544pt;}
.ls24_c02072{letter-spacing:0.146400pt;}
.ls20_c02072{letter-spacing:0.158112pt;}
.ls3_c02072{letter-spacing:0.161728pt;}
.ls2e_c02072{letter-spacing:0.163968pt;}
.ls7_c02072{letter-spacing:170.640000pt;}
.ws3_c02072{word-spacing:-14.798112pt;}
.ws2_c02072{word-spacing:-14.645856pt;}
.ws1a_c02072{word-spacing:-0.200032pt;}
.ws16_c02072{word-spacing:-0.191520pt;}
.ws10_c02072{word-spacing:-0.187264pt;}
.ws8_c02072{word-spacing:-0.131936pt;}
.ws15_c02072{word-spacing:-0.102144pt;}
.ws1b_c02072{word-spacing:-0.076800pt;}
.ws18_c02072{word-spacing:-0.068096pt;}
.ws22_c02072{word-spacing:-0.057600pt;}
.ws17_c02072{word-spacing:-0.051072pt;}
.ws1d_c02072{word-spacing:-0.048096pt;}
.ws9_c02072{word-spacing:-0.046848pt;}
.ws14_c02072{word-spacing:-0.034048pt;}
.ws19_c02072{word-spacing:-0.021280pt;}
.ws4_c02072{word-spacing:-0.019200pt;}
.ws1c_c02072{word-spacing:-0.012800pt;}
.wsa_c02072{word-spacing:-0.011712pt;}
.ws5_c02072{word-spacing:0.000000pt;}
.ws12_c02072{word-spacing:0.005344pt;}
.ws25_c02072{word-spacing:0.005856pt;}
.ws6_c02072{word-spacing:0.011712pt;}
.ws23_c02072{word-spacing:0.017568pt;}
.ws11_c02072{word-spacing:0.021376pt;}
.ws20_c02072{word-spacing:0.023424pt;}
.ws13_c02072{word-spacing:0.035136pt;}
.ws1e_c02072{word-spacing:0.040992pt;}
.ws1f_c02072{word-spacing:0.046848pt;}
.ws24_c02072{word-spacing:0.058560pt;}
.ws7_c02072{word-spacing:0.064416pt;}
.ws21_c02072{word-spacing:0.070272pt;}
.wsd_c02072{word-spacing:1.098048pt;}
.wsf_c02072{word-spacing:1.132096pt;}
.wse_c02072{word-spacing:1.161888pt;}
.wsb_c02072{word-spacing:5.281696pt;}
.wsc_c02072{word-spacing:5.298720pt;}
.ws1_c02072{word-spacing:170.177280pt;}
.ws0_c02072{word-spacing:272.897280pt;}
._1_c02072{margin-left:-0.901824pt;}
._c_c02072{width:1.127840pt;}
._1f_c02072{width:92.446560pt;}
._23_c02072{width:108.902912pt;}
._18_c02072{width:121.207552pt;}
._16_c02072{width:125.200000pt;}
._2a_c02072{width:135.267744pt;}
._1c_c02072{width:150.963776pt;}
._25_c02072{width:152.337984pt;}
._17_c02072{width:154.846592pt;}
._a_c02072{width:155.836032pt;}
._1d_c02072{width:163.244096pt;}
._5_c02072{width:170.165664pt;}
._0_c02072{width:172.819200pt;}
._15_c02072{width:182.478848pt;}
._14_c02072{width:214.244928pt;}
._28_c02072{width:219.611712pt;}
._1a_c02072{width:224.400000pt;}
._1b_c02072{width:231.009728pt;}
._4_c02072{width:239.779136pt;}
._7_c02072{width:245.814784pt;}
._19_c02072{width:250.904448pt;}
._3_c02072{width:255.756544pt;}
._1e_c02072{width:268.839488pt;}
._8_c02072{width:273.203776pt;}
._27_c02072{width:288.864768pt;}
._20_c02072{width:294.845984pt;}
._2b_c02072{width:299.042496pt;}
._11_c02072{width:313.684064pt;}
._6_c02072{width:317.570240pt;}
._21_c02072{width:324.178688pt;}
._d_c02072{width:331.440096pt;}
._2_c02072{width:343.070400pt;}
._f_c02072{width:375.795680pt;}
._26_c02072{width:388.592448pt;}
._10_c02072{width:430.260160pt;}
._12_c02072{width:453.752832pt;}
._e_c02072{width:455.464192pt;}
._b_c02072{width:463.904256pt;}
._24_c02072{width:484.812384pt;}
._29_c02072{width:491.681472pt;}
._9_c02072{width:518.284640pt;}
._13_c02072{width:720.857280pt;}
._22_c02072{width:725.493280pt;}
.fs5_c02072{font-size:16.000000pt;}
.fs2_c02072{font-size:42.560000pt;}
.fs4_c02072{font-size:48.000000pt;}
.fs3_c02072{font-size:53.440000pt;}
.fs1_c02072{font-size:58.560000pt;}
.fs0_c02072{font-size:64.000000pt;}
.y0_c02072{bottom:0.000000pt;}
.y3_c02072{bottom:50.987067pt;}
.y2_c02072{bottom:69.387067pt;}
.y41_c02072{bottom:115.227067pt;}
.y40_c02072{bottom:119.867067pt;}
.y3f_c02072{bottom:124.427067pt;}
.y3e_c02072{bottom:129.067067pt;}
.y3d_c02072{bottom:133.627067pt;}
.y3c_c02072{bottom:138.267067pt;}
.y3b_c02072{bottom:145.547067pt;}
.y3a_c02072{bottom:162.347067pt;}
.y39_c02072{bottom:179.227067pt;}
.y38_c02072{bottom:196.107200pt;}
.y37_c02072{bottom:212.987067pt;}
.y36_c02072{bottom:229.867067pt;}
.y35_c02072{bottom:246.747067pt;}
.y34_c02072{bottom:263.227067pt;}
.y33_c02072{bottom:279.467067pt;}
.y32_c02072{bottom:300.027467pt;}
.y31_c02072{bottom:313.867067pt;}
.y30_c02072{bottom:329.547067pt;}
.y2f_c02072{bottom:346.427067pt;}
.y2e_c02072{bottom:363.307067pt;}
.y2d_c02072{bottom:380.187200pt;}
.y2c_c02072{bottom:397.067200pt;}
.y2b_c02072{bottom:413.867067pt;}
.y2a_c02072{bottom:430.747200pt;}
.y29_c02072{bottom:447.307067pt;}
.y28_c02072{bottom:463.227067pt;}
.y27_c02072{bottom:482.747467pt;}
.y26_c02072{bottom:496.587067pt;}
.y25_c02072{bottom:511.867067pt;}
.y24_c02072{bottom:530.106667pt;}
.y23_c02072{bottom:543.867067pt;}
.y22_c02072{bottom:557.626555pt;}
.y21_c02072{bottom:569.866811pt;}
.y20_c02072{bottom:582.107067pt;}
.y1f_c02072{bottom:602.107067pt;}
.y1e_c02072{bottom:623.467067pt;}
.y1d_c02072{bottom:635.707067pt;}
.y1c_c02072{bottom:653.867067pt;}
.y1b_c02072{bottom:672.107067pt;}
.y1a_c02072{bottom:690.267067pt;}
.y19_c02072{bottom:708.507067pt;}
.y18_c02072{bottom:726.667067pt;}
.y17_c02072{bottom:741.227067pt;}
.y15_c02072{bottom:741.867067pt;}
.y16_c02072{bottom:755.227067pt;}
.y14_c02072{bottom:771.627067pt;}
.y13_c02072{bottom:787.787067pt;}
.y12_c02072{bottom:802.027243pt;}
.y11_c02072{bottom:817.387235pt;}
.y10_c02072{bottom:832.667067pt;}
.yf_c02072{bottom:847.546555pt;}
.ye_c02072{bottom:859.786811pt;}
.yd_c02072{bottom:872.027067pt;}
.yc_c02072{bottom:888.347067pt;}
.yb_c02072{bottom:906.507067pt;}
.ya_c02072{bottom:924.747067pt;}
.y9_c02072{bottom:942.907067pt;}
.y8_c02072{bottom:961.147067pt;}
.y7_c02072{bottom:979.307067pt;}
.y5_c02072{bottom:980.027067pt;}
.y6_c02072{bottom:993.387067pt;}
.y4_c02072{bottom:1014.667067pt;}
.y1_c02072{bottom:1060.587067pt;}
.ha_c02072{height:14.210938pt;}
.h5_c02072{height:37.343906pt;}
.h4_c02072{height:37.801094pt;}
.h7_c02072{height:42.632812pt;}
.h6_c02072{height:46.890469pt;}
.h9_c02072{height:47.464531pt;}
.h3_c02072{height:52.012031pt;}
.h8_c02072{height:52.342969pt;}
.h2_c02072{height:56.156250pt;}
.h1_c02072{height:56.843750pt;}
.h0_c02072{height:1122.666667pt;}
.w1_c02072{width:793.333333pt;}
.w0_c02072{width:793.626667pt;}
.x0_c02072{left:0.000000pt;}
.x1_c02072{left:113.440000pt;}
.x3_c02072{left:119.600000pt;}
.x9_c02072{left:120.560000pt;}
.x6_c02072{left:132.400512pt;}
.xa_c02072{left:144.400000pt;}
.xb_c02072{left:284.400000pt;}
.x4_c02072{left:290.960000pt;}
.x5_c02072{left:315.680000pt;}
.x7_c02072{left:334.160000pt;}
.x8_c02072{left:358.880000pt;}
.x2_c02072{left:388.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_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_bbafa7bf4612093fafd750d2.woff2')format("woff");}.ff1_c02073{font-family:ff1_c02073;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02073;src:url('chunks/assets/font_115382add456f43a8ba7489d.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;}
.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;}
.v1_c02073{vertical-align:53.640000px;}
.ls10_c02073{letter-spacing:-0.086184px;}
.ls13_c02073{letter-spacing:-0.059292px;}
.ls11_c02073{letter-spacing:-0.038304px;}
.lse_c02073{letter-spacing:-0.021600px;}
.lsf_c02073{letter-spacing:-0.004788px;}
.lsd_c02073{letter-spacing:0.000000px;}
.ls3_c02073{letter-spacing:0.019152px;}
.ls7_c02073{letter-spacing:0.019764px;}
.ls0_c02073{letter-spacing:0.021600px;}
.ls1_c02073{letter-spacing:0.027000px;}
.lsb_c02073{letter-spacing:0.032940px;}
.ls2_c02073{letter-spacing:0.043092px;}
.lsa_c02073{letter-spacing:0.046116px;}
.ls9_c02073{letter-spacing:0.065880px;}
.lsc_c02073{letter-spacing:0.072468px;}
.ls5_c02073{letter-spacing:0.079056px;}
.ls8_c02073{letter-spacing:0.085644px;}
.ls4_c02073{letter-spacing:0.098820px;}
.ls12_c02073{letter-spacing:0.110124px;}
.ls14_c02073{letter-spacing:0.158112px;}
.ls6_c02073{letter-spacing:0.164700px;}
.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;}
}
.ws3_c02073{word-spacing:-0.180000px;}
.ws4_c02073{word-spacing:-0.108000px;}
.ws0_c02073{word-spacing:-0.021600px;}
.ws5_c02073{word-spacing:-0.006588px;}
.ws1_c02073{word-spacing:0.000000px;}
.ws7_c02073{word-spacing:0.006588px;}
.ws6_c02073{word-spacing:0.013176px;}
.wsb_c02073{word-spacing:0.019764px;}
.ws2_c02073{word-spacing:0.021600px;}
.ws8_c02073{word-spacing:0.026352px;}
.ws9_c02073{word-spacing:0.046116px;}
.wsa_c02073{word-spacing:0.059292px;}
._3_c02073{margin-left:-1.040904px;}
._8_c02073{width:73.150308px;}
._5_c02073{width:96.580080px;}
._2_c02073{width:105.018912px;}
._6_c02073{width:114.976800px;}
._f_c02073{width:130.060296px;}
._7_c02073{width:140.626620px;}
._a_c02073{width:146.273364px;}
._0_c02073{width:194.421600px;}
._1_c02073{width:531.126000px;}
._b_c02073{width:833.276592px;}
._9_c02073{width:858.600864px;}
._4_c02073{width:865.794960px;}
._e_c02073{width:898.919424px;}
._d_c02073{width:912.780576px;}
._c_c02073{width:1062.492876px;}
.fc0_c02073{color:rgb(0,0,0);}
.fs2_c02073{font-size:47.880000px;}
.fs1_c02073{font-size:54.000000px;}
.fs3_c02073{font-size:65.880000px;}
.fs0_c02073{font-size:72.000000px;}
.y0_c02073{bottom:0.000000px;}
.y3_c02073{bottom:57.360450px;}
.y2_c02073{bottom:78.060450px;}
.y42_c02073{bottom:124.860450px;}
.y41_c02073{bottom:144.480000px;}
.y40_c02073{bottom:159.960450px;}
.y3f_c02073{bottom:175.530000px;}
.y3e_c02073{bottom:191.010450px;}
.y3d_c02073{bottom:206.580000px;}
.y3c_c02073{bottom:222.060450px;}
.y3b_c02073{bottom:237.630000px;}
.y3a_c02073{bottom:253.110450px;}
.y39_c02073{bottom:268.680000px;}
.y38_c02073{bottom:284.160450px;}
.y37_c02073{bottom:299.730000px;}
.y36_c02073{bottom:315.210450px;}
.y35_c02073{bottom:330.780000px;}
.y34_c02073{bottom:346.260450px;}
.y33_c02073{bottom:361.830000px;}
.y32_c02073{bottom:377.310450px;}
.y31_c02073{bottom:392.880000px;}
.y30_c02073{bottom:408.360450px;}
.y2f_c02073{bottom:423.930000px;}
.y2e_c02073{bottom:439.410450px;}
.y2d_c02073{bottom:454.980000px;}
.y2c_c02073{bottom:470.460450px;}
.y2b_c02073{bottom:486.030000px;}
.y2a_c02073{bottom:501.510450px;}
.y29_c02073{bottom:517.080000px;}
.y28_c02073{bottom:532.560450px;}
.y27_c02073{bottom:548.130000px;}
.y26_c02073{bottom:563.610450px;}
.y25_c02073{bottom:579.180000px;}
.y24_c02073{bottom:594.660450px;}
.y23_c02073{bottom:610.140900px;}
.y22_c02073{bottom:625.710450px;}
.y21_c02073{bottom:641.190900px;}
.y20_c02073{bottom:656.760450px;}
.y1f_c02073{bottom:672.240900px;}
.y1e_c02073{bottom:687.810450px;}
.y1d_c02073{bottom:703.290900px;}
.y1c_c02073{bottom:718.860450px;}
.y1b_c02073{bottom:734.340900px;}
.y1a_c02073{bottom:749.910450px;}
.y19_c02073{bottom:765.390900px;}
.y18_c02073{bottom:780.960450px;}
.y17_c02073{bottom:800.490450px;}
.y16_c02073{bottom:819.480450px;}
.y15_c02073{bottom:839.190450px;}
.y14_c02073{bottom:858.180600px;}
.y13_c02073{bottom:877.890450px;}
.y12_c02073{bottom:896.880450px;}
.y11_c02073{bottom:916.590450px;}
.y10_c02073{bottom:935.580450px;}
.yf_c02073{bottom:955.290600px;}
.ye_c02073{bottom:974.280450px;}
.yd_c02073{bottom:993.990450px;}
.yc_c02073{bottom:1012.980450px;}
.yb_c02073{bottom:1032.690450px;}
.ya_c02073{bottom:1051.680450px;}
.y8_c02073{bottom:1069.590450px;}
.y7_c02073{bottom:1069.950450px;}
.y9_c02073{bottom:1083.360450px;}
.y6_c02073{bottom:1098.930450px;}
.y5_c02073{bottom:1122.060450px;}
.y4_c02073{bottom:1139.250450px;}
.y1_c02073{bottom:1193.160450px;}
.h5_c02073{height:42.526230px;}
.h3_c02073{height:47.961914px;}
.h6_c02073{height:58.513535px;}
.h2_c02073{height:63.175781px;}
.h1_c02073{height:63.949219px;}
.h4_c02073{height:96.166230px;}
.h0_c02073{height:1263.000000px;}
.w1_c02073{width:892.500000px;}
.w0_c02073{width:892.830000px;}
.x0_c02073{left:0.000000px;}
.x1_c02073{left:127.620000px;}
.x3_c02073{left:135.630000px;}
.x4_c02073{left:252.450000px;}
.x2_c02073{left:437.490000px;}
.x5_c02073{left:490.770000px;}
.x6_c02073{left:532.170000px;}
.x7_c02073{left:541.530000px;}
.x8_c02073{left:583.200000px;}
.x9_c02073{left:591.750000px;}
.xa_c02073{left:631.620000px;}
.xb_c02073{left:683.100000px;}
.xc_c02073{left:731.610000px;}
@media print{
.v0_c02073{vertical-align:0.000000pt;}
.v1_c02073{vertical-align:47.680000pt;}
.ls10_c02073{letter-spacing:-0.076608pt;}
.ls13_c02073{letter-spacing:-0.052704pt;}
.ls11_c02073{letter-spacing:-0.034048pt;}
.lse_c02073{letter-spacing:-0.019200pt;}
.lsf_c02073{letter-spacing:-0.004256pt;}
.lsd_c02073{letter-spacing:0.000000pt;}
.ls3_c02073{letter-spacing:0.017024pt;}
.ls7_c02073{letter-spacing:0.017568pt;}
.ls0_c02073{letter-spacing:0.019200pt;}
.ls1_c02073{letter-spacing:0.024000pt;}
.lsb_c02073{letter-spacing:0.029280pt;}
.ls2_c02073{letter-spacing:0.038304pt;}
.lsa_c02073{letter-spacing:0.040992pt;}
.ls9_c02073{letter-spacing:0.058560pt;}
.lsc_c02073{letter-spacing:0.064416pt;}
.ls5_c02073{letter-spacing:0.070272pt;}
.ls8_c02073{letter-spacing:0.076128pt;}
.ls4_c02073{letter-spacing:0.087840pt;}
.ls12_c02073{letter-spacing:0.097888pt;}
.ls14_c02073{letter-spacing:0.140544pt;}
.ls6_c02073{letter-spacing:0.146400pt;}
.ws3_c02073{word-spacing:-0.160000pt;}
.ws4_c02073{word-spacing:-0.096000pt;}
.ws0_c02073{word-spacing:-0.019200pt;}
.ws5_c02073{word-spacing:-0.005856pt;}
.ws1_c02073{word-spacing:0.000000pt;}
.ws7_c02073{word-spacing:0.005856pt;}
.ws6_c02073{word-spacing:0.011712pt;}
.wsb_c02073{word-spacing:0.017568pt;}
.ws2_c02073{word-spacing:0.019200pt;}
.ws8_c02073{word-spacing:0.023424pt;}
.ws9_c02073{word-spacing:0.040992pt;}
.wsa_c02073{word-spacing:0.052704pt;}
._3_c02073{margin-left:-0.925248pt;}
._8_c02073{width:65.022496pt;}
._5_c02073{width:85.848960pt;}
._2_c02073{width:93.350144pt;}
._6_c02073{width:102.201600pt;}
._f_c02073{width:115.609152pt;}
._7_c02073{width:125.001440pt;}
._a_c02073{width:130.020768pt;}
._0_c02073{width:172.819200pt;}
._1_c02073{width:472.112000pt;}
._b_c02073{width:740.690304pt;}
._9_c02073{width:763.200768pt;}
._4_c02073{width:769.595520pt;}
._e_c02073{width:799.039488pt;}
._d_c02073{width:811.360512pt;}
._c_c02073{width:944.438112pt;}
.fs2_c02073{font-size:42.560000pt;}
.fs1_c02073{font-size:48.000000pt;}
.fs3_c02073{font-size:58.560000pt;}
.fs0_c02073{font-size:64.000000pt;}
.y0_c02073{bottom:0.000000pt;}
.y3_c02073{bottom:50.987067pt;}
.y2_c02073{bottom:69.387067pt;}
.y42_c02073{bottom:110.987067pt;}
.y41_c02073{bottom:128.426667pt;}
.y40_c02073{bottom:142.187067pt;}
.y3f_c02073{bottom:156.026667pt;}
.y3e_c02073{bottom:169.787067pt;}
.y3d_c02073{bottom:183.626667pt;}
.y3c_c02073{bottom:197.387067pt;}
.y3b_c02073{bottom:211.226667pt;}
.y3a_c02073{bottom:224.987067pt;}
.y39_c02073{bottom:238.826667pt;}
.y38_c02073{bottom:252.587067pt;}
.y37_c02073{bottom:266.426667pt;}
.y36_c02073{bottom:280.187067pt;}
.y35_c02073{bottom:294.026667pt;}
.y34_c02073{bottom:307.787067pt;}
.y33_c02073{bottom:321.626667pt;}
.y32_c02073{bottom:335.387067pt;}
.y31_c02073{bottom:349.226667pt;}
.y30_c02073{bottom:362.987067pt;}
.y2f_c02073{bottom:376.826667pt;}
.y2e_c02073{bottom:390.587067pt;}
.y2d_c02073{bottom:404.426667pt;}
.y2c_c02073{bottom:418.187067pt;}
.y2b_c02073{bottom:432.026667pt;}
.y2a_c02073{bottom:445.787067pt;}
.y29_c02073{bottom:459.626667pt;}
.y28_c02073{bottom:473.387067pt;}
.y27_c02073{bottom:487.226667pt;}
.y26_c02073{bottom:500.987067pt;}
.y25_c02073{bottom:514.826667pt;}
.y24_c02073{bottom:528.587067pt;}
.y23_c02073{bottom:542.347467pt;}
.y22_c02073{bottom:556.187067pt;}
.y21_c02073{bottom:569.947467pt;}
.y20_c02073{bottom:583.787067pt;}
.y1f_c02073{bottom:597.547467pt;}
.y1e_c02073{bottom:611.387067pt;}
.y1d_c02073{bottom:625.147467pt;}
.y1c_c02073{bottom:638.987067pt;}
.y1b_c02073{bottom:652.747467pt;}
.y1a_c02073{bottom:666.587067pt;}
.y19_c02073{bottom:680.347467pt;}
.y18_c02073{bottom:694.187067pt;}
.y17_c02073{bottom:711.547067pt;}
.y16_c02073{bottom:728.427067pt;}
.y15_c02073{bottom:745.947067pt;}
.y14_c02073{bottom:762.827200pt;}
.y13_c02073{bottom:780.347067pt;}
.y12_c02073{bottom:797.227067pt;}
.y11_c02073{bottom:814.747067pt;}
.y10_c02073{bottom:831.627067pt;}
.yf_c02073{bottom:849.147200pt;}
.ye_c02073{bottom:866.027067pt;}
.yd_c02073{bottom:883.547067pt;}
.yc_c02073{bottom:900.427067pt;}
.yb_c02073{bottom:917.947067pt;}
.ya_c02073{bottom:934.827067pt;}
.y8_c02073{bottom:950.747067pt;}
.y7_c02073{bottom:951.067067pt;}
.y9_c02073{bottom:962.987067pt;}
.y6_c02073{bottom:976.827067pt;}
.y5_c02073{bottom:997.387067pt;}
.y4_c02073{bottom:1012.667067pt;}
.y1_c02073{bottom:1060.587067pt;}
.h5_c02073{height:37.801094pt;}
.h3_c02073{height:42.632812pt;}
.h6_c02073{height:52.012031pt;}
.h2_c02073{height:56.156250pt;}
.h1_c02073{height:56.843750pt;}
.h4_c02073{height:85.481094pt;}
.h0_c02073{height:1122.666667pt;}
.w1_c02073{width:793.333333pt;}
.w0_c02073{width:793.626667pt;}
.x0_c02073{left:0.000000pt;}
.x1_c02073{left:113.440000pt;}
.x3_c02073{left:120.560000pt;}
.x4_c02073{left:224.400000pt;}
.x2_c02073{left:388.880000pt;}
.x5_c02073{left:436.240000pt;}
.x6_c02073{left:473.040000pt;}
.x7_c02073{left:481.360000pt;}
.x8_c02073{left:518.400000pt;}
.x9_c02073{left:526.000000pt;}
.xa_c02073{left:561.440000pt;}
.xb_c02073{left:607.200000pt;}
.xc_c02073{left:650.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_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_7705b4c9850e2b452b0c9bdf.woff2')format("woff");}.ff1_c02074{font-family:ff1_c02074;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02074;src:url('chunks/assets/font_84043e00fd2475271c44f9d6.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;}
.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);}
.v2_c02074{vertical-align:-11.880600px;}
.v3_c02074{vertical-align:-6.120600px;}
.v0_c02074{vertical-align:0.000000px;}
.v4_c02074{vertical-align:5.760000px;}
.v1_c02074{vertical-align:11.160000px;}
.ls1a_c02074{letter-spacing:-0.180360px;}
.ls17_c02074{letter-spacing:-0.086400px;}
.ls14_c02074{letter-spacing:-0.032940px;}
.ls12_c02074{letter-spacing:-0.014400px;}
.ls13_c02074{letter-spacing:-0.013176px;}
.ls16_c02074{letter-spacing:-0.007200px;}
.ls11_c02074{letter-spacing:0.000000px;}
.ls0_c02074{letter-spacing:0.007200px;}
.lse_c02074{letter-spacing:0.013176px;}
.ls4_c02074{letter-spacing:0.019764px;}
.lsa_c02074{letter-spacing:0.026352px;}
.ls8_c02074{letter-spacing:0.028800px;}
.ls6_c02074{letter-spacing:0.032940px;}
.ls2_c02074{letter-spacing:0.039528px;}
.lsb_c02074{letter-spacing:0.046116px;}
.ls5_c02074{letter-spacing:0.052704px;}
.ls10_c02074{letter-spacing:0.059292px;}
.ls1c_c02074{letter-spacing:0.062244px;}
.ls9_c02074{letter-spacing:0.065880px;}
.ls1_c02074{letter-spacing:0.072468px;}
.ls7_c02074{letter-spacing:0.079056px;}
.lsc_c02074{letter-spacing:0.092232px;}
.ls3_c02074{letter-spacing:0.098820px;}
.lsd_c02074{letter-spacing:0.131760px;}
.ls19_c02074{letter-spacing:0.144288px;}
.ls15_c02074{letter-spacing:0.164700px;}
.ls18_c02074{letter-spacing:0.177876px;}
.lsf_c02074{letter-spacing:0.191052px;}
.ls1b_c02074{letter-spacing:0.196308px;}
.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;}
}
.ws12_c02074{word-spacing:-0.289872px;}
.ws4_c02074{word-spacing:-0.187200px;}
.wsb_c02074{word-spacing:-0.115200px;}
.ws15_c02074{word-spacing:-0.098820px;}
.wsc_c02074{word-spacing:-0.086400px;}
.ws0_c02074{word-spacing:-0.021600px;}
.ws3_c02074{word-spacing:-0.007200px;}
.ws1_c02074{word-spacing:0.000000px;}
.ws7_c02074{word-spacing:0.007200px;}
.ws2_c02074{word-spacing:0.014400px;}
.ws5_c02074{word-spacing:0.019764px;}
.wse_c02074{word-spacing:0.026352px;}
.ws16_c02074{word-spacing:0.032940px;}
.ws8_c02074{word-spacing:0.039528px;}
.ws10_c02074{word-spacing:0.046116px;}
.ws9_c02074{word-spacing:0.052704px;}
.wsa_c02074{word-spacing:0.059292px;}
.wsf_c02074{word-spacing:0.065880px;}
.ws11_c02074{word-spacing:0.072468px;}
.ws14_c02074{word-spacing:0.079056px;}
.ws13_c02074{word-spacing:0.092232px;}
.wsd_c02074{word-spacing:44.820000px;}
.ws6_c02074{word-spacing:416.447244px;}
._b_c02074{margin-left:-201.586212px;}
._7_c02074{margin-left:-173.488392px;}
._8_c02074{margin-left:-140.383692px;}
._19_c02074{margin-left:-1.080000px;}
._29_c02074{width:1.139724px;}
._18_c02074{width:30.958200px;}
._17_c02074{width:35.706744px;}
._14_c02074{width:39.510720px;}
._13_c02074{width:40.590720px;}
._24_c02074{width:42.750720px;}
._1e_c02074{width:45.132192px;}
._15_c02074{width:55.260000px;}
._1_c02074{width:65.407068px;}
._12_c02074{width:91.570896px;}
._4_c02074{width:96.810048px;}
._6_c02074{width:101.605680px;}
._2_c02074{width:115.338168px;}
._5_c02074{width:116.438220px;}
._3_c02074{width:129.525840px;}
._e_c02074{width:180.974592px;}
._0_c02074{width:194.421600px;}
._a_c02074{width:264.271032px;}
._10_c02074{width:269.336712px;}
._d_c02074{width:334.237824px;}
._f_c02074{width:336.332808px;}
._2c_c02074{width:368.205048px;}
._21_c02074{width:375.616548px;}
._1d_c02074{width:391.368456px;}
._2b_c02074{width:422.581968px;}
._2d_c02074{width:426.377088px;}
._28_c02074{width:449.981892px;}
._27_c02074{width:567.254880px;}
._9_c02074{width:572.055804px;}
._2f_c02074{width:574.330392px;}
._1f_c02074{width:597.981312px;}
._25_c02074{width:651.732804px;}
._1a_c02074{width:665.745480px;}
._22_c02074{width:674.777628px;}
._2e_c02074{width:702.743688px;}
._1b_c02074{width:711.571608px;}
._26_c02074{width:723.983400px;}
._2a_c02074{width:791.833212px;}
._23_c02074{width:839.523744px;}
._20_c02074{width:876.996288px;}
._1c_c02074{width:983.919528px;}
._16_c02074{width:1365.796440px;}
._c_c02074{width:1791.288000px;}
._11_c02074{width:2253.981024px;}
.fc0_c02074{color:rgb(0,0,0);}
.fs4_c02074{font-size:47.880000px;}
.fs1_c02074{font-size:54.000000px;}
.fs3_c02074{font-size:60.120000px;}
.fs2_c02074{font-size:65.880000px;}
.fs0_c02074{font-size:72.000000px;}
.y0_c02074{bottom:0.000000px;}
.y3_c02074{bottom:57.360450px;}
.y2_c02074{bottom:78.060450px;}
.y3e_c02074{bottom:114.240450px;}
.y3d_c02074{bottom:134.940450px;}
.y3c_c02074{bottom:159.150450px;}
.y3a_c02074{bottom:175.890540px;}
.y3b_c02074{bottom:196.320450px;}
.y39_c02074{bottom:197.850450px;}
.y37_c02074{bottom:214.590540px;}
.y38_c02074{bottom:235.020450px;}
.y36_c02074{bottom:236.550450px;}
.y35_c02074{bottom:253.200540px;}
.y33_c02074{bottom:253.290540px;}
.y34_c02074{bottom:273.720450px;}
.y32_c02074{bottom:275.250450px;}
.y31_c02074{bottom:294.960450px;}
.y30_c02074{bottom:314.670450px;}
.y2f_c02074{bottom:334.380450px;}
.y2e_c02074{bottom:351.030540px;}
.y2d_c02074{bottom:373.080600px;}
.y2c_c02074{bottom:392.790600px;}
.y2a_c02074{bottom:409.530690px;}
.y2b_c02074{bottom:429.960600px;}
.y29_c02074{bottom:431.490450px;}
.y28_c02074{bottom:451.200600px;}
.y27_c02074{bottom:471.000600px;}
.y26_c02074{bottom:490.710600px;}
.y25_c02074{bottom:507.360540px;}
.y24_c02074{bottom:529.410450px;}
.y22_c02074{bottom:546.150540px;}
.y23_c02074{bottom:566.580450px;}
.y21_c02074{bottom:568.110450px;}
.y20_c02074{bottom:584.760540px;}
.y1f_c02074{bottom:606.810450px;}
.y1e_c02074{bottom:626.520450px;}
.y1d_c02074{bottom:646.230450px;}
.y1c_c02074{bottom:665.940450px;}
.y1b_c02074{bottom:685.650450px;}
.y1a_c02074{bottom:705.360450px;}
.y19_c02074{bottom:725.160450px;}
.y18_c02074{bottom:744.870450px;}
.y17_c02074{bottom:764.580450px;}
.y16_c02074{bottom:784.290600px;}
.y15_c02074{bottom:800.580450px;}
.y14_c02074{bottom:819.210450px;}
.y13_c02074{bottom:840.900450px;}
.y12_c02074{bottom:861.600450px;}
.y11_c02074{bottom:882.570450px;}
.y10_c02074{bottom:902.280450px;}
.yf_c02074{bottom:921.990450px;}
.ye_c02074{bottom:941.700450px;}
.yd_c02074{bottom:961.410450px;}
.yc_c02074{bottom:981.480450px;}
.yb_c02074{bottom:1002.900450px;}
.ya_c02074{bottom:1024.860450px;}
.y9_c02074{bottom:1044.570450px;}
.y8_c02074{bottom:1065.270450px;}
.y7_c02074{bottom:1085.970450px;}
.y6_c02074{bottom:1106.490900px;}
.y5_c02074{bottom:1122.060450px;}
.y4_c02074{bottom:1139.250450px;}
.y1_c02074{bottom:1193.160450px;}
.h7_c02074{height:47.381836px;}
.h3_c02074{height:47.961914px;}
.h8_c02074{height:52.751777px;}
.h6_c02074{height:53.686230px;}
.h5_c02074{height:57.805840px;}
.h4_c02074{height:58.513535px;}
.h2_c02074{height:63.175781px;}
.h1_c02074{height:63.949219px;}
.h0_c02074{height:1263.000000px;}
.w1_c02074{width:892.500000px;}
.w0_c02074{width:892.830000px;}
.x0_c02074{left:0.000000px;}
.x1_c02074{left:127.620000px;}
.x3_c02074{left:135.630000px;}
.x6_c02074{left:137.520000px;}
.x4_c02074{left:263.430000px;}
.x9_c02074{left:284.580000px;}
.x5_c02074{left:327.690000px;}
.x7_c02074{left:335.160000px;}
.x2_c02074{left:437.490000px;}
.xa_c02074{left:699.120000px;}
.x8_c02074{left:721.439631px;}
@media print{
.v2_c02074{vertical-align:-10.560533pt;}
.v3_c02074{vertical-align:-5.440533pt;}
.v0_c02074{vertical-align:0.000000pt;}
.v4_c02074{vertical-align:5.120000pt;}
.v1_c02074{vertical-align:9.920000pt;}
.ls1a_c02074{letter-spacing:-0.160320pt;}
.ls17_c02074{letter-spacing:-0.076800pt;}
.ls14_c02074{letter-spacing:-0.029280pt;}
.ls12_c02074{letter-spacing:-0.012800pt;}
.ls13_c02074{letter-spacing:-0.011712pt;}
.ls16_c02074{letter-spacing:-0.006400pt;}
.ls11_c02074{letter-spacing:0.000000pt;}
.ls0_c02074{letter-spacing:0.006400pt;}
.lse_c02074{letter-spacing:0.011712pt;}
.ls4_c02074{letter-spacing:0.017568pt;}
.lsa_c02074{letter-spacing:0.023424pt;}
.ls8_c02074{letter-spacing:0.025600pt;}
.ls6_c02074{letter-spacing:0.029280pt;}
.ls2_c02074{letter-spacing:0.035136pt;}
.lsb_c02074{letter-spacing:0.040992pt;}
.ls5_c02074{letter-spacing:0.046848pt;}
.ls10_c02074{letter-spacing:0.052704pt;}
.ls1c_c02074{letter-spacing:0.055328pt;}
.ls9_c02074{letter-spacing:0.058560pt;}
.ls1_c02074{letter-spacing:0.064416pt;}
.ls7_c02074{letter-spacing:0.070272pt;}
.lsc_c02074{letter-spacing:0.081984pt;}
.ls3_c02074{letter-spacing:0.087840pt;}
.lsd_c02074{letter-spacing:0.117120pt;}
.ls19_c02074{letter-spacing:0.128256pt;}
.ls15_c02074{letter-spacing:0.146400pt;}
.ls18_c02074{letter-spacing:0.158112pt;}
.lsf_c02074{letter-spacing:0.169824pt;}
.ls1b_c02074{letter-spacing:0.174496pt;}
.ws12_c02074{word-spacing:-0.257664pt;}
.ws4_c02074{word-spacing:-0.166400pt;}
.wsb_c02074{word-spacing:-0.102400pt;}
.ws15_c02074{word-spacing:-0.087840pt;}
.wsc_c02074{word-spacing:-0.076800pt;}
.ws0_c02074{word-spacing:-0.019200pt;}
.ws3_c02074{word-spacing:-0.006400pt;}
.ws1_c02074{word-spacing:0.000000pt;}
.ws7_c02074{word-spacing:0.006400pt;}
.ws2_c02074{word-spacing:0.012800pt;}
.ws5_c02074{word-spacing:0.017568pt;}
.wse_c02074{word-spacing:0.023424pt;}
.ws16_c02074{word-spacing:0.029280pt;}
.ws8_c02074{word-spacing:0.035136pt;}
.ws10_c02074{word-spacing:0.040992pt;}
.ws9_c02074{word-spacing:0.046848pt;}
.wsa_c02074{word-spacing:0.052704pt;}
.wsf_c02074{word-spacing:0.058560pt;}
.ws11_c02074{word-spacing:0.064416pt;}
.ws14_c02074{word-spacing:0.070272pt;}
.ws13_c02074{word-spacing:0.081984pt;}
.wsd_c02074{word-spacing:39.840000pt;}
.ws6_c02074{word-spacing:370.175328pt;}
._b_c02074{margin-left:-179.187744pt;}
._7_c02074{margin-left:-154.211904pt;}
._8_c02074{margin-left:-124.785504pt;}
._19_c02074{margin-left:-0.960000pt;}
._29_c02074{width:1.013088pt;}
._18_c02074{width:27.518400pt;}
._17_c02074{width:31.739328pt;}
._14_c02074{width:35.120640pt;}
._13_c02074{width:36.080640pt;}
._24_c02074{width:38.000640pt;}
._1e_c02074{width:40.117504pt;}
._15_c02074{width:49.120000pt;}
._1_c02074{width:58.139616pt;}
._12_c02074{width:81.396352pt;}
._4_c02074{width:86.053376pt;}
._6_c02074{width:90.316160pt;}
._2_c02074{width:102.522816pt;}
._5_c02074{width:103.500640pt;}
._3_c02074{width:115.134080pt;}
._e_c02074{width:160.866304pt;}
._0_c02074{width:172.819200pt;}
._a_c02074{width:234.907584pt;}
._10_c02074{width:239.410411pt;}
._d_c02074{width:297.100288pt;}
._f_c02074{width:298.962496pt;}
._2c_c02074{width:327.293376pt;}
._21_c02074{width:333.881376pt;}
._1d_c02074{width:347.883072pt;}
._2b_c02074{width:375.628416pt;}
._2d_c02074{width:379.001856pt;}
._28_c02074{width:399.983904pt;}
._27_c02074{width:504.226560pt;}
._9_c02074{width:508.494048pt;}
._2f_c02074{width:510.515904pt;}
._1f_c02074{width:531.538944pt;}
._25_c02074{width:579.318048pt;}
._1a_c02074{width:591.773760pt;}
._22_c02074{width:599.802336pt;}
._2e_c02074{width:624.661056pt;}
._1b_c02074{width:632.508096pt;}
._26_c02074{width:643.540800pt;}
._2a_c02074{width:703.851744pt;}
._23_c02074{width:746.243328pt;}
._20_c02074{width:779.552256pt;}
._1c_c02074{width:874.595136pt;}
._16_c02074{width:1214.041280pt;}
._c_c02074{width:1592.256000pt;}
._11_c02074{width:2003.538688pt;}
.fs4_c02074{font-size:42.560000pt;}
.fs1_c02074{font-size:48.000000pt;}
.fs3_c02074{font-size:53.440000pt;}
.fs2_c02074{font-size:58.560000pt;}
.fs0_c02074{font-size:64.000000pt;}
.y0_c02074{bottom:0.000000pt;}
.y3_c02074{bottom:50.987067pt;}
.y2_c02074{bottom:69.387067pt;}
.y3e_c02074{bottom:101.547067pt;}
.y3d_c02074{bottom:119.947067pt;}
.y3c_c02074{bottom:141.467067pt;}
.y3a_c02074{bottom:156.347147pt;}
.y3b_c02074{bottom:174.507067pt;}
.y39_c02074{bottom:175.867067pt;}
.y37_c02074{bottom:190.747147pt;}
.y38_c02074{bottom:208.907067pt;}
.y36_c02074{bottom:210.267067pt;}
.y35_c02074{bottom:225.067147pt;}
.y33_c02074{bottom:225.147147pt;}
.y34_c02074{bottom:243.307067pt;}
.y32_c02074{bottom:244.667067pt;}
.y31_c02074{bottom:262.187067pt;}
.y30_c02074{bottom:279.707067pt;}
.y2f_c02074{bottom:297.227067pt;}
.y2e_c02074{bottom:312.027147pt;}
.y2d_c02074{bottom:331.627200pt;}
.y2c_c02074{bottom:349.147200pt;}
.y2a_c02074{bottom:364.027280pt;}
.y2b_c02074{bottom:382.187200pt;}
.y29_c02074{bottom:383.547067pt;}
.y28_c02074{bottom:401.067200pt;}
.y27_c02074{bottom:418.667200pt;}
.y26_c02074{bottom:436.187200pt;}
.y25_c02074{bottom:450.987147pt;}
.y24_c02074{bottom:470.587067pt;}
.y22_c02074{bottom:485.467147pt;}
.y23_c02074{bottom:503.627067pt;}
.y21_c02074{bottom:504.987067pt;}
.y20_c02074{bottom:519.787147pt;}
.y1f_c02074{bottom:539.387067pt;}
.y1e_c02074{bottom:556.907067pt;}
.y1d_c02074{bottom:574.427067pt;}
.y1c_c02074{bottom:591.947067pt;}
.y1b_c02074{bottom:609.467067pt;}
.y1a_c02074{bottom:626.987067pt;}
.y19_c02074{bottom:644.587067pt;}
.y18_c02074{bottom:662.107067pt;}
.y17_c02074{bottom:679.627067pt;}
.y16_c02074{bottom:697.147200pt;}
.y15_c02074{bottom:711.627067pt;}
.y14_c02074{bottom:728.187067pt;}
.y13_c02074{bottom:747.467067pt;}
.y12_c02074{bottom:765.867067pt;}
.y11_c02074{bottom:784.507067pt;}
.y10_c02074{bottom:802.027067pt;}
.yf_c02074{bottom:819.547067pt;}
.ye_c02074{bottom:837.067067pt;}
.yd_c02074{bottom:854.587067pt;}
.yc_c02074{bottom:872.427067pt;}
.yb_c02074{bottom:891.467067pt;}
.ya_c02074{bottom:910.987067pt;}
.y9_c02074{bottom:928.507067pt;}
.y8_c02074{bottom:946.907067pt;}
.y7_c02074{bottom:965.307067pt;}
.y6_c02074{bottom:983.547467pt;}
.y5_c02074{bottom:997.387067pt;}
.y4_c02074{bottom:1012.667067pt;}
.y1_c02074{bottom:1060.587067pt;}
.h7_c02074{height:42.117188pt;}
.h3_c02074{height:42.632812pt;}
.h8_c02074{height:46.890469pt;}
.h6_c02074{height:47.721094pt;}
.h5_c02074{height:51.382969pt;}
.h4_c02074{height:52.012031pt;}
.h2_c02074{height:56.156250pt;}
.h1_c02074{height:56.843750pt;}
.h0_c02074{height:1122.666667pt;}
.w1_c02074{width:793.333333pt;}
.w0_c02074{width:793.626667pt;}
.x0_c02074{left:0.000000pt;}
.x1_c02074{left:113.440000pt;}
.x3_c02074{left:120.560000pt;}
.x6_c02074{left:122.240000pt;}
.x4_c02074{left:234.160000pt;}
.x9_c02074{left:252.960000pt;}
.x5_c02074{left:291.280000pt;}
.x7_c02074{left:297.920000pt;}
.x2_c02074{left:388.880000pt;}
.xa_c02074{left:621.440000pt;}
.x8_c02074{left:641.279672pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59db910c0f2d32316a7f1206.woff2')format("woff");}.ff1_c02075{font-family:ff1_c02075;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02075;src:url('chunks/assets/font_55cf0f102fda42d912bb146f.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;}
.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);}
.v4_c02075{vertical-align:-17.282088px;}
.v2_c02075{vertical-align:-16.200000px;}
.v5_c02075{vertical-align:-4.680000px;}
.v0_c02075{vertical-align:0.000000px;}
.v3_c02075{vertical-align:1.082088px;}
.v1_c02075{vertical-align:11.160000px;}
.ls1b_c02075{letter-spacing:-0.181116px;}
.ls17_c02075{letter-spacing:-0.180360px;}
.ls1a_c02075{letter-spacing:-0.013176px;}
.ls19_c02075{letter-spacing:-0.006588px;}
.ls15_c02075{letter-spacing:0.000000px;}
.ls7_c02075{letter-spacing:0.006588px;}
.ls1_c02075{letter-spacing:0.007200px;}
.ls12_c02075{letter-spacing:0.013176px;}
.ls0_c02075{letter-spacing:0.014400px;}
.ls11_c02075{letter-spacing:0.019764px;}
.ls8_c02075{letter-spacing:0.026352px;}
.ls4_c02075{letter-spacing:0.032940px;}
.lsb_c02075{letter-spacing:0.039528px;}
.ls3_c02075{letter-spacing:0.046116px;}
.lsc_c02075{letter-spacing:0.052704px;}
.ls6_c02075{letter-spacing:0.059292px;}
.ls18_c02075{letter-spacing:0.062244px;}
.ls14_c02075{letter-spacing:0.065880px;}
.lsd_c02075{letter-spacing:0.072468px;}
.ls5_c02075{letter-spacing:0.079056px;}
.ls10_c02075{letter-spacing:0.085644px;}
.lsa_c02075{letter-spacing:0.092232px;}
.lsf_c02075{letter-spacing:0.098820px;}
.lse_c02075{letter-spacing:0.105408px;}
.ls13_c02075{letter-spacing:0.118584px;}
.ls9_c02075{letter-spacing:0.131760px;}
.ls16_c02075{letter-spacing:0.144288px;}
.ls2_c02075{letter-spacing:0.181944px;}
.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;}
}
.ws3_c02075{word-spacing:-0.093600px;}
.ws0_c02075{word-spacing:-0.021600px;}
.ws2_c02075{word-spacing:-0.014400px;}
.ws1_c02075{word-spacing:0.000000px;}
.ws20_c02075{word-spacing:0.013176px;}
.ws18_c02075{word-spacing:0.019764px;}
.ws10_c02075{word-spacing:0.032940px;}
.ws12_c02075{word-spacing:0.039528px;}
.ws2a_c02075{word-spacing:0.052704px;}
.ws6_c02075{word-spacing:0.059292px;}
.wsb_c02075{word-spacing:0.065880px;}
.ws11_c02075{word-spacing:2.266272px;}
.ws1c_c02075{word-spacing:2.872368px;}
.ws8_c02075{word-spacing:2.911896px;}
.wse_c02075{word-spacing:3.300588px;}
.ws31_c02075{word-spacing:4.348080px;}
.ws30_c02075{word-spacing:4.354668px;}
.wsf_c02075{word-spacing:4.367844px;}
.ws1b_c02075{word-spacing:4.730184px;}
.ws13_c02075{word-spacing:5.797440px;}
.ws14_c02075{word-spacing:5.823792px;}
.ws1e_c02075{word-spacing:6.126840px;}
.ws1d_c02075{word-spacing:6.205896px;}
.wsa_c02075{word-spacing:6.923988px;}
.ws9_c02075{word-spacing:6.937164px;}
.ws23_c02075{word-spacing:7.273152px;}
.ws1f_c02075{word-spacing:7.925364px;}
.ws17_c02075{word-spacing:7.958304px;}
.ws2e_c02075{word-spacing:8.333820px;}
.ws2b_c02075{word-spacing:10.152108px;}
.ws16_c02075{word-spacing:10.488096px;}
.ws15_c02075{word-spacing:10.540800px;}
.ws25_c02075{word-spacing:11.166660px;}
.ws24_c02075{word-spacing:11.232540px;}
.ws2f_c02075{word-spacing:11.555352px;}
.ws35_c02075{word-spacing:14.065380px;}
.ws33_c02075{word-spacing:15.514740px;}
.ws34_c02075{word-spacing:15.527916px;}
.ws32_c02075{word-spacing:15.863904px;}
.wsc_c02075{word-spacing:19.078848px;}
.wsd_c02075{word-spacing:19.164492px;}
.ws7_c02075{word-spacing:21.252888px;}
.ws28_c02075{word-spacing:26.332236px;}
.ws5_c02075{word-spacing:29.204604px;}
.ws2d_c02075{word-spacing:30.212568px;}
.ws2c_c02075{word-spacing:30.627612px;}
.ws26_c02075{word-spacing:30.647376px;}
.ws27_c02075{word-spacing:34.962516px;}
.ws19_c02075{word-spacing:39.224952px;}
.ws1a_c02075{word-spacing:39.323772px;}
.ws22_c02075{word-spacing:41.471460px;}
.ws29_c02075{word-spacing:44.357004px;}
.ws21_c02075{word-spacing:48.962016px;}
.ws4_c02075{word-spacing:49.048272px;}
._7_c02075{margin-left:-1.077300px;}
._8_c02075{width:1.171908px;}
._6_c02075{width:36.714384px;}
._3_c02075{width:39.510720px;}
._2_c02075{width:40.590720px;}
._4_c02075{width:55.260000px;}
._9_c02075{width:85.762656px;}
._1_c02075{width:91.570896px;}
._a_c02075{width:97.294464px;}
._0_c02075{width:194.421600px;}
._5_c02075{width:1451.116440px;}
.fc0_c02075{color:rgb(0,0,0);}
.fs4_c02075{font-size:42.120000px;}
.fs2_c02075{font-size:47.880000px;}
.fs1_c02075{font-size:60.120000px;}
.fs3_c02075{font-size:65.880000px;}
.fs0_c02075{font-size:72.000000px;}
.y0_c02075{bottom:0.000000px;}
.y3_c02075{bottom:57.360450px;}
.y2_c02075{bottom:78.060450px;}
.y46_c02075{bottom:128.461395px;}
.y45_c02075{bottom:147.360720px;}
.y44_c02075{bottom:166.350630px;}
.y43_c02075{bottom:185.340540px;}
.y47_c02075{bottom:204.241512px;}
.y42_c02075{bottom:209.820450px;}
.y3f_c02075{bottom:224.041395px;}
.y3e_c02075{bottom:243.031305px;}
.y3d_c02075{bottom:262.021215px;}
.y41_c02075{bottom:280.831602px;}
.y3c_c02075{bottom:280.920540px;}
.y40_c02075{bottom:299.821512px;}
.y3b_c02075{bottom:303.960600px;}
.y37_c02075{bottom:319.621815px;}
.y36_c02075{bottom:338.611725px;}
.y35_c02075{bottom:357.601635px;}
.y34_c02075{bottom:376.591545px;}
.y33_c02075{bottom:395.581455px;}
.y3a_c02075{bottom:414.482427px;}
.y32_c02075{bottom:414.571365px;}
.y39_c02075{bottom:433.381752px;}
.y31_c02075{bottom:433.470690px;}
.y38_c02075{bottom:452.371662px;}
.y30_c02075{bottom:456.510450px;}
.y2c_c02075{bottom:472.171755px;}
.y2b_c02075{bottom:491.161665px;}
.y2a_c02075{bottom:510.151575px;}
.y29_c02075{bottom:529.141485px;}
.y28_c02075{bottom:548.131395px;}
.y27_c02075{bottom:567.030720px;}
.y2f_c02075{bottom:585.931692px;}
.y26_c02075{bottom:586.020630px;}
.y2e_c02075{bottom:604.921602px;}
.y25_c02075{bottom:605.010540px;}
.y2d_c02075{bottom:623.911512px;}
.y24_c02075{bottom:628.050450px;}
.y22_c02075{bottom:643.711395px;}
.y21_c02075{bottom:662.701305px;}
.y20_c02075{bottom:681.691215px;}
.y1f_c02075{bottom:700.590540px;}
.y23_c02075{bottom:719.491512px;}
.y1e_c02075{bottom:723.630450px;}
.y1b_c02075{bottom:739.291575px;}
.y1a_c02075{bottom:758.281485px;}
.y19_c02075{bottom:777.271395px;}
.y18_c02075{bottom:796.261305px;}
.y17_c02075{bottom:815.251215px;}
.y1d_c02075{bottom:834.061602px;}
.y16_c02075{bottom:834.150540px;}
.y1c_c02075{bottom:853.051512px;}
.y15_c02075{bottom:857.190450px;}
.y13_c02075{bottom:872.850810px;}
.y12_c02075{bottom:891.840720px;}
.y11_c02075{bottom:910.830630px;}
.y10_c02075{bottom:929.820540px;}
.y14_c02075{bottom:948.721512px;}
.yf_c02075{bottom:952.860450px;}
.yd_c02075{bottom:968.521665px;}
.yc_c02075{bottom:987.511575px;}
.yb_c02075{bottom:1006.410900px;}
.ya_c02075{bottom:1025.400810px;}
.y9_c02075{bottom:1044.390720px;}
.y8_c02075{bottom:1063.380630px;}
.y7_c02075{bottom:1082.370540px;}
.ye_c02075{bottom:1101.271512px;}
.y6_c02075{bottom:1105.410450px;}
.y5_c02075{bottom:1120.620450px;}
.y4_c02075{bottom:1139.250450px;}
.y1_c02075{bottom:1193.160450px;}
.h8_c02075{height:37.410293px;}
.h4_c02075{height:42.526230px;}
.h7_c02075{height:43.093983px;}
.h3_c02075{height:53.686230px;}
.h5_c02075{height:57.805840px;}
.h6_c02075{height:58.513535px;}
.h2_c02075{height:63.175781px;}
.h1_c02075{height:63.949219px;}
.h0_c02075{height:1263.000000px;}
.w1_c02075{width:892.500000px;}
.w0_c02075{width:892.830000px;}
.x0_c02075{left:0.000000px;}
.x1_c02075{left:127.620000px;}
.x3_c02075{left:135.630000px;}
.x4_c02075{left:284.580000px;}
.x2_c02075{left:437.490000px;}
.x5_c02075{left:720.990531px;}
.x6_c02075{left:738.900009px;}
@media print{
.v4_c02075{vertical-align:-15.361856pt;}
.v2_c02075{vertical-align:-14.400000pt;}
.v5_c02075{vertical-align:-4.160000pt;}
.v0_c02075{vertical-align:0.000000pt;}
.v3_c02075{vertical-align:0.961856pt;}
.v1_c02075{vertical-align:9.920000pt;}
.ls1b_c02075{letter-spacing:-0.160992pt;}
.ls17_c02075{letter-spacing:-0.160320pt;}
.ls1a_c02075{letter-spacing:-0.011712pt;}
.ls19_c02075{letter-spacing:-0.005856pt;}
.ls15_c02075{letter-spacing:0.000000pt;}
.ls7_c02075{letter-spacing:0.005856pt;}
.ls1_c02075{letter-spacing:0.006400pt;}
.ls12_c02075{letter-spacing:0.011712pt;}
.ls0_c02075{letter-spacing:0.012800pt;}
.ls11_c02075{letter-spacing:0.017568pt;}
.ls8_c02075{letter-spacing:0.023424pt;}
.ls4_c02075{letter-spacing:0.029280pt;}
.lsb_c02075{letter-spacing:0.035136pt;}
.ls3_c02075{letter-spacing:0.040992pt;}
.lsc_c02075{letter-spacing:0.046848pt;}
.ls6_c02075{letter-spacing:0.052704pt;}
.ls18_c02075{letter-spacing:0.055328pt;}
.ls14_c02075{letter-spacing:0.058560pt;}
.lsd_c02075{letter-spacing:0.064416pt;}
.ls5_c02075{letter-spacing:0.070272pt;}
.ls10_c02075{letter-spacing:0.076128pt;}
.lsa_c02075{letter-spacing:0.081984pt;}
.lsf_c02075{letter-spacing:0.087840pt;}
.lse_c02075{letter-spacing:0.093696pt;}
.ls13_c02075{letter-spacing:0.105408pt;}
.ls9_c02075{letter-spacing:0.117120pt;}
.ls16_c02075{letter-spacing:0.128256pt;}
.ls2_c02075{letter-spacing:0.161728pt;}
.ws3_c02075{word-spacing:-0.083200pt;}
.ws0_c02075{word-spacing:-0.019200pt;}
.ws2_c02075{word-spacing:-0.012800pt;}
.ws1_c02075{word-spacing:0.000000pt;}
.ws20_c02075{word-spacing:0.011712pt;}
.ws18_c02075{word-spacing:0.017568pt;}
.ws10_c02075{word-spacing:0.029280pt;}
.ws12_c02075{word-spacing:0.035136pt;}
.ws2a_c02075{word-spacing:0.046848pt;}
.ws6_c02075{word-spacing:0.052704pt;}
.wsb_c02075{word-spacing:0.058560pt;}
.ws11_c02075{word-spacing:2.014464pt;}
.ws1c_c02075{word-spacing:2.553216pt;}
.ws8_c02075{word-spacing:2.588352pt;}
.wse_c02075{word-spacing:2.933856pt;}
.ws31_c02075{word-spacing:3.864960pt;}
.ws30_c02075{word-spacing:3.870816pt;}
.wsf_c02075{word-spacing:3.882528pt;}
.ws1b_c02075{word-spacing:4.204608pt;}
.ws13_c02075{word-spacing:5.153280pt;}
.ws14_c02075{word-spacing:5.176704pt;}
.ws1e_c02075{word-spacing:5.446080pt;}
.ws1d_c02075{word-spacing:5.516352pt;}
.wsa_c02075{word-spacing:6.154656pt;}
.ws9_c02075{word-spacing:6.166368pt;}
.ws23_c02075{word-spacing:6.465024pt;}
.ws1f_c02075{word-spacing:7.044768pt;}
.ws17_c02075{word-spacing:7.074048pt;}
.ws2e_c02075{word-spacing:7.407840pt;}
.ws2b_c02075{word-spacing:9.024096pt;}
.ws16_c02075{word-spacing:9.322752pt;}
.ws15_c02075{word-spacing:9.369600pt;}
.ws25_c02075{word-spacing:9.925920pt;}
.ws24_c02075{word-spacing:9.984480pt;}
.ws2f_c02075{word-spacing:10.271424pt;}
.ws35_c02075{word-spacing:12.502560pt;}
.ws33_c02075{word-spacing:13.790880pt;}
.ws34_c02075{word-spacing:13.802592pt;}
.ws32_c02075{word-spacing:14.101248pt;}
.wsc_c02075{word-spacing:16.958976pt;}
.wsd_c02075{word-spacing:17.035104pt;}
.ws7_c02075{word-spacing:18.891456pt;}
.ws28_c02075{word-spacing:23.406432pt;}
.ws5_c02075{word-spacing:25.959648pt;}
.ws2d_c02075{word-spacing:26.855616pt;}
.ws2c_c02075{word-spacing:27.224544pt;}
.ws26_c02075{word-spacing:27.242112pt;}
.ws27_c02075{word-spacing:31.077792pt;}
.ws19_c02075{word-spacing:34.866624pt;}
.ws1a_c02075{word-spacing:34.954464pt;}
.ws22_c02075{word-spacing:36.863520pt;}
.ws29_c02075{word-spacing:39.428448pt;}
.ws21_c02075{word-spacing:43.521792pt;}
.ws4_c02075{word-spacing:43.598464pt;}
._7_c02075{margin-left:-0.957600pt;}
._8_c02075{width:1.041696pt;}
._6_c02075{width:32.635008pt;}
._3_c02075{width:35.120640pt;}
._2_c02075{width:36.080640pt;}
._4_c02075{width:49.120000pt;}
._9_c02075{width:76.233472pt;}
._1_c02075{width:81.396352pt;}
._a_c02075{width:86.483968pt;}
._0_c02075{width:172.819200pt;}
._5_c02075{width:1289.881280pt;}
.fs4_c02075{font-size:37.440000pt;}
.fs2_c02075{font-size:42.560000pt;}
.fs1_c02075{font-size:53.440000pt;}
.fs3_c02075{font-size:58.560000pt;}
.fs0_c02075{font-size:64.000000pt;}
.y0_c02075{bottom:0.000000pt;}
.y3_c02075{bottom:50.987067pt;}
.y2_c02075{bottom:69.387067pt;}
.y46_c02075{bottom:114.187907pt;}
.y45_c02075{bottom:130.987307pt;}
.y44_c02075{bottom:147.867227pt;}
.y43_c02075{bottom:164.747147pt;}
.y47_c02075{bottom:181.548011pt;}
.y42_c02075{bottom:186.507067pt;}
.y3f_c02075{bottom:199.147907pt;}
.y3e_c02075{bottom:216.027827pt;}
.y3d_c02075{bottom:232.907747pt;}
.y41_c02075{bottom:249.628091pt;}
.y3c_c02075{bottom:249.707147pt;}
.y40_c02075{bottom:266.508011pt;}
.y3b_c02075{bottom:270.187200pt;}
.y37_c02075{bottom:284.108280pt;}
.y36_c02075{bottom:300.988200pt;}
.y35_c02075{bottom:317.868120pt;}
.y34_c02075{bottom:334.748040pt;}
.y33_c02075{bottom:351.627960pt;}
.y3a_c02075{bottom:368.428824pt;}
.y32_c02075{bottom:368.507880pt;}
.y39_c02075{bottom:385.228224pt;}
.y31_c02075{bottom:385.307280pt;}
.y38_c02075{bottom:402.108144pt;}
.y30_c02075{bottom:405.787067pt;}
.y2c_c02075{bottom:419.708227pt;}
.y2b_c02075{bottom:436.588147pt;}
.y2a_c02075{bottom:453.468067pt;}
.y29_c02075{bottom:470.347987pt;}
.y28_c02075{bottom:487.227907pt;}
.y27_c02075{bottom:504.027307pt;}
.y2f_c02075{bottom:520.828171pt;}
.y26_c02075{bottom:520.907227pt;}
.y2e_c02075{bottom:537.708091pt;}
.y25_c02075{bottom:537.787147pt;}
.y2d_c02075{bottom:554.588011pt;}
.y24_c02075{bottom:558.267067pt;}
.y22_c02075{bottom:572.187907pt;}
.y21_c02075{bottom:589.067827pt;}
.y20_c02075{bottom:605.947747pt;}
.y1f_c02075{bottom:622.747147pt;}
.y23_c02075{bottom:639.548011pt;}
.y1e_c02075{bottom:643.227067pt;}
.y1b_c02075{bottom:657.148067pt;}
.y1a_c02075{bottom:674.027987pt;}
.y19_c02075{bottom:690.907907pt;}
.y18_c02075{bottom:707.787827pt;}
.y17_c02075{bottom:724.667747pt;}
.y1d_c02075{bottom:741.388091pt;}
.y16_c02075{bottom:741.467147pt;}
.y1c_c02075{bottom:758.268011pt;}
.y15_c02075{bottom:761.947067pt;}
.y13_c02075{bottom:775.867387pt;}
.y12_c02075{bottom:792.747307pt;}
.y11_c02075{bottom:809.627227pt;}
.y10_c02075{bottom:826.507147pt;}
.y14_c02075{bottom:843.308011pt;}
.yf_c02075{bottom:846.987067pt;}
.yd_c02075{bottom:860.908147pt;}
.yc_c02075{bottom:877.788067pt;}
.yb_c02075{bottom:894.587467pt;}
.ya_c02075{bottom:911.467387pt;}
.y9_c02075{bottom:928.347307pt;}
.y8_c02075{bottom:945.227227pt;}
.y7_c02075{bottom:962.107147pt;}
.ye_c02075{bottom:978.908011pt;}
.y6_c02075{bottom:982.587067pt;}
.y5_c02075{bottom:996.107067pt;}
.y4_c02075{bottom:1012.667067pt;}
.y1_c02075{bottom:1060.587067pt;}
.h8_c02075{height:33.253594pt;}
.h4_c02075{height:37.801094pt;}
.h7_c02075{height:38.305762pt;}
.h3_c02075{height:47.721094pt;}
.h5_c02075{height:51.382969pt;}
.h6_c02075{height:52.012031pt;}
.h2_c02075{height:56.156250pt;}
.h1_c02075{height:56.843750pt;}
.h0_c02075{height:1122.666667pt;}
.w1_c02075{width:793.333333pt;}
.w0_c02075{width:793.626667pt;}
.x0_c02075{left:0.000000pt;}
.x1_c02075{left:113.440000pt;}
.x3_c02075{left:120.560000pt;}
.x4_c02075{left:252.960000pt;}
.x2_c02075{left:388.880000pt;}
.x5_c02075{left:640.880472pt;}
.x6_c02075{left:656.800008pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1dbbf172949a028538258a90.woff2')format("woff");}.ff1_c02076{font-family:ff1_c02076;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02076;src:url('chunks/assets/font_55f4503f521e7c8db6f0b416.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;}
.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);}
.v2_c02076{vertical-align:-22.680000px;}
.v3_c02076{vertical-align:-17.280000px;}
.v1_c02076{vertical-align:-4.680000px;}
.v0_c02076{vertical-align:0.000000px;}
.lsf_c02076{letter-spacing:-0.181116px;}
.lse_c02076{letter-spacing:-0.006588px;}
.lsd_c02076{letter-spacing:0.000000px;}
.ls9_c02076{letter-spacing:0.007200px;}
.lsc_c02076{letter-spacing:0.013176px;}
.ls5_c02076{letter-spacing:0.019764px;}
.ls8_c02076{letter-spacing:0.028800px;}
.lsb_c02076{letter-spacing:0.032940px;}
.ls2_c02076{letter-spacing:0.039528px;}
.ls3_c02076{letter-spacing:0.046116px;}
.lsa_c02076{letter-spacing:0.052704px;}
.ls0_c02076{letter-spacing:0.059292px;}
.ls10_c02076{letter-spacing:0.065880px;}
.ls1_c02076{letter-spacing:0.085644px;}
.ls6_c02076{letter-spacing:0.092232px;}
.ls4_c02076{letter-spacing:0.105408px;}
.ls11_c02076{letter-spacing:0.131760px;}
.ls7_c02076{letter-spacing:0.181944px;}
.sc__c02076{text-shadow:none;}
.sc0_c02076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02076{-webkit-text-stroke:0px transparent;}
.sc0_c02076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02076{word-spacing:-0.021600px;}
.ws10_c02076{word-spacing:-0.007200px;}
.ws1_c02076{word-spacing:0.000000px;}
.wsc_c02076{word-spacing:0.032940px;}
.wsb_c02076{word-spacing:5.468040px;}
.wsf_c02076{word-spacing:7.711200px;}
.wse_c02076{word-spacing:7.891200px;}
.ws4_c02076{word-spacing:9.005796px;}
.ws11_c02076{word-spacing:9.038736px;}
.ws15_c02076{word-spacing:9.071676px;}
.ws5_c02076{word-spacing:11.212776px;}
.ws3_c02076{word-spacing:11.548764px;}
.ws12_c02076{word-spacing:14.454072px;}
.ws13_c02076{word-spacing:14.473836px;}
.ws16_c02076{word-spacing:16.601760px;}
.ws6_c02076{word-spacing:21.648168px;}
.ws7_c02076{word-spacing:24.869700px;}
.ws8_c02076{word-spacing:24.882876px;}
.ws14_c02076{word-spacing:26.378352px;}
.ws9_c02076{word-spacing:34.231248px;}
.wsa_c02076{word-spacing:34.547472px;}
.ws2_c02076{word-spacing:43.658676px;}
.wsd_c02076{word-spacing:49.048272px;}
._2_c02076{margin-left:-1.185840px;}
._1_c02076{width:1.390068px;}
._3_c02076{width:97.294464px;}
._0_c02076{width:194.421600px;}
.fc0_c02076{color:rgb(0,0,0);}
.fs2_c02076{font-size:42.120000px;}
.fs3_c02076{font-size:47.880000px;}
.fs1_c02076{font-size:65.880000px;}
.fs0_c02076{font-size:72.000000px;}
.y0_c02076{bottom:0.000000px;}
.y3_c02076{bottom:57.360450px;}
.y2_c02076{bottom:78.060450px;}
.y3b_c02076{bottom:110.730450px;}
.y3a_c02076{bottom:131.430450px;}
.y39_c02076{bottom:152.130450px;}
.y38_c02076{bottom:172.830450px;}
.y37_c02076{bottom:193.530450px;}
.y36_c02076{bottom:214.230450px;}
.y35_c02076{bottom:234.930450px;}
.y34_c02076{bottom:255.540450px;}
.y33_c02076{bottom:276.240450px;}
.y32_c02076{bottom:296.940450px;}
.y31_c02076{bottom:317.640450px;}
.y30_c02076{bottom:338.340450px;}
.y2f_c02076{bottom:359.040450px;}
.y2e_c02076{bottom:379.740450px;}
.y2d_c02076{bottom:400.440450px;}
.y2c_c02076{bottom:421.140450px;}
.y2b_c02076{bottom:441.840450px;}
.y2a_c02076{bottom:462.540450px;}
.y29_c02076{bottom:483.240450px;}
.y28_c02076{bottom:503.940450px;}
.y27_c02076{bottom:524.640450px;}
.y26_c02076{bottom:545.340450px;}
.y25_c02076{bottom:566.040450px;}
.y24_c02076{bottom:586.740450px;}
.y23_c02076{bottom:607.440450px;}
.y22_c02076{bottom:628.140450px;}
.y21_c02076{bottom:648.840450px;}
.y20_c02076{bottom:669.540450px;}
.y1f_c02076{bottom:690.240450px;}
.y1e_c02076{bottom:710.940450px;}
.y1d_c02076{bottom:731.640450px;}
.y1c_c02076{bottom:752.340450px;}
.y18_c02076{bottom:773.581725px;}
.y17_c02076{bottom:792.571635px;}
.y16_c02076{bottom:811.561545px;}
.y15_c02076{bottom:830.551455px;}
.y1b_c02076{bottom:849.361842px;}
.y14_c02076{bottom:849.450780px;}
.y1a_c02076{bottom:868.351752px;}
.y13_c02076{bottom:868.440690px;}
.y19_c02076{bottom:887.341662px;}
.y12_c02076{bottom:892.920450px;}
.y10_c02076{bottom:907.500450px;}
.yf_c02076{bottom:928.200450px;}
.y11_c02076{bottom:950.160450px;}
.ye_c02076{bottom:955.740450px;}
.yd_c02076{bottom:969.961845px;}
.yc_c02076{bottom:988.951755px;}
.yb_c02076{bottom:1007.941665px;}
.ya_c02076{bottom:1026.931575px;}
.y9_c02076{bottom:1045.921485px;}
.y8_c02076{bottom:1064.911395px;}
.y7_c02076{bottom:1083.810720px;}
.y6_c02076{bottom:1102.800630px;}
.y5_c02076{bottom:1121.790540px;}
.y4_c02076{bottom:1140.780450px;}
.y1_c02076{bottom:1193.160450px;}
.h4_c02076{height:37.410293px;}
.h3_c02076{height:57.805840px;}
.h5_c02076{height:58.513535px;}
.h2_c02076{height:63.175781px;}
.h1_c02076{height:63.949219px;}
.h0_c02076{height:1263.000000px;}
.w1_c02076{width:892.500000px;}
.w0_c02076{width:892.830000px;}
.x0_c02076{left:0.000000px;}
.x1_c02076{left:127.620000px;}
.x4_c02076{left:135.630000px;}
.x3_c02076{left:284.580000px;}
.x2_c02076{left:437.490000px;}
.x5_c02076{left:721.440000px;}
@media print{
.v2_c02076{vertical-align:-20.160000pt;}
.v3_c02076{vertical-align:-15.360000pt;}
.v1_c02076{vertical-align:-4.160000pt;}
.v0_c02076{vertical-align:0.000000pt;}
.lsf_c02076{letter-spacing:-0.160992pt;}
.lse_c02076{letter-spacing:-0.005856pt;}
.lsd_c02076{letter-spacing:0.000000pt;}
.ls9_c02076{letter-spacing:0.006400pt;}
.lsc_c02076{letter-spacing:0.011712pt;}
.ls5_c02076{letter-spacing:0.017568pt;}
.ls8_c02076{letter-spacing:0.025600pt;}
.lsb_c02076{letter-spacing:0.029280pt;}
.ls2_c02076{letter-spacing:0.035136pt;}
.ls3_c02076{letter-spacing:0.040992pt;}
.lsa_c02076{letter-spacing:0.046848pt;}
.ls0_c02076{letter-spacing:0.052704pt;}
.ls10_c02076{letter-spacing:0.058560pt;}
.ls1_c02076{letter-spacing:0.076128pt;}
.ls6_c02076{letter-spacing:0.081984pt;}
.ls4_c02076{letter-spacing:0.093696pt;}
.ls11_c02076{letter-spacing:0.117120pt;}
.ls7_c02076{letter-spacing:0.161728pt;}
.ws0_c02076{word-spacing:-0.019200pt;}
.ws10_c02076{word-spacing:-0.006400pt;}
.ws1_c02076{word-spacing:0.000000pt;}
.wsc_c02076{word-spacing:0.029280pt;}
.wsb_c02076{word-spacing:4.860480pt;}
.wsf_c02076{word-spacing:6.854400pt;}
.wse_c02076{word-spacing:7.014400pt;}
.ws4_c02076{word-spacing:8.005152pt;}
.ws11_c02076{word-spacing:8.034432pt;}
.ws15_c02076{word-spacing:8.063712pt;}
.ws5_c02076{word-spacing:9.966912pt;}
.ws3_c02076{word-spacing:10.265568pt;}
.ws12_c02076{word-spacing:12.848064pt;}
.ws13_c02076{word-spacing:12.865632pt;}
.ws16_c02076{word-spacing:14.757120pt;}
.ws6_c02076{word-spacing:19.242816pt;}
.ws7_c02076{word-spacing:22.106400pt;}
.ws8_c02076{word-spacing:22.118112pt;}
.ws14_c02076{word-spacing:23.447424pt;}
.ws9_c02076{word-spacing:30.427776pt;}
.wsa_c02076{word-spacing:30.708864pt;}
.ws2_c02076{word-spacing:38.807712pt;}
.wsd_c02076{word-spacing:43.598464pt;}
._2_c02076{margin-left:-1.054080pt;}
._1_c02076{width:1.235616pt;}
._3_c02076{width:86.483968pt;}
._0_c02076{width:172.819200pt;}
.fs2_c02076{font-size:37.440000pt;}
.fs3_c02076{font-size:42.560000pt;}
.fs1_c02076{font-size:58.560000pt;}
.fs0_c02076{font-size:64.000000pt;}
.y0_c02076{bottom:0.000000pt;}
.y3_c02076{bottom:50.987067pt;}
.y2_c02076{bottom:69.387067pt;}
.y3b_c02076{bottom:98.427067pt;}
.y3a_c02076{bottom:116.827067pt;}
.y39_c02076{bottom:135.227067pt;}
.y38_c02076{bottom:153.627067pt;}
.y37_c02076{bottom:172.027067pt;}
.y36_c02076{bottom:190.427067pt;}
.y35_c02076{bottom:208.827067pt;}
.y34_c02076{bottom:227.147067pt;}
.y33_c02076{bottom:245.547067pt;}
.y32_c02076{bottom:263.947067pt;}
.y31_c02076{bottom:282.347067pt;}
.y30_c02076{bottom:300.747067pt;}
.y2f_c02076{bottom:319.147067pt;}
.y2e_c02076{bottom:337.547067pt;}
.y2d_c02076{bottom:355.947067pt;}
.y2c_c02076{bottom:374.347067pt;}
.y2b_c02076{bottom:392.747067pt;}
.y2a_c02076{bottom:411.147067pt;}
.y29_c02076{bottom:429.547067pt;}
.y28_c02076{bottom:447.947067pt;}
.y27_c02076{bottom:466.347067pt;}
.y26_c02076{bottom:484.747067pt;}
.y25_c02076{bottom:503.147067pt;}
.y24_c02076{bottom:521.547067pt;}
.y23_c02076{bottom:539.947067pt;}
.y22_c02076{bottom:558.347067pt;}
.y21_c02076{bottom:576.747067pt;}
.y20_c02076{bottom:595.147067pt;}
.y1f_c02076{bottom:613.547067pt;}
.y1e_c02076{bottom:631.947067pt;}
.y1d_c02076{bottom:650.347067pt;}
.y1c_c02076{bottom:668.747067pt;}
.y18_c02076{bottom:687.628200pt;}
.y17_c02076{bottom:704.508120pt;}
.y16_c02076{bottom:721.388040pt;}
.y15_c02076{bottom:738.267960pt;}
.y1b_c02076{bottom:754.988304pt;}
.y14_c02076{bottom:755.067360pt;}
.y1a_c02076{bottom:771.868224pt;}
.y13_c02076{bottom:771.947280pt;}
.y19_c02076{bottom:788.748144pt;}
.y12_c02076{bottom:793.707067pt;}
.y10_c02076{bottom:806.667067pt;}
.yf_c02076{bottom:825.067067pt;}
.y11_c02076{bottom:844.587067pt;}
.ye_c02076{bottom:849.547067pt;}
.yd_c02076{bottom:862.188307pt;}
.yc_c02076{bottom:879.068227pt;}
.yb_c02076{bottom:895.948147pt;}
.ya_c02076{bottom:912.828067pt;}
.y9_c02076{bottom:929.707987pt;}
.y8_c02076{bottom:946.587907pt;}
.y7_c02076{bottom:963.387307pt;}
.y6_c02076{bottom:980.267227pt;}
.y5_c02076{bottom:997.147147pt;}
.y4_c02076{bottom:1014.027067pt;}
.y1_c02076{bottom:1060.587067pt;}
.h4_c02076{height:33.253594pt;}
.h3_c02076{height:51.382969pt;}
.h5_c02076{height:52.012031pt;}
.h2_c02076{height:56.156250pt;}
.h1_c02076{height:56.843750pt;}
.h0_c02076{height:1122.666667pt;}
.w1_c02076{width:793.333333pt;}
.w0_c02076{width:793.626667pt;}
.x0_c02076{left:0.000000pt;}
.x1_c02076{left:113.440000pt;}
.x4_c02076{left:120.560000pt;}
.x3_c02076{left:252.960000pt;}
.x2_c02076{left:388.880000pt;}
.x5_c02076{left:641.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_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_d5a101d451107032d1785357.woff2')format("woff");}.ff1_c02077{font-family:ff1_c02077;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02077;src:url('chunks/assets/font_863cce7e5bd05ab5e5871581.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02077{font-family:ff3_c02077;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;}
.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);}
.v1_c02077{vertical-align:-11.160000px;}
.v0_c02077{vertical-align:0.000000px;}
.ls11_c02077{letter-spacing:-0.270540px;}
.lsf_c02077{letter-spacing:-0.090180px;}
.lsc_c02077{letter-spacing:-0.050400px;}
.lsa_c02077{letter-spacing:-0.014400px;}
.lsb_c02077{letter-spacing:-0.007200px;}
.ls9_c02077{letter-spacing:0.000000px;}
.ls1_c02077{letter-spacing:0.007200px;}
.ls4_c02077{letter-spacing:0.014400px;}
.ls0_c02077{letter-spacing:0.021600px;}
.ls7_c02077{letter-spacing:0.028800px;}
.ls3_c02077{letter-spacing:0.036000px;}
.ls6_c02077{letter-spacing:0.043200px;}
.ls8_c02077{letter-spacing:0.048096px;}
.ls5_c02077{letter-spacing:0.057600px;}
.ls2_c02077{letter-spacing:0.100800px;}
.ls10_c02077{letter-spacing:0.138276px;}
.lsd_c02077{letter-spacing:0.144288px;}
.lse_c02077{letter-spacing:0.180360px;}
.sc__c02077{text-shadow:none;}
.sc0_c02077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02077{-webkit-text-stroke:0px transparent;}
.sc0_c02077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02077{word-spacing:-18.000000px;}
.ws19_c02077{word-spacing:-0.408816px;}
.ws16_c02077{word-spacing:-0.136800px;}
.ws1a_c02077{word-spacing:-0.129600px;}
.ws12_c02077{word-spacing:-0.122400px;}
.ws17_c02077{word-spacing:-0.057600px;}
.ws1_c02077{word-spacing:-0.021600px;}
.ws15_c02077{word-spacing:-0.014400px;}
.ws3_c02077{word-spacing:-0.007200px;}
.ws2_c02077{word-spacing:0.000000px;}
.ws18_c02077{word-spacing:0.180360px;}
.ws13_c02077{word-spacing:1.771200px;}
.ws14_c02077{word-spacing:1.778400px;}
.ws4_c02077{word-spacing:3.578400px;}
.ws5_c02077{word-spacing:3.614400px;}
.wsc_c02077{word-spacing:8.100000px;}
.wsd_c02077{word-spacing:8.128800px;}
.wsb_c02077{word-spacing:8.258400px;}
.wsf_c02077{word-spacing:14.342400px;}
.ws10_c02077{word-spacing:14.421600px;}
.ws8_c02077{word-spacing:16.927200px;}
.ws7_c02077{word-spacing:16.999200px;}
.ws6_c02077{word-spacing:17.272800px;}
.ws9_c02077{word-spacing:18.259200px;}
.wsa_c02077{word-spacing:18.345600px;}
.wse_c02077{word-spacing:27.338400px;}
.ws11_c02077{word-spacing:30.578400px;}
._1_c02077{margin-left:-1.555200px;}
._2_c02077{width:91.210896px;}
._4_c02077{width:94.228920px;}
._0_c02077{width:194.421600px;}
._5_c02077{width:202.723200px;}
._3_c02077{width:372.031200px;}
.fc0_c02077{color:rgb(0,0,0);}
.fs4_c02077{font-size:2.880000px;}
.fs1_c02077{font-size:47.880000px;}
.fs5_c02077{font-size:54.000000px;}
.fs3_c02077{font-size:60.120000px;}
.fs0_c02077{font-size:72.000000px;}
.fs2_c02077{font-size:83.880000px;}
.y0_c02077{bottom:0.000000px;}
.y3_c02077{bottom:57.360450px;}
.y2_c02077{bottom:78.060450px;}
.y33_c02077{bottom:111.450600px;}
.y32_c02077{bottom:132.150600px;}
.y31_c02077{bottom:152.850600px;}
.y30_c02077{bottom:173.550600px;}
.y2f_c02077{bottom:194.250600px;}
.y2e_c02077{bottom:214.950600px;}
.y2d_c02077{bottom:235.650600px;}
.y2c_c02077{bottom:256.350600px;}
.y2b_c02077{bottom:277.050600px;}
.y2a_c02077{bottom:297.750600px;}
.y29_c02077{bottom:318.450600px;}
.y28_c02077{bottom:339.150600px;}
.y27_c02077{bottom:359.850600px;}
.y26_c02077{bottom:380.550600px;}
.y25_c02077{bottom:401.250600px;}
.y24_c02077{bottom:421.950600px;}
.y23_c02077{bottom:442.650600px;}
.y22_c02077{bottom:463.260600px;}
.y21_c02077{bottom:483.960600px;}
.y20_c02077{bottom:504.660600px;}
.y1f_c02077{bottom:525.360600px;}
.y1e_c02077{bottom:545.160450px;}
.y1d_c02077{bottom:560.550450px;}
.y1c_c02077{bottom:589.170450px;}
.y1b_c02077{bottom:596.640450px;}
.y1a_c02077{bottom:618.150450px;}
.y19_c02077{bottom:639.570450px;}
.y18_c02077{bottom:658.380450px;}
.y17_c02077{bottom:679.080450px;}
.y16_c02077{bottom:699.780450px;}
.y15_c02077{bottom:721.110450px;}
.y14_c02077{bottom:742.530450px;}
.y13_c02077{bottom:762.690450px;}
.y12_c02077{bottom:777.810450px;}
.y11_c02077{bottom:797.429874px;}
.y10_c02077{bottom:811.200162px;}
.yf_c02077{bottom:824.970450px;}
.ye_c02077{bottom:850.350450px;}
.yd_c02077{bottom:881.400450px;}
.yc_c02077{bottom:912.450450px;}
.yb_c02077{bottom:943.500450px;}
.ya_c02077{bottom:974.550450px;}
.y9_c02077{bottom:1005.600450px;}
.y8_c02077{bottom:1036.650450px;}
.y7_c02077{bottom:1067.700450px;}
.y6_c02077{bottom:1098.570450px;}
.y5_c02077{bottom:1119.450450px;}
.y4_c02077{bottom:1139.970450px;}
.y1_c02077{bottom:1193.160450px;}
.h7_c02077{height:2.557969px;}
.h3_c02077{height:42.011895px;}
.h4_c02077{height:42.526230px;}
.h8_c02077{height:47.961914px;}
.h6_c02077{height:53.397598px;}
.h2_c02077{height:63.175781px;}
.h1_c02077{height:63.949219px;}
.h5_c02077{height:74.500840px;}
.h0_c02077{height:1263.000000px;}
.w1_c02077{width:892.500000px;}
.w0_c02077{width:892.830000px;}
.x0_c02077{left:0.000000px;}
.x4_c02077{left:117.000000px;}
.x1_c02077{left:127.620000px;}
.x5_c02077{left:135.630000px;}
.x6_c02077{left:146.340000px;}
.x3_c02077{left:148.950000px;}
.x2_c02077{left:437.490000px;}
@media print{
.v1_c02077{vertical-align:-9.920000pt;}
.v0_c02077{vertical-align:0.000000pt;}
.ls11_c02077{letter-spacing:-0.240480pt;}
.lsf_c02077{letter-spacing:-0.080160pt;}
.lsc_c02077{letter-spacing:-0.044800pt;}
.lsa_c02077{letter-spacing:-0.012800pt;}
.lsb_c02077{letter-spacing:-0.006400pt;}
.ls9_c02077{letter-spacing:0.000000pt;}
.ls1_c02077{letter-spacing:0.006400pt;}
.ls4_c02077{letter-spacing:0.012800pt;}
.ls0_c02077{letter-spacing:0.019200pt;}
.ls7_c02077{letter-spacing:0.025600pt;}
.ls3_c02077{letter-spacing:0.032000pt;}
.ls6_c02077{letter-spacing:0.038400pt;}
.ls8_c02077{letter-spacing:0.042752pt;}
.ls5_c02077{letter-spacing:0.051200pt;}
.ls2_c02077{letter-spacing:0.089600pt;}
.ls10_c02077{letter-spacing:0.122912pt;}
.lsd_c02077{letter-spacing:0.128256pt;}
.lse_c02077{letter-spacing:0.160320pt;}
.ws0_c02077{word-spacing:-16.000000pt;}
.ws19_c02077{word-spacing:-0.363392pt;}
.ws16_c02077{word-spacing:-0.121600pt;}
.ws1a_c02077{word-spacing:-0.115200pt;}
.ws12_c02077{word-spacing:-0.108800pt;}
.ws17_c02077{word-spacing:-0.051200pt;}
.ws1_c02077{word-spacing:-0.019200pt;}
.ws15_c02077{word-spacing:-0.012800pt;}
.ws3_c02077{word-spacing:-0.006400pt;}
.ws2_c02077{word-spacing:0.000000pt;}
.ws18_c02077{word-spacing:0.160320pt;}
.ws13_c02077{word-spacing:1.574400pt;}
.ws14_c02077{word-spacing:1.580800pt;}
.ws4_c02077{word-spacing:3.180800pt;}
.ws5_c02077{word-spacing:3.212800pt;}
.wsc_c02077{word-spacing:7.200000pt;}
.wsd_c02077{word-spacing:7.225600pt;}
.wsb_c02077{word-spacing:7.340800pt;}
.wsf_c02077{word-spacing:12.748800pt;}
.ws10_c02077{word-spacing:12.819200pt;}
.ws8_c02077{word-spacing:15.046400pt;}
.ws7_c02077{word-spacing:15.110400pt;}
.ws6_c02077{word-spacing:15.353600pt;}
.ws9_c02077{word-spacing:16.230400pt;}
.wsa_c02077{word-spacing:16.307200pt;}
.wse_c02077{word-spacing:24.300800pt;}
.ws11_c02077{word-spacing:27.180800pt;}
._1_c02077{margin-left:-1.382400pt;}
._2_c02077{width:81.076352pt;}
._4_c02077{width:83.759040pt;}
._0_c02077{width:172.819200pt;}
._5_c02077{width:180.198400pt;}
._3_c02077{width:330.694400pt;}
.fs4_c02077{font-size:2.560000pt;}
.fs1_c02077{font-size:42.560000pt;}
.fs5_c02077{font-size:48.000000pt;}
.fs3_c02077{font-size:53.440000pt;}
.fs0_c02077{font-size:64.000000pt;}
.fs2_c02077{font-size:74.560000pt;}
.y0_c02077{bottom:0.000000pt;}
.y3_c02077{bottom:50.987067pt;}
.y2_c02077{bottom:69.387067pt;}
.y33_c02077{bottom:99.067200pt;}
.y32_c02077{bottom:117.467200pt;}
.y31_c02077{bottom:135.867200pt;}
.y30_c02077{bottom:154.267200pt;}
.y2f_c02077{bottom:172.667200pt;}
.y2e_c02077{bottom:191.067200pt;}
.y2d_c02077{bottom:209.467200pt;}
.y2c_c02077{bottom:227.867200pt;}
.y2b_c02077{bottom:246.267200pt;}
.y2a_c02077{bottom:264.667200pt;}
.y29_c02077{bottom:283.067200pt;}
.y28_c02077{bottom:301.467200pt;}
.y27_c02077{bottom:319.867200pt;}
.y26_c02077{bottom:338.267200pt;}
.y25_c02077{bottom:356.667200pt;}
.y24_c02077{bottom:375.067200pt;}
.y23_c02077{bottom:393.467200pt;}
.y22_c02077{bottom:411.787200pt;}
.y21_c02077{bottom:430.187200pt;}
.y20_c02077{bottom:448.587200pt;}
.y1f_c02077{bottom:466.987200pt;}
.y1e_c02077{bottom:484.587067pt;}
.y1d_c02077{bottom:498.267067pt;}
.y1c_c02077{bottom:523.707067pt;}
.y1b_c02077{bottom:530.347067pt;}
.y1a_c02077{bottom:549.467067pt;}
.y19_c02077{bottom:568.507067pt;}
.y18_c02077{bottom:585.227067pt;}
.y17_c02077{bottom:603.627067pt;}
.y16_c02077{bottom:622.027067pt;}
.y15_c02077{bottom:640.987067pt;}
.y14_c02077{bottom:660.027067pt;}
.y13_c02077{bottom:677.947067pt;}
.y12_c02077{bottom:691.387067pt;}
.y11_c02077{bottom:708.826555pt;}
.y10_c02077{bottom:721.066811pt;}
.yf_c02077{bottom:733.307067pt;}
.ye_c02077{bottom:755.867067pt;}
.yd_c02077{bottom:783.467067pt;}
.yc_c02077{bottom:811.067067pt;}
.yb_c02077{bottom:838.667067pt;}
.ya_c02077{bottom:866.267067pt;}
.y9_c02077{bottom:893.867067pt;}
.y8_c02077{bottom:921.467067pt;}
.y7_c02077{bottom:949.067067pt;}
.y6_c02077{bottom:976.507067pt;}
.y5_c02077{bottom:995.067067pt;}
.y4_c02077{bottom:1013.307067pt;}
.y1_c02077{bottom:1060.587067pt;}
.h7_c02077{height:2.273750pt;}
.h3_c02077{height:37.343906pt;}
.h4_c02077{height:37.801094pt;}
.h8_c02077{height:42.632812pt;}
.h6_c02077{height:47.464531pt;}
.h2_c02077{height:56.156250pt;}
.h1_c02077{height:56.843750pt;}
.h5_c02077{height:66.222969pt;}
.h0_c02077{height:1122.666667pt;}
.w1_c02077{width:793.333333pt;}
.w0_c02077{width:793.626667pt;}
.x0_c02077{left:0.000000pt;}
.x4_c02077{left:104.000000pt;}
.x1_c02077{left:113.440000pt;}
.x5_c02077{left:120.560000pt;}
.x6_c02077{left:130.080000pt;}
.x3_c02077{left:132.400000pt;}
.x2_c02077{left:388.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_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_530cff7b08a0f0b1b4d3a252.woff2')format("woff");}.ff1_c02078{font-family:ff1_c02078;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02078;src:url('chunks/assets/font_0cd9ea3cf573ad44ad297849.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_f9394cd301798160982dd262.woff2')format("woff");}.ff3_c02078{font-family:ff3_c02078;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_c02078;src:url('chunks/assets/font_b33e8eb34c5d0600e207343a.woff2')format("woff");}.ff4_c02078{font-family:ff4_c02078;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_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);}
.v1_c02078{vertical-align:-9.000000px;}
.v0_c02078{vertical-align:0.000000px;}
.ls10_c02078{letter-spacing:-0.064800px;}
.lsd_c02078{letter-spacing:-0.036000px;}
.lsf_c02078{letter-spacing:-0.028800px;}
.lsc_c02078{letter-spacing:-0.014400px;}
.lse_c02078{letter-spacing:-0.007200px;}
.lsb_c02078{letter-spacing:0.000000px;}
.ls5_c02078{letter-spacing:0.007200px;}
.ls0_c02078{letter-spacing:0.014400px;}
.ls4_c02078{letter-spacing:0.021600px;}
.ls6_c02078{letter-spacing:0.028800px;}
.ls8_c02078{letter-spacing:0.050400px;}
.lsa_c02078{letter-spacing:0.057600px;}
.ls9_c02078{letter-spacing:0.064800px;}
.ls7_c02078{letter-spacing:0.079200px;}
.ls1_c02078{letter-spacing:0.093600px;}
.ls2_c02078{letter-spacing:0.144000px;}
.ls3_c02078{letter-spacing:0.180000px;}
.sc__c02078{text-shadow:none;}
.sc0_c02078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02078{-webkit-text-stroke:0px transparent;}
.sc0_c02078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02078{word-spacing:-17.992800px;}
.ws1b_c02078{word-spacing:-0.410400px;}
.ws1c_c02078{word-spacing:-0.288000px;}
.ws16_c02078{word-spacing:-0.244800px;}
.ws18_c02078{word-spacing:-0.208800px;}
.ws1d_c02078{word-spacing:-0.201600px;}
.ws13_c02078{word-spacing:-0.194400px;}
.wsa_c02078{word-spacing:-0.187200px;}
.ws17_c02078{word-spacing:-0.136800px;}
.wsc_c02078{word-spacing:-0.115200px;}
.ws14_c02078{word-spacing:-0.108000px;}
.wsb_c02078{word-spacing:-0.100800px;}
.ws19_c02078{word-spacing:-0.057600px;}
.ws15_c02078{word-spacing:-0.050400px;}
.ws1a_c02078{word-spacing:-0.028800px;}
.ws1_c02078{word-spacing:-0.021600px;}
.ws3_c02078{word-spacing:-0.014400px;}
.ws10_c02078{word-spacing:-0.007200px;}
.ws2_c02078{word-spacing:0.000000px;}
.ws8_c02078{word-spacing:0.007200px;}
.ws9_c02078{word-spacing:0.014400px;}
.ws6_c02078{word-spacing:3.614400px;}
.ws7_c02078{word-spacing:3.636000px;}
.ws12_c02078{word-spacing:5.234400px;}
.ws11_c02078{word-spacing:5.277600px;}
.wsd_c02078{word-spacing:10.540800px;}
.wse_c02078{word-spacing:10.656000px;}
.wsf_c02078{word-spacing:10.792800px;}
.ws5_c02078{word-spacing:11.073600px;}
.ws4_c02078{word-spacing:11.145600px;}
._5_c02078{margin-left:-1.087200px;}
._2_c02078{width:112.096800px;}
._3_c02078{width:116.056800px;}
._1_c02078{width:165.024000px;}
._0_c02078{width:194.421600px;}
._4_c02078{width:278.236800px;}
.fc0_c02078{color:rgb(0,0,0);}
.fs1_c02078{font-size:47.880000px;}
.fs0_c02078{font-size:72.000000px;}
.y0_c02078{bottom:0.000000px;}
.y3_c02078{bottom:57.360450px;}
.y2_c02078{bottom:78.060450px;}
.y31_c02078{bottom:134.490600px;}
.y30_c02078{bottom:165.540600px;}
.y2f_c02078{bottom:196.590600px;}
.y2e_c02078{bottom:227.640600px;}
.y2d_c02078{bottom:258.690600px;}
.y2c_c02078{bottom:289.740600px;}
.y2b_c02078{bottom:320.790600px;}
.y2a_c02078{bottom:351.840600px;}
.y29_c02078{bottom:382.890600px;}
.y28_c02078{bottom:403.590600px;}
.y27_c02078{bottom:424.200600px;}
.y26_c02078{bottom:444.900600px;}
.y25_c02078{bottom:465.600600px;}
.y24_c02078{bottom:486.300600px;}
.y23_c02078{bottom:507.000600px;}
.y22_c02078{bottom:528.690450px;}
.y21_c02078{bottom:549.390450px;}
.y20_c02078{bottom:570.090450px;}
.y1f_c02078{bottom:591.330450px;}
.y1e_c02078{bottom:612.930450px;}
.y1d_c02078{bottom:633.630450px;}
.y1c_c02078{bottom:654.960450px;}
.y1b_c02078{bottom:676.560450px;}
.y1a_c02078{bottom:697.800450px;}
.y19_c02078{bottom:719.490450px;}
.y18_c02078{bottom:740.190450px;}
.y17_c02078{bottom:760.890450px;}
.y16_c02078{bottom:781.500450px;}
.y15_c02078{bottom:802.200450px;}
.y14_c02078{bottom:822.900450px;}
.y13_c02078{bottom:844.230450px;}
.y12_c02078{bottom:865.830450px;}
.y11_c02078{bottom:886.530450px;}
.y10_c02078{bottom:907.770450px;}
.yf_c02078{bottom:929.460450px;}
.ye_c02078{bottom:949.980450px;}
.yc_c02078{bottom:971.400450px;}
.yb_c02078{bottom:992.100450px;}
.yd_c02078{bottom:992.280450px;}
.ya_c02078{bottom:1013.520450px;}
.y9_c02078{bottom:1035.030450px;}
.y8_c02078{bottom:1056.540450px;}
.y7_c02078{bottom:1077.240450px;}
.y6_c02078{bottom:1097.850450px;}
.y5_c02078{bottom:1119.270450px;}
.y4_c02078{bottom:1139.970450px;}
.y1_c02078{bottom:1193.160450px;}
.h2_c02078{height:63.175781px;}
.h1_c02078{height:63.949219px;}
.h4_c02078{height:70.628906px;}
.h3_c02078{height:70.988906px;}
.h0_c02078{height:1263.000000px;}
.w1_c02078{width:892.500000px;}
.w0_c02078{width:892.830000px;}
.x0_c02078{left:0.000000px;}
.x1_c02078{left:127.620000px;}
.x3_c02078{left:135.630000px;}
.x4_c02078{left:252.630000px;}
.x2_c02078{left:437.490000px;}
@media print{
.v1_c02078{vertical-align:-8.000000pt;}
.v0_c02078{vertical-align:0.000000pt;}
.ls10_c02078{letter-spacing:-0.057600pt;}
.lsd_c02078{letter-spacing:-0.032000pt;}
.lsf_c02078{letter-spacing:-0.025600pt;}
.lsc_c02078{letter-spacing:-0.012800pt;}
.lse_c02078{letter-spacing:-0.006400pt;}
.lsb_c02078{letter-spacing:0.000000pt;}
.ls5_c02078{letter-spacing:0.006400pt;}
.ls0_c02078{letter-spacing:0.012800pt;}
.ls4_c02078{letter-spacing:0.019200pt;}
.ls6_c02078{letter-spacing:0.025600pt;}
.ls8_c02078{letter-spacing:0.044800pt;}
.lsa_c02078{letter-spacing:0.051200pt;}
.ls9_c02078{letter-spacing:0.057600pt;}
.ls7_c02078{letter-spacing:0.070400pt;}
.ls1_c02078{letter-spacing:0.083200pt;}
.ls2_c02078{letter-spacing:0.128000pt;}
.ls3_c02078{letter-spacing:0.160000pt;}
.ws0_c02078{word-spacing:-15.993600pt;}
.ws1b_c02078{word-spacing:-0.364800pt;}
.ws1c_c02078{word-spacing:-0.256000pt;}
.ws16_c02078{word-spacing:-0.217600pt;}
.ws18_c02078{word-spacing:-0.185600pt;}
.ws1d_c02078{word-spacing:-0.179200pt;}
.ws13_c02078{word-spacing:-0.172800pt;}
.wsa_c02078{word-spacing:-0.166400pt;}
.ws17_c02078{word-spacing:-0.121600pt;}
.wsc_c02078{word-spacing:-0.102400pt;}
.ws14_c02078{word-spacing:-0.096000pt;}
.wsb_c02078{word-spacing:-0.089600pt;}
.ws19_c02078{word-spacing:-0.051200pt;}
.ws15_c02078{word-spacing:-0.044800pt;}
.ws1a_c02078{word-spacing:-0.025600pt;}
.ws1_c02078{word-spacing:-0.019200pt;}
.ws3_c02078{word-spacing:-0.012800pt;}
.ws10_c02078{word-spacing:-0.006400pt;}
.ws2_c02078{word-spacing:0.000000pt;}
.ws8_c02078{word-spacing:0.006400pt;}
.ws9_c02078{word-spacing:0.012800pt;}
.ws6_c02078{word-spacing:3.212800pt;}
.ws7_c02078{word-spacing:3.232000pt;}
.ws12_c02078{word-spacing:4.652800pt;}
.ws11_c02078{word-spacing:4.691200pt;}
.wsd_c02078{word-spacing:9.369600pt;}
.wse_c02078{word-spacing:9.472000pt;}
.wsf_c02078{word-spacing:9.593600pt;}
.ws5_c02078{word-spacing:9.843200pt;}
.ws4_c02078{word-spacing:9.907200pt;}
._5_c02078{margin-left:-0.966400pt;}
._2_c02078{width:99.641600pt;}
._3_c02078{width:103.161600pt;}
._1_c02078{width:146.688000pt;}
._0_c02078{width:172.819200pt;}
._4_c02078{width:247.321600pt;}
.fs1_c02078{font-size:42.560000pt;}
.fs0_c02078{font-size:64.000000pt;}
.y0_c02078{bottom:0.000000pt;}
.y3_c02078{bottom:50.987067pt;}
.y2_c02078{bottom:69.387067pt;}
.y31_c02078{bottom:119.547200pt;}
.y30_c02078{bottom:147.147200pt;}
.y2f_c02078{bottom:174.747200pt;}
.y2e_c02078{bottom:202.347200pt;}
.y2d_c02078{bottom:229.947200pt;}
.y2c_c02078{bottom:257.547200pt;}
.y2b_c02078{bottom:285.147200pt;}
.y2a_c02078{bottom:312.747200pt;}
.y29_c02078{bottom:340.347200pt;}
.y28_c02078{bottom:358.747200pt;}
.y27_c02078{bottom:377.067200pt;}
.y26_c02078{bottom:395.467200pt;}
.y25_c02078{bottom:413.867200pt;}
.y24_c02078{bottom:432.267200pt;}
.y23_c02078{bottom:450.667200pt;}
.y22_c02078{bottom:469.947067pt;}
.y21_c02078{bottom:488.347067pt;}
.y20_c02078{bottom:506.747067pt;}
.y1f_c02078{bottom:525.627067pt;}
.y1e_c02078{bottom:544.827067pt;}
.y1d_c02078{bottom:563.227067pt;}
.y1c_c02078{bottom:582.187067pt;}
.y1b_c02078{bottom:601.387067pt;}
.y1a_c02078{bottom:620.267067pt;}
.y19_c02078{bottom:639.547067pt;}
.y18_c02078{bottom:657.947067pt;}
.y17_c02078{bottom:676.347067pt;}
.y16_c02078{bottom:694.667067pt;}
.y15_c02078{bottom:713.067067pt;}
.y14_c02078{bottom:731.467067pt;}
.y13_c02078{bottom:750.427067pt;}
.y12_c02078{bottom:769.627067pt;}
.y11_c02078{bottom:788.027067pt;}
.y10_c02078{bottom:806.907067pt;}
.yf_c02078{bottom:826.187067pt;}
.ye_c02078{bottom:844.427067pt;}
.yc_c02078{bottom:863.467067pt;}
.yb_c02078{bottom:881.867067pt;}
.yd_c02078{bottom:882.027067pt;}
.ya_c02078{bottom:900.907067pt;}
.y9_c02078{bottom:920.027067pt;}
.y8_c02078{bottom:939.147067pt;}
.y7_c02078{bottom:957.547067pt;}
.y6_c02078{bottom:975.867067pt;}
.y5_c02078{bottom:994.907067pt;}
.y4_c02078{bottom:1013.307067pt;}
.y1_c02078{bottom:1060.587067pt;}
.h2_c02078{height:56.156250pt;}
.h1_c02078{height:56.843750pt;}
.h4_c02078{height:62.781250pt;}
.h3_c02078{height:63.101250pt;}
.h0_c02078{height:1122.666667pt;}
.w1_c02078{width:793.333333pt;}
.w0_c02078{width:793.626667pt;}
.x0_c02078{left:0.000000pt;}
.x1_c02078{left:113.440000pt;}
.x3_c02078{left:120.560000pt;}
.x4_c02078{left:224.560000pt;}
.x2_c02078{left:388.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_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_831cedcdf6a36725c10c5b60.woff2')format("woff");}.ff1_c02079{font-family:ff1_c02079;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02079;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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;}
.ls1a_c02079{letter-spacing:-0.150300px;}
.ls17_c02079{letter-spacing:-0.028800px;}
.ls18_c02079{letter-spacing:-0.021600px;}
.ls14_c02079{letter-spacing:-0.014400px;}
.ls15_c02079{letter-spacing:-0.007200px;}
.ls1b_c02079{letter-spacing:-0.006588px;}
.ls13_c02079{letter-spacing:0.000000px;}
.ls16_c02079{letter-spacing:0.007200px;}
.ls0_c02079{letter-spacing:0.014400px;}
.ls19_c02079{letter-spacing:0.021600px;}
.lsf_c02079{letter-spacing:0.032940px;}
.ls10_c02079{letter-spacing:0.039528px;}
.ls6_c02079{letter-spacing:0.059292px;}
.ls4_c02079{letter-spacing:0.065880px;}
.lse_c02079{letter-spacing:0.072468px;}
.ls7_c02079{letter-spacing:0.079056px;}
.lsb_c02079{letter-spacing:0.085644px;}
.ls3_c02079{letter-spacing:0.092232px;}
.lsd_c02079{letter-spacing:0.105408px;}
.ls9_c02079{letter-spacing:0.138348px;}
.ls2_c02079{letter-spacing:0.144288px;}
.ls5_c02079{letter-spacing:0.151524px;}
.lsc_c02079{letter-spacing:0.158112px;}
.ls8_c02079{letter-spacing:0.177876px;}
.lsa_c02079{letter-spacing:76.410000px;}
.ls12_c02079{letter-spacing:377.010000px;}
.ls11_c02079{letter-spacing:397.530000px;}
.ls1_c02079{letter-spacing:499.680000px;}
.sc__c02079{text-shadow:none;}
.sc0_c02079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02079{-webkit-text-stroke:0px transparent;}
.sc0_c02079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02079{word-spacing:-17.971200px;}
.ws6_c02079{word-spacing:-16.647876px;}
.ws12_c02079{word-spacing:-0.201600px;}
.wsf_c02079{word-spacing:-0.172800px;}
.ws11_c02079{word-spacing:-0.072000px;}
.ws13_c02079{word-spacing:-0.054108px;}
.wsc_c02079{word-spacing:-0.021600px;}
.ws10_c02079{word-spacing:-0.007200px;}
.wsd_c02079{word-spacing:0.000000px;}
.ws16_c02079{word-spacing:0.013176px;}
.wse_c02079{word-spacing:0.014400px;}
.ws14_c02079{word-spacing:0.026352px;}
.ws15_c02079{word-spacing:0.032940px;}
.ws18_c02079{word-spacing:0.052704px;}
.ws17_c02079{word-spacing:0.059292px;}
.ws19_c02079{word-spacing:0.098820px;}
.ws9_c02079{word-spacing:59.362380px;}
.wsa_c02079{word-spacing:66.169440px;}
.ws8_c02079{word-spacing:68.318496px;}
.ws4_c02079{word-spacing:75.878496px;}
.ws5_c02079{word-spacing:89.602380px;}
.ws2_c02079{word-spacing:101.076372px;}
.ws1_c02079{word-spacing:109.042380px;}
.ws3_c02079{word-spacing:122.362380px;}
.wsb_c02079{word-spacing:122.893020px;}
.ws7_c02079{word-spacing:237.946608px;}
._2_c02079{margin-left:-1.148292px;}
._6_c02079{width:86.043132px;}
._1a_c02079{width:87.409440px;}
._17_c02079{width:89.558496px;}
._8_c02079{width:115.650000px;}
._11_c02079{width:117.726372px;}
._c_c02079{width:122.316372px;}
._5_c02079{width:126.810000px;}
._7_c02079{width:128.874600px;}
._10_c02079{width:139.284504px;}
._14_c02079{width:142.186608px;}
._4_c02079{width:149.754600px;}
._15_c02079{width:151.380000px;}
._13_c02079{width:155.794248px;}
._1b_c02079{width:157.289796px;}
._d_c02079{width:179.267256px;}
._3_c02079{width:191.839284px;}
._0_c02079{width:194.421600px;}
._1c_c02079{width:197.599536px;}
._e_c02079{width:226.872144px;}
._a_c02079{width:238.410000px;}
._1d_c02079{width:241.549704px;}
._f_c02079{width:245.204424px;}
._18_c02079{width:254.611656px;}
._19_c02079{width:261.610776px;}
._12_c02079{width:274.461732px;}
._b_c02079{width:289.286856px;}
._16_c02079{width:307.461024px;}
._9_c02079{width:340.317504px;}
._1_c02079{width:2164.680000px;}
.fc0_c02079{color:rgb(0,0,0);}
.fs1_c02079{font-size:54.000000px;}
.fs2_c02079{font-size:60.120000px;}
.fs3_c02079{font-size:65.880000px;}
.fs0_c02079{font-size:72.000000px;}
.y0_c02079{bottom:0.000000px;}
.y3_c02079{bottom:57.360450px;}
.y2_c02079{bottom:78.060450px;}
.y28_c02079{bottom:125.850450px;}
.y27_c02079{bottom:141.330900px;}
.y26_c02079{bottom:156.900450px;}
.y25_c02079{bottom:172.380900px;}
.y24_c02079{bottom:187.950450px;}
.y23_c02079{bottom:203.430900px;}
.y22_c02079{bottom:219.000450px;}
.y21_c02079{bottom:234.480900px;}
.y20_c02079{bottom:250.050450px;}
.y1f_c02079{bottom:267.690450px;}
.y1e_c02079{bottom:286.680450px;}
.y1d_c02079{bottom:305.670450px;}
.y1c_c02079{bottom:324.660450px;}
.y1b_c02079{bottom:344.370450px;}
.y1a_c02079{bottom:363.360450px;}
.y19_c02079{bottom:382.350450px;}
.y18_c02079{bottom:401.250600px;}
.y17_c02079{bottom:420.240450px;}
.y16_c02079{bottom:439.230450px;}
.y15_c02079{bottom:458.220450px;}
.y14_c02079{bottom:476.760450px;}
.y13_c02079{bottom:494.670450px;}
.y12_c02079{bottom:515.370600px;}
.y11_c02079{bottom:536.070450px;}
.y10_c02079{bottom:556.770450px;}
.yf_c02079{bottom:579.900450px;}
.ye_c02079{bottom:596.370450px;}
.yd_c02079{bottom:617.070450px;}
.yc_c02079{bottom:637.770450px;}
.yb_c02079{bottom:658.470450px;}
.ya_c02079{bottom:679.170450px;}
.y9_c02079{bottom:699.870450px;}
.y8_c02079{bottom:720.570450px;}
.y7_c02079{bottom:737.310450px;}
.y6_c02079{bottom:1077.870450px;}
.y5_c02079{bottom:1108.920450px;}
.y4_c02079{bottom:1139.970450px;}
.y1_c02079{bottom:1193.160450px;}
.h3_c02079{height:47.961914px;}
.h4_c02079{height:53.397598px;}
.h5_c02079{height:58.513535px;}
.h2_c02079{height:63.175781px;}
.h1_c02079{height:63.949219px;}
.h0_c02079{height:1263.000000px;}
.w1_c02079{width:892.500000px;}
.w0_c02079{width:892.830000px;}
.x0_c02079{left:0.000000px;}
.x1_c02079{left:127.620000px;}
.x4_c02079{left:135.630000px;}
.xa_c02079{left:162.360000px;}
.x5_c02079{left:279.720000px;}
.x6_c02079{left:284.760000px;}
.x3_c02079{left:389.070000px;}
.x2_c02079{left:437.490000px;}
.x8_c02079{left:442.170000px;}
.x7_c02079{left:469.440000px;}
.x9_c02079{left:472.140000px;}
@media print{
.v0_c02079{vertical-align:0.000000pt;}
.ls1a_c02079{letter-spacing:-0.133600pt;}
.ls17_c02079{letter-spacing:-0.025600pt;}
.ls18_c02079{letter-spacing:-0.019200pt;}
.ls14_c02079{letter-spacing:-0.012800pt;}
.ls15_c02079{letter-spacing:-0.006400pt;}
.ls1b_c02079{letter-spacing:-0.005856pt;}
.ls13_c02079{letter-spacing:0.000000pt;}
.ls16_c02079{letter-spacing:0.006400pt;}
.ls0_c02079{letter-spacing:0.012800pt;}
.ls19_c02079{letter-spacing:0.019200pt;}
.lsf_c02079{letter-spacing:0.029280pt;}
.ls10_c02079{letter-spacing:0.035136pt;}
.ls6_c02079{letter-spacing:0.052704pt;}
.ls4_c02079{letter-spacing:0.058560pt;}
.lse_c02079{letter-spacing:0.064416pt;}
.ls7_c02079{letter-spacing:0.070272pt;}
.lsb_c02079{letter-spacing:0.076128pt;}
.ls3_c02079{letter-spacing:0.081984pt;}
.lsd_c02079{letter-spacing:0.093696pt;}
.ls9_c02079{letter-spacing:0.122976pt;}
.ls2_c02079{letter-spacing:0.128256pt;}
.ls5_c02079{letter-spacing:0.134688pt;}
.lsc_c02079{letter-spacing:0.140544pt;}
.ls8_c02079{letter-spacing:0.158112pt;}
.lsa_c02079{letter-spacing:67.920000pt;}
.ls12_c02079{letter-spacing:335.120000pt;}
.ls11_c02079{letter-spacing:353.360000pt;}
.ls1_c02079{letter-spacing:444.160000pt;}
.ws0_c02079{word-spacing:-15.974400pt;}
.ws6_c02079{word-spacing:-14.798112pt;}
.ws12_c02079{word-spacing:-0.179200pt;}
.wsf_c02079{word-spacing:-0.153600pt;}
.ws11_c02079{word-spacing:-0.064000pt;}
.ws13_c02079{word-spacing:-0.048096pt;}
.wsc_c02079{word-spacing:-0.019200pt;}
.ws10_c02079{word-spacing:-0.006400pt;}
.wsd_c02079{word-spacing:0.000000pt;}
.ws16_c02079{word-spacing:0.011712pt;}
.wse_c02079{word-spacing:0.012800pt;}
.ws14_c02079{word-spacing:0.023424pt;}
.ws15_c02079{word-spacing:0.029280pt;}
.ws18_c02079{word-spacing:0.046848pt;}
.ws17_c02079{word-spacing:0.052704pt;}
.ws19_c02079{word-spacing:0.087840pt;}
.ws9_c02079{word-spacing:52.766560pt;}
.wsa_c02079{word-spacing:58.817280pt;}
.ws8_c02079{word-spacing:60.727552pt;}
.ws4_c02079{word-spacing:67.447552pt;}
.ws5_c02079{word-spacing:79.646560pt;}
.ws2_c02079{word-spacing:89.845664pt;}
.ws1_c02079{word-spacing:96.926560pt;}
.ws3_c02079{word-spacing:108.766560pt;}
.wsb_c02079{word-spacing:109.238240pt;}
.ws7_c02079{word-spacing:211.508096pt;}
._2_c02079{margin-left:-1.020704pt;}
._6_c02079{width:76.482784pt;}
._1a_c02079{width:77.697280pt;}
._17_c02079{width:79.607552pt;}
._8_c02079{width:102.800000pt;}
._11_c02079{width:104.645664pt;}
._c_c02079{width:108.725664pt;}
._5_c02079{width:112.720000pt;}
._7_c02079{width:114.555200pt;}
._10_c02079{width:123.808448pt;}
._14_c02079{width:126.388096pt;}
._4_c02079{width:133.115200pt;}
._15_c02079{width:134.560000pt;}
._13_c02079{width:138.483776pt;}
._1b_c02079{width:139.813152pt;}
._d_c02079{width:159.348672pt;}
._3_c02079{width:170.523808pt;}
._0_c02079{width:172.819200pt;}
._1c_c02079{width:175.644032pt;}
._e_c02079{width:201.664128pt;}
._a_c02079{width:211.920000pt;}
._1d_c02079{width:214.710848pt;}
._f_c02079{width:217.959488pt;}
._18_c02079{width:226.321472pt;}
._19_c02079{width:232.542912pt;}
._12_c02079{width:243.965984pt;}
._b_c02079{width:257.143872pt;}
._16_c02079{width:273.298688pt;}
._9_c02079{width:302.504448pt;}
._1_c02079{width:1924.160000pt;}
.fs1_c02079{font-size:48.000000pt;}
.fs2_c02079{font-size:53.440000pt;}
.fs3_c02079{font-size:58.560000pt;}
.fs0_c02079{font-size:64.000000pt;}
.y0_c02079{bottom:0.000000pt;}
.y3_c02079{bottom:50.987067pt;}
.y2_c02079{bottom:69.387067pt;}
.y28_c02079{bottom:111.867067pt;}
.y27_c02079{bottom:125.627467pt;}
.y26_c02079{bottom:139.467067pt;}
.y25_c02079{bottom:153.227467pt;}
.y24_c02079{bottom:167.067067pt;}
.y23_c02079{bottom:180.827467pt;}
.y22_c02079{bottom:194.667067pt;}
.y21_c02079{bottom:208.427467pt;}
.y20_c02079{bottom:222.267067pt;}
.y1f_c02079{bottom:237.947067pt;}
.y1e_c02079{bottom:254.827067pt;}
.y1d_c02079{bottom:271.707067pt;}
.y1c_c02079{bottom:288.587067pt;}
.y1b_c02079{bottom:306.107067pt;}
.y1a_c02079{bottom:322.987067pt;}
.y19_c02079{bottom:339.867067pt;}
.y18_c02079{bottom:356.667200pt;}
.y17_c02079{bottom:373.547067pt;}
.y16_c02079{bottom:390.427067pt;}
.y15_c02079{bottom:407.307067pt;}
.y14_c02079{bottom:423.787067pt;}
.y13_c02079{bottom:439.707067pt;}
.y12_c02079{bottom:458.107200pt;}
.y11_c02079{bottom:476.507067pt;}
.y10_c02079{bottom:494.907067pt;}
.yf_c02079{bottom:515.467067pt;}
.ye_c02079{bottom:530.107067pt;}
.yd_c02079{bottom:548.507067pt;}
.yc_c02079{bottom:566.907067pt;}
.yb_c02079{bottom:585.307067pt;}
.ya_c02079{bottom:603.707067pt;}
.y9_c02079{bottom:622.107067pt;}
.y8_c02079{bottom:640.507067pt;}
.y7_c02079{bottom:655.387067pt;}
.y6_c02079{bottom:958.107067pt;}
.y5_c02079{bottom:985.707067pt;}
.y4_c02079{bottom:1013.307067pt;}
.y1_c02079{bottom:1060.587067pt;}
.h3_c02079{height:42.632812pt;}
.h4_c02079{height:47.464531pt;}
.h5_c02079{height:52.012031pt;}
.h2_c02079{height:56.156250pt;}
.h1_c02079{height:56.843750pt;}
.h0_c02079{height:1122.666667pt;}
.w1_c02079{width:793.333333pt;}
.w0_c02079{width:793.626667pt;}
.x0_c02079{left:0.000000pt;}
.x1_c02079{left:113.440000pt;}
.x4_c02079{left:120.560000pt;}
.xa_c02079{left:144.320000pt;}
.x5_c02079{left:248.640000pt;}
.x6_c02079{left:253.120000pt;}
.x3_c02079{left:345.840000pt;}
.x2_c02079{left:388.880000pt;}
.x8_c02079{left:393.040000pt;}
.x7_c02079{left:417.280000pt;}
.x9_c02079{left:419.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_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_26822064afa147dce0478499.woff2')format("woff");}.ff1_c02080{font-family:ff1_c02080;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02080;src:url('chunks/assets/font_62207628d5f201271f6016e5.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;}
.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);}
.v3_c02080{vertical-align:-3.960000px;}
.v2_c02080{vertical-align:-2.520000px;}
.v4_c02080{vertical-align:-1.440000px;}
.v0_c02080{vertical-align:0.000000px;}
.v7_c02080{vertical-align:1.080000px;}
.v6_c02080{vertical-align:2.520000px;}
.v5_c02080{vertical-align:4.320000px;}
.v1_c02080{vertical-align:5.400000px;}
.ls29_c02080{letter-spacing:-0.086184px;}
.ls25_c02080{letter-spacing:-0.043200px;}
.ls27_c02080{letter-spacing:-0.019152px;}
.ls26_c02080{letter-spacing:-0.010800px;}
.ls32_c02080{letter-spacing:-0.009576px;}
.ls23_c02080{letter-spacing:-0.007200px;}
.ls2a_c02080{letter-spacing:-0.004788px;}
.ls22_c02080{letter-spacing:0.000000px;}
.ls14_c02080{letter-spacing:0.006588px;}
.ls1_c02080{letter-spacing:0.007200px;}
.ls2_c02080{letter-spacing:0.010800px;}
.lse_c02080{letter-spacing:0.019152px;}
.ls4_c02080{letter-spacing:0.028728px;}
.ls0_c02080{letter-spacing:0.028800px;}
.ls6_c02080{letter-spacing:0.032400px;}
.ls11_c02080{letter-spacing:0.037800px;}
.ls3_c02080{letter-spacing:0.043092px;}
.ls9_c02080{letter-spacing:0.043200px;}
.ls16_c02080{letter-spacing:0.057456px;}
.ls5_c02080{letter-spacing:0.059400px;}
.ls18_c02080{letter-spacing:0.065880px;}
.ls1d_c02080{letter-spacing:0.067032px;}
.lsf_c02080{letter-spacing:0.076608px;}
.ls15_c02080{letter-spacing:0.079056px;}
.ls2f_c02080{letter-spacing:0.081396px;}
.ls20_c02080{letter-spacing:0.084168px;}
.ls13_c02080{letter-spacing:0.085644px;}
.ls1c_c02080{letter-spacing:0.086184px;}
.ls21_c02080{letter-spacing:0.090180px;}
.ls31_c02080{letter-spacing:0.092232px;}
.ls19_c02080{letter-spacing:0.098820px;}
.ls1e_c02080{letter-spacing:0.114912px;}
.ls1f_c02080{letter-spacing:0.119700px;}
.ls8_c02080{letter-spacing:0.124488px;}
.ls1b_c02080{letter-spacing:0.125172px;}
.ls17_c02080{letter-spacing:0.131760px;}
.lsc_c02080{letter-spacing:0.134064px;}
.lsa_c02080{letter-spacing:0.138348px;}
.ls24_c02080{letter-spacing:0.151200px;}
.ls7_c02080{letter-spacing:0.158112px;}
.ls12_c02080{letter-spacing:0.162792px;}
.lsd_c02080{letter-spacing:0.164700px;}
.ls28_c02080{letter-spacing:0.167580px;}
.ls2b_c02080{letter-spacing:0.177876px;}
.ls10_c02080{letter-spacing:0.181944px;}
.ls2c_c02080{letter-spacing:143.818200px;}
.ls2d_c02080{letter-spacing:154.887156px;}
.ls30_c02080{letter-spacing:156.421800px;}
.ls2e_c02080{letter-spacing:156.778200px;}
.ls1a_c02080{letter-spacing:191.970000px;}
.lsb_c02080{letter-spacing:200.790000px;}
.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;}
}
.ws3_c02080{word-spacing:-16.476588px;}
.ws10_c02080{word-spacing:-0.272916px;}
.ws13_c02080{word-spacing:-0.253764px;}
.wsd_c02080{word-spacing:-0.225036px;}
.wsc_c02080{word-spacing:-0.215460px;}
.ws1f_c02080{word-spacing:-0.210672px;}
.wsf_c02080{word-spacing:-0.172368px;}
.ws16_c02080{word-spacing:-0.148428px;}
.ws12_c02080{word-spacing:-0.119700px;}
.ws8_c02080{word-spacing:-0.115200px;}
.ws11_c02080{word-spacing:-0.110124px;}
.wsa_c02080{word-spacing:-0.050400px;}
.ws17_c02080{word-spacing:-0.039528px;}
.ws6_c02080{word-spacing:-0.021600px;}
.ws9_c02080{word-spacing:-0.007200px;}
.ws19_c02080{word-spacing:-0.006588px;}
.ws7_c02080{word-spacing:0.000000px;}
.ws15_c02080{word-spacing:0.006588px;}
.ws18_c02080{word-spacing:0.026352px;}
.wsb_c02080{word-spacing:0.118800px;}
.ws1c_c02080{word-spacing:1.235304px;}
.ws1e_c02080{word-spacing:1.273608px;}
.ws1d_c02080{word-spacing:1.307124px;}
.ws20_c02080{word-spacing:5.765508px;}
.ws1a_c02080{word-spacing:5.941908px;}
.ws1b_c02080{word-spacing:5.961060px;}
.ws0_c02080{word-spacing:58.969440px;}
.wse_c02080{word-spacing:79.846560px;}
.ws2_c02080{word-spacing:116.986608px;}
.ws1_c02080{word-spacing:143.986608px;}
.ws14_c02080{word-spacing:156.735000px;}
.ws5_c02080{word-spacing:191.449440px;}
.ws4_c02080{word-spacing:307.009440px;}
._1_c02080{margin-left:-1.296000px;}
._15_c02080{width:42.978888px;}
._d_c02080{width:51.660000px;}
._11_c02080{width:62.064000px;}
._9_c02080{width:74.044440px;}
._a_c02080{width:75.357000px;}
._12_c02080{width:76.363560px;}
._10_c02080{width:79.476372px;}
._3_c02080{width:84.834000px;}
._18_c02080{width:85.967280px;}
._2_c02080{width:88.221600px;}
._1a_c02080{width:91.288440px;}
._b_c02080{width:100.015200px;}
._8_c02080{width:105.467688px;}
._7_c02080{width:111.391524px;}
._c_c02080{width:113.329440px;}
._e_c02080{width:119.705220px;}
._17_c02080{width:121.035600px;}
._4_c02080{width:122.220000px;}
._16_c02080{width:124.320168px;}
._f_c02080{width:126.695016px;}
._5_c02080{width:127.980000px;}
._1c_c02080{width:129.270636px;}
._13_c02080{width:137.266920px;}
._6_c02080{width:139.258944px;}
._19_c02080{width:145.847016px;}
._14_c02080{width:156.267540px;}
._1d_c02080{width:159.186384px;}
._26_c02080{width:175.315536px;}
._21_c02080{width:191.794248px;}
._0_c02080{width:194.421600px;}
._1b_c02080{width:219.324168px;}
._22_c02080{width:280.872072px;}
._20_c02080{width:284.886792px;}
._1f_c02080{width:287.726112px;}
._24_c02080{width:306.996372px;}
._23_c02080{width:361.278612px;}
._1e_c02080{width:385.954200px;}
._25_c02080{width:583.070220px;}
.fc0_c02080{color:rgb(0,0,0);}
.fs5_c02080{font-size:11.880000px;}
.fs2_c02080{font-size:47.880000px;}
.fs1_c02080{font-size:54.000000px;}
.fs4_c02080{font-size:60.120000px;}
.fs3_c02080{font-size:65.880000px;}
.fs0_c02080{font-size:72.000000px;}
.y0_c02080{bottom:0.000000px;}
.y3_c02080{bottom:57.360450px;}
.y2_c02080{bottom:78.060450px;}
.y47_c02080{bottom:119.552115px;}
.y46_c02080{bottom:136.832106px;}
.y45_c02080{bottom:154.112097px;}
.y44_c02080{bottom:171.301908px;}
.y43_c02080{bottom:188.581899px;}
.y42_c02080{bottom:205.861890px;}
.y41_c02080{bottom:223.051701px;}
.y40_c02080{bottom:240.331692px;}
.y3f_c02080{bottom:257.611683px;}
.y3e_c02080{bottom:274.801494px;}
.y3d_c02080{bottom:292.081485px;}
.y3c_c02080{bottom:309.271296px;}
.y3b_c02080{bottom:326.551287px;}
.y3a_c02080{bottom:343.831278px;}
.y39_c02080{bottom:361.021089px;}
.y38_c02080{bottom:378.301080px;}
.y37_c02080{bottom:395.581071px;}
.y36_c02080{bottom:412.770882px;}
.y35_c02080{bottom:430.050873px;}
.y34_c02080{bottom:447.330864px;}
.y33_c02080{bottom:464.520675px;}
.y32_c02080{bottom:481.800666px;}
.y31_c02080{bottom:499.080657px;}
.y30_c02080{bottom:516.270468px;}
.y2f_c02080{bottom:533.550459px;}
.y2e_c02080{bottom:550.830450px;}
.y2d_c02080{bottom:567.479811px;}
.y2c_c02080{bottom:581.250099px;}
.y2b_c02080{bottom:595.110162px;}
.y2a_c02080{bottom:608.880450px;}
.y29_c02080{bottom:625.800450px;}
.y28_c02080{bottom:646.230450px;}
.y27_c02080{bottom:666.750450px;}
.y26_c02080{bottom:687.180450px;}
.y25_c02080{bottom:707.700450px;}
.y24_c02080{bottom:727.770450px;}
.y22_c02080{bottom:728.760450px;}
.y23_c02080{bottom:743.790450px;}
.y21_c02080{bottom:761.610450px;}
.y20_c02080{bottom:779.790450px;}
.y1f_c02080{bottom:795.360000px;}
.y1e_c02080{bottom:810.840450px;}
.y1d_c02080{bottom:826.410450px;}
.y1c_c02080{bottom:830.190900px;}
.y1b_c02080{bottom:845.400450px;}
.y1a_c02080{bottom:849.180900px;}
.y19_c02080{bottom:864.300450px;}
.y18_c02080{bottom:868.170450px;}
.y17_c02080{bottom:884.370450px;}
.y16_c02080{bottom:903.540600px;}
.y15_c02080{bottom:920.010450px;}
.y14_c02080{bottom:940.800450px;}
.y13_c02080{bottom:949.620450px;}
.y12_c02080{bottom:949.980000px;}
.y11_c02080{bottom:968.610450px;}
.y10_c02080{bottom:968.970000px;}
.yf_c02080{bottom:987.510450px;}
.ye_c02080{bottom:987.960450px;}
.yd_c02080{bottom:1006.500450px;}
.yc_c02080{bottom:1006.860000px;}
.yb_c02080{bottom:1025.490450px;}
.ya_c02080{bottom:1025.850450px;}
.y9_c02080{bottom:1045.470450px;}
.y8_c02080{bottom:1064.730450px;}
.y7_c02080{bottom:1081.200450px;}
.y6_c02080{bottom:1101.360450px;}
.y5_c02080{bottom:1118.010450px;}
.y4_c02080{bottom:1139.250450px;}
.y1_c02080{bottom:1193.160450px;}
.h7_c02080{height:10.551621px;}
.ha_c02080{height:42.011895px;}
.h8_c02080{height:42.526230px;}
.h3_c02080{height:47.961914px;}
.hb_c02080{height:52.751777px;}
.h9_c02080{height:57.805840px;}
.h4_c02080{height:58.513535px;}
.h6_c02080{height:62.473535px;}
.h5_c02080{height:62.833535px;}
.h2_c02080{height:63.175781px;}
.h1_c02080{height:63.949219px;}
.h0_c02080{height:1263.000000px;}
.w1_c02080{width:892.500000px;}
.w0_c02080{width:892.830000px;}
.x0_c02080{left:0.000000px;}
.x1_c02080{left:127.620000px;}
.x8_c02080{left:134.550000px;}
.x3_c02080{left:135.630000px;}
.x4_c02080{left:143.910000px;}
.x7_c02080{left:150.300000px;}
.x5_c02080{left:165.060000px;}
.x6_c02080{left:220.680000px;}
.x9_c02080{left:327.330000px;}
.xa_c02080{left:355.140000px;}
.x2_c02080{left:437.490000px;}
@media print{
.v3_c02080{vertical-align:-3.520000pt;}
.v2_c02080{vertical-align:-2.240000pt;}
.v4_c02080{vertical-align:-1.280000pt;}
.v0_c02080{vertical-align:0.000000pt;}
.v7_c02080{vertical-align:0.960000pt;}
.v6_c02080{vertical-align:2.240000pt;}
.v5_c02080{vertical-align:3.840000pt;}
.v1_c02080{vertical-align:4.800000pt;}
.ls29_c02080{letter-spacing:-0.076608pt;}
.ls25_c02080{letter-spacing:-0.038400pt;}
.ls27_c02080{letter-spacing:-0.017024pt;}
.ls26_c02080{letter-spacing:-0.009600pt;}
.ls32_c02080{letter-spacing:-0.008512pt;}
.ls23_c02080{letter-spacing:-0.006400pt;}
.ls2a_c02080{letter-spacing:-0.004256pt;}
.ls22_c02080{letter-spacing:0.000000pt;}
.ls14_c02080{letter-spacing:0.005856pt;}
.ls1_c02080{letter-spacing:0.006400pt;}
.ls2_c02080{letter-spacing:0.009600pt;}
.lse_c02080{letter-spacing:0.017024pt;}
.ls4_c02080{letter-spacing:0.025536pt;}
.ls0_c02080{letter-spacing:0.025600pt;}
.ls6_c02080{letter-spacing:0.028800pt;}
.ls11_c02080{letter-spacing:0.033600pt;}
.ls3_c02080{letter-spacing:0.038304pt;}
.ls9_c02080{letter-spacing:0.038400pt;}
.ls16_c02080{letter-spacing:0.051072pt;}
.ls5_c02080{letter-spacing:0.052800pt;}
.ls18_c02080{letter-spacing:0.058560pt;}
.ls1d_c02080{letter-spacing:0.059584pt;}
.lsf_c02080{letter-spacing:0.068096pt;}
.ls15_c02080{letter-spacing:0.070272pt;}
.ls2f_c02080{letter-spacing:0.072352pt;}
.ls20_c02080{letter-spacing:0.074816pt;}
.ls13_c02080{letter-spacing:0.076128pt;}
.ls1c_c02080{letter-spacing:0.076608pt;}
.ls21_c02080{letter-spacing:0.080160pt;}
.ls31_c02080{letter-spacing:0.081984pt;}
.ls19_c02080{letter-spacing:0.087840pt;}
.ls1e_c02080{letter-spacing:0.102144pt;}
.ls1f_c02080{letter-spacing:0.106400pt;}
.ls8_c02080{letter-spacing:0.110656pt;}
.ls1b_c02080{letter-spacing:0.111264pt;}
.ls17_c02080{letter-spacing:0.117120pt;}
.lsc_c02080{letter-spacing:0.119168pt;}
.lsa_c02080{letter-spacing:0.122976pt;}
.ls24_c02080{letter-spacing:0.134400pt;}
.ls7_c02080{letter-spacing:0.140544pt;}
.ls12_c02080{letter-spacing:0.144704pt;}
.lsd_c02080{letter-spacing:0.146400pt;}
.ls28_c02080{letter-spacing:0.148960pt;}
.ls2b_c02080{letter-spacing:0.158112pt;}
.ls10_c02080{letter-spacing:0.161728pt;}
.ls2c_c02080{letter-spacing:127.838400pt;}
.ls2d_c02080{letter-spacing:137.677472pt;}
.ls30_c02080{letter-spacing:139.041600pt;}
.ls2e_c02080{letter-spacing:139.358400pt;}
.ls1a_c02080{letter-spacing:170.640000pt;}
.lsb_c02080{letter-spacing:178.480000pt;}
.ws3_c02080{word-spacing:-14.645856pt;}
.ws10_c02080{word-spacing:-0.242592pt;}
.ws13_c02080{word-spacing:-0.225568pt;}
.wsd_c02080{word-spacing:-0.200032pt;}
.wsc_c02080{word-spacing:-0.191520pt;}
.ws1f_c02080{word-spacing:-0.187264pt;}
.wsf_c02080{word-spacing:-0.153216pt;}
.ws16_c02080{word-spacing:-0.131936pt;}
.ws12_c02080{word-spacing:-0.106400pt;}
.ws8_c02080{word-spacing:-0.102400pt;}
.ws11_c02080{word-spacing:-0.097888pt;}
.wsa_c02080{word-spacing:-0.044800pt;}
.ws17_c02080{word-spacing:-0.035136pt;}
.ws6_c02080{word-spacing:-0.019200pt;}
.ws9_c02080{word-spacing:-0.006400pt;}
.ws19_c02080{word-spacing:-0.005856pt;}
.ws7_c02080{word-spacing:0.000000pt;}
.ws15_c02080{word-spacing:0.005856pt;}
.ws18_c02080{word-spacing:0.023424pt;}
.wsb_c02080{word-spacing:0.105600pt;}
.ws1c_c02080{word-spacing:1.098048pt;}
.ws1e_c02080{word-spacing:1.132096pt;}
.ws1d_c02080{word-spacing:1.161888pt;}
.ws20_c02080{word-spacing:5.124896pt;}
.ws1a_c02080{word-spacing:5.281696pt;}
.ws1b_c02080{word-spacing:5.298720pt;}
.ws0_c02080{word-spacing:52.417280pt;}
.wse_c02080{word-spacing:70.974720pt;}
.ws2_c02080{word-spacing:103.988096pt;}
.ws1_c02080{word-spacing:127.988096pt;}
.ws14_c02080{word-spacing:139.320000pt;}
.ws5_c02080{word-spacing:170.177280pt;}
.ws4_c02080{word-spacing:272.897280pt;}
._1_c02080{margin-left:-1.152000pt;}
._15_c02080{width:38.203456pt;}
._d_c02080{width:45.920000pt;}
._11_c02080{width:55.168000pt;}
._9_c02080{width:65.817280pt;}
._a_c02080{width:66.984000pt;}
._12_c02080{width:67.878720pt;}
._10_c02080{width:70.645664pt;}
._3_c02080{width:75.408000pt;}
._18_c02080{width:76.415360pt;}
._2_c02080{width:78.419200pt;}
._1a_c02080{width:81.145280pt;}
._b_c02080{width:88.902400pt;}
._8_c02080{width:93.749056pt;}
._7_c02080{width:99.014688pt;}
._c_c02080{width:100.737280pt;}
._e_c02080{width:106.404640pt;}
._17_c02080{width:107.587200pt;}
._4_c02080{width:108.640000pt;}
._16_c02080{width:110.506816pt;}
._f_c02080{width:112.617792pt;}
._5_c02080{width:113.760000pt;}
._1c_c02080{width:114.907232pt;}
._13_c02080{width:122.015040pt;}
._6_c02080{width:123.785728pt;}
._19_c02080{width:129.641792pt;}
._14_c02080{width:138.904480pt;}
._1d_c02080{width:141.499008pt;}
._26_c02080{width:155.836032pt;}
._21_c02080{width:170.483776pt;}
._0_c02080{width:172.819200pt;}
._1b_c02080{width:194.954816pt;}
._22_c02080{width:249.664064pt;}
._20_c02080{width:253.232704pt;}
._1f_c02080{width:255.756544pt;}
._24_c02080{width:272.885664pt;}
._23_c02080{width:321.136544pt;}
._1e_c02080{width:343.070400pt;}
._25_c02080{width:518.284640pt;}
.fs5_c02080{font-size:10.560000pt;}
.fs2_c02080{font-size:42.560000pt;}
.fs1_c02080{font-size:48.000000pt;}
.fs4_c02080{font-size:53.440000pt;}
.fs3_c02080{font-size:58.560000pt;}
.fs0_c02080{font-size:64.000000pt;}
.y0_c02080{bottom:0.000000pt;}
.y3_c02080{bottom:50.987067pt;}
.y2_c02080{bottom:69.387067pt;}
.y47_c02080{bottom:106.268547pt;}
.y46_c02080{bottom:121.628539pt;}
.y45_c02080{bottom:136.988531pt;}
.y44_c02080{bottom:152.268363pt;}
.y43_c02080{bottom:167.628355pt;}
.y42_c02080{bottom:182.988347pt;}
.y41_c02080{bottom:198.268179pt;}
.y40_c02080{bottom:213.628171pt;}
.y3f_c02080{bottom:228.988163pt;}
.y3e_c02080{bottom:244.267995pt;}
.y3d_c02080{bottom:259.627987pt;}
.y3c_c02080{bottom:274.907819pt;}
.y3b_c02080{bottom:290.267811pt;}
.y3a_c02080{bottom:305.627803pt;}
.y39_c02080{bottom:320.907635pt;}
.y38_c02080{bottom:336.267627pt;}
.y37_c02080{bottom:351.627619pt;}
.y36_c02080{bottom:366.907451pt;}
.y35_c02080{bottom:382.267443pt;}
.y34_c02080{bottom:397.627435pt;}
.y33_c02080{bottom:412.907267pt;}
.y32_c02080{bottom:428.267259pt;}
.y31_c02080{bottom:443.627251pt;}
.y30_c02080{bottom:458.907083pt;}
.y2f_c02080{bottom:474.267075pt;}
.y2e_c02080{bottom:489.627067pt;}
.y2d_c02080{bottom:504.426499pt;}
.y2c_c02080{bottom:516.666755pt;}
.y2b_c02080{bottom:528.986811pt;}
.y2a_c02080{bottom:541.227067pt;}
.y29_c02080{bottom:556.267067pt;}
.y28_c02080{bottom:574.427067pt;}
.y27_c02080{bottom:592.667067pt;}
.y26_c02080{bottom:610.827067pt;}
.y25_c02080{bottom:629.067067pt;}
.y24_c02080{bottom:646.907067pt;}
.y22_c02080{bottom:647.787067pt;}
.y23_c02080{bottom:661.147067pt;}
.y21_c02080{bottom:676.987067pt;}
.y20_c02080{bottom:693.147067pt;}
.y1f_c02080{bottom:706.986667pt;}
.y1e_c02080{bottom:720.747067pt;}
.y1d_c02080{bottom:734.587067pt;}
.y1c_c02080{bottom:737.947467pt;}
.y1b_c02080{bottom:751.467067pt;}
.y1a_c02080{bottom:754.827467pt;}
.y19_c02080{bottom:768.267067pt;}
.y18_c02080{bottom:771.707067pt;}
.y17_c02080{bottom:786.107067pt;}
.y16_c02080{bottom:803.147200pt;}
.y15_c02080{bottom:817.787067pt;}
.y14_c02080{bottom:836.267067pt;}
.y13_c02080{bottom:844.107067pt;}
.y12_c02080{bottom:844.426667pt;}
.y11_c02080{bottom:860.987067pt;}
.y10_c02080{bottom:861.306667pt;}
.yf_c02080{bottom:877.787067pt;}
.ye_c02080{bottom:878.187067pt;}
.yd_c02080{bottom:894.667067pt;}
.yc_c02080{bottom:894.986667pt;}
.yb_c02080{bottom:911.547067pt;}
.ya_c02080{bottom:911.867067pt;}
.y9_c02080{bottom:929.307067pt;}
.y8_c02080{bottom:946.427067pt;}
.y7_c02080{bottom:961.067067pt;}
.y6_c02080{bottom:978.987067pt;}
.y5_c02080{bottom:993.787067pt;}
.y4_c02080{bottom:1012.667067pt;}
.y1_c02080{bottom:1060.587067pt;}
.h7_c02080{height:9.379219pt;}
.ha_c02080{height:37.343906pt;}
.h8_c02080{height:37.801094pt;}
.h3_c02080{height:42.632812pt;}
.hb_c02080{height:46.890469pt;}
.h9_c02080{height:51.382969pt;}
.h4_c02080{height:52.012031pt;}
.h6_c02080{height:55.532031pt;}
.h5_c02080{height:55.852031pt;}
.h2_c02080{height:56.156250pt;}
.h1_c02080{height:56.843750pt;}
.h0_c02080{height:1122.666667pt;}
.w1_c02080{width:793.333333pt;}
.w0_c02080{width:793.626667pt;}
.x0_c02080{left:0.000000pt;}
.x1_c02080{left:113.440000pt;}
.x8_c02080{left:119.600000pt;}
.x3_c02080{left:120.560000pt;}
.x4_c02080{left:127.920000pt;}
.x7_c02080{left:133.600000pt;}
.x5_c02080{left:146.720000pt;}
.x6_c02080{left:196.160000pt;}
.x9_c02080{left:290.960000pt;}
.xa_c02080{left:315.680000pt;}
.x2_c02080{left:388.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_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_75a3e7d63966d65f5eef2cf2.woff2')format("woff");}.ff1_c02081{font-family:ff1_c02081;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02081;src:url('chunks/assets/font_160e17f066242d336817415e.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;}
.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);}
.v2_c02081{vertical-align:-16.200000px;}
.v0_c02081{vertical-align:0.000000px;}
.v1_c02081{vertical-align:11.160000px;}
.ls18_c02081{letter-spacing:-0.180360px;}
.ls16_c02081{letter-spacing:-0.086400px;}
.ls14_c02081{letter-spacing:-0.032940px;}
.ls1a_c02081{letter-spacing:-0.016200px;}
.ls12_c02081{letter-spacing:-0.014400px;}
.ls13_c02081{letter-spacing:-0.013176px;}
.ls15_c02081{letter-spacing:-0.007200px;}
.ls11_c02081{letter-spacing:0.000000px;}
.lsb_c02081{letter-spacing:0.006588px;}
.ls9_c02081{letter-spacing:0.007200px;}
.ls10_c02081{letter-spacing:0.013176px;}
.ls0_c02081{letter-spacing:0.014400px;}
.ls5_c02081{letter-spacing:0.019764px;}
.ls7_c02081{letter-spacing:0.021600px;}
.ls1b_c02081{letter-spacing:0.032400px;}
.lsd_c02081{letter-spacing:0.032940px;}
.ls3_c02081{letter-spacing:0.039528px;}
.ls1_c02081{letter-spacing:0.043200px;}
.lsf_c02081{letter-spacing:0.046116px;}
.ls8_c02081{letter-spacing:0.050400px;}
.lse_c02081{letter-spacing:0.059292px;}
.ls19_c02081{letter-spacing:0.062244px;}
.lsc_c02081{letter-spacing:0.065880px;}
.ls2_c02081{letter-spacing:0.072468px;}
.ls1c_c02081{letter-spacing:0.092232px;}
.ls4_c02081{letter-spacing:0.098820px;}
.ls6_c02081{letter-spacing:0.125172px;}
.ls17_c02081{letter-spacing:0.144288px;}
.lsa_c02081{letter-spacing:0.181944px;}
.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;}
}
.wsf_c02081{word-spacing:-0.335988px;}
.ws4_c02081{word-spacing:-0.223200px;}
.ws8_c02081{word-spacing:-0.093600px;}
.ws0_c02081{word-spacing:-0.021600px;}
.ws3_c02081{word-spacing:-0.014400px;}
.ws1_c02081{word-spacing:0.000000px;}
.ws7_c02081{word-spacing:0.007200px;}
.ws2_c02081{word-spacing:0.014400px;}
.ws5_c02081{word-spacing:0.019764px;}
.ws19_c02081{word-spacing:0.026352px;}
.ws14_c02081{word-spacing:0.052704px;}
.wse_c02081{word-spacing:0.059292px;}
.wsb_c02081{word-spacing:0.085644px;}
.wsa_c02081{word-spacing:0.428220px;}
.wsd_c02081{word-spacing:0.447984px;}
.ws12_c02081{word-spacing:2.206980px;}
.ws1b_c02081{word-spacing:2.958012px;}
.ws1a_c02081{word-spacing:3.985740px;}
.ws10_c02081{word-spacing:3.992328px;}
.ws11_c02081{word-spacing:5.085936px;}
.wsc_c02081{word-spacing:6.502356px;}
.ws13_c02081{word-spacing:7.292916px;}
.ws16_c02081{word-spacing:7.918776px;}
.ws15_c02081{word-spacing:7.938540px;}
.ws17_c02081{word-spacing:19.487304px;}
.ws18_c02081{word-spacing:29.204604px;}
.ws9_c02081{word-spacing:49.048272px;}
.ws1c_c02081{word-spacing:55.128384px;}
.ws6_c02081{word-spacing:276.445656px;}
._a_c02081{margin-left:-28.802736px;}
._14_c02081{margin-left:-1.077300px;}
._15_c02081{width:1.185084px;}
._13_c02081{width:36.714384px;}
._10_c02081{width:39.510720px;}
._f_c02081{width:40.590720px;}
._11_c02081{width:55.260000px;}
._1_c02081{width:65.407068px;}
._e_c02081{width:91.570896px;}
._4_c02081{width:96.810048px;}
._6_c02081{width:101.605680px;}
._2_c02081{width:115.338168px;}
._5_c02081{width:116.438220px;}
._3_c02081{width:129.525840px;}
._7_c02081{width:183.653676px;}
._0_c02081{width:194.421600px;}
._9_c02081{width:264.653136px;}
._8_c02081{width:604.857456px;}
._c_c02081{width:898.034400px;}
._12_c02081{width:1451.116440px;}
._b_c02081{width:1791.288000px;}
._d_c02081{width:2268.561600px;}
.fc0_c02081{color:rgb(0,0,0);}
.fs1_c02081{font-size:29.880000px;}
.fs4_c02081{font-size:47.880000px;}
.fs5_c02081{font-size:54.000000px;}
.fs2_c02081{font-size:60.120000px;}
.fs3_c02081{font-size:65.880000px;}
.fs0_c02081{font-size:72.000000px;}
.y0_c02081{bottom:0.000000px;}
.y3_c02081{bottom:57.360450px;}
.y2_c02081{bottom:78.060450px;}
.y3d_c02081{bottom:127.830450px;}
.y3c_c02081{bottom:148.530450px;}
.y3b_c02081{bottom:169.230450px;}
.y3a_c02081{bottom:189.930450px;}
.y39_c02081{bottom:210.630450px;}
.y38_c02081{bottom:231.330450px;}
.y37_c02081{bottom:251.940450px;}
.y36_c02081{bottom:272.640450px;}
.y35_c02081{bottom:293.340450px;}
.y34_c02081{bottom:314.040450px;}
.y33_c02081{bottom:334.740450px;}
.y32_c02081{bottom:355.440450px;}
.y30_c02081{bottom:376.772430px;}
.y2f_c02081{bottom:395.671755px;}
.y2e_c02081{bottom:414.661665px;}
.y2d_c02081{bottom:433.651575px;}
.y2c_c02081{bottom:452.641485px;}
.y2b_c02081{bottom:471.631395px;}
.y2a_c02081{bottom:490.530720px;}
.y29_c02081{bottom:509.520630px;}
.y28_c02081{bottom:528.510540px;}
.y31_c02081{bottom:550.470450px;}
.y27_c02081{bottom:551.550450px;}
.y25_c02081{bottom:567.211305px;}
.y24_c02081{bottom:586.201215px;}
.y23_c02081{bottom:605.191125px;}
.y26_c02081{bottom:627.060450px;}
.y22_c02081{bottom:628.140450px;}
.y20_c02081{bottom:643.891305px;}
.y1f_c02081{bottom:662.790630px;}
.y1e_c02081{bottom:681.780540px;}
.y21_c02081{bottom:703.740450px;}
.y1d_c02081{bottom:704.820450px;}
.y1b_c02081{bottom:720.480720px;}
.y1a_c02081{bottom:739.470630px;}
.y19_c02081{bottom:758.460540px;}
.y1c_c02081{bottom:780.420450px;}
.y18_c02081{bottom:781.500450px;}
.y16_c02081{bottom:797.161215px;}
.y15_c02081{bottom:816.151125px;}
.y17_c02081{bottom:838.020450px;}
.y14_c02081{bottom:839.100450px;}
.y13_c02081{bottom:854.310450px;}
.y12_c02081{bottom:873.030450px;}
.y11_c02081{bottom:894.450450px;}
.y10_c02081{bottom:915.150450px;}
.yf_c02081{bottom:936.570450px;}
.ye_c02081{bottom:958.080450px;}
.yd_c02081{bottom:979.500450px;}
.yc_c02081{bottom:1000.920450px;}
.yb_c02081{bottom:1022.160450px;}
.ya_c02081{bottom:1041.870450px;}
.y9_c02081{bottom:1061.850450px;}
.y8_c02081{bottom:1082.550450px;}
.y7_c02081{bottom:1103.520450px;}
.y6_c02081{bottom:1119.180648px;}
.y5_c02081{bottom:1127.820450px;}
.y4_c02081{bottom:1139.250450px;}
.y1_c02081{bottom:1193.160450px;}
.h3_c02081{height:26.217949px;}
.h8_c02081{height:42.526230px;}
.h9_c02081{height:47.381836px;}
.h4_c02081{height:52.751777px;}
.h7_c02081{height:53.686230px;}
.h6_c02081{height:57.805840px;}
.h5_c02081{height:58.513535px;}
.h2_c02081{height:63.175781px;}
.h1_c02081{height:63.949219px;}
.h0_c02081{height:1263.000000px;}
.w1_c02081{width:892.500000px;}
.w0_c02081{width:892.830000px;}
.x0_c02081{left:0.000000px;}
.x1_c02081{left:127.620000px;}
.x3_c02081{left:135.630000px;}
.x6_c02081{left:137.520000px;}
.x4_c02081{left:246.960000px;}
.x8_c02081{left:284.580000px;}
.x5_c02081{left:304.200000px;}
.x7_c02081{left:335.160000px;}
.x2_c02081{left:437.490000px;}
.x9_c02081{left:720.450000px;}
@media print{
.v2_c02081{vertical-align:-14.400000pt;}
.v0_c02081{vertical-align:0.000000pt;}
.v1_c02081{vertical-align:9.920000pt;}
.ls18_c02081{letter-spacing:-0.160320pt;}
.ls16_c02081{letter-spacing:-0.076800pt;}
.ls14_c02081{letter-spacing:-0.029280pt;}
.ls1a_c02081{letter-spacing:-0.014400pt;}
.ls12_c02081{letter-spacing:-0.012800pt;}
.ls13_c02081{letter-spacing:-0.011712pt;}
.ls15_c02081{letter-spacing:-0.006400pt;}
.ls11_c02081{letter-spacing:0.000000pt;}
.lsb_c02081{letter-spacing:0.005856pt;}
.ls9_c02081{letter-spacing:0.006400pt;}
.ls10_c02081{letter-spacing:0.011712pt;}
.ls0_c02081{letter-spacing:0.012800pt;}
.ls5_c02081{letter-spacing:0.017568pt;}
.ls7_c02081{letter-spacing:0.019200pt;}
.ls1b_c02081{letter-spacing:0.028800pt;}
.lsd_c02081{letter-spacing:0.029280pt;}
.ls3_c02081{letter-spacing:0.035136pt;}
.ls1_c02081{letter-spacing:0.038400pt;}
.lsf_c02081{letter-spacing:0.040992pt;}
.ls8_c02081{letter-spacing:0.044800pt;}
.lse_c02081{letter-spacing:0.052704pt;}
.ls19_c02081{letter-spacing:0.055328pt;}
.lsc_c02081{letter-spacing:0.058560pt;}
.ls2_c02081{letter-spacing:0.064416pt;}
.ls1c_c02081{letter-spacing:0.081984pt;}
.ls4_c02081{letter-spacing:0.087840pt;}
.ls6_c02081{letter-spacing:0.111264pt;}
.ls17_c02081{letter-spacing:0.128256pt;}
.lsa_c02081{letter-spacing:0.161728pt;}
.wsf_c02081{word-spacing:-0.298656pt;}
.ws4_c02081{word-spacing:-0.198400pt;}
.ws8_c02081{word-spacing:-0.083200pt;}
.ws0_c02081{word-spacing:-0.019200pt;}
.ws3_c02081{word-spacing:-0.012800pt;}
.ws1_c02081{word-spacing:0.000000pt;}
.ws7_c02081{word-spacing:0.006400pt;}
.ws2_c02081{word-spacing:0.012800pt;}
.ws5_c02081{word-spacing:0.017568pt;}
.ws19_c02081{word-spacing:0.023424pt;}
.ws14_c02081{word-spacing:0.046848pt;}
.wse_c02081{word-spacing:0.052704pt;}
.wsb_c02081{word-spacing:0.076128pt;}
.wsa_c02081{word-spacing:0.380640pt;}
.wsd_c02081{word-spacing:0.398208pt;}
.ws12_c02081{word-spacing:1.961760pt;}
.ws1b_c02081{word-spacing:2.629344pt;}
.ws1a_c02081{word-spacing:3.542880pt;}
.ws10_c02081{word-spacing:3.548736pt;}
.ws11_c02081{word-spacing:4.520832pt;}
.wsc_c02081{word-spacing:5.779872pt;}
.ws13_c02081{word-spacing:6.482592pt;}
.ws16_c02081{word-spacing:7.038912pt;}
.ws15_c02081{word-spacing:7.056480pt;}
.ws17_c02081{word-spacing:17.322048pt;}
.ws18_c02081{word-spacing:25.959648pt;}
.ws9_c02081{word-spacing:43.598464pt;}
.ws1c_c02081{word-spacing:49.003008pt;}
.ws6_c02081{word-spacing:245.729472pt;}
._a_c02081{margin-left:-25.602432pt;}
._14_c02081{margin-left:-0.957600pt;}
._15_c02081{width:1.053408pt;}
._13_c02081{width:32.635008pt;}
._10_c02081{width:35.120640pt;}
._f_c02081{width:36.080640pt;}
._11_c02081{width:49.120000pt;}
._1_c02081{width:58.139616pt;}
._e_c02081{width:81.396352pt;}
._4_c02081{width:86.053376pt;}
._6_c02081{width:90.316160pt;}
._2_c02081{width:102.522816pt;}
._5_c02081{width:103.500640pt;}
._3_c02081{width:115.134080pt;}
._7_c02081{width:163.247712pt;}
._0_c02081{width:172.819200pt;}
._9_c02081{width:235.247232pt;}
._8_c02081{width:537.651072pt;}
._c_c02081{width:798.252800pt;}
._12_c02081{width:1289.881280pt;}
._b_c02081{width:1592.256000pt;}
._d_c02081{width:2016.499200pt;}
.fs1_c02081{font-size:26.560000pt;}
.fs4_c02081{font-size:42.560000pt;}
.fs5_c02081{font-size:48.000000pt;}
.fs2_c02081{font-size:53.440000pt;}
.fs3_c02081{font-size:58.560000pt;}
.fs0_c02081{font-size:64.000000pt;}
.y0_c02081{bottom:0.000000pt;}
.y3_c02081{bottom:50.987067pt;}
.y2_c02081{bottom:69.387067pt;}
.y3d_c02081{bottom:113.627067pt;}
.y3c_c02081{bottom:132.027067pt;}
.y3b_c02081{bottom:150.427067pt;}
.y3a_c02081{bottom:168.827067pt;}
.y39_c02081{bottom:187.227067pt;}
.y38_c02081{bottom:205.627067pt;}
.y37_c02081{bottom:223.947067pt;}
.y36_c02081{bottom:242.347067pt;}
.y35_c02081{bottom:260.747067pt;}
.y34_c02081{bottom:279.147067pt;}
.y33_c02081{bottom:297.547067pt;}
.y32_c02081{bottom:315.947067pt;}
.y30_c02081{bottom:334.908827pt;}
.y2f_c02081{bottom:351.708227pt;}
.y2e_c02081{bottom:368.588147pt;}
.y2d_c02081{bottom:385.468067pt;}
.y2c_c02081{bottom:402.347987pt;}
.y2b_c02081{bottom:419.227907pt;}
.y2a_c02081{bottom:436.027307pt;}
.y29_c02081{bottom:452.907227pt;}
.y28_c02081{bottom:469.787147pt;}
.y31_c02081{bottom:489.307067pt;}
.y27_c02081{bottom:490.267067pt;}
.y25_c02081{bottom:504.187827pt;}
.y24_c02081{bottom:521.067747pt;}
.y23_c02081{bottom:537.947667pt;}
.y26_c02081{bottom:557.387067pt;}
.y22_c02081{bottom:558.347067pt;}
.y20_c02081{bottom:572.347827pt;}
.y1f_c02081{bottom:589.147227pt;}
.y1e_c02081{bottom:606.027147pt;}
.y21_c02081{bottom:625.547067pt;}
.y1d_c02081{bottom:626.507067pt;}
.y1b_c02081{bottom:640.427307pt;}
.y1a_c02081{bottom:657.307227pt;}
.y19_c02081{bottom:674.187147pt;}
.y1c_c02081{bottom:693.707067pt;}
.y18_c02081{bottom:694.667067pt;}
.y16_c02081{bottom:708.587747pt;}
.y15_c02081{bottom:725.467667pt;}
.y17_c02081{bottom:744.907067pt;}
.y14_c02081{bottom:745.867067pt;}
.y13_c02081{bottom:759.387067pt;}
.y12_c02081{bottom:776.027067pt;}
.y11_c02081{bottom:795.067067pt;}
.y10_c02081{bottom:813.467067pt;}
.yf_c02081{bottom:832.507067pt;}
.ye_c02081{bottom:851.627067pt;}
.yd_c02081{bottom:870.667067pt;}
.yc_c02081{bottom:889.707067pt;}
.yb_c02081{bottom:908.587067pt;}
.ya_c02081{bottom:926.107067pt;}
.y9_c02081{bottom:943.867067pt;}
.y8_c02081{bottom:962.267067pt;}
.y7_c02081{bottom:980.907067pt;}
.y6_c02081{bottom:994.827243pt;}
.y5_c02081{bottom:1002.507067pt;}
.y4_c02081{bottom:1012.667067pt;}
.y1_c02081{bottom:1060.587067pt;}
.h3_c02081{height:23.304844pt;}
.h8_c02081{height:37.801094pt;}
.h9_c02081{height:42.117188pt;}
.h4_c02081{height:46.890469pt;}
.h7_c02081{height:47.721094pt;}
.h6_c02081{height:51.382969pt;}
.h5_c02081{height:52.012031pt;}
.h2_c02081{height:56.156250pt;}
.h1_c02081{height:56.843750pt;}
.h0_c02081{height:1122.666667pt;}
.w1_c02081{width:793.333333pt;}
.w0_c02081{width:793.626667pt;}
.x0_c02081{left:0.000000pt;}
.x1_c02081{left:113.440000pt;}
.x3_c02081{left:120.560000pt;}
.x6_c02081{left:122.240000pt;}
.x4_c02081{left:219.520000pt;}
.x8_c02081{left:252.960000pt;}
.x5_c02081{left:270.400000pt;}
.x7_c02081{left:297.920000pt;}
.x2_c02081{left:388.880000pt;}
.x9_c02081{left:640.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_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_b71ac2cd26527e2715037e8e.woff2')format("woff");}.ff1_c02082{font-family:ff1_c02082;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02082;src:url('chunks/assets/font_727997f48fe78fd161eededa.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02082{font-family:ff3_c02082;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_c02082;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02082{font-family:ff4_c02082;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;}
.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);}
.v1_c02082{vertical-align:-11.160000px;}
.v0_c02082{vertical-align:0.000000px;}
.v2_c02082{vertical-align:11.159400px;}
.ls1b_c02082{letter-spacing:-0.270540px;}
.ls16_c02082{letter-spacing:-0.180360px;}
.ls19_c02082{letter-spacing:-0.090180px;}
.ls11_c02082{letter-spacing:-0.050400px;}
.ls17_c02082{letter-spacing:-0.030060px;}
.ls15_c02082{letter-spacing:-0.024048px;}
.ls10_c02082{letter-spacing:-0.021600px;}
.ls12_c02082{letter-spacing:-0.014400px;}
.lsf_c02082{letter-spacing:-0.007200px;}
.lse_c02082{letter-spacing:0.000000px;}
.lsb_c02082{letter-spacing:0.007200px;}
.ls4_c02082{letter-spacing:0.014400px;}
.ls0_c02082{letter-spacing:0.021600px;}
.ls5_c02082{letter-spacing:0.028800px;}
.lsa_c02082{letter-spacing:0.036000px;}
.ls2_c02082{letter-spacing:0.043200px;}
.ls7_c02082{letter-spacing:0.048096px;}
.ls6_c02082{letter-spacing:0.050400px;}
.ls1_c02082{letter-spacing:0.057600px;}
.ls3_c02082{letter-spacing:0.086400px;}
.ls9_c02082{letter-spacing:0.090180px;}
.lsc_c02082{letter-spacing:0.108216px;}
.ls1a_c02082{letter-spacing:0.138276px;}
.ls14_c02082{letter-spacing:0.144288px;}
.ls18_c02082{letter-spacing:0.180360px;}
.ls13_c02082{letter-spacing:0.230400px;}
.ls8_c02082{letter-spacing:60.210576px;}
.lsd_c02082{letter-spacing:1472.850000px;}
.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;}
}
.ws2_c02082{word-spacing:-60.120000px;}
.ws0_c02082{word-spacing:-18.230400px;}
.ws1_c02082{word-spacing:-18.014400px;}
.ws18_c02082{word-spacing:-0.408816px;}
.wsf_c02082{word-spacing:-0.201600px;}
.ws16_c02082{word-spacing:-0.158400px;}
.ws1a_c02082{word-spacing:-0.072000px;}
.wsb_c02082{word-spacing:-0.064800px;}
.ws13_c02082{word-spacing:-0.057600px;}
.ws10_c02082{word-spacing:-0.050400px;}
.wsa_c02082{word-spacing:-0.043200px;}
.ws19_c02082{word-spacing:-0.036000px;}
.ws12_c02082{word-spacing:-0.028800px;}
.ws3_c02082{word-spacing:-0.021600px;}
.ws11_c02082{word-spacing:-0.014400px;}
.ws1c_c02082{word-spacing:-0.007200px;}
.ws4_c02082{word-spacing:0.000000px;}
.ws1b_c02082{word-spacing:0.007200px;}
.ws17_c02082{word-spacing:0.180360px;}
.wse_c02082{word-spacing:0.273600px;}
.wsd_c02082{word-spacing:0.309600px;}
.ws5_c02082{word-spacing:1.368000px;}
.ws6_c02082{word-spacing:1.447200px;}
.ws9_c02082{word-spacing:5.342400px;}
.ws8_c02082{word-spacing:5.688000px;}
.ws7_c02082{word-spacing:5.738400px;}
.wsc_c02082{word-spacing:10.368000px;}
.ws14_c02082{word-spacing:17.769600px;}
.ws15_c02082{word-spacing:18.014400px;}
._1_c02082{margin-left:-1.252800px;}
._2_c02082{width:49.450896px;}
._5_c02082{width:52.468920px;}
._8_c02082{width:68.774400px;}
._a_c02082{width:178.488000px;}
._0_c02082{width:194.421600px;}
._b_c02082{width:218.268000px;}
._4_c02082{width:424.556640px;}
._9_c02082{width:464.212800px;}
._6_c02082{width:603.417600px;}
._c_c02082{width:701.841600px;}
._7_c02082{width:902.923200px;}
._3_c02082{width:1176.213600px;}
._d_c02082{width:1192.332384px;}
.fc0_c02082{color:rgb(0,0,0);}
.fs4_c02082{font-size:2.880000px;}
.fs2_c02082{font-size:29.880000px;}
.fs1_c02082{font-size:54.000000px;}
.fs3_c02082{font-size:60.120000px;}
.fs0_c02082{font-size:72.000000px;}
.fs5_c02082{font-size:83.880000px;}
.y0_c02082{bottom:0.000000px;}
.y3_c02082{bottom:57.360450px;}
.y2_c02082{bottom:78.060450px;}
.y32_c02082{bottom:130.710600px;}
.y31_c02082{bottom:154.290600px;}
.y30_c02082{bottom:175.622115px;}
.y2f_c02082{bottom:199.741809px;}
.y2e_c02082{bottom:223.861503px;}
.y2d_c02082{bottom:247.981197px;}
.y2c_c02082{bottom:272.191062px;}
.y2b_c02082{bottom:296.310756px;}
.y2a_c02082{bottom:320.430450px;}
.y29_c02082{bottom:365.880450px;}
.y28_c02082{bottom:369.930450px;}
.y27_c02082{bottom:387.930600px;}
.y26_c02082{bottom:404.310450px;}
.y25_c02082{bottom:415.200600px;}
.y24_c02082{bottom:433.560450px;}
.y23_c02082{bottom:448.050450px;}
.y22_c02082{bottom:469.470450px;}
.y21_c02082{bottom:490.890450px;}
.y20_c02082{bottom:512.400450px;}
.y1f_c02082{bottom:533.820450px;}
.y1e_c02082{bottom:555.240450px;}
.y1d_c02082{bottom:576.750450px;}
.y1c_c02082{bottom:594.750450px;}
.y1b_c02082{bottom:611.940450px;}
.y1a_c02082{bottom:629.220450px;}
.y19_c02082{bottom:645.780450px;}
.y18_c02082{bottom:656.670450px;}
.y17_c02082{bottom:677.370450px;}
.y16_c02082{bottom:698.070450px;}
.y15_c02082{bottom:719.310450px;}
.y14_c02082{bottom:740.820450px;}
.y13_c02082{bottom:762.240450px;}
.y12_c02082{bottom:782.940450px;}
.y11_c02082{bottom:803.820450px;}
.y10_c02082{bottom:824.520450px;}
.yf_c02082{bottom:855.570450px;}
.ye_c02082{bottom:886.620450px;}
.yd_c02082{bottom:917.670450px;}
.yc_c02082{bottom:948.720450px;}
.yb_c02082{bottom:979.770450px;}
.ya_c02082{bottom:1010.820450px;}
.y9_c02082{bottom:1041.870450px;}
.y8_c02082{bottom:1062.570450px;}
.y7_c02082{bottom:1083.090450px;}
.y6_c02082{bottom:1103.790450px;}
.y5_c02082{bottom:1123.500450px;}
.y4_c02082{bottom:1139.970450px;}
.y1_c02082{bottom:1193.160450px;}
.h8_c02082{height:2.557969px;}
.h4_c02082{height:26.217949px;}
.h7_c02082{height:26.538926px;}
.h3_c02082{height:47.961914px;}
.h5_c02082{height:53.397598px;}
.h6_c02082{height:53.471777px;}
.h2_c02082{height:63.175781px;}
.h1_c02082{height:63.949219px;}
.h9_c02082{height:74.500840px;}
.h0_c02082{height:1263.000000px;}
.w1_c02082{width:892.500000px;}
.w0_c02082{width:892.830000px;}
.x0_c02082{left:0.000000px;}
.x4_c02082{left:117.000000px;}
.x1_c02082{left:127.620000px;}
.x5_c02082{left:135.630000px;}
.x6_c02082{left:146.250000px;}
.x3_c02082{left:148.950000px;}
.x9_c02082{left:156.960000px;}
.x2_c02082{left:437.490000px;}
.x8_c02082{left:705.870000px;}
.x7_c02082{left:722.520000px;}
@media print{
.v1_c02082{vertical-align:-9.920000pt;}
.v0_c02082{vertical-align:0.000000pt;}
.v2_c02082{vertical-align:9.919467pt;}
.ls1b_c02082{letter-spacing:-0.240480pt;}
.ls16_c02082{letter-spacing:-0.160320pt;}
.ls19_c02082{letter-spacing:-0.080160pt;}
.ls11_c02082{letter-spacing:-0.044800pt;}
.ls17_c02082{letter-spacing:-0.026720pt;}
.ls15_c02082{letter-spacing:-0.021376pt;}
.ls10_c02082{letter-spacing:-0.019200pt;}
.ls12_c02082{letter-spacing:-0.012800pt;}
.lsf_c02082{letter-spacing:-0.006400pt;}
.lse_c02082{letter-spacing:0.000000pt;}
.lsb_c02082{letter-spacing:0.006400pt;}
.ls4_c02082{letter-spacing:0.012800pt;}
.ls0_c02082{letter-spacing:0.019200pt;}
.ls5_c02082{letter-spacing:0.025600pt;}
.lsa_c02082{letter-spacing:0.032000pt;}
.ls2_c02082{letter-spacing:0.038400pt;}
.ls7_c02082{letter-spacing:0.042752pt;}
.ls6_c02082{letter-spacing:0.044800pt;}
.ls1_c02082{letter-spacing:0.051200pt;}
.ls3_c02082{letter-spacing:0.076800pt;}
.ls9_c02082{letter-spacing:0.080160pt;}
.lsc_c02082{letter-spacing:0.096192pt;}
.ls1a_c02082{letter-spacing:0.122912pt;}
.ls14_c02082{letter-spacing:0.128256pt;}
.ls18_c02082{letter-spacing:0.160320pt;}
.ls13_c02082{letter-spacing:0.204800pt;}
.ls8_c02082{letter-spacing:53.520512pt;}
.lsd_c02082{letter-spacing:1309.200000pt;}
.ws2_c02082{word-spacing:-53.440000pt;}
.ws0_c02082{word-spacing:-16.204800pt;}
.ws1_c02082{word-spacing:-16.012800pt;}
.ws18_c02082{word-spacing:-0.363392pt;}
.wsf_c02082{word-spacing:-0.179200pt;}
.ws16_c02082{word-spacing:-0.140800pt;}
.ws1a_c02082{word-spacing:-0.064000pt;}
.wsb_c02082{word-spacing:-0.057600pt;}
.ws13_c02082{word-spacing:-0.051200pt;}
.ws10_c02082{word-spacing:-0.044800pt;}
.wsa_c02082{word-spacing:-0.038400pt;}
.ws19_c02082{word-spacing:-0.032000pt;}
.ws12_c02082{word-spacing:-0.025600pt;}
.ws3_c02082{word-spacing:-0.019200pt;}
.ws11_c02082{word-spacing:-0.012800pt;}
.ws1c_c02082{word-spacing:-0.006400pt;}
.ws4_c02082{word-spacing:0.000000pt;}
.ws1b_c02082{word-spacing:0.006400pt;}
.ws17_c02082{word-spacing:0.160320pt;}
.wse_c02082{word-spacing:0.243200pt;}
.wsd_c02082{word-spacing:0.275200pt;}
.ws5_c02082{word-spacing:1.216000pt;}
.ws6_c02082{word-spacing:1.286400pt;}
.ws9_c02082{word-spacing:4.748800pt;}
.ws8_c02082{word-spacing:5.056000pt;}
.ws7_c02082{word-spacing:5.100800pt;}
.wsc_c02082{word-spacing:9.216000pt;}
.ws14_c02082{word-spacing:15.795200pt;}
.ws15_c02082{word-spacing:16.012800pt;}
._1_c02082{margin-left:-1.113600pt;}
._2_c02082{width:43.956352pt;}
._5_c02082{width:46.639040pt;}
._8_c02082{width:61.132800pt;}
._a_c02082{width:158.656000pt;}
._0_c02082{width:172.819200pt;}
._b_c02082{width:194.016000pt;}
._4_c02082{width:377.383680pt;}
._9_c02082{width:412.633600pt;}
._6_c02082{width:536.371200pt;}
._c_c02082{width:623.859200pt;}
._7_c02082{width:802.598400pt;}
._3_c02082{width:1045.523200pt;}
._d_c02082{width:1059.851008pt;}
.fs4_c02082{font-size:2.560000pt;}
.fs2_c02082{font-size:26.560000pt;}
.fs1_c02082{font-size:48.000000pt;}
.fs3_c02082{font-size:53.440000pt;}
.fs0_c02082{font-size:64.000000pt;}
.fs5_c02082{font-size:74.560000pt;}
.y0_c02082{bottom:0.000000pt;}
.y3_c02082{bottom:50.987067pt;}
.y2_c02082{bottom:69.387067pt;}
.y32_c02082{bottom:116.187200pt;}
.y31_c02082{bottom:137.147200pt;}
.y30_c02082{bottom:156.108547pt;}
.y2f_c02082{bottom:177.548275pt;}
.y2e_c02082{bottom:198.988003pt;}
.y2d_c02082{bottom:220.427731pt;}
.y2c_c02082{bottom:241.947611pt;}
.y2b_c02082{bottom:263.387339pt;}
.y2a_c02082{bottom:284.827067pt;}
.y29_c02082{bottom:325.227067pt;}
.y28_c02082{bottom:328.827067pt;}
.y27_c02082{bottom:344.827200pt;}
.y26_c02082{bottom:359.387067pt;}
.y25_c02082{bottom:369.067200pt;}
.y24_c02082{bottom:385.387067pt;}
.y23_c02082{bottom:398.267067pt;}
.y22_c02082{bottom:417.307067pt;}
.y21_c02082{bottom:436.347067pt;}
.y20_c02082{bottom:455.467067pt;}
.y1f_c02082{bottom:474.507067pt;}
.y1e_c02082{bottom:493.547067pt;}
.y1d_c02082{bottom:512.667067pt;}
.y1c_c02082{bottom:528.667067pt;}
.y1b_c02082{bottom:543.947067pt;}
.y1a_c02082{bottom:559.307067pt;}
.y19_c02082{bottom:574.027067pt;}
.y18_c02082{bottom:583.707067pt;}
.y17_c02082{bottom:602.107067pt;}
.y16_c02082{bottom:620.507067pt;}
.y15_c02082{bottom:639.387067pt;}
.y14_c02082{bottom:658.507067pt;}
.y13_c02082{bottom:677.547067pt;}
.y12_c02082{bottom:695.947067pt;}
.y11_c02082{bottom:714.507067pt;}
.y10_c02082{bottom:732.907067pt;}
.yf_c02082{bottom:760.507067pt;}
.ye_c02082{bottom:788.107067pt;}
.yd_c02082{bottom:815.707067pt;}
.yc_c02082{bottom:843.307067pt;}
.yb_c02082{bottom:870.907067pt;}
.ya_c02082{bottom:898.507067pt;}
.y9_c02082{bottom:926.107067pt;}
.y8_c02082{bottom:944.507067pt;}
.y7_c02082{bottom:962.747067pt;}
.y6_c02082{bottom:981.147067pt;}
.y5_c02082{bottom:998.667067pt;}
.y4_c02082{bottom:1013.307067pt;}
.y1_c02082{bottom:1060.587067pt;}
.h8_c02082{height:2.273750pt;}
.h4_c02082{height:23.304844pt;}
.h7_c02082{height:23.590156pt;}
.h3_c02082{height:42.632812pt;}
.h5_c02082{height:47.464531pt;}
.h6_c02082{height:47.530469pt;}
.h2_c02082{height:56.156250pt;}
.h1_c02082{height:56.843750pt;}
.h9_c02082{height:66.222969pt;}
.h0_c02082{height:1122.666667pt;}
.w1_c02082{width:793.333333pt;}
.w0_c02082{width:793.626667pt;}
.x0_c02082{left:0.000000pt;}
.x4_c02082{left:104.000000pt;}
.x1_c02082{left:113.440000pt;}
.x5_c02082{left:120.560000pt;}
.x6_c02082{left:130.000000pt;}
.x3_c02082{left:132.400000pt;}
.x9_c02082{left:139.520000pt;}
.x2_c02082{left:388.880000pt;}
.x8_c02082{left:627.440000pt;}
.x7_c02082{left:642.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_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_47a1665af9a68b02923f7211.woff2')format("woff");}.ff1_c02083{font-family:ff1_c02083;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02083;src:url('chunks/assets/font_a8088af4da5eb21052c8b80f.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_5849db3dde234f9e42064fd2.woff2')format("woff");}.ff3_c02083{font-family:ff3_c02083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02083;src:url('chunks/assets/font_1d11182c78a92257c552475d.woff2')format("woff");}.ff4_c02083{font-family:ff4_c02083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02083{vertical-align:-9.000000px;}
.v0_c02083{vertical-align:0.000000px;}
.v2_c02083{vertical-align:5.760000px;}
.ls14_c02083{letter-spacing:-0.028800px;}
.ls16_c02083{letter-spacing:-0.021600px;}
.ls13_c02083{letter-spacing:-0.014400px;}
.ls12_c02083{letter-spacing:-0.007200px;}
.ls11_c02083{letter-spacing:0.000000px;}
.ls0_c02083{letter-spacing:0.007200px;}
.ls4_c02083{letter-spacing:0.014400px;}
.lsc_c02083{letter-spacing:0.021600px;}
.ls5_c02083{letter-spacing:0.028800px;}
.ls10_c02083{letter-spacing:0.036000px;}
.lse_c02083{letter-spacing:0.050400px;}
.ls15_c02083{letter-spacing:0.052704px;}
.ls7_c02083{letter-spacing:0.059292px;}
.lsf_c02083{letter-spacing:0.064800px;}
.ls6_c02083{letter-spacing:0.065880px;}
.lsd_c02083{letter-spacing:0.072000px;}
.ls9_c02083{letter-spacing:0.072468px;}
.lsb_c02083{letter-spacing:0.079056px;}
.lsa_c02083{letter-spacing:0.092232px;}
.ls1_c02083{letter-spacing:0.093600px;}
.ls8_c02083{letter-spacing:0.098820px;}
.ls2_c02083{letter-spacing:0.144000px;}
.ls3_c02083{letter-spacing:0.180000px;}
.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;}
}
.ws21_c02083{word-spacing:-0.410400px;}
.ws1c_c02083{word-spacing:-0.374400px;}
.ws22_c02083{word-spacing:-0.302400px;}
.ws16_c02083{word-spacing:-0.244800px;}
.ws1b_c02083{word-spacing:-0.208800px;}
.ws1a_c02083{word-spacing:-0.144000px;}
.ws1d_c02083{word-spacing:-0.136800px;}
.ws15_c02083{word-spacing:-0.108000px;}
.ws24_c02083{word-spacing:-0.100800px;}
.ws14_c02083{word-spacing:-0.093600px;}
.ws6_c02083{word-spacing:-0.086400px;}
.ws23_c02083{word-spacing:-0.072000px;}
.ws0_c02083{word-spacing:-0.021600px;}
.ws9_c02083{word-spacing:-0.014400px;}
.ws2_c02083{word-spacing:-0.007200px;}
.wsd_c02083{word-spacing:-0.006588px;}
.ws1_c02083{word-spacing:0.000000px;}
.ws7_c02083{word-spacing:0.007200px;}
.wsf_c02083{word-spacing:0.013176px;}
.ws8_c02083{word-spacing:0.014400px;}
.wse_c02083{word-spacing:0.019764px;}
.wsa_c02083{word-spacing:0.026352px;}
.wsb_c02083{word-spacing:0.032940px;}
.wsc_c02083{word-spacing:0.039528px;}
.ws13_c02083{word-spacing:5.234400px;}
.ws12_c02083{word-spacing:5.277600px;}
.ws1f_c02083{word-spacing:7.416000px;}
.ws20_c02083{word-spacing:7.488000px;}
.ws1e_c02083{word-spacing:7.545600px;}
.ws5_c02083{word-spacing:9.712800px;}
.ws4_c02083{word-spacing:11.073600px;}
.ws3_c02083{word-spacing:11.145600px;}
.ws10_c02083{word-spacing:12.880800px;}
.ws11_c02083{word-spacing:12.938400px;}
.ws19_c02083{word-spacing:16.761600px;}
.ws18_c02083{word-spacing:16.819200px;}
.ws17_c02083{word-spacing:16.948800px;}
._5_c02083{margin-left:-1.357128px;}
._2_c02083{width:112.096800px;}
._3_c02083{width:116.056800px;}
._1_c02083{width:165.024000px;}
._0_c02083{width:194.421600px;}
._4_c02083{width:278.236800px;}
.fc0_c02083{color:rgb(0,0,0);}
.fs1_c02083{font-size:11.880000px;}
.fs2_c02083{font-size:47.880000px;}
.fs3_c02083{font-size:65.880000px;}
.fs0_c02083{font-size:72.000000px;}
.y0_c02083{bottom:0.000000px;}
.y3_c02083{bottom:57.360450px;}
.y2_c02083{bottom:78.060450px;}
.y36_c02083{bottom:124.140450px;}
.y35_c02083{bottom:144.840450px;}
.y34_c02083{bottom:165.540450px;}
.y33_c02083{bottom:186.240450px;}
.y32_c02083{bottom:206.940450px;}
.y31_c02083{bottom:227.640450px;}
.y30_c02083{bottom:248.340450px;}
.y2f_c02083{bottom:269.040450px;}
.y2e_c02083{bottom:289.740450px;}
.y2d_c02083{bottom:310.440450px;}
.y2c_c02083{bottom:331.140450px;}
.y2b_c02083{bottom:351.840450px;}
.y2a_c02083{bottom:373.440450px;}
.y29_c02083{bottom:394.140450px;}
.y28_c02083{bottom:415.380450px;}
.y27_c02083{bottom:436.980450px;}
.y26_c02083{bottom:457.680600px;}
.y25_c02083{bottom:478.380450px;}
.y24_c02083{bottom:499.710600px;}
.y23_c02083{bottom:521.310450px;}
.y22_c02083{bottom:542.010450px;}
.y21_c02083{bottom:562.710450px;}
.y20_c02083{bottom:583.950450px;}
.y1f_c02083{bottom:605.640450px;}
.y1e_c02083{bottom:626.340450px;}
.y1d_c02083{bottom:647.040450px;}
.y1c_c02083{bottom:667.740450px;}
.y1b_c02083{bottom:688.440450px;}
.y1a_c02083{bottom:709.140450px;}
.y19_c02083{bottom:729.840450px;}
.y18_c02083{bottom:751.080450px;}
.y17_c02083{bottom:772.680450px;}
.y16_c02083{bottom:793.380450px;}
.y15_c02083{bottom:814.620450px;}
.y14_c02083{bottom:835.862250px;}
.y13_c02083{bottom:854.761575px;}
.y12_c02083{bottom:873.751485px;}
.y11_c02083{bottom:892.741395px;}
.y10_c02083{bottom:911.731305px;}
.yf_c02083{bottom:930.721215px;}
.ye_c02083{bottom:949.711125px;}
.yd_c02083{bottom:967.170450px;}
.yc_c02083{bottom:988.680450px;}
.yb_c02083{bottom:1009.380450px;}
.ya_c02083{bottom:1030.800450px;}
.y9_c02083{bottom:1052.220450px;}
.y8_c02083{bottom:1073.820450px;}
.y7_c02083{bottom:1094.520450px;}
.y6_c02083{bottom:1115.130450px;}
.y5_c02083{bottom:1133.310450px;}
.y4_c02083{bottom:1139.970450px;}
.y1_c02083{bottom:1193.160450px;}
.h3_c02083{height:10.424004px;}
.h7_c02083{height:58.513535px;}
.h2_c02083{height:63.175781px;}
.h8_c02083{height:63.942619px;}
.h1_c02083{height:63.949219px;}
.h6_c02083{height:64.273535px;}
.h5_c02083{height:70.628906px;}
.h4_c02083{height:70.988906px;}
.h0_c02083{height:1263.000000px;}
.w1_c02083{width:892.500000px;}
.w0_c02083{width:892.830000px;}
.x0_c02083{left:0.000000px;}
.x1_c02083{left:127.620000px;}
.x3_c02083{left:135.630000px;}
.x4_c02083{left:252.630000px;}
.x2_c02083{left:437.490000px;}
@media print{
.v1_c02083{vertical-align:-8.000000pt;}
.v0_c02083{vertical-align:0.000000pt;}
.v2_c02083{vertical-align:5.120000pt;}
.ls14_c02083{letter-spacing:-0.025600pt;}
.ls16_c02083{letter-spacing:-0.019200pt;}
.ls13_c02083{letter-spacing:-0.012800pt;}
.ls12_c02083{letter-spacing:-0.006400pt;}
.ls11_c02083{letter-spacing:0.000000pt;}
.ls0_c02083{letter-spacing:0.006400pt;}
.ls4_c02083{letter-spacing:0.012800pt;}
.lsc_c02083{letter-spacing:0.019200pt;}
.ls5_c02083{letter-spacing:0.025600pt;}
.ls10_c02083{letter-spacing:0.032000pt;}
.lse_c02083{letter-spacing:0.044800pt;}
.ls15_c02083{letter-spacing:0.046848pt;}
.ls7_c02083{letter-spacing:0.052704pt;}
.lsf_c02083{letter-spacing:0.057600pt;}
.ls6_c02083{letter-spacing:0.058560pt;}
.lsd_c02083{letter-spacing:0.064000pt;}
.ls9_c02083{letter-spacing:0.064416pt;}
.lsb_c02083{letter-spacing:0.070272pt;}
.lsa_c02083{letter-spacing:0.081984pt;}
.ls1_c02083{letter-spacing:0.083200pt;}
.ls8_c02083{letter-spacing:0.087840pt;}
.ls2_c02083{letter-spacing:0.128000pt;}
.ls3_c02083{letter-spacing:0.160000pt;}
.ws21_c02083{word-spacing:-0.364800pt;}
.ws1c_c02083{word-spacing:-0.332800pt;}
.ws22_c02083{word-spacing:-0.268800pt;}
.ws16_c02083{word-spacing:-0.217600pt;}
.ws1b_c02083{word-spacing:-0.185600pt;}
.ws1a_c02083{word-spacing:-0.128000pt;}
.ws1d_c02083{word-spacing:-0.121600pt;}
.ws15_c02083{word-spacing:-0.096000pt;}
.ws24_c02083{word-spacing:-0.089600pt;}
.ws14_c02083{word-spacing:-0.083200pt;}
.ws6_c02083{word-spacing:-0.076800pt;}
.ws23_c02083{word-spacing:-0.064000pt;}
.ws0_c02083{word-spacing:-0.019200pt;}
.ws9_c02083{word-spacing:-0.012800pt;}
.ws2_c02083{word-spacing:-0.006400pt;}
.wsd_c02083{word-spacing:-0.005856pt;}
.ws1_c02083{word-spacing:0.000000pt;}
.ws7_c02083{word-spacing:0.006400pt;}
.wsf_c02083{word-spacing:0.011712pt;}
.ws8_c02083{word-spacing:0.012800pt;}
.wse_c02083{word-spacing:0.017568pt;}
.wsa_c02083{word-spacing:0.023424pt;}
.wsb_c02083{word-spacing:0.029280pt;}
.wsc_c02083{word-spacing:0.035136pt;}
.ws13_c02083{word-spacing:4.652800pt;}
.ws12_c02083{word-spacing:4.691200pt;}
.ws1f_c02083{word-spacing:6.592000pt;}
.ws20_c02083{word-spacing:6.656000pt;}
.ws1e_c02083{word-spacing:6.707200pt;}
.ws5_c02083{word-spacing:8.633600pt;}
.ws4_c02083{word-spacing:9.843200pt;}
.ws3_c02083{word-spacing:9.907200pt;}
.ws10_c02083{word-spacing:11.449600pt;}
.ws11_c02083{word-spacing:11.500800pt;}
.ws19_c02083{word-spacing:14.899200pt;}
.ws18_c02083{word-spacing:14.950400pt;}
.ws17_c02083{word-spacing:15.065600pt;}
._5_c02083{margin-left:-1.206336pt;}
._2_c02083{width:99.641600pt;}
._3_c02083{width:103.161600pt;}
._1_c02083{width:146.688000pt;}
._0_c02083{width:172.819200pt;}
._4_c02083{width:247.321600pt;}
.fs1_c02083{font-size:10.560000pt;}
.fs2_c02083{font-size:42.560000pt;}
.fs3_c02083{font-size:58.560000pt;}
.fs0_c02083{font-size:64.000000pt;}
.y0_c02083{bottom:0.000000pt;}
.y3_c02083{bottom:50.987067pt;}
.y2_c02083{bottom:69.387067pt;}
.y36_c02083{bottom:110.347067pt;}
.y35_c02083{bottom:128.747067pt;}
.y34_c02083{bottom:147.147067pt;}
.y33_c02083{bottom:165.547067pt;}
.y32_c02083{bottom:183.947067pt;}
.y31_c02083{bottom:202.347067pt;}
.y30_c02083{bottom:220.747067pt;}
.y2f_c02083{bottom:239.147067pt;}
.y2e_c02083{bottom:257.547067pt;}
.y2d_c02083{bottom:275.947067pt;}
.y2c_c02083{bottom:294.347067pt;}
.y2b_c02083{bottom:312.747067pt;}
.y2a_c02083{bottom:331.947067pt;}
.y29_c02083{bottom:350.347067pt;}
.y28_c02083{bottom:369.227067pt;}
.y27_c02083{bottom:388.427067pt;}
.y26_c02083{bottom:406.827200pt;}
.y25_c02083{bottom:425.227067pt;}
.y24_c02083{bottom:444.187200pt;}
.y23_c02083{bottom:463.387067pt;}
.y22_c02083{bottom:481.787067pt;}
.y21_c02083{bottom:500.187067pt;}
.y20_c02083{bottom:519.067067pt;}
.y1f_c02083{bottom:538.347067pt;}
.y1e_c02083{bottom:556.747067pt;}
.y1d_c02083{bottom:575.147067pt;}
.y1c_c02083{bottom:593.547067pt;}
.y1b_c02083{bottom:611.947067pt;}
.y1a_c02083{bottom:630.347067pt;}
.y19_c02083{bottom:648.747067pt;}
.y18_c02083{bottom:667.627067pt;}
.y17_c02083{bottom:686.827067pt;}
.y16_c02083{bottom:705.227067pt;}
.y15_c02083{bottom:724.107067pt;}
.y14_c02083{bottom:742.988667pt;}
.y13_c02083{bottom:759.788067pt;}
.y12_c02083{bottom:776.667987pt;}
.y11_c02083{bottom:793.547907pt;}
.y10_c02083{bottom:810.427827pt;}
.yf_c02083{bottom:827.307747pt;}
.ye_c02083{bottom:844.187667pt;}
.yd_c02083{bottom:859.707067pt;}
.yc_c02083{bottom:878.827067pt;}
.yb_c02083{bottom:897.227067pt;}
.ya_c02083{bottom:916.267067pt;}
.y9_c02083{bottom:935.307067pt;}
.y8_c02083{bottom:954.507067pt;}
.y7_c02083{bottom:972.907067pt;}
.y6_c02083{bottom:991.227067pt;}
.y5_c02083{bottom:1007.387067pt;}
.y4_c02083{bottom:1013.307067pt;}
.y1_c02083{bottom:1060.587067pt;}
.h3_c02083{height:9.265781pt;}
.h7_c02083{height:52.012031pt;}
.h2_c02083{height:56.156250pt;}
.h8_c02083{height:56.837883pt;}
.h1_c02083{height:56.843750pt;}
.h6_c02083{height:57.132031pt;}
.h5_c02083{height:62.781250pt;}
.h4_c02083{height:63.101250pt;}
.h0_c02083{height:1122.666667pt;}
.w1_c02083{width:793.333333pt;}
.w0_c02083{width:793.626667pt;}
.x0_c02083{left:0.000000pt;}
.x1_c02083{left:113.440000pt;}
.x3_c02083{left:120.560000pt;}
.x4_c02083{left:224.560000pt;}
.x2_c02083{left:388.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_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_693c52951f4dad6cf63775fd.woff2')format("woff");}.ff1_c02084{font-family:ff1_c02084;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02084;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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:5.760000px;}
.v2_c02084{vertical-align:75.960000px;}
.ls19_c02084{letter-spacing:-0.014400px;}
.ls17_c02084{letter-spacing:-0.007200px;}
.ls1c_c02084{letter-spacing:-0.006588px;}
.ls1b_c02084{letter-spacing:-0.006012px;}
.ls16_c02084{letter-spacing:0.000000px;}
.ls18_c02084{letter-spacing:0.007200px;}
.ls0_c02084{letter-spacing:0.014400px;}
.ls14_c02084{letter-spacing:0.019764px;}
.ls4_c02084{letter-spacing:0.026352px;}
.ls2_c02084{letter-spacing:0.039528px;}
.ls13_c02084{letter-spacing:0.046116px;}
.ls1a_c02084{letter-spacing:0.052704px;}
.lsb_c02084{letter-spacing:0.059292px;}
.ls9_c02084{letter-spacing:0.065880px;}
.ls12_c02084{letter-spacing:0.072468px;}
.lsc_c02084{letter-spacing:0.079056px;}
.lsf_c02084{letter-spacing:0.085644px;}
.ls6_c02084{letter-spacing:0.092232px;}
.ls11_c02084{letter-spacing:0.105408px;}
.ls7_c02084{letter-spacing:0.138348px;}
.ls5_c02084{letter-spacing:0.144288px;}
.lsa_c02084{letter-spacing:0.151524px;}
.ls10_c02084{letter-spacing:0.158112px;}
.ls1_c02084{letter-spacing:0.164700px;}
.lsd_c02084{letter-spacing:0.177876px;}
.lse_c02084{letter-spacing:117.450000px;}
.ls8_c02084{letter-spacing:150.300000px;}
.ls3_c02084{letter-spacing:290.880000px;}
.ls15_c02084{letter-spacing:394.650000px;}
.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;}
}
.wsa_c02084{word-spacing:-16.647876px;}
.ws12_c02084{word-spacing:-16.562232px;}
.ws0_c02084{word-spacing:-16.509528px;}
.ws24_c02084{word-spacing:-0.362340px;}
.ws1a_c02084{word-spacing:-0.194400px;}
.ws18_c02084{word-spacing:-0.172800px;}
.ws1f_c02084{word-spacing:-0.054108px;}
.ws15_c02084{word-spacing:-0.021600px;}
.ws17_c02084{word-spacing:-0.014400px;}
.ws19_c02084{word-spacing:-0.007200px;}
.ws16_c02084{word-spacing:0.000000px;}
.ws1b_c02084{word-spacing:0.013176px;}
.ws25_c02084{word-spacing:0.019764px;}
.ws20_c02084{word-spacing:0.026352px;}
.ws21_c02084{word-spacing:0.032940px;}
.ws1e_c02084{word-spacing:0.039528px;}
.ws22_c02084{word-spacing:0.046116px;}
.ws1c_c02084{word-spacing:0.052704px;}
.ws1d_c02084{word-spacing:0.065880px;}
.ws23_c02084{word-spacing:0.098820px;}
.wsd_c02084{word-spacing:65.089440px;}
.wsc_c02084{word-spacing:67.238496px;}
.ws9_c02084{word-spacing:67.642380px;}
.ws5_c02084{word-spacing:99.996372px;}
.ws8_c02084{word-spacing:99.998496px;}
.ws7_c02084{word-spacing:100.402380px;}
.wsf_c02084{word-spacing:100.426608px;}
.ws10_c02084{word-spacing:100.933020px;}
.ws3_c02084{word-spacing:133.546608px;}
.wse_c02084{word-spacing:134.053020px;}
.ws6_c02084{word-spacing:150.082380px;}
.ws4_c02084{word-spacing:150.106608px;}
.ws2_c02084{word-spacing:182.842380px;}
.ws13_c02084{word-spacing:182.866608px;}
.ws11_c02084{word-spacing:215.595972px;}
.ws14_c02084{word-spacing:215.986608px;}
.wsb_c02084{word-spacing:216.083304px;}
.ws1_c02084{word-spacing:881.266608px;}
._3_c02084{margin-left:-1.148292px;}
._19_c02084{width:65.089440px;}
._10_c02084{width:67.644504px;}
._17_c02084{width:83.886372px;}
._b_c02084{width:99.996372px;}
._c_c02084{width:101.168388px;}
._6_c02084{width:104.490000px;}
._7_c02084{width:115.923132px;}
._9_c02084{width:133.474248px;}
._14_c02084{width:150.300000px;}
._5_c02084{width:169.288704px;}
._1a_c02084{width:171.252900px;}
._12_c02084{width:182.637324px;}
._13_c02084{width:184.112676px;}
._d_c02084{width:187.907256px;}
._0_c02084{width:194.421600px;}
._1b_c02084{width:206.239536px;}
._15_c02084{width:215.330256px;}
._4_c02084{width:216.679284px;}
._16_c02084{width:232.120620px;}
._e_c02084{width:235.512144px;}
._1e_c02084{width:249.109704px;}
._f_c02084{width:253.844424px;}
._18_c02084{width:270.250776px;}
._11_c02084{width:283.101732px;}
._a_c02084{width:297.926856px;}
._8_c02084{width:315.837504px;}
._2_c02084{width:369.705600px;}
._1c_c02084{width:416.833992px;}
._1f_c02084{width:644.103900px;}
._1d_c02084{width:665.460000px;}
._1_c02084{width:2542.680000px;}
.fc0_c02084{color:rgb(0,0,0);}
.fs1_c02084{font-size:24.120000px;}
.fs5_c02084{font-size:29.880000px;}
.fs2_c02084{font-size:47.880000px;}
.fs4_c02084{font-size:60.120000px;}
.fs3_c02084{font-size:65.880000px;}
.fs0_c02084{font-size:72.000000px;}
.y0_c02084{bottom:0.000000px;}
.y3_c02084{bottom:57.360450px;}
.y2_c02084{bottom:78.060450px;}
.y2f_c02084{bottom:117.030450px;}
.y2e_c02084{bottom:128.010450px;}
.y2d_c02084{bottom:147.000450px;}
.y2c_c02084{bottom:165.990450px;}
.y2b_c02084{bottom:184.890450px;}
.y2a_c02084{bottom:204.240450px;}
.y29_c02084{bottom:223.230450px;}
.y28_c02084{bottom:242.220450px;}
.y27_c02084{bottom:261.210450px;}
.y26_c02084{bottom:280.200450px;}
.y25_c02084{bottom:299.190450px;}
.y24_c02084{bottom:318.090450px;}
.y23_c02084{bottom:336.720450px;}
.y22_c02084{bottom:354.360450px;}
.y20_c02084{bottom:373.350450px;}
.y1f_c02084{bottom:392.250600px;}
.y1e_c02084{bottom:409.800450px;}
.y21_c02084{bottom:411.240450px;}
.y1d_c02084{bottom:432.750600px;}
.y1c_c02084{bottom:453.540600px;}
.y1b_c02084{bottom:472.530600px;}
.y1a_c02084{bottom:491.520600px;}
.y19_c02084{bottom:510.510450px;}
.y18_c02084{bottom:529.860450px;}
.y17_c02084{bottom:548.760450px;}
.y16_c02084{bottom:567.750450px;}
.y15_c02084{bottom:586.740450px;}
.y14_c02084{bottom:605.730450px;}
.y13_c02084{bottom:624.720450px;}
.y12_c02084{bottom:643.710450px;}
.y11_c02084{bottom:662.250450px;}
.yf_c02084{bottom:679.890450px;}
.ye_c02084{bottom:698.880450px;}
.yd_c02084{bottom:716.430450px;}
.y10_c02084{bottom:717.870450px;}
.yc_c02084{bottom:737.130450px;}
.yb_c02084{bottom:759.810450px;}
.ya_c02084{bottom:774.930450px;}
.y9_c02084{bottom:794.370162px;}
.y8_c02084{bottom:808.140450px;}
.y7_c02084{bottom:819.300450px;}
.y6_c02084{bottom:1109.820450px;}
.y5_c02084{bottom:1119.270450px;}
.y4_c02084{bottom:1139.970450px;}
.y1_c02084{bottom:1193.160450px;}
.h3_c02084{height:21.422988px;}
.h9_c02084{height:26.538926px;}
.h4_c02084{height:42.526230px;}
.h8_c02084{height:53.397598px;}
.h6_c02084{height:58.513535px;}
.h2_c02084{height:63.175781px;}
.h1_c02084{height:63.949219px;}
.h5_c02084{height:64.273535px;}
.h7_c02084{height:134.473535px;}
.h0_c02084{height:1263.000000px;}
.w1_c02084{width:892.500000px;}
.w0_c02084{width:892.830000px;}
.x0_c02084{left:0.000000px;}
.x1_c02084{left:127.620000px;}
.x5_c02084{left:135.630000px;}
.xd_c02084{left:160.920000px;}
.x6_c02084{left:164.700000px;}
.xf_c02084{left:249.120000px;}
.x7_c02084{left:266.220000px;}
.x8_c02084{left:268.380000px;}
.xe_c02084{left:269.460000px;}
.x3_c02084{left:373.050000px;}
.xa_c02084{left:423.270000px;}
.x4_c02084{left:430.560000px;}
.x11_c02084{left:435.600000px;}
.x2_c02084{left:437.490000px;}
.x10_c02084{left:446.850000px;}
.x9_c02084{left:465.210000px;}
.xc_c02084{left:597.420000px;}
.x13_c02084{left:603.180000px;}
.x14_c02084{left:604.710000px;}
.xb_c02084{left:613.260000px;}
.x12_c02084{left:639.810000px;}
.x15_c02084{left:650.610000px;}
@media print{
.v0_c02084{vertical-align:0.000000pt;}
.v1_c02084{vertical-align:5.120000pt;}
.v2_c02084{vertical-align:67.520000pt;}
.ls19_c02084{letter-spacing:-0.012800pt;}
.ls17_c02084{letter-spacing:-0.006400pt;}
.ls1c_c02084{letter-spacing:-0.005856pt;}
.ls1b_c02084{letter-spacing:-0.005344pt;}
.ls16_c02084{letter-spacing:0.000000pt;}
.ls18_c02084{letter-spacing:0.006400pt;}
.ls0_c02084{letter-spacing:0.012800pt;}
.ls14_c02084{letter-spacing:0.017568pt;}
.ls4_c02084{letter-spacing:0.023424pt;}
.ls2_c02084{letter-spacing:0.035136pt;}
.ls13_c02084{letter-spacing:0.040992pt;}
.ls1a_c02084{letter-spacing:0.046848pt;}
.lsb_c02084{letter-spacing:0.052704pt;}
.ls9_c02084{letter-spacing:0.058560pt;}
.ls12_c02084{letter-spacing:0.064416pt;}
.lsc_c02084{letter-spacing:0.070272pt;}
.lsf_c02084{letter-spacing:0.076128pt;}
.ls6_c02084{letter-spacing:0.081984pt;}
.ls11_c02084{letter-spacing:0.093696pt;}
.ls7_c02084{letter-spacing:0.122976pt;}
.ls5_c02084{letter-spacing:0.128256pt;}
.lsa_c02084{letter-spacing:0.134688pt;}
.ls10_c02084{letter-spacing:0.140544pt;}
.ls1_c02084{letter-spacing:0.146400pt;}
.lsd_c02084{letter-spacing:0.158112pt;}
.lse_c02084{letter-spacing:104.400000pt;}
.ls8_c02084{letter-spacing:133.600000pt;}
.ls3_c02084{letter-spacing:258.560000pt;}
.ls15_c02084{letter-spacing:350.800000pt;}
.wsa_c02084{word-spacing:-14.798112pt;}
.ws12_c02084{word-spacing:-14.721984pt;}
.ws0_c02084{word-spacing:-14.675136pt;}
.ws24_c02084{word-spacing:-0.322080pt;}
.ws1a_c02084{word-spacing:-0.172800pt;}
.ws18_c02084{word-spacing:-0.153600pt;}
.ws1f_c02084{word-spacing:-0.048096pt;}
.ws15_c02084{word-spacing:-0.019200pt;}
.ws17_c02084{word-spacing:-0.012800pt;}
.ws19_c02084{word-spacing:-0.006400pt;}
.ws16_c02084{word-spacing:0.000000pt;}
.ws1b_c02084{word-spacing:0.011712pt;}
.ws25_c02084{word-spacing:0.017568pt;}
.ws20_c02084{word-spacing:0.023424pt;}
.ws21_c02084{word-spacing:0.029280pt;}
.ws1e_c02084{word-spacing:0.035136pt;}
.ws22_c02084{word-spacing:0.040992pt;}
.ws1c_c02084{word-spacing:0.046848pt;}
.ws1d_c02084{word-spacing:0.058560pt;}
.ws23_c02084{word-spacing:0.087840pt;}
.wsd_c02084{word-spacing:57.857280pt;}
.wsc_c02084{word-spacing:59.767552pt;}
.ws9_c02084{word-spacing:60.126560pt;}
.ws5_c02084{word-spacing:88.885664pt;}
.ws8_c02084{word-spacing:88.887552pt;}
.ws7_c02084{word-spacing:89.246560pt;}
.wsf_c02084{word-spacing:89.268096pt;}
.ws10_c02084{word-spacing:89.718240pt;}
.ws3_c02084{word-spacing:118.708096pt;}
.wse_c02084{word-spacing:119.158240pt;}
.ws6_c02084{word-spacing:133.406560pt;}
.ws4_c02084{word-spacing:133.428096pt;}
.ws2_c02084{word-spacing:162.526560pt;}
.ws13_c02084{word-spacing:162.548096pt;}
.ws11_c02084{word-spacing:191.640864pt;}
.ws14_c02084{word-spacing:191.988096pt;}
.wsb_c02084{word-spacing:192.074048pt;}
.ws1_c02084{word-spacing:783.348096pt;}
._3_c02084{margin-left:-1.020704pt;}
._19_c02084{width:57.857280pt;}
._10_c02084{width:60.128448pt;}
._17_c02084{width:74.565664pt;}
._b_c02084{width:88.885664pt;}
._c_c02084{width:89.927456pt;}
._6_c02084{width:92.880000pt;}
._7_c02084{width:103.042784pt;}
._9_c02084{width:118.643776pt;}
._14_c02084{width:133.600000pt;}
._5_c02084{width:150.478848pt;}
._1a_c02084{width:152.224800pt;}
._12_c02084{width:162.344288pt;}
._13_c02084{width:163.655712pt;}
._d_c02084{width:167.028672pt;}
._0_c02084{width:172.819200pt;}
._1b_c02084{width:183.324032pt;}
._15_c02084{width:191.404672pt;}
._4_c02084{width:192.603808pt;}
._16_c02084{width:206.329440pt;}
._e_c02084{width:209.344128pt;}
._1e_c02084{width:221.430848pt;}
._f_c02084{width:225.639488pt;}
._18_c02084{width:240.222912pt;}
._11_c02084{width:251.645984pt;}
._a_c02084{width:264.823872pt;}
._8_c02084{width:280.744448pt;}
._2_c02084{width:328.627200pt;}
._1c_c02084{width:370.519104pt;}
._1f_c02084{width:572.536800pt;}
._1d_c02084{width:591.520000pt;}
._1_c02084{width:2260.160000pt;}
.fs1_c02084{font-size:21.440000pt;}
.fs5_c02084{font-size:26.560000pt;}
.fs2_c02084{font-size:42.560000pt;}
.fs4_c02084{font-size:53.440000pt;}
.fs3_c02084{font-size:58.560000pt;}
.fs0_c02084{font-size:64.000000pt;}
.y0_c02084{bottom:0.000000pt;}
.y3_c02084{bottom:50.987067pt;}
.y2_c02084{bottom:69.387067pt;}
.y2f_c02084{bottom:104.027067pt;}
.y2e_c02084{bottom:113.787067pt;}
.y2d_c02084{bottom:130.667067pt;}
.y2c_c02084{bottom:147.547067pt;}
.y2b_c02084{bottom:164.347067pt;}
.y2a_c02084{bottom:181.547067pt;}
.y29_c02084{bottom:198.427067pt;}
.y28_c02084{bottom:215.307067pt;}
.y27_c02084{bottom:232.187067pt;}
.y26_c02084{bottom:249.067067pt;}
.y25_c02084{bottom:265.947067pt;}
.y24_c02084{bottom:282.747067pt;}
.y23_c02084{bottom:299.307067pt;}
.y22_c02084{bottom:314.987067pt;}
.y20_c02084{bottom:331.867067pt;}
.y1f_c02084{bottom:348.667200pt;}
.y1e_c02084{bottom:364.267067pt;}
.y21_c02084{bottom:365.547067pt;}
.y1d_c02084{bottom:384.667200pt;}
.y1c_c02084{bottom:403.147200pt;}
.y1b_c02084{bottom:420.027200pt;}
.y1a_c02084{bottom:436.907200pt;}
.y19_c02084{bottom:453.787067pt;}
.y18_c02084{bottom:470.987067pt;}
.y17_c02084{bottom:487.787067pt;}
.y16_c02084{bottom:504.667067pt;}
.y15_c02084{bottom:521.547067pt;}
.y14_c02084{bottom:538.427067pt;}
.y13_c02084{bottom:555.307067pt;}
.y12_c02084{bottom:572.187067pt;}
.y11_c02084{bottom:588.667067pt;}
.yf_c02084{bottom:604.347067pt;}
.ye_c02084{bottom:621.227067pt;}
.yd_c02084{bottom:636.827067pt;}
.y10_c02084{bottom:638.107067pt;}
.yc_c02084{bottom:655.227067pt;}
.yb_c02084{bottom:675.387067pt;}
.ya_c02084{bottom:688.827067pt;}
.y9_c02084{bottom:706.106811pt;}
.y8_c02084{bottom:718.347067pt;}
.y7_c02084{bottom:728.267067pt;}
.y6_c02084{bottom:986.507067pt;}
.y5_c02084{bottom:994.907067pt;}
.y4_c02084{bottom:1013.307067pt;}
.y1_c02084{bottom:1060.587067pt;}
.h3_c02084{height:19.042656pt;}
.h9_c02084{height:23.590156pt;}
.h4_c02084{height:37.801094pt;}
.h8_c02084{height:47.464531pt;}
.h6_c02084{height:52.012031pt;}
.h2_c02084{height:56.156250pt;}
.h1_c02084{height:56.843750pt;}
.h5_c02084{height:57.132031pt;}
.h7_c02084{height:119.532031pt;}
.h0_c02084{height:1122.666667pt;}
.w1_c02084{width:793.333333pt;}
.w0_c02084{width:793.626667pt;}
.x0_c02084{left:0.000000pt;}
.x1_c02084{left:113.440000pt;}
.x5_c02084{left:120.560000pt;}
.xd_c02084{left:143.040000pt;}
.x6_c02084{left:146.400000pt;}
.xf_c02084{left:221.440000pt;}
.x7_c02084{left:236.640000pt;}
.x8_c02084{left:238.560000pt;}
.xe_c02084{left:239.520000pt;}
.x3_c02084{left:331.600000pt;}
.xa_c02084{left:376.240000pt;}
.x4_c02084{left:382.720000pt;}
.x11_c02084{left:387.200000pt;}
.x2_c02084{left:388.880000pt;}
.x10_c02084{left:397.200000pt;}
.x9_c02084{left:413.520000pt;}
.xc_c02084{left:531.040000pt;}
.x13_c02084{left:536.160000pt;}
.x14_c02084{left:537.520000pt;}
.xb_c02084{left:545.120000pt;}
.x12_c02084{left:568.720000pt;}
.x15_c02084{left:578.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_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_12fef1c7c8bcd4afd6edec87.woff2')format("woff");}.ff1_c02085{font-family:ff1_c02085;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02085;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v5_c02085{vertical-align:-15.120000px;}
.v7_c02085{vertical-align:-12.600000px;}
.v6_c02085{vertical-align:-11.160000px;}
.v3_c02085{vertical-align:-3.960000px;}
.v2_c02085{vertical-align:-2.520000px;}
.v4_c02085{vertical-align:-1.440000px;}
.v0_c02085{vertical-align:0.000000px;}
.v9_c02085{vertical-align:2.160600px;}
.va_c02085{vertical-align:4.320000px;}
.v1_c02085{vertical-align:5.760000px;}
.v8_c02085{vertical-align:11.159400px;}
.ls2c_c02085{letter-spacing:-0.086184px;}
.ls2a_c02085{letter-spacing:-0.052668px;}
.ls27_c02085{letter-spacing:-0.046116px;}
.ls2d_c02085{letter-spacing:-0.023940px;}
.ls2b_c02085{letter-spacing:-0.019152px;}
.ls23_c02085{letter-spacing:-0.014400px;}
.ls31_c02085{letter-spacing:-0.009576px;}
.ls28_c02085{letter-spacing:-0.006588px;}
.ls25_c02085{letter-spacing:-0.006012px;}
.ls32_c02085{letter-spacing:-0.004788px;}
.ls22_c02085{letter-spacing:0.000000px;}
.lsf_c02085{letter-spacing:0.007200px;}
.ls1e_c02085{letter-spacing:0.014400px;}
.ls1b_c02085{letter-spacing:0.016200px;}
.ls19_c02085{letter-spacing:0.019152px;}
.lsc_c02085{letter-spacing:0.019764px;}
.ls13_c02085{letter-spacing:0.028728px;}
.lse_c02085{letter-spacing:0.028800px;}
.lsd_c02085{letter-spacing:0.037800px;}
.lsb_c02085{letter-spacing:0.039528px;}
.ls12_c02085{letter-spacing:0.043092px;}
.ls15_c02085{letter-spacing:0.043200px;}
.ls24_c02085{letter-spacing:0.046116px;}
.ls2e_c02085{letter-spacing:0.047880px;}
.ls5_c02085{letter-spacing:0.059292px;}
.ls4_c02085{letter-spacing:0.065880px;}
.ls1f_c02085{letter-spacing:0.076608px;}
.ls7_c02085{letter-spacing:0.079056px;}
.ls11_c02085{letter-spacing:0.081396px;}
.ls1_c02085{letter-spacing:0.085644px;}
.ls10_c02085{letter-spacing:0.090972px;}
.ls33_c02085{letter-spacing:0.091800px;}
.ls3_c02085{letter-spacing:0.092232px;}
.ls2f_c02085{letter-spacing:0.100548px;}
.lsa_c02085{letter-spacing:0.105408px;}
.ls1a_c02085{letter-spacing:0.110124px;}
.ls17_c02085{letter-spacing:0.124488px;}
.ls18_c02085{letter-spacing:0.134064px;}
.ls26_c02085{letter-spacing:0.138348px;}
.ls2_c02085{letter-spacing:0.144288px;}
.ls6_c02085{letter-spacing:0.151524px;}
.ls9_c02085{letter-spacing:0.158112px;}
.ls21_c02085{letter-spacing:0.162792px;}
.ls0_c02085{letter-spacing:0.164700px;}
.ls29_c02085{letter-spacing:0.167580px;}
.ls8_c02085{letter-spacing:0.177876px;}
.ls14_c02085{letter-spacing:0.181944px;}
.ls1d_c02085{letter-spacing:0.205884px;}
.ls16_c02085{letter-spacing:113.940000px;}
.ls30_c02085{letter-spacing:156.060000px;}
.ls1c_c02085{letter-spacing:199.710000px;}
.ls20_c02085{letter-spacing:410.490000px;}
.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;}
}
.ws0_c02085{word-spacing:-16.647876px;}
.ws20_c02085{word-spacing:-0.296856px;}
.ws13_c02085{word-spacing:-0.272916px;}
.ws23_c02085{word-spacing:-0.253764px;}
.ws26_c02085{word-spacing:-0.225036px;}
.ws17_c02085{word-spacing:-0.215460px;}
.ws27_c02085{word-spacing:-0.172368px;}
.ws2a_c02085{word-spacing:-0.119700px;}
.ws10_c02085{word-spacing:-0.115200px;}
.ws29_c02085{word-spacing:-0.110124px;}
.ws25_c02085{word-spacing:-0.081396px;}
.ws12_c02085{word-spacing:-0.067032px;}
.ws9_c02085{word-spacing:-0.054108px;}
.ws6_c02085{word-spacing:-0.021600px;}
.ws21_c02085{word-spacing:-0.014400px;}
.ws11_c02085{word-spacing:-0.007200px;}
.ws7_c02085{word-spacing:0.000000px;}
.wsc_c02085{word-spacing:0.013176px;}
.wsa_c02085{word-spacing:0.026352px;}
.wsb_c02085{word-spacing:0.032940px;}
.ws8_c02085{word-spacing:0.046116px;}
.wsd_c02085{word-spacing:0.052704px;}
.wse_c02085{word-spacing:0.098820px;}
.wsf_c02085{word-spacing:0.140400px;}
.ws15_c02085{word-spacing:48.164868px;}
.ws2_c02085{word-spacing:74.449440px;}
.ws5_c02085{word-spacing:75.168180px;}
.ws4_c02085{word-spacing:75.169440px;}
.ws22_c02085{word-spacing:79.846560px;}
.ws1f_c02085{word-spacing:86.923800px;}
.ws1e_c02085{word-spacing:93.015000px;}
.ws3_c02085{word-spacing:101.449440px;}
.ws1_c02085{word-spacing:106.489440px;}
.ws24_c02085{word-spacing:186.980400px;}
.ws16_c02085{word-spacing:187.336800px;}
.ws19_c02085{word-spacing:199.216800px;}
.ws28_c02085{word-spacing:199.222200px;}
.ws1b_c02085{word-spacing:199.530324px;}
.ws18_c02085{word-spacing:199.578204px;}
.ws1a_c02085{word-spacing:199.630872px;}
.ws1d_c02085{word-spacing:199.683540px;}
.ws1c_c02085{word-spacing:199.693116px;}
.ws14_c02085{word-spacing:199.721844px;}
._24_c02085{margin-left:-199.803240px;}
._2a_c02085{margin-left:-85.320000px;}
._2b_c02085{margin-left:-42.481800px;}
._39_c02085{margin-left:-13.218480px;}
._29_c02085{margin-left:-11.839140px;}
._2c_c02085{margin-left:-2.510460px;}
._2_c02085{margin-left:-1.148292px;}
._3a_c02085{width:1.316988px;}
._26_c02085{width:42.838200px;}
._21_c02085{width:47.798496px;}
._1e_c02085{width:50.779440px;}
._37_c02085{width:63.783756px;}
._35_c02085{width:65.312676px;}
._1c_c02085{width:75.117168px;}
._38_c02085{width:76.394988px;}
._33_c02085{width:79.834248px;}
._30_c02085{width:81.289440px;}
._23_c02085{width:83.304000px;}
._31_c02085{width:84.780000px;}
._36_c02085{width:86.359428px;}
._13_c02085{width:87.409440px;}
._e_c02085{width:89.964504px;}
._3c_c02085{width:91.440540px;}
._22_c02085{width:92.664000px;}
._16_c02085{width:96.936120px;}
._20_c02085{width:98.524296px;}
._2d_c02085{width:100.929276px;}
._1f_c02085{width:103.495140px;}
._1d_c02085{width:110.757168px;}
._5_c02085{width:114.930000px;}
._27_c02085{width:118.826676px;}
._b_c02085{width:122.316372px;}
._28_c02085{width:124.175016px;}
._2f_c02085{width:131.136120px;}
._17_c02085{width:132.183000px;}
._18_c02085{width:134.095140px;}
._3b_c02085{width:135.388512px;}
._2e_c02085{width:138.898944px;}
._1b_c02085{width:140.644440px;}
._1a_c02085{width:142.547688px;}
._19_c02085{width:148.971096px;}
._9_c02085{width:155.794248px;}
._4_c02085{width:176.128704px;}
._a_c02085{width:179.267256px;}
._34_c02085{width:186.248160px;}
._10_c02085{width:188.914248px;}
._0_c02085{width:194.421600px;}
._14_c02085{width:197.599536px;}
._3_c02085{width:212.359284px;}
._32_c02085{width:217.048104px;}
._25_c02085{width:224.734860px;}
._c_c02085{width:226.872144px;}
._7_c02085{width:238.410000px;}
._15_c02085{width:240.469704px;}
._d_c02085{width:245.204424px;}
._12_c02085{width:261.610776px;}
._f_c02085{width:274.461732px;}
._11_c02085{width:307.461024px;}
._8_c02085{width:322.046856px;}
._6_c02085{width:340.317504px;}
._1_c02085{width:387.705600px;}
.fc0_c02085{color:rgb(0,0,0);}
.fs5_c02085{font-size:11.880000px;}
.fs4_c02085{font-size:47.880000px;}
.fs3_c02085{font-size:54.000000px;}
.fs2_c02085{font-size:60.120000px;}
.fs1_c02085{font-size:65.880000px;}
.fs0_c02085{font-size:72.000000px;}
.y0_c02085{bottom:0.000000px;}
.y3_c02085{bottom:57.360450px;}
.y2_c02085{bottom:78.060450px;}
.y53_c02085{bottom:119.910000px;}
.y52_c02085{bottom:135.390450px;}
.y51_c02085{bottom:150.960000px;}
.y50_c02085{bottom:166.440450px;}
.y4f_c02085{bottom:182.010450px;}
.y4e_c02085{bottom:185.790900px;}
.y4d_c02085{bottom:200.910450px;}
.y4c_c02085{bottom:204.780150px;}
.y4b_c02085{bottom:219.900450px;}
.y4a_c02085{bottom:223.770000px;}
.y49_c02085{bottom:238.890450px;}
.y48_c02085{bottom:242.670900px;}
.y47_c02085{bottom:257.880450px;}
.y46_c02085{bottom:261.660450px;}
.y45_c02085{bottom:280.650450px;}
.y44_c02085{bottom:295.770450px;}
.y43_c02085{bottom:299.640450px;}
.y42_c02085{bottom:318.630450px;}
.y41_c02085{bottom:333.750600px;}
.y40_c02085{bottom:337.620000px;}
.y3f_c02085{bottom:352.740450px;}
.y3e_c02085{bottom:356.520900px;}
.y3d_c02085{bottom:371.730450px;}
.y3c_c02085{bottom:375.510450px;}
.y3b_c02085{bottom:391.710600px;}
.y3a_c02085{bottom:409.620600px;}
.y39_c02085{bottom:423.480450px;}
.y38_c02085{bottom:438.600450px;}
.y37_c02085{bottom:459.300450px;}
.y36_c02085{bottom:468.120600px;}
.y35_c02085{bottom:471.990450px;}
.y34_c02085{bottom:488.190600px;}
.y33_c02085{bottom:506.100450px;}
.y32_c02085{bottom:519.870600px;}
.y31_c02085{bottom:534.990450px;}
.y30_c02085{bottom:555.780450px;}
.y2e_c02085{bottom:564.600450px;}
.y2f_c02085{bottom:565.590450px;}
.y2d_c02085{bottom:568.380900px;}
.y2b_c02085{bottom:583.590450px;}
.y2c_c02085{bottom:584.580450px;}
.y2a_c02085{bottom:587.370900px;}
.y28_c02085{bottom:602.580450px;}
.y29_c02085{bottom:603.570450px;}
.y27_c02085{bottom:606.360000px;}
.y25_c02085{bottom:621.480450px;}
.y26_c02085{bottom:622.560450px;}
.y24_c02085{bottom:625.350000px;}
.y22_c02085{bottom:640.470450px;}
.y23_c02085{bottom:641.550450px;}
.y21_c02085{bottom:644.340450px;}
.y20_c02085{bottom:663.240450px;}
.y1e_c02085{bottom:678.450450px;}
.y1f_c02085{bottom:679.440450px;}
.y1d_c02085{bottom:682.230450px;}
.y1c_c02085{bottom:698.430450px;}
.y1b_c02085{bottom:716.340450px;}
.y1a_c02085{bottom:730.200450px;}
.y19_c02085{bottom:745.320450px;}
.y18_c02085{bottom:765.390450px;}
.y17_c02085{bottom:782.040600px;}
.y16_c02085{bottom:803.370450px;}
.y15_c02085{bottom:823.800900px;}
.y14_c02085{bottom:839.370450px;}
.y13_c02085{bottom:855.570450px;}
.y12_c02085{bottom:874.920450px;}
.y11_c02085{bottom:893.910450px;}
.y10_c02085{bottom:912.810450px;}
.yf_c02085{bottom:931.800450px;}
.ye_c02085{bottom:951.150450px;}
.yd_c02085{bottom:970.140450px;}
.yc_c02085{bottom:989.130450px;}
.yb_c02085{bottom:1008.120450px;}
.ya_c02085{bottom:1027.020450px;}
.y9_c02085{bottom:1046.010450px;}
.y8_c02085{bottom:1065.000450px;}
.y7_c02085{bottom:1083.630450px;}
.y6_c02085{bottom:1101.270450px;}
.y5_c02085{bottom:1120.170450px;}
.y4_c02085{bottom:1137.720450px;}
.y1_c02085{bottom:1193.160450px;}
.h8_c02085{height:10.551621px;}
.h7_c02085{height:42.526230px;}
.h6_c02085{height:47.961914px;}
.h5_c02085{height:53.397598px;}
.h4_c02085{height:58.513535px;}
.h9_c02085{height:59.121314px;}
.hb_c02085{height:59.121914px;}
.he_c02085{height:62.471195px;}
.hc_c02085{height:62.473535px;}
.hd_c02085{height:62.832935px;}
.ha_c02085{height:62.833535px;}
.h2_c02085{height:63.175781px;}
.h1_c02085{height:63.949219px;}
.h3_c02085{height:64.273535px;}
.h0_c02085{height:1263.000000px;}
.w1_c02085{width:892.500000px;}
.w0_c02085{width:892.830000px;}
.x0_c02085{left:0.000000px;}
.x1_c02085{left:127.620000px;}
.x6_c02085{left:135.630000px;}
.x7_c02085{left:144.450000px;}
.xa_c02085{left:150.120000px;}
.x5_c02085{left:160.920000px;}
.x3_c02085{left:164.700000px;}
.xb_c02085{left:220.500000px;}
.x4_c02085{left:277.470000px;}
.xc_c02085{left:346.500000px;}
.x2_c02085{left:437.490000px;}
.xd_c02085{left:537.030000px;}
.x8_c02085{left:589.410000px;}
.x9_c02085{left:635.490000px;}
@media print{
.v5_c02085{vertical-align:-13.440000pt;}
.v7_c02085{vertical-align:-11.200000pt;}
.v6_c02085{vertical-align:-9.920000pt;}
.v3_c02085{vertical-align:-3.520000pt;}
.v2_c02085{vertical-align:-2.240000pt;}
.v4_c02085{vertical-align:-1.280000pt;}
.v0_c02085{vertical-align:0.000000pt;}
.v9_c02085{vertical-align:1.920533pt;}
.va_c02085{vertical-align:3.840000pt;}
.v1_c02085{vertical-align:5.120000pt;}
.v8_c02085{vertical-align:9.919467pt;}
.ls2c_c02085{letter-spacing:-0.076608pt;}
.ls2a_c02085{letter-spacing:-0.046816pt;}
.ls27_c02085{letter-spacing:-0.040992pt;}
.ls2d_c02085{letter-spacing:-0.021280pt;}
.ls2b_c02085{letter-spacing:-0.017024pt;}
.ls23_c02085{letter-spacing:-0.012800pt;}
.ls31_c02085{letter-spacing:-0.008512pt;}
.ls28_c02085{letter-spacing:-0.005856pt;}
.ls25_c02085{letter-spacing:-0.005344pt;}
.ls32_c02085{letter-spacing:-0.004256pt;}
.ls22_c02085{letter-spacing:0.000000pt;}
.lsf_c02085{letter-spacing:0.006400pt;}
.ls1e_c02085{letter-spacing:0.012800pt;}
.ls1b_c02085{letter-spacing:0.014400pt;}
.ls19_c02085{letter-spacing:0.017024pt;}
.lsc_c02085{letter-spacing:0.017568pt;}
.ls13_c02085{letter-spacing:0.025536pt;}
.lse_c02085{letter-spacing:0.025600pt;}
.lsd_c02085{letter-spacing:0.033600pt;}
.lsb_c02085{letter-spacing:0.035136pt;}
.ls12_c02085{letter-spacing:0.038304pt;}
.ls15_c02085{letter-spacing:0.038400pt;}
.ls24_c02085{letter-spacing:0.040992pt;}
.ls2e_c02085{letter-spacing:0.042560pt;}
.ls5_c02085{letter-spacing:0.052704pt;}
.ls4_c02085{letter-spacing:0.058560pt;}
.ls1f_c02085{letter-spacing:0.068096pt;}
.ls7_c02085{letter-spacing:0.070272pt;}
.ls11_c02085{letter-spacing:0.072352pt;}
.ls1_c02085{letter-spacing:0.076128pt;}
.ls10_c02085{letter-spacing:0.080864pt;}
.ls33_c02085{letter-spacing:0.081600pt;}
.ls3_c02085{letter-spacing:0.081984pt;}
.ls2f_c02085{letter-spacing:0.089376pt;}
.lsa_c02085{letter-spacing:0.093696pt;}
.ls1a_c02085{letter-spacing:0.097888pt;}
.ls17_c02085{letter-spacing:0.110656pt;}
.ls18_c02085{letter-spacing:0.119168pt;}
.ls26_c02085{letter-spacing:0.122976pt;}
.ls2_c02085{letter-spacing:0.128256pt;}
.ls6_c02085{letter-spacing:0.134688pt;}
.ls9_c02085{letter-spacing:0.140544pt;}
.ls21_c02085{letter-spacing:0.144704pt;}
.ls0_c02085{letter-spacing:0.146400pt;}
.ls29_c02085{letter-spacing:0.148960pt;}
.ls8_c02085{letter-spacing:0.158112pt;}
.ls14_c02085{letter-spacing:0.161728pt;}
.ls1d_c02085{letter-spacing:0.183008pt;}
.ls16_c02085{letter-spacing:101.280000pt;}
.ls30_c02085{letter-spacing:138.720000pt;}
.ls1c_c02085{letter-spacing:177.520000pt;}
.ls20_c02085{letter-spacing:364.880000pt;}
.ws0_c02085{word-spacing:-14.798112pt;}
.ws20_c02085{word-spacing:-0.263872pt;}
.ws13_c02085{word-spacing:-0.242592pt;}
.ws23_c02085{word-spacing:-0.225568pt;}
.ws26_c02085{word-spacing:-0.200032pt;}
.ws17_c02085{word-spacing:-0.191520pt;}
.ws27_c02085{word-spacing:-0.153216pt;}
.ws2a_c02085{word-spacing:-0.106400pt;}
.ws10_c02085{word-spacing:-0.102400pt;}
.ws29_c02085{word-spacing:-0.097888pt;}
.ws25_c02085{word-spacing:-0.072352pt;}
.ws12_c02085{word-spacing:-0.059584pt;}
.ws9_c02085{word-spacing:-0.048096pt;}
.ws6_c02085{word-spacing:-0.019200pt;}
.ws21_c02085{word-spacing:-0.012800pt;}
.ws11_c02085{word-spacing:-0.006400pt;}
.ws7_c02085{word-spacing:0.000000pt;}
.wsc_c02085{word-spacing:0.011712pt;}
.wsa_c02085{word-spacing:0.023424pt;}
.wsb_c02085{word-spacing:0.029280pt;}
.ws8_c02085{word-spacing:0.040992pt;}
.wsd_c02085{word-spacing:0.046848pt;}
.wse_c02085{word-spacing:0.087840pt;}
.wsf_c02085{word-spacing:0.124800pt;}
.ws15_c02085{word-spacing:42.813216pt;}
.ws2_c02085{word-spacing:66.177280pt;}
.ws5_c02085{word-spacing:66.816160pt;}
.ws4_c02085{word-spacing:66.817280pt;}
.ws22_c02085{word-spacing:70.974720pt;}
.ws1f_c02085{word-spacing:77.265600pt;}
.ws1e_c02085{word-spacing:82.680000pt;}
.ws3_c02085{word-spacing:90.177280pt;}
.ws1_c02085{word-spacing:94.657280pt;}
.ws24_c02085{word-spacing:166.204800pt;}
.ws16_c02085{word-spacing:166.521600pt;}
.ws19_c02085{word-spacing:177.081600pt;}
.ws28_c02085{word-spacing:177.086400pt;}
.ws1b_c02085{word-spacing:177.360288pt;}
.ws18_c02085{word-spacing:177.402848pt;}
.ws1a_c02085{word-spacing:177.449664pt;}
.ws1d_c02085{word-spacing:177.496480pt;}
.ws1c_c02085{word-spacing:177.504992pt;}
.ws14_c02085{word-spacing:177.530528pt;}
._24_c02085{margin-left:-177.602880pt;}
._2a_c02085{margin-left:-75.840000pt;}
._2b_c02085{margin-left:-37.761600pt;}
._39_c02085{margin-left:-11.749760pt;}
._29_c02085{margin-left:-10.523680pt;}
._2c_c02085{margin-left:-2.231520pt;}
._2_c02085{margin-left:-1.020704pt;}
._3a_c02085{width:1.170656pt;}
._26_c02085{width:38.078400pt;}
._21_c02085{width:42.487552pt;}
._1e_c02085{width:45.137280pt;}
._37_c02085{width:56.696672pt;}
._35_c02085{width:58.055712pt;}
._1c_c02085{width:66.770816pt;}
._38_c02085{width:67.906656pt;}
._33_c02085{width:70.963776pt;}
._30_c02085{width:72.257280pt;}
._23_c02085{width:74.048000pt;}
._31_c02085{width:75.360000pt;}
._36_c02085{width:76.763936pt;}
._13_c02085{width:77.697280pt;}
._e_c02085{width:79.968448pt;}
._3c_c02085{width:81.280480pt;}
._22_c02085{width:82.368000pt;}
._16_c02085{width:86.165440pt;}
._20_c02085{width:87.577152pt;}
._2d_c02085{width:89.714912pt;}
._1f_c02085{width:91.995680pt;}
._1d_c02085{width:98.450816pt;}
._5_c02085{width:102.160000pt;}
._27_c02085{width:105.623712pt;}
._b_c02085{width:108.725664pt;}
._28_c02085{width:110.377792pt;}
._2f_c02085{width:116.565440pt;}
._17_c02085{width:117.496000pt;}
._18_c02085{width:119.195680pt;}
._3b_c02085{width:120.345344pt;}
._2e_c02085{width:123.465728pt;}
._1b_c02085{width:125.017280pt;}
._1a_c02085{width:126.709056pt;}
._19_c02085{width:132.418752pt;}
._9_c02085{width:138.483776pt;}
._4_c02085{width:156.558848pt;}
._a_c02085{width:159.348672pt;}
._34_c02085{width:165.553920pt;}
._10_c02085{width:167.923776pt;}
._0_c02085{width:172.819200pt;}
._14_c02085{width:175.644032pt;}
._3_c02085{width:188.763808pt;}
._32_c02085{width:192.931648pt;}
._25_c02085{width:199.764320pt;}
._c_c02085{width:201.664128pt;}
._7_c02085{width:211.920000pt;}
._15_c02085{width:213.750848pt;}
._d_c02085{width:217.959488pt;}
._12_c02085{width:232.542912pt;}
._f_c02085{width:243.965984pt;}
._11_c02085{width:273.298688pt;}
._8_c02085{width:286.263872pt;}
._6_c02085{width:302.504448pt;}
._1_c02085{width:344.627200pt;}
.fs5_c02085{font-size:10.560000pt;}
.fs4_c02085{font-size:42.560000pt;}
.fs3_c02085{font-size:48.000000pt;}
.fs2_c02085{font-size:53.440000pt;}
.fs1_c02085{font-size:58.560000pt;}
.fs0_c02085{font-size:64.000000pt;}
.y0_c02085{bottom:0.000000pt;}
.y3_c02085{bottom:50.987067pt;}
.y2_c02085{bottom:69.387067pt;}
.y53_c02085{bottom:106.586667pt;}
.y52_c02085{bottom:120.347067pt;}
.y51_c02085{bottom:134.186667pt;}
.y50_c02085{bottom:147.947067pt;}
.y4f_c02085{bottom:161.787067pt;}
.y4e_c02085{bottom:165.147467pt;}
.y4d_c02085{bottom:178.587067pt;}
.y4c_c02085{bottom:182.026800pt;}
.y4b_c02085{bottom:195.467067pt;}
.y4a_c02085{bottom:198.906667pt;}
.y49_c02085{bottom:212.347067pt;}
.y48_c02085{bottom:215.707467pt;}
.y47_c02085{bottom:229.227067pt;}
.y46_c02085{bottom:232.587067pt;}
.y45_c02085{bottom:249.467067pt;}
.y44_c02085{bottom:262.907067pt;}
.y43_c02085{bottom:266.347067pt;}
.y42_c02085{bottom:283.227067pt;}
.y41_c02085{bottom:296.667200pt;}
.y40_c02085{bottom:300.106667pt;}
.y3f_c02085{bottom:313.547067pt;}
.y3e_c02085{bottom:316.907467pt;}
.y3d_c02085{bottom:330.427067pt;}
.y3c_c02085{bottom:333.787067pt;}
.y3b_c02085{bottom:348.187200pt;}
.y3a_c02085{bottom:364.107200pt;}
.y39_c02085{bottom:376.427067pt;}
.y38_c02085{bottom:389.867067pt;}
.y37_c02085{bottom:408.267067pt;}
.y36_c02085{bottom:416.107200pt;}
.y35_c02085{bottom:419.547067pt;}
.y34_c02085{bottom:433.947200pt;}
.y33_c02085{bottom:449.867067pt;}
.y32_c02085{bottom:462.107200pt;}
.y31_c02085{bottom:475.547067pt;}
.y30_c02085{bottom:494.027067pt;}
.y2e_c02085{bottom:501.867067pt;}
.y2f_c02085{bottom:502.747067pt;}
.y2d_c02085{bottom:505.227467pt;}
.y2b_c02085{bottom:518.747067pt;}
.y2c_c02085{bottom:519.627067pt;}
.y2a_c02085{bottom:522.107467pt;}
.y28_c02085{bottom:535.627067pt;}
.y29_c02085{bottom:536.507067pt;}
.y27_c02085{bottom:538.986667pt;}
.y25_c02085{bottom:552.427067pt;}
.y26_c02085{bottom:553.387067pt;}
.y24_c02085{bottom:555.866667pt;}
.y22_c02085{bottom:569.307067pt;}
.y23_c02085{bottom:570.267067pt;}
.y21_c02085{bottom:572.747067pt;}
.y20_c02085{bottom:589.547067pt;}
.y1e_c02085{bottom:603.067067pt;}
.y1f_c02085{bottom:603.947067pt;}
.y1d_c02085{bottom:606.427067pt;}
.y1c_c02085{bottom:620.827067pt;}
.y1b_c02085{bottom:636.747067pt;}
.y1a_c02085{bottom:649.067067pt;}
.y19_c02085{bottom:662.507067pt;}
.y18_c02085{bottom:680.347067pt;}
.y17_c02085{bottom:695.147200pt;}
.y16_c02085{bottom:714.107067pt;}
.y15_c02085{bottom:732.267467pt;}
.y14_c02085{bottom:746.107067pt;}
.y13_c02085{bottom:760.507067pt;}
.y12_c02085{bottom:777.707067pt;}
.y11_c02085{bottom:794.587067pt;}
.y10_c02085{bottom:811.387067pt;}
.yf_c02085{bottom:828.267067pt;}
.ye_c02085{bottom:845.467067pt;}
.yd_c02085{bottom:862.347067pt;}
.yc_c02085{bottom:879.227067pt;}
.yb_c02085{bottom:896.107067pt;}
.ya_c02085{bottom:912.907067pt;}
.y9_c02085{bottom:929.787067pt;}
.y8_c02085{bottom:946.667067pt;}
.y7_c02085{bottom:963.227067pt;}
.y6_c02085{bottom:978.907067pt;}
.y5_c02085{bottom:995.707067pt;}
.y4_c02085{bottom:1011.307067pt;}
.y1_c02085{bottom:1060.587067pt;}
.h8_c02085{height:9.379219pt;}
.h7_c02085{height:37.801094pt;}
.h6_c02085{height:42.632812pt;}
.h5_c02085{height:47.464531pt;}
.h4_c02085{height:52.012031pt;}
.h9_c02085{height:52.552279pt;}
.hb_c02085{height:52.552812pt;}
.he_c02085{height:55.529951pt;}
.hc_c02085{height:55.532031pt;}
.hd_c02085{height:55.851498pt;}
.ha_c02085{height:55.852031pt;}
.h2_c02085{height:56.156250pt;}
.h1_c02085{height:56.843750pt;}
.h3_c02085{height:57.132031pt;}
.h0_c02085{height:1122.666667pt;}
.w1_c02085{width:793.333333pt;}
.w0_c02085{width:793.626667pt;}
.x0_c02085{left:0.000000pt;}
.x1_c02085{left:113.440000pt;}
.x6_c02085{left:120.560000pt;}
.x7_c02085{left:128.400000pt;}
.xa_c02085{left:133.440000pt;}
.x5_c02085{left:143.040000pt;}
.x3_c02085{left:146.400000pt;}
.xb_c02085{left:196.000000pt;}
.x4_c02085{left:246.640000pt;}
.xc_c02085{left:308.000000pt;}
.x2_c02085{left:388.880000pt;}
.xd_c02085{left:477.360000pt;}
.x8_c02085{left:523.920000pt;}
.x9_c02085{left:564.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_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_f1fdd63e10cafa939ac4052f.woff2')format("woff");}.ff1_c02086{font-family:ff1_c02086;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02086;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v9_c02086{vertical-align:-19.440000px;}
.v8_c02086{vertical-align:-18.360000px;}
.v7_c02086{vertical-align:-16.560600px;}
.v2_c02086{vertical-align:-10.800000px;}
.v1_c02086{vertical-align:-2.880000px;}
.v6_c02086{vertical-align:-1.440000px;}
.v0_c02086{vertical-align:0.000000px;}
.va_c02086{vertical-align:5.400000px;}
.v4_c02086{vertical-align:11.160000px;}
.v5_c02086{vertical-align:16.560000px;}
.v3_c02086{vertical-align:27.000000px;}
.ls28_c02086{letter-spacing:-0.102600px;}
.ls27_c02086{letter-spacing:-0.086400px;}
.ls2c_c02086{letter-spacing:-0.086184px;}
.ls2b_c02086{letter-spacing:-0.052668px;}
.ls2d_c02086{letter-spacing:-0.023940px;}
.ls24_c02086{letter-spacing:-0.019152px;}
.ls29_c02086{letter-spacing:-0.016200px;}
.ls26_c02086{letter-spacing:-0.009576px;}
.ls31_c02086{letter-spacing:-0.007200px;}
.ls32_c02086{letter-spacing:-0.004788px;}
.ls22_c02086{letter-spacing:0.000000px;}
.lsf_c02086{letter-spacing:0.006588px;}
.ls16_c02086{letter-spacing:0.007200px;}
.ls14_c02086{letter-spacing:0.010800px;}
.ls13_c02086{letter-spacing:0.016200px;}
.ls21_c02086{letter-spacing:0.019152px;}
.ls23_c02086{letter-spacing:0.026352px;}
.ls12_c02086{letter-spacing:0.027000px;}
.ls19_c02086{letter-spacing:0.028728px;}
.ls11_c02086{letter-spacing:0.032400px;}
.ls15_c02086{letter-spacing:0.037800px;}
.lsc_c02086{letter-spacing:0.043092px;}
.ls1a_c02086{letter-spacing:0.043200px;}
.ls2e_c02086{letter-spacing:0.047880px;}
.ls10_c02086{letter-spacing:0.052704px;}
.ls1d_c02086{letter-spacing:0.059400px;}
.lsa_c02086{letter-spacing:0.067032px;}
.lsd_c02086{letter-spacing:0.076608px;}
.ls1_c02086{letter-spacing:0.079056px;}
.ls18_c02086{letter-spacing:0.081396px;}
.ls9_c02086{letter-spacing:0.086184px;}
.ls17_c02086{letter-spacing:0.090972px;}
.ls0_c02086{letter-spacing:0.092232px;}
.ls2_c02086{letter-spacing:0.095760px;}
.ls2f_c02086{letter-spacing:0.100548px;}
.ls6_c02086{letter-spacing:0.105408px;}
.lsb_c02086{letter-spacing:0.114912px;}
.lse_c02086{letter-spacing:0.119700px;}
.ls1f_c02086{letter-spacing:0.124488px;}
.ls8_c02086{letter-spacing:0.125172px;}
.ls20_c02086{letter-spacing:0.134064px;}
.ls5_c02086{letter-spacing:0.144936px;}
.ls4_c02086{letter-spacing:0.158112px;}
.ls1c_c02086{letter-spacing:0.164700px;}
.ls2a_c02086{letter-spacing:0.167580px;}
.ls25_c02086{letter-spacing:0.177876px;}
.ls3_c02086{letter-spacing:0.181944px;}
.ls30_c02086{letter-spacing:156.060000px;}
.ls1e_c02086{letter-spacing:156.778200px;}
.ls7_c02086{letter-spacing:191.970000px;}
.ls1b_c02086{letter-spacing:199.710000px;}
.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;}
}
.ws2_c02086{word-spacing:-16.476588px;}
.ws1c_c02086{word-spacing:-0.272916px;}
.ws24_c02086{word-spacing:-0.225036px;}
.ws23_c02086{word-spacing:-0.215460px;}
.ws12_c02086{word-spacing:-0.210672px;}
.ws19_c02086{word-spacing:-0.189000px;}
.ws9_c02086{word-spacing:-0.186732px;}
.ws25_c02086{word-spacing:-0.172368px;}
.ws27_c02086{word-spacing:-0.119700px;}
.ws26_c02086{word-spacing:-0.110124px;}
.ws1d_c02086{word-spacing:-0.081396px;}
.ws1b_c02086{word-spacing:-0.067032px;}
.wsb_c02086{word-spacing:-0.052704px;}
.ws7_c02086{word-spacing:-0.021600px;}
.wsc_c02086{word-spacing:-0.013176px;}
.ws1a_c02086{word-spacing:-0.007200px;}
.ws8_c02086{word-spacing:0.000000px;}
.ws20_c02086{word-spacing:0.007200px;}
.wsa_c02086{word-spacing:0.013176px;}
.ws13_c02086{word-spacing:0.145800px;}
.ws14_c02086{word-spacing:0.151200px;}
.ws15_c02086{word-spacing:0.162000px;}
.ws18_c02086{word-spacing:0.194400px;}
.ws16_c02086{word-spacing:0.264600px;}
.ws17_c02086{word-spacing:0.280800px;}
.wsf_c02086{word-spacing:1.235304px;}
.ws11_c02086{word-spacing:1.273608px;}
.ws10_c02086{word-spacing:1.307124px;}
.wsd_c02086{word-spacing:5.941908px;}
.wse_c02086{word-spacing:5.961060px;}
.ws4_c02086{word-spacing:47.809440px;}
.ws1e_c02086{word-spacing:48.164868px;}
.ws6_c02086{word-spacing:58.969440px;}
.ws5_c02086{word-spacing:75.169440px;}
.ws21_c02086{word-spacing:79.846560px;}
.ws3_c02086{word-spacing:106.489440px;}
.ws1f_c02086{word-spacing:156.735000px;}
.ws22_c02086{word-spacing:186.975000px;}
.ws1_c02086{word-spacing:191.449440px;}
.ws0_c02086{word-spacing:307.009440px;}
._1_c02086{margin-left:-1.337364px;}
._b_c02086{width:1.057896px;}
._27_c02086{width:29.900088px;}
._28_c02086{width:42.481800px;}
._21_c02086{width:47.798496px;}
._25_c02086{width:75.420000px;}
._29_c02086{width:79.478496px;}
._1d_c02086{width:81.289440px;}
._23_c02086{width:83.304000px;}
._1e_c02086{width:84.780000px;}
._2b_c02086{width:91.440540px;}
._22_c02086{width:92.664000px;}
._14_c02086{width:96.936120px;}
._20_c02086{width:98.524296px;}
._1f_c02086{width:103.495140px;}
._1c_c02086{width:110.178216px;}
._1b_c02086{width:119.404440px;}
._2f_c02086{width:121.800168px;}
._17_c02086{width:123.058944px;}
._2e_c02086{width:124.668864px;}
._2a_c02086{width:128.943000px;}
._18_c02086{width:130.776120px;}
._15_c02086{width:132.183000px;}
._16_c02086{width:134.095140px;}
._30_c02086{width:135.388512px;}
._26_c02086{width:138.242160px;}
._24_c02086{width:140.544000px;}
._1a_c02086{width:142.547688px;}
._19_c02086{width:149.635404px;}
._2d_c02086{width:156.060000px;}
._a_c02086{width:175.315536px;}
._2c_c02086{width:182.169000px;}
._5_c02086{width:191.436372px;}
._0_c02086{width:194.421600px;}
._4_c02086{width:269.751528px;}
._7_c02086{width:276.541632px;}
._3_c02086{width:287.726112px;}
._e_c02086{width:291.290400px;}
._8_c02086{width:307.354248px;}
._d_c02086{width:312.895800px;}
._6_c02086{width:357.266520px;}
._f_c02086{width:370.330200px;}
._2_c02086{width:385.954200px;}
._11_c02086{width:439.871904px;}
._12_c02086{width:470.354400px;}
._10_c02086{width:472.044600px;}
._c_c02086{width:551.261592px;}
._9_c02086{width:583.070220px;}
._13_c02086{width:799.695000px;}
.fc0_c02086{color:rgb(0,0,0);}
.fs4_c02086{font-size:11.880000px;}
.fs2_c02086{font-size:47.880000px;}
.fs3_c02086{font-size:54.000000px;}
.fs1_c02086{font-size:65.880000px;}
.fs0_c02086{font-size:72.000000px;}
.y0_c02086{bottom:0.000000px;}
.y3_c02086{bottom:57.360450px;}
.y2_c02086{bottom:78.060450px;}
.y4d_c02086{bottom:111.447894px;}
.y4c_c02086{bottom:125.307957px;}
.y4b_c02086{bottom:139.078245px;}
.y4a_c02086{bottom:152.848533px;}
.y49_c02086{bottom:166.618821px;}
.y48_c02086{bottom:180.478884px;}
.y47_c02086{bottom:194.249172px;}
.y46_c02086{bottom:208.019460px;}
.y45_c02086{bottom:221.879523px;}
.y44_c02086{bottom:235.649811px;}
.y43_c02086{bottom:249.420099px;}
.y42_c02086{bottom:263.280162px;}
.y41_c02086{bottom:277.050450px;}
.y40_c02086{bottom:292.260450px;}
.y3e_c02086{bottom:304.860900px;}
.y3f_c02086{bottom:306.210600px;}
.y3c_c02086{bottom:323.850000px;}
.y3d_c02086{bottom:325.200450px;}
.y3a_c02086{bottom:342.840000px;}
.y3b_c02086{bottom:344.190450px;}
.y38_c02086{bottom:361.830150px;}
.y39_c02086{bottom:363.180450px;}
.y36_c02086{bottom:380.730450px;}
.y37_c02086{bottom:382.080600px;}
.y35_c02086{bottom:399.720450px;}
.y33_c02086{bottom:418.710600px;}
.y34_c02086{bottom:420.060450px;}
.y32_c02086{bottom:434.910600px;}
.y31_c02086{bottom:452.820450px;}
.y30_c02086{bottom:466.680600px;}
.y2f_c02086{bottom:481.800450px;}
.y2e_c02086{bottom:502.500600px;}
.y2c_c02086{bottom:515.190600px;}
.y2d_c02086{bottom:516.540600px;}
.y2b_c02086{bottom:531.300450px;}
.y2a_c02086{bottom:549.300450px;}
.y29_c02086{bottom:563.070450px;}
.y28_c02086{bottom:578.190450px;}
.y27_c02086{bottom:598.980450px;}
.y26_c02086{bottom:607.799847px;}
.y25_c02086{bottom:621.839460px;}
.y24_c02086{bottom:635.609748px;}
.y23_c02086{bottom:649.469811px;}
.y22_c02086{bottom:663.240099px;}
.y21_c02086{bottom:677.010387px;}
.y20_c02086{bottom:690.870450px;}
.y1f_c02086{bottom:710.400450px;}
.y1e_c02086{bottom:725.970450px;}
.y1d_c02086{bottom:741.450450px;}
.y1c_c02086{bottom:760.440450px;}
.y1b_c02086{bottom:779.430450px;}
.y1a_c02086{bottom:798.420450px;}
.y19_c02086{bottom:817.410450px;}
.y18_c02086{bottom:836.400450px;}
.y17_c02086{bottom:854.040600px;}
.y15_c02086{bottom:854.760450px;}
.y16_c02086{bottom:870.060450px;}
.y14_c02086{bottom:886.980450px;}
.y13_c02086{bottom:904.800135px;}
.y12_c02086{bottom:918.660198px;}
.y11_c02086{bottom:932.430486px;}
.y10_c02086{bottom:946.470099px;}
.yf_c02086{bottom:960.330162px;}
.ye_c02086{bottom:974.100450px;}
.yd_c02086{bottom:992.370450px;}
.yc_c02086{bottom:1012.890450px;}
.yb_c02086{bottom:1033.320450px;}
.ya_c02086{bottom:1053.840450px;}
.y9_c02086{bottom:1074.270450px;}
.y8_c02086{bottom:1094.790450px;}
.y6_c02086{bottom:1095.510450px;}
.y7_c02086{bottom:1110.810450px;}
.y5_c02086{bottom:1126.560450px;}
.y4_c02086{bottom:1141.500450px;}
.y1_c02086{bottom:1193.160450px;}
.h8_c02086{height:10.551621px;}
.h5_c02086{height:42.011895px;}
.h4_c02086{height:42.526230px;}
.h6_c02086{height:47.961914px;}
.h3_c02086{height:58.513535px;}
.h9_c02086{height:59.121914px;}
.h2_c02086{height:63.175781px;}
.h1_c02086{height:63.949219px;}
.h7_c02086{height:84.805840px;}
.h0_c02086{height:1263.000000px;}
.w1_c02086{width:892.500000px;}
.w0_c02086{width:892.830000px;}
.x0_c02086{left:0.000000px;}
.x1_c02086{left:127.620000px;}
.x3_c02086{left:134.550000px;}
.x8_c02086{left:135.630000px;}
.x9_c02086{left:144.450000px;}
.xc_c02086{left:150.120000px;}
.xd_c02086{left:220.500000px;}
.x4_c02086{left:332.100000px;}
.x5_c02086{left:355.140000px;}
.x6_c02086{left:380.700000px;}
.x7_c02086{left:403.740000px;}
.x2_c02086{left:437.490000px;}
.xa_c02086{left:584.100000px;}
.xb_c02086{left:630.180000px;}
@media print{
.v9_c02086{vertical-align:-17.280000pt;}
.v8_c02086{vertical-align:-16.320000pt;}
.v7_c02086{vertical-align:-14.720533pt;}
.v2_c02086{vertical-align:-9.600000pt;}
.v1_c02086{vertical-align:-2.560000pt;}
.v6_c02086{vertical-align:-1.280000pt;}
.v0_c02086{vertical-align:0.000000pt;}
.va_c02086{vertical-align:4.800000pt;}
.v4_c02086{vertical-align:9.920000pt;}
.v5_c02086{vertical-align:14.720000pt;}
.v3_c02086{vertical-align:24.000000pt;}
.ls28_c02086{letter-spacing:-0.091200pt;}
.ls27_c02086{letter-spacing:-0.076800pt;}
.ls2c_c02086{letter-spacing:-0.076608pt;}
.ls2b_c02086{letter-spacing:-0.046816pt;}
.ls2d_c02086{letter-spacing:-0.021280pt;}
.ls24_c02086{letter-spacing:-0.017024pt;}
.ls29_c02086{letter-spacing:-0.014400pt;}
.ls26_c02086{letter-spacing:-0.008512pt;}
.ls31_c02086{letter-spacing:-0.006400pt;}
.ls32_c02086{letter-spacing:-0.004256pt;}
.ls22_c02086{letter-spacing:0.000000pt;}
.lsf_c02086{letter-spacing:0.005856pt;}
.ls16_c02086{letter-spacing:0.006400pt;}
.ls14_c02086{letter-spacing:0.009600pt;}
.ls13_c02086{letter-spacing:0.014400pt;}
.ls21_c02086{letter-spacing:0.017024pt;}
.ls23_c02086{letter-spacing:0.023424pt;}
.ls12_c02086{letter-spacing:0.024000pt;}
.ls19_c02086{letter-spacing:0.025536pt;}
.ls11_c02086{letter-spacing:0.028800pt;}
.ls15_c02086{letter-spacing:0.033600pt;}
.lsc_c02086{letter-spacing:0.038304pt;}
.ls1a_c02086{letter-spacing:0.038400pt;}
.ls2e_c02086{letter-spacing:0.042560pt;}
.ls10_c02086{letter-spacing:0.046848pt;}
.ls1d_c02086{letter-spacing:0.052800pt;}
.lsa_c02086{letter-spacing:0.059584pt;}
.lsd_c02086{letter-spacing:0.068096pt;}
.ls1_c02086{letter-spacing:0.070272pt;}
.ls18_c02086{letter-spacing:0.072352pt;}
.ls9_c02086{letter-spacing:0.076608pt;}
.ls17_c02086{letter-spacing:0.080864pt;}
.ls0_c02086{letter-spacing:0.081984pt;}
.ls2_c02086{letter-spacing:0.085120pt;}
.ls2f_c02086{letter-spacing:0.089376pt;}
.ls6_c02086{letter-spacing:0.093696pt;}
.lsb_c02086{letter-spacing:0.102144pt;}
.lse_c02086{letter-spacing:0.106400pt;}
.ls1f_c02086{letter-spacing:0.110656pt;}
.ls8_c02086{letter-spacing:0.111264pt;}
.ls20_c02086{letter-spacing:0.119168pt;}
.ls5_c02086{letter-spacing:0.128832pt;}
.ls4_c02086{letter-spacing:0.140544pt;}
.ls1c_c02086{letter-spacing:0.146400pt;}
.ls2a_c02086{letter-spacing:0.148960pt;}
.ls25_c02086{letter-spacing:0.158112pt;}
.ls3_c02086{letter-spacing:0.161728pt;}
.ls30_c02086{letter-spacing:138.720000pt;}
.ls1e_c02086{letter-spacing:139.358400pt;}
.ls7_c02086{letter-spacing:170.640000pt;}
.ls1b_c02086{letter-spacing:177.520000pt;}
.ws2_c02086{word-spacing:-14.645856pt;}
.ws1c_c02086{word-spacing:-0.242592pt;}
.ws24_c02086{word-spacing:-0.200032pt;}
.ws23_c02086{word-spacing:-0.191520pt;}
.ws12_c02086{word-spacing:-0.187264pt;}
.ws19_c02086{word-spacing:-0.168000pt;}
.ws9_c02086{word-spacing:-0.165984pt;}
.ws25_c02086{word-spacing:-0.153216pt;}
.ws27_c02086{word-spacing:-0.106400pt;}
.ws26_c02086{word-spacing:-0.097888pt;}
.ws1d_c02086{word-spacing:-0.072352pt;}
.ws1b_c02086{word-spacing:-0.059584pt;}
.wsb_c02086{word-spacing:-0.046848pt;}
.ws7_c02086{word-spacing:-0.019200pt;}
.wsc_c02086{word-spacing:-0.011712pt;}
.ws1a_c02086{word-spacing:-0.006400pt;}
.ws8_c02086{word-spacing:0.000000pt;}
.ws20_c02086{word-spacing:0.006400pt;}
.wsa_c02086{word-spacing:0.011712pt;}
.ws13_c02086{word-spacing:0.129600pt;}
.ws14_c02086{word-spacing:0.134400pt;}
.ws15_c02086{word-spacing:0.144000pt;}
.ws18_c02086{word-spacing:0.172800pt;}
.ws16_c02086{word-spacing:0.235200pt;}
.ws17_c02086{word-spacing:0.249600pt;}
.wsf_c02086{word-spacing:1.098048pt;}
.ws11_c02086{word-spacing:1.132096pt;}
.ws10_c02086{word-spacing:1.161888pt;}
.wsd_c02086{word-spacing:5.281696pt;}
.wse_c02086{word-spacing:5.298720pt;}
.ws4_c02086{word-spacing:42.497280pt;}
.ws1e_c02086{word-spacing:42.813216pt;}
.ws6_c02086{word-spacing:52.417280pt;}
.ws5_c02086{word-spacing:66.817280pt;}
.ws21_c02086{word-spacing:70.974720pt;}
.ws3_c02086{word-spacing:94.657280pt;}
.ws1f_c02086{word-spacing:139.320000pt;}
.ws22_c02086{word-spacing:166.200000pt;}
.ws1_c02086{word-spacing:170.177280pt;}
.ws0_c02086{word-spacing:272.897280pt;}
._1_c02086{margin-left:-1.188768pt;}
._b_c02086{width:0.940352pt;}
._27_c02086{width:26.577856pt;}
._28_c02086{width:37.761600pt;}
._21_c02086{width:42.487552pt;}
._25_c02086{width:67.040000pt;}
._29_c02086{width:70.647552pt;}
._1d_c02086{width:72.257280pt;}
._23_c02086{width:74.048000pt;}
._1e_c02086{width:75.360000pt;}
._2b_c02086{width:81.280480pt;}
._22_c02086{width:82.368000pt;}
._14_c02086{width:86.165440pt;}
._20_c02086{width:87.577152pt;}
._1f_c02086{width:91.995680pt;}
._1c_c02086{width:97.936192pt;}
._1b_c02086{width:106.137280pt;}
._2f_c02086{width:108.266816pt;}
._17_c02086{width:109.385728pt;}
._2e_c02086{width:110.816768pt;}
._2a_c02086{width:114.616000pt;}
._18_c02086{width:116.245440pt;}
._15_c02086{width:117.496000pt;}
._16_c02086{width:119.195680pt;}
._30_c02086{width:120.345344pt;}
._26_c02086{width:122.881920pt;}
._24_c02086{width:124.928000pt;}
._1a_c02086{width:126.709056pt;}
._19_c02086{width:133.009248pt;}
._2d_c02086{width:138.720000pt;}
._a_c02086{width:155.836032pt;}
._2c_c02086{width:161.928000pt;}
._5_c02086{width:170.165664pt;}
._0_c02086{width:172.819200pt;}
._4_c02086{width:239.779136pt;}
._7_c02086{width:245.814784pt;}
._3_c02086{width:255.756544pt;}
._e_c02086{width:258.924800pt;}
._8_c02086{width:273.203776pt;}
._d_c02086{width:278.129600pt;}
._6_c02086{width:317.570240pt;}
._f_c02086{width:329.182400pt;}
._2_c02086{width:343.070400pt;}
._11_c02086{width:390.997248pt;}
._12_c02086{width:418.092800pt;}
._10_c02086{width:419.595200pt;}
._c_c02086{width:490.010304pt;}
._9_c02086{width:518.284640pt;}
._13_c02086{width:710.840000pt;}
.fs4_c02086{font-size:10.560000pt;}
.fs2_c02086{font-size:42.560000pt;}
.fs3_c02086{font-size:48.000000pt;}
.fs1_c02086{font-size:58.560000pt;}
.fs0_c02086{font-size:64.000000pt;}
.y0_c02086{bottom:0.000000pt;}
.y3_c02086{bottom:50.987067pt;}
.y2_c02086{bottom:69.387067pt;}
.y4d_c02086{bottom:99.064795pt;}
.y4c_c02086{bottom:111.384851pt;}
.y4b_c02086{bottom:123.625107pt;}
.y4a_c02086{bottom:135.865363pt;}
.y49_c02086{bottom:148.105619pt;}
.y48_c02086{bottom:160.425675pt;}
.y47_c02086{bottom:172.665931pt;}
.y46_c02086{bottom:184.906187pt;}
.y45_c02086{bottom:197.226243pt;}
.y44_c02086{bottom:209.466499pt;}
.y43_c02086{bottom:221.706755pt;}
.y42_c02086{bottom:234.026811pt;}
.y41_c02086{bottom:246.267067pt;}
.y40_c02086{bottom:259.787067pt;}
.y3e_c02086{bottom:270.987467pt;}
.y3f_c02086{bottom:272.187200pt;}
.y3c_c02086{bottom:287.866667pt;}
.y3d_c02086{bottom:289.067067pt;}
.y3a_c02086{bottom:304.746667pt;}
.y3b_c02086{bottom:305.947067pt;}
.y38_c02086{bottom:321.626800pt;}
.y39_c02086{bottom:322.827067pt;}
.y36_c02086{bottom:338.427067pt;}
.y37_c02086{bottom:339.627200pt;}
.y35_c02086{bottom:355.307067pt;}
.y33_c02086{bottom:372.187200pt;}
.y34_c02086{bottom:373.387067pt;}
.y32_c02086{bottom:386.587200pt;}
.y31_c02086{bottom:402.507067pt;}
.y30_c02086{bottom:414.827200pt;}
.y2f_c02086{bottom:428.267067pt;}
.y2e_c02086{bottom:446.667200pt;}
.y2c_c02086{bottom:457.947200pt;}
.y2d_c02086{bottom:459.147200pt;}
.y2b_c02086{bottom:472.267067pt;}
.y2a_c02086{bottom:488.267067pt;}
.y29_c02086{bottom:500.507067pt;}
.y28_c02086{bottom:513.947067pt;}
.y27_c02086{bottom:532.427067pt;}
.y26_c02086{bottom:540.266531pt;}
.y25_c02086{bottom:552.746187pt;}
.y24_c02086{bottom:564.986443pt;}
.y23_c02086{bottom:577.306499pt;}
.y22_c02086{bottom:589.546755pt;}
.y21_c02086{bottom:601.787011pt;}
.y20_c02086{bottom:614.107067pt;}
.y1f_c02086{bottom:631.467067pt;}
.y1e_c02086{bottom:645.307067pt;}
.y1d_c02086{bottom:659.067067pt;}
.y1c_c02086{bottom:675.947067pt;}
.y1b_c02086{bottom:692.827067pt;}
.y1a_c02086{bottom:709.707067pt;}
.y19_c02086{bottom:726.587067pt;}
.y18_c02086{bottom:743.467067pt;}
.y17_c02086{bottom:759.147200pt;}
.y15_c02086{bottom:759.787067pt;}
.y16_c02086{bottom:773.387067pt;}
.y14_c02086{bottom:788.427067pt;}
.y13_c02086{bottom:804.266787pt;}
.y12_c02086{bottom:816.586843pt;}
.y11_c02086{bottom:828.827099pt;}
.y10_c02086{bottom:841.306755pt;}
.yf_c02086{bottom:853.626811pt;}
.ye_c02086{bottom:865.867067pt;}
.yd_c02086{bottom:882.107067pt;}
.yc_c02086{bottom:900.347067pt;}
.yb_c02086{bottom:918.507067pt;}
.ya_c02086{bottom:936.747067pt;}
.y9_c02086{bottom:954.907067pt;}
.y8_c02086{bottom:973.147067pt;}
.y6_c02086{bottom:973.787067pt;}
.y7_c02086{bottom:987.387067pt;}
.y5_c02086{bottom:1001.387067pt;}
.y4_c02086{bottom:1014.667067pt;}
.y1_c02086{bottom:1060.587067pt;}
.h8_c02086{height:9.379219pt;}
.h5_c02086{height:37.343906pt;}
.h4_c02086{height:37.801094pt;}
.h6_c02086{height:42.632812pt;}
.h3_c02086{height:52.012031pt;}
.h9_c02086{height:52.552812pt;}
.h2_c02086{height:56.156250pt;}
.h1_c02086{height:56.843750pt;}
.h7_c02086{height:75.382969pt;}
.h0_c02086{height:1122.666667pt;}
.w1_c02086{width:793.333333pt;}
.w0_c02086{width:793.626667pt;}
.x0_c02086{left:0.000000pt;}
.x1_c02086{left:113.440000pt;}
.x3_c02086{left:119.600000pt;}
.x8_c02086{left:120.560000pt;}
.x9_c02086{left:128.400000pt;}
.xc_c02086{left:133.440000pt;}
.xd_c02086{left:196.000000pt;}
.x4_c02086{left:295.200000pt;}
.x5_c02086{left:315.680000pt;}
.x6_c02086{left:338.400000pt;}
.x7_c02086{left:358.880000pt;}
.x2_c02086{left:388.880000pt;}
.xa_c02086{left:519.200000pt;}
.xb_c02086{left:560.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_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_98078911844b5f600812d8ed.woff2')format("woff");}.ff1_c02087{font-family:ff1_c02087;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02087;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v5_c02087{vertical-align:-18.360000px;}
.v4_c02087{vertical-align:-16.560000px;}
.v8_c02087{vertical-align:-12.960000px;}
.v7_c02087{vertical-align:-11.160000px;}
.v3_c02087{vertical-align:-1.440000px;}
.v0_c02087{vertical-align:0.000000px;}
.v9_c02087{vertical-align:2.160000px;}
.v6_c02087{vertical-align:5.400000px;}
.v1_c02087{vertical-align:11.160000px;}
.v2_c02087{vertical-align:16.560000px;}
.va_c02087{vertical-align:51.120000px;}
.ls29_c02087{letter-spacing:-0.086184px;}
.ls36_c02087{letter-spacing:-0.063180px;}
.ls33_c02087{letter-spacing:-0.059400px;}
.ls37_c02087{letter-spacing:-0.059292px;}
.ls27_c02087{letter-spacing:-0.052668px;}
.ls35_c02087{letter-spacing:-0.038304px;}
.ls2a_c02087{letter-spacing:-0.023940px;}
.ls28_c02087{letter-spacing:-0.019152px;}
.ls34_c02087{letter-spacing:-0.007200px;}
.ls30_c02087{letter-spacing:-0.006012px;}
.ls2f_c02087{letter-spacing:-0.004788px;}
.ls25_c02087{letter-spacing:0.000000px;}
.ls32_c02087{letter-spacing:0.007200px;}
.ls1d_c02087{letter-spacing:0.013176px;}
.ls15_c02087{letter-spacing:0.014400px;}
.ls14_c02087{letter-spacing:0.019152px;}
.ls23_c02087{letter-spacing:0.019764px;}
.ls4_c02087{letter-spacing:0.028728px;}
.ls0_c02087{letter-spacing:0.036000px;}
.ls1a_c02087{letter-spacing:0.039528px;}
.ls3_c02087{letter-spacing:0.043092px;}
.ls7_c02087{letter-spacing:0.043200px;}
.ls17_c02087{letter-spacing:0.046116px;}
.ls2b_c02087{letter-spacing:0.047880px;}
.lsf_c02087{letter-spacing:0.052668px;}
.ls20_c02087{letter-spacing:0.052704px;}
.ls1e_c02087{letter-spacing:0.059292px;}
.ls1c_c02087{letter-spacing:0.065880px;}
.ls22_c02087{letter-spacing:0.072468px;}
.lsc_c02087{letter-spacing:0.076608px;}
.ls1f_c02087{letter-spacing:0.079056px;}
.ls2_c02087{letter-spacing:0.081396px;}
.ls1_c02087{letter-spacing:0.090972px;}
.ls2e_c02087{letter-spacing:0.091800px;}
.ls1b_c02087{letter-spacing:0.092232px;}
.ls21_c02087{letter-spacing:0.098820px;}
.ls2c_c02087{letter-spacing:0.100548px;}
.ls24_c02087{letter-spacing:0.105408px;}
.ls6_c02087{letter-spacing:0.110124px;}
.ls10_c02087{letter-spacing:0.114912px;}
.ls12_c02087{letter-spacing:0.124488px;}
.ls13_c02087{letter-spacing:0.134064px;}
.ls31_c02087{letter-spacing:0.138348px;}
.ls11_c02087{letter-spacing:0.138852px;}
.ls16_c02087{letter-spacing:0.144288px;}
.ls18_c02087{letter-spacing:0.151524px;}
.ls5_c02087{letter-spacing:0.158112px;}
.lse_c02087{letter-spacing:0.162792px;}
.lsa_c02087{letter-spacing:0.164700px;}
.ls26_c02087{letter-spacing:0.167580px;}
.ls19_c02087{letter-spacing:0.177876px;}
.lsd_c02087{letter-spacing:0.181944px;}
.ls9_c02087{letter-spacing:0.205884px;}
.ls2d_c02087{letter-spacing:156.060000px;}
.lsb_c02087{letter-spacing:156.778200px;}
.ls8_c02087{letter-spacing:199.710000px;}
.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;}
}
.ws3_c02087{word-spacing:-16.647876px;}
.wse_c02087{word-spacing:-0.296856px;}
.wsd_c02087{word-spacing:-0.272916px;}
.ws11_c02087{word-spacing:-0.253764px;}
.ws14_c02087{word-spacing:-0.229824px;}
.ws16_c02087{word-spacing:-0.225036px;}
.ws15_c02087{word-spacing:-0.215460px;}
.ws13_c02087{word-spacing:-0.205884px;}
.ws18_c02087{word-spacing:-0.172368px;}
.ws12_c02087{word-spacing:-0.119700px;}
.ws19_c02087{word-spacing:-0.110124px;}
.ws1a_c02087{word-spacing:-0.086400px;}
.ws21_c02087{word-spacing:-0.079200px;}
.wsc_c02087{word-spacing:-0.067032px;}
.ws1c_c02087{word-spacing:-0.054108px;}
.wsb_c02087{word-spacing:-0.036000px;}
.ws9_c02087{word-spacing:-0.021600px;}
.ws1b_c02087{word-spacing:-0.014400px;}
.ws27_c02087{word-spacing:-0.013176px;}
.ws24_c02087{word-spacing:-0.006588px;}
.wsa_c02087{word-spacing:0.000000px;}
.ws26_c02087{word-spacing:0.007200px;}
.ws28_c02087{word-spacing:0.013176px;}
.ws25_c02087{word-spacing:0.019764px;}
.ws1f_c02087{word-spacing:0.026352px;}
.ws22_c02087{word-spacing:0.032940px;}
.ws23_c02087{word-spacing:0.039528px;}
.ws1d_c02087{word-spacing:0.046116px;}
.ws1e_c02087{word-spacing:0.052704px;}
.ws20_c02087{word-spacing:0.079056px;}
.ws1_c02087{word-spacing:58.969440px;}
.ws0_c02087{word-spacing:75.169440px;}
.ws7_c02087{word-spacing:79.517160px;}
.wsf_c02087{word-spacing:79.846560px;}
.ws8_c02087{word-spacing:80.235252px;}
.ws6_c02087{word-spacing:98.557740px;}
.ws17_c02087{word-spacing:156.735000px;}
.ws10_c02087{word-spacing:186.975000px;}
.ws2_c02087{word-spacing:203.002380px;}
.ws5_c02087{word-spacing:235.762380px;}
.ws4_c02087{word-spacing:302.123304px;}
._c_c02087{margin-left:-1.244592px;}
._39_c02087{width:1.141344px;}
._1d_c02087{width:29.623320px;}
._1e_c02087{width:42.481800px;}
._a_c02087{width:51.300000px;}
._3c_c02087{width:72.898560px;}
._11_c02087{width:75.420000px;}
._d_c02087{width:79.832124px;}
._f_c02087{width:83.304000px;}
._1c_c02087{width:84.697200px;}
._16_c02087{width:90.208440px;}
._e_c02087{width:92.304000px;}
._1_c02087{width:96.936120px;}
._15_c02087{width:98.460000px;}
._12_c02087{width:100.929276px;}
._b_c02087{width:103.399380px;}
._18_c02087{width:104.979420px;}
._1a_c02087{width:106.665300px;}
._8_c02087{width:110.178216px;}
._19_c02087{width:112.798728px;}
._9_c02087{width:114.409440px;}
._7_c02087{width:119.404440px;}
._1f_c02087{width:121.800168px;}
._1b_c02087{width:124.640388px;}
._10_c02087{width:129.384000px;}
._5_c02087{width:131.136120px;}
._2_c02087{width:132.183000px;}
._3_c02087{width:134.095140px;}
._20_c02087{width:135.388512px;}
._4_c02087{width:138.898944px;}
._6_c02087{width:141.887952px;}
._21_c02087{width:143.327016px;}
._3b_c02087{width:146.523708px;}
._14_c02087{width:156.060000px;}
._2e_c02087{width:160.478496px;}
._30_c02087{width:162.347688px;}
._13_c02087{width:182.550132px;}
._3f_c02087{width:184.628700px;}
._3e_c02087{width:188.561196px;}
._26_c02087{width:193.238496px;}
._0_c02087{width:194.421600px;}
._17_c02087{width:216.804168px;}
._24_c02087{width:218.610000px;}
._2c_c02087{width:226.356372px;}
._25_c02087{width:230.722416px;}
._2a_c02087{width:240.169608px;}
._28_c02087{width:259.834248px;}
._23_c02087{width:262.168704px;}
._22_c02087{width:269.695584px;}
._27_c02087{width:305.667504px;}
._29_c02087{width:349.525944px;}
._2b_c02087{width:355.461732px;}
._40_c02087{width:397.803204px;}
._2d_c02087{width:421.221024px;}
._3a_c02087{width:488.315196px;}
._38_c02087{width:509.646960px;}
._33_c02087{width:587.305800px;}
._3d_c02087{width:640.030788px;}
._35_c02087{width:688.694040px;}
._36_c02087{width:724.072680px;}
._34_c02087{width:949.908780px;}
._2f_c02087{width:1066.851000px;}
._31_c02087{width:1078.204032px;}
._37_c02087{width:1168.716024px;}
._32_c02087{width:1320.429492px;}
.fc0_c02087{color:rgb(0,0,0);}
.fs6_c02087{font-size:11.880000px;}
.fs5_c02087{font-size:42.120000px;}
.fs1_c02087{font-size:47.880000px;}
.fs3_c02087{font-size:54.000000px;}
.fs4_c02087{font-size:60.120000px;}
.fs2_c02087{font-size:65.880000px;}
.fs0_c02087{font-size:72.000000px;}
.y0_c02087{bottom:0.000000px;}
.y3_c02087{bottom:57.360450px;}
.y2_c02087{bottom:78.060450px;}
.y49_c02087{bottom:118.290600px;}
.y48_c02087{bottom:125.130450px;}
.y47_c02087{bottom:144.120600px;}
.y46_c02087{bottom:163.020450px;}
.y45_c02087{bottom:182.370600px;}
.y44_c02087{bottom:201.360450px;}
.y43_c02087{bottom:220.710600px;}
.y42_c02087{bottom:239.700600px;}
.y3f_c02087{bottom:257.610450px;}
.y3e_c02087{bottom:258.690450px;}
.y41_c02087{bottom:259.050450px;}
.y40_c02087{bottom:271.470450px;}
.y3d_c02087{bottom:286.950450px;}
.y3c_c02087{bottom:310.080000px;}
.y3b_c02087{bottom:325.560450px;}
.y3a_c02087{bottom:342.840450px;}
.y39_c02087{bottom:363.270900px;}
.y38_c02087{bottom:378.840450px;}
.y37_c02087{bottom:396.480450px;}
.y36_c02087{bottom:415.470450px;}
.y35_c02087{bottom:434.460600px;}
.y34_c02087{bottom:453.450600px;}
.y33_c02087{bottom:472.440600px;}
.y32_c02087{bottom:491.340600px;}
.y31_c02087{bottom:510.330450px;}
.y30_c02087{bottom:529.050450px;}
.y2f_c02087{bottom:545.880450px;}
.y2e_c02087{bottom:569.010450px;}
.y2d_c02087{bottom:585.210450px;}
.y2c_c02087{bottom:605.640450px;}
.y2b_c02087{bottom:624.630450px;}
.y2a_c02087{bottom:643.620450px;}
.y29_c02087{bottom:662.610450px;}
.y28_c02087{bottom:681.600450px;}
.y27_c02087{bottom:700.500450px;}
.y26_c02087{bottom:719.130450px;}
.y25_c02087{bottom:737.040450px;}
.y24_c02087{bottom:759.090450px;}
.y23_c02087{bottom:776.280450px;}
.y22_c02087{bottom:796.800450px;}
.y21_c02087{bottom:811.920450px;}
.y1f_c02087{bottom:829.920000px;}
.y20_c02087{bottom:831.270450px;}
.y1d_c02087{bottom:848.910000px;}
.y1e_c02087{bottom:850.260450px;}
.y1b_c02087{bottom:867.900000px;}
.y1c_c02087{bottom:869.250600px;}
.y19_c02087{bottom:886.800900px;}
.y1a_c02087{bottom:888.150450px;}
.y17_c02087{bottom:905.790600px;}
.y18_c02087{bottom:907.140450px;}
.y16_c02087{bottom:924.780450px;}
.y14_c02087{bottom:943.770000px;}
.y15_c02087{bottom:945.120450px;}
.y12_c02087{bottom:962.760450px;}
.y13_c02087{bottom:964.110450px;}
.y11_c02087{bottom:981.660450px;}
.yf_c02087{bottom:1000.650900px;}
.y10_c02087{bottom:1002.000450px;}
.yd_c02087{bottom:1019.640900px;}
.ye_c02087{bottom:1020.990450px;}
.yb_c02087{bottom:1038.630450px;}
.yc_c02087{bottom:1039.980450px;}
.ya_c02087{bottom:1057.620450px;}
.y8_c02087{bottom:1076.610450px;}
.y9_c02087{bottom:1077.960450px;}
.y7_c02087{bottom:1092.720450px;}
.y6_c02087{bottom:1110.720450px;}
.y5_c02087{bottom:1124.490450px;}
.y4_c02087{bottom:1139.610450px;}
.y1_c02087{bottom:1193.160450px;}
.ha_c02087{height:10.551621px;}
.h9_c02087{height:37.410293px;}
.h3_c02087{height:42.526230px;}
.h5_c02087{height:47.961914px;}
.h6_c02087{height:53.397598px;}
.h7_c02087{height:58.513535px;}
.h4_c02087{height:59.121914px;}
.h2_c02087{height:63.175781px;}
.h1_c02087{height:63.949219px;}
.h8_c02087{height:93.646230px;}
.h0_c02087{height:1263.000000px;}
.w1_c02087{width:892.500000px;}
.w0_c02087{width:892.830000px;}
.x0_c02087{left:0.000000px;}
.x1_c02087{left:127.620000px;}
.x3_c02087{left:135.630000px;}
.x4_c02087{left:144.450000px;}
.x7_c02087{left:150.120000px;}
.x9_c02087{left:162.450000px;}
.x8_c02087{left:220.500000px;}
.xb_c02087{left:247.680000px;}
.xa_c02087{left:374.490000px;}
.x2_c02087{left:437.490000px;}
.xc_c02087{left:501.390000px;}
.xd_c02087{left:542.880000px;}
.xe_c02087{left:552.240000px;}
.x5_c02087{left:584.100000px;}
.xf_c02087{left:593.910000px;}
.x10_c02087{left:602.460000px;}
.x6_c02087{left:630.180000px;}
.x11_c02087{left:642.150000px;}
.x12_c02087{left:690.120000px;}
.x13_c02087{left:731.610000px;}
@media print{
.v5_c02087{vertical-align:-16.320000pt;}
.v4_c02087{vertical-align:-14.720000pt;}
.v8_c02087{vertical-align:-11.520000pt;}
.v7_c02087{vertical-align:-9.920000pt;}
.v3_c02087{vertical-align:-1.280000pt;}
.v0_c02087{vertical-align:0.000000pt;}
.v9_c02087{vertical-align:1.920000pt;}
.v6_c02087{vertical-align:4.800000pt;}
.v1_c02087{vertical-align:9.920000pt;}
.v2_c02087{vertical-align:14.720000pt;}
.va_c02087{vertical-align:45.440000pt;}
.ls29_c02087{letter-spacing:-0.076608pt;}
.ls36_c02087{letter-spacing:-0.056160pt;}
.ls33_c02087{letter-spacing:-0.052800pt;}
.ls37_c02087{letter-spacing:-0.052704pt;}
.ls27_c02087{letter-spacing:-0.046816pt;}
.ls35_c02087{letter-spacing:-0.034048pt;}
.ls2a_c02087{letter-spacing:-0.021280pt;}
.ls28_c02087{letter-spacing:-0.017024pt;}
.ls34_c02087{letter-spacing:-0.006400pt;}
.ls30_c02087{letter-spacing:-0.005344pt;}
.ls2f_c02087{letter-spacing:-0.004256pt;}
.ls25_c02087{letter-spacing:0.000000pt;}
.ls32_c02087{letter-spacing:0.006400pt;}
.ls1d_c02087{letter-spacing:0.011712pt;}
.ls15_c02087{letter-spacing:0.012800pt;}
.ls14_c02087{letter-spacing:0.017024pt;}
.ls23_c02087{letter-spacing:0.017568pt;}
.ls4_c02087{letter-spacing:0.025536pt;}
.ls0_c02087{letter-spacing:0.032000pt;}
.ls1a_c02087{letter-spacing:0.035136pt;}
.ls3_c02087{letter-spacing:0.038304pt;}
.ls7_c02087{letter-spacing:0.038400pt;}
.ls17_c02087{letter-spacing:0.040992pt;}
.ls2b_c02087{letter-spacing:0.042560pt;}
.lsf_c02087{letter-spacing:0.046816pt;}
.ls20_c02087{letter-spacing:0.046848pt;}
.ls1e_c02087{letter-spacing:0.052704pt;}
.ls1c_c02087{letter-spacing:0.058560pt;}
.ls22_c02087{letter-spacing:0.064416pt;}
.lsc_c02087{letter-spacing:0.068096pt;}
.ls1f_c02087{letter-spacing:0.070272pt;}
.ls2_c02087{letter-spacing:0.072352pt;}
.ls1_c02087{letter-spacing:0.080864pt;}
.ls2e_c02087{letter-spacing:0.081600pt;}
.ls1b_c02087{letter-spacing:0.081984pt;}
.ls21_c02087{letter-spacing:0.087840pt;}
.ls2c_c02087{letter-spacing:0.089376pt;}
.ls24_c02087{letter-spacing:0.093696pt;}
.ls6_c02087{letter-spacing:0.097888pt;}
.ls10_c02087{letter-spacing:0.102144pt;}
.ls12_c02087{letter-spacing:0.110656pt;}
.ls13_c02087{letter-spacing:0.119168pt;}
.ls31_c02087{letter-spacing:0.122976pt;}
.ls11_c02087{letter-spacing:0.123424pt;}
.ls16_c02087{letter-spacing:0.128256pt;}
.ls18_c02087{letter-spacing:0.134688pt;}
.ls5_c02087{letter-spacing:0.140544pt;}
.lse_c02087{letter-spacing:0.144704pt;}
.lsa_c02087{letter-spacing:0.146400pt;}
.ls26_c02087{letter-spacing:0.148960pt;}
.ls19_c02087{letter-spacing:0.158112pt;}
.lsd_c02087{letter-spacing:0.161728pt;}
.ls9_c02087{letter-spacing:0.183008pt;}
.ls2d_c02087{letter-spacing:138.720000pt;}
.lsb_c02087{letter-spacing:139.358400pt;}
.ls8_c02087{letter-spacing:177.520000pt;}
.ws3_c02087{word-spacing:-14.798112pt;}
.wse_c02087{word-spacing:-0.263872pt;}
.wsd_c02087{word-spacing:-0.242592pt;}
.ws11_c02087{word-spacing:-0.225568pt;}
.ws14_c02087{word-spacing:-0.204288pt;}
.ws16_c02087{word-spacing:-0.200032pt;}
.ws15_c02087{word-spacing:-0.191520pt;}
.ws13_c02087{word-spacing:-0.183008pt;}
.ws18_c02087{word-spacing:-0.153216pt;}
.ws12_c02087{word-spacing:-0.106400pt;}
.ws19_c02087{word-spacing:-0.097888pt;}
.ws1a_c02087{word-spacing:-0.076800pt;}
.ws21_c02087{word-spacing:-0.070400pt;}
.wsc_c02087{word-spacing:-0.059584pt;}
.ws1c_c02087{word-spacing:-0.048096pt;}
.wsb_c02087{word-spacing:-0.032000pt;}
.ws9_c02087{word-spacing:-0.019200pt;}
.ws1b_c02087{word-spacing:-0.012800pt;}
.ws27_c02087{word-spacing:-0.011712pt;}
.ws24_c02087{word-spacing:-0.005856pt;}
.wsa_c02087{word-spacing:0.000000pt;}
.ws26_c02087{word-spacing:0.006400pt;}
.ws28_c02087{word-spacing:0.011712pt;}
.ws25_c02087{word-spacing:0.017568pt;}
.ws1f_c02087{word-spacing:0.023424pt;}
.ws22_c02087{word-spacing:0.029280pt;}
.ws23_c02087{word-spacing:0.035136pt;}
.ws1d_c02087{word-spacing:0.040992pt;}
.ws1e_c02087{word-spacing:0.046848pt;}
.ws20_c02087{word-spacing:0.070272pt;}
.ws1_c02087{word-spacing:52.417280pt;}
.ws0_c02087{word-spacing:66.817280pt;}
.ws7_c02087{word-spacing:70.681920pt;}
.wsf_c02087{word-spacing:70.974720pt;}
.ws8_c02087{word-spacing:71.320224pt;}
.ws6_c02087{word-spacing:87.606880pt;}
.ws17_c02087{word-spacing:139.320000pt;}
.ws10_c02087{word-spacing:166.200000pt;}
.ws2_c02087{word-spacing:180.446560pt;}
.ws5_c02087{word-spacing:209.566560pt;}
.ws4_c02087{word-spacing:268.554048pt;}
._c_c02087{margin-left:-1.106304pt;}
._39_c02087{width:1.014528pt;}
._1d_c02087{width:26.331840pt;}
._1e_c02087{width:37.761600pt;}
._a_c02087{width:45.600000pt;}
._3c_c02087{width:64.798720pt;}
._11_c02087{width:67.040000pt;}
._d_c02087{width:70.961888pt;}
._f_c02087{width:74.048000pt;}
._1c_c02087{width:75.286400pt;}
._16_c02087{width:80.185280pt;}
._e_c02087{width:82.048000pt;}
._1_c02087{width:86.165440pt;}
._15_c02087{width:87.520000pt;}
._12_c02087{width:89.714912pt;}
._b_c02087{width:91.910560pt;}
._18_c02087{width:93.315040pt;}
._1a_c02087{width:94.813600pt;}
._8_c02087{width:97.936192pt;}
._19_c02087{width:100.265536pt;}
._9_c02087{width:101.697280pt;}
._7_c02087{width:106.137280pt;}
._1f_c02087{width:108.266816pt;}
._1b_c02087{width:110.791456pt;}
._10_c02087{width:115.008000pt;}
._5_c02087{width:116.565440pt;}
._2_c02087{width:117.496000pt;}
._3_c02087{width:119.195680pt;}
._20_c02087{width:120.345344pt;}
._4_c02087{width:123.465728pt;}
._6_c02087{width:126.122624pt;}
._21_c02087{width:127.401792pt;}
._3b_c02087{width:130.243296pt;}
._14_c02087{width:138.720000pt;}
._2e_c02087{width:142.647552pt;}
._30_c02087{width:144.309056pt;}
._13_c02087{width:162.266784pt;}
._3f_c02087{width:164.114400pt;}
._3e_c02087{width:167.609952pt;}
._26_c02087{width:171.767552pt;}
._0_c02087{width:172.819200pt;}
._17_c02087{width:192.714816pt;}
._24_c02087{width:194.320000pt;}
._2c_c02087{width:201.205664pt;}
._25_c02087{width:205.086592pt;}
._2a_c02087{width:213.484096pt;}
._28_c02087{width:230.963776pt;}
._23_c02087{width:233.038848pt;}
._22_c02087{width:239.729408pt;}
._27_c02087{width:271.704448pt;}
._29_c02087{width:310.689728pt;}
._2b_c02087{width:315.965984pt;}
._40_c02087{width:353.602848pt;}
._2d_c02087{width:374.418688pt;}
._3a_c02087{width:434.057952pt;}
._38_c02087{width:453.019520pt;}
._33_c02087{width:522.049600pt;}
._3d_c02087{width:568.916256pt;}
._35_c02087{width:612.172480pt;}
._36_c02087{width:643.620160pt;}
._34_c02087{width:844.363360pt;}
._2f_c02087{width:948.312000pt;}
._31_c02087{width:958.403584pt;}
._37_c02087{width:1038.858688pt;}
._32_c02087{width:1173.715104pt;}
.fs6_c02087{font-size:10.560000pt;}
.fs5_c02087{font-size:37.440000pt;}
.fs1_c02087{font-size:42.560000pt;}
.fs3_c02087{font-size:48.000000pt;}
.fs4_c02087{font-size:53.440000pt;}
.fs2_c02087{font-size:58.560000pt;}
.fs0_c02087{font-size:64.000000pt;}
.y0_c02087{bottom:0.000000pt;}
.y3_c02087{bottom:50.987067pt;}
.y2_c02087{bottom:69.387067pt;}
.y49_c02087{bottom:105.147200pt;}
.y48_c02087{bottom:111.227067pt;}
.y47_c02087{bottom:128.107200pt;}
.y46_c02087{bottom:144.907067pt;}
.y45_c02087{bottom:162.107200pt;}
.y44_c02087{bottom:178.987067pt;}
.y43_c02087{bottom:196.187200pt;}
.y42_c02087{bottom:213.067200pt;}
.y3f_c02087{bottom:228.987067pt;}
.y3e_c02087{bottom:229.947067pt;}
.y41_c02087{bottom:230.267067pt;}
.y40_c02087{bottom:241.307067pt;}
.y3d_c02087{bottom:255.067067pt;}
.y3c_c02087{bottom:275.626667pt;}
.y3b_c02087{bottom:289.387067pt;}
.y3a_c02087{bottom:304.747067pt;}
.y39_c02087{bottom:322.907467pt;}
.y38_c02087{bottom:336.747067pt;}
.y37_c02087{bottom:352.427067pt;}
.y36_c02087{bottom:369.307067pt;}
.y35_c02087{bottom:386.187200pt;}
.y34_c02087{bottom:403.067200pt;}
.y33_c02087{bottom:419.947200pt;}
.y32_c02087{bottom:436.747200pt;}
.y31_c02087{bottom:453.627067pt;}
.y30_c02087{bottom:470.267067pt;}
.y2f_c02087{bottom:485.227067pt;}
.y2e_c02087{bottom:505.787067pt;}
.y2d_c02087{bottom:520.187067pt;}
.y2c_c02087{bottom:538.347067pt;}
.y2b_c02087{bottom:555.227067pt;}
.y2a_c02087{bottom:572.107067pt;}
.y29_c02087{bottom:588.987067pt;}
.y28_c02087{bottom:605.867067pt;}
.y27_c02087{bottom:622.667067pt;}
.y26_c02087{bottom:639.227067pt;}
.y25_c02087{bottom:655.147067pt;}
.y24_c02087{bottom:674.747067pt;}
.y23_c02087{bottom:690.027067pt;}
.y22_c02087{bottom:708.267067pt;}
.y21_c02087{bottom:721.707067pt;}
.y1f_c02087{bottom:737.706667pt;}
.y20_c02087{bottom:738.907067pt;}
.y1d_c02087{bottom:754.586667pt;}
.y1e_c02087{bottom:755.787067pt;}
.y1b_c02087{bottom:771.466667pt;}
.y1c_c02087{bottom:772.667200pt;}
.y19_c02087{bottom:788.267467pt;}
.y1a_c02087{bottom:789.467067pt;}
.y17_c02087{bottom:805.147200pt;}
.y18_c02087{bottom:806.347067pt;}
.y16_c02087{bottom:822.027067pt;}
.y14_c02087{bottom:838.906667pt;}
.y15_c02087{bottom:840.107067pt;}
.y12_c02087{bottom:855.787067pt;}
.y13_c02087{bottom:856.987067pt;}
.y11_c02087{bottom:872.587067pt;}
.yf_c02087{bottom:889.467467pt;}
.y10_c02087{bottom:890.667067pt;}
.yd_c02087{bottom:906.347467pt;}
.ye_c02087{bottom:907.547067pt;}
.yb_c02087{bottom:923.227067pt;}
.yc_c02087{bottom:924.427067pt;}
.ya_c02087{bottom:940.107067pt;}
.y8_c02087{bottom:956.987067pt;}
.y9_c02087{bottom:958.187067pt;}
.y7_c02087{bottom:971.307067pt;}
.y6_c02087{bottom:987.307067pt;}
.y5_c02087{bottom:999.547067pt;}
.y4_c02087{bottom:1012.987067pt;}
.y1_c02087{bottom:1060.587067pt;}
.ha_c02087{height:9.379219pt;}
.h9_c02087{height:33.253594pt;}
.h3_c02087{height:37.801094pt;}
.h5_c02087{height:42.632812pt;}
.h6_c02087{height:47.464531pt;}
.h7_c02087{height:52.012031pt;}
.h4_c02087{height:52.552812pt;}
.h2_c02087{height:56.156250pt;}
.h1_c02087{height:56.843750pt;}
.h8_c02087{height:83.241094pt;}
.h0_c02087{height:1122.666667pt;}
.w1_c02087{width:793.333333pt;}
.w0_c02087{width:793.626667pt;}
.x0_c02087{left:0.000000pt;}
.x1_c02087{left:113.440000pt;}
.x3_c02087{left:120.560000pt;}
.x4_c02087{left:128.400000pt;}
.x7_c02087{left:133.440000pt;}
.x9_c02087{left:144.400000pt;}
.x8_c02087{left:196.000000pt;}
.xb_c02087{left:220.160000pt;}
.xa_c02087{left:332.880000pt;}
.x2_c02087{left:388.880000pt;}
.xc_c02087{left:445.680000pt;}
.xd_c02087{left:482.560000pt;}
.xe_c02087{left:490.880000pt;}
.x5_c02087{left:519.200000pt;}
.xf_c02087{left:527.920000pt;}
.x10_c02087{left:535.520000pt;}
.x6_c02087{left:560.160000pt;}
.x11_c02087{left:570.800000pt;}
.x12_c02087{left:613.440000pt;}
.x13_c02087{left:650.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_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_8720a3a3a4ddfce141ec2bbd.woff2')format("woff");}.ff1_c02088{font-family:ff1_c02088;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02088;src:url('chunks/assets/font_14470a854a6d14383f57cdc8.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;}
.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);}
.v2_c02088{vertical-align:-22.319400px;}
.v1_c02088{vertical-align:-16.920000px;}
.v3_c02088{vertical-align:-5.400000px;}
.v0_c02088{vertical-align:0.000000px;}
.ls1d_c02088{letter-spacing:-0.181116px;}
.ls1c_c02088{letter-spacing:-0.180360px;}
.ls1b_c02088{letter-spacing:-0.176904px;}
.ls1a_c02088{letter-spacing:-0.086400px;}
.ls18_c02088{letter-spacing:-0.032940px;}
.ls16_c02088{letter-spacing:-0.014400px;}
.ls17_c02088{letter-spacing:-0.013176px;}
.ls19_c02088{letter-spacing:-0.007200px;}
.ls15_c02088{letter-spacing:0.000000px;}
.ls13_c02088{letter-spacing:0.006588px;}
.ls0_c02088{letter-spacing:0.007200px;}
.lsd_c02088{letter-spacing:0.013176px;}
.ls12_c02088{letter-spacing:0.014400px;}
.ls5_c02088{letter-spacing:0.019764px;}
.ls7_c02088{letter-spacing:0.021600px;}
.ls10_c02088{letter-spacing:0.026352px;}
.ls1_c02088{letter-spacing:0.028800px;}
.ls14_c02088{letter-spacing:0.032940px;}
.ls3_c02088{letter-spacing:0.039528px;}
.ls11_c02088{letter-spacing:0.046116px;}
.ls8_c02088{letter-spacing:0.050400px;}
.lse_c02088{letter-spacing:0.052704px;}
.lsc_c02088{letter-spacing:0.059292px;}
.lsb_c02088{letter-spacing:0.065880px;}
.ls2_c02088{letter-spacing:0.072468px;}
.ls4_c02088{letter-spacing:0.098820px;}
.ls1e_c02088{letter-spacing:0.105408px;}
.ls1f_c02088{letter-spacing:0.131760px;}
.ls20_c02088{letter-spacing:0.138348px;}
.lsf_c02088{letter-spacing:0.144936px;}
.ls6_c02088{letter-spacing:0.164700px;}
.lsa_c02088{letter-spacing:0.181944px;}
.ls9_c02088{letter-spacing:34.065360px;}
.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;}
}
.ws4_c02088{word-spacing:-0.144000px;}
.ws9_c02088{word-spacing:-0.122400px;}
.wsa_c02088{word-spacing:-0.115200px;}
.ws16_c02088{word-spacing:-0.093600px;}
.wsb_c02088{word-spacing:-0.086400px;}
.ws8_c02088{word-spacing:-0.057600px;}
.ws0_c02088{word-spacing:-0.021600px;}
.ws15_c02088{word-spacing:-0.014400px;}
.ws3_c02088{word-spacing:-0.007200px;}
.ws1_c02088{word-spacing:0.000000px;}
.ws7_c02088{word-spacing:0.007200px;}
.ws2_c02088{word-spacing:0.014400px;}
.ws5_c02088{word-spacing:0.019764px;}
.wsd_c02088{word-spacing:0.026352px;}
.wse_c02088{word-spacing:0.032940px;}
.ws14_c02088{word-spacing:0.046116px;}
.ws11_c02088{word-spacing:0.052704px;}
.ws1e_c02088{word-spacing:0.059292px;}
.ws12_c02088{word-spacing:0.065880px;}
.wsf_c02088{word-spacing:0.079056px;}
.ws18_c02088{word-spacing:0.085644px;}
.ws20_c02088{word-spacing:0.783972px;}
.ws17_c02088{word-spacing:4.367844px;}
.ws1b_c02088{word-spacing:4.756536px;}
.ws23_c02088{word-spacing:5.059584px;}
.ws24_c02088{word-spacing:5.099112px;}
.ws19_c02088{word-spacing:5.421924px;}
.ws25_c02088{word-spacing:5.836968px;}
.ws26_c02088{word-spacing:6.192720px;}
.ws22_c02088{word-spacing:7.233624px;}
.ws27_c02088{word-spacing:10.494684px;}
.ws1f_c02088{word-spacing:14.098320px;}
.ws1c_c02088{word-spacing:14.434308px;}
.ws1a_c02088{word-spacing:17.333028px;}
.ws21_c02088{word-spacing:25.969896px;}
.ws1d_c02088{word-spacing:30.647376px;}
.ws10_c02088{word-spacing:35.588376px;}
.ws13_c02088{word-spacing:35.627904px;}
.wsc_c02088{word-spacing:48.689172px;}
.ws6_c02088{word-spacing:276.406128px;}
._a_c02088{margin-left:-61.545096px;}
._16_c02088{margin-left:-1.280196px;}
._17_c02088{width:1.152900px;}
._12_c02088{width:39.870720px;}
._13_c02088{width:40.950720px;}
._15_c02088{width:55.174464px;}
._1_c02088{width:65.407068px;}
._11_c02088{width:73.850472px;}
._4_c02088{width:96.810048px;}
._6_c02088{width:101.605680px;}
._2_c02088{width:115.338168px;}
._5_c02088{width:116.438220px;}
._3_c02088{width:129.525840px;}
._7_c02088{width:172.454076px;}
._0_c02088{width:194.421600px;}
._9_c02088{width:264.271032px;}
._1a_c02088{width:461.414808px;}
._1b_c02088{width:481.784904px;}
._8_c02088{width:572.055804px;}
._f_c02088{width:595.828800px;}
._d_c02088{width:780.933600px;}
._19_c02088{width:808.839576px;}
._e_c02088{width:1143.403200px;}
._14_c02088{width:1380.620880px;}
._c_c02088{width:1381.737600px;}
._18_c02088{width:1416.859272px;}
._1c_c02088{width:1494.676440px;}
._b_c02088{width:1791.288000px;}
._10_c02088{width:2232.561600px;}
.fc0_c02088{color:rgb(0,0,0);}
.fs5_c02088{font-size:24.120000px;}
.fs3_c02088{font-size:42.120000px;}
.fs4_c02088{font-size:47.880000px;}
.fs2_c02088{font-size:60.120000px;}
.fs1_c02088{font-size:65.880000px;}
.fs0_c02088{font-size:72.000000px;}
.y0_c02088{bottom:0.000000px;}
.y3_c02088{bottom:57.360450px;}
.y2_c02088{bottom:78.060450px;}
.y40_c02088{bottom:127.741395px;}
.y3f_c02088{bottom:146.731305px;}
.y3e_c02088{bottom:165.721215px;}
.y3d_c02088{bottom:184.711125px;}
.y3c_c02088{bottom:203.610450px;}
.y3b_c02088{bottom:220.350450px;}
.y42_c02088{bottom:229.441998px;}
.y3a_c02088{bottom:229.530540px;}
.y41_c02088{bottom:248.431908px;}
.y39_c02088{bottom:254.190450px;}
.y36_c02088{bottom:265.980450px;}
.y35_c02088{bottom:275.071575px;}
.y34_c02088{bottom:294.061485px;}
.y33_c02088{bottom:313.051395px;}
.y32_c02088{bottom:332.041305px;}
.y31_c02088{bottom:351.031215px;}
.y30_c02088{bottom:370.021125px;}
.y2f_c02088{bottom:388.920450px;}
.y2e_c02088{bottom:405.660450px;}
.y2d_c02088{bottom:414.841305px;}
.y2c_c02088{bottom:433.831215px;}
.y38_c02088{bottom:452.640540px;}
.y2b_c02088{bottom:452.730540px;}
.y37_c02088{bottom:471.630450px;}
.y2a_c02088{bottom:477.390450px;}
.y27_c02088{bottom:489.180600px;}
.y29_c02088{bottom:498.270540px;}
.y26_c02088{bottom:498.360540px;}
.y28_c02088{bottom:517.260450px;}
.y25_c02088{bottom:523.020600px;}
.y24_c02088{bottom:542.550450px;}
.y23_c02088{bottom:556.950450px;}
.y22_c02088{bottom:577.740459px;}
.y21_c02088{bottom:595.020450px;}
.y20_c02088{bottom:613.379955px;}
.y1f_c02088{bottom:638.130450px;}
.y1e_c02088{bottom:657.840450px;}
.y1d_c02088{bottom:677.550450px;}
.y1b_c02088{bottom:691.590540px;}
.y1c_c02088{bottom:710.489865px;}
.y1a_c02088{bottom:716.250450px;}
.y19_c02088{bottom:735.960450px;}
.y17_c02088{bottom:750.091125px;}
.y18_c02088{bottom:768.901512px;}
.y16_c02088{bottom:774.660450px;}
.y15_c02088{bottom:794.190450px;}
.y14_c02088{bottom:808.680450px;}
.y13_c02088{bottom:829.470639px;}
.y12_c02088{bottom:846.660450px;}
.y11_c02088{bottom:865.380450px;}
.y10_c02088{bottom:886.800450px;}
.yf_c02088{bottom:908.220450px;}
.ye_c02088{bottom:929.730450px;}
.yd_c02088{bottom:951.150450px;}
.yc_c02088{bottom:972.570450px;}
.yb_c02088{bottom:994.080450px;}
.ya_c02088{bottom:1015.320450px;}
.y9_c02088{bottom:1034.940450px;}
.y8_c02088{bottom:1054.920450px;}
.y7_c02088{bottom:1075.620450px;}
.y6_c02088{bottom:1097.130450px;}
.y5_c02088{bottom:1118.010450px;}
.y4_c02088{bottom:1139.250450px;}
.y1_c02088{bottom:1193.160450px;}
.h8_c02088{height:21.163887px;}
.h7_c02088{height:36.957832px;}
.h6_c02088{height:37.410293px;}
.h5_c02088{height:53.397598px;}
.h4_c02088{height:57.805840px;}
.h3_c02088{height:58.513535px;}
.h2_c02088{height:63.175781px;}
.h1_c02088{height:63.949219px;}
.h0_c02088{height:1263.000000px;}
.w1_c02088{width:892.500000px;}
.w0_c02088{width:892.830000px;}
.x0_c02088{left:0.000000px;}
.x1_c02088{left:127.620000px;}
.x3_c02088{left:135.630000px;}
.x6_c02088{left:137.520000px;}
.x4_c02088{left:263.430000px;}
.x8_c02088{left:273.870000px;}
.x5_c02088{left:309.960000px;}
.x7_c02088{left:335.160000px;}
.x2_c02088{left:437.490000px;}
.x9_c02088{left:699.120459px;}
.xa_c02088{left:720.450756px;}
@media print{
.v2_c02088{vertical-align:-19.839467pt;}
.v1_c02088{vertical-align:-15.040000pt;}
.v3_c02088{vertical-align:-4.800000pt;}
.v0_c02088{vertical-align:0.000000pt;}
.ls1d_c02088{letter-spacing:-0.160992pt;}
.ls1c_c02088{letter-spacing:-0.160320pt;}
.ls1b_c02088{letter-spacing:-0.157248pt;}
.ls1a_c02088{letter-spacing:-0.076800pt;}
.ls18_c02088{letter-spacing:-0.029280pt;}
.ls16_c02088{letter-spacing:-0.012800pt;}
.ls17_c02088{letter-spacing:-0.011712pt;}
.ls19_c02088{letter-spacing:-0.006400pt;}
.ls15_c02088{letter-spacing:0.000000pt;}
.ls13_c02088{letter-spacing:0.005856pt;}
.ls0_c02088{letter-spacing:0.006400pt;}
.lsd_c02088{letter-spacing:0.011712pt;}
.ls12_c02088{letter-spacing:0.012800pt;}
.ls5_c02088{letter-spacing:0.017568pt;}
.ls7_c02088{letter-spacing:0.019200pt;}
.ls10_c02088{letter-spacing:0.023424pt;}
.ls1_c02088{letter-spacing:0.025600pt;}
.ls14_c02088{letter-spacing:0.029280pt;}
.ls3_c02088{letter-spacing:0.035136pt;}
.ls11_c02088{letter-spacing:0.040992pt;}
.ls8_c02088{letter-spacing:0.044800pt;}
.lse_c02088{letter-spacing:0.046848pt;}
.lsc_c02088{letter-spacing:0.052704pt;}
.lsb_c02088{letter-spacing:0.058560pt;}
.ls2_c02088{letter-spacing:0.064416pt;}
.ls4_c02088{letter-spacing:0.087840pt;}
.ls1e_c02088{letter-spacing:0.093696pt;}
.ls1f_c02088{letter-spacing:0.117120pt;}
.ls20_c02088{letter-spacing:0.122976pt;}
.lsf_c02088{letter-spacing:0.128832pt;}
.ls6_c02088{letter-spacing:0.146400pt;}
.lsa_c02088{letter-spacing:0.161728pt;}
.ls9_c02088{letter-spacing:30.280320pt;}
.ws4_c02088{word-spacing:-0.128000pt;}
.ws9_c02088{word-spacing:-0.108800pt;}
.wsa_c02088{word-spacing:-0.102400pt;}
.ws16_c02088{word-spacing:-0.083200pt;}
.wsb_c02088{word-spacing:-0.076800pt;}
.ws8_c02088{word-spacing:-0.051200pt;}
.ws0_c02088{word-spacing:-0.019200pt;}
.ws15_c02088{word-spacing:-0.012800pt;}
.ws3_c02088{word-spacing:-0.006400pt;}
.ws1_c02088{word-spacing:0.000000pt;}
.ws7_c02088{word-spacing:0.006400pt;}
.ws2_c02088{word-spacing:0.012800pt;}
.ws5_c02088{word-spacing:0.017568pt;}
.wsd_c02088{word-spacing:0.023424pt;}
.wse_c02088{word-spacing:0.029280pt;}
.ws14_c02088{word-spacing:0.040992pt;}
.ws11_c02088{word-spacing:0.046848pt;}
.ws1e_c02088{word-spacing:0.052704pt;}
.ws12_c02088{word-spacing:0.058560pt;}
.wsf_c02088{word-spacing:0.070272pt;}
.ws18_c02088{word-spacing:0.076128pt;}
.ws20_c02088{word-spacing:0.696864pt;}
.ws17_c02088{word-spacing:3.882528pt;}
.ws1b_c02088{word-spacing:4.228032pt;}
.ws23_c02088{word-spacing:4.497408pt;}
.ws24_c02088{word-spacing:4.532544pt;}
.ws19_c02088{word-spacing:4.819488pt;}
.ws25_c02088{word-spacing:5.188416pt;}
.ws26_c02088{word-spacing:5.504640pt;}
.ws22_c02088{word-spacing:6.429888pt;}
.ws27_c02088{word-spacing:9.328608pt;}
.ws1f_c02088{word-spacing:12.531840pt;}
.ws1c_c02088{word-spacing:12.830496pt;}
.ws1a_c02088{word-spacing:15.407136pt;}
.ws21_c02088{word-spacing:23.084352pt;}
.ws1d_c02088{word-spacing:27.242112pt;}
.ws10_c02088{word-spacing:31.634112pt;}
.ws13_c02088{word-spacing:31.669248pt;}
.wsc_c02088{word-spacing:43.279264pt;}
.ws6_c02088{word-spacing:245.694336pt;}
._a_c02088{margin-left:-54.706752pt;}
._16_c02088{margin-left:-1.137952pt;}
._17_c02088{width:1.024800pt;}
._12_c02088{width:35.440640pt;}
._13_c02088{width:36.400640pt;}
._15_c02088{width:49.043968pt;}
._1_c02088{width:58.139616pt;}
._11_c02088{width:65.644864pt;}
._4_c02088{width:86.053376pt;}
._6_c02088{width:90.316160pt;}
._2_c02088{width:102.522816pt;}
._5_c02088{width:103.500640pt;}
._3_c02088{width:115.134080pt;}
._7_c02088{width:153.292512pt;}
._0_c02088{width:172.819200pt;}
._9_c02088{width:234.907584pt;}
._1a_c02088{width:410.146496pt;}
._1b_c02088{width:428.253248pt;}
._8_c02088{width:508.494048pt;}
._f_c02088{width:529.625600pt;}
._d_c02088{width:694.163200pt;}
._19_c02088{width:718.968512pt;}
._e_c02088{width:1016.358400pt;}
._14_c02088{width:1227.218560pt;}
._c_c02088{width:1228.211200pt;}
._18_c02088{width:1259.430464pt;}
._1c_c02088{width:1328.601280pt;}
._b_c02088{width:1592.256000pt;}
._10_c02088{width:1984.499200pt;}
.fs5_c02088{font-size:21.440000pt;}
.fs3_c02088{font-size:37.440000pt;}
.fs4_c02088{font-size:42.560000pt;}
.fs2_c02088{font-size:53.440000pt;}
.fs1_c02088{font-size:58.560000pt;}
.fs0_c02088{font-size:64.000000pt;}
.y0_c02088{bottom:0.000000pt;}
.y3_c02088{bottom:50.987067pt;}
.y2_c02088{bottom:69.387067pt;}
.y40_c02088{bottom:113.547907pt;}
.y3f_c02088{bottom:130.427827pt;}
.y3e_c02088{bottom:147.307747pt;}
.y3d_c02088{bottom:164.187667pt;}
.y3c_c02088{bottom:180.987067pt;}
.y3b_c02088{bottom:195.867067pt;}
.y42_c02088{bottom:203.948443pt;}
.y3a_c02088{bottom:204.027147pt;}
.y41_c02088{bottom:220.828363pt;}
.y39_c02088{bottom:225.947067pt;}
.y36_c02088{bottom:236.427067pt;}
.y35_c02088{bottom:244.508067pt;}
.y34_c02088{bottom:261.387987pt;}
.y33_c02088{bottom:278.267907pt;}
.y32_c02088{bottom:295.147827pt;}
.y31_c02088{bottom:312.027747pt;}
.y30_c02088{bottom:328.907667pt;}
.y2f_c02088{bottom:345.707067pt;}
.y2e_c02088{bottom:360.587067pt;}
.y2d_c02088{bottom:368.747827pt;}
.y2c_c02088{bottom:385.627747pt;}
.y38_c02088{bottom:402.347147pt;}
.y2b_c02088{bottom:402.427147pt;}
.y37_c02088{bottom:419.227067pt;}
.y2a_c02088{bottom:424.347067pt;}
.y27_c02088{bottom:434.827200pt;}
.y29_c02088{bottom:442.907147pt;}
.y26_c02088{bottom:442.987147pt;}
.y28_c02088{bottom:459.787067pt;}
.y25_c02088{bottom:464.907200pt;}
.y24_c02088{bottom:482.267067pt;}
.y23_c02088{bottom:495.067067pt;}
.y22_c02088{bottom:513.547075pt;}
.y21_c02088{bottom:528.907067pt;}
.y20_c02088{bottom:545.226627pt;}
.y1f_c02088{bottom:567.227067pt;}
.y1e_c02088{bottom:584.747067pt;}
.y1d_c02088{bottom:602.267067pt;}
.y1b_c02088{bottom:614.747147pt;}
.y1c_c02088{bottom:631.546547pt;}
.y1a_c02088{bottom:636.667067pt;}
.y19_c02088{bottom:654.187067pt;}
.y17_c02088{bottom:666.747667pt;}
.y18_c02088{bottom:683.468011pt;}
.y16_c02088{bottom:688.587067pt;}
.y15_c02088{bottom:705.947067pt;}
.y14_c02088{bottom:718.827067pt;}
.y13_c02088{bottom:737.307235pt;}
.y12_c02088{bottom:752.587067pt;}
.y11_c02088{bottom:769.227067pt;}
.y10_c02088{bottom:788.267067pt;}
.yf_c02088{bottom:807.307067pt;}
.ye_c02088{bottom:826.427067pt;}
.yd_c02088{bottom:845.467067pt;}
.yc_c02088{bottom:864.507067pt;}
.yb_c02088{bottom:883.627067pt;}
.ya_c02088{bottom:902.507067pt;}
.y9_c02088{bottom:919.947067pt;}
.y8_c02088{bottom:937.707067pt;}
.y7_c02088{bottom:956.107067pt;}
.y6_c02088{bottom:975.227067pt;}
.y5_c02088{bottom:993.787067pt;}
.y4_c02088{bottom:1012.667067pt;}
.y1_c02088{bottom:1060.587067pt;}
.h8_c02088{height:18.812344pt;}
.h7_c02088{height:32.851406pt;}
.h6_c02088{height:33.253594pt;}
.h5_c02088{height:47.464531pt;}
.h4_c02088{height:51.382969pt;}
.h3_c02088{height:52.012031pt;}
.h2_c02088{height:56.156250pt;}
.h1_c02088{height:56.843750pt;}
.h0_c02088{height:1122.666667pt;}
.w1_c02088{width:793.333333pt;}
.w0_c02088{width:793.626667pt;}
.x0_c02088{left:0.000000pt;}
.x1_c02088{left:113.440000pt;}
.x3_c02088{left:120.560000pt;}
.x6_c02088{left:122.240000pt;}
.x4_c02088{left:234.160000pt;}
.x8_c02088{left:243.440000pt;}
.x5_c02088{left:275.520000pt;}
.x7_c02088{left:297.920000pt;}
.x2_c02088{left:388.880000pt;}
.x9_c02088{left:621.440408pt;}
.xa_c02088{left:640.400672pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b12500f3f27da4030f87050c.woff2')format("woff");}.ff1_c02089{font-family:ff1_c02089;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02089;src:url('chunks/assets/font_1a91debd5ca3dbaaad8e673b.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;}
.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);}
.v2_c02089{vertical-align:-22.320000px;}
.v1_c02089{vertical-align:-16.919400px;}
.v3_c02089{vertical-align:-5.400000px;}
.v0_c02089{vertical-align:0.000000px;}
.ls10_c02089{letter-spacing:-0.181116px;}
.lse_c02089{letter-spacing:-0.180360px;}
.lsd_c02089{letter-spacing:-0.176904px;}
.lsf_c02089{letter-spacing:-0.032940px;}
.ls11_c02089{letter-spacing:-0.006588px;}
.lsc_c02089{letter-spacing:0.000000px;}
.ls4_c02089{letter-spacing:0.013176px;}
.ls5_c02089{letter-spacing:0.032940px;}
.ls6_c02089{letter-spacing:0.039528px;}
.lsa_c02089{letter-spacing:0.046116px;}
.ls3_c02089{letter-spacing:0.052704px;}
.ls8_c02089{letter-spacing:0.059292px;}
.ls9_c02089{letter-spacing:0.065880px;}
.ls0_c02089{letter-spacing:0.072468px;}
.lsb_c02089{letter-spacing:0.085644px;}
.ls2_c02089{letter-spacing:0.092232px;}
.ls7_c02089{letter-spacing:0.131760px;}
.ls1_c02089{letter-spacing:0.181944px;}
.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;}
}
.ws0_c02089{word-spacing:-0.021600px;}
.ws1_c02089{word-spacing:0.000000px;}
.ws12_c02089{word-spacing:0.006588px;}
.wsd_c02089{word-spacing:0.026352px;}
.ws9_c02089{word-spacing:0.052704px;}
.ws6_c02089{word-spacing:0.079056px;}
.ws10_c02089{word-spacing:0.810324px;}
.ws3_c02089{word-spacing:1.080432px;}
.ws4_c02089{word-spacing:1.106784px;}
.wsc_c02089{word-spacing:1.126548px;}
.ws11_c02089{word-spacing:1.831464px;}
.ws7_c02089{word-spacing:6.535296px;}
.wsf_c02089{word-spacing:8.314056px;}
.wse_c02089{word-spacing:8.320644px;}
.ws5_c02089{word-spacing:11.199600px;}
.wsa_c02089{word-spacing:12.991536px;}
.ws8_c02089{word-spacing:13.057416px;}
.wsb_c02089{word-spacing:24.171372px;}
.ws2_c02089{word-spacing:48.689172px;}
._7_c02089{margin-left:-1.273608px;}
._6_c02089{width:1.561356px;}
._2_c02089{width:39.870720px;}
._3_c02089{width:40.950720px;}
._5_c02089{width:55.174464px;}
._1_c02089{width:73.850472px;}
._0_c02089{width:194.421600px;}
._4_c02089{width:1465.940880px;}
.fc0_c02089{color:rgb(0,0,0);}
.fs1_c02089{font-size:42.120000px;}
.fs4_c02089{font-size:47.880000px;}
.fs5_c02089{font-size:54.000000px;}
.fs2_c02089{font-size:60.120000px;}
.fs3_c02089{font-size:65.880000px;}
.fs0_c02089{font-size:72.000000px;}
.y0_c02089{bottom:0.000000px;}
.y3_c02089{bottom:57.360450px;}
.y2_c02089{bottom:78.060450px;}
.y34_c02089{bottom:115.410450px;}
.y33_c02089{bottom:139.170450px;}
.y32_c02089{bottom:170.310450px;}
.y31_c02089{bottom:201.360450px;}
.y30_c02089{bottom:232.410450px;}
.y2f_c02089{bottom:263.460450px;}
.y2e_c02089{bottom:294.510450px;}
.y2d_c02089{bottom:325.560450px;}
.y2c_c02089{bottom:356.610450px;}
.y2b_c02089{bottom:387.660450px;}
.y2a_c02089{bottom:418.710450px;}
.y29_c02089{bottom:449.760450px;}
.y28_c02089{bottom:480.810450px;}
.y27_c02089{bottom:511.860450px;}
.y26_c02089{bottom:542.910450px;}
.y25_c02089{bottom:573.960450px;}
.y24_c02089{bottom:605.010450px;}
.y23_c02089{bottom:636.060450px;}
.y22_c02089{bottom:667.110450px;}
.y21_c02089{bottom:686.820450px;}
.y20_c02089{bottom:702.390000px;}
.y1f_c02089{bottom:717.870450px;}
.y1e_c02089{bottom:733.440000px;}
.y1d_c02089{bottom:748.920450px;}
.y1c_c02089{bottom:764.490000px;}
.y1b_c02089{bottom:779.970450px;}
.y19_c02089{bottom:796.980540px;}
.y18_c02089{bottom:815.970450px;}
.y17_c02089{bottom:834.960450px;}
.y16_c02089{bottom:853.950450px;}
.y15_c02089{bottom:872.851485px;}
.y14_c02089{bottom:891.841395px;}
.y13_c02089{bottom:910.831305px;}
.y12_c02089{bottom:929.821215px;}
.y11_c02089{bottom:948.811125px;}
.y1a_c02089{bottom:967.621269px;}
.y10_c02089{bottom:973.380450px;}
.ye_c02089{bottom:987.511125px;}
.yd_c02089{bottom:1006.410450px;}
.yc_c02089{bottom:1025.400540px;}
.yf_c02089{bottom:1044.301332px;}
.yb_c02089{bottom:1050.060450px;}
.y8_c02089{bottom:1064.100720px;}
.y7_c02089{bottom:1083.090630px;}
.ya_c02089{bottom:1101.991602px;}
.y6_c02089{bottom:1102.080540px;}
.y9_c02089{bottom:1120.981512px;}
.y5_c02089{bottom:1126.740450px;}
.y4_c02089{bottom:1146.270450px;}
.y1_c02089{bottom:1193.160450px;}
.h4_c02089{height:36.957832px;}
.h3_c02089{height:37.410293px;}
.h7_c02089{height:47.961914px;}
.h5_c02089{height:57.805840px;}
.h6_c02089{height:58.513535px;}
.h2_c02089{height:63.175781px;}
.h1_c02089{height:63.949219px;}
.h0_c02089{height:1263.000000px;}
.w1_c02089{width:892.500000px;}
.w0_c02089{width:892.830000px;}
.x0_c02089{left:0.000000px;}
.x1_c02089{left:127.620000px;}
.x3_c02089{left:135.630000px;}
.x4_c02089{left:273.870000px;}
.x2_c02089{left:437.490000px;}
.x5_c02089{left:720.989325px;}
@media print{
.v2_c02089{vertical-align:-19.840000pt;}
.v1_c02089{vertical-align:-15.039467pt;}
.v3_c02089{vertical-align:-4.800000pt;}
.v0_c02089{vertical-align:0.000000pt;}
.ls10_c02089{letter-spacing:-0.160992pt;}
.lse_c02089{letter-spacing:-0.160320pt;}
.lsd_c02089{letter-spacing:-0.157248pt;}
.lsf_c02089{letter-spacing:-0.029280pt;}
.ls11_c02089{letter-spacing:-0.005856pt;}
.lsc_c02089{letter-spacing:0.000000pt;}
.ls4_c02089{letter-spacing:0.011712pt;}
.ls5_c02089{letter-spacing:0.029280pt;}
.ls6_c02089{letter-spacing:0.035136pt;}
.lsa_c02089{letter-spacing:0.040992pt;}
.ls3_c02089{letter-spacing:0.046848pt;}
.ls8_c02089{letter-spacing:0.052704pt;}
.ls9_c02089{letter-spacing:0.058560pt;}
.ls0_c02089{letter-spacing:0.064416pt;}
.lsb_c02089{letter-spacing:0.076128pt;}
.ls2_c02089{letter-spacing:0.081984pt;}
.ls7_c02089{letter-spacing:0.117120pt;}
.ls1_c02089{letter-spacing:0.161728pt;}
.ws0_c02089{word-spacing:-0.019200pt;}
.ws1_c02089{word-spacing:0.000000pt;}
.ws12_c02089{word-spacing:0.005856pt;}
.wsd_c02089{word-spacing:0.023424pt;}
.ws9_c02089{word-spacing:0.046848pt;}
.ws6_c02089{word-spacing:0.070272pt;}
.ws10_c02089{word-spacing:0.720288pt;}
.ws3_c02089{word-spacing:0.960384pt;}
.ws4_c02089{word-spacing:0.983808pt;}
.wsc_c02089{word-spacing:1.001376pt;}
.ws11_c02089{word-spacing:1.627968pt;}
.ws7_c02089{word-spacing:5.809152pt;}
.wsf_c02089{word-spacing:7.390272pt;}
.wse_c02089{word-spacing:7.396128pt;}
.ws5_c02089{word-spacing:9.955200pt;}
.wsa_c02089{word-spacing:11.548032pt;}
.ws8_c02089{word-spacing:11.606592pt;}
.wsb_c02089{word-spacing:21.485664pt;}
.ws2_c02089{word-spacing:43.279264pt;}
._7_c02089{margin-left:-1.132096pt;}
._6_c02089{width:1.387872pt;}
._2_c02089{width:35.440640pt;}
._3_c02089{width:36.400640pt;}
._5_c02089{width:49.043968pt;}
._1_c02089{width:65.644864pt;}
._0_c02089{width:172.819200pt;}
._4_c02089{width:1303.058560pt;}
.fs1_c02089{font-size:37.440000pt;}
.fs4_c02089{font-size:42.560000pt;}
.fs5_c02089{font-size:48.000000pt;}
.fs2_c02089{font-size:53.440000pt;}
.fs3_c02089{font-size:58.560000pt;}
.fs0_c02089{font-size:64.000000pt;}
.y0_c02089{bottom:0.000000pt;}
.y3_c02089{bottom:50.987067pt;}
.y2_c02089{bottom:69.387067pt;}
.y34_c02089{bottom:102.587067pt;}
.y33_c02089{bottom:123.707067pt;}
.y32_c02089{bottom:151.387067pt;}
.y31_c02089{bottom:178.987067pt;}
.y30_c02089{bottom:206.587067pt;}
.y2f_c02089{bottom:234.187067pt;}
.y2e_c02089{bottom:261.787067pt;}
.y2d_c02089{bottom:289.387067pt;}
.y2c_c02089{bottom:316.987067pt;}
.y2b_c02089{bottom:344.587067pt;}
.y2a_c02089{bottom:372.187067pt;}
.y29_c02089{bottom:399.787067pt;}
.y28_c02089{bottom:427.387067pt;}
.y27_c02089{bottom:454.987067pt;}
.y26_c02089{bottom:482.587067pt;}
.y25_c02089{bottom:510.187067pt;}
.y24_c02089{bottom:537.787067pt;}
.y23_c02089{bottom:565.387067pt;}
.y22_c02089{bottom:592.987067pt;}
.y21_c02089{bottom:610.507067pt;}
.y20_c02089{bottom:624.346667pt;}
.y1f_c02089{bottom:638.107067pt;}
.y1e_c02089{bottom:651.946667pt;}
.y1d_c02089{bottom:665.707067pt;}
.y1c_c02089{bottom:679.546667pt;}
.y1b_c02089{bottom:693.307067pt;}
.y19_c02089{bottom:708.427147pt;}
.y18_c02089{bottom:725.307067pt;}
.y17_c02089{bottom:742.187067pt;}
.y16_c02089{bottom:759.067067pt;}
.y15_c02089{bottom:775.867987pt;}
.y14_c02089{bottom:792.747907pt;}
.y13_c02089{bottom:809.627827pt;}
.y12_c02089{bottom:826.507747pt;}
.y11_c02089{bottom:843.387667pt;}
.y1a_c02089{bottom:860.107795pt;}
.y10_c02089{bottom:865.227067pt;}
.ye_c02089{bottom:877.787667pt;}
.yd_c02089{bottom:894.587067pt;}
.yc_c02089{bottom:911.467147pt;}
.yf_c02089{bottom:928.267851pt;}
.yb_c02089{bottom:933.387067pt;}
.y8_c02089{bottom:945.867307pt;}
.y7_c02089{bottom:962.747227pt;}
.ya_c02089{bottom:979.548091pt;}
.y6_c02089{bottom:979.627147pt;}
.y9_c02089{bottom:996.428011pt;}
.y5_c02089{bottom:1001.547067pt;}
.y4_c02089{bottom:1018.907067pt;}
.y1_c02089{bottom:1060.587067pt;}
.h4_c02089{height:32.851406pt;}
.h3_c02089{height:33.253594pt;}
.h7_c02089{height:42.632812pt;}
.h5_c02089{height:51.382969pt;}
.h6_c02089{height:52.012031pt;}
.h2_c02089{height:56.156250pt;}
.h1_c02089{height:56.843750pt;}
.h0_c02089{height:1122.666667pt;}
.w1_c02089{width:793.333333pt;}
.w0_c02089{width:793.626667pt;}
.x0_c02089{left:0.000000pt;}
.x1_c02089{left:113.440000pt;}
.x3_c02089{left:120.560000pt;}
.x4_c02089{left:243.440000pt;}
.x2_c02089{left:388.880000pt;}
.x5_c02089{left:640.879400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0755dd0ee3be791c08644f77.woff2')format("woff");}.ff1_c02090{font-family:ff1_c02090;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02090;src:url('chunks/assets/font_683dca7ceac6605acd47761b.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02090{font-family:ff3_c02090;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_c02090;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02090{font-family:ff4_c02090;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;}
.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);}
.v2_c02090{vertical-align:-11.159400px;}
.v0_c02090{vertical-align:0.000000px;}
.v1_c02090{vertical-align:11.160000px;}
.ls14_c02090{letter-spacing:-0.561600px;}
.ls1a_c02090{letter-spacing:-0.270540px;}
.ls17_c02090{letter-spacing:-0.180360px;}
.ls19_c02090{letter-spacing:-0.090180px;}
.ls15_c02090{letter-spacing:-0.086400px;}
.ls18_c02090{letter-spacing:-0.030060px;}
.ls16_c02090{letter-spacing:-0.024048px;}
.ls11_c02090{letter-spacing:-0.021600px;}
.ls10_c02090{letter-spacing:-0.014400px;}
.ls12_c02090{letter-spacing:-0.007200px;}
.lsf_c02090{letter-spacing:0.000000px;}
.ls6_c02090{letter-spacing:0.007200px;}
.ls3_c02090{letter-spacing:0.014400px;}
.ls1_c02090{letter-spacing:0.021600px;}
.ls5_c02090{letter-spacing:0.028800px;}
.lsd_c02090{letter-spacing:0.036000px;}
.ls8_c02090{letter-spacing:0.043200px;}
.ls9_c02090{letter-spacing:0.048096px;}
.ls2_c02090{letter-spacing:0.050400px;}
.ls0_c02090{letter-spacing:0.064800px;}
.ls7_c02090{letter-spacing:0.072000px;}
.ls4_c02090{letter-spacing:0.079200px;}
.lsc_c02090{letter-spacing:0.090180px;}
.ls13_c02090{letter-spacing:0.115200px;}
.ls1c_c02090{letter-spacing:0.138276px;}
.ls1b_c02090{letter-spacing:0.144288px;}
.lsa_c02090{letter-spacing:0.180360px;}
.lsb_c02090{letter-spacing:125.370036px;}
.lse_c02090{letter-spacing:1557.810000px;}
.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;}
}
.ws2_c02090{word-spacing:-60.120000px;}
.ws1_c02090{word-spacing:-18.115200px;}
.ws0_c02090{word-spacing:-18.000000px;}
.ws1c_c02090{word-spacing:-0.450900px;}
.ws24_c02090{word-spacing:-0.408816px;}
.ws1d_c02090{word-spacing:-0.223200px;}
.ws23_c02090{word-spacing:-0.208800px;}
.ws20_c02090{word-spacing:-0.201600px;}
.ws21_c02090{word-spacing:-0.172800px;}
.ws1e_c02090{word-spacing:-0.122400px;}
.ws22_c02090{word-spacing:-0.115200px;}
.ws14_c02090{word-spacing:-0.108000px;}
.ws1f_c02090{word-spacing:-0.093600px;}
.ws11_c02090{word-spacing:-0.079200px;}
.wsc_c02090{word-spacing:-0.064800px;}
.wsb_c02090{word-spacing:-0.057600px;}
.ws3_c02090{word-spacing:-0.021600px;}
.ws12_c02090{word-spacing:-0.007200px;}
.ws4_c02090{word-spacing:0.000000px;}
.ws15_c02090{word-spacing:0.007200px;}
.ws5_c02090{word-spacing:0.014400px;}
.ws13_c02090{word-spacing:0.021600px;}
.ws1b_c02090{word-spacing:0.180360px;}
.ws16_c02090{word-spacing:0.223200px;}
.ws17_c02090{word-spacing:0.316800px;}
.wsf_c02090{word-spacing:1.065600px;}
.ws10_c02090{word-spacing:1.101600px;}
.ws9_c02090{word-spacing:1.360800px;}
.ws6_c02090{word-spacing:1.368000px;}
.ws8_c02090{word-spacing:1.375200px;}
.ws7_c02090{word-spacing:1.440000px;}
.wsa_c02090{word-spacing:5.349600px;}
.ws18_c02090{word-spacing:10.620000px;}
.ws19_c02090{word-spacing:10.807200px;}
.ws1a_c02090{word-spacing:11.361600px;}
.wse_c02090{word-spacing:12.787200px;}
.wsd_c02090{word-spacing:13.024800px;}
._1_c02090{margin-left:-1.159200px;}
._2_c02090{width:1.260000px;}
._3_c02090{width:47.275200px;}
._e_c02090{width:49.450896px;}
._6_c02090{width:50.760000px;}
._10_c02090{width:52.468920px;}
._a_c02090{width:86.558400px;}
._b_c02090{width:132.588000px;}
._0_c02090{width:194.421600px;}
._c_c02090{width:196.056000px;}
._d_c02090{width:220.284000px;}
._4_c02090{width:295.804800px;}
._7_c02090{width:322.092000px;}
._5_c02090{width:389.636640px;}
._9_c02090{width:440.582400px;}
._8_c02090{width:645.876000px;}
._f_c02090{width:1128.816000px;}
.fc0_c02090{color:rgb(0,0,0);}
.fs4_c02090{font-size:2.880000px;}
.fs2_c02090{font-size:29.880000px;}
.fs1_c02090{font-size:47.880000px;}
.fs5_c02090{font-size:54.000000px;}
.fs3_c02090{font-size:60.120000px;}
.fs0_c02090{font-size:72.000000px;}
.y0_c02090{bottom:0.000000px;}
.y3_c02090{bottom:57.360450px;}
.y2_c02090{bottom:78.060450px;}
.y35_c02090{bottom:119.730450px;}
.y34_c02090{bottom:139.530000px;}
.y33_c02090{bottom:155.010450px;}
.y32_c02090{bottom:170.580000px;}
.y31_c02090{bottom:186.060450px;}
.y30_c02090{bottom:201.630000px;}
.y2f_c02090{bottom:217.110450px;}
.y2e_c02090{bottom:232.590900px;}
.y2d_c02090{bottom:248.160450px;}
.y2c_c02090{bottom:263.640900px;}
.y2b_c02090{bottom:279.210450px;}
.y2a_c02090{bottom:294.690900px;}
.y29_c02090{bottom:310.260450px;}
.y28_c02090{bottom:326.730450px;}
.y27_c02090{bottom:390.000600px;}
.y26_c02090{bottom:394.050450px;}
.y25_c02090{bottom:415.470450px;}
.y24_c02090{bottom:431.850450px;}
.y23_c02090{bottom:442.740450px;}
.y22_c02090{bottom:461.190600px;}
.y21_c02090{bottom:472.800450px;}
.y20_c02090{bottom:494.310450px;}
.y1f_c02090{bottom:515.730450px;}
.y1e_c02090{bottom:537.150450px;}
.y1d_c02090{bottom:558.660450px;}
.y1c_c02090{bottom:580.080450px;}
.y1b_c02090{bottom:601.500450px;}
.y1a_c02090{bottom:622.290450px;}
.y19_c02090{bottom:639.570450px;}
.y18_c02090{bottom:654.060450px;}
.y17_c02090{bottom:673.410450px;}
.y16_c02090{bottom:684.300450px;}
.y15_c02090{bottom:705.000450px;}
.y14_c02090{bottom:725.700450px;}
.y13_c02090{bottom:746.940450px;}
.y12_c02090{bottom:768.360600px;}
.y11_c02090{bottom:789.870450px;}
.y10_c02090{bottom:810.570450px;}
.yf_c02090{bottom:841.800450px;}
.ye_c02090{bottom:872.850450px;}
.yd_c02090{bottom:903.900450px;}
.yc_c02090{bottom:934.950450px;}
.yb_c02090{bottom:965.910450px;}
.ya_c02090{bottom:996.960450px;}
.y9_c02090{bottom:1028.010450px;}
.y8_c02090{bottom:1059.060450px;}
.y7_c02090{bottom:1085.520450px;}
.y6_c02090{bottom:1100.280450px;}
.y5_c02090{bottom:1121.790600px;}
.y4_c02090{bottom:1139.880450px;}
.y1_c02090{bottom:1193.160450px;}
.hb_c02090{height:2.557969px;}
.h5_c02090{height:26.217949px;}
.ha_c02090{height:26.538926px;}
.h4_c02090{height:42.011895px;}
.h3_c02090{height:42.526230px;}
.hc_c02090{height:47.961914px;}
.h7_c02090{height:53.397598px;}
.h2_c02090{height:63.175781px;}
.h1_c02090{height:63.949219px;}
.h6_c02090{height:64.557598px;}
.h8_c02090{height:64.631777px;}
.h9_c02090{height:64.632377px;}
.h0_c02090{height:1263.000000px;}
.w1_c02090{width:892.500000px;}
.w0_c02090{width:892.830000px;}
.x0_c02090{left:0.000000px;}
.x4_c02090{left:117.000000px;}
.x1_c02090{left:127.620000px;}
.x5_c02090{left:135.630000px;}
.x6_c02090{left:138.150000px;}
.x7_c02090{left:146.340000px;}
.x3_c02090{left:148.950000px;}
.xa_c02090{left:156.960000px;}
.x2_c02090{left:437.490000px;}
.x9_c02090{left:699.120000px;}
.x8_c02090{left:724.500000px;}
@media print{
.v2_c02090{vertical-align:-9.919467pt;}
.v0_c02090{vertical-align:0.000000pt;}
.v1_c02090{vertical-align:9.920000pt;}
.ls14_c02090{letter-spacing:-0.499200pt;}
.ls1a_c02090{letter-spacing:-0.240480pt;}
.ls17_c02090{letter-spacing:-0.160320pt;}
.ls19_c02090{letter-spacing:-0.080160pt;}
.ls15_c02090{letter-spacing:-0.076800pt;}
.ls18_c02090{letter-spacing:-0.026720pt;}
.ls16_c02090{letter-spacing:-0.021376pt;}
.ls11_c02090{letter-spacing:-0.019200pt;}
.ls10_c02090{letter-spacing:-0.012800pt;}
.ls12_c02090{letter-spacing:-0.006400pt;}
.lsf_c02090{letter-spacing:0.000000pt;}
.ls6_c02090{letter-spacing:0.006400pt;}
.ls3_c02090{letter-spacing:0.012800pt;}
.ls1_c02090{letter-spacing:0.019200pt;}
.ls5_c02090{letter-spacing:0.025600pt;}
.lsd_c02090{letter-spacing:0.032000pt;}
.ls8_c02090{letter-spacing:0.038400pt;}
.ls9_c02090{letter-spacing:0.042752pt;}
.ls2_c02090{letter-spacing:0.044800pt;}
.ls0_c02090{letter-spacing:0.057600pt;}
.ls7_c02090{letter-spacing:0.064000pt;}
.ls4_c02090{letter-spacing:0.070400pt;}
.lsc_c02090{letter-spacing:0.080160pt;}
.ls13_c02090{letter-spacing:0.102400pt;}
.ls1c_c02090{letter-spacing:0.122912pt;}
.ls1b_c02090{letter-spacing:0.128256pt;}
.lsa_c02090{letter-spacing:0.160320pt;}
.lsb_c02090{letter-spacing:111.440032pt;}
.lse_c02090{letter-spacing:1384.720000pt;}
.ws2_c02090{word-spacing:-53.440000pt;}
.ws1_c02090{word-spacing:-16.102400pt;}
.ws0_c02090{word-spacing:-16.000000pt;}
.ws1c_c02090{word-spacing:-0.400800pt;}
.ws24_c02090{word-spacing:-0.363392pt;}
.ws1d_c02090{word-spacing:-0.198400pt;}
.ws23_c02090{word-spacing:-0.185600pt;}
.ws20_c02090{word-spacing:-0.179200pt;}
.ws21_c02090{word-spacing:-0.153600pt;}
.ws1e_c02090{word-spacing:-0.108800pt;}
.ws22_c02090{word-spacing:-0.102400pt;}
.ws14_c02090{word-spacing:-0.096000pt;}
.ws1f_c02090{word-spacing:-0.083200pt;}
.ws11_c02090{word-spacing:-0.070400pt;}
.wsc_c02090{word-spacing:-0.057600pt;}
.wsb_c02090{word-spacing:-0.051200pt;}
.ws3_c02090{word-spacing:-0.019200pt;}
.ws12_c02090{word-spacing:-0.006400pt;}
.ws4_c02090{word-spacing:0.000000pt;}
.ws15_c02090{word-spacing:0.006400pt;}
.ws5_c02090{word-spacing:0.012800pt;}
.ws13_c02090{word-spacing:0.019200pt;}
.ws1b_c02090{word-spacing:0.160320pt;}
.ws16_c02090{word-spacing:0.198400pt;}
.ws17_c02090{word-spacing:0.281600pt;}
.wsf_c02090{word-spacing:0.947200pt;}
.ws10_c02090{word-spacing:0.979200pt;}
.ws9_c02090{word-spacing:1.209600pt;}
.ws6_c02090{word-spacing:1.216000pt;}
.ws8_c02090{word-spacing:1.222400pt;}
.ws7_c02090{word-spacing:1.280000pt;}
.wsa_c02090{word-spacing:4.755200pt;}
.ws18_c02090{word-spacing:9.440000pt;}
.ws19_c02090{word-spacing:9.606400pt;}
.ws1a_c02090{word-spacing:10.099200pt;}
.wse_c02090{word-spacing:11.366400pt;}
.wsd_c02090{word-spacing:11.577600pt;}
._1_c02090{margin-left:-1.030400pt;}
._2_c02090{width:1.120000pt;}
._3_c02090{width:42.022400pt;}
._e_c02090{width:43.956352pt;}
._6_c02090{width:45.120000pt;}
._10_c02090{width:46.639040pt;}
._a_c02090{width:76.940800pt;}
._b_c02090{width:117.856000pt;}
._0_c02090{width:172.819200pt;}
._c_c02090{width:174.272000pt;}
._d_c02090{width:195.808000pt;}
._4_c02090{width:262.937600pt;}
._7_c02090{width:286.304000pt;}
._5_c02090{width:346.343680pt;}
._9_c02090{width:391.628800pt;}
._8_c02090{width:574.112000pt;}
._f_c02090{width:1003.392000pt;}
.fs4_c02090{font-size:2.560000pt;}
.fs2_c02090{font-size:26.560000pt;}
.fs1_c02090{font-size:42.560000pt;}
.fs5_c02090{font-size:48.000000pt;}
.fs3_c02090{font-size:53.440000pt;}
.fs0_c02090{font-size:64.000000pt;}
.y0_c02090{bottom:0.000000pt;}
.y3_c02090{bottom:50.987067pt;}
.y2_c02090{bottom:69.387067pt;}
.y35_c02090{bottom:106.427067pt;}
.y34_c02090{bottom:124.026667pt;}
.y33_c02090{bottom:137.787067pt;}
.y32_c02090{bottom:151.626667pt;}
.y31_c02090{bottom:165.387067pt;}
.y30_c02090{bottom:179.226667pt;}
.y2f_c02090{bottom:192.987067pt;}
.y2e_c02090{bottom:206.747467pt;}
.y2d_c02090{bottom:220.587067pt;}
.y2c_c02090{bottom:234.347467pt;}
.y2b_c02090{bottom:248.187067pt;}
.y2a_c02090{bottom:261.947467pt;}
.y29_c02090{bottom:275.787067pt;}
.y28_c02090{bottom:290.427067pt;}
.y27_c02090{bottom:346.667200pt;}
.y26_c02090{bottom:350.267067pt;}
.y25_c02090{bottom:369.307067pt;}
.y24_c02090{bottom:383.867067pt;}
.y23_c02090{bottom:393.547067pt;}
.y22_c02090{bottom:409.947200pt;}
.y21_c02090{bottom:420.267067pt;}
.y20_c02090{bottom:439.387067pt;}
.y1f_c02090{bottom:458.427067pt;}
.y1e_c02090{bottom:477.467067pt;}
.y1d_c02090{bottom:496.587067pt;}
.y1c_c02090{bottom:515.627067pt;}
.y1b_c02090{bottom:534.667067pt;}
.y1a_c02090{bottom:553.147067pt;}
.y19_c02090{bottom:568.507067pt;}
.y18_c02090{bottom:581.387067pt;}
.y17_c02090{bottom:598.587067pt;}
.y16_c02090{bottom:608.267067pt;}
.y15_c02090{bottom:626.667067pt;}
.y14_c02090{bottom:645.067067pt;}
.y13_c02090{bottom:663.947067pt;}
.y12_c02090{bottom:682.987200pt;}
.y11_c02090{bottom:702.107067pt;}
.y10_c02090{bottom:720.507067pt;}
.yf_c02090{bottom:748.267067pt;}
.ye_c02090{bottom:775.867067pt;}
.yd_c02090{bottom:803.467067pt;}
.yc_c02090{bottom:831.067067pt;}
.yb_c02090{bottom:858.587067pt;}
.ya_c02090{bottom:886.187067pt;}
.y9_c02090{bottom:913.787067pt;}
.y8_c02090{bottom:941.387067pt;}
.y7_c02090{bottom:964.907067pt;}
.y6_c02090{bottom:978.027067pt;}
.y5_c02090{bottom:997.147200pt;}
.y4_c02090{bottom:1013.227067pt;}
.y1_c02090{bottom:1060.587067pt;}
.hb_c02090{height:2.273750pt;}
.h5_c02090{height:23.304844pt;}
.ha_c02090{height:23.590156pt;}
.h4_c02090{height:37.343906pt;}
.h3_c02090{height:37.801094pt;}
.hc_c02090{height:42.632812pt;}
.h7_c02090{height:47.464531pt;}
.h2_c02090{height:56.156250pt;}
.h1_c02090{height:56.843750pt;}
.h6_c02090{height:57.384531pt;}
.h8_c02090{height:57.450469pt;}
.h9_c02090{height:57.451002pt;}
.h0_c02090{height:1122.666667pt;}
.w1_c02090{width:793.333333pt;}
.w0_c02090{width:793.626667pt;}
.x0_c02090{left:0.000000pt;}
.x4_c02090{left:104.000000pt;}
.x1_c02090{left:113.440000pt;}
.x5_c02090{left:120.560000pt;}
.x6_c02090{left:122.800000pt;}
.x7_c02090{left:130.080000pt;}
.x3_c02090{left:132.400000pt;}
.xa_c02090{left:139.520000pt;}
.x2_c02090{left:388.880000pt;}
.x9_c02090{left:621.440000pt;}
.x8_c02090{left:644.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_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_bc03938c13c5c03321a9e16c.woff2')format("woff");}.ff1_c02091{font-family:ff1_c02091;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02091;src:url('chunks/assets/font_92de4e0c7aa0f2d4e7dc9bce.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_07871789d0e2a78c17d36020.woff2')format("woff");}.ff3_c02091{font-family:ff3_c02091;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_c02091;src:url('chunks/assets/font_5597b872cd55b0eaabffd5d5.woff2')format("woff");}.ff4_c02091{font-family:ff4_c02091;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_c02091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02091{vertical-align:-9.000000px;}
.v0_c02091{vertical-align:0.000000px;}
.v2_c02091{vertical-align:5.760000px;}
.ls12_c02091{letter-spacing:-0.028800px;}
.ls14_c02091{letter-spacing:-0.021600px;}
.ls11_c02091{letter-spacing:-0.014400px;}
.ls10_c02091{letter-spacing:-0.007200px;}
.lsf_c02091{letter-spacing:0.000000px;}
.ls4_c02091{letter-spacing:0.007200px;}
.ls3_c02091{letter-spacing:0.014400px;}
.lsc_c02091{letter-spacing:0.021600px;}
.ls9_c02091{letter-spacing:0.028800px;}
.ls6_c02091{letter-spacing:0.032940px;}
.lse_c02091{letter-spacing:0.036000px;}
.ls13_c02091{letter-spacing:0.046116px;}
.lsa_c02091{letter-spacing:0.050400px;}
.ls7_c02091{letter-spacing:0.059292px;}
.lsd_c02091{letter-spacing:0.064800px;}
.ls5_c02091{letter-spacing:0.065880px;}
.ls8_c02091{letter-spacing:0.079056px;}
.lsb_c02091{letter-spacing:0.079200px;}
.ls0_c02091{letter-spacing:0.093600px;}
.ls1_c02091{letter-spacing:0.144000px;}
.ls2_c02091{letter-spacing:0.180000px;}
.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;}
}
.ws20_c02091{word-spacing:-0.410400px;}
.ws1b_c02091{word-spacing:-0.374400px;}
.ws21_c02091{word-spacing:-0.302400px;}
.ws16_c02091{word-spacing:-0.244800px;}
.ws1a_c02091{word-spacing:-0.208800px;}
.wse_c02091{word-spacing:-0.136800px;}
.ws1c_c02091{word-spacing:-0.122400px;}
.ws15_c02091{word-spacing:-0.108000px;}
.ws23_c02091{word-spacing:-0.100800px;}
.wsd_c02091{word-spacing:-0.086400px;}
.ws13_c02091{word-spacing:-0.079200px;}
.ws22_c02091{word-spacing:-0.072000px;}
.ws0_c02091{word-spacing:-0.021600px;}
.ws14_c02091{word-spacing:-0.014400px;}
.ws6_c02091{word-spacing:-0.007200px;}
.ws1_c02091{word-spacing:0.000000px;}
.ws2_c02091{word-spacing:0.007200px;}
.wsc_c02091{word-spacing:0.013176px;}
.ws7_c02091{word-spacing:0.014400px;}
.ws9_c02091{word-spacing:0.026352px;}
.wsb_c02091{word-spacing:0.032940px;}
.ws8_c02091{word-spacing:0.046116px;}
.wsa_c02091{word-spacing:0.059292px;}
.ws11_c02091{word-spacing:3.189600px;}
.ws12_c02091{word-spacing:3.240000px;}
.ws10_c02091{word-spacing:5.234400px;}
.wsf_c02091{word-spacing:5.277600px;}
.ws1e_c02091{word-spacing:7.416000px;}
.ws1f_c02091{word-spacing:7.488000px;}
.ws1d_c02091{word-spacing:7.545600px;}
.ws4_c02091{word-spacing:11.073600px;}
.ws3_c02091{word-spacing:11.145600px;}
.ws19_c02091{word-spacing:16.761600px;}
.ws18_c02091{word-spacing:16.819200px;}
.ws17_c02091{word-spacing:16.948800px;}
.ws5_c02091{word-spacing:45.374400px;}
._5_c02091{margin-left:-1.014552px;}
._2_c02091{width:112.096800px;}
._3_c02091{width:116.056800px;}
._1_c02091{width:165.024000px;}
._0_c02091{width:194.421600px;}
._4_c02091{width:278.236800px;}
.fc0_c02091{color:rgb(0,0,0);}
.fs1_c02091{font-size:47.880000px;}
.fs2_c02091{font-size:65.880000px;}
.fs0_c02091{font-size:72.000000px;}
.y0_c02091{bottom:0.000000px;}
.y3_c02091{bottom:57.360450px;}
.y2_c02091{bottom:78.060450px;}
.y36_c02091{bottom:113.790450px;}
.y35_c02091{bottom:134.490450px;}
.y34_c02091{bottom:155.190450px;}
.y33_c02091{bottom:175.890450px;}
.y32_c02091{bottom:196.590450px;}
.y31_c02091{bottom:217.290450px;}
.y30_c02091{bottom:237.990450px;}
.y2f_c02091{bottom:258.690450px;}
.y2e_c02091{bottom:279.390450px;}
.y2d_c02091{bottom:300.090450px;}
.y2c_c02091{bottom:320.790450px;}
.y2b_c02091{bottom:342.390450px;}
.y2a_c02091{bottom:363.090450px;}
.y29_c02091{bottom:384.330450px;}
.y28_c02091{bottom:406.020600px;}
.y27_c02091{bottom:426.630450px;}
.y26_c02091{bottom:447.330450px;}
.y25_c02091{bottom:468.030600px;}
.y24_c02091{bottom:489.360600px;}
.y23_c02091{bottom:510.960600px;}
.y22_c02091{bottom:531.660450px;}
.y21_c02091{bottom:552.360450px;}
.y20_c02091{bottom:573.600450px;}
.y1f_c02091{bottom:595.290450px;}
.y1e_c02091{bottom:615.990450px;}
.y1d_c02091{bottom:636.690450px;}
.y1c_c02091{bottom:657.390450px;}
.y1b_c02091{bottom:678.090450px;}
.y1a_c02091{bottom:698.790450px;}
.y19_c02091{bottom:719.490450px;}
.y18_c02091{bottom:740.190450px;}
.y17_c02091{bottom:761.430450px;}
.y16_c02091{bottom:783.030450px;}
.y15_c02091{bottom:804.270450px;}
.y14_c02091{bottom:825.512250px;}
.y13_c02091{bottom:844.411575px;}
.y12_c02091{bottom:863.401485px;}
.y11_c02091{bottom:882.391395px;}
.y10_c02091{bottom:901.381305px;}
.yf_c02091{bottom:920.371215px;}
.ye_c02091{bottom:939.361125px;}
.yd_c02091{bottom:956.820450px;}
.yc_c02091{bottom:978.330450px;}
.yb_c02091{bottom:999.030450px;}
.ya_c02091{bottom:1020.450450px;}
.y9_c02091{bottom:1041.870450px;}
.y8_c02091{bottom:1063.470450px;}
.y7_c02091{bottom:1084.170450px;}
.y6_c02091{bottom:1104.780450px;}
.y5_c02091{bottom:1124.850450px;}
.y4_c02091{bottom:1139.970450px;}
.y1_c02091{bottom:1193.160450px;}
.h3_c02091{height:42.526230px;}
.h7_c02091{height:58.513535px;}
.h2_c02091{height:63.175781px;}
.h8_c02091{height:63.942019px;}
.h1_c02091{height:63.949219px;}
.h6_c02091{height:64.273535px;}
.h5_c02091{height:70.628906px;}
.h4_c02091{height:70.988906px;}
.h0_c02091{height:1263.000000px;}
.w1_c02091{width:892.500000px;}
.w0_c02091{width:892.830000px;}
.x0_c02091{left:0.000000px;}
.x1_c02091{left:127.620000px;}
.x3_c02091{left:135.630000px;}
.x4_c02091{left:252.630000px;}
.x2_c02091{left:437.490000px;}
@media print{
.v1_c02091{vertical-align:-8.000000pt;}
.v0_c02091{vertical-align:0.000000pt;}
.v2_c02091{vertical-align:5.120000pt;}
.ls12_c02091{letter-spacing:-0.025600pt;}
.ls14_c02091{letter-spacing:-0.019200pt;}
.ls11_c02091{letter-spacing:-0.012800pt;}
.ls10_c02091{letter-spacing:-0.006400pt;}
.lsf_c02091{letter-spacing:0.000000pt;}
.ls4_c02091{letter-spacing:0.006400pt;}
.ls3_c02091{letter-spacing:0.012800pt;}
.lsc_c02091{letter-spacing:0.019200pt;}
.ls9_c02091{letter-spacing:0.025600pt;}
.ls6_c02091{letter-spacing:0.029280pt;}
.lse_c02091{letter-spacing:0.032000pt;}
.ls13_c02091{letter-spacing:0.040992pt;}
.lsa_c02091{letter-spacing:0.044800pt;}
.ls7_c02091{letter-spacing:0.052704pt;}
.lsd_c02091{letter-spacing:0.057600pt;}
.ls5_c02091{letter-spacing:0.058560pt;}
.ls8_c02091{letter-spacing:0.070272pt;}
.lsb_c02091{letter-spacing:0.070400pt;}
.ls0_c02091{letter-spacing:0.083200pt;}
.ls1_c02091{letter-spacing:0.128000pt;}
.ls2_c02091{letter-spacing:0.160000pt;}
.ws20_c02091{word-spacing:-0.364800pt;}
.ws1b_c02091{word-spacing:-0.332800pt;}
.ws21_c02091{word-spacing:-0.268800pt;}
.ws16_c02091{word-spacing:-0.217600pt;}
.ws1a_c02091{word-spacing:-0.185600pt;}
.wse_c02091{word-spacing:-0.121600pt;}
.ws1c_c02091{word-spacing:-0.108800pt;}
.ws15_c02091{word-spacing:-0.096000pt;}
.ws23_c02091{word-spacing:-0.089600pt;}
.wsd_c02091{word-spacing:-0.076800pt;}
.ws13_c02091{word-spacing:-0.070400pt;}
.ws22_c02091{word-spacing:-0.064000pt;}
.ws0_c02091{word-spacing:-0.019200pt;}
.ws14_c02091{word-spacing:-0.012800pt;}
.ws6_c02091{word-spacing:-0.006400pt;}
.ws1_c02091{word-spacing:0.000000pt;}
.ws2_c02091{word-spacing:0.006400pt;}
.wsc_c02091{word-spacing:0.011712pt;}
.ws7_c02091{word-spacing:0.012800pt;}
.ws9_c02091{word-spacing:0.023424pt;}
.wsb_c02091{word-spacing:0.029280pt;}
.ws8_c02091{word-spacing:0.040992pt;}
.wsa_c02091{word-spacing:0.052704pt;}
.ws11_c02091{word-spacing:2.835200pt;}
.ws12_c02091{word-spacing:2.880000pt;}
.ws10_c02091{word-spacing:4.652800pt;}
.wsf_c02091{word-spacing:4.691200pt;}
.ws1e_c02091{word-spacing:6.592000pt;}
.ws1f_c02091{word-spacing:6.656000pt;}
.ws1d_c02091{word-spacing:6.707200pt;}
.ws4_c02091{word-spacing:9.843200pt;}
.ws3_c02091{word-spacing:9.907200pt;}
.ws19_c02091{word-spacing:14.899200pt;}
.ws18_c02091{word-spacing:14.950400pt;}
.ws17_c02091{word-spacing:15.065600pt;}
.ws5_c02091{word-spacing:40.332800pt;}
._5_c02091{margin-left:-0.901824pt;}
._2_c02091{width:99.641600pt;}
._3_c02091{width:103.161600pt;}
._1_c02091{width:146.688000pt;}
._0_c02091{width:172.819200pt;}
._4_c02091{width:247.321600pt;}
.fs1_c02091{font-size:42.560000pt;}
.fs2_c02091{font-size:58.560000pt;}
.fs0_c02091{font-size:64.000000pt;}
.y0_c02091{bottom:0.000000pt;}
.y3_c02091{bottom:50.987067pt;}
.y2_c02091{bottom:69.387067pt;}
.y36_c02091{bottom:101.147067pt;}
.y35_c02091{bottom:119.547067pt;}
.y34_c02091{bottom:137.947067pt;}
.y33_c02091{bottom:156.347067pt;}
.y32_c02091{bottom:174.747067pt;}
.y31_c02091{bottom:193.147067pt;}
.y30_c02091{bottom:211.547067pt;}
.y2f_c02091{bottom:229.947067pt;}
.y2e_c02091{bottom:248.347067pt;}
.y2d_c02091{bottom:266.747067pt;}
.y2c_c02091{bottom:285.147067pt;}
.y2b_c02091{bottom:304.347067pt;}
.y2a_c02091{bottom:322.747067pt;}
.y29_c02091{bottom:341.627067pt;}
.y28_c02091{bottom:360.907200pt;}
.y27_c02091{bottom:379.227067pt;}
.y26_c02091{bottom:397.627067pt;}
.y25_c02091{bottom:416.027200pt;}
.y24_c02091{bottom:434.987200pt;}
.y23_c02091{bottom:454.187200pt;}
.y22_c02091{bottom:472.587067pt;}
.y21_c02091{bottom:490.987067pt;}
.y20_c02091{bottom:509.867067pt;}
.y1f_c02091{bottom:529.147067pt;}
.y1e_c02091{bottom:547.547067pt;}
.y1d_c02091{bottom:565.947067pt;}
.y1c_c02091{bottom:584.347067pt;}
.y1b_c02091{bottom:602.747067pt;}
.y1a_c02091{bottom:621.147067pt;}
.y19_c02091{bottom:639.547067pt;}
.y18_c02091{bottom:657.947067pt;}
.y17_c02091{bottom:676.827067pt;}
.y16_c02091{bottom:696.027067pt;}
.y15_c02091{bottom:714.907067pt;}
.y14_c02091{bottom:733.788667pt;}
.y13_c02091{bottom:750.588067pt;}
.y12_c02091{bottom:767.467987pt;}
.y11_c02091{bottom:784.347907pt;}
.y10_c02091{bottom:801.227827pt;}
.yf_c02091{bottom:818.107747pt;}
.ye_c02091{bottom:834.987667pt;}
.yd_c02091{bottom:850.507067pt;}
.yc_c02091{bottom:869.627067pt;}
.yb_c02091{bottom:888.027067pt;}
.ya_c02091{bottom:907.067067pt;}
.y9_c02091{bottom:926.107067pt;}
.y8_c02091{bottom:945.307067pt;}
.y7_c02091{bottom:963.707067pt;}
.y6_c02091{bottom:982.027067pt;}
.y5_c02091{bottom:999.867067pt;}
.y4_c02091{bottom:1013.307067pt;}
.y1_c02091{bottom:1060.587067pt;}
.h3_c02091{height:37.801094pt;}
.h7_c02091{height:52.012031pt;}
.h2_c02091{height:56.156250pt;}
.h8_c02091{height:56.837350pt;}
.h1_c02091{height:56.843750pt;}
.h6_c02091{height:57.132031pt;}
.h5_c02091{height:62.781250pt;}
.h4_c02091{height:63.101250pt;}
.h0_c02091{height:1122.666667pt;}
.w1_c02091{width:793.333333pt;}
.w0_c02091{width:793.626667pt;}
.x0_c02091{left:0.000000pt;}
.x1_c02091{left:113.440000pt;}
.x3_c02091{left:120.560000pt;}
.x4_c02091{left:224.560000pt;}
.x2_c02091{left:388.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_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_98b88a24c19f137e3966d4dc.woff2')format("woff");}.ff1_c02092{font-family:ff1_c02092;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02092;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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;}
.ls18_c02092{letter-spacing:-0.014400px;}
.ls16_c02092{letter-spacing:-0.007200px;}
.ls1c_c02092{letter-spacing:-0.006588px;}
.ls1b_c02092{letter-spacing:-0.006012px;}
.ls15_c02092{letter-spacing:0.000000px;}
.ls17_c02092{letter-spacing:0.007200px;}
.ls0_c02092{letter-spacing:0.014400px;}
.ls13_c02092{letter-spacing:0.019764px;}
.ls1_c02092{letter-spacing:0.028800px;}
.ls2_c02092{letter-spacing:0.036000px;}
.ls12_c02092{letter-spacing:0.039528px;}
.ls19_c02092{letter-spacing:0.043200px;}
.ls11_c02092{letter-spacing:0.046116px;}
.ls1a_c02092{letter-spacing:0.050400px;}
.ls9_c02092{letter-spacing:0.059292px;}
.ls6_c02092{letter-spacing:0.065880px;}
.ls3_c02092{letter-spacing:0.072000px;}
.ls10_c02092{letter-spacing:0.072468px;}
.lsa_c02092{letter-spacing:0.079056px;}
.lsd_c02092{letter-spacing:0.085644px;}
.ls5_c02092{letter-spacing:0.092232px;}
.lsf_c02092{letter-spacing:0.105408px;}
.ls7_c02092{letter-spacing:0.138348px;}
.ls4_c02092{letter-spacing:0.144288px;}
.ls8_c02092{letter-spacing:0.151524px;}
.lse_c02092{letter-spacing:0.158112px;}
.lsb_c02092{letter-spacing:0.177876px;}
.lsc_c02092{letter-spacing:117.450000px;}
.ls14_c02092{letter-spacing:394.650000px;}
.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;}
}
.ws8_c02092{word-spacing:-16.647876px;}
.ws19_c02092{word-spacing:-0.410400px;}
.ws1a_c02092{word-spacing:-0.208800px;}
.ws13_c02092{word-spacing:-0.172800px;}
.ws16_c02092{word-spacing:-0.100800px;}
.ws1b_c02092{word-spacing:-0.054108px;}
.ws17_c02092{word-spacing:-0.043200px;}
.ws18_c02092{word-spacing:-0.028800px;}
.ws10_c02092{word-spacing:-0.021600px;}
.ws12_c02092{word-spacing:-0.014400px;}
.ws14_c02092{word-spacing:-0.007200px;}
.ws11_c02092{word-spacing:0.000000px;}
.ws15_c02092{word-spacing:0.007200px;}
.ws1e_c02092{word-spacing:0.013176px;}
.ws1c_c02092{word-spacing:0.026352px;}
.ws1d_c02092{word-spacing:0.032940px;}
.ws1f_c02092{word-spacing:0.046116px;}
.ws20_c02092{word-spacing:0.052704px;}
.ws21_c02092{word-spacing:0.098820px;}
.wsc_c02092{word-spacing:65.089440px;}
.wsa_c02092{word-spacing:67.238496px;}
.ws7_c02092{word-spacing:67.642380px;}
.ws3_c02092{word-spacing:99.996372px;}
.ws6_c02092{word-spacing:99.998496px;}
.ws5_c02092{word-spacing:100.402380px;}
.wsb_c02092{word-spacing:100.426608px;}
.wse_c02092{word-spacing:100.933020px;}
.ws1_c02092{word-spacing:133.116372px;}
.ws2_c02092{word-spacing:133.546608px;}
.wsd_c02092{word-spacing:134.053020px;}
.ws4_c02092{word-spacing:150.082380px;}
.ws0_c02092{word-spacing:150.106608px;}
.wsf_c02092{word-spacing:215.595972px;}
.ws9_c02092{word-spacing:216.083304px;}
._3_c02092{margin-left:-1.148292px;}
._1a_c02092{width:65.089440px;}
._12_c02092{width:67.644504px;}
._18_c02092{width:83.886372px;}
._f_c02092{width:99.996372px;}
._d_c02092{width:101.118312px;}
._6_c02092{width:104.490000px;}
._7_c02092{width:115.923132px;}
._b_c02092{width:133.906608px;}
._a_c02092{width:150.300000px;}
._5_c02092{width:169.288704px;}
._1b_c02092{width:171.252900px;}
._15_c02092{width:183.330000px;}
._e_c02092{width:187.907256px;}
._0_c02092{width:194.421600px;}
._1c_c02092{width:206.239536px;}
._14_c02092{width:215.554248px;}
._4_c02092{width:216.679284px;}
._17_c02092{width:232.781400px;}
._10_c02092{width:235.512144px;}
._1f_c02092{width:249.109704px;}
._11_c02092{width:253.844424px;}
._19_c02092{width:270.250776px;}
._13_c02092{width:283.101732px;}
._16_c02092{width:316.101024px;}
._c_c02092{width:330.686856px;}
._8_c02092{width:348.957504px;}
._2_c02092{width:359.625600px;}
._1d_c02092{width:416.610000px;}
._20_c02092{width:643.879908px;}
._1e_c02092{width:665.460000px;}
._9_c02092{width:1114.060716px;}
._1_c02092{width:2470.680000px;}
.fc0_c02092{color:rgb(0,0,0);}
.fs1_c02092{font-size:47.880000px;}
.fs2_c02092{font-size:60.120000px;}
.fs3_c02092{font-size:65.880000px;}
.fs0_c02092{font-size:72.000000px;}
.y0_c02092{bottom:0.000000px;}
.y3_c02092{bottom:57.360450px;}
.y2_c02092{bottom:78.060450px;}
.y24_c02092{bottom:112.170600px;}
.y23_c02092{bottom:132.870600px;}
.y22_c02092{bottom:153.570600px;}
.y21_c02092{bottom:174.270600px;}
.y20_c02092{bottom:194.970600px;}
.y1f_c02092{bottom:215.670600px;}
.y1e_c02092{bottom:236.370600px;}
.y1d_c02092{bottom:257.160450px;}
.y1c_c02092{bottom:276.150450px;}
.y1b_c02092{bottom:295.050450px;}
.y1a_c02092{bottom:314.040450px;}
.y19_c02092{bottom:333.390450px;}
.y18_c02092{bottom:352.380450px;}
.y17_c02092{bottom:371.370450px;}
.y16_c02092{bottom:390.360600px;}
.y15_c02092{bottom:409.260450px;}
.y14_c02092{bottom:428.250600px;}
.y13_c02092{bottom:447.240450px;}
.y12_c02092{bottom:465.870600px;}
.y11_c02092{bottom:483.780600px;}
.y10_c02092{bottom:504.480450px;}
.yf_c02092{bottom:525.180600px;}
.ye_c02092{bottom:545.880450px;}
.yd_c02092{bottom:566.580450px;}
.yc_c02092{bottom:600.960450px;}
.yb_c02092{bottom:632.010450px;}
.ya_c02092{bottom:663.060450px;}
.y9_c02092{bottom:694.110450px;}
.y8_c02092{bottom:713.730450px;}
.y7_c02092{bottom:724.620450px;}
.y6_c02092{bottom:1104.420450px;}
.y5_c02092{bottom:1119.270450px;}
.y4_c02092{bottom:1139.970450px;}
.y1_c02092{bottom:1193.160450px;}
.h3_c02092{height:42.011895px;}
.h4_c02092{height:53.397598px;}
.h5_c02092{height:58.513535px;}
.h2_c02092{height:63.175781px;}
.h1_c02092{height:63.949219px;}
.h0_c02092{height:1263.000000px;}
.w1_c02092{width:892.500000px;}
.w0_c02092{width:892.830000px;}
.x0_c02092{left:0.000000px;}
.x1_c02092{left:127.620000px;}
.x4_c02092{left:135.630000px;}
.xe_c02092{left:160.920000px;}
.x5_c02092{left:164.700000px;}
.x7_c02092{left:274.050000px;}
.x6_c02092{left:278.550000px;}
.x3_c02092{left:373.050000px;}
.x9_c02092{left:429.660000px;}
.x2_c02092{left:437.490000px;}
.xa_c02092{left:446.400000px;}
.x8_c02092{left:462.690000px;}
.xc_c02092{left:589.050000px;}
.xd_c02092{left:610.560000px;}
.xb_c02092{left:637.290000px;}
@media print{
.v0_c02092{vertical-align:0.000000pt;}
.ls18_c02092{letter-spacing:-0.012800pt;}
.ls16_c02092{letter-spacing:-0.006400pt;}
.ls1c_c02092{letter-spacing:-0.005856pt;}
.ls1b_c02092{letter-spacing:-0.005344pt;}
.ls15_c02092{letter-spacing:0.000000pt;}
.ls17_c02092{letter-spacing:0.006400pt;}
.ls0_c02092{letter-spacing:0.012800pt;}
.ls13_c02092{letter-spacing:0.017568pt;}
.ls1_c02092{letter-spacing:0.025600pt;}
.ls2_c02092{letter-spacing:0.032000pt;}
.ls12_c02092{letter-spacing:0.035136pt;}
.ls19_c02092{letter-spacing:0.038400pt;}
.ls11_c02092{letter-spacing:0.040992pt;}
.ls1a_c02092{letter-spacing:0.044800pt;}
.ls9_c02092{letter-spacing:0.052704pt;}
.ls6_c02092{letter-spacing:0.058560pt;}
.ls3_c02092{letter-spacing:0.064000pt;}
.ls10_c02092{letter-spacing:0.064416pt;}
.lsa_c02092{letter-spacing:0.070272pt;}
.lsd_c02092{letter-spacing:0.076128pt;}
.ls5_c02092{letter-spacing:0.081984pt;}
.lsf_c02092{letter-spacing:0.093696pt;}
.ls7_c02092{letter-spacing:0.122976pt;}
.ls4_c02092{letter-spacing:0.128256pt;}
.ls8_c02092{letter-spacing:0.134688pt;}
.lse_c02092{letter-spacing:0.140544pt;}
.lsb_c02092{letter-spacing:0.158112pt;}
.lsc_c02092{letter-spacing:104.400000pt;}
.ls14_c02092{letter-spacing:350.800000pt;}
.ws8_c02092{word-spacing:-14.798112pt;}
.ws19_c02092{word-spacing:-0.364800pt;}
.ws1a_c02092{word-spacing:-0.185600pt;}
.ws13_c02092{word-spacing:-0.153600pt;}
.ws16_c02092{word-spacing:-0.089600pt;}
.ws1b_c02092{word-spacing:-0.048096pt;}
.ws17_c02092{word-spacing:-0.038400pt;}
.ws18_c02092{word-spacing:-0.025600pt;}
.ws10_c02092{word-spacing:-0.019200pt;}
.ws12_c02092{word-spacing:-0.012800pt;}
.ws14_c02092{word-spacing:-0.006400pt;}
.ws11_c02092{word-spacing:0.000000pt;}
.ws15_c02092{word-spacing:0.006400pt;}
.ws1e_c02092{word-spacing:0.011712pt;}
.ws1c_c02092{word-spacing:0.023424pt;}
.ws1d_c02092{word-spacing:0.029280pt;}
.ws1f_c02092{word-spacing:0.040992pt;}
.ws20_c02092{word-spacing:0.046848pt;}
.ws21_c02092{word-spacing:0.087840pt;}
.wsc_c02092{word-spacing:57.857280pt;}
.wsa_c02092{word-spacing:59.767552pt;}
.ws7_c02092{word-spacing:60.126560pt;}
.ws3_c02092{word-spacing:88.885664pt;}
.ws6_c02092{word-spacing:88.887552pt;}
.ws5_c02092{word-spacing:89.246560pt;}
.wsb_c02092{word-spacing:89.268096pt;}
.wse_c02092{word-spacing:89.718240pt;}
.ws1_c02092{word-spacing:118.325664pt;}
.ws2_c02092{word-spacing:118.708096pt;}
.wsd_c02092{word-spacing:119.158240pt;}
.ws4_c02092{word-spacing:133.406560pt;}
.ws0_c02092{word-spacing:133.428096pt;}
.wsf_c02092{word-spacing:191.640864pt;}
.ws9_c02092{word-spacing:192.074048pt;}
._3_c02092{margin-left:-1.020704pt;}
._1a_c02092{width:57.857280pt;}
._12_c02092{width:60.128448pt;}
._18_c02092{width:74.565664pt;}
._f_c02092{width:88.885664pt;}
._d_c02092{width:89.882944pt;}
._6_c02092{width:92.880000pt;}
._7_c02092{width:103.042784pt;}
._b_c02092{width:119.028096pt;}
._a_c02092{width:133.600000pt;}
._5_c02092{width:150.478848pt;}
._1b_c02092{width:152.224800pt;}
._15_c02092{width:162.960000pt;}
._e_c02092{width:167.028672pt;}
._0_c02092{width:172.819200pt;}
._1c_c02092{width:183.324032pt;}
._14_c02092{width:191.603776pt;}
._4_c02092{width:192.603808pt;}
._17_c02092{width:206.916800pt;}
._10_c02092{width:209.344128pt;}
._1f_c02092{width:221.430848pt;}
._11_c02092{width:225.639488pt;}
._19_c02092{width:240.222912pt;}
._13_c02092{width:251.645984pt;}
._16_c02092{width:280.978688pt;}
._c_c02092{width:293.943872pt;}
._8_c02092{width:310.184448pt;}
._2_c02092{width:319.667200pt;}
._1d_c02092{width:370.320000pt;}
._20_c02092{width:572.337696pt;}
._1e_c02092{width:591.520000pt;}
._9_c02092{width:990.276192pt;}
._1_c02092{width:2196.160000pt;}
.fs1_c02092{font-size:42.560000pt;}
.fs2_c02092{font-size:53.440000pt;}
.fs3_c02092{font-size:58.560000pt;}
.fs0_c02092{font-size:64.000000pt;}
.y0_c02092{bottom:0.000000pt;}
.y3_c02092{bottom:50.987067pt;}
.y2_c02092{bottom:69.387067pt;}
.y24_c02092{bottom:99.707200pt;}
.y23_c02092{bottom:118.107200pt;}
.y22_c02092{bottom:136.507200pt;}
.y21_c02092{bottom:154.907200pt;}
.y20_c02092{bottom:173.307200pt;}
.y1f_c02092{bottom:191.707200pt;}
.y1e_c02092{bottom:210.107200pt;}
.y1d_c02092{bottom:228.587067pt;}
.y1c_c02092{bottom:245.467067pt;}
.y1b_c02092{bottom:262.267067pt;}
.y1a_c02092{bottom:279.147067pt;}
.y19_c02092{bottom:296.347067pt;}
.y18_c02092{bottom:313.227067pt;}
.y17_c02092{bottom:330.107067pt;}
.y16_c02092{bottom:346.987200pt;}
.y15_c02092{bottom:363.787067pt;}
.y14_c02092{bottom:380.667200pt;}
.y13_c02092{bottom:397.547067pt;}
.y12_c02092{bottom:414.107200pt;}
.y11_c02092{bottom:430.027200pt;}
.y10_c02092{bottom:448.427067pt;}
.yf_c02092{bottom:466.827200pt;}
.ye_c02092{bottom:485.227067pt;}
.yd_c02092{bottom:503.627067pt;}
.yc_c02092{bottom:534.187067pt;}
.yb_c02092{bottom:561.787067pt;}
.ya_c02092{bottom:589.387067pt;}
.y9_c02092{bottom:616.987067pt;}
.y8_c02092{bottom:634.427067pt;}
.y7_c02092{bottom:644.107067pt;}
.y6_c02092{bottom:981.707067pt;}
.y5_c02092{bottom:994.907067pt;}
.y4_c02092{bottom:1013.307067pt;}
.y1_c02092{bottom:1060.587067pt;}
.h3_c02092{height:37.343906pt;}
.h4_c02092{height:47.464531pt;}
.h5_c02092{height:52.012031pt;}
.h2_c02092{height:56.156250pt;}
.h1_c02092{height:56.843750pt;}
.h0_c02092{height:1122.666667pt;}
.w1_c02092{width:793.333333pt;}
.w0_c02092{width:793.626667pt;}
.x0_c02092{left:0.000000pt;}
.x1_c02092{left:113.440000pt;}
.x4_c02092{left:120.560000pt;}
.xe_c02092{left:143.040000pt;}
.x5_c02092{left:146.400000pt;}
.x7_c02092{left:243.600000pt;}
.x6_c02092{left:247.600000pt;}
.x3_c02092{left:331.600000pt;}
.x9_c02092{left:381.920000pt;}
.x2_c02092{left:388.880000pt;}
.xa_c02092{left:396.800000pt;}
.x8_c02092{left:411.280000pt;}
.xc_c02092{left:523.600000pt;}
.xd_c02092{left:542.720000pt;}
.xb_c02092{left:566.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_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_d890991303b76c603669ef06.woff2')format("woff");}.ff1_c02093{font-family:ff1_c02093;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02093;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v7_c02093{vertical-align:-15.119400px;}
.v9_c02093{vertical-align:-12.600000px;}
.v8_c02093{vertical-align:-11.159400px;}
.v6_c02093{vertical-align:-4.320000px;}
.v1_c02093{vertical-align:-1.439400px;}
.v0_c02093{vertical-align:0.000000px;}
.v3_c02093{vertical-align:1.080000px;}
.v2_c02093{vertical-align:2.520000px;}
.v4_c02093{vertical-align:4.320000px;}
.v5_c02093{vertical-align:11.160000px;}
.ls33_c02093{letter-spacing:-0.118800px;}
.ls34_c02093{letter-spacing:-0.070200px;}
.ls2d_c02093{letter-spacing:-0.046116px;}
.ls31_c02093{letter-spacing:-0.043200px;}
.ls2f_c02093{letter-spacing:-0.021600px;}
.ls28_c02093{letter-spacing:-0.014400px;}
.ls32_c02093{letter-spacing:-0.010800px;}
.ls29_c02093{letter-spacing:-0.007200px;}
.ls2e_c02093{letter-spacing:-0.006588px;}
.ls2c_c02093{letter-spacing:-0.006012px;}
.ls27_c02093{letter-spacing:0.000000px;}
.ls15_c02093{letter-spacing:0.007200px;}
.ls17_c02093{letter-spacing:0.010800px;}
.ls2a_c02093{letter-spacing:0.014400px;}
.ls11_c02093{letter-spacing:0.019764px;}
.ls16_c02093{letter-spacing:0.021600px;}
.ls24_c02093{letter-spacing:0.028728px;}
.ls14_c02093{letter-spacing:0.028800px;}
.ls19_c02093{letter-spacing:0.032400px;}
.ls2b_c02093{letter-spacing:0.036000px;}
.ls13_c02093{letter-spacing:0.037800px;}
.ls10_c02093{letter-spacing:0.039528px;}
.ls1a_c02093{letter-spacing:0.043200px;}
.ls1_c02093{letter-spacing:0.050400px;}
.ls23_c02093{letter-spacing:0.052668px;}
.ls0_c02093{letter-spacing:0.057600px;}
.ls8_c02093{letter-spacing:0.059292px;}
.ls18_c02093{letter-spacing:0.059400px;}
.ls6_c02093{letter-spacing:0.065880px;}
.lsf_c02093{letter-spacing:0.072468px;}
.ls20_c02093{letter-spacing:0.076608px;}
.ls9_c02093{letter-spacing:0.079056px;}
.lsc_c02093{letter-spacing:0.085644px;}
.ls3_c02093{letter-spacing:0.092232px;}
.lse_c02093{letter-spacing:0.105408px;}
.ls1b_c02093{letter-spacing:0.110124px;}
.ls25_c02093{letter-spacing:0.114912px;}
.ls35_c02093{letter-spacing:0.135000px;}
.ls4_c02093{letter-spacing:0.138348px;}
.ls26_c02093{letter-spacing:0.138852px;}
.ls2_c02093{letter-spacing:0.144288px;}
.ls30_c02093{letter-spacing:0.151200px;}
.ls7_c02093{letter-spacing:0.151524px;}
.lsd_c02093{letter-spacing:0.158112px;}
.ls22_c02093{letter-spacing:0.162792px;}
.ls1e_c02093{letter-spacing:0.164700px;}
.lsa_c02093{letter-spacing:0.177876px;}
.ls21_c02093{letter-spacing:0.181944px;}
.ls1d_c02093{letter-spacing:0.205884px;}
.lsb_c02093{letter-spacing:117.450000px;}
.ls36_c02093{letter-spacing:143.461800px;}
.ls38_c02093{letter-spacing:154.887156px;}
.ls37_c02093{letter-spacing:156.060000px;}
.ls1f_c02093{letter-spacing:156.778200px;}
.ls5_c02093{letter-spacing:183.420000px;}
.ls1c_c02093{letter-spacing:200.790000px;}
.ls12_c02093{letter-spacing:394.650000px;}
.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;}
}
.wsa_c02093{word-spacing:-16.647876px;}
.ws18_c02093{word-spacing:-0.403200px;}
.ws17_c02093{word-spacing:-0.381600px;}
.ws26_c02093{word-spacing:-0.296856px;}
.ws25_c02093{word-spacing:-0.272916px;}
.ws29_c02093{word-spacing:-0.253764px;}
.ws2c_c02093{word-spacing:-0.229824px;}
.ws1f_c02093{word-spacing:-0.208800px;}
.ws2b_c02093{word-spacing:-0.205884px;}
.ws2a_c02093{word-spacing:-0.119700px;}
.ws22_c02093{word-spacing:-0.115200px;}
.ws16_c02093{word-spacing:-0.057600px;}
.ws19_c02093{word-spacing:-0.054108px;}
.ws20_c02093{word-spacing:-0.043200px;}
.ws13_c02093{word-spacing:-0.021600px;}
.ws15_c02093{word-spacing:-0.014400px;}
.ws23_c02093{word-spacing:-0.007200px;}
.ws14_c02093{word-spacing:0.000000px;}
.ws1c_c02093{word-spacing:0.013176px;}
.ws1a_c02093{word-spacing:0.026352px;}
.ws1b_c02093{word-spacing:0.032940px;}
.ws1d_c02093{word-spacing:0.052704px;}
.ws1e_c02093{word-spacing:0.098820px;}
.ws24_c02093{word-spacing:0.118800px;}
.ws21_c02093{word-spacing:0.140400px;}
.ws11_c02093{word-spacing:58.969440px;}
.wse_c02093{word-spacing:65.089440px;}
.wsc_c02093{word-spacing:67.238496px;}
.ws9_c02093{word-spacing:67.642380px;}
.ws27_c02093{word-spacing:79.846560px;}
.ws5_c02093{word-spacing:99.996372px;}
.ws8_c02093{word-spacing:99.998496px;}
.ws6_c02093{word-spacing:100.402380px;}
.wsd_c02093{word-spacing:100.426608px;}
.wsf_c02093{word-spacing:100.933020px;}
.ws12_c02093{word-spacing:117.346608px;}
.ws1_c02093{word-spacing:133.116372px;}
.ws2_c02093{word-spacing:133.546608px;}
.ws7_c02093{word-spacing:150.082380px;}
.ws4_c02093{word-spacing:150.106608px;}
.ws0_c02093{word-spacing:150.203304px;}
.ws28_c02093{word-spacing:156.735000px;}
.ws3_c02093{word-spacing:182.866608px;}
.ws10_c02093{word-spacing:215.595972px;}
.wsb_c02093{word-spacing:215.986608px;}
._2_c02093{margin-left:-1.148292px;}
._40_c02093{width:42.502824px;}
._36_c02093{width:51.800868px;}
._39_c02093{width:62.064000px;}
._18_c02093{width:65.089440px;}
._10_c02093{width:67.954428px;}
._3a_c02093{width:73.584000px;}
._35_c02093{width:75.577572px;}
._38_c02093{width:79.476372px;}
._16_c02093{width:83.886372px;}
._30_c02093{width:85.286160px;}
._2d_c02093{width:87.409440px;}
._28_c02093{width:89.964504px;}
._3e_c02093{width:91.147572px;}
._34_c02093{width:96.876000px;}
._42_c02093{width:98.341524px;}
._c_c02093{width:100.834740px;}
._33_c02093{width:102.864600px;}
._5_c02093{width:104.490000px;}
._43_c02093{width:106.059420px;}
._44_c02093{width:109.185300px;}
._32_c02093{width:113.816952px;}
._6_c02093{width:115.923132px;}
._37_c02093{width:121.024980px;}
._23_c02093{width:122.316372px;}
._31_c02093{width:125.723628px;}
._3b_c02093{width:129.373200px;}
._b_c02093{width:133.474248px;}
._3d_c02093{width:143.460000px;}
._13_c02093{width:150.300000px;}
._29_c02093{width:155.818476px;}
._41_c02093{width:159.186384px;}
._8_c02093{width:166.594248px;}
._9_c02093{width:168.122448px;}
._4_c02093{width:169.288704px;}
._21_c02093{width:176.128704px;}
._25_c02093{width:179.267256px;}
._12_c02093{width:182.637324px;}
._14_c02093{width:184.112676px;}
._d_c02093{width:187.907256px;}
._0_c02093{width:194.421600px;}
._2e_c02093{width:197.599536px;}
._19_c02093{width:206.239536px;}
._20_c02093{width:212.359284px;}
._3_c02093{width:216.679284px;}
._3f_c02093{width:219.324168px;}
._26_c02093{width:226.872144px;}
._15_c02093{width:231.609960px;}
._1c_c02093{width:232.740000px;}
._e_c02093{width:235.512144px;}
._2a_c02093{width:238.306608px;}
._2f_c02093{width:240.469704px;}
._27_c02093{width:245.204424px;}
._1d_c02093{width:249.109704px;}
._f_c02093{width:253.844424px;}
._3c_c02093{width:255.138444px;}
._2c_c02093{width:261.610776px;}
._17_c02093{width:270.250776px;}
._22_c02093{width:274.437504px;}
._11_c02093{width:283.101732px;}
._24_c02093{width:289.286856px;}
._2b_c02093{width:307.461024px;}
._7_c02093{width:315.837504px;}
._a_c02093{width:330.686856px;}
._1_c02093{width:359.625600px;}
._1f_c02093{width:377.625600px;}
._1a_c02093{width:415.484964px;}
._1e_c02093{width:642.754872px;}
._1b_c02093{width:665.460000px;}
.fc0_c02093{color:rgb(0,0,0);}
.fs6_c02093{font-size:11.880000px;}
.fs3_c02093{font-size:29.880000px;}
.fs5_c02093{font-size:47.880000px;}
.fs4_c02093{font-size:54.000000px;}
.fs1_c02093{font-size:60.120000px;}
.fs2_c02093{font-size:65.880000px;}
.fs0_c02093{font-size:72.000000px;}
.y0_c02093{bottom:0.000000px;}
.y3_c02093{bottom:57.360450px;}
.y2_c02093{bottom:78.060450px;}
.y43_c02093{bottom:117.930000px;}
.y42_c02093{bottom:133.410450px;}
.y41_c02093{bottom:148.980450px;}
.y40_c02093{bottom:152.760900px;}
.y3f_c02093{bottom:167.970450px;}
.y3e_c02093{bottom:171.750900px;}
.y3d_c02093{bottom:190.740450px;}
.y3c_c02093{bottom:205.860450px;}
.y3b_c02093{bottom:209.730150px;}
.y3a_c02093{bottom:225.930450px;}
.y39_c02093{bottom:245.100450px;}
.y38_c02093{bottom:261.570450px;}
.y37_c02093{bottom:282.360450px;}
.y36_c02093{bottom:291.180450px;}
.y35_c02093{bottom:291.540000px;}
.y34_c02093{bottom:310.170450px;}
.y33_c02093{bottom:310.530000px;}
.y32_c02093{bottom:329.070450px;}
.y31_c02093{bottom:329.520450px;}
.y30_c02093{bottom:348.420450px;}
.y2f_c02093{bottom:367.050450px;}
.y2e_c02093{bottom:367.410450px;}
.y2d_c02093{bottom:386.400450px;}
.y2c_c02093{bottom:406.290600px;}
.y2b_c02093{bottom:422.760450px;}
.y2a_c02093{bottom:442.740450px;}
.y29_c02093{bottom:458.400450px;}
.y28_c02093{bottom:478.830450px;}
.y27_c02093{bottom:493.050450px;}
.y26_c02093{bottom:503.670450px;}
.y25_c02093{bottom:523.020600px;}
.y24_c02093{bottom:542.010450px;}
.y23_c02093{bottom:561.000450px;}
.y22_c02093{bottom:579.990450px;}
.y21_c02093{bottom:599.340450px;}
.y20_c02093{bottom:618.240450px;}
.y1f_c02093{bottom:637.230450px;}
.y1e_c02093{bottom:656.220450px;}
.y1d_c02093{bottom:675.210450px;}
.y1c_c02093{bottom:694.200450px;}
.y1b_c02093{bottom:713.100450px;}
.y1a_c02093{bottom:731.730450px;}
.y19_c02093{bottom:749.640450px;}
.y18_c02093{bottom:770.340450px;}
.y17_c02093{bottom:791.040600px;}
.y16_c02093{bottom:811.740450px;}
.y15_c02093{bottom:830.910648px;}
.y14_c02093{bottom:839.550450px;}
.y13_c02093{bottom:850.530450px;}
.y12_c02093{bottom:869.520450px;}
.y11_c02093{bottom:888.510450px;}
.y10_c02093{bottom:907.410450px;}
.yf_c02093{bottom:926.760450px;}
.ye_c02093{bottom:945.750450px;}
.yd_c02093{bottom:964.740450px;}
.yc_c02093{bottom:983.730450px;}
.yb_c02093{bottom:1002.720450px;}
.ya_c02093{bottom:1021.620450px;}
.y9_c02093{bottom:1040.610450px;}
.y8_c02093{bottom:1059.240450px;}
.y7_c02093{bottom:1077.150450px;}
.y6_c02093{bottom:1097.850450px;}
.y5_c02093{bottom:1118.550450px;}
.y4_c02093{bottom:1139.250450px;}
.y1_c02093{bottom:1193.160450px;}
.hc_c02093{height:10.551621px;}
.h5_c02093{height:26.538926px;}
.h7_c02093{height:42.011895px;}
.h6_c02093{height:47.961914px;}
.h3_c02093{height:53.397598px;}
.h4_c02093{height:58.513535px;}
.hd_c02093{height:59.121914px;}
.h8_c02093{height:61.033535px;}
.ha_c02093{height:61.393535px;}
.hb_c02093{height:62.473535px;}
.he_c02093{height:62.474135px;}
.h9_c02093{height:62.833535px;}
.h2_c02093{height:63.175781px;}
.h1_c02093{height:63.949219px;}
.h0_c02093{height:1263.000000px;}
.w1_c02093{width:892.500000px;}
.w0_c02093{width:892.830000px;}
.x0_c02093{left:0.000000px;}
.x1_c02093{left:127.620000px;}
.xf_c02093{left:135.630000px;}
.x14_c02093{left:141.480000px;}
.x13_c02093{left:143.910000px;}
.x16_c02093{left:150.300000px;}
.xe_c02093{left:160.920000px;}
.x3_c02093{left:164.700000px;}
.x15_c02093{left:220.590000px;}
.x4_c02093{left:245.250000px;}
.x10_c02093{left:253.350000px;}
.x5_c02093{left:258.570000px;}
.x12_c02093{left:269.910000px;}
.x11_c02093{left:284.580000px;}
.x8_c02093{left:423.630000px;}
.x2_c02093{left:437.490000px;}
.x7_c02093{left:438.660000px;}
.x9_c02093{left:444.690000px;}
.x6_c02093{left:462.690000px;}
.xc_c02093{left:593.010000px;}
.xb_c02093{left:613.350000px;}
.xd_c02093{left:632.520000px;}
.xa_c02093{left:637.290000px;}
@media print{
.v7_c02093{vertical-align:-13.439467pt;}
.v9_c02093{vertical-align:-11.200000pt;}
.v8_c02093{vertical-align:-9.919467pt;}
.v6_c02093{vertical-align:-3.840000pt;}
.v1_c02093{vertical-align:-1.279467pt;}
.v0_c02093{vertical-align:0.000000pt;}
.v3_c02093{vertical-align:0.960000pt;}
.v2_c02093{vertical-align:2.240000pt;}
.v4_c02093{vertical-align:3.840000pt;}
.v5_c02093{vertical-align:9.920000pt;}
.ls33_c02093{letter-spacing:-0.105600pt;}
.ls34_c02093{letter-spacing:-0.062400pt;}
.ls2d_c02093{letter-spacing:-0.040992pt;}
.ls31_c02093{letter-spacing:-0.038400pt;}
.ls2f_c02093{letter-spacing:-0.019200pt;}
.ls28_c02093{letter-spacing:-0.012800pt;}
.ls32_c02093{letter-spacing:-0.009600pt;}
.ls29_c02093{letter-spacing:-0.006400pt;}
.ls2e_c02093{letter-spacing:-0.005856pt;}
.ls2c_c02093{letter-spacing:-0.005344pt;}
.ls27_c02093{letter-spacing:0.000000pt;}
.ls15_c02093{letter-spacing:0.006400pt;}
.ls17_c02093{letter-spacing:0.009600pt;}
.ls2a_c02093{letter-spacing:0.012800pt;}
.ls11_c02093{letter-spacing:0.017568pt;}
.ls16_c02093{letter-spacing:0.019200pt;}
.ls24_c02093{letter-spacing:0.025536pt;}
.ls14_c02093{letter-spacing:0.025600pt;}
.ls19_c02093{letter-spacing:0.028800pt;}
.ls2b_c02093{letter-spacing:0.032000pt;}
.ls13_c02093{letter-spacing:0.033600pt;}
.ls10_c02093{letter-spacing:0.035136pt;}
.ls1a_c02093{letter-spacing:0.038400pt;}
.ls1_c02093{letter-spacing:0.044800pt;}
.ls23_c02093{letter-spacing:0.046816pt;}
.ls0_c02093{letter-spacing:0.051200pt;}
.ls8_c02093{letter-spacing:0.052704pt;}
.ls18_c02093{letter-spacing:0.052800pt;}
.ls6_c02093{letter-spacing:0.058560pt;}
.lsf_c02093{letter-spacing:0.064416pt;}
.ls20_c02093{letter-spacing:0.068096pt;}
.ls9_c02093{letter-spacing:0.070272pt;}
.lsc_c02093{letter-spacing:0.076128pt;}
.ls3_c02093{letter-spacing:0.081984pt;}
.lse_c02093{letter-spacing:0.093696pt;}
.ls1b_c02093{letter-spacing:0.097888pt;}
.ls25_c02093{letter-spacing:0.102144pt;}
.ls35_c02093{letter-spacing:0.120000pt;}
.ls4_c02093{letter-spacing:0.122976pt;}
.ls26_c02093{letter-spacing:0.123424pt;}
.ls2_c02093{letter-spacing:0.128256pt;}
.ls30_c02093{letter-spacing:0.134400pt;}
.ls7_c02093{letter-spacing:0.134688pt;}
.lsd_c02093{letter-spacing:0.140544pt;}
.ls22_c02093{letter-spacing:0.144704pt;}
.ls1e_c02093{letter-spacing:0.146400pt;}
.lsa_c02093{letter-spacing:0.158112pt;}
.ls21_c02093{letter-spacing:0.161728pt;}
.ls1d_c02093{letter-spacing:0.183008pt;}
.lsb_c02093{letter-spacing:104.400000pt;}
.ls36_c02093{letter-spacing:127.521600pt;}
.ls38_c02093{letter-spacing:137.677472pt;}
.ls37_c02093{letter-spacing:138.720000pt;}
.ls1f_c02093{letter-spacing:139.358400pt;}
.ls5_c02093{letter-spacing:163.040000pt;}
.ls1c_c02093{letter-spacing:178.480000pt;}
.ls12_c02093{letter-spacing:350.800000pt;}
.wsa_c02093{word-spacing:-14.798112pt;}
.ws18_c02093{word-spacing:-0.358400pt;}
.ws17_c02093{word-spacing:-0.339200pt;}
.ws26_c02093{word-spacing:-0.263872pt;}
.ws25_c02093{word-spacing:-0.242592pt;}
.ws29_c02093{word-spacing:-0.225568pt;}
.ws2c_c02093{word-spacing:-0.204288pt;}
.ws1f_c02093{word-spacing:-0.185600pt;}
.ws2b_c02093{word-spacing:-0.183008pt;}
.ws2a_c02093{word-spacing:-0.106400pt;}
.ws22_c02093{word-spacing:-0.102400pt;}
.ws16_c02093{word-spacing:-0.051200pt;}
.ws19_c02093{word-spacing:-0.048096pt;}
.ws20_c02093{word-spacing:-0.038400pt;}
.ws13_c02093{word-spacing:-0.019200pt;}
.ws15_c02093{word-spacing:-0.012800pt;}
.ws23_c02093{word-spacing:-0.006400pt;}
.ws14_c02093{word-spacing:0.000000pt;}
.ws1c_c02093{word-spacing:0.011712pt;}
.ws1a_c02093{word-spacing:0.023424pt;}
.ws1b_c02093{word-spacing:0.029280pt;}
.ws1d_c02093{word-spacing:0.046848pt;}
.ws1e_c02093{word-spacing:0.087840pt;}
.ws24_c02093{word-spacing:0.105600pt;}
.ws21_c02093{word-spacing:0.124800pt;}
.ws11_c02093{word-spacing:52.417280pt;}
.wse_c02093{word-spacing:57.857280pt;}
.wsc_c02093{word-spacing:59.767552pt;}
.ws9_c02093{word-spacing:60.126560pt;}
.ws27_c02093{word-spacing:70.974720pt;}
.ws5_c02093{word-spacing:88.885664pt;}
.ws8_c02093{word-spacing:88.887552pt;}
.ws6_c02093{word-spacing:89.246560pt;}
.wsd_c02093{word-spacing:89.268096pt;}
.wsf_c02093{word-spacing:89.718240pt;}
.ws12_c02093{word-spacing:104.308096pt;}
.ws1_c02093{word-spacing:118.325664pt;}
.ws2_c02093{word-spacing:118.708096pt;}
.ws7_c02093{word-spacing:133.406560pt;}
.ws4_c02093{word-spacing:133.428096pt;}
.ws0_c02093{word-spacing:133.514048pt;}
.ws28_c02093{word-spacing:139.320000pt;}
.ws3_c02093{word-spacing:162.548096pt;}
.ws10_c02093{word-spacing:191.640864pt;}
.wsb_c02093{word-spacing:191.988096pt;}
._2_c02093{margin-left:-1.020704pt;}
._40_c02093{width:37.780288pt;}
._36_c02093{width:46.045216pt;}
._39_c02093{width:55.168000pt;}
._18_c02093{width:57.857280pt;}
._10_c02093{width:60.403936pt;}
._3a_c02093{width:65.408000pt;}
._35_c02093{width:67.180064pt;}
._38_c02093{width:70.645664pt;}
._16_c02093{width:74.565664pt;}
._30_c02093{width:75.809920pt;}
._2d_c02093{width:77.697280pt;}
._28_c02093{width:79.968448pt;}
._3e_c02093{width:81.020064pt;}
._34_c02093{width:86.112000pt;}
._42_c02093{width:87.414688pt;}
._c_c02093{width:89.630880pt;}
._33_c02093{width:91.435200pt;}
._5_c02093{width:92.880000pt;}
._43_c02093{width:94.275040pt;}
._44_c02093{width:97.053600pt;}
._32_c02093{width:101.170624pt;}
._6_c02093{width:103.042784pt;}
._37_c02093{width:107.577760pt;}
._23_c02093{width:108.725664pt;}
._31_c02093{width:111.754336pt;}
._3b_c02093{width:114.998400pt;}
._b_c02093{width:118.643776pt;}
._3d_c02093{width:127.520000pt;}
._13_c02093{width:133.600000pt;}
._29_c02093{width:138.505312pt;}
._41_c02093{width:141.499008pt;}
._8_c02093{width:148.083776pt;}
._9_c02093{width:149.442176pt;}
._4_c02093{width:150.478848pt;}
._21_c02093{width:156.558848pt;}
._25_c02093{width:159.348672pt;}
._12_c02093{width:162.344288pt;}
._14_c02093{width:163.655712pt;}
._d_c02093{width:167.028672pt;}
._0_c02093{width:172.819200pt;}
._2e_c02093{width:175.644032pt;}
._19_c02093{width:183.324032pt;}
._20_c02093{width:188.763808pt;}
._3_c02093{width:192.603808pt;}
._3f_c02093{width:194.954816pt;}
._26_c02093{width:201.664128pt;}
._15_c02093{width:205.875520pt;}
._1c_c02093{width:206.880000pt;}
._e_c02093{width:209.344128pt;}
._2a_c02093{width:211.828096pt;}
._2f_c02093{width:213.750848pt;}
._27_c02093{width:217.959488pt;}
._1d_c02093{width:221.430848pt;}
._f_c02093{width:225.639488pt;}
._3c_c02093{width:226.789728pt;}
._2c_c02093{width:232.542912pt;}
._17_c02093{width:240.222912pt;}
._22_c02093{width:243.944448pt;}
._11_c02093{width:251.645984pt;}
._24_c02093{width:257.143872pt;}
._2b_c02093{width:273.298688pt;}
._7_c02093{width:280.744448pt;}
._a_c02093{width:293.943872pt;}
._1_c02093{width:319.667200pt;}
._1f_c02093{width:335.667200pt;}
._1a_c02093{width:369.319968pt;}
._1e_c02093{width:571.337664pt;}
._1b_c02093{width:591.520000pt;}
.fs6_c02093{font-size:10.560000pt;}
.fs3_c02093{font-size:26.560000pt;}
.fs5_c02093{font-size:42.560000pt;}
.fs4_c02093{font-size:48.000000pt;}
.fs1_c02093{font-size:53.440000pt;}
.fs2_c02093{font-size:58.560000pt;}
.fs0_c02093{font-size:64.000000pt;}
.y0_c02093{bottom:0.000000pt;}
.y3_c02093{bottom:50.987067pt;}
.y2_c02093{bottom:69.387067pt;}
.y43_c02093{bottom:104.826667pt;}
.y42_c02093{bottom:118.587067pt;}
.y41_c02093{bottom:132.427067pt;}
.y40_c02093{bottom:135.787467pt;}
.y3f_c02093{bottom:149.307067pt;}
.y3e_c02093{bottom:152.667467pt;}
.y3d_c02093{bottom:169.547067pt;}
.y3c_c02093{bottom:182.987067pt;}
.y3b_c02093{bottom:186.426800pt;}
.y3a_c02093{bottom:200.827067pt;}
.y39_c02093{bottom:217.867067pt;}
.y38_c02093{bottom:232.507067pt;}
.y37_c02093{bottom:250.987067pt;}
.y36_c02093{bottom:258.827067pt;}
.y35_c02093{bottom:259.146667pt;}
.y34_c02093{bottom:275.707067pt;}
.y33_c02093{bottom:276.026667pt;}
.y32_c02093{bottom:292.507067pt;}
.y31_c02093{bottom:292.907067pt;}
.y30_c02093{bottom:309.707067pt;}
.y2f_c02093{bottom:326.267067pt;}
.y2e_c02093{bottom:326.587067pt;}
.y2d_c02093{bottom:343.467067pt;}
.y2c_c02093{bottom:361.147200pt;}
.y2b_c02093{bottom:375.787067pt;}
.y2a_c02093{bottom:393.547067pt;}
.y29_c02093{bottom:407.467067pt;}
.y28_c02093{bottom:425.627067pt;}
.y27_c02093{bottom:438.267067pt;}
.y26_c02093{bottom:447.707067pt;}
.y25_c02093{bottom:464.907200pt;}
.y24_c02093{bottom:481.787067pt;}
.y23_c02093{bottom:498.667067pt;}
.y22_c02093{bottom:515.547067pt;}
.y21_c02093{bottom:532.747067pt;}
.y20_c02093{bottom:549.547067pt;}
.y1f_c02093{bottom:566.427067pt;}
.y1e_c02093{bottom:583.307067pt;}
.y1d_c02093{bottom:600.187067pt;}
.y1c_c02093{bottom:617.067067pt;}
.y1b_c02093{bottom:633.867067pt;}
.y1a_c02093{bottom:650.427067pt;}
.y19_c02093{bottom:666.347067pt;}
.y18_c02093{bottom:684.747067pt;}
.y17_c02093{bottom:703.147200pt;}
.y16_c02093{bottom:721.547067pt;}
.y15_c02093{bottom:738.587243pt;}
.y14_c02093{bottom:746.267067pt;}
.y13_c02093{bottom:756.027067pt;}
.y12_c02093{bottom:772.907067pt;}
.y11_c02093{bottom:789.787067pt;}
.y10_c02093{bottom:806.587067pt;}
.yf_c02093{bottom:823.787067pt;}
.ye_c02093{bottom:840.667067pt;}
.yd_c02093{bottom:857.547067pt;}
.yc_c02093{bottom:874.427067pt;}
.yb_c02093{bottom:891.307067pt;}
.ya_c02093{bottom:908.107067pt;}
.y9_c02093{bottom:924.987067pt;}
.y8_c02093{bottom:941.547067pt;}
.y7_c02093{bottom:957.467067pt;}
.y6_c02093{bottom:975.867067pt;}
.y5_c02093{bottom:994.267067pt;}
.y4_c02093{bottom:1012.667067pt;}
.y1_c02093{bottom:1060.587067pt;}
.hc_c02093{height:9.379219pt;}
.h5_c02093{height:23.590156pt;}
.h7_c02093{height:37.343906pt;}
.h6_c02093{height:42.632812pt;}
.h3_c02093{height:47.464531pt;}
.h4_c02093{height:52.012031pt;}
.hd_c02093{height:52.552813pt;}
.h8_c02093{height:54.252031pt;}
.ha_c02093{height:54.572031pt;}
.hb_c02093{height:55.532031pt;}
.he_c02093{height:55.532565pt;}
.h9_c02093{height:55.852031pt;}
.h2_c02093{height:56.156250pt;}
.h1_c02093{height:56.843750pt;}
.h0_c02093{height:1122.666667pt;}
.w1_c02093{width:793.333333pt;}
.w0_c02093{width:793.626667pt;}
.x0_c02093{left:0.000000pt;}
.x1_c02093{left:113.440000pt;}
.xf_c02093{left:120.560000pt;}
.x14_c02093{left:125.760000pt;}
.x13_c02093{left:127.920000pt;}
.x16_c02093{left:133.600000pt;}
.xe_c02093{left:143.040000pt;}
.x3_c02093{left:146.400000pt;}
.x15_c02093{left:196.080000pt;}
.x4_c02093{left:218.000000pt;}
.x10_c02093{left:225.200000pt;}
.x5_c02093{left:229.840000pt;}
.x12_c02093{left:239.920000pt;}
.x11_c02093{left:252.960000pt;}
.x8_c02093{left:376.560000pt;}
.x2_c02093{left:388.880000pt;}
.x7_c02093{left:389.920000pt;}
.x9_c02093{left:395.280000pt;}
.x6_c02093{left:411.280000pt;}
.xc_c02093{left:527.120000pt;}
.xb_c02093{left:545.200000pt;}
.xd_c02093{left:562.240000pt;}
.xa_c02093{left:566.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_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_4a26abd5d68e5d21c0420ae5.woff2')format("woff");}.ff1_c02094{font-family:ff1_c02094;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02094;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.va_c02094{vertical-align:-15.120000px;}
.vc_c02094{vertical-align:-12.600000px;}
.vb_c02094{vertical-align:-11.159400px;}
.v6_c02094{vertical-align:-7.920000px;}
.v3_c02094{vertical-align:-4.320000px;}
.v8_c02094{vertical-align:-1.440000px;}
.v0_c02094{vertical-align:0.000000px;}
.v7_c02094{vertical-align:1.440000px;}
.v9_c02094{vertical-align:2.520000px;}
.v4_c02094{vertical-align:4.320000px;}
.v1_c02094{vertical-align:5.400000px;}
.v5_c02094{vertical-align:9.720000px;}
.v2_c02094{vertical-align:11.160000px;}
.ls30_c02094{letter-spacing:-0.178200px;}
.ls2a_c02094{letter-spacing:-0.086184px;}
.ls26_c02094{letter-spacing:-0.043200px;}
.ls2d_c02094{letter-spacing:-0.021600px;}
.ls28_c02094{letter-spacing:-0.019152px;}
.ls27_c02094{letter-spacing:-0.010800px;}
.ls31_c02094{letter-spacing:-0.006012px;}
.ls2e_c02094{letter-spacing:-0.004788px;}
.ls24_c02094{letter-spacing:0.000000px;}
.ls32_c02094{letter-spacing:0.007200px;}
.ls1_c02094{letter-spacing:0.010800px;}
.ls1e_c02094{letter-spacing:0.013176px;}
.ls17_c02094{letter-spacing:0.014400px;}
.ls21_c02094{letter-spacing:0.018036px;}
.ls15_c02094{letter-spacing:0.019152px;}
.ls3_c02094{letter-spacing:0.028728px;}
.ls0_c02094{letter-spacing:0.028800px;}
.ls5_c02094{letter-spacing:0.032400px;}
.ls23_c02094{letter-spacing:0.032940px;}
.ls10_c02094{letter-spacing:0.037800px;}
.ls1c_c02094{letter-spacing:0.039528px;}
.ls2_c02094{letter-spacing:0.043092px;}
.ls8_c02094{letter-spacing:0.043200px;}
.ls19_c02094{letter-spacing:0.046116px;}
.ls7_c02094{letter-spacing:0.052668px;}
.ls1f_c02094{letter-spacing:0.059292px;}
.ls4_c02094{letter-spacing:0.059400px;}
.ls1d_c02094{letter-spacing:0.065880px;}
.ls22_c02094{letter-spacing:0.072468px;}
.lse_c02094{letter-spacing:0.076608px;}
.ls20_c02094{letter-spacing:0.079056px;}
.ls2f_c02094{letter-spacing:0.081396px;}
.lsb_c02094{letter-spacing:0.114912px;}
.ls13_c02094{letter-spacing:0.124488px;}
.ls14_c02094{letter-spacing:0.134064px;}
.ls9_c02094{letter-spacing:0.138348px;}
.lsc_c02094{letter-spacing:0.138852px;}
.ls18_c02094{letter-spacing:0.144288px;}
.ls25_c02094{letter-spacing:0.151200px;}
.ls1a_c02094{letter-spacing:0.151524px;}
.ls6_c02094{letter-spacing:0.158112px;}
.ls12_c02094{letter-spacing:0.162792px;}
.lsd_c02094{letter-spacing:0.164700px;}
.ls29_c02094{letter-spacing:0.167580px;}
.ls1b_c02094{letter-spacing:0.177876px;}
.ls16_c02094{letter-spacing:0.178200px;}
.lsf_c02094{letter-spacing:0.181944px;}
.ls2c_c02094{letter-spacing:154.887156px;}
.ls2b_c02094{letter-spacing:156.421800px;}
.ls11_c02094{letter-spacing:156.778200px;}
.lsa_c02094{letter-spacing:200.790000px;}
.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;}
}
.ws5_c02094{word-spacing:-16.647876px;}
.ws16_c02094{word-spacing:-0.272916px;}
.ws18_c02094{word-spacing:-0.253764px;}
.ws13_c02094{word-spacing:-0.229824px;}
.ws1a_c02094{word-spacing:-0.225036px;}
.ws19_c02094{word-spacing:-0.215460px;}
.ws11_c02094{word-spacing:-0.205884px;}
.ws1b_c02094{word-spacing:-0.172368px;}
.ws14_c02094{word-spacing:-0.144000px;}
.ws10_c02094{word-spacing:-0.119700px;}
.wse_c02094{word-spacing:-0.115200px;}
.ws1c_c02094{word-spacing:-0.110124px;}
.ws1d_c02094{word-spacing:-0.086400px;}
.ws24_c02094{word-spacing:-0.079200px;}
.ws1f_c02094{word-spacing:-0.054108px;}
.wsc_c02094{word-spacing:-0.021600px;}
.ws1e_c02094{word-spacing:-0.014400px;}
.wsd_c02094{word-spacing:0.000000px;}
.ws25_c02094{word-spacing:0.019764px;}
.ws15_c02094{word-spacing:0.021600px;}
.ws22_c02094{word-spacing:0.026352px;}
.ws27_c02094{word-spacing:0.032940px;}
.ws20_c02094{word-spacing:0.046116px;}
.ws21_c02094{word-spacing:0.052704px;}
.ws26_c02094{word-spacing:0.059292px;}
.ws23_c02094{word-spacing:0.079056px;}
.wsf_c02094{word-spacing:0.118800px;}
.ws0_c02094{word-spacing:58.969440px;}
.ws9_c02094{word-spacing:78.396372px;}
.wsa_c02094{word-spacing:78.398496px;}
.ws12_c02094{word-spacing:79.846560px;}
.ws3_c02094{word-spacing:89.986608px;}
.wsb_c02094{word-spacing:111.516372px;}
.ws2_c02094{word-spacing:116.986608px;}
.ws1_c02094{word-spacing:143.986608px;}
.ws17_c02094{word-spacing:156.735000px;}
.ws4_c02094{word-spacing:160.522380px;}
.ws8_c02094{word-spacing:193.282380px;}
.ws6_c02094{word-spacing:226.426608px;}
.ws7_c02094{word-spacing:276.390000px;}
._1_c02094{margin-left:-1.137600px;}
._22_c02094{width:1.069200px;}
._13_c02094{width:42.978888px;}
._f_c02094{width:62.064000px;}
._9_c02094{width:74.044440px;}
._a_c02094{width:75.357000px;}
._10_c02094{width:76.363560px;}
._35_c02094{width:77.730624px;}
._e_c02094{width:79.476372px;}
._c_c02094{width:81.649440px;}
._3_c02094{width:84.834000px;}
._20_c02094{width:85.921164px;}
._2_c02094{width:88.221600px;}
._15_c02094{width:90.874440px;}
._1a_c02094{width:98.206344px;}
._b_c02094{width:100.015200px;}
._11_c02094{width:104.038200px;}
._8_c02094{width:105.467688px;}
._14_c02094{width:109.185300px;}
._7_c02094{width:111.391524px;}
._d_c02094{width:115.496460px;}
._1b_c02094{width:119.705220px;}
._1f_c02094{width:121.035600px;}
._4_c02094{width:122.220000px;}
._1e_c02094{width:124.320168px;}
._1c_c02094{width:126.695016px;}
._5_c02094{width:127.980000px;}
._17_c02094{width:129.270636px;}
._31_c02094{width:131.488704px;}
._1d_c02094{width:137.266920px;}
._6_c02094{width:139.258944px;}
._21_c02094{width:145.847016px;}
._36_c02094{width:151.459056px;}
._12_c02094{width:156.313656px;}
._19_c02094{width:159.186384px;}
._2f_c02094{width:160.478496px;}
._27_c02094{width:193.238496px;}
._0_c02094{width:194.421600px;}
._25_c02094{width:197.370000px;}
._37_c02094{width:210.270132px;}
._16_c02094{width:219.324168px;}
._29_c02094{width:226.714248px;}
._26_c02094{width:230.722416px;}
._38_c02094{width:232.379460px;}
._2c_c02094{width:240.169608px;}
._18_c02094{width:254.386836px;}
._24_c02094{width:262.168704px;}
._23_c02094{width:269.588592px;}
._2b_c02094{width:276.034248px;}
._28_c02094{width:305.667504px;}
._2a_c02094{width:316.405944px;}
._32_c02094{width:326.568096px;}
._2d_c02094{width:355.461732px;}
._2e_c02094{width:421.221024px;}
._34_c02094{width:434.819988px;}
._33_c02094{width:623.041272px;}
._30_c02094{width:821.579940px;}
.fc0_c02094{color:rgb(0,0,0);}
.fs5_c02094{font-size:11.880000px;}
.fs6_c02094{font-size:18.000000px;}
.fs2_c02094{font-size:47.880000px;}
.fs1_c02094{font-size:54.000000px;}
.fs4_c02094{font-size:60.120000px;}
.fs3_c02094{font-size:65.880000px;}
.fs0_c02094{font-size:72.000000px;}
.y0_c02094{bottom:0.000000px;}
.y3_c02094{bottom:57.360450px;}
.y2_c02094{bottom:78.060450px;}
.y4a_c02094{bottom:117.120450px;}
.y49_c02094{bottom:132.600900px;}
.y48_c02094{bottom:148.170450px;}
.y47_c02094{bottom:163.650900px;}
.y46_c02094{bottom:179.220450px;}
.y45_c02094{bottom:194.700900px;}
.y44_c02094{bottom:210.270450px;}
.y43_c02094{bottom:225.750900px;}
.y42_c02094{bottom:241.320450px;}
.y41_c02094{bottom:258.960450px;}
.y40_c02094{bottom:277.950450px;}
.y3f_c02094{bottom:296.940450px;}
.y3e_c02094{bottom:315.930450px;}
.y3d_c02094{bottom:334.830450px;}
.y3c_c02094{bottom:353.820450px;}
.y3b_c02094{bottom:372.810450px;}
.y3a_c02094{bottom:391.440450px;}
.y39_c02094{bottom:409.710600px;}
.y38_c02094{bottom:432.840450px;}
.y37_c02094{bottom:448.320900px;}
.y36_c02094{bottom:463.890450px;}
.y35_c02094{bottom:477.390450px;}
.y34_c02094{bottom:484.590600px;}
.y33_c02094{bottom:502.230450px;}
.y32_c02094{bottom:521.220450px;}
.y31_c02094{bottom:540.210450px;}
.y30_c02094{bottom:559.200450px;}
.y2f_c02094{bottom:578.100450px;}
.y2e_c02094{bottom:597.090450px;}
.y2d_c02094{bottom:615.720450px;}
.y2c_c02094{bottom:633.630450px;}
.y2b_c02094{bottom:655.590900px;}
.y2a_c02094{bottom:671.160450px;}
.y29_c02094{bottom:688.350450px;}
.y28_c02094{bottom:708.870000px;}
.y27_c02094{bottom:724.439550px;}
.y26_c02094{bottom:739.920000px;}
.y25_c02094{bottom:755.400450px;}
.y24_c02094{bottom:770.970450px;}
.y23_c02094{bottom:774.750900px;}
.y22_c02094{bottom:789.960450px;}
.y21_c02094{bottom:793.740900px;}
.y20_c02094{bottom:808.950450px;}
.y1f_c02094{bottom:812.730900px;}
.y1e_c02094{bottom:827.850450px;}
.y1d_c02094{bottom:831.720000px;}
.y1c_c02094{bottom:846.840450px;}
.y1b_c02094{bottom:850.710450px;}
.y1a_c02094{bottom:869.700450px;}
.y19_c02094{bottom:884.820450px;}
.y18_c02094{bottom:888.600900px;}
.y17_c02094{bottom:903.810450px;}
.y16_c02094{bottom:907.590450px;}
.y15_c02094{bottom:926.580450px;}
.y14_c02094{bottom:941.700450px;}
.y13_c02094{bottom:945.570000px;}
.y12_c02094{bottom:960.690450px;}
.y11_c02094{bottom:964.560000px;}
.y10_c02094{bottom:979.680450px;}
.yf_c02094{bottom:983.460450px;}
.ye_c02094{bottom:999.660450px;}
.yd_c02094{bottom:1018.920450px;}
.yc_c02094{bottom:1035.390450px;}
.yb_c02094{bottom:1056.180450px;}
.ya_c02094{bottom:1064.910450px;}
.y9_c02094{bottom:1068.780000px;}
.y8_c02094{bottom:1083.900450px;}
.y7_c02094{bottom:1087.770450px;}
.y6_c02094{bottom:1103.970450px;}
.y5_c02094{bottom:1123.140450px;}
.y4_c02094{bottom:1139.610450px;}
.y1_c02094{bottom:1193.160450px;}
.h6_c02094{height:10.551621px;}
.hc_c02094{height:15.987305px;}
.h3_c02094{height:47.961914px;}
.ha_c02094{height:53.397598px;}
.hb_c02094{height:58.513535px;}
.h4_c02094{height:59.121914px;}
.h7_c02094{height:62.473535px;}
.h8_c02094{height:62.833535px;}
.h9_c02094{height:62.834135px;}
.h2_c02094{height:63.175781px;}
.h5_c02094{height:63.191777px;}
.h1_c02094{height:63.949219px;}
.h0_c02094{height:1263.000000px;}
.w1_c02094{width:892.500000px;}
.w0_c02094{width:892.830000px;}
.x0_c02094{left:0.000000px;}
.x1_c02094{left:127.620000px;}
.x3_c02094{left:135.630000px;}
.x4_c02094{left:143.910000px;}
.x5_c02094{left:150.300000px;}
.x7_c02094{left:162.450000px;}
.x6_c02094{left:220.680000px;}
.x8_c02094{left:318.870000px;}
.x2_c02094{left:437.490000px;}
@media print{
.va_c02094{vertical-align:-13.440000pt;}
.vc_c02094{vertical-align:-11.200000pt;}
.vb_c02094{vertical-align:-9.919467pt;}
.v6_c02094{vertical-align:-7.040000pt;}
.v3_c02094{vertical-align:-3.840000pt;}
.v8_c02094{vertical-align:-1.280000pt;}
.v0_c02094{vertical-align:0.000000pt;}
.v7_c02094{vertical-align:1.280000pt;}
.v9_c02094{vertical-align:2.240000pt;}
.v4_c02094{vertical-align:3.840000pt;}
.v1_c02094{vertical-align:4.800000pt;}
.v5_c02094{vertical-align:8.640000pt;}
.v2_c02094{vertical-align:9.920000pt;}
.ls30_c02094{letter-spacing:-0.158400pt;}
.ls2a_c02094{letter-spacing:-0.076608pt;}
.ls26_c02094{letter-spacing:-0.038400pt;}
.ls2d_c02094{letter-spacing:-0.019200pt;}
.ls28_c02094{letter-spacing:-0.017024pt;}
.ls27_c02094{letter-spacing:-0.009600pt;}
.ls31_c02094{letter-spacing:-0.005344pt;}
.ls2e_c02094{letter-spacing:-0.004256pt;}
.ls24_c02094{letter-spacing:0.000000pt;}
.ls32_c02094{letter-spacing:0.006400pt;}
.ls1_c02094{letter-spacing:0.009600pt;}
.ls1e_c02094{letter-spacing:0.011712pt;}
.ls17_c02094{letter-spacing:0.012800pt;}
.ls21_c02094{letter-spacing:0.016032pt;}
.ls15_c02094{letter-spacing:0.017024pt;}
.ls3_c02094{letter-spacing:0.025536pt;}
.ls0_c02094{letter-spacing:0.025600pt;}
.ls5_c02094{letter-spacing:0.028800pt;}
.ls23_c02094{letter-spacing:0.029280pt;}
.ls10_c02094{letter-spacing:0.033600pt;}
.ls1c_c02094{letter-spacing:0.035136pt;}
.ls2_c02094{letter-spacing:0.038304pt;}
.ls8_c02094{letter-spacing:0.038400pt;}
.ls19_c02094{letter-spacing:0.040992pt;}
.ls7_c02094{letter-spacing:0.046816pt;}
.ls1f_c02094{letter-spacing:0.052704pt;}
.ls4_c02094{letter-spacing:0.052800pt;}
.ls1d_c02094{letter-spacing:0.058560pt;}
.ls22_c02094{letter-spacing:0.064416pt;}
.lse_c02094{letter-spacing:0.068096pt;}
.ls20_c02094{letter-spacing:0.070272pt;}
.ls2f_c02094{letter-spacing:0.072352pt;}
.lsb_c02094{letter-spacing:0.102144pt;}
.ls13_c02094{letter-spacing:0.110656pt;}
.ls14_c02094{letter-spacing:0.119168pt;}
.ls9_c02094{letter-spacing:0.122976pt;}
.lsc_c02094{letter-spacing:0.123424pt;}
.ls18_c02094{letter-spacing:0.128256pt;}
.ls25_c02094{letter-spacing:0.134400pt;}
.ls1a_c02094{letter-spacing:0.134688pt;}
.ls6_c02094{letter-spacing:0.140544pt;}
.ls12_c02094{letter-spacing:0.144704pt;}
.lsd_c02094{letter-spacing:0.146400pt;}
.ls29_c02094{letter-spacing:0.148960pt;}
.ls1b_c02094{letter-spacing:0.158112pt;}
.ls16_c02094{letter-spacing:0.158400pt;}
.lsf_c02094{letter-spacing:0.161728pt;}
.ls2c_c02094{letter-spacing:137.677472pt;}
.ls2b_c02094{letter-spacing:139.041600pt;}
.ls11_c02094{letter-spacing:139.358400pt;}
.lsa_c02094{letter-spacing:178.480000pt;}
.ws5_c02094{word-spacing:-14.798112pt;}
.ws16_c02094{word-spacing:-0.242592pt;}
.ws18_c02094{word-spacing:-0.225568pt;}
.ws13_c02094{word-spacing:-0.204288pt;}
.ws1a_c02094{word-spacing:-0.200032pt;}
.ws19_c02094{word-spacing:-0.191520pt;}
.ws11_c02094{word-spacing:-0.183008pt;}
.ws1b_c02094{word-spacing:-0.153216pt;}
.ws14_c02094{word-spacing:-0.128000pt;}
.ws10_c02094{word-spacing:-0.106400pt;}
.wse_c02094{word-spacing:-0.102400pt;}
.ws1c_c02094{word-spacing:-0.097888pt;}
.ws1d_c02094{word-spacing:-0.076800pt;}
.ws24_c02094{word-spacing:-0.070400pt;}
.ws1f_c02094{word-spacing:-0.048096pt;}
.wsc_c02094{word-spacing:-0.019200pt;}
.ws1e_c02094{word-spacing:-0.012800pt;}
.wsd_c02094{word-spacing:0.000000pt;}
.ws25_c02094{word-spacing:0.017568pt;}
.ws15_c02094{word-spacing:0.019200pt;}
.ws22_c02094{word-spacing:0.023424pt;}
.ws27_c02094{word-spacing:0.029280pt;}
.ws20_c02094{word-spacing:0.040992pt;}
.ws21_c02094{word-spacing:0.046848pt;}
.ws26_c02094{word-spacing:0.052704pt;}
.ws23_c02094{word-spacing:0.070272pt;}
.wsf_c02094{word-spacing:0.105600pt;}
.ws0_c02094{word-spacing:52.417280pt;}
.ws9_c02094{word-spacing:69.685664pt;}
.wsa_c02094{word-spacing:69.687552pt;}
.ws12_c02094{word-spacing:70.974720pt;}
.ws3_c02094{word-spacing:79.988096pt;}
.wsb_c02094{word-spacing:99.125664pt;}
.ws2_c02094{word-spacing:103.988096pt;}
.ws1_c02094{word-spacing:127.988096pt;}
.ws17_c02094{word-spacing:139.320000pt;}
.ws4_c02094{word-spacing:142.686560pt;}
.ws8_c02094{word-spacing:171.806560pt;}
.ws6_c02094{word-spacing:201.268096pt;}
.ws7_c02094{word-spacing:245.680000pt;}
._1_c02094{margin-left:-1.011200pt;}
._22_c02094{width:0.950400pt;}
._13_c02094{width:38.203456pt;}
._f_c02094{width:55.168000pt;}
._9_c02094{width:65.817280pt;}
._a_c02094{width:66.984000pt;}
._10_c02094{width:67.878720pt;}
._35_c02094{width:69.093888pt;}
._e_c02094{width:70.645664pt;}
._c_c02094{width:72.577280pt;}
._3_c02094{width:75.408000pt;}
._20_c02094{width:76.374368pt;}
._2_c02094{width:78.419200pt;}
._15_c02094{width:80.777280pt;}
._1a_c02094{width:87.294528pt;}
._b_c02094{width:88.902400pt;}
._11_c02094{width:92.478400pt;}
._8_c02094{width:93.749056pt;}
._14_c02094{width:97.053600pt;}
._7_c02094{width:99.014688pt;}
._d_c02094{width:102.663520pt;}
._1b_c02094{width:106.404640pt;}
._1f_c02094{width:107.587200pt;}
._4_c02094{width:108.640000pt;}
._1e_c02094{width:110.506816pt;}
._1c_c02094{width:112.617792pt;}
._5_c02094{width:113.760000pt;}
._17_c02094{width:114.907232pt;}
._31_c02094{width:116.878848pt;}
._1d_c02094{width:122.015040pt;}
._6_c02094{width:123.785728pt;}
._21_c02094{width:129.641792pt;}
._36_c02094{width:134.630272pt;}
._12_c02094{width:138.945472pt;}
._19_c02094{width:141.499008pt;}
._2f_c02094{width:142.647552pt;}
._27_c02094{width:171.767552pt;}
._0_c02094{width:172.819200pt;}
._25_c02094{width:175.440000pt;}
._37_c02094{width:186.906784pt;}
._16_c02094{width:194.954816pt;}
._29_c02094{width:201.523776pt;}
._26_c02094{width:205.086592pt;}
._38_c02094{width:206.559520pt;}
._2c_c02094{width:213.484096pt;}
._18_c02094{width:226.121632pt;}
._24_c02094{width:233.038848pt;}
._23_c02094{width:239.634304pt;}
._2b_c02094{width:245.363776pt;}
._28_c02094{width:271.704448pt;}
._2a_c02094{width:281.249728pt;}
._32_c02094{width:290.282752pt;}
._2d_c02094{width:315.965984pt;}
._2e_c02094{width:374.418688pt;}
._34_c02094{width:386.506656pt;}
._33_c02094{width:553.814464pt;}
._30_c02094{width:730.293280pt;}
.fs5_c02094{font-size:10.560000pt;}
.fs6_c02094{font-size:16.000000pt;}
.fs2_c02094{font-size:42.560000pt;}
.fs1_c02094{font-size:48.000000pt;}
.fs4_c02094{font-size:53.440000pt;}
.fs3_c02094{font-size:58.560000pt;}
.fs0_c02094{font-size:64.000000pt;}
.y0_c02094{bottom:0.000000pt;}
.y3_c02094{bottom:50.987067pt;}
.y2_c02094{bottom:69.387067pt;}
.y4a_c02094{bottom:104.107067pt;}
.y49_c02094{bottom:117.867467pt;}
.y48_c02094{bottom:131.707067pt;}
.y47_c02094{bottom:145.467467pt;}
.y46_c02094{bottom:159.307067pt;}
.y45_c02094{bottom:173.067467pt;}
.y44_c02094{bottom:186.907067pt;}
.y43_c02094{bottom:200.667467pt;}
.y42_c02094{bottom:214.507067pt;}
.y41_c02094{bottom:230.187067pt;}
.y40_c02094{bottom:247.067067pt;}
.y3f_c02094{bottom:263.947067pt;}
.y3e_c02094{bottom:280.827067pt;}
.y3d_c02094{bottom:297.627067pt;}
.y3c_c02094{bottom:314.507067pt;}
.y3b_c02094{bottom:331.387067pt;}
.y3a_c02094{bottom:347.947067pt;}
.y39_c02094{bottom:364.187200pt;}
.y38_c02094{bottom:384.747067pt;}
.y37_c02094{bottom:398.507467pt;}
.y36_c02094{bottom:412.347067pt;}
.y35_c02094{bottom:424.347067pt;}
.y34_c02094{bottom:430.747200pt;}
.y33_c02094{bottom:446.427067pt;}
.y32_c02094{bottom:463.307067pt;}
.y31_c02094{bottom:480.187067pt;}
.y30_c02094{bottom:497.067067pt;}
.y2f_c02094{bottom:513.867067pt;}
.y2e_c02094{bottom:530.747067pt;}
.y2d_c02094{bottom:547.307067pt;}
.y2c_c02094{bottom:563.227067pt;}
.y2b_c02094{bottom:582.747467pt;}
.y2a_c02094{bottom:596.587067pt;}
.y29_c02094{bottom:611.867067pt;}
.y28_c02094{bottom:630.106667pt;}
.y27_c02094{bottom:643.946267pt;}
.y26_c02094{bottom:657.706667pt;}
.y25_c02094{bottom:671.467067pt;}
.y24_c02094{bottom:685.307067pt;}
.y23_c02094{bottom:688.667467pt;}
.y22_c02094{bottom:702.187067pt;}
.y21_c02094{bottom:705.547467pt;}
.y20_c02094{bottom:719.067067pt;}
.y1f_c02094{bottom:722.427467pt;}
.y1e_c02094{bottom:735.867067pt;}
.y1d_c02094{bottom:739.306667pt;}
.y1c_c02094{bottom:752.747067pt;}
.y1b_c02094{bottom:756.187067pt;}
.y1a_c02094{bottom:773.067067pt;}
.y19_c02094{bottom:786.507067pt;}
.y18_c02094{bottom:789.867467pt;}
.y17_c02094{bottom:803.387067pt;}
.y16_c02094{bottom:806.747067pt;}
.y15_c02094{bottom:823.627067pt;}
.y14_c02094{bottom:837.067067pt;}
.y13_c02094{bottom:840.506667pt;}
.y12_c02094{bottom:853.947067pt;}
.y11_c02094{bottom:857.386667pt;}
.y10_c02094{bottom:870.827067pt;}
.yf_c02094{bottom:874.187067pt;}
.ye_c02094{bottom:888.587067pt;}
.yd_c02094{bottom:905.707067pt;}
.yc_c02094{bottom:920.347067pt;}
.yb_c02094{bottom:938.827067pt;}
.ya_c02094{bottom:946.587067pt;}
.y9_c02094{bottom:950.026667pt;}
.y8_c02094{bottom:963.467067pt;}
.y7_c02094{bottom:966.907067pt;}
.y6_c02094{bottom:981.307067pt;}
.y5_c02094{bottom:998.347067pt;}
.y4_c02094{bottom:1012.987067pt;}
.y1_c02094{bottom:1060.587067pt;}
.h6_c02094{height:9.379219pt;}
.hc_c02094{height:14.210938pt;}
.h3_c02094{height:42.632812pt;}
.ha_c02094{height:47.464531pt;}
.hb_c02094{height:52.012031pt;}
.h4_c02094{height:52.552812pt;}
.h7_c02094{height:55.532031pt;}
.h8_c02094{height:55.852031pt;}
.h9_c02094{height:55.852565pt;}
.h2_c02094{height:56.156250pt;}
.h5_c02094{height:56.170469pt;}
.h1_c02094{height:56.843750pt;}
.h0_c02094{height:1122.666667pt;}
.w1_c02094{width:793.333333pt;}
.w0_c02094{width:793.626667pt;}
.x0_c02094{left:0.000000pt;}
.x1_c02094{left:113.440000pt;}
.x3_c02094{left:120.560000pt;}
.x4_c02094{left:127.920000pt;}
.x5_c02094{left:133.600000pt;}
.x7_c02094{left:144.400000pt;}
.x6_c02094{left:196.160000pt;}
.x8_c02094{left:283.440000pt;}
.x2_c02094{left:388.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_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_4da8114ab2cbd296796de797.woff2')format("woff");}.ff1_c02095{font-family:ff1_c02095;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02095;src:url('chunks/assets/font_a06879113079083dda019d59.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;}
.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);}
.v3_c02095{vertical-align:-22.320000px;}
.v2_c02095{vertical-align:-16.920600px;}
.v0_c02095{vertical-align:0.000000px;}
.v4_c02095{vertical-align:1.440000px;}
.v5_c02095{vertical-align:5.040000px;}
.v1_c02095{vertical-align:51.120000px;}
.ls24_c02095{letter-spacing:-0.181116px;}
.ls23_c02095{letter-spacing:-0.180360px;}
.ls22_c02095{letter-spacing:-0.176904px;}
.ls21_c02095{letter-spacing:-0.086400px;}
.ls1a_c02095{letter-spacing:-0.086184px;}
.ls1d_c02095{letter-spacing:-0.059292px;}
.ls1b_c02095{letter-spacing:-0.038304px;}
.ls20_c02095{letter-spacing:-0.032940px;}
.ls1e_c02095{letter-spacing:-0.014400px;}
.ls1f_c02095{letter-spacing:-0.013176px;}
.ls18_c02095{letter-spacing:-0.007200px;}
.ls19_c02095{letter-spacing:-0.004788px;}
.ls17_c02095{letter-spacing:0.000000px;}
.lse_c02095{letter-spacing:0.007200px;}
.ls0_c02095{letter-spacing:0.014400px;}
.ls3_c02095{letter-spacing:0.019152px;}
.ls7_c02095{letter-spacing:0.019764px;}
.ls13_c02095{letter-spacing:0.028800px;}
.ls5_c02095{letter-spacing:0.032940px;}
.ls10_c02095{letter-spacing:0.039528px;}
.ls2_c02095{letter-spacing:0.043092px;}
.ls4_c02095{letter-spacing:0.046116px;}
.ls12_c02095{letter-spacing:0.050400px;}
.ls9_c02095{letter-spacing:0.052704px;}
.lsc_c02095{letter-spacing:0.059292px;}
.ls1_c02095{letter-spacing:0.065880px;}
.lsf_c02095{letter-spacing:0.072468px;}
.ls8_c02095{letter-spacing:0.079056px;}
.lsd_c02095{letter-spacing:0.092232px;}
.ls11_c02095{letter-spacing:0.098820px;}
.ls1c_c02095{letter-spacing:0.110124px;}
.lsb_c02095{letter-spacing:0.118584px;}
.lsa_c02095{letter-spacing:0.125172px;}
.ls16_c02095{letter-spacing:0.144936px;}
.ls6_c02095{letter-spacing:0.164700px;}
.ls15_c02095{letter-spacing:0.181944px;}
.ls14_c02095{letter-spacing:34.065360px;}
.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;}
}
.ws12_c02095{word-spacing:-0.115200px;}
.wsf_c02095{word-spacing:-0.100800px;}
.ws13_c02095{word-spacing:-0.086400px;}
.wsa_c02095{word-spacing:-0.026352px;}
.ws0_c02095{word-spacing:-0.021600px;}
.ws3_c02095{word-spacing:-0.014400px;}
.wse_c02095{word-spacing:-0.007200px;}
.ws1_c02095{word-spacing:0.000000px;}
.ws2_c02095{word-spacing:0.007200px;}
.wsd_c02095{word-spacing:0.014400px;}
.ws10_c02095{word-spacing:0.019764px;}
.wsc_c02095{word-spacing:0.026352px;}
.wsb_c02095{word-spacing:0.032940px;}
.ws8_c02095{word-spacing:0.039528px;}
.ws4_c02095{word-spacing:0.046116px;}
.ws6_c02095{word-spacing:0.052704px;}
.ws5_c02095{word-spacing:0.059292px;}
.ws16_c02095{word-spacing:35.944128px;}
.ws15_c02095{word-spacing:37.742652px;}
.ws14_c02095{word-spacing:48.689172px;}
.ws11_c02095{word-spacing:276.406128px;}
.ws9_c02095{word-spacing:1085.722164px;}
.ws7_c02095{word-spacing:1129.690476px;}
._16_c02095{margin-left:-28.802736px;}
._a_c02095{margin-left:-1.027728px;}
._3_c02095{width:1.106784px;}
._1c_c02095{width:39.570228px;}
._1b_c02095{width:40.570884px;}
._1e_c02095{width:55.174464px;}
._10_c02095{width:65.407068px;}
._9_c02095{width:73.150308px;}
._7_c02095{width:96.889716px;}
._12_c02095{width:101.605680px;}
._2_c02095{width:105.018912px;}
._6_c02095{width:115.049268px;}
._11_c02095{width:116.429220px;}
._e_c02095{width:129.744072px;}
._8_c02095{width:140.316984px;}
._5_c02095{width:146.306304px;}
._13_c02095{width:172.454076px;}
._0_c02095{width:194.421600px;}
._15_c02095{width:264.613608px;}
._21_c02095{width:433.389456px;}
._1_c02095{width:488.406960px;}
._22_c02095{width:566.388000px;}
._14_c02095{width:604.817928px;}
._1f_c02095{width:627.847452px;}
._4_c02095{width:717.116976px;}
._c_c02095{width:733.145580px;}
._19_c02095{width:768.715200px;}
._18_c02095{width:781.617600px;}
._d_c02095{width:802.405224px;}
._20_c02095{width:894.312288px;}
._f_c02095{width:955.925388px;}
._b_c02095{width:1120.124700px;}
._1d_c02095{width:1379.900880px;}
._17_c02095{width:1791.288000px;}
._1a_c02095{width:2268.561600px;}
.fc0_c02095{color:rgb(0,0,0);}
.fs4_c02095{font-size:42.120000px;}
.fs3_c02095{font-size:47.880000px;}
.fs1_c02095{font-size:54.000000px;}
.fs5_c02095{font-size:60.120000px;}
.fs2_c02095{font-size:65.880000px;}
.fs0_c02095{font-size:72.000000px;}
.y0_c02095{bottom:0.000000px;}
.y3_c02095{bottom:57.360450px;}
.y2_c02095{bottom:78.060450px;}
.y30_c02095{bottom:290.190450px;}
.y2f_c02095{bottom:305.940450px;}
.y2e_c02095{bottom:325.740450px;}
.y2d_c02095{bottom:345.450450px;}
.y2c_c02095{bottom:365.160450px;}
.y2b_c02095{bottom:391.620600px;}
.y2a_c02095{bottom:406.020600px;}
.y29_c02095{bottom:427.440450px;}
.y28_c02095{bottom:448.140450px;}
.y27_c02095{bottom:469.650450px;}
.y26_c02095{bottom:491.070450px;}
.y25_c02095{bottom:512.490450px;}
.y24_c02095{bottom:534.000450px;}
.y23_c02095{bottom:555.420450px;}
.y22_c02095{bottom:576.660450px;}
.y21_c02095{bottom:596.280450px;}
.y20_c02095{bottom:616.260450px;}
.y1f_c02095{bottom:636.960450px;}
.y1e_c02095{bottom:658.470450px;}
.y1d_c02095{bottom:679.350450px;}
.y1c_c02095{bottom:700.590450px;}
.y1b_c02095{bottom:722.010450px;}
.y1a_c02095{bottom:742.710450px;}
.y19_c02095{bottom:763.410450px;}
.y18_c02095{bottom:787.260450px;}
.y17_c02095{bottom:806.160450px;}
.y16_c02095{bottom:825.510450px;}
.y15_c02095{bottom:844.500450px;}
.y14_c02095{bottom:863.850450px;}
.y13_c02095{bottom:882.840450px;}
.y12_c02095{bottom:902.190450px;}
.y11_c02095{bottom:921.180450px;}
.y10_c02095{bottom:940.530450px;}
.yf_c02095{bottom:959.520450px;}
.ye_c02095{bottom:978.870450px;}
.yd_c02095{bottom:997.770450px;}
.yc_c02095{bottom:1017.120450px;}
.yb_c02095{bottom:1036.110450px;}
.y9_c02095{bottom:1054.110450px;}
.y8_c02095{bottom:1055.100450px;}
.ya_c02095{bottom:1067.880450px;}
.y7_c02095{bottom:1083.360450px;}
.y6_c02095{bottom:1106.490900px;}
.y5_c02095{bottom:1122.060450px;}
.y4_c02095{bottom:1139.250450px;}
.y1_c02095{bottom:1193.160450px;}
.h8_c02095{height:37.410293px;}
.h5_c02095{height:42.526230px;}
.h3_c02095{height:47.961914px;}
.h7_c02095{height:57.805840px;}
.h6_c02095{height:58.513535px;}
.ha_c02095{height:62.831195px;}
.h2_c02095{height:63.175781px;}
.h9_c02095{height:63.191195px;}
.h1_c02095{height:63.949219px;}
.h4_c02095{height:93.646230px;}
.h0_c02095{height:1263.000000px;}
.w1_c02095{width:892.500000px;}
.w0_c02095{width:892.830000px;}
.x0_c02095{left:0.000000px;}
.x1_c02095{left:127.620000px;}
.x3_c02095{left:135.630000px;}
.xf_c02095{left:137.520000px;}
.x4_c02095{left:242.370000px;}
.xd_c02095{left:263.430000px;}
.xe_c02095{left:298.710000px;}
.x10_c02095{left:335.160000px;}
.x2_c02095{left:437.490000px;}
.x5_c02095{left:490.770000px;}
.x6_c02095{left:532.170000px;}
.x7_c02095{left:541.530000px;}
.x8_c02095{left:583.200000px;}
.x9_c02095{left:591.750000px;}
.xa_c02095{left:631.620000px;}
.xb_c02095{left:683.100000px;}
.xc_c02095{left:731.610000px;}
@media print{
.v3_c02095{vertical-align:-19.840000pt;}
.v2_c02095{vertical-align:-15.040533pt;}
.v0_c02095{vertical-align:0.000000pt;}
.v4_c02095{vertical-align:1.280000pt;}
.v5_c02095{vertical-align:4.480000pt;}
.v1_c02095{vertical-align:45.440000pt;}
.ls24_c02095{letter-spacing:-0.160992pt;}
.ls23_c02095{letter-spacing:-0.160320pt;}
.ls22_c02095{letter-spacing:-0.157248pt;}
.ls21_c02095{letter-spacing:-0.076800pt;}
.ls1a_c02095{letter-spacing:-0.076608pt;}
.ls1d_c02095{letter-spacing:-0.052704pt;}
.ls1b_c02095{letter-spacing:-0.034048pt;}
.ls20_c02095{letter-spacing:-0.029280pt;}
.ls1e_c02095{letter-spacing:-0.012800pt;}
.ls1f_c02095{letter-spacing:-0.011712pt;}
.ls18_c02095{letter-spacing:-0.006400pt;}
.ls19_c02095{letter-spacing:-0.004256pt;}
.ls17_c02095{letter-spacing:0.000000pt;}
.lse_c02095{letter-spacing:0.006400pt;}
.ls0_c02095{letter-spacing:0.012800pt;}
.ls3_c02095{letter-spacing:0.017024pt;}
.ls7_c02095{letter-spacing:0.017568pt;}
.ls13_c02095{letter-spacing:0.025600pt;}
.ls5_c02095{letter-spacing:0.029280pt;}
.ls10_c02095{letter-spacing:0.035136pt;}
.ls2_c02095{letter-spacing:0.038304pt;}
.ls4_c02095{letter-spacing:0.040992pt;}
.ls12_c02095{letter-spacing:0.044800pt;}
.ls9_c02095{letter-spacing:0.046848pt;}
.lsc_c02095{letter-spacing:0.052704pt;}
.ls1_c02095{letter-spacing:0.058560pt;}
.lsf_c02095{letter-spacing:0.064416pt;}
.ls8_c02095{letter-spacing:0.070272pt;}
.lsd_c02095{letter-spacing:0.081984pt;}
.ls11_c02095{letter-spacing:0.087840pt;}
.ls1c_c02095{letter-spacing:0.097888pt;}
.lsb_c02095{letter-spacing:0.105408pt;}
.lsa_c02095{letter-spacing:0.111264pt;}
.ls16_c02095{letter-spacing:0.128832pt;}
.ls6_c02095{letter-spacing:0.146400pt;}
.ls15_c02095{letter-spacing:0.161728pt;}
.ls14_c02095{letter-spacing:30.280320pt;}
.ws12_c02095{word-spacing:-0.102400pt;}
.wsf_c02095{word-spacing:-0.089600pt;}
.ws13_c02095{word-spacing:-0.076800pt;}
.wsa_c02095{word-spacing:-0.023424pt;}
.ws0_c02095{word-spacing:-0.019200pt;}
.ws3_c02095{word-spacing:-0.012800pt;}
.wse_c02095{word-spacing:-0.006400pt;}
.ws1_c02095{word-spacing:0.000000pt;}
.ws2_c02095{word-spacing:0.006400pt;}
.wsd_c02095{word-spacing:0.012800pt;}
.ws10_c02095{word-spacing:0.017568pt;}
.wsc_c02095{word-spacing:0.023424pt;}
.wsb_c02095{word-spacing:0.029280pt;}
.ws8_c02095{word-spacing:0.035136pt;}
.ws4_c02095{word-spacing:0.040992pt;}
.ws6_c02095{word-spacing:0.046848pt;}
.ws5_c02095{word-spacing:0.052704pt;}
.ws16_c02095{word-spacing:31.950336pt;}
.ws15_c02095{word-spacing:33.549024pt;}
.ws14_c02095{word-spacing:43.279264pt;}
.ws11_c02095{word-spacing:245.694336pt;}
.ws9_c02095{word-spacing:965.086368pt;}
.ws7_c02095{word-spacing:1004.169312pt;}
._16_c02095{margin-left:-25.602432pt;}
._a_c02095{margin-left:-0.913536pt;}
._3_c02095{width:0.983808pt;}
._1c_c02095{width:35.173536pt;}
._1b_c02095{width:36.063008pt;}
._1e_c02095{width:49.043968pt;}
._10_c02095{width:58.139616pt;}
._9_c02095{width:65.022496pt;}
._7_c02095{width:86.124192pt;}
._12_c02095{width:90.316160pt;}
._2_c02095{width:93.350144pt;}
._6_c02095{width:102.266016pt;}
._11_c02095{width:103.492640pt;}
._e_c02095{width:115.328064pt;}
._8_c02095{width:124.726208pt;}
._5_c02095{width:130.050048pt;}
._13_c02095{width:153.292512pt;}
._0_c02095{width:172.819200pt;}
._15_c02095{width:235.212096pt;}
._21_c02095{width:385.235072pt;}
._1_c02095{width:434.139520pt;}
._22_c02095{width:503.456000pt;}
._14_c02095{width:537.615936pt;}
._1f_c02095{width:558.086624pt;}
._4_c02095{width:637.437312pt;}
._c_c02095{width:651.684960pt;}
._19_c02095{width:683.302400pt;}
._18_c02095{width:694.771200pt;}
._d_c02095{width:713.249088pt;}
._20_c02095{width:794.944256pt;}
._f_c02095{width:849.711456pt;}
._b_c02095{width:995.666400pt;}
._1d_c02095{width:1226.578560pt;}
._17_c02095{width:1592.256000pt;}
._1a_c02095{width:2016.499200pt;}
.fs4_c02095{font-size:37.440000pt;}
.fs3_c02095{font-size:42.560000pt;}
.fs1_c02095{font-size:48.000000pt;}
.fs5_c02095{font-size:53.440000pt;}
.fs2_c02095{font-size:58.560000pt;}
.fs0_c02095{font-size:64.000000pt;}
.y0_c02095{bottom:0.000000pt;}
.y3_c02095{bottom:50.987067pt;}
.y2_c02095{bottom:69.387067pt;}
.y30_c02095{bottom:257.947067pt;}
.y2f_c02095{bottom:271.947067pt;}
.y2e_c02095{bottom:289.547067pt;}
.y2d_c02095{bottom:307.067067pt;}
.y2c_c02095{bottom:324.587067pt;}
.y2b_c02095{bottom:348.107200pt;}
.y2a_c02095{bottom:360.907200pt;}
.y29_c02095{bottom:379.947067pt;}
.y28_c02095{bottom:398.347067pt;}
.y27_c02095{bottom:417.467067pt;}
.y26_c02095{bottom:436.507067pt;}
.y25_c02095{bottom:455.547067pt;}
.y24_c02095{bottom:474.667067pt;}
.y23_c02095{bottom:493.707067pt;}
.y22_c02095{bottom:512.587067pt;}
.y21_c02095{bottom:530.027067pt;}
.y20_c02095{bottom:547.787067pt;}
.y1f_c02095{bottom:566.187067pt;}
.y1e_c02095{bottom:585.307067pt;}
.y1d_c02095{bottom:603.867067pt;}
.y1c_c02095{bottom:622.747067pt;}
.y1b_c02095{bottom:641.787067pt;}
.y1a_c02095{bottom:660.187067pt;}
.y19_c02095{bottom:678.587067pt;}
.y18_c02095{bottom:699.787067pt;}
.y17_c02095{bottom:716.587067pt;}
.y16_c02095{bottom:733.787067pt;}
.y15_c02095{bottom:750.667067pt;}
.y14_c02095{bottom:767.867067pt;}
.y13_c02095{bottom:784.747067pt;}
.y12_c02095{bottom:801.947067pt;}
.y11_c02095{bottom:818.827067pt;}
.y10_c02095{bottom:836.027067pt;}
.yf_c02095{bottom:852.907067pt;}
.ye_c02095{bottom:870.107067pt;}
.yd_c02095{bottom:886.907067pt;}
.yc_c02095{bottom:904.107067pt;}
.yb_c02095{bottom:920.987067pt;}
.y9_c02095{bottom:936.987067pt;}
.y8_c02095{bottom:937.867067pt;}
.ya_c02095{bottom:949.227067pt;}
.y7_c02095{bottom:962.987067pt;}
.y6_c02095{bottom:983.547467pt;}
.y5_c02095{bottom:997.387067pt;}
.y4_c02095{bottom:1012.667067pt;}
.y1_c02095{bottom:1060.587067pt;}
.h8_c02095{height:33.253594pt;}
.h5_c02095{height:37.801094pt;}
.h3_c02095{height:42.632812pt;}
.h7_c02095{height:51.382969pt;}
.h6_c02095{height:52.012031pt;}
.ha_c02095{height:55.849951pt;}
.h2_c02095{height:56.156250pt;}
.h9_c02095{height:56.169951pt;}
.h1_c02095{height:56.843750pt;}
.h4_c02095{height:83.241094pt;}
.h0_c02095{height:1122.666667pt;}
.w1_c02095{width:793.333333pt;}
.w0_c02095{width:793.626667pt;}
.x0_c02095{left:0.000000pt;}
.x1_c02095{left:113.440000pt;}
.x3_c02095{left:120.560000pt;}
.xf_c02095{left:122.240000pt;}
.x4_c02095{left:215.440000pt;}
.xd_c02095{left:234.160000pt;}
.xe_c02095{left:265.520000pt;}
.x10_c02095{left:297.920000pt;}
.x2_c02095{left:388.880000pt;}
.x5_c02095{left:436.240000pt;}
.x6_c02095{left:473.040000pt;}
.x7_c02095{left:481.360000pt;}
.x8_c02095{left:518.400000pt;}
.x9_c02095{left:526.000000pt;}
.xa_c02095{left:561.440000pt;}
.xb_c02095{left:607.200000pt;}
.xc_c02095{left:650.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_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_a524ad648f5e542114915cb2.woff2')format("woff");}.ff1_c02096{font-family:ff1_c02096;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02096;src:url('chunks/assets/font_9d6a5724dae772ac21db4035.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;}
.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;}
.ls1b_c02096{letter-spacing:-0.201600px;}
.ls1c_c02096{letter-spacing:-0.064800px;}
.ls19_c02096{letter-spacing:-0.043200px;}
.ls1a_c02096{letter-spacing:-0.036000px;}
.ls18_c02096{letter-spacing:-0.021600px;}
.ls16_c02096{letter-spacing:-0.014400px;}
.ls17_c02096{letter-spacing:0.000000px;}
.ls9_c02096{letter-spacing:0.006588px;}
.lsf_c02096{letter-spacing:0.007200px;}
.ls5_c02096{letter-spacing:0.013176px;}
.ls10_c02096{letter-spacing:0.014400px;}
.ls6_c02096{letter-spacing:0.019764px;}
.lsd_c02096{letter-spacing:0.021600px;}
.ls2_c02096{letter-spacing:0.026352px;}
.ls1_c02096{letter-spacing:0.028800px;}
.ls7_c02096{letter-spacing:0.032940px;}
.ls0_c02096{letter-spacing:0.036000px;}
.ls15_c02096{letter-spacing:0.039528px;}
.lsb_c02096{letter-spacing:0.046116px;}
.ls13_c02096{letter-spacing:0.050400px;}
.ls4_c02096{letter-spacing:0.052704px;}
.ls3_c02096{letter-spacing:0.059292px;}
.lsc_c02096{letter-spacing:0.065880px;}
.ls12_c02096{letter-spacing:0.072000px;}
.ls8_c02096{letter-spacing:0.079200px;}
.lsa_c02096{letter-spacing:0.085644px;}
.lse_c02096{letter-spacing:0.115200px;}
.ls11_c02096{letter-spacing:0.131760px;}
.ls14_c02096{letter-spacing:0.151524px;}
.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;}
}
.ws2_c02096{word-spacing:-16.621524px;}
.ws1_c02096{word-spacing:-16.601760px;}
.ws0_c02096{word-spacing:-16.555644px;}
.ws29_c02096{word-spacing:-0.410400px;}
.ws9_c02096{word-spacing:-0.172800px;}
.ws28_c02096{word-spacing:-0.144000px;}
.ws11_c02096{word-spacing:-0.079200px;}
.ws5_c02096{word-spacing:-0.036000px;}
.ws1c_c02096{word-spacing:-0.028800px;}
.wsa_c02096{word-spacing:-0.021600px;}
.ws15_c02096{word-spacing:-0.014400px;}
.ws1f_c02096{word-spacing:-0.007200px;}
.ws4_c02096{word-spacing:0.000000px;}
.ws3_c02096{word-spacing:0.014400px;}
.ws24_c02096{word-spacing:0.019764px;}
.ws19_c02096{word-spacing:0.026352px;}
.ws25_c02096{word-spacing:0.032940px;}
.wsb_c02096{word-spacing:0.036000px;}
.ws14_c02096{word-spacing:0.039528px;}
.ws17_c02096{word-spacing:0.046116px;}
.ws22_c02096{word-spacing:0.052704px;}
.ws10_c02096{word-spacing:0.059292px;}
.ws2a_c02096{word-spacing:0.064800px;}
.ws1a_c02096{word-spacing:0.085644px;}
.ws1b_c02096{word-spacing:0.093600px;}
.ws2c_c02096{word-spacing:0.382104px;}
.ws2b_c02096{word-spacing:0.428220px;}
.ws2f_c02096{word-spacing:1.482300px;}
.ws20_c02096{word-spacing:3.623400px;}
.ws21_c02096{word-spacing:3.643164px;}
.ws1e_c02096{word-spacing:3.852000px;}
.ws1d_c02096{word-spacing:3.938400px;}
.ws31_c02096{word-spacing:5.072760px;}
.ws30_c02096{word-spacing:5.092524px;}
.ws32_c02096{word-spacing:5.810616px;}
.ws33_c02096{word-spacing:5.830380px;}
.ws12_c02096{word-spacing:6.535296px;}
.ws13_c02096{word-spacing:6.561648px;}
.ws23_c02096{word-spacing:7.945128px;}
.ws27_c02096{word-spacing:15.408000px;}
.ws26_c02096{word-spacing:15.458400px;}
.wsf_c02096{word-spacing:18.433224px;}
.wse_c02096{word-spacing:18.439812px;}
.ws16_c02096{word-spacing:19.869408px;}
.ws2d_c02096{word-spacing:20.534796px;}
.ws2e_c02096{word-spacing:20.547972px;}
.ws7_c02096{word-spacing:21.139200px;}
.ws8_c02096{word-spacing:21.160800px;}
.ws6_c02096{word-spacing:21.189600px;}
.ws18_c02096{word-spacing:27.794772px;}
.wsd_c02096{word-spacing:28.473336px;}
.wsc_c02096{word-spacing:37.505484px;}
._1_c02096{margin-left:-1.144800px;}
._2_c02096{width:1.146312px;}
._3_c02096{width:3.830400px;}
._4_c02096{width:15.408000px;}
._0_c02096{width:194.400000px;}
.fc0_c02096{color:rgb(0,0,0);}
.fs2_c02096{font-size:29.880000px;}
.fs4_c02096{font-size:36.000000px;}
.fs1_c02096{font-size:47.880000px;}
.fs3_c02096{font-size:65.880000px;}
.fs0_c02096{font-size:72.000000px;}
.y0_c02096{bottom:0.000000px;}
.y3_c02096{bottom:57.360450px;}
.y2_c02096{bottom:78.060450px;}
.y37_c02096{bottom:129.180450px;}
.y36_c02096{bottom:148.170450px;}
.y35_c02096{bottom:167.160450px;}
.y34_c02096{bottom:186.060450px;}
.y33_c02096{bottom:205.050450px;}
.y32_c02096{bottom:224.040600px;}
.y31_c02096{bottom:243.030600px;}
.y30_c02096{bottom:262.020450px;}
.y2f_c02096{bottom:279.300450px;}
.y2e_c02096{bottom:291.540450px;}
.y2d_c02096{bottom:323.490600px;}
.y2c_c02096{bottom:354.540600px;}
.y2b_c02096{bottom:381.000600px;}
.y2a_c02096{bottom:395.490450px;}
.y29_c02096{bottom:410.070450px;}
.y28_c02096{bottom:429.060450px;}
.y27_c02096{bottom:446.340600px;}
.y26_c02096{bottom:458.580450px;}
.y25_c02096{bottom:479.010450px;}
.y24_c02096{bottom:493.680600px;}
.y23_c02096{bottom:512.580450px;}
.y22_c02096{bottom:530.490450px;}
.y21_c02096{bottom:545.610450px;}
.y20_c02096{bottom:577.560450px;}
.y1f_c02096{bottom:608.610450px;}
.y1e_c02096{bottom:639.660450px;}
.y1d_c02096{bottom:659.100450px;}
.y1c_c02096{bottom:673.680450px;}
.y1b_c02096{bottom:688.350450px;}
.y1a_c02096{bottom:707.340450px;}
.y19_c02096{bottom:725.430450px;}
.y18_c02096{bottom:740.100450px;}
.y17_c02096{bottom:759.090450px;}
.y16_c02096{bottom:776.910450px;}
.y15_c02096{bottom:792.030450px;}
.y14_c02096{bottom:812.370450px;}
.y13_c02096{bottom:827.040540px;}
.y12_c02096{bottom:846.030450px;}
.y11_c02096{bottom:865.200450px;}
.y10_c02096{bottom:885.630450px;}
.yf_c02096{bottom:900.301305px;}
.ye_c02096{bottom:919.200630px;}
.yd_c02096{bottom:938.190540px;}
.yc_c02096{bottom:957.180450px;}
.yb_c02096{bottom:976.350450px;}
.ya_c02096{bottom:1008.120450px;}
.y9_c02096{bottom:1040.160450px;}
.y8_c02096{bottom:1071.210450px;}
.y7_c02096{bottom:1089.120450px;}
.y6_c02096{bottom:1105.500450px;}
.y5_c02096{bottom:1124.850450px;}
.y4_c02096{bottom:1139.970450px;}
.y1_c02096{bottom:1193.160450px;}
.h4_c02096{height:26.217949px;}
.ha_c02096{height:31.974609px;}
.h7_c02096{height:42.011895px;}
.h3_c02096{height:42.526230px;}
.h5_c02096{height:57.805840px;}
.h9_c02096{height:58.513535px;}
.h6_c02096{height:63.172361px;}
.h2_c02096{height:63.175781px;}
.h8_c02096{height:63.176021px;}
.h1_c02096{height:63.949219px;}
.h0_c02096{height:1263.000000px;}
.w1_c02096{width:892.500000px;}
.w0_c02096{width:892.830000px;}
.x0_c02096{left:0.000000px;}
.x1_c02096{left:127.620000px;}
.x7_c02096{left:135.630000px;}
.x6_c02096{left:148.950000px;}
.x8_c02096{left:159.480000px;}
.x5_c02096{left:324.810000px;}
.x3_c02096{left:406.350000px;}
.x2_c02096{left:437.580000px;}
.x4_c02096{left:446.580000px;}
@media print{
.v0_c02096{vertical-align:0.000000pt;}
.ls1b_c02096{letter-spacing:-0.179200pt;}
.ls1c_c02096{letter-spacing:-0.057600pt;}
.ls19_c02096{letter-spacing:-0.038400pt;}
.ls1a_c02096{letter-spacing:-0.032000pt;}
.ls18_c02096{letter-spacing:-0.019200pt;}
.ls16_c02096{letter-spacing:-0.012800pt;}
.ls17_c02096{letter-spacing:0.000000pt;}
.ls9_c02096{letter-spacing:0.005856pt;}
.lsf_c02096{letter-spacing:0.006400pt;}
.ls5_c02096{letter-spacing:0.011712pt;}
.ls10_c02096{letter-spacing:0.012800pt;}
.ls6_c02096{letter-spacing:0.017568pt;}
.lsd_c02096{letter-spacing:0.019200pt;}
.ls2_c02096{letter-spacing:0.023424pt;}
.ls1_c02096{letter-spacing:0.025600pt;}
.ls7_c02096{letter-spacing:0.029280pt;}
.ls0_c02096{letter-spacing:0.032000pt;}
.ls15_c02096{letter-spacing:0.035136pt;}
.lsb_c02096{letter-spacing:0.040992pt;}
.ls13_c02096{letter-spacing:0.044800pt;}
.ls4_c02096{letter-spacing:0.046848pt;}
.ls3_c02096{letter-spacing:0.052704pt;}
.lsc_c02096{letter-spacing:0.058560pt;}
.ls12_c02096{letter-spacing:0.064000pt;}
.ls8_c02096{letter-spacing:0.070400pt;}
.lsa_c02096{letter-spacing:0.076128pt;}
.lse_c02096{letter-spacing:0.102400pt;}
.ls11_c02096{letter-spacing:0.117120pt;}
.ls14_c02096{letter-spacing:0.134688pt;}
.ws2_c02096{word-spacing:-14.774688pt;}
.ws1_c02096{word-spacing:-14.757120pt;}
.ws0_c02096{word-spacing:-14.716128pt;}
.ws29_c02096{word-spacing:-0.364800pt;}
.ws9_c02096{word-spacing:-0.153600pt;}
.ws28_c02096{word-spacing:-0.128000pt;}
.ws11_c02096{word-spacing:-0.070400pt;}
.ws5_c02096{word-spacing:-0.032000pt;}
.ws1c_c02096{word-spacing:-0.025600pt;}
.wsa_c02096{word-spacing:-0.019200pt;}
.ws15_c02096{word-spacing:-0.012800pt;}
.ws1f_c02096{word-spacing:-0.006400pt;}
.ws4_c02096{word-spacing:0.000000pt;}
.ws3_c02096{word-spacing:0.012800pt;}
.ws24_c02096{word-spacing:0.017568pt;}
.ws19_c02096{word-spacing:0.023424pt;}
.ws25_c02096{word-spacing:0.029280pt;}
.wsb_c02096{word-spacing:0.032000pt;}
.ws14_c02096{word-spacing:0.035136pt;}
.ws17_c02096{word-spacing:0.040992pt;}
.ws22_c02096{word-spacing:0.046848pt;}
.ws10_c02096{word-spacing:0.052704pt;}
.ws2a_c02096{word-spacing:0.057600pt;}
.ws1a_c02096{word-spacing:0.076128pt;}
.ws1b_c02096{word-spacing:0.083200pt;}
.ws2c_c02096{word-spacing:0.339648pt;}
.ws2b_c02096{word-spacing:0.380640pt;}
.ws2f_c02096{word-spacing:1.317600pt;}
.ws20_c02096{word-spacing:3.220800pt;}
.ws21_c02096{word-spacing:3.238368pt;}
.ws1e_c02096{word-spacing:3.424000pt;}
.ws1d_c02096{word-spacing:3.500800pt;}
.ws31_c02096{word-spacing:4.509120pt;}
.ws30_c02096{word-spacing:4.526688pt;}
.ws32_c02096{word-spacing:5.164992pt;}
.ws33_c02096{word-spacing:5.182560pt;}
.ws12_c02096{word-spacing:5.809152pt;}
.ws13_c02096{word-spacing:5.832576pt;}
.ws23_c02096{word-spacing:7.062336pt;}
.ws27_c02096{word-spacing:13.696000pt;}
.ws26_c02096{word-spacing:13.740800pt;}
.wsf_c02096{word-spacing:16.385088pt;}
.wse_c02096{word-spacing:16.390944pt;}
.ws16_c02096{word-spacing:17.661696pt;}
.ws2d_c02096{word-spacing:18.253152pt;}
.ws2e_c02096{word-spacing:18.264864pt;}
.ws7_c02096{word-spacing:18.790400pt;}
.ws8_c02096{word-spacing:18.809600pt;}
.ws6_c02096{word-spacing:18.835200pt;}
.ws18_c02096{word-spacing:24.706464pt;}
.wsd_c02096{word-spacing:25.309632pt;}
.wsc_c02096{word-spacing:33.338208pt;}
._1_c02096{margin-left:-1.017600pt;}
._2_c02096{width:1.018944pt;}
._3_c02096{width:3.404800pt;}
._4_c02096{width:13.696000pt;}
._0_c02096{width:172.800000pt;}
.fs2_c02096{font-size:26.560000pt;}
.fs4_c02096{font-size:32.000000pt;}
.fs1_c02096{font-size:42.560000pt;}
.fs3_c02096{font-size:58.560000pt;}
.fs0_c02096{font-size:64.000000pt;}
.y0_c02096{bottom:0.000000pt;}
.y3_c02096{bottom:50.987067pt;}
.y2_c02096{bottom:69.387067pt;}
.y37_c02096{bottom:114.827067pt;}
.y36_c02096{bottom:131.707067pt;}
.y35_c02096{bottom:148.587067pt;}
.y34_c02096{bottom:165.387067pt;}
.y33_c02096{bottom:182.267067pt;}
.y32_c02096{bottom:199.147200pt;}
.y31_c02096{bottom:216.027200pt;}
.y30_c02096{bottom:232.907067pt;}
.y2f_c02096{bottom:248.267067pt;}
.y2e_c02096{bottom:259.147067pt;}
.y2d_c02096{bottom:287.547200pt;}
.y2c_c02096{bottom:315.147200pt;}
.y2b_c02096{bottom:338.667200pt;}
.y2a_c02096{bottom:351.547067pt;}
.y29_c02096{bottom:364.507067pt;}
.y28_c02096{bottom:381.387067pt;}
.y27_c02096{bottom:396.747200pt;}
.y26_c02096{bottom:407.627067pt;}
.y25_c02096{bottom:425.787067pt;}
.y24_c02096{bottom:438.827200pt;}
.y23_c02096{bottom:455.627067pt;}
.y22_c02096{bottom:471.547067pt;}
.y21_c02096{bottom:484.987067pt;}
.y20_c02096{bottom:513.387067pt;}
.y1f_c02096{bottom:540.987067pt;}
.y1e_c02096{bottom:568.587067pt;}
.y1d_c02096{bottom:585.867067pt;}
.y1c_c02096{bottom:598.827067pt;}
.y1b_c02096{bottom:611.867067pt;}
.y1a_c02096{bottom:628.747067pt;}
.y19_c02096{bottom:644.827067pt;}
.y18_c02096{bottom:657.867067pt;}
.y17_c02096{bottom:674.747067pt;}
.y16_c02096{bottom:690.587067pt;}
.y15_c02096{bottom:704.027067pt;}
.y14_c02096{bottom:722.107067pt;}
.y13_c02096{bottom:735.147147pt;}
.y12_c02096{bottom:752.027067pt;}
.y11_c02096{bottom:769.067067pt;}
.y10_c02096{bottom:787.227067pt;}
.yf_c02096{bottom:800.267827pt;}
.ye_c02096{bottom:817.067227pt;}
.yd_c02096{bottom:833.947147pt;}
.yc_c02096{bottom:850.827067pt;}
.yb_c02096{bottom:867.867067pt;}
.ya_c02096{bottom:896.107067pt;}
.y9_c02096{bottom:924.587067pt;}
.y8_c02096{bottom:952.187067pt;}
.y7_c02096{bottom:968.107067pt;}
.y6_c02096{bottom:982.667067pt;}
.y5_c02096{bottom:999.867067pt;}
.y4_c02096{bottom:1013.307067pt;}
.y1_c02096{bottom:1060.587067pt;}
.h4_c02096{height:23.304844pt;}
.ha_c02096{height:28.421875pt;}
.h7_c02096{height:37.343906pt;}
.h3_c02096{height:37.801094pt;}
.h5_c02096{height:51.382969pt;}
.h9_c02096{height:52.012031pt;}
.h6_c02096{height:56.153210pt;}
.h2_c02096{height:56.156250pt;}
.h8_c02096{height:56.156463pt;}
.h1_c02096{height:56.843750pt;}
.h0_c02096{height:1122.666667pt;}
.w1_c02096{width:793.333333pt;}
.w0_c02096{width:793.626667pt;}
.x0_c02096{left:0.000000pt;}
.x1_c02096{left:113.440000pt;}
.x7_c02096{left:120.560000pt;}
.x6_c02096{left:132.400000pt;}
.x8_c02096{left:141.760000pt;}
.x5_c02096{left:288.720000pt;}
.x3_c02096{left:361.200000pt;}
.x2_c02096{left:388.960000pt;}
.x4_c02096{left:396.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_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_3d10b996dba276b131cd9cea.woff2')format("woff");}.ff1_c02097{font-family:ff1_c02097;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02097;src:url('chunks/assets/font_908b11509be5e9e8bddb9418.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;}
.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;}
.ls12_c02097{letter-spacing:-0.021600px;}
.lsf_c02097{letter-spacing:-0.014400px;}
.ls11_c02097{letter-spacing:-0.007200px;}
.ls10_c02097{letter-spacing:0.000000px;}
.ls7_c02097{letter-spacing:0.007200px;}
.ls3_c02097{letter-spacing:0.019764px;}
.ls0_c02097{letter-spacing:0.021600px;}
.lsd_c02097{letter-spacing:0.026352px;}
.ls8_c02097{letter-spacing:0.028800px;}
.ls4_c02097{letter-spacing:0.039528px;}
.ls9_c02097{letter-spacing:0.043200px;}
.lse_c02097{letter-spacing:0.046116px;}
.lsc_c02097{letter-spacing:0.052704px;}
.ls5_c02097{letter-spacing:0.065880px;}
.ls2_c02097{letter-spacing:0.072468px;}
.lsb_c02097{letter-spacing:0.079056px;}
.ls6_c02097{letter-spacing:0.115200px;}
.lsa_c02097{letter-spacing:0.131760px;}
.ls1_c02097{letter-spacing:0.151524px;}
.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;}
}
.ws1_c02097{word-spacing:-18.043200px;}
.ws0_c02097{word-spacing:-16.621524px;}
.ws2_c02097{word-spacing:-16.601760px;}
.ws3_c02097{word-spacing:-16.496352px;}
.ws1c_c02097{word-spacing:-0.201600px;}
.ws6_c02097{word-spacing:-0.021600px;}
.ws5_c02097{word-spacing:0.000000px;}
.ws11_c02097{word-spacing:0.007200px;}
.ws4_c02097{word-spacing:0.014400px;}
.ws18_c02097{word-spacing:0.019764px;}
.wsb_c02097{word-spacing:0.052704px;}
.wse_c02097{word-spacing:0.447984px;}
.ws7_c02097{word-spacing:0.737856px;}
.ws8_c02097{word-spacing:0.770796px;}
.wsc_c02097{word-spacing:1.106784px;}
.wsd_c02097{word-spacing:1.133136px;}
.ws12_c02097{word-spacing:4.367844px;}
.wsa_c02097{word-spacing:6.904224px;}
.ws16_c02097{word-spacing:9.368136px;}
.ws15_c02097{word-spacing:9.420840px;}
.ws1a_c02097{word-spacing:9.914400px;}
.ws1b_c02097{word-spacing:10.029600px;}
.ws19_c02097{word-spacing:10.072800px;}
.ws17_c02097{word-spacing:15.158988px;}
.ws9_c02097{word-spacing:15.191928px;}
.ws13_c02097{word-spacing:20.172456px;}
.ws14_c02097{word-spacing:20.198808px;}
.ws10_c02097{word-spacing:35.971200px;}
.wsf_c02097{word-spacing:35.992800px;}
._1_c02097{margin-left:-1.370304px;}
._2_c02097{width:1.119960px;}
._3_c02097{width:35.870400px;}
._0_c02097{width:194.400000px;}
.fc0_c02097{color:rgb(0,0,0);}
.fs2_c02097{font-size:47.880000px;}
.fs1_c02097{font-size:65.880000px;}
.fs0_c02097{font-size:72.000000px;}
.y0_c02097{bottom:0.000000px;}
.y3_c02097{bottom:57.360450px;}
.y2_c02097{bottom:78.060450px;}
.y2f_c02097{bottom:115.140450px;}
.y2e_c02097{bottom:146.190450px;}
.y2d_c02097{bottom:177.240450px;}
.y2c_c02097{bottom:208.290450px;}
.y2b_c02097{bottom:239.340450px;}
.y2a_c02097{bottom:270.390450px;}
.y29_c02097{bottom:301.440450px;}
.y28_c02097{bottom:332.490450px;}
.y27_c02097{bottom:363.540450px;}
.y26_c02097{bottom:394.590450px;}
.y25_c02097{bottom:425.640450px;}
.y24_c02097{bottom:456.600450px;}
.y23_c02097{bottom:477.480450px;}
.y22_c02097{bottom:498.180450px;}
.y21_c02097{bottom:518.880450px;}
.y20_c02097{bottom:549.930450px;}
.y1f_c02097{bottom:580.980450px;}
.y1e_c02097{bottom:612.030450px;}
.y1d_c02097{bottom:643.080450px;}
.y1c_c02097{bottom:663.330450px;}
.y1b_c02097{bottom:678.000450px;}
.y1a_c02097{bottom:696.990450px;}
.y19_c02097{bottom:715.890450px;}
.y18_c02097{bottom:733.800450px;}
.y17_c02097{bottom:748.920450px;}
.y16_c02097{bottom:769.260450px;}
.y15_c02097{bottom:783.930450px;}
.y14_c02097{bottom:802.920450px;}
.y13_c02097{bottom:821.910450px;}
.y12_c02097{bottom:839.730450px;}
.y11_c02097{bottom:854.850450px;}
.y10_c02097{bottom:886.800450px;}
.yf_c02097{bottom:917.850450px;}
.ye_c02097{bottom:948.900450px;}
.yd_c02097{bottom:969.150450px;}
.yc_c02097{bottom:983.820450px;}
.yb_c02097{bottom:1002.810450px;}
.ya_c02097{bottom:1022.160450px;}
.y9_c02097{bottom:1042.410450px;}
.y8_c02097{bottom:1061.400450px;}
.y7_c02097{bottom:1080.390450px;}
.y6_c02097{bottom:1099.380450px;}
.y5_c02097{bottom:1118.730450px;}
.y4_c02097{bottom:1139.250450px;}
.y1_c02097{bottom:1193.160450px;}
.h5_c02097{height:42.011895px;}
.h6_c02097{height:42.526230px;}
.h4_c02097{height:57.805840px;}
.h3_c02097{height:58.513535px;}
.h2_c02097{height:63.175781px;}
.h1_c02097{height:63.949219px;}
.h0_c02097{height:1263.000000px;}
.w1_c02097{width:892.500000px;}
.w0_c02097{width:892.830000px;}
.x0_c02097{left:0.000000px;}
.x1_c02097{left:127.620000px;}
.x3_c02097{left:135.630000px;}
.x4_c02097{left:148.950000px;}
.x2_c02097{left:437.580000px;}
@media print{
.v0_c02097{vertical-align:0.000000pt;}
.ls12_c02097{letter-spacing:-0.019200pt;}
.lsf_c02097{letter-spacing:-0.012800pt;}
.ls11_c02097{letter-spacing:-0.006400pt;}
.ls10_c02097{letter-spacing:0.000000pt;}
.ls7_c02097{letter-spacing:0.006400pt;}
.ls3_c02097{letter-spacing:0.017568pt;}
.ls0_c02097{letter-spacing:0.019200pt;}
.lsd_c02097{letter-spacing:0.023424pt;}
.ls8_c02097{letter-spacing:0.025600pt;}
.ls4_c02097{letter-spacing:0.035136pt;}
.ls9_c02097{letter-spacing:0.038400pt;}
.lse_c02097{letter-spacing:0.040992pt;}
.lsc_c02097{letter-spacing:0.046848pt;}
.ls5_c02097{letter-spacing:0.058560pt;}
.ls2_c02097{letter-spacing:0.064416pt;}
.lsb_c02097{letter-spacing:0.070272pt;}
.ls6_c02097{letter-spacing:0.102400pt;}
.lsa_c02097{letter-spacing:0.117120pt;}
.ls1_c02097{letter-spacing:0.134688pt;}
.ws1_c02097{word-spacing:-16.038400pt;}
.ws0_c02097{word-spacing:-14.774688pt;}
.ws2_c02097{word-spacing:-14.757120pt;}
.ws3_c02097{word-spacing:-14.663424pt;}
.ws1c_c02097{word-spacing:-0.179200pt;}
.ws6_c02097{word-spacing:-0.019200pt;}
.ws5_c02097{word-spacing:0.000000pt;}
.ws11_c02097{word-spacing:0.006400pt;}
.ws4_c02097{word-spacing:0.012800pt;}
.ws18_c02097{word-spacing:0.017568pt;}
.wsb_c02097{word-spacing:0.046848pt;}
.wse_c02097{word-spacing:0.398208pt;}
.ws7_c02097{word-spacing:0.655872pt;}
.ws8_c02097{word-spacing:0.685152pt;}
.wsc_c02097{word-spacing:0.983808pt;}
.wsd_c02097{word-spacing:1.007232pt;}
.ws12_c02097{word-spacing:3.882528pt;}
.wsa_c02097{word-spacing:6.137088pt;}
.ws16_c02097{word-spacing:8.327232pt;}
.ws15_c02097{word-spacing:8.374080pt;}
.ws1a_c02097{word-spacing:8.812800pt;}
.ws1b_c02097{word-spacing:8.915200pt;}
.ws19_c02097{word-spacing:8.953600pt;}
.ws17_c02097{word-spacing:13.474656pt;}
.ws9_c02097{word-spacing:13.503936pt;}
.ws13_c02097{word-spacing:17.931072pt;}
.ws14_c02097{word-spacing:17.954496pt;}
.ws10_c02097{word-spacing:31.974400pt;}
.wsf_c02097{word-spacing:31.993600pt;}
._1_c02097{margin-left:-1.218048pt;}
._2_c02097{width:0.995520pt;}
._3_c02097{width:31.884800pt;}
._0_c02097{width:172.800000pt;}
.fs2_c02097{font-size:42.560000pt;}
.fs1_c02097{font-size:58.560000pt;}
.fs0_c02097{font-size:64.000000pt;}
.y0_c02097{bottom:0.000000pt;}
.y3_c02097{bottom:50.987067pt;}
.y2_c02097{bottom:69.387067pt;}
.y2f_c02097{bottom:102.347067pt;}
.y2e_c02097{bottom:129.947067pt;}
.y2d_c02097{bottom:157.547067pt;}
.y2c_c02097{bottom:185.147067pt;}
.y2b_c02097{bottom:212.747067pt;}
.y2a_c02097{bottom:240.347067pt;}
.y29_c02097{bottom:267.947067pt;}
.y28_c02097{bottom:295.547067pt;}
.y27_c02097{bottom:323.147067pt;}
.y26_c02097{bottom:350.747067pt;}
.y25_c02097{bottom:378.347067pt;}
.y24_c02097{bottom:405.867067pt;}
.y23_c02097{bottom:424.427067pt;}
.y22_c02097{bottom:442.827067pt;}
.y21_c02097{bottom:461.227067pt;}
.y20_c02097{bottom:488.827067pt;}
.y1f_c02097{bottom:516.427067pt;}
.y1e_c02097{bottom:544.027067pt;}
.y1d_c02097{bottom:571.627067pt;}
.y1c_c02097{bottom:589.627067pt;}
.y1b_c02097{bottom:602.667067pt;}
.y1a_c02097{bottom:619.547067pt;}
.y19_c02097{bottom:636.347067pt;}
.y18_c02097{bottom:652.267067pt;}
.y17_c02097{bottom:665.707067pt;}
.y16_c02097{bottom:683.787067pt;}
.y15_c02097{bottom:696.827067pt;}
.y14_c02097{bottom:713.707067pt;}
.y13_c02097{bottom:730.587067pt;}
.y12_c02097{bottom:746.427067pt;}
.y11_c02097{bottom:759.867067pt;}
.y10_c02097{bottom:788.267067pt;}
.yf_c02097{bottom:815.867067pt;}
.ye_c02097{bottom:843.467067pt;}
.yd_c02097{bottom:861.467067pt;}
.yc_c02097{bottom:874.507067pt;}
.yb_c02097{bottom:891.387067pt;}
.ya_c02097{bottom:908.587067pt;}
.y9_c02097{bottom:926.587067pt;}
.y8_c02097{bottom:943.467067pt;}
.y7_c02097{bottom:960.347067pt;}
.y6_c02097{bottom:977.227067pt;}
.y5_c02097{bottom:994.427067pt;}
.y4_c02097{bottom:1012.667067pt;}
.y1_c02097{bottom:1060.587067pt;}
.h5_c02097{height:37.343906pt;}
.h6_c02097{height:37.801094pt;}
.h4_c02097{height:51.382969pt;}
.h3_c02097{height:52.012031pt;}
.h2_c02097{height:56.156250pt;}
.h1_c02097{height:56.843750pt;}
.h0_c02097{height:1122.666667pt;}
.w1_c02097{width:793.333333pt;}
.w0_c02097{width:793.626667pt;}
.x0_c02097{left:0.000000pt;}
.x1_c02097{left:113.440000pt;}
.x3_c02097{left:120.560000pt;}
.x4_c02097{left:132.400000pt;}
.x2_c02097{left:388.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_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_dc0bc82d7716d06da686ca1a.woff2')format("woff");}.ff1_c02098{font-family:ff1_c02098;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02098;src:url('chunks/assets/font_f7009417e8999c893e76b731.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02098{font-family:ff3_c02098;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;}
.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);}
.v1_c02098{vertical-align:-5.400000px;}
.v0_c02098{vertical-align:0.000000px;}
.ls17_c02098{letter-spacing:-0.050400px;}
.ls15_c02098{letter-spacing:-0.021600px;}
.ls13_c02098{letter-spacing:-0.014400px;}
.ls16_c02098{letter-spacing:-0.007200px;}
.ls14_c02098{letter-spacing:0.000000px;}
.ls1_c02098{letter-spacing:0.007200px;}
.ls6_c02098{letter-spacing:0.014400px;}
.ls0_c02098{letter-spacing:0.021600px;}
.lsa_c02098{letter-spacing:0.026352px;}
.ls5_c02098{letter-spacing:0.028800px;}
.ls11_c02098{letter-spacing:0.032940px;}
.ls3_c02098{letter-spacing:0.036000px;}
.ls7_c02098{letter-spacing:0.043200px;}
.ls8_c02098{letter-spacing:0.050400px;}
.ls10_c02098{letter-spacing:0.052704px;}
.ls4_c02098{letter-spacing:0.057600px;}
.lsc_c02098{letter-spacing:0.059292px;}
.ls9_c02098{letter-spacing:0.064800px;}
.lsf_c02098{letter-spacing:0.065880px;}
.ls2_c02098{letter-spacing:0.072000px;}
.lsb_c02098{letter-spacing:0.072468px;}
.ls12_c02098{letter-spacing:0.079056px;}
.ls1a_c02098{letter-spacing:0.092232px;}
.lse_c02098{letter-spacing:0.125172px;}
.ls18_c02098{letter-spacing:0.144288px;}
.lsd_c02098{letter-spacing:0.171288px;}
.ls19_c02098{letter-spacing:0.180360px;}
.sc__c02098{text-shadow:none;}
.sc0_c02098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02098{-webkit-text-stroke:0px transparent;}
.sc0_c02098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02098{word-spacing:-18.000000px;}
.ws15_c02098{word-spacing:-0.122400px;}
.ws14_c02098{word-spacing:-0.108000px;}
.ws1b_c02098{word-spacing:-0.064800px;}
.ws1f_c02098{word-spacing:-0.032940px;}
.ws4_c02098{word-spacing:-0.021600px;}
.ws16_c02098{word-spacing:-0.014400px;}
.ws3_c02098{word-spacing:0.000000px;}
.ws23_c02098{word-spacing:0.013176px;}
.ws2_c02098{word-spacing:0.014400px;}
.ws1d_c02098{word-spacing:0.019764px;}
.ws21_c02098{word-spacing:0.026352px;}
.ws1e_c02098{word-spacing:0.032940px;}
.ws22_c02098{word-spacing:0.039528px;}
.ws1c_c02098{word-spacing:0.065880px;}
.ws20_c02098{word-spacing:0.092232px;}
.ws5_c02098{word-spacing:2.030400px;}
.ws6_c02098{word-spacing:2.138400px;}
.ws12_c02098{word-spacing:2.462400px;}
.ws13_c02098{word-spacing:2.498400px;}
.ws10_c02098{word-spacing:3.124800px;}
.ws11_c02098{word-spacing:3.211200px;}
.ws17_c02098{word-spacing:4.996800px;}
.ws18_c02098{word-spacing:5.054400px;}
.ws19_c02098{word-spacing:5.709600px;}
.ws1a_c02098{word-spacing:5.716800px;}
.wsd_c02098{word-spacing:8.388000px;}
.wsb_c02098{word-spacing:8.560800px;}
.wsc_c02098{word-spacing:8.589600px;}
.wse_c02098{word-spacing:10.764000px;}
.wsf_c02098{word-spacing:10.872000px;}
.ws7_c02098{word-spacing:13.651200px;}
.ws8_c02098{word-spacing:13.658400px;}
.wsa_c02098{word-spacing:14.299200px;}
.ws9_c02098{word-spacing:14.371200px;}
.ws1_c02098{word-spacing:1212.636420px;}
._1_c02098{margin-left:-1.015200px;}
._2_c02098{width:91.210896px;}
._4_c02098{width:94.228920px;}
._9_c02098{width:157.864680px;}
._0_c02098{width:194.400000px;}
._5_c02098{width:381.171528px;}
._7_c02098{width:451.610424px;}
._6_c02098{width:467.276688px;}
._8_c02098{width:547.782048px;}
._3_c02098{width:653.796144px;}
.fc0_c02098{color:rgb(0,0,0);}
.fs3_c02098{font-size:54.000000px;}
.fs1_c02098{font-size:60.120000px;}
.fs2_c02098{font-size:65.880000px;}
.fs0_c02098{font-size:72.000000px;}
.y0_c02098{bottom:0.000000px;}
.y3_c02098{bottom:57.360450px;}
.y2_c02098{bottom:78.060450px;}
.y35_c02098{bottom:128.910150px;}
.y34_c02098{bottom:144.390600px;}
.y33_c02098{bottom:159.960150px;}
.y32_c02098{bottom:175.440600px;}
.y31_c02098{bottom:191.010150px;}
.y30_c02098{bottom:206.490600px;}
.y2f_c02098{bottom:222.060150px;}
.y2e_c02098{bottom:237.540600px;}
.y2d_c02098{bottom:253.021050px;}
.y2c_c02098{bottom:268.590600px;}
.y2b_c02098{bottom:284.071050px;}
.y2a_c02098{bottom:299.640600px;}
.y29_c02098{bottom:315.121050px;}
.y28_c02098{bottom:330.690600px;}
.y27_c02098{bottom:346.171050px;}
.y26_c02098{bottom:361.740600px;}
.y25_c02098{bottom:377.221050px;}
.y24_c02098{bottom:392.790600px;}
.y23_c02098{bottom:408.271050px;}
.y22_c02098{bottom:423.840600px;}
.y21_c02098{bottom:440.400450px;}
.y20_c02098{bottom:457.590600px;}
.y1f_c02098{bottom:477.390450px;}
.y1e_c02098{bottom:497.100450px;}
.y1d_c02098{bottom:516.810450px;}
.y1c_c02098{bottom:536.520450px;}
.y1b_c02098{bottom:556.230450px;}
.y1a_c02098{bottom:575.940450px;}
.y19_c02098{bottom:595.740450px;}
.y18_c02098{bottom:615.450450px;}
.y17_c02098{bottom:634.260450px;}
.y16_c02098{bottom:654.960450px;}
.y15_c02098{bottom:675.660450px;}
.y14_c02098{bottom:696.360450px;}
.y13_c02098{bottom:716.250450px;}
.y12_c02098{bottom:734.880450px;}
.y11_c02098{bottom:756.300450px;}
.y10_c02098{bottom:777.990450px;}
.yf_c02098{bottom:798.600450px;}
.ye_c02098{bottom:829.650450px;}
.yd_c02098{bottom:860.700450px;}
.yc_c02098{bottom:891.750450px;}
.yb_c02098{bottom:922.800450px;}
.ya_c02098{bottom:953.850450px;}
.y9_c02098{bottom:984.900450px;}
.y8_c02098{bottom:1015.950450px;}
.y7_c02098{bottom:1047.000450px;}
.y6_c02098{bottom:1077.870450px;}
.y5_c02098{bottom:1109.100450px;}
.y4_c02098{bottom:1139.970450px;}
.y1_c02098{bottom:1193.160450px;}
.h7_c02098{height:47.961914px;}
.h3_c02098{height:53.397598px;}
.h5_c02098{height:57.775781px;}
.h6_c02098{height:57.776381px;}
.h4_c02098{height:58.549219px;}
.h2_c02098{height:63.175781px;}
.h1_c02098{height:63.949219px;}
.h0_c02098{height:1263.000000px;}
.w1_c02098{width:892.500000px;}
.w0_c02098{width:892.830000px;}
.x0_c02098{left:0.000000px;}
.x1_c02098{left:127.620000px;}
.x4_c02098{left:135.630000px;}
.x5_c02098{left:146.340000px;}
.x3_c02098{left:148.950000px;}
.x2_c02098{left:437.580000px;}
@media print{
.v1_c02098{vertical-align:-4.800000pt;}
.v0_c02098{vertical-align:0.000000pt;}
.ls17_c02098{letter-spacing:-0.044800pt;}
.ls15_c02098{letter-spacing:-0.019200pt;}
.ls13_c02098{letter-spacing:-0.012800pt;}
.ls16_c02098{letter-spacing:-0.006400pt;}
.ls14_c02098{letter-spacing:0.000000pt;}
.ls1_c02098{letter-spacing:0.006400pt;}
.ls6_c02098{letter-spacing:0.012800pt;}
.ls0_c02098{letter-spacing:0.019200pt;}
.lsa_c02098{letter-spacing:0.023424pt;}
.ls5_c02098{letter-spacing:0.025600pt;}
.ls11_c02098{letter-spacing:0.029280pt;}
.ls3_c02098{letter-spacing:0.032000pt;}
.ls7_c02098{letter-spacing:0.038400pt;}
.ls8_c02098{letter-spacing:0.044800pt;}
.ls10_c02098{letter-spacing:0.046848pt;}
.ls4_c02098{letter-spacing:0.051200pt;}
.lsc_c02098{letter-spacing:0.052704pt;}
.ls9_c02098{letter-spacing:0.057600pt;}
.lsf_c02098{letter-spacing:0.058560pt;}
.ls2_c02098{letter-spacing:0.064000pt;}
.lsb_c02098{letter-spacing:0.064416pt;}
.ls12_c02098{letter-spacing:0.070272pt;}
.ls1a_c02098{letter-spacing:0.081984pt;}
.lse_c02098{letter-spacing:0.111264pt;}
.ls18_c02098{letter-spacing:0.128256pt;}
.lsd_c02098{letter-spacing:0.152256pt;}
.ls19_c02098{letter-spacing:0.160320pt;}
.ws0_c02098{word-spacing:-16.000000pt;}
.ws15_c02098{word-spacing:-0.108800pt;}
.ws14_c02098{word-spacing:-0.096000pt;}
.ws1b_c02098{word-spacing:-0.057600pt;}
.ws1f_c02098{word-spacing:-0.029280pt;}
.ws4_c02098{word-spacing:-0.019200pt;}
.ws16_c02098{word-spacing:-0.012800pt;}
.ws3_c02098{word-spacing:0.000000pt;}
.ws23_c02098{word-spacing:0.011712pt;}
.ws2_c02098{word-spacing:0.012800pt;}
.ws1d_c02098{word-spacing:0.017568pt;}
.ws21_c02098{word-spacing:0.023424pt;}
.ws1e_c02098{word-spacing:0.029280pt;}
.ws22_c02098{word-spacing:0.035136pt;}
.ws1c_c02098{word-spacing:0.058560pt;}
.ws20_c02098{word-spacing:0.081984pt;}
.ws5_c02098{word-spacing:1.804800pt;}
.ws6_c02098{word-spacing:1.900800pt;}
.ws12_c02098{word-spacing:2.188800pt;}
.ws13_c02098{word-spacing:2.220800pt;}
.ws10_c02098{word-spacing:2.777600pt;}
.ws11_c02098{word-spacing:2.854400pt;}
.ws17_c02098{word-spacing:4.441600pt;}
.ws18_c02098{word-spacing:4.492800pt;}
.ws19_c02098{word-spacing:5.075200pt;}
.ws1a_c02098{word-spacing:5.081600pt;}
.wsd_c02098{word-spacing:7.456000pt;}
.wsb_c02098{word-spacing:7.609600pt;}
.wsc_c02098{word-spacing:7.635200pt;}
.wse_c02098{word-spacing:9.568000pt;}
.wsf_c02098{word-spacing:9.664000pt;}
.ws7_c02098{word-spacing:12.134400pt;}
.ws8_c02098{word-spacing:12.140800pt;}
.wsa_c02098{word-spacing:12.710400pt;}
.ws9_c02098{word-spacing:12.774400pt;}
.ws1_c02098{word-spacing:1077.899040pt;}
._1_c02098{margin-left:-0.902400pt;}
._2_c02098{width:81.076352pt;}
._4_c02098{width:83.759040pt;}
._9_c02098{width:140.324160pt;}
._0_c02098{width:172.800000pt;}
._5_c02098{width:338.819136pt;}
._7_c02098{width:401.431488pt;}
._6_c02098{width:415.357056pt;}
._8_c02098{width:486.917376pt;}
._3_c02098{width:581.152128pt;}
.fs3_c02098{font-size:48.000000pt;}
.fs1_c02098{font-size:53.440000pt;}
.fs2_c02098{font-size:58.560000pt;}
.fs0_c02098{font-size:64.000000pt;}
.y0_c02098{bottom:0.000000pt;}
.y3_c02098{bottom:50.987067pt;}
.y2_c02098{bottom:69.387067pt;}
.y35_c02098{bottom:114.586800pt;}
.y34_c02098{bottom:128.347200pt;}
.y33_c02098{bottom:142.186800pt;}
.y32_c02098{bottom:155.947200pt;}
.y31_c02098{bottom:169.786800pt;}
.y30_c02098{bottom:183.547200pt;}
.y2f_c02098{bottom:197.386800pt;}
.y2e_c02098{bottom:211.147200pt;}
.y2d_c02098{bottom:224.907600pt;}
.y2c_c02098{bottom:238.747200pt;}
.y2b_c02098{bottom:252.507600pt;}
.y2a_c02098{bottom:266.347200pt;}
.y29_c02098{bottom:280.107600pt;}
.y28_c02098{bottom:293.947200pt;}
.y27_c02098{bottom:307.707600pt;}
.y26_c02098{bottom:321.547200pt;}
.y25_c02098{bottom:335.307600pt;}
.y24_c02098{bottom:349.147200pt;}
.y23_c02098{bottom:362.907600pt;}
.y22_c02098{bottom:376.747200pt;}
.y21_c02098{bottom:391.467067pt;}
.y20_c02098{bottom:406.747200pt;}
.y1f_c02098{bottom:424.347067pt;}
.y1e_c02098{bottom:441.867067pt;}
.y1d_c02098{bottom:459.387067pt;}
.y1c_c02098{bottom:476.907067pt;}
.y1b_c02098{bottom:494.427067pt;}
.y1a_c02098{bottom:511.947067pt;}
.y19_c02098{bottom:529.547067pt;}
.y18_c02098{bottom:547.067067pt;}
.y17_c02098{bottom:563.787067pt;}
.y16_c02098{bottom:582.187067pt;}
.y15_c02098{bottom:600.587067pt;}
.y14_c02098{bottom:618.987067pt;}
.y13_c02098{bottom:636.667067pt;}
.y12_c02098{bottom:653.227067pt;}
.y11_c02098{bottom:672.267067pt;}
.y10_c02098{bottom:691.547067pt;}
.yf_c02098{bottom:709.867067pt;}
.ye_c02098{bottom:737.467067pt;}
.yd_c02098{bottom:765.067067pt;}
.yc_c02098{bottom:792.667067pt;}
.yb_c02098{bottom:820.267067pt;}
.ya_c02098{bottom:847.867067pt;}
.y9_c02098{bottom:875.467067pt;}
.y8_c02098{bottom:903.067067pt;}
.y7_c02098{bottom:930.667067pt;}
.y6_c02098{bottom:958.107067pt;}
.y5_c02098{bottom:985.867067pt;}
.y4_c02098{bottom:1013.307067pt;}
.y1_c02098{bottom:1060.587067pt;}
.h7_c02098{height:42.632812pt;}
.h3_c02098{height:47.464531pt;}
.h5_c02098{height:51.356250pt;}
.h6_c02098{height:51.356783pt;}
.h4_c02098{height:52.043750pt;}
.h2_c02098{height:56.156250pt;}
.h1_c02098{height:56.843750pt;}
.h0_c02098{height:1122.666667pt;}
.w1_c02098{width:793.333333pt;}
.w0_c02098{width:793.626667pt;}
.x0_c02098{left:0.000000pt;}
.x1_c02098{left:113.440000pt;}
.x4_c02098{left:120.560000pt;}
.x5_c02098{left:130.080000pt;}
.x3_c02098{left:132.400000pt;}
.x2_c02098{left:388.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_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_40c14075ae9b467bea7b85a7.woff2')format("woff");}.ff1_c02099{font-family:ff1_c02099;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02099;src:url('chunks/assets/font_79ae7f3a0dc64837e3822bad.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_3f3a744a33e03cde14a8c9b0.woff2')format("woff");}.ff3_c02099{font-family:ff3_c02099;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_c02099;src:url('chunks/assets/font_c1e1a6e0a0b39ee73f0b7b1a.woff2')format("woff");}.ff4_c02099{font-family:ff4_c02099;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_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);}
.v2_c02099{vertical-align:-9.000000px;}
.v1_c02099{vertical-align:-5.040000px;}
.v0_c02099{vertical-align:0.000000px;}
.ls1b_c02099{letter-spacing:-0.021600px;}
.ls17_c02099{letter-spacing:-0.014400px;}
.ls1c_c02099{letter-spacing:-0.007200px;}
.ls18_c02099{letter-spacing:0.000000px;}
.ls15_c02099{letter-spacing:0.007200px;}
.ls1_c02099{letter-spacing:0.013176px;}
.ls0_c02099{letter-spacing:0.014400px;}
.lsa_c02099{letter-spacing:0.019764px;}
.ls8_c02099{letter-spacing:0.021600px;}
.lsf_c02099{letter-spacing:0.028800px;}
.ls12_c02099{letter-spacing:0.032940px;}
.ls1a_c02099{letter-spacing:0.036000px;}
.lsc_c02099{letter-spacing:0.039528px;}
.ls5_c02099{letter-spacing:0.043200px;}
.ls6_c02099{letter-spacing:0.046116px;}
.lse_c02099{letter-spacing:0.050400px;}
.ls13_c02099{letter-spacing:0.057600px;}
.lsd_c02099{letter-spacing:0.059292px;}
.ls11_c02099{letter-spacing:0.064800px;}
.ls14_c02099{letter-spacing:0.065880px;}
.ls16_c02099{letter-spacing:0.072468px;}
.ls10_c02099{letter-spacing:0.079200px;}
.ls3_c02099{letter-spacing:0.144000px;}
.ls19_c02099{letter-spacing:0.158400px;}
.ls4_c02099{letter-spacing:0.181944px;}
.ls7_c02099{letter-spacing:140.040000px;}
.ls9_c02099{letter-spacing:144.000000px;}
.ls2_c02099{letter-spacing:189.720000px;}
.lsb_c02099{letter-spacing:292.320000px;}
.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;}
}
.ws5_c02099{word-spacing:-17.992800px;}
.ws4_c02099{word-spacing:-16.529292px;}
.ws3_c02099{word-spacing:-16.509528px;}
.ws2_c02099{word-spacing:-16.489764px;}
.ws0_c02099{word-spacing:-16.483176px;}
.ws1_c02099{word-spacing:-12.151944px;}
.ws1e_c02099{word-spacing:-0.288000px;}
.ws1b_c02099{word-spacing:-0.187200px;}
.ws18_c02099{word-spacing:-0.180000px;}
.ws17_c02099{word-spacing:-0.100800px;}
.ws10_c02099{word-spacing:-0.079200px;}
.ws11_c02099{word-spacing:-0.057600px;}
.wsc_c02099{word-spacing:-0.043200px;}
.ws14_c02099{word-spacing:-0.028800px;}
.wse_c02099{word-spacing:-0.021600px;}
.ws8_c02099{word-spacing:-0.014400px;}
.wsf_c02099{word-spacing:-0.007200px;}
.ws7_c02099{word-spacing:0.000000px;}
.ws1c_c02099{word-spacing:0.007200px;}
.ws6_c02099{word-spacing:0.014400px;}
.ws1d_c02099{word-spacing:0.019764px;}
.wsa_c02099{word-spacing:0.021600px;}
.ws1a_c02099{word-spacing:0.026352px;}
.wsd_c02099{word-spacing:0.046116px;}
.ws19_c02099{word-spacing:0.059292px;}
.ws9_c02099{word-spacing:3.916800px;}
.ws15_c02099{word-spacing:4.924800px;}
.ws16_c02099{word-spacing:5.018400px;}
.ws13_c02099{word-spacing:12.938400px;}
.ws12_c02099{word-spacing:12.945600px;}
.wsb_c02099{word-spacing:25.905600px;}
._3_c02099{margin-left:-1.008000px;}
._2_c02099{width:1.044000px;}
._1_c02099{width:3.686184px;}
._0_c02099{width:194.400000px;}
.fc0_c02099{color:rgb(0,0,0);}
.fs3_c02099{font-size:47.880000px;}
.fs1_c02099{font-size:54.000000px;}
.fs2_c02099{font-size:65.880000px;}
.fs0_c02099{font-size:72.000000px;}
.y0_c02099{bottom:0.000000px;}
.y3_c02099{bottom:57.360450px;}
.y2_c02099{bottom:78.060450px;}
.y39_c02099{bottom:117.930450px;}
.y38_c02099{bottom:138.630450px;}
.y37_c02099{bottom:159.330450px;}
.y36_c02099{bottom:180.030450px;}
.y35_c02099{bottom:200.730450px;}
.y34_c02099{bottom:221.430450px;}
.y33_c02099{bottom:242.130450px;}
.y32_c02099{bottom:261.930150px;}
.y31_c02099{bottom:277.410600px;}
.y30_c02099{bottom:292.980150px;}
.y2f_c02099{bottom:308.460600px;}
.y2e_c02099{bottom:324.030150px;}
.y2d_c02099{bottom:339.510600px;}
.y2c_c02099{bottom:355.080150px;}
.y2b_c02099{bottom:370.560600px;}
.y2a_c02099{bottom:386.130150px;}
.y29_c02099{bottom:401.610600px;}
.y28_c02099{bottom:417.180150px;}
.y27_c02099{bottom:432.660600px;}
.y26_c02099{bottom:448.230150px;}
.y25_c02099{bottom:463.710600px;}
.y24_c02099{bottom:481.080450px;}
.y23_c02099{bottom:502.140450px;}
.y22_c02099{bottom:522.300450px;}
.y21_c02099{bottom:543.000450px;}
.y20_c02099{bottom:563.970450px;}
.y1f_c02099{bottom:584.130450px;}
.y1e_c02099{bottom:605.100450px;}
.y1d_c02099{bottom:625.350450px;}
.y1c_c02099{bottom:646.050450px;}
.y1b_c02099{bottom:666.750450px;}
.y1a_c02099{bottom:687.450450px;}
.y19_c02099{bottom:708.150450px;}
.y18_c02099{bottom:728.850450px;}
.y17_c02099{bottom:749.820450px;}
.y16_c02099{bottom:769.980450px;}
.y15_c02099{bottom:790.680450px;}
.y14_c02099{bottom:811.650450px;}
.y13_c02099{bottom:831.720450px;}
.y12_c02099{bottom:852.420450px;}
.y11_c02099{bottom:873.120450px;}
.y10_c02099{bottom:893.820450px;}
.yf_c02099{bottom:914.520450px;}
.ye_c02099{bottom:935.220450px;}
.yd_c02099{bottom:955.920450px;}
.yc_c02099{bottom:977.970450px;}
.yb_c02099{bottom:999.480450px;}
.ya_c02099{bottom:1020.900450px;}
.y9_c02099{bottom:1040.970450px;}
.y8_c02099{bottom:1061.670450px;}
.y7_c02099{bottom:1082.370450px;}
.y6_c02099{bottom:1104.420450px;}
.y5_c02099{bottom:1123.500450px;}
.y4_c02099{bottom:1139.970450px;}
.y1_c02099{bottom:1193.160450px;}
.h3_c02099{height:47.961914px;}
.h6_c02099{height:58.513535px;}
.h2_c02099{height:63.175781px;}
.h1_c02099{height:63.949219px;}
.h4_c02099{height:65.588906px;}
.h5_c02099{height:70.628906px;}
.h0_c02099{height:1263.000000px;}
.w1_c02099{width:892.500000px;}
.w0_c02099{width:892.830000px;}
.x0_c02099{left:0.000000px;}
.x1_c02099{left:127.620000px;}
.x3_c02099{left:135.630000px;}
.x4_c02099{left:252.630000px;}
.x2_c02099{left:437.580000px;}
@media print{
.v2_c02099{vertical-align:-8.000000pt;}
.v1_c02099{vertical-align:-4.480000pt;}
.v0_c02099{vertical-align:0.000000pt;}
.ls1b_c02099{letter-spacing:-0.019200pt;}
.ls17_c02099{letter-spacing:-0.012800pt;}
.ls1c_c02099{letter-spacing:-0.006400pt;}
.ls18_c02099{letter-spacing:0.000000pt;}
.ls15_c02099{letter-spacing:0.006400pt;}
.ls1_c02099{letter-spacing:0.011712pt;}
.ls0_c02099{letter-spacing:0.012800pt;}
.lsa_c02099{letter-spacing:0.017568pt;}
.ls8_c02099{letter-spacing:0.019200pt;}
.lsf_c02099{letter-spacing:0.025600pt;}
.ls12_c02099{letter-spacing:0.029280pt;}
.ls1a_c02099{letter-spacing:0.032000pt;}
.lsc_c02099{letter-spacing:0.035136pt;}
.ls5_c02099{letter-spacing:0.038400pt;}
.ls6_c02099{letter-spacing:0.040992pt;}
.lse_c02099{letter-spacing:0.044800pt;}
.ls13_c02099{letter-spacing:0.051200pt;}
.lsd_c02099{letter-spacing:0.052704pt;}
.ls11_c02099{letter-spacing:0.057600pt;}
.ls14_c02099{letter-spacing:0.058560pt;}
.ls16_c02099{letter-spacing:0.064416pt;}
.ls10_c02099{letter-spacing:0.070400pt;}
.ls3_c02099{letter-spacing:0.128000pt;}
.ls19_c02099{letter-spacing:0.140800pt;}
.ls4_c02099{letter-spacing:0.161728pt;}
.ls7_c02099{letter-spacing:124.480000pt;}
.ls9_c02099{letter-spacing:128.000000pt;}
.ls2_c02099{letter-spacing:168.640000pt;}
.lsb_c02099{letter-spacing:259.840000pt;}
.ws5_c02099{word-spacing:-15.993600pt;}
.ws4_c02099{word-spacing:-14.692704pt;}
.ws3_c02099{word-spacing:-14.675136pt;}
.ws2_c02099{word-spacing:-14.657568pt;}
.ws0_c02099{word-spacing:-14.651712pt;}
.ws1_c02099{word-spacing:-10.801728pt;}
.ws1e_c02099{word-spacing:-0.256000pt;}
.ws1b_c02099{word-spacing:-0.166400pt;}
.ws18_c02099{word-spacing:-0.160000pt;}
.ws17_c02099{word-spacing:-0.089600pt;}
.ws10_c02099{word-spacing:-0.070400pt;}
.ws11_c02099{word-spacing:-0.051200pt;}
.wsc_c02099{word-spacing:-0.038400pt;}
.ws14_c02099{word-spacing:-0.025600pt;}
.wse_c02099{word-spacing:-0.019200pt;}
.ws8_c02099{word-spacing:-0.012800pt;}
.wsf_c02099{word-spacing:-0.006400pt;}
.ws7_c02099{word-spacing:0.000000pt;}
.ws1c_c02099{word-spacing:0.006400pt;}
.ws6_c02099{word-spacing:0.012800pt;}
.ws1d_c02099{word-spacing:0.017568pt;}
.wsa_c02099{word-spacing:0.019200pt;}
.ws1a_c02099{word-spacing:0.023424pt;}
.wsd_c02099{word-spacing:0.040992pt;}
.ws19_c02099{word-spacing:0.052704pt;}
.ws9_c02099{word-spacing:3.481600pt;}
.ws15_c02099{word-spacing:4.377600pt;}
.ws16_c02099{word-spacing:4.460800pt;}
.ws13_c02099{word-spacing:11.500800pt;}
.ws12_c02099{word-spacing:11.507200pt;}
.wsb_c02099{word-spacing:23.027200pt;}
._3_c02099{margin-left:-0.896000pt;}
._2_c02099{width:0.928000pt;}
._1_c02099{width:3.276608pt;}
._0_c02099{width:172.800000pt;}
.fs3_c02099{font-size:42.560000pt;}
.fs1_c02099{font-size:48.000000pt;}
.fs2_c02099{font-size:58.560000pt;}
.fs0_c02099{font-size:64.000000pt;}
.y0_c02099{bottom:0.000000pt;}
.y3_c02099{bottom:50.987067pt;}
.y2_c02099{bottom:69.387067pt;}
.y39_c02099{bottom:104.827067pt;}
.y38_c02099{bottom:123.227067pt;}
.y37_c02099{bottom:141.627067pt;}
.y36_c02099{bottom:160.027067pt;}
.y35_c02099{bottom:178.427067pt;}
.y34_c02099{bottom:196.827067pt;}
.y33_c02099{bottom:215.227067pt;}
.y32_c02099{bottom:232.826800pt;}
.y31_c02099{bottom:246.587200pt;}
.y30_c02099{bottom:260.426800pt;}
.y2f_c02099{bottom:274.187200pt;}
.y2e_c02099{bottom:288.026800pt;}
.y2d_c02099{bottom:301.787200pt;}
.y2c_c02099{bottom:315.626800pt;}
.y2b_c02099{bottom:329.387200pt;}
.y2a_c02099{bottom:343.226800pt;}
.y29_c02099{bottom:356.987200pt;}
.y28_c02099{bottom:370.826800pt;}
.y27_c02099{bottom:384.587200pt;}
.y26_c02099{bottom:398.426800pt;}
.y25_c02099{bottom:412.187200pt;}
.y24_c02099{bottom:427.627067pt;}
.y23_c02099{bottom:446.347067pt;}
.y22_c02099{bottom:464.267067pt;}
.y21_c02099{bottom:482.667067pt;}
.y20_c02099{bottom:501.307067pt;}
.y1f_c02099{bottom:519.227067pt;}
.y1e_c02099{bottom:537.867067pt;}
.y1d_c02099{bottom:555.867067pt;}
.y1c_c02099{bottom:574.267067pt;}
.y1b_c02099{bottom:592.667067pt;}
.y1a_c02099{bottom:611.067067pt;}
.y19_c02099{bottom:629.467067pt;}
.y18_c02099{bottom:647.867067pt;}
.y17_c02099{bottom:666.507067pt;}
.y16_c02099{bottom:684.427067pt;}
.y15_c02099{bottom:702.827067pt;}
.y14_c02099{bottom:721.467067pt;}
.y13_c02099{bottom:739.307067pt;}
.y12_c02099{bottom:757.707067pt;}
.y11_c02099{bottom:776.107067pt;}
.y10_c02099{bottom:794.507067pt;}
.yf_c02099{bottom:812.907067pt;}
.ye_c02099{bottom:831.307067pt;}
.yd_c02099{bottom:849.707067pt;}
.yc_c02099{bottom:869.307067pt;}
.yb_c02099{bottom:888.427067pt;}
.ya_c02099{bottom:907.467067pt;}
.y9_c02099{bottom:925.307067pt;}
.y8_c02099{bottom:943.707067pt;}
.y7_c02099{bottom:962.107067pt;}
.y6_c02099{bottom:981.707067pt;}
.y5_c02099{bottom:998.667067pt;}
.y4_c02099{bottom:1013.307067pt;}
.y1_c02099{bottom:1060.587067pt;}
.h3_c02099{height:42.632812pt;}
.h6_c02099{height:52.012031pt;}
.h2_c02099{height:56.156250pt;}
.h1_c02099{height:56.843750pt;}
.h4_c02099{height:58.301250pt;}
.h5_c02099{height:62.781250pt;}
.h0_c02099{height:1122.666667pt;}
.w1_c02099{width:793.333333pt;}
.w0_c02099{width:793.626667pt;}
.x0_c02099{left:0.000000pt;}
.x1_c02099{left:113.440000pt;}
.x3_c02099{left:120.560000pt;}
.x4_c02099{left:224.560000pt;}
.x2_c02099{left:388.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_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_a1e594ab261deedc4f99e5d7.woff2')format("woff");}.ff1_c02100{font-family:ff1_c02100;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02100;src:url('chunks/assets/font_d20620b38c62043f4ebd6327.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_22e540f19043e1357f4bb0d8.woff2')format("woff");}.ff3_c02100{font-family:ff3_c02100;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02100;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02100{font-family:ff4_c02100;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;}
.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;}
.v1_c02100{vertical-align:1.440000px;}
.v6_c02100{vertical-align:9.717300px;}
.v2_c02100{vertical-align:14.401368px;}
.v3_c02100{vertical-align:55.082268px;}
.v4_c02100{vertical-align:67.322772px;}
.v5_c02100{vertical-align:107.285580px;}
.ls3d_c02100{letter-spacing:-0.222444px;}
.ls3f_c02100{letter-spacing:-0.168336px;}
.ls41_c02100{letter-spacing:-0.144288px;}
.ls46_c02100{letter-spacing:-0.136800px;}
.ls3e_c02100{letter-spacing:-0.126252px;}
.ls48_c02100{letter-spacing:-0.115200px;}
.ls45_c02100{letter-spacing:-0.096192px;}
.ls47_c02100{letter-spacing:-0.086400px;}
.ls39_c02100{letter-spacing:-0.078156px;}
.ls42_c02100{letter-spacing:-0.060120px;}
.ls37_c02100{letter-spacing:-0.057600px;}
.ls49_c02100{letter-spacing:-0.050400px;}
.ls40_c02100{letter-spacing:-0.048096px;}
.ls44_c02100{letter-spacing:-0.042084px;}
.ls3b_c02100{letter-spacing:-0.036072px;}
.ls43_c02100{letter-spacing:-0.030060px;}
.ls36_c02100{letter-spacing:-0.028800px;}
.ls32_c02100{letter-spacing:-0.014400px;}
.ls35_c02100{letter-spacing:-0.007200px;}
.ls3a_c02100{letter-spacing:-0.006588px;}
.ls33_c02100{letter-spacing:0.000000px;}
.ls2f_c02100{letter-spacing:0.006012px;}
.ls38_c02100{letter-spacing:0.007200px;}
.ls3c_c02100{letter-spacing:0.012024px;}
.ls34_c02100{letter-spacing:0.014400px;}
.ls30_c02100{letter-spacing:0.018036px;}
.ls1_c02100{letter-spacing:0.021600px;}
.ls3_c02100{letter-spacing:0.039528px;}
.ls0_c02100{letter-spacing:0.050400px;}
.ls2c_c02100{letter-spacing:0.052704px;}
.ls1b_c02100{letter-spacing:0.059292px;}
.ls4_c02100{letter-spacing:0.065880px;}
.ls2e_c02100{letter-spacing:0.066132px;}
.ls26_c02100{letter-spacing:0.072468px;}
.ls10_c02100{letter-spacing:0.079056px;}
.ls2d_c02100{letter-spacing:0.090180px;}
.ls6_c02100{letter-spacing:0.092232px;}
.ls16_c02100{letter-spacing:0.098820px;}
.lsb_c02100{letter-spacing:0.138348px;}
.ls5_c02100{letter-spacing:0.144288px;}
.ls9_c02100{letter-spacing:0.151524px;}
.ls24_c02100{letter-spacing:0.158112px;}
.ls2_c02100{letter-spacing:0.164700px;}
.ls18_c02100{letter-spacing:0.177876px;}
.ls12_c02100{letter-spacing:0.180000px;}
.ls31_c02100{letter-spacing:0.648000px;}
.ls25_c02100{letter-spacing:64.080000px;}
.ls21_c02100{letter-spacing:66.240000px;}
.ls19_c02100{letter-spacing:66.600000px;}
.ls1a_c02100{letter-spacing:66.960000px;}
.ls8_c02100{letter-spacing:99.000000px;}
.lsa_c02100{letter-spacing:99.360000px;}
.lse_c02100{letter-spacing:99.720000px;}
.ls22_c02100{letter-spacing:117.450000px;}
.ls13_c02100{letter-spacing:132.120000px;}
.ls14_c02100{letter-spacing:132.480000px;}
.lsc_c02100{letter-spacing:132.840000px;}
.ls15_c02100{letter-spacing:150.300000px;}
.ls1e_c02100{letter-spacing:183.330000px;}
.lsf_c02100{letter-spacing:186.480000px;}
.ls27_c02100{letter-spacing:204.840000px;}
.ls28_c02100{letter-spacing:214.560000px;}
.ls1d_c02100{letter-spacing:214.920000px;}
.ls1f_c02100{letter-spacing:215.279400px;}
.ls2a_c02100{letter-spacing:247.320000px;}
.ls17_c02100{letter-spacing:252.360000px;}
.ls11_c02100{letter-spacing:267.120000px;}
.ls23_c02100{letter-spacing:268.920000px;}
.ls1c_c02100{letter-spacing:281.520000px;}
.ls7_c02100{letter-spacing:281.880000px;}
.lsd_c02100{letter-spacing:296.640000px;}
.ls20_c02100{letter-spacing:314.640000px;}
.ls2b_c02100{letter-spacing:393.120000px;}
.ls29_c02100{letter-spacing:414.720000px;}
.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;}
}
.ws2a_c02100{word-spacing:-72.000000px;}
.ws20_c02100{word-spacing:-60.120000px;}
.ws2_c02100{word-spacing:-16.647876px;}
.ws0_c02100{word-spacing:-16.634700px;}
.ws12_c02100{word-spacing:-16.628112px;}
.ws3_c02100{word-spacing:-16.621524px;}
.ws8_c02100{word-spacing:-16.608348px;}
.ws1_c02100{word-spacing:-16.568820px;}
.wsf_c02100{word-spacing:-16.562232px;}
.ws13_c02100{word-spacing:-16.542468px;}
.wsd_c02100{word-spacing:-16.529292px;}
.ws11_c02100{word-spacing:-16.509528px;}
.ws23_c02100{word-spacing:-0.126252px;}
.ws2d_c02100{word-spacing:-0.122400px;}
.ws30_c02100{word-spacing:-0.108000px;}
.ws24_c02100{word-spacing:-0.078156px;}
.ws1e_c02100{word-spacing:-0.066132px;}
.ws3b_c02100{word-spacing:-0.054108px;}
.ws26_c02100{word-spacing:-0.030060px;}
.ws1d_c02100{word-spacing:-0.024048px;}
.ws2c_c02100{word-spacing:-0.021600px;}
.ws27_c02100{word-spacing:-0.018036px;}
.ws2f_c02100{word-spacing:-0.014400px;}
.ws22_c02100{word-spacing:-0.012024px;}
.ws36_c02100{word-spacing:-0.007200px;}
.ws2e_c02100{word-spacing:0.000000px;}
.ws3c_c02100{word-spacing:0.013176px;}
.ws29_c02100{word-spacing:0.014400px;}
.ws37_c02100{word-spacing:0.019764px;}
.ws39_c02100{word-spacing:0.026352px;}
.ws3a_c02100{word-spacing:0.039528px;}
.ws2b_c02100{word-spacing:0.043200px;}
.ws38_c02100{word-spacing:0.052704px;}
.ws28_c02100{word-spacing:0.064800px;}
.ws1f_c02100{word-spacing:0.066132px;}
.ws25_c02100{word-spacing:0.084168px;}
.ws3d_c02100{word-spacing:0.098820px;}
.ws21_c02100{word-spacing:0.162324px;}
.ws31_c02100{word-spacing:5.709600px;}
.ws32_c02100{word-spacing:5.788800px;}
.ws33_c02100{word-spacing:7.106400px;}
.ws34_c02100{word-spacing:7.164000px;}
.ws35_c02100{word-spacing:7.214400px;}
.ws14_c02100{word-spacing:65.089440px;}
.ws10_c02100{word-spacing:67.238496px;}
.wsc_c02100{word-spacing:67.642380px;}
.ws5_c02100{word-spacing:99.996372px;}
.wsb_c02100{word-spacing:99.998496px;}
.ws6_c02100{word-spacing:100.402380px;}
.ws15_c02100{word-spacing:100.933020px;}
.ws7_c02100{word-spacing:133.116372px;}
.wsa_c02100{word-spacing:133.546608px;}
.ws4_c02100{word-spacing:150.082380px;}
.ws9_c02100{word-spacing:182.866608px;}
.ws1b_c02100{word-spacing:200.347668px;}
.ws17_c02100{word-spacing:215.595972px;}
.wse_c02100{word-spacing:215.986608px;}
.ws16_c02100{word-spacing:216.270000px;}
.ws1a_c02100{word-spacing:226.627200px;}
.ws18_c02100{word-spacing:232.029360px;}
.ws19_c02100{word-spacing:232.391700px;}
.ws1c_c02100{word-spacing:237.431520px;}
._1_c02100{margin-left:-1.339200px;}
._5_c02100{width:68.954040px;}
._4_c02100{width:104.490000px;}
._3_c02100{width:121.795776px;}
._6_c02100{width:133.507116px;}
._2_c02100{width:169.710192px;}
._0_c02100{width:194.400000px;}
._7_c02100{width:232.251012px;}
._9_c02100{width:643.399632px;}
._8_c02100{width:665.158248px;}
.fc0_c02100{color:rgb(0,0,0);}
.fs5_c02100{font-size:29.880000px;}
.fs1_c02100{font-size:47.880000px;}
.fs4_c02100{font-size:54.000000px;}
.fs3_c02100{font-size:60.120000px;}
.fs2_c02100{font-size:65.880000px;}
.fs0_c02100{font-size:72.000000px;}
.y0_c02100{bottom:0.000000px;}
.y3_c02100{bottom:57.360450px;}
.y2_c02100{bottom:78.060450px;}
.y2c_c02100{bottom:119.820450px;}
.y2b_c02100{bottom:129.809550px;}
.y2a_c02100{bottom:145.290000px;}
.y29_c02100{bottom:160.770450px;}
.y28_c02100{bottom:176.340000px;}
.y27_c02100{bottom:191.820450px;}
.y26_c02100{bottom:208.380450px;}
.y25_c02100{bottom:229.080450px;}
.y24_c02100{bottom:249.780450px;}
.y23_c02100{bottom:268.770450px;}
.y22_c02100{bottom:288.120450px;}
.y21_c02100{bottom:308.820450px;}
.y20_c02100{bottom:329.520450px;}
.y1f_c02100{bottom:348.510450px;}
.y1e_c02100{bottom:367.500600px;}
.y1d_c02100{bottom:386.490450px;}
.y1c_c02100{bottom:405.390450px;}
.y1b_c02100{bottom:424.020600px;}
.y1a_c02100{bottom:441.660450px;}
.y17_c02100{bottom:460.020600px;}
.y19_c02100{bottom:460.650450px;}
.y18_c02100{bottom:479.640450px;}
.y16_c02100{bottom:498.810450px;}
.y15_c02100{bottom:524.820450px;}
.y14_c02100{bottom:548.580450px;}
.y13_c02100{bottom:569.370450px;}
.y12_c02100{bottom:588.809523px;}
.y11_c02100{bottom:602.579811px;}
.y10_c02100{bottom:616.350099px;}
.yf_c02100{bottom:630.210162px;}
.ye_c02100{bottom:643.980450px;}
.yd_c02100{bottom:655.140450px;}
.y4c_c02100{bottom:668.900235px;}
.y4b_c02100{bottom:687.170703px;}
.y42_c02100{bottom:687.173709px;}
.y3d_c02100{bottom:687.175212px;}
.y38_c02100{bottom:687.176715px;}
.y33_c02100{bottom:687.178218px;}
.y4a_c02100{bottom:705.531351px;}
.y46_c02100{bottom:705.532854px;}
.y41_c02100{bottom:705.534357px;}
.y3c_c02100{bottom:705.535860px;}
.y37_c02100{bottom:705.537363px;}
.y32_c02100{bottom:705.538866px;}
.y49_c02100{bottom:723.801819px;}
.y45_c02100{bottom:723.803322px;}
.y40_c02100{bottom:723.804825px;}
.y3b_c02100{bottom:723.806328px;}
.y36_c02100{bottom:723.807831px;}
.y31_c02100{bottom:723.809334px;}
.y48_c02100{bottom:742.162467px;}
.y44_c02100{bottom:742.163970px;}
.y3f_c02100{bottom:742.165473px;}
.y3a_c02100{bottom:742.166976px;}
.y35_c02100{bottom:742.168479px;}
.y30_c02100{bottom:742.169982px;}
.y47_c02100{bottom:760.432935px;}
.y43_c02100{bottom:760.434438px;}
.y3e_c02100{bottom:760.435941px;}
.y39_c02100{bottom:760.437444px;}
.y34_c02100{bottom:760.438947px;}
.y2f_c02100{bottom:760.440450px;}
.y2d_c02100{bottom:851.790600px;}
.y2e_c02100{bottom:896.341950px;}
.y4d_c02100{bottom:928.290600px;}
.yc_c02100{bottom:959.250387px;}
.yb_c02100{bottom:973.110450px;}
.ya_c02100{bottom:998.760450px;}
.y9_c02100{bottom:1029.810450px;}
.y8_c02100{bottom:1060.860450px;}
.y7_c02100{bottom:1091.730450px;}
.y6_c02100{bottom:1111.080162px;}
.y5_c02100{bottom:1124.850450px;}
.y4_c02100{bottom:1139.970450px;}
.y1_c02100{bottom:1193.160450px;}
.h8_c02100{height:26.538926px;}
.h3_c02100{height:42.526230px;}
.hb_c02100{height:43.651582px;}
.h7_c02100{height:47.961914px;}
.hc_c02100{height:52.277344px;}
.h5_c02100{height:53.397598px;}
.ha_c02100{height:57.551070px;}
.h4_c02100{height:58.513535px;}
.h2_c02100{height:63.175781px;}
.h1_c02100{height:63.949219px;}
.h6_c02100{height:65.389219px;}
.h9_c02100{height:155.119350px;}
.h0_c02100{height:1263.000000px;}
.w1_c02100{width:892.500000px;}
.w0_c02100{width:892.830000px;}
.x0_c02100{left:0.000000px;}
.x1_c02100{left:127.620000px;}
.x6_c02100{left:135.630000px;}
.x4_c02100{left:148.950000px;}
.x13_c02100{left:151.110000px;}
.x15_c02100{left:152.728731px;}
.x10_c02100{left:160.920000px;}
.x14_c02100{left:171.989676px;}
.x11_c02100{left:173.610000px;}
.x18_c02100{left:236.517975px;}
.x1a_c02100{left:238.767966px;}
.x8_c02100{left:240.120000px;}
.x17_c02100{left:245.608119px;}
.x16_c02100{left:248.218830px;}
.x19_c02100{left:258.028911px;}
.x9_c02100{left:268.830000px;}
.x7_c02100{left:290.610000px;}
.x31_c02100{left:321.570000px;}
.x1d_c02100{left:323.998587px;}
.x1c_c02100{left:326.248578px;}
.x1e_c02100{left:330.568200px;}
.x1b_c02100{left:334.348245px;}
.x1f_c02100{left:339.027084px;}
.x3_c02100{left:356.580000px;}
.x21_c02100{left:408.058371px;}
.xb_c02100{left:415.170000px;}
.x20_c02100{left:420.477660px;}
.x2_c02100{left:437.580000px;}
.xc_c02100{left:443.430000px;}
.xa_c02100{left:465.210000px;}
.x24_c02100{left:496.168740px;}
.x23_c02100{left:498.418731px;}
.x25_c02100{left:502.738353px;}
.x26_c02100{left:504.896661px;}
.x22_c02100{left:506.518398px;}
.x29_c02100{left:579.146364px;}
.x28_c02100{left:581.306175px;}
.x2a_c02100{left:586.616274px;}
.x27_c02100{left:592.646310px;}
.xe_c02100{left:597.690000px;}
.x12_c02100{left:606.688650px;}
.xd_c02100{left:639.810000px;}
.xf_c02100{left:657.720000px;}
.x2c_c02100{left:661.225194px;}
.x2f_c02100{left:668.783781px;}
.x2d_c02100{left:672.114429px;}
.x2e_c02100{left:677.153988px;}
.x2b_c02100{left:678.775725px;}
.x30_c02100{left:689.843817px;}
.x5_c02100{left:763.200000px;}
@media print{
.v0_c02100{vertical-align:0.000000pt;}
.v1_c02100{vertical-align:1.280000pt;}
.v6_c02100{vertical-align:8.637600pt;}
.v2_c02100{vertical-align:12.801216pt;}
.v3_c02100{vertical-align:48.962016pt;}
.v4_c02100{vertical-align:59.842464pt;}
.v5_c02100{vertical-align:95.364960pt;}
.ls3d_c02100{letter-spacing:-0.197728pt;}
.ls3f_c02100{letter-spacing:-0.149632pt;}
.ls41_c02100{letter-spacing:-0.128256pt;}
.ls46_c02100{letter-spacing:-0.121600pt;}
.ls3e_c02100{letter-spacing:-0.112224pt;}
.ls48_c02100{letter-spacing:-0.102400pt;}
.ls45_c02100{letter-spacing:-0.085504pt;}
.ls47_c02100{letter-spacing:-0.076800pt;}
.ls39_c02100{letter-spacing:-0.069472pt;}
.ls42_c02100{letter-spacing:-0.053440pt;}
.ls37_c02100{letter-spacing:-0.051200pt;}
.ls49_c02100{letter-spacing:-0.044800pt;}
.ls40_c02100{letter-spacing:-0.042752pt;}
.ls44_c02100{letter-spacing:-0.037408pt;}
.ls3b_c02100{letter-spacing:-0.032064pt;}
.ls43_c02100{letter-spacing:-0.026720pt;}
.ls36_c02100{letter-spacing:-0.025600pt;}
.ls32_c02100{letter-spacing:-0.012800pt;}
.ls35_c02100{letter-spacing:-0.006400pt;}
.ls3a_c02100{letter-spacing:-0.005856pt;}
.ls33_c02100{letter-spacing:0.000000pt;}
.ls2f_c02100{letter-spacing:0.005344pt;}
.ls38_c02100{letter-spacing:0.006400pt;}
.ls3c_c02100{letter-spacing:0.010688pt;}
.ls34_c02100{letter-spacing:0.012800pt;}
.ls30_c02100{letter-spacing:0.016032pt;}
.ls1_c02100{letter-spacing:0.019200pt;}
.ls3_c02100{letter-spacing:0.035136pt;}
.ls0_c02100{letter-spacing:0.044800pt;}
.ls2c_c02100{letter-spacing:0.046848pt;}
.ls1b_c02100{letter-spacing:0.052704pt;}
.ls4_c02100{letter-spacing:0.058560pt;}
.ls2e_c02100{letter-spacing:0.058784pt;}
.ls26_c02100{letter-spacing:0.064416pt;}
.ls10_c02100{letter-spacing:0.070272pt;}
.ls2d_c02100{letter-spacing:0.080160pt;}
.ls6_c02100{letter-spacing:0.081984pt;}
.ls16_c02100{letter-spacing:0.087840pt;}
.lsb_c02100{letter-spacing:0.122976pt;}
.ls5_c02100{letter-spacing:0.128256pt;}
.ls9_c02100{letter-spacing:0.134688pt;}
.ls24_c02100{letter-spacing:0.140544pt;}
.ls2_c02100{letter-spacing:0.146400pt;}
.ls18_c02100{letter-spacing:0.158112pt;}
.ls12_c02100{letter-spacing:0.160000pt;}
.ls31_c02100{letter-spacing:0.576000pt;}
.ls25_c02100{letter-spacing:56.960000pt;}
.ls21_c02100{letter-spacing:58.880000pt;}
.ls19_c02100{letter-spacing:59.200000pt;}
.ls1a_c02100{letter-spacing:59.520000pt;}
.ls8_c02100{letter-spacing:88.000000pt;}
.lsa_c02100{letter-spacing:88.320000pt;}
.lse_c02100{letter-spacing:88.640000pt;}
.ls22_c02100{letter-spacing:104.400000pt;}
.ls13_c02100{letter-spacing:117.440000pt;}
.ls14_c02100{letter-spacing:117.760000pt;}
.lsc_c02100{letter-spacing:118.080000pt;}
.ls15_c02100{letter-spacing:133.600000pt;}
.ls1e_c02100{letter-spacing:162.960000pt;}
.lsf_c02100{letter-spacing:165.760000pt;}
.ls27_c02100{letter-spacing:182.080000pt;}
.ls28_c02100{letter-spacing:190.720000pt;}
.ls1d_c02100{letter-spacing:191.040000pt;}
.ls1f_c02100{letter-spacing:191.359467pt;}
.ls2a_c02100{letter-spacing:219.840000pt;}
.ls17_c02100{letter-spacing:224.320000pt;}
.ls11_c02100{letter-spacing:237.440000pt;}
.ls23_c02100{letter-spacing:239.040000pt;}
.ls1c_c02100{letter-spacing:250.240000pt;}
.ls7_c02100{letter-spacing:250.560000pt;}
.lsd_c02100{letter-spacing:263.680000pt;}
.ls20_c02100{letter-spacing:279.680000pt;}
.ls2b_c02100{letter-spacing:349.440000pt;}
.ls29_c02100{letter-spacing:368.640000pt;}
.ws2a_c02100{word-spacing:-64.000000pt;}
.ws20_c02100{word-spacing:-53.440000pt;}
.ws2_c02100{word-spacing:-14.798112pt;}
.ws0_c02100{word-spacing:-14.786400pt;}
.ws12_c02100{word-spacing:-14.780544pt;}
.ws3_c02100{word-spacing:-14.774688pt;}
.ws8_c02100{word-spacing:-14.762976pt;}
.ws1_c02100{word-spacing:-14.727840pt;}
.wsf_c02100{word-spacing:-14.721984pt;}
.ws13_c02100{word-spacing:-14.704416pt;}
.wsd_c02100{word-spacing:-14.692704pt;}
.ws11_c02100{word-spacing:-14.675136pt;}
.ws23_c02100{word-spacing:-0.112224pt;}
.ws2d_c02100{word-spacing:-0.108800pt;}
.ws30_c02100{word-spacing:-0.096000pt;}
.ws24_c02100{word-spacing:-0.069472pt;}
.ws1e_c02100{word-spacing:-0.058784pt;}
.ws3b_c02100{word-spacing:-0.048096pt;}
.ws26_c02100{word-spacing:-0.026720pt;}
.ws1d_c02100{word-spacing:-0.021376pt;}
.ws2c_c02100{word-spacing:-0.019200pt;}
.ws27_c02100{word-spacing:-0.016032pt;}
.ws2f_c02100{word-spacing:-0.012800pt;}
.ws22_c02100{word-spacing:-0.010688pt;}
.ws36_c02100{word-spacing:-0.006400pt;}
.ws2e_c02100{word-spacing:0.000000pt;}
.ws3c_c02100{word-spacing:0.011712pt;}
.ws29_c02100{word-spacing:0.012800pt;}
.ws37_c02100{word-spacing:0.017568pt;}
.ws39_c02100{word-spacing:0.023424pt;}
.ws3a_c02100{word-spacing:0.035136pt;}
.ws2b_c02100{word-spacing:0.038400pt;}
.ws38_c02100{word-spacing:0.046848pt;}
.ws28_c02100{word-spacing:0.057600pt;}
.ws1f_c02100{word-spacing:0.058784pt;}
.ws25_c02100{word-spacing:0.074816pt;}
.ws3d_c02100{word-spacing:0.087840pt;}
.ws21_c02100{word-spacing:0.144288pt;}
.ws31_c02100{word-spacing:5.075200pt;}
.ws32_c02100{word-spacing:5.145600pt;}
.ws33_c02100{word-spacing:6.316800pt;}
.ws34_c02100{word-spacing:6.368000pt;}
.ws35_c02100{word-spacing:6.412800pt;}
.ws14_c02100{word-spacing:57.857280pt;}
.ws10_c02100{word-spacing:59.767552pt;}
.wsc_c02100{word-spacing:60.126560pt;}
.ws5_c02100{word-spacing:88.885664pt;}
.wsb_c02100{word-spacing:88.887552pt;}
.ws6_c02100{word-spacing:89.246560pt;}
.ws15_c02100{word-spacing:89.718240pt;}
.ws7_c02100{word-spacing:118.325664pt;}
.wsa_c02100{word-spacing:118.708096pt;}
.ws4_c02100{word-spacing:133.406560pt;}
.ws9_c02100{word-spacing:162.548096pt;}
.ws1b_c02100{word-spacing:178.086816pt;}
.ws17_c02100{word-spacing:191.640864pt;}
.wse_c02100{word-spacing:191.988096pt;}
.ws16_c02100{word-spacing:192.240000pt;}
.ws1a_c02100{word-spacing:201.446400pt;}
.ws18_c02100{word-spacing:206.248320pt;}
.ws19_c02100{word-spacing:206.570400pt;}
.ws1c_c02100{word-spacing:211.050240pt;}
._1_c02100{margin-left:-1.190400pt;}
._5_c02100{width:61.292480pt;}
._4_c02100{width:92.880000pt;}
._3_c02100{width:108.262912pt;}
._6_c02100{width:118.672992pt;}
._2_c02100{width:150.853504pt;}
._0_c02100{width:172.800000pt;}
._7_c02100{width:206.445344pt;}
._9_c02100{width:571.910784pt;}
._8_c02100{width:591.251776pt;}
.fs5_c02100{font-size:26.560000pt;}
.fs1_c02100{font-size:42.560000pt;}
.fs4_c02100{font-size:48.000000pt;}
.fs3_c02100{font-size:53.440000pt;}
.fs2_c02100{font-size:58.560000pt;}
.fs0_c02100{font-size:64.000000pt;}
.y0_c02100{bottom:0.000000pt;}
.y3_c02100{bottom:50.987067pt;}
.y2_c02100{bottom:69.387067pt;}
.y2c_c02100{bottom:106.507067pt;}
.y2b_c02100{bottom:115.386267pt;}
.y2a_c02100{bottom:129.146667pt;}
.y29_c02100{bottom:142.907067pt;}
.y28_c02100{bottom:156.746667pt;}
.y27_c02100{bottom:170.507067pt;}
.y26_c02100{bottom:185.227067pt;}
.y25_c02100{bottom:203.627067pt;}
.y24_c02100{bottom:222.027067pt;}
.y23_c02100{bottom:238.907067pt;}
.y22_c02100{bottom:256.107067pt;}
.y21_c02100{bottom:274.507067pt;}
.y20_c02100{bottom:292.907067pt;}
.y1f_c02100{bottom:309.787067pt;}
.y1e_c02100{bottom:326.667200pt;}
.y1d_c02100{bottom:343.547067pt;}
.y1c_c02100{bottom:360.347067pt;}
.y1b_c02100{bottom:376.907200pt;}
.y1a_c02100{bottom:392.587067pt;}
.y17_c02100{bottom:408.907200pt;}
.y19_c02100{bottom:409.467067pt;}
.y18_c02100{bottom:426.347067pt;}
.y16_c02100{bottom:443.387067pt;}
.y15_c02100{bottom:466.507067pt;}
.y14_c02100{bottom:487.627067pt;}
.y13_c02100{bottom:506.107067pt;}
.y12_c02100{bottom:523.386243pt;}
.y11_c02100{bottom:535.626499pt;}
.y10_c02100{bottom:547.866755pt;}
.yf_c02100{bottom:560.186811pt;}
.ye_c02100{bottom:572.427067pt;}
.yd_c02100{bottom:582.347067pt;}
.y4c_c02100{bottom:594.577987pt;}
.y4b_c02100{bottom:610.818403pt;}
.y42_c02100{bottom:610.821075pt;}
.y3d_c02100{bottom:610.822411pt;}
.y38_c02100{bottom:610.823747pt;}
.y33_c02100{bottom:610.825083pt;}
.y4a_c02100{bottom:627.138979pt;}
.y46_c02100{bottom:627.140315pt;}
.y41_c02100{bottom:627.141651pt;}
.y3c_c02100{bottom:627.142987pt;}
.y37_c02100{bottom:627.144323pt;}
.y32_c02100{bottom:627.145659pt;}
.y49_c02100{bottom:643.379395pt;}
.y45_c02100{bottom:643.380731pt;}
.y40_c02100{bottom:643.382067pt;}
.y3b_c02100{bottom:643.383403pt;}
.y36_c02100{bottom:643.384739pt;}
.y31_c02100{bottom:643.386075pt;}
.y48_c02100{bottom:659.699971pt;}
.y44_c02100{bottom:659.701307pt;}
.y3f_c02100{bottom:659.702643pt;}
.y3a_c02100{bottom:659.703979pt;}
.y35_c02100{bottom:659.705315pt;}
.y30_c02100{bottom:659.706651pt;}
.y47_c02100{bottom:675.940387pt;}
.y43_c02100{bottom:675.941723pt;}
.y3e_c02100{bottom:675.943059pt;}
.y39_c02100{bottom:675.944395pt;}
.y34_c02100{bottom:675.945731pt;}
.y2f_c02100{bottom:675.947067pt;}
.y2d_c02100{bottom:757.147200pt;}
.y2e_c02100{bottom:796.748400pt;}
.y4d_c02100{bottom:825.147200pt;}
.yc_c02100{bottom:852.667011pt;}
.yb_c02100{bottom:864.987067pt;}
.ya_c02100{bottom:887.787067pt;}
.y9_c02100{bottom:915.387067pt;}
.y8_c02100{bottom:942.987067pt;}
.y7_c02100{bottom:970.427067pt;}
.y6_c02100{bottom:987.626811pt;}
.y5_c02100{bottom:999.867067pt;}
.y4_c02100{bottom:1013.307067pt;}
.y1_c02100{bottom:1060.587067pt;}
.h8_c02100{height:23.590156pt;}
.h3_c02100{height:37.801094pt;}
.hb_c02100{height:38.801406pt;}
.h7_c02100{height:42.632812pt;}
.hc_c02100{height:46.468750pt;}
.h5_c02100{height:47.464531pt;}
.ha_c02100{height:51.156506pt;}
.h4_c02100{height:52.012031pt;}
.h2_c02100{height:56.156250pt;}
.h1_c02100{height:56.843750pt;}
.h6_c02100{height:58.123750pt;}
.h9_c02100{height:137.883866pt;}
.h0_c02100{height:1122.666667pt;}
.w1_c02100{width:793.333333pt;}
.w0_c02100{width:793.626667pt;}
.x0_c02100{left:0.000000pt;}
.x1_c02100{left:113.440000pt;}
.x6_c02100{left:120.560000pt;}
.x4_c02100{left:132.400000pt;}
.x13_c02100{left:134.320000pt;}
.x15_c02100{left:135.758872pt;}
.x10_c02100{left:143.040000pt;}
.x14_c02100{left:152.879712pt;}
.x11_c02100{left:154.320000pt;}
.x18_c02100{left:210.238200pt;}
.x1a_c02100{left:212.238192pt;}
.x8_c02100{left:213.440000pt;}
.x17_c02100{left:218.318328pt;}
.x16_c02100{left:220.638960pt;}
.x19_c02100{left:229.359032pt;}
.x9_c02100{left:238.960000pt;}
.x7_c02100{left:258.320000pt;}
.x31_c02100{left:285.840000pt;}
.x1d_c02100{left:287.998744pt;}
.x1c_c02100{left:289.998736pt;}
.x1e_c02100{left:293.838400pt;}
.x1b_c02100{left:297.198440pt;}
.x1f_c02100{left:301.357408pt;}
.x3_c02100{left:316.960000pt;}
.x21_c02100{left:362.718552pt;}
.xb_c02100{left:369.040000pt;}
.x20_c02100{left:373.757920pt;}
.x2_c02100{left:388.960000pt;}
.xc_c02100{left:394.160000pt;}
.xa_c02100{left:413.520000pt;}
.x24_c02100{left:441.038880pt;}
.x23_c02100{left:443.038872pt;}
.x25_c02100{left:446.878536pt;}
.x26_c02100{left:448.797032pt;}
.x22_c02100{left:450.238576pt;}
.x29_c02100{left:514.796768pt;}
.x28_c02100{left:516.716600pt;}
.x2a_c02100{left:521.436688pt;}
.x27_c02100{left:526.796720pt;}
.xe_c02100{left:531.280000pt;}
.x12_c02100{left:539.278800pt;}
.xd_c02100{left:568.720000pt;}
.xf_c02100{left:584.640000pt;}
.x2c_c02100{left:587.755728pt;}
.x2f_c02100{left:594.474472pt;}
.x2d_c02100{left:597.435048pt;}
.x2e_c02100{left:601.914656pt;}
.x2b_c02100{left:603.356200pt;}
.x30_c02100{left:613.194504pt;}
.x5_c02100{left:678.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_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_d27724f381f3de4694ad26ab.woff2')format("woff");}.ff1_c02101{font-family:ff1_c02101;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02101;src:url('chunks/assets/font_22d923dd63665a69fbce1068.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;}
.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);}
.v9_c02101{vertical-align:-15.480000px;}
.vc_c02101{vertical-align:-14.040000px;}
.va_c02101{vertical-align:-12.960000px;}
.vb_c02101{vertical-align:-11.160000px;}
.v6_c02101{vertical-align:-3.960000px;}
.v5_c02101{vertical-align:-2.520000px;}
.v4_c02101{vertical-align:-1.440600px;}
.v0_c02101{vertical-align:0.000000px;}
.v3_c02101{vertical-align:1.440000px;}
.v7_c02101{vertical-align:2.520000px;}
.v8_c02101{vertical-align:3.960000px;}
.v2_c02101{vertical-align:75.960000px;}
.v1_c02101{vertical-align:78.120000px;}
.ls5b_c02101{letter-spacing:-0.096876px;}
.ls5a_c02101{letter-spacing:-0.086184px;}
.ls52_c02101{letter-spacing:-0.078156px;}
.ls56_c02101{letter-spacing:-0.043200px;}
.ls58_c02101{letter-spacing:-0.019152px;}
.ls50_c02101{letter-spacing:-0.014400px;}
.ls57_c02101{letter-spacing:-0.010800px;}
.ls5d_c02101{letter-spacing:-0.009576px;}
.ls53_c02101{letter-spacing:-0.006588px;}
.ls51_c02101{letter-spacing:0.000000px;}
.ls40_c02101{letter-spacing:0.007200px;}
.ls41_c02101{letter-spacing:0.010800px;}
.ls43_c02101{letter-spacing:0.028728px;}
.ls3f_c02101{letter-spacing:0.028800px;}
.ls44_c02101{letter-spacing:0.032400px;}
.ls1_c02101{letter-spacing:0.032940px;}
.ls49_c02101{letter-spacing:0.037800px;}
.ls24_c02101{letter-spacing:0.039528px;}
.ls42_c02101{letter-spacing:0.043092px;}
.ls48_c02101{letter-spacing:0.043200px;}
.ls54_c02101{letter-spacing:0.046116px;}
.ls6_c02101{letter-spacing:0.059292px;}
.lsf_c02101{letter-spacing:0.065880px;}
.ls3_c02101{letter-spacing:0.072468px;}
.ls46_c02101{letter-spacing:0.076608px;}
.ls16_c02101{letter-spacing:0.079056px;}
.ls4f_c02101{letter-spacing:0.081396px;}
.ls8_c02101{letter-spacing:0.092232px;}
.ls5_c02101{letter-spacing:0.098820px;}
.lsb_c02101{letter-spacing:0.138348px;}
.ls7_c02101{letter-spacing:0.144288px;}
.ls55_c02101{letter-spacing:0.151200px;}
.ls12_c02101{letter-spacing:0.151524px;}
.ls26_c02101{letter-spacing:0.158112px;}
.ls4e_c02101{letter-spacing:0.162792px;}
.ls0_c02101{letter-spacing:0.164700px;}
.ls59_c02101{letter-spacing:0.167580px;}
.ls1a_c02101{letter-spacing:0.177876px;}
.ls18_c02101{letter-spacing:0.180000px;}
.ls47_c02101{letter-spacing:0.181944px;}
.ls27_c02101{letter-spacing:64.080000px;}
.ls21_c02101{letter-spacing:66.240000px;}
.ls1b_c02101{letter-spacing:66.600000px;}
.ls1c_c02101{letter-spacing:66.960000px;}
.ls3b_c02101{letter-spacing:86.400000px;}
.ls39_c02101{letter-spacing:88.560000px;}
.ls36_c02101{letter-spacing:88.920000px;}
.ls11_c02101{letter-spacing:99.000000px;}
.ls13_c02101{letter-spacing:99.360000px;}
.ls15_c02101{letter-spacing:99.720000px;}
.ls45_c02101{letter-spacing:114.120000px;}
.ls22_c02101{letter-spacing:117.450000px;}
.ls32_c02101{letter-spacing:121.320000px;}
.ls33_c02101{letter-spacing:121.680000px;}
.ls4d_c02101{letter-spacing:123.298200px;}
.lsa_c02101{letter-spacing:132.120000px;}
.lsc_c02101{letter-spacing:132.480000px;}
.lse_c02101{letter-spacing:132.840000px;}
.lsd_c02101{letter-spacing:150.300000px;}
.ls2e_c02101{letter-spacing:154.440000px;}
.ls2f_c02101{letter-spacing:154.800000px;}
.ls4b_c02101{letter-spacing:155.247876px;}
.ls5c_c02101{letter-spacing:156.778200px;}
.ls31_c02101{letter-spacing:177.840000px;}
.ls1f_c02101{letter-spacing:183.330000px;}
.ls14_c02101{letter-spacing:186.480000px;}
.ls3c_c02101{letter-spacing:196.200000px;}
.ls4a_c02101{letter-spacing:199.350000px;}
.ls4c_c02101{letter-spacing:200.252124px;}
.ls28_c02101{letter-spacing:204.840000px;}
.ls29_c02101{letter-spacing:214.560000px;}
.ls1e_c02101{letter-spacing:214.920000px;}
.ls23_c02101{letter-spacing:215.279400px;}
.ls34_c02101{letter-spacing:225.720000px;}
.ls3d_c02101{letter-spacing:236.880000px;}
.ls38_c02101{letter-spacing:237.240000px;}
.ls3e_c02101{letter-spacing:238.680000px;}
.ls35_c02101{letter-spacing:243.720000px;}
.ls2b_c02101{letter-spacing:247.320000px;}
.ls19_c02101{letter-spacing:252.360000px;}
.ls3a_c02101{letter-spacing:260.280000px;}
.ls17_c02101{letter-spacing:267.120000px;}
.ls25_c02101{letter-spacing:268.920000px;}
.ls4_c02101{letter-spacing:271.800000px;}
.ls37_c02101{letter-spacing:272.880000px;}
.ls1d_c02101{letter-spacing:281.520000px;}
.ls9_c02101{letter-spacing:281.880000px;}
.ls10_c02101{letter-spacing:296.640000px;}
.ls2d_c02101{letter-spacing:306.000000px;}
.ls20_c02101{letter-spacing:314.640000px;}
.ls30_c02101{letter-spacing:320.760000px;}
.ls2c_c02101{letter-spacing:393.120000px;}
.ls2_c02101{letter-spacing:397.440000px;}
.ls2a_c02101{letter-spacing:414.720000px;}
.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;}
}
.ws2_c02101{word-spacing:-16.647876px;}
.ws0_c02101{word-spacing:-16.634700px;}
.ws15_c02101{word-spacing:-16.628112px;}
.ws8_c02101{word-spacing:-16.621524px;}
.ws3_c02101{word-spacing:-16.608348px;}
.wsd_c02101{word-spacing:-16.568820px;}
.ws12_c02101{word-spacing:-16.562232px;}
.ws16_c02101{word-spacing:-16.542468px;}
.ws10_c02101{word-spacing:-16.529292px;}
.ws14_c02101{word-spacing:-16.509528px;}
.ws1_c02101{word-spacing:-16.502940px;}
.ws2b_c02101{word-spacing:-0.272916px;}
.ws2c_c02101{word-spacing:-0.253764px;}
.ws27_c02101{word-spacing:-0.115200px;}
.ws2e_c02101{word-spacing:-0.081396px;}
.ws21_c02101{word-spacing:-0.054108px;}
.ws29_c02101{word-spacing:-0.036000px;}
.ws28_c02101{word-spacing:-0.007200px;}
.ws1f_c02101{word-spacing:-0.006588px;}
.ws1d_c02101{word-spacing:0.000000px;}
.ws2a_c02101{word-spacing:0.008424px;}
.ws23_c02101{word-spacing:0.013176px;}
.ws1c_c02101{word-spacing:0.014400px;}
.ws1e_c02101{word-spacing:0.019764px;}
.ws22_c02101{word-spacing:0.026352px;}
.ws20_c02101{word-spacing:0.032940px;}
.ws26_c02101{word-spacing:0.046116px;}
.ws24_c02101{word-spacing:0.052704px;}
.ws25_c02101{word-spacing:0.098820px;}
.ws2d_c02101{word-spacing:0.140400px;}
.ws1b_c02101{word-spacing:52.849440px;}
.ws17_c02101{word-spacing:65.089440px;}
.ws13_c02101{word-spacing:67.238496px;}
.wsf_c02101{word-spacing:67.642380px;}
.wsa_c02101{word-spacing:99.996372px;}
.wse_c02101{word-spacing:99.998496px;}
.wsb_c02101{word-spacing:100.402380px;}
.ws18_c02101{word-spacing:100.933020px;}
.ws5_c02101{word-spacing:133.116372px;}
.ws6_c02101{word-spacing:133.546608px;}
.ws9_c02101{word-spacing:150.082380px;}
.ws4_c02101{word-spacing:150.106608px;}
.wsc_c02101{word-spacing:182.842380px;}
.ws7_c02101{word-spacing:182.866608px;}
.ws1a_c02101{word-spacing:215.595972px;}
.ws11_c02101{word-spacing:215.986608px;}
.ws19_c02101{word-spacing:216.270000px;}
._2_c02101{margin-left:-1.288872px;}
._18_c02101{width:50.937552px;}
._1b_c02101{width:61.659648px;}
._25_c02101{width:63.375192px;}
._15_c02101{width:64.684692px;}
._6_c02101{width:68.903712px;}
._14_c02101{width:76.204440px;}
._1e_c02101{width:82.656000px;}
._10_c02101{width:84.474000px;}
._16_c02101{width:86.918400px;}
._f_c02101{width:88.581600px;}
._19_c02101{width:89.848440px;}
._1d_c02101{width:95.904000px;}
._23_c02101{width:98.460000px;}
._24_c02101{width:103.135140px;}
._5_c02101{width:104.490000px;}
._1c_c02101{width:107.064000px;}
._17_c02101{width:115.718400px;}
._11_c02101{width:120.420000px;}
._4_c02101{width:121.795776px;}
._e_c02101{width:126.810000px;}
._d_c02101{width:128.635776px;}
._1f_c02101{width:131.194296px;}
._7_c02101{width:133.456788px;}
._13_c02101{width:148.307688px;}
._12_c02101{width:150.274692px;}
._22_c02101{width:156.780000px;}
._c_c02101{width:165.339864px;}
._21_c02101{width:168.186384px;}
._3_c02101{width:169.659864px;}
._0_c02101{width:194.400000px;}
._1a_c02101{width:222.564168px;}
._8_c02101{width:232.200684px;}
._20_c02101{width:241.346448px;}
._1_c02101{width:485.985600px;}
._b_c02101{width:503.985600px;}
._a_c02101{width:643.399632px;}
._9_c02101{width:665.158248px;}
.fc0_c02101{color:rgb(0,0,0);}
.fs5_c02101{font-size:42.120000px;}
.fs4_c02101{font-size:47.880000px;}
.fs3_c02101{font-size:54.000000px;}
.fs2_c02101{font-size:60.120000px;}
.fs1_c02101{font-size:65.880000px;}
.fs0_c02101{font-size:72.000000px;}
.y0_c02101{bottom:0.000000px;}
.y3_c02101{bottom:57.360450px;}
.y2_c02101{bottom:78.060450px;}
.y3f_c02101{bottom:126.660450px;}
.y3e_c02101{bottom:145.020450px;}
.y3d_c02101{bottom:160.500900px;}
.y3c_c02101{bottom:176.070450px;}
.y3b_c02101{bottom:191.550900px;}
.y3a_c02101{bottom:207.120450px;}
.y39_c02101{bottom:222.600900px;}
.y38_c02101{bottom:238.170450px;}
.y37_c02101{bottom:253.650450px;}
.y36_c02101{bottom:259.230450px;}
.y35_c02101{bottom:278.220450px;}
.y34_c02101{bottom:293.340450px;}
.y33_c02101{bottom:298.920000px;}
.y32_c02101{bottom:314.040450px;}
.y31_c02101{bottom:319.620000px;}
.y30_c02101{bottom:334.740450px;}
.y2f_c02101{bottom:340.320450px;}
.y2e_c02101{bottom:356.430450px;}
.y2d_c02101{bottom:374.790600px;}
.y2c_c02101{bottom:392.160450px;}
.y2b_c02101{bottom:412.320000px;}
.y2a_c02101{bottom:427.800450px;}
.y29_c02101{bottom:444.990450px;}
.y28_c02101{bottom:465.510450px;}
.y27_c02101{bottom:481.080000px;}
.y26_c02101{bottom:496.560450px;}
.y25_c02101{bottom:512.130000px;}
.y24_c02101{bottom:527.610450px;}
.y23_c02101{bottom:544.170450px;}
.y22_c02101{bottom:564.870450px;}
.y21_c02101{bottom:585.570450px;}
.y20_c02101{bottom:604.560450px;}
.y1f_c02101{bottom:623.910450px;}
.y1e_c02101{bottom:644.610450px;}
.y1d_c02101{bottom:665.310450px;}
.y1c_c02101{bottom:684.300450px;}
.y1b_c02101{bottom:703.200450px;}
.y1a_c02101{bottom:722.190450px;}
.y19_c02101{bottom:741.180450px;}
.y18_c02101{bottom:759.810450px;}
.y17_c02101{bottom:777.450450px;}
.y15_c02101{bottom:795.810450px;}
.y16_c02101{bottom:796.350450px;}
.y14_c02101{bottom:835.950150px;}
.y13_c02101{bottom:851.430600px;}
.y12_c02101{bottom:867.990450px;}
.y11_c02101{bottom:888.690450px;}
.y10_c02101{bottom:909.390450px;}
.yf_c02101{bottom:928.380450px;}
.ye_c02101{bottom:947.730450px;}
.yd_c02101{bottom:968.430450px;}
.yc_c02101{bottom:989.130450px;}
.yb_c02101{bottom:1008.120450px;}
.ya_c02101{bottom:1027.020450px;}
.y9_c02101{bottom:1046.010450px;}
.y8_c02101{bottom:1065.000450px;}
.y7_c02101{bottom:1083.630450px;}
.y6_c02101{bottom:1101.270450px;}
.y4_c02101{bottom:1119.630450px;}
.y5_c02101{bottom:1120.170450px;}
.y1_c02101{bottom:1193.160450px;}
.h9_c02101{height:47.961914px;}
.ha_c02101{height:48.461236px;}
.h7_c02101{height:53.397598px;}
.h6_c02101{height:58.513535px;}
.hb_c02101{height:62.473535px;}
.hc_c02101{height:62.833535px;}
.h2_c02101{height:63.175781px;}
.h1_c02101{height:63.949219px;}
.h8_c02101{height:65.029219px;}
.h4_c02101{height:134.473535px;}
.h5_c02101{height:139.909219px;}
.h3_c02101{height:142.069219px;}
.h0_c02101{height:1263.000000px;}
.w1_c02101{width:892.500000px;}
.w0_c02101{width:892.830000px;}
.x0_c02101{left:0.000000px;}
.x1_c02101{left:127.620000px;}
.x3_c02101{left:135.630000px;}
.xb_c02101{left:143.730000px;}
.xc_c02101{left:150.120000px;}
.x8_c02101{left:160.920000px;}
.xd_c02101{left:220.680000px;}
.x9_c02101{left:252.990000px;}
.xa_c02101{left:266.760000px;}
.x4_c02101{left:275.220000px;}
.x5_c02101{left:418.410000px;}
.x2_c02101{left:437.580000px;}
.x7_c02101{left:597.870000px;}
.x6_c02101{left:626.490000px;}
@media print{
.v9_c02101{vertical-align:-13.760000pt;}
.vc_c02101{vertical-align:-12.480000pt;}
.va_c02101{vertical-align:-11.520000pt;}
.vb_c02101{vertical-align:-9.920000pt;}
.v6_c02101{vertical-align:-3.520000pt;}
.v5_c02101{vertical-align:-2.240000pt;}
.v4_c02101{vertical-align:-1.280533pt;}
.v0_c02101{vertical-align:0.000000pt;}
.v3_c02101{vertical-align:1.280000pt;}
.v7_c02101{vertical-align:2.240000pt;}
.v8_c02101{vertical-align:3.520000pt;}
.v2_c02101{vertical-align:67.520000pt;}
.v1_c02101{vertical-align:69.440000pt;}
.ls5b_c02101{letter-spacing:-0.086112pt;}
.ls5a_c02101{letter-spacing:-0.076608pt;}
.ls52_c02101{letter-spacing:-0.069472pt;}
.ls56_c02101{letter-spacing:-0.038400pt;}
.ls58_c02101{letter-spacing:-0.017024pt;}
.ls50_c02101{letter-spacing:-0.012800pt;}
.ls57_c02101{letter-spacing:-0.009600pt;}
.ls5d_c02101{letter-spacing:-0.008512pt;}
.ls53_c02101{letter-spacing:-0.005856pt;}
.ls51_c02101{letter-spacing:0.000000pt;}
.ls40_c02101{letter-spacing:0.006400pt;}
.ls41_c02101{letter-spacing:0.009600pt;}
.ls43_c02101{letter-spacing:0.025536pt;}
.ls3f_c02101{letter-spacing:0.025600pt;}
.ls44_c02101{letter-spacing:0.028800pt;}
.ls1_c02101{letter-spacing:0.029280pt;}
.ls49_c02101{letter-spacing:0.033600pt;}
.ls24_c02101{letter-spacing:0.035136pt;}
.ls42_c02101{letter-spacing:0.038304pt;}
.ls48_c02101{letter-spacing:0.038400pt;}
.ls54_c02101{letter-spacing:0.040992pt;}
.ls6_c02101{letter-spacing:0.052704pt;}
.lsf_c02101{letter-spacing:0.058560pt;}
.ls3_c02101{letter-spacing:0.064416pt;}
.ls46_c02101{letter-spacing:0.068096pt;}
.ls16_c02101{letter-spacing:0.070272pt;}
.ls4f_c02101{letter-spacing:0.072352pt;}
.ls8_c02101{letter-spacing:0.081984pt;}
.ls5_c02101{letter-spacing:0.087840pt;}
.lsb_c02101{letter-spacing:0.122976pt;}
.ls7_c02101{letter-spacing:0.128256pt;}
.ls55_c02101{letter-spacing:0.134400pt;}
.ls12_c02101{letter-spacing:0.134688pt;}
.ls26_c02101{letter-spacing:0.140544pt;}
.ls4e_c02101{letter-spacing:0.144704pt;}
.ls0_c02101{letter-spacing:0.146400pt;}
.ls59_c02101{letter-spacing:0.148960pt;}
.ls1a_c02101{letter-spacing:0.158112pt;}
.ls18_c02101{letter-spacing:0.160000pt;}
.ls47_c02101{letter-spacing:0.161728pt;}
.ls27_c02101{letter-spacing:56.960000pt;}
.ls21_c02101{letter-spacing:58.880000pt;}
.ls1b_c02101{letter-spacing:59.200000pt;}
.ls1c_c02101{letter-spacing:59.520000pt;}
.ls3b_c02101{letter-spacing:76.800000pt;}
.ls39_c02101{letter-spacing:78.720000pt;}
.ls36_c02101{letter-spacing:79.040000pt;}
.ls11_c02101{letter-spacing:88.000000pt;}
.ls13_c02101{letter-spacing:88.320000pt;}
.ls15_c02101{letter-spacing:88.640000pt;}
.ls45_c02101{letter-spacing:101.440000pt;}
.ls22_c02101{letter-spacing:104.400000pt;}
.ls32_c02101{letter-spacing:107.840000pt;}
.ls33_c02101{letter-spacing:108.160000pt;}
.ls4d_c02101{letter-spacing:109.598400pt;}
.lsa_c02101{letter-spacing:117.440000pt;}
.lsc_c02101{letter-spacing:117.760000pt;}
.lse_c02101{letter-spacing:118.080000pt;}
.lsd_c02101{letter-spacing:133.600000pt;}
.ls2e_c02101{letter-spacing:137.280000pt;}
.ls2f_c02101{letter-spacing:137.600000pt;}
.ls4b_c02101{letter-spacing:137.998112pt;}
.ls5c_c02101{letter-spacing:139.358400pt;}
.ls31_c02101{letter-spacing:158.080000pt;}
.ls1f_c02101{letter-spacing:162.960000pt;}
.ls14_c02101{letter-spacing:165.760000pt;}
.ls3c_c02101{letter-spacing:174.400000pt;}
.ls4a_c02101{letter-spacing:177.200000pt;}
.ls4c_c02101{letter-spacing:178.001888pt;}
.ls28_c02101{letter-spacing:182.080000pt;}
.ls29_c02101{letter-spacing:190.720000pt;}
.ls1e_c02101{letter-spacing:191.040000pt;}
.ls23_c02101{letter-spacing:191.359467pt;}
.ls34_c02101{letter-spacing:200.640000pt;}
.ls3d_c02101{letter-spacing:210.560000pt;}
.ls38_c02101{letter-spacing:210.880000pt;}
.ls3e_c02101{letter-spacing:212.160000pt;}
.ls35_c02101{letter-spacing:216.640000pt;}
.ls2b_c02101{letter-spacing:219.840000pt;}
.ls19_c02101{letter-spacing:224.320000pt;}
.ls3a_c02101{letter-spacing:231.360000pt;}
.ls17_c02101{letter-spacing:237.440000pt;}
.ls25_c02101{letter-spacing:239.040000pt;}
.ls4_c02101{letter-spacing:241.600000pt;}
.ls37_c02101{letter-spacing:242.560000pt;}
.ls1d_c02101{letter-spacing:250.240000pt;}
.ls9_c02101{letter-spacing:250.560000pt;}
.ls10_c02101{letter-spacing:263.680000pt;}
.ls2d_c02101{letter-spacing:272.000000pt;}
.ls20_c02101{letter-spacing:279.680000pt;}
.ls30_c02101{letter-spacing:285.120000pt;}
.ls2c_c02101{letter-spacing:349.440000pt;}
.ls2_c02101{letter-spacing:353.280000pt;}
.ls2a_c02101{letter-spacing:368.640000pt;}
.ws2_c02101{word-spacing:-14.798112pt;}
.ws0_c02101{word-spacing:-14.786400pt;}
.ws15_c02101{word-spacing:-14.780544pt;}
.ws8_c02101{word-spacing:-14.774688pt;}
.ws3_c02101{word-spacing:-14.762976pt;}
.wsd_c02101{word-spacing:-14.727840pt;}
.ws12_c02101{word-spacing:-14.721984pt;}
.ws16_c02101{word-spacing:-14.704416pt;}
.ws10_c02101{word-spacing:-14.692704pt;}
.ws14_c02101{word-spacing:-14.675136pt;}
.ws1_c02101{word-spacing:-14.669280pt;}
.ws2b_c02101{word-spacing:-0.242592pt;}
.ws2c_c02101{word-spacing:-0.225568pt;}
.ws27_c02101{word-spacing:-0.102400pt;}
.ws2e_c02101{word-spacing:-0.072352pt;}
.ws21_c02101{word-spacing:-0.048096pt;}
.ws29_c02101{word-spacing:-0.032000pt;}
.ws28_c02101{word-spacing:-0.006400pt;}
.ws1f_c02101{word-spacing:-0.005856pt;}
.ws1d_c02101{word-spacing:0.000000pt;}
.ws2a_c02101{word-spacing:0.007488pt;}
.ws23_c02101{word-spacing:0.011712pt;}
.ws1c_c02101{word-spacing:0.012800pt;}
.ws1e_c02101{word-spacing:0.017568pt;}
.ws22_c02101{word-spacing:0.023424pt;}
.ws20_c02101{word-spacing:0.029280pt;}
.ws26_c02101{word-spacing:0.040992pt;}
.ws24_c02101{word-spacing:0.046848pt;}
.ws25_c02101{word-spacing:0.087840pt;}
.ws2d_c02101{word-spacing:0.124800pt;}
.ws1b_c02101{word-spacing:46.977280pt;}
.ws17_c02101{word-spacing:57.857280pt;}
.ws13_c02101{word-spacing:59.767552pt;}
.wsf_c02101{word-spacing:60.126560pt;}
.wsa_c02101{word-spacing:88.885664pt;}
.wse_c02101{word-spacing:88.887552pt;}
.wsb_c02101{word-spacing:89.246560pt;}
.ws18_c02101{word-spacing:89.718240pt;}
.ws5_c02101{word-spacing:118.325664pt;}
.ws6_c02101{word-spacing:118.708096pt;}
.ws9_c02101{word-spacing:133.406560pt;}
.ws4_c02101{word-spacing:133.428096pt;}
.wsc_c02101{word-spacing:162.526560pt;}
.ws7_c02101{word-spacing:162.548096pt;}
.ws1a_c02101{word-spacing:191.640864pt;}
.ws11_c02101{word-spacing:191.988096pt;}
.ws19_c02101{word-spacing:192.240000pt;}
._2_c02101{margin-left:-1.145664pt;}
._18_c02101{width:45.277824pt;}
._1b_c02101{width:54.808576pt;}
._25_c02101{width:56.333504pt;}
._15_c02101{width:57.497504pt;}
._6_c02101{width:61.247744pt;}
._14_c02101{width:67.737280pt;}
._1e_c02101{width:73.472000pt;}
._10_c02101{width:75.088000pt;}
._16_c02101{width:77.260800pt;}
._f_c02101{width:78.739200pt;}
._19_c02101{width:79.865280pt;}
._1d_c02101{width:85.248000pt;}
._23_c02101{width:87.520000pt;}
._24_c02101{width:91.675680pt;}
._5_c02101{width:92.880000pt;}
._1c_c02101{width:95.168000pt;}
._17_c02101{width:102.860800pt;}
._11_c02101{width:107.040000pt;}
._4_c02101{width:108.262912pt;}
._e_c02101{width:112.720000pt;}
._d_c02101{width:114.342912pt;}
._1f_c02101{width:116.617152pt;}
._7_c02101{width:118.628256pt;}
._13_c02101{width:131.829056pt;}
._12_c02101{width:133.577504pt;}
._22_c02101{width:139.360000pt;}
._c_c02101{width:146.968768pt;}
._21_c02101{width:149.499008pt;}
._3_c02101{width:150.808768pt;}
._0_c02101{width:172.800000pt;}
._1a_c02101{width:197.834816pt;}
._8_c02101{width:206.400608pt;}
._20_c02101{width:214.530176pt;}
._1_c02101{width:431.987200pt;}
._b_c02101{width:447.987200pt;}
._a_c02101{width:571.910784pt;}
._9_c02101{width:591.251776pt;}
.fs5_c02101{font-size:37.440000pt;}
.fs4_c02101{font-size:42.560000pt;}
.fs3_c02101{font-size:48.000000pt;}
.fs2_c02101{font-size:53.440000pt;}
.fs1_c02101{font-size:58.560000pt;}
.fs0_c02101{font-size:64.000000pt;}
.y0_c02101{bottom:0.000000pt;}
.y3_c02101{bottom:50.987067pt;}
.y2_c02101{bottom:69.387067pt;}
.y3f_c02101{bottom:112.587067pt;}
.y3e_c02101{bottom:128.907067pt;}
.y3d_c02101{bottom:142.667467pt;}
.y3c_c02101{bottom:156.507067pt;}
.y3b_c02101{bottom:170.267467pt;}
.y3a_c02101{bottom:184.107067pt;}
.y39_c02101{bottom:197.867467pt;}
.y38_c02101{bottom:211.707067pt;}
.y37_c02101{bottom:225.467067pt;}
.y36_c02101{bottom:230.427067pt;}
.y35_c02101{bottom:247.307067pt;}
.y34_c02101{bottom:260.747067pt;}
.y33_c02101{bottom:265.706667pt;}
.y32_c02101{bottom:279.147067pt;}
.y31_c02101{bottom:284.106667pt;}
.y30_c02101{bottom:297.547067pt;}
.y2f_c02101{bottom:302.507067pt;}
.y2e_c02101{bottom:316.827067pt;}
.y2d_c02101{bottom:333.147200pt;}
.y2c_c02101{bottom:348.587067pt;}
.y2b_c02101{bottom:366.506667pt;}
.y2a_c02101{bottom:380.267067pt;}
.y29_c02101{bottom:395.547067pt;}
.y28_c02101{bottom:413.787067pt;}
.y27_c02101{bottom:427.626667pt;}
.y26_c02101{bottom:441.387067pt;}
.y25_c02101{bottom:455.226667pt;}
.y24_c02101{bottom:468.987067pt;}
.y23_c02101{bottom:483.707067pt;}
.y22_c02101{bottom:502.107067pt;}
.y21_c02101{bottom:520.507067pt;}
.y20_c02101{bottom:537.387067pt;}
.y1f_c02101{bottom:554.587067pt;}
.y1e_c02101{bottom:572.987067pt;}
.y1d_c02101{bottom:591.387067pt;}
.y1c_c02101{bottom:608.267067pt;}
.y1b_c02101{bottom:625.067067pt;}
.y1a_c02101{bottom:641.947067pt;}
.y19_c02101{bottom:658.827067pt;}
.y18_c02101{bottom:675.387067pt;}
.y17_c02101{bottom:691.067067pt;}
.y15_c02101{bottom:707.387067pt;}
.y16_c02101{bottom:707.867067pt;}
.y14_c02101{bottom:743.066800pt;}
.y13_c02101{bottom:756.827200pt;}
.y12_c02101{bottom:771.547067pt;}
.y11_c02101{bottom:789.947067pt;}
.y10_c02101{bottom:808.347067pt;}
.yf_c02101{bottom:825.227067pt;}
.ye_c02101{bottom:842.427067pt;}
.yd_c02101{bottom:860.827067pt;}
.yc_c02101{bottom:879.227067pt;}
.yb_c02101{bottom:896.107067pt;}
.ya_c02101{bottom:912.907067pt;}
.y9_c02101{bottom:929.787067pt;}
.y8_c02101{bottom:946.667067pt;}
.y7_c02101{bottom:963.227067pt;}
.y6_c02101{bottom:978.907067pt;}
.y4_c02101{bottom:995.227067pt;}
.y5_c02101{bottom:995.707067pt;}
.y1_c02101{bottom:1060.587067pt;}
.h9_c02101{height:42.632812pt;}
.ha_c02101{height:43.076654pt;}
.h7_c02101{height:47.464531pt;}
.h6_c02101{height:52.012031pt;}
.hb_c02101{height:55.532031pt;}
.hc_c02101{height:55.852031pt;}
.h2_c02101{height:56.156250pt;}
.h1_c02101{height:56.843750pt;}
.h8_c02101{height:57.803750pt;}
.h4_c02101{height:119.532031pt;}
.h5_c02101{height:124.363750pt;}
.h3_c02101{height:126.283750pt;}
.h0_c02101{height:1122.666667pt;}
.w1_c02101{width:793.333333pt;}
.w0_c02101{width:793.626667pt;}
.x0_c02101{left:0.000000pt;}
.x1_c02101{left:113.440000pt;}
.x3_c02101{left:120.560000pt;}
.xb_c02101{left:127.760000pt;}
.xc_c02101{left:133.440000pt;}
.x8_c02101{left:143.040000pt;}
.xd_c02101{left:196.160000pt;}
.x9_c02101{left:224.880000pt;}
.xa_c02101{left:237.120000pt;}
.x4_c02101{left:244.640000pt;}
.x5_c02101{left:371.920000pt;}
.x2_c02101{left:388.960000pt;}
.x7_c02101{left:531.440000pt;}
.x6_c02101{left:556.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_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_286b2fe80e6821aa56f78559.woff2')format("woff");}.ff1_c02102{font-family:ff1_c02102;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02102;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.v6_c02102{vertical-align:-15.120000px;}
.v9_c02102{vertical-align:-13.680000px;}
.v7_c02102{vertical-align:-12.599400px;}
.v8_c02102{vertical-align:-11.160000px;}
.vb_c02102{vertical-align:-9.000000px;}
.v3_c02102{vertical-align:-3.960000px;}
.va_c02102{vertical-align:-2.880000px;}
.v2_c02102{vertical-align:-1.800000px;}
.v0_c02102{vertical-align:0.000000px;}
.v1_c02102{vertical-align:1.080000px;}
.v4_c02102{vertical-align:2.520000px;}
.v5_c02102{vertical-align:3.960000px;}
.ls26_c02102{letter-spacing:-0.178200px;}
.ls2d_c02102{letter-spacing:-0.096876px;}
.ls2c_c02102{letter-spacing:-0.086184px;}
.ls29_c02102{letter-spacing:-0.043200px;}
.ls25_c02102{letter-spacing:-0.019152px;}
.ls23_c02102{letter-spacing:-0.014400px;}
.ls2a_c02102{letter-spacing:-0.010800px;}
.ls27_c02102{letter-spacing:-0.009576px;}
.ls2e_c02102{letter-spacing:-0.004788px;}
.ls24_c02102{letter-spacing:0.000000px;}
.ls22_c02102{letter-spacing:0.006588px;}
.ls1d_c02102{letter-spacing:0.007200px;}
.lsf_c02102{letter-spacing:0.010800px;}
.lse_c02102{letter-spacing:0.014400px;}
.ls1b_c02102{letter-spacing:0.019152px;}
.ls1_c02102{letter-spacing:0.019764px;}
.ls10_c02102{letter-spacing:0.028728px;}
.ls1c_c02102{letter-spacing:0.028800px;}
.ls11_c02102{letter-spacing:0.032400px;}
.ls8_c02102{letter-spacing:0.037800px;}
.lsc_c02102{letter-spacing:0.043092px;}
.ls5_c02102{letter-spacing:0.043200px;}
.ls7_c02102{letter-spacing:0.048600px;}
.ls1f_c02102{letter-spacing:0.052668px;}
.ls6_c02102{letter-spacing:0.054000px;}
.lsa_c02102{letter-spacing:0.067032px;}
.ls4_c02102{letter-spacing:0.070200px;}
.ls21_c02102{letter-spacing:0.072468px;}
.ls2_c02102{letter-spacing:0.076608px;}
.ls0_c02102{letter-spacing:0.079056px;}
.ls14_c02102{letter-spacing:0.081396px;}
.ls9_c02102{letter-spacing:0.086184px;}
.ls3_c02102{letter-spacing:0.095760px;}
.lsb_c02102{letter-spacing:0.114912px;}
.lsd_c02102{letter-spacing:0.119700px;}
.ls19_c02102{letter-spacing:0.124488px;}
.ls1a_c02102{letter-spacing:0.134064px;}
.ls20_c02102{letter-spacing:0.138852px;}
.ls28_c02102{letter-spacing:0.151200px;}
.ls12_c02102{letter-spacing:0.158112px;}
.ls1e_c02102{letter-spacing:0.162792px;}
.ls2b_c02102{letter-spacing:0.167580px;}
.ls15_c02102{letter-spacing:0.181944px;}
.ls13_c02102{letter-spacing:114.120000px;}
.ls30_c02102{letter-spacing:145.621800px;}
.ls2f_c02102{letter-spacing:154.887156px;}
.ls18_c02102{letter-spacing:156.778200px;}
.ls17_c02102{letter-spacing:199.260000px;}
.ls16_c02102{letter-spacing:200.790000px;}
.sc__c02102{text-shadow:none;}
.sc0_c02102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02102{-webkit-text-stroke:0px transparent;}
.sc0_c02102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02102{word-spacing:-16.628112px;}
.ws2_c02102{word-spacing:-16.476588px;}
.ws14_c02102{word-spacing:-0.272916px;}
.ws1d_c02102{word-spacing:-0.253764px;}
.ws1f_c02102{word-spacing:-0.229824px;}
.ws18_c02102{word-spacing:-0.225036px;}
.ws17_c02102{word-spacing:-0.215460px;}
.ws10_c02102{word-spacing:-0.210672px;}
.ws1e_c02102{word-spacing:-0.205884px;}
.ws11_c02102{word-spacing:-0.194400px;}
.ws7_c02102{word-spacing:-0.186732px;}
.ws19_c02102{word-spacing:-0.172368px;}
.ws1b_c02102{word-spacing:-0.119700px;}
.ws1a_c02102{word-spacing:-0.110124px;}
.ws15_c02102{word-spacing:-0.081396px;}
.ws1c_c02102{word-spacing:-0.028800px;}
.ws12_c02102{word-spacing:-0.007200px;}
.ws4_c02102{word-spacing:0.000000px;}
.ws13_c02102{word-spacing:0.008424px;}
.ws5_c02102{word-spacing:0.013176px;}
.ws3_c02102{word-spacing:0.014400px;}
.ws20_c02102{word-spacing:0.019764px;}
.ws6_c02102{word-spacing:0.072468px;}
.ws8_c02102{word-spacing:0.108000px;}
.ws9_c02102{word-spacing:0.124200px;}
.wsa_c02102{word-spacing:0.129600px;}
.wsd_c02102{word-spacing:1.235304px;}
.wsf_c02102{word-spacing:1.273608px;}
.wse_c02102{word-spacing:1.307124px;}
.wsb_c02102{word-spacing:5.941908px;}
.wsc_c02102{word-spacing:5.961060px;}
.ws1_c02102{word-spacing:58.969440px;}
.ws16_c02102{word-spacing:199.216800px;}
._2d_c02102{margin-left:-43.243200px;}
._2e_c02102{margin-left:-42.076800px;}
._1_c02102{margin-left:-1.416420px;}
._b_c02102{width:1.232820px;}
._23_c02102{width:42.845688px;}
._16_c02102{width:50.937552px;}
._1b_c02102{width:61.693200px;}
._13_c02102{width:75.124440px;}
._1a_c02102{width:77.544000px;}
._14_c02102{width:80.164692px;}
._19_c02102{width:82.980000px;}
._1d_c02102{width:84.355560px;}
._d_c02102{width:85.554000px;}
._c_c02102{width:88.221600px;}
._27_c02102{width:91.288440px;}
._20_c02102{width:98.460000px;}
._15_c02102{width:100.015200px;}
._17_c02102{width:104.575140px;}
._2b_c02102{width:106.059420px;}
._2c_c02102{width:115.918200px;}
._25_c02102{width:118.018944px;}
._18_c02102{width:119.044296px;}
._2f_c02102{width:121.065300px;}
._e_c02102{width:122.220000px;}
._12_c02102{width:126.707688px;}
._f_c02102{width:127.980000px;}
._1c_c02102{width:129.352860px;}
._11_c02102{width:132.631524px;}
._29_c02102{width:134.074296px;}
._24_c02102{width:136.200168px;}
._10_c02102{width:139.258944px;}
._21_c02102{width:149.146920px;}
._1e_c02102{width:152.642160px;}
._26_c02102{width:153.871524px;}
._1f_c02102{width:156.780000px;}
._2a_c02102{width:171.066384px;}
._0_c02102{width:194.400000px;}
._22_c02102{width:198.864000px;}
._a_c02102{width:203.036400px;}
._5_c02102{width:216.180000px;}
._28_c02102{width:225.444168px;}
._3_c02102{width:283.500000px;}
._6_c02102{width:310.104000px;}
._4_c02102{width:347.693400px;}
._8_c02102{width:353.833200px;}
._7_c02102{width:419.929200px;}
._2_c02102{width:431.488440px;}
._9_c02102{width:605.295000px;}
.fc0_c02102{color:rgb(0,0,0);}
.fs6_c02102{font-size:11.880000px;}
.fs4_c02102{font-size:42.120000px;}
.fs2_c02102{font-size:47.880000px;}
.fs3_c02102{font-size:54.000000px;}
.fs5_c02102{font-size:60.120000px;}
.fs1_c02102{font-size:65.880000px;}
.fs0_c02102{font-size:72.000000px;}
.y0_c02102{bottom:0.000000px;}
.y3_c02102{bottom:57.360450px;}
.y2_c02102{bottom:78.060450px;}
.y53_c02102{bottom:124.770450px;}
.y52_c02102{bottom:140.340000px;}
.y51_c02102{bottom:155.820450px;}
.y50_c02102{bottom:170.940099px;}
.y4f_c02102{bottom:184.800162px;}
.y4e_c02102{bottom:198.570450px;}
.y4d_c02102{bottom:219.720450px;}
.y4c_c02102{bottom:240.150450px;}
.y4b_c02102{bottom:260.670450px;}
.y4a_c02102{bottom:281.100450px;}
.y49_c02102{bottom:301.620450px;}
.y46_c02102{bottom:318.990450px;}
.y48_c02102{bottom:319.620450px;}
.y47_c02102{bottom:336.990450px;}
.y45_c02102{bottom:353.910450px;}
.y44_c02102{bottom:372.180150px;}
.y43_c02102{bottom:387.660600px;}
.y42_c02102{bottom:403.230150px;}
.y41_c02102{bottom:418.710600px;}
.y40_c02102{bottom:434.280450px;}
.y3f_c02102{bottom:438.060900px;}
.y3e_c02102{bottom:453.180600px;}
.y3d_c02102{bottom:457.050000px;}
.y3c_c02102{bottom:472.170450px;}
.y3b_c02102{bottom:476.040150px;}
.y3a_c02102{bottom:491.160450px;}
.y39_c02102{bottom:495.030150px;}
.y38_c02102{bottom:510.150450px;}
.y37_c02102{bottom:513.930600px;}
.y36_c02102{bottom:532.920450px;}
.y35_c02102{bottom:548.130450px;}
.y34_c02102{bottom:553.620900px;}
.y33_c02102{bottom:568.740450px;}
.y32_c02102{bottom:574.320450px;}
.y31_c02102{bottom:593.310450px;}
.y30_c02102{bottom:608.430450px;}
.y2f_c02102{bottom:614.010450px;}
.y2e_c02102{bottom:633.000450px;}
.y2c_c02102{bottom:648.120450px;}
.y2d_c02102{bottom:648.480450px;}
.y2b_c02102{bottom:653.700000px;}
.y29_c02102{bottom:668.820450px;}
.y2a_c02102{bottom:669.180450px;}
.y28_c02102{bottom:674.400000px;}
.y27_c02102{bottom:689.520450px;}
.y26_c02102{bottom:689.880450px;}
.y25_c02102{bottom:711.300450px;}
.y24_c02102{bottom:729.570450px;}
.y23_c02102{bottom:746.940450px;}
.y22_c02102{bottom:767.730450px;}
.y21_c02102{bottom:776.550450px;}
.y20_c02102{bottom:780.330900px;}
.y1f_c02102{bottom:795.450450px;}
.y1e_c02102{bottom:799.320000px;}
.y1d_c02102{bottom:814.440450px;}
.y1c_c02102{bottom:818.310000px;}
.y1b_c02102{bottom:833.430600px;}
.y1a_c02102{bottom:837.300000px;}
.y19_c02102{bottom:852.420450px;}
.y18_c02102{bottom:856.200450px;}
.y17_c02102{bottom:875.190450px;}
.y15_c02102{bottom:890.400450px;}
.y16_c02102{bottom:890.760450px;}
.y14_c02102{bottom:895.890450px;}
.y13_c02102{bottom:912.090450px;}
.y12_c02102{bottom:930.450450px;}
.y11_c02102{bottom:947.820450px;}
.y10_c02102{bottom:967.890450px;}
.yf_c02102{bottom:983.280099px;}
.ye_c02102{bottom:997.140162px;}
.yd_c02102{bottom:1010.910450px;}
.yc_c02102{bottom:1027.110450px;}
.yb_c02102{bottom:1042.590450px;}
.ya_c02102{bottom:1058.160450px;}
.y9_c02102{bottom:1073.640450px;}
.y8_c02102{bottom:1089.210450px;}
.y5_c02102{bottom:1106.580450px;}
.y7_c02102{bottom:1107.210450px;}
.y6_c02102{bottom:1124.580450px;}
.y4_c02102{bottom:1141.500450px;}
.y1_c02102{bottom:1193.160450px;}
.hd_c02102{height:10.551621px;}
.h5_c02102{height:42.011895px;}
.h4_c02102{height:43.091895px;}
.h6_c02102{height:47.381836px;}
.h8_c02102{height:47.961914px;}
.h7_c02102{height:48.461836px;}
.h3_c02102{height:58.513535px;}
.h9_c02102{height:62.473535px;}
.hc_c02102{height:62.474135px;}
.ha_c02102{height:62.832935px;}
.hb_c02102{height:62.833535px;}
.he_c02102{height:62.834135px;}
.h2_c02102{height:63.175781px;}
.h1_c02102{height:63.949219px;}
.h0_c02102{height:1263.000000px;}
.w1_c02102{width:892.500000px;}
.w0_c02102{width:892.830000px;}
.x0_c02102{left:0.000000px;}
.x1_c02102{left:127.620000px;}
.x3_c02102{left:134.550000px;}
.x6_c02102{left:135.630000px;}
.x7_c02102{left:143.730000px;}
.x8_c02102{left:150.120000px;}
.xb_c02102{left:164.700000px;}
.x9_c02102{left:220.680000px;}
.x4_c02102{left:332.100000px;}
.x5_c02102{left:354.780000px;}
.x2_c02102{left:437.580000px;}
.xa_c02102{left:555.299550px;}
@media print{
.v6_c02102{vertical-align:-13.440000pt;}
.v9_c02102{vertical-align:-12.160000pt;}
.v7_c02102{vertical-align:-11.199467pt;}
.v8_c02102{vertical-align:-9.920000pt;}
.vb_c02102{vertical-align:-8.000000pt;}
.v3_c02102{vertical-align:-3.520000pt;}
.va_c02102{vertical-align:-2.560000pt;}
.v2_c02102{vertical-align:-1.600000pt;}
.v0_c02102{vertical-align:0.000000pt;}
.v1_c02102{vertical-align:0.960000pt;}
.v4_c02102{vertical-align:2.240000pt;}
.v5_c02102{vertical-align:3.520000pt;}
.ls26_c02102{letter-spacing:-0.158400pt;}
.ls2d_c02102{letter-spacing:-0.086112pt;}
.ls2c_c02102{letter-spacing:-0.076608pt;}
.ls29_c02102{letter-spacing:-0.038400pt;}
.ls25_c02102{letter-spacing:-0.017024pt;}
.ls23_c02102{letter-spacing:-0.012800pt;}
.ls2a_c02102{letter-spacing:-0.009600pt;}
.ls27_c02102{letter-spacing:-0.008512pt;}
.ls2e_c02102{letter-spacing:-0.004256pt;}
.ls24_c02102{letter-spacing:0.000000pt;}
.ls22_c02102{letter-spacing:0.005856pt;}
.ls1d_c02102{letter-spacing:0.006400pt;}
.lsf_c02102{letter-spacing:0.009600pt;}
.lse_c02102{letter-spacing:0.012800pt;}
.ls1b_c02102{letter-spacing:0.017024pt;}
.ls1_c02102{letter-spacing:0.017568pt;}
.ls10_c02102{letter-spacing:0.025536pt;}
.ls1c_c02102{letter-spacing:0.025600pt;}
.ls11_c02102{letter-spacing:0.028800pt;}
.ls8_c02102{letter-spacing:0.033600pt;}
.lsc_c02102{letter-spacing:0.038304pt;}
.ls5_c02102{letter-spacing:0.038400pt;}
.ls7_c02102{letter-spacing:0.043200pt;}
.ls1f_c02102{letter-spacing:0.046816pt;}
.ls6_c02102{letter-spacing:0.048000pt;}
.lsa_c02102{letter-spacing:0.059584pt;}
.ls4_c02102{letter-spacing:0.062400pt;}
.ls21_c02102{letter-spacing:0.064416pt;}
.ls2_c02102{letter-spacing:0.068096pt;}
.ls0_c02102{letter-spacing:0.070272pt;}
.ls14_c02102{letter-spacing:0.072352pt;}
.ls9_c02102{letter-spacing:0.076608pt;}
.ls3_c02102{letter-spacing:0.085120pt;}
.lsb_c02102{letter-spacing:0.102144pt;}
.lsd_c02102{letter-spacing:0.106400pt;}
.ls19_c02102{letter-spacing:0.110656pt;}
.ls1a_c02102{letter-spacing:0.119168pt;}
.ls20_c02102{letter-spacing:0.123424pt;}
.ls28_c02102{letter-spacing:0.134400pt;}
.ls12_c02102{letter-spacing:0.140544pt;}
.ls1e_c02102{letter-spacing:0.144704pt;}
.ls2b_c02102{letter-spacing:0.148960pt;}
.ls15_c02102{letter-spacing:0.161728pt;}
.ls13_c02102{letter-spacing:101.440000pt;}
.ls30_c02102{letter-spacing:129.441600pt;}
.ls2f_c02102{letter-spacing:137.677472pt;}
.ls18_c02102{letter-spacing:139.358400pt;}
.ls17_c02102{letter-spacing:177.120000pt;}
.ls16_c02102{letter-spacing:178.480000pt;}
.ws0_c02102{word-spacing:-14.780544pt;}
.ws2_c02102{word-spacing:-14.645856pt;}
.ws14_c02102{word-spacing:-0.242592pt;}
.ws1d_c02102{word-spacing:-0.225568pt;}
.ws1f_c02102{word-spacing:-0.204288pt;}
.ws18_c02102{word-spacing:-0.200032pt;}
.ws17_c02102{word-spacing:-0.191520pt;}
.ws10_c02102{word-spacing:-0.187264pt;}
.ws1e_c02102{word-spacing:-0.183008pt;}
.ws11_c02102{word-spacing:-0.172800pt;}
.ws7_c02102{word-spacing:-0.165984pt;}
.ws19_c02102{word-spacing:-0.153216pt;}
.ws1b_c02102{word-spacing:-0.106400pt;}
.ws1a_c02102{word-spacing:-0.097888pt;}
.ws15_c02102{word-spacing:-0.072352pt;}
.ws1c_c02102{word-spacing:-0.025600pt;}
.ws12_c02102{word-spacing:-0.006400pt;}
.ws4_c02102{word-spacing:0.000000pt;}
.ws13_c02102{word-spacing:0.007488pt;}
.ws5_c02102{word-spacing:0.011712pt;}
.ws3_c02102{word-spacing:0.012800pt;}
.ws20_c02102{word-spacing:0.017568pt;}
.ws6_c02102{word-spacing:0.064416pt;}
.ws8_c02102{word-spacing:0.096000pt;}
.ws9_c02102{word-spacing:0.110400pt;}
.wsa_c02102{word-spacing:0.115200pt;}
.wsd_c02102{word-spacing:1.098048pt;}
.wsf_c02102{word-spacing:1.132096pt;}
.wse_c02102{word-spacing:1.161888pt;}
.wsb_c02102{word-spacing:5.281696pt;}
.wsc_c02102{word-spacing:5.298720pt;}
.ws1_c02102{word-spacing:52.417280pt;}
.ws16_c02102{word-spacing:177.081600pt;}
._2d_c02102{margin-left:-38.438400pt;}
._2e_c02102{margin-left:-37.401600pt;}
._1_c02102{margin-left:-1.259040pt;}
._b_c02102{width:1.095840pt;}
._23_c02102{width:38.085056pt;}
._16_c02102{width:45.277824pt;}
._1b_c02102{width:54.838400pt;}
._13_c02102{width:66.777280pt;}
._1a_c02102{width:68.928000pt;}
._14_c02102{width:71.257504pt;}
._19_c02102{width:73.760000pt;}
._1d_c02102{width:74.982720pt;}
._d_c02102{width:76.048000pt;}
._c_c02102{width:78.419200pt;}
._27_c02102{width:81.145280pt;}
._20_c02102{width:87.520000pt;}
._15_c02102{width:88.902400pt;}
._17_c02102{width:92.955680pt;}
._2b_c02102{width:94.275040pt;}
._2c_c02102{width:103.038400pt;}
._25_c02102{width:104.905728pt;}
._18_c02102{width:105.817152pt;}
._2f_c02102{width:107.613600pt;}
._e_c02102{width:108.640000pt;}
._12_c02102{width:112.629056pt;}
._f_c02102{width:113.760000pt;}
._1c_c02102{width:114.980320pt;}
._11_c02102{width:117.894688pt;}
._29_c02102{width:119.177152pt;}
._24_c02102{width:121.066816pt;}
._10_c02102{width:123.785728pt;}
._21_c02102{width:132.575040pt;}
._1e_c02102{width:135.681920pt;}
._26_c02102{width:136.774688pt;}
._1f_c02102{width:139.360000pt;}
._2a_c02102{width:152.059008pt;}
._0_c02102{width:172.800000pt;}
._22_c02102{width:176.768000pt;}
._a_c02102{width:180.476800pt;}
._5_c02102{width:192.160000pt;}
._28_c02102{width:200.394816pt;}
._3_c02102{width:252.000000pt;}
._6_c02102{width:275.648000pt;}
._4_c02102{width:309.060800pt;}
._8_c02102{width:314.518400pt;}
._7_c02102{width:373.270400pt;}
._2_c02102{width:383.545280pt;}
._9_c02102{width:538.040000pt;}
.fs6_c02102{font-size:10.560000pt;}
.fs4_c02102{font-size:37.440000pt;}
.fs2_c02102{font-size:42.560000pt;}
.fs3_c02102{font-size:48.000000pt;}
.fs5_c02102{font-size:53.440000pt;}
.fs1_c02102{font-size:58.560000pt;}
.fs0_c02102{font-size:64.000000pt;}
.y0_c02102{bottom:0.000000pt;}
.y3_c02102{bottom:50.987067pt;}
.y2_c02102{bottom:69.387067pt;}
.y53_c02102{bottom:110.907067pt;}
.y52_c02102{bottom:124.746667pt;}
.y51_c02102{bottom:138.507067pt;}
.y50_c02102{bottom:151.946755pt;}
.y4f_c02102{bottom:164.266811pt;}
.y4e_c02102{bottom:176.507067pt;}
.y4d_c02102{bottom:195.307067pt;}
.y4c_c02102{bottom:213.467067pt;}
.y4b_c02102{bottom:231.707067pt;}
.y4a_c02102{bottom:249.867067pt;}
.y49_c02102{bottom:268.107067pt;}
.y46_c02102{bottom:283.547067pt;}
.y48_c02102{bottom:284.107067pt;}
.y47_c02102{bottom:299.547067pt;}
.y45_c02102{bottom:314.587067pt;}
.y44_c02102{bottom:330.826800pt;}
.y43_c02102{bottom:344.587200pt;}
.y42_c02102{bottom:358.426800pt;}
.y41_c02102{bottom:372.187200pt;}
.y40_c02102{bottom:386.027067pt;}
.y3f_c02102{bottom:389.387467pt;}
.y3e_c02102{bottom:402.827200pt;}
.y3d_c02102{bottom:406.266667pt;}
.y3c_c02102{bottom:419.707067pt;}
.y3b_c02102{bottom:423.146800pt;}
.y3a_c02102{bottom:436.587067pt;}
.y39_c02102{bottom:440.026800pt;}
.y38_c02102{bottom:453.467067pt;}
.y37_c02102{bottom:456.827200pt;}
.y36_c02102{bottom:473.707067pt;}
.y35_c02102{bottom:487.227067pt;}
.y34_c02102{bottom:492.107467pt;}
.y33_c02102{bottom:505.547067pt;}
.y32_c02102{bottom:510.507067pt;}
.y31_c02102{bottom:527.387067pt;}
.y30_c02102{bottom:540.827067pt;}
.y2f_c02102{bottom:545.787067pt;}
.y2e_c02102{bottom:562.667067pt;}
.y2c_c02102{bottom:576.107067pt;}
.y2d_c02102{bottom:576.427067pt;}
.y2b_c02102{bottom:581.066667pt;}
.y29_c02102{bottom:594.507067pt;}
.y2a_c02102{bottom:594.827067pt;}
.y28_c02102{bottom:599.466667pt;}
.y27_c02102{bottom:612.907067pt;}
.y26_c02102{bottom:613.227067pt;}
.y25_c02102{bottom:632.267067pt;}
.y24_c02102{bottom:648.507067pt;}
.y23_c02102{bottom:663.947067pt;}
.y22_c02102{bottom:682.427067pt;}
.y21_c02102{bottom:690.267067pt;}
.y20_c02102{bottom:693.627467pt;}
.y1f_c02102{bottom:707.067067pt;}
.y1e_c02102{bottom:710.506667pt;}
.y1d_c02102{bottom:723.947067pt;}
.y1c_c02102{bottom:727.386667pt;}
.y1b_c02102{bottom:740.827200pt;}
.y1a_c02102{bottom:744.266667pt;}
.y19_c02102{bottom:757.707067pt;}
.y18_c02102{bottom:761.067067pt;}
.y17_c02102{bottom:777.947067pt;}
.y15_c02102{bottom:791.467067pt;}
.y16_c02102{bottom:791.787067pt;}
.y14_c02102{bottom:796.347067pt;}
.y13_c02102{bottom:810.747067pt;}
.y12_c02102{bottom:827.067067pt;}
.y11_c02102{bottom:842.507067pt;}
.y10_c02102{bottom:860.347067pt;}
.yf_c02102{bottom:874.026755pt;}
.ye_c02102{bottom:886.346811pt;}
.yd_c02102{bottom:898.587067pt;}
.yc_c02102{bottom:912.987067pt;}
.yb_c02102{bottom:926.747067pt;}
.ya_c02102{bottom:940.587067pt;}
.y9_c02102{bottom:954.347067pt;}
.y8_c02102{bottom:968.187067pt;}
.y5_c02102{bottom:983.627067pt;}
.y7_c02102{bottom:984.187067pt;}
.y6_c02102{bottom:999.627067pt;}
.y4_c02102{bottom:1014.667067pt;}
.y1_c02102{bottom:1060.587067pt;}
.hd_c02102{height:9.379219pt;}
.h5_c02102{height:37.343906pt;}
.h4_c02102{height:38.303906pt;}
.h6_c02102{height:42.117188pt;}
.h8_c02102{height:42.632812pt;}
.h7_c02102{height:43.077187pt;}
.h3_c02102{height:52.012031pt;}
.h9_c02102{height:55.532031pt;}
.hc_c02102{height:55.532565pt;}
.ha_c02102{height:55.851498pt;}
.hb_c02102{height:55.852031pt;}
.he_c02102{height:55.852565pt;}
.h2_c02102{height:56.156250pt;}
.h1_c02102{height:56.843750pt;}
.h0_c02102{height:1122.666667pt;}
.w1_c02102{width:793.333333pt;}
.w0_c02102{width:793.626667pt;}
.x0_c02102{left:0.000000pt;}
.x1_c02102{left:113.440000pt;}
.x3_c02102{left:119.600000pt;}
.x6_c02102{left:120.560000pt;}
.x7_c02102{left:127.760000pt;}
.x8_c02102{left:133.440000pt;}
.xb_c02102{left:146.400000pt;}
.x9_c02102{left:196.160000pt;}
.x4_c02102{left:295.200000pt;}
.x5_c02102{left:315.360000pt;}
.x2_c02102{left:388.960000pt;}
.xa_c02102{left:493.599600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e92bb783d3dbacdb35e3a44.woff2')format("woff");}.ff1_c02103{font-family:ff1_c02103;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02103;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.v2_c02103{vertical-align:-4.320000px;}
.v4_c02103{vertical-align:-2.880000px;}
.v5_c02103{vertical-align:-1.800000px;}
.v0_c02103{vertical-align:0.000000px;}
.v3_c02103{vertical-align:1.080000px;}
.v6_c02103{vertical-align:2.520000px;}
.v7_c02103{vertical-align:4.320000px;}
.v1_c02103{vertical-align:5.400000px;}
.ls31_c02103{letter-spacing:-0.178200px;}
.ls2c_c02103{letter-spacing:-0.096876px;}
.ls2b_c02103{letter-spacing:-0.086184px;}
.ls27_c02103{letter-spacing:-0.043200px;}
.ls29_c02103{letter-spacing:-0.019152px;}
.ls24_c02103{letter-spacing:-0.014400px;}
.ls28_c02103{letter-spacing:-0.010800px;}
.ls2f_c02103{letter-spacing:-0.009576px;}
.ls30_c02103{letter-spacing:-0.004788px;}
.ls25_c02103{letter-spacing:0.000000px;}
.ls1_c02103{letter-spacing:0.010800px;}
.ls13_c02103{letter-spacing:0.014400px;}
.ls17_c02103{letter-spacing:0.019152px;}
.ls0_c02103{letter-spacing:0.021600px;}
.ls3_c02103{letter-spacing:0.028728px;}
.ls4_c02103{letter-spacing:0.032400px;}
.lsa_c02103{letter-spacing:0.037800px;}
.ls2_c02103{letter-spacing:0.043092px;}
.ls9_c02103{letter-spacing:0.043200px;}
.ls19_c02103{letter-spacing:0.046116px;}
.ls1d_c02103{letter-spacing:0.048600px;}
.ls10_c02103{letter-spacing:0.052668px;}
.ls18_c02103{letter-spacing:0.052704px;}
.ls1b_c02103{letter-spacing:0.054000px;}
.ls1f_c02103{letter-spacing:0.067032px;}
.ls1c_c02103{letter-spacing:0.070200px;}
.ls7_c02103{letter-spacing:0.076608px;}
.lsf_c02103{letter-spacing:0.081396px;}
.ls1e_c02103{letter-spacing:0.086184px;}
.ls1a_c02103{letter-spacing:0.095760px;}
.ls11_c02103{letter-spacing:0.114912px;}
.ls15_c02103{letter-spacing:0.124488px;}
.ls16_c02103{letter-spacing:0.134064px;}
.ls12_c02103{letter-spacing:0.138852px;}
.ls26_c02103{letter-spacing:0.151200px;}
.ls5_c02103{letter-spacing:0.158112px;}
.lse_c02103{letter-spacing:0.162792px;}
.ls2a_c02103{letter-spacing:0.167580px;}
.ls2d_c02103{letter-spacing:0.178200px;}
.ls8_c02103{letter-spacing:0.181944px;}
.ls14_c02103{letter-spacing:82.440000px;}
.ls20_c02103{letter-spacing:112.320000px;}
.ls6_c02103{letter-spacing:114.480000px;}
.ls32_c02103{letter-spacing:143.818200px;}
.ls2e_c02103{letter-spacing:145.978200px;}
.ls23_c02103{letter-spacing:147.781800px;}
.lsd_c02103{letter-spacing:156.778200px;}
.ls21_c02103{letter-spacing:191.790000px;}
.lsc_c02103{letter-spacing:199.260000px;}
.ls22_c02103{letter-spacing:199.978200px;}
.lsb_c02103{letter-spacing:200.790000px;}
.sc__c02103{text-shadow:none;}
.sc0_c02103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02103{-webkit-text-stroke:0px transparent;}
.sc0_c02103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02103{word-spacing:-16.628112px;}
.ws4_c02103{word-spacing:-16.516116px;}
.wsb_c02103{word-spacing:-0.272916px;}
.wsd_c02103{word-spacing:-0.253764px;}
.ws12_c02103{word-spacing:-0.229824px;}
.ws17_c02103{word-spacing:-0.225036px;}
.ws16_c02103{word-spacing:-0.215460px;}
.ws11_c02103{word-spacing:-0.205884px;}
.ws1b_c02103{word-spacing:-0.186732px;}
.ws18_c02103{word-spacing:-0.172368px;}
.ws10_c02103{word-spacing:-0.119700px;}
.ws19_c02103{word-spacing:-0.110124px;}
.wse_c02103{word-spacing:-0.081396px;}
.ws9_c02103{word-spacing:-0.021600px;}
.ws13_c02103{word-spacing:-0.014400px;}
.ws8_c02103{word-spacing:0.000000px;}
.wsa_c02103{word-spacing:0.008424px;}
.ws7_c02103{word-spacing:0.014400px;}
.ws1a_c02103{word-spacing:0.039528px;}
.ws1d_c02103{word-spacing:0.108000px;}
.ws1c_c02103{word-spacing:0.124200px;}
.ws1e_c02103{word-spacing:0.129600px;}
.ws21_c02103{word-spacing:1.235304px;}
.ws23_c02103{word-spacing:1.273608px;}
.ws22_c02103{word-spacing:1.307124px;}
.ws1f_c02103{word-spacing:5.941908px;}
.ws20_c02103{word-spacing:5.961060px;}
.ws6_c02103{word-spacing:48.169440px;}
.ws1_c02103{word-spacing:58.969440px;}
.ws5_c02103{word-spacing:75.169440px;}
.ws3_c02103{word-spacing:99.289440px;}
.ws2_c02103{word-spacing:126.289440px;}
.wsf_c02103{word-spacing:156.735000px;}
.ws15_c02103{word-spacing:199.216800px;}
.ws14_c02103{word-spacing:199.260000px;}
.ws24_c02103{word-spacing:219.375000px;}
.ws25_c02103{word-spacing:219.380400px;}
.wsc_c02103{word-spacing:241.336800px;}
._45_c02103{margin-left:-71.636400px;}
._46_c02103{margin-left:-68.396400px;}
._43_c02103{margin-left:-65.514600px;}
._2b_c02103{margin-left:-43.540236px;}
._2c_c02103{margin-left:-42.481800px;}
._44_c02103{margin-left:-19.440000px;}
._27_c02103{margin-left:-1.075356px;}
._20_c02103{width:1.103040px;}
._3d_c02103{width:3.240000px;}
._47_c02103{width:32.810400px;}
._1c_c02103{width:43.041564px;}
._d_c02103{width:50.577552px;}
._3f_c02103{width:51.660000px;}
._3b_c02103{width:59.533200px;}
._12_c02103{width:62.053200px;}
._10_c02103{width:65.340000px;}
._3c_c02103{width:70.124436px;}
._9_c02103{width:73.324440px;}
._a_c02103{width:75.482964px;}
._13_c02103{width:77.544000px;}
._21_c02103{width:79.886700px;}
._15_c02103{width:83.637036px;}
._2_c02103{width:85.194000px;}
._b_c02103{width:87.278400px;}
._1_c02103{width:88.581600px;}
._e_c02103{width:91.288440px;}
._1a_c02103{width:92.664000px;}
._19_c02103{width:94.564296px;}
._40_c02103{width:95.575140px;}
._1f_c02103{width:96.585300px;}
._3a_c02103{width:97.750800px;}
._c_c02103{width:100.598400px;}
._1e_c02103{width:102.718728px;}
._18_c02103{width:104.331204px;}
._1d_c02103{width:105.815484px;}
._42_c02103{width:107.386920px;}
._22_c02103{width:108.518400px;}
._16_c02103{width:109.594296px;}
._41_c02103{width:110.882160px;}
._6_c02103{width:114.216120px;}
._4_c02103{width:115.740000px;}
._5_c02103{width:118.378944px;}
._11_c02103{width:119.664000px;}
._37_c02103{width:120.988764px;}
._3_c02103{width:122.220000px;}
._38_c02103{width:124.695900px;}
._1b_c02103{width:128.162160px;}
._14_c02103{width:129.373200px;}
._2a_c02103{width:132.915600px;}
._24_c02103{width:134.074296px;}
._29_c02103{width:136.200168px;}
._28_c02103{width:138.978684px;}
._3e_c02103{width:143.820000px;}
._17_c02103{width:146.586384px;}
._8_c02103{width:148.307688px;}
._2d_c02103{width:149.788512px;}
._7_c02103{width:152.515404px;}
._26_c02103{width:156.780000px;}
._25_c02103{width:171.066384px;}
._39_c02103{width:183.055572px;}
._0_c02103{width:194.400000px;}
._f_c02103{width:200.964168px;}
._36_c02103{width:203.036400px;}
._31_c02103{width:216.180000px;}
._23_c02103{width:225.804168px;}
._2f_c02103{width:283.500000px;}
._32_c02103{width:310.104000px;}
._33_c02103{width:347.693400px;}
._34_c02103{width:353.833200px;}
._30_c02103{width:419.929200px;}
._2e_c02103{width:431.488440px;}
._35_c02103{width:605.295000px;}
.fc0_c02103{color:rgb(0,0,0);}
.fs5_c02103{font-size:11.880000px;}
.fs3_c02103{font-size:42.120000px;}
.fs2_c02103{font-size:47.880000px;}
.fs1_c02103{font-size:54.000000px;}
.fs4_c02103{font-size:65.880000px;}
.fs0_c02103{font-size:72.000000px;}
.y0_c02103{bottom:0.000000px;}
.y3_c02103{bottom:57.360450px;}
.y2_c02103{bottom:78.060450px;}
.y5f_c02103{bottom:120.360900px;}
.y5e_c02103{bottom:135.930450px;}
.y5d_c02103{bottom:151.410450px;}
.y5c_c02103{bottom:151.860450px;}
.y5b_c02103{bottom:170.400450px;}
.y5a_c02103{bottom:170.760000px;}
.y59_c02103{bottom:189.390450px;}
.y58_c02103{bottom:189.750000px;}
.y57_c02103{bottom:208.380450px;}
.y56_c02103{bottom:208.740000px;}
.y55_c02103{bottom:227.370600px;}
.y54_c02103{bottom:227.730450px;}
.y53_c02103{bottom:246.720450px;}
.y52_c02103{bottom:265.260450px;}
.y51_c02103{bottom:265.620450px;}
.y50_c02103{bottom:286.320450px;}
.y4e_c02103{bottom:304.950450px;}
.y4f_c02103{bottom:305.310450px;}
.y4d_c02103{bottom:305.310900px;}
.y4b_c02103{bottom:325.650450px;}
.y4c_c02103{bottom:326.010450px;}
.y4a_c02103{bottom:326.010900px;}
.y48_c02103{bottom:346.350450px;}
.y49_c02103{bottom:346.710450px;}
.y47_c02103{bottom:346.710600px;}
.y46_c02103{bottom:368.130450px;}
.y45_c02103{bottom:386.400450px;}
.y44_c02103{bottom:403.770600px;}
.y43_c02103{bottom:424.200150px;}
.y42_c02103{bottom:439.680600px;}
.y41_c02103{bottom:454.800249px;}
.y40_c02103{bottom:468.660312px;}
.y3f_c02103{bottom:482.430600px;}
.y3e_c02103{bottom:498.630450px;}
.y3d_c02103{bottom:514.110600px;}
.y3c_c02103{bottom:529.680450px;}
.y3b_c02103{bottom:545.160450px;}
.y3a_c02103{bottom:560.730450px;}
.y37_c02103{bottom:578.100450px;}
.y39_c02103{bottom:578.730450px;}
.y38_c02103{bottom:596.100450px;}
.y36_c02103{bottom:613.020450px;}
.y35_c02103{bottom:631.290000px;}
.y34_c02103{bottom:646.770450px;}
.y32_c02103{bottom:662.340450px;}
.y31_c02103{bottom:662.700000px;}
.y33_c02103{bottom:662.700450px;}
.y30_c02103{bottom:681.240450px;}
.y2f_c02103{bottom:681.690450px;}
.y2d_c02103{bottom:700.230450px;}
.y2c_c02103{bottom:700.590000px;}
.y2e_c02103{bottom:700.590450px;}
.y2a_c02103{bottom:719.220450px;}
.y29_c02103{bottom:719.580000px;}
.y2b_c02103{bottom:719.580450px;}
.y28_c02103{bottom:738.210450px;}
.y27_c02103{bottom:738.570450px;}
.y26_c02103{bottom:757.560450px;}
.y25_c02103{bottom:776.100450px;}
.y24_c02103{bottom:776.550450px;}
.y23_c02103{bottom:797.250450px;}
.y21_c02103{bottom:815.790600px;}
.y22_c02103{bottom:816.150450px;}
.y20_c02103{bottom:816.150900px;}
.y1e_c02103{bottom:836.490450px;}
.y1f_c02103{bottom:836.850450px;}
.y1d_c02103{bottom:836.850900px;}
.y1c_c02103{bottom:857.190450px;}
.y1b_c02103{bottom:857.550450px;}
.y1a_c02103{bottom:878.970450px;}
.y19_c02103{bottom:897.240450px;}
.y18_c02103{bottom:914.610450px;}
.y17_c02103{bottom:935.400450px;}
.y16_c02103{bottom:944.220450px;}
.y15_c02103{bottom:944.580000px;}
.y14_c02103{bottom:963.210450px;}
.y13_c02103{bottom:963.570450px;}
.y12_c02103{bottom:982.560450px;}
.y11_c02103{bottom:1001.100450px;}
.y10_c02103{bottom:1001.460450px;}
.yf_c02103{bottom:1022.160450px;}
.yd_c02103{bottom:1040.790450px;}
.ye_c02103{bottom:1041.150450px;}
.yc_c02103{bottom:1041.150900px;}
.ya_c02103{bottom:1061.490450px;}
.yb_c02103{bottom:1061.850450px;}
.y9_c02103{bottom:1061.850900px;}
.y8_c02103{bottom:1082.190450px;}
.y7_c02103{bottom:1082.550450px;}
.y6_c02103{bottom:1103.970450px;}
.y5_c02103{bottom:1123.140450px;}
.y4_c02103{bottom:1139.610450px;}
.y1_c02103{bottom:1193.160450px;}
.h9_c02103{height:10.551621px;}
.hd_c02103{height:42.011895px;}
.hc_c02103{height:43.091895px;}
.he_c02103{height:47.381836px;}
.h4_c02103{height:47.961914px;}
.hf_c02103{height:48.461236px;}
.h3_c02103{height:48.461836px;}
.hb_c02103{height:58.513535px;}
.h7_c02103{height:61.033535px;}
.h6_c02103{height:61.393535px;}
.h10_c02103{height:62.472935px;}
.h8_c02103{height:62.473535px;}
.h11_c02103{height:62.474135px;}
.ha_c02103{height:62.832935px;}
.h5_c02103{height:62.833535px;}
.h2_c02103{height:63.175781px;}
.h1_c02103{height:63.949219px;}
.h0_c02103{height:1263.000000px;}
.w1_c02103{width:892.500000px;}
.w0_c02103{width:892.830000px;}
.x0_c02103{left:0.000000px;}
.x1_c02103{left:127.620000px;}
.xb_c02103{left:134.550000px;}
.x3_c02103{left:135.630000px;}
.x8_c02103{left:142.380000px;}
.x4_c02103{left:143.730000px;}
.x9_c02103{left:162.000000px;}
.x5_c02103{left:164.700000px;}
.x6_c02103{left:220.680000px;}
.xc_c02103{left:332.100000px;}
.xd_c02103{left:354.780000px;}
.x2_c02103{left:437.580000px;}
.xe_c02103{left:545.490450px;}
.x7_c02103{left:555.390000px;}
.xa_c02103{left:746.819550px;}
@media print{
.v2_c02103{vertical-align:-3.840000pt;}
.v4_c02103{vertical-align:-2.560000pt;}
.v5_c02103{vertical-align:-1.600000pt;}
.v0_c02103{vertical-align:0.000000pt;}
.v3_c02103{vertical-align:0.960000pt;}
.v6_c02103{vertical-align:2.240000pt;}
.v7_c02103{vertical-align:3.840000pt;}
.v1_c02103{vertical-align:4.800000pt;}
.ls31_c02103{letter-spacing:-0.158400pt;}
.ls2c_c02103{letter-spacing:-0.086112pt;}
.ls2b_c02103{letter-spacing:-0.076608pt;}
.ls27_c02103{letter-spacing:-0.038400pt;}
.ls29_c02103{letter-spacing:-0.017024pt;}
.ls24_c02103{letter-spacing:-0.012800pt;}
.ls28_c02103{letter-spacing:-0.009600pt;}
.ls2f_c02103{letter-spacing:-0.008512pt;}
.ls30_c02103{letter-spacing:-0.004256pt;}
.ls25_c02103{letter-spacing:0.000000pt;}
.ls1_c02103{letter-spacing:0.009600pt;}
.ls13_c02103{letter-spacing:0.012800pt;}
.ls17_c02103{letter-spacing:0.017024pt;}
.ls0_c02103{letter-spacing:0.019200pt;}
.ls3_c02103{letter-spacing:0.025536pt;}
.ls4_c02103{letter-spacing:0.028800pt;}
.lsa_c02103{letter-spacing:0.033600pt;}
.ls2_c02103{letter-spacing:0.038304pt;}
.ls9_c02103{letter-spacing:0.038400pt;}
.ls19_c02103{letter-spacing:0.040992pt;}
.ls1d_c02103{letter-spacing:0.043200pt;}
.ls10_c02103{letter-spacing:0.046816pt;}
.ls18_c02103{letter-spacing:0.046848pt;}
.ls1b_c02103{letter-spacing:0.048000pt;}
.ls1f_c02103{letter-spacing:0.059584pt;}
.ls1c_c02103{letter-spacing:0.062400pt;}
.ls7_c02103{letter-spacing:0.068096pt;}
.lsf_c02103{letter-spacing:0.072352pt;}
.ls1e_c02103{letter-spacing:0.076608pt;}
.ls1a_c02103{letter-spacing:0.085120pt;}
.ls11_c02103{letter-spacing:0.102144pt;}
.ls15_c02103{letter-spacing:0.110656pt;}
.ls16_c02103{letter-spacing:0.119168pt;}
.ls12_c02103{letter-spacing:0.123424pt;}
.ls26_c02103{letter-spacing:0.134400pt;}
.ls5_c02103{letter-spacing:0.140544pt;}
.lse_c02103{letter-spacing:0.144704pt;}
.ls2a_c02103{letter-spacing:0.148960pt;}
.ls2d_c02103{letter-spacing:0.158400pt;}
.ls8_c02103{letter-spacing:0.161728pt;}
.ls14_c02103{letter-spacing:73.280000pt;}
.ls20_c02103{letter-spacing:99.840000pt;}
.ls6_c02103{letter-spacing:101.760000pt;}
.ls32_c02103{letter-spacing:127.838400pt;}
.ls2e_c02103{letter-spacing:129.758400pt;}
.ls23_c02103{letter-spacing:131.361600pt;}
.lsd_c02103{letter-spacing:139.358400pt;}
.ls21_c02103{letter-spacing:170.480000pt;}
.lsc_c02103{letter-spacing:177.120000pt;}
.ls22_c02103{letter-spacing:177.758400pt;}
.lsb_c02103{letter-spacing:178.480000pt;}
.ws0_c02103{word-spacing:-14.780544pt;}
.ws4_c02103{word-spacing:-14.680992pt;}
.wsb_c02103{word-spacing:-0.242592pt;}
.wsd_c02103{word-spacing:-0.225568pt;}
.ws12_c02103{word-spacing:-0.204288pt;}
.ws17_c02103{word-spacing:-0.200032pt;}
.ws16_c02103{word-spacing:-0.191520pt;}
.ws11_c02103{word-spacing:-0.183008pt;}
.ws1b_c02103{word-spacing:-0.165984pt;}
.ws18_c02103{word-spacing:-0.153216pt;}
.ws10_c02103{word-spacing:-0.106400pt;}
.ws19_c02103{word-spacing:-0.097888pt;}
.wse_c02103{word-spacing:-0.072352pt;}
.ws9_c02103{word-spacing:-0.019200pt;}
.ws13_c02103{word-spacing:-0.012800pt;}
.ws8_c02103{word-spacing:0.000000pt;}
.wsa_c02103{word-spacing:0.007488pt;}
.ws7_c02103{word-spacing:0.012800pt;}
.ws1a_c02103{word-spacing:0.035136pt;}
.ws1d_c02103{word-spacing:0.096000pt;}
.ws1c_c02103{word-spacing:0.110400pt;}
.ws1e_c02103{word-spacing:0.115200pt;}
.ws21_c02103{word-spacing:1.098048pt;}
.ws23_c02103{word-spacing:1.132096pt;}
.ws22_c02103{word-spacing:1.161888pt;}
.ws1f_c02103{word-spacing:5.281696pt;}
.ws20_c02103{word-spacing:5.298720pt;}
.ws6_c02103{word-spacing:42.817280pt;}
.ws1_c02103{word-spacing:52.417280pt;}
.ws5_c02103{word-spacing:66.817280pt;}
.ws3_c02103{word-spacing:88.257280pt;}
.ws2_c02103{word-spacing:112.257280pt;}
.wsf_c02103{word-spacing:139.320000pt;}
.ws15_c02103{word-spacing:177.081600pt;}
.ws14_c02103{word-spacing:177.120000pt;}
.ws24_c02103{word-spacing:195.000000pt;}
.ws25_c02103{word-spacing:195.004800pt;}
.wsc_c02103{word-spacing:214.521600pt;}
._45_c02103{margin-left:-63.676800pt;}
._46_c02103{margin-left:-60.796800pt;}
._43_c02103{margin-left:-58.235200pt;}
._2b_c02103{margin-left:-38.702432pt;}
._2c_c02103{margin-left:-37.761600pt;}
._44_c02103{margin-left:-17.280000pt;}
._27_c02103{margin-left:-0.955872pt;}
._20_c02103{width:0.980480pt;}
._3d_c02103{width:2.880000pt;}
._47_c02103{width:29.164800pt;}
._1c_c02103{width:38.259168pt;}
._d_c02103{width:44.957824pt;}
._3f_c02103{width:45.920000pt;}
._3b_c02103{width:52.918400pt;}
._12_c02103{width:55.158400pt;}
._10_c02103{width:58.080000pt;}
._3c_c02103{width:62.332832pt;}
._9_c02103{width:65.177280pt;}
._a_c02103{width:67.095968pt;}
._13_c02103{width:68.928000pt;}
._21_c02103{width:71.010400pt;}
._15_c02103{width:74.344032pt;}
._2_c02103{width:75.728000pt;}
._b_c02103{width:77.580800pt;}
._1_c02103{width:78.739200pt;}
._e_c02103{width:81.145280pt;}
._1a_c02103{width:82.368000pt;}
._19_c02103{width:84.057152pt;}
._40_c02103{width:84.955680pt;}
._1f_c02103{width:85.853600pt;}
._3a_c02103{width:86.889600pt;}
._c_c02103{width:89.420800pt;}
._1e_c02103{width:91.305536pt;}
._18_c02103{width:92.738848pt;}
._1d_c02103{width:94.058208pt;}
._42_c02103{width:95.455040pt;}
._22_c02103{width:96.460800pt;}
._16_c02103{width:97.417152pt;}
._41_c02103{width:98.561920pt;}
._6_c02103{width:101.525440pt;}
._4_c02103{width:102.880000pt;}
._5_c02103{width:105.225728pt;}
._11_c02103{width:106.368000pt;}
._37_c02103{width:107.545568pt;}
._3_c02103{width:108.640000pt;}
._38_c02103{width:110.840800pt;}
._1b_c02103{width:113.921920pt;}
._14_c02103{width:114.998400pt;}
._2a_c02103{width:118.147200pt;}
._24_c02103{width:119.177152pt;}
._29_c02103{width:121.066816pt;}
._28_c02103{width:123.536608pt;}
._3e_c02103{width:127.840000pt;}
._17_c02103{width:130.299008pt;}
._8_c02103{width:131.829056pt;}
._2d_c02103{width:133.145344pt;}
._7_c02103{width:135.569248pt;}
._26_c02103{width:139.360000pt;}
._25_c02103{width:152.059008pt;}
._39_c02103{width:162.716064pt;}
._0_c02103{width:172.800000pt;}
._f_c02103{width:178.634816pt;}
._36_c02103{width:180.476800pt;}
._31_c02103{width:192.160000pt;}
._23_c02103{width:200.714816pt;}
._2f_c02103{width:252.000000pt;}
._32_c02103{width:275.648000pt;}
._33_c02103{width:309.060800pt;}
._34_c02103{width:314.518400pt;}
._30_c02103{width:373.270400pt;}
._2e_c02103{width:383.545280pt;}
._35_c02103{width:538.040000pt;}
.fs5_c02103{font-size:10.560000pt;}
.fs3_c02103{font-size:37.440000pt;}
.fs2_c02103{font-size:42.560000pt;}
.fs1_c02103{font-size:48.000000pt;}
.fs4_c02103{font-size:58.560000pt;}
.fs0_c02103{font-size:64.000000pt;}
.y0_c02103{bottom:0.000000pt;}
.y3_c02103{bottom:50.987067pt;}
.y2_c02103{bottom:69.387067pt;}
.y5f_c02103{bottom:106.987467pt;}
.y5e_c02103{bottom:120.827067pt;}
.y5d_c02103{bottom:134.587067pt;}
.y5c_c02103{bottom:134.987067pt;}
.y5b_c02103{bottom:151.467067pt;}
.y5a_c02103{bottom:151.786667pt;}
.y59_c02103{bottom:168.347067pt;}
.y58_c02103{bottom:168.666667pt;}
.y57_c02103{bottom:185.227067pt;}
.y56_c02103{bottom:185.546667pt;}
.y55_c02103{bottom:202.107200pt;}
.y54_c02103{bottom:202.427067pt;}
.y53_c02103{bottom:219.307067pt;}
.y52_c02103{bottom:235.787067pt;}
.y51_c02103{bottom:236.107067pt;}
.y50_c02103{bottom:254.507067pt;}
.y4e_c02103{bottom:271.067067pt;}
.y4f_c02103{bottom:271.387067pt;}
.y4d_c02103{bottom:271.387467pt;}
.y4b_c02103{bottom:289.467067pt;}
.y4c_c02103{bottom:289.787067pt;}
.y4a_c02103{bottom:289.787467pt;}
.y48_c02103{bottom:307.867067pt;}
.y49_c02103{bottom:308.187067pt;}
.y47_c02103{bottom:308.187200pt;}
.y46_c02103{bottom:327.227067pt;}
.y45_c02103{bottom:343.467067pt;}
.y44_c02103{bottom:358.907200pt;}
.y43_c02103{bottom:377.066800pt;}
.y42_c02103{bottom:390.827200pt;}
.y41_c02103{bottom:404.266888pt;}
.y40_c02103{bottom:416.586944pt;}
.y3f_c02103{bottom:428.827200pt;}
.y3e_c02103{bottom:443.227067pt;}
.y3d_c02103{bottom:456.987200pt;}
.y3c_c02103{bottom:470.827067pt;}
.y3b_c02103{bottom:484.587067pt;}
.y3a_c02103{bottom:498.427067pt;}
.y37_c02103{bottom:513.867067pt;}
.y39_c02103{bottom:514.427067pt;}
.y38_c02103{bottom:529.867067pt;}
.y36_c02103{bottom:544.907067pt;}
.y35_c02103{bottom:561.146667pt;}
.y34_c02103{bottom:574.907067pt;}
.y32_c02103{bottom:588.747067pt;}
.y31_c02103{bottom:589.066667pt;}
.y33_c02103{bottom:589.067067pt;}
.y30_c02103{bottom:605.547067pt;}
.y2f_c02103{bottom:605.947067pt;}
.y2d_c02103{bottom:622.427067pt;}
.y2c_c02103{bottom:622.746667pt;}
.y2e_c02103{bottom:622.747067pt;}
.y2a_c02103{bottom:639.307067pt;}
.y29_c02103{bottom:639.626667pt;}
.y2b_c02103{bottom:639.627067pt;}
.y28_c02103{bottom:656.187067pt;}
.y27_c02103{bottom:656.507067pt;}
.y26_c02103{bottom:673.387067pt;}
.y25_c02103{bottom:689.867067pt;}
.y24_c02103{bottom:690.267067pt;}
.y23_c02103{bottom:708.667067pt;}
.y21_c02103{bottom:725.147200pt;}
.y22_c02103{bottom:725.467067pt;}
.y20_c02103{bottom:725.467467pt;}
.y1e_c02103{bottom:743.547067pt;}
.y1f_c02103{bottom:743.867067pt;}
.y1d_c02103{bottom:743.867467pt;}
.y1c_c02103{bottom:761.947067pt;}
.y1b_c02103{bottom:762.267067pt;}
.y1a_c02103{bottom:781.307067pt;}
.y19_c02103{bottom:797.547067pt;}
.y18_c02103{bottom:812.987067pt;}
.y17_c02103{bottom:831.467067pt;}
.y16_c02103{bottom:839.307067pt;}
.y15_c02103{bottom:839.626667pt;}
.y14_c02103{bottom:856.187067pt;}
.y13_c02103{bottom:856.507067pt;}
.y12_c02103{bottom:873.387067pt;}
.y11_c02103{bottom:889.867067pt;}
.y10_c02103{bottom:890.187067pt;}
.yf_c02103{bottom:908.587067pt;}
.yd_c02103{bottom:925.147067pt;}
.ye_c02103{bottom:925.467067pt;}
.yc_c02103{bottom:925.467467pt;}
.ya_c02103{bottom:943.547067pt;}
.yb_c02103{bottom:943.867067pt;}
.y9_c02103{bottom:943.867467pt;}
.y8_c02103{bottom:961.947067pt;}
.y7_c02103{bottom:962.267067pt;}
.y6_c02103{bottom:981.307067pt;}
.y5_c02103{bottom:998.347067pt;}
.y4_c02103{bottom:1012.987067pt;}
.y1_c02103{bottom:1060.587067pt;}
.h9_c02103{height:9.379219pt;}
.hd_c02103{height:37.343906pt;}
.hc_c02103{height:38.303906pt;}
.he_c02103{height:42.117188pt;}
.h4_c02103{height:42.632812pt;}
.hf_c02103{height:43.076654pt;}
.h3_c02103{height:43.077187pt;}
.hb_c02103{height:52.012031pt;}
.h7_c02103{height:54.252031pt;}
.h6_c02103{height:54.572031pt;}
.h10_c02103{height:55.531498pt;}
.h8_c02103{height:55.532031pt;}
.h11_c02103{height:55.532565pt;}
.ha_c02103{height:55.851498pt;}
.h5_c02103{height:55.852031pt;}
.h2_c02103{height:56.156250pt;}
.h1_c02103{height:56.843750pt;}
.h0_c02103{height:1122.666667pt;}
.w1_c02103{width:793.333333pt;}
.w0_c02103{width:793.626667pt;}
.x0_c02103{left:0.000000pt;}
.x1_c02103{left:113.440000pt;}
.xb_c02103{left:119.600000pt;}
.x3_c02103{left:120.560000pt;}
.x8_c02103{left:126.560000pt;}
.x4_c02103{left:127.760000pt;}
.x9_c02103{left:144.000000pt;}
.x5_c02103{left:146.400000pt;}
.x6_c02103{left:196.160000pt;}
.xc_c02103{left:295.200000pt;}
.xd_c02103{left:315.360000pt;}
.x2_c02103{left:388.960000pt;}
.xe_c02103{left:484.880400pt;}
.x7_c02103{left:493.680000pt;}
.xa_c02103{left:663.839600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_355af481dc2e9c2bce22fc1e.woff2')format("woff");}.ff1_c02104{font-family:ff1_c02104;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02104;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.v5_c02104{vertical-align:-4.319400px;}
.v4_c02104{vertical-align:-2.879400px;}
.v3_c02104{vertical-align:-1.440000px;}
.v0_c02104{vertical-align:0.000000px;}
.v1_c02104{vertical-align:1.080000px;}
.v6_c02104{vertical-align:2.520600px;}
.v7_c02104{vertical-align:4.320000px;}
.v2_c02104{vertical-align:32.040000px;}
.ls25_c02104{letter-spacing:-0.178200px;}
.ls24_c02104{letter-spacing:-0.102600px;}
.ls2d_c02104{letter-spacing:-0.096876px;}
.ls22_c02104{letter-spacing:-0.086400px;}
.ls2c_c02104{letter-spacing:-0.086184px;}
.ls29_c02104{letter-spacing:-0.043200px;}
.ls30_c02104{letter-spacing:-0.021600px;}
.ls21_c02104{letter-spacing:-0.019152px;}
.ls23_c02104{letter-spacing:-0.016200px;}
.ls1f_c02104{letter-spacing:-0.014400px;}
.ls2a_c02104{letter-spacing:-0.010800px;}
.ls26_c02104{letter-spacing:-0.009576px;}
.ls27_c02104{letter-spacing:-0.007200px;}
.ls2f_c02104{letter-spacing:-0.004788px;}
.ls20_c02104{letter-spacing:0.000000px;}
.ls1d_c02104{letter-spacing:0.005400px;}
.ls1_c02104{letter-spacing:0.006588px;}
.ls6_c02104{letter-spacing:0.010800px;}
.ls8_c02104{letter-spacing:0.016200px;}
.ls1b_c02104{letter-spacing:0.019152px;}
.lsf_c02104{letter-spacing:0.021600px;}
.ls7_c02104{letter-spacing:0.027000px;}
.ls10_c02104{letter-spacing:0.028728px;}
.ls4_c02104{letter-spacing:0.032400px;}
.ls9_c02104{letter-spacing:0.037800px;}
.ls2_c02104{letter-spacing:0.043092px;}
.ls5_c02104{letter-spacing:0.043200px;}
.ls1c_c02104{letter-spacing:0.065880px;}
.lsb_c02104{letter-spacing:0.067032px;}
.lsd_c02104{letter-spacing:0.076608px;}
.ls18_c02104{letter-spacing:0.081396px;}
.ls0_c02104{letter-spacing:0.085644px;}
.lsa_c02104{letter-spacing:0.086184px;}
.ls3_c02104{letter-spacing:0.095760px;}
.lsc_c02104{letter-spacing:0.114912px;}
.lse_c02104{letter-spacing:0.119700px;}
.ls19_c02104{letter-spacing:0.124488px;}
.ls1a_c02104{letter-spacing:0.134064px;}
.ls28_c02104{letter-spacing:0.151200px;}
.ls11_c02104{letter-spacing:0.158112px;}
.ls17_c02104{letter-spacing:0.162792px;}
.ls2b_c02104{letter-spacing:0.167580px;}
.ls13_c02104{letter-spacing:0.181944px;}
.ls12_c02104{letter-spacing:114.480000px;}
.ls2e_c02104{letter-spacing:145.978200px;}
.ls16_c02104{letter-spacing:155.698200px;}
.ls15_c02104{letter-spacing:199.978200px;}
.ls14_c02104{letter-spacing:200.790000px;}
.ls1e_c02104{letter-spacing:232.020000px;}
.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;}
}
.ws1_c02104{word-spacing:-16.628112px;}
.ws0_c02104{word-spacing:-16.476588px;}
.ws18_c02104{word-spacing:-0.272916px;}
.ws1a_c02104{word-spacing:-0.253764px;}
.ws1e_c02104{word-spacing:-0.225036px;}
.ws1d_c02104{word-spacing:-0.215460px;}
.ws14_c02104{word-spacing:-0.210672px;}
.wsb_c02104{word-spacing:-0.189000px;}
.ws7_c02104{word-spacing:-0.186732px;}
.ws20_c02104{word-spacing:-0.172368px;}
.ws23_c02104{word-spacing:-0.119700px;}
.ws22_c02104{word-spacing:-0.110124px;}
.ws1b_c02104{word-spacing:-0.081396px;}
.ws15_c02104{word-spacing:-0.021600px;}
.ws5_c02104{word-spacing:0.000000px;}
.ws6_c02104{word-spacing:0.006588px;}
.ws16_c02104{word-spacing:0.007200px;}
.ws17_c02104{word-spacing:0.008424px;}
.ws4_c02104{word-spacing:0.014400px;}
.ws24_c02104{word-spacing:0.026352px;}
.ws8_c02104{word-spacing:0.145800px;}
.wsc_c02104{word-spacing:0.151200px;}
.wsd_c02104{word-spacing:0.162000px;}
.ws25_c02104{word-spacing:0.172800px;}
.wsa_c02104{word-spacing:0.194400px;}
.ws26_c02104{word-spacing:0.199800px;}
.ws9_c02104{word-spacing:0.264600px;}
.wse_c02104{word-spacing:0.280800px;}
.ws11_c02104{word-spacing:1.235304px;}
.ws13_c02104{word-spacing:1.273608px;}
.ws12_c02104{word-spacing:1.307124px;}
.wsf_c02104{word-spacing:5.941908px;}
.ws10_c02104{word-spacing:5.961060px;}
.ws3_c02104{word-spacing:74.089440px;}
.ws2_c02104{word-spacing:101.089440px;}
.ws1f_c02104{word-spacing:155.655000px;}
.ws21_c02104{word-spacing:155.660400px;}
.ws19_c02104{word-spacing:200.296800px;}
.ws1c_c02104{word-spacing:200.302200px;}
._1_c02104{margin-left:-1.159488px;}
._b_c02104{width:1.026000px;}
._2b_c02104{width:44.236800px;}
._1a_c02104{width:50.937552px;}
._26_c02104{width:51.950448px;}
._1f_c02104{width:60.973200px;}
._1d_c02104{width:65.340000px;}
._17_c02104{width:75.124440px;}
._27_c02104{width:76.140000px;}
._1e_c02104{width:78.624000px;}
._18_c02104{width:79.804692px;}
._21_c02104{width:84.355560px;}
._10_c02104{width:85.554000px;}
._f_c02104{width:88.221600px;}
._1b_c02104{width:91.288440px;}
._25_c02104{width:94.564296px;}
._19_c02104{width:99.655200px;}
._24_c02104{width:104.331204px;}
._2d_c02104{width:108.435600px;}
._22_c02104{width:109.594296px;}
._2c_c02104{width:111.720168px;}
._29_c02104{width:114.095016px;}
._12_c02104{width:115.740000px;}
._13_c02104{width:118.378944px;}
._28_c02104{width:119.461284px;}
._11_c02104{width:122.220000px;}
._2a_c02104{width:124.666920px;}
._16_c02104{width:126.707688px;}
._20_c02104{width:127.933200px;}
._2e_c02104{width:133.247016px;}
._14_c02104{width:135.096120px;}
._36_c02104{width:145.270800px;}
._23_c02104{width:146.586384px;}
._15_c02104{width:153.595404px;}
._0_c02104{width:194.400000px;}
._1c_c02104{width:200.964168px;}
._e_c02104{width:203.036400px;}
._5_c02104{width:216.180000px;}
._32_c02104{width:232.020000px;}
._3_c02104{width:283.500000px;}
._30_c02104{width:299.700000px;}
._9_c02104{width:303.170400px;}
._6_c02104{width:310.104000px;}
._4_c02104{width:324.775800px;}
._33_c02104{width:326.304000px;}
._a_c02104{width:382.210200px;}
._c_c02104{width:451.783800px;}
._8_c02104{width:482.234400px;}
._7_c02104{width:483.924600px;}
._35_c02104{width:497.210400px;}
._31_c02104{width:518.815800px;}
._37_c02104{width:576.250200px;}
._2_c02104{width:604.806876px;}
._38_c02104{width:645.823800px;}
._34_c02104{width:677.964600px;}
._d_c02104{width:799.695000px;}
._2f_c02104{width:875.886876px;}
._39_c02104{width:993.735000px;}
.fc0_c02104{color:rgb(0,0,0);}
.fs4_c02104{font-size:42.120000px;}
.fs2_c02104{font-size:47.880000px;}
.fs3_c02104{font-size:54.000000px;}
.fs1_c02104{font-size:65.880000px;}
.fs0_c02104{font-size:72.000000px;}
.y0_c02104{bottom:0.000000px;}
.y3_c02104{bottom:57.360450px;}
.y2_c02104{bottom:78.060450px;}
.y51_c02104{bottom:127.646679px;}
.y50_c02104{bottom:141.416967px;}
.y4f_c02104{bottom:155.277030px;}
.y4e_c02104{bottom:169.047318px;}
.y4d_c02104{bottom:182.817606px;}
.y4c_c02104{bottom:196.677669px;}
.y4b_c02104{bottom:210.447957px;}
.y4a_c02104{bottom:224.218245px;}
.y49_c02104{bottom:237.988533px;}
.y48_c02104{bottom:251.848596px;}
.y47_c02104{bottom:265.618884px;}
.y46_c02104{bottom:279.389172px;}
.y45_c02104{bottom:293.249235px;}
.y44_c02104{bottom:307.019523px;}
.y43_c02104{bottom:320.789811px;}
.y42_c02104{bottom:334.649874px;}
.y41_c02104{bottom:348.420162px;}
.y40_c02104{bottom:362.190450px;}
.y3f_c02104{bottom:378.390450px;}
.y3e_c02104{bottom:393.870600px;}
.y3d_c02104{bottom:409.440450px;}
.y3c_c02104{bottom:424.920450px;}
.y3b_c02104{bottom:440.490450px;}
.y3a_c02104{bottom:455.970450px;}
.y39_c02104{bottom:471.540600px;}
.y36_c02104{bottom:488.910450px;}
.y38_c02104{bottom:489.540600px;}
.y37_c02104{bottom:505.110600px;}
.y35_c02104{bottom:522.030600px;}
.y34_c02104{bottom:540.210450px;}
.y33_c02104{bottom:555.780000px;}
.y32_c02104{bottom:571.260450px;}
.y31_c02104{bottom:586.830000px;}
.y30_c02104{bottom:602.310450px;}
.y2f_c02104{bottom:617.790450px;}
.y2e_c02104{bottom:618.240450px;}
.y2d_c02104{bottom:636.780450px;}
.y2c_c02104{bottom:637.140000px;}
.y2b_c02104{bottom:655.770450px;}
.y2a_c02104{bottom:656.130000px;}
.y29_c02104{bottom:674.760450px;}
.y28_c02104{bottom:675.120000px;}
.y27_c02104{bottom:693.750450px;}
.y26_c02104{bottom:694.110450px;}
.y25_c02104{bottom:713.100450px;}
.y24_c02104{bottom:731.640450px;}
.y23_c02104{bottom:732.090450px;}
.y22_c02104{bottom:752.790450px;}
.y20_c02104{bottom:771.330450px;}
.y21_c02104{bottom:771.690450px;}
.y1f_c02104{bottom:771.690900px;}
.y1d_c02104{bottom:792.030450px;}
.y1e_c02104{bottom:792.390450px;}
.y1c_c02104{bottom:792.391050px;}
.y1a_c02104{bottom:812.730450px;}
.y19_c02104{bottom:813.090450px;}
.y1b_c02104{bottom:813.090600px;}
.y18_c02104{bottom:834.510450px;}
.y17_c02104{bottom:852.780450px;}
.y16_c02104{bottom:870.150450px;}
.y15_c02104{bottom:890.310450px;}
.y14_c02104{bottom:905.790900px;}
.y13_c02104{bottom:921.360450px;}
.y12_c02104{bottom:936.750099px;}
.y11_c02104{bottom:950.520387px;}
.y10_c02104{bottom:964.380450px;}
.yf_c02104{bottom:980.490450px;}
.ye_c02104{bottom:996.060450px;}
.yd_c02104{bottom:1011.540450px;}
.yc_c02104{bottom:1027.110450px;}
.yb_c02104{bottom:1042.590450px;}
.ya_c02104{bottom:1058.160450px;}
.y9_c02104{bottom:1073.640450px;}
.y8_c02104{bottom:1089.210450px;}
.y5_c02104{bottom:1106.580450px;}
.y7_c02104{bottom:1107.210450px;}
.y6_c02104{bottom:1124.580450px;}
.y4_c02104{bottom:1141.500450px;}
.y1_c02104{bottom:1193.160450px;}
.h5_c02104{height:42.011895px;}
.h4_c02104{height:43.091895px;}
.he_c02104{height:43.092495px;}
.h6_c02104{height:47.381836px;}
.h8_c02104{height:47.961914px;}
.hf_c02104{height:48.461236px;}
.h7_c02104{height:48.461836px;}
.h10_c02104{height:48.462436px;}
.h3_c02104{height:58.513535px;}
.hc_c02104{height:61.033535px;}
.hd_c02104{height:62.473535px;}
.ha_c02104{height:62.833535px;}
.hb_c02104{height:62.834135px;}
.h2_c02104{height:63.175781px;}
.h1_c02104{height:63.949219px;}
.h9_c02104{height:79.421836px;}
.h0_c02104{height:1263.000000px;}
.w1_c02104{width:892.500000px;}
.w0_c02104{width:892.830000px;}
.x0_c02104{left:0.000000px;}
.x1_c02104{left:127.620000px;}
.x3_c02104{left:134.550000px;}
.x6_c02104{left:135.630000px;}
.x7_c02104{left:143.730000px;}
.x8_c02104{left:164.610000px;}
.x9_c02104{left:220.680000px;}
.x4_c02104{left:380.700000px;}
.x5_c02104{left:403.380000px;}
.xb_c02104{left:433.170000px;}
.x2_c02104{left:437.580000px;}
.xc_c02104{left:453.780000px;}
.xa_c02104{left:555.390000px;}
@media print{
.v5_c02104{vertical-align:-3.839467pt;}
.v4_c02104{vertical-align:-2.559467pt;}
.v3_c02104{vertical-align:-1.280000pt;}
.v0_c02104{vertical-align:0.000000pt;}
.v1_c02104{vertical-align:0.960000pt;}
.v6_c02104{vertical-align:2.240533pt;}
.v7_c02104{vertical-align:3.840000pt;}
.v2_c02104{vertical-align:28.480000pt;}
.ls25_c02104{letter-spacing:-0.158400pt;}
.ls24_c02104{letter-spacing:-0.091200pt;}
.ls2d_c02104{letter-spacing:-0.086112pt;}
.ls22_c02104{letter-spacing:-0.076800pt;}
.ls2c_c02104{letter-spacing:-0.076608pt;}
.ls29_c02104{letter-spacing:-0.038400pt;}
.ls30_c02104{letter-spacing:-0.019200pt;}
.ls21_c02104{letter-spacing:-0.017024pt;}
.ls23_c02104{letter-spacing:-0.014400pt;}
.ls1f_c02104{letter-spacing:-0.012800pt;}
.ls2a_c02104{letter-spacing:-0.009600pt;}
.ls26_c02104{letter-spacing:-0.008512pt;}
.ls27_c02104{letter-spacing:-0.006400pt;}
.ls2f_c02104{letter-spacing:-0.004256pt;}
.ls20_c02104{letter-spacing:0.000000pt;}
.ls1d_c02104{letter-spacing:0.004800pt;}
.ls1_c02104{letter-spacing:0.005856pt;}
.ls6_c02104{letter-spacing:0.009600pt;}
.ls8_c02104{letter-spacing:0.014400pt;}
.ls1b_c02104{letter-spacing:0.017024pt;}
.lsf_c02104{letter-spacing:0.019200pt;}
.ls7_c02104{letter-spacing:0.024000pt;}
.ls10_c02104{letter-spacing:0.025536pt;}
.ls4_c02104{letter-spacing:0.028800pt;}
.ls9_c02104{letter-spacing:0.033600pt;}
.ls2_c02104{letter-spacing:0.038304pt;}
.ls5_c02104{letter-spacing:0.038400pt;}
.ls1c_c02104{letter-spacing:0.058560pt;}
.lsb_c02104{letter-spacing:0.059584pt;}
.lsd_c02104{letter-spacing:0.068096pt;}
.ls18_c02104{letter-spacing:0.072352pt;}
.ls0_c02104{letter-spacing:0.076128pt;}
.lsa_c02104{letter-spacing:0.076608pt;}
.ls3_c02104{letter-spacing:0.085120pt;}
.lsc_c02104{letter-spacing:0.102144pt;}
.lse_c02104{letter-spacing:0.106400pt;}
.ls19_c02104{letter-spacing:0.110656pt;}
.ls1a_c02104{letter-spacing:0.119168pt;}
.ls28_c02104{letter-spacing:0.134400pt;}
.ls11_c02104{letter-spacing:0.140544pt;}
.ls17_c02104{letter-spacing:0.144704pt;}
.ls2b_c02104{letter-spacing:0.148960pt;}
.ls13_c02104{letter-spacing:0.161728pt;}
.ls12_c02104{letter-spacing:101.760000pt;}
.ls2e_c02104{letter-spacing:129.758400pt;}
.ls16_c02104{letter-spacing:138.398400pt;}
.ls15_c02104{letter-spacing:177.758400pt;}
.ls14_c02104{letter-spacing:178.480000pt;}
.ls1e_c02104{letter-spacing:206.240000pt;}
.ws1_c02104{word-spacing:-14.780544pt;}
.ws0_c02104{word-spacing:-14.645856pt;}
.ws18_c02104{word-spacing:-0.242592pt;}
.ws1a_c02104{word-spacing:-0.225568pt;}
.ws1e_c02104{word-spacing:-0.200032pt;}
.ws1d_c02104{word-spacing:-0.191520pt;}
.ws14_c02104{word-spacing:-0.187264pt;}
.wsb_c02104{word-spacing:-0.168000pt;}
.ws7_c02104{word-spacing:-0.165984pt;}
.ws20_c02104{word-spacing:-0.153216pt;}
.ws23_c02104{word-spacing:-0.106400pt;}
.ws22_c02104{word-spacing:-0.097888pt;}
.ws1b_c02104{word-spacing:-0.072352pt;}
.ws15_c02104{word-spacing:-0.019200pt;}
.ws5_c02104{word-spacing:0.000000pt;}
.ws6_c02104{word-spacing:0.005856pt;}
.ws16_c02104{word-spacing:0.006400pt;}
.ws17_c02104{word-spacing:0.007488pt;}
.ws4_c02104{word-spacing:0.012800pt;}
.ws24_c02104{word-spacing:0.023424pt;}
.ws8_c02104{word-spacing:0.129600pt;}
.wsc_c02104{word-spacing:0.134400pt;}
.wsd_c02104{word-spacing:0.144000pt;}
.ws25_c02104{word-spacing:0.153600pt;}
.wsa_c02104{word-spacing:0.172800pt;}
.ws26_c02104{word-spacing:0.177600pt;}
.ws9_c02104{word-spacing:0.235200pt;}
.wse_c02104{word-spacing:0.249600pt;}
.ws11_c02104{word-spacing:1.098048pt;}
.ws13_c02104{word-spacing:1.132096pt;}
.ws12_c02104{word-spacing:1.161888pt;}
.wsf_c02104{word-spacing:5.281696pt;}
.ws10_c02104{word-spacing:5.298720pt;}
.ws3_c02104{word-spacing:65.857280pt;}
.ws2_c02104{word-spacing:89.857280pt;}
.ws1f_c02104{word-spacing:138.360000pt;}
.ws21_c02104{word-spacing:138.364800pt;}
.ws19_c02104{word-spacing:178.041600pt;}
.ws1c_c02104{word-spacing:178.046400pt;}
._1_c02104{margin-left:-1.030656pt;}
._b_c02104{width:0.912000pt;}
._2b_c02104{width:39.321600pt;}
._1a_c02104{width:45.277824pt;}
._26_c02104{width:46.178176pt;}
._1f_c02104{width:54.198400pt;}
._1d_c02104{width:58.080000pt;}
._17_c02104{width:66.777280pt;}
._27_c02104{width:67.680000pt;}
._1e_c02104{width:69.888000pt;}
._18_c02104{width:70.937504pt;}
._21_c02104{width:74.982720pt;}
._10_c02104{width:76.048000pt;}
._f_c02104{width:78.419200pt;}
._1b_c02104{width:81.145280pt;}
._25_c02104{width:84.057152pt;}
._19_c02104{width:88.582400pt;}
._24_c02104{width:92.738848pt;}
._2d_c02104{width:96.387200pt;}
._22_c02104{width:97.417152pt;}
._2c_c02104{width:99.306816pt;}
._29_c02104{width:101.417792pt;}
._12_c02104{width:102.880000pt;}
._13_c02104{width:105.225728pt;}
._28_c02104{width:106.187808pt;}
._11_c02104{width:108.640000pt;}
._2a_c02104{width:110.815040pt;}
._16_c02104{width:112.629056pt;}
._20_c02104{width:113.718400pt;}
._2e_c02104{width:118.441792pt;}
._14_c02104{width:120.085440pt;}
._36_c02104{width:129.129600pt;}
._23_c02104{width:130.299008pt;}
._15_c02104{width:136.529248pt;}
._0_c02104{width:172.800000pt;}
._1c_c02104{width:178.634816pt;}
._e_c02104{width:180.476800pt;}
._5_c02104{width:192.160000pt;}
._32_c02104{width:206.240000pt;}
._3_c02104{width:252.000000pt;}
._30_c02104{width:266.400000pt;}
._9_c02104{width:269.484800pt;}
._6_c02104{width:275.648000pt;}
._4_c02104{width:288.689600pt;}
._33_c02104{width:290.048000pt;}
._a_c02104{width:339.742400pt;}
._c_c02104{width:401.585600pt;}
._8_c02104{width:428.652800pt;}
._7_c02104{width:430.155200pt;}
._35_c02104{width:441.964800pt;}
._31_c02104{width:461.169600pt;}
._37_c02104{width:512.222400pt;}
._2_c02104{width:537.606112pt;}
._38_c02104{width:574.065600pt;}
._34_c02104{width:602.635200pt;}
._d_c02104{width:710.840000pt;}
._2f_c02104{width:778.566112pt;}
._39_c02104{width:883.320000pt;}
.fs4_c02104{font-size:37.440000pt;}
.fs2_c02104{font-size:42.560000pt;}
.fs3_c02104{font-size:48.000000pt;}
.fs1_c02104{font-size:58.560000pt;}
.fs0_c02104{font-size:64.000000pt;}
.y0_c02104{bottom:0.000000pt;}
.y3_c02104{bottom:50.987067pt;}
.y2_c02104{bottom:69.387067pt;}
.y51_c02104{bottom:113.463715pt;}
.y50_c02104{bottom:125.703971pt;}
.y4f_c02104{bottom:138.024027pt;}
.y4e_c02104{bottom:150.264283pt;}
.y4d_c02104{bottom:162.504539pt;}
.y4c_c02104{bottom:174.824595pt;}
.y4b_c02104{bottom:187.064851pt;}
.y4a_c02104{bottom:199.305107pt;}
.y49_c02104{bottom:211.545363pt;}
.y48_c02104{bottom:223.865419pt;}
.y47_c02104{bottom:236.105675pt;}
.y46_c02104{bottom:248.345931pt;}
.y45_c02104{bottom:260.665987pt;}
.y44_c02104{bottom:272.906243pt;}
.y43_c02104{bottom:285.146499pt;}
.y42_c02104{bottom:297.466555pt;}
.y41_c02104{bottom:309.706811pt;}
.y40_c02104{bottom:321.947067pt;}
.y3f_c02104{bottom:336.347067pt;}
.y3e_c02104{bottom:350.107200pt;}
.y3d_c02104{bottom:363.947067pt;}
.y3c_c02104{bottom:377.707067pt;}
.y3b_c02104{bottom:391.547067pt;}
.y3a_c02104{bottom:405.307067pt;}
.y39_c02104{bottom:419.147200pt;}
.y36_c02104{bottom:434.587067pt;}
.y38_c02104{bottom:435.147200pt;}
.y37_c02104{bottom:448.987200pt;}
.y35_c02104{bottom:464.027200pt;}
.y34_c02104{bottom:480.187067pt;}
.y33_c02104{bottom:494.026667pt;}
.y32_c02104{bottom:507.787067pt;}
.y31_c02104{bottom:521.626667pt;}
.y30_c02104{bottom:535.387067pt;}
.y2f_c02104{bottom:549.147067pt;}
.y2e_c02104{bottom:549.547067pt;}
.y2d_c02104{bottom:566.027067pt;}
.y2c_c02104{bottom:566.346667pt;}
.y2b_c02104{bottom:582.907067pt;}
.y2a_c02104{bottom:583.226667pt;}
.y29_c02104{bottom:599.787067pt;}
.y28_c02104{bottom:600.106667pt;}
.y27_c02104{bottom:616.667067pt;}
.y26_c02104{bottom:616.987067pt;}
.y25_c02104{bottom:633.867067pt;}
.y24_c02104{bottom:650.347067pt;}
.y23_c02104{bottom:650.747067pt;}
.y22_c02104{bottom:669.147067pt;}
.y20_c02104{bottom:685.627067pt;}
.y21_c02104{bottom:685.947067pt;}
.y1f_c02104{bottom:685.947467pt;}
.y1d_c02104{bottom:704.027067pt;}
.y1e_c02104{bottom:704.347067pt;}
.y1c_c02104{bottom:704.347600pt;}
.y1a_c02104{bottom:722.427067pt;}
.y19_c02104{bottom:722.747067pt;}
.y1b_c02104{bottom:722.747200pt;}
.y18_c02104{bottom:741.787067pt;}
.y17_c02104{bottom:758.027067pt;}
.y16_c02104{bottom:773.467067pt;}
.y15_c02104{bottom:791.387067pt;}
.y14_c02104{bottom:805.147467pt;}
.y13_c02104{bottom:818.987067pt;}
.y12_c02104{bottom:832.666755pt;}
.y11_c02104{bottom:844.907011pt;}
.y10_c02104{bottom:857.227067pt;}
.yf_c02104{bottom:871.547067pt;}
.ye_c02104{bottom:885.387067pt;}
.yd_c02104{bottom:899.147067pt;}
.yc_c02104{bottom:912.987067pt;}
.yb_c02104{bottom:926.747067pt;}
.ya_c02104{bottom:940.587067pt;}
.y9_c02104{bottom:954.347067pt;}
.y8_c02104{bottom:968.187067pt;}
.y5_c02104{bottom:983.627067pt;}
.y7_c02104{bottom:984.187067pt;}
.y6_c02104{bottom:999.627067pt;}
.y4_c02104{bottom:1014.667067pt;}
.y1_c02104{bottom:1060.587067pt;}
.h5_c02104{height:37.343906pt;}
.h4_c02104{height:38.303906pt;}
.he_c02104{height:38.304440pt;}
.h6_c02104{height:42.117188pt;}
.h8_c02104{height:42.632812pt;}
.hf_c02104{height:43.076654pt;}
.h7_c02104{height:43.077187pt;}
.h10_c02104{height:43.077721pt;}
.h3_c02104{height:52.012031pt;}
.hc_c02104{height:54.252031pt;}
.hd_c02104{height:55.532031pt;}
.ha_c02104{height:55.852031pt;}
.hb_c02104{height:55.852565pt;}
.h2_c02104{height:56.156250pt;}
.h1_c02104{height:56.843750pt;}
.h9_c02104{height:70.597187pt;}
.h0_c02104{height:1122.666667pt;}
.w1_c02104{width:793.333333pt;}
.w0_c02104{width:793.626667pt;}
.x0_c02104{left:0.000000pt;}
.x1_c02104{left:113.440000pt;}
.x3_c02104{left:119.600000pt;}
.x6_c02104{left:120.560000pt;}
.x7_c02104{left:127.760000pt;}
.x8_c02104{left:146.320000pt;}
.x9_c02104{left:196.160000pt;}
.x4_c02104{left:338.400000pt;}
.x5_c02104{left:358.560000pt;}
.xb_c02104{left:385.040000pt;}
.x2_c02104{left:388.960000pt;}
.xc_c02104{left:403.360000pt;}
.xa_c02104{left:493.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_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_2f4358fd67b19954f93b7288.woff2')format("woff");}.ff1_c02105{font-family:ff1_c02105;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02105;src:url('chunks/assets/font_aadd3027f5d33eae51c30ca3.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;}
.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);}
.v5_c02105{vertical-align:-22.680000px;}
.v2_c02105{vertical-align:-16.920000px;}
.v4_c02105{vertical-align:-5.400000px;}
.v0_c02105{vertical-align:0.000000px;}
.v1_c02105{vertical-align:1.440000px;}
.v3_c02105{vertical-align:11.160000px;}
.ls20_c02105{letter-spacing:-0.181116px;}
.ls1e_c02105{letter-spacing:-0.180360px;}
.ls1d_c02105{letter-spacing:-0.176904px;}
.ls1c_c02105{letter-spacing:-0.086400px;}
.ls18_c02105{letter-spacing:-0.032940px;}
.ls15_c02105{letter-spacing:-0.014400px;}
.ls17_c02105{letter-spacing:-0.013176px;}
.ls1b_c02105{letter-spacing:-0.007200px;}
.ls16_c02105{letter-spacing:0.000000px;}
.ls1_c02105{letter-spacing:0.007200px;}
.ls0_c02105{letter-spacing:0.014400px;}
.ls19_c02105{letter-spacing:0.019764px;}
.ls13_c02105{letter-spacing:0.026352px;}
.lsb_c02105{letter-spacing:0.028800px;}
.ls12_c02105{letter-spacing:0.032940px;}
.ls2_c02105{letter-spacing:0.039528px;}
.ls1a_c02105{letter-spacing:0.043200px;}
.lsf_c02105{letter-spacing:0.046116px;}
.lsc_c02105{letter-spacing:0.050400px;}
.ls7_c02105{letter-spacing:0.052704px;}
.ls10_c02105{letter-spacing:0.059292px;}
.ls1f_c02105{letter-spacing:0.062244px;}
.ls11_c02105{letter-spacing:0.072468px;}
.ls21_c02105{letter-spacing:0.079056px;}
.lse_c02105{letter-spacing:0.085644px;}
.ls5_c02105{letter-spacing:0.098820px;}
.ls9_c02105{letter-spacing:0.131760px;}
.lsd_c02105{letter-spacing:0.181944px;}
.ls14_c02105{letter-spacing:23.848560px;}
.ls3_c02105{letter-spacing:64.080000px;}
.ls8_c02105{letter-spacing:99.720000px;}
.ls4_c02105{letter-spacing:113.760000px;}
.ls6_c02105{letter-spacing:128.520000px;}
.lsa_c02105{letter-spacing:456.840000px;}
.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;}
}
.ws4_c02105{word-spacing:-16.601760px;}
.ws1_c02105{word-spacing:-16.568820px;}
.ws7_c02105{word-spacing:-16.549056px;}
.ws6_c02105{word-spacing:-16.522704px;}
.ws0_c02105{word-spacing:-16.509528px;}
.ws5_c02105{word-spacing:-16.470000px;}
.ws3_c02105{word-spacing:-16.437060px;}
.ws11_c02105{word-spacing:-0.115200px;}
.ws12_c02105{word-spacing:-0.093600px;}
.wsf_c02105{word-spacing:-0.086400px;}
.ws10_c02105{word-spacing:-0.064800px;}
.wsa_c02105{word-spacing:-0.014400px;}
.wsb_c02105{word-spacing:-0.007200px;}
.ws9_c02105{word-spacing:0.000000px;}
.wse_c02105{word-spacing:0.007200px;}
.ws8_c02105{word-spacing:0.014400px;}
.ws1b_c02105{word-spacing:0.019764px;}
.wsc_c02105{word-spacing:0.039528px;}
.ws18_c02105{word-spacing:0.046116px;}
.ws24_c02105{word-spacing:0.059292px;}
.ws14_c02105{word-spacing:0.724680px;}
.ws15_c02105{word-spacing:0.757620px;}
.ws1a_c02105{word-spacing:0.777384px;}
.ws21_c02105{word-spacing:2.569320px;}
.ws17_c02105{word-spacing:3.267648px;}
.ws1e_c02105{word-spacing:5.085936px;}
.ws1f_c02105{word-spacing:5.105700px;}
.ws20_c02105{word-spacing:8.669808px;}
.ws16_c02105{word-spacing:12.642372px;}
.ws19_c02105{word-spacing:14.776884px;}
.ws1d_c02105{word-spacing:14.809824px;}
.ws22_c02105{word-spacing:23.795856px;}
.ws1c_c02105{word-spacing:26.345412px;}
.ws13_c02105{word-spacing:45.806796px;}
.ws23_c02105{word-spacing:53.692200px;}
.ws2_c02105{word-spacing:96.810048px;}
.wsd_c02105{word-spacing:236.116800px;}
._5_c02105{margin-left:-28.843200px;}
._14_c02105{margin-left:-1.587708px;}
._15_c02105{width:1.021140px;}
._12_c02105{width:2.523276px;}
._13_c02105{width:3.587076px;}
._11_c02105{width:6.482952px;}
._2_c02105{width:35.695440px;}
._e_c02105{width:39.510720px;}
._d_c02105{width:40.590720px;}
._10_c02105{width:55.534464px;}
._c_c02105{width:74.210472px;}
._1_c02105{width:133.131852px;}
._0_c02105{width:194.400000px;}
._4_c02105{width:261.633600px;}
._7_c02105{width:430.861800px;}
._3_c02105{width:565.876800px;}
._a_c02105{width:788.385000px;}
._8_c02105{width:1078.926600px;}
._f_c02105{width:1496.476440px;}
._9_c02105{width:1666.756200px;}
._6_c02105{width:1791.288000px;}
._b_c02105{width:2236.521000px;}
.fc0_c02105{color:rgb(0,0,0);}
.fs3_c02105{font-size:42.120000px;}
.fs2_c02105{font-size:47.880000px;}
.fs4_c02105{font-size:60.120000px;}
.fs1_c02105{font-size:65.880000px;}
.fs0_c02105{font-size:72.000000px;}
.y0_c02105{bottom:0.000000px;}
.y3_c02105{bottom:57.360450px;}
.y2_c02105{bottom:78.060450px;}
.y40_c02105{bottom:128.460450px;}
.y3f_c02105{bottom:149.160450px;}
.y3e_c02105{bottom:169.410630px;}
.y42_c02105{bottom:186.870600px;}
.y3d_c02105{bottom:188.400540px;}
.y41_c02105{bottom:207.300450px;}
.y3c_c02105{bottom:213.060450px;}
.y39_c02105{bottom:227.460450px;}
.y38_c02105{bottom:248.160450px;}
.y37_c02105{bottom:268.500630px;}
.y3b_c02105{bottom:285.960450px;}
.y36_c02105{bottom:287.490540px;}
.y3a_c02105{bottom:306.390450px;}
.y35_c02105{bottom:312.150450px;}
.y32_c02105{bottom:326.550450px;}
.y31_c02105{bottom:347.250450px;}
.y30_c02105{bottom:367.590630px;}
.y34_c02105{bottom:385.050450px;}
.y2f_c02105{bottom:386.580540px;}
.y33_c02105{bottom:405.480450px;}
.y2e_c02105{bottom:411.240450px;}
.y2b_c02105{bottom:425.640600px;}
.y2a_c02105{bottom:446.340600px;}
.y29_c02105{bottom:466.681305px;}
.y28_c02105{bottom:485.580630px;}
.y2d_c02105{bottom:503.040600px;}
.y27_c02105{bottom:504.570540px;}
.y2c_c02105{bottom:523.470450px;}
.y26_c02105{bottom:529.230450px;}
.y23_c02105{bottom:543.630450px;}
.y22_c02105{bottom:564.330450px;}
.y21_c02105{bottom:584.670630px;}
.y25_c02105{bottom:602.130450px;}
.y20_c02105{bottom:603.660540px;}
.y24_c02105{bottom:622.560450px;}
.y1f_c02105{bottom:628.320450px;}
.y1d_c02105{bottom:642.720450px;}
.y1c_c02105{bottom:663.420450px;}
.y1b_c02105{bottom:683.761305px;}
.y1a_c02105{bottom:702.751215px;}
.y19_c02105{bottom:721.741125px;}
.y1e_c02105{bottom:740.550450px;}
.y18_c02105{bottom:746.310450px;}
.y17_c02105{bottom:764.130450px;}
.y16_c02105{bottom:778.620450px;}
.y15_c02105{bottom:798.960099px;}
.y14_c02105{bottom:812.820162px;}
.y13_c02105{bottom:826.590450px;}
.y12_c02105{bottom:842.160450px;}
.y11_c02105{bottom:863.670450px;}
.y10_c02105{bottom:885.090450px;}
.yf_c02105{bottom:906.510450px;}
.ye_c02105{bottom:928.020450px;}
.yd_c02105{bottom:949.440450px;}
.yc_c02105{bottom:970.860450px;}
.yb_c02105{bottom:992.280450px;}
.ya_c02105{bottom:1013.610450px;}
.y9_c02105{bottom:1034.940450px;}
.y8_c02105{bottom:1054.920450px;}
.y7_c02105{bottom:1075.620450px;}
.y6_c02105{bottom:1097.130450px;}
.y5_c02105{bottom:1117.830450px;}
.y4_c02105{bottom:1139.250450px;}
.y1_c02105{bottom:1193.160450px;}
.h6_c02105{height:36.957832px;}
.h5_c02105{height:37.410293px;}
.h4_c02105{height:42.011895px;}
.h7_c02105{height:57.805840px;}
.h9_c02105{height:58.513535px;}
.h8_c02105{height:63.172361px;}
.hb_c02105{height:63.172961px;}
.ha_c02105{height:63.175061px;}
.h2_c02105{height:63.175781px;}
.h1_c02105{height:63.949219px;}
.h3_c02105{height:64.615781px;}
.h0_c02105{height:1263.000000px;}
.w1_c02105{width:892.500000px;}
.w0_c02105{width:892.830000px;}
.x0_c02105{left:0.000000px;}
.x1_c02105{left:127.620000px;}
.x3_c02105{left:135.630000px;}
.x6_c02105{left:137.520000px;}
.x4_c02105{left:246.960000px;}
.x9_c02105{left:274.140000px;}
.x5_c02105{left:330.480000px;}
.x7_c02105{left:335.160000px;}
.x2_c02105{left:437.580000px;}
.x8_c02105{left:446.400000px;}
.xa_c02105{left:721.980000px;}
.xb_c02105{left:739.800000px;}
@media print{
.v5_c02105{vertical-align:-20.160000pt;}
.v2_c02105{vertical-align:-15.040000pt;}
.v4_c02105{vertical-align:-4.800000pt;}
.v0_c02105{vertical-align:0.000000pt;}
.v1_c02105{vertical-align:1.280000pt;}
.v3_c02105{vertical-align:9.920000pt;}
.ls20_c02105{letter-spacing:-0.160992pt;}
.ls1e_c02105{letter-spacing:-0.160320pt;}
.ls1d_c02105{letter-spacing:-0.157248pt;}
.ls1c_c02105{letter-spacing:-0.076800pt;}
.ls18_c02105{letter-spacing:-0.029280pt;}
.ls15_c02105{letter-spacing:-0.012800pt;}
.ls17_c02105{letter-spacing:-0.011712pt;}
.ls1b_c02105{letter-spacing:-0.006400pt;}
.ls16_c02105{letter-spacing:0.000000pt;}
.ls1_c02105{letter-spacing:0.006400pt;}
.ls0_c02105{letter-spacing:0.012800pt;}
.ls19_c02105{letter-spacing:0.017568pt;}
.ls13_c02105{letter-spacing:0.023424pt;}
.lsb_c02105{letter-spacing:0.025600pt;}
.ls12_c02105{letter-spacing:0.029280pt;}
.ls2_c02105{letter-spacing:0.035136pt;}
.ls1a_c02105{letter-spacing:0.038400pt;}
.lsf_c02105{letter-spacing:0.040992pt;}
.lsc_c02105{letter-spacing:0.044800pt;}
.ls7_c02105{letter-spacing:0.046848pt;}
.ls10_c02105{letter-spacing:0.052704pt;}
.ls1f_c02105{letter-spacing:0.055328pt;}
.ls11_c02105{letter-spacing:0.064416pt;}
.ls21_c02105{letter-spacing:0.070272pt;}
.lse_c02105{letter-spacing:0.076128pt;}
.ls5_c02105{letter-spacing:0.087840pt;}
.ls9_c02105{letter-spacing:0.117120pt;}
.lsd_c02105{letter-spacing:0.161728pt;}
.ls14_c02105{letter-spacing:21.198720pt;}
.ls3_c02105{letter-spacing:56.960000pt;}
.ls8_c02105{letter-spacing:88.640000pt;}
.ls4_c02105{letter-spacing:101.120000pt;}
.ls6_c02105{letter-spacing:114.240000pt;}
.lsa_c02105{letter-spacing:406.080000pt;}
.ws4_c02105{word-spacing:-14.757120pt;}
.ws1_c02105{word-spacing:-14.727840pt;}
.ws7_c02105{word-spacing:-14.710272pt;}
.ws6_c02105{word-spacing:-14.686848pt;}
.ws0_c02105{word-spacing:-14.675136pt;}
.ws5_c02105{word-spacing:-14.640000pt;}
.ws3_c02105{word-spacing:-14.610720pt;}
.ws11_c02105{word-spacing:-0.102400pt;}
.ws12_c02105{word-spacing:-0.083200pt;}
.wsf_c02105{word-spacing:-0.076800pt;}
.ws10_c02105{word-spacing:-0.057600pt;}
.wsa_c02105{word-spacing:-0.012800pt;}
.wsb_c02105{word-spacing:-0.006400pt;}
.ws9_c02105{word-spacing:0.000000pt;}
.wse_c02105{word-spacing:0.006400pt;}
.ws8_c02105{word-spacing:0.012800pt;}
.ws1b_c02105{word-spacing:0.017568pt;}
.wsc_c02105{word-spacing:0.035136pt;}
.ws18_c02105{word-spacing:0.040992pt;}
.ws24_c02105{word-spacing:0.052704pt;}
.ws14_c02105{word-spacing:0.644160pt;}
.ws15_c02105{word-spacing:0.673440pt;}
.ws1a_c02105{word-spacing:0.691008pt;}
.ws21_c02105{word-spacing:2.283840pt;}
.ws17_c02105{word-spacing:2.904576pt;}
.ws1e_c02105{word-spacing:4.520832pt;}
.ws1f_c02105{word-spacing:4.538400pt;}
.ws20_c02105{word-spacing:7.706496pt;}
.ws16_c02105{word-spacing:11.237664pt;}
.ws19_c02105{word-spacing:13.135008pt;}
.ws1d_c02105{word-spacing:13.164288pt;}
.ws22_c02105{word-spacing:21.151872pt;}
.ws1c_c02105{word-spacing:23.418144pt;}
.ws13_c02105{word-spacing:40.717152pt;}
.ws23_c02105{word-spacing:47.726400pt;}
.ws2_c02105{word-spacing:86.053376pt;}
.wsd_c02105{word-spacing:209.881600pt;}
._5_c02105{margin-left:-25.638400pt;}
._14_c02105{margin-left:-1.411296pt;}
._15_c02105{width:0.907680pt;}
._12_c02105{width:2.242912pt;}
._13_c02105{width:3.188512pt;}
._11_c02105{width:5.762624pt;}
._2_c02105{width:31.729280pt;}
._e_c02105{width:35.120640pt;}
._d_c02105{width:36.080640pt;}
._10_c02105{width:49.363968pt;}
._c_c02105{width:65.964864pt;}
._1_c02105{width:118.339424pt;}
._0_c02105{width:172.800000pt;}
._4_c02105{width:232.563200pt;}
._7_c02105{width:382.988267pt;}
._3_c02105{width:503.001600pt;}
._a_c02105{width:700.786667pt;}
._8_c02105{width:959.045867pt;}
._f_c02105{width:1330.201280pt;}
._9_c02105{width:1481.561067pt;}
._6_c02105{width:1592.256000pt;}
._b_c02105{width:1988.018667pt;}
.fs3_c02105{font-size:37.440000pt;}
.fs2_c02105{font-size:42.560000pt;}
.fs4_c02105{font-size:53.440000pt;}
.fs1_c02105{font-size:58.560000pt;}
.fs0_c02105{font-size:64.000000pt;}
.y0_c02105{bottom:0.000000pt;}
.y3_c02105{bottom:50.987067pt;}
.y2_c02105{bottom:69.387067pt;}
.y40_c02105{bottom:114.187067pt;}
.y3f_c02105{bottom:132.587067pt;}
.y3e_c02105{bottom:150.587227pt;}
.y42_c02105{bottom:166.107200pt;}
.y3d_c02105{bottom:167.467147pt;}
.y41_c02105{bottom:184.267067pt;}
.y3c_c02105{bottom:189.387067pt;}
.y39_c02105{bottom:202.187067pt;}
.y38_c02105{bottom:220.587067pt;}
.y37_c02105{bottom:238.667227pt;}
.y3b_c02105{bottom:254.187067pt;}
.y36_c02105{bottom:255.547147pt;}
.y3a_c02105{bottom:272.347067pt;}
.y35_c02105{bottom:277.467067pt;}
.y32_c02105{bottom:290.267067pt;}
.y31_c02105{bottom:308.667067pt;}
.y30_c02105{bottom:326.747227pt;}
.y34_c02105{bottom:342.267067pt;}
.y2f_c02105{bottom:343.627147pt;}
.y33_c02105{bottom:360.427067pt;}
.y2e_c02105{bottom:365.547067pt;}
.y2b_c02105{bottom:378.347200pt;}
.y2a_c02105{bottom:396.747200pt;}
.y29_c02105{bottom:414.827827pt;}
.y28_c02105{bottom:431.627227pt;}
.y2d_c02105{bottom:447.147200pt;}
.y27_c02105{bottom:448.507147pt;}
.y2c_c02105{bottom:465.307067pt;}
.y26_c02105{bottom:470.427067pt;}
.y23_c02105{bottom:483.227067pt;}
.y22_c02105{bottom:501.627067pt;}
.y21_c02105{bottom:519.707227pt;}
.y25_c02105{bottom:535.227067pt;}
.y20_c02105{bottom:536.587147pt;}
.y24_c02105{bottom:553.387067pt;}
.y1f_c02105{bottom:558.507067pt;}
.y1d_c02105{bottom:571.307067pt;}
.y1c_c02105{bottom:589.707067pt;}
.y1b_c02105{bottom:607.787827pt;}
.y1a_c02105{bottom:624.667747pt;}
.y19_c02105{bottom:641.547667pt;}
.y1e_c02105{bottom:658.267067pt;}
.y18_c02105{bottom:663.387067pt;}
.y17_c02105{bottom:679.227067pt;}
.y16_c02105{bottom:692.107067pt;}
.y15_c02105{bottom:710.186755pt;}
.y14_c02105{bottom:722.506811pt;}
.y13_c02105{bottom:734.747067pt;}
.y12_c02105{bottom:748.587067pt;}
.y11_c02105{bottom:767.707067pt;}
.y10_c02105{bottom:786.747067pt;}
.yf_c02105{bottom:805.787067pt;}
.ye_c02105{bottom:824.907067pt;}
.yd_c02105{bottom:843.947067pt;}
.yc_c02105{bottom:862.987067pt;}
.yb_c02105{bottom:882.027067pt;}
.ya_c02105{bottom:900.987067pt;}
.y9_c02105{bottom:919.947067pt;}
.y8_c02105{bottom:937.707067pt;}
.y7_c02105{bottom:956.107067pt;}
.y6_c02105{bottom:975.227067pt;}
.y5_c02105{bottom:993.627067pt;}
.y4_c02105{bottom:1012.667067pt;}
.y1_c02105{bottom:1060.587067pt;}
.h6_c02105{height:32.851406pt;}
.h5_c02105{height:33.253594pt;}
.h4_c02105{height:37.343906pt;}
.h7_c02105{height:51.382969pt;}
.h9_c02105{height:52.012031pt;}
.h8_c02105{height:56.153210pt;}
.hb_c02105{height:56.153743pt;}
.ha_c02105{height:56.155610pt;}
.h2_c02105{height:56.156250pt;}
.h1_c02105{height:56.843750pt;}
.h3_c02105{height:57.436250pt;}
.h0_c02105{height:1122.666667pt;}
.w1_c02105{width:793.333333pt;}
.w0_c02105{width:793.626667pt;}
.x0_c02105{left:0.000000pt;}
.x1_c02105{left:113.440000pt;}
.x3_c02105{left:120.560000pt;}
.x6_c02105{left:122.240000pt;}
.x4_c02105{left:219.520000pt;}
.x9_c02105{left:243.680000pt;}
.x5_c02105{left:293.760000pt;}
.x7_c02105{left:297.920000pt;}
.x2_c02105{left:388.960000pt;}
.x8_c02105{left:396.800000pt;}
.xa_c02105{left:641.760000pt;}
.xb_c02105{left:657.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_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_d617b2f94610323b6f953afe.woff2')format("woff");}.ff1_c02106{font-family:ff1_c02106;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02106;src:url('chunks/assets/font_42fa927adac37a0a08c8cbee.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;}
.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);}
.v4_c02106{vertical-align:-22.680000px;}
.v1_c02106{vertical-align:-16.919400px;}
.v3_c02106{vertical-align:-5.400000px;}
.v0_c02106{vertical-align:0.000000px;}
.v2_c02106{vertical-align:11.159400px;}
.ls16_c02106{letter-spacing:-0.181116px;}
.ls14_c02106{letter-spacing:-0.180360px;}
.ls13_c02106{letter-spacing:-0.176904px;}
.ls11_c02106{letter-spacing:-0.014400px;}
.ls18_c02106{letter-spacing:-0.013176px;}
.ls12_c02106{letter-spacing:0.000000px;}
.ls10_c02106{letter-spacing:0.013176px;}
.lsf_c02106{letter-spacing:0.019764px;}
.ls4_c02106{letter-spacing:0.026352px;}
.ls1_c02106{letter-spacing:0.032940px;}
.ls8_c02106{letter-spacing:0.039528px;}
.lsa_c02106{letter-spacing:0.046116px;}
.ls2_c02106{letter-spacing:0.052704px;}
.ls6_c02106{letter-spacing:0.059292px;}
.ls15_c02106{letter-spacing:0.062244px;}
.ls3_c02106{letter-spacing:0.065880px;}
.lsc_c02106{letter-spacing:0.072468px;}
.ls9_c02106{letter-spacing:0.079056px;}
.lsb_c02106{letter-spacing:0.085644px;}
.ls7_c02106{letter-spacing:0.092232px;}
.ls5_c02106{letter-spacing:0.105408px;}
.lsd_c02106{letter-spacing:0.111996px;}
.ls17_c02106{letter-spacing:0.131760px;}
.lse_c02106{letter-spacing:0.158112px;}
.ls0_c02106{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02106{word-spacing:-16.489764px;}
.ws2_c02106{word-spacing:-16.483176px;}
.ws0_c02106{word-spacing:-16.470000px;}
.ws1d_c02106{word-spacing:-0.065880px;}
.wsa_c02106{word-spacing:-0.013176px;}
.ws4_c02106{word-spacing:0.000000px;}
.wse_c02106{word-spacing:0.013176px;}
.ws3_c02106{word-spacing:0.014400px;}
.ws2a_c02106{word-spacing:0.019764px;}
.wsb_c02106{word-spacing:0.032940px;}
.ws24_c02106{word-spacing:0.039528px;}
.ws10_c02106{word-spacing:0.059292px;}
.wsc_c02106{word-spacing:0.355752px;}
.ws2f_c02106{word-spacing:0.770796px;}
.ws27_c02106{word-spacing:1.870992px;}
.ws30_c02106{word-spacing:2.233332px;}
.wsd_c02106{word-spacing:3.287412px;}
.ws1f_c02106{word-spacing:4.012092px;}
.ws23_c02106{word-spacing:4.025268px;}
.ws1c_c02106{word-spacing:4.315140px;}
.ws1b_c02106{word-spacing:4.348080px;}
.ws28_c02106{word-spacing:5.066172px;}
.ws6_c02106{word-spacing:5.099112px;}
.ws29_c02106{word-spacing:5.132052px;}
.ws20_c02106{word-spacing:6.548472px;}
.ws25_c02106{word-spacing:6.943752px;}
.ws2c_c02106{word-spacing:7.582788px;}
.ws1e_c02106{word-spacing:8.702748px;}
.ws2d_c02106{word-spacing:9.737064px;}
.ws2e_c02106{word-spacing:9.809532px;}
.ws26_c02106{word-spacing:10.830672px;}
.ws11_c02106{word-spacing:11.911104px;}
.ws17_c02106{word-spacing:13.373640px;}
.ws18_c02106{word-spacing:15.455448px;}
.ws31_c02106{word-spacing:17.352792px;}
.wsf_c02106{word-spacing:18.742860px;}
.ws9_c02106{word-spacing:19.500480px;}
.ws8_c02106{word-spacing:20.903724px;}
.ws16_c02106{word-spacing:26.299296px;}
.ws1a_c02106{word-spacing:27.017388px;}
.ws12_c02106{word-spacing:27.399492px;}
.ws2b_c02106{word-spacing:31.398408px;}
.ws7_c02106{word-spacing:35.674020px;}
.ws21_c02106{word-spacing:42.868116px;}
.ws22_c02106{word-spacing:42.881292px;}
.ws13_c02106{word-spacing:45.766836px;}
.ws5_c02106{word-spacing:45.806796px;}
.ws14_c02106{word-spacing:48.243924px;}
.ws15_c02106{word-spacing:48.276864px;}
.ws19_c02106{word-spacing:61.242048px;}
._a_c02106{margin-left:-1.469124px;}
._9_c02106{width:1.311012px;}
._7_c02106{width:2.523276px;}
._8_c02106{width:3.587076px;}
._6_c02106{width:6.482952px;}
._3_c02106{width:39.510720px;}
._2_c02106{width:40.590720px;}
._5_c02106{width:55.534464px;}
._1_c02106{width:74.210472px;}
._0_c02106{width:194.400000px;}
._4_c02106{width:1496.476440px;}
.fc0_c02106{color:rgb(0,0,0);}
.fs1_c02106{font-size:42.120000px;}
.fs3_c02106{font-size:47.880000px;}
.fs2_c02106{font-size:60.120000px;}
.fs4_c02106{font-size:65.880000px;}
.fs0_c02106{font-size:72.000000px;}
.y0_c02106{bottom:0.000000px;}
.y3_c02106{bottom:57.360450px;}
.y2_c02106{bottom:78.060450px;}
.y42_c02106{bottom:124.860450px;}
.y41_c02106{bottom:145.200630px;}
.y40_c02106{bottom:164.190540px;}
.y3f_c02106{bottom:183.180450px;}
.y3e_c02106{bottom:202.530600px;}
.y3d_c02106{bottom:222.871395px;}
.y3c_c02106{bottom:241.861305px;}
.y3b_c02106{bottom:260.760630px;}
.y44_c02106{bottom:278.220450px;}
.y3a_c02106{bottom:279.750540px;}
.y43_c02106{bottom:298.650450px;}
.y39_c02106{bottom:304.410450px;}
.y36_c02106{bottom:318.810450px;}
.y35_c02106{bottom:339.150870px;}
.y34_c02106{bottom:358.140780px;}
.y33_c02106{bottom:377.130690px;}
.y32_c02106{bottom:396.120600px;}
.y38_c02106{bottom:413.490450px;}
.y31_c02106{bottom:415.020600px;}
.y37_c02106{bottom:433.920450px;}
.y30_c02106{bottom:439.680600px;}
.y2d_c02106{bottom:454.080450px;}
.y2c_c02106{bottom:474.421575px;}
.y2b_c02106{bottom:493.411485px;}
.y2a_c02106{bottom:512.401395px;}
.y29_c02106{bottom:531.391305px;}
.y28_c02106{bottom:550.381215px;}
.y2f_c02106{bottom:567.750450px;}
.y27_c02106{bottom:569.280540px;}
.y2e_c02106{bottom:588.180450px;}
.y26_c02106{bottom:593.940450px;}
.y23_c02106{bottom:608.340450px;}
.y22_c02106{bottom:628.680630px;}
.y25_c02106{bottom:646.140450px;}
.y21_c02106{bottom:647.670540px;}
.y24_c02106{bottom:666.570450px;}
.y20_c02106{bottom:672.330450px;}
.y1d_c02106{bottom:685.560162px;}
.y1c_c02106{bottom:699.330450px;}
.y1b_c02106{bottom:714.002430px;}
.y1a_c02106{bottom:732.992340px;}
.y19_c02106{bottom:751.891665px;}
.y18_c02106{bottom:770.881575px;}
.y17_c02106{bottom:789.871485px;}
.y16_c02106{bottom:808.861395px;}
.y15_c02106{bottom:827.851305px;}
.y14_c02106{bottom:846.750630px;}
.y13_c02106{bottom:865.740540px;}
.y12_c02106{bottom:884.730450px;}
.y11_c02106{bottom:902.820450px;}
.y10_c02106{bottom:917.490540px;}
.yf_c02106{bottom:936.480450px;}
.ye_c02106{bottom:954.570450px;}
.yd_c02106{bottom:969.240630px;}
.yc_c02106{bottom:988.230540px;}
.yb_c02106{bottom:1007.220450px;}
.ya_c02106{bottom:1026.570450px;}
.y9_c02106{bottom:1046.911395px;}
.y8_c02106{bottom:1065.810720px;}
.y7_c02106{bottom:1084.800630px;}
.y1f_c02106{bottom:1103.700540px;}
.y6_c02106{bottom:1103.790540px;}
.y1e_c02106{bottom:1122.690450px;}
.y5_c02106{bottom:1128.450450px;}
.y4_c02106{bottom:1146.270450px;}
.y1_c02106{bottom:1193.160450px;}
.h4_c02106{height:36.957832px;}
.h3_c02106{height:37.410293px;}
.h8_c02106{height:42.011895px;}
.h5_c02106{height:57.805840px;}
.hb_c02106{height:58.513535px;}
.ha_c02106{height:63.167861px;}
.hc_c02106{height:63.171281px;}
.h6_c02106{height:63.172001px;}
.he_c02106{height:63.172601px;}
.hd_c02106{height:63.174101px;}
.h7_c02106{height:63.175061px;}
.h9_c02106{height:63.175421px;}
.h2_c02106{height:63.175781px;}
.h1_c02106{height:63.949219px;}
.h0_c02106{height:1263.000000px;}
.w1_c02106{width:892.500000px;}
.w0_c02106{width:892.830000px;}
.x0_c02106{left:0.000000px;}
.x1_c02106{left:127.620000px;}
.x3_c02106{left:135.630000px;}
.x4_c02106{left:274.140000px;}
.x2_c02106{left:437.580000px;}
.x5_c02106{left:721.980000px;}
.x6_c02106{left:739.800000px;}
@media print{
.v4_c02106{vertical-align:-20.160000pt;}
.v1_c02106{vertical-align:-15.039467pt;}
.v3_c02106{vertical-align:-4.800000pt;}
.v0_c02106{vertical-align:0.000000pt;}
.v2_c02106{vertical-align:9.919467pt;}
.ls16_c02106{letter-spacing:-0.160992pt;}
.ls14_c02106{letter-spacing:-0.160320pt;}
.ls13_c02106{letter-spacing:-0.157248pt;}
.ls11_c02106{letter-spacing:-0.012800pt;}
.ls18_c02106{letter-spacing:-0.011712pt;}
.ls12_c02106{letter-spacing:0.000000pt;}
.ls10_c02106{letter-spacing:0.011712pt;}
.lsf_c02106{letter-spacing:0.017568pt;}
.ls4_c02106{letter-spacing:0.023424pt;}
.ls1_c02106{letter-spacing:0.029280pt;}
.ls8_c02106{letter-spacing:0.035136pt;}
.lsa_c02106{letter-spacing:0.040992pt;}
.ls2_c02106{letter-spacing:0.046848pt;}
.ls6_c02106{letter-spacing:0.052704pt;}
.ls15_c02106{letter-spacing:0.055328pt;}
.ls3_c02106{letter-spacing:0.058560pt;}
.lsc_c02106{letter-spacing:0.064416pt;}
.ls9_c02106{letter-spacing:0.070272pt;}
.lsb_c02106{letter-spacing:0.076128pt;}
.ls7_c02106{letter-spacing:0.081984pt;}
.ls5_c02106{letter-spacing:0.093696pt;}
.lsd_c02106{letter-spacing:0.099552pt;}
.ls17_c02106{letter-spacing:0.117120pt;}
.lse_c02106{letter-spacing:0.140544pt;}
.ls0_c02106{letter-spacing:0.161728pt;}
.ws1_c02106{word-spacing:-14.657568pt;}
.ws2_c02106{word-spacing:-14.651712pt;}
.ws0_c02106{word-spacing:-14.640000pt;}
.ws1d_c02106{word-spacing:-0.058560pt;}
.wsa_c02106{word-spacing:-0.011712pt;}
.ws4_c02106{word-spacing:0.000000pt;}
.wse_c02106{word-spacing:0.011712pt;}
.ws3_c02106{word-spacing:0.012800pt;}
.ws2a_c02106{word-spacing:0.017568pt;}
.wsb_c02106{word-spacing:0.029280pt;}
.ws24_c02106{word-spacing:0.035136pt;}
.ws10_c02106{word-spacing:0.052704pt;}
.wsc_c02106{word-spacing:0.316224pt;}
.ws2f_c02106{word-spacing:0.685152pt;}
.ws27_c02106{word-spacing:1.663104pt;}
.ws30_c02106{word-spacing:1.985184pt;}
.wsd_c02106{word-spacing:2.922144pt;}
.ws1f_c02106{word-spacing:3.566304pt;}
.ws23_c02106{word-spacing:3.578016pt;}
.ws1c_c02106{word-spacing:3.835680pt;}
.ws1b_c02106{word-spacing:3.864960pt;}
.ws28_c02106{word-spacing:4.503264pt;}
.ws6_c02106{word-spacing:4.532544pt;}
.ws29_c02106{word-spacing:4.561824pt;}
.ws20_c02106{word-spacing:5.820864pt;}
.ws25_c02106{word-spacing:6.172224pt;}
.ws2c_c02106{word-spacing:6.740256pt;}
.ws1e_c02106{word-spacing:7.735776pt;}
.ws2d_c02106{word-spacing:8.655168pt;}
.ws2e_c02106{word-spacing:8.719584pt;}
.ws26_c02106{word-spacing:9.627264pt;}
.ws11_c02106{word-spacing:10.587648pt;}
.ws17_c02106{word-spacing:11.887680pt;}
.ws18_c02106{word-spacing:13.738176pt;}
.ws31_c02106{word-spacing:15.424704pt;}
.wsf_c02106{word-spacing:16.660320pt;}
.ws9_c02106{word-spacing:17.333760pt;}
.ws8_c02106{word-spacing:18.581088pt;}
.ws16_c02106{word-spacing:23.377152pt;}
.ws1a_c02106{word-spacing:24.015456pt;}
.ws12_c02106{word-spacing:24.355104pt;}
.ws2b_c02106{word-spacing:27.909696pt;}
.ws7_c02106{word-spacing:31.710240pt;}
.ws21_c02106{word-spacing:38.104992pt;}
.ws22_c02106{word-spacing:38.116704pt;}
.ws13_c02106{word-spacing:40.681632pt;}
.ws5_c02106{word-spacing:40.717152pt;}
.ws14_c02106{word-spacing:42.883488pt;}
.ws15_c02106{word-spacing:42.912768pt;}
.ws19_c02106{word-spacing:54.437376pt;}
._a_c02106{margin-left:-1.305888pt;}
._9_c02106{width:1.165344pt;}
._7_c02106{width:2.242912pt;}
._8_c02106{width:3.188512pt;}
._6_c02106{width:5.762624pt;}
._3_c02106{width:35.120640pt;}
._2_c02106{width:36.080640pt;}
._5_c02106{width:49.363968pt;}
._1_c02106{width:65.964864pt;}
._0_c02106{width:172.800000pt;}
._4_c02106{width:1330.201280pt;}
.fs1_c02106{font-size:37.440000pt;}
.fs3_c02106{font-size:42.560000pt;}
.fs2_c02106{font-size:53.440000pt;}
.fs4_c02106{font-size:58.560000pt;}
.fs0_c02106{font-size:64.000000pt;}
.y0_c02106{bottom:0.000000pt;}
.y3_c02106{bottom:50.987067pt;}
.y2_c02106{bottom:69.387067pt;}
.y42_c02106{bottom:110.987067pt;}
.y41_c02106{bottom:129.067227pt;}
.y40_c02106{bottom:145.947147pt;}
.y3f_c02106{bottom:162.827067pt;}
.y3e_c02106{bottom:180.027200pt;}
.y3d_c02106{bottom:198.107907pt;}
.y3c_c02106{bottom:214.987827pt;}
.y3b_c02106{bottom:231.787227pt;}
.y44_c02106{bottom:247.307067pt;}
.y3a_c02106{bottom:248.667147pt;}
.y43_c02106{bottom:265.467067pt;}
.y39_c02106{bottom:270.587067pt;}
.y36_c02106{bottom:283.387067pt;}
.y35_c02106{bottom:301.467440pt;}
.y34_c02106{bottom:318.347360pt;}
.y33_c02106{bottom:335.227280pt;}
.y32_c02106{bottom:352.107200pt;}
.y38_c02106{bottom:367.547067pt;}
.y31_c02106{bottom:368.907200pt;}
.y37_c02106{bottom:385.707067pt;}
.y30_c02106{bottom:390.827200pt;}
.y2d_c02106{bottom:403.627067pt;}
.y2c_c02106{bottom:421.708067pt;}
.y2b_c02106{bottom:438.587987pt;}
.y2a_c02106{bottom:455.467907pt;}
.y29_c02106{bottom:472.347827pt;}
.y28_c02106{bottom:489.227747pt;}
.y2f_c02106{bottom:504.667067pt;}
.y27_c02106{bottom:506.027147pt;}
.y2e_c02106{bottom:522.827067pt;}
.y26_c02106{bottom:527.947067pt;}
.y23_c02106{bottom:540.747067pt;}
.y22_c02106{bottom:558.827227pt;}
.y25_c02106{bottom:574.347067pt;}
.y21_c02106{bottom:575.707147pt;}
.y24_c02106{bottom:592.507067pt;}
.y20_c02106{bottom:597.627067pt;}
.y1d_c02106{bottom:609.386811pt;}
.y1c_c02106{bottom:621.627067pt;}
.y1b_c02106{bottom:634.668827pt;}
.y1a_c02106{bottom:651.548747pt;}
.y19_c02106{bottom:668.348147pt;}
.y18_c02106{bottom:685.228067pt;}
.y17_c02106{bottom:702.107987pt;}
.y16_c02106{bottom:718.987907pt;}
.y15_c02106{bottom:735.867827pt;}
.y14_c02106{bottom:752.667227pt;}
.y13_c02106{bottom:769.547147pt;}
.y12_c02106{bottom:786.427067pt;}
.y11_c02106{bottom:802.507067pt;}
.y10_c02106{bottom:815.547147pt;}
.yf_c02106{bottom:832.427067pt;}
.ye_c02106{bottom:848.507067pt;}
.yd_c02106{bottom:861.547227pt;}
.yc_c02106{bottom:878.427147pt;}
.yb_c02106{bottom:895.307067pt;}
.ya_c02106{bottom:912.507067pt;}
.y9_c02106{bottom:930.587907pt;}
.y8_c02106{bottom:947.387307pt;}
.y7_c02106{bottom:964.267227pt;}
.y1f_c02106{bottom:981.067147pt;}
.y6_c02106{bottom:981.147147pt;}
.y1e_c02106{bottom:997.947067pt;}
.y5_c02106{bottom:1003.067067pt;}
.y4_c02106{bottom:1018.907067pt;}
.y1_c02106{bottom:1060.587067pt;}
.h4_c02106{height:32.851406pt;}
.h3_c02106{height:33.253594pt;}
.h8_c02106{height:37.343906pt;}
.h5_c02106{height:51.382969pt;}
.hb_c02106{height:52.012031pt;}
.ha_c02106{height:56.149210pt;}
.hc_c02106{height:56.152250pt;}
.h6_c02106{height:56.152890pt;}
.he_c02106{height:56.153423pt;}
.hd_c02106{height:56.154757pt;}
.h7_c02106{height:56.155610pt;}
.h9_c02106{height:56.155930pt;}
.h2_c02106{height:56.156250pt;}
.h1_c02106{height:56.843750pt;}
.h0_c02106{height:1122.666667pt;}
.w1_c02106{width:793.333333pt;}
.w0_c02106{width:793.626667pt;}
.x0_c02106{left:0.000000pt;}
.x1_c02106{left:113.440000pt;}
.x3_c02106{left:120.560000pt;}
.x4_c02106{left:243.680000pt;}
.x2_c02106{left:388.960000pt;}
.x5_c02106{left:641.760000pt;}
.x6_c02106{left:657.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_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_d62a37c62d54ab21ecef4def.woff2')format("woff");}.ff1_c02107{font-family:ff1_c02107;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02107;src:url('chunks/assets/font_e92710873fd7845a95115577.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;}
.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);}
.v4_c02107{vertical-align:-22.680000px;}
.v1_c02107{vertical-align:-16.919400px;}
.v3_c02107{vertical-align:-5.400000px;}
.v0_c02107{vertical-align:0.000000px;}
.v2_c02107{vertical-align:11.159400px;}
.ls14_c02107{letter-spacing:-0.181116px;}
.ls12_c02107{letter-spacing:-0.180360px;}
.ls11_c02107{letter-spacing:-0.176904px;}
.lsf_c02107{letter-spacing:-0.014400px;}
.ls10_c02107{letter-spacing:0.000000px;}
.lsd_c02107{letter-spacing:0.019764px;}
.ls2_c02107{letter-spacing:0.026352px;}
.lse_c02107{letter-spacing:0.032940px;}
.ls7_c02107{letter-spacing:0.039528px;}
.lsb_c02107{letter-spacing:0.046116px;}
.lsc_c02107{letter-spacing:0.052704px;}
.ls3_c02107{letter-spacing:0.059292px;}
.ls13_c02107{letter-spacing:0.062244px;}
.lsa_c02107{letter-spacing:0.065880px;}
.ls4_c02107{letter-spacing:0.072468px;}
.ls1_c02107{letter-spacing:0.079056px;}
.ls5_c02107{letter-spacing:0.085644px;}
.ls6_c02107{letter-spacing:0.092232px;}
.ls9_c02107{letter-spacing:0.105408px;}
.ls8_c02107{letter-spacing:0.111996px;}
.ls15_c02107{letter-spacing:0.131760px;}
.ls0_c02107{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02107{word-spacing:0.000000px;}
.ws7_c02107{word-spacing:0.006588px;}
.ws0_c02107{word-spacing:0.014400px;}
.ws1b_c02107{word-spacing:0.032940px;}
.ws16_c02107{word-spacing:0.039528px;}
.wsc_c02107{word-spacing:0.052704px;}
.ws25_c02107{word-spacing:0.065880px;}
.ws1c_c02107{word-spacing:0.401868px;}
.ws24_c02107{word-spacing:0.751032px;}
.ws18_c02107{word-spacing:1.857816px;}
.wsb_c02107{word-spacing:3.939624px;}
.wsa_c02107{word-spacing:3.992328px;}
.ws1f_c02107{word-spacing:3.998916px;}
.ws22_c02107{word-spacing:4.361256px;}
.ws10_c02107{word-spacing:5.059584px;}
.ws9_c02107{word-spacing:5.092524px;}
.ws6_c02107{word-spacing:5.777676px;}
.ws5_c02107{word-spacing:5.790852px;}
.ws3_c02107{word-spacing:6.133428px;}
.ws4_c02107{word-spacing:6.186132px;}
.ws8_c02107{word-spacing:6.838344px;}
.ws1e_c02107{word-spacing:7.266564px;}
.ws12_c02107{word-spacing:7.569612px;}
.ws13_c02107{word-spacing:7.582788px;}
.ws17_c02107{word-spacing:10.507860px;}
.ws11_c02107{word-spacing:11.561940px;}
.ws23_c02107{word-spacing:12.662136px;}
.ws20_c02107{word-spacing:12.984948px;}
.ws21_c02107{word-spacing:12.991536px;}
.ws1a_c02107{word-spacing:13.353876px;}
.wse_c02107{word-spacing:15.462036px;}
.wsd_c02107{word-spacing:15.494976px;}
.ws19_c02107{word-spacing:15.903432px;}
.wsf_c02107{word-spacing:17.662428px;}
.ws15_c02107{word-spacing:22.326732px;}
.ws14_c02107{word-spacing:22.366260px;}
.ws1d_c02107{word-spacing:36.728100px;}
.ws2_c02107{word-spacing:45.806796px;}
._b_c02107{margin-left:-3.827628px;}
._9_c02107{margin-left:-1.021140px;}
._a_c02107{width:1.212192px;}
._7_c02107{width:2.523276px;}
._8_c02107{width:3.587076px;}
._6_c02107{width:6.482952px;}
._3_c02107{width:39.510720px;}
._2_c02107{width:40.590720px;}
._5_c02107{width:55.534464px;}
._1_c02107{width:74.210472px;}
._0_c02107{width:194.400000px;}
._4_c02107{width:1496.476440px;}
.fc0_c02107{color:rgb(0,0,0);}
.fs1_c02107{font-size:42.120000px;}
.fs3_c02107{font-size:47.880000px;}
.fs2_c02107{font-size:60.120000px;}
.fs4_c02107{font-size:65.880000px;}
.fs0_c02107{font-size:72.000000px;}
.y0_c02107{bottom:0.000000px;}
.y3_c02107{bottom:57.360450px;}
.y2_c02107{bottom:78.060450px;}
.y3d_c02107{bottom:139.710450px;}
.y3c_c02107{bottom:170.580450px;}
.y3b_c02107{bottom:191.280450px;}
.y3a_c02107{bottom:211.980450px;}
.y39_c02107{bottom:232.680450px;}
.y38_c02107{bottom:253.290450px;}
.y37_c02107{bottom:273.990450px;}
.y36_c02107{bottom:294.690450px;}
.y35_c02107{bottom:315.390450px;}
.y34_c02107{bottom:336.090450px;}
.y33_c02107{bottom:356.790450px;}
.y32_c02107{bottom:377.490450px;}
.y31_c02107{bottom:398.190450px;}
.y30_c02107{bottom:417.900162px;}
.y2f_c02107{bottom:431.670450px;}
.y2d_c02107{bottom:447.420450px;}
.y2c_c02107{bottom:467.761755px;}
.y2b_c02107{bottom:486.751665px;}
.y2a_c02107{bottom:505.741575px;}
.y29_c02107{bottom:524.731485px;}
.y28_c02107{bottom:543.630810px;}
.y27_c02107{bottom:562.620720px;}
.y26_c02107{bottom:581.610630px;}
.y25_c02107{bottom:600.600540px;}
.y24_c02107{bottom:619.590450px;}
.y23_c02107{bottom:638.940450px;}
.y22_c02107{bottom:659.190720px;}
.y21_c02107{bottom:678.180630px;}
.y20_c02107{bottom:697.170540px;}
.y2e_c02107{bottom:716.070450px;}
.y1f_c02107{bottom:721.830450px;}
.y1d_c02107{bottom:736.230450px;}
.y1c_c02107{bottom:756.570450px;}
.y1b_c02107{bottom:775.560450px;}
.y1e_c02107{bottom:794.460450px;}
.y1a_c02107{bottom:800.220450px;}
.y17_c02107{bottom:814.620450px;}
.y16_c02107{bottom:834.961215px;}
.y15_c02107{bottom:853.951125px;}
.y14_c02107{bottom:872.850450px;}
.y13_c02107{bottom:891.840450px;}
.y12_c02107{bottom:910.831305px;}
.y11_c02107{bottom:929.821215px;}
.y19_c02107{bottom:947.280450px;}
.y10_c02107{bottom:948.811125px;}
.y18_c02107{bottom:967.620450px;}
.yf_c02107{bottom:973.380450px;}
.yd_c02107{bottom:987.511305px;}
.yc_c02107{bottom:1006.410630px;}
.yb_c02107{bottom:1025.400540px;}
.ye_c02107{bottom:1044.301512px;}
.ya_c02107{bottom:1049.880450px;}
.y8_c02107{bottom:1064.460450px;}
.y7_c02107{bottom:1084.800630px;}
.y6_c02107{bottom:1103.790540px;}
.y9_c02107{bottom:1122.690450px;}
.y5_c02107{bottom:1128.450450px;}
.y4_c02107{bottom:1146.270450px;}
.y1_c02107{bottom:1193.160450px;}
.h4_c02107{height:36.957832px;}
.h3_c02107{height:37.410293px;}
.hb_c02107{height:42.011895px;}
.h5_c02107{height:57.805840px;}
.h7_c02107{height:58.513535px;}
.ha_c02107{height:63.170561px;}
.h8_c02107{height:63.172721px;}
.h9_c02107{height:63.174701px;}
.h6_c02107{height:63.175061px;}
.h2_c02107{height:63.175781px;}
.h1_c02107{height:63.949219px;}
.h0_c02107{height:1263.000000px;}
.w1_c02107{width:892.500000px;}
.w0_c02107{width:892.830000px;}
.x0_c02107{left:0.000000px;}
.x1_c02107{left:127.620000px;}
.x3_c02107{left:135.630000px;}
.x4_c02107{left:274.140000px;}
.x2_c02107{left:437.580000px;}
.x5_c02107{left:721.440000px;}
.x6_c02107{left:739.800000px;}
@media print{
.v4_c02107{vertical-align:-20.160000pt;}
.v1_c02107{vertical-align:-15.039467pt;}
.v3_c02107{vertical-align:-4.800000pt;}
.v0_c02107{vertical-align:0.000000pt;}
.v2_c02107{vertical-align:9.919467pt;}
.ls14_c02107{letter-spacing:-0.160992pt;}
.ls12_c02107{letter-spacing:-0.160320pt;}
.ls11_c02107{letter-spacing:-0.157248pt;}
.lsf_c02107{letter-spacing:-0.012800pt;}
.ls10_c02107{letter-spacing:0.000000pt;}
.lsd_c02107{letter-spacing:0.017568pt;}
.ls2_c02107{letter-spacing:0.023424pt;}
.lse_c02107{letter-spacing:0.029280pt;}
.ls7_c02107{letter-spacing:0.035136pt;}
.lsb_c02107{letter-spacing:0.040992pt;}
.lsc_c02107{letter-spacing:0.046848pt;}
.ls3_c02107{letter-spacing:0.052704pt;}
.ls13_c02107{letter-spacing:0.055328pt;}
.lsa_c02107{letter-spacing:0.058560pt;}
.ls4_c02107{letter-spacing:0.064416pt;}
.ls1_c02107{letter-spacing:0.070272pt;}
.ls5_c02107{letter-spacing:0.076128pt;}
.ls6_c02107{letter-spacing:0.081984pt;}
.ls9_c02107{letter-spacing:0.093696pt;}
.ls8_c02107{letter-spacing:0.099552pt;}
.ls15_c02107{letter-spacing:0.117120pt;}
.ls0_c02107{letter-spacing:0.161728pt;}
.ws1_c02107{word-spacing:0.000000pt;}
.ws7_c02107{word-spacing:0.005856pt;}
.ws0_c02107{word-spacing:0.012800pt;}
.ws1b_c02107{word-spacing:0.029280pt;}
.ws16_c02107{word-spacing:0.035136pt;}
.wsc_c02107{word-spacing:0.046848pt;}
.ws25_c02107{word-spacing:0.058560pt;}
.ws1c_c02107{word-spacing:0.357216pt;}
.ws24_c02107{word-spacing:0.667584pt;}
.ws18_c02107{word-spacing:1.651392pt;}
.wsb_c02107{word-spacing:3.501888pt;}
.wsa_c02107{word-spacing:3.548736pt;}
.ws1f_c02107{word-spacing:3.554592pt;}
.ws22_c02107{word-spacing:3.876672pt;}
.ws10_c02107{word-spacing:4.497408pt;}
.ws9_c02107{word-spacing:4.526688pt;}
.ws6_c02107{word-spacing:5.135712pt;}
.ws5_c02107{word-spacing:5.147424pt;}
.ws3_c02107{word-spacing:5.451936pt;}
.ws4_c02107{word-spacing:5.498784pt;}
.ws8_c02107{word-spacing:6.078528pt;}
.ws1e_c02107{word-spacing:6.459168pt;}
.ws12_c02107{word-spacing:6.728544pt;}
.ws13_c02107{word-spacing:6.740256pt;}
.ws17_c02107{word-spacing:9.340320pt;}
.ws11_c02107{word-spacing:10.277280pt;}
.ws23_c02107{word-spacing:11.255232pt;}
.ws20_c02107{word-spacing:11.542176pt;}
.ws21_c02107{word-spacing:11.548032pt;}
.ws1a_c02107{word-spacing:11.870112pt;}
.wse_c02107{word-spacing:13.744032pt;}
.wsd_c02107{word-spacing:13.773312pt;}
.ws19_c02107{word-spacing:14.136384pt;}
.wsf_c02107{word-spacing:15.699936pt;}
.ws15_c02107{word-spacing:19.845984pt;}
.ws14_c02107{word-spacing:19.881120pt;}
.ws1d_c02107{word-spacing:32.647200pt;}
.ws2_c02107{word-spacing:40.717152pt;}
._b_c02107{margin-left:-3.402336pt;}
._9_c02107{margin-left:-0.907680pt;}
._a_c02107{width:1.077504pt;}
._7_c02107{width:2.242912pt;}
._8_c02107{width:3.188512pt;}
._6_c02107{width:5.762624pt;}
._3_c02107{width:35.120640pt;}
._2_c02107{width:36.080640pt;}
._5_c02107{width:49.363968pt;}
._1_c02107{width:65.964864pt;}
._0_c02107{width:172.800000pt;}
._4_c02107{width:1330.201280pt;}
.fs1_c02107{font-size:37.440000pt;}
.fs3_c02107{font-size:42.560000pt;}
.fs2_c02107{font-size:53.440000pt;}
.fs4_c02107{font-size:58.560000pt;}
.fs0_c02107{font-size:64.000000pt;}
.y0_c02107{bottom:0.000000pt;}
.y3_c02107{bottom:50.987067pt;}
.y2_c02107{bottom:69.387067pt;}
.y3d_c02107{bottom:124.187067pt;}
.y3c_c02107{bottom:151.627067pt;}
.y3b_c02107{bottom:170.027067pt;}
.y3a_c02107{bottom:188.427067pt;}
.y39_c02107{bottom:206.827067pt;}
.y38_c02107{bottom:225.147067pt;}
.y37_c02107{bottom:243.547067pt;}
.y36_c02107{bottom:261.947067pt;}
.y35_c02107{bottom:280.347067pt;}
.y34_c02107{bottom:298.747067pt;}
.y33_c02107{bottom:317.147067pt;}
.y32_c02107{bottom:335.547067pt;}
.y31_c02107{bottom:353.947067pt;}
.y30_c02107{bottom:371.466811pt;}
.y2f_c02107{bottom:383.707067pt;}
.y2d_c02107{bottom:397.707067pt;}
.y2c_c02107{bottom:415.788227pt;}
.y2b_c02107{bottom:432.668147pt;}
.y2a_c02107{bottom:449.548067pt;}
.y29_c02107{bottom:466.427987pt;}
.y28_c02107{bottom:483.227387pt;}
.y27_c02107{bottom:500.107307pt;}
.y26_c02107{bottom:516.987227pt;}
.y25_c02107{bottom:533.867147pt;}
.y24_c02107{bottom:550.747067pt;}
.y23_c02107{bottom:567.947067pt;}
.y22_c02107{bottom:585.947307pt;}
.y21_c02107{bottom:602.827227pt;}
.y20_c02107{bottom:619.707147pt;}
.y2e_c02107{bottom:636.507067pt;}
.y1f_c02107{bottom:641.627067pt;}
.y1d_c02107{bottom:654.427067pt;}
.y1c_c02107{bottom:672.507067pt;}
.y1b_c02107{bottom:689.387067pt;}
.y1e_c02107{bottom:706.187067pt;}
.y1a_c02107{bottom:711.307067pt;}
.y17_c02107{bottom:724.107067pt;}
.y16_c02107{bottom:742.187747pt;}
.y15_c02107{bottom:759.067667pt;}
.y14_c02107{bottom:775.867067pt;}
.y13_c02107{bottom:792.747067pt;}
.y12_c02107{bottom:809.627827pt;}
.y11_c02107{bottom:826.507747pt;}
.y19_c02107{bottom:842.027067pt;}
.y10_c02107{bottom:843.387667pt;}
.y18_c02107{bottom:860.107067pt;}
.yf_c02107{bottom:865.227067pt;}
.yd_c02107{bottom:877.787827pt;}
.yc_c02107{bottom:894.587227pt;}
.yb_c02107{bottom:911.467147pt;}
.ye_c02107{bottom:928.268011pt;}
.ya_c02107{bottom:933.227067pt;}
.y8_c02107{bottom:946.187067pt;}
.y7_c02107{bottom:964.267227pt;}
.y6_c02107{bottom:981.147147pt;}
.y9_c02107{bottom:997.947067pt;}
.y5_c02107{bottom:1003.067067pt;}
.y4_c02107{bottom:1018.907067pt;}
.y1_c02107{bottom:1060.587067pt;}
.h4_c02107{height:32.851406pt;}
.h3_c02107{height:33.253594pt;}
.hb_c02107{height:37.343906pt;}
.h5_c02107{height:51.382969pt;}
.h7_c02107{height:52.012031pt;}
.ha_c02107{height:56.151610pt;}
.h8_c02107{height:56.153530pt;}
.h9_c02107{height:56.155290pt;}
.h6_c02107{height:56.155610pt;}
.h2_c02107{height:56.156250pt;}
.h1_c02107{height:56.843750pt;}
.h0_c02107{height:1122.666667pt;}
.w1_c02107{width:793.333333pt;}
.w0_c02107{width:793.626667pt;}
.x0_c02107{left:0.000000pt;}
.x1_c02107{left:113.440000pt;}
.x3_c02107{left:120.560000pt;}
.x4_c02107{left:243.680000pt;}
.x2_c02107{left:388.960000pt;}
.x5_c02107{left:641.280000pt;}
.x6_c02107{left:657.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_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_3bc20d098dab716ce63f8d0e.woff2')format("woff");}.ff1_c02108{font-family:ff1_c02108;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02108;src:url('chunks/assets/font_ce2d8bcb00d1ecd83d56c282.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02108{font-family:ff3_c02108;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;}
.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);}
.v1_c02108{vertical-align:-22.320000px;}
.v2_c02108{vertical-align:-5.760000px;}
.v0_c02108{vertical-align:0.000000px;}
.v3_c02108{vertical-align:11.160000px;}
.ls1b_c02108{letter-spacing:-0.360000px;}
.ls1c_c02108{letter-spacing:-0.176904px;}
.ls1e_c02108{letter-spacing:-0.090972px;}
.ls19_c02108{letter-spacing:-0.050400px;}
.ls1a_c02108{letter-spacing:-0.028800px;}
.ls18_c02108{letter-spacing:-0.021600px;}
.ls14_c02108{letter-spacing:-0.014400px;}
.ls16_c02108{letter-spacing:-0.007200px;}
.ls1f_c02108{letter-spacing:-0.006588px;}
.ls15_c02108{letter-spacing:0.000000px;}
.ls1_c02108{letter-spacing:0.007200px;}
.ls9_c02108{letter-spacing:0.013176px;}
.ls5_c02108{letter-spacing:0.014400px;}
.ls17_c02108{letter-spacing:0.021600px;}
.lse_c02108{letter-spacing:0.026352px;}
.ls2_c02108{letter-spacing:0.028800px;}
.lsf_c02108{letter-spacing:0.032940px;}
.ls0_c02108{letter-spacing:0.036000px;}
.ls3_c02108{letter-spacing:0.050400px;}
.ls11_c02108{letter-spacing:0.052704px;}
.ls4_c02108{letter-spacing:0.057600px;}
.lsd_c02108{letter-spacing:0.059292px;}
.ls6_c02108{letter-spacing:0.072000px;}
.ls7_c02108{letter-spacing:0.079056px;}
.ls8_c02108{letter-spacing:0.114912px;}
.ls20_c02108{letter-spacing:0.144288px;}
.ls1d_c02108{letter-spacing:0.180360px;}
.lsb_c02108{letter-spacing:0.181944px;}
.ls13_c02108{letter-spacing:0.210672px;}
.lsc_c02108{letter-spacing:0.239400px;}
.ls10_c02108{letter-spacing:66.960000px;}
.lsa_c02108{letter-spacing:1644.840000px;}
.ls12_c02108{letter-spacing:1770.570000px;}
.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;}
}
.ws2_c02108{word-spacing:-47.880000px;}
.ws0_c02108{word-spacing:-18.028800px;}
.ws1_c02108{word-spacing:-16.483176px;}
.ws21_c02108{word-spacing:-0.301644px;}
.ws1b_c02108{word-spacing:-0.272916px;}
.ws14_c02108{word-spacing:-0.252000px;}
.ws1a_c02108{word-spacing:-0.205884px;}
.ws17_c02108{word-spacing:-0.079200px;}
.ws5_c02108{word-spacing:-0.007200px;}
.ws4_c02108{word-spacing:0.000000px;}
.ws19_c02108{word-spacing:0.013176px;}
.ws3_c02108{word-spacing:0.014400px;}
.ws1c_c02108{word-spacing:0.032940px;}
.ws20_c02108{word-spacing:0.039528px;}
.ws1e_c02108{word-spacing:0.059292px;}
.ws1d_c02108{word-spacing:0.065880px;}
.ws1f_c02108{word-spacing:0.098820px;}
.ws18_c02108{word-spacing:0.360000px;}
.ws8_c02108{word-spacing:2.851200px;}
.wsa_c02108{word-spacing:2.872800px;}
.ws9_c02108{word-spacing:2.887200px;}
.ws12_c02108{word-spacing:9.216000px;}
.ws13_c02108{word-spacing:9.288000px;}
.ws15_c02108{word-spacing:10.303200px;}
.wsf_c02108{word-spacing:10.389600px;}
.ws11_c02108{word-spacing:10.404000px;}
.ws16_c02108{word-spacing:10.440000px;}
.ws10_c02108{word-spacing:10.468800px;}
.wsb_c02108{word-spacing:13.989600px;}
.wsc_c02108{word-spacing:14.018400px;}
.wsd_c02108{word-spacing:15.357600px;}
.wse_c02108{word-spacing:15.451200px;}
.ws7_c02108{word-spacing:30.110400px;}
.ws6_c02108{word-spacing:30.204000px;}
._1_c02108{margin-left:-1.440000px;}
._b_c02108{width:1.294560px;}
._2_c02108{width:10.440000px;}
._9_c02108{width:49.450896px;}
._5_c02108{width:51.748920px;}
._3_c02108{width:73.130472px;}
._0_c02108{width:194.400000px;}
._7_c02108{width:924.809544px;}
._a_c02108{width:948.924000px;}
._4_c02108{width:1103.001768px;}
._8_c02108{width:1127.548656px;}
._6_c02108{width:1176.820308px;}
.fc0_c02108{color:rgb(0,0,0);}
.fs2_c02108{font-size:42.120000px;}
.fs1_c02108{font-size:47.880000px;}
.fs5_c02108{font-size:54.000000px;}
.fs4_c02108{font-size:60.120000px;}
.fs3_c02108{font-size:65.880000px;}
.fs0_c02108{font-size:72.000000px;}
.y0_c02108{bottom:0.000000px;}
.y3_c02108{bottom:57.360450px;}
.y2_c02108{bottom:78.060450px;}
.y35_c02108{bottom:127.380000px;}
.y34_c02108{bottom:142.860450px;}
.y33_c02108{bottom:158.430000px;}
.y32_c02108{bottom:173.910450px;}
.y31_c02108{bottom:189.480000px;}
.y30_c02108{bottom:204.960450px;}
.y2f_c02108{bottom:220.530000px;}
.y2e_c02108{bottom:236.010450px;}
.y2d_c02108{bottom:251.580000px;}
.y2c_c02108{bottom:267.060450px;}
.y2b_c02108{bottom:282.630000px;}
.y2a_c02108{bottom:298.110450px;}
.y29_c02108{bottom:313.680000px;}
.y28_c02108{bottom:329.160450px;}
.y27_c02108{bottom:345.720450px;}
.y26_c02108{bottom:363.000600px;}
.y25_c02108{bottom:381.000600px;}
.y24_c02108{bottom:400.710600px;}
.y23_c02108{bottom:418.080450px;}
.y22_c02108{bottom:432.840600px;}
.y21_c02108{bottom:450.840600px;}
.y20_c02108{bottom:467.760450px;}
.y1e_c02108{bottom:486.120600px;}
.y1d_c02108{bottom:506.460600px;}
.y1f_c02108{bottom:509.250600px;}
.y1c_c02108{bottom:526.170450px;}
.y1b_c02108{bottom:545.880450px;}
.y1a_c02108{bottom:565.590450px;}
.y19_c02108{bottom:585.390450px;}
.y18_c02108{bottom:609.330450px;}
.y17_c02108{bottom:622.650450px;}
.y16_c02108{bottom:637.680450px;}
.y15_c02108{bottom:658.380450px;}
.y14_c02108{bottom:677.640450px;}
.y13_c02108{bottom:693.480450px;}
.y12_c02108{bottom:714.900450px;}
.y11_c02108{bottom:746.940450px;}
.y10_c02108{bottom:777.810450px;}
.yf_c02108{bottom:808.950450px;}
.ye_c02108{bottom:840.000450px;}
.yd_c02108{bottom:871.050450px;}
.yc_c02108{bottom:902.100450px;}
.yb_c02108{bottom:933.150450px;}
.ya_c02108{bottom:964.200450px;}
.y9_c02108{bottom:995.250450px;}
.y8_c02108{bottom:1026.300450px;}
.y7_c02108{bottom:1057.350450px;}
.y6_c02108{bottom:1088.220450px;}
.y5_c02108{bottom:1114.860450px;}
.y4_c02108{bottom:1139.970450px;}
.y1_c02108{bottom:1193.160450px;}
.h5_c02108{height:37.410293px;}
.h3_c02108{height:42.011895px;}
.h4_c02108{height:42.526230px;}
.h9_c02108{height:47.961914px;}
.h8_c02108{height:53.397598px;}
.h7_c02108{height:53.686230px;}
.h6_c02108{height:58.549219px;}
.h2_c02108{height:63.175781px;}
.h1_c02108{height:63.949219px;}
.h0_c02108{height:1263.000000px;}
.w1_c02108{width:892.500000px;}
.w0_c02108{width:892.830000px;}
.x0_c02108{left:0.000000px;}
.x1_c02108{left:127.620000px;}
.x4_c02108{left:135.630000px;}
.x6_c02108{left:146.340000px;}
.x3_c02108{left:148.950000px;}
.x5_c02108{left:156.960000px;}
.x7_c02108{left:178.200000px;}
.x2_c02108{left:437.580000px;}
.x8_c02108{left:667.260000px;}
@media print{
.v1_c02108{vertical-align:-19.840000pt;}
.v2_c02108{vertical-align:-5.120000pt;}
.v0_c02108{vertical-align:0.000000pt;}
.v3_c02108{vertical-align:9.920000pt;}
.ls1b_c02108{letter-spacing:-0.320000pt;}
.ls1c_c02108{letter-spacing:-0.157248pt;}
.ls1e_c02108{letter-spacing:-0.080864pt;}
.ls19_c02108{letter-spacing:-0.044800pt;}
.ls1a_c02108{letter-spacing:-0.025600pt;}
.ls18_c02108{letter-spacing:-0.019200pt;}
.ls14_c02108{letter-spacing:-0.012800pt;}
.ls16_c02108{letter-spacing:-0.006400pt;}
.ls1f_c02108{letter-spacing:-0.005856pt;}
.ls15_c02108{letter-spacing:0.000000pt;}
.ls1_c02108{letter-spacing:0.006400pt;}
.ls9_c02108{letter-spacing:0.011712pt;}
.ls5_c02108{letter-spacing:0.012800pt;}
.ls17_c02108{letter-spacing:0.019200pt;}
.lse_c02108{letter-spacing:0.023424pt;}
.ls2_c02108{letter-spacing:0.025600pt;}
.lsf_c02108{letter-spacing:0.029280pt;}
.ls0_c02108{letter-spacing:0.032000pt;}
.ls3_c02108{letter-spacing:0.044800pt;}
.ls11_c02108{letter-spacing:0.046848pt;}
.ls4_c02108{letter-spacing:0.051200pt;}
.lsd_c02108{letter-spacing:0.052704pt;}
.ls6_c02108{letter-spacing:0.064000pt;}
.ls7_c02108{letter-spacing:0.070272pt;}
.ls8_c02108{letter-spacing:0.102144pt;}
.ls20_c02108{letter-spacing:0.128256pt;}
.ls1d_c02108{letter-spacing:0.160320pt;}
.lsb_c02108{letter-spacing:0.161728pt;}
.ls13_c02108{letter-spacing:0.187264pt;}
.lsc_c02108{letter-spacing:0.212800pt;}
.ls10_c02108{letter-spacing:59.520000pt;}
.lsa_c02108{letter-spacing:1462.080000pt;}
.ls12_c02108{letter-spacing:1573.840000pt;}
.ws2_c02108{word-spacing:-42.560000pt;}
.ws0_c02108{word-spacing:-16.025600pt;}
.ws1_c02108{word-spacing:-14.651712pt;}
.ws21_c02108{word-spacing:-0.268128pt;}
.ws1b_c02108{word-spacing:-0.242592pt;}
.ws14_c02108{word-spacing:-0.224000pt;}
.ws1a_c02108{word-spacing:-0.183008pt;}
.ws17_c02108{word-spacing:-0.070400pt;}
.ws5_c02108{word-spacing:-0.006400pt;}
.ws4_c02108{word-spacing:0.000000pt;}
.ws19_c02108{word-spacing:0.011712pt;}
.ws3_c02108{word-spacing:0.012800pt;}
.ws1c_c02108{word-spacing:0.029280pt;}
.ws20_c02108{word-spacing:0.035136pt;}
.ws1e_c02108{word-spacing:0.052704pt;}
.ws1d_c02108{word-spacing:0.058560pt;}
.ws1f_c02108{word-spacing:0.087840pt;}
.ws18_c02108{word-spacing:0.320000pt;}
.ws8_c02108{word-spacing:2.534400pt;}
.wsa_c02108{word-spacing:2.553600pt;}
.ws9_c02108{word-spacing:2.566400pt;}
.ws12_c02108{word-spacing:8.192000pt;}
.ws13_c02108{word-spacing:8.256000pt;}
.ws15_c02108{word-spacing:9.158400pt;}
.wsf_c02108{word-spacing:9.235200pt;}
.ws11_c02108{word-spacing:9.248000pt;}
.ws16_c02108{word-spacing:9.280000pt;}
.ws10_c02108{word-spacing:9.305600pt;}
.wsb_c02108{word-spacing:12.435200pt;}
.wsc_c02108{word-spacing:12.460800pt;}
.wsd_c02108{word-spacing:13.651200pt;}
.wse_c02108{word-spacing:13.734400pt;}
.ws7_c02108{word-spacing:26.764800pt;}
.ws6_c02108{word-spacing:26.848000pt;}
._1_c02108{margin-left:-1.280000pt;}
._b_c02108{width:1.150720pt;}
._2_c02108{width:9.280000pt;}
._9_c02108{width:43.956352pt;}
._5_c02108{width:45.999040pt;}
._3_c02108{width:65.004864pt;}
._0_c02108{width:172.800000pt;}
._7_c02108{width:822.052928pt;}
._a_c02108{width:843.488000pt;}
._4_c02108{width:980.446016pt;}
._8_c02108{width:1002.265472pt;}
._6_c02108{width:1046.062496pt;}
.fs2_c02108{font-size:37.440000pt;}
.fs1_c02108{font-size:42.560000pt;}
.fs5_c02108{font-size:48.000000pt;}
.fs4_c02108{font-size:53.440000pt;}
.fs3_c02108{font-size:58.560000pt;}
.fs0_c02108{font-size:64.000000pt;}
.y0_c02108{bottom:0.000000pt;}
.y3_c02108{bottom:50.987067pt;}
.y2_c02108{bottom:69.387067pt;}
.y35_c02108{bottom:113.226667pt;}
.y34_c02108{bottom:126.987067pt;}
.y33_c02108{bottom:140.826667pt;}
.y32_c02108{bottom:154.587067pt;}
.y31_c02108{bottom:168.426667pt;}
.y30_c02108{bottom:182.187067pt;}
.y2f_c02108{bottom:196.026667pt;}
.y2e_c02108{bottom:209.787067pt;}
.y2d_c02108{bottom:223.626667pt;}
.y2c_c02108{bottom:237.387067pt;}
.y2b_c02108{bottom:251.226667pt;}
.y2a_c02108{bottom:264.987067pt;}
.y29_c02108{bottom:278.826667pt;}
.y28_c02108{bottom:292.587067pt;}
.y27_c02108{bottom:307.307067pt;}
.y26_c02108{bottom:322.667200pt;}
.y25_c02108{bottom:338.667200pt;}
.y24_c02108{bottom:356.187200pt;}
.y23_c02108{bottom:371.627067pt;}
.y22_c02108{bottom:384.747200pt;}
.y21_c02108{bottom:400.747200pt;}
.y20_c02108{bottom:415.787067pt;}
.y1e_c02108{bottom:432.107200pt;}
.y1d_c02108{bottom:450.187200pt;}
.y1f_c02108{bottom:452.667200pt;}
.y1c_c02108{bottom:467.707067pt;}
.y1b_c02108{bottom:485.227067pt;}
.y1a_c02108{bottom:502.747067pt;}
.y19_c02108{bottom:520.347067pt;}
.y18_c02108{bottom:541.627067pt;}
.y17_c02108{bottom:553.467067pt;}
.y16_c02108{bottom:566.827067pt;}
.y15_c02108{bottom:585.227067pt;}
.y14_c02108{bottom:602.347067pt;}
.y13_c02108{bottom:616.427067pt;}
.y12_c02108{bottom:635.467067pt;}
.y11_c02108{bottom:663.947067pt;}
.y10_c02108{bottom:691.387067pt;}
.yf_c02108{bottom:719.067067pt;}
.ye_c02108{bottom:746.667067pt;}
.yd_c02108{bottom:774.267067pt;}
.yc_c02108{bottom:801.867067pt;}
.yb_c02108{bottom:829.467067pt;}
.ya_c02108{bottom:857.067067pt;}
.y9_c02108{bottom:884.667067pt;}
.y8_c02108{bottom:912.267067pt;}
.y7_c02108{bottom:939.867067pt;}
.y6_c02108{bottom:967.307067pt;}
.y5_c02108{bottom:990.987067pt;}
.y4_c02108{bottom:1013.307067pt;}
.y1_c02108{bottom:1060.587067pt;}
.h5_c02108{height:33.253594pt;}
.h3_c02108{height:37.343906pt;}
.h4_c02108{height:37.801094pt;}
.h9_c02108{height:42.632812pt;}
.h8_c02108{height:47.464531pt;}
.h7_c02108{height:47.721094pt;}
.h6_c02108{height:52.043750pt;}
.h2_c02108{height:56.156250pt;}
.h1_c02108{height:56.843750pt;}
.h0_c02108{height:1122.666667pt;}
.w1_c02108{width:793.333333pt;}
.w0_c02108{width:793.626667pt;}
.x0_c02108{left:0.000000pt;}
.x1_c02108{left:113.440000pt;}
.x4_c02108{left:120.560000pt;}
.x6_c02108{left:130.080000pt;}
.x3_c02108{left:132.400000pt;}
.x5_c02108{left:139.520000pt;}
.x7_c02108{left:158.400000pt;}
.x2_c02108{left:388.960000pt;}
.x8_c02108{left:593.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_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_542ffc27b475bfebca46b3d4.woff2')format("woff");}.ff1_c02109{font-family:ff1_c02109;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02109;src:url('chunks/assets/font_dd1e87340fa7bceb1dc2dcfe.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_6c2719075fc071bf28605f03.woff2')format("woff");}.ff3_c02109{font-family:ff3_c02109;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_c02109;src:url('chunks/assets/font_56758fa793820c6b554d18a2.woff2')format("woff");}.ff4_c02109{font-family:ff4_c02109;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_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);}
.v1_c02109{vertical-align:-9.000000px;}
.v0_c02109{vertical-align:0.000000px;}
.lsf_c02109{letter-spacing:-0.014400px;}
.ls12_c02109{letter-spacing:-0.007200px;}
.ls10_c02109{letter-spacing:0.000000px;}
.ls2_c02109{letter-spacing:0.007200px;}
.ls5_c02109{letter-spacing:0.014400px;}
.ls9_c02109{letter-spacing:0.021600px;}
.ls4_c02109{letter-spacing:0.028800px;}
.ls7_c02109{letter-spacing:0.036000px;}
.ls6_c02109{letter-spacing:0.039528px;}
.lsd_c02109{letter-spacing:0.043200px;}
.ls3_c02109{letter-spacing:0.050400px;}
.lsc_c02109{letter-spacing:0.057600px;}
.ls8_c02109{letter-spacing:0.059292px;}
.lsb_c02109{letter-spacing:0.064800px;}
.lse_c02109{letter-spacing:0.072468px;}
.lsa_c02109{letter-spacing:0.079200px;}
.ls0_c02109{letter-spacing:0.093600px;}
.ls1_c02109{letter-spacing:0.144000px;}
.ls11_c02109{letter-spacing:0.181944px;}
.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;}
}
.ws0_c02109{word-spacing:-18.050400px;}
.ws3_c02109{word-spacing:-17.992800px;}
.ws2_c02109{word-spacing:-16.529292px;}
.ws1_c02109{word-spacing:-16.509528px;}
.ws1a_c02109{word-spacing:-0.367200px;}
.ws1c_c02109{word-spacing:-0.223200px;}
.ws15_c02109{word-spacing:-0.208800px;}
.ws18_c02109{word-spacing:-0.187200px;}
.wsa_c02109{word-spacing:-0.180000px;}
.ws19_c02109{word-spacing:-0.151200px;}
.wsd_c02109{word-spacing:-0.100800px;}
.ws12_c02109{word-spacing:-0.086400px;}
.wsb_c02109{word-spacing:-0.079200px;}
.ws13_c02109{word-spacing:-0.072000px;}
.ws16_c02109{word-spacing:-0.057600px;}
.ws17_c02109{word-spacing:-0.043200px;}
.wse_c02109{word-spacing:-0.028800px;}
.ws14_c02109{word-spacing:-0.021600px;}
.wsf_c02109{word-spacing:-0.014400px;}
.ws6_c02109{word-spacing:-0.007200px;}
.ws5_c02109{word-spacing:0.000000px;}
.ws9_c02109{word-spacing:0.007200px;}
.ws4_c02109{word-spacing:0.014400px;}
.ws1b_c02109{word-spacing:0.019764px;}
.ws10_c02109{word-spacing:3.549600px;}
.ws11_c02109{word-spacing:3.571200px;}
.ws8_c02109{word-spacing:3.578400px;}
.ws7_c02109{word-spacing:3.938400px;}
.wsc_c02109{word-spacing:320.407200px;}
._5_c02109{margin-left:-320.400000px;}
._6_c02109{margin-left:-1.432800px;}
._2_c02109{width:3.758184px;}
._3_c02109{width:154.576800px;}
._4_c02109{width:158.536800px;}
._0_c02109{width:194.400000px;}
._1_c02109{width:207.504000px;}
.fc0_c02109{color:rgb(0,0,0);}
.fs2_c02109{font-size:47.880000px;}
.fs1_c02109{font-size:54.000000px;}
.fs3_c02109{font-size:65.880000px;}
.fs0_c02109{font-size:72.000000px;}
.y0_c02109{bottom:0.000000px;}
.y3_c02109{bottom:57.360450px;}
.y2_c02109{bottom:78.060450px;}
.y38_c02109{bottom:140.430450px;}
.y37_c02109{bottom:171.480450px;}
.y36_c02109{bottom:191.190150px;}
.y35_c02109{bottom:206.759700px;}
.y34_c02109{bottom:222.240150px;}
.y33_c02109{bottom:237.809700px;}
.y32_c02109{bottom:253.290150px;}
.y31_c02109{bottom:268.770600px;}
.y30_c02109{bottom:284.340150px;}
.y2f_c02109{bottom:299.820600px;}
.y2e_c02109{bottom:315.390150px;}
.y2d_c02109{bottom:330.870600px;}
.y2c_c02109{bottom:346.440150px;}
.y2b_c02109{bottom:361.920600px;}
.y2a_c02109{bottom:377.490150px;}
.y29_c02109{bottom:392.970600px;}
.y28_c02109{bottom:408.540150px;}
.y27_c02109{bottom:424.020600px;}
.y26_c02109{bottom:441.480450px;}
.y25_c02109{bottom:462.180600px;}
.y24_c02109{bottom:483.150450px;}
.y23_c02109{bottom:503.310450px;}
.y22_c02109{bottom:524.010450px;}
.y21_c02109{bottom:545.250450px;}
.y20_c02109{bottom:566.940450px;}
.y1f_c02109{bottom:588.180450px;}
.y1e_c02109{bottom:609.780450px;}
.y1d_c02109{bottom:630.480450px;}
.y1c_c02109{bottom:651.180450px;}
.y1b_c02109{bottom:671.880450px;}
.y1a_c02109{bottom:692.580450px;}
.y19_c02109{bottom:713.550450px;}
.y18_c02109{bottom:733.800450px;}
.y17_c02109{bottom:754.500450px;}
.y16_c02109{bottom:775.470450px;}
.y15_c02109{bottom:795.450450px;}
.y14_c02109{bottom:816.150450px;}
.y13_c02109{bottom:836.850450px;}
.y12_c02109{bottom:857.550450px;}
.y11_c02109{bottom:878.250450px;}
.y10_c02109{bottom:898.950450px;}
.yf_c02109{bottom:919.650450px;}
.ye_c02109{bottom:940.350450px;}
.yd_c02109{bottom:961.050450px;}
.yc_c02109{bottom:982.470450px;}
.yb_c02109{bottom:1003.980450px;}
.ya_c02109{bottom:1025.490450px;}
.y9_c02109{bottom:1046.190450px;}
.y8_c02109{bottom:1066.890450px;}
.y7_c02109{bottom:1087.500450px;}
.y6_c02109{bottom:1108.020000px;}
.y5_c02109{bottom:1123.500450px;}
.y4_c02109{bottom:1139.970450px;}
.y1_c02109{bottom:1193.160450px;}
.h3_c02109{height:47.961914px;}
.h2_c02109{height:63.175781px;}
.h1_c02109{height:63.949219px;}
.h5_c02109{height:70.628906px;}
.h4_c02109{height:70.988906px;}
.h0_c02109{height:1263.000000px;}
.w1_c02109{width:892.500000px;}
.w0_c02109{width:892.830000px;}
.x0_c02109{left:0.000000px;}
.x3_c02109{left:117.000000px;}
.x4_c02109{left:125.010000px;}
.x1_c02109{left:127.620000px;}
.x5_c02109{left:252.630000px;}
.x2_c02109{left:437.580000px;}
@media print{
.v1_c02109{vertical-align:-8.000000pt;}
.v0_c02109{vertical-align:0.000000pt;}
.lsf_c02109{letter-spacing:-0.012800pt;}
.ls12_c02109{letter-spacing:-0.006400pt;}
.ls10_c02109{letter-spacing:0.000000pt;}
.ls2_c02109{letter-spacing:0.006400pt;}
.ls5_c02109{letter-spacing:0.012800pt;}
.ls9_c02109{letter-spacing:0.019200pt;}
.ls4_c02109{letter-spacing:0.025600pt;}
.ls7_c02109{letter-spacing:0.032000pt;}
.ls6_c02109{letter-spacing:0.035136pt;}
.lsd_c02109{letter-spacing:0.038400pt;}
.ls3_c02109{letter-spacing:0.044800pt;}
.lsc_c02109{letter-spacing:0.051200pt;}
.ls8_c02109{letter-spacing:0.052704pt;}
.lsb_c02109{letter-spacing:0.057600pt;}
.lse_c02109{letter-spacing:0.064416pt;}
.lsa_c02109{letter-spacing:0.070400pt;}
.ls0_c02109{letter-spacing:0.083200pt;}
.ls1_c02109{letter-spacing:0.128000pt;}
.ls11_c02109{letter-spacing:0.161728pt;}
.ws0_c02109{word-spacing:-16.044800pt;}
.ws3_c02109{word-spacing:-15.993600pt;}
.ws2_c02109{word-spacing:-14.692704pt;}
.ws1_c02109{word-spacing:-14.675136pt;}
.ws1a_c02109{word-spacing:-0.326400pt;}
.ws1c_c02109{word-spacing:-0.198400pt;}
.ws15_c02109{word-spacing:-0.185600pt;}
.ws18_c02109{word-spacing:-0.166400pt;}
.wsa_c02109{word-spacing:-0.160000pt;}
.ws19_c02109{word-spacing:-0.134400pt;}
.wsd_c02109{word-spacing:-0.089600pt;}
.ws12_c02109{word-spacing:-0.076800pt;}
.wsb_c02109{word-spacing:-0.070400pt;}
.ws13_c02109{word-spacing:-0.064000pt;}
.ws16_c02109{word-spacing:-0.051200pt;}
.ws17_c02109{word-spacing:-0.038400pt;}
.wse_c02109{word-spacing:-0.025600pt;}
.ws14_c02109{word-spacing:-0.019200pt;}
.wsf_c02109{word-spacing:-0.012800pt;}
.ws6_c02109{word-spacing:-0.006400pt;}
.ws5_c02109{word-spacing:0.000000pt;}
.ws9_c02109{word-spacing:0.006400pt;}
.ws4_c02109{word-spacing:0.012800pt;}
.ws1b_c02109{word-spacing:0.017568pt;}
.ws10_c02109{word-spacing:3.155200pt;}
.ws11_c02109{word-spacing:3.174400pt;}
.ws8_c02109{word-spacing:3.180800pt;}
.ws7_c02109{word-spacing:3.500800pt;}
.wsc_c02109{word-spacing:284.806400pt;}
._5_c02109{margin-left:-284.800000pt;}
._6_c02109{margin-left:-1.273600pt;}
._2_c02109{width:3.340608pt;}
._3_c02109{width:137.401600pt;}
._4_c02109{width:140.921600pt;}
._0_c02109{width:172.800000pt;}
._1_c02109{width:184.448000pt;}
.fs2_c02109{font-size:42.560000pt;}
.fs1_c02109{font-size:48.000000pt;}
.fs3_c02109{font-size:58.560000pt;}
.fs0_c02109{font-size:64.000000pt;}
.y0_c02109{bottom:0.000000pt;}
.y3_c02109{bottom:50.987067pt;}
.y2_c02109{bottom:69.387067pt;}
.y38_c02109{bottom:124.827067pt;}
.y37_c02109{bottom:152.427067pt;}
.y36_c02109{bottom:169.946800pt;}
.y35_c02109{bottom:183.786400pt;}
.y34_c02109{bottom:197.546800pt;}
.y33_c02109{bottom:211.386400pt;}
.y32_c02109{bottom:225.146800pt;}
.y31_c02109{bottom:238.907200pt;}
.y30_c02109{bottom:252.746800pt;}
.y2f_c02109{bottom:266.507200pt;}
.y2e_c02109{bottom:280.346800pt;}
.y2d_c02109{bottom:294.107200pt;}
.y2c_c02109{bottom:307.946800pt;}
.y2b_c02109{bottom:321.707200pt;}
.y2a_c02109{bottom:335.546800pt;}
.y29_c02109{bottom:349.307200pt;}
.y28_c02109{bottom:363.146800pt;}
.y27_c02109{bottom:376.907200pt;}
.y26_c02109{bottom:392.427067pt;}
.y25_c02109{bottom:410.827200pt;}
.y24_c02109{bottom:429.467067pt;}
.y23_c02109{bottom:447.387067pt;}
.y22_c02109{bottom:465.787067pt;}
.y21_c02109{bottom:484.667067pt;}
.y20_c02109{bottom:503.947067pt;}
.y1f_c02109{bottom:522.827067pt;}
.y1e_c02109{bottom:542.027067pt;}
.y1d_c02109{bottom:560.427067pt;}
.y1c_c02109{bottom:578.827067pt;}
.y1b_c02109{bottom:597.227067pt;}
.y1a_c02109{bottom:615.627067pt;}
.y19_c02109{bottom:634.267067pt;}
.y18_c02109{bottom:652.267067pt;}
.y17_c02109{bottom:670.667067pt;}
.y16_c02109{bottom:689.307067pt;}
.y15_c02109{bottom:707.067067pt;}
.y14_c02109{bottom:725.467067pt;}
.y13_c02109{bottom:743.867067pt;}
.y12_c02109{bottom:762.267067pt;}
.y11_c02109{bottom:780.667067pt;}
.y10_c02109{bottom:799.067067pt;}
.yf_c02109{bottom:817.467067pt;}
.ye_c02109{bottom:835.867067pt;}
.yd_c02109{bottom:854.267067pt;}
.yc_c02109{bottom:873.307067pt;}
.yb_c02109{bottom:892.427067pt;}
.ya_c02109{bottom:911.547067pt;}
.y9_c02109{bottom:929.947067pt;}
.y8_c02109{bottom:948.347067pt;}
.y7_c02109{bottom:966.667067pt;}
.y6_c02109{bottom:984.906667pt;}
.y5_c02109{bottom:998.667067pt;}
.y4_c02109{bottom:1013.307067pt;}
.y1_c02109{bottom:1060.587067pt;}
.h3_c02109{height:42.632812pt;}
.h2_c02109{height:56.156250pt;}
.h1_c02109{height:56.843750pt;}
.h5_c02109{height:62.781250pt;}
.h4_c02109{height:63.101250pt;}
.h0_c02109{height:1122.666667pt;}
.w1_c02109{width:793.333333pt;}
.w0_c02109{width:793.626667pt;}
.x0_c02109{left:0.000000pt;}
.x3_c02109{left:104.000000pt;}
.x4_c02109{left:111.120000pt;}
.x1_c02109{left:113.440000pt;}
.x5_c02109{left:224.560000pt;}
.x2_c02109{left:388.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_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_085cdf2cfba98a58c4a72f41.woff2')format("woff");}.ff1_c02110{font-family:ff1_c02110;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02110;src:url('chunks/assets/font_e1839316e8a796984adb911c.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_78814b93a1f27b349f87db12.woff2')format("woff");}.ff3_c02110{font-family:ff3_c02110;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02110;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02110{font-family:ff4_c02110;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;}
.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;}
.v3_c02110{vertical-align:1.440000px;}
.v2_c02110{vertical-align:75.960000px;}
.v1_c02110{vertical-align:78.119400px;}
.ls43_c02110{letter-spacing:-0.222444px;}
.ls44_c02110{letter-spacing:-0.144288px;}
.ls3d_c02110{letter-spacing:-0.132264px;}
.ls49_c02110{letter-spacing:-0.126252px;}
.ls47_c02110{letter-spacing:-0.120240px;}
.ls4b_c02110{letter-spacing:-0.115200px;}
.ls42_c02110{letter-spacing:-0.090180px;}
.ls46_c02110{letter-spacing:-0.084168px;}
.ls37_c02110{letter-spacing:-0.078156px;}
.ls39_c02110{letter-spacing:-0.057600px;}
.ls45_c02110{letter-spacing:-0.054108px;}
.ls4c_c02110{letter-spacing:-0.050400px;}
.ls36_c02110{letter-spacing:-0.046116px;}
.ls41_c02110{letter-spacing:-0.042084px;}
.ls3c_c02110{letter-spacing:-0.036072px;}
.ls40_c02110{letter-spacing:-0.030060px;}
.ls35_c02110{letter-spacing:-0.028800px;}
.ls32_c02110{letter-spacing:-0.014400px;}
.ls4a_c02110{letter-spacing:-0.012024px;}
.ls34_c02110{letter-spacing:-0.007200px;}
.ls38_c02110{letter-spacing:-0.006588px;}
.ls3f_c02110{letter-spacing:-0.006012px;}
.ls33_c02110{letter-spacing:0.000000px;}
.ls2_c02110{letter-spacing:0.007200px;}
.ls4_c02110{letter-spacing:0.013176px;}
.ls1_c02110{letter-spacing:0.014400px;}
.ls0_c02110{letter-spacing:0.021600px;}
.ls2f_c02110{letter-spacing:0.024048px;}
.ls24_c02110{letter-spacing:0.039528px;}
.ls31_c02110{letter-spacing:0.050400px;}
.ls3a_c02110{letter-spacing:0.052704px;}
.ls3b_c02110{letter-spacing:0.054108px;}
.ls1b_c02110{letter-spacing:0.059292px;}
.lse_c02110{letter-spacing:0.065880px;}
.ls28_c02110{letter-spacing:0.072468px;}
.ls14_c02110{letter-spacing:0.079056px;}
.ls2e_c02110{letter-spacing:0.090180px;}
.ls7_c02110{letter-spacing:0.092232px;}
.ls16_c02110{letter-spacing:0.098820px;}
.ls48_c02110{letter-spacing:0.132264px;}
.ls3e_c02110{letter-spacing:0.138276px;}
.lsa_c02110{letter-spacing:0.138348px;}
.ls6_c02110{letter-spacing:0.144288px;}
.lsc_c02110{letter-spacing:0.151524px;}
.ls26_c02110{letter-spacing:0.158112px;}
.ls3_c02110{letter-spacing:0.164700px;}
.ls18_c02110{letter-spacing:0.177876px;}
.ls10_c02110{letter-spacing:0.180000px;}
.ls30_c02110{letter-spacing:0.288000px;}
.ls27_c02110{letter-spacing:64.080000px;}
.ls22_c02110{letter-spacing:66.240000px;}
.ls19_c02110{letter-spacing:66.600000px;}
.ls1a_c02110{letter-spacing:66.960000px;}
.ls12_c02110{letter-spacing:99.000000px;}
.ls13_c02110{letter-spacing:99.360000px;}
.lsd_c02110{letter-spacing:99.720000px;}
.ls23_c02110{letter-spacing:117.450000px;}
.ls9_c02110{letter-spacing:132.120000px;}
.lsb_c02110{letter-spacing:132.480000px;}
.ls1f_c02110{letter-spacing:150.300000px;}
.ls1e_c02110{letter-spacing:183.330000px;}
.ls11_c02110{letter-spacing:186.480000px;}
.ls29_c02110{letter-spacing:204.840000px;}
.ls2a_c02110{letter-spacing:214.560000px;}
.ls1d_c02110{letter-spacing:214.920000px;}
.ls20_c02110{letter-spacing:215.279400px;}
.ls15_c02110{letter-spacing:234.360000px;}
.ls2c_c02110{letter-spacing:247.320000px;}
.ls17_c02110{letter-spacing:252.360000px;}
.ls25_c02110{letter-spacing:268.920000px;}
.ls1c_c02110{letter-spacing:281.520000px;}
.ls8_c02110{letter-spacing:281.880000px;}
.ls21_c02110{letter-spacing:314.640000px;}
.lsf_c02110{letter-spacing:329.400000px;}
.ls2d_c02110{letter-spacing:393.120000px;}
.ls2b_c02110{letter-spacing:414.720000px;}
.ls5_c02110{letter-spacing:423.000000px;}
.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;}
}
.ws2d_c02110{word-spacing:-72.000000px;}
.ws28_c02110{word-spacing:-60.120000px;}
.ws3_c02110{word-spacing:-16.647876px;}
.ws0_c02110{word-spacing:-16.634700px;}
.ws14_c02110{word-spacing:-16.628112px;}
.ws9_c02110{word-spacing:-16.621524px;}
.ws4_c02110{word-spacing:-16.608348px;}
.wsc_c02110{word-spacing:-16.568820px;}
.ws11_c02110{word-spacing:-16.562232px;}
.ws15_c02110{word-spacing:-16.542468px;}
.wsf_c02110{word-spacing:-16.529292px;}
.ws13_c02110{word-spacing:-16.509528px;}
.ws1_c02110{word-spacing:-16.483176px;}
.ws2_c02110{word-spacing:-16.423884px;}
.ws38_c02110{word-spacing:-0.208800px;}
.ws1d_c02110{word-spacing:-0.198396px;}
.ws29_c02110{word-spacing:-0.192384px;}
.ws1f_c02110{word-spacing:-0.150300px;}
.ws2f_c02110{word-spacing:-0.122400px;}
.ws33_c02110{word-spacing:-0.108000px;}
.ws36_c02110{word-spacing:-0.100800px;}
.ws1c_c02110{word-spacing:-0.084168px;}
.ws2b_c02110{word-spacing:-0.064800px;}
.ws21_c02110{word-spacing:-0.060120px;}
.ws1e_c02110{word-spacing:-0.054108px;}
.ws20_c02110{word-spacing:-0.030060px;}
.ws1a_c02110{word-spacing:-0.024048px;}
.ws2e_c02110{word-spacing:-0.021600px;}
.ws22_c02110{word-spacing:-0.018036px;}
.ws32_c02110{word-spacing:-0.014400px;}
.ws37_c02110{word-spacing:-0.007200px;}
.ws26_c02110{word-spacing:-0.006012px;}
.ws31_c02110{word-spacing:0.000000px;}
.ws3a_c02110{word-spacing:0.013176px;}
.ws30_c02110{word-spacing:0.014400px;}
.ws39_c02110{word-spacing:0.026352px;}
.ws23_c02110{word-spacing:0.030060px;}
.ws2c_c02110{word-spacing:0.043200px;}
.ws3b_c02110{word-spacing:0.052704px;}
.ws27_c02110{word-spacing:0.060120px;}
.ws2a_c02110{word-spacing:0.066132px;}
.ws1b_c02110{word-spacing:0.072144px;}
.ws25_c02110{word-spacing:0.084168px;}
.ws3c_c02110{word-spacing:0.098820px;}
.ws24_c02110{word-spacing:0.162324px;}
.ws34_c02110{word-spacing:5.738400px;}
.ws35_c02110{word-spacing:5.745600px;}
.ws16_c02110{word-spacing:65.089440px;}
.ws12_c02110{word-spacing:67.238496px;}
.wse_c02110{word-spacing:67.642380px;}
.ws8_c02110{word-spacing:99.996372px;}
.wsd_c02110{word-spacing:99.998496px;}
.wsa_c02110{word-spacing:100.402380px;}
.ws17_c02110{word-spacing:100.933020px;}
.ws6_c02110{word-spacing:133.116372px;}
.ws7_c02110{word-spacing:133.546608px;}
.wsb_c02110{word-spacing:150.082380px;}
.ws5_c02110{word-spacing:150.106608px;}
.ws19_c02110{word-spacing:215.595972px;}
.ws10_c02110{word-spacing:215.986608px;}
.ws18_c02110{word-spacing:216.270000px;}
._3_c02110{margin-left:-1.148292px;}
._7_c02110{width:68.763132px;}
._6_c02110{width:104.490000px;}
._5_c02110{width:121.795776px;}
._8_c02110{width:133.316208px;}
._4_c02110{width:169.519284px;}
._0_c02110{width:194.400000px;}
._9_c02110{width:232.060104px;}
._2_c02110{width:485.985600px;}
._b_c02110{width:643.399632px;}
._a_c02110{width:665.158248px;}
._1_c02110{width:2461.320000px;}
.fc0_c02110{color:rgb(0,0,0);}
.fs3_c02110{font-size:29.880000px;}
.fs4_c02110{font-size:54.000000px;}
.fs2_c02110{font-size:60.120000px;}
.fs1_c02110{font-size:65.880000px;}
.fs0_c02110{font-size:72.000000px;}
.y0_c02110{bottom:0.000000px;}
.y3_c02110{bottom:57.360450px;}
.y2_c02110{bottom:78.060450px;}
.y2a_c02110{bottom:123.060450px;}
.y29_c02110{bottom:132.960450px;}
.y28_c02110{bottom:148.530000px;}
.y27_c02110{bottom:164.010450px;}
.y26_c02110{bottom:179.580000px;}
.y25_c02110{bottom:195.060450px;}
.y24_c02110{bottom:210.630000px;}
.y23_c02110{bottom:226.110450px;}
.y22_c02110{bottom:240.330450px;}
.y21_c02110{bottom:251.310450px;}
.y20_c02110{bottom:272.010450px;}
.y1f_c02110{bottom:292.710450px;}
.y1e_c02110{bottom:311.700450px;}
.y1d_c02110{bottom:331.050450px;}
.y1c_c02110{bottom:351.750600px;}
.y1b_c02110{bottom:372.450450px;}
.y1a_c02110{bottom:391.350450px;}
.y19_c02110{bottom:410.340600px;}
.y18_c02110{bottom:429.330450px;}
.y17_c02110{bottom:448.320450px;}
.y16_c02110{bottom:466.950600px;}
.y14_c02110{bottom:484.500600px;}
.y12_c02110{bottom:502.950600px;}
.y13_c02110{bottom:503.490450px;}
.y15_c02110{bottom:522.480450px;}
.y11_c02110{bottom:541.740450px;}
.y10_c02110{bottom:564.690450px;}
.yf_c02110{bottom:585.390450px;}
.ye_c02110{bottom:606.090450px;}
.yd_c02110{bottom:626.790450px;}
.yc_c02110{bottom:647.490450px;}
.yb_c02110{bottom:668.190450px;}
.ya_c02110{bottom:688.890450px;}
.y9_c02110{bottom:705.630450px;}
.y2b_c02110{bottom:731.910450px;}
.y31_c02110{bottom:733.711167px;}
.y2c_c02110{bottom:763.860450px;}
.y32_c02110{bottom:765.571761px;}
.y2d_c02110{bottom:796.620450px;}
.y33_c02110{bottom:797.521032px;}
.y2e_c02110{bottom:828.030450px;}
.y34_c02110{bottom:829.381626px;}
.y2f_c02110{bottom:860.430600px;}
.y35_c02110{bottom:861.242220px;}
.y30_c02110{bottom:892.291194px;}
.y36_c02110{bottom:893.102814px;}
.y38_c02110{bottom:944.130450px;}
.y37_c02110{bottom:973.110450px;}
.y8_c02110{bottom:1015.950450px;}
.y7_c02110{bottom:1047.000450px;}
.y6_c02110{bottom:1078.050450px;}
.y5_c02110{bottom:1108.920450px;}
.y4_c02110{bottom:1139.970450px;}
.y1_c02110{bottom:1193.160450px;}
.h8_c02110{height:26.538926px;}
.hb_c02110{height:43.651582px;}
.hc_c02110{height:47.833770px;}
.h9_c02110{height:47.961914px;}
.ha_c02110{height:52.277344px;}
.h6_c02110{height:53.397598px;}
.h5_c02110{height:58.513535px;}
.h2_c02110{height:63.175781px;}
.h1_c02110{height:63.949219px;}
.h7_c02110{height:65.029219px;}
.h4_c02110{height:134.473535px;}
.h3_c02110{height:142.068619px;}
.h0_c02110{height:1263.000000px;}
.w1_c02110{width:892.500000px;}
.w0_c02110{width:892.830000px;}
.x0_c02110{left:0.000000px;}
.x4_c02110{left:117.000000px;}
.x1_c02110{left:127.620000px;}
.x5_c02110{left:135.630000px;}
.x15_c02110{left:144.718056px;}
.x3_c02110{left:148.950000px;}
.xc_c02110{left:160.920000px;}
.x17_c02110{left:174.229461px;}
.x16_c02110{left:184.044051px;}
.x18_c02110{left:191.596626px;}
.x14_c02110{left:206.010396px;}
.x6_c02110{left:281.610000px;}
.x19_c02110{left:285.390000px;}
.x13_c02110{left:315.090621px;}
.x7_c02110{left:429.660000px;}
.x2_c02110{left:437.580000px;}
.x8_c02110{left:460.800000px;}
.x1a_c02110{left:462.960000px;}
.x12_c02110{left:597.690693px;}
.xa_c02110{left:604.080000px;}
.x11_c02110{left:605.610000px;}
.xf_c02110{left:625.050000px;}
.x9_c02110{left:639.810000px;}
.xb_c02110{left:643.770000px;}
.x10_c02110{left:657.630000px;}
.xe_c02110{left:677.880000px;}
.xd_c02110{left:701.640000px;}
@media print{
.v0_c02110{vertical-align:0.000000pt;}
.v3_c02110{vertical-align:1.280000pt;}
.v2_c02110{vertical-align:67.520000pt;}
.v1_c02110{vertical-align:69.439467pt;}
.ls43_c02110{letter-spacing:-0.197728pt;}
.ls44_c02110{letter-spacing:-0.128256pt;}
.ls3d_c02110{letter-spacing:-0.117568pt;}
.ls49_c02110{letter-spacing:-0.112224pt;}
.ls47_c02110{letter-spacing:-0.106880pt;}
.ls4b_c02110{letter-spacing:-0.102400pt;}
.ls42_c02110{letter-spacing:-0.080160pt;}
.ls46_c02110{letter-spacing:-0.074816pt;}
.ls37_c02110{letter-spacing:-0.069472pt;}
.ls39_c02110{letter-spacing:-0.051200pt;}
.ls45_c02110{letter-spacing:-0.048096pt;}
.ls4c_c02110{letter-spacing:-0.044800pt;}
.ls36_c02110{letter-spacing:-0.040992pt;}
.ls41_c02110{letter-spacing:-0.037408pt;}
.ls3c_c02110{letter-spacing:-0.032064pt;}
.ls40_c02110{letter-spacing:-0.026720pt;}
.ls35_c02110{letter-spacing:-0.025600pt;}
.ls32_c02110{letter-spacing:-0.012800pt;}
.ls4a_c02110{letter-spacing:-0.010688pt;}
.ls34_c02110{letter-spacing:-0.006400pt;}
.ls38_c02110{letter-spacing:-0.005856pt;}
.ls3f_c02110{letter-spacing:-0.005344pt;}
.ls33_c02110{letter-spacing:0.000000pt;}
.ls2_c02110{letter-spacing:0.006400pt;}
.ls4_c02110{letter-spacing:0.011712pt;}
.ls1_c02110{letter-spacing:0.012800pt;}
.ls0_c02110{letter-spacing:0.019200pt;}
.ls2f_c02110{letter-spacing:0.021376pt;}
.ls24_c02110{letter-spacing:0.035136pt;}
.ls31_c02110{letter-spacing:0.044800pt;}
.ls3a_c02110{letter-spacing:0.046848pt;}
.ls3b_c02110{letter-spacing:0.048096pt;}
.ls1b_c02110{letter-spacing:0.052704pt;}
.lse_c02110{letter-spacing:0.058560pt;}
.ls28_c02110{letter-spacing:0.064416pt;}
.ls14_c02110{letter-spacing:0.070272pt;}
.ls2e_c02110{letter-spacing:0.080160pt;}
.ls7_c02110{letter-spacing:0.081984pt;}
.ls16_c02110{letter-spacing:0.087840pt;}
.ls48_c02110{letter-spacing:0.117568pt;}
.ls3e_c02110{letter-spacing:0.122912pt;}
.lsa_c02110{letter-spacing:0.122976pt;}
.ls6_c02110{letter-spacing:0.128256pt;}
.lsc_c02110{letter-spacing:0.134688pt;}
.ls26_c02110{letter-spacing:0.140544pt;}
.ls3_c02110{letter-spacing:0.146400pt;}
.ls18_c02110{letter-spacing:0.158112pt;}
.ls10_c02110{letter-spacing:0.160000pt;}
.ls30_c02110{letter-spacing:0.256000pt;}
.ls27_c02110{letter-spacing:56.960000pt;}
.ls22_c02110{letter-spacing:58.880000pt;}
.ls19_c02110{letter-spacing:59.200000pt;}
.ls1a_c02110{letter-spacing:59.520000pt;}
.ls12_c02110{letter-spacing:88.000000pt;}
.ls13_c02110{letter-spacing:88.320000pt;}
.lsd_c02110{letter-spacing:88.640000pt;}
.ls23_c02110{letter-spacing:104.400000pt;}
.ls9_c02110{letter-spacing:117.440000pt;}
.lsb_c02110{letter-spacing:117.760000pt;}
.ls1f_c02110{letter-spacing:133.600000pt;}
.ls1e_c02110{letter-spacing:162.960000pt;}
.ls11_c02110{letter-spacing:165.760000pt;}
.ls29_c02110{letter-spacing:182.080000pt;}
.ls2a_c02110{letter-spacing:190.720000pt;}
.ls1d_c02110{letter-spacing:191.040000pt;}
.ls20_c02110{letter-spacing:191.359467pt;}
.ls15_c02110{letter-spacing:208.320000pt;}
.ls2c_c02110{letter-spacing:219.840000pt;}
.ls17_c02110{letter-spacing:224.320000pt;}
.ls25_c02110{letter-spacing:239.040000pt;}
.ls1c_c02110{letter-spacing:250.240000pt;}
.ls8_c02110{letter-spacing:250.560000pt;}
.ls21_c02110{letter-spacing:279.680000pt;}
.lsf_c02110{letter-spacing:292.800000pt;}
.ls2d_c02110{letter-spacing:349.440000pt;}
.ls2b_c02110{letter-spacing:368.640000pt;}
.ls5_c02110{letter-spacing:376.000000pt;}
.ws2d_c02110{word-spacing:-64.000000pt;}
.ws28_c02110{word-spacing:-53.440000pt;}
.ws3_c02110{word-spacing:-14.798112pt;}
.ws0_c02110{word-spacing:-14.786400pt;}
.ws14_c02110{word-spacing:-14.780544pt;}
.ws9_c02110{word-spacing:-14.774688pt;}
.ws4_c02110{word-spacing:-14.762976pt;}
.wsc_c02110{word-spacing:-14.727840pt;}
.ws11_c02110{word-spacing:-14.721984pt;}
.ws15_c02110{word-spacing:-14.704416pt;}
.wsf_c02110{word-spacing:-14.692704pt;}
.ws13_c02110{word-spacing:-14.675136pt;}
.ws1_c02110{word-spacing:-14.651712pt;}
.ws2_c02110{word-spacing:-14.599008pt;}
.ws38_c02110{word-spacing:-0.185600pt;}
.ws1d_c02110{word-spacing:-0.176352pt;}
.ws29_c02110{word-spacing:-0.171008pt;}
.ws1f_c02110{word-spacing:-0.133600pt;}
.ws2f_c02110{word-spacing:-0.108800pt;}
.ws33_c02110{word-spacing:-0.096000pt;}
.ws36_c02110{word-spacing:-0.089600pt;}
.ws1c_c02110{word-spacing:-0.074816pt;}
.ws2b_c02110{word-spacing:-0.057600pt;}
.ws21_c02110{word-spacing:-0.053440pt;}
.ws1e_c02110{word-spacing:-0.048096pt;}
.ws20_c02110{word-spacing:-0.026720pt;}
.ws1a_c02110{word-spacing:-0.021376pt;}
.ws2e_c02110{word-spacing:-0.019200pt;}
.ws22_c02110{word-spacing:-0.016032pt;}
.ws32_c02110{word-spacing:-0.012800pt;}
.ws37_c02110{word-spacing:-0.006400pt;}
.ws26_c02110{word-spacing:-0.005344pt;}
.ws31_c02110{word-spacing:0.000000pt;}
.ws3a_c02110{word-spacing:0.011712pt;}
.ws30_c02110{word-spacing:0.012800pt;}
.ws39_c02110{word-spacing:0.023424pt;}
.ws23_c02110{word-spacing:0.026720pt;}
.ws2c_c02110{word-spacing:0.038400pt;}
.ws3b_c02110{word-spacing:0.046848pt;}
.ws27_c02110{word-spacing:0.053440pt;}
.ws2a_c02110{word-spacing:0.058784pt;}
.ws1b_c02110{word-spacing:0.064128pt;}
.ws25_c02110{word-spacing:0.074816pt;}
.ws3c_c02110{word-spacing:0.087840pt;}
.ws24_c02110{word-spacing:0.144288pt;}
.ws34_c02110{word-spacing:5.100800pt;}
.ws35_c02110{word-spacing:5.107200pt;}
.ws16_c02110{word-spacing:57.857280pt;}
.ws12_c02110{word-spacing:59.767552pt;}
.wse_c02110{word-spacing:60.126560pt;}
.ws8_c02110{word-spacing:88.885664pt;}
.wsd_c02110{word-spacing:88.887552pt;}
.wsa_c02110{word-spacing:89.246560pt;}
.ws17_c02110{word-spacing:89.718240pt;}
.ws6_c02110{word-spacing:118.325664pt;}
.ws7_c02110{word-spacing:118.708096pt;}
.wsb_c02110{word-spacing:133.406560pt;}
.ws5_c02110{word-spacing:133.428096pt;}
.ws19_c02110{word-spacing:191.640864pt;}
.ws10_c02110{word-spacing:191.988096pt;}
.ws18_c02110{word-spacing:192.240000pt;}
._3_c02110{margin-left:-1.020704pt;}
._7_c02110{width:61.122784pt;}
._6_c02110{width:92.880000pt;}
._5_c02110{width:108.262912pt;}
._8_c02110{width:118.503296pt;}
._4_c02110{width:150.683808pt;}
._0_c02110{width:172.800000pt;}
._9_c02110{width:206.275648pt;}
._2_c02110{width:431.987200pt;}
._b_c02110{width:571.910784pt;}
._a_c02110{width:591.251776pt;}
._1_c02110{width:2187.840000pt;}
.fs3_c02110{font-size:26.560000pt;}
.fs4_c02110{font-size:48.000000pt;}
.fs2_c02110{font-size:53.440000pt;}
.fs1_c02110{font-size:58.560000pt;}
.fs0_c02110{font-size:64.000000pt;}
.y0_c02110{bottom:0.000000pt;}
.y3_c02110{bottom:50.987067pt;}
.y2_c02110{bottom:69.387067pt;}
.y2a_c02110{bottom:109.387067pt;}
.y29_c02110{bottom:118.187067pt;}
.y28_c02110{bottom:132.026667pt;}
.y27_c02110{bottom:145.787067pt;}
.y26_c02110{bottom:159.626667pt;}
.y25_c02110{bottom:173.387067pt;}
.y24_c02110{bottom:187.226667pt;}
.y23_c02110{bottom:200.987067pt;}
.y22_c02110{bottom:213.627067pt;}
.y21_c02110{bottom:223.387067pt;}
.y20_c02110{bottom:241.787067pt;}
.y1f_c02110{bottom:260.187067pt;}
.y1e_c02110{bottom:277.067067pt;}
.y1d_c02110{bottom:294.267067pt;}
.y1c_c02110{bottom:312.667200pt;}
.y1b_c02110{bottom:331.067067pt;}
.y1a_c02110{bottom:347.867067pt;}
.y19_c02110{bottom:364.747200pt;}
.y18_c02110{bottom:381.627067pt;}
.y17_c02110{bottom:398.507067pt;}
.y16_c02110{bottom:415.067200pt;}
.y14_c02110{bottom:430.667200pt;}
.y12_c02110{bottom:447.067200pt;}
.y13_c02110{bottom:447.547067pt;}
.y15_c02110{bottom:464.427067pt;}
.y11_c02110{bottom:481.547067pt;}
.y10_c02110{bottom:501.947067pt;}
.yf_c02110{bottom:520.347067pt;}
.ye_c02110{bottom:538.747067pt;}
.yd_c02110{bottom:557.147067pt;}
.yc_c02110{bottom:575.547067pt;}
.yb_c02110{bottom:593.947067pt;}
.ya_c02110{bottom:612.347067pt;}
.y9_c02110{bottom:627.227067pt;}
.y2b_c02110{bottom:650.587067pt;}
.y31_c02110{bottom:652.187704pt;}
.y2c_c02110{bottom:678.987067pt;}
.y32_c02110{bottom:680.508232pt;}
.y2d_c02110{bottom:708.107067pt;}
.y33_c02110{bottom:708.907584pt;}
.y2e_c02110{bottom:736.027067pt;}
.y34_c02110{bottom:737.228112pt;}
.y2f_c02110{bottom:764.827200pt;}
.y35_c02110{bottom:765.548640pt;}
.y30_c02110{bottom:793.147728pt;}
.y36_c02110{bottom:793.869168pt;}
.y38_c02110{bottom:839.227067pt;}
.y37_c02110{bottom:864.987067pt;}
.y8_c02110{bottom:903.067067pt;}
.y7_c02110{bottom:930.667067pt;}
.y6_c02110{bottom:958.267067pt;}
.y5_c02110{bottom:985.707067pt;}
.y4_c02110{bottom:1013.307067pt;}
.y1_c02110{bottom:1060.587067pt;}
.h8_c02110{height:23.590156pt;}
.hb_c02110{height:38.801406pt;}
.hc_c02110{height:42.518906pt;}
.h9_c02110{height:42.632812pt;}
.ha_c02110{height:46.468750pt;}
.h6_c02110{height:47.464531pt;}
.h5_c02110{height:52.012031pt;}
.h2_c02110{height:56.156250pt;}
.h1_c02110{height:56.843750pt;}
.h7_c02110{height:57.803750pt;}
.h4_c02110{height:119.532031pt;}
.h3_c02110{height:126.283217pt;}
.h0_c02110{height:1122.666667pt;}
.w1_c02110{width:793.333333pt;}
.w0_c02110{width:793.626667pt;}
.x0_c02110{left:0.000000pt;}
.x4_c02110{left:104.000000pt;}
.x1_c02110{left:113.440000pt;}
.x5_c02110{left:120.560000pt;}
.x15_c02110{left:128.638272pt;}
.x3_c02110{left:132.400000pt;}
.xc_c02110{left:143.040000pt;}
.x17_c02110{left:154.870632pt;}
.x16_c02110{left:163.594712pt;}
.x18_c02110{left:170.308112pt;}
.x14_c02110{left:183.120352pt;}
.x6_c02110{left:250.320000pt;}
.x19_c02110{left:253.680000pt;}
.x13_c02110{left:280.080552pt;}
.x7_c02110{left:381.920000pt;}
.x2_c02110{left:388.960000pt;}
.x8_c02110{left:409.600000pt;}
.x1a_c02110{left:411.520000pt;}
.x12_c02110{left:531.280616pt;}
.xa_c02110{left:536.960000pt;}
.x11_c02110{left:538.320000pt;}
.xf_c02110{left:555.600000pt;}
.x9_c02110{left:568.720000pt;}
.xb_c02110{left:572.240000pt;}
.x10_c02110{left:584.560000pt;}
.xe_c02110{left:602.560000pt;}
.xd_c02110{left:623.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_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_a90c0bf8f946e2efc94b6d2b.woff2')format("woff");}.ff1_c02111{font-family:ff1_c02111;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02111;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v7_c02111{vertical-align:-15.480000px;}
.va_c02111{vertical-align:-14.040000px;}
.v8_c02111{vertical-align:-12.960000px;}
.v9_c02111{vertical-align:-11.160000px;}
.v4_c02111{vertical-align:-3.960000px;}
.v2_c02111{vertical-align:-1.440000px;}
.v0_c02111{vertical-align:0.000000px;}
.v1_c02111{vertical-align:1.440000px;}
.v5_c02111{vertical-align:2.520000px;}
.v6_c02111{vertical-align:3.960000px;}
.v3_c02111{vertical-align:11.160000px;}
.ls5f_c02111{letter-spacing:-0.178200px;}
.ls59_c02111{letter-spacing:-0.086184px;}
.ls52_c02111{letter-spacing:-0.078156px;}
.ls55_c02111{letter-spacing:-0.043200px;}
.ls50_c02111{letter-spacing:-0.028800px;}
.ls57_c02111{letter-spacing:-0.019152px;}
.ls4e_c02111{letter-spacing:-0.014400px;}
.ls56_c02111{letter-spacing:-0.010800px;}
.ls5c_c02111{letter-spacing:-0.009576px;}
.ls53_c02111{letter-spacing:-0.006588px;}
.ls5e_c02111{letter-spacing:-0.005400px;}
.ls5d_c02111{letter-spacing:-0.004788px;}
.ls4f_c02111{letter-spacing:0.000000px;}
.ls3_c02111{letter-spacing:0.006588px;}
.ls2f_c02111{letter-spacing:0.007200px;}
.ls30_c02111{letter-spacing:0.010800px;}
.ls33_c02111{letter-spacing:0.012636px;}
.ls1_c02111{letter-spacing:0.013176px;}
.ls45_c02111{letter-spacing:0.019152px;}
.ls5_c02111{letter-spacing:0.019764px;}
.ls2_c02111{letter-spacing:0.026352px;}
.ls32_c02111{letter-spacing:0.028728px;}
.ls2e_c02111{letter-spacing:0.028800px;}
.ls34_c02111{letter-spacing:0.032400px;}
.ls38_c02111{letter-spacing:0.037800px;}
.ls24_c02111{letter-spacing:0.039528px;}
.ls31_c02111{letter-spacing:0.043092px;}
.ls37_c02111{letter-spacing:0.043200px;}
.ls4a_c02111{letter-spacing:0.048600px;}
.ls40_c02111{letter-spacing:0.052668px;}
.ls51_c02111{letter-spacing:0.052704px;}
.ls49_c02111{letter-spacing:0.054000px;}
.ls1b_c02111{letter-spacing:0.059292px;}
.lsd_c02111{letter-spacing:0.065880px;}
.ls4c_c02111{letter-spacing:0.067032px;}
.ls48_c02111{letter-spacing:0.070200px;}
.ls4d_c02111{letter-spacing:0.071820px;}
.ls28_c02111{letter-spacing:0.072468px;}
.ls3b_c02111{letter-spacing:0.076608px;}
.ls12_c02111{letter-spacing:0.079056px;}
.ls3f_c02111{letter-spacing:0.081396px;}
.ls7_c02111{letter-spacing:0.092232px;}
.ls47_c02111{letter-spacing:0.095760px;}
.ls16_c02111{letter-spacing:0.098820px;}
.ls4b_c02111{letter-spacing:0.100548px;}
.ls46_c02111{letter-spacing:0.105408px;}
.ls36_c02111{letter-spacing:0.110124px;}
.ls41_c02111{letter-spacing:0.114912px;}
.ls43_c02111{letter-spacing:0.124488px;}
.ls44_c02111{letter-spacing:0.134064px;}
.lsa_c02111{letter-spacing:0.138348px;}
.ls42_c02111{letter-spacing:0.138852px;}
.ls6_c02111{letter-spacing:0.144288px;}
.ls54_c02111{letter-spacing:0.151200px;}
.ls4_c02111{letter-spacing:0.151524px;}
.ls26_c02111{letter-spacing:0.158112px;}
.ls3e_c02111{letter-spacing:0.162792px;}
.ls0_c02111{letter-spacing:0.164700px;}
.ls58_c02111{letter-spacing:0.167580px;}
.ls18_c02111{letter-spacing:0.177876px;}
.ls1d_c02111{letter-spacing:0.180000px;}
.ls3c_c02111{letter-spacing:0.181944px;}
.ls3a_c02111{letter-spacing:0.205884px;}
.ls27_c02111{letter-spacing:64.080000px;}
.ls22_c02111{letter-spacing:66.240000px;}
.ls19_c02111{letter-spacing:66.600000px;}
.ls1a_c02111{letter-spacing:66.960000px;}
.lsf_c02111{letter-spacing:99.000000px;}
.ls10_c02111{letter-spacing:99.360000px;}
.lsc_c02111{letter-spacing:99.720000px;}
.ls35_c02111{letter-spacing:114.480000px;}
.ls23_c02111{letter-spacing:117.450000px;}
.ls9_c02111{letter-spacing:132.120000px;}
.lsb_c02111{letter-spacing:132.480000px;}
.ls15_c02111{letter-spacing:132.840000px;}
.ls14_c02111{letter-spacing:150.300000px;}
.ls5b_c02111{letter-spacing:155.247876px;}
.ls3d_c02111{letter-spacing:155.698200px;}
.ls5a_c02111{letter-spacing:156.778200px;}
.ls1f_c02111{letter-spacing:183.330000px;}
.ls11_c02111{letter-spacing:186.480000px;}
.ls39_c02111{letter-spacing:200.790000px;}
.ls29_c02111{letter-spacing:204.840000px;}
.ls2a_c02111{letter-spacing:214.560000px;}
.ls1e_c02111{letter-spacing:214.920000px;}
.ls20_c02111{letter-spacing:215.279400px;}
.ls13_c02111{letter-spacing:234.360000px;}
.ls2c_c02111{letter-spacing:247.320000px;}
.ls17_c02111{letter-spacing:252.360000px;}
.ls25_c02111{letter-spacing:268.920000px;}
.ls1c_c02111{letter-spacing:281.520000px;}
.ls8_c02111{letter-spacing:281.880000px;}
.lse_c02111{letter-spacing:296.640000px;}
.ls21_c02111{letter-spacing:314.640000px;}
.ls2d_c02111{letter-spacing:393.120000px;}
.ls2b_c02111{letter-spacing:414.720000px;}
.sc__c02111{text-shadow:none;}
.sc0_c02111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02111{-webkit-text-stroke:0px transparent;}
.sc0_c02111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02111{word-spacing:-17.971200px;}
.ws4_c02111{word-spacing:-16.647876px;}
.ws1_c02111{word-spacing:-16.634700px;}
.ws16_c02111{word-spacing:-16.628112px;}
.wsa_c02111{word-spacing:-16.621524px;}
.ws5_c02111{word-spacing:-16.608348px;}
.wse_c02111{word-spacing:-16.568820px;}
.ws13_c02111{word-spacing:-16.562232px;}
.ws17_c02111{word-spacing:-16.542468px;}
.ws11_c02111{word-spacing:-16.529292px;}
.ws15_c02111{word-spacing:-16.509528px;}
.ws2_c02111{word-spacing:-16.496352px;}
.ws3_c02111{word-spacing:-16.489764px;}
.ws1e_c02111{word-spacing:-13.494600px;}
.ws2d_c02111{word-spacing:-0.296856px;}
.ws2c_c02111{word-spacing:-0.272916px;}
.ws2f_c02111{word-spacing:-0.253764px;}
.ws34_c02111{word-spacing:-0.229824px;}
.ws36_c02111{word-spacing:-0.225036px;}
.ws35_c02111{word-spacing:-0.215460px;}
.ws32_c02111{word-spacing:-0.205884px;}
.ws3a_c02111{word-spacing:-0.186732px;}
.ws37_c02111{word-spacing:-0.172368px;}
.ws31_c02111{word-spacing:-0.119700px;}
.ws29_c02111{word-spacing:-0.115200px;}
.ws38_c02111{word-spacing:-0.110124px;}
.ws2b_c02111{word-spacing:-0.101088px;}
.ws30_c02111{word-spacing:-0.081396px;}
.ws25_c02111{word-spacing:-0.054108px;}
.ws39_c02111{word-spacing:-0.013176px;}
.ws2a_c02111{word-spacing:-0.007200px;}
.ws20_c02111{word-spacing:0.000000px;}
.ws26_c02111{word-spacing:0.013176px;}
.ws1f_c02111{word-spacing:0.014400px;}
.ws24_c02111{word-spacing:0.026352px;}
.ws23_c02111{word-spacing:0.039528px;}
.ws27_c02111{word-spacing:0.052704px;}
.ws21_c02111{word-spacing:0.079056px;}
.ws22_c02111{word-spacing:0.085644px;}
.ws28_c02111{word-spacing:0.098820px;}
.ws3b_c02111{word-spacing:0.108000px;}
.ws3c_c02111{word-spacing:0.124200px;}
.ws3d_c02111{word-spacing:0.129600px;}
.ws40_c02111{word-spacing:0.809172px;}
.ws3e_c02111{word-spacing:0.890568px;}
.ws3f_c02111{word-spacing:0.914508px;}
.ws42_c02111{word-spacing:1.503432px;}
.ws41_c02111{word-spacing:1.642284px;}
.ws1d_c02111{word-spacing:48.169440px;}
.ws18_c02111{word-spacing:65.089440px;}
.ws14_c02111{word-spacing:67.238496px;}
.ws10_c02111{word-spacing:67.642380px;}
.ws1c_c02111{word-spacing:75.169440px;}
.ws7_c02111{word-spacing:99.996372px;}
.wsf_c02111{word-spacing:99.998496px;}
.ws8_c02111{word-spacing:100.402380px;}
.ws19_c02111{word-spacing:100.933020px;}
.wsc_c02111{word-spacing:133.546608px;}
.ws9_c02111{word-spacing:150.082380px;}
.ws6_c02111{word-spacing:150.106608px;}
.ws33_c02111{word-spacing:156.735000px;}
.ws2e_c02111{word-spacing:156.740400px;}
.wsb_c02111{word-spacing:182.842380px;}
.wsd_c02111{word-spacing:182.866608px;}
.ws1b_c02111{word-spacing:215.595972px;}
.ws12_c02111{word-spacing:215.986608px;}
.ws1a_c02111{word-spacing:216.270000px;}
._1_c02111{margin-left:-1.148292px;}
._24_c02111{width:1.845180px;}
._1d_c02111{width:42.439068px;}
._28_c02111{width:43.524252px;}
._14_c02111{width:50.577552px;}
._27_c02111{width:51.948000px;}
._18_c02111{width:62.053200px;}
._16_c02111{width:65.340000px;}
._5_c02111{width:68.763132px;}
._10_c02111{width:72.964440px;}
._1a_c02111{width:75.780000px;}
._11_c02111{width:76.950180px;}
._21_c02111{width:78.264000px;}
._1b_c02111{width:83.700000px;}
._b_c02111{width:85.194000px;}
._12_c02111{width:87.278400px;}
._a_c02111{width:88.581600px;}
._1c_c02111{width:90.849276px;}
._26_c02111{width:94.649436px;}
._2a_c02111{width:96.585300px;}
._1f_c02111{width:98.460000px;}
._13_c02111{width:100.598400px;}
._17_c02111{width:103.464000px;}
._4_c02111{width:104.490000px;}
._29_c02111{width:106.059420px;}
._15_c02111{width:108.424980px;}
._22_c02111{width:109.594296px;}
._2e_c02111{width:111.720168px;}
._2c_c02111{width:114.095016px;}
._c_c02111{width:116.164224px;}
._d_c02111{width:118.378944px;}
._2b_c02111{width:119.705220px;}
._3_c02111{width:121.795776px;}
._2d_c02111{width:124.666920px;}
._19_c02111{width:128.979648px;}
._6_c02111{width:133.316208px;}
._f_c02111{width:140.027688px;}
._25_c02111{width:146.586384px;}
._e_c02111{width:153.215748px;}
._1e_c02111{width:156.780000px;}
._2_c02111{width:169.519284px;}
._0_c02111{width:194.400000px;}
._20_c02111{width:201.403332px;}
._37_c02111{width:203.036400px;}
._32_c02111{width:216.180000px;}
._23_c02111{width:224.784000px;}
._7_c02111{width:232.060104px;}
._30_c02111{width:283.500000px;}
._33_c02111{width:310.104000px;}
._31_c02111{width:347.693400px;}
._35_c02111{width:353.833200px;}
._34_c02111{width:419.929200px;}
._2f_c02111{width:431.488440px;}
._36_c02111{width:605.295000px;}
._9_c02111{width:643.399632px;}
._8_c02111{width:665.158248px;}
.fc0_c02111{color:rgb(0,0,0);}
.fs5_c02111{font-size:42.120000px;}
.fs4_c02111{font-size:47.880000px;}
.fs3_c02111{font-size:54.000000px;}
.fs1_c02111{font-size:60.120000px;}
.fs2_c02111{font-size:65.880000px;}
.fs0_c02111{font-size:72.000000px;}
.y0_c02111{bottom:0.000000px;}
.y3_c02111{bottom:57.360450px;}
.y2_c02111{bottom:78.060450px;}
.y4a_c02111{bottom:112.081455px;}
.y49_c02111{bottom:131.071365px;}
.y48_c02111{bottom:149.970690px;}
.y47_c02111{bottom:168.960600px;}
.y46_c02111{bottom:187.229874px;}
.y45_c02111{bottom:201.000162px;}
.y44_c02111{bottom:214.770450px;}
.y43_c02111{bottom:230.970450px;}
.y42_c02111{bottom:246.450600px;}
.y41_c02111{bottom:262.020450px;}
.y40_c02111{bottom:277.500450px;}
.y3f_c02111{bottom:293.070450px;}
.y3c_c02111{bottom:310.440450px;}
.y3e_c02111{bottom:311.070450px;}
.y3d_c02111{bottom:328.440450px;}
.y3b_c02111{bottom:345.270450px;}
.y3a_c02111{bottom:363.630000px;}
.y39_c02111{bottom:379.110450px;}
.y38_c02111{bottom:394.680600px;}
.y37_c02111{bottom:398.460900px;}
.y36_c02111{bottom:413.670450px;}
.y35_c02111{bottom:417.450150px;}
.y34_c02111{bottom:432.570450px;}
.y33_c02111{bottom:436.440150px;}
.y32_c02111{bottom:451.560450px;}
.y31_c02111{bottom:455.430150px;}
.y30_c02111{bottom:470.550450px;}
.y2f_c02111{bottom:474.330450px;}
.y2e_c02111{bottom:493.320450px;}
.y2d_c02111{bottom:508.530600px;}
.y2c_c02111{bottom:514.020900px;}
.y2b_c02111{bottom:529.230450px;}
.y2a_c02111{bottom:534.720450px;}
.y29_c02111{bottom:553.710450px;}
.y28_c02111{bottom:568.830450px;}
.y27_c02111{bottom:574.410450px;}
.y26_c02111{bottom:593.400450px;}
.y25_c02111{bottom:608.520450px;}
.y24_c02111{bottom:614.100000px;}
.y23_c02111{bottom:629.220450px;}
.y22_c02111{bottom:634.800000px;}
.y21_c02111{bottom:649.920450px;}
.y20_c02111{bottom:655.500450px;}
.y1f_c02111{bottom:674.490450px;}
.y1e_c02111{bottom:689.610450px;}
.y1d_c02111{bottom:695.190450px;}
.y1c_c02111{bottom:711.300450px;}
.y1b_c02111{bottom:729.660450px;}
.y1a_c02111{bottom:747.030450px;}
.y19_c02111{bottom:767.190000px;}
.y18_c02111{bottom:782.670450px;}
.y17_c02111{bottom:799.860600px;}
.y16_c02111{bottom:820.380600px;}
.y15_c02111{bottom:835.950150px;}
.y14_c02111{bottom:851.430600px;}
.y13_c02111{bottom:867.990450px;}
.y12_c02111{bottom:888.690450px;}
.y11_c02111{bottom:909.390450px;}
.y10_c02111{bottom:928.380450px;}
.yf_c02111{bottom:947.730450px;}
.ye_c02111{bottom:968.430450px;}
.yd_c02111{bottom:989.130450px;}
.yc_c02111{bottom:1008.120450px;}
.yb_c02111{bottom:1027.020450px;}
.ya_c02111{bottom:1046.010450px;}
.y9_c02111{bottom:1065.000450px;}
.y8_c02111{bottom:1083.630450px;}
.y7_c02111{bottom:1101.270450px;}
.y4_c02111{bottom:1119.630450px;}
.y6_c02111{bottom:1120.170450px;}
.y5_c02111{bottom:1139.160450px;}
.y1_c02111{bottom:1193.160450px;}
.hc_c02111{height:42.011895px;}
.hb_c02111{height:43.092495px;}
.hd_c02111{height:47.381836px;}
.h6_c02111{height:47.961914px;}
.hf_c02111{height:48.461236px;}
.he_c02111{height:48.461836px;}
.h4_c02111{height:53.397598px;}
.h3_c02111{height:58.513535px;}
.ha_c02111{height:62.472935px;}
.h7_c02111{height:62.473535px;}
.h9_c02111{height:62.474135px;}
.h8_c02111{height:62.833535px;}
.h2_c02111{height:63.175781px;}
.h1_c02111{height:63.949219px;}
.h5_c02111{height:65.029219px;}
.h0_c02111{height:1263.000000px;}
.w1_c02111{width:892.500000px;}
.w0_c02111{width:892.830000px;}
.x0_c02111{left:0.000000px;}
.x1_c02111{left:127.620000px;}
.x11_c02111{left:134.550000px;}
.x3_c02111{left:135.630000px;}
.xe_c02111{left:143.730000px;}
.xf_c02111{left:150.120000px;}
.xd_c02111{left:160.920000px;}
.x10_c02111{left:220.680000px;}
.x5_c02111{left:264.240000px;}
.x6_c02111{left:275.670000px;}
.x4_c02111{left:290.610000px;}
.x12_c02111{left:332.100000px;}
.x13_c02111{left:354.780000px;}
.x8_c02111{left:417.330000px;}
.x2_c02111{left:437.580000px;}
.x9_c02111{left:460.170000px;}
.x7_c02111{left:465.210000px;}
.xb_c02111{left:599.940000px;}
.xc_c02111{left:633.600000px;}
.xa_c02111{left:639.810000px;}
@media print{
.v7_c02111{vertical-align:-13.760000pt;}
.va_c02111{vertical-align:-12.480000pt;}
.v8_c02111{vertical-align:-11.520000pt;}
.v9_c02111{vertical-align:-9.920000pt;}
.v4_c02111{vertical-align:-3.520000pt;}
.v2_c02111{vertical-align:-1.280000pt;}
.v0_c02111{vertical-align:0.000000pt;}
.v1_c02111{vertical-align:1.280000pt;}
.v5_c02111{vertical-align:2.240000pt;}
.v6_c02111{vertical-align:3.520000pt;}
.v3_c02111{vertical-align:9.920000pt;}
.ls5f_c02111{letter-spacing:-0.158400pt;}
.ls59_c02111{letter-spacing:-0.076608pt;}
.ls52_c02111{letter-spacing:-0.069472pt;}
.ls55_c02111{letter-spacing:-0.038400pt;}
.ls50_c02111{letter-spacing:-0.025600pt;}
.ls57_c02111{letter-spacing:-0.017024pt;}
.ls4e_c02111{letter-spacing:-0.012800pt;}
.ls56_c02111{letter-spacing:-0.009600pt;}
.ls5c_c02111{letter-spacing:-0.008512pt;}
.ls53_c02111{letter-spacing:-0.005856pt;}
.ls5e_c02111{letter-spacing:-0.004800pt;}
.ls5d_c02111{letter-spacing:-0.004256pt;}
.ls4f_c02111{letter-spacing:0.000000pt;}
.ls3_c02111{letter-spacing:0.005856pt;}
.ls2f_c02111{letter-spacing:0.006400pt;}
.ls30_c02111{letter-spacing:0.009600pt;}
.ls33_c02111{letter-spacing:0.011232pt;}
.ls1_c02111{letter-spacing:0.011712pt;}
.ls45_c02111{letter-spacing:0.017024pt;}
.ls5_c02111{letter-spacing:0.017568pt;}
.ls2_c02111{letter-spacing:0.023424pt;}
.ls32_c02111{letter-spacing:0.025536pt;}
.ls2e_c02111{letter-spacing:0.025600pt;}
.ls34_c02111{letter-spacing:0.028800pt;}
.ls38_c02111{letter-spacing:0.033600pt;}
.ls24_c02111{letter-spacing:0.035136pt;}
.ls31_c02111{letter-spacing:0.038304pt;}
.ls37_c02111{letter-spacing:0.038400pt;}
.ls4a_c02111{letter-spacing:0.043200pt;}
.ls40_c02111{letter-spacing:0.046816pt;}
.ls51_c02111{letter-spacing:0.046848pt;}
.ls49_c02111{letter-spacing:0.048000pt;}
.ls1b_c02111{letter-spacing:0.052704pt;}
.lsd_c02111{letter-spacing:0.058560pt;}
.ls4c_c02111{letter-spacing:0.059584pt;}
.ls48_c02111{letter-spacing:0.062400pt;}
.ls4d_c02111{letter-spacing:0.063840pt;}
.ls28_c02111{letter-spacing:0.064416pt;}
.ls3b_c02111{letter-spacing:0.068096pt;}
.ls12_c02111{letter-spacing:0.070272pt;}
.ls3f_c02111{letter-spacing:0.072352pt;}
.ls7_c02111{letter-spacing:0.081984pt;}
.ls47_c02111{letter-spacing:0.085120pt;}
.ls16_c02111{letter-spacing:0.087840pt;}
.ls4b_c02111{letter-spacing:0.089376pt;}
.ls46_c02111{letter-spacing:0.093696pt;}
.ls36_c02111{letter-spacing:0.097888pt;}
.ls41_c02111{letter-spacing:0.102144pt;}
.ls43_c02111{letter-spacing:0.110656pt;}
.ls44_c02111{letter-spacing:0.119168pt;}
.lsa_c02111{letter-spacing:0.122976pt;}
.ls42_c02111{letter-spacing:0.123424pt;}
.ls6_c02111{letter-spacing:0.128256pt;}
.ls54_c02111{letter-spacing:0.134400pt;}
.ls4_c02111{letter-spacing:0.134688pt;}
.ls26_c02111{letter-spacing:0.140544pt;}
.ls3e_c02111{letter-spacing:0.144704pt;}
.ls0_c02111{letter-spacing:0.146400pt;}
.ls58_c02111{letter-spacing:0.148960pt;}
.ls18_c02111{letter-spacing:0.158112pt;}
.ls1d_c02111{letter-spacing:0.160000pt;}
.ls3c_c02111{letter-spacing:0.161728pt;}
.ls3a_c02111{letter-spacing:0.183008pt;}
.ls27_c02111{letter-spacing:56.960000pt;}
.ls22_c02111{letter-spacing:58.880000pt;}
.ls19_c02111{letter-spacing:59.200000pt;}
.ls1a_c02111{letter-spacing:59.520000pt;}
.lsf_c02111{letter-spacing:88.000000pt;}
.ls10_c02111{letter-spacing:88.320000pt;}
.lsc_c02111{letter-spacing:88.640000pt;}
.ls35_c02111{letter-spacing:101.760000pt;}
.ls23_c02111{letter-spacing:104.400000pt;}
.ls9_c02111{letter-spacing:117.440000pt;}
.lsb_c02111{letter-spacing:117.760000pt;}
.ls15_c02111{letter-spacing:118.080000pt;}
.ls14_c02111{letter-spacing:133.600000pt;}
.ls5b_c02111{letter-spacing:137.998112pt;}
.ls3d_c02111{letter-spacing:138.398400pt;}
.ls5a_c02111{letter-spacing:139.358400pt;}
.ls1f_c02111{letter-spacing:162.960000pt;}
.ls11_c02111{letter-spacing:165.760000pt;}
.ls39_c02111{letter-spacing:178.480000pt;}
.ls29_c02111{letter-spacing:182.080000pt;}
.ls2a_c02111{letter-spacing:190.720000pt;}
.ls1e_c02111{letter-spacing:191.040000pt;}
.ls20_c02111{letter-spacing:191.359467pt;}
.ls13_c02111{letter-spacing:208.320000pt;}
.ls2c_c02111{letter-spacing:219.840000pt;}
.ls17_c02111{letter-spacing:224.320000pt;}
.ls25_c02111{letter-spacing:239.040000pt;}
.ls1c_c02111{letter-spacing:250.240000pt;}
.ls8_c02111{letter-spacing:250.560000pt;}
.lse_c02111{letter-spacing:263.680000pt;}
.ls21_c02111{letter-spacing:279.680000pt;}
.ls2d_c02111{letter-spacing:349.440000pt;}
.ls2b_c02111{letter-spacing:368.640000pt;}
.ws0_c02111{word-spacing:-15.974400pt;}
.ws4_c02111{word-spacing:-14.798112pt;}
.ws1_c02111{word-spacing:-14.786400pt;}
.ws16_c02111{word-spacing:-14.780544pt;}
.wsa_c02111{word-spacing:-14.774688pt;}
.ws5_c02111{word-spacing:-14.762976pt;}
.wse_c02111{word-spacing:-14.727840pt;}
.ws13_c02111{word-spacing:-14.721984pt;}
.ws17_c02111{word-spacing:-14.704416pt;}
.ws11_c02111{word-spacing:-14.692704pt;}
.ws15_c02111{word-spacing:-14.675136pt;}
.ws2_c02111{word-spacing:-14.663424pt;}
.ws3_c02111{word-spacing:-14.657568pt;}
.ws1e_c02111{word-spacing:-11.995200pt;}
.ws2d_c02111{word-spacing:-0.263872pt;}
.ws2c_c02111{word-spacing:-0.242592pt;}
.ws2f_c02111{word-spacing:-0.225568pt;}
.ws34_c02111{word-spacing:-0.204288pt;}
.ws36_c02111{word-spacing:-0.200032pt;}
.ws35_c02111{word-spacing:-0.191520pt;}
.ws32_c02111{word-spacing:-0.183008pt;}
.ws3a_c02111{word-spacing:-0.165984pt;}
.ws37_c02111{word-spacing:-0.153216pt;}
.ws31_c02111{word-spacing:-0.106400pt;}
.ws29_c02111{word-spacing:-0.102400pt;}
.ws38_c02111{word-spacing:-0.097888pt;}
.ws2b_c02111{word-spacing:-0.089856pt;}
.ws30_c02111{word-spacing:-0.072352pt;}
.ws25_c02111{word-spacing:-0.048096pt;}
.ws39_c02111{word-spacing:-0.011712pt;}
.ws2a_c02111{word-spacing:-0.006400pt;}
.ws20_c02111{word-spacing:0.000000pt;}
.ws26_c02111{word-spacing:0.011712pt;}
.ws1f_c02111{word-spacing:0.012800pt;}
.ws24_c02111{word-spacing:0.023424pt;}
.ws23_c02111{word-spacing:0.035136pt;}
.ws27_c02111{word-spacing:0.046848pt;}
.ws21_c02111{word-spacing:0.070272pt;}
.ws22_c02111{word-spacing:0.076128pt;}
.ws28_c02111{word-spacing:0.087840pt;}
.ws3b_c02111{word-spacing:0.096000pt;}
.ws3c_c02111{word-spacing:0.110400pt;}
.ws3d_c02111{word-spacing:0.115200pt;}
.ws40_c02111{word-spacing:0.719264pt;}
.ws3e_c02111{word-spacing:0.791616pt;}
.ws3f_c02111{word-spacing:0.812896pt;}
.ws42_c02111{word-spacing:1.336384pt;}
.ws41_c02111{word-spacing:1.459808pt;}
.ws1d_c02111{word-spacing:42.817280pt;}
.ws18_c02111{word-spacing:57.857280pt;}
.ws14_c02111{word-spacing:59.767552pt;}
.ws10_c02111{word-spacing:60.126560pt;}
.ws1c_c02111{word-spacing:66.817280pt;}
.ws7_c02111{word-spacing:88.885664pt;}
.wsf_c02111{word-spacing:88.887552pt;}
.ws8_c02111{word-spacing:89.246560pt;}
.ws19_c02111{word-spacing:89.718240pt;}
.wsc_c02111{word-spacing:118.708096pt;}
.ws9_c02111{word-spacing:133.406560pt;}
.ws6_c02111{word-spacing:133.428096pt;}
.ws33_c02111{word-spacing:139.320000pt;}
.ws2e_c02111{word-spacing:139.324800pt;}
.wsb_c02111{word-spacing:162.526560pt;}
.wsd_c02111{word-spacing:162.548096pt;}
.ws1b_c02111{word-spacing:191.640864pt;}
.ws12_c02111{word-spacing:191.988096pt;}
.ws1a_c02111{word-spacing:192.240000pt;}
._1_c02111{margin-left:-1.020704pt;}
._24_c02111{width:1.640160pt;}
._1d_c02111{width:37.723616pt;}
._28_c02111{width:38.688224pt;}
._14_c02111{width:44.957824pt;}
._27_c02111{width:46.176000pt;}
._18_c02111{width:55.158400pt;}
._16_c02111{width:58.080000pt;}
._5_c02111{width:61.122784pt;}
._10_c02111{width:64.857280pt;}
._1a_c02111{width:67.360000pt;}
._11_c02111{width:68.400160pt;}
._21_c02111{width:69.568000pt;}
._1b_c02111{width:74.400000pt;}
._b_c02111{width:75.728000pt;}
._12_c02111{width:77.580800pt;}
._a_c02111{width:78.739200pt;}
._1c_c02111{width:80.754912pt;}
._26_c02111{width:84.132832pt;}
._2a_c02111{width:85.853600pt;}
._1f_c02111{width:87.520000pt;}
._13_c02111{width:89.420800pt;}
._17_c02111{width:91.968000pt;}
._4_c02111{width:92.880000pt;}
._29_c02111{width:94.275040pt;}
._15_c02111{width:96.377760pt;}
._22_c02111{width:97.417152pt;}
._2e_c02111{width:99.306816pt;}
._2c_c02111{width:101.417792pt;}
._c_c02111{width:103.257088pt;}
._d_c02111{width:105.225728pt;}
._2b_c02111{width:106.404640pt;}
._3_c02111{width:108.262912pt;}
._2d_c02111{width:110.815040pt;}
._19_c02111{width:114.648576pt;}
._6_c02111{width:118.503296pt;}
._f_c02111{width:124.469056pt;}
._25_c02111{width:130.299008pt;}
._e_c02111{width:136.191776pt;}
._1e_c02111{width:139.360000pt;}
._2_c02111{width:150.683808pt;}
._0_c02111{width:172.800000pt;}
._20_c02111{width:179.025184pt;}
._37_c02111{width:180.476800pt;}
._32_c02111{width:192.160000pt;}
._23_c02111{width:199.808000pt;}
._7_c02111{width:206.275648pt;}
._30_c02111{width:252.000000pt;}
._33_c02111{width:275.648000pt;}
._31_c02111{width:309.060800pt;}
._35_c02111{width:314.518400pt;}
._34_c02111{width:373.270400pt;}
._2f_c02111{width:383.545280pt;}
._36_c02111{width:538.040000pt;}
._9_c02111{width:571.910784pt;}
._8_c02111{width:591.251776pt;}
.fs5_c02111{font-size:37.440000pt;}
.fs4_c02111{font-size:42.560000pt;}
.fs3_c02111{font-size:48.000000pt;}
.fs1_c02111{font-size:53.440000pt;}
.fs2_c02111{font-size:58.560000pt;}
.fs0_c02111{font-size:64.000000pt;}
.y0_c02111{bottom:0.000000pt;}
.y3_c02111{bottom:50.987067pt;}
.y2_c02111{bottom:69.387067pt;}
.y4a_c02111{bottom:99.627960pt;}
.y49_c02111{bottom:116.507880pt;}
.y48_c02111{bottom:133.307280pt;}
.y47_c02111{bottom:150.187200pt;}
.y46_c02111{bottom:166.426555pt;}
.y45_c02111{bottom:178.666811pt;}
.y44_c02111{bottom:190.907067pt;}
.y43_c02111{bottom:205.307067pt;}
.y42_c02111{bottom:219.067200pt;}
.y41_c02111{bottom:232.907067pt;}
.y40_c02111{bottom:246.667067pt;}
.y3f_c02111{bottom:260.507067pt;}
.y3c_c02111{bottom:275.947067pt;}
.y3e_c02111{bottom:276.507067pt;}
.y3d_c02111{bottom:291.947067pt;}
.y3b_c02111{bottom:306.907067pt;}
.y3a_c02111{bottom:323.226667pt;}
.y39_c02111{bottom:336.987067pt;}
.y38_c02111{bottom:350.827200pt;}
.y37_c02111{bottom:354.187467pt;}
.y36_c02111{bottom:367.707067pt;}
.y35_c02111{bottom:371.066800pt;}
.y34_c02111{bottom:384.507067pt;}
.y33_c02111{bottom:387.946800pt;}
.y32_c02111{bottom:401.387067pt;}
.y31_c02111{bottom:404.826800pt;}
.y30_c02111{bottom:418.267067pt;}
.y2f_c02111{bottom:421.627067pt;}
.y2e_c02111{bottom:438.507067pt;}
.y2d_c02111{bottom:452.027200pt;}
.y2c_c02111{bottom:456.907467pt;}
.y2b_c02111{bottom:470.427067pt;}
.y2a_c02111{bottom:475.307067pt;}
.y29_c02111{bottom:492.187067pt;}
.y28_c02111{bottom:505.627067pt;}
.y27_c02111{bottom:510.587067pt;}
.y26_c02111{bottom:527.467067pt;}
.y25_c02111{bottom:540.907067pt;}
.y24_c02111{bottom:545.866667pt;}
.y23_c02111{bottom:559.307067pt;}
.y22_c02111{bottom:564.266667pt;}
.y21_c02111{bottom:577.707067pt;}
.y20_c02111{bottom:582.667067pt;}
.y1f_c02111{bottom:599.547067pt;}
.y1e_c02111{bottom:612.987067pt;}
.y1d_c02111{bottom:617.947067pt;}
.y1c_c02111{bottom:632.267067pt;}
.y1b_c02111{bottom:648.587067pt;}
.y1a_c02111{bottom:664.027067pt;}
.y19_c02111{bottom:681.946667pt;}
.y18_c02111{bottom:695.707067pt;}
.y17_c02111{bottom:710.987200pt;}
.y16_c02111{bottom:729.227200pt;}
.y15_c02111{bottom:743.066800pt;}
.y14_c02111{bottom:756.827200pt;}
.y13_c02111{bottom:771.547067pt;}
.y12_c02111{bottom:789.947067pt;}
.y11_c02111{bottom:808.347067pt;}
.y10_c02111{bottom:825.227067pt;}
.yf_c02111{bottom:842.427067pt;}
.ye_c02111{bottom:860.827067pt;}
.yd_c02111{bottom:879.227067pt;}
.yc_c02111{bottom:896.107067pt;}
.yb_c02111{bottom:912.907067pt;}
.ya_c02111{bottom:929.787067pt;}
.y9_c02111{bottom:946.667067pt;}
.y8_c02111{bottom:963.227067pt;}
.y7_c02111{bottom:978.907067pt;}
.y4_c02111{bottom:995.227067pt;}
.y6_c02111{bottom:995.707067pt;}
.y5_c02111{bottom:1012.587067pt;}
.y1_c02111{bottom:1060.587067pt;}
.hc_c02111{height:37.343906pt;}
.hb_c02111{height:38.304440pt;}
.hd_c02111{height:42.117188pt;}
.h6_c02111{height:42.632812pt;}
.hf_c02111{height:43.076654pt;}
.he_c02111{height:43.077187pt;}
.h4_c02111{height:47.464531pt;}
.h3_c02111{height:52.012031pt;}
.ha_c02111{height:55.531498pt;}
.h7_c02111{height:55.532031pt;}
.h9_c02111{height:55.532565pt;}
.h8_c02111{height:55.852031pt;}
.h2_c02111{height:56.156250pt;}
.h1_c02111{height:56.843750pt;}
.h5_c02111{height:57.803750pt;}
.h0_c02111{height:1122.666667pt;}
.w1_c02111{width:793.333333pt;}
.w0_c02111{width:793.626667pt;}
.x0_c02111{left:0.000000pt;}
.x1_c02111{left:113.440000pt;}
.x11_c02111{left:119.600000pt;}
.x3_c02111{left:120.560000pt;}
.xe_c02111{left:127.760000pt;}
.xf_c02111{left:133.440000pt;}
.xd_c02111{left:143.040000pt;}
.x10_c02111{left:196.160000pt;}
.x5_c02111{left:234.880000pt;}
.x6_c02111{left:245.040000pt;}
.x4_c02111{left:258.320000pt;}
.x12_c02111{left:295.200000pt;}
.x13_c02111{left:315.360000pt;}
.x8_c02111{left:370.960000pt;}
.x2_c02111{left:388.960000pt;}
.x9_c02111{left:409.040000pt;}
.x7_c02111{left:413.520000pt;}
.xb_c02111{left:533.280000pt;}
.xc_c02111{left:563.200000pt;}
.xa_c02111{left:568.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_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_355af481dc2e9c2bce22fc1e.woff2')format("woff");}.ff1_c02112{font-family:ff1_c02112;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02112;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v7_c02112{vertical-align:-15.120000px;}
.va_c02112{vertical-align:-13.680000px;}
.v8_c02112{vertical-align:-12.599400px;}
.v9_c02112{vertical-align:-11.160000px;}
.v4_c02112{vertical-align:-3.960000px;}
.vb_c02112{vertical-align:-2.880000px;}
.v3_c02112{vertical-align:-1.800000px;}
.v0_c02112{vertical-align:0.000000px;}
.v1_c02112{vertical-align:1.080000px;}
.v5_c02112{vertical-align:2.520600px;}
.v6_c02112{vertical-align:3.960600px;}
.v2_c02112{vertical-align:32.040000px;}
.ls2c_c02112{letter-spacing:-0.178200px;}
.ls2a_c02112{letter-spacing:-0.102600px;}
.ls29_c02112{letter-spacing:-0.086400px;}
.ls32_c02112{letter-spacing:-0.086184px;}
.ls2f_c02112{letter-spacing:-0.043200px;}
.ls28_c02112{letter-spacing:-0.019152px;}
.ls2b_c02112{letter-spacing:-0.016200px;}
.ls24_c02112{letter-spacing:-0.014400px;}
.ls30_c02112{letter-spacing:-0.010800px;}
.ls34_c02112{letter-spacing:-0.009576px;}
.ls26_c02112{letter-spacing:-0.005400px;}
.ls35_c02112{letter-spacing:-0.004788px;}
.ls25_c02112{letter-spacing:0.000000px;}
.lse_c02112{letter-spacing:0.007200px;}
.ls6_c02112{letter-spacing:0.010800px;}
.ls11_c02112{letter-spacing:0.012636px;}
.ls5_c02112{letter-spacing:0.016200px;}
.ls1a_c02112{letter-spacing:0.019152px;}
.ls1f_c02112{letter-spacing:0.021600px;}
.ls4_c02112{letter-spacing:0.027000px;}
.ls10_c02112{letter-spacing:0.028728px;}
.ls2_c02112{letter-spacing:0.032400px;}
.ls7_c02112{letter-spacing:0.037800px;}
.lsf_c02112{letter-spacing:0.043092px;}
.ls3_c02112{letter-spacing:0.043200px;}
.ls1e_c02112{letter-spacing:0.048600px;}
.ls20_c02112{letter-spacing:0.052668px;}
.ls1d_c02112{letter-spacing:0.054000px;}
.lsb_c02112{letter-spacing:0.067032px;}
.ls1c_c02112{letter-spacing:0.070200px;}
.lsc_c02112{letter-spacing:0.071820px;}
.ls9_c02112{letter-spacing:0.076608px;}
.ls1b_c02112{letter-spacing:0.079056px;}
.ls17_c02112{letter-spacing:0.081396px;}
.lsd_c02112{letter-spacing:0.090972px;}
.ls1_c02112{letter-spacing:0.095760px;}
.ls8_c02112{letter-spacing:0.100548px;}
.ls0_c02112{letter-spacing:0.105408px;}
.ls21_c02112{letter-spacing:0.114912px;}
.ls18_c02112{letter-spacing:0.124488px;}
.ls19_c02112{letter-spacing:0.134064px;}
.ls22_c02112{letter-spacing:0.138852px;}
.ls2e_c02112{letter-spacing:0.151200px;}
.ls27_c02112{letter-spacing:0.153216px;}
.ls12_c02112{letter-spacing:0.158112px;}
.ls16_c02112{letter-spacing:0.162792px;}
.ls31_c02112{letter-spacing:0.167580px;}
.lsa_c02112{letter-spacing:0.181944px;}
.ls2d_c02112{letter-spacing:0.205884px;}
.ls13_c02112{letter-spacing:114.480000px;}
.ls33_c02112{letter-spacing:154.171728px;}
.ls15_c02112{letter-spacing:155.698200px;}
.ls23_c02112{letter-spacing:156.778200px;}
.ls14_c02112{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02112{word-spacing:-16.628112px;}
.ws0_c02112{word-spacing:-13.494600px;}
.ws17_c02112{word-spacing:-0.272916px;}
.ws18_c02112{word-spacing:-0.253764px;}
.ws28_c02112{word-spacing:-0.229824px;}
.ws1d_c02112{word-spacing:-0.225036px;}
.ws1c_c02112{word-spacing:-0.215460px;}
.ws27_c02112{word-spacing:-0.205884px;}
.wse_c02112{word-spacing:-0.189000px;}
.ws7_c02112{word-spacing:-0.186732px;}
.ws14_c02112{word-spacing:-0.181944px;}
.ws1e_c02112{word-spacing:-0.172368px;}
.ws20_c02112{word-spacing:-0.119700px;}
.ws1f_c02112{word-spacing:-0.110124px;}
.ws16_c02112{word-spacing:-0.101088px;}
.ws1a_c02112{word-spacing:-0.081396px;}
.ws25_c02112{word-spacing:-0.021600px;}
.ws6_c02112{word-spacing:-0.013176px;}
.ws15_c02112{word-spacing:-0.007200px;}
.ws5_c02112{word-spacing:0.000000px;}
.ws21_c02112{word-spacing:0.013176px;}
.ws4_c02112{word-spacing:0.014400px;}
.ws22_c02112{word-spacing:0.108000px;}
.ws23_c02112{word-spacing:0.124200px;}
.ws24_c02112{word-spacing:0.129600px;}
.ws8_c02112{word-spacing:0.145800px;}
.wsa_c02112{word-spacing:0.151200px;}
.wsb_c02112{word-spacing:0.162000px;}
.wsd_c02112{word-spacing:0.194400px;}
.ws9_c02112{word-spacing:0.264600px;}
.wsc_c02112{word-spacing:0.280800px;}
.ws11_c02112{word-spacing:0.809172px;}
.wsf_c02112{word-spacing:0.890568px;}
.ws10_c02112{word-spacing:0.914508px;}
.ws13_c02112{word-spacing:1.503432px;}
.ws12_c02112{word-spacing:1.642284px;}
.ws3_c02112{word-spacing:74.089440px;}
.ws2_c02112{word-spacing:101.089440px;}
.ws19_c02112{word-spacing:155.655000px;}
.ws1b_c02112{word-spacing:155.660400px;}
.ws26_c02112{word-spacing:200.296800px;}
._39_c02112{margin-left:-44.817840px;}
._3a_c02112{margin-left:-43.380792px;}
._1_c02112{margin-left:-1.261008px;}
._a_c02112{width:1.026000px;}
._26_c02112{width:44.276544px;}
._1b_c02112{width:50.577552px;}
._2c_c02112{width:51.624000px;}
._20_c02112{width:60.973200px;}
._1e_c02112{width:65.340000px;}
._17_c02112{width:72.604440px;}
._22_c02112{width:75.780000px;}
._18_c02112{width:76.950180px;}
._1f_c02112{width:78.624000px;}
._23_c02112{width:83.700000px;}
._10_c02112{width:85.194000px;}
._19_c02112{width:87.278400px;}
._f_c02112{width:88.581600px;}
._1c_c02112{width:91.288440px;}
._2b_c02112{width:94.564296px;}
._3d_c02112{width:96.585300px;}
._29_c02112{width:98.460000px;}
._1a_c02112{width:100.598400px;}
._3c_c02112{width:102.718728px;}
._2a_c02112{width:104.575140px;}
._3b_c02112{width:106.059420px;}
._32_c02112{width:108.435600px;}
._24_c02112{width:109.594296px;}
._31_c02112{width:111.720168px;}
._2f_c02112{width:114.095016px;}
._12_c02112{width:115.740000px;}
._13_c02112{width:118.378944px;}
._2e_c02112{width:119.705220px;}
._11_c02112{width:122.220000px;}
._30_c02112{width:124.666920px;}
._16_c02112{width:126.707688px;}
._21_c02112{width:127.933200px;}
._2d_c02112{width:128.979648px;}
._33_c02112{width:133.247016px;}
._14_c02112{width:135.096120px;}
._27_c02112{width:146.586384px;}
._15_c02112{width:153.595404px;}
._28_c02112{width:156.780000px;}
._0_c02112{width:194.400000px;}
._25_c02112{width:199.944000px;}
._1d_c02112{width:200.964168px;}
._e_c02112{width:203.036400px;}
._5_c02112{width:216.180000px;}
._3_c02112{width:283.500000px;}
._8_c02112{width:303.170400px;}
._6_c02112{width:310.104000px;}
._4_c02112{width:324.775800px;}
._35_c02112{width:347.693400px;}
._37_c02112{width:353.833200px;}
._9_c02112{width:382.210200px;}
._36_c02112{width:419.929200px;}
._34_c02112{width:431.488440px;}
._b_c02112{width:451.783800px;}
._c_c02112{width:482.234400px;}
._7_c02112{width:483.924600px;}
._2_c02112{width:582.576192px;}
._38_c02112{width:605.295000px;}
._d_c02112{width:799.695000px;}
.fc0_c02112{color:rgb(0,0,0);}
.fs4_c02112{font-size:42.120000px;}
.fs3_c02112{font-size:47.880000px;}
.fs2_c02112{font-size:54.000000px;}
.fs5_c02112{font-size:60.120000px;}
.fs1_c02112{font-size:65.880000px;}
.fs0_c02112{font-size:72.000000px;}
.y0_c02112{bottom:0.000000px;}
.y3_c02112{bottom:57.360450px;}
.y2_c02112{bottom:78.060450px;}
.y50_c02112{bottom:123.150450px;}
.y4f_c02112{bottom:141.510450px;}
.y4e_c02112{bottom:147.000900px;}
.y4d_c02112{bottom:162.210600px;}
.y4c_c02112{bottom:167.701050px;}
.y4b_c02112{bottom:182.910450px;}
.y4a_c02112{bottom:188.400900px;}
.y49_c02112{bottom:203.610450px;}
.y48_c02112{bottom:209.100900px;}
.y47_c02112{bottom:224.220450px;}
.y46_c02112{bottom:229.800450px;}
.y45_c02112{bottom:248.790450px;}
.y44_c02112{bottom:263.910450px;}
.y43_c02112{bottom:269.490000px;}
.y42_c02112{bottom:284.610450px;}
.y41_c02112{bottom:290.190450px;}
.y40_c02112{bottom:309.180450px;}
.y3f_c02112{bottom:324.300450px;}
.y3e_c02112{bottom:329.880450px;}
.y3d_c02112{bottom:346.080450px;}
.y3c_c02112{bottom:364.350450px;}
.y3b_c02112{bottom:381.720450px;}
.y3a_c02112{bottom:401.880450px;}
.y39_c02112{bottom:417.270099px;}
.y38_c02112{bottom:431.040387px;}
.y37_c02112{bottom:444.900450px;}
.y36_c02112{bottom:461.010450px;}
.y35_c02112{bottom:476.580450px;}
.y34_c02112{bottom:492.060450px;}
.y33_c02112{bottom:507.630450px;}
.y32_c02112{bottom:523.110600px;}
.y2f_c02112{bottom:540.480450px;}
.y31_c02112{bottom:541.200450px;}
.y30_c02112{bottom:558.570450px;}
.y2e_c02112{bottom:575.400450px;}
.y2d_c02112{bottom:593.670900px;}
.y2c_c02112{bottom:609.240450px;}
.y2b_c02112{bottom:624.720450px;}
.y2a_c02112{bottom:630.300000px;}
.y29_c02112{bottom:645.420450px;}
.y28_c02112{bottom:651.000000px;}
.y27_c02112{bottom:666.120450px;}
.y26_c02112{bottom:671.700000px;}
.y25_c02112{bottom:686.820450px;}
.y24_c02112{bottom:692.400000px;}
.y23_c02112{bottom:707.520450px;}
.y22_c02112{bottom:713.100450px;}
.y21_c02112{bottom:732.090450px;}
.y20_c02112{bottom:747.210450px;}
.y1f_c02112{bottom:752.790450px;}
.y1e_c02112{bottom:771.690450px;}
.y1d_c02112{bottom:786.900450px;}
.y1c_c02112{bottom:792.390900px;}
.y1b_c02112{bottom:807.600450px;}
.y1a_c02112{bottom:813.091050px;}
.y19_c02112{bottom:828.300450px;}
.y18_c02112{bottom:833.790600px;}
.y17_c02112{bottom:849.990450px;}
.y16_c02112{bottom:868.350450px;}
.y15_c02112{bottom:885.720450px;}
.y14_c02112{bottom:905.790900px;}
.y13_c02112{bottom:921.360450px;}
.y12_c02112{bottom:936.750099px;}
.y11_c02112{bottom:950.520387px;}
.y10_c02112{bottom:964.380450px;}
.yf_c02112{bottom:980.490450px;}
.ye_c02112{bottom:996.060450px;}
.yd_c02112{bottom:1011.540450px;}
.yc_c02112{bottom:1027.110450px;}
.yb_c02112{bottom:1042.590450px;}
.ya_c02112{bottom:1058.160450px;}
.y9_c02112{bottom:1073.640450px;}
.y8_c02112{bottom:1089.210450px;}
.y5_c02112{bottom:1106.580450px;}
.y7_c02112{bottom:1107.210450px;}
.y6_c02112{bottom:1124.580450px;}
.y4_c02112{bottom:1141.410450px;}
.y1_c02112{bottom:1193.160450px;}
.h5_c02112{height:42.011895px;}
.h4_c02112{height:43.091895px;}
.h6_c02112{height:47.381836px;}
.h8_c02112{height:47.961914px;}
.hd_c02112{height:48.461236px;}
.h7_c02112{height:48.461836px;}
.he_c02112{height:48.462436px;}
.h3_c02112{height:58.513535px;}
.hb_c02112{height:62.473535px;}
.ha_c02112{height:62.474135px;}
.hc_c02112{height:62.833535px;}
.h2_c02112{height:63.175781px;}
.h1_c02112{height:63.949219px;}
.h9_c02112{height:79.421836px;}
.h0_c02112{height:1263.000000px;}
.w1_c02112{width:892.500000px;}
.w0_c02112{width:892.830000px;}
.x0_c02112{left:0.000000px;}
.x1_c02112{left:127.620000px;}
.x3_c02112{left:134.550000px;}
.x6_c02112{left:135.630000px;}
.x7_c02112{left:143.730000px;}
.x8_c02112{left:150.120000px;}
.x9_c02112{left:220.680000px;}
.xa_c02112{left:332.100000px;}
.xb_c02112{left:354.780000px;}
.x4_c02112{left:380.700000px;}
.x5_c02112{left:403.380000px;}
.x2_c02112{left:437.580000px;}
@media print{
.v7_c02112{vertical-align:-13.440000pt;}
.va_c02112{vertical-align:-12.160000pt;}
.v8_c02112{vertical-align:-11.199467pt;}
.v9_c02112{vertical-align:-9.920000pt;}
.v4_c02112{vertical-align:-3.520000pt;}
.vb_c02112{vertical-align:-2.560000pt;}
.v3_c02112{vertical-align:-1.600000pt;}
.v0_c02112{vertical-align:0.000000pt;}
.v1_c02112{vertical-align:0.960000pt;}
.v5_c02112{vertical-align:2.240533pt;}
.v6_c02112{vertical-align:3.520533pt;}
.v2_c02112{vertical-align:28.480000pt;}
.ls2c_c02112{letter-spacing:-0.158400pt;}
.ls2a_c02112{letter-spacing:-0.091200pt;}
.ls29_c02112{letter-spacing:-0.076800pt;}
.ls32_c02112{letter-spacing:-0.076608pt;}
.ls2f_c02112{letter-spacing:-0.038400pt;}
.ls28_c02112{letter-spacing:-0.017024pt;}
.ls2b_c02112{letter-spacing:-0.014400pt;}
.ls24_c02112{letter-spacing:-0.012800pt;}
.ls30_c02112{letter-spacing:-0.009600pt;}
.ls34_c02112{letter-spacing:-0.008512pt;}
.ls26_c02112{letter-spacing:-0.004800pt;}
.ls35_c02112{letter-spacing:-0.004256pt;}
.ls25_c02112{letter-spacing:0.000000pt;}
.lse_c02112{letter-spacing:0.006400pt;}
.ls6_c02112{letter-spacing:0.009600pt;}
.ls11_c02112{letter-spacing:0.011232pt;}
.ls5_c02112{letter-spacing:0.014400pt;}
.ls1a_c02112{letter-spacing:0.017024pt;}
.ls1f_c02112{letter-spacing:0.019200pt;}
.ls4_c02112{letter-spacing:0.024000pt;}
.ls10_c02112{letter-spacing:0.025536pt;}
.ls2_c02112{letter-spacing:0.028800pt;}
.ls7_c02112{letter-spacing:0.033600pt;}
.lsf_c02112{letter-spacing:0.038304pt;}
.ls3_c02112{letter-spacing:0.038400pt;}
.ls1e_c02112{letter-spacing:0.043200pt;}
.ls20_c02112{letter-spacing:0.046816pt;}
.ls1d_c02112{letter-spacing:0.048000pt;}
.lsb_c02112{letter-spacing:0.059584pt;}
.ls1c_c02112{letter-spacing:0.062400pt;}
.lsc_c02112{letter-spacing:0.063840pt;}
.ls9_c02112{letter-spacing:0.068096pt;}
.ls1b_c02112{letter-spacing:0.070272pt;}
.ls17_c02112{letter-spacing:0.072352pt;}
.lsd_c02112{letter-spacing:0.080864pt;}
.ls1_c02112{letter-spacing:0.085120pt;}
.ls8_c02112{letter-spacing:0.089376pt;}
.ls0_c02112{letter-spacing:0.093696pt;}
.ls21_c02112{letter-spacing:0.102144pt;}
.ls18_c02112{letter-spacing:0.110656pt;}
.ls19_c02112{letter-spacing:0.119168pt;}
.ls22_c02112{letter-spacing:0.123424pt;}
.ls2e_c02112{letter-spacing:0.134400pt;}
.ls27_c02112{letter-spacing:0.136192pt;}
.ls12_c02112{letter-spacing:0.140544pt;}
.ls16_c02112{letter-spacing:0.144704pt;}
.ls31_c02112{letter-spacing:0.148960pt;}
.lsa_c02112{letter-spacing:0.161728pt;}
.ls2d_c02112{letter-spacing:0.183008pt;}
.ls13_c02112{letter-spacing:101.760000pt;}
.ls33_c02112{letter-spacing:137.041536pt;}
.ls15_c02112{letter-spacing:138.398400pt;}
.ls23_c02112{letter-spacing:139.358400pt;}
.ls14_c02112{letter-spacing:178.480000pt;}
.ws1_c02112{word-spacing:-14.780544pt;}
.ws0_c02112{word-spacing:-11.995200pt;}
.ws17_c02112{word-spacing:-0.242592pt;}
.ws18_c02112{word-spacing:-0.225568pt;}
.ws28_c02112{word-spacing:-0.204288pt;}
.ws1d_c02112{word-spacing:-0.200032pt;}
.ws1c_c02112{word-spacing:-0.191520pt;}
.ws27_c02112{word-spacing:-0.183008pt;}
.wse_c02112{word-spacing:-0.168000pt;}
.ws7_c02112{word-spacing:-0.165984pt;}
.ws14_c02112{word-spacing:-0.161728pt;}
.ws1e_c02112{word-spacing:-0.153216pt;}
.ws20_c02112{word-spacing:-0.106400pt;}
.ws1f_c02112{word-spacing:-0.097888pt;}
.ws16_c02112{word-spacing:-0.089856pt;}
.ws1a_c02112{word-spacing:-0.072352pt;}
.ws25_c02112{word-spacing:-0.019200pt;}
.ws6_c02112{word-spacing:-0.011712pt;}
.ws15_c02112{word-spacing:-0.006400pt;}
.ws5_c02112{word-spacing:0.000000pt;}
.ws21_c02112{word-spacing:0.011712pt;}
.ws4_c02112{word-spacing:0.012800pt;}
.ws22_c02112{word-spacing:0.096000pt;}
.ws23_c02112{word-spacing:0.110400pt;}
.ws24_c02112{word-spacing:0.115200pt;}
.ws8_c02112{word-spacing:0.129600pt;}
.wsa_c02112{word-spacing:0.134400pt;}
.wsb_c02112{word-spacing:0.144000pt;}
.wsd_c02112{word-spacing:0.172800pt;}
.ws9_c02112{word-spacing:0.235200pt;}
.wsc_c02112{word-spacing:0.249600pt;}
.ws11_c02112{word-spacing:0.719264pt;}
.wsf_c02112{word-spacing:0.791616pt;}
.ws10_c02112{word-spacing:0.812896pt;}
.ws13_c02112{word-spacing:1.336384pt;}
.ws12_c02112{word-spacing:1.459808pt;}
.ws3_c02112{word-spacing:65.857280pt;}
.ws2_c02112{word-spacing:89.857280pt;}
.ws19_c02112{word-spacing:138.360000pt;}
.ws1b_c02112{word-spacing:138.364800pt;}
.ws26_c02112{word-spacing:178.041600pt;}
._39_c02112{margin-left:-39.838080pt;}
._3a_c02112{margin-left:-38.560704pt;}
._1_c02112{margin-left:-1.120896pt;}
._a_c02112{width:0.912000pt;}
._26_c02112{width:39.356928pt;}
._1b_c02112{width:44.957824pt;}
._2c_c02112{width:45.888000pt;}
._20_c02112{width:54.198400pt;}
._1e_c02112{width:58.080000pt;}
._17_c02112{width:64.537280pt;}
._22_c02112{width:67.360000pt;}
._18_c02112{width:68.400160pt;}
._1f_c02112{width:69.888000pt;}
._23_c02112{width:74.400000pt;}
._10_c02112{width:75.728000pt;}
._19_c02112{width:77.580800pt;}
._f_c02112{width:78.739200pt;}
._1c_c02112{width:81.145280pt;}
._2b_c02112{width:84.057152pt;}
._3d_c02112{width:85.853600pt;}
._29_c02112{width:87.520000pt;}
._1a_c02112{width:89.420800pt;}
._3c_c02112{width:91.305536pt;}
._2a_c02112{width:92.955680pt;}
._3b_c02112{width:94.275040pt;}
._32_c02112{width:96.387200pt;}
._24_c02112{width:97.417152pt;}
._31_c02112{width:99.306816pt;}
._2f_c02112{width:101.417792pt;}
._12_c02112{width:102.880000pt;}
._13_c02112{width:105.225728pt;}
._2e_c02112{width:106.404640pt;}
._11_c02112{width:108.640000pt;}
._30_c02112{width:110.815040pt;}
._16_c02112{width:112.629056pt;}
._21_c02112{width:113.718400pt;}
._2d_c02112{width:114.648576pt;}
._33_c02112{width:118.441792pt;}
._14_c02112{width:120.085440pt;}
._27_c02112{width:130.299008pt;}
._15_c02112{width:136.529248pt;}
._28_c02112{width:139.360000pt;}
._0_c02112{width:172.800000pt;}
._25_c02112{width:177.728000pt;}
._1d_c02112{width:178.634816pt;}
._e_c02112{width:180.476800pt;}
._5_c02112{width:192.160000pt;}
._3_c02112{width:252.000000pt;}
._8_c02112{width:269.484800pt;}
._6_c02112{width:275.648000pt;}
._4_c02112{width:288.689600pt;}
._35_c02112{width:309.060800pt;}
._37_c02112{width:314.518400pt;}
._9_c02112{width:339.742400pt;}
._36_c02112{width:373.270400pt;}
._34_c02112{width:383.545280pt;}
._b_c02112{width:401.585600pt;}
._c_c02112{width:428.652800pt;}
._7_c02112{width:430.155200pt;}
._2_c02112{width:517.845504pt;}
._38_c02112{width:538.040000pt;}
._d_c02112{width:710.840000pt;}
.fs4_c02112{font-size:37.440000pt;}
.fs3_c02112{font-size:42.560000pt;}
.fs2_c02112{font-size:48.000000pt;}
.fs5_c02112{font-size:53.440000pt;}
.fs1_c02112{font-size:58.560000pt;}
.fs0_c02112{font-size:64.000000pt;}
.y0_c02112{bottom:0.000000pt;}
.y3_c02112{bottom:50.987067pt;}
.y2_c02112{bottom:69.387067pt;}
.y50_c02112{bottom:109.467067pt;}
.y4f_c02112{bottom:125.787067pt;}
.y4e_c02112{bottom:130.667467pt;}
.y4d_c02112{bottom:144.187200pt;}
.y4c_c02112{bottom:149.067600pt;}
.y4b_c02112{bottom:162.587067pt;}
.y4a_c02112{bottom:167.467467pt;}
.y49_c02112{bottom:180.987067pt;}
.y48_c02112{bottom:185.867467pt;}
.y47_c02112{bottom:199.307067pt;}
.y46_c02112{bottom:204.267067pt;}
.y45_c02112{bottom:221.147067pt;}
.y44_c02112{bottom:234.587067pt;}
.y43_c02112{bottom:239.546667pt;}
.y42_c02112{bottom:252.987067pt;}
.y41_c02112{bottom:257.947067pt;}
.y40_c02112{bottom:274.827067pt;}
.y3f_c02112{bottom:288.267067pt;}
.y3e_c02112{bottom:293.227067pt;}
.y3d_c02112{bottom:307.627067pt;}
.y3c_c02112{bottom:323.867067pt;}
.y3b_c02112{bottom:339.307067pt;}
.y3a_c02112{bottom:357.227067pt;}
.y39_c02112{bottom:370.906755pt;}
.y38_c02112{bottom:383.147011pt;}
.y37_c02112{bottom:395.467067pt;}
.y36_c02112{bottom:409.787067pt;}
.y35_c02112{bottom:423.627067pt;}
.y34_c02112{bottom:437.387067pt;}
.y33_c02112{bottom:451.227067pt;}
.y32_c02112{bottom:464.987200pt;}
.y2f_c02112{bottom:480.427067pt;}
.y31_c02112{bottom:481.067067pt;}
.y30_c02112{bottom:496.507067pt;}
.y2e_c02112{bottom:511.467067pt;}
.y2d_c02112{bottom:527.707467pt;}
.y2c_c02112{bottom:541.547067pt;}
.y2b_c02112{bottom:555.307067pt;}
.y2a_c02112{bottom:560.266667pt;}
.y29_c02112{bottom:573.707067pt;}
.y28_c02112{bottom:578.666667pt;}
.y27_c02112{bottom:592.107067pt;}
.y26_c02112{bottom:597.066667pt;}
.y25_c02112{bottom:610.507067pt;}
.y24_c02112{bottom:615.466667pt;}
.y23_c02112{bottom:628.907067pt;}
.y22_c02112{bottom:633.867067pt;}
.y21_c02112{bottom:650.747067pt;}
.y20_c02112{bottom:664.187067pt;}
.y1f_c02112{bottom:669.147067pt;}
.y1e_c02112{bottom:685.947067pt;}
.y1d_c02112{bottom:699.467067pt;}
.y1c_c02112{bottom:704.347467pt;}
.y1b_c02112{bottom:717.867067pt;}
.y1a_c02112{bottom:722.747600pt;}
.y19_c02112{bottom:736.267067pt;}
.y18_c02112{bottom:741.147200pt;}
.y17_c02112{bottom:755.547067pt;}
.y16_c02112{bottom:771.867067pt;}
.y15_c02112{bottom:787.307067pt;}
.y14_c02112{bottom:805.147467pt;}
.y13_c02112{bottom:818.987067pt;}
.y12_c02112{bottom:832.666755pt;}
.y11_c02112{bottom:844.907011pt;}
.y10_c02112{bottom:857.227067pt;}
.yf_c02112{bottom:871.547067pt;}
.ye_c02112{bottom:885.387067pt;}
.yd_c02112{bottom:899.147067pt;}
.yc_c02112{bottom:912.987067pt;}
.yb_c02112{bottom:926.747067pt;}
.ya_c02112{bottom:940.587067pt;}
.y9_c02112{bottom:954.347067pt;}
.y8_c02112{bottom:968.187067pt;}
.y5_c02112{bottom:983.627067pt;}
.y7_c02112{bottom:984.187067pt;}
.y6_c02112{bottom:999.627067pt;}
.y4_c02112{bottom:1014.587067pt;}
.y1_c02112{bottom:1060.587067pt;}
.h5_c02112{height:37.343906pt;}
.h4_c02112{height:38.303906pt;}
.h6_c02112{height:42.117188pt;}
.h8_c02112{height:42.632812pt;}
.hd_c02112{height:43.076654pt;}
.h7_c02112{height:43.077187pt;}
.he_c02112{height:43.077721pt;}
.h3_c02112{height:52.012031pt;}
.hb_c02112{height:55.532031pt;}
.ha_c02112{height:55.532565pt;}
.hc_c02112{height:55.852031pt;}
.h2_c02112{height:56.156250pt;}
.h1_c02112{height:56.843750pt;}
.h9_c02112{height:70.597188pt;}
.h0_c02112{height:1122.666667pt;}
.w1_c02112{width:793.333333pt;}
.w0_c02112{width:793.626667pt;}
.x0_c02112{left:0.000000pt;}
.x1_c02112{left:113.440000pt;}
.x3_c02112{left:119.600000pt;}
.x6_c02112{left:120.560000pt;}
.x7_c02112{left:127.760000pt;}
.x8_c02112{left:133.440000pt;}
.x9_c02112{left:196.160000pt;}
.xa_c02112{left:295.200000pt;}
.xb_c02112{left:315.360000pt;}
.x4_c02112{left:338.400000pt;}
.x5_c02112{left:358.560000pt;}
.x2_c02112{left:388.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_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_187eaf4d4daeba2938a876df.woff2')format("woff");}.ff1_c02113{font-family:ff1_c02113;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02113;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v9_c02113{vertical-align:-15.120000px;}
.vc_c02113{vertical-align:-14.040000px;}
.va_c02113{vertical-align:-12.600000px;}
.vb_c02113{vertical-align:-11.160000px;}
.v2_c02113{vertical-align:-9.000000px;}
.v6_c02113{vertical-align:-3.960000px;}
.v5_c02113{vertical-align:-2.520000px;}
.v4_c02113{vertical-align:-1.440000px;}
.v0_c02113{vertical-align:0.000000px;}
.v1_c02113{vertical-align:1.080000px;}
.v7_c02113{vertical-align:2.520000px;}
.v8_c02113{vertical-align:3.960000px;}
.vd_c02113{vertical-align:11.160000px;}
.v3_c02113{vertical-align:32.040000px;}
.ls26_c02113{letter-spacing:-0.178200px;}
.ls21_c02113{letter-spacing:-0.102600px;}
.ls24_c02113{letter-spacing:-0.086400px;}
.ls2c_c02113{letter-spacing:-0.086184px;}
.ls29_c02113{letter-spacing:-0.043200px;}
.ls23_c02113{letter-spacing:-0.019152px;}
.ls25_c02113{letter-spacing:-0.016200px;}
.ls1f_c02113{letter-spacing:-0.014400px;}
.ls2a_c02113{letter-spacing:-0.010800px;}
.ls2d_c02113{letter-spacing:-0.009576px;}
.ls2f_c02113{letter-spacing:-0.004788px;}
.ls20_c02113{letter-spacing:0.000000px;}
.ls7_c02113{letter-spacing:0.010800px;}
.ls11_c02113{letter-spacing:0.012636px;}
.ls6_c02113{letter-spacing:0.016200px;}
.ls1c_c02113{letter-spacing:0.019152px;}
.ls5_c02113{letter-spacing:0.027000px;}
.ls10_c02113{letter-spacing:0.028728px;}
.ls3_c02113{letter-spacing:0.032400px;}
.ls0_c02113{letter-spacing:0.032940px;}
.ls8_c02113{letter-spacing:0.037800px;}
.lsf_c02113{letter-spacing:0.043092px;}
.ls4_c02113{letter-spacing:0.043200px;}
.ls1_c02113{letter-spacing:0.046116px;}
.ls17_c02113{letter-spacing:0.052668px;}
.lse_c02113{letter-spacing:0.059292px;}
.lsc_c02113{letter-spacing:0.067032px;}
.lsd_c02113{letter-spacing:0.071820px;}
.lsa_c02113{letter-spacing:0.076608px;}
.ls14_c02113{letter-spacing:0.081396px;}
.ls2_c02113{letter-spacing:0.095760px;}
.ls1d_c02113{letter-spacing:0.098820px;}
.ls9_c02113{letter-spacing:0.100548px;}
.ls18_c02113{letter-spacing:0.114912px;}
.ls1a_c02113{letter-spacing:0.124488px;}
.ls1b_c02113{letter-spacing:0.134064px;}
.ls19_c02113{letter-spacing:0.138852px;}
.ls28_c02113{letter-spacing:0.151200px;}
.ls22_c02113{letter-spacing:0.153216px;}
.ls12_c02113{letter-spacing:0.158112px;}
.ls2b_c02113{letter-spacing:0.167580px;}
.lsb_c02113{letter-spacing:0.181944px;}
.ls27_c02113{letter-spacing:0.205884px;}
.ls1e_c02113{letter-spacing:80.640000px;}
.ls13_c02113{letter-spacing:113.400000px;}
.ls2e_c02113{letter-spacing:155.247876px;}
.ls16_c02113{letter-spacing:156.778200px;}
.ls15_c02113{letter-spacing:200.790000px;}
.sc__c02113{text-shadow:none;}
.sc0_c02113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02113{-webkit-text-stroke:0px transparent;}
.sc0_c02113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02113{word-spacing:-16.628112px;}
.ws0_c02113{word-spacing:-13.397400px;}
.ws16_c02113{word-spacing:-0.272916px;}
.ws1b_c02113{word-spacing:-0.229824px;}
.ws1d_c02113{word-spacing:-0.225036px;}
.ws1c_c02113{word-spacing:-0.215460px;}
.ws19_c02113{word-spacing:-0.205884px;}
.wse_c02113{word-spacing:-0.189000px;}
.ws7_c02113{word-spacing:-0.186732px;}
.ws1e_c02113{word-spacing:-0.172368px;}
.ws18_c02113{word-spacing:-0.119700px;}
.ws1f_c02113{word-spacing:-0.110124px;}
.ws15_c02113{word-spacing:-0.101088px;}
.ws17_c02113{word-spacing:-0.081396px;}
.ws20_c02113{word-spacing:-0.006588px;}
.ws4_c02113{word-spacing:0.000000px;}
.ws3_c02113{word-spacing:0.014400px;}
.ws14_c02113{word-spacing:0.032940px;}
.ws6_c02113{word-spacing:0.046116px;}
.ws5_c02113{word-spacing:0.059292px;}
.ws8_c02113{word-spacing:0.145800px;}
.ws9_c02113{word-spacing:0.151200px;}
.wsc_c02113{word-spacing:0.162000px;}
.wsd_c02113{word-spacing:0.194400px;}
.wsa_c02113{word-spacing:0.264600px;}
.wsb_c02113{word-spacing:0.280800px;}
.ws11_c02113{word-spacing:0.809172px;}
.wsf_c02113{word-spacing:0.890568px;}
.ws10_c02113{word-spacing:0.914508px;}
.ws13_c02113{word-spacing:1.503432px;}
.ws12_c02113{word-spacing:1.642284px;}
.ws2_c02113{word-spacing:58.969440px;}
.ws1a_c02113{word-spacing:156.735000px;}
._e_c02113{margin-left:-1.010268px;}
._1_c02113{width:1.041732px;}
._25_c02113{width:42.484248px;}
._1a_c02113{width:50.937552px;}
._1f_c02113{width:62.053200px;}
._1d_c02113{width:65.340000px;}
._17_c02113{width:72.604440px;}
._21_c02113{width:75.420000px;}
._18_c02113{width:77.310180px;}
._2d_c02113{width:78.347952px;}
._22_c02113{width:84.060000px;}
._10_c02113{width:85.194000px;}
._f_c02113{width:88.221600px;}
._1e_c02113{width:92.304000px;}
._1c_c02113{width:94.564296px;}
._2b_c02113{width:96.585300px;}
._27_c02113{width:98.100000px;}
._19_c02113{width:100.015200px;}
._29_c02113{width:102.718728px;}
._1b_c02113{width:104.575140px;}
._28_c02113{width:106.059420px;}
._30_c02113{width:108.435600px;}
._2f_c02113{width:111.720168px;}
._14_c02113{width:114.216120px;}
._12_c02113{width:115.740000px;}
._13_c02113{width:118.378944px;}
._2c_c02113{width:119.705220px;}
._11_c02113{width:122.220000px;}
._2e_c02113{width:124.666920px;}
._23_c02113{width:128.162160px;}
._20_c02113{width:129.352860px;}
._31_c02113{width:133.247016px;}
._2a_c02113{width:146.304000px;}
._16_c02113{width:148.307688px;}
._15_c02113{width:152.155404px;}
._26_c02113{width:156.780000px;}
._0_c02113{width:194.400000px;}
._d_c02113{width:203.036400px;}
._5_c02113{width:216.180000px;}
._24_c02113{width:240.624000px;}
._3_c02113{width:283.500000px;}
._7_c02113{width:303.170400px;}
._6_c02113{width:310.104000px;}
._4_c02113{width:324.775800px;}
._a_c02113{width:382.210200px;}
._9_c02113{width:451.768068px;}
._b_c02113{width:482.234400px;}
._8_c02113{width:483.924600px;}
._2_c02113{width:582.576192px;}
._c_c02113{width:799.695000px;}
.fc0_c02113{color:rgb(0,0,0);}
.fs6_c02113{font-size:11.880000px;}
.fs4_c02113{font-size:42.120000px;}
.fs3_c02113{font-size:47.880000px;}
.fs2_c02113{font-size:54.000000px;}
.fs5_c02113{font-size:60.120000px;}
.fs1_c02113{font-size:65.880000px;}
.fs0_c02113{font-size:72.000000px;}
.y0_c02113{bottom:0.000000px;}
.y3_c02113{bottom:57.360450px;}
.y2_c02113{bottom:78.060450px;}
.y97_c02113{bottom:128.554860px;}
.y96_c02113{bottom:131.974815px;}
.y95_c02113{bottom:135.484761px;}
.y94_c02113{bottom:138.904716px;}
.y93_c02113{bottom:142.324671px;}
.y92_c02113{bottom:145.834617px;}
.y91_c02113{bottom:149.254572px;}
.y90_c02113{bottom:152.674527px;}
.y8f_c02113{bottom:156.184473px;}
.y8e_c02113{bottom:159.604428px;}
.y8d_c02113{bottom:163.024383px;}
.y8c_c02113{bottom:166.534329px;}
.y8b_c02113{bottom:169.954284px;}
.y8a_c02113{bottom:173.374239px;}
.y89_c02113{bottom:176.884185px;}
.y88_c02113{bottom:180.304140px;}
.y87_c02113{bottom:183.724095px;}
.y86_c02113{bottom:187.234041px;}
.y85_c02113{bottom:190.653996px;}
.y84_c02113{bottom:194.073951px;}
.y83_c02113{bottom:197.583897px;}
.y82_c02113{bottom:201.003852px;}
.y81_c02113{bottom:204.423807px;}
.y80_c02113{bottom:207.843762px;}
.y7f_c02113{bottom:211.353708px;}
.y7e_c02113{bottom:214.773663px;}
.y7d_c02113{bottom:218.193618px;}
.y7c_c02113{bottom:221.703564px;}
.y7b_c02113{bottom:225.123519px;}
.y7a_c02113{bottom:228.543474px;}
.y79_c02113{bottom:232.053420px;}
.y78_c02113{bottom:235.473375px;}
.y77_c02113{bottom:238.893330px;}
.y76_c02113{bottom:242.403276px;}
.y75_c02113{bottom:245.823231px;}
.y74_c02113{bottom:249.243186px;}
.y73_c02113{bottom:252.753132px;}
.y72_c02113{bottom:256.173087px;}
.y71_c02113{bottom:259.593042px;}
.y70_c02113{bottom:263.102988px;}
.y6f_c02113{bottom:266.522943px;}
.y6e_c02113{bottom:269.942898px;}
.y6d_c02113{bottom:273.452844px;}
.y6c_c02113{bottom:276.872799px;}
.y6b_c02113{bottom:280.292754px;}
.y6a_c02113{bottom:283.802700px;}
.y69_c02113{bottom:287.222655px;}
.y68_c02113{bottom:290.642610px;}
.y67_c02113{bottom:294.152556px;}
.y66_c02113{bottom:297.572511px;}
.y65_c02113{bottom:300.992466px;}
.y64_c02113{bottom:304.502412px;}
.y63_c02113{bottom:307.922367px;}
.y62_c02113{bottom:311.342322px;}
.y61_c02113{bottom:314.852268px;}
.y60_c02113{bottom:318.272223px;}
.y5f_c02113{bottom:321.692178px;}
.y5e_c02113{bottom:325.202124px;}
.y5d_c02113{bottom:328.622079px;}
.y5c_c02113{bottom:332.042034px;}
.y5b_c02113{bottom:335.551980px;}
.y5a_c02113{bottom:338.971935px;}
.y59_c02113{bottom:342.391890px;}
.y58_c02113{bottom:345.901836px;}
.y57_c02113{bottom:349.321791px;}
.y56_c02113{bottom:352.741746px;}
.y55_c02113{bottom:356.251692px;}
.y54_c02113{bottom:359.671647px;}
.y53_c02113{bottom:363.091602px;}
.y52_c02113{bottom:366.601548px;}
.y51_c02113{bottom:370.021503px;}
.y50_c02113{bottom:373.441458px;}
.y4f_c02113{bottom:376.951404px;}
.y4e_c02113{bottom:380.371359px;}
.y4d_c02113{bottom:383.791314px;}
.y4c_c02113{bottom:387.301260px;}
.y4b_c02113{bottom:390.721215px;}
.y4a_c02113{bottom:394.141170px;}
.y49_c02113{bottom:397.651116px;}
.y48_c02113{bottom:401.071071px;}
.y47_c02113{bottom:404.491026px;}
.y46_c02113{bottom:408.000972px;}
.y45_c02113{bottom:411.420927px;}
.y44_c02113{bottom:414.840882px;}
.y43_c02113{bottom:418.350828px;}
.y42_c02113{bottom:421.770783px;}
.y41_c02113{bottom:425.190738px;}
.y40_c02113{bottom:428.700684px;}
.y3f_c02113{bottom:432.120639px;}
.y3e_c02113{bottom:435.540594px;}
.y3d_c02113{bottom:439.050540px;}
.y3c_c02113{bottom:442.470495px;}
.y3b_c02113{bottom:445.890450px;}
.y3a_c02113{bottom:451.740450px;}
.y39_c02113{bottom:455.521050px;}
.y38_c02113{bottom:470.730450px;}
.y37_c02113{bottom:474.510900px;}
.y36_c02113{bottom:489.630450px;}
.y35_c02113{bottom:493.500150px;}
.y34_c02113{bottom:508.620600px;}
.y33_c02113{bottom:512.490000px;}
.y32_c02113{bottom:527.610450px;}
.y31_c02113{bottom:531.480450px;}
.y30_c02113{bottom:550.380450px;}
.y2f_c02113{bottom:565.590450px;}
.y2e_c02113{bottom:571.080450px;}
.y2d_c02113{bottom:587.280450px;}
.y2c_c02113{bottom:605.640450px;}
.y2b_c02113{bottom:622.650450px;}
.y2a_c02113{bottom:642.000450px;}
.y29_c02113{bottom:650.820450px;}
.y28_c02113{bottom:654.690000px;}
.y27_c02113{bottom:669.810450px;}
.y26_c02113{bottom:673.590900px;}
.y25_c02113{bottom:688.800450px;}
.y24_c02113{bottom:692.580900px;}
.y23_c02113{bottom:707.790450px;}
.y22_c02113{bottom:711.570900px;}
.y21_c02113{bottom:726.690450px;}
.y20_c02113{bottom:730.560450px;}
.y1f_c02113{bottom:749.550450px;}
.y1e_c02113{bottom:764.670450px;}
.y1d_c02113{bottom:770.250000px;}
.y1c_c02113{bottom:785.370450px;}
.y1b_c02113{bottom:790.950450px;}
.y1a_c02113{bottom:809.850450px;}
.y19_c02113{bottom:825.060450px;}
.y18_c02113{bottom:830.550450px;}
.y17_c02113{bottom:846.750450px;}
.y16_c02113{bottom:865.110600px;}
.y15_c02113{bottom:882.210450px;}
.y14_c02113{bottom:900.840900px;}
.y13_c02113{bottom:916.680450px;}
.y12_c02113{bottom:931.800099px;}
.y11_c02113{bottom:945.570387px;}
.y10_c02113{bottom:959.430450px;}
.yf_c02113{bottom:975.540600px;}
.ye_c02113{bottom:991.110450px;}
.yd_c02113{bottom:1006.590450px;}
.yc_c02113{bottom:1027.110450px;}
.yb_c02113{bottom:1042.590450px;}
.ya_c02113{bottom:1058.160450px;}
.y9_c02113{bottom:1073.640450px;}
.y8_c02113{bottom:1089.210450px;}
.y5_c02113{bottom:1106.580450px;}
.y7_c02113{bottom:1107.210450px;}
.y6_c02113{bottom:1124.580450px;}
.y4_c02113{bottom:1141.410450px;}
.y1_c02113{bottom:1193.160450px;}
.he_c02113{height:10.551621px;}
.h5_c02113{height:42.011895px;}
.h4_c02113{height:43.091895px;}
.h6_c02113{height:47.381836px;}
.h8_c02113{height:47.961914px;}
.ha_c02113{height:48.461236px;}
.h7_c02113{height:48.461836px;}
.h3_c02113{height:58.513535px;}
.hb_c02113{height:62.473535px;}
.hc_c02113{height:62.474135px;}
.hd_c02113{height:62.833535px;}
.hf_c02113{height:62.834135px;}
.h2_c02113{height:63.175781px;}
.h1_c02113{height:63.949219px;}
.h9_c02113{height:79.421836px;}
.h0_c02113{height:1263.000000px;}
.w1_c02113{width:892.500000px;}
.w0_c02113{width:892.830000px;}
.x0_c02113{left:0.000000px;}
.x1_c02113{left:127.620000px;}
.x3_c02113{left:134.550000px;}
.x6_c02113{left:135.630000px;}
.x7_c02113{left:143.820000px;}
.x8_c02113{left:150.210000px;}
.x9_c02113{left:220.680000px;}
.x4_c02113{left:380.700000px;}
.x5_c02113{left:403.380000px;}
.x2_c02113{left:437.580000px;}
@media print{
.v9_c02113{vertical-align:-13.440000pt;}
.vc_c02113{vertical-align:-12.480000pt;}
.va_c02113{vertical-align:-11.200000pt;}
.vb_c02113{vertical-align:-9.920000pt;}
.v2_c02113{vertical-align:-8.000000pt;}
.v6_c02113{vertical-align:-3.520000pt;}
.v5_c02113{vertical-align:-2.240000pt;}
.v4_c02113{vertical-align:-1.280000pt;}
.v0_c02113{vertical-align:0.000000pt;}
.v1_c02113{vertical-align:0.960000pt;}
.v7_c02113{vertical-align:2.240000pt;}
.v8_c02113{vertical-align:3.520000pt;}
.vd_c02113{vertical-align:9.920000pt;}
.v3_c02113{vertical-align:28.480000pt;}
.ls26_c02113{letter-spacing:-0.158400pt;}
.ls21_c02113{letter-spacing:-0.091200pt;}
.ls24_c02113{letter-spacing:-0.076800pt;}
.ls2c_c02113{letter-spacing:-0.076608pt;}
.ls29_c02113{letter-spacing:-0.038400pt;}
.ls23_c02113{letter-spacing:-0.017024pt;}
.ls25_c02113{letter-spacing:-0.014400pt;}
.ls1f_c02113{letter-spacing:-0.012800pt;}
.ls2a_c02113{letter-spacing:-0.009600pt;}
.ls2d_c02113{letter-spacing:-0.008512pt;}
.ls2f_c02113{letter-spacing:-0.004256pt;}
.ls20_c02113{letter-spacing:0.000000pt;}
.ls7_c02113{letter-spacing:0.009600pt;}
.ls11_c02113{letter-spacing:0.011232pt;}
.ls6_c02113{letter-spacing:0.014400pt;}
.ls1c_c02113{letter-spacing:0.017024pt;}
.ls5_c02113{letter-spacing:0.024000pt;}
.ls10_c02113{letter-spacing:0.025536pt;}
.ls3_c02113{letter-spacing:0.028800pt;}
.ls0_c02113{letter-spacing:0.029280pt;}
.ls8_c02113{letter-spacing:0.033600pt;}
.lsf_c02113{letter-spacing:0.038304pt;}
.ls4_c02113{letter-spacing:0.038400pt;}
.ls1_c02113{letter-spacing:0.040992pt;}
.ls17_c02113{letter-spacing:0.046816pt;}
.lse_c02113{letter-spacing:0.052704pt;}
.lsc_c02113{letter-spacing:0.059584pt;}
.lsd_c02113{letter-spacing:0.063840pt;}
.lsa_c02113{letter-spacing:0.068096pt;}
.ls14_c02113{letter-spacing:0.072352pt;}
.ls2_c02113{letter-spacing:0.085120pt;}
.ls1d_c02113{letter-spacing:0.087840pt;}
.ls9_c02113{letter-spacing:0.089376pt;}
.ls18_c02113{letter-spacing:0.102144pt;}
.ls1a_c02113{letter-spacing:0.110656pt;}
.ls1b_c02113{letter-spacing:0.119168pt;}
.ls19_c02113{letter-spacing:0.123424pt;}
.ls28_c02113{letter-spacing:0.134400pt;}
.ls22_c02113{letter-spacing:0.136192pt;}
.ls12_c02113{letter-spacing:0.140544pt;}
.ls2b_c02113{letter-spacing:0.148960pt;}
.lsb_c02113{letter-spacing:0.161728pt;}
.ls27_c02113{letter-spacing:0.183008pt;}
.ls1e_c02113{letter-spacing:71.680000pt;}
.ls13_c02113{letter-spacing:100.800000pt;}
.ls2e_c02113{letter-spacing:137.998112pt;}
.ls16_c02113{letter-spacing:139.358400pt;}
.ls15_c02113{letter-spacing:178.480000pt;}
.ws1_c02113{word-spacing:-14.780544pt;}
.ws0_c02113{word-spacing:-11.908800pt;}
.ws16_c02113{word-spacing:-0.242592pt;}
.ws1b_c02113{word-spacing:-0.204288pt;}
.ws1d_c02113{word-spacing:-0.200032pt;}
.ws1c_c02113{word-spacing:-0.191520pt;}
.ws19_c02113{word-spacing:-0.183008pt;}
.wse_c02113{word-spacing:-0.168000pt;}
.ws7_c02113{word-spacing:-0.165984pt;}
.ws1e_c02113{word-spacing:-0.153216pt;}
.ws18_c02113{word-spacing:-0.106400pt;}
.ws1f_c02113{word-spacing:-0.097888pt;}
.ws15_c02113{word-spacing:-0.089856pt;}
.ws17_c02113{word-spacing:-0.072352pt;}
.ws20_c02113{word-spacing:-0.005856pt;}
.ws4_c02113{word-spacing:0.000000pt;}
.ws3_c02113{word-spacing:0.012800pt;}
.ws14_c02113{word-spacing:0.029280pt;}
.ws6_c02113{word-spacing:0.040992pt;}
.ws5_c02113{word-spacing:0.052704pt;}
.ws8_c02113{word-spacing:0.129600pt;}
.ws9_c02113{word-spacing:0.134400pt;}
.wsc_c02113{word-spacing:0.144000pt;}
.wsd_c02113{word-spacing:0.172800pt;}
.wsa_c02113{word-spacing:0.235200pt;}
.wsb_c02113{word-spacing:0.249600pt;}
.ws11_c02113{word-spacing:0.719264pt;}
.wsf_c02113{word-spacing:0.791616pt;}
.ws10_c02113{word-spacing:0.812896pt;}
.ws13_c02113{word-spacing:1.336384pt;}
.ws12_c02113{word-spacing:1.459808pt;}
.ws2_c02113{word-spacing:52.417280pt;}
.ws1a_c02113{word-spacing:139.320000pt;}
._e_c02113{margin-left:-0.898016pt;}
._1_c02113{width:0.925984pt;}
._25_c02113{width:37.763776pt;}
._1a_c02113{width:45.277824pt;}
._1f_c02113{width:55.158400pt;}
._1d_c02113{width:58.080000pt;}
._17_c02113{width:64.537280pt;}
._21_c02113{width:67.040000pt;}
._18_c02113{width:68.720160pt;}
._2d_c02113{width:69.642624pt;}
._22_c02113{width:74.720000pt;}
._10_c02113{width:75.728000pt;}
._f_c02113{width:78.419200pt;}
._1e_c02113{width:82.048000pt;}
._1c_c02113{width:84.057152pt;}
._2b_c02113{width:85.853600pt;}
._27_c02113{width:87.200000pt;}
._19_c02113{width:88.902400pt;}
._29_c02113{width:91.305536pt;}
._1b_c02113{width:92.955680pt;}
._28_c02113{width:94.275040pt;}
._30_c02113{width:96.387200pt;}
._2f_c02113{width:99.306816pt;}
._14_c02113{width:101.525440pt;}
._12_c02113{width:102.880000pt;}
._13_c02113{width:105.225728pt;}
._2c_c02113{width:106.404640pt;}
._11_c02113{width:108.640000pt;}
._2e_c02113{width:110.815040pt;}
._23_c02113{width:113.921920pt;}
._20_c02113{width:114.980320pt;}
._31_c02113{width:118.441792pt;}
._2a_c02113{width:130.048000pt;}
._16_c02113{width:131.829056pt;}
._15_c02113{width:135.249248pt;}
._26_c02113{width:139.360000pt;}
._0_c02113{width:172.800000pt;}
._d_c02113{width:180.476800pt;}
._5_c02113{width:192.160000pt;}
._24_c02113{width:213.888000pt;}
._3_c02113{width:252.000000pt;}
._7_c02113{width:269.484800pt;}
._6_c02113{width:275.648000pt;}
._4_c02113{width:288.689600pt;}
._a_c02113{width:339.742400pt;}
._9_c02113{width:401.571616pt;}
._b_c02113{width:428.652800pt;}
._8_c02113{width:430.155200pt;}
._2_c02113{width:517.845504pt;}
._c_c02113{width:710.840000pt;}
.fs6_c02113{font-size:10.560000pt;}
.fs4_c02113{font-size:37.440000pt;}
.fs3_c02113{font-size:42.560000pt;}
.fs2_c02113{font-size:48.000000pt;}
.fs5_c02113{font-size:53.440000pt;}
.fs1_c02113{font-size:58.560000pt;}
.fs0_c02113{font-size:64.000000pt;}
.y0_c02113{bottom:0.000000pt;}
.y3_c02113{bottom:50.987067pt;}
.y2_c02113{bottom:69.387067pt;}
.y97_c02113{bottom:114.270987pt;}
.y96_c02113{bottom:117.310947pt;}
.y95_c02113{bottom:120.430899pt;}
.y94_c02113{bottom:123.470859pt;}
.y93_c02113{bottom:126.510819pt;}
.y92_c02113{bottom:129.630771pt;}
.y91_c02113{bottom:132.670731pt;}
.y90_c02113{bottom:135.710691pt;}
.y8f_c02113{bottom:138.830643pt;}
.y8e_c02113{bottom:141.870603pt;}
.y8d_c02113{bottom:144.910563pt;}
.y8c_c02113{bottom:148.030515pt;}
.y8b_c02113{bottom:151.070475pt;}
.y8a_c02113{bottom:154.110435pt;}
.y89_c02113{bottom:157.230387pt;}
.y88_c02113{bottom:160.270347pt;}
.y87_c02113{bottom:163.310307pt;}
.y86_c02113{bottom:166.430259pt;}
.y85_c02113{bottom:169.470219pt;}
.y84_c02113{bottom:172.510179pt;}
.y83_c02113{bottom:175.630131pt;}
.y82_c02113{bottom:178.670091pt;}
.y81_c02113{bottom:181.710051pt;}
.y80_c02113{bottom:184.750011pt;}
.y7f_c02113{bottom:187.869963pt;}
.y7e_c02113{bottom:190.909923pt;}
.y7d_c02113{bottom:193.949883pt;}
.y7c_c02113{bottom:197.069835pt;}
.y7b_c02113{bottom:200.109795pt;}
.y7a_c02113{bottom:203.149755pt;}
.y79_c02113{bottom:206.269707pt;}
.y78_c02113{bottom:209.309667pt;}
.y77_c02113{bottom:212.349627pt;}
.y76_c02113{bottom:215.469579pt;}
.y75_c02113{bottom:218.509539pt;}
.y74_c02113{bottom:221.549499pt;}
.y73_c02113{bottom:224.669451pt;}
.y72_c02113{bottom:227.709411pt;}
.y71_c02113{bottom:230.749371pt;}
.y70_c02113{bottom:233.869323pt;}
.y6f_c02113{bottom:236.909283pt;}
.y6e_c02113{bottom:239.949243pt;}
.y6d_c02113{bottom:243.069195pt;}
.y6c_c02113{bottom:246.109155pt;}
.y6b_c02113{bottom:249.149115pt;}
.y6a_c02113{bottom:252.269067pt;}
.y69_c02113{bottom:255.309027pt;}
.y68_c02113{bottom:258.348987pt;}
.y67_c02113{bottom:261.468939pt;}
.y66_c02113{bottom:264.508899pt;}
.y65_c02113{bottom:267.548859pt;}
.y64_c02113{bottom:270.668811pt;}
.y63_c02113{bottom:273.708771pt;}
.y62_c02113{bottom:276.748731pt;}
.y61_c02113{bottom:279.868683pt;}
.y60_c02113{bottom:282.908643pt;}
.y5f_c02113{bottom:285.948603pt;}
.y5e_c02113{bottom:289.068555pt;}
.y5d_c02113{bottom:292.108515pt;}
.y5c_c02113{bottom:295.148475pt;}
.y5b_c02113{bottom:298.268427pt;}
.y5a_c02113{bottom:301.308387pt;}
.y59_c02113{bottom:304.348347pt;}
.y58_c02113{bottom:307.468299pt;}
.y57_c02113{bottom:310.508259pt;}
.y56_c02113{bottom:313.548219pt;}
.y55_c02113{bottom:316.668171pt;}
.y54_c02113{bottom:319.708131pt;}
.y53_c02113{bottom:322.748091pt;}
.y52_c02113{bottom:325.868043pt;}
.y51_c02113{bottom:328.908003pt;}
.y50_c02113{bottom:331.947963pt;}
.y4f_c02113{bottom:335.067915pt;}
.y4e_c02113{bottom:338.107875pt;}
.y4d_c02113{bottom:341.147835pt;}
.y4c_c02113{bottom:344.267787pt;}
.y4b_c02113{bottom:347.307747pt;}
.y4a_c02113{bottom:350.347707pt;}
.y49_c02113{bottom:353.467659pt;}
.y48_c02113{bottom:356.507619pt;}
.y47_c02113{bottom:359.547579pt;}
.y46_c02113{bottom:362.667531pt;}
.y45_c02113{bottom:365.707491pt;}
.y44_c02113{bottom:368.747451pt;}
.y43_c02113{bottom:371.867403pt;}
.y42_c02113{bottom:374.907363pt;}
.y41_c02113{bottom:377.947323pt;}
.y40_c02113{bottom:381.067275pt;}
.y3f_c02113{bottom:384.107235pt;}
.y3e_c02113{bottom:387.147195pt;}
.y3d_c02113{bottom:390.267147pt;}
.y3c_c02113{bottom:393.307107pt;}
.y3b_c02113{bottom:396.347067pt;}
.y3a_c02113{bottom:401.547067pt;}
.y39_c02113{bottom:404.907600pt;}
.y38_c02113{bottom:418.427067pt;}
.y37_c02113{bottom:421.787467pt;}
.y36_c02113{bottom:435.227067pt;}
.y35_c02113{bottom:438.666800pt;}
.y34_c02113{bottom:452.107200pt;}
.y33_c02113{bottom:455.546667pt;}
.y32_c02113{bottom:468.987067pt;}
.y31_c02113{bottom:472.427067pt;}
.y30_c02113{bottom:489.227067pt;}
.y2f_c02113{bottom:502.747067pt;}
.y2e_c02113{bottom:507.627067pt;}
.y2d_c02113{bottom:522.027067pt;}
.y2c_c02113{bottom:538.347067pt;}
.y2b_c02113{bottom:553.467067pt;}
.y2a_c02113{bottom:570.667067pt;}
.y29_c02113{bottom:578.507067pt;}
.y28_c02113{bottom:581.946667pt;}
.y27_c02113{bottom:595.387067pt;}
.y26_c02113{bottom:598.747467pt;}
.y25_c02113{bottom:612.267067pt;}
.y24_c02113{bottom:615.627467pt;}
.y23_c02113{bottom:629.147067pt;}
.y22_c02113{bottom:632.507467pt;}
.y21_c02113{bottom:645.947067pt;}
.y20_c02113{bottom:649.387067pt;}
.y1f_c02113{bottom:666.267067pt;}
.y1e_c02113{bottom:679.707067pt;}
.y1d_c02113{bottom:684.666667pt;}
.y1c_c02113{bottom:698.107067pt;}
.y1b_c02113{bottom:703.067067pt;}
.y1a_c02113{bottom:719.867067pt;}
.y19_c02113{bottom:733.387067pt;}
.y18_c02113{bottom:738.267067pt;}
.y17_c02113{bottom:752.667067pt;}
.y16_c02113{bottom:768.987200pt;}
.y15_c02113{bottom:784.187067pt;}
.y14_c02113{bottom:800.747467pt;}
.y13_c02113{bottom:814.827067pt;}
.y12_c02113{bottom:828.266755pt;}
.y11_c02113{bottom:840.507011pt;}
.y10_c02113{bottom:852.827067pt;}
.yf_c02113{bottom:867.147200pt;}
.ye_c02113{bottom:880.987067pt;}
.yd_c02113{bottom:894.747067pt;}
.yc_c02113{bottom:912.987067pt;}
.yb_c02113{bottom:926.747067pt;}
.ya_c02113{bottom:940.587067pt;}
.y9_c02113{bottom:954.347067pt;}
.y8_c02113{bottom:968.187067pt;}
.y5_c02113{bottom:983.627067pt;}
.y7_c02113{bottom:984.187067pt;}
.y6_c02113{bottom:999.627067pt;}
.y4_c02113{bottom:1014.587067pt;}
.y1_c02113{bottom:1060.587067pt;}
.he_c02113{height:9.379219pt;}
.h5_c02113{height:37.343906pt;}
.h4_c02113{height:38.303906pt;}
.h6_c02113{height:42.117188pt;}
.h8_c02113{height:42.632812pt;}
.ha_c02113{height:43.076654pt;}
.h7_c02113{height:43.077187pt;}
.h3_c02113{height:52.012031pt;}
.hb_c02113{height:55.532031pt;}
.hc_c02113{height:55.532565pt;}
.hd_c02113{height:55.852031pt;}
.hf_c02113{height:55.852565pt;}
.h2_c02113{height:56.156250pt;}
.h1_c02113{height:56.843750pt;}
.h9_c02113{height:70.597187pt;}
.h0_c02113{height:1122.666667pt;}
.w1_c02113{width:793.333333pt;}
.w0_c02113{width:793.626667pt;}
.x0_c02113{left:0.000000pt;}
.x1_c02113{left:113.440000pt;}
.x3_c02113{left:119.600000pt;}
.x6_c02113{left:120.560000pt;}
.x7_c02113{left:127.840000pt;}
.x8_c02113{left:133.520000pt;}
.x9_c02113{left:196.160000pt;}
.x4_c02113{left:338.400000pt;}
.x5_c02113{left:358.560000pt;}
.x2_c02113{left:388.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_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_efaab255c95fee39f5c980a6.woff2')format("woff");}.ff1_c02114{font-family:ff1_c02114;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02114;src:url('chunks/assets/font_9d2685c13943c7b9d5428f30.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_ce705965f5a971102fc7639f.woff2')format("woff");}.ff3_c02114{font-family:ff3_c02114;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_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);}
.v3_c02114{vertical-align:-22.320000px;}
.v2_c02114{vertical-align:-16.920000px;}
.v0_c02114{vertical-align:0.000000px;}
.v1_c02114{vertical-align:1.440000px;}
.ls25_c02114{letter-spacing:-0.181116px;}
.ls24_c02114{letter-spacing:-0.180360px;}
.ls23_c02114{letter-spacing:-0.176904px;}
.ls21_c02114{letter-spacing:-0.086400px;}
.ls1f_c02114{letter-spacing:-0.032940px;}
.ls22_c02114{letter-spacing:-0.021600px;}
.ls28_c02114{letter-spacing:-0.019764px;}
.ls1c_c02114{letter-spacing:-0.014400px;}
.ls1e_c02114{letter-spacing:-0.013176px;}
.ls20_c02114{letter-spacing:-0.007200px;}
.ls27_c02114{letter-spacing:-0.006588px;}
.ls1d_c02114{letter-spacing:0.000000px;}
.ls0_c02114{letter-spacing:0.007200px;}
.ls17_c02114{letter-spacing:0.019764px;}
.ls1b_c02114{letter-spacing:0.020124px;}
.ls26_c02114{letter-spacing:0.026352px;}
.ls13_c02114{letter-spacing:0.026712px;}
.lsb_c02114{letter-spacing:0.028800px;}
.ls12_c02114{letter-spacing:0.032940px;}
.ls1_c02114{letter-spacing:0.039528px;}
.lsa_c02114{letter-spacing:0.050400px;}
.ls6_c02114{letter-spacing:0.052704px;}
.lsc_c02114{letter-spacing:0.059292px;}
.ls18_c02114{letter-spacing:0.065880px;}
.ls19_c02114{letter-spacing:0.072468px;}
.ls1a_c02114{letter-spacing:0.079056px;}
.ls16_c02114{letter-spacing:0.085644px;}
.ls4_c02114{letter-spacing:0.098820px;}
.lsf_c02114{letter-spacing:0.111996px;}
.ls8_c02114{letter-spacing:0.131760px;}
.ls10_c02114{letter-spacing:0.178164px;}
.lse_c02114{letter-spacing:34.065360px;}
.ls15_c02114{letter-spacing:34.560000px;}
.ls11_c02114{letter-spacing:36.360000px;}
.ls14_c02114{letter-spacing:47.520000px;}
.ls2_c02114{letter-spacing:64.080000px;}
.ls7_c02114{letter-spacing:99.720000px;}
.ls3_c02114{letter-spacing:113.760000px;}
.ls5_c02114{letter-spacing:128.520000px;}
.ls9_c02114{letter-spacing:408.960000px;}
.lsd_c02114{letter-spacing:1378.440000px;}
.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;}
}
.ws4_c02114{word-spacing:-16.601760px;}
.ws1_c02114{word-spacing:-16.568820px;}
.ws5_c02114{word-spacing:-16.529292px;}
.ws0_c02114{word-spacing:-16.509528px;}
.ws6_c02114{word-spacing:-16.450236px;}
.ws3_c02114{word-spacing:-16.437060px;}
.wse_c02114{word-spacing:-0.115200px;}
.wsf_c02114{word-spacing:-0.086400px;}
.ws11_c02114{word-spacing:-0.019764px;}
.ws9_c02114{word-spacing:-0.007200px;}
.ws8_c02114{word-spacing:0.000000px;}
.ws15_c02114{word-spacing:0.006588px;}
.wsc_c02114{word-spacing:0.007200px;}
.ws19_c02114{word-spacing:0.013176px;}
.ws7_c02114{word-spacing:0.014400px;}
.ws18_c02114{word-spacing:0.019764px;}
.wsd_c02114{word-spacing:0.021600px;}
.ws17_c02114{word-spacing:0.026352px;}
.ws1a_c02114{word-spacing:0.032940px;}
.wsa_c02114{word-spacing:0.039528px;}
.ws14_c02114{word-spacing:0.052704px;}
.ws13_c02114{word-spacing:0.059292px;}
.ws12_c02114{word-spacing:0.065880px;}
.ws16_c02114{word-spacing:0.072468px;}
.ws10_c02114{word-spacing:40.232304px;}
.ws2_c02114{word-spacing:96.810048px;}
.wsb_c02114{word-spacing:272.160000px;}
._4_c02114{margin-left:-64.800000px;}
._13_c02114{margin-left:-1.127880px;}
._c_c02114{width:39.870720px;}
._d_c02114{width:40.950720px;}
._e_c02114{width:55.174464px;}
._b_c02114{width:73.850472px;}
._1_c02114{width:133.131852px;}
._0_c02114{width:194.400000px;}
._3_c02114{width:261.720000px;}
._1a_c02114{width:454.992300px;}
._9_c02114{width:527.133600px;}
._2_c02114{width:565.615440px;}
._18_c02114{width:628.962948px;}
._1c_c02114{width:677.218716px;}
._16_c02114{width:724.889484px;}
._15_c02114{width:725.917212px;}
._14_c02114{width:813.802464px;}
._10_c02114{width:845.298360px;}
._12_c02114{width:856.715364px;}
._1b_c02114{width:876.250116px;}
._17_c02114{width:1037.002572px;}
._11_c02114{width:1168.419996px;}
._8_c02114{width:1175.040000px;}
._f_c02114{width:1201.406112px;}
._19_c02114{width:1233.087804px;}
._6_c02114{width:1292.680800px;}
._7_c02114{width:1627.336800px;}
._5_c02114{width:1791.288000px;}
._a_c02114{width:2232.561600px;}
.fc0_c02114{color:rgb(0,0,0);}
.fs3_c02114{font-size:42.120000px;}
.fs1_c02114{font-size:54.000000px;}
.fs4_c02114{font-size:60.120000px;}
.fs2_c02114{font-size:65.880000px;}
.fs0_c02114{font-size:72.000000px;}
.y0_c02114{bottom:0.000000px;}
.y3_c02114{bottom:57.360450px;}
.y2_c02114{bottom:78.060450px;}
.y3a_c02114{bottom:112.350450px;}
.y39_c02114{bottom:133.050450px;}
.y38_c02114{bottom:153.750450px;}
.y37_c02114{bottom:174.450450px;}
.y36_c02114{bottom:195.150450px;}
.y35_c02114{bottom:215.850450px;}
.y34_c02114{bottom:236.550450px;}
.y33_c02114{bottom:257.250450px;}
.y32_c02114{bottom:277.950450px;}
.y31_c02114{bottom:298.650450px;}
.y30_c02114{bottom:319.350450px;}
.y2f_c02114{bottom:346.260450px;}
.y2e_c02114{bottom:365.970450px;}
.y2d_c02114{bottom:385.680600px;}
.y2b_c02114{bottom:399.720690px;}
.y2c_c02114{bottom:418.620015px;}
.y2a_c02114{bottom:424.380450px;}
.y29_c02114{bottom:444.090600px;}
.y28_c02114{bottom:458.040690px;}
.y27_c02114{bottom:482.790600px;}
.y26_c02114{bottom:496.740540px;}
.y25_c02114{bottom:521.490450px;}
.y24_c02114{bottom:541.200450px;}
.y23_c02114{bottom:561.000450px;}
.y22_c02114{bottom:580.710450px;}
.y21_c02114{bottom:600.420450px;}
.y20_c02114{bottom:620.130450px;}
.y1f_c02114{bottom:639.840450px;}
.y1e_c02114{bottom:659.550450px;}
.y1d_c02114{bottom:679.260450px;}
.y1b_c02114{bottom:693.391125px;}
.y1c_c02114{bottom:712.201512px;}
.y1a_c02114{bottom:717.960450px;}
.y18_c02114{bottom:732.091125px;}
.y19_c02114{bottom:750.901512px;}
.y17_c02114{bottom:756.660450px;}
.y16_c02114{bottom:776.460450px;}
.y15_c02114{bottom:795.990450px;}
.y14_c02114{bottom:810.390450px;}
.y13_c02114{bottom:831.810450px;}
.y12_c02114{bottom:852.510450px;}
.y11_c02114{bottom:874.020450px;}
.y10_c02114{bottom:895.440450px;}
.yf_c02114{bottom:916.860450px;}
.ye_c02114{bottom:938.370450px;}
.yd_c02114{bottom:959.790600px;}
.yc_c02114{bottom:981.210450px;}
.yb_c02114{bottom:1002.630450px;}
.ya_c02114{bottom:1023.960450px;}
.y9_c02114{bottom:1045.290450px;}
.y8_c02114{bottom:1065.270450px;}
.y7_c02114{bottom:1085.970450px;}
.y6_c02114{bottom:1106.490900px;}
.y5_c02114{bottom:1122.060450px;}
.y4_c02114{bottom:1139.250450px;}
.y1_c02114{bottom:1193.160450px;}
.h7_c02114{height:36.957832px;}
.hd_c02114{height:40.908619px;}
.h6_c02114{height:40.909219px;}
.hf_c02114{height:40.909819px;}
.h5_c02114{height:41.629219px;}
.ha_c02114{height:41.945449px;}
.h3_c02114{height:47.961914px;}
.h8_c02114{height:57.805840px;}
.hc_c02114{height:58.513535px;}
.h2_c02114{height:63.175781px;}
.h9_c02114{height:63.944971px;}
.h1_c02114{height:63.949219px;}
.he_c02114{height:63.951559px;}
.h4_c02114{height:64.615781px;}
.hb_c02114{height:64.625449px;}
.h0_c02114{height:1263.000000px;}
.w1_c02114{width:892.500000px;}
.w0_c02114{width:892.830000px;}
.x0_c02114{left:0.000000px;}
.x1_c02114{left:127.620000px;}
.x3_c02114{left:135.630000px;}
.x6_c02114{left:137.520000px;}
.x4_c02114{left:263.430000px;}
.x8_c02114{left:273.870000px;}
.x5_c02114{left:305.190000px;}
.x7_c02114{left:335.160000px;}
.x2_c02114{left:437.580000px;}
.x9_c02114{left:699.120459px;}
.xa_c02114{left:720.540369px;}
@media print{
.v3_c02114{vertical-align:-19.840000pt;}
.v2_c02114{vertical-align:-15.040000pt;}
.v0_c02114{vertical-align:0.000000pt;}
.v1_c02114{vertical-align:1.280000pt;}
.ls25_c02114{letter-spacing:-0.160992pt;}
.ls24_c02114{letter-spacing:-0.160320pt;}
.ls23_c02114{letter-spacing:-0.157248pt;}
.ls21_c02114{letter-spacing:-0.076800pt;}
.ls1f_c02114{letter-spacing:-0.029280pt;}
.ls22_c02114{letter-spacing:-0.019200pt;}
.ls28_c02114{letter-spacing:-0.017568pt;}
.ls1c_c02114{letter-spacing:-0.012800pt;}
.ls1e_c02114{letter-spacing:-0.011712pt;}
.ls20_c02114{letter-spacing:-0.006400pt;}
.ls27_c02114{letter-spacing:-0.005856pt;}
.ls1d_c02114{letter-spacing:0.000000pt;}
.ls0_c02114{letter-spacing:0.006400pt;}
.ls17_c02114{letter-spacing:0.017568pt;}
.ls1b_c02114{letter-spacing:0.017888pt;}
.ls26_c02114{letter-spacing:0.023424pt;}
.ls13_c02114{letter-spacing:0.023744pt;}
.lsb_c02114{letter-spacing:0.025600pt;}
.ls12_c02114{letter-spacing:0.029280pt;}
.ls1_c02114{letter-spacing:0.035136pt;}
.lsa_c02114{letter-spacing:0.044800pt;}
.ls6_c02114{letter-spacing:0.046848pt;}
.lsc_c02114{letter-spacing:0.052704pt;}
.ls18_c02114{letter-spacing:0.058560pt;}
.ls19_c02114{letter-spacing:0.064416pt;}
.ls1a_c02114{letter-spacing:0.070272pt;}
.ls16_c02114{letter-spacing:0.076128pt;}
.ls4_c02114{letter-spacing:0.087840pt;}
.lsf_c02114{letter-spacing:0.099552pt;}
.ls8_c02114{letter-spacing:0.117120pt;}
.ls10_c02114{letter-spacing:0.158368pt;}
.lse_c02114{letter-spacing:30.280320pt;}
.ls15_c02114{letter-spacing:30.720000pt;}
.ls11_c02114{letter-spacing:32.320000pt;}
.ls14_c02114{letter-spacing:42.240000pt;}
.ls2_c02114{letter-spacing:56.960000pt;}
.ls7_c02114{letter-spacing:88.640000pt;}
.ls3_c02114{letter-spacing:101.120000pt;}
.ls5_c02114{letter-spacing:114.240000pt;}
.ls9_c02114{letter-spacing:363.520000pt;}
.lsd_c02114{letter-spacing:1225.280000pt;}
.ws4_c02114{word-spacing:-14.757120pt;}
.ws1_c02114{word-spacing:-14.727840pt;}
.ws5_c02114{word-spacing:-14.692704pt;}
.ws0_c02114{word-spacing:-14.675136pt;}
.ws6_c02114{word-spacing:-14.622432pt;}
.ws3_c02114{word-spacing:-14.610720pt;}
.wse_c02114{word-spacing:-0.102400pt;}
.wsf_c02114{word-spacing:-0.076800pt;}
.ws11_c02114{word-spacing:-0.017568pt;}
.ws9_c02114{word-spacing:-0.006400pt;}
.ws8_c02114{word-spacing:0.000000pt;}
.ws15_c02114{word-spacing:0.005856pt;}
.wsc_c02114{word-spacing:0.006400pt;}
.ws19_c02114{word-spacing:0.011712pt;}
.ws7_c02114{word-spacing:0.012800pt;}
.ws18_c02114{word-spacing:0.017568pt;}
.wsd_c02114{word-spacing:0.019200pt;}
.ws17_c02114{word-spacing:0.023424pt;}
.ws1a_c02114{word-spacing:0.029280pt;}
.wsa_c02114{word-spacing:0.035136pt;}
.ws14_c02114{word-spacing:0.046848pt;}
.ws13_c02114{word-spacing:0.052704pt;}
.ws12_c02114{word-spacing:0.058560pt;}
.ws16_c02114{word-spacing:0.064416pt;}
.ws10_c02114{word-spacing:35.762048pt;}
.ws2_c02114{word-spacing:86.053376pt;}
.wsb_c02114{word-spacing:241.920000pt;}
._4_c02114{margin-left:-57.600000pt;}
._13_c02114{margin-left:-1.002560pt;}
._c_c02114{width:35.440640pt;}
._d_c02114{width:36.400640pt;}
._e_c02114{width:49.043968pt;}
._b_c02114{width:65.644864pt;}
._1_c02114{width:118.339424pt;}
._0_c02114{width:172.800000pt;}
._3_c02114{width:232.640000pt;}
._1a_c02114{width:404.437600pt;}
._9_c02114{width:468.563200pt;}
._2_c02114{width:502.769280pt;}
._18_c02114{width:559.078176pt;}
._1c_c02114{width:601.972192pt;}
._16_c02114{width:644.346208pt;}
._15_c02114{width:645.259744pt;}
._14_c02114{width:723.379968pt;}
._10_c02114{width:751.376320pt;}
._12_c02114{width:761.524768pt;}
._1b_c02114{width:778.888992pt;}
._17_c02114{width:921.780064pt;}
._11_c02114{width:1038.595552pt;}
._8_c02114{width:1044.480000pt;}
._f_c02114{width:1067.916544pt;}
._19_c02114{width:1096.078048pt;}
._6_c02114{width:1149.049600pt;}
._7_c02114{width:1446.521600pt;}
._5_c02114{width:1592.256000pt;}
._a_c02114{width:1984.499200pt;}
.fs3_c02114{font-size:37.440000pt;}
.fs1_c02114{font-size:48.000000pt;}
.fs4_c02114{font-size:53.440000pt;}
.fs2_c02114{font-size:58.560000pt;}
.fs0_c02114{font-size:64.000000pt;}
.y0_c02114{bottom:0.000000pt;}
.y3_c02114{bottom:50.987067pt;}
.y2_c02114{bottom:69.387067pt;}
.y3a_c02114{bottom:99.867067pt;}
.y39_c02114{bottom:118.267067pt;}
.y38_c02114{bottom:136.667067pt;}
.y37_c02114{bottom:155.067067pt;}
.y36_c02114{bottom:173.467067pt;}
.y35_c02114{bottom:191.867067pt;}
.y34_c02114{bottom:210.267067pt;}
.y33_c02114{bottom:228.667067pt;}
.y32_c02114{bottom:247.067067pt;}
.y31_c02114{bottom:265.467067pt;}
.y30_c02114{bottom:283.867067pt;}
.y2f_c02114{bottom:307.787067pt;}
.y2e_c02114{bottom:325.307067pt;}
.y2d_c02114{bottom:342.827200pt;}
.y2b_c02114{bottom:355.307280pt;}
.y2c_c02114{bottom:372.106680pt;}
.y2a_c02114{bottom:377.227067pt;}
.y29_c02114{bottom:394.747200pt;}
.y28_c02114{bottom:407.147280pt;}
.y27_c02114{bottom:429.147200pt;}
.y26_c02114{bottom:441.547147pt;}
.y25_c02114{bottom:463.547067pt;}
.y24_c02114{bottom:481.067067pt;}
.y23_c02114{bottom:498.667067pt;}
.y22_c02114{bottom:516.187067pt;}
.y21_c02114{bottom:533.707067pt;}
.y20_c02114{bottom:551.227067pt;}
.y1f_c02114{bottom:568.747067pt;}
.y1e_c02114{bottom:586.267067pt;}
.y1d_c02114{bottom:603.787067pt;}
.y1b_c02114{bottom:616.347667pt;}
.y1c_c02114{bottom:633.068011pt;}
.y1a_c02114{bottom:638.187067pt;}
.y18_c02114{bottom:650.747667pt;}
.y19_c02114{bottom:667.468011pt;}
.y17_c02114{bottom:672.587067pt;}
.y16_c02114{bottom:690.187067pt;}
.y15_c02114{bottom:707.547067pt;}
.y14_c02114{bottom:720.347067pt;}
.y13_c02114{bottom:739.387067pt;}
.y12_c02114{bottom:757.787067pt;}
.y11_c02114{bottom:776.907067pt;}
.y10_c02114{bottom:795.947067pt;}
.yf_c02114{bottom:814.987067pt;}
.ye_c02114{bottom:834.107067pt;}
.yd_c02114{bottom:853.147200pt;}
.yc_c02114{bottom:872.187067pt;}
.yb_c02114{bottom:891.227067pt;}
.ya_c02114{bottom:910.187067pt;}
.y9_c02114{bottom:929.147067pt;}
.y8_c02114{bottom:946.907067pt;}
.y7_c02114{bottom:965.307067pt;}
.y6_c02114{bottom:983.547467pt;}
.y5_c02114{bottom:997.387067pt;}
.y4_c02114{bottom:1012.667067pt;}
.y1_c02114{bottom:1060.587067pt;}
.h7_c02114{height:32.851406pt;}
.hd_c02114{height:36.363217pt;}
.h6_c02114{height:36.363750pt;}
.hf_c02114{height:36.364283pt;}
.h5_c02114{height:37.003750pt;}
.ha_c02114{height:37.284844pt;}
.h3_c02114{height:42.632812pt;}
.h8_c02114{height:51.382969pt;}
.hc_c02114{height:52.012031pt;}
.h2_c02114{height:56.156250pt;}
.h9_c02114{height:56.839974pt;}
.h1_c02114{height:56.843750pt;}
.he_c02114{height:56.845830pt;}
.h4_c02114{height:57.436250pt;}
.hb_c02114{height:57.444844pt;}
.h0_c02114{height:1122.666667pt;}
.w1_c02114{width:793.333333pt;}
.w0_c02114{width:793.626667pt;}
.x0_c02114{left:0.000000pt;}
.x1_c02114{left:113.440000pt;}
.x3_c02114{left:120.560000pt;}
.x6_c02114{left:122.240000pt;}
.x4_c02114{left:234.160000pt;}
.x8_c02114{left:243.440000pt;}
.x5_c02114{left:271.280000pt;}
.x7_c02114{left:297.920000pt;}
.x2_c02114{left:388.960000pt;}
.x9_c02114{left:621.440408pt;}
.xa_c02114{left:640.480328pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17363316e5a1d8e8dc1aa68c.woff2')format("woff");}.ff1_c02115{font-family:ff1_c02115;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02115;src:url('chunks/assets/font_4f791f0733dc4f1fdff3d6fd.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;}
.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);}
.v2_c02115{vertical-align:-22.320000px;}
.v1_c02115{vertical-align:-16.920000px;}
.v3_c02115{vertical-align:-5.400000px;}
.v0_c02115{vertical-align:0.000000px;}
.ls14_c02115{letter-spacing:-0.181116px;}
.ls12_c02115{letter-spacing:-0.180360px;}
.ls11_c02115{letter-spacing:-0.176904px;}
.ls13_c02115{letter-spacing:-0.032940px;}
.lsf_c02115{letter-spacing:-0.014400px;}
.ls10_c02115{letter-spacing:0.000000px;}
.ls1_c02115{letter-spacing:0.007200px;}
.lsb_c02115{letter-spacing:0.013176px;}
.ls0_c02115{letter-spacing:0.014400px;}
.ls7_c02115{letter-spacing:0.019764px;}
.lsa_c02115{letter-spacing:0.026352px;}
.lsd_c02115{letter-spacing:0.032940px;}
.ls9_c02115{letter-spacing:0.039528px;}
.ls5_c02115{letter-spacing:0.046116px;}
.lsc_c02115{letter-spacing:0.052704px;}
.ls2_c02115{letter-spacing:0.059292px;}
.ls6_c02115{letter-spacing:0.065880px;}
.lse_c02115{letter-spacing:0.072468px;}
.ls8_c02115{letter-spacing:0.079056px;}
.ls16_c02115{letter-spacing:0.131760px;}
.ls15_c02115{letter-spacing:0.138348px;}
.ls4_c02115{letter-spacing:0.181944px;}
.ls3_c02115{letter-spacing:1463.760000px;}
.sc__c02115{text-shadow:none;}
.sc0_c02115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02115{-webkit-text-stroke:0px transparent;}
.sc0_c02115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02115{word-spacing:-16.529292px;}
.ws4_c02115{word-spacing:-0.093600px;}
.ws3_c02115{word-spacing:-0.014400px;}
.ws2_c02115{word-spacing:0.000000px;}
.ws1_c02115{word-spacing:0.014400px;}
.wsf_c02115{word-spacing:0.032940px;}
.ws13_c02115{word-spacing:0.046116px;}
.wse_c02115{word-spacing:0.052704px;}
.ws1d_c02115{word-spacing:0.065880px;}
.ws9_c02115{word-spacing:0.092232px;}
.ws1c_c02115{word-spacing:0.388692px;}
.ws7_c02115{word-spacing:1.133136px;}
.wsb_c02115{word-spacing:2.951424px;}
.ws17_c02115{word-spacing:3.616812px;}
.ws16_c02115{word-spacing:3.629988px;}
.ws1a_c02115{word-spacing:4.018680px;}
.ws8_c02115{word-spacing:6.864696px;}
.wsc_c02115{word-spacing:6.884460px;}
.ws15_c02115{word-spacing:6.897636px;}
.wsa_c02115{word-spacing:8.300880px;}
.wsd_c02115{word-spacing:8.650044px;}
.ws11_c02115{word-spacing:10.158696px;}
.ws1b_c02115{word-spacing:12.293208px;}
.ws18_c02115{word-spacing:12.622608px;}
.ws19_c02115{word-spacing:12.629196px;}
.ws12_c02115{word-spacing:13.373640px;}
.ws10_c02115{word-spacing:15.541092px;}
.ws6_c02115{word-spacing:29.922696px;}
.ws14_c02115{word-spacing:36.398700px;}
.ws5_c02115{word-spacing:48.689172px;}
._8_c02115{margin-left:-8.289828px;}
._5_c02115{margin-left:-3.600576px;}
._7_c02115{margin-left:-1.113372px;}
._9_c02115{width:1.462536px;}
._6_c02115{width:3.600576px;}
._2_c02115{width:39.870720px;}
._3_c02115{width:40.950720px;}
._4_c02115{width:55.174464px;}
._1_c02115{width:73.850472px;}
._0_c02115{width:194.400000px;}
.fc0_c02115{color:rgb(0,0,0);}
.fs1_c02115{font-size:42.120000px;}
.fs4_c02115{font-size:47.880000px;}
.fs5_c02115{font-size:54.000000px;}
.fs2_c02115{font-size:60.120000px;}
.fs3_c02115{font-size:65.880000px;}
.fs0_c02115{font-size:72.000000px;}
.y0_c02115{bottom:0.000000px;}
.y3_c02115{bottom:57.360450px;}
.y2_c02115{bottom:78.060450px;}
.y44_c02115{bottom:131.700450px;}
.y43_c02115{bottom:162.750450px;}
.y42_c02115{bottom:193.800450px;}
.y41_c02115{bottom:221.340000px;}
.y40_c02115{bottom:236.909550px;}
.y3f_c02115{bottom:252.390000px;}
.y3e_c02115{bottom:267.870450px;}
.y3d_c02115{bottom:283.440000px;}
.y3c_c02115{bottom:298.920450px;}
.y3b_c02115{bottom:314.490000px;}
.y3a_c02115{bottom:329.970450px;}
.y39_c02115{bottom:345.540000px;}
.y38_c02115{bottom:361.020450px;}
.y37_c02115{bottom:376.590000px;}
.y36_c02115{bottom:392.070450px;}
.y35_c02115{bottom:407.640000px;}
.y34_c02115{bottom:423.120450px;}
.y33_c02115{bottom:438.690000px;}
.y32_c02115{bottom:454.170450px;}
.y31_c02115{bottom:469.740000px;}
.y30_c02115{bottom:485.220450px;}
.y2f_c02115{bottom:500.790000px;}
.y2e_c02115{bottom:516.270450px;}
.y2d_c02115{bottom:531.840000px;}
.y2c_c02115{bottom:547.320450px;}
.y2b_c02115{bottom:562.800162px;}
.y2a_c02115{bottom:576.570450px;}
.y28_c02115{bottom:591.150450px;}
.y27_c02115{bottom:605.731755px;}
.y26_c02115{bottom:624.721665px;}
.y25_c02115{bottom:643.711575px;}
.y24_c02115{bottom:662.701485px;}
.y23_c02115{bottom:681.691395px;}
.y22_c02115{bottom:700.590720px;}
.y21_c02115{bottom:719.580630px;}
.y20_c02115{bottom:738.570540px;}
.y1f_c02115{bottom:757.560450px;}
.y1e_c02115{bottom:775.650450px;}
.y1d_c02115{bottom:790.321305px;}
.y1c_c02115{bottom:809.311215px;}
.y1b_c02115{bottom:828.301125px;}
.y29_c02115{bottom:847.110600px;}
.y1a_c02115{bottom:852.870450px;}
.y17_c02115{bottom:866.100450px;}
.y19_c02115{bottom:880.680540px;}
.y16_c02115{bottom:880.770540px;}
.y18_c02115{bottom:899.670450px;}
.y15_c02115{bottom:905.430450px;}
.y12_c02115{bottom:918.570450px;}
.y11_c02115{bottom:933.240630px;}
.y10_c02115{bottom:952.230540px;}
.yf_c02115{bottom:971.220450px;}
.y14_c02115{bottom:990.121125px;}
.ye_c02115{bottom:990.211125px;}
.y13_c02115{bottom:1009.020450px;}
.yd_c02115{bottom:1014.780450px;}
.ya_c02115{bottom:1028.010450px;}
.y9_c02115{bottom:1042.681305px;}
.y8_c02115{bottom:1061.671215px;}
.yc_c02115{bottom:1080.571125px;}
.y7_c02115{bottom:1080.661125px;}
.yb_c02115{bottom:1099.470450px;}
.y6_c02115{bottom:1105.230450px;}
.y5_c02115{bottom:1124.850450px;}
.y4_c02115{bottom:1139.250450px;}
.y1_c02115{bottom:1193.160450px;}
.h4_c02115{height:36.957832px;}
.h3_c02115{height:41.629219px;}
.h7_c02115{height:42.011895px;}
.hc_c02115{height:47.961914px;}
.h5_c02115{height:57.805840px;}
.h8_c02115{height:58.513535px;}
.hb_c02115{height:63.170561px;}
.h6_c02115{height:63.172361px;}
.h9_c02115{height:63.175061px;}
.ha_c02115{height:63.175421px;}
.h2_c02115{height:63.175781px;}
.h1_c02115{height:63.949219px;}
.h0_c02115{height:1263.000000px;}
.w1_c02115{width:892.500000px;}
.w0_c02115{width:892.830000px;}
.x0_c02115{left:0.000000px;}
.x1_c02115{left:127.620000px;}
.x3_c02115{left:135.630000px;}
.x4_c02115{left:273.870000px;}
.x2_c02115{left:437.580000px;}
.x5_c02115{left:720.990000px;}
@media print{
.v2_c02115{vertical-align:-19.840000pt;}
.v1_c02115{vertical-align:-15.040000pt;}
.v3_c02115{vertical-align:-4.800000pt;}
.v0_c02115{vertical-align:0.000000pt;}
.ls14_c02115{letter-spacing:-0.160992pt;}
.ls12_c02115{letter-spacing:-0.160320pt;}
.ls11_c02115{letter-spacing:-0.157248pt;}
.ls13_c02115{letter-spacing:-0.029280pt;}
.lsf_c02115{letter-spacing:-0.012800pt;}
.ls10_c02115{letter-spacing:0.000000pt;}
.ls1_c02115{letter-spacing:0.006400pt;}
.lsb_c02115{letter-spacing:0.011712pt;}
.ls0_c02115{letter-spacing:0.012800pt;}
.ls7_c02115{letter-spacing:0.017568pt;}
.lsa_c02115{letter-spacing:0.023424pt;}
.lsd_c02115{letter-spacing:0.029280pt;}
.ls9_c02115{letter-spacing:0.035136pt;}
.ls5_c02115{letter-spacing:0.040992pt;}
.lsc_c02115{letter-spacing:0.046848pt;}
.ls2_c02115{letter-spacing:0.052704pt;}
.ls6_c02115{letter-spacing:0.058560pt;}
.lse_c02115{letter-spacing:0.064416pt;}
.ls8_c02115{letter-spacing:0.070272pt;}
.ls16_c02115{letter-spacing:0.117120pt;}
.ls15_c02115{letter-spacing:0.122976pt;}
.ls4_c02115{letter-spacing:0.161728pt;}
.ls3_c02115{letter-spacing:1301.120000pt;}
.ws0_c02115{word-spacing:-14.692704pt;}
.ws4_c02115{word-spacing:-0.083200pt;}
.ws3_c02115{word-spacing:-0.012800pt;}
.ws2_c02115{word-spacing:0.000000pt;}
.ws1_c02115{word-spacing:0.012800pt;}
.wsf_c02115{word-spacing:0.029280pt;}
.ws13_c02115{word-spacing:0.040992pt;}
.wse_c02115{word-spacing:0.046848pt;}
.ws1d_c02115{word-spacing:0.058560pt;}
.ws9_c02115{word-spacing:0.081984pt;}
.ws1c_c02115{word-spacing:0.345504pt;}
.ws7_c02115{word-spacing:1.007232pt;}
.wsb_c02115{word-spacing:2.623488pt;}
.ws17_c02115{word-spacing:3.214944pt;}
.ws16_c02115{word-spacing:3.226656pt;}
.ws1a_c02115{word-spacing:3.572160pt;}
.ws8_c02115{word-spacing:6.101952pt;}
.wsc_c02115{word-spacing:6.119520pt;}
.ws15_c02115{word-spacing:6.131232pt;}
.wsa_c02115{word-spacing:7.378560pt;}
.wsd_c02115{word-spacing:7.688928pt;}
.ws11_c02115{word-spacing:9.029952pt;}
.ws1b_c02115{word-spacing:10.927296pt;}
.ws18_c02115{word-spacing:11.220096pt;}
.ws19_c02115{word-spacing:11.225952pt;}
.ws12_c02115{word-spacing:11.887680pt;}
.ws10_c02115{word-spacing:13.814304pt;}
.ws6_c02115{word-spacing:26.597952pt;}
.ws14_c02115{word-spacing:32.354400pt;}
.ws5_c02115{word-spacing:43.279264pt;}
._8_c02115{margin-left:-7.368736pt;}
._5_c02115{margin-left:-3.200512pt;}
._7_c02115{margin-left:-0.989664pt;}
._9_c02115{width:1.300032pt;}
._6_c02115{width:3.200512pt;}
._2_c02115{width:35.440640pt;}
._3_c02115{width:36.400640pt;}
._4_c02115{width:49.043968pt;}
._1_c02115{width:65.644864pt;}
._0_c02115{width:172.800000pt;}
.fs1_c02115{font-size:37.440000pt;}
.fs4_c02115{font-size:42.560000pt;}
.fs5_c02115{font-size:48.000000pt;}
.fs2_c02115{font-size:53.440000pt;}
.fs3_c02115{font-size:58.560000pt;}
.fs0_c02115{font-size:64.000000pt;}
.y0_c02115{bottom:0.000000pt;}
.y3_c02115{bottom:50.987067pt;}
.y2_c02115{bottom:69.387067pt;}
.y44_c02115{bottom:117.067067pt;}
.y43_c02115{bottom:144.667067pt;}
.y42_c02115{bottom:172.267067pt;}
.y41_c02115{bottom:196.746667pt;}
.y40_c02115{bottom:210.586267pt;}
.y3f_c02115{bottom:224.346667pt;}
.y3e_c02115{bottom:238.107067pt;}
.y3d_c02115{bottom:251.946667pt;}
.y3c_c02115{bottom:265.707067pt;}
.y3b_c02115{bottom:279.546667pt;}
.y3a_c02115{bottom:293.307067pt;}
.y39_c02115{bottom:307.146667pt;}
.y38_c02115{bottom:320.907067pt;}
.y37_c02115{bottom:334.746667pt;}
.y36_c02115{bottom:348.507067pt;}
.y35_c02115{bottom:362.346667pt;}
.y34_c02115{bottom:376.107067pt;}
.y33_c02115{bottom:389.946667pt;}
.y32_c02115{bottom:403.707067pt;}
.y31_c02115{bottom:417.546667pt;}
.y30_c02115{bottom:431.307067pt;}
.y2f_c02115{bottom:445.146667pt;}
.y2e_c02115{bottom:458.907067pt;}
.y2d_c02115{bottom:472.746667pt;}
.y2c_c02115{bottom:486.507067pt;}
.y2b_c02115{bottom:500.266811pt;}
.y2a_c02115{bottom:512.507067pt;}
.y28_c02115{bottom:525.467067pt;}
.y27_c02115{bottom:538.428227pt;}
.y26_c02115{bottom:555.308147pt;}
.y25_c02115{bottom:572.188067pt;}
.y24_c02115{bottom:589.067987pt;}
.y23_c02115{bottom:605.947907pt;}
.y22_c02115{bottom:622.747307pt;}
.y21_c02115{bottom:639.627227pt;}
.y20_c02115{bottom:656.507147pt;}
.y1f_c02115{bottom:673.387067pt;}
.y1e_c02115{bottom:689.467067pt;}
.y1d_c02115{bottom:702.507827pt;}
.y1c_c02115{bottom:719.387747pt;}
.y1b_c02115{bottom:736.267667pt;}
.y29_c02115{bottom:752.987200pt;}
.y1a_c02115{bottom:758.107067pt;}
.y17_c02115{bottom:769.867067pt;}
.y19_c02115{bottom:782.827147pt;}
.y16_c02115{bottom:782.907147pt;}
.y18_c02115{bottom:799.707067pt;}
.y15_c02115{bottom:804.827067pt;}
.y12_c02115{bottom:816.507067pt;}
.y11_c02115{bottom:829.547227pt;}
.y10_c02115{bottom:846.427147pt;}
.yf_c02115{bottom:863.307067pt;}
.y14_c02115{bottom:880.107667pt;}
.ye_c02115{bottom:880.187667pt;}
.y13_c02115{bottom:896.907067pt;}
.yd_c02115{bottom:902.027067pt;}
.ya_c02115{bottom:913.787067pt;}
.y9_c02115{bottom:926.827827pt;}
.y8_c02115{bottom:943.707747pt;}
.yc_c02115{bottom:960.507667pt;}
.y7_c02115{bottom:960.587667pt;}
.yb_c02115{bottom:977.307067pt;}
.y6_c02115{bottom:982.427067pt;}
.y5_c02115{bottom:999.867067pt;}
.y4_c02115{bottom:1012.667067pt;}
.y1_c02115{bottom:1060.587067pt;}
.h4_c02115{height:32.851406pt;}
.h3_c02115{height:37.003750pt;}
.h7_c02115{height:37.343906pt;}
.hc_c02115{height:42.632812pt;}
.h5_c02115{height:51.382969pt;}
.h8_c02115{height:52.012031pt;}
.hb_c02115{height:56.151610pt;}
.h6_c02115{height:56.153210pt;}
.h9_c02115{height:56.155610pt;}
.ha_c02115{height:56.155930pt;}
.h2_c02115{height:56.156250pt;}
.h1_c02115{height:56.843750pt;}
.h0_c02115{height:1122.666667pt;}
.w1_c02115{width:793.333333pt;}
.w0_c02115{width:793.626667pt;}
.x0_c02115{left:0.000000pt;}
.x1_c02115{left:113.440000pt;}
.x3_c02115{left:120.560000pt;}
.x4_c02115{left:243.440000pt;}
.x2_c02115{left:388.960000pt;}
.x5_c02115{left:640.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_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_77e60b89d12e711baff92195.woff2')format("woff");}.ff1_c02116{font-family:ff1_c02116;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02116;src:url('chunks/assets/font_0d2d935ca710d5ed647faffb.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_634efa43ac3971c383228905.woff2')format("woff");}.ff3_c02116{font-family:ff3_c02116;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_c02116;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff4_c02116{font-family:ff4_c02116;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:ff5_c02116;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff5_c02116{font-family:ff5_c02116;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;}
.m0_c02116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02116{vertical-align:-16.560000px;}
.v0_c02116{vertical-align:0.000000px;}
.v3_c02116{vertical-align:1.080000px;}
.v4_c02116{vertical-align:11.160000px;}
.v2_c02116{vertical-align:43.920000px;}
.ls2d_c02116{letter-spacing:-0.090972px;}
.ls24_c02116{letter-spacing:-0.050400px;}
.ls28_c02116{letter-spacing:-0.043092px;}
.ls26_c02116{letter-spacing:-0.036000px;}
.ls23_c02116{letter-spacing:-0.021600px;}
.ls20_c02116{letter-spacing:-0.014400px;}
.ls2b_c02116{letter-spacing:-0.013176px;}
.ls22_c02116{letter-spacing:-0.007200px;}
.ls29_c02116{letter-spacing:-0.004788px;}
.ls21_c02116{letter-spacing:0.000000px;}
.ls1b_c02116{letter-spacing:0.006588px;}
.ls0_c02116{letter-spacing:0.007200px;}
.lsc_c02116{letter-spacing:0.009576px;}
.ls3_c02116{letter-spacing:0.014400px;}
.ls19_c02116{letter-spacing:0.019764px;}
.ls1_c02116{letter-spacing:0.021600px;}
.ls12_c02116{letter-spacing:0.026352px;}
.ls5_c02116{letter-spacing:0.028800px;}
.lsd_c02116{letter-spacing:0.032940px;}
.ls4_c02116{letter-spacing:0.036000px;}
.ls11_c02116{letter-spacing:0.039528px;}
.ls6_c02116{letter-spacing:0.043200px;}
.ls16_c02116{letter-spacing:0.046116px;}
.ls1a_c02116{letter-spacing:0.052704px;}
.ls8_c02116{letter-spacing:0.057600px;}
.ls9_c02116{letter-spacing:0.064800px;}
.ls15_c02116{letter-spacing:0.065880px;}
.ls7_c02116{letter-spacing:0.072000px;}
.lsb_c02116{letter-spacing:0.079200px;}
.lsa_c02116{letter-spacing:0.086400px;}
.ls2_c02116{letter-spacing:0.100800px;}
.ls25_c02116{letter-spacing:0.115200px;}
.ls1c_c02116{letter-spacing:0.118584px;}
.lsf_c02116{letter-spacing:0.138852px;}
.ls2c_c02116{letter-spacing:0.180360px;}
.ls2a_c02116{letter-spacing:0.181944px;}
.ls1e_c02116{letter-spacing:0.210672px;}
.ls1f_c02116{letter-spacing:0.239400px;}
.ls17_c02116{letter-spacing:0.538704px;}
.ls13_c02116{letter-spacing:0.541044px;}
.ls18_c02116{letter-spacing:74.160000px;}
.ls14_c02116{letter-spacing:80.187660px;}
.ls10_c02116{letter-spacing:119.790000px;}
.ls27_c02116{letter-spacing:574.651008px;}
.lse_c02116{letter-spacing:753.212808px;}
.ls1d_c02116{letter-spacing:1770.930000px;}
.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;}
}
.ws3_c02116{word-spacing:-47.880000px;}
.ws1_c02116{word-spacing:-18.115200px;}
.ws0_c02116{word-spacing:-18.000000px;}
.ws4_c02116{word-spacing:-16.588584px;}
.ws5_c02116{word-spacing:-16.456824px;}
.ws2_c02116{word-spacing:-9.079200px;}
.ws2d_c02116{word-spacing:-0.301644px;}
.ws9_c02116{word-spacing:-0.201600px;}
.ws1b_c02116{word-spacing:-0.158400px;}
.ws1a_c02116{word-spacing:-0.122400px;}
.ws25_c02116{word-spacing:-0.086184px;}
.ws21_c02116{word-spacing:-0.014400px;}
.ws8_c02116{word-spacing:-0.007200px;}
.ws7_c02116{word-spacing:0.000000px;}
.ws1c_c02116{word-spacing:0.007200px;}
.ws6_c02116{word-spacing:0.014400px;}
.ws22_c02116{word-spacing:0.036000px;}
.ws29_c02116{word-spacing:0.039528px;}
.ws27_c02116{word-spacing:0.046116px;}
.ws28_c02116{word-spacing:0.052704px;}
.ws23_c02116{word-spacing:0.059292px;}
.ws26_c02116{word-spacing:0.065880px;}
.ws24_c02116{word-spacing:0.311220px;}
.ws19_c02116{word-spacing:1.015200px;}
.wsf_c02116{word-spacing:2.484000px;}
.ws10_c02116{word-spacing:2.491200px;}
.ws20_c02116{word-spacing:3.160800px;}
.ws1f_c02116{word-spacing:3.218400px;}
.ws12_c02116{word-spacing:5.659200px;}
.ws13_c02116{word-spacing:5.688000px;}
.wsc_c02116{word-spacing:8.539200px;}
.wsa_c02116{word-spacing:8.553600px;}
.wsb_c02116{word-spacing:8.654400px;}
.ws16_c02116{word-spacing:10.670400px;}
.ws14_c02116{word-spacing:10.728000px;}
.ws15_c02116{word-spacing:10.756800px;}
.ws1d_c02116{word-spacing:11.721600px;}
.ws1e_c02116{word-spacing:11.887200px;}
.ws18_c02116{word-spacing:14.961600px;}
.ws17_c02116{word-spacing:15.112800px;}
.ws2a_c02116{word-spacing:15.923196px;}
.wse_c02116{word-spacing:16.545600px;}
.wsd_c02116{word-spacing:16.552800px;}
.ws2b_c02116{word-spacing:21.279240px;}
.ws2c_c02116{word-spacing:21.299004px;}
.ws11_c02116{word-spacing:29.138400px;}
._1_c02116{margin-left:-1.072800px;}
._5_c02116{width:1.113372px;}
._3_c02116{width:3.153600px;}
._2_c02116{width:11.880000px;}
._c_c02116{width:52.108920px;}
._4_c02116{width:53.191512px;}
._6_c02116{width:55.164168px;}
._b_c02116{width:121.812120px;}
._7_c02116{width:166.570992px;}
._0_c02116{width:194.400000px;}
._a_c02116{width:204.880212px;}
._8_c02116{width:334.097244px;}
._9_c02116{width:357.254064px;}
.fc1_c02116{color:rgb(0,0,255);}
.fc0_c02116{color:rgb(0,0,0);}
.fs5_c02116{font-size:2.880000px;}
.fs4_c02116{font-size:36.000000px;}
.fs1_c02116{font-size:47.880000px;}
.fs6_c02116{font-size:54.000000px;}
.fs2_c02116{font-size:60.120000px;}
.fs3_c02116{font-size:65.880000px;}
.fs0_c02116{font-size:72.000000px;}
.y0_c02116{bottom:0.000000px;}
.y1f_c02116{bottom:2.610450px;}
.y26_c02116{bottom:2.610600px;}
.y3_c02116{bottom:57.360450px;}
.y2_c02116{bottom:78.060450px;}
.y47_c02116{bottom:119.910000px;}
.y46_c02116{bottom:135.479550px;}
.y45_c02116{bottom:150.960000px;}
.y44_c02116{bottom:166.529550px;}
.y43_c02116{bottom:182.010000px;}
.y42_c02116{bottom:197.579550px;}
.y41_c02116{bottom:213.060000px;}
.y40_c02116{bottom:228.540450px;}
.y3f_c02116{bottom:244.110000px;}
.y3e_c02116{bottom:259.590450px;}
.y3d_c02116{bottom:291.630450px;}
.y3c_c02116{bottom:295.680450px;}
.y3b_c02116{bottom:313.680450px;}
.y3a_c02116{bottom:331.320450px;}
.y39_c02116{bottom:349.950450px;}
.y36_c02116{bottom:368.400450px;}
.y37_c02116{bottom:389.100000px;}
.y35_c02116{bottom:391.440450px;}
.y38_c02116{bottom:391.710600px;}
.y33_c02116{bottom:408.810000px;}
.y32_c02116{bottom:411.150450px;}
.y34_c02116{bottom:411.420450px;}
.y2f_c02116{bottom:426.810450px;}
.y30_c02116{bottom:447.510000px;}
.y2e_c02116{bottom:449.850450px;}
.y31_c02116{bottom:450.120600px;}
.y2c_c02116{bottom:467.220000px;}
.y2b_c02116{bottom:469.560450px;}
.y2d_c02116{bottom:469.830450px;}
.y29_c02116{bottom:486.930000px;}
.y28_c02116{bottom:489.270600px;}
.y2a_c02116{bottom:489.540600px;}
.y25_c02116{bottom:506.640000px;}
.y24_c02116{bottom:508.980450px;}
.y27_c02116{bottom:509.250600px;}
.y22_c02116{bottom:526.440000px;}
.y21_c02116{bottom:528.780450px;}
.y23_c02116{bottom:529.050450px;}
.y1e_c02116{bottom:546.150000px;}
.y1d_c02116{bottom:548.490450px;}
.y20_c02116{bottom:548.760450px;}
.y1c_c02116{bottom:562.980450px;}
.y1b_c02116{bottom:565.860450px;}
.y1a_c02116{bottom:576.840450px;}
.y19_c02116{bottom:592.230450px;}
.y18_c02116{bottom:610.140450px;}
.y17_c02116{bottom:630.840450px;}
.y16_c02116{bottom:651.540450px;}
.y15_c02116{bottom:671.340450px;}
.y14_c02116{bottom:690.060450px;}
.y13_c02116{bottom:711.480450px;}
.y12_c02116{bottom:733.080450px;}
.y11_c02116{bottom:753.600450px;}
.y10_c02116{bottom:784.830450px;}
.yf_c02116{bottom:815.880450px;}
.ye_c02116{bottom:846.930450px;}
.yd_c02116{bottom:877.980450px;}
.yc_c02116{bottom:909.030450px;}
.yb_c02116{bottom:940.080450px;}
.ya_c02116{bottom:971.130450px;}
.y9_c02116{bottom:1002.180450px;}
.y8_c02116{bottom:1033.230450px;}
.y7_c02116{bottom:1064.280450px;}
.y6_c02116{bottom:1095.150450px;}
.y5_c02116{bottom:1114.500450px;}
.y4_c02116{bottom:1139.970450px;}
.y1_c02116{bottom:1193.160450px;}
.hc_c02116{height:2.557969px;}
.h9_c02116{height:13.500000px;}
.ha_c02116{height:31.912207px;}
.h3_c02116{height:42.526230px;}
.h8_c02116{height:43.606230px;}
.hd_c02116{height:47.961914px;}
.h6_c02116{height:52.751777px;}
.h5_c02116{height:53.397598px;}
.hb_c02116{height:53.686230px;}
.h2_c02116{height:63.175781px;}
.h1_c02116{height:63.949219px;}
.h4_c02116{height:70.628906px;}
.h7_c02116{height:86.446230px;}
.h0_c02116{height:1263.000000px;}
.w2_c02116{width:9.630000px;}
.w1_c02116{width:892.500000px;}
.w0_c02116{width:892.830000px;}
.x0_c02116{left:0.000000px;}
.x9_c02116{left:6.030000px;}
.x1_c02116{left:127.620000px;}
.x4_c02116{left:135.630000px;}
.x5_c02116{left:146.340000px;}
.x3_c02116{left:148.950000px;}
.xf_c02116{left:175.230000px;}
.x2_c02116{left:437.580000px;}
.x10_c02116{left:603.450000px;}
.x6_c02116{left:607.590000px;}
.x8_c02116{left:688.500000px;}
.x7_c02116{left:692.820000px;}
.xa_c02116{left:698.130000px;}
.xb_c02116{left:708.300000px;}
.xc_c02116{left:717.930000px;}
.xd_c02116{left:728.100000px;}
.xe_c02116{left:737.729850px;}
@media print{
.v1_c02116{vertical-align:-14.720000pt;}
.v0_c02116{vertical-align:0.000000pt;}
.v3_c02116{vertical-align:0.960000pt;}
.v4_c02116{vertical-align:9.920000pt;}
.v2_c02116{vertical-align:39.040000pt;}
.ls2d_c02116{letter-spacing:-0.080864pt;}
.ls24_c02116{letter-spacing:-0.044800pt;}
.ls28_c02116{letter-spacing:-0.038304pt;}
.ls26_c02116{letter-spacing:-0.032000pt;}
.ls23_c02116{letter-spacing:-0.019200pt;}
.ls20_c02116{letter-spacing:-0.012800pt;}
.ls2b_c02116{letter-spacing:-0.011712pt;}
.ls22_c02116{letter-spacing:-0.006400pt;}
.ls29_c02116{letter-spacing:-0.004256pt;}
.ls21_c02116{letter-spacing:0.000000pt;}
.ls1b_c02116{letter-spacing:0.005856pt;}
.ls0_c02116{letter-spacing:0.006400pt;}
.lsc_c02116{letter-spacing:0.008512pt;}
.ls3_c02116{letter-spacing:0.012800pt;}
.ls19_c02116{letter-spacing:0.017568pt;}
.ls1_c02116{letter-spacing:0.019200pt;}
.ls12_c02116{letter-spacing:0.023424pt;}
.ls5_c02116{letter-spacing:0.025600pt;}
.lsd_c02116{letter-spacing:0.029280pt;}
.ls4_c02116{letter-spacing:0.032000pt;}
.ls11_c02116{letter-spacing:0.035136pt;}
.ls6_c02116{letter-spacing:0.038400pt;}
.ls16_c02116{letter-spacing:0.040992pt;}
.ls1a_c02116{letter-spacing:0.046848pt;}
.ls8_c02116{letter-spacing:0.051200pt;}
.ls9_c02116{letter-spacing:0.057600pt;}
.ls15_c02116{letter-spacing:0.058560pt;}
.ls7_c02116{letter-spacing:0.064000pt;}
.lsb_c02116{letter-spacing:0.070400pt;}
.lsa_c02116{letter-spacing:0.076800pt;}
.ls2_c02116{letter-spacing:0.089600pt;}
.ls25_c02116{letter-spacing:0.102400pt;}
.ls1c_c02116{letter-spacing:0.105408pt;}
.lsf_c02116{letter-spacing:0.123424pt;}
.ls2c_c02116{letter-spacing:0.160320pt;}
.ls2a_c02116{letter-spacing:0.161728pt;}
.ls1e_c02116{letter-spacing:0.187264pt;}
.ls1f_c02116{letter-spacing:0.212800pt;}
.ls17_c02116{letter-spacing:0.478848pt;}
.ls13_c02116{letter-spacing:0.480928pt;}
.ls18_c02116{letter-spacing:65.920000pt;}
.ls14_c02116{letter-spacing:71.277920pt;}
.ls10_c02116{letter-spacing:106.480000pt;}
.ls27_c02116{letter-spacing:510.800896pt;}
.lse_c02116{letter-spacing:669.522496pt;}
.ls1d_c02116{letter-spacing:1574.160000pt;}
.ws3_c02116{word-spacing:-42.560000pt;}
.ws1_c02116{word-spacing:-16.102400pt;}
.ws0_c02116{word-spacing:-16.000000pt;}
.ws4_c02116{word-spacing:-14.745408pt;}
.ws5_c02116{word-spacing:-14.628288pt;}
.ws2_c02116{word-spacing:-8.070400pt;}
.ws2d_c02116{word-spacing:-0.268128pt;}
.ws9_c02116{word-spacing:-0.179200pt;}
.ws1b_c02116{word-spacing:-0.140800pt;}
.ws1a_c02116{word-spacing:-0.108800pt;}
.ws25_c02116{word-spacing:-0.076608pt;}
.ws21_c02116{word-spacing:-0.012800pt;}
.ws8_c02116{word-spacing:-0.006400pt;}
.ws7_c02116{word-spacing:0.000000pt;}
.ws1c_c02116{word-spacing:0.006400pt;}
.ws6_c02116{word-spacing:0.012800pt;}
.ws22_c02116{word-spacing:0.032000pt;}
.ws29_c02116{word-spacing:0.035136pt;}
.ws27_c02116{word-spacing:0.040992pt;}
.ws28_c02116{word-spacing:0.046848pt;}
.ws23_c02116{word-spacing:0.052704pt;}
.ws26_c02116{word-spacing:0.058560pt;}
.ws24_c02116{word-spacing:0.276640pt;}
.ws19_c02116{word-spacing:0.902400pt;}
.wsf_c02116{word-spacing:2.208000pt;}
.ws10_c02116{word-spacing:2.214400pt;}
.ws20_c02116{word-spacing:2.809600pt;}
.ws1f_c02116{word-spacing:2.860800pt;}
.ws12_c02116{word-spacing:5.030400pt;}
.ws13_c02116{word-spacing:5.056000pt;}
.wsc_c02116{word-spacing:7.590400pt;}
.wsa_c02116{word-spacing:7.603200pt;}
.wsb_c02116{word-spacing:7.692800pt;}
.ws16_c02116{word-spacing:9.484800pt;}
.ws14_c02116{word-spacing:9.536000pt;}
.ws15_c02116{word-spacing:9.561600pt;}
.ws1d_c02116{word-spacing:10.419200pt;}
.ws1e_c02116{word-spacing:10.566400pt;}
.ws18_c02116{word-spacing:13.299200pt;}
.ws17_c02116{word-spacing:13.433600pt;}
.ws2a_c02116{word-spacing:14.153952pt;}
.wse_c02116{word-spacing:14.707200pt;}
.wsd_c02116{word-spacing:14.713600pt;}
.ws2b_c02116{word-spacing:18.914880pt;}
.ws2c_c02116{word-spacing:18.932448pt;}
.ws11_c02116{word-spacing:25.900800pt;}
._1_c02116{margin-left:-0.953600pt;}
._5_c02116{width:0.989664pt;}
._3_c02116{width:2.803200pt;}
._2_c02116{width:10.560000pt;}
._c_c02116{width:46.319040pt;}
._4_c02116{width:47.281344pt;}
._6_c02116{width:49.034816pt;}
._b_c02116{width:108.277440pt;}
._7_c02116{width:148.063104pt;}
._0_c02116{width:172.800000pt;}
._a_c02116{width:182.115744pt;}
._8_c02116{width:296.975328pt;}
._9_c02116{width:317.559168pt;}
.fs5_c02116{font-size:2.560000pt;}
.fs4_c02116{font-size:32.000000pt;}
.fs1_c02116{font-size:42.560000pt;}
.fs6_c02116{font-size:48.000000pt;}
.fs2_c02116{font-size:53.440000pt;}
.fs3_c02116{font-size:58.560000pt;}
.fs0_c02116{font-size:64.000000pt;}
.y0_c02116{bottom:0.000000pt;}
.y1f_c02116{bottom:2.320400pt;}
.y26_c02116{bottom:2.320533pt;}
.y3_c02116{bottom:50.987067pt;}
.y2_c02116{bottom:69.387067pt;}
.y47_c02116{bottom:106.586667pt;}
.y46_c02116{bottom:120.426267pt;}
.y45_c02116{bottom:134.186667pt;}
.y44_c02116{bottom:148.026267pt;}
.y43_c02116{bottom:161.786667pt;}
.y42_c02116{bottom:175.626267pt;}
.y41_c02116{bottom:189.386667pt;}
.y40_c02116{bottom:203.147067pt;}
.y3f_c02116{bottom:216.986667pt;}
.y3e_c02116{bottom:230.747067pt;}
.y3d_c02116{bottom:259.227067pt;}
.y3c_c02116{bottom:262.827067pt;}
.y3b_c02116{bottom:278.827067pt;}
.y3a_c02116{bottom:294.507067pt;}
.y39_c02116{bottom:311.067067pt;}
.y36_c02116{bottom:327.467067pt;}
.y37_c02116{bottom:345.866667pt;}
.y35_c02116{bottom:347.947067pt;}
.y38_c02116{bottom:348.187200pt;}
.y33_c02116{bottom:363.386667pt;}
.y32_c02116{bottom:365.467067pt;}
.y34_c02116{bottom:365.707067pt;}
.y2f_c02116{bottom:379.387067pt;}
.y30_c02116{bottom:397.786667pt;}
.y2e_c02116{bottom:399.867067pt;}
.y31_c02116{bottom:400.107200pt;}
.y2c_c02116{bottom:415.306667pt;}
.y2b_c02116{bottom:417.387067pt;}
.y2d_c02116{bottom:417.627067pt;}
.y29_c02116{bottom:432.826667pt;}
.y28_c02116{bottom:434.907200pt;}
.y2a_c02116{bottom:435.147200pt;}
.y25_c02116{bottom:450.346667pt;}
.y24_c02116{bottom:452.427067pt;}
.y27_c02116{bottom:452.667200pt;}
.y22_c02116{bottom:467.946667pt;}
.y21_c02116{bottom:470.027067pt;}
.y23_c02116{bottom:470.267067pt;}
.y1e_c02116{bottom:485.466667pt;}
.y1d_c02116{bottom:487.547067pt;}
.y20_c02116{bottom:487.787067pt;}
.y1c_c02116{bottom:500.427067pt;}
.y1b_c02116{bottom:502.987067pt;}
.y1a_c02116{bottom:512.747067pt;}
.y19_c02116{bottom:526.427067pt;}
.y18_c02116{bottom:542.347067pt;}
.y17_c02116{bottom:560.747067pt;}
.y16_c02116{bottom:579.147067pt;}
.y15_c02116{bottom:596.747067pt;}
.y14_c02116{bottom:613.387067pt;}
.y13_c02116{bottom:632.427067pt;}
.y12_c02116{bottom:651.627067pt;}
.y11_c02116{bottom:669.867067pt;}
.y10_c02116{bottom:697.627067pt;}
.yf_c02116{bottom:725.227067pt;}
.ye_c02116{bottom:752.827067pt;}
.yd_c02116{bottom:780.427067pt;}
.yc_c02116{bottom:808.027067pt;}
.yb_c02116{bottom:835.627067pt;}
.ya_c02116{bottom:863.227067pt;}
.y9_c02116{bottom:890.827067pt;}
.y8_c02116{bottom:918.427067pt;}
.y7_c02116{bottom:946.027067pt;}
.y6_c02116{bottom:973.467067pt;}
.y5_c02116{bottom:990.667067pt;}
.y4_c02116{bottom:1013.307067pt;}
.y1_c02116{bottom:1060.587067pt;}
.hc_c02116{height:2.273750pt;}
.h9_c02116{height:12.000000pt;}
.ha_c02116{height:28.366406pt;}
.h3_c02116{height:37.801094pt;}
.h8_c02116{height:38.761094pt;}
.hd_c02116{height:42.632812pt;}
.h6_c02116{height:46.890469pt;}
.h5_c02116{height:47.464531pt;}
.hb_c02116{height:47.721094pt;}
.h2_c02116{height:56.156250pt;}
.h1_c02116{height:56.843750pt;}
.h4_c02116{height:62.781250pt;}
.h7_c02116{height:76.841094pt;}
.h0_c02116{height:1122.666667pt;}
.w2_c02116{width:8.560000pt;}
.w1_c02116{width:793.333333pt;}
.w0_c02116{width:793.626667pt;}
.x0_c02116{left:0.000000pt;}
.x9_c02116{left:5.360000pt;}
.x1_c02116{left:113.440000pt;}
.x4_c02116{left:120.560000pt;}
.x5_c02116{left:130.080000pt;}
.x3_c02116{left:132.400000pt;}
.xf_c02116{left:155.760000pt;}
.x2_c02116{left:388.960000pt;}
.x10_c02116{left:536.400000pt;}
.x6_c02116{left:540.080000pt;}
.x8_c02116{left:612.000000pt;}
.x7_c02116{left:615.840000pt;}
.xa_c02116{left:620.560000pt;}
.xb_c02116{left:629.600000pt;}
.xc_c02116{left:638.160000pt;}
.xd_c02116{left:647.200000pt;}
.xe_c02116{left:655.759867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7409ae319842cc245a8e7f58.woff2')format("woff");}.ff1_c02117{font-family:ff1_c02117;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02117;src:url('chunks/assets/font_8997a1a04dca32053c99da4b.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_4e3ac4b57d9d1d96548b2fd9.woff2')format("woff");}.ff3_c02117{font-family:ff3_c02117;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_c02117;src:url('chunks/assets/font_f5c3d0b9ee77f8262db4bf03.woff2')format("woff");}.ff4_c02117{font-family:ff4_c02117;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_c02117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02117{vertical-align:-9.000000px;}
.v0_c02117{vertical-align:0.000000px;}
.v2_c02117{vertical-align:6.120000px;}
.ls1d_c02117{letter-spacing:-0.050400px;}
.ls1f_c02117{letter-spacing:-0.028800px;}
.ls1b_c02117{letter-spacing:-0.014400px;}
.ls1e_c02117{letter-spacing:-0.007200px;}
.ls1c_c02117{letter-spacing:0.000000px;}
.ls0_c02117{letter-spacing:0.007200px;}
.ls7_c02117{letter-spacing:0.013176px;}
.ls19_c02117{letter-spacing:0.014400px;}
.ls5_c02117{letter-spacing:0.021600px;}
.lsa_c02117{letter-spacing:0.026352px;}
.ls16_c02117{letter-spacing:0.028800px;}
.ls10_c02117{letter-spacing:0.032940px;}
.ls4_c02117{letter-spacing:0.036000px;}
.ls12_c02117{letter-spacing:0.039528px;}
.ls14_c02117{letter-spacing:0.043200px;}
.lsd_c02117{letter-spacing:0.046116px;}
.ls18_c02117{letter-spacing:0.057600px;}
.lsb_c02117{letter-spacing:0.059292px;}
.ls15_c02117{letter-spacing:0.064800px;}
.ls6_c02117{letter-spacing:0.065880px;}
.ls1a_c02117{letter-spacing:0.072468px;}
.lsf_c02117{letter-spacing:0.079056px;}
.ls17_c02117{letter-spacing:0.079200px;}
.lsc_c02117{letter-spacing:0.085644px;}
.lse_c02117{letter-spacing:0.090360px;}
.ls11_c02117{letter-spacing:0.092232px;}
.ls1_c02117{letter-spacing:0.093600px;}
.ls8_c02117{letter-spacing:0.098820px;}
.ls13_c02117{letter-spacing:0.105408px;}
.ls9_c02117{letter-spacing:0.118584px;}
.ls2_c02117{letter-spacing:0.144000px;}
.ls3_c02117{letter-spacing:0.181944px;}
.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;}
}
.ws2_c02117{word-spacing:-17.992800px;}
.ws1_c02117{word-spacing:-16.529292px;}
.ws0_c02117{word-spacing:-16.509528px;}
.ws2c_c02117{word-spacing:-0.367200px;}
.ws2a_c02117{word-spacing:-0.352800px;}
.ws2e_c02117{word-spacing:-0.273600px;}
.ws27_c02117{word-spacing:-0.208800px;}
.ws25_c02117{word-spacing:-0.194400px;}
.ws28_c02117{word-spacing:-0.187200px;}
.ws24_c02117{word-spacing:-0.180000px;}
.ws1f_c02117{word-spacing:-0.172800px;}
.ws2b_c02117{word-spacing:-0.151200px;}
.ws9_c02117{word-spacing:-0.108000px;}
.ws22_c02117{word-spacing:-0.100800px;}
.wse_c02117{word-spacing:-0.093600px;}
.ws23_c02117{word-spacing:-0.079200px;}
.ws8_c02117{word-spacing:-0.072000px;}
.ws26_c02117{word-spacing:-0.057600px;}
.ws1e_c02117{word-spacing:-0.043200px;}
.ws29_c02117{word-spacing:-0.028800px;}
.ws13_c02117{word-spacing:-0.026352px;}
.ws20_c02117{word-spacing:-0.021600px;}
.ws21_c02117{word-spacing:-0.014400px;}
.ws1b_c02117{word-spacing:-0.013176px;}
.ws5_c02117{word-spacing:-0.007200px;}
.ws12_c02117{word-spacing:-0.006588px;}
.ws4_c02117{word-spacing:0.000000px;}
.ws16_c02117{word-spacing:0.006588px;}
.wsf_c02117{word-spacing:0.007200px;}
.ws18_c02117{word-spacing:0.013176px;}
.ws3_c02117{word-spacing:0.014400px;}
.ws2d_c02117{word-spacing:0.019764px;}
.ws10_c02117{word-spacing:0.026352px;}
.ws15_c02117{word-spacing:0.032940px;}
.ws17_c02117{word-spacing:0.046116px;}
.ws1a_c02117{word-spacing:0.052704px;}
.ws19_c02117{word-spacing:0.059292px;}
.ws14_c02117{word-spacing:0.065880px;}
.ws11_c02117{word-spacing:0.079056px;}
.ws6_c02117{word-spacing:2.988000px;}
.ws7_c02117{word-spacing:3.196800px;}
.wsb_c02117{word-spacing:7.725600px;}
.wsa_c02117{word-spacing:7.812000px;}
.wsc_c02117{word-spacing:13.939200px;}
.wsd_c02117{word-spacing:14.047200px;}
.ws1d_c02117{word-spacing:14.299200px;}
.ws1c_c02117{word-spacing:14.428800px;}
._4_c02117{margin-left:-1.008000px;}
._2_c02117{width:2.676240px;}
._3_c02117{width:7.356240px;}
._5_c02117{width:112.096800px;}
._6_c02117{width:116.056800px;}
._1_c02117{width:165.024000px;}
._0_c02117{width:194.400000px;}
._7_c02117{width:278.236800px;}
.fc0_c02117{color:rgb(0,0,0);}
.fs2_c02117{font-size:47.880000px;}
.fs1_c02117{font-size:54.000000px;}
.fs3_c02117{font-size:65.880000px;}
.fs0_c02117{font-size:72.000000px;}
.y0_c02117{bottom:0.000000px;}
.y3_c02117{bottom:57.360450px;}
.y2_c02117{bottom:78.060450px;}
.y38_c02117{bottom:119.730450px;}
.y37_c02117{bottom:140.430450px;}
.y36_c02117{bottom:161.130450px;}
.y35_c02117{bottom:181.830450px;}
.y34_c02117{bottom:202.530450px;}
.y33_c02117{bottom:223.230450px;}
.y32_c02117{bottom:243.840450px;}
.y31_c02117{bottom:263.640000px;}
.y30_c02117{bottom:279.120450px;}
.y2f_c02117{bottom:294.690000px;}
.y2e_c02117{bottom:310.170450px;}
.y2d_c02117{bottom:325.740000px;}
.y2c_c02117{bottom:341.220450px;}
.y2b_c02117{bottom:356.790000px;}
.y2a_c02117{bottom:372.270450px;}
.y29_c02117{bottom:389.730450px;}
.y28_c02117{bottom:410.430600px;}
.y27_c02117{bottom:431.400450px;}
.y26_c02117{bottom:451.560450px;}
.y25_c02117{bottom:472.260450px;}
.y24_c02117{bottom:492.960600px;}
.y23_c02117{bottom:514.200600px;}
.y22_c02117{bottom:535.890450px;}
.y21_c02117{bottom:556.590450px;}
.y20_c02117{bottom:577.830450px;}
.y1f_c02117{bottom:599.430450px;}
.y1e_c02117{bottom:620.130450px;}
.y1d_c02117{bottom:640.830450px;}
.y1c_c02117{bottom:661.530450px;}
.y1b_c02117{bottom:682.230450px;}
.y1a_c02117{bottom:703.200450px;}
.y19_c02117{bottom:723.450450px;}
.y18_c02117{bottom:744.150450px;}
.y17_c02117{bottom:765.120450px;}
.y16_c02117{bottom:784.920450px;}
.y15_c02117{bottom:803.910450px;}
.y14_c02117{bottom:822.900450px;}
.y13_c02117{bottom:841.800450px;}
.y12_c02117{bottom:860.790600px;}
.y11_c02117{bottom:879.780450px;}
.y10_c02117{bottom:898.770450px;}
.yf_c02117{bottom:917.760450px;}
.ye_c02117{bottom:935.220450px;}
.yd_c02117{bottom:956.640450px;}
.yc_c02117{bottom:978.060450px;}
.yb_c02117{bottom:999.570450px;}
.ya_c02117{bottom:1020.270450px;}
.y9_c02117{bottom:1040.970450px;}
.y8_c02117{bottom:1061.670450px;}
.y7_c02117{bottom:1082.370450px;}
.y6_c02117{bottom:1102.980450px;}
.y5_c02117{bottom:1123.500450px;}
.y4_c02117{bottom:1139.970450px;}
.y1_c02117{bottom:1193.160450px;}
.h3_c02117{height:47.961914px;}
.h2_c02117{height:63.175781px;}
.h1_c02117{height:63.949219px;}
.h6_c02117{height:70.069219px;}
.h5_c02117{height:70.628906px;}
.h4_c02117{height:70.988906px;}
.h0_c02117{height:1263.000000px;}
.w1_c02117{width:892.500000px;}
.w0_c02117{width:892.830000px;}
.x0_c02117{left:0.000000px;}
.x1_c02117{left:127.620000px;}
.x3_c02117{left:135.630000px;}
.x4_c02117{left:252.630000px;}
.x2_c02117{left:437.580000px;}
@media print{
.v1_c02117{vertical-align:-8.000000pt;}
.v0_c02117{vertical-align:0.000000pt;}
.v2_c02117{vertical-align:5.440000pt;}
.ls1d_c02117{letter-spacing:-0.044800pt;}
.ls1f_c02117{letter-spacing:-0.025600pt;}
.ls1b_c02117{letter-spacing:-0.012800pt;}
.ls1e_c02117{letter-spacing:-0.006400pt;}
.ls1c_c02117{letter-spacing:0.000000pt;}
.ls0_c02117{letter-spacing:0.006400pt;}
.ls7_c02117{letter-spacing:0.011712pt;}
.ls19_c02117{letter-spacing:0.012800pt;}
.ls5_c02117{letter-spacing:0.019200pt;}
.lsa_c02117{letter-spacing:0.023424pt;}
.ls16_c02117{letter-spacing:0.025600pt;}
.ls10_c02117{letter-spacing:0.029280pt;}
.ls4_c02117{letter-spacing:0.032000pt;}
.ls12_c02117{letter-spacing:0.035136pt;}
.ls14_c02117{letter-spacing:0.038400pt;}
.lsd_c02117{letter-spacing:0.040992pt;}
.ls18_c02117{letter-spacing:0.051200pt;}
.lsb_c02117{letter-spacing:0.052704pt;}
.ls15_c02117{letter-spacing:0.057600pt;}
.ls6_c02117{letter-spacing:0.058560pt;}
.ls1a_c02117{letter-spacing:0.064416pt;}
.lsf_c02117{letter-spacing:0.070272pt;}
.ls17_c02117{letter-spacing:0.070400pt;}
.lsc_c02117{letter-spacing:0.076128pt;}
.lse_c02117{letter-spacing:0.080320pt;}
.ls11_c02117{letter-spacing:0.081984pt;}
.ls1_c02117{letter-spacing:0.083200pt;}
.ls8_c02117{letter-spacing:0.087840pt;}
.ls13_c02117{letter-spacing:0.093696pt;}
.ls9_c02117{letter-spacing:0.105408pt;}
.ls2_c02117{letter-spacing:0.128000pt;}
.ls3_c02117{letter-spacing:0.161728pt;}
.ws2_c02117{word-spacing:-15.993600pt;}
.ws1_c02117{word-spacing:-14.692704pt;}
.ws0_c02117{word-spacing:-14.675136pt;}
.ws2c_c02117{word-spacing:-0.326400pt;}
.ws2a_c02117{word-spacing:-0.313600pt;}
.ws2e_c02117{word-spacing:-0.243200pt;}
.ws27_c02117{word-spacing:-0.185600pt;}
.ws25_c02117{word-spacing:-0.172800pt;}
.ws28_c02117{word-spacing:-0.166400pt;}
.ws24_c02117{word-spacing:-0.160000pt;}
.ws1f_c02117{word-spacing:-0.153600pt;}
.ws2b_c02117{word-spacing:-0.134400pt;}
.ws9_c02117{word-spacing:-0.096000pt;}
.ws22_c02117{word-spacing:-0.089600pt;}
.wse_c02117{word-spacing:-0.083200pt;}
.ws23_c02117{word-spacing:-0.070400pt;}
.ws8_c02117{word-spacing:-0.064000pt;}
.ws26_c02117{word-spacing:-0.051200pt;}
.ws1e_c02117{word-spacing:-0.038400pt;}
.ws29_c02117{word-spacing:-0.025600pt;}
.ws13_c02117{word-spacing:-0.023424pt;}
.ws20_c02117{word-spacing:-0.019200pt;}
.ws21_c02117{word-spacing:-0.012800pt;}
.ws1b_c02117{word-spacing:-0.011712pt;}
.ws5_c02117{word-spacing:-0.006400pt;}
.ws12_c02117{word-spacing:-0.005856pt;}
.ws4_c02117{word-spacing:0.000000pt;}
.ws16_c02117{word-spacing:0.005856pt;}
.wsf_c02117{word-spacing:0.006400pt;}
.ws18_c02117{word-spacing:0.011712pt;}
.ws3_c02117{word-spacing:0.012800pt;}
.ws2d_c02117{word-spacing:0.017568pt;}
.ws10_c02117{word-spacing:0.023424pt;}
.ws15_c02117{word-spacing:0.029280pt;}
.ws17_c02117{word-spacing:0.040992pt;}
.ws1a_c02117{word-spacing:0.046848pt;}
.ws19_c02117{word-spacing:0.052704pt;}
.ws14_c02117{word-spacing:0.058560pt;}
.ws11_c02117{word-spacing:0.070272pt;}
.ws6_c02117{word-spacing:2.656000pt;}
.ws7_c02117{word-spacing:2.841600pt;}
.wsb_c02117{word-spacing:6.867200pt;}
.wsa_c02117{word-spacing:6.944000pt;}
.wsc_c02117{word-spacing:12.390400pt;}
.wsd_c02117{word-spacing:12.486400pt;}
.ws1d_c02117{word-spacing:12.710400pt;}
.ws1c_c02117{word-spacing:12.825600pt;}
._4_c02117{margin-left:-0.896000pt;}
._2_c02117{width:2.378880pt;}
._3_c02117{width:6.538880pt;}
._5_c02117{width:99.641600pt;}
._6_c02117{width:103.161600pt;}
._1_c02117{width:146.688000pt;}
._0_c02117{width:172.800000pt;}
._7_c02117{width:247.321600pt;}
.fs2_c02117{font-size:42.560000pt;}
.fs1_c02117{font-size:48.000000pt;}
.fs3_c02117{font-size:58.560000pt;}
.fs0_c02117{font-size:64.000000pt;}
.y0_c02117{bottom:0.000000pt;}
.y3_c02117{bottom:50.987067pt;}
.y2_c02117{bottom:69.387067pt;}
.y38_c02117{bottom:106.427067pt;}
.y37_c02117{bottom:124.827067pt;}
.y36_c02117{bottom:143.227067pt;}
.y35_c02117{bottom:161.627067pt;}
.y34_c02117{bottom:180.027067pt;}
.y33_c02117{bottom:198.427067pt;}
.y32_c02117{bottom:216.747067pt;}
.y31_c02117{bottom:234.346667pt;}
.y30_c02117{bottom:248.107067pt;}
.y2f_c02117{bottom:261.946667pt;}
.y2e_c02117{bottom:275.707067pt;}
.y2d_c02117{bottom:289.546667pt;}
.y2c_c02117{bottom:303.307067pt;}
.y2b_c02117{bottom:317.146667pt;}
.y2a_c02117{bottom:330.907067pt;}
.y29_c02117{bottom:346.427067pt;}
.y28_c02117{bottom:364.827200pt;}
.y27_c02117{bottom:383.467067pt;}
.y26_c02117{bottom:401.387067pt;}
.y25_c02117{bottom:419.787067pt;}
.y24_c02117{bottom:438.187200pt;}
.y23_c02117{bottom:457.067200pt;}
.y22_c02117{bottom:476.347067pt;}
.y21_c02117{bottom:494.747067pt;}
.y20_c02117{bottom:513.627067pt;}
.y1f_c02117{bottom:532.827067pt;}
.y1e_c02117{bottom:551.227067pt;}
.y1d_c02117{bottom:569.627067pt;}
.y1c_c02117{bottom:588.027067pt;}
.y1b_c02117{bottom:606.427067pt;}
.y1a_c02117{bottom:625.067067pt;}
.y19_c02117{bottom:643.067067pt;}
.y18_c02117{bottom:661.467067pt;}
.y17_c02117{bottom:680.107067pt;}
.y16_c02117{bottom:697.707067pt;}
.y15_c02117{bottom:714.587067pt;}
.y14_c02117{bottom:731.467067pt;}
.y13_c02117{bottom:748.267067pt;}
.y12_c02117{bottom:765.147200pt;}
.y11_c02117{bottom:782.027067pt;}
.y10_c02117{bottom:798.907067pt;}
.yf_c02117{bottom:815.787067pt;}
.ye_c02117{bottom:831.307067pt;}
.yd_c02117{bottom:850.347067pt;}
.yc_c02117{bottom:869.387067pt;}
.yb_c02117{bottom:888.507067pt;}
.ya_c02117{bottom:906.907067pt;}
.y9_c02117{bottom:925.307067pt;}
.y8_c02117{bottom:943.707067pt;}
.y7_c02117{bottom:962.107067pt;}
.y6_c02117{bottom:980.427067pt;}
.y5_c02117{bottom:998.667067pt;}
.y4_c02117{bottom:1013.307067pt;}
.y1_c02117{bottom:1060.587067pt;}
.h3_c02117{height:42.632812pt;}
.h2_c02117{height:56.156250pt;}
.h1_c02117{height:56.843750pt;}
.h6_c02117{height:62.283750pt;}
.h5_c02117{height:62.781250pt;}
.h4_c02117{height:63.101250pt;}
.h0_c02117{height:1122.666667pt;}
.w1_c02117{width:793.333333pt;}
.w0_c02117{width:793.626667pt;}
.x0_c02117{left:0.000000pt;}
.x1_c02117{left:113.440000pt;}
.x3_c02117{left:120.560000pt;}
.x4_c02117{left:224.560000pt;}
.x2_c02117{left:388.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_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_dd857a11c776e96d26a21292.woff2')format("woff");}.ff1_c02118{font-family:ff1_c02118;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02118;src:url('chunks/assets/font_15b1b4e77eda85af5b186e02.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_2ed22b09cb1bfaa30f6c77e8.woff2')format("woff");}.ff3_c02118{font-family:ff3_c02118;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02118;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02118{font-family:ff4_c02118;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;}
.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;}
.ls47_c02118{letter-spacing:-0.384768px;}
.ls29_c02118{letter-spacing:-0.324000px;}
.ls23_c02118{letter-spacing:-0.302400px;}
.ls26_c02118{letter-spacing:-0.291600px;}
.ls54_c02118{letter-spacing:-0.222444px;}
.ls55_c02118{letter-spacing:-0.216432px;}
.ls20_c02118{letter-spacing:-0.210600px;}
.ls22_c02118{letter-spacing:-0.183600px;}
.ls25_c02118{letter-spacing:-0.178200px;}
.ls48_c02118{letter-spacing:-0.168336px;}
.ls56_c02118{letter-spacing:-0.156312px;}
.ls53_c02118{letter-spacing:-0.144288px;}
.ls36_c02118{letter-spacing:-0.136800px;}
.ls46_c02118{letter-spacing:-0.126252px;}
.ls2c_c02118{letter-spacing:-0.124200px;}
.ls45_c02118{letter-spacing:-0.120240px;}
.ls37_c02118{letter-spacing:-0.115200px;}
.ls31_c02118{letter-spacing:-0.113400px;}
.ls42_c02118{letter-spacing:-0.108216px;}
.ls34_c02118{letter-spacing:-0.108000px;}
.ls40_c02118{letter-spacing:-0.102204px;}
.ls33_c02118{letter-spacing:-0.097200px;}
.ls1f_c02118{letter-spacing:-0.090972px;}
.ls4e_c02118{letter-spacing:-0.090180px;}
.ls27_c02118{letter-spacing:-0.086400px;}
.ls3f_c02118{letter-spacing:-0.084168px;}
.ls28_c02118{letter-spacing:-0.075600px;}
.ls51_c02118{letter-spacing:-0.072144px;}
.ls2a_c02118{letter-spacing:-0.070200px;}
.ls41_c02118{letter-spacing:-0.066132px;}
.ls44_c02118{letter-spacing:-0.060120px;}
.ls32_c02118{letter-spacing:-0.059400px;}
.ls4f_c02118{letter-spacing:-0.054108px;}
.ls2b_c02118{letter-spacing:-0.054000px;}
.ls39_c02118{letter-spacing:-0.043200px;}
.ls3d_c02118{letter-spacing:-0.036072px;}
.ls57_c02118{letter-spacing:-0.036000px;}
.ls30_c02118{letter-spacing:-0.032400px;}
.ls3e_c02118{letter-spacing:-0.030060px;}
.ls24_c02118{letter-spacing:-0.027000px;}
.ls4b_c02118{letter-spacing:-0.024048px;}
.ls1e_c02118{letter-spacing:-0.021600px;}
.ls49_c02118{letter-spacing:-0.018036px;}
.ls1b_c02118{letter-spacing:-0.014400px;}
.ls4c_c02118{letter-spacing:-0.012024px;}
.ls2d_c02118{letter-spacing:-0.010800px;}
.ls1d_c02118{letter-spacing:-0.007200px;}
.ls4a_c02118{letter-spacing:-0.006012px;}
.ls1c_c02118{letter-spacing:0.000000px;}
.ls3a_c02118{letter-spacing:0.007200px;}
.ls8_c02118{letter-spacing:0.010800px;}
.ls5_c02118{letter-spacing:0.014400px;}
.ls6_c02118{letter-spacing:0.016200px;}
.ls2_c02118{letter-spacing:0.021600px;}
.ls16_c02118{letter-spacing:0.024048px;}
.lsb_c02118{letter-spacing:0.027000px;}
.ls3b_c02118{letter-spacing:0.036000px;}
.ls18_c02118{letter-spacing:0.036072px;}
.ls7_c02118{letter-spacing:0.037800px;}
.ls4d_c02118{letter-spacing:0.042084px;}
.ls4_c02118{letter-spacing:0.043200px;}
.lsf_c02118{letter-spacing:0.048600px;}
.ls38_c02118{letter-spacing:0.050400px;}
.lse_c02118{letter-spacing:0.054000px;}
.ls19_c02118{letter-spacing:0.054108px;}
.ls1_c02118{letter-spacing:0.057600px;}
.ls17_c02118{letter-spacing:0.060120px;}
.ls0_c02118{letter-spacing:0.072000px;}
.ls50_c02118{letter-spacing:0.072144px;}
.ls3_c02118{letter-spacing:0.079200px;}
.lsd_c02118{letter-spacing:0.086400px;}
.ls14_c02118{letter-spacing:0.090180px;}
.lsc_c02118{letter-spacing:0.097200px;}
.ls15_c02118{letter-spacing:0.102204px;}
.lsa_c02118{letter-spacing:0.108000px;}
.ls3c_c02118{letter-spacing:0.126252px;}
.ls1a_c02118{letter-spacing:0.130032px;}
.ls43_c02118{letter-spacing:0.138276px;}
.ls35_c02118{letter-spacing:0.156600px;}
.ls9_c02118{letter-spacing:0.167400px;}
.ls10_c02118{letter-spacing:0.172800px;}
.ls11_c02118{letter-spacing:0.178200px;}
.ls2f_c02118{letter-spacing:0.183600px;}
.ls21_c02118{letter-spacing:0.194400px;}
.ls52_c02118{letter-spacing:0.210420px;}
.ls2e_c02118{letter-spacing:0.226800px;}
.ls13_c02118{letter-spacing:0.288000px;}
.ls12_c02118{letter-spacing:0.648000px;}
.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;}
}
.ws28_c02118{word-spacing:-72.000000px;}
.ws2f_c02118{word-spacing:-60.120000px;}
.ws2_c02118{word-spacing:-54.000000px;}
.ws1c_c02118{word-spacing:-0.280800px;}
.ws44_c02118{word-spacing:-0.270540px;}
.ws3_c02118{word-spacing:-0.248400px;}
.ws1d_c02118{word-spacing:-0.237600px;}
.ws15_c02118{word-spacing:-0.232200px;}
.ws17_c02118{word-spacing:-0.226800px;}
.ws5_c02118{word-spacing:-0.221400px;}
.ws25_c02118{word-spacing:-0.210600px;}
.ws36_c02118{word-spacing:-0.198396px;}
.ws30_c02118{word-spacing:-0.162324px;}
.wsa_c02118{word-spacing:-0.162000px;}
.ws13_c02118{word-spacing:-0.151200px;}
.ws50_c02118{word-spacing:-0.144000px;}
.ws14_c02118{word-spacing:-0.140400px;}
.ws43_c02118{word-spacing:-0.132264px;}
.ws29_c02118{word-spacing:-0.122400px;}
.ws35_c02118{word-spacing:-0.120240px;}
.ws4f_c02118{word-spacing:-0.115200px;}
.ws45_c02118{word-spacing:-0.114228px;}
.ws19_c02118{word-spacing:-0.108000px;}
.ws1e_c02118{word-spacing:-0.102600px;}
.ws3f_c02118{word-spacing:-0.102204px;}
.ws55_c02118{word-spacing:-0.100800px;}
.ws11_c02118{word-spacing:-0.097200px;}
.ws40_c02118{word-spacing:-0.096192px;}
.ws32_c02118{word-spacing:-0.084168px;}
.wse_c02118{word-spacing:-0.081000px;}
.ws4_c02118{word-spacing:-0.075600px;}
.ws27_c02118{word-spacing:-0.072000px;}
.ws0_c02118{word-spacing:-0.070200px;}
.ws9_c02118{word-spacing:-0.064800px;}
.ws3b_c02118{word-spacing:-0.060120px;}
.ws2a_c02118{word-spacing:-0.057600px;}
.ws3d_c02118{word-spacing:-0.054108px;}
.ws20_c02118{word-spacing:-0.054000px;}
.ws3e_c02118{word-spacing:-0.048096px;}
.ws1b_c02118{word-spacing:-0.043200px;}
.ws3c_c02118{word-spacing:-0.042084px;}
.ws4a_c02118{word-spacing:-0.036000px;}
.wsb_c02118{word-spacing:-0.032400px;}
.ws2d_c02118{word-spacing:-0.030060px;}
.ws2b_c02118{word-spacing:-0.028800px;}
.ws8_c02118{word-spacing:-0.027000px;}
.ws2c_c02118{word-spacing:-0.024048px;}
.ws1f_c02118{word-spacing:-0.021600px;}
.ws4c_c02118{word-spacing:-0.014400px;}
.ws42_c02118{word-spacing:-0.006012px;}
.ws18_c02118{word-spacing:0.000000px;}
.ws22_c02118{word-spacing:0.005400px;}
.ws33_c02118{word-spacing:0.006012px;}
.ws4b_c02118{word-spacing:0.014400px;}
.ws16_c02118{word-spacing:0.016200px;}
.ws10_c02118{word-spacing:0.021600px;}
.ws2e_c02118{word-spacing:0.024048px;}
.ws41_c02118{word-spacing:0.030060px;}
.wsf_c02118{word-spacing:0.032400px;}
.ws31_c02118{word-spacing:0.042084px;}
.ws23_c02118{word-spacing:0.043200px;}
.ws34_c02118{word-spacing:0.048096px;}
.ws24_c02118{word-spacing:0.054000px;}
.ws21_c02118{word-spacing:0.059400px;}
.ws37_c02118{word-spacing:0.060120px;}
.ws26_c02118{word-spacing:0.064800px;}
.ws38_c02118{word-spacing:0.066132px;}
.ws1a_c02118{word-spacing:0.070200px;}
.ws46_c02118{word-spacing:0.084168px;}
.ws49_c02118{word-spacing:0.096192px;}
.ws3a_c02118{word-spacing:0.108216px;}
.wsc_c02118{word-spacing:0.124200px;}
.ws6_c02118{word-spacing:0.129600px;}
.ws48_c02118{word-spacing:0.156312px;}
.ws1_c02118{word-spacing:0.156600px;}
.ws47_c02118{word-spacing:0.162324px;}
.wsd_c02118{word-spacing:0.237600px;}
.ws7_c02118{word-spacing:0.248400px;}
.ws12_c02118{word-spacing:0.270000px;}
.ws39_c02118{word-spacing:0.324648px;}
.ws4d_c02118{word-spacing:13.190400px;}
.ws4e_c02118{word-spacing:13.341600px;}
.ws53_c02118{word-spacing:13.608000px;}
.ws54_c02118{word-spacing:13.636800px;}
.ws52_c02118{word-spacing:13.946400px;}
.ws51_c02118{word-spacing:13.960800px;}
._1_c02118{margin-left:-1.339200px;}
._3_c02118{width:1.004400px;}
._0_c02118{width:194.400000px;}
._2_c02118{width:2506.680792px;}
.fc0_c02118{color:rgb(0,0,0);}
.fs1_c02118{font-size:47.880000px;}
.fs3_c02118{font-size:54.000000px;}
.fs2_c02118{font-size:60.120000px;}
.fs0_c02118{font-size:72.000000px;}
.y0_c02118{bottom:0.000000px;}
.y3_c02118{bottom:57.360450px;}
.y2_c02118{bottom:78.060450px;}
.y12_c02118{bottom:128.730450px;}
.y11_c02118{bottom:145.470450px;}
.y25_c02118{bottom:171.480450px;}
.y2d_c02118{bottom:172.380747px;}
.y26_c02118{bottom:204.239838px;}
.y2e_c02118{bottom:205.051458px;}
.y27_c02118{bottom:236.910549px;}
.y2f_c02118{bottom:237.810846px;}
.y28_c02118{bottom:269.669937px;}
.y30_c02118{bottom:270.481557px;}
.y29_c02118{bottom:302.340648px;}
.y31_c02118{bottom:303.240945px;}
.y2a_c02118{bottom:335.100036px;}
.y32_c02118{bottom:335.911656px;}
.y2b_c02118{bottom:367.770747px;}
.y33_c02118{bottom:368.671044px;}
.y2c_c02118{bottom:400.530135px;}
.y34_c02118{bottom:401.341755px;}
.y36_c02118{bottom:443.640450px;}
.y35_c02118{bottom:481.620600px;}
.y10_c02118{bottom:519.870600px;}
.yf_c02118{bottom:545.160450px;}
.ye_c02118{bottom:576.210450px;}
.yd_c02118{bottom:607.260450px;}
.yc_c02118{bottom:638.130450px;}
.yb_c02118{bottom:657.480846px;}
.ya_c02118{bottom:671.251134px;}
.y9_c02118{bottom:682.410765px;}
.y13_c02118{bottom:705.900450px;}
.y1b_c02118{bottom:707.160450px;}
.y14_c02118{bottom:735.870270px;}
.y1c_c02118{bottom:737.130450px;}
.y15_c02118{bottom:765.930270px;}
.y1d_c02118{bottom:767.190900px;}
.y16_c02118{bottom:795.900090px;}
.y1e_c02118{bottom:797.160900px;}
.y17_c02118{bottom:825.869910px;}
.y1f_c02118{bottom:827.130900px;}
.y18_c02118{bottom:855.839730px;}
.y20_c02118{bottom:857.100900px;}
.y19_c02118{bottom:885.809550px;}
.y21_c02118{bottom:887.070900px;}
.y1a_c02118{bottom:915.779370px;}
.y22_c02118{bottom:917.040900px;}
.y24_c02118{bottom:958.440450px;}
.y23_c02118{bottom:993.810450px;}
.y8_c02118{bottom:1032.060450px;}
.y7_c02118{bottom:1057.350450px;}
.y6_c02118{bottom:1088.400450px;}
.y5_c02118{bottom:1119.270450px;}
.y4_c02118{bottom:1139.970450px;}
.y1_c02118{bottom:1193.160450px;}
.h6_c02118{height:39.208008px;}
.h3_c02118{height:42.011895px;}
.h4_c02118{height:42.526230px;}
.h5_c02118{height:43.651582px;}
.h7_c02118{height:52.277344px;}
.h2_c02118{height:63.175781px;}
.h1_c02118{height:63.949219px;}
.h0_c02118{height:1263.000000px;}
.w1_c02118{width:892.500000px;}
.w0_c02118{width:892.830000px;}
.x0_c02118{left:0.000000px;}
.x1_c02118{left:127.620000px;}
.x4_c02118{left:148.950000px;}
.x1f_c02118{left:168.301008px;}
.x22_c02118{left:169.828056px;}
.x23_c02118{left:174.864609px;}
.x1e_c02118{left:182.520891px;}
.x10_c02118{left:185.947200px;}
.x13_c02118{left:187.580700px;}
.xe_c02118{left:193.140000px;}
.x12_c02118{left:194.413050px;}
.x11_c02118{left:198.819450px;}
.x25_c02118{left:200.872521px;}
.x24_c02118{left:209.334411px;}
.xf_c02118{left:210.513150px;}
.x21_c02118{left:216.628470px;}
.x20_c02118{left:223.740666px;}
.x5_c02118{left:293.850000px;}
.x14_c02118{left:296.730000px;}
.x3_c02118{left:340.650000px;}
.x2_c02118{left:437.580000px;}
.x26_c02118{left:477.540000px;}
.x15_c02118{left:489.510000px;}
.x16_c02118{left:525.510000px;}
.x17_c02118{left:533.609667px;}
.x18_c02118{left:547.380153px;}
.x19_c02118{left:548.549487px;}
.x1a_c02118{left:612.989109px;}
.x7_c02118{left:643.770000px;}
.x1b_c02118{left:665.909739px;}
.x1c_c02118{left:675.180243px;}
.x8_c02118{left:676.260351px;}
.x9_c02118{left:677.429685px;}
.xa_c02118{left:679.860036px;}
.xb_c02118{left:692.279325px;}
.xc_c02118{left:695.788830px;}
.xd_c02118{left:698.219181px;}
.x1d_c02118{left:714.240207px;}
.x6_c02118{left:765.360000px;}
@media print{
.v0_c02118{vertical-align:0.000000pt;}
.ls47_c02118{letter-spacing:-0.342016pt;}
.ls29_c02118{letter-spacing:-0.288000pt;}
.ls23_c02118{letter-spacing:-0.268800pt;}
.ls26_c02118{letter-spacing:-0.259200pt;}
.ls54_c02118{letter-spacing:-0.197728pt;}
.ls55_c02118{letter-spacing:-0.192384pt;}
.ls20_c02118{letter-spacing:-0.187200pt;}
.ls22_c02118{letter-spacing:-0.163200pt;}
.ls25_c02118{letter-spacing:-0.158400pt;}
.ls48_c02118{letter-spacing:-0.149632pt;}
.ls56_c02118{letter-spacing:-0.138944pt;}
.ls53_c02118{letter-spacing:-0.128256pt;}
.ls36_c02118{letter-spacing:-0.121600pt;}
.ls46_c02118{letter-spacing:-0.112224pt;}
.ls2c_c02118{letter-spacing:-0.110400pt;}
.ls45_c02118{letter-spacing:-0.106880pt;}
.ls37_c02118{letter-spacing:-0.102400pt;}
.ls31_c02118{letter-spacing:-0.100800pt;}
.ls42_c02118{letter-spacing:-0.096192pt;}
.ls34_c02118{letter-spacing:-0.096000pt;}
.ls40_c02118{letter-spacing:-0.090848pt;}
.ls33_c02118{letter-spacing:-0.086400pt;}
.ls1f_c02118{letter-spacing:-0.080864pt;}
.ls4e_c02118{letter-spacing:-0.080160pt;}
.ls27_c02118{letter-spacing:-0.076800pt;}
.ls3f_c02118{letter-spacing:-0.074816pt;}
.ls28_c02118{letter-spacing:-0.067200pt;}
.ls51_c02118{letter-spacing:-0.064128pt;}
.ls2a_c02118{letter-spacing:-0.062400pt;}
.ls41_c02118{letter-spacing:-0.058784pt;}
.ls44_c02118{letter-spacing:-0.053440pt;}
.ls32_c02118{letter-spacing:-0.052800pt;}
.ls4f_c02118{letter-spacing:-0.048096pt;}
.ls2b_c02118{letter-spacing:-0.048000pt;}
.ls39_c02118{letter-spacing:-0.038400pt;}
.ls3d_c02118{letter-spacing:-0.032064pt;}
.ls57_c02118{letter-spacing:-0.032000pt;}
.ls30_c02118{letter-spacing:-0.028800pt;}
.ls3e_c02118{letter-spacing:-0.026720pt;}
.ls24_c02118{letter-spacing:-0.024000pt;}
.ls4b_c02118{letter-spacing:-0.021376pt;}
.ls1e_c02118{letter-spacing:-0.019200pt;}
.ls49_c02118{letter-spacing:-0.016032pt;}
.ls1b_c02118{letter-spacing:-0.012800pt;}
.ls4c_c02118{letter-spacing:-0.010688pt;}
.ls2d_c02118{letter-spacing:-0.009600pt;}
.ls1d_c02118{letter-spacing:-0.006400pt;}
.ls4a_c02118{letter-spacing:-0.005344pt;}
.ls1c_c02118{letter-spacing:0.000000pt;}
.ls3a_c02118{letter-spacing:0.006400pt;}
.ls8_c02118{letter-spacing:0.009600pt;}
.ls5_c02118{letter-spacing:0.012800pt;}
.ls6_c02118{letter-spacing:0.014400pt;}
.ls2_c02118{letter-spacing:0.019200pt;}
.ls16_c02118{letter-spacing:0.021376pt;}
.lsb_c02118{letter-spacing:0.024000pt;}
.ls3b_c02118{letter-spacing:0.032000pt;}
.ls18_c02118{letter-spacing:0.032064pt;}
.ls7_c02118{letter-spacing:0.033600pt;}
.ls4d_c02118{letter-spacing:0.037408pt;}
.ls4_c02118{letter-spacing:0.038400pt;}
.lsf_c02118{letter-spacing:0.043200pt;}
.ls38_c02118{letter-spacing:0.044800pt;}
.lse_c02118{letter-spacing:0.048000pt;}
.ls19_c02118{letter-spacing:0.048096pt;}
.ls1_c02118{letter-spacing:0.051200pt;}
.ls17_c02118{letter-spacing:0.053440pt;}
.ls0_c02118{letter-spacing:0.064000pt;}
.ls50_c02118{letter-spacing:0.064128pt;}
.ls3_c02118{letter-spacing:0.070400pt;}
.lsd_c02118{letter-spacing:0.076800pt;}
.ls14_c02118{letter-spacing:0.080160pt;}
.lsc_c02118{letter-spacing:0.086400pt;}
.ls15_c02118{letter-spacing:0.090848pt;}
.lsa_c02118{letter-spacing:0.096000pt;}
.ls3c_c02118{letter-spacing:0.112224pt;}
.ls1a_c02118{letter-spacing:0.115584pt;}
.ls43_c02118{letter-spacing:0.122912pt;}
.ls35_c02118{letter-spacing:0.139200pt;}
.ls9_c02118{letter-spacing:0.148800pt;}
.ls10_c02118{letter-spacing:0.153600pt;}
.ls11_c02118{letter-spacing:0.158400pt;}
.ls2f_c02118{letter-spacing:0.163200pt;}
.ls21_c02118{letter-spacing:0.172800pt;}
.ls52_c02118{letter-spacing:0.187040pt;}
.ls2e_c02118{letter-spacing:0.201600pt;}
.ls13_c02118{letter-spacing:0.256000pt;}
.ls12_c02118{letter-spacing:0.576000pt;}
.ws28_c02118{word-spacing:-64.000000pt;}
.ws2f_c02118{word-spacing:-53.440000pt;}
.ws2_c02118{word-spacing:-48.000000pt;}
.ws1c_c02118{word-spacing:-0.249600pt;}
.ws44_c02118{word-spacing:-0.240480pt;}
.ws3_c02118{word-spacing:-0.220800pt;}
.ws1d_c02118{word-spacing:-0.211200pt;}
.ws15_c02118{word-spacing:-0.206400pt;}
.ws17_c02118{word-spacing:-0.201600pt;}
.ws5_c02118{word-spacing:-0.196800pt;}
.ws25_c02118{word-spacing:-0.187200pt;}
.ws36_c02118{word-spacing:-0.176352pt;}
.ws30_c02118{word-spacing:-0.144288pt;}
.wsa_c02118{word-spacing:-0.144000pt;}
.ws13_c02118{word-spacing:-0.134400pt;}
.ws50_c02118{word-spacing:-0.128000pt;}
.ws14_c02118{word-spacing:-0.124800pt;}
.ws43_c02118{word-spacing:-0.117568pt;}
.ws29_c02118{word-spacing:-0.108800pt;}
.ws35_c02118{word-spacing:-0.106880pt;}
.ws4f_c02118{word-spacing:-0.102400pt;}
.ws45_c02118{word-spacing:-0.101536pt;}
.ws19_c02118{word-spacing:-0.096000pt;}
.ws1e_c02118{word-spacing:-0.091200pt;}
.ws3f_c02118{word-spacing:-0.090848pt;}
.ws55_c02118{word-spacing:-0.089600pt;}
.ws11_c02118{word-spacing:-0.086400pt;}
.ws40_c02118{word-spacing:-0.085504pt;}
.ws32_c02118{word-spacing:-0.074816pt;}
.wse_c02118{word-spacing:-0.072000pt;}
.ws4_c02118{word-spacing:-0.067200pt;}
.ws27_c02118{word-spacing:-0.064000pt;}
.ws0_c02118{word-spacing:-0.062400pt;}
.ws9_c02118{word-spacing:-0.057600pt;}
.ws3b_c02118{word-spacing:-0.053440pt;}
.ws2a_c02118{word-spacing:-0.051200pt;}
.ws3d_c02118{word-spacing:-0.048096pt;}
.ws20_c02118{word-spacing:-0.048000pt;}
.ws3e_c02118{word-spacing:-0.042752pt;}
.ws1b_c02118{word-spacing:-0.038400pt;}
.ws3c_c02118{word-spacing:-0.037408pt;}
.ws4a_c02118{word-spacing:-0.032000pt;}
.wsb_c02118{word-spacing:-0.028800pt;}
.ws2d_c02118{word-spacing:-0.026720pt;}
.ws2b_c02118{word-spacing:-0.025600pt;}
.ws8_c02118{word-spacing:-0.024000pt;}
.ws2c_c02118{word-spacing:-0.021376pt;}
.ws1f_c02118{word-spacing:-0.019200pt;}
.ws4c_c02118{word-spacing:-0.012800pt;}
.ws42_c02118{word-spacing:-0.005344pt;}
.ws18_c02118{word-spacing:0.000000pt;}
.ws22_c02118{word-spacing:0.004800pt;}
.ws33_c02118{word-spacing:0.005344pt;}
.ws4b_c02118{word-spacing:0.012800pt;}
.ws16_c02118{word-spacing:0.014400pt;}
.ws10_c02118{word-spacing:0.019200pt;}
.ws2e_c02118{word-spacing:0.021376pt;}
.ws41_c02118{word-spacing:0.026720pt;}
.wsf_c02118{word-spacing:0.028800pt;}
.ws31_c02118{word-spacing:0.037408pt;}
.ws23_c02118{word-spacing:0.038400pt;}
.ws34_c02118{word-spacing:0.042752pt;}
.ws24_c02118{word-spacing:0.048000pt;}
.ws21_c02118{word-spacing:0.052800pt;}
.ws37_c02118{word-spacing:0.053440pt;}
.ws26_c02118{word-spacing:0.057600pt;}
.ws38_c02118{word-spacing:0.058784pt;}
.ws1a_c02118{word-spacing:0.062400pt;}
.ws46_c02118{word-spacing:0.074816pt;}
.ws49_c02118{word-spacing:0.085504pt;}
.ws3a_c02118{word-spacing:0.096192pt;}
.wsc_c02118{word-spacing:0.110400pt;}
.ws6_c02118{word-spacing:0.115200pt;}
.ws48_c02118{word-spacing:0.138944pt;}
.ws1_c02118{word-spacing:0.139200pt;}
.ws47_c02118{word-spacing:0.144288pt;}
.wsd_c02118{word-spacing:0.211200pt;}
.ws7_c02118{word-spacing:0.220800pt;}
.ws12_c02118{word-spacing:0.240000pt;}
.ws39_c02118{word-spacing:0.288576pt;}
.ws4d_c02118{word-spacing:11.724800pt;}
.ws4e_c02118{word-spacing:11.859200pt;}
.ws53_c02118{word-spacing:12.096000pt;}
.ws54_c02118{word-spacing:12.121600pt;}
.ws52_c02118{word-spacing:12.396800pt;}
.ws51_c02118{word-spacing:12.409600pt;}
._1_c02118{margin-left:-1.190400pt;}
._3_c02118{width:0.892800pt;}
._0_c02118{width:172.800000pt;}
._2_c02118{width:2228.160704pt;}
.fs1_c02118{font-size:42.560000pt;}
.fs3_c02118{font-size:48.000000pt;}
.fs2_c02118{font-size:53.440000pt;}
.fs0_c02118{font-size:64.000000pt;}
.y0_c02118{bottom:0.000000pt;}
.y3_c02118{bottom:50.987067pt;}
.y2_c02118{bottom:69.387067pt;}
.y12_c02118{bottom:114.427067pt;}
.y11_c02118{bottom:129.307067pt;}
.y25_c02118{bottom:152.427067pt;}
.y2d_c02118{bottom:153.227331pt;}
.y26_c02118{bottom:181.546523pt;}
.y2e_c02118{bottom:182.267963pt;}
.y27_c02118{bottom:210.587155pt;}
.y2f_c02118{bottom:211.387419pt;}
.y28_c02118{bottom:239.706611pt;}
.y30_c02118{bottom:240.428051pt;}
.y29_c02118{bottom:268.747243pt;}
.y31_c02118{bottom:269.547507pt;}
.y2a_c02118{bottom:297.866699pt;}
.y32_c02118{bottom:298.588139pt;}
.y2b_c02118{bottom:326.907331pt;}
.y33_c02118{bottom:327.707595pt;}
.y2c_c02118{bottom:356.026787pt;}
.y34_c02118{bottom:356.748227pt;}
.y36_c02118{bottom:394.347067pt;}
.y35_c02118{bottom:428.107200pt;}
.y10_c02118{bottom:462.107200pt;}
.yf_c02118{bottom:484.587067pt;}
.ye_c02118{bottom:512.187067pt;}
.yd_c02118{bottom:539.787067pt;}
.yc_c02118{bottom:567.227067pt;}
.yb_c02118{bottom:584.427419pt;}
.ya_c02118{bottom:596.667675pt;}
.y9_c02118{bottom:606.587347pt;}
.y13_c02118{bottom:627.467067pt;}
.y1b_c02118{bottom:628.587067pt;}
.y14_c02118{bottom:654.106907pt;}
.y1c_c02118{bottom:655.227067pt;}
.y15_c02118{bottom:680.826907pt;}
.y1d_c02118{bottom:681.947467pt;}
.y16_c02118{bottom:707.466747pt;}
.y1e_c02118{bottom:708.587467pt;}
.y17_c02118{bottom:734.106587pt;}
.y1f_c02118{bottom:735.227467pt;}
.y18_c02118{bottom:760.746427pt;}
.y20_c02118{bottom:761.867467pt;}
.y19_c02118{bottom:787.386267pt;}
.y21_c02118{bottom:788.507467pt;}
.y1a_c02118{bottom:814.026107pt;}
.y22_c02118{bottom:815.147467pt;}
.y24_c02118{bottom:851.947067pt;}
.y23_c02118{bottom:883.387067pt;}
.y8_c02118{bottom:917.387067pt;}
.y7_c02118{bottom:939.867067pt;}
.y6_c02118{bottom:967.467067pt;}
.y5_c02118{bottom:994.907067pt;}
.y4_c02118{bottom:1013.307067pt;}
.y1_c02118{bottom:1060.587067pt;}
.h6_c02118{height:34.851562pt;}
.h3_c02118{height:37.343906pt;}
.h4_c02118{height:37.801094pt;}
.h5_c02118{height:38.801406pt;}
.h7_c02118{height:46.468750pt;}
.h2_c02118{height:56.156250pt;}
.h1_c02118{height:56.843750pt;}
.h0_c02118{height:1122.666667pt;}
.w1_c02118{width:793.333333pt;}
.w0_c02118{width:793.626667pt;}
.x0_c02118{left:0.000000pt;}
.x1_c02118{left:113.440000pt;}
.x4_c02118{left:132.400000pt;}
.x1f_c02118{left:149.600896pt;}
.x22_c02118{left:150.958272pt;}
.x23_c02118{left:155.435208pt;}
.x1e_c02118{left:162.240792pt;}
.x10_c02118{left:165.286400pt;}
.x13_c02118{left:166.738400pt;}
.xe_c02118{left:171.680000pt;}
.x12_c02118{left:172.811600pt;}
.x11_c02118{left:176.728400pt;}
.x25_c02118{left:178.553352pt;}
.x24_c02118{left:186.075032pt;}
.xf_c02118{left:187.122800pt;}
.x21_c02118{left:192.558640pt;}
.x20_c02118{left:198.880592pt;}
.x5_c02118{left:261.200000pt;}
.x14_c02118{left:263.760000pt;}
.x3_c02118{left:302.800000pt;}
.x2_c02118{left:388.960000pt;}
.x26_c02118{left:424.480000pt;}
.x15_c02118{left:435.120000pt;}
.x16_c02118{left:467.120000pt;}
.x17_c02118{left:474.319704pt;}
.x18_c02118{left:486.560136pt;}
.x19_c02118{left:487.599544pt;}
.x1a_c02118{left:544.879208pt;}
.x7_c02118{left:572.240000pt;}
.x1b_c02118{left:591.919768pt;}
.x1c_c02118{left:600.160216pt;}
.x8_c02118{left:601.120312pt;}
.x9_c02118{left:602.159720pt;}
.xa_c02118{left:604.320032pt;}
.xb_c02118{left:615.359400pt;}
.xc_c02118{left:618.478960pt;}
.xd_c02118{left:620.639272pt;}
.x1d_c02118{left:634.880184pt;}
.x6_c02118{left:680.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_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_b1656ba175dd0843caa32607.woff2')format("woff");}.ff1_c02119{font-family:ff1_c02119;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02119;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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;}
.v1_c02119{vertical-align:1.440000px;}
.v2_c02119{vertical-align:61.920600px;}
.ls46_c02119{letter-spacing:-0.270540px;}
.ls45_c02119{letter-spacing:-0.145800px;}
.ls43_c02119{letter-spacing:-0.078156px;}
.ls40_c02119{letter-spacing:-0.075600px;}
.ls3e_c02119{letter-spacing:-0.064800px;}
.ls41_c02119{letter-spacing:-0.048600px;}
.ls3b_c02119{letter-spacing:-0.014400px;}
.ls42_c02119{letter-spacing:-0.010800px;}
.ls3f_c02119{letter-spacing:-0.007200px;}
.ls44_c02119{letter-spacing:-0.006588px;}
.ls3c_c02119{letter-spacing:0.000000px;}
.ls0_c02119{letter-spacing:0.007200px;}
.ls3d_c02119{letter-spacing:0.014400px;}
.ls2e_c02119{letter-spacing:0.021600px;}
.ls34_c02119{letter-spacing:0.027000px;}
.ls33_c02119{letter-spacing:0.028800px;}
.ls32_c02119{letter-spacing:0.032400px;}
.ls2_c02119{letter-spacing:0.037800px;}
.ls23_c02119{letter-spacing:0.039528px;}
.ls1b_c02119{letter-spacing:0.059292px;}
.lsc_c02119{letter-spacing:0.065880px;}
.ls27_c02119{letter-spacing:0.072468px;}
.ls14_c02119{letter-spacing:0.079056px;}
.ls2f_c02119{letter-spacing:0.086400px;}
.ls4_c02119{letter-spacing:0.092232px;}
.ls16_c02119{letter-spacing:0.098820px;}
.ls1_c02119{letter-spacing:0.113400px;}
.ls2d_c02119{letter-spacing:0.118800px;}
.ls8_c02119{letter-spacing:0.138348px;}
.ls3_c02119{letter-spacing:0.144288px;}
.lsf_c02119{letter-spacing:0.151524px;}
.ls25_c02119{letter-spacing:0.158112px;}
.ls18_c02119{letter-spacing:0.177876px;}
.ls6_c02119{letter-spacing:0.180000px;}
.ls26_c02119{letter-spacing:64.080000px;}
.ls21_c02119{letter-spacing:66.240000px;}
.ls19_c02119{letter-spacing:66.600000px;}
.ls1a_c02119{letter-spacing:66.960000px;}
.lse_c02119{letter-spacing:99.000000px;}
.ls10_c02119{letter-spacing:99.360000px;}
.ls13_c02119{letter-spacing:99.720000px;}
.ls22_c02119{letter-spacing:117.450000px;}
.ls7_c02119{letter-spacing:132.120000px;}
.ls9_c02119{letter-spacing:132.480000px;}
.ls11_c02119{letter-spacing:132.840000px;}
.ls38_c02119{letter-spacing:133.290000px;}
.ls31_c02119{letter-spacing:150.300000px;}
.ls1d_c02119{letter-spacing:165.240000px;}
.ls35_c02119{letter-spacing:165.600000px;}
.lsb_c02119{letter-spacing:165.960000px;}
.ls1f_c02119{letter-spacing:183.330000px;}
.lsa_c02119{letter-spacing:183.420000px;}
.ls12_c02119{letter-spacing:186.480000px;}
.ls37_c02119{letter-spacing:199.170000px;}
.ls28_c02119{letter-spacing:204.840000px;}
.ls36_c02119{letter-spacing:206.100000px;}
.ls29_c02119{letter-spacing:214.560000px;}
.ls1e_c02119{letter-spacing:214.920000px;}
.ls20_c02119{letter-spacing:215.279400px;}
.ls15_c02119{letter-spacing:234.360000px;}
.ls2b_c02119{letter-spacing:248.400000px;}
.ls17_c02119{letter-spacing:252.360000px;}
.ls24_c02119{letter-spacing:268.920000px;}
.ls1c_c02119{letter-spacing:281.520000px;}
.lsd_c02119{letter-spacing:296.640000px;}
.ls5_c02119{letter-spacing:314.640000px;}
.ls30_c02119{letter-spacing:347.760000px;}
.ls2c_c02119{letter-spacing:394.200000px;}
.ls3a_c02119{letter-spacing:410.040000px;}
.ls2a_c02119{letter-spacing:414.720000px;}
.ls39_c02119{letter-spacing:430.560000px;}
.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;}
}
.ws1d_c02119{word-spacing:-17.992800px;}
.ws4_c02119{word-spacing:-16.647876px;}
.ws12_c02119{word-spacing:-16.628112px;}
.ws5_c02119{word-spacing:-16.621524px;}
.ws1_c02119{word-spacing:-16.608348px;}
.wsb_c02119{word-spacing:-16.568820px;}
.ws3_c02119{word-spacing:-16.562232px;}
.ws13_c02119{word-spacing:-16.542468px;}
.wse_c02119{word-spacing:-16.529292px;}
.ws11_c02119{word-spacing:-16.509528px;}
.ws0_c02119{word-spacing:-13.537800px;}
.ws18_c02119{word-spacing:-13.521600px;}
.ws42_c02119{word-spacing:-0.205200px;}
.ws2f_c02119{word-spacing:-0.113400px;}
.ws2d_c02119{word-spacing:-0.064800px;}
.ws35_c02119{word-spacing:-0.054108px;}
.ws41_c02119{word-spacing:-0.028800px;}
.ws3f_c02119{word-spacing:-0.021600px;}
.ws2e_c02119{word-spacing:-0.014400px;}
.ws2c_c02119{word-spacing:-0.007200px;}
.ws2b_c02119{word-spacing:0.000000px;}
.ws31_c02119{word-spacing:0.007200px;}
.ws37_c02119{word-spacing:0.013176px;}
.ws2a_c02119{word-spacing:0.014400px;}
.ws36_c02119{word-spacing:0.026352px;}
.ws38_c02119{word-spacing:0.052704px;}
.ws3a_c02119{word-spacing:0.059400px;}
.ws30_c02119{word-spacing:0.064800px;}
.ws3e_c02119{word-spacing:0.091800px;}
.ws39_c02119{word-spacing:0.098820px;}
.ws40_c02119{word-spacing:0.145800px;}
.ws3b_c02119{word-spacing:0.156600px;}
.ws3d_c02119{word-spacing:0.178200px;}
.ws34_c02119{word-spacing:0.189000px;}
.ws33_c02119{word-spacing:0.226800px;}
.ws32_c02119{word-spacing:0.253800px;}
.ws3c_c02119{word-spacing:0.324000px;}
.ws14_c02119{word-spacing:65.089440px;}
.ws10_c02119{word-spacing:67.238496px;}
.wsd_c02119{word-spacing:67.642380px;}
.ws28_c02119{word-spacing:87.769440px;}
.ws26_c02119{word-spacing:89.918496px;}
.ws7_c02119{word-spacing:99.996372px;}
.wsc_c02119{word-spacing:99.998496px;}
.ws8_c02119{word-spacing:100.402380px;}
.ws1b_c02119{word-spacing:100.426608px;}
.ws15_c02119{word-spacing:100.933020px;}
.ws27_c02119{word-spacing:116.242380px;}
.ws21_c02119{word-spacing:122.676372px;}
.ws23_c02119{word-spacing:122.678496px;}
.ws24_c02119{word-spacing:132.442380px;}
.ws9_c02119{word-spacing:133.116372px;}
.ws19_c02119{word-spacing:133.546608px;}
.ws1c_c02119{word-spacing:134.053020px;}
.ws6_c02119{word-spacing:150.082380px;}
.wsa_c02119{word-spacing:150.106608px;}
.ws22_c02119{word-spacing:165.202380px;}
.ws29_c02119{word-spacing:165.733020px;}
.ws20_c02119{word-spacing:165.922380px;}
.ws1a_c02119{word-spacing:182.866608px;}
.ws1e_c02119{word-spacing:198.803304px;}
.ws17_c02119{word-spacing:215.833572px;}
.wsf_c02119{word-spacing:216.083304px;}
.ws16_c02119{word-spacing:216.270000px;}
.ws1f_c02119{word-spacing:231.563304px;}
.ws25_c02119{word-spacing:280.883304px;}
.ws2_c02119{word-spacing:881.266608px;}
._2_c02119{margin-left:-1.026000px;}
._1_c02119{width:1.069200px;}
._6_c02119{width:68.640840px;}
._e_c02119{width:76.560840px;}
._5_c02119{width:104.490000px;}
._4_c02119{width:121.795776px;}
._7_c02119{width:133.193916px;}
._f_c02119{width:141.235776px;}
._10_c02119{width:148.050000px;}
._0_c02119{width:194.400000px;}
._b_c02119{width:214.319736px;}
._8_c02119{width:231.937812px;}
._3_c02119{width:270.556992px;}
._d_c02119{width:282.945600px;}
._11_c02119{width:296.737812px;}
._a_c02119{width:644.954832px;}
._9_c02119{width:665.158248px;}
._c_c02119{width:1378.800000px;}
.fc0_c02119{color:rgb(0,0,0);}
.fs5_c02119{font-size:11.880000px;}
.fs4_c02119{font-size:47.880000px;}
.fs1_c02119{font-size:54.000000px;}
.fs2_c02119{font-size:60.120000px;}
.fs3_c02119{font-size:65.880000px;}
.fs0_c02119{font-size:72.000000px;}
.y0_c02119{bottom:0.000000px;}
.y3_c02119{bottom:57.360450px;}
.y2_c02119{bottom:78.060450px;}
.y3e_c02119{bottom:125.580450px;}
.y3d_c02119{bottom:132.420450px;}
.y3c_c02119{bottom:153.120600px;}
.y3b_c02119{bottom:173.820450px;}
.y3a_c02119{bottom:192.720450px;}
.y39_c02119{bottom:212.070450px;}
.y38_c02119{bottom:232.770450px;}
.y37_c02119{bottom:253.470450px;}
.y36_c02119{bottom:272.460450px;}
.y35_c02119{bottom:291.450450px;}
.y34_c02119{bottom:310.440450px;}
.y33_c02119{bottom:329.430450px;}
.y32_c02119{bottom:347.970450px;}
.y30_c02119{bottom:364.980450px;}
.y2f_c02119{bottom:380.460600px;}
.y2e_c02119{bottom:381.450450px;}
.y31_c02119{bottom:396.930600px;}
.y2d_c02119{bottom:418.980600px;}
.y2c_c02119{bottom:434.461050px;}
.y2b_c02119{bottom:450.030600px;}
.y2a_c02119{bottom:466.590600px;}
.y29_c02119{bottom:487.290600px;}
.y28_c02119{bottom:507.990450px;}
.y27_c02119{bottom:526.890450px;}
.y26_c02119{bottom:546.240450px;}
.y25_c02119{bottom:566.940450px;}
.y24_c02119{bottom:587.640450px;}
.y23_c02119{bottom:606.630450px;}
.y22_c02119{bottom:625.620450px;}
.y21_c02119{bottom:644.610450px;}
.y20_c02119{bottom:663.600450px;}
.y1f_c02119{bottom:683.850450px;}
.y1e_c02119{bottom:701.130450px;}
.y1d_c02119{bottom:718.140450px;}
.y1a_c02119{bottom:725.970450px;}
.y1c_c02119{bottom:733.620450px;}
.y1b_c02119{bottom:750.090450px;}
.y19_c02119{bottom:771.690099px;}
.y18_c02119{bottom:785.550162px;}
.y17_c02119{bottom:799.320450px;}
.y16_c02119{bottom:814.530450px;}
.y15_c02119{bottom:835.230450px;}
.y14_c02119{bottom:855.930600px;}
.y13_c02119{bottom:874.920450px;}
.y12_c02119{bottom:894.270450px;}
.y11_c02119{bottom:914.970450px;}
.y10_c02119{bottom:935.670450px;}
.yf_c02119{bottom:954.660450px;}
.ye_c02119{bottom:973.560450px;}
.yd_c02119{bottom:992.550450px;}
.yc_c02119{bottom:1011.540450px;}
.yb_c02119{bottom:1031.880450px;}
.ya_c02119{bottom:1048.800450px;}
.y9_c02119{bottom:1064.370450px;}
.y6_c02119{bottom:1073.010450px;}
.y8_c02119{bottom:1079.850450px;}
.y7_c02119{bottom:1096.320450px;}
.y5_c02119{bottom:1117.020450px;}
.y4_c02119{bottom:1139.970450px;}
.y1_c02119{bottom:1193.160450px;}
.ha_c02119{height:10.551621px;}
.h7_c02119{height:42.526230px;}
.h3_c02119{height:47.961914px;}
.h4_c02119{height:53.397598px;}
.h2_c02119{height:63.175781px;}
.h1_c02119{height:63.949219px;}
.h8_c02119{height:64.975181px;}
.h6_c02119{height:64.975781px;}
.h5_c02119{height:64.976381px;}
.h9_c02119{height:125.869819px;}
.h0_c02119{height:1263.000000px;}
.w1_c02119{width:892.500000px;}
.w0_c02119{width:892.830000px;}
.x0_c02119{left:0.000000px;}
.x1_c02119{left:127.620000px;}
.x3_c02119{left:135.630000px;}
.xc_c02119{left:239.580000px;}
.x14_c02119{left:246.870000px;}
.xb_c02119{left:248.130000px;}
.x4_c02119{left:252.270000px;}
.x6_c02119{left:258.480000px;}
.x5_c02119{left:260.550000px;}
.xd_c02119{left:265.500000px;}
.x7_c02119{left:299.340000px;}
.x8_c02119{left:414.360000px;}
.x10_c02119{left:416.970000px;}
.x15_c02119{left:421.110000px;}
.xf_c02119{left:424.890000px;}
.x16_c02119{left:426.960000px;}
.xe_c02119{left:429.390000px;}
.x2_c02119{left:437.580000px;}
.x17_c02119{left:442.980000px;}
.x9_c02119{left:444.510000px;}
.x11_c02119{left:592.020000px;}
.x12_c02119{left:601.560000px;}
.xa_c02119{left:606.600000px;}
.x13_c02119{left:645.840000px;}
@media print{
.v0_c02119{vertical-align:0.000000pt;}
.v1_c02119{vertical-align:1.280000pt;}
.v2_c02119{vertical-align:55.040533pt;}
.ls46_c02119{letter-spacing:-0.240480pt;}
.ls45_c02119{letter-spacing:-0.129600pt;}
.ls43_c02119{letter-spacing:-0.069472pt;}
.ls40_c02119{letter-spacing:-0.067200pt;}
.ls3e_c02119{letter-spacing:-0.057600pt;}
.ls41_c02119{letter-spacing:-0.043200pt;}
.ls3b_c02119{letter-spacing:-0.012800pt;}
.ls42_c02119{letter-spacing:-0.009600pt;}
.ls3f_c02119{letter-spacing:-0.006400pt;}
.ls44_c02119{letter-spacing:-0.005856pt;}
.ls3c_c02119{letter-spacing:0.000000pt;}
.ls0_c02119{letter-spacing:0.006400pt;}
.ls3d_c02119{letter-spacing:0.012800pt;}
.ls2e_c02119{letter-spacing:0.019200pt;}
.ls34_c02119{letter-spacing:0.024000pt;}
.ls33_c02119{letter-spacing:0.025600pt;}
.ls32_c02119{letter-spacing:0.028800pt;}
.ls2_c02119{letter-spacing:0.033600pt;}
.ls23_c02119{letter-spacing:0.035136pt;}
.ls1b_c02119{letter-spacing:0.052704pt;}
.lsc_c02119{letter-spacing:0.058560pt;}
.ls27_c02119{letter-spacing:0.064416pt;}
.ls14_c02119{letter-spacing:0.070272pt;}
.ls2f_c02119{letter-spacing:0.076800pt;}
.ls4_c02119{letter-spacing:0.081984pt;}
.ls16_c02119{letter-spacing:0.087840pt;}
.ls1_c02119{letter-spacing:0.100800pt;}
.ls2d_c02119{letter-spacing:0.105600pt;}
.ls8_c02119{letter-spacing:0.122976pt;}
.ls3_c02119{letter-spacing:0.128256pt;}
.lsf_c02119{letter-spacing:0.134688pt;}
.ls25_c02119{letter-spacing:0.140544pt;}
.ls18_c02119{letter-spacing:0.158112pt;}
.ls6_c02119{letter-spacing:0.160000pt;}
.ls26_c02119{letter-spacing:56.960000pt;}
.ls21_c02119{letter-spacing:58.880000pt;}
.ls19_c02119{letter-spacing:59.200000pt;}
.ls1a_c02119{letter-spacing:59.520000pt;}
.lse_c02119{letter-spacing:88.000000pt;}
.ls10_c02119{letter-spacing:88.320000pt;}
.ls13_c02119{letter-spacing:88.640000pt;}
.ls22_c02119{letter-spacing:104.400000pt;}
.ls7_c02119{letter-spacing:117.440000pt;}
.ls9_c02119{letter-spacing:117.760000pt;}
.ls11_c02119{letter-spacing:118.080000pt;}
.ls38_c02119{letter-spacing:118.480000pt;}
.ls31_c02119{letter-spacing:133.600000pt;}
.ls1d_c02119{letter-spacing:146.880000pt;}
.ls35_c02119{letter-spacing:147.200000pt;}
.lsb_c02119{letter-spacing:147.520000pt;}
.ls1f_c02119{letter-spacing:162.960000pt;}
.lsa_c02119{letter-spacing:163.040000pt;}
.ls12_c02119{letter-spacing:165.760000pt;}
.ls37_c02119{letter-spacing:177.040000pt;}
.ls28_c02119{letter-spacing:182.080000pt;}
.ls36_c02119{letter-spacing:183.200000pt;}
.ls29_c02119{letter-spacing:190.720000pt;}
.ls1e_c02119{letter-spacing:191.040000pt;}
.ls20_c02119{letter-spacing:191.359467pt;}
.ls15_c02119{letter-spacing:208.320000pt;}
.ls2b_c02119{letter-spacing:220.800000pt;}
.ls17_c02119{letter-spacing:224.320000pt;}
.ls24_c02119{letter-spacing:239.040000pt;}
.ls1c_c02119{letter-spacing:250.240000pt;}
.lsd_c02119{letter-spacing:263.680000pt;}
.ls5_c02119{letter-spacing:279.680000pt;}
.ls30_c02119{letter-spacing:309.120000pt;}
.ls2c_c02119{letter-spacing:350.400000pt;}
.ls3a_c02119{letter-spacing:364.480000pt;}
.ls2a_c02119{letter-spacing:368.640000pt;}
.ls39_c02119{letter-spacing:382.720000pt;}
.ws1d_c02119{word-spacing:-15.993600pt;}
.ws4_c02119{word-spacing:-14.798112pt;}
.ws12_c02119{word-spacing:-14.780544pt;}
.ws5_c02119{word-spacing:-14.774688pt;}
.ws1_c02119{word-spacing:-14.762976pt;}
.wsb_c02119{word-spacing:-14.727840pt;}
.ws3_c02119{word-spacing:-14.721984pt;}
.ws13_c02119{word-spacing:-14.704416pt;}
.wse_c02119{word-spacing:-14.692704pt;}
.ws11_c02119{word-spacing:-14.675136pt;}
.ws0_c02119{word-spacing:-12.033600pt;}
.ws18_c02119{word-spacing:-12.019200pt;}
.ws42_c02119{word-spacing:-0.182400pt;}
.ws2f_c02119{word-spacing:-0.100800pt;}
.ws2d_c02119{word-spacing:-0.057600pt;}
.ws35_c02119{word-spacing:-0.048096pt;}
.ws41_c02119{word-spacing:-0.025600pt;}
.ws3f_c02119{word-spacing:-0.019200pt;}
.ws2e_c02119{word-spacing:-0.012800pt;}
.ws2c_c02119{word-spacing:-0.006400pt;}
.ws2b_c02119{word-spacing:0.000000pt;}
.ws31_c02119{word-spacing:0.006400pt;}
.ws37_c02119{word-spacing:0.011712pt;}
.ws2a_c02119{word-spacing:0.012800pt;}
.ws36_c02119{word-spacing:0.023424pt;}
.ws38_c02119{word-spacing:0.046848pt;}
.ws3a_c02119{word-spacing:0.052800pt;}
.ws30_c02119{word-spacing:0.057600pt;}
.ws3e_c02119{word-spacing:0.081600pt;}
.ws39_c02119{word-spacing:0.087840pt;}
.ws40_c02119{word-spacing:0.129600pt;}
.ws3b_c02119{word-spacing:0.139200pt;}
.ws3d_c02119{word-spacing:0.158400pt;}
.ws34_c02119{word-spacing:0.168000pt;}
.ws33_c02119{word-spacing:0.201600pt;}
.ws32_c02119{word-spacing:0.225600pt;}
.ws3c_c02119{word-spacing:0.288000pt;}
.ws14_c02119{word-spacing:57.857280pt;}
.ws10_c02119{word-spacing:59.767552pt;}
.wsd_c02119{word-spacing:60.126560pt;}
.ws28_c02119{word-spacing:78.017280pt;}
.ws26_c02119{word-spacing:79.927552pt;}
.ws7_c02119{word-spacing:88.885664pt;}
.wsc_c02119{word-spacing:88.887552pt;}
.ws8_c02119{word-spacing:89.246560pt;}
.ws1b_c02119{word-spacing:89.268096pt;}
.ws15_c02119{word-spacing:89.718240pt;}
.ws27_c02119{word-spacing:103.326560pt;}
.ws21_c02119{word-spacing:109.045664pt;}
.ws23_c02119{word-spacing:109.047552pt;}
.ws24_c02119{word-spacing:117.726560pt;}
.ws9_c02119{word-spacing:118.325664pt;}
.ws19_c02119{word-spacing:118.708096pt;}
.ws1c_c02119{word-spacing:119.158240pt;}
.ws6_c02119{word-spacing:133.406560pt;}
.wsa_c02119{word-spacing:133.428096pt;}
.ws22_c02119{word-spacing:146.846560pt;}
.ws29_c02119{word-spacing:147.318240pt;}
.ws20_c02119{word-spacing:147.486560pt;}
.ws1a_c02119{word-spacing:162.548096pt;}
.ws1e_c02119{word-spacing:176.714048pt;}
.ws17_c02119{word-spacing:191.852064pt;}
.wsf_c02119{word-spacing:192.074048pt;}
.ws16_c02119{word-spacing:192.240000pt;}
.ws1f_c02119{word-spacing:205.834048pt;}
.ws25_c02119{word-spacing:249.674048pt;}
.ws2_c02119{word-spacing:783.348096pt;}
._2_c02119{margin-left:-0.912000pt;}
._1_c02119{width:0.950400pt;}
._6_c02119{width:61.014080pt;}
._e_c02119{width:68.054080pt;}
._5_c02119{width:92.880000pt;}
._4_c02119{width:108.262912pt;}
._7_c02119{width:118.394592pt;}
._f_c02119{width:125.542912pt;}
._10_c02119{width:131.600000pt;}
._0_c02119{width:172.800000pt;}
._b_c02119{width:190.506432pt;}
._8_c02119{width:206.166944pt;}
._3_c02119{width:240.495104pt;}
._d_c02119{width:251.507200pt;}
._11_c02119{width:263.766944pt;}
._a_c02119{width:573.293184pt;}
._9_c02119{width:591.251776pt;}
._c_c02119{width:1225.600000pt;}
.fs5_c02119{font-size:10.560000pt;}
.fs4_c02119{font-size:42.560000pt;}
.fs1_c02119{font-size:48.000000pt;}
.fs2_c02119{font-size:53.440000pt;}
.fs3_c02119{font-size:58.560000pt;}
.fs0_c02119{font-size:64.000000pt;}
.y0_c02119{bottom:0.000000pt;}
.y3_c02119{bottom:50.987067pt;}
.y2_c02119{bottom:69.387067pt;}
.y3e_c02119{bottom:111.627067pt;}
.y3d_c02119{bottom:117.707067pt;}
.y3c_c02119{bottom:136.107200pt;}
.y3b_c02119{bottom:154.507067pt;}
.y3a_c02119{bottom:171.307067pt;}
.y39_c02119{bottom:188.507067pt;}
.y38_c02119{bottom:206.907067pt;}
.y37_c02119{bottom:225.307067pt;}
.y36_c02119{bottom:242.187067pt;}
.y35_c02119{bottom:259.067067pt;}
.y34_c02119{bottom:275.947067pt;}
.y33_c02119{bottom:292.827067pt;}
.y32_c02119{bottom:309.307067pt;}
.y30_c02119{bottom:324.427067pt;}
.y2f_c02119{bottom:338.187200pt;}
.y2e_c02119{bottom:339.067067pt;}
.y31_c02119{bottom:352.827200pt;}
.y2d_c02119{bottom:372.427200pt;}
.y2c_c02119{bottom:386.187600pt;}
.y2b_c02119{bottom:400.027200pt;}
.y2a_c02119{bottom:414.747200pt;}
.y29_c02119{bottom:433.147200pt;}
.y28_c02119{bottom:451.547067pt;}
.y27_c02119{bottom:468.347067pt;}
.y26_c02119{bottom:485.547067pt;}
.y25_c02119{bottom:503.947067pt;}
.y24_c02119{bottom:522.347067pt;}
.y23_c02119{bottom:539.227067pt;}
.y22_c02119{bottom:556.107067pt;}
.y21_c02119{bottom:572.987067pt;}
.y20_c02119{bottom:589.867067pt;}
.y1f_c02119{bottom:607.867067pt;}
.y1e_c02119{bottom:623.227067pt;}
.y1d_c02119{bottom:638.347067pt;}
.y1a_c02119{bottom:645.307067pt;}
.y1c_c02119{bottom:652.107067pt;}
.y1b_c02119{bottom:666.747067pt;}
.y19_c02119{bottom:685.946755pt;}
.y18_c02119{bottom:698.266811pt;}
.y17_c02119{bottom:710.507067pt;}
.y16_c02119{bottom:724.027067pt;}
.y15_c02119{bottom:742.427067pt;}
.y14_c02119{bottom:760.827200pt;}
.y13_c02119{bottom:777.707067pt;}
.y12_c02119{bottom:794.907067pt;}
.y11_c02119{bottom:813.307067pt;}
.y10_c02119{bottom:831.707067pt;}
.yf_c02119{bottom:848.587067pt;}
.ye_c02119{bottom:865.387067pt;}
.yd_c02119{bottom:882.267067pt;}
.yc_c02119{bottom:899.147067pt;}
.yb_c02119{bottom:917.227067pt;}
.ya_c02119{bottom:932.267067pt;}
.y9_c02119{bottom:946.107067pt;}
.y6_c02119{bottom:953.787067pt;}
.y8_c02119{bottom:959.867067pt;}
.y7_c02119{bottom:974.507067pt;}
.y5_c02119{bottom:992.907067pt;}
.y4_c02119{bottom:1013.307067pt;}
.y1_c02119{bottom:1060.587067pt;}
.ha_c02119{height:9.379219pt;}
.h7_c02119{height:37.801094pt;}
.h3_c02119{height:42.632812pt;}
.h4_c02119{height:47.464531pt;}
.h2_c02119{height:56.156250pt;}
.h1_c02119{height:56.843750pt;}
.h8_c02119{height:57.755717pt;}
.h6_c02119{height:57.756250pt;}
.h5_c02119{height:57.756783pt;}
.h9_c02119{height:111.884283pt;}
.h0_c02119{height:1122.666667pt;}
.w1_c02119{width:793.333333pt;}
.w0_c02119{width:793.626667pt;}
.x0_c02119{left:0.000000pt;}
.x1_c02119{left:113.440000pt;}
.x3_c02119{left:120.560000pt;}
.xc_c02119{left:212.960000pt;}
.x14_c02119{left:219.440000pt;}
.xb_c02119{left:220.560000pt;}
.x4_c02119{left:224.240000pt;}
.x6_c02119{left:229.760000pt;}
.x5_c02119{left:231.600000pt;}
.xd_c02119{left:236.000000pt;}
.x7_c02119{left:266.080000pt;}
.x8_c02119{left:368.320000pt;}
.x10_c02119{left:370.640000pt;}
.x15_c02119{left:374.320000pt;}
.xf_c02119{left:377.680000pt;}
.x16_c02119{left:379.520000pt;}
.xe_c02119{left:381.680000pt;}
.x2_c02119{left:388.960000pt;}
.x17_c02119{left:393.760000pt;}
.x9_c02119{left:395.120000pt;}
.x11_c02119{left:526.240000pt;}
.x12_c02119{left:534.720000pt;}
.xa_c02119{left:539.200000pt;}
.x13_c02119{left:574.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_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_c59e293f74642768ef2b4aa0.woff2')format("woff");}.ff1_c02120{font-family:ff1_c02120;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02120;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02120{vertical-align:-4.320000px;}
.v2_c02120{vertical-align:-2.520000px;}
.v1_c02120{vertical-align:-1.440000px;}
.v0_c02120{vertical-align:0.000000px;}
.v6_c02120{vertical-align:1.440000px;}
.v4_c02120{vertical-align:2.520000px;}
.v5_c02120{vertical-align:3.960000px;}
.v7_c02120{vertical-align:32.040000px;}
.ls33_c02120{letter-spacing:-0.178200px;}
.ls32_c02120{letter-spacing:-0.102600px;}
.ls31_c02120{letter-spacing:-0.086400px;}
.ls29_c02120{letter-spacing:-0.086184px;}
.ls25_c02120{letter-spacing:-0.043200px;}
.ls27_c02120{letter-spacing:-0.019152px;}
.ls30_c02120{letter-spacing:-0.016200px;}
.ls22_c02120{letter-spacing:-0.014400px;}
.ls26_c02120{letter-spacing:-0.010800px;}
.ls2b_c02120{letter-spacing:-0.005400px;}
.ls2d_c02120{letter-spacing:-0.004788px;}
.ls23_c02120{letter-spacing:0.000000px;}
.ls1e_c02120{letter-spacing:0.005400px;}
.ls1_c02120{letter-spacing:0.007200px;}
.ls3_c02120{letter-spacing:0.010800px;}
.ls6_c02120{letter-spacing:0.012636px;}
.ls2_c02120{letter-spacing:0.014400px;}
.ls20_c02120{letter-spacing:0.016200px;}
.ls1c_c02120{letter-spacing:0.019152px;}
.ls19_c02120{letter-spacing:0.021600px;}
.ls1f_c02120{letter-spacing:0.027000px;}
.ls5_c02120{letter-spacing:0.028728px;}
.ls0_c02120{letter-spacing:0.028800px;}
.ls7_c02120{letter-spacing:0.032400px;}
.lsc_c02120{letter-spacing:0.037800px;}
.ls4_c02120{letter-spacing:0.043092px;}
.lsb_c02120{letter-spacing:0.043200px;}
.ls10_c02120{letter-spacing:0.046116px;}
.lsa_c02120{letter-spacing:0.052668px;}
.ls1d_c02120{letter-spacing:0.052704px;}
.ls11_c02120{letter-spacing:0.057456px;}
.ls17_c02120{letter-spacing:0.067032px;}
.ls16_c02120{letter-spacing:0.081396px;}
.ls14_c02120{letter-spacing:0.086184px;}
.ls12_c02120{letter-spacing:0.095760px;}
.ls18_c02120{letter-spacing:0.100548px;}
.lse_c02120{letter-spacing:0.114912px;}
.ls13_c02120{letter-spacing:0.119700px;}
.ls1a_c02120{letter-spacing:0.124488px;}
.ls1b_c02120{letter-spacing:0.134064px;}
.lsf_c02120{letter-spacing:0.138852px;}
.ls24_c02120{letter-spacing:0.151200px;}
.ls8_c02120{letter-spacing:0.158112px;}
.ls28_c02120{letter-spacing:0.167580px;}
.ls2f_c02120{letter-spacing:0.181944px;}
.ls2c_c02120{letter-spacing:0.268128px;}
.ls21_c02120{letter-spacing:112.320000px;}
.ls9_c02120{letter-spacing:112.680000px;}
.ls34_c02120{letter-spacing:143.818200px;}
.ls2a_c02120{letter-spacing:144.180000px;}
.ls2e_c02120{letter-spacing:156.778200px;}
.lsd_c02120{letter-spacing:200.790000px;}
.ls15_c02120{letter-spacing:216.180000px;}
.sc__c02120{text-shadow:none;}
.sc0_c02120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02120{-webkit-text-stroke:0px transparent;}
.sc0_c02120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02120{word-spacing:-16.628112px;}
.ws3_c02120{word-spacing:-13.505400px;}
.ws2_c02120{word-spacing:-13.494600px;}
.ws1d_c02120{word-spacing:-0.272916px;}
.wse_c02120{word-spacing:-0.229824px;}
.ws1b_c02120{word-spacing:-0.225036px;}
.ws1a_c02120{word-spacing:-0.215460px;}
.ws11_c02120{word-spacing:-0.210672px;}
.wsc_c02120{word-spacing:-0.205884px;}
.ws18_c02120{word-spacing:-0.191520px;}
.ws24_c02120{word-spacing:-0.189000px;}
.ws10_c02120{word-spacing:-0.186732px;}
.ws12_c02120{word-spacing:-0.177156px;}
.ws1c_c02120{word-spacing:-0.172368px;}
.wsb_c02120{word-spacing:-0.119700px;}
.ws7_c02120{word-spacing:-0.115200px;}
.ws1e_c02120{word-spacing:-0.110124px;}
.ws19_c02120{word-spacing:-0.108000px;}
.wsa_c02120{word-spacing:-0.101088px;}
.ws9_c02120{word-spacing:-0.050400px;}
.ws27_c02120{word-spacing:-0.028800px;}
.ws8_c02120{word-spacing:-0.007200px;}
.ws6_c02120{word-spacing:0.000000px;}
.ws5_c02120{word-spacing:0.014400px;}
.ws1f_c02120{word-spacing:0.039528px;}
.wsf_c02120{word-spacing:0.046116px;}
.ws21_c02120{word-spacing:0.145800px;}
.ws20_c02120{word-spacing:0.151200px;}
.ws22_c02120{word-spacing:0.162000px;}
.ws23_c02120{word-spacing:0.194400px;}
.ws25_c02120{word-spacing:0.264600px;}
.ws26_c02120{word-spacing:0.280800px;}
.ws13_c02120{word-spacing:0.536256px;}
.ws14_c02120{word-spacing:0.550620px;}
.ws15_c02120{word-spacing:2.724372px;}
.ws17_c02120{word-spacing:2.748312px;}
.ws16_c02120{word-spacing:2.762676px;}
.ws1_c02120{word-spacing:58.609440px;}
.ws4_c02120{word-spacing:58.969440px;}
.wsd_c02120{word-spacing:156.735000px;}
._1_c02120{margin-left:-1.296000px;}
._29_c02120{width:1.026000px;}
._14_c02120{width:42.179400px;}
._13_c02120{width:43.474212px;}
._d_c02120{width:50.937552px;}
._10_c02120{width:62.053200px;}
._9_c02120{width:72.604440px;}
._12_c02120{width:75.420000px;}
._a_c02120{width:77.310180px;}
._1e_c02120{width:78.339852px;}
._e_c02120{width:83.264148px;}
._3_c02120{width:84.474000px;}
._2d_c02120{width:85.777200px;}
._b_c02120{width:87.278400px;}
._2_c02120{width:88.581600px;}
._21_c02120{width:90.075600px;}
._20_c02120{width:93.360168px;}
._1d_c02120{width:95.776236px;}
._c_c02120{width:100.598400px;}
._2e_c02120{width:105.735852px;}
._5_c02120{width:106.740000px;}
._22_c02120{width:114.887016px;}
._6_c02120{width:118.378944px;}
._f_c02120{width:119.664000px;}
._4_c02120{width:122.220000px;}
._11_c02120{width:129.607020px;}
._8_c02120{width:148.307688px;}
._7_c02120{width:153.511524px;}
._0_c02120{width:194.400000px;}
._2c_c02120{width:203.036400px;}
._18_c02120{width:216.180000px;}
._1f_c02120{width:241.348572px;}
._1a_c02120{width:272.353248px;}
._16_c02120{width:283.500000px;}
._24_c02120{width:303.170400px;}
._19_c02120{width:310.104000px;}
._25_c02120{width:324.775800px;}
._17_c02120{width:380.745540px;}
._26_c02120{width:382.210200px;}
._1b_c02120{width:392.093100px;}
._2a_c02120{width:451.783800px;}
._27_c02120{width:482.234400px;}
._28_c02120{width:483.924600px;}
._15_c02120{width:537.145848px;}
._23_c02120{width:604.806876px;}
._2b_c02120{width:799.695000px;}
._1c_c02120{width:858.124440px;}
.fc0_c02120{color:rgb(0,0,0);}
.fs3_c02120{font-size:42.120000px;}
.fs2_c02120{font-size:47.880000px;}
.fs1_c02120{font-size:54.000000px;}
.fs4_c02120{font-size:65.880000px;}
.fs0_c02120{font-size:72.000000px;}
.y0_c02120{bottom:0.000000px;}
.y3_c02120{bottom:57.360450px;}
.y2_c02120{bottom:78.060450px;}
.y4e_c02120{bottom:122.790900px;}
.y4d_c02120{bottom:138.360450px;}
.y4c_c02120{bottom:153.840450px;}
.y4b_c02120{bottom:154.200150px;}
.y4a_c02120{bottom:172.830450px;}
.y49_c02120{bottom:173.190150px;}
.y48_c02120{bottom:191.820450px;}
.y47_c02120{bottom:192.180000px;}
.y46_c02120{bottom:210.720450px;}
.y45_c02120{bottom:211.170450px;}
.y44_c02120{bottom:229.710600px;}
.y43_c02120{bottom:230.070000px;}
.y42_c02120{bottom:249.780450px;}
.y41_c02120{bottom:268.050450px;}
.y40_c02120{bottom:285.420450px;}
.y3f_c02120{bottom:305.580000px;}
.y3e_c02120{bottom:321.060450px;}
.y3d_c02120{bottom:336.630000px;}
.y3c_c02120{bottom:352.110450px;}
.y3b_c02120{bottom:367.589874px;}
.y3a_c02120{bottom:381.360162px;}
.y39_c02120{bottom:395.130450px;}
.y38_c02120{bottom:411.330450px;}
.y37_c02120{bottom:426.810450px;}
.y36_c02120{bottom:442.380450px;}
.y35_c02120{bottom:457.860600px;}
.y34_c02120{bottom:473.430600px;}
.y33_c02120{bottom:488.910450px;}
.y32_c02120{bottom:504.480450px;}
.y31_c02120{bottom:519.960600px;}
.y2e_c02120{bottom:537.330450px;}
.y30_c02120{bottom:538.050450px;}
.y2f_c02120{bottom:555.420450px;}
.y2d_c02120{bottom:572.250450px;}
.y2c_c02120{bottom:590.520900px;}
.y2b_c02120{bottom:606.090450px;}
.y2a_c02120{bottom:621.570450px;}
.y29_c02120{bottom:621.930000px;}
.y28_c02120{bottom:640.560450px;}
.y27_c02120{bottom:640.920000px;}
.y26_c02120{bottom:659.550450px;}
.y25_c02120{bottom:659.910000px;}
.y24_c02120{bottom:678.540450px;}
.y23_c02120{bottom:678.900000px;}
.y22_c02120{bottom:697.440450px;}
.y21_c02120{bottom:697.890450px;}
.y20_c02120{bottom:717.510450px;}
.y1f_c02120{bottom:735.780450px;}
.y1e_c02120{bottom:753.150450px;}
.y1d_c02120{bottom:773.310600px;}
.y1c_c02120{bottom:788.791050px;}
.y1b_c02120{bottom:804.360600px;}
.y1a_c02120{bottom:819.750099px;}
.y19_c02120{bottom:833.520387px;}
.y18_c02120{bottom:847.380450px;}
.y17_c02120{bottom:864.840450px;}
.y16_c02120{bottom:880.410450px;}
.y15_c02120{bottom:895.890450px;}
.y14_c02120{bottom:911.460450px;}
.y11_c02120{bottom:927.480450px;}
.y13_c02120{bottom:928.110450px;}
.y12_c02120{bottom:945.570450px;}
.y10_c02120{bottom:962.310450px;}
.yf_c02120{bottom:980.670000px;}
.ye_c02120{bottom:996.150450px;}
.yd_c02120{bottom:1011.720450px;}
.yc_c02120{bottom:1012.080000px;}
.yb_c02120{bottom:1030.710450px;}
.ya_c02120{bottom:1031.070450px;}
.y9_c02120{bottom:1050.690450px;}
.y8_c02120{bottom:1068.960450px;}
.y7_c02120{bottom:1086.330450px;}
.y6_c02120{bottom:1106.490900px;}
.y5_c02120{bottom:1122.060450px;}
.y4_c02120{bottom:1139.250450px;}
.y1_c02120{bottom:1193.160450px;}
.h7_c02120{height:42.011895px;}
.h9_c02120{height:43.061836px;}
.h6_c02120{height:43.091895px;}
.h8_c02120{height:47.381836px;}
.h3_c02120{height:47.961914px;}
.hb_c02120{height:48.461236px;}
.he_c02120{height:48.461836px;}
.hc_c02120{height:48.462436px;}
.h5_c02120{height:58.513535px;}
.h4_c02120{height:62.473535px;}
.ha_c02120{height:62.833535px;}
.h2_c02120{height:63.175781px;}
.h1_c02120{height:63.949219px;}
.hd_c02120{height:79.421836px;}
.h0_c02120{height:1263.000000px;}
.w1_c02120{width:892.500000px;}
.w0_c02120{width:892.830000px;}
.x0_c02120{left:0.000000px;}
.x1_c02120{left:127.620000px;}
.x7_c02120{left:134.550000px;}
.x3_c02120{left:135.630000px;}
.x4_c02120{left:143.910000px;}
.x5_c02120{left:165.060000px;}
.x6_c02120{left:220.680000px;}
.xa_c02120{left:380.700000px;}
.x8_c02120{left:392.490000px;}
.xb_c02120{left:403.380000px;}
.x9_c02120{left:415.170000px;}
.x2_c02120{left:437.580000px;}
@media print{
.v3_c02120{vertical-align:-3.840000pt;}
.v2_c02120{vertical-align:-2.240000pt;}
.v1_c02120{vertical-align:-1.280000pt;}
.v0_c02120{vertical-align:0.000000pt;}
.v6_c02120{vertical-align:1.280000pt;}
.v4_c02120{vertical-align:2.240000pt;}
.v5_c02120{vertical-align:3.520000pt;}
.v7_c02120{vertical-align:28.480000pt;}
.ls33_c02120{letter-spacing:-0.158400pt;}
.ls32_c02120{letter-spacing:-0.091200pt;}
.ls31_c02120{letter-spacing:-0.076800pt;}
.ls29_c02120{letter-spacing:-0.076608pt;}
.ls25_c02120{letter-spacing:-0.038400pt;}
.ls27_c02120{letter-spacing:-0.017024pt;}
.ls30_c02120{letter-spacing:-0.014400pt;}
.ls22_c02120{letter-spacing:-0.012800pt;}
.ls26_c02120{letter-spacing:-0.009600pt;}
.ls2b_c02120{letter-spacing:-0.004800pt;}
.ls2d_c02120{letter-spacing:-0.004256pt;}
.ls23_c02120{letter-spacing:0.000000pt;}
.ls1e_c02120{letter-spacing:0.004800pt;}
.ls1_c02120{letter-spacing:0.006400pt;}
.ls3_c02120{letter-spacing:0.009600pt;}
.ls6_c02120{letter-spacing:0.011232pt;}
.ls2_c02120{letter-spacing:0.012800pt;}
.ls20_c02120{letter-spacing:0.014400pt;}
.ls1c_c02120{letter-spacing:0.017024pt;}
.ls19_c02120{letter-spacing:0.019200pt;}
.ls1f_c02120{letter-spacing:0.024000pt;}
.ls5_c02120{letter-spacing:0.025536pt;}
.ls0_c02120{letter-spacing:0.025600pt;}
.ls7_c02120{letter-spacing:0.028800pt;}
.lsc_c02120{letter-spacing:0.033600pt;}
.ls4_c02120{letter-spacing:0.038304pt;}
.lsb_c02120{letter-spacing:0.038400pt;}
.ls10_c02120{letter-spacing:0.040992pt;}
.lsa_c02120{letter-spacing:0.046816pt;}
.ls1d_c02120{letter-spacing:0.046848pt;}
.ls11_c02120{letter-spacing:0.051072pt;}
.ls17_c02120{letter-spacing:0.059584pt;}
.ls16_c02120{letter-spacing:0.072352pt;}
.ls14_c02120{letter-spacing:0.076608pt;}
.ls12_c02120{letter-spacing:0.085120pt;}
.ls18_c02120{letter-spacing:0.089376pt;}
.lse_c02120{letter-spacing:0.102144pt;}
.ls13_c02120{letter-spacing:0.106400pt;}
.ls1a_c02120{letter-spacing:0.110656pt;}
.ls1b_c02120{letter-spacing:0.119168pt;}
.lsf_c02120{letter-spacing:0.123424pt;}
.ls24_c02120{letter-spacing:0.134400pt;}
.ls8_c02120{letter-spacing:0.140544pt;}
.ls28_c02120{letter-spacing:0.148960pt;}
.ls2f_c02120{letter-spacing:0.161728pt;}
.ls2c_c02120{letter-spacing:0.238336pt;}
.ls21_c02120{letter-spacing:99.840000pt;}
.ls9_c02120{letter-spacing:100.160000pt;}
.ls34_c02120{letter-spacing:127.838400pt;}
.ls2a_c02120{letter-spacing:128.160000pt;}
.ls2e_c02120{letter-spacing:139.358400pt;}
.lsd_c02120{letter-spacing:178.480000pt;}
.ls15_c02120{letter-spacing:192.160000pt;}
.ws0_c02120{word-spacing:-14.780544pt;}
.ws3_c02120{word-spacing:-12.004800pt;}
.ws2_c02120{word-spacing:-11.995200pt;}
.ws1d_c02120{word-spacing:-0.242592pt;}
.wse_c02120{word-spacing:-0.204288pt;}
.ws1b_c02120{word-spacing:-0.200032pt;}
.ws1a_c02120{word-spacing:-0.191520pt;}
.ws11_c02120{word-spacing:-0.187264pt;}
.wsc_c02120{word-spacing:-0.183008pt;}
.ws18_c02120{word-spacing:-0.170240pt;}
.ws24_c02120{word-spacing:-0.168000pt;}
.ws10_c02120{word-spacing:-0.165984pt;}
.ws12_c02120{word-spacing:-0.157472pt;}
.ws1c_c02120{word-spacing:-0.153216pt;}
.wsb_c02120{word-spacing:-0.106400pt;}
.ws7_c02120{word-spacing:-0.102400pt;}
.ws1e_c02120{word-spacing:-0.097888pt;}
.ws19_c02120{word-spacing:-0.096000pt;}
.wsa_c02120{word-spacing:-0.089856pt;}
.ws9_c02120{word-spacing:-0.044800pt;}
.ws27_c02120{word-spacing:-0.025600pt;}
.ws8_c02120{word-spacing:-0.006400pt;}
.ws6_c02120{word-spacing:0.000000pt;}
.ws5_c02120{word-spacing:0.012800pt;}
.ws1f_c02120{word-spacing:0.035136pt;}
.wsf_c02120{word-spacing:0.040992pt;}
.ws21_c02120{word-spacing:0.129600pt;}
.ws20_c02120{word-spacing:0.134400pt;}
.ws22_c02120{word-spacing:0.144000pt;}
.ws23_c02120{word-spacing:0.172800pt;}
.ws25_c02120{word-spacing:0.235200pt;}
.ws26_c02120{word-spacing:0.249600pt;}
.ws13_c02120{word-spacing:0.476672pt;}
.ws14_c02120{word-spacing:0.489440pt;}
.ws15_c02120{word-spacing:2.421664pt;}
.ws17_c02120{word-spacing:2.442944pt;}
.ws16_c02120{word-spacing:2.455712pt;}
.ws1_c02120{word-spacing:52.097280pt;}
.ws4_c02120{word-spacing:52.417280pt;}
.wsd_c02120{word-spacing:139.320000pt;}
._1_c02120{margin-left:-1.152000pt;}
._29_c02120{width:0.912000pt;}
._14_c02120{width:37.492800pt;}
._13_c02120{width:38.643744pt;}
._d_c02120{width:45.277824pt;}
._10_c02120{width:55.158400pt;}
._9_c02120{width:64.537280pt;}
._12_c02120{width:67.040000pt;}
._a_c02120{width:68.720160pt;}
._1e_c02120{width:69.635424pt;}
._e_c02120{width:74.012576pt;}
._3_c02120{width:75.088000pt;}
._2d_c02120{width:76.246400pt;}
._b_c02120{width:77.580800pt;}
._2_c02120{width:78.739200pt;}
._21_c02120{width:80.067200pt;}
._20_c02120{width:82.986816pt;}
._1d_c02120{width:85.134432pt;}
._c_c02120{width:89.420800pt;}
._2e_c02120{width:93.987424pt;}
._5_c02120{width:94.880000pt;}
._22_c02120{width:102.121792pt;}
._6_c02120{width:105.225728pt;}
._f_c02120{width:106.368000pt;}
._4_c02120{width:108.640000pt;}
._11_c02120{width:115.206240pt;}
._8_c02120{width:131.829056pt;}
._7_c02120{width:136.454688pt;}
._0_c02120{width:172.800000pt;}
._2c_c02120{width:180.476800pt;}
._18_c02120{width:192.160000pt;}
._1f_c02120{width:214.532064pt;}
._1a_c02120{width:242.091776pt;}
._16_c02120{width:252.000000pt;}
._24_c02120{width:269.484800pt;}
._19_c02120{width:275.648000pt;}
._25_c02120{width:288.689600pt;}
._17_c02120{width:338.440480pt;}
._26_c02120{width:339.742400pt;}
._1b_c02120{width:348.527200pt;}
._2a_c02120{width:401.585600pt;}
._27_c02120{width:428.652800pt;}
._28_c02120{width:430.155200pt;}
._15_c02120{width:477.462976pt;}
._23_c02120{width:537.606112pt;}
._2b_c02120{width:710.840000pt;}
._1c_c02120{width:762.777280pt;}
.fs3_c02120{font-size:37.440000pt;}
.fs2_c02120{font-size:42.560000pt;}
.fs1_c02120{font-size:48.000000pt;}
.fs4_c02120{font-size:58.560000pt;}
.fs0_c02120{font-size:64.000000pt;}
.y0_c02120{bottom:0.000000pt;}
.y3_c02120{bottom:50.987067pt;}
.y2_c02120{bottom:69.387067pt;}
.y4e_c02120{bottom:109.147467pt;}
.y4d_c02120{bottom:122.987067pt;}
.y4c_c02120{bottom:136.747067pt;}
.y4b_c02120{bottom:137.066800pt;}
.y4a_c02120{bottom:153.627067pt;}
.y49_c02120{bottom:153.946800pt;}
.y48_c02120{bottom:170.507067pt;}
.y47_c02120{bottom:170.826667pt;}
.y46_c02120{bottom:187.307067pt;}
.y45_c02120{bottom:187.707067pt;}
.y44_c02120{bottom:204.187200pt;}
.y43_c02120{bottom:204.506667pt;}
.y42_c02120{bottom:222.027067pt;}
.y41_c02120{bottom:238.267067pt;}
.y40_c02120{bottom:253.707067pt;}
.y3f_c02120{bottom:271.626667pt;}
.y3e_c02120{bottom:285.387067pt;}
.y3d_c02120{bottom:299.226667pt;}
.y3c_c02120{bottom:312.987067pt;}
.y3b_c02120{bottom:326.746555pt;}
.y3a_c02120{bottom:338.986811pt;}
.y39_c02120{bottom:351.227067pt;}
.y38_c02120{bottom:365.627067pt;}
.y37_c02120{bottom:379.387067pt;}
.y36_c02120{bottom:393.227067pt;}
.y35_c02120{bottom:406.987200pt;}
.y34_c02120{bottom:420.827200pt;}
.y33_c02120{bottom:434.587067pt;}
.y32_c02120{bottom:448.427067pt;}
.y31_c02120{bottom:462.187200pt;}
.y2e_c02120{bottom:477.627067pt;}
.y30_c02120{bottom:478.267067pt;}
.y2f_c02120{bottom:493.707067pt;}
.y2d_c02120{bottom:508.667067pt;}
.y2c_c02120{bottom:524.907467pt;}
.y2b_c02120{bottom:538.747067pt;}
.y2a_c02120{bottom:552.507067pt;}
.y29_c02120{bottom:552.826667pt;}
.y28_c02120{bottom:569.387067pt;}
.y27_c02120{bottom:569.706667pt;}
.y26_c02120{bottom:586.267067pt;}
.y25_c02120{bottom:586.586667pt;}
.y24_c02120{bottom:603.147067pt;}
.y23_c02120{bottom:603.466667pt;}
.y22_c02120{bottom:619.947067pt;}
.y21_c02120{bottom:620.347067pt;}
.y20_c02120{bottom:637.787067pt;}
.y1f_c02120{bottom:654.027067pt;}
.y1e_c02120{bottom:669.467067pt;}
.y1d_c02120{bottom:687.387200pt;}
.y1c_c02120{bottom:701.147600pt;}
.y1b_c02120{bottom:714.987200pt;}
.y1a_c02120{bottom:728.666755pt;}
.y19_c02120{bottom:740.907011pt;}
.y18_c02120{bottom:753.227067pt;}
.y17_c02120{bottom:768.747067pt;}
.y16_c02120{bottom:782.587067pt;}
.y15_c02120{bottom:796.347067pt;}
.y14_c02120{bottom:810.187067pt;}
.y11_c02120{bottom:824.427067pt;}
.y13_c02120{bottom:824.987067pt;}
.y12_c02120{bottom:840.507067pt;}
.y10_c02120{bottom:855.387067pt;}
.yf_c02120{bottom:871.706667pt;}
.ye_c02120{bottom:885.467067pt;}
.yd_c02120{bottom:899.307067pt;}
.yc_c02120{bottom:899.626667pt;}
.yb_c02120{bottom:916.187067pt;}
.ya_c02120{bottom:916.507067pt;}
.y9_c02120{bottom:933.947067pt;}
.y8_c02120{bottom:950.187067pt;}
.y7_c02120{bottom:965.627067pt;}
.y6_c02120{bottom:983.547467pt;}
.y5_c02120{bottom:997.387067pt;}
.y4_c02120{bottom:1012.667067pt;}
.y1_c02120{bottom:1060.587067pt;}
.h7_c02120{height:37.343906pt;}
.h9_c02120{height:38.277187pt;}
.h6_c02120{height:38.303906pt;}
.h8_c02120{height:42.117188pt;}
.h3_c02120{height:42.632812pt;}
.hb_c02120{height:43.076654pt;}
.he_c02120{height:43.077188pt;}
.hc_c02120{height:43.077721pt;}
.h5_c02120{height:52.012031pt;}
.h4_c02120{height:55.532031pt;}
.ha_c02120{height:55.852031pt;}
.h2_c02120{height:56.156250pt;}
.h1_c02120{height:56.843750pt;}
.hd_c02120{height:70.597187pt;}
.h0_c02120{height:1122.666667pt;}
.w1_c02120{width:793.333333pt;}
.w0_c02120{width:793.626667pt;}
.x0_c02120{left:0.000000pt;}
.x1_c02120{left:113.440000pt;}
.x7_c02120{left:119.600000pt;}
.x3_c02120{left:120.560000pt;}
.x4_c02120{left:127.920000pt;}
.x5_c02120{left:146.720000pt;}
.x6_c02120{left:196.160000pt;}
.xa_c02120{left:338.400000pt;}
.x8_c02120{left:348.880000pt;}
.xb_c02120{left:358.560000pt;}
.x9_c02120{left:369.040000pt;}
.x2_c02120{left:388.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_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_ae90db0d808d97782314beed.woff2')format("woff");}.ff1_c02121{font-family:ff1_c02121;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02121;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v8_c02121{vertical-align:-15.120000px;}
.vb_c02121{vertical-align:-13.680000px;}
.v9_c02121{vertical-align:-12.600000px;}
.va_c02121{vertical-align:-11.160000px;}
.v3_c02121{vertical-align:-4.320000px;}
.v2_c02121{vertical-align:-2.880000px;}
.v1_c02121{vertical-align:-1.440000px;}
.v0_c02121{vertical-align:0.000000px;}
.v6_c02121{vertical-align:1.080000px;}
.v4_c02121{vertical-align:2.520000px;}
.v5_c02121{vertical-align:4.320000px;}
.v7_c02121{vertical-align:11.160000px;}
.ls20_c02121{letter-spacing:-0.086184px;}
.ls1c_c02121{letter-spacing:-0.043200px;}
.ls23_c02121{letter-spacing:-0.021600px;}
.ls1e_c02121{letter-spacing:-0.019152px;}
.ls19_c02121{letter-spacing:-0.014400px;}
.ls1d_c02121{letter-spacing:-0.010800px;}
.ls24_c02121{letter-spacing:-0.004788px;}
.ls1a_c02121{letter-spacing:0.000000px;}
.ls0_c02121{letter-spacing:0.007200px;}
.ls1_c02121{letter-spacing:0.010800px;}
.ls4_c02121{letter-spacing:0.012636px;}
.ls15_c02121{letter-spacing:0.014400px;}
.ls14_c02121{letter-spacing:0.019152px;}
.ls3_c02121{letter-spacing:0.028728px;}
.ls5_c02121{letter-spacing:0.032400px;}
.lsa_c02121{letter-spacing:0.037800px;}
.ls2_c02121{letter-spacing:0.043092px;}
.ls9_c02121{letter-spacing:0.043200px;}
.lsf_c02121{letter-spacing:0.052668px;}
.ls25_c02121{letter-spacing:0.081396px;}
.ls8_c02121{letter-spacing:0.110124px;}
.ls10_c02121{letter-spacing:0.114912px;}
.ls12_c02121{letter-spacing:0.124488px;}
.ls13_c02121{letter-spacing:0.134064px;}
.ls11_c02121{letter-spacing:0.138852px;}
.ls1b_c02121{letter-spacing:0.151200px;}
.ls6_c02121{letter-spacing:0.158112px;}
.ls1f_c02121{letter-spacing:0.167580px;}
.lsb_c02121{letter-spacing:0.178200px;}
.ls21_c02121{letter-spacing:0.181944px;}
.lse_c02121{letter-spacing:0.205884px;}
.lsc_c02121{letter-spacing:77.943600px;}
.ls7_c02121{letter-spacing:112.320000px;}
.ls22_c02121{letter-spacing:143.818200px;}
.ls16_c02121{letter-spacing:143.910000px;}
.ls18_c02121{letter-spacing:156.778200px;}
.ls26_c02121{letter-spacing:185.220000px;}
.ls17_c02121{letter-spacing:199.260000px;}
.lsd_c02121{letter-spacing:200.790000px;}
.sc__c02121{text-shadow:none;}
.sc0_c02121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02121{-webkit-text-stroke:0px transparent;}
.sc0_c02121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02121{word-spacing:-16.628112px;}
.ws2_c02121{word-spacing:-13.500000px;}
.ws8_c02121{word-spacing:-0.296856px;}
.ws7_c02121{word-spacing:-0.272916px;}
.wsd_c02121{word-spacing:-0.244800px;}
.wsc_c02121{word-spacing:-0.229824px;}
.ws10_c02121{word-spacing:-0.225036px;}
.wsf_c02121{word-spacing:-0.215460px;}
.wsb_c02121{word-spacing:-0.205884px;}
.ws11_c02121{word-spacing:-0.172368px;}
.wsa_c02121{word-spacing:-0.119700px;}
.ws12_c02121{word-spacing:-0.110124px;}
.ws6_c02121{word-spacing:-0.101088px;}
.ws14_c02121{word-spacing:-0.100800px;}
.ws5_c02121{word-spacing:-0.093600px;}
.wse_c02121{word-spacing:-0.064800px;}
.ws13_c02121{word-spacing:-0.014400px;}
.ws4_c02121{word-spacing:0.000000px;}
.ws3_c02121{word-spacing:0.014400px;}
.ws1_c02121{word-spacing:58.969440px;}
.ws9_c02121{word-spacing:156.735000px;}
.ws15_c02121{word-spacing:240.975000px;}
._14_c02121{width:42.501636px;}
._c_c02121{width:51.297552px;}
._11_c02121{width:62.053200px;}
._9_c02121{width:72.604440px;}
._13_c02121{width:75.420000px;}
._a_c02121{width:77.310180px;}
._f_c02121{width:83.700000px;}
._2_c02121{width:84.834000px;}
._1_c02121{width:88.221600px;}
._e_c02121{width:90.075600px;}
._17_c02121{width:93.360168px;}
._16_c02121{width:96.498684px;}
._b_c02121{width:100.015200px;}
._d_c02121{width:104.479380px;}
._4_c02121{width:106.740000px;}
._18_c02121{width:114.887016px;}
._19_c02121{width:116.661600px;}
._5_c02121{width:118.018944px;}
._10_c02121{width:119.304000px;}
._3_c02121{width:122.220000px;}
._6_c02121{width:123.576120px;}
._1b_c02121{width:126.180000px;}
._12_c02121{width:129.011400px;}
._15_c02121{width:143.820000px;}
._8_c02121{width:148.307688px;}
._7_c02121{width:152.155404px;}
._1a_c02121{width:185.220000px;}
._0_c02121{width:194.400000px;}
.fc0_c02121{color:rgb(0,0,0);}
.fs5_c02121{font-size:11.880000px;}
.fs3_c02121{font-size:42.120000px;}
.fs2_c02121{font-size:47.880000px;}
.fs1_c02121{font-size:54.000000px;}
.fs4_c02121{font-size:65.880000px;}
.fs0_c02121{font-size:72.000000px;}
.y0_c02121{bottom:0.000000px;}
.y3_c02121{bottom:57.360450px;}
.y2_c02121{bottom:78.060450px;}
.y50_c02121{bottom:125.130000px;}
.y4f_c02121{bottom:140.610450px;}
.y4e_c02121{bottom:156.180000px;}
.y4d_c02121{bottom:171.660450px;}
.y4c_c02121{bottom:187.230000px;}
.y4b_c02121{bottom:202.710450px;}
.y4a_c02121{bottom:218.280000px;}
.y49_c02121{bottom:233.760450px;}
.y48_c02121{bottom:249.330000px;}
.y47_c02121{bottom:264.810450px;}
.y46_c02121{bottom:280.380000px;}
.y45_c02121{bottom:295.860450px;}
.y44_c02121{bottom:311.430000px;}
.y43_c02121{bottom:326.910450px;}
.y42_c02121{bottom:342.480000px;}
.y41_c02121{bottom:357.960450px;}
.y40_c02121{bottom:373.530000px;}
.y3f_c02121{bottom:389.010450px;}
.y3e_c02121{bottom:404.580000px;}
.y3d_c02121{bottom:420.060450px;}
.y3c_c02121{bottom:435.630000px;}
.y3b_c02121{bottom:451.110450px;}
.y3a_c02121{bottom:466.680000px;}
.y39_c02121{bottom:482.160450px;}
.y38_c02121{bottom:497.730000px;}
.y37_c02121{bottom:513.210450px;}
.y36_c02121{bottom:528.780000px;}
.y35_c02121{bottom:544.260450px;}
.y34_c02121{bottom:559.740900px;}
.y33_c02121{bottom:575.310450px;}
.y32_c02121{bottom:590.790900px;}
.y31_c02121{bottom:606.360450px;}
.y30_c02121{bottom:621.840450px;}
.y2f_c02121{bottom:625.710000px;}
.y2e_c02121{bottom:640.830450px;}
.y2d_c02121{bottom:644.700000px;}
.y2c_c02121{bottom:659.820450px;}
.y2b_c02121{bottom:663.690000px;}
.y2a_c02121{bottom:678.810450px;}
.y29_c02121{bottom:682.590900px;}
.y28_c02121{bottom:697.800450px;}
.y27_c02121{bottom:701.580450px;}
.y26_c02121{bottom:720.570450px;}
.y24_c02121{bottom:735.690450px;}
.y25_c02121{bottom:736.050450px;}
.y23_c02121{bottom:741.270450px;}
.y22_c02121{bottom:757.470450px;}
.y21_c02121{bottom:775.740450px;}
.y20_c02121{bottom:793.110600px;}
.y1f_c02121{bottom:813.900450px;}
.y1e_c02121{bottom:822.720450px;}
.y1d_c02121{bottom:823.080000px;}
.y1c_c02121{bottom:841.710450px;}
.y1b_c02121{bottom:842.070000px;}
.y1a_c02121{bottom:860.700450px;}
.y19_c02121{bottom:861.060000px;}
.y18_c02121{bottom:879.600450px;}
.y17_c02121{bottom:880.050450px;}
.y16_c02121{bottom:898.590450px;}
.y15_c02121{bottom:898.950450px;}
.y14_c02121{bottom:919.650450px;}
.y13_c02121{bottom:938.280450px;}
.y12_c02121{bottom:938.640450px;}
.y11_c02121{bottom:959.970450px;}
.y10_c02121{bottom:978.330450px;}
.yf_c02121{bottom:995.700450px;}
.ye_c02121{bottom:1016.490450px;}
.yd_c02121{bottom:1025.310450px;}
.yc_c02121{bottom:1025.670000px;}
.yb_c02121{bottom:1044.210450px;}
.ya_c02121{bottom:1044.660450px;}
.y9_c02121{bottom:1063.560450px;}
.y8_c02121{bottom:1082.190450px;}
.y7_c02121{bottom:1082.550450px;}
.y6_c02121{bottom:1103.970450px;}
.y5_c02121{bottom:1122.240450px;}
.y4_c02121{bottom:1139.610450px;}
.y1_c02121{bottom:1193.160450px;}
.h7_c02121{height:10.551621px;}
.h3_c02121{height:47.961914px;}
.h9_c02121{height:48.461836px;}
.h5_c02121{height:61.393535px;}
.h6_c02121{height:62.473535px;}
.h4_c02121{height:62.833535px;}
.h8_c02121{height:62.834135px;}
.h2_c02121{height:63.175781px;}
.h1_c02121{height:63.949219px;}
.h0_c02121{height:1263.000000px;}
.w1_c02121{width:892.500000px;}
.w0_c02121{width:892.830000px;}
.x0_c02121{left:0.000000px;}
.x1_c02121{left:127.620000px;}
.x3_c02121{left:135.630000px;}
.x4_c02121{left:143.910000px;}
.x7_c02121{left:150.300000px;}
.x5_c02121{left:165.060000px;}
.x6_c02121{left:220.680000px;}
.x8_c02121{left:234.900000px;}
.x2_c02121{left:437.580000px;}
.x9_c02121{left:555.299550px;}
@media print{
.v8_c02121{vertical-align:-13.440000pt;}
.vb_c02121{vertical-align:-12.160000pt;}
.v9_c02121{vertical-align:-11.200000pt;}
.va_c02121{vertical-align:-9.920000pt;}
.v3_c02121{vertical-align:-3.840000pt;}
.v2_c02121{vertical-align:-2.560000pt;}
.v1_c02121{vertical-align:-1.280000pt;}
.v0_c02121{vertical-align:0.000000pt;}
.v6_c02121{vertical-align:0.960000pt;}
.v4_c02121{vertical-align:2.240000pt;}
.v5_c02121{vertical-align:3.840000pt;}
.v7_c02121{vertical-align:9.920000pt;}
.ls20_c02121{letter-spacing:-0.076608pt;}
.ls1c_c02121{letter-spacing:-0.038400pt;}
.ls23_c02121{letter-spacing:-0.019200pt;}
.ls1e_c02121{letter-spacing:-0.017024pt;}
.ls19_c02121{letter-spacing:-0.012800pt;}
.ls1d_c02121{letter-spacing:-0.009600pt;}
.ls24_c02121{letter-spacing:-0.004256pt;}
.ls1a_c02121{letter-spacing:0.000000pt;}
.ls0_c02121{letter-spacing:0.006400pt;}
.ls1_c02121{letter-spacing:0.009600pt;}
.ls4_c02121{letter-spacing:0.011232pt;}
.ls15_c02121{letter-spacing:0.012800pt;}
.ls14_c02121{letter-spacing:0.017024pt;}
.ls3_c02121{letter-spacing:0.025536pt;}
.ls5_c02121{letter-spacing:0.028800pt;}
.lsa_c02121{letter-spacing:0.033600pt;}
.ls2_c02121{letter-spacing:0.038304pt;}
.ls9_c02121{letter-spacing:0.038400pt;}
.lsf_c02121{letter-spacing:0.046816pt;}
.ls25_c02121{letter-spacing:0.072352pt;}
.ls8_c02121{letter-spacing:0.097888pt;}
.ls10_c02121{letter-spacing:0.102144pt;}
.ls12_c02121{letter-spacing:0.110656pt;}
.ls13_c02121{letter-spacing:0.119168pt;}
.ls11_c02121{letter-spacing:0.123424pt;}
.ls1b_c02121{letter-spacing:0.134400pt;}
.ls6_c02121{letter-spacing:0.140544pt;}
.ls1f_c02121{letter-spacing:0.148960pt;}
.lsb_c02121{letter-spacing:0.158400pt;}
.ls21_c02121{letter-spacing:0.161728pt;}
.lse_c02121{letter-spacing:0.183008pt;}
.lsc_c02121{letter-spacing:69.283200pt;}
.ls7_c02121{letter-spacing:99.840000pt;}
.ls22_c02121{letter-spacing:127.838400pt;}
.ls16_c02121{letter-spacing:127.920000pt;}
.ls18_c02121{letter-spacing:139.358400pt;}
.ls26_c02121{letter-spacing:164.640000pt;}
.ls17_c02121{letter-spacing:177.120000pt;}
.lsd_c02121{letter-spacing:178.480000pt;}
.ws0_c02121{word-spacing:-14.780544pt;}
.ws2_c02121{word-spacing:-12.000000pt;}
.ws8_c02121{word-spacing:-0.263872pt;}
.ws7_c02121{word-spacing:-0.242592pt;}
.wsd_c02121{word-spacing:-0.217600pt;}
.wsc_c02121{word-spacing:-0.204288pt;}
.ws10_c02121{word-spacing:-0.200032pt;}
.wsf_c02121{word-spacing:-0.191520pt;}
.wsb_c02121{word-spacing:-0.183008pt;}
.ws11_c02121{word-spacing:-0.153216pt;}
.wsa_c02121{word-spacing:-0.106400pt;}
.ws12_c02121{word-spacing:-0.097888pt;}
.ws6_c02121{word-spacing:-0.089856pt;}
.ws14_c02121{word-spacing:-0.089600pt;}
.ws5_c02121{word-spacing:-0.083200pt;}
.wse_c02121{word-spacing:-0.057600pt;}
.ws13_c02121{word-spacing:-0.012800pt;}
.ws4_c02121{word-spacing:0.000000pt;}
.ws3_c02121{word-spacing:0.012800pt;}
.ws1_c02121{word-spacing:52.417280pt;}
.ws9_c02121{word-spacing:139.320000pt;}
.ws15_c02121{word-spacing:214.200000pt;}
._14_c02121{width:37.779232pt;}
._c_c02121{width:45.597824pt;}
._11_c02121{width:55.158400pt;}
._9_c02121{width:64.537280pt;}
._13_c02121{width:67.040000pt;}
._a_c02121{width:68.720160pt;}
._f_c02121{width:74.400000pt;}
._2_c02121{width:75.408000pt;}
._1_c02121{width:78.419200pt;}
._e_c02121{width:80.067200pt;}
._17_c02121{width:82.986816pt;}
._16_c02121{width:85.776608pt;}
._b_c02121{width:88.902400pt;}
._d_c02121{width:92.870560pt;}
._4_c02121{width:94.880000pt;}
._18_c02121{width:102.121792pt;}
._19_c02121{width:103.699200pt;}
._5_c02121{width:104.905728pt;}
._10_c02121{width:106.048000pt;}
._3_c02121{width:108.640000pt;}
._6_c02121{width:109.845440pt;}
._1b_c02121{width:112.160000pt;}
._12_c02121{width:114.676800pt;}
._15_c02121{width:127.840000pt;}
._8_c02121{width:131.829056pt;}
._7_c02121{width:135.249248pt;}
._1a_c02121{width:164.640000pt;}
._0_c02121{width:172.800000pt;}
.fs5_c02121{font-size:10.560000pt;}
.fs3_c02121{font-size:37.440000pt;}
.fs2_c02121{font-size:42.560000pt;}
.fs1_c02121{font-size:48.000000pt;}
.fs4_c02121{font-size:58.560000pt;}
.fs0_c02121{font-size:64.000000pt;}
.y0_c02121{bottom:0.000000pt;}
.y3_c02121{bottom:50.987067pt;}
.y2_c02121{bottom:69.387067pt;}
.y50_c02121{bottom:111.226667pt;}
.y4f_c02121{bottom:124.987067pt;}
.y4e_c02121{bottom:138.826667pt;}
.y4d_c02121{bottom:152.587067pt;}
.y4c_c02121{bottom:166.426667pt;}
.y4b_c02121{bottom:180.187067pt;}
.y4a_c02121{bottom:194.026667pt;}
.y49_c02121{bottom:207.787067pt;}
.y48_c02121{bottom:221.626667pt;}
.y47_c02121{bottom:235.387067pt;}
.y46_c02121{bottom:249.226667pt;}
.y45_c02121{bottom:262.987067pt;}
.y44_c02121{bottom:276.826667pt;}
.y43_c02121{bottom:290.587067pt;}
.y42_c02121{bottom:304.426667pt;}
.y41_c02121{bottom:318.187067pt;}
.y40_c02121{bottom:332.026667pt;}
.y3f_c02121{bottom:345.787067pt;}
.y3e_c02121{bottom:359.626667pt;}
.y3d_c02121{bottom:373.387067pt;}
.y3c_c02121{bottom:387.226667pt;}
.y3b_c02121{bottom:400.987067pt;}
.y3a_c02121{bottom:414.826667pt;}
.y39_c02121{bottom:428.587067pt;}
.y38_c02121{bottom:442.426667pt;}
.y37_c02121{bottom:456.187067pt;}
.y36_c02121{bottom:470.026667pt;}
.y35_c02121{bottom:483.787067pt;}
.y34_c02121{bottom:497.547467pt;}
.y33_c02121{bottom:511.387067pt;}
.y32_c02121{bottom:525.147467pt;}
.y31_c02121{bottom:538.987067pt;}
.y30_c02121{bottom:552.747067pt;}
.y2f_c02121{bottom:556.186667pt;}
.y2e_c02121{bottom:569.627067pt;}
.y2d_c02121{bottom:573.066667pt;}
.y2c_c02121{bottom:586.507067pt;}
.y2b_c02121{bottom:589.946667pt;}
.y2a_c02121{bottom:603.387067pt;}
.y29_c02121{bottom:606.747467pt;}
.y28_c02121{bottom:620.267067pt;}
.y27_c02121{bottom:623.627067pt;}
.y26_c02121{bottom:640.507067pt;}
.y24_c02121{bottom:653.947067pt;}
.y25_c02121{bottom:654.267067pt;}
.y23_c02121{bottom:658.907067pt;}
.y22_c02121{bottom:673.307067pt;}
.y21_c02121{bottom:689.547067pt;}
.y20_c02121{bottom:704.987200pt;}
.y1f_c02121{bottom:723.467067pt;}
.y1e_c02121{bottom:731.307067pt;}
.y1d_c02121{bottom:731.626667pt;}
.y1c_c02121{bottom:748.187067pt;}
.y1b_c02121{bottom:748.506667pt;}
.y1a_c02121{bottom:765.067067pt;}
.y19_c02121{bottom:765.386667pt;}
.y18_c02121{bottom:781.867067pt;}
.y17_c02121{bottom:782.267067pt;}
.y16_c02121{bottom:798.747067pt;}
.y15_c02121{bottom:799.067067pt;}
.y14_c02121{bottom:817.467067pt;}
.y13_c02121{bottom:834.027067pt;}
.y12_c02121{bottom:834.347067pt;}
.y11_c02121{bottom:853.307067pt;}
.y10_c02121{bottom:869.627067pt;}
.yf_c02121{bottom:885.067067pt;}
.ye_c02121{bottom:903.547067pt;}
.yd_c02121{bottom:911.387067pt;}
.yc_c02121{bottom:911.706667pt;}
.yb_c02121{bottom:928.187067pt;}
.ya_c02121{bottom:928.587067pt;}
.y9_c02121{bottom:945.387067pt;}
.y8_c02121{bottom:961.947067pt;}
.y7_c02121{bottom:962.267067pt;}
.y6_c02121{bottom:981.307067pt;}
.y5_c02121{bottom:997.547067pt;}
.y4_c02121{bottom:1012.987067pt;}
.y1_c02121{bottom:1060.587067pt;}
.h7_c02121{height:9.379219pt;}
.h3_c02121{height:42.632812pt;}
.h9_c02121{height:43.077187pt;}
.h5_c02121{height:54.572031pt;}
.h6_c02121{height:55.532031pt;}
.h4_c02121{height:55.852031pt;}
.h8_c02121{height:55.852565pt;}
.h2_c02121{height:56.156250pt;}
.h1_c02121{height:56.843750pt;}
.h0_c02121{height:1122.666667pt;}
.w1_c02121{width:793.333333pt;}
.w0_c02121{width:793.626667pt;}
.x0_c02121{left:0.000000pt;}
.x1_c02121{left:113.440000pt;}
.x3_c02121{left:120.560000pt;}
.x4_c02121{left:127.920000pt;}
.x7_c02121{left:133.600000pt;}
.x5_c02121{left:146.720000pt;}
.x6_c02121{left:196.160000pt;}
.x8_c02121{left:208.800000pt;}
.x2_c02121{left:388.960000pt;}
.x9_c02121{left:493.599600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_455968bb979dee3dbc5f9ad9.woff2')format("woff");}.ff1_c02122{font-family:ff1_c02122;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02122;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02122{vertical-align:-5.040000px;}
.v1_c02122{vertical-align:-2.880000px;}
.v0_c02122{vertical-align:0.000000px;}
.ls35_c02122{letter-spacing:-0.086184px;}
.ls3a_c02122{letter-spacing:-0.043092px;}
.ls38_c02122{letter-spacing:-0.023940px;}
.ls32_c02122{letter-spacing:-0.014400px;}
.ls3c_c02122{letter-spacing:-0.013176px;}
.ls33_c02122{letter-spacing:0.000000px;}
.ls12_c02122{letter-spacing:0.004788px;}
.ls0_c02122{letter-spacing:0.006012px;}
.ls37_c02122{letter-spacing:0.007200px;}
.ls28_c02122{letter-spacing:0.013176px;}
.ls5_c02122{letter-spacing:0.019764px;}
.ls34_c02122{letter-spacing:0.021600px;}
.ls15_c02122{letter-spacing:0.032940px;}
.ls13_c02122{letter-spacing:0.033516px;}
.ls21_c02122{letter-spacing:0.039528px;}
.ls2e_c02122{letter-spacing:0.046116px;}
.ls39_c02122{letter-spacing:0.047880px;}
.ls14_c02122{letter-spacing:0.052704px;}
.ls1_c02122{letter-spacing:0.059292px;}
.ls3_c02122{letter-spacing:0.065880px;}
.ls27_c02122{letter-spacing:0.072468px;}
.ls2a_c02122{letter-spacing:0.079056px;}
.ls1d_c02122{letter-spacing:0.085644px;}
.ls3b_c02122{letter-spacing:0.090972px;}
.lsa_c02122{letter-spacing:0.092232px;}
.lsf_c02122{letter-spacing:0.138348px;}
.ls9_c02122{letter-spacing:0.151524px;}
.ls17_c02122{letter-spacing:0.158112px;}
.ls7_c02122{letter-spacing:0.177876px;}
.lsd_c02122{letter-spacing:0.180000px;}
.ls24_c02122{letter-spacing:78.840000px;}
.ls1b_c02122{letter-spacing:79.200000px;}
.ls25_c02122{letter-spacing:96.480000px;}
.ls23_c02122{letter-spacing:104.040000px;}
.ls1a_c02122{letter-spacing:111.960000px;}
.ls30_c02122{letter-spacing:112.320000px;}
.ls26_c02122{letter-spacing:115.200000px;}
.lsb_c02122{letter-spacing:117.360000px;}
.ls6_c02122{letter-spacing:124.920000px;}
.ls1e_c02122{letter-spacing:129.240000px;}
.ls19_c02122{letter-spacing:136.800000px;}
.ls2c_c02122{letter-spacing:137.880000px;}
.ls1f_c02122{letter-spacing:147.960000px;}
.ls1c_c02122{letter-spacing:171.000000px;}
.ls11_c02122{letter-spacing:173.880000px;}
.ls20_c02122{letter-spacing:203.760000px;}
.ls8_c02122{letter-spacing:206.640000px;}
.ls2_c02122{letter-spacing:223.560000px;}
.ls18_c02122{letter-spacing:225.360000px;}
.ls4_c02122{letter-spacing:234.720000px;}
.lse_c02122{letter-spacing:239.760000px;}
.lsc_c02122{letter-spacing:272.880000px;}
.ls10_c02122{letter-spacing:306.000000px;}
.ls36_c02122{letter-spacing:322.200000px;}
.ls2f_c02122{letter-spacing:627.840000px;}
.ls16_c02122{letter-spacing:680.760000px;}
.ls2d_c02122{letter-spacing:691.920000px;}
.ls2b_c02122{letter-spacing:706.320000px;}
.ls31_c02122{letter-spacing:725.040000px;}
.ls22_c02122{letter-spacing:765.360000px;}
.ls29_c02122{letter-spacing:880.920000px;}
.sc__c02122{text-shadow:none;}
.sc0_c02122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02122{-webkit-text-stroke:0px transparent;}
.sc0_c02122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02122{word-spacing:-16.647876px;}
.ws6_c02122{word-spacing:-16.628112px;}
.ws1_c02122{word-spacing:-16.621524px;}
.ws3_c02122{word-spacing:-16.608348px;}
.ws4_c02122{word-spacing:-16.562232px;}
.ws2_c02122{word-spacing:-16.529292px;}
.wse_c02122{word-spacing:-0.138852px;}
.wsd_c02122{word-spacing:-0.108000px;}
.ws9_c02122{word-spacing:-0.021600px;}
.ws8_c02122{word-spacing:0.000000px;}
.ws12_c02122{word-spacing:0.006588px;}
.ws18_c02122{word-spacing:0.013176px;}
.ws7_c02122{word-spacing:0.014400px;}
.ws16_c02122{word-spacing:0.019764px;}
.wsb_c02122{word-spacing:0.026352px;}
.wsa_c02122{word-spacing:0.032940px;}
.wsf_c02122{word-spacing:0.039528px;}
.ws15_c02122{word-spacing:0.046116px;}
.ws14_c02122{word-spacing:0.052704px;}
.ws10_c02122{word-spacing:0.059292px;}
.wsc_c02122{word-spacing:0.072468px;}
.ws17_c02122{word-spacing:0.079056px;}
.ws11_c02122{word-spacing:0.092232px;}
.ws13_c02122{word-spacing:0.105408px;}
.ws5_c02122{word-spacing:164.838348px;}
._3_c02122{margin-left:-1.299708px;}
._6_c02122{width:88.653924px;}
._5_c02122{width:103.132800px;}
._7_c02122{width:106.348788px;}
._4_c02122{width:125.958960px;}
._8_c02122{width:150.742188px;}
._1_c02122{width:183.844656px;}
._0_c02122{width:194.400000px;}
._2_c02122{width:204.827688px;}
._a_c02122{width:242.160444px;}
._9_c02122{width:243.253980px;}
._b_c02122{width:390.512160px;}
.fc0_c02122{color:rgb(0,0,0);}
.fs5_c02122{font-size:11.880000px;}
.fs3_c02122{font-size:47.880000px;}
.fs1_c02122{font-size:54.000000px;}
.fs2_c02122{font-size:60.120000px;}
.fs4_c02122{font-size:65.880000px;}
.fs0_c02122{font-size:72.000000px;}
.y0_c02122{bottom:0.000000px;}
.y3_c02122{bottom:57.360450px;}
.y2_c02122{bottom:78.060450px;}
.y3d_c02122{bottom:113.790600px;}
.y3c_c02122{bottom:120.630690px;}
.y3b_c02122{bottom:139.621125px;}
.y3a_c02122{bottom:158.520450px;}
.y39_c02122{bottom:177.510450px;}
.y38_c02122{bottom:196.500450px;}
.y37_c02122{bottom:215.850540px;}
.y36_c02122{bottom:234.840540px;}
.y35_c02122{bottom:253.830450px;}
.y34_c02122{bottom:272.730450px;}
.y33_c02122{bottom:291.720450px;}
.y32_c02122{bottom:311.070540px;}
.y31_c02122{bottom:330.060540px;}
.y30_c02122{bottom:349.050450px;}
.y2f_c02122{bottom:368.040600px;}
.y2e_c02122{bottom:387.030450px;}
.y2d_c02122{bottom:406.381125px;}
.y2c_c02122{bottom:425.280690px;}
.y2b_c02122{bottom:444.270600px;}
.y2a_c02122{bottom:463.260450px;}
.y29_c02122{bottom:482.250600px;}
.y28_c02122{bottom:501.600690px;}
.y27_c02122{bottom:520.591125px;}
.y26_c02122{bottom:539.490450px;}
.y25_c02122{bottom:558.480450px;}
.y24_c02122{bottom:577.470450px;}
.y23_c02122{bottom:596.820540px;}
.y22_c02122{bottom:615.810540px;}
.y21_c02122{bottom:634.800450px;}
.y20_c02122{bottom:653.700450px;}
.y1f_c02122{bottom:672.690450px;}
.y1e_c02122{bottom:692.040540px;}
.y1d_c02122{bottom:711.030540px;}
.y1c_c02122{bottom:730.020450px;}
.y1b_c02122{bottom:749.010450px;}
.y1a_c02122{bottom:768.000450px;}
.y19_c02122{bottom:787.260540px;}
.y18_c02122{bottom:806.250540px;}
.y17_c02122{bottom:825.240450px;}
.y16_c02122{bottom:844.230450px;}
.y15_c02122{bottom:863.220450px;}
.y13_c02122{bottom:881.490450px;}
.y14_c02122{bottom:895.350450px;}
.y12_c02122{bottom:910.830450px;}
.y11_c02122{bottom:932.430162px;}
.y10_c02122{bottom:946.200450px;}
.yf_c02122{bottom:962.579955px;}
.ye_c02122{bottom:981.570540px;}
.yd_c02122{bottom:1000.470450px;}
.yc_c02122{bottom:1019.460450px;}
.yb_c02122{bottom:1040.160450px;}
.ya_c02122{bottom:1060.860450px;}
.y9_c02122{bottom:1080.300450px;}
.y7_c02122{bottom:1081.020450px;}
.y8_c02122{bottom:1094.160450px;}
.y6_c02122{bottom:1098.930450px;}
.y5_c02122{bottom:1122.060450px;}
.y4_c02122{bottom:1139.250450px;}
.y1_c02122{bottom:1193.160450px;}
.hc_c02122{height:10.551621px;}
.h5_c02122{height:42.526230px;}
.h3_c02122{height:47.961914px;}
.h4_c02122{height:53.397598px;}
.h8_c02122{height:58.513535px;}
.h2_c02122{height:63.175781px;}
.hb_c02122{height:63.946519px;}
.h9_c02122{height:63.947119px;}
.ha_c02122{height:63.948259px;}
.h6_c02122{height:63.948859px;}
.h1_c02122{height:63.949219px;}
.h7_c02122{height:63.951199px;}
.h0_c02122{height:1263.000000px;}
.w1_c02122{width:892.500000px;}
.w0_c02122{width:892.830000px;}
.x0_c02122{left:0.000000px;}
.x1_c02122{left:127.620000px;}
.x3_c02122{left:135.630000px;}
.x6_c02122{left:153.720000px;}
.x8_c02122{left:329.850000px;}
.x7_c02122{left:339.570000px;}
.x5_c02122{left:398.970000px;}
.x4_c02122{left:408.690000px;}
.x2_c02122{left:437.580000px;}
.x9_c02122{left:552.150000px;}
.xa_c02122{left:701.010000px;}
@media print{
.v2_c02122{vertical-align:-4.480000pt;}
.v1_c02122{vertical-align:-2.560000pt;}
.v0_c02122{vertical-align:0.000000pt;}
.ls35_c02122{letter-spacing:-0.076608pt;}
.ls3a_c02122{letter-spacing:-0.038304pt;}
.ls38_c02122{letter-spacing:-0.021280pt;}
.ls32_c02122{letter-spacing:-0.012800pt;}
.ls3c_c02122{letter-spacing:-0.011712pt;}
.ls33_c02122{letter-spacing:0.000000pt;}
.ls12_c02122{letter-spacing:0.004256pt;}
.ls0_c02122{letter-spacing:0.005344pt;}
.ls37_c02122{letter-spacing:0.006400pt;}
.ls28_c02122{letter-spacing:0.011712pt;}
.ls5_c02122{letter-spacing:0.017568pt;}
.ls34_c02122{letter-spacing:0.019200pt;}
.ls15_c02122{letter-spacing:0.029280pt;}
.ls13_c02122{letter-spacing:0.029792pt;}
.ls21_c02122{letter-spacing:0.035136pt;}
.ls2e_c02122{letter-spacing:0.040992pt;}
.ls39_c02122{letter-spacing:0.042560pt;}
.ls14_c02122{letter-spacing:0.046848pt;}
.ls1_c02122{letter-spacing:0.052704pt;}
.ls3_c02122{letter-spacing:0.058560pt;}
.ls27_c02122{letter-spacing:0.064416pt;}
.ls2a_c02122{letter-spacing:0.070272pt;}
.ls1d_c02122{letter-spacing:0.076128pt;}
.ls3b_c02122{letter-spacing:0.080864pt;}
.lsa_c02122{letter-spacing:0.081984pt;}
.lsf_c02122{letter-spacing:0.122976pt;}
.ls9_c02122{letter-spacing:0.134688pt;}
.ls17_c02122{letter-spacing:0.140544pt;}
.ls7_c02122{letter-spacing:0.158112pt;}
.lsd_c02122{letter-spacing:0.160000pt;}
.ls24_c02122{letter-spacing:70.080000pt;}
.ls1b_c02122{letter-spacing:70.400000pt;}
.ls25_c02122{letter-spacing:85.760000pt;}
.ls23_c02122{letter-spacing:92.480000pt;}
.ls1a_c02122{letter-spacing:99.520000pt;}
.ls30_c02122{letter-spacing:99.840000pt;}
.ls26_c02122{letter-spacing:102.400000pt;}
.lsb_c02122{letter-spacing:104.320000pt;}
.ls6_c02122{letter-spacing:111.040000pt;}
.ls1e_c02122{letter-spacing:114.880000pt;}
.ls19_c02122{letter-spacing:121.600000pt;}
.ls2c_c02122{letter-spacing:122.560000pt;}
.ls1f_c02122{letter-spacing:131.520000pt;}
.ls1c_c02122{letter-spacing:152.000000pt;}
.ls11_c02122{letter-spacing:154.560000pt;}
.ls20_c02122{letter-spacing:181.120000pt;}
.ls8_c02122{letter-spacing:183.680000pt;}
.ls2_c02122{letter-spacing:198.720000pt;}
.ls18_c02122{letter-spacing:200.320000pt;}
.ls4_c02122{letter-spacing:208.640000pt;}
.lse_c02122{letter-spacing:213.120000pt;}
.lsc_c02122{letter-spacing:242.560000pt;}
.ls10_c02122{letter-spacing:272.000000pt;}
.ls36_c02122{letter-spacing:286.400000pt;}
.ls2f_c02122{letter-spacing:558.080000pt;}
.ls16_c02122{letter-spacing:605.120000pt;}
.ls2d_c02122{letter-spacing:615.040000pt;}
.ls2b_c02122{letter-spacing:627.840000pt;}
.ls31_c02122{letter-spacing:644.480000pt;}
.ls22_c02122{letter-spacing:680.320000pt;}
.ls29_c02122{letter-spacing:783.040000pt;}
.ws0_c02122{word-spacing:-14.798112pt;}
.ws6_c02122{word-spacing:-14.780544pt;}
.ws1_c02122{word-spacing:-14.774688pt;}
.ws3_c02122{word-spacing:-14.762976pt;}
.ws4_c02122{word-spacing:-14.721984pt;}
.ws2_c02122{word-spacing:-14.692704pt;}
.wse_c02122{word-spacing:-0.123424pt;}
.wsd_c02122{word-spacing:-0.096000pt;}
.ws9_c02122{word-spacing:-0.019200pt;}
.ws8_c02122{word-spacing:0.000000pt;}
.ws12_c02122{word-spacing:0.005856pt;}
.ws18_c02122{word-spacing:0.011712pt;}
.ws7_c02122{word-spacing:0.012800pt;}
.ws16_c02122{word-spacing:0.017568pt;}
.wsb_c02122{word-spacing:0.023424pt;}
.wsa_c02122{word-spacing:0.029280pt;}
.wsf_c02122{word-spacing:0.035136pt;}
.ws15_c02122{word-spacing:0.040992pt;}
.ws14_c02122{word-spacing:0.046848pt;}
.ws10_c02122{word-spacing:0.052704pt;}
.wsc_c02122{word-spacing:0.064416pt;}
.ws17_c02122{word-spacing:0.070272pt;}
.ws11_c02122{word-spacing:0.081984pt;}
.ws13_c02122{word-spacing:0.093696pt;}
.ws5_c02122{word-spacing:146.522976pt;}
._3_c02122{margin-left:-1.155296pt;}
._6_c02122{width:78.803488pt;}
._5_c02122{width:91.673600pt;}
._7_c02122{width:94.532256pt;}
._4_c02122{width:111.963520pt;}
._8_c02122{width:133.993056pt;}
._1_c02122{width:163.417472pt;}
._0_c02122{width:172.800000pt;}
._2_c02122{width:182.069056pt;}
._a_c02122{width:215.253728pt;}
._9_c02122{width:216.225760pt;}
._b_c02122{width:347.121920pt;}
.fs5_c02122{font-size:10.560000pt;}
.fs3_c02122{font-size:42.560000pt;}
.fs1_c02122{font-size:48.000000pt;}
.fs2_c02122{font-size:53.440000pt;}
.fs4_c02122{font-size:58.560000pt;}
.fs0_c02122{font-size:64.000000pt;}
.y0_c02122{bottom:0.000000pt;}
.y3_c02122{bottom:50.987067pt;}
.y2_c02122{bottom:69.387067pt;}
.y3d_c02122{bottom:101.147200pt;}
.y3c_c02122{bottom:107.227280pt;}
.y3b_c02122{bottom:124.107667pt;}
.y3a_c02122{bottom:140.907067pt;}
.y39_c02122{bottom:157.787067pt;}
.y38_c02122{bottom:174.667067pt;}
.y37_c02122{bottom:191.867147pt;}
.y36_c02122{bottom:208.747147pt;}
.y35_c02122{bottom:225.627067pt;}
.y34_c02122{bottom:242.427067pt;}
.y33_c02122{bottom:259.307067pt;}
.y32_c02122{bottom:276.507147pt;}
.y31_c02122{bottom:293.387147pt;}
.y30_c02122{bottom:310.267067pt;}
.y2f_c02122{bottom:327.147200pt;}
.y2e_c02122{bottom:344.027067pt;}
.y2d_c02122{bottom:361.227667pt;}
.y2c_c02122{bottom:378.027280pt;}
.y2b_c02122{bottom:394.907200pt;}
.y2a_c02122{bottom:411.787067pt;}
.y29_c02122{bottom:428.667200pt;}
.y28_c02122{bottom:445.867280pt;}
.y27_c02122{bottom:462.747667pt;}
.y26_c02122{bottom:479.547067pt;}
.y25_c02122{bottom:496.427067pt;}
.y24_c02122{bottom:513.307067pt;}
.y23_c02122{bottom:530.507147pt;}
.y22_c02122{bottom:547.387147pt;}
.y21_c02122{bottom:564.267067pt;}
.y20_c02122{bottom:581.067067pt;}
.y1f_c02122{bottom:597.947067pt;}
.y1e_c02122{bottom:615.147147pt;}
.y1d_c02122{bottom:632.027147pt;}
.y1c_c02122{bottom:648.907067pt;}
.y1b_c02122{bottom:665.787067pt;}
.y1a_c02122{bottom:682.667067pt;}
.y19_c02122{bottom:699.787147pt;}
.y18_c02122{bottom:716.667147pt;}
.y17_c02122{bottom:733.547067pt;}
.y16_c02122{bottom:750.427067pt;}
.y15_c02122{bottom:767.307067pt;}
.y13_c02122{bottom:783.547067pt;}
.y14_c02122{bottom:795.867067pt;}
.y12_c02122{bottom:809.627067pt;}
.y11_c02122{bottom:828.826811pt;}
.y10_c02122{bottom:841.067067pt;}
.yf_c02122{bottom:855.626627pt;}
.ye_c02122{bottom:872.507147pt;}
.yd_c02122{bottom:889.307067pt;}
.yc_c02122{bottom:906.187067pt;}
.yb_c02122{bottom:924.587067pt;}
.ya_c02122{bottom:942.987067pt;}
.y9_c02122{bottom:960.267067pt;}
.y7_c02122{bottom:960.907067pt;}
.y8_c02122{bottom:972.587067pt;}
.y6_c02122{bottom:976.827067pt;}
.y5_c02122{bottom:997.387067pt;}
.y4_c02122{bottom:1012.667067pt;}
.y1_c02122{bottom:1060.587067pt;}
.hc_c02122{height:9.379219pt;}
.h5_c02122{height:37.801094pt;}
.h3_c02122{height:42.632812pt;}
.h4_c02122{height:47.464531pt;}
.h8_c02122{height:52.012031pt;}
.h2_c02122{height:56.156250pt;}
.hb_c02122{height:56.841350pt;}
.h9_c02122{height:56.841883pt;}
.ha_c02122{height:56.842897pt;}
.h6_c02122{height:56.843430pt;}
.h1_c02122{height:56.843750pt;}
.h7_c02122{height:56.845510pt;}
.h0_c02122{height:1122.666667pt;}
.w1_c02122{width:793.333333pt;}
.w0_c02122{width:793.626667pt;}
.x0_c02122{left:0.000000pt;}
.x1_c02122{left:113.440000pt;}
.x3_c02122{left:120.560000pt;}
.x6_c02122{left:136.640000pt;}
.x8_c02122{left:293.200000pt;}
.x7_c02122{left:301.840000pt;}
.x5_c02122{left:354.640000pt;}
.x4_c02122{left:363.280000pt;}
.x2_c02122{left:388.960000pt;}
.x9_c02122{left:490.800000pt;}
.xa_c02122{left:623.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_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_c8a314ff4c631fa818b79515.woff2')format("woff");}.ff1_c02123{font-family:ff1_c02123;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02123;src:url('chunks/assets/font_2f86d55d9ec0ee89bf724123.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;}
.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);}
.v4_c02123{vertical-align:-22.320600px;}
.v3_c02123{vertical-align:-16.920000px;}
.v0_c02123{vertical-align:0.000000px;}
.v2_c02123{vertical-align:1.440000px;}
.v1_c02123{vertical-align:51.120000px;}
.ls30_c02123{letter-spacing:-0.181116px;}
.ls2f_c02123{letter-spacing:-0.180360px;}
.ls2e_c02123{letter-spacing:-0.176904px;}
.ls26_c02123{letter-spacing:-0.043092px;}
.ls2b_c02123{letter-spacing:-0.032940px;}
.ls2d_c02123{letter-spacing:-0.021600px;}
.ls22_c02123{letter-spacing:-0.014400px;}
.ls2a_c02123{letter-spacing:-0.013176px;}
.ls29_c02123{letter-spacing:-0.007200px;}
.ls23_c02123{letter-spacing:0.000000px;}
.ls20_c02123{letter-spacing:0.006588px;}
.ls11_c02123{letter-spacing:0.007200px;}
.ls0_c02123{letter-spacing:0.019764px;}
.ls10_c02123{letter-spacing:0.026352px;}
.ls19_c02123{letter-spacing:0.028800px;}
.ls2_c02123{letter-spacing:0.032940px;}
.ls3_c02123{letter-spacing:0.033516px;}
.ls1_c02123{letter-spacing:0.036000px;}
.ls5_c02123{letter-spacing:0.039528px;}
.ls24_c02123{letter-spacing:0.046116px;}
.ls1a_c02123{letter-spacing:0.050400px;}
.lsf_c02123{letter-spacing:0.052704px;}
.lsb_c02123{letter-spacing:0.059292px;}
.ls28_c02123{letter-spacing:0.065880px;}
.ls25_c02123{letter-spacing:0.067032px;}
.ls2c_c02123{letter-spacing:0.078156px;}
.ls4_c02123{letter-spacing:0.079056px;}
.lsa_c02123{letter-spacing:0.085644px;}
.ls27_c02123{letter-spacing:0.090972px;}
.lse_c02123{letter-spacing:0.092232px;}
.lsd_c02123{letter-spacing:0.098820px;}
.lsc_c02123{letter-spacing:0.118584px;}
.ls16_c02123{letter-spacing:0.131760px;}
.ls18_c02123{letter-spacing:0.144288px;}
.ls8_c02123{letter-spacing:0.158112px;}
.ls6_c02123{letter-spacing:0.177876px;}
.ls1d_c02123{letter-spacing:0.178164px;}
.ls1c_c02123{letter-spacing:34.065360px;}
.ls1f_c02123{letter-spacing:34.560000px;}
.ls1e_c02123{letter-spacing:36.360000px;}
.ls21_c02123{letter-spacing:38.160000px;}
.ls12_c02123{letter-spacing:64.080000px;}
.ls7_c02123{letter-spacing:79.200000px;}
.ls15_c02123{letter-spacing:99.720000px;}
.ls13_c02123{letter-spacing:113.760000px;}
.ls14_c02123{letter-spacing:128.520000px;}
.ls9_c02123{letter-spacing:140.040000px;}
.ls17_c02123{letter-spacing:444.960000px;}
.ls1b_c02123{letter-spacing:1378.440000px;}
.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;}
}
.ws1_c02123{word-spacing:-16.628112px;}
.ws7_c02123{word-spacing:-16.601760px;}
.ws4_c02123{word-spacing:-16.568820px;}
.ws8_c02123{word-spacing:-16.529292px;}
.ws3_c02123{word-spacing:-16.509528px;}
.ws6_c02123{word-spacing:-16.437060px;}
.ws1d_c02123{word-spacing:-0.208800px;}
.ws1e_c02123{word-spacing:-0.115200px;}
.wsd_c02123{word-spacing:-0.093600px;}
.ws1f_c02123{word-spacing:-0.086400px;}
.ws14_c02123{word-spacing:-0.026352px;}
.ws18_c02123{word-spacing:-0.007200px;}
.ws15_c02123{word-spacing:-0.006588px;}
.wsa_c02123{word-spacing:0.000000px;}
.ws12_c02123{word-spacing:0.006588px;}
.ws19_c02123{word-spacing:0.007200px;}
.ws1b_c02123{word-spacing:0.012024px;}
.wsf_c02123{word-spacing:0.013176px;}
.ws9_c02123{word-spacing:0.014400px;}
.ws1c_c02123{word-spacing:0.021600px;}
.ws11_c02123{word-spacing:0.026352px;}
.ws13_c02123{word-spacing:0.032940px;}
.ws16_c02123{word-spacing:0.039528px;}
.wsc_c02123{word-spacing:0.046116px;}
.ws10_c02123{word-spacing:0.052704px;}
.wse_c02123{word-spacing:0.059292px;}
.ws17_c02123{word-spacing:0.065880px;}
.wsb_c02123{word-spacing:0.072468px;}
.ws21_c02123{word-spacing:0.085644px;}
.ws20_c02123{word-spacing:40.232304px;}
.ws5_c02123{word-spacing:96.810048px;}
.ws2_c02123{word-spacing:141.034068px;}
.ws0_c02123{word-spacing:141.040656px;}
.ws1a_c02123{word-spacing:272.160000px;}
._f_c02123{margin-left:-28.800000px;}
._1_c02123{margin-left:-1.260000px;}
._16_c02123{width:39.870720px;}
._17_c02123{width:40.950720px;}
._18_c02123{width:55.174464px;}
._3_c02123{width:70.102188px;}
._15_c02123{width:73.850472px;}
._c_c02123{width:133.131852px;}
._0_c02123{width:194.400000px;}
._4_c02123{width:231.897600px;}
._e_c02123{width:261.720000px;}
._6_c02123{width:282.493440px;}
._b_c02123{width:373.309020px;}
._5_c02123{width:387.651096px;}
._8_c02123{width:450.171216px;}
._a_c02123{width:454.519296px;}
._9_c02123{width:499.278168px;}
._7_c02123{width:545.703804px;}
._d_c02123{width:601.615440px;}
._19_c02123{width:612.051912px;}
._2_c02123{width:694.794384px;}
._1b_c02123{width:1113.120324px;}
._1a_c02123{width:1307.512440px;}
._12_c02123{width:1362.960000px;}
._13_c02123{width:1498.586400px;}
._11_c02123{width:1629.237600px;}
._10_c02123{width:1882.693620px;}
._14_c02123{width:2268.561600px;}
.fc0_c02123{color:rgb(0,0,0);}
.fs4_c02123{font-size:29.880000px;}
.fs6_c02123{font-size:42.120000px;}
.fs2_c02123{font-size:47.880000px;}
.fs3_c02123{font-size:54.000000px;}
.fs5_c02123{font-size:60.120000px;}
.fs1_c02123{font-size:65.880000px;}
.fs0_c02123{font-size:72.000000px;}
.y0_c02123{bottom:0.000000px;}
.y3_c02123{bottom:57.360450px;}
.y2_c02123{bottom:78.060450px;}
.y3b_c02123{bottom:134.760450px;}
.y3a_c02123{bottom:165.810450px;}
.y39_c02123{bottom:186.510450px;}
.y38_c02123{bottom:207.210450px;}
.y37_c02123{bottom:227.910450px;}
.y36_c02123{bottom:247.260387px;}
.y35_c02123{bottom:261.120450px;}
.y34_c02123{bottom:282.450450px;}
.y33_c02123{bottom:302.160450px;}
.y31_c02123{bottom:316.200630px;}
.y30_c02123{bottom:335.190540px;}
.y32_c02123{bottom:354.089865px;}
.y2f_c02123{bottom:359.850450px;}
.y2e_c02123{bottom:379.560450px;}
.y2d_c02123{bottom:399.090600px;}
.y2c_c02123{bottom:413.490450px;}
.y2b_c02123{bottom:433.650162px;}
.y2a_c02123{bottom:447.420450px;}
.y29_c02123{bottom:463.350450px;}
.y28_c02123{bottom:484.770600px;}
.y27_c02123{bottom:506.190600px;}
.y26_c02123{bottom:527.700450px;}
.y25_c02123{bottom:549.120450px;}
.y24_c02123{bottom:569.910450px;}
.y23_c02123{bottom:588.540450px;}
.y22_c02123{bottom:609.780450px;}
.y21_c02123{bottom:631.200450px;}
.y20_c02123{bottom:651.180450px;}
.y1f_c02123{bottom:671.880450px;}
.y1e_c02123{bottom:692.400450px;}
.y1d_c02123{bottom:706.800288px;}
.y1c_c02123{bottom:715.350450px;}
.y1b_c02123{bottom:726.870450px;}
.y1a_c02123{bottom:747.390000px;}
.y19_c02123{bottom:762.870450px;}
.y18_c02123{bottom:779.790600px;}
.y17_c02123{bottom:798.780450px;}
.y16_c02123{bottom:818.490450px;}
.y15_c02123{bottom:837.480450px;}
.y14_c02123{bottom:857.190450px;}
.y13_c02123{bottom:876.180600px;}
.y12_c02123{bottom:895.890450px;}
.y11_c02123{bottom:914.880450px;}
.y10_c02123{bottom:934.590450px;}
.yf_c02123{bottom:953.580450px;}
.ye_c02123{bottom:973.290600px;}
.yd_c02123{bottom:992.280450px;}
.yc_c02123{bottom:1011.990450px;}
.yb_c02123{bottom:1030.980450px;}
.ya_c02123{bottom:1050.690450px;}
.y9_c02123{bottom:1069.680450px;}
.y7_c02123{bottom:1088.310450px;}
.y6_c02123{bottom:1089.390450px;}
.y8_c02123{bottom:1102.170450px;}
.y5_c02123{bottom:1118.730450px;}
.y4_c02123{bottom:1139.160450px;}
.y1_c02123{bottom:1193.160450px;}
.h7_c02123{height:26.217949px;}
.hc_c02123{height:36.957832px;}
.hb_c02123{height:40.909219px;}
.ha_c02123{height:41.628619px;}
.h5_c02123{height:42.526230px;}
.h6_c02123{height:47.961914px;}
.h9_c02123{height:53.397598px;}
.hd_c02123{height:57.805840px;}
.h3_c02123{height:58.513535px;}
.h2_c02123{height:63.175781px;}
.h1_c02123{height:63.949219px;}
.he_c02123{height:63.951559px;}
.h8_c02123{height:64.615781px;}
.h4_c02123{height:93.646230px;}
.h0_c02123{height:1263.000000px;}
.w1_c02123{width:892.500000px;}
.w0_c02123{width:892.830000px;}
.x0_c02123{left:0.000000px;}
.x1_c02123{left:127.620000px;}
.x3_c02123{left:135.630000px;}
.xa_c02123{left:137.520000px;}
.x8_c02123{left:263.430000px;}
.xc_c02123{left:273.870000px;}
.x9_c02123{left:315.450000px;}
.xb_c02123{left:335.160000px;}
.x2_c02123{left:437.580000px;}
.x4_c02123{left:552.600000px;}
.x6_c02123{left:605.790000px;}
.x5_c02123{left:607.140000px;}
.xd_c02123{left:699.120459px;}
.x7_c02123{left:713.520000px;}
@media print{
.v4_c02123{vertical-align:-19.840533pt;}
.v3_c02123{vertical-align:-15.040000pt;}
.v0_c02123{vertical-align:0.000000pt;}
.v2_c02123{vertical-align:1.280000pt;}
.v1_c02123{vertical-align:45.440000pt;}
.ls30_c02123{letter-spacing:-0.160992pt;}
.ls2f_c02123{letter-spacing:-0.160320pt;}
.ls2e_c02123{letter-spacing:-0.157248pt;}
.ls26_c02123{letter-spacing:-0.038304pt;}
.ls2b_c02123{letter-spacing:-0.029280pt;}
.ls2d_c02123{letter-spacing:-0.019200pt;}
.ls22_c02123{letter-spacing:-0.012800pt;}
.ls2a_c02123{letter-spacing:-0.011712pt;}
.ls29_c02123{letter-spacing:-0.006400pt;}
.ls23_c02123{letter-spacing:0.000000pt;}
.ls20_c02123{letter-spacing:0.005856pt;}
.ls11_c02123{letter-spacing:0.006400pt;}
.ls0_c02123{letter-spacing:0.017568pt;}
.ls10_c02123{letter-spacing:0.023424pt;}
.ls19_c02123{letter-spacing:0.025600pt;}
.ls2_c02123{letter-spacing:0.029280pt;}
.ls3_c02123{letter-spacing:0.029792pt;}
.ls1_c02123{letter-spacing:0.032000pt;}
.ls5_c02123{letter-spacing:0.035136pt;}
.ls24_c02123{letter-spacing:0.040992pt;}
.ls1a_c02123{letter-spacing:0.044800pt;}
.lsf_c02123{letter-spacing:0.046848pt;}
.lsb_c02123{letter-spacing:0.052704pt;}
.ls28_c02123{letter-spacing:0.058560pt;}
.ls25_c02123{letter-spacing:0.059584pt;}
.ls2c_c02123{letter-spacing:0.069472pt;}
.ls4_c02123{letter-spacing:0.070272pt;}
.lsa_c02123{letter-spacing:0.076128pt;}
.ls27_c02123{letter-spacing:0.080864pt;}
.lse_c02123{letter-spacing:0.081984pt;}
.lsd_c02123{letter-spacing:0.087840pt;}
.lsc_c02123{letter-spacing:0.105408pt;}
.ls16_c02123{letter-spacing:0.117120pt;}
.ls18_c02123{letter-spacing:0.128256pt;}
.ls8_c02123{letter-spacing:0.140544pt;}
.ls6_c02123{letter-spacing:0.158112pt;}
.ls1d_c02123{letter-spacing:0.158368pt;}
.ls1c_c02123{letter-spacing:30.280320pt;}
.ls1f_c02123{letter-spacing:30.720000pt;}
.ls1e_c02123{letter-spacing:32.320000pt;}
.ls21_c02123{letter-spacing:33.920000pt;}
.ls12_c02123{letter-spacing:56.960000pt;}
.ls7_c02123{letter-spacing:70.400000pt;}
.ls15_c02123{letter-spacing:88.640000pt;}
.ls13_c02123{letter-spacing:101.120000pt;}
.ls14_c02123{letter-spacing:114.240000pt;}
.ls9_c02123{letter-spacing:124.480000pt;}
.ls17_c02123{letter-spacing:395.520000pt;}
.ls1b_c02123{letter-spacing:1225.280000pt;}
.ws1_c02123{word-spacing:-14.780544pt;}
.ws7_c02123{word-spacing:-14.757120pt;}
.ws4_c02123{word-spacing:-14.727840pt;}
.ws8_c02123{word-spacing:-14.692704pt;}
.ws3_c02123{word-spacing:-14.675136pt;}
.ws6_c02123{word-spacing:-14.610720pt;}
.ws1d_c02123{word-spacing:-0.185600pt;}
.ws1e_c02123{word-spacing:-0.102400pt;}
.wsd_c02123{word-spacing:-0.083200pt;}
.ws1f_c02123{word-spacing:-0.076800pt;}
.ws14_c02123{word-spacing:-0.023424pt;}
.ws18_c02123{word-spacing:-0.006400pt;}
.ws15_c02123{word-spacing:-0.005856pt;}
.wsa_c02123{word-spacing:0.000000pt;}
.ws12_c02123{word-spacing:0.005856pt;}
.ws19_c02123{word-spacing:0.006400pt;}
.ws1b_c02123{word-spacing:0.010688pt;}
.wsf_c02123{word-spacing:0.011712pt;}
.ws9_c02123{word-spacing:0.012800pt;}
.ws1c_c02123{word-spacing:0.019200pt;}
.ws11_c02123{word-spacing:0.023424pt;}
.ws13_c02123{word-spacing:0.029280pt;}
.ws16_c02123{word-spacing:0.035136pt;}
.wsc_c02123{word-spacing:0.040992pt;}
.ws10_c02123{word-spacing:0.046848pt;}
.wse_c02123{word-spacing:0.052704pt;}
.ws17_c02123{word-spacing:0.058560pt;}
.wsb_c02123{word-spacing:0.064416pt;}
.ws21_c02123{word-spacing:0.076128pt;}
.ws20_c02123{word-spacing:35.762048pt;}
.ws5_c02123{word-spacing:86.053376pt;}
.ws2_c02123{word-spacing:125.363616pt;}
.ws0_c02123{word-spacing:125.369472pt;}
.ws1a_c02123{word-spacing:241.920000pt;}
._f_c02123{margin-left:-25.600000pt;}
._1_c02123{margin-left:-1.120000pt;}
._16_c02123{width:35.440640pt;}
._17_c02123{width:36.400640pt;}
._18_c02123{width:49.043968pt;}
._3_c02123{width:62.313056pt;}
._15_c02123{width:65.644864pt;}
._c_c02123{width:118.339424pt;}
._0_c02123{width:172.800000pt;}
._4_c02123{width:206.131200pt;}
._e_c02123{width:232.640000pt;}
._6_c02123{width:251.105280pt;}
._b_c02123{width:331.830240pt;}
._5_c02123{width:344.578752pt;}
._8_c02123{width:400.152192pt;}
._a_c02123{width:404.017152pt;}
._9_c02123{width:443.802816pt;}
._7_c02123{width:485.070048pt;}
._d_c02123{width:534.769280pt;}
._19_c02123{width:544.046144pt;}
._2_c02123{width:617.595008pt;}
._1b_c02123{width:989.440288pt;}
._1a_c02123{width:1162.233280pt;}
._12_c02123{width:1211.520000pt;}
._13_c02123{width:1332.076800pt;}
._11_c02123{width:1448.211200pt;}
._10_c02123{width:1673.505440pt;}
._14_c02123{width:2016.499200pt;}
.fs4_c02123{font-size:26.560000pt;}
.fs6_c02123{font-size:37.440000pt;}
.fs2_c02123{font-size:42.560000pt;}
.fs3_c02123{font-size:48.000000pt;}
.fs5_c02123{font-size:53.440000pt;}
.fs1_c02123{font-size:58.560000pt;}
.fs0_c02123{font-size:64.000000pt;}
.y0_c02123{bottom:0.000000pt;}
.y3_c02123{bottom:50.987067pt;}
.y2_c02123{bottom:69.387067pt;}
.y3b_c02123{bottom:119.787067pt;}
.y3a_c02123{bottom:147.387067pt;}
.y39_c02123{bottom:165.787067pt;}
.y38_c02123{bottom:184.187067pt;}
.y37_c02123{bottom:202.587067pt;}
.y36_c02123{bottom:219.787011pt;}
.y35_c02123{bottom:232.107067pt;}
.y34_c02123{bottom:251.067067pt;}
.y33_c02123{bottom:268.587067pt;}
.y31_c02123{bottom:281.067227pt;}
.y30_c02123{bottom:297.947147pt;}
.y32_c02123{bottom:314.746547pt;}
.y2f_c02123{bottom:319.867067pt;}
.y2e_c02123{bottom:337.387067pt;}
.y2d_c02123{bottom:354.747200pt;}
.y2c_c02123{bottom:367.547067pt;}
.y2b_c02123{bottom:385.466811pt;}
.y2a_c02123{bottom:397.707067pt;}
.y29_c02123{bottom:411.867067pt;}
.y28_c02123{bottom:430.907200pt;}
.y27_c02123{bottom:449.947200pt;}
.y26_c02123{bottom:469.067067pt;}
.y25_c02123{bottom:488.107067pt;}
.y24_c02123{bottom:506.587067pt;}
.y23_c02123{bottom:523.147067pt;}
.y22_c02123{bottom:542.027067pt;}
.y21_c02123{bottom:561.067067pt;}
.y20_c02123{bottom:578.827067pt;}
.y1f_c02123{bottom:597.227067pt;}
.y1e_c02123{bottom:615.467067pt;}
.y1d_c02123{bottom:628.266923pt;}
.y1c_c02123{bottom:635.867067pt;}
.y1b_c02123{bottom:646.107067pt;}
.y1a_c02123{bottom:664.346667pt;}
.y19_c02123{bottom:678.107067pt;}
.y18_c02123{bottom:693.147200pt;}
.y17_c02123{bottom:710.027067pt;}
.y16_c02123{bottom:727.547067pt;}
.y15_c02123{bottom:744.427067pt;}
.y14_c02123{bottom:761.947067pt;}
.y13_c02123{bottom:778.827200pt;}
.y12_c02123{bottom:796.347067pt;}
.y11_c02123{bottom:813.227067pt;}
.y10_c02123{bottom:830.747067pt;}
.yf_c02123{bottom:847.627067pt;}
.ye_c02123{bottom:865.147200pt;}
.yd_c02123{bottom:882.027067pt;}
.yc_c02123{bottom:899.547067pt;}
.yb_c02123{bottom:916.427067pt;}
.ya_c02123{bottom:933.947067pt;}
.y9_c02123{bottom:950.827067pt;}
.y7_c02123{bottom:967.387067pt;}
.y6_c02123{bottom:968.347067pt;}
.y8_c02123{bottom:979.707067pt;}
.y5_c02123{bottom:994.427067pt;}
.y4_c02123{bottom:1012.587067pt;}
.y1_c02123{bottom:1060.587067pt;}
.h7_c02123{height:23.304844pt;}
.hc_c02123{height:32.851406pt;}
.hb_c02123{height:36.363750pt;}
.ha_c02123{height:37.003217pt;}
.h5_c02123{height:37.801094pt;}
.h6_c02123{height:42.632812pt;}
.h9_c02123{height:47.464531pt;}
.hd_c02123{height:51.382969pt;}
.h3_c02123{height:52.012031pt;}
.h2_c02123{height:56.156250pt;}
.h1_c02123{height:56.843750pt;}
.he_c02123{height:56.845830pt;}
.h8_c02123{height:57.436250pt;}
.h4_c02123{height:83.241094pt;}
.h0_c02123{height:1122.666667pt;}
.w1_c02123{width:793.333333pt;}
.w0_c02123{width:793.626667pt;}
.x0_c02123{left:0.000000pt;}
.x1_c02123{left:113.440000pt;}
.x3_c02123{left:120.560000pt;}
.xa_c02123{left:122.240000pt;}
.x8_c02123{left:234.160000pt;}
.xc_c02123{left:243.440000pt;}
.x9_c02123{left:280.400000pt;}
.xb_c02123{left:297.920000pt;}
.x2_c02123{left:388.960000pt;}
.x4_c02123{left:491.200000pt;}
.x6_c02123{left:538.480000pt;}
.x5_c02123{left:539.680000pt;}
.xd_c02123{left:621.440408pt;}
.x7_c02123{left:634.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_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_029eb871052db1162f7d8535.woff2')format("woff");}.ff1_c02124{font-family:ff1_c02124;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02124;src:url('chunks/assets/font_4dc402879c27716a6e202e5e.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_5a6fe03f70d9ab9265690e16.woff2')format("woff");}.ff3_c02124{font-family:ff3_c02124;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_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;}
.ls9_c02124{letter-spacing:-0.014400px;}
.lsa_c02124{letter-spacing:0.000000px;}
.ls0_c02124{letter-spacing:0.007200px;}
.lsb_c02124{letter-spacing:0.014400px;}
.ls5_c02124{letter-spacing:0.021600px;}
.ls1_c02124{letter-spacing:0.028800px;}
.ls8_c02124{letter-spacing:0.036000px;}
.ls6_c02124{letter-spacing:0.043200px;}
.ls3_c02124{letter-spacing:0.050400px;}
.ls2_c02124{letter-spacing:0.057600px;}
.ls4_c02124{letter-spacing:0.064800px;}
.ls7_c02124{letter-spacing:0.093600px;}
.sc__c02124{text-shadow:none;}
.sc0_c02124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02124{-webkit-text-stroke:0px transparent;}
.sc0_c02124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02124{word-spacing:-18.000000px;}
.ws4_c02124{word-spacing:-0.115200px;}
.ws3_c02124{word-spacing:-0.007200px;}
.ws2_c02124{word-spacing:0.000000px;}
.ws1_c02124{word-spacing:0.014400px;}
.ws13_c02124{word-spacing:0.568800px;}
.ws12_c02124{word-spacing:0.691200px;}
.ws9_c02124{word-spacing:1.771200px;}
.ws5_c02124{word-spacing:4.651200px;}
.ws6_c02124{word-spacing:4.658400px;}
.ws10_c02124{word-spacing:7.113600px;}
.ws11_c02124{word-spacing:7.142400px;}
.wsc_c02124{word-spacing:7.516800px;}
.wsf_c02124{word-spacing:8.532000px;}
.wsd_c02124{word-spacing:8.589600px;}
.wse_c02124{word-spacing:8.654400px;}
.ws18_c02124{word-spacing:10.720800px;}
.ws17_c02124{word-spacing:10.756800px;}
.ws16_c02124{word-spacing:10.771200px;}
.wsa_c02124{word-spacing:12.895200px;}
.wsb_c02124{word-spacing:12.938400px;}
.ws8_c02124{word-spacing:13.989600px;}
.ws14_c02124{word-spacing:21.578400px;}
.ws15_c02124{word-spacing:21.592800px;}
.ws7_c02124{word-spacing:39.182400px;}
._1_c02124{margin-left:-1.310400px;}
._0_c02124{width:194.400000px;}
.fc0_c02124{color:rgb(0,0,0);}
.fs0_c02124{font-size:72.000000px;}
.y0_c02124{bottom:0.000000px;}
.y3_c02124{bottom:57.360450px;}
.y2_c02124{bottom:78.060450px;}
.y2e_c02124{bottom:125.940450px;}
.y2d_c02124{bottom:146.640450px;}
.y2c_c02124{bottom:167.340450px;}
.y2b_c02124{bottom:188.040450px;}
.y2a_c02124{bottom:208.740450px;}
.y29_c02124{bottom:229.440450px;}
.y28_c02124{bottom:250.140450px;}
.y27_c02124{bottom:270.840450px;}
.y26_c02124{bottom:291.540450px;}
.y25_c02124{bottom:312.240450px;}
.y24_c02124{bottom:332.940450px;}
.y23_c02124{bottom:353.640450px;}
.y22_c02124{bottom:374.340450px;}
.y21_c02124{bottom:395.040450px;}
.y20_c02124{bottom:415.740450px;}
.y1f_c02124{bottom:436.440450px;}
.y1e_c02124{bottom:457.140450px;}
.y1d_c02124{bottom:477.840450px;}
.y1c_c02124{bottom:498.540450px;}
.y1b_c02124{bottom:519.240450px;}
.y1a_c02124{bottom:539.940450px;}
.y19_c02124{bottom:560.640450px;}
.y18_c02124{bottom:581.340450px;}
.y17_c02124{bottom:602.040450px;}
.y16_c02124{bottom:622.740450px;}
.y15_c02124{bottom:643.440450px;}
.y14_c02124{bottom:664.140450px;}
.y13_c02124{bottom:684.840450px;}
.y12_c02124{bottom:715.890450px;}
.y11_c02124{bottom:746.940450px;}
.y10_c02124{bottom:777.990450px;}
.yf_c02124{bottom:808.950450px;}
.ye_c02124{bottom:840.000450px;}
.yd_c02124{bottom:871.050450px;}
.yc_c02124{bottom:902.100450px;}
.yb_c02124{bottom:933.150450px;}
.ya_c02124{bottom:964.200450px;}
.y9_c02124{bottom:995.250450px;}
.y8_c02124{bottom:1026.300450px;}
.y7_c02124{bottom:1057.350450px;}
.y6_c02124{bottom:1088.220450px;}
.y5_c02124{bottom:1109.100450px;}
.y4_c02124{bottom:1139.970450px;}
.y1_c02124{bottom:1193.160450px;}
.h2_c02124{height:63.175781px;}
.h1_c02124{height:63.949219px;}
.h3_c02124{height:70.628906px;}
.h0_c02124{height:1263.000000px;}
.w1_c02124{width:892.500000px;}
.w0_c02124{width:892.830000px;}
.x0_c02124{left:0.000000px;}
.x4_c02124{left:117.000000px;}
.x1_c02124{left:127.620000px;}
.x3_c02124{left:148.950000px;}
.x2_c02124{left:437.580000px;}
@media print{
.v0_c02124{vertical-align:0.000000pt;}
.ls9_c02124{letter-spacing:-0.012800pt;}
.lsa_c02124{letter-spacing:0.000000pt;}
.ls0_c02124{letter-spacing:0.006400pt;}
.lsb_c02124{letter-spacing:0.012800pt;}
.ls5_c02124{letter-spacing:0.019200pt;}
.ls1_c02124{letter-spacing:0.025600pt;}
.ls8_c02124{letter-spacing:0.032000pt;}
.ls6_c02124{letter-spacing:0.038400pt;}
.ls3_c02124{letter-spacing:0.044800pt;}
.ls2_c02124{letter-spacing:0.051200pt;}
.ls4_c02124{letter-spacing:0.057600pt;}
.ls7_c02124{letter-spacing:0.083200pt;}
.ws0_c02124{word-spacing:-16.000000pt;}
.ws4_c02124{word-spacing:-0.102400pt;}
.ws3_c02124{word-spacing:-0.006400pt;}
.ws2_c02124{word-spacing:0.000000pt;}
.ws1_c02124{word-spacing:0.012800pt;}
.ws13_c02124{word-spacing:0.505600pt;}
.ws12_c02124{word-spacing:0.614400pt;}
.ws9_c02124{word-spacing:1.574400pt;}
.ws5_c02124{word-spacing:4.134400pt;}
.ws6_c02124{word-spacing:4.140800pt;}
.ws10_c02124{word-spacing:6.323200pt;}
.ws11_c02124{word-spacing:6.348800pt;}
.wsc_c02124{word-spacing:6.681600pt;}
.wsf_c02124{word-spacing:7.584000pt;}
.wsd_c02124{word-spacing:7.635200pt;}
.wse_c02124{word-spacing:7.692800pt;}
.ws18_c02124{word-spacing:9.529600pt;}
.ws17_c02124{word-spacing:9.561600pt;}
.ws16_c02124{word-spacing:9.574400pt;}
.wsa_c02124{word-spacing:11.462400pt;}
.wsb_c02124{word-spacing:11.500800pt;}
.ws8_c02124{word-spacing:12.435200pt;}
.ws14_c02124{word-spacing:19.180800pt;}
.ws15_c02124{word-spacing:19.193600pt;}
.ws7_c02124{word-spacing:34.828800pt;}
._1_c02124{margin-left:-1.164800pt;}
._0_c02124{width:172.800000pt;}
.fs0_c02124{font-size:64.000000pt;}
.y0_c02124{bottom:0.000000pt;}
.y3_c02124{bottom:50.987067pt;}
.y2_c02124{bottom:69.387067pt;}
.y2e_c02124{bottom:111.947067pt;}
.y2d_c02124{bottom:130.347067pt;}
.y2c_c02124{bottom:148.747067pt;}
.y2b_c02124{bottom:167.147067pt;}
.y2a_c02124{bottom:185.547067pt;}
.y29_c02124{bottom:203.947067pt;}
.y28_c02124{bottom:222.347067pt;}
.y27_c02124{bottom:240.747067pt;}
.y26_c02124{bottom:259.147067pt;}
.y25_c02124{bottom:277.547067pt;}
.y24_c02124{bottom:295.947067pt;}
.y23_c02124{bottom:314.347067pt;}
.y22_c02124{bottom:332.747067pt;}
.y21_c02124{bottom:351.147067pt;}
.y20_c02124{bottom:369.547067pt;}
.y1f_c02124{bottom:387.947067pt;}
.y1e_c02124{bottom:406.347067pt;}
.y1d_c02124{bottom:424.747067pt;}
.y1c_c02124{bottom:443.147067pt;}
.y1b_c02124{bottom:461.547067pt;}
.y1a_c02124{bottom:479.947067pt;}
.y19_c02124{bottom:498.347067pt;}
.y18_c02124{bottom:516.747067pt;}
.y17_c02124{bottom:535.147067pt;}
.y16_c02124{bottom:553.547067pt;}
.y15_c02124{bottom:571.947067pt;}
.y14_c02124{bottom:590.347067pt;}
.y13_c02124{bottom:608.747067pt;}
.y12_c02124{bottom:636.347067pt;}
.y11_c02124{bottom:663.947067pt;}
.y10_c02124{bottom:691.547067pt;}
.yf_c02124{bottom:719.067067pt;}
.ye_c02124{bottom:746.667067pt;}
.yd_c02124{bottom:774.267067pt;}
.yc_c02124{bottom:801.867067pt;}
.yb_c02124{bottom:829.467067pt;}
.ya_c02124{bottom:857.067067pt;}
.y9_c02124{bottom:884.667067pt;}
.y8_c02124{bottom:912.267067pt;}
.y7_c02124{bottom:939.867067pt;}
.y6_c02124{bottom:967.307067pt;}
.y5_c02124{bottom:985.867067pt;}
.y4_c02124{bottom:1013.307067pt;}
.y1_c02124{bottom:1060.587067pt;}
.h2_c02124{height:56.156250pt;}
.h1_c02124{height:56.843750pt;}
.h3_c02124{height:62.781250pt;}
.h0_c02124{height:1122.666667pt;}
.w1_c02124{width:793.333333pt;}
.w0_c02124{width:793.626667pt;}
.x0_c02124{left:0.000000pt;}
.x4_c02124{left:104.000000pt;}
.x1_c02124{left:113.440000pt;}
.x3_c02124{left:132.400000pt;}
.x2_c02124{left:388.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_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_7ad30bf0f9ec132ce018c70d.woff2')format("woff");}.ff1_c02125{font-family:ff1_c02125;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02125;src:url('chunks/assets/font_90473aab1307f00d5f8f0c20.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02125{font-family:ff3_c02125;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_c02125;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02125{font-family:ff4_c02125;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;}
.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);}
.v1_c02125{vertical-align:-16.560000px;}
.v2_c02125{vertical-align:-11.160000px;}
.v3_c02125{vertical-align:-5.400600px;}
.v0_c02125{vertical-align:0.000000px;}
.v4_c02125{vertical-align:5.400000px;}
.ls2c_c02125{letter-spacing:-0.270540px;}
.ls2a_c02125{letter-spacing:-0.090180px;}
.ls20_c02125{letter-spacing:-0.050400px;}
.ls21_c02125{letter-spacing:-0.028800px;}
.ls2d_c02125{letter-spacing:-0.024048px;}
.ls23_c02125{letter-spacing:-0.021600px;}
.ls2e_c02125{letter-spacing:-0.019764px;}
.ls1e_c02125{letter-spacing:-0.014400px;}
.ls26_c02125{letter-spacing:-0.014364px;}
.ls25_c02125{letter-spacing:-0.006588px;}
.ls28_c02125{letter-spacing:-0.004788px;}
.ls1f_c02125{letter-spacing:0.000000px;}
.ls22_c02125{letter-spacing:0.007200px;}
.ls6_c02125{letter-spacing:0.009576px;}
.lsf_c02125{letter-spacing:0.013176px;}
.ls5_c02125{letter-spacing:0.014400px;}
.ls0_c02125{letter-spacing:0.021600px;}
.ls17_c02125{letter-spacing:0.026352px;}
.ls1_c02125{letter-spacing:0.028800px;}
.ls10_c02125{letter-spacing:0.032940px;}
.ls2_c02125{letter-spacing:0.036000px;}
.lsd_c02125{letter-spacing:0.039528px;}
.ls12_c02125{letter-spacing:0.046116px;}
.ls9_c02125{letter-spacing:0.048096px;}
.ls3_c02125{letter-spacing:0.050400px;}
.lse_c02125{letter-spacing:0.052704px;}
.ls8_c02125{letter-spacing:0.059292px;}
.ls15_c02125{letter-spacing:0.065880px;}
.ls4_c02125{letter-spacing:0.072000px;}
.lsb_c02125{letter-spacing:0.090180px;}
.lsc_c02125{letter-spacing:0.092232px;}
.ls24_c02125{letter-spacing:0.115200px;}
.ls2b_c02125{letter-spacing:0.138276px;}
.ls29_c02125{letter-spacing:0.180360px;}
.ls27_c02125{letter-spacing:0.181944px;}
.lsa_c02125{letter-spacing:75.690576px;}
.ls7_c02125{letter-spacing:829.440000px;}
.ls1d_c02125{letter-spacing:873.360000px;}
.ls11_c02125{letter-spacing:893.880000px;}
.ls1a_c02125{letter-spacing:950.760000px;}
.ls14_c02125{letter-spacing:992.520000px;}
.ls18_c02125{letter-spacing:994.680000px;}
.ls13_c02125{letter-spacing:1051.200000px;}
.ls16_c02125{letter-spacing:1077.120000px;}
.ls19_c02125{letter-spacing:1082.880000px;}
.ls1b_c02125{letter-spacing:1260.360000px;}
.ls1c_c02125{letter-spacing:1311.840000px;}
.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;}
}
.ws2_c02125{word-spacing:-60.120000px;}
.ws1_c02125{word-spacing:-18.115200px;}
.ws0_c02125{word-spacing:-18.000000px;}
.ws4_c02125{word-spacing:-16.522704px;}
.ws3_c02125{word-spacing:-16.483176px;}
.ws5_c02125{word-spacing:-16.450236px;}
.ws1e_c02125{word-spacing:-0.408816px;}
.ws1b_c02125{word-spacing:-0.272916px;}
.ws9_c02125{word-spacing:-0.144000px;}
.ws8_c02125{word-spacing:-0.108000px;}
.ws18_c02125{word-spacing:-0.036000px;}
.ws19_c02125{word-spacing:-0.021600px;}
.ws7_c02125{word-spacing:0.000000px;}
.ws6_c02125{word-spacing:0.014400px;}
.ws23_c02125{word-spacing:0.026352px;}
.ws1c_c02125{word-spacing:0.032940px;}
.ws20_c02125{word-spacing:0.039528px;}
.ws22_c02125{word-spacing:0.046116px;}
.ws1f_c02125{word-spacing:0.052704px;}
.ws21_c02125{word-spacing:0.059292px;}
.ws24_c02125{word-spacing:0.065880px;}
.ws25_c02125{word-spacing:0.092232px;}
.ws1a_c02125{word-spacing:0.098820px;}
.ws26_c02125{word-spacing:0.114228px;}
.ws1d_c02125{word-spacing:0.180360px;}
.ws27_c02125{word-spacing:0.421632px;}
.wsf_c02125{word-spacing:2.844000px;}
.wse_c02125{word-spacing:2.880000px;}
.ws16_c02125{word-spacing:3.160800px;}
.ws17_c02125{word-spacing:3.261600px;}
.ws12_c02125{word-spacing:6.386400px;}
.ws10_c02125{word-spacing:6.393600px;}
.ws11_c02125{word-spacing:6.408000px;}
.ws13_c02125{word-spacing:7.149600px;}
.ws14_c02125{word-spacing:7.754400px;}
.ws15_c02125{word-spacing:7.905600px;}
.wsa_c02125{word-spacing:9.115200px;}
.wsc_c02125{word-spacing:9.374400px;}
.wsb_c02125{word-spacing:9.388800px;}
.wsd_c02125{word-spacing:25.480800px;}
._1_c02125{margin-left:-1.245600px;}
._4_c02125{width:1.284660px;}
._2_c02125{width:2.858400px;}
._6_c02125{width:52.468920px;}
._3_c02125{width:65.791512px;}
._f_c02125{width:101.276676px;}
._0_c02125{width:194.400000px;}
._c_c02125{width:218.661660px;}
._9_c02125{width:279.383256px;}
._12_c02125{width:345.908880px;}
._e_c02125{width:355.132080px;}
._14_c02125{width:396.583776px;}
._8_c02125{width:419.859648px;}
._5_c02125{width:443.055132px;}
._a_c02125{width:500.990400px;}
._b_c02125{width:502.393644px;}
._d_c02125{width:566.857224px;}
._13_c02125{width:667.719504px;}
._11_c02125{width:703.953504px;}
._7_c02125{width:735.075216px;}
._10_c02125{width:1094.716152px;}
.fc0_c02125{color:rgb(0,0,0);}
.fs3_c02125{font-size:47.880000px;}
.fs1_c02125{font-size:54.000000px;}
.fs2_c02125{font-size:60.120000px;}
.fs4_c02125{font-size:65.880000px;}
.fs0_c02125{font-size:72.000000px;}
.y0_c02125{bottom:0.000000px;}
.y3_c02125{bottom:57.360450px;}
.y2_c02125{bottom:78.060450px;}
.y3b_c02125{bottom:121.530450px;}
.y3a_c02125{bottom:137.010900px;}
.y39_c02125{bottom:152.580450px;}
.y38_c02125{bottom:168.060900px;}
.y37_c02125{bottom:183.630450px;}
.y36_c02125{bottom:201.900450px;}
.y35_c02125{bottom:221.610450px;}
.y34_c02125{bottom:241.320450px;}
.y33_c02125{bottom:261.030450px;}
.y32_c02125{bottom:280.830450px;}
.y31_c02125{bottom:300.540450px;}
.y30_c02125{bottom:320.250450px;}
.y2f_c02125{bottom:339.960600px;}
.y2e_c02125{bottom:357.330450px;}
.y2d_c02125{bottom:371.100450px;}
.y2c_c02125{bottom:384.870450px;}
.y2b_c02125{bottom:400.080450px;}
.y2a_c02125{bottom:419.790600px;}
.y29_c02125{bottom:439.590600px;}
.y28_c02125{bottom:459.300450px;}
.y27_c02125{bottom:479.010450px;}
.y26_c02125{bottom:498.720450px;}
.y25_c02125{bottom:518.430600px;}
.y24_c02125{bottom:538.140450px;}
.y23_c02125{bottom:555.510450px;}
.y22_c02125{bottom:569.280450px;}
.y21_c02125{bottom:583.140450px;}
.y20_c02125{bottom:598.530450px;}
.y1f_c02125{bottom:618.060450px;}
.y1e_c02125{bottom:637.770450px;}
.y1d_c02125{bottom:657.480450px;}
.y1c_c02125{bottom:675.840450px;}
.y1b_c02125{bottom:696.180450px;}
.y1a_c02125{bottom:715.890450px;}
.y19_c02125{bottom:735.600450px;}
.y18_c02125{bottom:755.400450px;}
.y17_c02125{bottom:775.110600px;}
.y16_c02125{bottom:792.390450px;}
.y15_c02125{bottom:806.250450px;}
.y14_c02125{bottom:820.020450px;}
.y13_c02125{bottom:835.230450px;}
.y12_c02125{bottom:853.320450px;}
.y11_c02125{bottom:874.020450px;}
.y10_c02125{bottom:894.720450px;}
.yf_c02125{bottom:915.420450px;}
.ye_c02125{bottom:936.120450px;}
.yd_c02125{bottom:956.820450px;}
.yc_c02125{bottom:977.520450px;}
.yb_c02125{bottom:998.220450px;}
.ya_c02125{bottom:1018.920450px;}
.y9_c02125{bottom:1039.620450px;}
.y8_c02125{bottom:1059.150450px;}
.y7_c02125{bottom:1076.430450px;}
.y6_c02125{bottom:1097.850450px;}
.y5_c02125{bottom:1119.450450px;}
.y4_c02125{bottom:1139.970450px;}
.y1_c02125{bottom:1193.160450px;}
.h6_c02125{height:42.526230px;}
.h5_c02125{height:47.389219px;}
.h3_c02125{height:47.961914px;}
.h9_c02125{height:52.751777px;}
.h4_c02125{height:53.397598px;}
.h7_c02125{height:53.471777px;}
.ha_c02125{height:53.472377px;}
.hb_c02125{height:58.548619px;}
.h8_c02125{height:58.549219px;}
.h2_c02125{height:63.175781px;}
.h1_c02125{height:63.949219px;}
.h0_c02125{height:1263.000000px;}
.w1_c02125{width:892.500000px;}
.w0_c02125{width:892.830000px;}
.x0_c02125{left:0.000000px;}
.x1_c02125{left:127.620000px;}
.x3_c02125{left:135.630000px;}
.x6_c02125{left:167.670000px;}
.x2_c02125{left:437.580000px;}
.x7_c02125{left:571.590000px;}
.x5_c02125{left:722.520000px;}
.x4_c02125{left:735.840000px;}
@media print{
.v1_c02125{vertical-align:-14.720000pt;}
.v2_c02125{vertical-align:-9.920000pt;}
.v3_c02125{vertical-align:-4.800533pt;}
.v0_c02125{vertical-align:0.000000pt;}
.v4_c02125{vertical-align:4.800000pt;}
.ls2c_c02125{letter-spacing:-0.240480pt;}
.ls2a_c02125{letter-spacing:-0.080160pt;}
.ls20_c02125{letter-spacing:-0.044800pt;}
.ls21_c02125{letter-spacing:-0.025600pt;}
.ls2d_c02125{letter-spacing:-0.021376pt;}
.ls23_c02125{letter-spacing:-0.019200pt;}
.ls2e_c02125{letter-spacing:-0.017568pt;}
.ls1e_c02125{letter-spacing:-0.012800pt;}
.ls26_c02125{letter-spacing:-0.012768pt;}
.ls25_c02125{letter-spacing:-0.005856pt;}
.ls28_c02125{letter-spacing:-0.004256pt;}
.ls1f_c02125{letter-spacing:0.000000pt;}
.ls22_c02125{letter-spacing:0.006400pt;}
.ls6_c02125{letter-spacing:0.008512pt;}
.lsf_c02125{letter-spacing:0.011712pt;}
.ls5_c02125{letter-spacing:0.012800pt;}
.ls0_c02125{letter-spacing:0.019200pt;}
.ls17_c02125{letter-spacing:0.023424pt;}
.ls1_c02125{letter-spacing:0.025600pt;}
.ls10_c02125{letter-spacing:0.029280pt;}
.ls2_c02125{letter-spacing:0.032000pt;}
.lsd_c02125{letter-spacing:0.035136pt;}
.ls12_c02125{letter-spacing:0.040992pt;}
.ls9_c02125{letter-spacing:0.042752pt;}
.ls3_c02125{letter-spacing:0.044800pt;}
.lse_c02125{letter-spacing:0.046848pt;}
.ls8_c02125{letter-spacing:0.052704pt;}
.ls15_c02125{letter-spacing:0.058560pt;}
.ls4_c02125{letter-spacing:0.064000pt;}
.lsb_c02125{letter-spacing:0.080160pt;}
.lsc_c02125{letter-spacing:0.081984pt;}
.ls24_c02125{letter-spacing:0.102400pt;}
.ls2b_c02125{letter-spacing:0.122912pt;}
.ls29_c02125{letter-spacing:0.160320pt;}
.ls27_c02125{letter-spacing:0.161728pt;}
.lsa_c02125{letter-spacing:67.280512pt;}
.ls7_c02125{letter-spacing:737.280000pt;}
.ls1d_c02125{letter-spacing:776.320000pt;}
.ls11_c02125{letter-spacing:794.560000pt;}
.ls1a_c02125{letter-spacing:845.120000pt;}
.ls14_c02125{letter-spacing:882.240000pt;}
.ls18_c02125{letter-spacing:884.160000pt;}
.ls13_c02125{letter-spacing:934.400000pt;}
.ls16_c02125{letter-spacing:957.440000pt;}
.ls19_c02125{letter-spacing:962.560000pt;}
.ls1b_c02125{letter-spacing:1120.320000pt;}
.ls1c_c02125{letter-spacing:1166.080000pt;}
.ws2_c02125{word-spacing:-53.440000pt;}
.ws1_c02125{word-spacing:-16.102400pt;}
.ws0_c02125{word-spacing:-16.000000pt;}
.ws4_c02125{word-spacing:-14.686848pt;}
.ws3_c02125{word-spacing:-14.651712pt;}
.ws5_c02125{word-spacing:-14.622432pt;}
.ws1e_c02125{word-spacing:-0.363392pt;}
.ws1b_c02125{word-spacing:-0.242592pt;}
.ws9_c02125{word-spacing:-0.128000pt;}
.ws8_c02125{word-spacing:-0.096000pt;}
.ws18_c02125{word-spacing:-0.032000pt;}
.ws19_c02125{word-spacing:-0.019200pt;}
.ws7_c02125{word-spacing:0.000000pt;}
.ws6_c02125{word-spacing:0.012800pt;}
.ws23_c02125{word-spacing:0.023424pt;}
.ws1c_c02125{word-spacing:0.029280pt;}
.ws20_c02125{word-spacing:0.035136pt;}
.ws22_c02125{word-spacing:0.040992pt;}
.ws1f_c02125{word-spacing:0.046848pt;}
.ws21_c02125{word-spacing:0.052704pt;}
.ws24_c02125{word-spacing:0.058560pt;}
.ws25_c02125{word-spacing:0.081984pt;}
.ws1a_c02125{word-spacing:0.087840pt;}
.ws26_c02125{word-spacing:0.101536pt;}
.ws1d_c02125{word-spacing:0.160320pt;}
.ws27_c02125{word-spacing:0.374784pt;}
.wsf_c02125{word-spacing:2.528000pt;}
.wse_c02125{word-spacing:2.560000pt;}
.ws16_c02125{word-spacing:2.809600pt;}
.ws17_c02125{word-spacing:2.899200pt;}
.ws12_c02125{word-spacing:5.676800pt;}
.ws10_c02125{word-spacing:5.683200pt;}
.ws11_c02125{word-spacing:5.696000pt;}
.ws13_c02125{word-spacing:6.355200pt;}
.ws14_c02125{word-spacing:6.892800pt;}
.ws15_c02125{word-spacing:7.027200pt;}
.wsa_c02125{word-spacing:8.102400pt;}
.wsc_c02125{word-spacing:8.332800pt;}
.wsb_c02125{word-spacing:8.345600pt;}
.wsd_c02125{word-spacing:22.649600pt;}
._1_c02125{margin-left:-1.107200pt;}
._4_c02125{width:1.141920pt;}
._2_c02125{width:2.540800pt;}
._6_c02125{width:46.639040pt;}
._3_c02125{width:58.481344pt;}
._f_c02125{width:90.023712pt;}
._0_c02125{width:172.800000pt;}
._c_c02125{width:194.365920pt;}
._9_c02125{width:248.340672pt;}
._12_c02125{width:307.474560pt;}
._e_c02125{width:315.672960pt;}
._14_c02125{width:352.518912pt;}
._8_c02125{width:373.208576pt;}
._5_c02125{width:393.826784pt;}
._a_c02125{width:445.324800pt;}
._b_c02125{width:446.572128pt;}
._d_c02125{width:503.873088pt;}
._13_c02125{width:593.528448pt;}
._11_c02125{width:625.736448pt;}
._7_c02125{width:653.400192pt;}
._10_c02125{width:973.081024pt;}
.fs3_c02125{font-size:42.560000pt;}
.fs1_c02125{font-size:48.000000pt;}
.fs2_c02125{font-size:53.440000pt;}
.fs4_c02125{font-size:58.560000pt;}
.fs0_c02125{font-size:64.000000pt;}
.y0_c02125{bottom:0.000000pt;}
.y3_c02125{bottom:50.987067pt;}
.y2_c02125{bottom:69.387067pt;}
.y3b_c02125{bottom:108.027067pt;}
.y3a_c02125{bottom:121.787467pt;}
.y39_c02125{bottom:135.627067pt;}
.y38_c02125{bottom:149.387467pt;}
.y37_c02125{bottom:163.227067pt;}
.y36_c02125{bottom:179.467067pt;}
.y35_c02125{bottom:196.987067pt;}
.y34_c02125{bottom:214.507067pt;}
.y33_c02125{bottom:232.027067pt;}
.y32_c02125{bottom:249.627067pt;}
.y31_c02125{bottom:267.147067pt;}
.y30_c02125{bottom:284.667067pt;}
.y2f_c02125{bottom:302.187200pt;}
.y2e_c02125{bottom:317.627067pt;}
.y2d_c02125{bottom:329.867067pt;}
.y2c_c02125{bottom:342.107067pt;}
.y2b_c02125{bottom:355.627067pt;}
.y2a_c02125{bottom:373.147200pt;}
.y29_c02125{bottom:390.747200pt;}
.y28_c02125{bottom:408.267067pt;}
.y27_c02125{bottom:425.787067pt;}
.y26_c02125{bottom:443.307067pt;}
.y25_c02125{bottom:460.827200pt;}
.y24_c02125{bottom:478.347067pt;}
.y23_c02125{bottom:493.787067pt;}
.y22_c02125{bottom:506.027067pt;}
.y21_c02125{bottom:518.347067pt;}
.y20_c02125{bottom:532.027067pt;}
.y1f_c02125{bottom:549.387067pt;}
.y1e_c02125{bottom:566.907067pt;}
.y1d_c02125{bottom:584.427067pt;}
.y1c_c02125{bottom:600.747067pt;}
.y1b_c02125{bottom:618.827067pt;}
.y1a_c02125{bottom:636.347067pt;}
.y19_c02125{bottom:653.867067pt;}
.y18_c02125{bottom:671.467067pt;}
.y17_c02125{bottom:688.987200pt;}
.y16_c02125{bottom:704.347067pt;}
.y15_c02125{bottom:716.667067pt;}
.y14_c02125{bottom:728.907067pt;}
.y13_c02125{bottom:742.427067pt;}
.y12_c02125{bottom:758.507067pt;}
.y11_c02125{bottom:776.907067pt;}
.y10_c02125{bottom:795.307067pt;}
.yf_c02125{bottom:813.707067pt;}
.ye_c02125{bottom:832.107067pt;}
.yd_c02125{bottom:850.507067pt;}
.yc_c02125{bottom:868.907067pt;}
.yb_c02125{bottom:887.307067pt;}
.ya_c02125{bottom:905.707067pt;}
.y9_c02125{bottom:924.107067pt;}
.y8_c02125{bottom:941.467067pt;}
.y7_c02125{bottom:956.827067pt;}
.y6_c02125{bottom:975.867067pt;}
.y5_c02125{bottom:995.067067pt;}
.y4_c02125{bottom:1013.307067pt;}
.y1_c02125{bottom:1060.587067pt;}
.h6_c02125{height:37.801094pt;}
.h5_c02125{height:42.123750pt;}
.h3_c02125{height:42.632812pt;}
.h9_c02125{height:46.890469pt;}
.h4_c02125{height:47.464531pt;}
.h7_c02125{height:47.530469pt;}
.ha_c02125{height:47.531002pt;}
.hb_c02125{height:52.043217pt;}
.h8_c02125{height:52.043750pt;}
.h2_c02125{height:56.156250pt;}
.h1_c02125{height:56.843750pt;}
.h0_c02125{height:1122.666667pt;}
.w1_c02125{width:793.333333pt;}
.w0_c02125{width:793.626667pt;}
.x0_c02125{left:0.000000pt;}
.x1_c02125{left:113.440000pt;}
.x3_c02125{left:120.560000pt;}
.x6_c02125{left:149.040000pt;}
.x2_c02125{left:388.960000pt;}
.x7_c02125{left:508.080000pt;}
.x5_c02125{left:642.240000pt;}
.x4_c02125{left:654.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_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_271f4814183545ac363ed45f.woff2')format("woff");}.ff1_c02126{font-family:ff1_c02126;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02126;src:url('chunks/assets/font_3a0ce3b63e42e608b9b7714a.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_8a17e7c732245dda4e0e50b1.woff2')format("woff");}.ff3_c02126{font-family:ff3_c02126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02126;src:url('chunks/assets/font_7cd2b58f974ea68f87b23f1a.woff2')format("woff");}.ff4_c02126{font-family:ff4_c02126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02126{vertical-align:-9.000000px;}
.v0_c02126{vertical-align:0.000000px;}
.v2_c02126{vertical-align:11.160000px;}
.ls2a_c02126{letter-spacing:-0.276552px;}
.ls24_c02126{letter-spacing:-0.228456px;}
.ls2b_c02126{letter-spacing:-0.162324px;}
.ls28_c02126{letter-spacing:-0.150300px;}
.ls21_c02126{letter-spacing:-0.126252px;}
.ls26_c02126{letter-spacing:-0.096192px;}
.ls1f_c02126{letter-spacing:-0.084168px;}
.ls25_c02126{letter-spacing:-0.078156px;}
.ls22_c02126{letter-spacing:-0.042084px;}
.ls23_c02126{letter-spacing:-0.030060px;}
.ls1e_c02126{letter-spacing:-0.028800px;}
.ls29_c02126{letter-spacing:-0.024048px;}
.ls1c_c02126{letter-spacing:-0.021600px;}
.ls27_c02126{letter-spacing:-0.018036px;}
.ls1a_c02126{letter-spacing:-0.014400px;}
.ls20_c02126{letter-spacing:-0.012024px;}
.ls1d_c02126{letter-spacing:-0.007200px;}
.ls1b_c02126{letter-spacing:0.000000px;}
.ls9_c02126{letter-spacing:0.006012px;}
.ls5_c02126{letter-spacing:0.007200px;}
.lsf_c02126{letter-spacing:0.012024px;}
.ls7_c02126{letter-spacing:0.014400px;}
.ls0_c02126{letter-spacing:0.021600px;}
.ls12_c02126{letter-spacing:0.028800px;}
.lsd_c02126{letter-spacing:0.030060px;}
.ls17_c02126{letter-spacing:0.032940px;}
.ls4_c02126{letter-spacing:0.036000px;}
.ls11_c02126{letter-spacing:0.039528px;}
.ls6_c02126{letter-spacing:0.043200px;}
.lsa_c02126{letter-spacing:0.048096px;}
.ls8_c02126{letter-spacing:0.050400px;}
.ls18_c02126{letter-spacing:0.052704px;}
.ls16_c02126{letter-spacing:0.057600px;}
.ls14_c02126{letter-spacing:0.059292px;}
.lsc_c02126{letter-spacing:0.060120px;}
.ls15_c02126{letter-spacing:0.072000px;}
.ls19_c02126{letter-spacing:0.072468px;}
.ls10_c02126{letter-spacing:0.078156px;}
.ls13_c02126{letter-spacing:0.079200px;}
.lsb_c02126{letter-spacing:0.084168px;}
.lse_c02126{letter-spacing:0.090180px;}
.ls1_c02126{letter-spacing:0.093600px;}
.ls2c_c02126{letter-spacing:0.096192px;}
.ls2_c02126{letter-spacing:0.144000px;}
.ls3_c02126{letter-spacing:0.181944px;}
.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;}
}
.ws2_c02126{word-spacing:-17.992800px;}
.ws1_c02126{word-spacing:-16.529292px;}
.ws0_c02126{word-spacing:-16.509528px;}
.ws3_c02126{word-spacing:-14.999940px;}
.ws28_c02126{word-spacing:-0.366732px;}
.ws16_c02126{word-spacing:-0.348696px;}
.ws1d_c02126{word-spacing:-0.330660px;}
.ws1e_c02126{word-spacing:-0.300600px;}
.ws22_c02126{word-spacing:-0.282564px;}
.ws1c_c02126{word-spacing:-0.270540px;}
.ws14_c02126{word-spacing:-0.258516px;}
.ws24_c02126{word-spacing:-0.252504px;}
.ws18_c02126{word-spacing:-0.240480px;}
.ws32_c02126{word-spacing:-0.194400px;}
.ws31_c02126{word-spacing:-0.187200px;}
.ws13_c02126{word-spacing:-0.186372px;}
.ws25_c02126{word-spacing:-0.120240px;}
.ws6_c02126{word-spacing:-0.108000px;}
.ws30_c02126{word-spacing:-0.100800px;}
.ws34_c02126{word-spacing:-0.086400px;}
.ws2b_c02126{word-spacing:-0.079200px;}
.ws2d_c02126{word-spacing:-0.072000px;}
.ws33_c02126{word-spacing:-0.057600px;}
.ws2e_c02126{word-spacing:-0.021600px;}
.ws2f_c02126{word-spacing:-0.014400px;}
.wsa_c02126{word-spacing:-0.007200px;}
.ws1f_c02126{word-spacing:-0.006012px;}
.ws5_c02126{word-spacing:0.000000px;}
.ws1b_c02126{word-spacing:0.006012px;}
.ws10_c02126{word-spacing:0.007200px;}
.ws4_c02126{word-spacing:0.014400px;}
.ws37_c02126{word-spacing:0.019764px;}
.ws36_c02126{word-spacing:0.039528px;}
.ws12_c02126{word-spacing:0.042084px;}
.ws38_c02126{word-spacing:0.052704px;}
.ws35_c02126{word-spacing:0.059292px;}
.ws11_c02126{word-spacing:0.084168px;}
.ws20_c02126{word-spacing:0.102204px;}
.ws26_c02126{word-spacing:0.114228px;}
.ws1a_c02126{word-spacing:0.120240px;}
.ws17_c02126{word-spacing:0.132264px;}
.ws21_c02126{word-spacing:0.168336px;}
.ws29_c02126{word-spacing:0.174348px;}
.ws23_c02126{word-spacing:0.186372px;}
.ws15_c02126{word-spacing:0.216432px;}
.ws27_c02126{word-spacing:0.252504px;}
.wsf_c02126{word-spacing:0.259200px;}
.wse_c02126{word-spacing:0.316800px;}
.ws19_c02126{word-spacing:0.318636px;}
.wsb_c02126{word-spacing:3.556800px;}
.ws2a_c02126{word-spacing:15.091200px;}
.wsc_c02126{word-spacing:16.005600px;}
.wsd_c02126{word-spacing:16.214400px;}
.ws2c_c02126{word-spacing:29.116800px;}
.ws8_c02126{word-spacing:46.418400px;}
.ws9_c02126{word-spacing:46.461600px;}
.ws7_c02126{word-spacing:47.786400px;}
._3_c02126{margin-left:-1.166400px;}
._8_c02126{width:1.058112px;}
._4_c02126{width:3.036240px;}
._2_c02126{width:47.316240px;}
._5_c02126{width:112.096800px;}
._6_c02126{width:116.056800px;}
._1_c02126{width:165.024000px;}
._0_c02126{width:194.400000px;}
._7_c02126{width:278.236800px;}
.fc0_c02126{color:rgb(0,0,0);}
.fs1_c02126{font-size:47.880000px;}
.fs2_c02126{font-size:60.120000px;}
.fs3_c02126{font-size:65.880000px;}
.fs0_c02126{font-size:72.000000px;}
.y0_c02126{bottom:0.000000px;}
.y3_c02126{bottom:57.360450px;}
.y2_c02126{bottom:78.060450px;}
.y3a_c02126{bottom:121.980450px;}
.y39_c02126{bottom:141.600450px;}
.y38_c02126{bottom:161.400450px;}
.y37_c02126{bottom:180.390450px;}
.y36_c02126{bottom:200.280600px;}
.y35_c02126{bottom:221.970450px;}
.y34_c02126{bottom:243.210600px;}
.y33_c02126{bottom:264.810450px;}
.y32_c02126{bottom:285.510450px;}
.y31_c02126{bottom:306.210450px;}
.y30_c02126{bottom:326.910450px;}
.y2f_c02126{bottom:347.610450px;}
.y2e_c02126{bottom:368.310450px;}
.y2d_c02126{bottom:389.280450px;}
.y2c_c02126{bottom:409.530450px;}
.y2b_c02126{bottom:430.230450px;}
.y2a_c02126{bottom:451.200600px;}
.y29_c02126{bottom:470.552304px;}
.y28_c02126{bottom:487.742115px;}
.y27_c02126{bottom:505.022106px;}
.y26_c02126{bottom:522.302097px;}
.y25_c02126{bottom:539.491908px;}
.y24_c02126{bottom:556.771899px;}
.y23_c02126{bottom:574.051890px;}
.y22_c02126{bottom:591.241701px;}
.y21_c02126{bottom:608.521692px;}
.y20_c02126{bottom:625.801683px;}
.y1f_c02126{bottom:642.991494px;}
.y1e_c02126{bottom:660.271485px;}
.y1d_c02126{bottom:677.551476px;}
.y1c_c02126{bottom:694.741287px;}
.y1b_c02126{bottom:712.021278px;}
.y1a_c02126{bottom:729.301269px;}
.y19_c02126{bottom:746.491080px;}
.y18_c02126{bottom:763.771071px;}
.y17_c02126{bottom:781.051062px;}
.y16_c02126{bottom:798.240873px;}
.y15_c02126{bottom:815.520864px;}
.y14_c02126{bottom:832.710675px;}
.y13_c02126{bottom:849.990666px;}
.y12_c02126{bottom:867.270657px;}
.y11_c02126{bottom:884.460468px;}
.y10_c02126{bottom:901.740459px;}
.yf_c02126{bottom:916.230450px;}
.ye_c02126{bottom:937.650450px;}
.yd_c02126{bottom:959.070450px;}
.yc_c02126{bottom:980.670450px;}
.yb_c02126{bottom:1001.370450px;}
.ya_c02126{bottom:1022.070450px;}
.y9_c02126{bottom:1042.770450px;}
.y8_c02126{bottom:1063.470450px;}
.y7_c02126{bottom:1084.170450px;}
.y6_c02126{bottom:1104.780450px;}
.y5_c02126{bottom:1124.850450px;}
.y4_c02126{bottom:1139.970450px;}
.y1_c02126{bottom:1193.160450px;}
.h3_c02126{height:42.526230px;}
.h7_c02126{height:53.397598px;}
.h8_c02126{height:57.805840px;}
.h2_c02126{height:63.175781px;}
.h1_c02126{height:63.949219px;}
.h6_c02126{height:64.557598px;}
.h5_c02126{height:70.628906px;}
.h4_c02126{height:70.988906px;}
.h0_c02126{height:1263.000000px;}
.w1_c02126{width:892.500000px;}
.w0_c02126{width:892.830000px;}
.x0_c02126{left:0.000000px;}
.x1_c02126{left:127.620000px;}
.x3_c02126{left:135.630000px;}
.x4_c02126{left:252.630000px;}
.x2_c02126{left:437.580000px;}
@media print{
.v1_c02126{vertical-align:-8.000000pt;}
.v0_c02126{vertical-align:0.000000pt;}
.v2_c02126{vertical-align:9.920000pt;}
.ls2a_c02126{letter-spacing:-0.245824pt;}
.ls24_c02126{letter-spacing:-0.203072pt;}
.ls2b_c02126{letter-spacing:-0.144288pt;}
.ls28_c02126{letter-spacing:-0.133600pt;}
.ls21_c02126{letter-spacing:-0.112224pt;}
.ls26_c02126{letter-spacing:-0.085504pt;}
.ls1f_c02126{letter-spacing:-0.074816pt;}
.ls25_c02126{letter-spacing:-0.069472pt;}
.ls22_c02126{letter-spacing:-0.037408pt;}
.ls23_c02126{letter-spacing:-0.026720pt;}
.ls1e_c02126{letter-spacing:-0.025600pt;}
.ls29_c02126{letter-spacing:-0.021376pt;}
.ls1c_c02126{letter-spacing:-0.019200pt;}
.ls27_c02126{letter-spacing:-0.016032pt;}
.ls1a_c02126{letter-spacing:-0.012800pt;}
.ls20_c02126{letter-spacing:-0.010688pt;}
.ls1d_c02126{letter-spacing:-0.006400pt;}
.ls1b_c02126{letter-spacing:0.000000pt;}
.ls9_c02126{letter-spacing:0.005344pt;}
.ls5_c02126{letter-spacing:0.006400pt;}
.lsf_c02126{letter-spacing:0.010688pt;}
.ls7_c02126{letter-spacing:0.012800pt;}
.ls0_c02126{letter-spacing:0.019200pt;}
.ls12_c02126{letter-spacing:0.025600pt;}
.lsd_c02126{letter-spacing:0.026720pt;}
.ls17_c02126{letter-spacing:0.029280pt;}
.ls4_c02126{letter-spacing:0.032000pt;}
.ls11_c02126{letter-spacing:0.035136pt;}
.ls6_c02126{letter-spacing:0.038400pt;}
.lsa_c02126{letter-spacing:0.042752pt;}
.ls8_c02126{letter-spacing:0.044800pt;}
.ls18_c02126{letter-spacing:0.046848pt;}
.ls16_c02126{letter-spacing:0.051200pt;}
.ls14_c02126{letter-spacing:0.052704pt;}
.lsc_c02126{letter-spacing:0.053440pt;}
.ls15_c02126{letter-spacing:0.064000pt;}
.ls19_c02126{letter-spacing:0.064416pt;}
.ls10_c02126{letter-spacing:0.069472pt;}
.ls13_c02126{letter-spacing:0.070400pt;}
.lsb_c02126{letter-spacing:0.074816pt;}
.lse_c02126{letter-spacing:0.080160pt;}
.ls1_c02126{letter-spacing:0.083200pt;}
.ls2c_c02126{letter-spacing:0.085504pt;}
.ls2_c02126{letter-spacing:0.128000pt;}
.ls3_c02126{letter-spacing:0.161728pt;}
.ws2_c02126{word-spacing:-15.993600pt;}
.ws1_c02126{word-spacing:-14.692704pt;}
.ws0_c02126{word-spacing:-14.675136pt;}
.ws3_c02126{word-spacing:-13.333280pt;}
.ws28_c02126{word-spacing:-0.325984pt;}
.ws16_c02126{word-spacing:-0.309952pt;}
.ws1d_c02126{word-spacing:-0.293920pt;}
.ws1e_c02126{word-spacing:-0.267200pt;}
.ws22_c02126{word-spacing:-0.251168pt;}
.ws1c_c02126{word-spacing:-0.240480pt;}
.ws14_c02126{word-spacing:-0.229792pt;}
.ws24_c02126{word-spacing:-0.224448pt;}
.ws18_c02126{word-spacing:-0.213760pt;}
.ws32_c02126{word-spacing:-0.172800pt;}
.ws31_c02126{word-spacing:-0.166400pt;}
.ws13_c02126{word-spacing:-0.165664pt;}
.ws25_c02126{word-spacing:-0.106880pt;}
.ws6_c02126{word-spacing:-0.096000pt;}
.ws30_c02126{word-spacing:-0.089600pt;}
.ws34_c02126{word-spacing:-0.076800pt;}
.ws2b_c02126{word-spacing:-0.070400pt;}
.ws2d_c02126{word-spacing:-0.064000pt;}
.ws33_c02126{word-spacing:-0.051200pt;}
.ws2e_c02126{word-spacing:-0.019200pt;}
.ws2f_c02126{word-spacing:-0.012800pt;}
.wsa_c02126{word-spacing:-0.006400pt;}
.ws1f_c02126{word-spacing:-0.005344pt;}
.ws5_c02126{word-spacing:0.000000pt;}
.ws1b_c02126{word-spacing:0.005344pt;}
.ws10_c02126{word-spacing:0.006400pt;}
.ws4_c02126{word-spacing:0.012800pt;}
.ws37_c02126{word-spacing:0.017568pt;}
.ws36_c02126{word-spacing:0.035136pt;}
.ws12_c02126{word-spacing:0.037408pt;}
.ws38_c02126{word-spacing:0.046848pt;}
.ws35_c02126{word-spacing:0.052704pt;}
.ws11_c02126{word-spacing:0.074816pt;}
.ws20_c02126{word-spacing:0.090848pt;}
.ws26_c02126{word-spacing:0.101536pt;}
.ws1a_c02126{word-spacing:0.106880pt;}
.ws17_c02126{word-spacing:0.117568pt;}
.ws21_c02126{word-spacing:0.149632pt;}
.ws29_c02126{word-spacing:0.154976pt;}
.ws23_c02126{word-spacing:0.165664pt;}
.ws15_c02126{word-spacing:0.192384pt;}
.ws27_c02126{word-spacing:0.224448pt;}
.wsf_c02126{word-spacing:0.230400pt;}
.wse_c02126{word-spacing:0.281600pt;}
.ws19_c02126{word-spacing:0.283232pt;}
.wsb_c02126{word-spacing:3.161600pt;}
.ws2a_c02126{word-spacing:13.414400pt;}
.wsc_c02126{word-spacing:14.227200pt;}
.wsd_c02126{word-spacing:14.412800pt;}
.ws2c_c02126{word-spacing:25.881600pt;}
.ws8_c02126{word-spacing:41.260800pt;}
.ws9_c02126{word-spacing:41.299200pt;}
.ws7_c02126{word-spacing:42.476800pt;}
._3_c02126{margin-left:-1.036800pt;}
._8_c02126{width:0.940544pt;}
._4_c02126{width:2.698880pt;}
._2_c02126{width:42.058880pt;}
._5_c02126{width:99.641600pt;}
._6_c02126{width:103.161600pt;}
._1_c02126{width:146.688000pt;}
._0_c02126{width:172.800000pt;}
._7_c02126{width:247.321600pt;}
.fs1_c02126{font-size:42.560000pt;}
.fs2_c02126{font-size:53.440000pt;}
.fs3_c02126{font-size:58.560000pt;}
.fs0_c02126{font-size:64.000000pt;}
.y0_c02126{bottom:0.000000pt;}
.y3_c02126{bottom:50.987067pt;}
.y2_c02126{bottom:69.387067pt;}
.y3a_c02126{bottom:108.427067pt;}
.y39_c02126{bottom:125.867067pt;}
.y38_c02126{bottom:143.467067pt;}
.y37_c02126{bottom:160.347067pt;}
.y36_c02126{bottom:178.027200pt;}
.y35_c02126{bottom:197.307067pt;}
.y34_c02126{bottom:216.187200pt;}
.y33_c02126{bottom:235.387067pt;}
.y32_c02126{bottom:253.787067pt;}
.y31_c02126{bottom:272.187067pt;}
.y30_c02126{bottom:290.587067pt;}
.y2f_c02126{bottom:308.987067pt;}
.y2e_c02126{bottom:327.387067pt;}
.y2d_c02126{bottom:346.027067pt;}
.y2c_c02126{bottom:364.027067pt;}
.y2b_c02126{bottom:382.427067pt;}
.y2a_c02126{bottom:401.067200pt;}
.y29_c02126{bottom:418.268715pt;}
.y28_c02126{bottom:433.548547pt;}
.y27_c02126{bottom:448.908539pt;}
.y26_c02126{bottom:464.268531pt;}
.y25_c02126{bottom:479.548363pt;}
.y24_c02126{bottom:494.908355pt;}
.y23_c02126{bottom:510.268347pt;}
.y22_c02126{bottom:525.548179pt;}
.y21_c02126{bottom:540.908171pt;}
.y20_c02126{bottom:556.268163pt;}
.y1f_c02126{bottom:571.547995pt;}
.y1e_c02126{bottom:586.907987pt;}
.y1d_c02126{bottom:602.267979pt;}
.y1c_c02126{bottom:617.547811pt;}
.y1b_c02126{bottom:632.907803pt;}
.y1a_c02126{bottom:648.267795pt;}
.y19_c02126{bottom:663.547627pt;}
.y18_c02126{bottom:678.907619pt;}
.y17_c02126{bottom:694.267611pt;}
.y16_c02126{bottom:709.547443pt;}
.y15_c02126{bottom:724.907435pt;}
.y14_c02126{bottom:740.187267pt;}
.y13_c02126{bottom:755.547259pt;}
.y12_c02126{bottom:770.907251pt;}
.y11_c02126{bottom:786.187083pt;}
.y10_c02126{bottom:801.547075pt;}
.yf_c02126{bottom:814.427067pt;}
.ye_c02126{bottom:833.467067pt;}
.yd_c02126{bottom:852.507067pt;}
.yc_c02126{bottom:871.707067pt;}
.yb_c02126{bottom:890.107067pt;}
.ya_c02126{bottom:908.507067pt;}
.y9_c02126{bottom:926.907067pt;}
.y8_c02126{bottom:945.307067pt;}
.y7_c02126{bottom:963.707067pt;}
.y6_c02126{bottom:982.027067pt;}
.y5_c02126{bottom:999.867067pt;}
.y4_c02126{bottom:1013.307067pt;}
.y1_c02126{bottom:1060.587067pt;}
.h3_c02126{height:37.801094pt;}
.h7_c02126{height:47.464531pt;}
.h8_c02126{height:51.382969pt;}
.h2_c02126{height:56.156250pt;}
.h1_c02126{height:56.843750pt;}
.h6_c02126{height:57.384531pt;}
.h5_c02126{height:62.781250pt;}
.h4_c02126{height:63.101250pt;}
.h0_c02126{height:1122.666667pt;}
.w1_c02126{width:793.333333pt;}
.w0_c02126{width:793.626667pt;}
.x0_c02126{left:0.000000pt;}
.x1_c02126{left:113.440000pt;}
.x3_c02126{left:120.560000pt;}
.x4_c02126{left:224.560000pt;}
.x2_c02126{left:388.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_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_00f4ec18d87b932b7a07e99a.woff2')format("woff");}.ff1_c02127{font-family:ff1_c02127;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02127;src:url('chunks/assets/font_a2d57179f74c0a22cfdca736.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_0b7767a38799bcaa7618d6b3.woff2')format("woff");}.ff3_c02127{font-family:ff3_c02127;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02127;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02127{font-family:ff4_c02127;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;}
.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;}
.ls2c_c02127{letter-spacing:-0.239400px;}
.ls2a_c02127{letter-spacing:-0.181944px;}
.ls21_c02127{letter-spacing:-0.134064px;}
.ls22_c02127{letter-spacing:-0.129276px;}
.ls29_c02127{letter-spacing:-0.114912px;}
.ls27_c02127{letter-spacing:-0.105336px;}
.ls2e_c02127{letter-spacing:-0.090972px;}
.ls32_c02127{letter-spacing:-0.086184px;}
.ls37_c02127{letter-spacing:-0.083880px;}
.ls20_c02127{letter-spacing:-0.071820px;}
.ls24_c02127{letter-spacing:-0.062244px;}
.ls34_c02127{letter-spacing:-0.050328px;}
.ls38_c02127{letter-spacing:-0.033552px;}
.ls33_c02127{letter-spacing:-0.025164px;}
.ls2d_c02127{letter-spacing:-0.019152px;}
.ls36_c02127{letter-spacing:-0.016776px;}
.ls1a_c02127{letter-spacing:-0.014400px;}
.ls30_c02127{letter-spacing:-0.014364px;}
.ls26_c02127{letter-spacing:-0.009576px;}
.ls35_c02127{letter-spacing:-0.008388px;}
.ls1d_c02127{letter-spacing:-0.007200px;}
.ls28_c02127{letter-spacing:-0.004788px;}
.ls1b_c02127{letter-spacing:0.000000px;}
.lsa_c02127{letter-spacing:0.009576px;}
.ls25_c02127{letter-spacing:0.014364px;}
.ls1c_c02127{letter-spacing:0.014400px;}
.lsf_c02127{letter-spacing:0.019152px;}
.ls0_c02127{letter-spacing:0.028800px;}
.ls2_c02127{letter-spacing:0.036000px;}
.ls13_c02127{letter-spacing:0.038304px;}
.ls1_c02127{letter-spacing:0.043200px;}
.ls3_c02127{letter-spacing:0.050400px;}
.ls1f_c02127{letter-spacing:0.054108px;}
.lsc_c02127{letter-spacing:0.057456px;}
.ls4_c02127{letter-spacing:0.057600px;}
.lsd_c02127{letter-spacing:0.062244px;}
.lse_c02127{letter-spacing:0.081396px;}
.ls16_c02127{letter-spacing:0.086184px;}
.ls1e_c02127{letter-spacing:0.090180px;}
.ls10_c02127{letter-spacing:0.100548px;}
.ls8_c02127{letter-spacing:0.105336px;}
.lsb_c02127{letter-spacing:0.114912px;}
.ls7_c02127{letter-spacing:0.119700px;}
.ls9_c02127{letter-spacing:0.124488px;}
.ls39_c02127{letter-spacing:0.125172px;}
.ls18_c02127{letter-spacing:0.125820px;}
.ls15_c02127{letter-spacing:0.134064px;}
.ls6_c02127{letter-spacing:0.143640px;}
.ls2f_c02127{letter-spacing:0.177156px;}
.ls23_c02127{letter-spacing:0.186732px;}
.ls11_c02127{letter-spacing:0.191520px;}
.ls31_c02127{letter-spacing:0.196308px;}
.ls14_c02127{letter-spacing:0.225036px;}
.ls5_c02127{letter-spacing:0.339948px;}
.ls2b_c02127{letter-spacing:0.378252px;}
.ls17_c02127{letter-spacing:0.486504px;}
.ls19_c02127{letter-spacing:0.847188px;}
.ls12_c02127{letter-spacing:1.058148px;}
.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;}
}
.ws2_c02127{word-spacing:-47.880000px;}
.ws19_c02127{word-spacing:-0.426132px;}
.ws3_c02127{word-spacing:-0.272916px;}
.ws21_c02127{word-spacing:-0.244188px;}
.ws1_c02127{word-spacing:-0.239400px;}
.wsa_c02127{word-spacing:-0.234612px;}
.ws1f_c02127{word-spacing:-0.225036px;}
.ws4_c02127{word-spacing:-0.191520px;}
.ws22_c02127{word-spacing:-0.181944px;}
.wsb_c02127{word-spacing:-0.172368px;}
.ws6_c02127{word-spacing:-0.167580px;}
.wsd_c02127{word-spacing:-0.162792px;}
.ws7_c02127{word-spacing:-0.153216px;}
.ws1a_c02127{word-spacing:-0.148428px;}
.ws23_c02127{word-spacing:-0.134064px;}
.ws15_c02127{word-spacing:-0.129276px;}
.ws14_c02127{word-spacing:-0.110124px;}
.ws31_c02127{word-spacing:-0.108000px;}
.wsf_c02127{word-spacing:-0.105336px;}
.ws1e_c02127{word-spacing:-0.086184px;}
.ws2c_c02127{word-spacing:-0.079200px;}
.ws27_c02127{word-spacing:-0.075492px;}
.ws28_c02127{word-spacing:-0.067104px;}
.ws18_c02127{word-spacing:-0.067032px;}
.ws10_c02127{word-spacing:-0.062244px;}
.ws25_c02127{word-spacing:-0.058716px;}
.wsc_c02127{word-spacing:-0.057456px;}
.ws5_c02127{word-spacing:-0.047880px;}
.ws13_c02127{word-spacing:-0.043092px;}
.ws11_c02127{word-spacing:-0.038304px;}
.ws26_c02127{word-spacing:-0.033552px;}
.ws20_c02127{word-spacing:-0.033516px;}
.ws2d_c02127{word-spacing:-0.028800px;}
.ws1c_c02127{word-spacing:-0.028728px;}
.ws2b_c02127{word-spacing:-0.014400px;}
.ws29_c02127{word-spacing:0.000000px;}
.wse_c02127{word-spacing:0.014364px;}
.ws2a_c02127{word-spacing:0.014400px;}
.ws0_c02127{word-spacing:0.023940px;}
.ws24_c02127{word-spacing:0.038304px;}
.ws1d_c02127{word-spacing:0.043092px;}
.ws12_c02127{word-spacing:0.057456px;}
.ws16_c02127{word-spacing:0.067032px;}
.ws9_c02127{word-spacing:0.081396px;}
.ws8_c02127{word-spacing:0.086184px;}
.ws17_c02127{word-spacing:0.134064px;}
.ws1b_c02127{word-spacing:0.191520px;}
.ws30_c02127{word-spacing:11.469600px;}
.ws2f_c02127{word-spacing:11.484000px;}
.ws2e_c02127{word-spacing:26.920800px;}
._3_c02127{margin-left:-2.507544px;}
._1_c02127{margin-left:-1.166400px;}
._2_c02127{width:1.010268px;}
._0_c02127{width:194.400000px;}
.fc0_c02127{color:rgb(0,0,0);}
.fs1_c02127{font-size:47.880000px;}
.fs3_c02127{font-size:60.120000px;}
.fs4_c02127{font-size:65.880000px;}
.fs0_c02127{font-size:72.000000px;}
.fs2_c02127{font-size:83.880000px;}
.y0_c02127{bottom:0.000000px;}
.y3_c02127{bottom:57.360450px;}
.y2_c02127{bottom:78.060450px;}
.y17_c02127{bottom:127.648839px;}
.y16_c02127{bottom:141.508902px;}
.y15_c02127{bottom:155.279190px;}
.y14_c02127{bottom:169.049478px;}
.y13_c02127{bottom:182.909541px;}
.y12_c02127{bottom:196.679829px;}
.y11_c02127{bottom:210.450117px;}
.y10_c02127{bottom:224.310180px;}
.yf_c02127{bottom:238.080468px;}
.ye_c02127{bottom:251.850756px;}
.yd_c02127{bottom:265.710819px;}
.yc_c02127{bottom:276.870450px;}
.y18_c02127{bottom:300.180450px;}
.y2f_c02127{bottom:301.890450px;}
.y19_c02127{bottom:324.120234px;}
.y30_c02127{bottom:325.830450px;}
.y1a_c02127{bottom:348.060018px;}
.y31_c02127{bottom:349.770450px;}
.y1b_c02127{bottom:371.999802px;}
.y32_c02127{bottom:373.710450px;}
.y1c_c02127{bottom:395.939586px;}
.y33_c02127{bottom:397.740225px;}
.y1d_c02127{bottom:419.969550px;}
.y34_c02127{bottom:421.680225px;}
.y1e_c02127{bottom:443.909334px;}
.y35_c02127{bottom:445.620225px;}
.y1f_c02127{bottom:467.849118px;}
.y36_c02127{bottom:469.560225px;}
.y20_c02127{bottom:491.788902px;}
.y37_c02127{bottom:493.500225px;}
.y21_c02127{bottom:515.728686px;}
.y38_c02127{bottom:517.440225px;}
.y22_c02127{bottom:539.758650px;}
.y39_c02127{bottom:541.470000px;}
.y23_c02127{bottom:563.698434px;}
.y3a_c02127{bottom:565.410000px;}
.y24_c02127{bottom:587.638218px;}
.y3b_c02127{bottom:589.350000px;}
.y25_c02127{bottom:611.578002px;}
.y3c_c02127{bottom:613.290450px;}
.y26_c02127{bottom:635.517786px;}
.y3d_c02127{bottom:637.230450px;}
.y27_c02127{bottom:659.457570px;}
.y3e_c02127{bottom:661.170450px;}
.y28_c02127{bottom:683.487534px;}
.y3f_c02127{bottom:685.200225px;}
.y29_c02127{bottom:707.427318px;}
.y40_c02127{bottom:709.140225px;}
.y2a_c02127{bottom:731.367102px;}
.y41_c02127{bottom:733.080225px;}
.y2b_c02127{bottom:755.306886px;}
.y42_c02127{bottom:757.020225px;}
.y2c_c02127{bottom:779.246670px;}
.y43_c02127{bottom:780.960225px;}
.y2d_c02127{bottom:803.186454px;}
.y44_c02127{bottom:804.990000px;}
.y2e_c02127{bottom:827.216418px;}
.y45_c02127{bottom:828.930000px;}
.y48_c02127{bottom:870.510450px;}
.y47_c02127{bottom:896.519946px;}
.y46_c02127{bottom:922.170450px;}
.yb_c02127{bottom:968.070450px;}
.ya_c02127{bottom:1002.180450px;}
.y9_c02127{bottom:1033.230450px;}
.y8_c02127{bottom:1064.280450px;}
.y7_c02127{bottom:1090.740450px;}
.y6_c02127{bottom:1105.500450px;}
.y5_c02127{bottom:1124.850450px;}
.y4_c02127{bottom:1139.970450px;}
.y1_c02127{bottom:1193.160450px;}
.h7_c02127{height:34.764434px;}
.h8_c02127{height:34.766234px;}
.h9_c02127{height:34.766834px;}
.h4_c02127{height:42.011895px;}
.h3_c02127{height:42.526230px;}
.h6_c02127{height:43.651582px;}
.hb_c02127{height:47.833770px;}
.ha_c02127{height:60.903105px;}
.h2_c02127{height:63.175781px;}
.h1_c02127{height:63.949219px;}
.h5_c02127{height:74.500840px;}
.h0_c02127{height:1263.000000px;}
.w1_c02127{width:892.500000px;}
.w0_c02127{width:892.830000px;}
.x0_c02127{left:0.000000px;}
.x6_c02127{left:95.670000px;}
.x3_c02127{left:117.000000px;}
.x1_c02127{left:127.620000px;}
.x24_c02127{left:138.071853px;}
.x29_c02127{left:144.182979px;}
.x5_c02127{left:148.950000px;}
.x23_c02127{left:152.288622px;}
.x19_c02127{left:155.250000px;}
.x26_c02127{left:166.502241px;}
.x2a_c02127{left:172.263402px;}
.x25_c02127{left:178.290297px;}
.x4_c02127{left:185.310000px;}
.x21_c02127{left:196.566849px;}
.x1b_c02127{left:199.890918px;}
.x20_c02127{left:208.265130px;}
.x2b_c02127{left:212.580000px;}
.x1e_c02127{left:235.982862px;}
.x1a_c02127{left:237.061359px;}
.x28_c02127{left:247.862331px;}
.x22_c02127{left:256.688568px;}
.x1c_c02127{left:264.421188px;}
.x1d_c02127{left:271.622340px;}
.x27_c02127{left:305.192646px;}
.x1f_c02127{left:314.644914px;}
.x2c_c02127{left:381.065562px;}
.x2d_c02127{left:425.790000px;}
.x2_c02127{left:437.580000px;}
.x18_c02127{left:611.278983px;}
.x17_c02127{left:619.378650px;}
.x16_c02127{left:641.968740px;}
.x15_c02127{left:659.698128px;}
.x14_c02127{left:668.517732px;}
.x13_c02127{left:676.617399px;}
.x12_c02127{left:681.478101px;}
.x11_c02127{left:684.718569px;}
.x10_c02127{left:686.338803px;}
.xf_c02127{left:689.489091px;}
.xe_c02127{left:694.349793px;}
.xd_c02127{left:696.780144px;}
.xc_c02127{left:703.259577px;}
.xb_c02127{left:707.219982px;}
.xa_c02127{left:712.889298px;}
.x9_c02127{left:716.129766px;}
.x8_c02127{left:717.750000px;}
.x7_c02127{left:755.370000px;}
@media print{
.v0_c02127{vertical-align:0.000000pt;}
.ls2c_c02127{letter-spacing:-0.212800pt;}
.ls2a_c02127{letter-spacing:-0.161728pt;}
.ls21_c02127{letter-spacing:-0.119168pt;}
.ls22_c02127{letter-spacing:-0.114912pt;}
.ls29_c02127{letter-spacing:-0.102144pt;}
.ls27_c02127{letter-spacing:-0.093632pt;}
.ls2e_c02127{letter-spacing:-0.080864pt;}
.ls32_c02127{letter-spacing:-0.076608pt;}
.ls37_c02127{letter-spacing:-0.074560pt;}
.ls20_c02127{letter-spacing:-0.063840pt;}
.ls24_c02127{letter-spacing:-0.055328pt;}
.ls34_c02127{letter-spacing:-0.044736pt;}
.ls38_c02127{letter-spacing:-0.029824pt;}
.ls33_c02127{letter-spacing:-0.022368pt;}
.ls2d_c02127{letter-spacing:-0.017024pt;}
.ls36_c02127{letter-spacing:-0.014912pt;}
.ls1a_c02127{letter-spacing:-0.012800pt;}
.ls30_c02127{letter-spacing:-0.012768pt;}
.ls26_c02127{letter-spacing:-0.008512pt;}
.ls35_c02127{letter-spacing:-0.007456pt;}
.ls1d_c02127{letter-spacing:-0.006400pt;}
.ls28_c02127{letter-spacing:-0.004256pt;}
.ls1b_c02127{letter-spacing:0.000000pt;}
.lsa_c02127{letter-spacing:0.008512pt;}
.ls25_c02127{letter-spacing:0.012768pt;}
.ls1c_c02127{letter-spacing:0.012800pt;}
.lsf_c02127{letter-spacing:0.017024pt;}
.ls0_c02127{letter-spacing:0.025600pt;}
.ls2_c02127{letter-spacing:0.032000pt;}
.ls13_c02127{letter-spacing:0.034048pt;}
.ls1_c02127{letter-spacing:0.038400pt;}
.ls3_c02127{letter-spacing:0.044800pt;}
.ls1f_c02127{letter-spacing:0.048096pt;}
.lsc_c02127{letter-spacing:0.051072pt;}
.ls4_c02127{letter-spacing:0.051200pt;}
.lsd_c02127{letter-spacing:0.055328pt;}
.lse_c02127{letter-spacing:0.072352pt;}
.ls16_c02127{letter-spacing:0.076608pt;}
.ls1e_c02127{letter-spacing:0.080160pt;}
.ls10_c02127{letter-spacing:0.089376pt;}
.ls8_c02127{letter-spacing:0.093632pt;}
.lsb_c02127{letter-spacing:0.102144pt;}
.ls7_c02127{letter-spacing:0.106400pt;}
.ls9_c02127{letter-spacing:0.110656pt;}
.ls39_c02127{letter-spacing:0.111264pt;}
.ls18_c02127{letter-spacing:0.111840pt;}
.ls15_c02127{letter-spacing:0.119168pt;}
.ls6_c02127{letter-spacing:0.127680pt;}
.ls2f_c02127{letter-spacing:0.157472pt;}
.ls23_c02127{letter-spacing:0.165984pt;}
.ls11_c02127{letter-spacing:0.170240pt;}
.ls31_c02127{letter-spacing:0.174496pt;}
.ls14_c02127{letter-spacing:0.200032pt;}
.ls5_c02127{letter-spacing:0.302176pt;}
.ls2b_c02127{letter-spacing:0.336224pt;}
.ls17_c02127{letter-spacing:0.432448pt;}
.ls19_c02127{letter-spacing:0.753056pt;}
.ls12_c02127{letter-spacing:0.940576pt;}
.ws2_c02127{word-spacing:-42.560000pt;}
.ws19_c02127{word-spacing:-0.378784pt;}
.ws3_c02127{word-spacing:-0.242592pt;}
.ws21_c02127{word-spacing:-0.217056pt;}
.ws1_c02127{word-spacing:-0.212800pt;}
.wsa_c02127{word-spacing:-0.208544pt;}
.ws1f_c02127{word-spacing:-0.200032pt;}
.ws4_c02127{word-spacing:-0.170240pt;}
.ws22_c02127{word-spacing:-0.161728pt;}
.wsb_c02127{word-spacing:-0.153216pt;}
.ws6_c02127{word-spacing:-0.148960pt;}
.wsd_c02127{word-spacing:-0.144704pt;}
.ws7_c02127{word-spacing:-0.136192pt;}
.ws1a_c02127{word-spacing:-0.131936pt;}
.ws23_c02127{word-spacing:-0.119168pt;}
.ws15_c02127{word-spacing:-0.114912pt;}
.ws14_c02127{word-spacing:-0.097888pt;}
.ws31_c02127{word-spacing:-0.096000pt;}
.wsf_c02127{word-spacing:-0.093632pt;}
.ws1e_c02127{word-spacing:-0.076608pt;}
.ws2c_c02127{word-spacing:-0.070400pt;}
.ws27_c02127{word-spacing:-0.067104pt;}
.ws28_c02127{word-spacing:-0.059648pt;}
.ws18_c02127{word-spacing:-0.059584pt;}
.ws10_c02127{word-spacing:-0.055328pt;}
.ws25_c02127{word-spacing:-0.052192pt;}
.wsc_c02127{word-spacing:-0.051072pt;}
.ws5_c02127{word-spacing:-0.042560pt;}
.ws13_c02127{word-spacing:-0.038304pt;}
.ws11_c02127{word-spacing:-0.034048pt;}
.ws26_c02127{word-spacing:-0.029824pt;}
.ws20_c02127{word-spacing:-0.029792pt;}
.ws2d_c02127{word-spacing:-0.025600pt;}
.ws1c_c02127{word-spacing:-0.025536pt;}
.ws2b_c02127{word-spacing:-0.012800pt;}
.ws29_c02127{word-spacing:0.000000pt;}
.wse_c02127{word-spacing:0.012768pt;}
.ws2a_c02127{word-spacing:0.012800pt;}
.ws0_c02127{word-spacing:0.021280pt;}
.ws24_c02127{word-spacing:0.034048pt;}
.ws1d_c02127{word-spacing:0.038304pt;}
.ws12_c02127{word-spacing:0.051072pt;}
.ws16_c02127{word-spacing:0.059584pt;}
.ws9_c02127{word-spacing:0.072352pt;}
.ws8_c02127{word-spacing:0.076608pt;}
.ws17_c02127{word-spacing:0.119168pt;}
.ws1b_c02127{word-spacing:0.170240pt;}
.ws30_c02127{word-spacing:10.195200pt;}
.ws2f_c02127{word-spacing:10.208000pt;}
.ws2e_c02127{word-spacing:23.929600pt;}
._3_c02127{margin-left:-2.228928pt;}
._1_c02127{margin-left:-1.036800pt;}
._2_c02127{width:0.898016pt;}
._0_c02127{width:172.800000pt;}
.fs1_c02127{font-size:42.560000pt;}
.fs3_c02127{font-size:53.440000pt;}
.fs4_c02127{font-size:58.560000pt;}
.fs0_c02127{font-size:64.000000pt;}
.fs2_c02127{font-size:74.560000pt;}
.y0_c02127{bottom:0.000000pt;}
.y3_c02127{bottom:50.987067pt;}
.y2_c02127{bottom:69.387067pt;}
.y17_c02127{bottom:113.465635pt;}
.y16_c02127{bottom:125.785691pt;}
.y15_c02127{bottom:138.025947pt;}
.y14_c02127{bottom:150.266203pt;}
.y13_c02127{bottom:162.586259pt;}
.y12_c02127{bottom:174.826515pt;}
.y11_c02127{bottom:187.066771pt;}
.y10_c02127{bottom:199.386827pt;}
.yf_c02127{bottom:211.627083pt;}
.ye_c02127{bottom:223.867339pt;}
.yd_c02127{bottom:236.187395pt;}
.yc_c02127{bottom:246.107067pt;}
.y18_c02127{bottom:266.827067pt;}
.y2f_c02127{bottom:268.347067pt;}
.y19_c02127{bottom:288.106875pt;}
.y30_c02127{bottom:289.627067pt;}
.y1a_c02127{bottom:309.386683pt;}
.y31_c02127{bottom:310.907067pt;}
.y1b_c02127{bottom:330.666491pt;}
.y32_c02127{bottom:332.187067pt;}
.y1c_c02127{bottom:351.946299pt;}
.y33_c02127{bottom:353.546867pt;}
.y1d_c02127{bottom:373.306267pt;}
.y34_c02127{bottom:374.826867pt;}
.y1e_c02127{bottom:394.586075pt;}
.y35_c02127{bottom:396.106867pt;}
.y1f_c02127{bottom:415.865883pt;}
.y36_c02127{bottom:417.386867pt;}
.y20_c02127{bottom:437.145691pt;}
.y37_c02127{bottom:438.666867pt;}
.y21_c02127{bottom:458.425499pt;}
.y38_c02127{bottom:459.946867pt;}
.y22_c02127{bottom:479.785467pt;}
.y39_c02127{bottom:481.306667pt;}
.y23_c02127{bottom:501.065275pt;}
.y3a_c02127{bottom:502.586667pt;}
.y24_c02127{bottom:522.345083pt;}
.y3b_c02127{bottom:523.866667pt;}
.y25_c02127{bottom:543.624891pt;}
.y3c_c02127{bottom:545.147067pt;}
.y26_c02127{bottom:564.904699pt;}
.y3d_c02127{bottom:566.427067pt;}
.y27_c02127{bottom:586.184507pt;}
.y3e_c02127{bottom:587.707067pt;}
.y28_c02127{bottom:607.544475pt;}
.y3f_c02127{bottom:609.066867pt;}
.y29_c02127{bottom:628.824283pt;}
.y40_c02127{bottom:630.346867pt;}
.y2a_c02127{bottom:650.104091pt;}
.y41_c02127{bottom:651.626867pt;}
.y2b_c02127{bottom:671.383899pt;}
.y42_c02127{bottom:672.906867pt;}
.y2c_c02127{bottom:692.663707pt;}
.y43_c02127{bottom:694.186867pt;}
.y2d_c02127{bottom:713.943515pt;}
.y44_c02127{bottom:715.546667pt;}
.y2e_c02127{bottom:735.303483pt;}
.y45_c02127{bottom:736.826667pt;}
.y48_c02127{bottom:773.787067pt;}
.y47_c02127{bottom:796.906619pt;}
.y46_c02127{bottom:819.707067pt;}
.yb_c02127{bottom:860.507067pt;}
.ya_c02127{bottom:890.827067pt;}
.y9_c02127{bottom:918.427067pt;}
.y8_c02127{bottom:946.027067pt;}
.y7_c02127{bottom:969.547067pt;}
.y6_c02127{bottom:982.667067pt;}
.y5_c02127{bottom:999.867067pt;}
.y4_c02127{bottom:1013.307067pt;}
.y1_c02127{bottom:1060.587067pt;}
.h7_c02127{height:30.901719pt;}
.h8_c02127{height:30.903319pt;}
.h9_c02127{height:30.903852pt;}
.h4_c02127{height:37.343906pt;}
.h3_c02127{height:37.801094pt;}
.h6_c02127{height:38.801406pt;}
.hb_c02127{height:42.518906pt;}
.ha_c02127{height:54.136094pt;}
.h2_c02127{height:56.156250pt;}
.h1_c02127{height:56.843750pt;}
.h5_c02127{height:66.222969pt;}
.h0_c02127{height:1122.666667pt;}
.w1_c02127{width:793.333333pt;}
.w0_c02127{width:793.626667pt;}
.x0_c02127{left:0.000000pt;}
.x6_c02127{left:85.040000pt;}
.x3_c02127{left:104.000000pt;}
.x1_c02127{left:113.440000pt;}
.x24_c02127{left:122.730536pt;}
.x29_c02127{left:128.162648pt;}
.x5_c02127{left:132.400000pt;}
.x23_c02127{left:135.367664pt;}
.x19_c02127{left:138.000000pt;}
.x26_c02127{left:148.001992pt;}
.x2a_c02127{left:153.123024pt;}
.x25_c02127{left:158.480264pt;}
.x4_c02127{left:164.720000pt;}
.x21_c02127{left:174.726088pt;}
.x1b_c02127{left:177.680816pt;}
.x20_c02127{left:185.124560pt;}
.x2b_c02127{left:188.960000pt;}
.x1e_c02127{left:209.762544pt;}
.x1a_c02127{left:210.721208pt;}
.x28_c02127{left:220.322072pt;}
.x22_c02127{left:228.167616pt;}
.x1c_c02127{left:235.041056pt;}
.x1d_c02127{left:241.442080pt;}
.x27_c02127{left:271.282352pt;}
.x1f_c02127{left:279.684368pt;}
.x2c_c02127{left:338.724944pt;}
.x2d_c02127{left:378.480000pt;}
.x2_c02127{left:388.960000pt;}
.x18_c02127{left:543.359096pt;}
.x17_c02127{left:550.558800pt;}
.x16_c02127{left:570.638880pt;}
.x15_c02127{left:586.398336pt;}
.x14_c02127{left:594.237984pt;}
.x13_c02127{left:601.437688pt;}
.x12_c02127{left:605.758312pt;}
.x11_c02127{left:608.638728pt;}
.x10_c02127{left:610.078936pt;}
.xf_c02127{left:612.879192pt;}
.xe_c02127{left:617.199816pt;}
.xd_c02127{left:619.360128pt;}
.xc_c02127{left:625.119624pt;}
.xb_c02127{left:628.639984pt;}
.xa_c02127{left:633.679376pt;}
.x9_c02127{left:636.559792pt;}
.x8_c02127{left:638.000000pt;}
.x7_c02127{left:671.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_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_d4a916f7c5911f6ebbfff11f.woff2')format("woff");}.ff1_c02128{font-family:ff1_c02128;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02128;src:url('chunks/assets/font_33ea9b72158c98ad18a2bb8c.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_0b7767a38799bcaa7618d6b3.woff2')format("woff");}.ff3_c02128{font-family:ff3_c02128;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02128;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02128{font-family:ff4_c02128;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;}
.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;}
.ls2d_c02128{letter-spacing:-0.306612px;}
.ls25_c02128{letter-spacing:-0.216432px;}
.ls28_c02128{letter-spacing:-0.186372px;}
.ls30_c02128{letter-spacing:-0.174348px;}
.ls1f_c02128{letter-spacing:-0.136800px;}
.ls2e_c02128{letter-spacing:-0.126252px;}
.ls26_c02128{letter-spacing:-0.120240px;}
.ls20_c02128{letter-spacing:-0.115200px;}
.ls19_c02128{letter-spacing:-0.096192px;}
.ls14_c02128{letter-spacing:-0.090972px;}
.ls1c_c02128{letter-spacing:-0.090180px;}
.ls16_c02128{letter-spacing:-0.084168px;}
.ls29_c02128{letter-spacing:-0.078156px;}
.ls2f_c02128{letter-spacing:-0.072144px;}
.ls2a_c02128{letter-spacing:-0.066132px;}
.ls27_c02128{letter-spacing:-0.060120px;}
.ls1d_c02128{letter-spacing:-0.054108px;}
.ls1b_c02128{letter-spacing:-0.048096px;}
.ls22_c02128{letter-spacing:-0.043200px;}
.ls31_c02128{letter-spacing:-0.042084px;}
.ls15_c02128{letter-spacing:-0.036072px;}
.ls21_c02128{letter-spacing:-0.028800px;}
.ls1e_c02128{letter-spacing:-0.024048px;}
.ls18_c02128{letter-spacing:-0.018036px;}
.ls12_c02128{letter-spacing:-0.014400px;}
.ls2c_c02128{letter-spacing:-0.012024px;}
.ls1a_c02128{letter-spacing:-0.006012px;}
.ls13_c02128{letter-spacing:0.000000px;}
.ls11_c02128{letter-spacing:0.006012px;}
.ls23_c02128{letter-spacing:0.007200px;}
.ls7_c02128{letter-spacing:0.012024px;}
.ls9_c02128{letter-spacing:0.014400px;}
.ls10_c02128{letter-spacing:0.018036px;}
.lsb_c02128{letter-spacing:0.021600px;}
.ls5_c02128{letter-spacing:0.024048px;}
.ls0_c02128{letter-spacing:0.028800px;}
.ls2_c02128{letter-spacing:0.036000px;}
.ls6_c02128{letter-spacing:0.036072px;}
.lsf_c02128{letter-spacing:0.043200px;}
.ls1_c02128{letter-spacing:0.050400px;}
.ls24_c02128{letter-spacing:0.054108px;}
.ls3_c02128{letter-spacing:0.057600px;}
.lse_c02128{letter-spacing:0.066132px;}
.lsc_c02128{letter-spacing:0.072000px;}
.ls4_c02128{letter-spacing:0.090180px;}
.ls2b_c02128{letter-spacing:0.102204px;}
.ls32_c02128{letter-spacing:0.125172px;}
.ls17_c02128{letter-spacing:0.138276px;}
.lsd_c02128{letter-spacing:0.180360px;}
.lsa_c02128{letter-spacing:0.288000px;}
.ls8_c02128{letter-spacing:0.648000px;}
.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;}
}
.ws13_c02128{word-spacing:-72.000000px;}
.ws2_c02128{word-spacing:-60.120000px;}
.ws3_c02128{word-spacing:-0.198396px;}
.wsf_c02128{word-spacing:-0.150300px;}
.ws1c_c02128{word-spacing:-0.126252px;}
.ws1d_c02128{word-spacing:-0.115200px;}
.ws14_c02128{word-spacing:-0.100800px;}
.ws7_c02128{word-spacing:-0.096192px;}
.ws16_c02128{word-spacing:-0.093600px;}
.ws11_c02128{word-spacing:-0.086400px;}
.ws6_c02128{word-spacing:-0.084168px;}
.ws1f_c02128{word-spacing:-0.078156px;}
.wsa_c02128{word-spacing:-0.072144px;}
.ws2a_c02128{word-spacing:-0.072000px;}
.ws21_c02128{word-spacing:-0.066132px;}
.ws9_c02128{word-spacing:-0.060120px;}
.ws8_c02128{word-spacing:-0.054108px;}
.ws1e_c02128{word-spacing:-0.048096px;}
.ws15_c02128{word-spacing:-0.043200px;}
.ws4_c02128{word-spacing:-0.042084px;}
.wse_c02128{word-spacing:-0.036072px;}
.ws17_c02128{word-spacing:-0.028800px;}
.ws0_c02128{word-spacing:-0.024048px;}
.ws24_c02128{word-spacing:-0.018036px;}
.wsb_c02128{word-spacing:-0.012024px;}
.wsd_c02128{word-spacing:-0.006012px;}
.ws1a_c02128{word-spacing:0.000000px;}
.ws22_c02128{word-spacing:0.012024px;}
.ws25_c02128{word-spacing:0.014400px;}
.ws1_c02128{word-spacing:0.024048px;}
.wsc_c02128{word-spacing:0.030060px;}
.ws5_c02128{word-spacing:0.036072px;}
.ws12_c02128{word-spacing:0.043200px;}
.ws19_c02128{word-spacing:0.060120px;}
.ws10_c02128{word-spacing:0.064800px;}
.ws23_c02128{word-spacing:0.114228px;}
.ws1b_c02128{word-spacing:0.126252px;}
.ws18_c02128{word-spacing:0.156312px;}
.ws20_c02128{word-spacing:0.246492px;}
.ws29_c02128{word-spacing:16.048800px;}
.ws28_c02128{word-spacing:16.164000px;}
.ws27_c02128{word-spacing:31.197600px;}
.ws26_c02128{word-spacing:31.212000px;}
._4_c02128{margin-left:-14.263812px;}
._1_c02128{margin-left:-1.137600px;}
._5_c02128{width:1.227780px;}
._0_c02128{width:194.400000px;}
._2_c02128{width:2404.088316px;}
._3_c02128{width:2432.880000px;}
.fc0_c02128{color:rgb(0,0,0);}
.fs1_c02128{font-size:24.120000px;}
.fs2_c02128{font-size:47.880000px;}
.fs3_c02128{font-size:60.120000px;}
.fs4_c02128{font-size:65.880000px;}
.fs0_c02128{font-size:72.000000px;}
.y0_c02128{bottom:0.000000px;}
.y3_c02128{bottom:57.360450px;}
.y2_c02128{bottom:78.060450px;}
.yd_c02128{bottom:117.120600px;}
.y32_c02128{bottom:139.980450px;}
.y3a_c02128{bottom:140.879244px;}
.y33_c02128{bottom:163.200297px;}
.y3b_c02128{bottom:164.008911px;}
.y34_c02128{bottom:186.329964px;}
.y3c_c02128{bottom:187.228758px;}
.y35_c02128{bottom:209.549811px;}
.y3d_c02128{bottom:210.358425px;}
.y36_c02128{bottom:232.769658px;}
.y3e_c02128{bottom:233.578272px;}
.y37_c02128{bottom:255.899325px;}
.y3f_c02128{bottom:256.707939px;}
.y38_c02128{bottom:279.119172px;}
.y40_c02128{bottom:279.927786px;}
.y39_c02128{bottom:302.248839px;}
.y41_c02128{bottom:303.057453px;}
.y44_c02128{bottom:350.850450px;}
.y43_c02128{bottom:382.440450px;}
.y42_c02128{bottom:404.490450px;}
.yc_c02128{bottom:432.300450px;}
.yb_c02128{bottom:437.790600px;}
.y21_c02128{bottom:461.820450px;}
.y28_c02128{bottom:462.633573px;}
.y22_c02128{bottom:486.030774px;}
.y29_c02128{bottom:486.934077px;}
.y23_c02128{bottom:510.331278px;}
.y2a_c02128{bottom:511.144401px;}
.y24_c02128{bottom:534.631782px;}
.y2b_c02128{bottom:535.444905px;}
.y25_c02128{bottom:558.842106px;}
.y2c_c02128{bottom:559.745409px;}
.y26_c02128{bottom:583.142610px;}
.y2d_c02128{bottom:583.955733px;}
.y27_c02128{bottom:607.443114px;}
.y2e_c02128{bottom:608.256237px;}
.y31_c02128{bottom:659.460450px;}
.y30_c02128{bottom:684.390450px;}
.y2f_c02128{bottom:706.440450px;}
.ya_c02128{bottom:737.400450px;}
.y9_c02128{bottom:752.700450px;}
.ye_c02128{bottom:773.670450px;}
.y16_c02128{bottom:774.479064px;}
.yf_c02128{bottom:792.839712px;}
.y17_c02128{bottom:793.649829px;}
.y10_c02128{bottom:811.920297px;}
.y18_c02128{bottom:812.730414px;}
.y11_c02128{bottom:831.089559px;}
.y19_c02128{bottom:831.901179px;}
.y12_c02128{bottom:850.170144px;}
.y1a_c02128{bottom:850.981764px;}
.y13_c02128{bottom:869.339406px;}
.y1b_c02128{bottom:870.152529px;}
.y14_c02128{bottom:888.419991px;}
.y1c_c02128{bottom:889.233114px;}
.y15_c02128{bottom:907.589253px;}
.y1d_c02128{bottom:908.403879px;}
.y20_c02128{bottom:949.080450px;}
.y1f_c02128{bottom:985.620450px;}
.y1e_c02128{bottom:1007.670450px;}
.y8_c02128{bottom:1050.510450px;}
.y7_c02128{bottom:1081.560450px;}
.y6_c02128{bottom:1112.610450px;}
.y5_c02128{bottom:1130.610450px;}
.y4_c02128{bottom:1139.970450px;}
.y1_c02128{bottom:1193.160450px;}
.h3_c02128{height:21.163887px;}
.h5_c02128{height:21.422988px;}
.h4_c02128{height:42.526230px;}
.h6_c02128{height:43.651582px;}
.h8_c02128{height:47.833770px;}
.h7_c02128{height:52.277344px;}
.h2_c02128{height:63.175781px;}
.h1_c02128{height:63.949219px;}
.h0_c02128{height:1263.000000px;}
.w1_c02128{width:892.500000px;}
.w0_c02128{width:892.830000px;}
.x0_c02128{left:0.000000px;}
.x1_c02128{left:127.620000px;}
.x3_c02128{left:148.950000px;}
.x1f_c02128{left:159.839937px;}
.xf_c02128{left:161.370531px;}
.x2a_c02128{left:163.978848px;}
.x12_c02128{left:166.503276px;}
.x13_c02128{left:175.863960px;}
.xc_c02128{left:177.658542px;}
.x10_c02128{left:178.921062px;}
.x11_c02128{left:188.102889px;}
.xd_c02128{left:197.278704px;}
.x2b_c02128{left:208.980171px;}
.x1d_c02128{left:210.871296px;}
.x2f_c02128{left:214.018227px;}
.x2e_c02128{left:223.828308px;}
.x30_c02128{left:228.870000px;}
.xe_c02128{left:231.479469px;}
.x14_c02128{left:234.450000px;}
.x20_c02128{left:252.720000px;}
.x1c_c02128{left:258.301467px;}
.x1e_c02128{left:263.879100px;}
.x1b_c02128{left:276.929649px;}
.x2d_c02128{left:295.468803px;}
.x2c_c02128{left:307.348515px;}
.x31_c02128{left:374.580000px;}
.x15_c02128{left:398.160000px;}
.x21_c02128{left:400.770000px;}
.x16_c02128{left:434.610000px;}
.x2_c02128{left:437.580000px;}
.x32_c02128{left:464.940000px;}
.x22_c02128{left:467.460000px;}
.x29_c02128{left:622.258578px;}
.x1a_c02128{left:637.739829px;}
.xb_c02128{left:641.158191px;}
.x28_c02128{left:651.508461px;}
.xa_c02128{left:658.438182px;}
.x27_c02128{left:675.358065px;}
.x9_c02128{left:679.588398px;}
.x26_c02128{left:684.628569px;}
.x8_c02128{left:686.699091px;}
.x7_c02128{left:692.189550px;}
.x19_c02128{left:695.340801px;}
.x18_c02128{left:696.780675px;}
.x17_c02128{left:698.850306px;}
.x25_c02128{left:702.269280px;}
.x24_c02128{left:708.479676px;}
.x6_c02128{left:710.279658px;}
.x5_c02128{left:713.429946px;}
.x4_c02128{left:714.960000px;}
.x23_c02128{left:717.660000px;}
@media print{
.v0_c02128{vertical-align:0.000000pt;}
.ls2d_c02128{letter-spacing:-0.272544pt;}
.ls25_c02128{letter-spacing:-0.192384pt;}
.ls28_c02128{letter-spacing:-0.165664pt;}
.ls30_c02128{letter-spacing:-0.154976pt;}
.ls1f_c02128{letter-spacing:-0.121600pt;}
.ls2e_c02128{letter-spacing:-0.112224pt;}
.ls26_c02128{letter-spacing:-0.106880pt;}
.ls20_c02128{letter-spacing:-0.102400pt;}
.ls19_c02128{letter-spacing:-0.085504pt;}
.ls14_c02128{letter-spacing:-0.080864pt;}
.ls1c_c02128{letter-spacing:-0.080160pt;}
.ls16_c02128{letter-spacing:-0.074816pt;}
.ls29_c02128{letter-spacing:-0.069472pt;}
.ls2f_c02128{letter-spacing:-0.064128pt;}
.ls2a_c02128{letter-spacing:-0.058784pt;}
.ls27_c02128{letter-spacing:-0.053440pt;}
.ls1d_c02128{letter-spacing:-0.048096pt;}
.ls1b_c02128{letter-spacing:-0.042752pt;}
.ls22_c02128{letter-spacing:-0.038400pt;}
.ls31_c02128{letter-spacing:-0.037408pt;}
.ls15_c02128{letter-spacing:-0.032064pt;}
.ls21_c02128{letter-spacing:-0.025600pt;}
.ls1e_c02128{letter-spacing:-0.021376pt;}
.ls18_c02128{letter-spacing:-0.016032pt;}
.ls12_c02128{letter-spacing:-0.012800pt;}
.ls2c_c02128{letter-spacing:-0.010688pt;}
.ls1a_c02128{letter-spacing:-0.005344pt;}
.ls13_c02128{letter-spacing:0.000000pt;}
.ls11_c02128{letter-spacing:0.005344pt;}
.ls23_c02128{letter-spacing:0.006400pt;}
.ls7_c02128{letter-spacing:0.010688pt;}
.ls9_c02128{letter-spacing:0.012800pt;}
.ls10_c02128{letter-spacing:0.016032pt;}
.lsb_c02128{letter-spacing:0.019200pt;}
.ls5_c02128{letter-spacing:0.021376pt;}
.ls0_c02128{letter-spacing:0.025600pt;}
.ls2_c02128{letter-spacing:0.032000pt;}
.ls6_c02128{letter-spacing:0.032064pt;}
.lsf_c02128{letter-spacing:0.038400pt;}
.ls1_c02128{letter-spacing:0.044800pt;}
.ls24_c02128{letter-spacing:0.048096pt;}
.ls3_c02128{letter-spacing:0.051200pt;}
.lse_c02128{letter-spacing:0.058784pt;}
.lsc_c02128{letter-spacing:0.064000pt;}
.ls4_c02128{letter-spacing:0.080160pt;}
.ls2b_c02128{letter-spacing:0.090848pt;}
.ls32_c02128{letter-spacing:0.111264pt;}
.ls17_c02128{letter-spacing:0.122912pt;}
.lsd_c02128{letter-spacing:0.160320pt;}
.lsa_c02128{letter-spacing:0.256000pt;}
.ls8_c02128{letter-spacing:0.576000pt;}
.ws13_c02128{word-spacing:-64.000000pt;}
.ws2_c02128{word-spacing:-53.440000pt;}
.ws3_c02128{word-spacing:-0.176352pt;}
.wsf_c02128{word-spacing:-0.133600pt;}
.ws1c_c02128{word-spacing:-0.112224pt;}
.ws1d_c02128{word-spacing:-0.102400pt;}
.ws14_c02128{word-spacing:-0.089600pt;}
.ws7_c02128{word-spacing:-0.085504pt;}
.ws16_c02128{word-spacing:-0.083200pt;}
.ws11_c02128{word-spacing:-0.076800pt;}
.ws6_c02128{word-spacing:-0.074816pt;}
.ws1f_c02128{word-spacing:-0.069472pt;}
.wsa_c02128{word-spacing:-0.064128pt;}
.ws2a_c02128{word-spacing:-0.064000pt;}
.ws21_c02128{word-spacing:-0.058784pt;}
.ws9_c02128{word-spacing:-0.053440pt;}
.ws8_c02128{word-spacing:-0.048096pt;}
.ws1e_c02128{word-spacing:-0.042752pt;}
.ws15_c02128{word-spacing:-0.038400pt;}
.ws4_c02128{word-spacing:-0.037408pt;}
.wse_c02128{word-spacing:-0.032064pt;}
.ws17_c02128{word-spacing:-0.025600pt;}
.ws0_c02128{word-spacing:-0.021376pt;}
.ws24_c02128{word-spacing:-0.016032pt;}
.wsb_c02128{word-spacing:-0.010688pt;}
.wsd_c02128{word-spacing:-0.005344pt;}
.ws1a_c02128{word-spacing:0.000000pt;}
.ws22_c02128{word-spacing:0.010688pt;}
.ws25_c02128{word-spacing:0.012800pt;}
.ws1_c02128{word-spacing:0.021376pt;}
.wsc_c02128{word-spacing:0.026720pt;}
.ws5_c02128{word-spacing:0.032064pt;}
.ws12_c02128{word-spacing:0.038400pt;}
.ws19_c02128{word-spacing:0.053440pt;}
.ws10_c02128{word-spacing:0.057600pt;}
.ws23_c02128{word-spacing:0.101536pt;}
.ws1b_c02128{word-spacing:0.112224pt;}
.ws18_c02128{word-spacing:0.138944pt;}
.ws20_c02128{word-spacing:0.219104pt;}
.ws29_c02128{word-spacing:14.265600pt;}
.ws28_c02128{word-spacing:14.368000pt;}
.ws27_c02128{word-spacing:27.731200pt;}
.ws26_c02128{word-spacing:27.744000pt;}
._4_c02128{margin-left:-12.678944pt;}
._1_c02128{margin-left:-1.011200pt;}
._5_c02128{width:1.091360pt;}
._0_c02128{width:172.800000pt;}
._2_c02128{width:2136.967392pt;}
._3_c02128{width:2162.560000pt;}
.fs1_c02128{font-size:21.440000pt;}
.fs2_c02128{font-size:42.560000pt;}
.fs3_c02128{font-size:53.440000pt;}
.fs4_c02128{font-size:58.560000pt;}
.fs0_c02128{font-size:64.000000pt;}
.y0_c02128{bottom:0.000000pt;}
.y3_c02128{bottom:50.987067pt;}
.y2_c02128{bottom:69.387067pt;}
.yd_c02128{bottom:104.107200pt;}
.y32_c02128{bottom:124.427067pt;}
.y3a_c02128{bottom:125.225995pt;}
.y33_c02128{bottom:145.066931pt;}
.y3b_c02128{bottom:145.785699pt;}
.y34_c02128{bottom:165.626635pt;}
.y3c_c02128{bottom:166.425563pt;}
.y35_c02128{bottom:186.266499pt;}
.y3d_c02128{bottom:186.985267pt;}
.y36_c02128{bottom:206.906363pt;}
.y3e_c02128{bottom:207.625131pt;}
.y37_c02128{bottom:227.466067pt;}
.y3f_c02128{bottom:228.184835pt;}
.y38_c02128{bottom:248.105931pt;}
.y40_c02128{bottom:248.824699pt;}
.y39_c02128{bottom:268.665635pt;}
.y41_c02128{bottom:269.384403pt;}
.y44_c02128{bottom:311.867067pt;}
.y43_c02128{bottom:339.947067pt;}
.y42_c02128{bottom:359.547067pt;}
.yc_c02128{bottom:384.267067pt;}
.yb_c02128{bottom:389.147200pt;}
.y21_c02128{bottom:410.507067pt;}
.y28_c02128{bottom:411.229843pt;}
.y22_c02128{bottom:432.027355pt;}
.y29_c02128{bottom:432.830291pt;}
.y23_c02128{bottom:453.627803pt;}
.y2a_c02128{bottom:454.350579pt;}
.y24_c02128{bottom:475.228251pt;}
.y2b_c02128{bottom:475.951027pt;}
.y25_c02128{bottom:496.748539pt;}
.y2c_c02128{bottom:497.551475pt;}
.y26_c02128{bottom:518.348987pt;}
.y2d_c02128{bottom:519.071763pt;}
.y27_c02128{bottom:539.949435pt;}
.y2e_c02128{bottom:540.672211pt;}
.y31_c02128{bottom:586.187067pt;}
.y30_c02128{bottom:608.347067pt;}
.y2f_c02128{bottom:627.947067pt;}
.ya_c02128{bottom:655.467067pt;}
.y9_c02128{bottom:669.067067pt;}
.ye_c02128{bottom:687.707067pt;}
.y16_c02128{bottom:688.425835pt;}
.yf_c02128{bottom:704.746411pt;}
.y17_c02128{bottom:705.466515pt;}
.y10_c02128{bottom:721.706931pt;}
.y18_c02128{bottom:722.427035pt;}
.y11_c02128{bottom:738.746275pt;}
.y19_c02128{bottom:739.467715pt;}
.y12_c02128{bottom:755.706795pt;}
.y1a_c02128{bottom:756.428235pt;}
.y13_c02128{bottom:772.746139pt;}
.y1b_c02128{bottom:773.468915pt;}
.y14_c02128{bottom:789.706659pt;}
.y1c_c02128{bottom:790.429435pt;}
.y15_c02128{bottom:806.746003pt;}
.y1d_c02128{bottom:807.470115pt;}
.y20_c02128{bottom:843.627067pt;}
.y1f_c02128{bottom:876.107067pt;}
.y1e_c02128{bottom:895.707067pt;}
.y8_c02128{bottom:933.787067pt;}
.y7_c02128{bottom:961.387067pt;}
.y6_c02128{bottom:988.987067pt;}
.y5_c02128{bottom:1004.987067pt;}
.y4_c02128{bottom:1013.307067pt;}
.y1_c02128{bottom:1060.587067pt;}
.h3_c02128{height:18.812344pt;}
.h5_c02128{height:19.042656pt;}
.h4_c02128{height:37.801094pt;}
.h6_c02128{height:38.801406pt;}
.h8_c02128{height:42.518906pt;}
.h7_c02128{height:46.468750pt;}
.h2_c02128{height:56.156250pt;}
.h1_c02128{height:56.843750pt;}
.h0_c02128{height:1122.666667pt;}
.w1_c02128{width:793.333333pt;}
.w0_c02128{width:793.626667pt;}
.x0_c02128{left:0.000000pt;}
.x1_c02128{left:113.440000pt;}
.x3_c02128{left:132.400000pt;}
.x1f_c02128{left:142.079944pt;}
.xf_c02128{left:143.440472pt;}
.x2a_c02128{left:145.758976pt;}
.x12_c02128{left:148.002912pt;}
.x13_c02128{left:156.323520pt;}
.xc_c02128{left:157.918704pt;}
.x10_c02128{left:159.040944pt;}
.x11_c02128{left:167.202568pt;}
.xd_c02128{left:175.358848pt;}
.x2b_c02128{left:185.760152pt;}
.x1d_c02128{left:187.441152pt;}
.x2f_c02128{left:190.238424pt;}
.x2e_c02128{left:198.958496pt;}
.x30_c02128{left:203.440000pt;}
.xe_c02128{left:205.759528pt;}
.x14_c02128{left:208.400000pt;}
.x20_c02128{left:224.640000pt;}
.x1c_c02128{left:229.601304pt;}
.x1e_c02128{left:234.559200pt;}
.x1b_c02128{left:246.159688pt;}
.x2d_c02128{left:262.638936pt;}
.x2c_c02128{left:273.198680pt;}
.x31_c02128{left:332.960000pt;}
.x15_c02128{left:353.920000pt;}
.x21_c02128{left:356.240000pt;}
.x16_c02128{left:386.320000pt;}
.x2_c02128{left:388.960000pt;}
.x32_c02128{left:413.280000pt;}
.x22_c02128{left:415.520000pt;}
.x29_c02128{left:553.118736pt;}
.x1a_c02128{left:566.879848pt;}
.xb_c02128{left:569.918392pt;}
.x28_c02128{left:579.118632pt;}
.xa_c02128{left:585.278384pt;}
.x27_c02128{left:600.318280pt;}
.x9_c02128{left:604.078576pt;}
.x26_c02128{left:608.558728pt;}
.x8_c02128{left:610.399192pt;}
.x7_c02128{left:615.279600pt;}
.x19_c02128{left:618.080712pt;}
.x18_c02128{left:619.360600pt;}
.x17_c02128{left:621.200272pt;}
.x25_c02128{left:624.239360pt;}
.x24_c02128{left:629.759712pt;}
.x6_c02128{left:631.359696pt;}
.x5_c02128{left:634.159952pt;}
.x4_c02128{left:635.520000pt;}
.x23_c02128{left:637.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_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_f3db64536eb7b16d3339c3a0.woff2')format("woff");}.ff1_c02129{font-family:ff1_c02129;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02129;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v1_c02129{vertical-align:-1.080000px;}
.v0_c02129{vertical-align:0.000000px;}
.v3_c02129{vertical-align:1.080000px;}
.v2_c02129{vertical-align:2.160000px;}
.v5_c02129{vertical-align:75.960000px;}
.v4_c02129{vertical-align:78.120600px;}
.ls41_c02129{letter-spacing:-0.090180px;}
.ls40_c02129{letter-spacing:-0.078156px;}
.ls3c_c02129{letter-spacing:-0.014400px;}
.ls3d_c02129{letter-spacing:0.000000px;}
.ls31_c02129{letter-spacing:0.006012px;}
.ls3_c02129{letter-spacing:0.006588px;}
.ls3e_c02129{letter-spacing:0.007200px;}
.ls42_c02129{letter-spacing:0.019764px;}
.ls30_c02129{letter-spacing:0.032940px;}
.ls27_c02129{letter-spacing:0.039528px;}
.ls38_c02129{letter-spacing:0.046116px;}
.ls34_c02129{letter-spacing:0.052704px;}
.ls1c_c02129{letter-spacing:0.059292px;}
.ls6_c02129{letter-spacing:0.065880px;}
.ls1_c02129{letter-spacing:0.072468px;}
.ls15_c02129{letter-spacing:0.079056px;}
.ls2_c02129{letter-spacing:0.092232px;}
.ls4_c02129{letter-spacing:0.097200px;}
.ls17_c02129{letter-spacing:0.098820px;}
.lsa_c02129{letter-spacing:0.138348px;}
.ls3f_c02129{letter-spacing:0.144288px;}
.ls11_c02129{letter-spacing:0.151524px;}
.ls29_c02129{letter-spacing:0.158112px;}
.ls0_c02129{letter-spacing:0.164700px;}
.ls19_c02129{letter-spacing:0.177876px;}
.ls8_c02129{letter-spacing:0.180000px;}
.ls2b_c02129{letter-spacing:53.280000px;}
.ls2a_c02129{letter-spacing:53.640000px;}
.ls26_c02129{letter-spacing:55.440000px;}
.ls23_c02129{letter-spacing:55.800000px;}
.ls1b_c02129{letter-spacing:56.160000px;}
.ls1a_c02129{letter-spacing:69.840000px;}
.ls13_c02129{letter-spacing:88.200000px;}
.ls10_c02129{letter-spacing:88.560000px;}
.ls14_c02129{letter-spacing:88.920000px;}
.ls24_c02129{letter-spacing:92.610000px;}
.ls12_c02129{letter-spacing:102.600000px;}
.ls25_c02129{letter-spacing:106.650000px;}
.lsd_c02129{letter-spacing:121.320000px;}
.ls9_c02129{letter-spacing:121.680000px;}
.lse_c02129{letter-spacing:122.040000px;}
.lsb_c02129{letter-spacing:135.720000px;}
.lsc_c02129{letter-spacing:139.860000px;}
.ls3a_c02129{letter-spacing:154.800000px;}
.ls1f_c02129{letter-spacing:158.490000px;}
.ls3b_c02129{letter-spacing:168.840000px;}
.ls32_c02129{letter-spacing:170.280000px;}
.ls20_c02129{letter-spacing:172.530000px;}
.ls2f_c02129{letter-spacing:203.760000px;}
.ls2d_c02129{letter-spacing:204.120000px;}
.ls21_c02129{letter-spacing:204.479400px;}
.ls1e_c02129{letter-spacing:218.160000px;}
.ls39_c02129{letter-spacing:257.400000px;}
.lsf_c02129{letter-spacing:272.160000px;}
.ls2c_c02129{letter-spacing:290.520000px;}
.ls16_c02129{letter-spacing:320.040000px;}
.ls18_c02129{letter-spacing:338.040000px;}
.ls37_c02129{letter-spacing:339.840000px;}
.ls28_c02129{letter-spacing:354.600000px;}
.ls1d_c02129{letter-spacing:367.200000px;}
.ls35_c02129{letter-spacing:367.560000px;}
.ls33_c02129{letter-spacing:372.600000px;}
.ls36_c02129{letter-spacing:382.320000px;}
.ls2e_c02129{letter-spacing:393.120000px;}
.ls22_c02129{letter-spacing:400.320000px;}
.ls7_c02129{letter-spacing:415.080000px;}
.ls5_c02129{letter-spacing:433.440000px;}
.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;}
}
.ws5_c02129{word-spacing:-16.647876px;}
.ws0_c02129{word-spacing:-16.634700px;}
.ws14_c02129{word-spacing:-16.628112px;}
.ws6_c02129{word-spacing:-16.621524px;}
.ws1_c02129{word-spacing:-16.608348px;}
.wsb_c02129{word-spacing:-16.568820px;}
.ws11_c02129{word-spacing:-16.562232px;}
.ws15_c02129{word-spacing:-16.542468px;}
.wsf_c02129{word-spacing:-16.529292px;}
.ws13_c02129{word-spacing:-16.509528px;}
.ws1d_c02129{word-spacing:-15.036012px;}
.ws2f_c02129{word-spacing:-0.276552px;}
.ws27_c02129{word-spacing:-0.007200px;}
.ws26_c02129{word-spacing:0.000000px;}
.ws2d_c02129{word-spacing:0.013176px;}
.ws25_c02129{word-spacing:0.014400px;}
.ws28_c02129{word-spacing:0.019764px;}
.ws2c_c02129{word-spacing:0.026352px;}
.ws31_c02129{word-spacing:0.039528px;}
.ws32_c02129{word-spacing:0.046116px;}
.ws29_c02129{word-spacing:0.052704px;}
.ws2e_c02129{word-spacing:0.059292px;}
.ws30_c02129{word-spacing:0.072468px;}
.ws2b_c02129{word-spacing:0.081000px;}
.ws2a_c02129{word-spacing:0.085644px;}
.ws17_c02129{word-spacing:54.649440px;}
.ws12_c02129{word-spacing:56.798496px;}
.wsd_c02129{word-spacing:56.842380px;}
.ws1a_c02129{word-spacing:75.562380px;}
.ws16_c02129{word-spacing:75.586608px;}
.ws24_c02129{word-spacing:75.683304px;}
.ws8_c02129{word-spacing:89.556372px;}
.wsc_c02129{word-spacing:89.558496px;}
.ws9_c02129{word-spacing:89.602380px;}
.ws19_c02129{word-spacing:89.626608px;}
.ws1b_c02129{word-spacing:90.133020px;}
.wse_c02129{word-spacing:106.120728px;}
.ws3_c02129{word-spacing:122.746608px;}
.ws18_c02129{word-spacing:123.253020px;}
.ws7_c02129{word-spacing:125.242380px;}
.wsa_c02129{word-spacing:139.282380px;}
.ws4_c02129{word-spacing:139.306608px;}
.ws2_c02129{word-spacing:158.026608px;}
.ws22_c02129{word-spacing:158.123304px;}
.ws23_c02129{word-spacing:172.066608px;}
.ws10_c02129{word-spacing:205.186608px;}
.ws21_c02129{word-spacing:563.231448px;}
.ws1f_c02129{word-spacing:563.233572px;}
.ws1e_c02129{word-spacing:595.993572px;}
.ws1c_c02129{word-spacing:616.950000px;}
.ws20_c02129{word-spacing:857.506608px;}
._1_c02129{margin-left:-1.148292px;}
._5_c02129{width:67.125600px;}
._8_c02129{width:80.805600px;}
._7_c02129{width:101.610000px;}
._6_c02129{width:104.515776px;}
._4_c02129{width:108.810000px;}
._3_c02129{width:111.355776px;}
._9_c02129{width:124.351020px;}
._e_c02129{width:169.596036px;}
._0_c02129{width:194.400000px;}
._d_c02129{width:202.356036px;}
._a_c02129{width:203.879736px;}
._2_c02129{width:212.359284px;}
._c_c02129{width:221.260104px;}
._f_c02129{width:573.465600px;}
._10_c02129{width:1059.480000px;}
._b_c02129{width:1092.600000px;}
.fc0_c02129{color:rgb(0,0,0);}
.fs1_c02129{font-size:24.120000px;}
.fs2_c02129{font-size:29.880000px;}
.fs5_c02129{font-size:54.000000px;}
.fs4_c02129{font-size:60.120000px;}
.fs3_c02129{font-size:65.880000px;}
.fs0_c02129{font-size:72.000000px;}
.y0_c02129{bottom:0.000000px;}
.y3_c02129{bottom:57.360450px;}
.y2_c02129{bottom:78.060450px;}
.y40_c02129{bottom:119.640450px;}
.y3f_c02129{bottom:130.170450px;}
.y3e_c02129{bottom:151.320450px;}
.y3d_c02129{bottom:172.020450px;}
.y3c_c02129{bottom:192.720450px;}
.y3b_c02129{bottom:211.620600px;}
.y3a_c02129{bottom:230.970450px;}
.y39_c02129{bottom:251.670450px;}
.y38_c02129{bottom:272.370450px;}
.y37_c02129{bottom:291.360450px;}
.y36_c02129{bottom:310.350450px;}
.y35_c02129{bottom:329.340450px;}
.y34_c02129{bottom:348.330450px;}
.y33_c02129{bottom:368.580600px;}
.y31_c02129{bottom:386.220450px;}
.y2f_c02129{bottom:404.670450px;}
.y30_c02129{bottom:405.210600px;}
.y32_c02129{bottom:424.200600px;}
.y2e_c02129{bottom:441.930684px;}
.y2d_c02129{bottom:450.570486px;}
.y2c_c02129{bottom:459.210288px;}
.y2b_c02129{bottom:467.760450px;}
.y2a_c02129{bottom:478.380450px;}
.y29_c02129{bottom:499.440600px;}
.y28_c02129{bottom:520.140450px;}
.y27_c02129{bottom:540.840450px;}
.y26_c02129{bottom:559.830450px;}
.y25_c02129{bottom:579.180450px;}
.y24_c02129{bottom:599.880450px;}
.y23_c02129{bottom:620.580450px;}
.y22_c02129{bottom:639.570450px;}
.y21_c02129{bottom:658.560450px;}
.y20_c02129{bottom:677.550450px;}
.y1f_c02129{bottom:696.450450px;}
.y1e_c02129{bottom:716.790450px;}
.y1d_c02129{bottom:734.430450px;}
.y1a_c02129{bottom:752.790450px;}
.y1c_c02129{bottom:753.420450px;}
.y1b_c02129{bottom:772.410450px;}
.y19_c02129{bottom:789.780288px;}
.y18_c02129{bottom:798.330450px;}
.y17_c02129{bottom:808.950450px;}
.y16_c02129{bottom:830.010450px;}
.y15_c02129{bottom:850.710450px;}
.y14_c02129{bottom:871.410450px;}
.y13_c02129{bottom:890.400450px;}
.y12_c02129{bottom:909.750450px;}
.y11_c02129{bottom:930.450450px;}
.y10_c02129{bottom:951.150450px;}
.yf_c02129{bottom:970.140450px;}
.ye_c02129{bottom:989.130450px;}
.yd_c02129{bottom:1008.120450px;}
.yc_c02129{bottom:1027.020450px;}
.yb_c02129{bottom:1047.360450px;}
.ya_c02129{bottom:1065.000450px;}
.y7_c02129{bottom:1083.360450px;}
.y9_c02129{bottom:1083.990450px;}
.y8_c02129{bottom:1102.980450px;}
.y6_c02129{bottom:1122.240450px;}
.y5_c02129{bottom:1130.520450px;}
.y4_c02129{bottom:1139.970450px;}
.y1_c02129{bottom:1193.160450px;}
.h3_c02129{height:21.422988px;}
.h4_c02129{height:26.538926px;}
.h6_c02129{height:53.397598px;}
.h5_c02129{height:58.513535px;}
.h2_c02129{height:63.175781px;}
.h1_c02129{height:63.949219px;}
.he_c02129{height:64.975781px;}
.h10_c02129{height:65.029219px;}
.hf_c02129{height:65.029819px;}
.h7_c02129{height:65.335781px;}
.hb_c02129{height:65.388619px;}
.h8_c02129{height:65.389219px;}
.ha_c02129{height:65.389819px;}
.h9_c02129{height:66.829219px;}
.hd_c02129{height:139.909219px;}
.hc_c02129{height:142.069819px;}
.h0_c02129{height:1263.000000px;}
.w1_c02129{width:892.500000px;}
.w0_c02129{width:892.830000px;}
.x0_c02129{left:0.000000px;}
.x1_c02129{left:127.620000px;}
.x3_c02129{left:135.630000px;}
.xd_c02129{left:172.980000px;}
.x5_c02129{left:263.610000px;}
.xe_c02129{left:265.410000px;}
.xf_c02129{left:277.650000px;}
.x14_c02129{left:291.420000px;}
.x15_c02129{left:303.030000px;}
.x6_c02129{left:308.790000px;}
.x4_c02129{left:312.480000px;}
.x8_c02129{left:434.430000px;}
.x2_c02129{left:437.580000px;}
.x10_c02129{left:442.440000px;}
.x11_c02129{left:455.580000px;}
.x9_c02129{left:459.630000px;}
.x7_c02129{left:477.270000px;}
.x12_c02129{left:594.720000px;}
.xb_c02129{left:596.520000px;}
.x16_c02129{left:604.800000px;}
.x13_c02129{left:607.950000px;}
.xc_c02129{left:636.210000px;}
.xa_c02129{left:642.150000px;}
@media print{
.v1_c02129{vertical-align:-0.960000pt;}
.v0_c02129{vertical-align:0.000000pt;}
.v3_c02129{vertical-align:0.960000pt;}
.v2_c02129{vertical-align:1.920000pt;}
.v5_c02129{vertical-align:67.520000pt;}
.v4_c02129{vertical-align:69.440533pt;}
.ls41_c02129{letter-spacing:-0.080160pt;}
.ls40_c02129{letter-spacing:-0.069472pt;}
.ls3c_c02129{letter-spacing:-0.012800pt;}
.ls3d_c02129{letter-spacing:0.000000pt;}
.ls31_c02129{letter-spacing:0.005344pt;}
.ls3_c02129{letter-spacing:0.005856pt;}
.ls3e_c02129{letter-spacing:0.006400pt;}
.ls42_c02129{letter-spacing:0.017568pt;}
.ls30_c02129{letter-spacing:0.029280pt;}
.ls27_c02129{letter-spacing:0.035136pt;}
.ls38_c02129{letter-spacing:0.040992pt;}
.ls34_c02129{letter-spacing:0.046848pt;}
.ls1c_c02129{letter-spacing:0.052704pt;}
.ls6_c02129{letter-spacing:0.058560pt;}
.ls1_c02129{letter-spacing:0.064416pt;}
.ls15_c02129{letter-spacing:0.070272pt;}
.ls2_c02129{letter-spacing:0.081984pt;}
.ls4_c02129{letter-spacing:0.086400pt;}
.ls17_c02129{letter-spacing:0.087840pt;}
.lsa_c02129{letter-spacing:0.122976pt;}
.ls3f_c02129{letter-spacing:0.128256pt;}
.ls11_c02129{letter-spacing:0.134688pt;}
.ls29_c02129{letter-spacing:0.140544pt;}
.ls0_c02129{letter-spacing:0.146400pt;}
.ls19_c02129{letter-spacing:0.158112pt;}
.ls8_c02129{letter-spacing:0.160000pt;}
.ls2b_c02129{letter-spacing:47.360000pt;}
.ls2a_c02129{letter-spacing:47.680000pt;}
.ls26_c02129{letter-spacing:49.280000pt;}
.ls23_c02129{letter-spacing:49.600000pt;}
.ls1b_c02129{letter-spacing:49.920000pt;}
.ls1a_c02129{letter-spacing:62.080000pt;}
.ls13_c02129{letter-spacing:78.400000pt;}
.ls10_c02129{letter-spacing:78.720000pt;}
.ls14_c02129{letter-spacing:79.040000pt;}
.ls24_c02129{letter-spacing:82.320000pt;}
.ls12_c02129{letter-spacing:91.200000pt;}
.ls25_c02129{letter-spacing:94.800000pt;}
.lsd_c02129{letter-spacing:107.840000pt;}
.ls9_c02129{letter-spacing:108.160000pt;}
.lse_c02129{letter-spacing:108.480000pt;}
.lsb_c02129{letter-spacing:120.640000pt;}
.lsc_c02129{letter-spacing:124.320000pt;}
.ls3a_c02129{letter-spacing:137.600000pt;}
.ls1f_c02129{letter-spacing:140.880000pt;}
.ls3b_c02129{letter-spacing:150.080000pt;}
.ls32_c02129{letter-spacing:151.360000pt;}
.ls20_c02129{letter-spacing:153.360000pt;}
.ls2f_c02129{letter-spacing:181.120000pt;}
.ls2d_c02129{letter-spacing:181.440000pt;}
.ls21_c02129{letter-spacing:181.759467pt;}
.ls1e_c02129{letter-spacing:193.920000pt;}
.ls39_c02129{letter-spacing:228.800000pt;}
.lsf_c02129{letter-spacing:241.920000pt;}
.ls2c_c02129{letter-spacing:258.240000pt;}
.ls16_c02129{letter-spacing:284.480000pt;}
.ls18_c02129{letter-spacing:300.480000pt;}
.ls37_c02129{letter-spacing:302.080000pt;}
.ls28_c02129{letter-spacing:315.200000pt;}
.ls1d_c02129{letter-spacing:326.400000pt;}
.ls35_c02129{letter-spacing:326.720000pt;}
.ls33_c02129{letter-spacing:331.200000pt;}
.ls36_c02129{letter-spacing:339.840000pt;}
.ls2e_c02129{letter-spacing:349.440000pt;}
.ls22_c02129{letter-spacing:355.840000pt;}
.ls7_c02129{letter-spacing:368.960000pt;}
.ls5_c02129{letter-spacing:385.280000pt;}
.ws5_c02129{word-spacing:-14.798112pt;}
.ws0_c02129{word-spacing:-14.786400pt;}
.ws14_c02129{word-spacing:-14.780544pt;}
.ws6_c02129{word-spacing:-14.774688pt;}
.ws1_c02129{word-spacing:-14.762976pt;}
.wsb_c02129{word-spacing:-14.727840pt;}
.ws11_c02129{word-spacing:-14.721984pt;}
.ws15_c02129{word-spacing:-14.704416pt;}
.wsf_c02129{word-spacing:-14.692704pt;}
.ws13_c02129{word-spacing:-14.675136pt;}
.ws1d_c02129{word-spacing:-13.365344pt;}
.ws2f_c02129{word-spacing:-0.245824pt;}
.ws27_c02129{word-spacing:-0.006400pt;}
.ws26_c02129{word-spacing:0.000000pt;}
.ws2d_c02129{word-spacing:0.011712pt;}
.ws25_c02129{word-spacing:0.012800pt;}
.ws28_c02129{word-spacing:0.017568pt;}
.ws2c_c02129{word-spacing:0.023424pt;}
.ws31_c02129{word-spacing:0.035136pt;}
.ws32_c02129{word-spacing:0.040992pt;}
.ws29_c02129{word-spacing:0.046848pt;}
.ws2e_c02129{word-spacing:0.052704pt;}
.ws30_c02129{word-spacing:0.064416pt;}
.ws2b_c02129{word-spacing:0.072000pt;}
.ws2a_c02129{word-spacing:0.076128pt;}
.ws17_c02129{word-spacing:48.577280pt;}
.ws12_c02129{word-spacing:50.487552pt;}
.wsd_c02129{word-spacing:50.526560pt;}
.ws1a_c02129{word-spacing:67.166560pt;}
.ws16_c02129{word-spacing:67.188096pt;}
.ws24_c02129{word-spacing:67.274048pt;}
.ws8_c02129{word-spacing:79.605664pt;}
.wsc_c02129{word-spacing:79.607552pt;}
.ws9_c02129{word-spacing:79.646560pt;}
.ws19_c02129{word-spacing:79.668096pt;}
.ws1b_c02129{word-spacing:80.118240pt;}
.wse_c02129{word-spacing:94.329536pt;}
.ws3_c02129{word-spacing:109.108096pt;}
.ws18_c02129{word-spacing:109.558240pt;}
.ws7_c02129{word-spacing:111.326560pt;}
.wsa_c02129{word-spacing:123.806560pt;}
.ws4_c02129{word-spacing:123.828096pt;}
.ws2_c02129{word-spacing:140.468096pt;}
.ws22_c02129{word-spacing:140.554048pt;}
.ws23_c02129{word-spacing:152.948096pt;}
.ws10_c02129{word-spacing:182.388096pt;}
.ws21_c02129{word-spacing:500.650176pt;}
.ws1f_c02129{word-spacing:500.652064pt;}
.ws1e_c02129{word-spacing:529.772064pt;}
.ws1c_c02129{word-spacing:548.400000pt;}
.ws20_c02129{word-spacing:762.228096pt;}
._1_c02129{margin-left:-1.020704pt;}
._5_c02129{width:59.667200pt;}
._8_c02129{width:71.827200pt;}
._7_c02129{width:90.320000pt;}
._6_c02129{width:92.902912pt;}
._4_c02129{width:96.720000pt;}
._3_c02129{width:98.982912pt;}
._9_c02129{width:110.534240pt;}
._e_c02129{width:150.752032pt;}
._0_c02129{width:172.800000pt;}
._d_c02129{width:179.872032pt;}
._a_c02129{width:181.226432pt;}
._2_c02129{width:188.763808pt;}
._c_c02129{width:196.675648pt;}
._f_c02129{width:509.747200pt;}
._10_c02129{width:941.760000pt;}
._b_c02129{width:971.200000pt;}
.fs1_c02129{font-size:21.440000pt;}
.fs2_c02129{font-size:26.560000pt;}
.fs5_c02129{font-size:48.000000pt;}
.fs4_c02129{font-size:53.440000pt;}
.fs3_c02129{font-size:58.560000pt;}
.fs0_c02129{font-size:64.000000pt;}
.y0_c02129{bottom:0.000000pt;}
.y3_c02129{bottom:50.987067pt;}
.y2_c02129{bottom:69.387067pt;}
.y40_c02129{bottom:106.347067pt;}
.y3f_c02129{bottom:115.707067pt;}
.y3e_c02129{bottom:134.507067pt;}
.y3d_c02129{bottom:152.907067pt;}
.y3c_c02129{bottom:171.307067pt;}
.y3b_c02129{bottom:188.107200pt;}
.y3a_c02129{bottom:205.307067pt;}
.y39_c02129{bottom:223.707067pt;}
.y38_c02129{bottom:242.107067pt;}
.y37_c02129{bottom:258.987067pt;}
.y36_c02129{bottom:275.867067pt;}
.y35_c02129{bottom:292.747067pt;}
.y34_c02129{bottom:309.627067pt;}
.y33_c02129{bottom:327.627200pt;}
.y31_c02129{bottom:343.307067pt;}
.y2f_c02129{bottom:359.707067pt;}
.y30_c02129{bottom:360.187200pt;}
.y32_c02129{bottom:377.067200pt;}
.y2e_c02129{bottom:392.827275pt;}
.y2d_c02129{bottom:400.507099pt;}
.y2c_c02129{bottom:408.186923pt;}
.y2b_c02129{bottom:415.787067pt;}
.y2a_c02129{bottom:425.227067pt;}
.y29_c02129{bottom:443.947200pt;}
.y28_c02129{bottom:462.347067pt;}
.y27_c02129{bottom:480.747067pt;}
.y26_c02129{bottom:497.627067pt;}
.y25_c02129{bottom:514.827067pt;}
.y24_c02129{bottom:533.227067pt;}
.y23_c02129{bottom:551.627067pt;}
.y22_c02129{bottom:568.507067pt;}
.y21_c02129{bottom:585.387067pt;}
.y20_c02129{bottom:602.267067pt;}
.y1f_c02129{bottom:619.067067pt;}
.y1e_c02129{bottom:637.147067pt;}
.y1d_c02129{bottom:652.827067pt;}
.y1a_c02129{bottom:669.147067pt;}
.y1c_c02129{bottom:669.707067pt;}
.y1b_c02129{bottom:686.587067pt;}
.y19_c02129{bottom:702.026923pt;}
.y18_c02129{bottom:709.627067pt;}
.y17_c02129{bottom:719.067067pt;}
.y16_c02129{bottom:737.787067pt;}
.y15_c02129{bottom:756.187067pt;}
.y14_c02129{bottom:774.587067pt;}
.y13_c02129{bottom:791.467067pt;}
.y12_c02129{bottom:808.667067pt;}
.y11_c02129{bottom:827.067067pt;}
.y10_c02129{bottom:845.467067pt;}
.yf_c02129{bottom:862.347067pt;}
.ye_c02129{bottom:879.227067pt;}
.yd_c02129{bottom:896.107067pt;}
.yc_c02129{bottom:912.907067pt;}
.yb_c02129{bottom:930.987067pt;}
.ya_c02129{bottom:946.667067pt;}
.y7_c02129{bottom:962.987067pt;}
.y9_c02129{bottom:963.547067pt;}
.y8_c02129{bottom:980.427067pt;}
.y6_c02129{bottom:997.547067pt;}
.y5_c02129{bottom:1004.907067pt;}
.y4_c02129{bottom:1013.307067pt;}
.y1_c02129{bottom:1060.587067pt;}
.h3_c02129{height:19.042656pt;}
.h4_c02129{height:23.590156pt;}
.h6_c02129{height:47.464531pt;}
.h5_c02129{height:52.012031pt;}
.h2_c02129{height:56.156250pt;}
.h1_c02129{height:56.843750pt;}
.he_c02129{height:57.756250pt;}
.h10_c02129{height:57.803750pt;}
.hf_c02129{height:57.804283pt;}
.h7_c02129{height:58.076250pt;}
.hb_c02129{height:58.123217pt;}
.h8_c02129{height:58.123750pt;}
.ha_c02129{height:58.124283pt;}
.h9_c02129{height:59.403750pt;}
.hd_c02129{height:124.363750pt;}
.hc_c02129{height:126.284283pt;}
.h0_c02129{height:1122.666667pt;}
.w1_c02129{width:793.333333pt;}
.w0_c02129{width:793.626667pt;}
.x0_c02129{left:0.000000pt;}
.x1_c02129{left:113.440000pt;}
.x3_c02129{left:120.560000pt;}
.xd_c02129{left:153.760000pt;}
.x5_c02129{left:234.320000pt;}
.xe_c02129{left:235.920000pt;}
.xf_c02129{left:246.800000pt;}
.x14_c02129{left:259.040000pt;}
.x15_c02129{left:269.360000pt;}
.x6_c02129{left:274.480000pt;}
.x4_c02129{left:277.760000pt;}
.x8_c02129{left:386.160000pt;}
.x2_c02129{left:388.960000pt;}
.x10_c02129{left:393.280000pt;}
.x11_c02129{left:404.960000pt;}
.x9_c02129{left:408.560000pt;}
.x7_c02129{left:424.240000pt;}
.x12_c02129{left:528.640000pt;}
.xb_c02129{left:530.240000pt;}
.x16_c02129{left:537.600000pt;}
.x13_c02129{left:540.400000pt;}
.xc_c02129{left:565.520000pt;}
.xa_c02129{left:570.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_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_ad8f8f1e879d1e0c5846cd8b.woff2')format("woff");}.ff1_c02130{font-family:ff1_c02130;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02130;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v1_c02130{vertical-align:-1.440000px;}
.v0_c02130{vertical-align:0.000000px;}
.v2_c02130{vertical-align:1.440000px;}
.ls41_c02130{letter-spacing:-0.090180px;}
.ls40_c02130{letter-spacing:-0.078156px;}
.ls42_c02130{letter-spacing:-0.026352px;}
.ls3d_c02130{letter-spacing:-0.014400px;}
.ls43_c02130{letter-spacing:-0.006588px;}
.ls3e_c02130{letter-spacing:0.000000px;}
.ls31_c02130{letter-spacing:0.006012px;}
.ls39_c02130{letter-spacing:0.006588px;}
.ls36_c02130{letter-spacing:0.013176px;}
.ls2_c02130{letter-spacing:0.019764px;}
.ls35_c02130{letter-spacing:0.026352px;}
.ls30_c02130{letter-spacing:0.032940px;}
.ls1_c02130{letter-spacing:0.039528px;}
.ls3b_c02130{letter-spacing:0.052704px;}
.ls1b_c02130{letter-spacing:0.059292px;}
.lsd_c02130{letter-spacing:0.065880px;}
.ls2a_c02130{letter-spacing:0.072468px;}
.ls14_c02130{letter-spacing:0.079056px;}
.ls4_c02130{letter-spacing:0.092232px;}
.ls3_c02130{letter-spacing:0.097200px;}
.ls16_c02130{letter-spacing:0.098820px;}
.ls3a_c02130{letter-spacing:0.118584px;}
.ls8_c02130{letter-spacing:0.138348px;}
.ls3f_c02130{letter-spacing:0.144288px;}
.lsa_c02130{letter-spacing:0.151524px;}
.ls28_c02130{letter-spacing:0.158112px;}
.ls0_c02130{letter-spacing:0.164700px;}
.ls18_c02130{letter-spacing:0.177876px;}
.ls6_c02130{letter-spacing:0.180000px;}
.ls2b_c02130{letter-spacing:53.280000px;}
.ls29_c02130{letter-spacing:53.640000px;}
.ls26_c02130{letter-spacing:55.440000px;}
.ls23_c02130{letter-spacing:55.800000px;}
.ls1a_c02130{letter-spacing:56.160000px;}
.ls19_c02130{letter-spacing:69.840000px;}
.lsf_c02130{letter-spacing:88.200000px;}
.ls12_c02130{letter-spacing:88.560000px;}
.ls10_c02130{letter-spacing:88.920000px;}
.ls24_c02130{letter-spacing:92.610000px;}
.ls13_c02130{letter-spacing:102.600000px;}
.ls25_c02130{letter-spacing:106.650000px;}
.ls21_c02130{letter-spacing:121.320000px;}
.ls7_c02130{letter-spacing:121.680000px;}
.ls38_c02130{letter-spacing:122.040000px;}
.ls9_c02130{letter-spacing:135.720000px;}
.ls1f_c02130{letter-spacing:139.860000px;}
.lsb_c02130{letter-spacing:154.440000px;}
.lsc_c02130{letter-spacing:155.160000px;}
.ls1e_c02130{letter-spacing:158.490000px;}
.ls32_c02130{letter-spacing:170.280000px;}
.ls20_c02130{letter-spacing:172.530000px;}
.ls37_c02130{letter-spacing:172.980000px;}
.ls2f_c02130{letter-spacing:203.760000px;}
.ls2d_c02130{letter-spacing:204.120000px;}
.ls22_c02130{letter-spacing:204.479400px;}
.ls1d_c02130{letter-spacing:218.160000px;}
.ls3c_c02130{letter-spacing:239.040000px;}
.ls11_c02130{letter-spacing:272.160000px;}
.ls2c_c02130{letter-spacing:290.520000px;}
.ls15_c02130{letter-spacing:320.040000px;}
.ls17_c02130{letter-spacing:338.040000px;}
.ls34_c02130{letter-spacing:339.840000px;}
.ls27_c02130{letter-spacing:354.600000px;}
.ls1c_c02130{letter-spacing:367.200000px;}
.ls33_c02130{letter-spacing:372.600000px;}
.lse_c02130{letter-spacing:382.320000px;}
.ls2e_c02130{letter-spacing:393.120000px;}
.ls5_c02130{letter-spacing:400.320000px;}
.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;}
}
.ws9_c02130{word-spacing:-16.647876px;}
.ws0_c02130{word-spacing:-16.634700px;}
.ws14_c02130{word-spacing:-16.628112px;}
.wsb_c02130{word-spacing:-16.621524px;}
.ws3_c02130{word-spacing:-16.608348px;}
.ws27_c02130{word-spacing:-16.588584px;}
.wsd_c02130{word-spacing:-16.568820px;}
.ws8_c02130{word-spacing:-16.562232px;}
.ws15_c02130{word-spacing:-16.542468px;}
.ws11_c02130{word-spacing:-16.529292px;}
.ws28_c02130{word-spacing:-16.522704px;}
.ws1_c02130{word-spacing:-16.509528px;}
.ws1d_c02130{word-spacing:-16.502940px;}
.ws2_c02130{word-spacing:-16.489764px;}
.ws1e_c02130{word-spacing:-16.443648px;}
.ws1a_c02130{word-spacing:-15.036012px;}
.ws3a_c02130{word-spacing:-0.362340px;}
.ws37_c02130{word-spacing:-0.276552px;}
.ws2f_c02130{word-spacing:0.000000px;}
.ws35_c02130{word-spacing:0.013176px;}
.ws2e_c02130{word-spacing:0.014400px;}
.ws30_c02130{word-spacing:0.019764px;}
.ws34_c02130{word-spacing:0.026352px;}
.ws3b_c02130{word-spacing:0.039528px;}
.ws36_c02130{word-spacing:0.052704px;}
.ws32_c02130{word-spacing:0.059292px;}
.ws38_c02130{word-spacing:0.065880px;}
.ws33_c02130{word-spacing:0.081000px;}
.ws31_c02130{word-spacing:0.092232px;}
.ws39_c02130{word-spacing:0.098820px;}
.ws17_c02130{word-spacing:54.649440px;}
.ws13_c02130{word-spacing:56.798496px;}
.wsf_c02130{word-spacing:56.842380px;}
.ws16_c02130{word-spacing:75.562380px;}
.ws5_c02130{word-spacing:89.556372px;}
.wse_c02130{word-spacing:89.558496px;}
.ws6_c02130{word-spacing:89.602380px;}
.ws26_c02130{word-spacing:89.626608px;}
.ws2c_c02130{word-spacing:89.723304px;}
.ws18_c02130{word-spacing:90.133020px;}
.ws10_c02130{word-spacing:106.120728px;}
.ws23_c02130{word-spacing:122.746608px;}
.ws25_c02130{word-spacing:123.253020px;}
.wsc_c02130{word-spacing:125.242380px;}
.ws4_c02130{word-spacing:125.266608px;}
.wsa_c02130{word-spacing:139.282380px;}
.ws24_c02130{word-spacing:139.306608px;}
.ws2a_c02130{word-spacing:139.403304px;}
.ws20_c02130{word-spacing:155.963304px;}
.ws2b_c02130{word-spacing:156.373020px;}
.ws22_c02130{word-spacing:158.002380px;}
.ws1f_c02130{word-spacing:158.026608px;}
.ws7_c02130{word-spacing:172.042380px;}
.ws21_c02130{word-spacing:172.163304px;}
.ws12_c02130{word-spacing:205.186608px;}
.ws1c_c02130{word-spacing:563.231448px;}
.ws2d_c02130{word-spacing:563.233572px;}
.ws1b_c02130{word-spacing:595.993572px;}
.ws19_c02130{word-spacing:616.950000px;}
.ws29_c02130{word-spacing:824.386608px;}
._1_c02130{margin-left:-1.148292px;}
._5_c02130{width:67.125600px;}
._8_c02130{width:80.805600px;}
._7_c02130{width:101.610000px;}
._6_c02130{width:104.515776px;}
._4_c02130{width:108.810000px;}
._3_c02130{width:111.355776px;}
._9_c02130{width:124.351020px;}
._b_c02130{width:169.596036px;}
._0_c02130{width:194.400000px;}
._2_c02130{width:212.359284px;}
._a_c02130{width:221.260104px;}
.fc0_c02130{color:rgb(0,0,0);}
.fs4_c02130{font-size:29.880000px;}
.fs3_c02130{font-size:54.000000px;}
.fs2_c02130{font-size:60.120000px;}
.fs1_c02130{font-size:65.880000px;}
.fs0_c02130{font-size:72.000000px;}
.y0_c02130{bottom:0.000000px;}
.y3_c02130{bottom:57.360450px;}
.y2_c02130{bottom:78.060450px;}
.y3f_c02130{bottom:119.010450px;}
.y3e_c02130{bottom:129.630450px;}
.y3d_c02130{bottom:150.690450px;}
.y3c_c02130{bottom:171.390450px;}
.y3b_c02130{bottom:192.090450px;}
.y3a_c02130{bottom:211.080450px;}
.y39_c02130{bottom:230.430450px;}
.y38_c02130{bottom:251.130450px;}
.y37_c02130{bottom:271.830450px;}
.y36_c02130{bottom:290.730450px;}
.y35_c02130{bottom:309.720450px;}
.y34_c02130{bottom:328.710600px;}
.y33_c02130{bottom:347.700450px;}
.y32_c02130{bottom:368.040600px;}
.y31_c02130{bottom:385.950600px;}
.y30_c02130{bottom:406.380450px;}
.y2d_c02130{bottom:414.390450px;}
.y2f_c02130{bottom:425.280450px;}
.y2e_c02130{bottom:444.270600px;}
.y2c_c02130{bottom:462.000450px;}
.y2b_c02130{bottom:472.620600px;}
.y2a_c02130{bottom:493.680600px;}
.y29_c02130{bottom:514.380450px;}
.y28_c02130{bottom:535.080450px;}
.y27_c02130{bottom:554.070450px;}
.y26_c02130{bottom:573.420450px;}
.y25_c02130{bottom:594.120450px;}
.y24_c02130{bottom:614.820450px;}
.y23_c02130{bottom:633.810450px;}
.y22_c02130{bottom:652.800450px;}
.y21_c02130{bottom:671.700450px;}
.y20_c02130{bottom:690.690450px;}
.y1f_c02130{bottom:709.320450px;}
.y1d_c02130{bottom:727.230450px;}
.y1c_c02130{bottom:728.670450px;}
.y1e_c02130{bottom:746.220450px;}
.y1b_c02130{bottom:747.660450px;}
.y18_c02130{bottom:755.670450px;}
.y1a_c02130{bottom:766.650450px;}
.y19_c02130{bottom:785.550450px;}
.y17_c02130{bottom:803.280450px;}
.y16_c02130{bottom:813.270450px;}
.y15_c02130{bottom:829.470450px;}
.y14_c02130{bottom:850.530450px;}
.y13_c02130{bottom:871.230450px;}
.y12_c02130{bottom:891.930600px;}
.y11_c02130{bottom:910.920450px;}
.y10_c02130{bottom:930.270450px;}
.yf_c02130{bottom:950.970450px;}
.ye_c02130{bottom:971.670450px;}
.yd_c02130{bottom:990.570450px;}
.yc_c02130{bottom:1009.560450px;}
.yb_c02130{bottom:1028.550450px;}
.ya_c02130{bottom:1047.540450px;}
.y9_c02130{bottom:1066.170450px;}
.y8_c02130{bottom:1083.720450px;}
.y7_c02130{bottom:1102.710450px;}
.y4_c02130{bottom:1111.620450px;}
.y6_c02130{bottom:1121.700450px;}
.y5_c02130{bottom:1140.690450px;}
.y1_c02130{bottom:1193.160450px;}
.h9_c02130{height:26.538926px;}
.h8_c02130{height:47.961914px;}
.h4_c02130{height:53.397598px;}
.h3_c02130{height:58.513535px;}
.h2_c02130{height:63.175781px;}
.h1_c02130{height:63.949219px;}
.h6_c02130{height:65.029219px;}
.h5_c02130{height:65.029819px;}
.h7_c02130{height:66.469219px;}
.h0_c02130{height:1263.000000px;}
.w1_c02130{width:892.500000px;}
.w0_c02130{width:892.830000px;}
.x0_c02130{left:0.000000px;}
.x1_c02130{left:127.620000px;}
.x3_c02130{left:135.630000px;}
.x10_c02130{left:172.980000px;}
.x5_c02130{left:263.790000px;}
.x11_c02130{left:269.100000px;}
.x13_c02130{left:277.830000px;}
.x7_c02130{left:285.660000px;}
.x12_c02130{left:288.360000px;}
.x17_c02130{left:296.730000px;}
.x6_c02130{left:300.600000px;}
.x18_c02130{left:304.920000px;}
.x4_c02130{left:312.480000px;}
.x19_c02130{left:340.200000px;}
.x2_c02130{left:437.580000px;}
.x1a_c02130{left:440.100000px;}
.x9_c02130{left:454.590000px;}
.xb_c02130{left:458.280000px;}
.xa_c02130{left:475.200000px;}
.x8_c02130{left:477.270000px;}
.x14_c02130{left:482.580000px;}
.x15_c02130{left:504.990000px;}
.xd_c02130{left:605.700000px;}
.xf_c02130{left:615.780000px;}
.x1b_c02130{left:627.660000px;}
.xe_c02130{left:634.590000px;}
.xc_c02130{left:642.150000px;}
.x16_c02130{left:669.870000px;}
@media print{
.v1_c02130{vertical-align:-1.280000pt;}
.v0_c02130{vertical-align:0.000000pt;}
.v2_c02130{vertical-align:1.280000pt;}
.ls41_c02130{letter-spacing:-0.080160pt;}
.ls40_c02130{letter-spacing:-0.069472pt;}
.ls42_c02130{letter-spacing:-0.023424pt;}
.ls3d_c02130{letter-spacing:-0.012800pt;}
.ls43_c02130{letter-spacing:-0.005856pt;}
.ls3e_c02130{letter-spacing:0.000000pt;}
.ls31_c02130{letter-spacing:0.005344pt;}
.ls39_c02130{letter-spacing:0.005856pt;}
.ls36_c02130{letter-spacing:0.011712pt;}
.ls2_c02130{letter-spacing:0.017568pt;}
.ls35_c02130{letter-spacing:0.023424pt;}
.ls30_c02130{letter-spacing:0.029280pt;}
.ls1_c02130{letter-spacing:0.035136pt;}
.ls3b_c02130{letter-spacing:0.046848pt;}
.ls1b_c02130{letter-spacing:0.052704pt;}
.lsd_c02130{letter-spacing:0.058560pt;}
.ls2a_c02130{letter-spacing:0.064416pt;}
.ls14_c02130{letter-spacing:0.070272pt;}
.ls4_c02130{letter-spacing:0.081984pt;}
.ls3_c02130{letter-spacing:0.086400pt;}
.ls16_c02130{letter-spacing:0.087840pt;}
.ls3a_c02130{letter-spacing:0.105408pt;}
.ls8_c02130{letter-spacing:0.122976pt;}
.ls3f_c02130{letter-spacing:0.128256pt;}
.lsa_c02130{letter-spacing:0.134688pt;}
.ls28_c02130{letter-spacing:0.140544pt;}
.ls0_c02130{letter-spacing:0.146400pt;}
.ls18_c02130{letter-spacing:0.158112pt;}
.ls6_c02130{letter-spacing:0.160000pt;}
.ls2b_c02130{letter-spacing:47.360000pt;}
.ls29_c02130{letter-spacing:47.680000pt;}
.ls26_c02130{letter-spacing:49.280000pt;}
.ls23_c02130{letter-spacing:49.600000pt;}
.ls1a_c02130{letter-spacing:49.920000pt;}
.ls19_c02130{letter-spacing:62.080000pt;}
.lsf_c02130{letter-spacing:78.400000pt;}
.ls12_c02130{letter-spacing:78.720000pt;}
.ls10_c02130{letter-spacing:79.040000pt;}
.ls24_c02130{letter-spacing:82.320000pt;}
.ls13_c02130{letter-spacing:91.200000pt;}
.ls25_c02130{letter-spacing:94.800000pt;}
.ls21_c02130{letter-spacing:107.840000pt;}
.ls7_c02130{letter-spacing:108.160000pt;}
.ls38_c02130{letter-spacing:108.480000pt;}
.ls9_c02130{letter-spacing:120.640000pt;}
.ls1f_c02130{letter-spacing:124.320000pt;}
.lsb_c02130{letter-spacing:137.280000pt;}
.lsc_c02130{letter-spacing:137.920000pt;}
.ls1e_c02130{letter-spacing:140.880000pt;}
.ls32_c02130{letter-spacing:151.360000pt;}
.ls20_c02130{letter-spacing:153.360000pt;}
.ls37_c02130{letter-spacing:153.760000pt;}
.ls2f_c02130{letter-spacing:181.120000pt;}
.ls2d_c02130{letter-spacing:181.440000pt;}
.ls22_c02130{letter-spacing:181.759467pt;}
.ls1d_c02130{letter-spacing:193.920000pt;}
.ls3c_c02130{letter-spacing:212.480000pt;}
.ls11_c02130{letter-spacing:241.920000pt;}
.ls2c_c02130{letter-spacing:258.240000pt;}
.ls15_c02130{letter-spacing:284.480000pt;}
.ls17_c02130{letter-spacing:300.480000pt;}
.ls34_c02130{letter-spacing:302.080000pt;}
.ls27_c02130{letter-spacing:315.200000pt;}
.ls1c_c02130{letter-spacing:326.400000pt;}
.ls33_c02130{letter-spacing:331.200000pt;}
.lse_c02130{letter-spacing:339.840000pt;}
.ls2e_c02130{letter-spacing:349.440000pt;}
.ls5_c02130{letter-spacing:355.840000pt;}
.ws9_c02130{word-spacing:-14.798112pt;}
.ws0_c02130{word-spacing:-14.786400pt;}
.ws14_c02130{word-spacing:-14.780544pt;}
.wsb_c02130{word-spacing:-14.774688pt;}
.ws3_c02130{word-spacing:-14.762976pt;}
.ws27_c02130{word-spacing:-14.745408pt;}
.wsd_c02130{word-spacing:-14.727840pt;}
.ws8_c02130{word-spacing:-14.721984pt;}
.ws15_c02130{word-spacing:-14.704416pt;}
.ws11_c02130{word-spacing:-14.692704pt;}
.ws28_c02130{word-spacing:-14.686848pt;}
.ws1_c02130{word-spacing:-14.675136pt;}
.ws1d_c02130{word-spacing:-14.669280pt;}
.ws2_c02130{word-spacing:-14.657568pt;}
.ws1e_c02130{word-spacing:-14.616576pt;}
.ws1a_c02130{word-spacing:-13.365344pt;}
.ws3a_c02130{word-spacing:-0.322080pt;}
.ws37_c02130{word-spacing:-0.245824pt;}
.ws2f_c02130{word-spacing:0.000000pt;}
.ws35_c02130{word-spacing:0.011712pt;}
.ws2e_c02130{word-spacing:0.012800pt;}
.ws30_c02130{word-spacing:0.017568pt;}
.ws34_c02130{word-spacing:0.023424pt;}
.ws3b_c02130{word-spacing:0.035136pt;}
.ws36_c02130{word-spacing:0.046848pt;}
.ws32_c02130{word-spacing:0.052704pt;}
.ws38_c02130{word-spacing:0.058560pt;}
.ws33_c02130{word-spacing:0.072000pt;}
.ws31_c02130{word-spacing:0.081984pt;}
.ws39_c02130{word-spacing:0.087840pt;}
.ws17_c02130{word-spacing:48.577280pt;}
.ws13_c02130{word-spacing:50.487552pt;}
.wsf_c02130{word-spacing:50.526560pt;}
.ws16_c02130{word-spacing:67.166560pt;}
.ws5_c02130{word-spacing:79.605664pt;}
.wse_c02130{word-spacing:79.607552pt;}
.ws6_c02130{word-spacing:79.646560pt;}
.ws26_c02130{word-spacing:79.668096pt;}
.ws2c_c02130{word-spacing:79.754048pt;}
.ws18_c02130{word-spacing:80.118240pt;}
.ws10_c02130{word-spacing:94.329536pt;}
.ws23_c02130{word-spacing:109.108096pt;}
.ws25_c02130{word-spacing:109.558240pt;}
.wsc_c02130{word-spacing:111.326560pt;}
.ws4_c02130{word-spacing:111.348096pt;}
.wsa_c02130{word-spacing:123.806560pt;}
.ws24_c02130{word-spacing:123.828096pt;}
.ws2a_c02130{word-spacing:123.914048pt;}
.ws20_c02130{word-spacing:138.634048pt;}
.ws2b_c02130{word-spacing:138.998240pt;}
.ws22_c02130{word-spacing:140.446560pt;}
.ws1f_c02130{word-spacing:140.468096pt;}
.ws7_c02130{word-spacing:152.926560pt;}
.ws21_c02130{word-spacing:153.034048pt;}
.ws12_c02130{word-spacing:182.388096pt;}
.ws1c_c02130{word-spacing:500.650176pt;}
.ws2d_c02130{word-spacing:500.652064pt;}
.ws1b_c02130{word-spacing:529.772064pt;}
.ws19_c02130{word-spacing:548.400000pt;}
.ws29_c02130{word-spacing:732.788096pt;}
._1_c02130{margin-left:-1.020704pt;}
._5_c02130{width:59.667200pt;}
._8_c02130{width:71.827200pt;}
._7_c02130{width:90.320000pt;}
._6_c02130{width:92.902912pt;}
._4_c02130{width:96.720000pt;}
._3_c02130{width:98.982912pt;}
._9_c02130{width:110.534240pt;}
._b_c02130{width:150.752032pt;}
._0_c02130{width:172.800000pt;}
._2_c02130{width:188.763808pt;}
._a_c02130{width:196.675648pt;}
.fs4_c02130{font-size:26.560000pt;}
.fs3_c02130{font-size:48.000000pt;}
.fs2_c02130{font-size:53.440000pt;}
.fs1_c02130{font-size:58.560000pt;}
.fs0_c02130{font-size:64.000000pt;}
.y0_c02130{bottom:0.000000pt;}
.y3_c02130{bottom:50.987067pt;}
.y2_c02130{bottom:69.387067pt;}
.y3f_c02130{bottom:105.787067pt;}
.y3e_c02130{bottom:115.227067pt;}
.y3d_c02130{bottom:133.947067pt;}
.y3c_c02130{bottom:152.347067pt;}
.y3b_c02130{bottom:170.747067pt;}
.y3a_c02130{bottom:187.627067pt;}
.y39_c02130{bottom:204.827067pt;}
.y38_c02130{bottom:223.227067pt;}
.y37_c02130{bottom:241.627067pt;}
.y36_c02130{bottom:258.427067pt;}
.y35_c02130{bottom:275.307067pt;}
.y34_c02130{bottom:292.187200pt;}
.y33_c02130{bottom:309.067067pt;}
.y32_c02130{bottom:327.147200pt;}
.y31_c02130{bottom:343.067200pt;}
.y30_c02130{bottom:361.227067pt;}
.y2d_c02130{bottom:368.347067pt;}
.y2f_c02130{bottom:378.027067pt;}
.y2e_c02130{bottom:394.907200pt;}
.y2c_c02130{bottom:410.667067pt;}
.y2b_c02130{bottom:420.107200pt;}
.y2a_c02130{bottom:438.827200pt;}
.y29_c02130{bottom:457.227067pt;}
.y28_c02130{bottom:475.627067pt;}
.y27_c02130{bottom:492.507067pt;}
.y26_c02130{bottom:509.707067pt;}
.y25_c02130{bottom:528.107067pt;}
.y24_c02130{bottom:546.507067pt;}
.y23_c02130{bottom:563.387067pt;}
.y22_c02130{bottom:580.267067pt;}
.y21_c02130{bottom:597.067067pt;}
.y20_c02130{bottom:613.947067pt;}
.y1f_c02130{bottom:630.507067pt;}
.y1d_c02130{bottom:646.427067pt;}
.y1c_c02130{bottom:647.707067pt;}
.y1e_c02130{bottom:663.307067pt;}
.y1b_c02130{bottom:664.587067pt;}
.y18_c02130{bottom:671.707067pt;}
.y1a_c02130{bottom:681.467067pt;}
.y19_c02130{bottom:698.267067pt;}
.y17_c02130{bottom:714.027067pt;}
.y16_c02130{bottom:722.907067pt;}
.y15_c02130{bottom:737.307067pt;}
.y14_c02130{bottom:756.027067pt;}
.y13_c02130{bottom:774.427067pt;}
.y12_c02130{bottom:792.827200pt;}
.y11_c02130{bottom:809.707067pt;}
.y10_c02130{bottom:826.907067pt;}
.yf_c02130{bottom:845.307067pt;}
.ye_c02130{bottom:863.707067pt;}
.yd_c02130{bottom:880.507067pt;}
.yc_c02130{bottom:897.387067pt;}
.yb_c02130{bottom:914.267067pt;}
.ya_c02130{bottom:931.147067pt;}
.y9_c02130{bottom:947.707067pt;}
.y8_c02130{bottom:963.307067pt;}
.y7_c02130{bottom:980.187067pt;}
.y4_c02130{bottom:988.107067pt;}
.y6_c02130{bottom:997.067067pt;}
.y5_c02130{bottom:1013.947067pt;}
.y1_c02130{bottom:1060.587067pt;}
.h9_c02130{height:23.590156pt;}
.h8_c02130{height:42.632812pt;}
.h4_c02130{height:47.464531pt;}
.h3_c02130{height:52.012031pt;}
.h2_c02130{height:56.156250pt;}
.h1_c02130{height:56.843750pt;}
.h6_c02130{height:57.803750pt;}
.h5_c02130{height:57.804283pt;}
.h7_c02130{height:59.083750pt;}
.h0_c02130{height:1122.666667pt;}
.w1_c02130{width:793.333333pt;}
.w0_c02130{width:793.626667pt;}
.x0_c02130{left:0.000000pt;}
.x1_c02130{left:113.440000pt;}
.x3_c02130{left:120.560000pt;}
.x10_c02130{left:153.760000pt;}
.x5_c02130{left:234.480000pt;}
.x11_c02130{left:239.200000pt;}
.x13_c02130{left:246.960000pt;}
.x7_c02130{left:253.920000pt;}
.x12_c02130{left:256.320000pt;}
.x17_c02130{left:263.760000pt;}
.x6_c02130{left:267.200000pt;}
.x18_c02130{left:271.040000pt;}
.x4_c02130{left:277.760000pt;}
.x19_c02130{left:302.400000pt;}
.x2_c02130{left:388.960000pt;}
.x1a_c02130{left:391.200000pt;}
.x9_c02130{left:404.080000pt;}
.xb_c02130{left:407.360000pt;}
.xa_c02130{left:422.400000pt;}
.x8_c02130{left:424.240000pt;}
.x14_c02130{left:428.960000pt;}
.x15_c02130{left:448.880000pt;}
.xd_c02130{left:538.400000pt;}
.xf_c02130{left:547.360000pt;}
.x1b_c02130{left:557.920000pt;}
.xe_c02130{left:564.080000pt;}
.xc_c02130{left:570.800000pt;}
.x16_c02130{left:595.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_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_814dfdf66edfff44a8edc436.woff2')format("woff");}.ff1_c02131{font-family:ff1_c02131;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02131;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v5_c02131{vertical-align:-3.960000px;}
.v4_c02131{vertical-align:-2.520000px;}
.v2_c02131{vertical-align:-1.440000px;}
.v0_c02131{vertical-align:0.000000px;}
.v3_c02131{vertical-align:1.440000px;}
.v6_c02131{vertical-align:2.520000px;}
.v7_c02131{vertical-align:3.960000px;}
.v1_c02131{vertical-align:75.960000px;}
.ls4d_c02131{letter-spacing:-0.090180px;}
.ls56_c02131{letter-spacing:-0.086184px;}
.ls4c_c02131{letter-spacing:-0.078156px;}
.ls52_c02131{letter-spacing:-0.043200px;}
.ls4e_c02131{letter-spacing:-0.032940px;}
.ls48_c02131{letter-spacing:-0.019764px;}
.ls54_c02131{letter-spacing:-0.019152px;}
.ls46_c02131{letter-spacing:-0.014400px;}
.ls53_c02131{letter-spacing:-0.010800px;}
.ls4a_c02131{letter-spacing:-0.006588px;}
.ls47_c02131{letter-spacing:0.000000px;}
.ls33_c02131{letter-spacing:0.006012px;}
.ls39_c02131{letter-spacing:0.007200px;}
.ls3a_c02131{letter-spacing:0.010800px;}
.ls3d_c02131{letter-spacing:0.012636px;}
.ls50_c02131{letter-spacing:0.014400px;}
.ls2_c02131{letter-spacing:0.026352px;}
.ls3c_c02131{letter-spacing:0.028728px;}
.ls38_c02131{letter-spacing:0.028800px;}
.ls3e_c02131{letter-spacing:0.032400px;}
.ls32_c02131{letter-spacing:0.032940px;}
.ls42_c02131{letter-spacing:0.037800px;}
.ls29_c02131{letter-spacing:0.039528px;}
.ls3b_c02131{letter-spacing:0.043092px;}
.ls41_c02131{letter-spacing:0.043200px;}
.ls49_c02131{letter-spacing:0.046116px;}
.ls40_c02131{letter-spacing:0.052668px;}
.ls4f_c02131{letter-spacing:0.052704px;}
.ls1f_c02131{letter-spacing:0.059292px;}
.lsd_c02131{letter-spacing:0.065880px;}
.ls3_c02131{letter-spacing:0.072468px;}
.ls17_c02131{letter-spacing:0.079056px;}
.ls5_c02131{letter-spacing:0.092232px;}
.ls4_c02131{letter-spacing:0.097200px;}
.ls1a_c02131{letter-spacing:0.098820px;}
.ls44_c02131{letter-spacing:0.114912px;}
.ls9_c02131{letter-spacing:0.138348px;}
.ls45_c02131{letter-spacing:0.138852px;}
.ls4b_c02131{letter-spacing:0.144288px;}
.ls51_c02131{letter-spacing:0.151200px;}
.lsf_c02131{letter-spacing:0.151524px;}
.ls2b_c02131{letter-spacing:0.158112px;}
.ls0_c02131{letter-spacing:0.164700px;}
.ls55_c02131{letter-spacing:0.167580px;}
.ls1c_c02131{letter-spacing:0.177876px;}
.ls7_c02131{letter-spacing:0.180000px;}
.ls2d_c02131{letter-spacing:53.280000px;}
.ls2c_c02131{letter-spacing:53.640000px;}
.ls28_c02131{letter-spacing:55.440000px;}
.ls25_c02131{letter-spacing:55.800000px;}
.ls1e_c02131{letter-spacing:56.160000px;}
.ls1d_c02131{letter-spacing:69.840000px;}
.ls15_c02131{letter-spacing:88.200000px;}
.ls13_c02131{letter-spacing:88.560000px;}
.ls16_c02131{letter-spacing:88.920000px;}
.ls26_c02131{letter-spacing:92.610000px;}
.ls14_c02131{letter-spacing:102.600000px;}
.ls27_c02131{letter-spacing:106.650000px;}
.ls3f_c02131{letter-spacing:112.320000px;}
.ls10_c02131{letter-spacing:121.320000px;}
.ls8_c02131{letter-spacing:121.680000px;}
.ls11_c02131{letter-spacing:122.040000px;}
.lsa_c02131{letter-spacing:135.720000px;}
.ls19_c02131{letter-spacing:139.860000px;}
.ls57_c02131{letter-spacing:143.818200px;}
.lsb_c02131{letter-spacing:154.440000px;}
.lsc_c02131{letter-spacing:155.160000px;}
.ls22_c02131{letter-spacing:158.490000px;}
.ls34_c02131{letter-spacing:170.280000px;}
.ls23_c02131{letter-spacing:172.530000px;}
.ls43_c02131{letter-spacing:200.790000px;}
.ls31_c02131{letter-spacing:203.760000px;}
.ls2f_c02131{letter-spacing:204.120000px;}
.ls24_c02131{letter-spacing:204.479400px;}
.ls21_c02131{letter-spacing:218.160000px;}
.ls12_c02131{letter-spacing:272.160000px;}
.ls2e_c02131{letter-spacing:290.520000px;}
.ls18_c02131{letter-spacing:320.040000px;}
.ls1b_c02131{letter-spacing:338.040000px;}
.ls36_c02131{letter-spacing:339.840000px;}
.ls2a_c02131{letter-spacing:354.600000px;}
.ls20_c02131{letter-spacing:367.200000px;}
.ls35_c02131{letter-spacing:372.600000px;}
.ls1_c02131{letter-spacing:387.360000px;}
.ls30_c02131{letter-spacing:393.120000px;}
.ls6_c02131{letter-spacing:400.320000px;}
.lse_c02131{letter-spacing:415.080000px;}
.ls37_c02131{letter-spacing:433.440000px;}
.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;}
}
.wsd_c02131{word-spacing:-16.647876px;}
.ws0_c02131{word-spacing:-16.634700px;}
.ws1a_c02131{word-spacing:-16.628112px;}
.wse_c02131{word-spacing:-16.621524px;}
.ws4_c02131{word-spacing:-16.608348px;}
.ws12_c02131{word-spacing:-16.568820px;}
.ws9_c02131{word-spacing:-16.562232px;}
.ws1b_c02131{word-spacing:-16.542468px;}
.ws16_c02131{word-spacing:-16.529292px;}
.ws19_c02131{word-spacing:-16.509528px;}
.ws3_c02131{word-spacing:-16.496352px;}
.ws2_c02131{word-spacing:-16.463412px;}
.ws1_c02131{word-spacing:-16.450236px;}
.ws21_c02131{word-spacing:-15.036012px;}
.ws30_c02131{word-spacing:-0.349164px;}
.ws2f_c02131{word-spacing:-0.276552px;}
.ws38_c02131{word-spacing:-0.229824px;}
.ws36_c02131{word-spacing:-0.205884px;}
.ws35_c02131{word-spacing:-0.119700px;}
.ws31_c02131{word-spacing:-0.115200px;}
.ws34_c02131{word-spacing:-0.101088px;}
.ws33_c02131{word-spacing:-0.086400px;}
.ws32_c02131{word-spacing:-0.007200px;}
.ws26_c02131{word-spacing:0.000000px;}
.ws2c_c02131{word-spacing:0.013176px;}
.ws25_c02131{word-spacing:0.014400px;}
.ws29_c02131{word-spacing:0.019764px;}
.ws2b_c02131{word-spacing:0.026352px;}
.ws28_c02131{word-spacing:0.046116px;}
.ws2d_c02131{word-spacing:0.052704px;}
.ws2e_c02131{word-spacing:0.059292px;}
.ws27_c02131{word-spacing:0.065880px;}
.ws2a_c02131{word-spacing:0.081000px;}
.ws1d_c02131{word-spacing:54.649440px;}
.ws18_c02131{word-spacing:56.798496px;}
.ws14_c02131{word-spacing:56.842380px;}
.ws24_c02131{word-spacing:75.169440px;}
.ws1f_c02131{word-spacing:75.562380px;}
.ws1c_c02131{word-spacing:75.586608px;}
.wsa_c02131{word-spacing:89.556372px;}
.ws13_c02131{word-spacing:89.558496px;}
.wsb_c02131{word-spacing:89.602380px;}
.ws1e_c02131{word-spacing:90.133020px;}
.ws15_c02131{word-spacing:106.120728px;}
.ws6_c02131{word-spacing:122.676372px;}
.ws7_c02131{word-spacing:122.746608px;}
.wsf_c02131{word-spacing:125.242380px;}
.ws5_c02131{word-spacing:125.266608px;}
.wsc_c02131{word-spacing:139.282380px;}
.ws11_c02131{word-spacing:139.306608px;}
.ws10_c02131{word-spacing:158.002380px;}
.ws8_c02131{word-spacing:172.066608px;}
.ws17_c02131{word-spacing:205.186608px;}
.ws37_c02131{word-spacing:224.775000px;}
.ws23_c02131{word-spacing:595.991448px;}
.ws22_c02131{word-spacing:595.993572px;}
.ws20_c02131{word-spacing:616.950000px;}
._1e_c02131{margin-left:-68.309388px;}
._1f_c02131{margin-left:-24.840000px;}
._1_c02131{margin-left:-1.148292px;}
._19_c02131{width:51.297552px;}
._1c_c02131{width:62.064000px;}
._5_c02131{width:67.125600px;}
._16_c02131{width:72.964440px;}
._1d_c02131{width:74.901168px;}
._17_c02131{width:77.310180px;}
._8_c02131{width:80.805600px;}
._1a_c02131{width:83.678148px;}
._f_c02131{width:84.834000px;}
._18_c02131{width:86.918400px;}
._e_c02131{width:88.221600px;}
._7_c02131{width:101.610000px;}
._6_c02131{width:104.515776px;}
._11_c02131{width:106.740000px;}
._4_c02131{width:108.810000px;}
._3_c02131{width:111.355776px;}
._12_c02131{width:118.018944px;}
._10_c02131{width:122.220000px;}
._9_c02131{width:124.351020px;}
._1b_c02131{width:130.125852px;}
._13_c02131{width:131.496120px;}
._15_c02131{width:140.027688px;}
._14_c02131{width:152.515404px;}
._0_c02131{width:194.400000px;}
._b_c02131{width:202.356036px;}
._c_c02131{width:203.879736px;}
._2_c02131{width:212.359284px;}
._a_c02131{width:221.260104px;}
._d_c02131{width:393.120000px;}
.fc0_c02131{color:rgb(0,0,0);}
.fs4_c02131{font-size:29.880000px;}
.fs6_c02131{font-size:42.120000px;}
.fs5_c02131{font-size:47.880000px;}
.fs3_c02131{font-size:54.000000px;}
.fs2_c02131{font-size:60.120000px;}
.fs1_c02131{font-size:65.880000px;}
.fs0_c02131{font-size:72.000000px;}
.y0_c02131{bottom:0.000000px;}
.y3_c02131{bottom:57.360450px;}
.y2_c02131{bottom:78.060450px;}
.y3e_c02131{bottom:131.520450px;}
.y3d_c02131{bottom:152.220450px;}
.y3c_c02131{bottom:172.920450px;}
.y3b_c02131{bottom:193.620450px;}
.y3a_c02131{bottom:214.320450px;}
.y39_c02131{bottom:235.020450px;}
.y38_c02131{bottom:255.720450px;}
.y37_c02131{bottom:276.420450px;}
.y35_c02131{bottom:295.950450px;}
.y34_c02131{bottom:296.310000px;}
.y36_c02131{bottom:296.310450px;}
.y33_c02131{bottom:314.940450px;}
.y32_c02131{bottom:315.300450px;}
.y31_c02131{bottom:334.920450px;}
.y30_c02131{bottom:353.280450px;}
.y2f_c02131{bottom:370.650450px;}
.y2e_c02131{bottom:392.250600px;}
.y2d_c02131{bottom:412.950600px;}
.y2c_c02131{bottom:434.190450px;}
.y2b_c02131{bottom:454.710600px;}
.y2a_c02131{bottom:470.910450px;}
.y29_c02131{bottom:491.970450px;}
.y28_c02131{bottom:512.670450px;}
.y27_c02131{bottom:533.370450px;}
.y26_c02131{bottom:552.360450px;}
.y25_c02131{bottom:571.710450px;}
.y24_c02131{bottom:592.410450px;}
.y23_c02131{bottom:613.110450px;}
.y22_c02131{bottom:632.100450px;}
.y21_c02131{bottom:651.000450px;}
.y20_c02131{bottom:669.990450px;}
.y1f_c02131{bottom:688.980450px;}
.y1e_c02131{bottom:709.320450px;}
.y1d_c02131{bottom:726.960450px;}
.y1c_c02131{bottom:745.950450px;}
.y19_c02131{bottom:754.860450px;}
.y1b_c02131{bottom:764.850450px;}
.y1a_c02131{bottom:783.840450px;}
.y18_c02131{bottom:801.570846px;}
.y17_c02131{bottom:810.210648px;}
.y16_c02131{bottom:818.850450px;}
.y15_c02131{bottom:829.470450px;}
.y14_c02131{bottom:850.530450px;}
.y13_c02131{bottom:871.230450px;}
.y12_c02131{bottom:891.930600px;}
.y11_c02131{bottom:910.920450px;}
.y10_c02131{bottom:930.270450px;}
.yf_c02131{bottom:950.970450px;}
.ye_c02131{bottom:971.670450px;}
.yd_c02131{bottom:990.570450px;}
.yc_c02131{bottom:1009.560450px;}
.yb_c02131{bottom:1028.550450px;}
.ya_c02131{bottom:1047.540450px;}
.y9_c02131{bottom:1066.170450px;}
.y8_c02131{bottom:1083.720450px;}
.y7_c02131{bottom:1102.710450px;}
.y4_c02131{bottom:1111.620450px;}
.y6_c02131{bottom:1121.700450px;}
.y5_c02131{bottom:1140.690450px;}
.y1_c02131{bottom:1193.160450px;}
.h9_c02131{height:26.538926px;}
.hc_c02131{height:47.961914px;}
.h5_c02131{height:53.397598px;}
.h4_c02131{height:58.513535px;}
.hd_c02131{height:62.473535px;}
.he_c02131{height:62.833535px;}
.h2_c02131{height:63.175781px;}
.h1_c02131{height:63.949219px;}
.ha_c02131{height:64.975781px;}
.h7_c02131{height:65.029219px;}
.h6_c02131{height:65.029819px;}
.h8_c02131{height:66.469219px;}
.hb_c02131{height:66.469819px;}
.h3_c02131{height:134.473535px;}
.h0_c02131{height:1263.000000px;}
.w1_c02131{width:892.500000px;}
.w0_c02131{width:892.830000px;}
.x0_c02131{left:0.000000px;}
.x1_c02131{left:127.620000px;}
.x3_c02131{left:135.630000px;}
.x12_c02131{left:143.910000px;}
.x13_c02131{left:165.060000px;}
.xc_c02131{left:172.980000px;}
.x14_c02131{left:220.680000px;}
.xd_c02131{left:277.380000px;}
.x5_c02131{left:304.470000px;}
.x4_c02131{left:312.480000px;}
.xe_c02131{left:314.550000px;}
.x2_c02131{left:437.580000px;}
.x10_c02131{left:441.000000px;}
.x6_c02131{left:445.680000px;}
.x7_c02131{left:450.000000px;}
.x8_c02131{left:464.670000px;}
.xf_c02131{left:477.270000px;}
.x11_c02131{left:484.470000px;}
.xa_c02131{left:601.110000px;}
.xb_c02131{left:622.170000px;}
.x9_c02131{left:642.150000px;}
.x15_c02131{left:746.820000px;}
@media print{
.v5_c02131{vertical-align:-3.520000pt;}
.v4_c02131{vertical-align:-2.240000pt;}
.v2_c02131{vertical-align:-1.280000pt;}
.v0_c02131{vertical-align:0.000000pt;}
.v3_c02131{vertical-align:1.280000pt;}
.v6_c02131{vertical-align:2.240000pt;}
.v7_c02131{vertical-align:3.520000pt;}
.v1_c02131{vertical-align:67.520000pt;}
.ls4d_c02131{letter-spacing:-0.080160pt;}
.ls56_c02131{letter-spacing:-0.076608pt;}
.ls4c_c02131{letter-spacing:-0.069472pt;}
.ls52_c02131{letter-spacing:-0.038400pt;}
.ls4e_c02131{letter-spacing:-0.029280pt;}
.ls48_c02131{letter-spacing:-0.017568pt;}
.ls54_c02131{letter-spacing:-0.017024pt;}
.ls46_c02131{letter-spacing:-0.012800pt;}
.ls53_c02131{letter-spacing:-0.009600pt;}
.ls4a_c02131{letter-spacing:-0.005856pt;}
.ls47_c02131{letter-spacing:0.000000pt;}
.ls33_c02131{letter-spacing:0.005344pt;}
.ls39_c02131{letter-spacing:0.006400pt;}
.ls3a_c02131{letter-spacing:0.009600pt;}
.ls3d_c02131{letter-spacing:0.011232pt;}
.ls50_c02131{letter-spacing:0.012800pt;}
.ls2_c02131{letter-spacing:0.023424pt;}
.ls3c_c02131{letter-spacing:0.025536pt;}
.ls38_c02131{letter-spacing:0.025600pt;}
.ls3e_c02131{letter-spacing:0.028800pt;}
.ls32_c02131{letter-spacing:0.029280pt;}
.ls42_c02131{letter-spacing:0.033600pt;}
.ls29_c02131{letter-spacing:0.035136pt;}
.ls3b_c02131{letter-spacing:0.038304pt;}
.ls41_c02131{letter-spacing:0.038400pt;}
.ls49_c02131{letter-spacing:0.040992pt;}
.ls40_c02131{letter-spacing:0.046816pt;}
.ls4f_c02131{letter-spacing:0.046848pt;}
.ls1f_c02131{letter-spacing:0.052704pt;}
.lsd_c02131{letter-spacing:0.058560pt;}
.ls3_c02131{letter-spacing:0.064416pt;}
.ls17_c02131{letter-spacing:0.070272pt;}
.ls5_c02131{letter-spacing:0.081984pt;}
.ls4_c02131{letter-spacing:0.086400pt;}
.ls1a_c02131{letter-spacing:0.087840pt;}
.ls44_c02131{letter-spacing:0.102144pt;}
.ls9_c02131{letter-spacing:0.122976pt;}
.ls45_c02131{letter-spacing:0.123424pt;}
.ls4b_c02131{letter-spacing:0.128256pt;}
.ls51_c02131{letter-spacing:0.134400pt;}
.lsf_c02131{letter-spacing:0.134688pt;}
.ls2b_c02131{letter-spacing:0.140544pt;}
.ls0_c02131{letter-spacing:0.146400pt;}
.ls55_c02131{letter-spacing:0.148960pt;}
.ls1c_c02131{letter-spacing:0.158112pt;}
.ls7_c02131{letter-spacing:0.160000pt;}
.ls2d_c02131{letter-spacing:47.360000pt;}
.ls2c_c02131{letter-spacing:47.680000pt;}
.ls28_c02131{letter-spacing:49.280000pt;}
.ls25_c02131{letter-spacing:49.600000pt;}
.ls1e_c02131{letter-spacing:49.920000pt;}
.ls1d_c02131{letter-spacing:62.080000pt;}
.ls15_c02131{letter-spacing:78.400000pt;}
.ls13_c02131{letter-spacing:78.720000pt;}
.ls16_c02131{letter-spacing:79.040000pt;}
.ls26_c02131{letter-spacing:82.320000pt;}
.ls14_c02131{letter-spacing:91.200000pt;}
.ls27_c02131{letter-spacing:94.800000pt;}
.ls3f_c02131{letter-spacing:99.840000pt;}
.ls10_c02131{letter-spacing:107.840000pt;}
.ls8_c02131{letter-spacing:108.160000pt;}
.ls11_c02131{letter-spacing:108.480000pt;}
.lsa_c02131{letter-spacing:120.640000pt;}
.ls19_c02131{letter-spacing:124.320000pt;}
.ls57_c02131{letter-spacing:127.838400pt;}
.lsb_c02131{letter-spacing:137.280000pt;}
.lsc_c02131{letter-spacing:137.920000pt;}
.ls22_c02131{letter-spacing:140.880000pt;}
.ls34_c02131{letter-spacing:151.360000pt;}
.ls23_c02131{letter-spacing:153.360000pt;}
.ls43_c02131{letter-spacing:178.480000pt;}
.ls31_c02131{letter-spacing:181.120000pt;}
.ls2f_c02131{letter-spacing:181.440000pt;}
.ls24_c02131{letter-spacing:181.759467pt;}
.ls21_c02131{letter-spacing:193.920000pt;}
.ls12_c02131{letter-spacing:241.920000pt;}
.ls2e_c02131{letter-spacing:258.240000pt;}
.ls18_c02131{letter-spacing:284.480000pt;}
.ls1b_c02131{letter-spacing:300.480000pt;}
.ls36_c02131{letter-spacing:302.080000pt;}
.ls2a_c02131{letter-spacing:315.200000pt;}
.ls20_c02131{letter-spacing:326.400000pt;}
.ls35_c02131{letter-spacing:331.200000pt;}
.ls1_c02131{letter-spacing:344.320000pt;}
.ls30_c02131{letter-spacing:349.440000pt;}
.ls6_c02131{letter-spacing:355.840000pt;}
.lse_c02131{letter-spacing:368.960000pt;}
.ls37_c02131{letter-spacing:385.280000pt;}
.wsd_c02131{word-spacing:-14.798112pt;}
.ws0_c02131{word-spacing:-14.786400pt;}
.ws1a_c02131{word-spacing:-14.780544pt;}
.wse_c02131{word-spacing:-14.774688pt;}
.ws4_c02131{word-spacing:-14.762976pt;}
.ws12_c02131{word-spacing:-14.727840pt;}
.ws9_c02131{word-spacing:-14.721984pt;}
.ws1b_c02131{word-spacing:-14.704416pt;}
.ws16_c02131{word-spacing:-14.692704pt;}
.ws19_c02131{word-spacing:-14.675136pt;}
.ws3_c02131{word-spacing:-14.663424pt;}
.ws2_c02131{word-spacing:-14.634144pt;}
.ws1_c02131{word-spacing:-14.622432pt;}
.ws21_c02131{word-spacing:-13.365344pt;}
.ws30_c02131{word-spacing:-0.310368pt;}
.ws2f_c02131{word-spacing:-0.245824pt;}
.ws38_c02131{word-spacing:-0.204288pt;}
.ws36_c02131{word-spacing:-0.183008pt;}
.ws35_c02131{word-spacing:-0.106400pt;}
.ws31_c02131{word-spacing:-0.102400pt;}
.ws34_c02131{word-spacing:-0.089856pt;}
.ws33_c02131{word-spacing:-0.076800pt;}
.ws32_c02131{word-spacing:-0.006400pt;}
.ws26_c02131{word-spacing:0.000000pt;}
.ws2c_c02131{word-spacing:0.011712pt;}
.ws25_c02131{word-spacing:0.012800pt;}
.ws29_c02131{word-spacing:0.017568pt;}
.ws2b_c02131{word-spacing:0.023424pt;}
.ws28_c02131{word-spacing:0.040992pt;}
.ws2d_c02131{word-spacing:0.046848pt;}
.ws2e_c02131{word-spacing:0.052704pt;}
.ws27_c02131{word-spacing:0.058560pt;}
.ws2a_c02131{word-spacing:0.072000pt;}
.ws1d_c02131{word-spacing:48.577280pt;}
.ws18_c02131{word-spacing:50.487552pt;}
.ws14_c02131{word-spacing:50.526560pt;}
.ws24_c02131{word-spacing:66.817280pt;}
.ws1f_c02131{word-spacing:67.166560pt;}
.ws1c_c02131{word-spacing:67.188096pt;}
.wsa_c02131{word-spacing:79.605664pt;}
.ws13_c02131{word-spacing:79.607552pt;}
.wsb_c02131{word-spacing:79.646560pt;}
.ws1e_c02131{word-spacing:80.118240pt;}
.ws15_c02131{word-spacing:94.329536pt;}
.ws6_c02131{word-spacing:109.045664pt;}
.ws7_c02131{word-spacing:109.108096pt;}
.wsf_c02131{word-spacing:111.326560pt;}
.ws5_c02131{word-spacing:111.348096pt;}
.wsc_c02131{word-spacing:123.806560pt;}
.ws11_c02131{word-spacing:123.828096pt;}
.ws10_c02131{word-spacing:140.446560pt;}
.ws8_c02131{word-spacing:152.948096pt;}
.ws17_c02131{word-spacing:182.388096pt;}
.ws37_c02131{word-spacing:199.800000pt;}
.ws23_c02131{word-spacing:529.770176pt;}
.ws22_c02131{word-spacing:529.772064pt;}
.ws20_c02131{word-spacing:548.400000pt;}
._1e_c02131{margin-left:-60.719456pt;}
._1f_c02131{margin-left:-22.080000pt;}
._1_c02131{margin-left:-1.020704pt;}
._19_c02131{width:45.597824pt;}
._1c_c02131{width:55.168000pt;}
._5_c02131{width:59.667200pt;}
._16_c02131{width:64.857280pt;}
._1d_c02131{width:66.578816pt;}
._17_c02131{width:68.720160pt;}
._8_c02131{width:71.827200pt;}
._1a_c02131{width:74.380576pt;}
._f_c02131{width:75.408000pt;}
._18_c02131{width:77.260800pt;}
._e_c02131{width:78.419200pt;}
._7_c02131{width:90.320000pt;}
._6_c02131{width:92.902912pt;}
._11_c02131{width:94.880000pt;}
._4_c02131{width:96.720000pt;}
._3_c02131{width:98.982912pt;}
._12_c02131{width:104.905728pt;}
._10_c02131{width:108.640000pt;}
._9_c02131{width:110.534240pt;}
._1b_c02131{width:115.667424pt;}
._13_c02131{width:116.885440pt;}
._15_c02131{width:124.469056pt;}
._14_c02131{width:135.569248pt;}
._0_c02131{width:172.800000pt;}
._b_c02131{width:179.872032pt;}
._c_c02131{width:181.226432pt;}
._2_c02131{width:188.763808pt;}
._a_c02131{width:196.675648pt;}
._d_c02131{width:349.440000pt;}
.fs4_c02131{font-size:26.560000pt;}
.fs6_c02131{font-size:37.440000pt;}
.fs5_c02131{font-size:42.560000pt;}
.fs3_c02131{font-size:48.000000pt;}
.fs2_c02131{font-size:53.440000pt;}
.fs1_c02131{font-size:58.560000pt;}
.fs0_c02131{font-size:64.000000pt;}
.y0_c02131{bottom:0.000000pt;}
.y3_c02131{bottom:50.987067pt;}
.y2_c02131{bottom:69.387067pt;}
.y3e_c02131{bottom:116.907067pt;}
.y3d_c02131{bottom:135.307067pt;}
.y3c_c02131{bottom:153.707067pt;}
.y3b_c02131{bottom:172.107067pt;}
.y3a_c02131{bottom:190.507067pt;}
.y39_c02131{bottom:208.907067pt;}
.y38_c02131{bottom:227.307067pt;}
.y37_c02131{bottom:245.707067pt;}
.y35_c02131{bottom:263.067067pt;}
.y34_c02131{bottom:263.386667pt;}
.y36_c02131{bottom:263.387067pt;}
.y33_c02131{bottom:279.947067pt;}
.y32_c02131{bottom:280.267067pt;}
.y31_c02131{bottom:297.707067pt;}
.y30_c02131{bottom:314.027067pt;}
.y2f_c02131{bottom:329.467067pt;}
.y2e_c02131{bottom:348.667200pt;}
.y2d_c02131{bottom:367.067200pt;}
.y2c_c02131{bottom:385.947067pt;}
.y2b_c02131{bottom:404.187200pt;}
.y2a_c02131{bottom:418.587067pt;}
.y29_c02131{bottom:437.307067pt;}
.y28_c02131{bottom:455.707067pt;}
.y27_c02131{bottom:474.107067pt;}
.y26_c02131{bottom:490.987067pt;}
.y25_c02131{bottom:508.187067pt;}
.y24_c02131{bottom:526.587067pt;}
.y23_c02131{bottom:544.987067pt;}
.y22_c02131{bottom:561.867067pt;}
.y21_c02131{bottom:578.667067pt;}
.y20_c02131{bottom:595.547067pt;}
.y1f_c02131{bottom:612.427067pt;}
.y1e_c02131{bottom:630.507067pt;}
.y1d_c02131{bottom:646.187067pt;}
.y1c_c02131{bottom:663.067067pt;}
.y19_c02131{bottom:670.987067pt;}
.y1b_c02131{bottom:679.867067pt;}
.y1a_c02131{bottom:696.747067pt;}
.y18_c02131{bottom:712.507419pt;}
.y17_c02131{bottom:720.187243pt;}
.y16_c02131{bottom:727.867067pt;}
.y15_c02131{bottom:737.307067pt;}
.y14_c02131{bottom:756.027067pt;}
.y13_c02131{bottom:774.427067pt;}
.y12_c02131{bottom:792.827200pt;}
.y11_c02131{bottom:809.707067pt;}
.y10_c02131{bottom:826.907067pt;}
.yf_c02131{bottom:845.307067pt;}
.ye_c02131{bottom:863.707067pt;}
.yd_c02131{bottom:880.507067pt;}
.yc_c02131{bottom:897.387067pt;}
.yb_c02131{bottom:914.267067pt;}
.ya_c02131{bottom:931.147067pt;}
.y9_c02131{bottom:947.707067pt;}
.y8_c02131{bottom:963.307067pt;}
.y7_c02131{bottom:980.187067pt;}
.y4_c02131{bottom:988.107067pt;}
.y6_c02131{bottom:997.067067pt;}
.y5_c02131{bottom:1013.947067pt;}
.y1_c02131{bottom:1060.587067pt;}
.h9_c02131{height:23.590156pt;}
.hc_c02131{height:42.632812pt;}
.h5_c02131{height:47.464531pt;}
.h4_c02131{height:52.012031pt;}
.hd_c02131{height:55.532031pt;}
.he_c02131{height:55.852031pt;}
.h2_c02131{height:56.156250pt;}
.h1_c02131{height:56.843750pt;}
.ha_c02131{height:57.756250pt;}
.h7_c02131{height:57.803750pt;}
.h6_c02131{height:57.804283pt;}
.h8_c02131{height:59.083750pt;}
.hb_c02131{height:59.084283pt;}
.h3_c02131{height:119.532031pt;}
.h0_c02131{height:1122.666667pt;}
.w1_c02131{width:793.333333pt;}
.w0_c02131{width:793.626667pt;}
.x0_c02131{left:0.000000pt;}
.x1_c02131{left:113.440000pt;}
.x3_c02131{left:120.560000pt;}
.x12_c02131{left:127.920000pt;}
.x13_c02131{left:146.720000pt;}
.xc_c02131{left:153.760000pt;}
.x14_c02131{left:196.160000pt;}
.xd_c02131{left:246.560000pt;}
.x5_c02131{left:270.640000pt;}
.x4_c02131{left:277.760000pt;}
.xe_c02131{left:279.600000pt;}
.x2_c02131{left:388.960000pt;}
.x10_c02131{left:392.000000pt;}
.x6_c02131{left:396.160000pt;}
.x7_c02131{left:400.000000pt;}
.x8_c02131{left:413.040000pt;}
.xf_c02131{left:424.240000pt;}
.x11_c02131{left:430.640000pt;}
.xa_c02131{left:534.320000pt;}
.xb_c02131{left:553.040000pt;}
.x9_c02131{left:570.800000pt;}
.x15_c02131{left:663.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_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_76ada502557baa9af205b912.woff2')format("woff");}.ff1_c02132{font-family:ff1_c02132;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02132;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02132{vertical-align:-4.320000px;}
.v2_c02132{vertical-align:-2.880000px;}
.v1_c02132{vertical-align:-1.440000px;}
.v0_c02132{vertical-align:0.000000px;}
.v6_c02132{vertical-align:1.080000px;}
.v4_c02132{vertical-align:2.520000px;}
.v5_c02132{vertical-align:4.320000px;}
.v7_c02132{vertical-align:32.040000px;}
.ls34_c02132{letter-spacing:-0.178200px;}
.ls30_c02132{letter-spacing:-0.118800px;}
.ls33_c02132{letter-spacing:-0.102600px;}
.ls31_c02132{letter-spacing:-0.086400px;}
.ls2c_c02132{letter-spacing:-0.086184px;}
.ls36_c02132{letter-spacing:-0.050400px;}
.ls28_c02132{letter-spacing:-0.043200px;}
.ls2a_c02132{letter-spacing:-0.019152px;}
.ls32_c02132{letter-spacing:-0.016200px;}
.ls25_c02132{letter-spacing:-0.014400px;}
.ls29_c02132{letter-spacing:-0.010800px;}
.ls2e_c02132{letter-spacing:-0.009576px;}
.ls2f_c02132{letter-spacing:-0.004788px;}
.ls26_c02132{letter-spacing:0.000000px;}
.ls1e_c02132{letter-spacing:0.005400px;}
.ls1d_c02132{letter-spacing:0.006588px;}
.ls24_c02132{letter-spacing:0.007200px;}
.ls1_c02132{letter-spacing:0.010800px;}
.ls4_c02132{letter-spacing:0.012636px;}
.ls13_c02132{letter-spacing:0.014400px;}
.ls20_c02132{letter-spacing:0.016200px;}
.ls1b_c02132{letter-spacing:0.019152px;}
.ls0_c02132{letter-spacing:0.021600px;}
.ls1f_c02132{letter-spacing:0.027000px;}
.ls3_c02132{letter-spacing:0.028728px;}
.ls5_c02132{letter-spacing:0.032400px;}
.lsb_c02132{letter-spacing:0.037800px;}
.ls2_c02132{letter-spacing:0.043092px;}
.lsa_c02132{letter-spacing:0.043200px;}
.ls10_c02132{letter-spacing:0.052668px;}
.ls22_c02132{letter-spacing:0.067032px;}
.ls8_c02132{letter-spacing:0.076608px;}
.ls1c_c02132{letter-spacing:0.079056px;}
.lse_c02132{letter-spacing:0.081396px;}
.ls21_c02132{letter-spacing:0.095760px;}
.ls23_c02132{letter-spacing:0.100548px;}
.ls14_c02132{letter-spacing:0.110124px;}
.ls11_c02132{letter-spacing:0.114912px;}
.ls18_c02132{letter-spacing:0.124488px;}
.ls1a_c02132{letter-spacing:0.134064px;}
.ls12_c02132{letter-spacing:0.138852px;}
.ls27_c02132{letter-spacing:0.151200px;}
.ls6_c02132{letter-spacing:0.158112px;}
.lsd_c02132{letter-spacing:0.162792px;}
.ls2b_c02132{letter-spacing:0.167580px;}
.ls15_c02132{letter-spacing:0.178200px;}
.ls9_c02132{letter-spacing:0.181944px;}
.ls17_c02132{letter-spacing:0.205884px;}
.ls35_c02132{letter-spacing:0.268128px;}
.ls16_c02132{letter-spacing:51.663600px;}
.ls19_c02132{letter-spacing:78.663600px;}
.ls7_c02132{letter-spacing:112.320000px;}
.ls2d_c02132{letter-spacing:143.818200px;}
.lsf_c02132{letter-spacing:156.060000px;}
.lsc_c02132{letter-spacing:200.790000px;}
.sc__c02132{text-shadow:none;}
.sc0_c02132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02132{-webkit-text-stroke:0px transparent;}
.sc0_c02132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02132{word-spacing:-16.628112px;}
.ws5_c02132{word-spacing:-16.476588px;}
.ws3_c02132{word-spacing:-13.500000px;}
.ws13_c02132{word-spacing:-0.296856px;}
.wsa_c02132{word-spacing:-0.272916px;}
.wsc_c02132{word-spacing:-0.253764px;}
.ws11_c02132{word-spacing:-0.229824px;}
.ws16_c02132{word-spacing:-0.225036px;}
.ws15_c02132{word-spacing:-0.215460px;}
.ws10_c02132{word-spacing:-0.205884px;}
.ws28_c02132{word-spacing:-0.191520px;}
.ws1f_c02132{word-spacing:-0.189000px;}
.ws18_c02132{word-spacing:-0.172368px;}
.ws2a_c02132{word-spacing:-0.129600px;}
.wsf_c02132{word-spacing:-0.119700px;}
.ws19_c02132{word-spacing:-0.110124px;}
.ws9_c02132{word-spacing:-0.101088px;}
.wsd_c02132{word-spacing:-0.081396px;}
.ws14_c02132{word-spacing:-0.072000px;}
.ws8_c02132{word-spacing:-0.021600px;}
.ws12_c02132{word-spacing:-0.014400px;}
.ws29_c02132{word-spacing:-0.007200px;}
.ws7_c02132{word-spacing:0.000000px;}
.ws1a_c02132{word-spacing:0.013176px;}
.ws6_c02132{word-spacing:0.014400px;}
.ws1c_c02132{word-spacing:0.145800px;}
.ws20_c02132{word-spacing:0.151200px;}
.ws22_c02132{word-spacing:0.162000px;}
.ws1b_c02132{word-spacing:0.172800px;}
.ws1e_c02132{word-spacing:0.194400px;}
.ws1d_c02132{word-spacing:0.264600px;}
.ws21_c02132{word-spacing:0.280800px;}
.ws23_c02132{word-spacing:0.536256px;}
.ws24_c02132{word-spacing:0.550620px;}
.ws25_c02132{word-spacing:2.724372px;}
.ws27_c02132{word-spacing:2.748312px;}
.ws26_c02132{word-spacing:2.762676px;}
.ws4_c02132{word-spacing:48.169440px;}
.ws1_c02132{word-spacing:75.169440px;}
.ws2_c02132{word-spacing:85.609440px;}
.wsb_c02132{word-spacing:224.775000px;}
.ws17_c02132{word-spacing:224.780400px;}
.wse_c02132{word-spacing:226.165968px;}
._15_c02132{margin-left:-68.445000px;}
._16_c02132{margin-left:-24.840000px;}
._1b_c02132{margin-left:-1.121580px;}
._2e_c02132{width:1.026000px;}
._21_c02132{width:43.918200px;}
._c_c02132{width:51.297552px;}
._11_c02132{width:62.053200px;}
._1c_c02132{width:63.441252px;}
._f_c02132{width:65.340000px;}
._1a_c02132{width:66.782520px;}
._8_c02132{width:72.964440px;}
._13_c02132{width:75.420000px;}
._9_c02132{width:77.310180px;}
._1f_c02132{width:80.194752px;}
._35_c02132{width:83.517192px;}
._2_c02132{width:84.834000px;}
._a_c02132{width:86.918400px;}
._1_c02132{width:88.221600px;}
._d_c02132{width:91.288440px;}
._34_c02132{width:95.325876px;}
._20_c02132{width:97.560288px;}
._b_c02132{width:100.958400px;}
._10_c02132{width:103.104000px;}
._19_c02132{width:104.937588px;}
._1e_c02132{width:106.421868px;}
._14_c02132{width:109.594296px;}
._25_c02132{width:114.557688px;}
._4_c02132{width:115.740000px;}
._5_c02132{width:118.378944px;}
._23_c02132{width:120.067668px;}
._3_c02132{width:122.220000px;}
._12_c02132{width:128.619648px;}
._22_c02132{width:129.718728px;}
._24_c02132{width:130.789008px;}
._1d_c02132{width:134.284248px;}
._7_c02132{width:140.027688px;}
._33_c02132{width:141.210000px;}
._18_c02132{width:143.820000px;}
._17_c02132{width:146.586384px;}
._6_c02132{width:152.431524px;}
._0_c02132{width:194.400000px;}
._e_c02132{width:200.964168px;}
._32_c02132{width:203.036400px;}
._29_c02132{width:216.180000px;}
._27_c02132{width:283.500000px;}
._2d_c02132{width:303.170400px;}
._2a_c02132{width:310.104000px;}
._28_c02132{width:324.775800px;}
._30_c02132{width:382.210200px;}
._2f_c02132{width:451.783800px;}
._2c_c02132{width:482.234400px;}
._2b_c02132{width:483.924600px;}
._26_c02132{width:560.692800px;}
._31_c02132{width:799.695000px;}
.fc0_c02132{color:rgb(0,0,0);}
.fs5_c02132{font-size:11.880000px;}
.fs3_c02132{font-size:42.120000px;}
.fs2_c02132{font-size:47.880000px;}
.fs1_c02132{font-size:54.000000px;}
.fs4_c02132{font-size:65.880000px;}
.fs0_c02132{font-size:72.000000px;}
.y0_c02132{bottom:0.000000px;}
.y3_c02132{bottom:57.360450px;}
.y2_c02132{bottom:78.060450px;}
.y59_c02132{bottom:119.640600px;}
.y58_c02132{bottom:135.210150px;}
.y57_c02132{bottom:150.690600px;}
.y56_c02132{bottom:166.260150px;}
.y55_c02132{bottom:181.740600px;}
.y54_c02132{bottom:197.221050px;}
.y53_c02132{bottom:212.790600px;}
.y52_c02132{bottom:228.270450px;}
.y51_c02132{bottom:228.720450px;}
.y50_c02132{bottom:249.420450px;}
.y4f_c02132{bottom:267.960450px;}
.y4e_c02132{bottom:268.320450px;}
.y4d_c02132{bottom:289.740450px;}
.y4c_c02132{bottom:308.010450px;}
.y4b_c02132{bottom:325.380450px;}
.y4a_c02132{bottom:345.540600px;}
.y49_c02132{bottom:360.930099px;}
.y48_c02132{bottom:374.700387px;}
.y47_c02132{bottom:388.560450px;}
.y46_c02132{bottom:404.670450px;}
.y45_c02132{bottom:420.240450px;}
.y44_c02132{bottom:435.720450px;}
.y43_c02132{bottom:451.290600px;}
.y42_c02132{bottom:466.770600px;}
.y41_c02132{bottom:482.340600px;}
.y40_c02132{bottom:497.820450px;}
.y3f_c02132{bottom:513.390450px;}
.y3c_c02132{bottom:531.120450px;}
.y3e_c02132{bottom:531.390450px;}
.y3d_c02132{bottom:549.210450px;}
.y3b_c02132{bottom:567.390450px;}
.y3a_c02132{bottom:585.570450px;}
.y38_c02132{bottom:599.430450px;}
.y37_c02132{bottom:599.790000px;}
.y39_c02132{bottom:599.790450px;}
.y35_c02132{bottom:618.420450px;}
.y34_c02132{bottom:618.780000px;}
.y36_c02132{bottom:618.780450px;}
.y32_c02132{bottom:637.410450px;}
.y31_c02132{bottom:637.770000px;}
.y33_c02132{bottom:637.770450px;}
.y2f_c02132{bottom:656.400450px;}
.y2e_c02132{bottom:656.760000px;}
.y30_c02132{bottom:656.760450px;}
.y2d_c02132{bottom:675.390450px;}
.y2c_c02132{bottom:675.750450px;}
.y2b_c02132{bottom:694.740450px;}
.y2a_c02132{bottom:713.280450px;}
.y29_c02132{bottom:713.640450px;}
.y28_c02132{bottom:735.060450px;}
.y27_c02132{bottom:753.330450px;}
.y26_c02132{bottom:770.700450px;}
.y25_c02132{bottom:791.490450px;}
.y23_c02132{bottom:800.310450px;}
.y22_c02132{bottom:800.670150px;}
.y24_c02132{bottom:800.670450px;}
.y20_c02132{bottom:819.300450px;}
.y1f_c02132{bottom:819.660450px;}
.y21_c02132{bottom:819.660600px;}
.y1e_c02132{bottom:838.650450px;}
.y1d_c02132{bottom:857.190450px;}
.y1c_c02132{bottom:857.550450px;}
.y1b_c02132{bottom:878.970450px;}
.y1a_c02132{bottom:897.240450px;}
.y19_c02132{bottom:914.610450px;}
.y18_c02132{bottom:935.400450px;}
.y16_c02132{bottom:944.220450px;}
.y15_c02132{bottom:944.580000px;}
.y17_c02132{bottom:944.850450px;}
.y13_c02132{bottom:963.210450px;}
.y12_c02132{bottom:963.570450px;}
.y14_c02132{bottom:963.840450px;}
.y11_c02132{bottom:982.560450px;}
.yf_c02132{bottom:1001.100450px;}
.ye_c02132{bottom:1001.460450px;}
.y10_c02132{bottom:1001.730450px;}
.yd_c02132{bottom:1022.160450px;}
.yc_c02132{bottom:1040.790450px;}
.yb_c02132{bottom:1041.150900px;}
.ya_c02132{bottom:1061.490450px;}
.y9_c02132{bottom:1061.850900px;}
.y8_c02132{bottom:1082.190450px;}
.y7_c02132{bottom:1082.550450px;}
.y6_c02132{bottom:1103.970450px;}
.y5_c02132{bottom:1122.240450px;}
.y4_c02132{bottom:1139.610450px;}
.y1_c02132{bottom:1193.160450px;}
.h9_c02132{height:10.551621px;}
.hb_c02132{height:42.011895px;}
.h6_c02132{height:47.381836px;}
.h3_c02132{height:47.961914px;}
.h10_c02132{height:48.461236px;}
.hd_c02132{height:48.461836px;}
.he_c02132{height:48.462436px;}
.hc_c02132{height:58.513535px;}
.h7_c02132{height:61.033535px;}
.h5_c02132{height:61.393535px;}
.h8_c02132{height:62.473535px;}
.ha_c02132{height:62.474135px;}
.h4_c02132{height:62.833535px;}
.h2_c02132{height:63.175781px;}
.h1_c02132{height:63.949219px;}
.hf_c02132{height:79.421836px;}
.h0_c02132{height:1263.000000px;}
.w1_c02132{width:892.500000px;}
.w0_c02132{width:892.830000px;}
.x0_c02132{left:0.000000px;}
.x1_c02132{left:127.620000px;}
.x9_c02132{left:134.550000px;}
.x3_c02132{left:135.630000px;}
.x4_c02132{left:143.910000px;}
.x5_c02132{left:165.060000px;}
.x6_c02132{left:220.680000px;}
.xb_c02132{left:403.380000px;}
.xa_c02132{left:412.920000px;}
.x2_c02132{left:437.580000px;}
.x7_c02132{left:608.670000px;}
.x8_c02132{left:746.820000px;}
@media print{
.v3_c02132{vertical-align:-3.840000pt;}
.v2_c02132{vertical-align:-2.560000pt;}
.v1_c02132{vertical-align:-1.280000pt;}
.v0_c02132{vertical-align:0.000000pt;}
.v6_c02132{vertical-align:0.960000pt;}
.v4_c02132{vertical-align:2.240000pt;}
.v5_c02132{vertical-align:3.840000pt;}
.v7_c02132{vertical-align:28.480000pt;}
.ls34_c02132{letter-spacing:-0.158400pt;}
.ls30_c02132{letter-spacing:-0.105600pt;}
.ls33_c02132{letter-spacing:-0.091200pt;}
.ls31_c02132{letter-spacing:-0.076800pt;}
.ls2c_c02132{letter-spacing:-0.076608pt;}
.ls36_c02132{letter-spacing:-0.044800pt;}
.ls28_c02132{letter-spacing:-0.038400pt;}
.ls2a_c02132{letter-spacing:-0.017024pt;}
.ls32_c02132{letter-spacing:-0.014400pt;}
.ls25_c02132{letter-spacing:-0.012800pt;}
.ls29_c02132{letter-spacing:-0.009600pt;}
.ls2e_c02132{letter-spacing:-0.008512pt;}
.ls2f_c02132{letter-spacing:-0.004256pt;}
.ls26_c02132{letter-spacing:0.000000pt;}
.ls1e_c02132{letter-spacing:0.004800pt;}
.ls1d_c02132{letter-spacing:0.005856pt;}
.ls24_c02132{letter-spacing:0.006400pt;}
.ls1_c02132{letter-spacing:0.009600pt;}
.ls4_c02132{letter-spacing:0.011232pt;}
.ls13_c02132{letter-spacing:0.012800pt;}
.ls20_c02132{letter-spacing:0.014400pt;}
.ls1b_c02132{letter-spacing:0.017024pt;}
.ls0_c02132{letter-spacing:0.019200pt;}
.ls1f_c02132{letter-spacing:0.024000pt;}
.ls3_c02132{letter-spacing:0.025536pt;}
.ls5_c02132{letter-spacing:0.028800pt;}
.lsb_c02132{letter-spacing:0.033600pt;}
.ls2_c02132{letter-spacing:0.038304pt;}
.lsa_c02132{letter-spacing:0.038400pt;}
.ls10_c02132{letter-spacing:0.046816pt;}
.ls22_c02132{letter-spacing:0.059584pt;}
.ls8_c02132{letter-spacing:0.068096pt;}
.ls1c_c02132{letter-spacing:0.070272pt;}
.lse_c02132{letter-spacing:0.072352pt;}
.ls21_c02132{letter-spacing:0.085120pt;}
.ls23_c02132{letter-spacing:0.089376pt;}
.ls14_c02132{letter-spacing:0.097888pt;}
.ls11_c02132{letter-spacing:0.102144pt;}
.ls18_c02132{letter-spacing:0.110656pt;}
.ls1a_c02132{letter-spacing:0.119168pt;}
.ls12_c02132{letter-spacing:0.123424pt;}
.ls27_c02132{letter-spacing:0.134400pt;}
.ls6_c02132{letter-spacing:0.140544pt;}
.lsd_c02132{letter-spacing:0.144704pt;}
.ls2b_c02132{letter-spacing:0.148960pt;}
.ls15_c02132{letter-spacing:0.158400pt;}
.ls9_c02132{letter-spacing:0.161728pt;}
.ls17_c02132{letter-spacing:0.183008pt;}
.ls35_c02132{letter-spacing:0.238336pt;}
.ls16_c02132{letter-spacing:45.923200pt;}
.ls19_c02132{letter-spacing:69.923200pt;}
.ls7_c02132{letter-spacing:99.840000pt;}
.ls2d_c02132{letter-spacing:127.838400pt;}
.lsf_c02132{letter-spacing:138.720000pt;}
.lsc_c02132{letter-spacing:178.480000pt;}
.ws0_c02132{word-spacing:-14.780544pt;}
.ws5_c02132{word-spacing:-14.645856pt;}
.ws3_c02132{word-spacing:-12.000000pt;}
.ws13_c02132{word-spacing:-0.263872pt;}
.wsa_c02132{word-spacing:-0.242592pt;}
.wsc_c02132{word-spacing:-0.225568pt;}
.ws11_c02132{word-spacing:-0.204288pt;}
.ws16_c02132{word-spacing:-0.200032pt;}
.ws15_c02132{word-spacing:-0.191520pt;}
.ws10_c02132{word-spacing:-0.183008pt;}
.ws28_c02132{word-spacing:-0.170240pt;}
.ws1f_c02132{word-spacing:-0.168000pt;}
.ws18_c02132{word-spacing:-0.153216pt;}
.ws2a_c02132{word-spacing:-0.115200pt;}
.wsf_c02132{word-spacing:-0.106400pt;}
.ws19_c02132{word-spacing:-0.097888pt;}
.ws9_c02132{word-spacing:-0.089856pt;}
.wsd_c02132{word-spacing:-0.072352pt;}
.ws14_c02132{word-spacing:-0.064000pt;}
.ws8_c02132{word-spacing:-0.019200pt;}
.ws12_c02132{word-spacing:-0.012800pt;}
.ws29_c02132{word-spacing:-0.006400pt;}
.ws7_c02132{word-spacing:0.000000pt;}
.ws1a_c02132{word-spacing:0.011712pt;}
.ws6_c02132{word-spacing:0.012800pt;}
.ws1c_c02132{word-spacing:0.129600pt;}
.ws20_c02132{word-spacing:0.134400pt;}
.ws22_c02132{word-spacing:0.144000pt;}
.ws1b_c02132{word-spacing:0.153600pt;}
.ws1e_c02132{word-spacing:0.172800pt;}
.ws1d_c02132{word-spacing:0.235200pt;}
.ws21_c02132{word-spacing:0.249600pt;}
.ws23_c02132{word-spacing:0.476672pt;}
.ws24_c02132{word-spacing:0.489440pt;}
.ws25_c02132{word-spacing:2.421664pt;}
.ws27_c02132{word-spacing:2.442944pt;}
.ws26_c02132{word-spacing:2.455712pt;}
.ws4_c02132{word-spacing:42.817280pt;}
.ws1_c02132{word-spacing:66.817280pt;}
.ws2_c02132{word-spacing:76.097280pt;}
.wsb_c02132{word-spacing:199.800000pt;}
.ws17_c02132{word-spacing:199.804800pt;}
.wse_c02132{word-spacing:201.036416pt;}
._15_c02132{margin-left:-60.840000pt;}
._16_c02132{margin-left:-22.080000pt;}
._1b_c02132{margin-left:-0.996960pt;}
._2e_c02132{width:0.912000pt;}
._21_c02132{width:39.038400pt;}
._c_c02132{width:45.597824pt;}
._11_c02132{width:55.158400pt;}
._1c_c02132{width:56.392224pt;}
._f_c02132{width:58.080000pt;}
._1a_c02132{width:59.362240pt;}
._8_c02132{width:64.857280pt;}
._13_c02132{width:67.040000pt;}
._9_c02132{width:68.720160pt;}
._1f_c02132{width:71.284224pt;}
._35_c02132{width:74.237504pt;}
._2_c02132{width:75.408000pt;}
._a_c02132{width:77.260800pt;}
._1_c02132{width:78.419200pt;}
._d_c02132{width:81.145280pt;}
._34_c02132{width:84.734112pt;}
._20_c02132{width:86.720256pt;}
._b_c02132{width:89.740800pt;}
._10_c02132{width:91.648000pt;}
._19_c02132{width:93.277856pt;}
._1e_c02132{width:94.597216pt;}
._14_c02132{width:97.417152pt;}
._25_c02132{width:101.829056pt;}
._4_c02132{width:102.880000pt;}
._5_c02132{width:105.225728pt;}
._23_c02132{width:106.726816pt;}
._3_c02132{width:108.640000pt;}
._12_c02132{width:114.328576pt;}
._22_c02132{width:115.305536pt;}
._24_c02132{width:116.256896pt;}
._1d_c02132{width:119.363776pt;}
._7_c02132{width:124.469056pt;}
._33_c02132{width:125.520000pt;}
._18_c02132{width:127.840000pt;}
._17_c02132{width:130.299008pt;}
._6_c02132{width:135.494688pt;}
._0_c02132{width:172.800000pt;}
._e_c02132{width:178.634816pt;}
._32_c02132{width:180.476800pt;}
._29_c02132{width:192.160000pt;}
._27_c02132{width:252.000000pt;}
._2d_c02132{width:269.484800pt;}
._2a_c02132{width:275.648000pt;}
._28_c02132{width:288.689600pt;}
._30_c02132{width:339.742400pt;}
._2f_c02132{width:401.585600pt;}
._2c_c02132{width:428.652800pt;}
._2b_c02132{width:430.155200pt;}
._26_c02132{width:498.393600pt;}
._31_c02132{width:710.840000pt;}
.fs5_c02132{font-size:10.560000pt;}
.fs3_c02132{font-size:37.440000pt;}
.fs2_c02132{font-size:42.560000pt;}
.fs1_c02132{font-size:48.000000pt;}
.fs4_c02132{font-size:58.560000pt;}
.fs0_c02132{font-size:64.000000pt;}
.y0_c02132{bottom:0.000000pt;}
.y3_c02132{bottom:50.987067pt;}
.y2_c02132{bottom:69.387067pt;}
.y59_c02132{bottom:106.347200pt;}
.y58_c02132{bottom:120.186800pt;}
.y57_c02132{bottom:133.947200pt;}
.y56_c02132{bottom:147.786800pt;}
.y55_c02132{bottom:161.547200pt;}
.y54_c02132{bottom:175.307600pt;}
.y53_c02132{bottom:189.147200pt;}
.y52_c02132{bottom:202.907067pt;}
.y51_c02132{bottom:203.307067pt;}
.y50_c02132{bottom:221.707067pt;}
.y4f_c02132{bottom:238.187067pt;}
.y4e_c02132{bottom:238.507067pt;}
.y4d_c02132{bottom:257.547067pt;}
.y4c_c02132{bottom:273.787067pt;}
.y4b_c02132{bottom:289.227067pt;}
.y4a_c02132{bottom:307.147200pt;}
.y49_c02132{bottom:320.826755pt;}
.y48_c02132{bottom:333.067011pt;}
.y47_c02132{bottom:345.387067pt;}
.y46_c02132{bottom:359.707067pt;}
.y45_c02132{bottom:373.547067pt;}
.y44_c02132{bottom:387.307067pt;}
.y43_c02132{bottom:401.147200pt;}
.y42_c02132{bottom:414.907200pt;}
.y41_c02132{bottom:428.747200pt;}
.y40_c02132{bottom:442.507067pt;}
.y3f_c02132{bottom:456.347067pt;}
.y3c_c02132{bottom:472.107067pt;}
.y3e_c02132{bottom:472.347067pt;}
.y3d_c02132{bottom:488.187067pt;}
.y3b_c02132{bottom:504.347067pt;}
.y3a_c02132{bottom:520.507067pt;}
.y38_c02132{bottom:532.827067pt;}
.y37_c02132{bottom:533.146667pt;}
.y39_c02132{bottom:533.147067pt;}
.y35_c02132{bottom:549.707067pt;}
.y34_c02132{bottom:550.026667pt;}
.y36_c02132{bottom:550.027067pt;}
.y32_c02132{bottom:566.587067pt;}
.y31_c02132{bottom:566.906667pt;}
.y33_c02132{bottom:566.907067pt;}
.y2f_c02132{bottom:583.467067pt;}
.y2e_c02132{bottom:583.786667pt;}
.y30_c02132{bottom:583.787067pt;}
.y2d_c02132{bottom:600.347067pt;}
.y2c_c02132{bottom:600.667067pt;}
.y2b_c02132{bottom:617.547067pt;}
.y2a_c02132{bottom:634.027067pt;}
.y29_c02132{bottom:634.347067pt;}
.y28_c02132{bottom:653.387067pt;}
.y27_c02132{bottom:669.627067pt;}
.y26_c02132{bottom:685.067067pt;}
.y25_c02132{bottom:703.547067pt;}
.y23_c02132{bottom:711.387067pt;}
.y22_c02132{bottom:711.706800pt;}
.y24_c02132{bottom:711.707067pt;}
.y20_c02132{bottom:728.267067pt;}
.y1f_c02132{bottom:728.587067pt;}
.y21_c02132{bottom:728.587200pt;}
.y1e_c02132{bottom:745.467067pt;}
.y1d_c02132{bottom:761.947067pt;}
.y1c_c02132{bottom:762.267067pt;}
.y1b_c02132{bottom:781.307067pt;}
.y1a_c02132{bottom:797.547067pt;}
.y19_c02132{bottom:812.987067pt;}
.y18_c02132{bottom:831.467067pt;}
.y16_c02132{bottom:839.307067pt;}
.y15_c02132{bottom:839.626667pt;}
.y17_c02132{bottom:839.867067pt;}
.y13_c02132{bottom:856.187067pt;}
.y12_c02132{bottom:856.507067pt;}
.y14_c02132{bottom:856.747067pt;}
.y11_c02132{bottom:873.387067pt;}
.yf_c02132{bottom:889.867067pt;}
.ye_c02132{bottom:890.187067pt;}
.y10_c02132{bottom:890.427067pt;}
.yd_c02132{bottom:908.587067pt;}
.yc_c02132{bottom:925.147067pt;}
.yb_c02132{bottom:925.467467pt;}
.ya_c02132{bottom:943.547067pt;}
.y9_c02132{bottom:943.867467pt;}
.y8_c02132{bottom:961.947067pt;}
.y7_c02132{bottom:962.267067pt;}
.y6_c02132{bottom:981.307067pt;}
.y5_c02132{bottom:997.547067pt;}
.y4_c02132{bottom:1012.987067pt;}
.y1_c02132{bottom:1060.587067pt;}
.h9_c02132{height:9.379219pt;}
.hb_c02132{height:37.343906pt;}
.h6_c02132{height:42.117188pt;}
.h3_c02132{height:42.632812pt;}
.h10_c02132{height:43.076654pt;}
.hd_c02132{height:43.077188pt;}
.he_c02132{height:43.077721pt;}
.hc_c02132{height:52.012031pt;}
.h7_c02132{height:54.252031pt;}
.h5_c02132{height:54.572031pt;}
.h8_c02132{height:55.532031pt;}
.ha_c02132{height:55.532565pt;}
.h4_c02132{height:55.852031pt;}
.h2_c02132{height:56.156250pt;}
.h1_c02132{height:56.843750pt;}
.hf_c02132{height:70.597187pt;}
.h0_c02132{height:1122.666667pt;}
.w1_c02132{width:793.333333pt;}
.w0_c02132{width:793.626667pt;}
.x0_c02132{left:0.000000pt;}
.x1_c02132{left:113.440000pt;}
.x9_c02132{left:119.600000pt;}
.x3_c02132{left:120.560000pt;}
.x4_c02132{left:127.920000pt;}
.x5_c02132{left:146.720000pt;}
.x6_c02132{left:196.160000pt;}
.xb_c02132{left:358.560000pt;}
.xa_c02132{left:367.040000pt;}
.x2_c02132{left:388.960000pt;}
.x7_c02132{left:541.040000pt;}
.x8_c02132{left:663.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_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_793be6b02357fae6742b7c0c.woff2')format("woff");}.ff1_c02133{font-family:ff1_c02133;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02133;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v7_c02133{vertical-align:-3.960000px;}
.v6_c02133{vertical-align:-2.520000px;}
.v1_c02133{vertical-align:-1.440000px;}
.v0_c02133{vertical-align:0.000000px;}
.v2_c02133{vertical-align:1.080000px;}
.v4_c02133{vertical-align:2.160000px;}
.v3_c02133{vertical-align:3.960000px;}
.v5_c02133{vertical-align:32.400000px;}
.ls31_c02133{letter-spacing:-0.178200px;}
.ls30_c02133{letter-spacing:-0.102600px;}
.ls2e_c02133{letter-spacing:-0.086400px;}
.ls29_c02133{letter-spacing:-0.086184px;}
.ls25_c02133{letter-spacing:-0.043200px;}
.ls27_c02133{letter-spacing:-0.019152px;}
.ls2f_c02133{letter-spacing:-0.016200px;}
.ls22_c02133{letter-spacing:-0.014400px;}
.ls26_c02133{letter-spacing:-0.010800px;}
.ls2c_c02133{letter-spacing:-0.009576px;}
.ls2d_c02133{letter-spacing:-0.004788px;}
.ls23_c02133{letter-spacing:0.000000px;}
.ls1a_c02133{letter-spacing:0.005400px;}
.ls19_c02133{letter-spacing:0.006588px;}
.ls34_c02133{letter-spacing:0.007200px;}
.ls0_c02133{letter-spacing:0.010800px;}
.ls3_c02133{letter-spacing:0.012636px;}
.ls1d_c02133{letter-spacing:0.016200px;}
.ls17_c02133{letter-spacing:0.019152px;}
.ls1c_c02133{letter-spacing:0.027000px;}
.ls2_c02133{letter-spacing:0.028728px;}
.ls4_c02133{letter-spacing:0.032400px;}
.ls12_c02133{letter-spacing:0.037800px;}
.ls1_c02133{letter-spacing:0.043092px;}
.ls5_c02133{letter-spacing:0.043200px;}
.ls11_c02133{letter-spacing:0.052668px;}
.ls1e_c02133{letter-spacing:0.067032px;}
.ls18_c02133{letter-spacing:0.072468px;}
.lse_c02133{letter-spacing:0.076608px;}
.ls10_c02133{letter-spacing:0.081396px;}
.ls8_c02133{letter-spacing:0.092232px;}
.ls1b_c02133{letter-spacing:0.095760px;}
.ls1f_c02133{letter-spacing:0.100548px;}
.ls6_c02133{letter-spacing:0.110124px;}
.ls13_c02133{letter-spacing:0.114912px;}
.ls15_c02133{letter-spacing:0.124488px;}
.ls16_c02133{letter-spacing:0.134064px;}
.ls14_c02133{letter-spacing:0.138852px;}
.ls24_c02133{letter-spacing:0.151200px;}
.ls7_c02133{letter-spacing:0.158112px;}
.lsf_c02133{letter-spacing:0.162792px;}
.ls28_c02133{letter-spacing:0.167580px;}
.ls2a_c02133{letter-spacing:0.177876px;}
.lsb_c02133{letter-spacing:0.181944px;}
.lsa_c02133{letter-spacing:0.205884px;}
.ls32_c02133{letter-spacing:0.268128px;}
.ls20_c02133{letter-spacing:111.960000px;}
.ls21_c02133{letter-spacing:112.680000px;}
.ls33_c02133{letter-spacing:143.461800px;}
.ls2b_c02133{letter-spacing:143.818200px;}
.ls35_c02133{letter-spacing:144.180000px;}
.lsd_c02133{letter-spacing:153.538200px;}
.ls9_c02133{letter-spacing:197.910000px;}
.lsc_c02133{letter-spacing:199.978200px;}
.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;}
}
.ws2_c02133{word-spacing:-16.628112px;}
.ws1_c02133{word-spacing:-16.476588px;}
.ws8_c02133{word-spacing:-0.296856px;}
.ws7_c02133{word-spacing:-0.272916px;}
.wsa_c02133{word-spacing:-0.253764px;}
.wse_c02133{word-spacing:-0.229824px;}
.ws10_c02133{word-spacing:-0.225036px;}
.wsf_c02133{word-spacing:-0.215460px;}
.wsd_c02133{word-spacing:-0.205884px;}
.ws21_c02133{word-spacing:-0.191520px;}
.ws1a_c02133{word-spacing:-0.189000px;}
.ws14_c02133{word-spacing:-0.186732px;}
.ws11_c02133{word-spacing:-0.172368px;}
.wsc_c02133{word-spacing:-0.119700px;}
.ws12_c02133{word-spacing:-0.110124px;}
.ws6_c02133{word-spacing:-0.101088px;}
.ws22_c02133{word-spacing:-0.100800px;}
.wsb_c02133{word-spacing:-0.081396px;}
.ws24_c02133{word-spacing:-0.007200px;}
.ws5_c02133{word-spacing:0.000000px;}
.ws4_c02133{word-spacing:0.014400px;}
.ws13_c02133{word-spacing:0.019764px;}
.ws15_c02133{word-spacing:0.145800px;}
.ws16_c02133{word-spacing:0.151200px;}
.ws18_c02133{word-spacing:0.162000px;}
.ws19_c02133{word-spacing:0.194400px;}
.ws17_c02133{word-spacing:0.264600px;}
.ws1b_c02133{word-spacing:0.280800px;}
.ws1c_c02133{word-spacing:0.536256px;}
.ws1d_c02133{word-spacing:0.550620px;}
.ws1e_c02133{word-spacing:2.724372px;}
.ws20_c02133{word-spacing:2.748312px;}
.ws1f_c02133{word-spacing:2.762676px;}
.ws3_c02133{word-spacing:90.649440px;}
.ws0_c02133{word-spacing:101.089440px;}
.ws23_c02133{word-spacing:238.096800px;}
.ws9_c02133{word-spacing:239.486184px;}
._37_c02133{margin-left:-84.601800px;}
._1e_c02133{margin-left:-83.329848px;}
._25_c02133{margin-left:-82.094832px;}
._36_c02133{margin-left:-38.158200px;}
._1a_c02133{margin-left:-1.037628px;}
._16_c02133{width:1.441800px;}
._23_c02133{width:43.561800px;}
._e_c02133{width:51.300000px;}
._19_c02133{width:52.646112px;}
._34_c02133{width:60.588000px;}
._11_c02133{width:62.088336px;}
._9_c02133{width:72.604440px;}
._13_c02133{width:73.980000px;}
._a_c02133{width:76.230180px;}
._35_c02133{width:78.264000px;}
._22_c02133{width:79.296120px;}
._14_c02133{width:81.540000px;}
._2_c02133{width:83.034000px;}
._b_c02133{width:85.118400px;}
._1_c02133{width:88.221600px;}
._3a_c02133{width:89.424000px;}
._39_c02133{width:91.533672px;}
._15_c02133{width:93.011688px;}
._c_c02133{width:98.438400px;}
._1d_c02133{width:99.700056px;}
._f_c02133{width:101.599380px;}
._1f_c02133{width:103.179420px;}
._20_c02133{width:104.878728px;}
._1b_c02133{width:105.900804px;}
._3c_c02133{width:107.400168px;}
._5_c02133{width:111.178944px;}
._4_c02133{width:113.580000px;}
._d_c02133{width:116.424000px;}
._3_c02133{width:118.980000px;}
._3b_c02133{width:120.346920px;}
._6_c02133{width:123.216120px;}
._12_c02133{width:126.097200px;}
._24_c02133{width:127.470924px;}
._3d_c02133{width:128.927016px;}
._10_c02133{width:131.251104px;}
._26_c02133{width:135.409428px;}
._38_c02133{width:142.626384px;}
._17_c02133{width:143.820000px;}
._8_c02133{width:146.147688px;}
._1c_c02133{width:148.748796px;}
._21_c02133{width:155.954448px;}
._7_c02133{width:166.555404px;}
._0_c02133{width:194.400000px;}
._33_c02133{width:196.828560px;}
._18_c02133{width:200.071008px;}
._32_c02133{width:203.036400px;}
._2a_c02133{width:216.180000px;}
._28_c02133{width:287.726112px;}
._2c_c02133{width:303.170400px;}
._2b_c02133{width:310.104000px;}
._29_c02133{width:324.775800px;}
._2e_c02133{width:382.210200px;}
._30_c02133{width:451.368000px;}
._2f_c02133{width:482.234400px;}
._2d_c02133{width:483.924600px;}
._27_c02133{width:562.852800px;}
._31_c02133{width:799.695000px;}
.fc0_c02133{color:rgb(0,0,0);}
.fs5_c02133{font-size:11.880000px;}
.fs3_c02133{font-size:42.120000px;}
.fs2_c02133{font-size:47.880000px;}
.fs1_c02133{font-size:54.000000px;}
.fs4_c02133{font-size:65.880000px;}
.fs0_c02133{font-size:72.000000px;}
.y0_c02133{bottom:0.000000px;}
.y3_c02133{bottom:57.360450px;}
.y2_c02133{bottom:78.060450px;}
.y63_c02133{bottom:113.430450px;}
.y61_c02133{bottom:119.100450px;}
.y60_c02133{bottom:119.460000px;}
.y62_c02133{bottom:119.460450px;}
.y5e_c02133{bottom:138.090450px;}
.y5d_c02133{bottom:138.450150px;}
.y5f_c02133{bottom:138.450450px;}
.y5b_c02133{bottom:157.080450px;}
.y5a_c02133{bottom:157.440150px;}
.y5c_c02133{bottom:157.440600px;}
.y58_c02133{bottom:176.070450px;}
.y57_c02133{bottom:176.430000px;}
.y59_c02133{bottom:176.430600px;}
.y56_c02133{bottom:194.970450px;}
.y55_c02133{bottom:195.420450px;}
.y54_c02133{bottom:214.320450px;}
.y53_c02133{bottom:232.950600px;}
.y52_c02133{bottom:233.310450px;}
.y51_c02133{bottom:254.730450px;}
.y50_c02133{bottom:273.000450px;}
.y4f_c02133{bottom:290.370450px;}
.y4e_c02133{bottom:308.280450px;}
.y4d_c02133{bottom:313.950450px;}
.y4c_c02133{bottom:314.310450px;}
.y4b_c02133{bottom:335.010450px;}
.y4a_c02133{bottom:353.640450px;}
.y49_c02133{bottom:354.000900px;}
.y48_c02133{bottom:374.340450px;}
.y47_c02133{bottom:374.700900px;}
.y46_c02133{bottom:395.040600px;}
.y45_c02133{bottom:395.400450px;}
.y44_c02133{bottom:416.730450px;}
.y43_c02133{bottom:435.090600px;}
.y42_c02133{bottom:452.460600px;}
.y41_c02133{bottom:472.530900px;}
.y40_c02133{bottom:488.100450px;}
.y3f_c02133{bottom:503.580900px;}
.y3e_c02133{bottom:519.150450px;}
.y3d_c02133{bottom:534.540099px;}
.y3c_c02133{bottom:548.400162px;}
.y3b_c02133{bottom:562.170450px;}
.y3a_c02133{bottom:578.280450px;}
.y39_c02133{bottom:593.850450px;}
.y38_c02133{bottom:609.330450px;}
.y37_c02133{bottom:624.900450px;}
.y36_c02133{bottom:640.380450px;}
.y35_c02133{bottom:655.950450px;}
.y34_c02133{bottom:671.430450px;}
.y33_c02133{bottom:687.000450px;}
.y32_c02133{bottom:704.640450px;}
.y30_c02133{bottom:704.730450px;}
.y31_c02133{bottom:720.660450px;}
.y2f_c02133{bottom:737.580450px;}
.y2e_c02133{bottom:755.850000px;}
.y2d_c02133{bottom:771.330450px;}
.y2b_c02133{bottom:786.900450px;}
.y2a_c02133{bottom:787.260000px;}
.y2c_c02133{bottom:787.530450px;}
.y28_c02133{bottom:805.800450px;}
.y27_c02133{bottom:806.250450px;}
.y29_c02133{bottom:806.520450px;}
.y25_c02133{bottom:824.790600px;}
.y24_c02133{bottom:825.150000px;}
.y26_c02133{bottom:825.420450px;}
.y22_c02133{bottom:843.780450px;}
.y21_c02133{bottom:844.140000px;}
.y23_c02133{bottom:844.410450px;}
.y1f_c02133{bottom:862.770450px;}
.y1e_c02133{bottom:863.130450px;}
.y20_c02133{bottom:863.400450px;}
.y1d_c02133{bottom:882.120450px;}
.y1b_c02133{bottom:900.750450px;}
.y1a_c02133{bottom:901.110900px;}
.y1c_c02133{bottom:901.380450px;}
.y18_c02133{bottom:921.450450px;}
.y17_c02133{bottom:921.810450px;}
.y19_c02133{bottom:922.080450px;}
.y16_c02133{bottom:942.510450px;}
.y14_c02133{bottom:961.050450px;}
.y13_c02133{bottom:961.410450px;}
.y15_c02133{bottom:961.680450px;}
.y12_c02133{bottom:982.110450px;}
.y10_c02133{bottom:1000.740450px;}
.y11_c02133{bottom:1001.100450px;}
.yf_c02133{bottom:1001.100900px;}
.yd_c02133{bottom:1021.440450px;}
.ye_c02133{bottom:1021.800450px;}
.yc_c02133{bottom:1021.800900px;}
.yb_c02133{bottom:1042.140450px;}
.ya_c02133{bottom:1042.500450px;}
.y9_c02133{bottom:1063.200450px;}
.y8_c02133{bottom:1081.830450px;}
.y7_c02133{bottom:1082.190450px;}
.y6_c02133{bottom:1102.890450px;}
.y5_c02133{bottom:1121.880450px;}
.y4_c02133{bottom:1139.250450px;}
.y1_c02133{bottom:1193.160450px;}
.h12_c02133{height:10.424004px;}
.he_c02133{height:42.011895px;}
.h8_c02133{height:47.381836px;}
.h3_c02133{height:47.961914px;}
.h6_c02133{height:48.461836px;}
.hd_c02133{height:58.513535px;}
.h9_c02133{height:61.033535px;}
.ha_c02133{height:61.034135px;}
.h4_c02133{height:61.393535px;}
.h13_c02133{height:61.394135px;}
.h10_c02133{height:62.472935px;}
.h5_c02133{height:62.473535px;}
.h11_c02133{height:62.474135px;}
.hc_c02133{height:62.832935px;}
.h7_c02133{height:62.833535px;}
.hb_c02133{height:62.834135px;}
.h2_c02133{height:63.175781px;}
.h1_c02133{height:63.949219px;}
.hf_c02133{height:79.781836px;}
.h0_c02133{height:1263.000000px;}
.w1_c02133{width:892.500000px;}
.w0_c02133{width:892.830000px;}
.x0_c02133{left:0.000000px;}
.x1_c02133{left:127.620000px;}
.xa_c02133{left:134.550000px;}
.x3_c02133{left:135.630000px;}
.x5_c02133{left:141.480000px;}
.x4_c02133{left:143.910000px;}
.x6_c02133{left:165.060000px;}
.x7_c02133{left:220.590000px;}
.xb_c02133{left:380.700000px;}
.xc_c02133{left:403.740000px;}
.x2_c02133{left:437.580000px;}
.x8_c02133{left:556.920000px;}
.x9_c02133{left:610.290000px;}
.xd_c02133{left:746.820450px;}
@media print{
.v7_c02133{vertical-align:-3.520000pt;}
.v6_c02133{vertical-align:-2.240000pt;}
.v1_c02133{vertical-align:-1.280000pt;}
.v0_c02133{vertical-align:0.000000pt;}
.v2_c02133{vertical-align:0.960000pt;}
.v4_c02133{vertical-align:1.920000pt;}
.v3_c02133{vertical-align:3.520000pt;}
.v5_c02133{vertical-align:28.800000pt;}
.ls31_c02133{letter-spacing:-0.158400pt;}
.ls30_c02133{letter-spacing:-0.091200pt;}
.ls2e_c02133{letter-spacing:-0.076800pt;}
.ls29_c02133{letter-spacing:-0.076608pt;}
.ls25_c02133{letter-spacing:-0.038400pt;}
.ls27_c02133{letter-spacing:-0.017024pt;}
.ls2f_c02133{letter-spacing:-0.014400pt;}
.ls22_c02133{letter-spacing:-0.012800pt;}
.ls26_c02133{letter-spacing:-0.009600pt;}
.ls2c_c02133{letter-spacing:-0.008512pt;}
.ls2d_c02133{letter-spacing:-0.004256pt;}
.ls23_c02133{letter-spacing:0.000000pt;}
.ls1a_c02133{letter-spacing:0.004800pt;}
.ls19_c02133{letter-spacing:0.005856pt;}
.ls34_c02133{letter-spacing:0.006400pt;}
.ls0_c02133{letter-spacing:0.009600pt;}
.ls3_c02133{letter-spacing:0.011232pt;}
.ls1d_c02133{letter-spacing:0.014400pt;}
.ls17_c02133{letter-spacing:0.017024pt;}
.ls1c_c02133{letter-spacing:0.024000pt;}
.ls2_c02133{letter-spacing:0.025536pt;}
.ls4_c02133{letter-spacing:0.028800pt;}
.ls12_c02133{letter-spacing:0.033600pt;}
.ls1_c02133{letter-spacing:0.038304pt;}
.ls5_c02133{letter-spacing:0.038400pt;}
.ls11_c02133{letter-spacing:0.046816pt;}
.ls1e_c02133{letter-spacing:0.059584pt;}
.ls18_c02133{letter-spacing:0.064416pt;}
.lse_c02133{letter-spacing:0.068096pt;}
.ls10_c02133{letter-spacing:0.072352pt;}
.ls8_c02133{letter-spacing:0.081984pt;}
.ls1b_c02133{letter-spacing:0.085120pt;}
.ls1f_c02133{letter-spacing:0.089376pt;}
.ls6_c02133{letter-spacing:0.097888pt;}
.ls13_c02133{letter-spacing:0.102144pt;}
.ls15_c02133{letter-spacing:0.110656pt;}
.ls16_c02133{letter-spacing:0.119168pt;}
.ls14_c02133{letter-spacing:0.123424pt;}
.ls24_c02133{letter-spacing:0.134400pt;}
.ls7_c02133{letter-spacing:0.140544pt;}
.lsf_c02133{letter-spacing:0.144704pt;}
.ls28_c02133{letter-spacing:0.148960pt;}
.ls2a_c02133{letter-spacing:0.158112pt;}
.lsb_c02133{letter-spacing:0.161728pt;}
.lsa_c02133{letter-spacing:0.183008pt;}
.ls32_c02133{letter-spacing:0.238336pt;}
.ls20_c02133{letter-spacing:99.520000pt;}
.ls21_c02133{letter-spacing:100.160000pt;}
.ls33_c02133{letter-spacing:127.521600pt;}
.ls2b_c02133{letter-spacing:127.838400pt;}
.ls35_c02133{letter-spacing:128.160000pt;}
.lsd_c02133{letter-spacing:136.478400pt;}
.ls9_c02133{letter-spacing:175.920000pt;}
.lsc_c02133{letter-spacing:177.758400pt;}
.ws2_c02133{word-spacing:-14.780544pt;}
.ws1_c02133{word-spacing:-14.645856pt;}
.ws8_c02133{word-spacing:-0.263872pt;}
.ws7_c02133{word-spacing:-0.242592pt;}
.wsa_c02133{word-spacing:-0.225568pt;}
.wse_c02133{word-spacing:-0.204288pt;}
.ws10_c02133{word-spacing:-0.200032pt;}
.wsf_c02133{word-spacing:-0.191520pt;}
.wsd_c02133{word-spacing:-0.183008pt;}
.ws21_c02133{word-spacing:-0.170240pt;}
.ws1a_c02133{word-spacing:-0.168000pt;}
.ws14_c02133{word-spacing:-0.165984pt;}
.ws11_c02133{word-spacing:-0.153216pt;}
.wsc_c02133{word-spacing:-0.106400pt;}
.ws12_c02133{word-spacing:-0.097888pt;}
.ws6_c02133{word-spacing:-0.089856pt;}
.ws22_c02133{word-spacing:-0.089600pt;}
.wsb_c02133{word-spacing:-0.072352pt;}
.ws24_c02133{word-spacing:-0.006400pt;}
.ws5_c02133{word-spacing:0.000000pt;}
.ws4_c02133{word-spacing:0.012800pt;}
.ws13_c02133{word-spacing:0.017568pt;}
.ws15_c02133{word-spacing:0.129600pt;}
.ws16_c02133{word-spacing:0.134400pt;}
.ws18_c02133{word-spacing:0.144000pt;}
.ws19_c02133{word-spacing:0.172800pt;}
.ws17_c02133{word-spacing:0.235200pt;}
.ws1b_c02133{word-spacing:0.249600pt;}
.ws1c_c02133{word-spacing:0.476672pt;}
.ws1d_c02133{word-spacing:0.489440pt;}
.ws1e_c02133{word-spacing:2.421664pt;}
.ws20_c02133{word-spacing:2.442944pt;}
.ws1f_c02133{word-spacing:2.455712pt;}
.ws3_c02133{word-spacing:80.577280pt;}
.ws0_c02133{word-spacing:89.857280pt;}
.ws23_c02133{word-spacing:211.641600pt;}
.ws9_c02133{word-spacing:212.876608pt;}
._37_c02133{margin-left:-75.201600pt;}
._1e_c02133{margin-left:-74.070976pt;}
._25_c02133{margin-left:-72.973184pt;}
._36_c02133{margin-left:-33.918400pt;}
._1a_c02133{margin-left:-0.922336pt;}
._16_c02133{width:1.281600pt;}
._23_c02133{width:38.721600pt;}
._e_c02133{width:45.600000pt;}
._19_c02133{width:46.796544pt;}
._34_c02133{width:53.856000pt;}
._11_c02133{width:55.189632pt;}
._9_c02133{width:64.537280pt;}
._13_c02133{width:65.760000pt;}
._a_c02133{width:67.760160pt;}
._35_c02133{width:69.568000pt;}
._22_c02133{width:70.485440pt;}
._14_c02133{width:72.480000pt;}
._2_c02133{width:73.808000pt;}
._b_c02133{width:75.660800pt;}
._1_c02133{width:78.419200pt;}
._3a_c02133{width:79.488000pt;}
._39_c02133{width:81.363264pt;}
._15_c02133{width:82.677056pt;}
._c_c02133{width:87.500800pt;}
._1d_c02133{width:88.622272pt;}
._f_c02133{width:90.310560pt;}
._1f_c02133{width:91.715040pt;}
._20_c02133{width:93.225536pt;}
._1b_c02133{width:94.134048pt;}
._3c_c02133{width:95.466816pt;}
._5_c02133{width:98.825728pt;}
._4_c02133{width:100.960000pt;}
._d_c02133{width:103.488000pt;}
._3_c02133{width:105.760000pt;}
._3b_c02133{width:106.975040pt;}
._6_c02133{width:109.525440pt;}
._12_c02133{width:112.086400pt;}
._24_c02133{width:113.307488pt;}
._3d_c02133{width:114.601792pt;}
._10_c02133{width:116.667648pt;}
._26_c02133{width:120.363936pt;}
._38_c02133{width:126.779008pt;}
._17_c02133{width:127.840000pt;}
._8_c02133{width:129.909056pt;}
._1c_c02133{width:132.221152pt;}
._21_c02133{width:138.626176pt;}
._7_c02133{width:148.049248pt;}
._0_c02133{width:172.800000pt;}
._33_c02133{width:174.958720pt;}
._18_c02133{width:177.840896pt;}
._32_c02133{width:180.476800pt;}
._2a_c02133{width:192.160000pt;}
._28_c02133{width:255.756544pt;}
._2c_c02133{width:269.484800pt;}
._2b_c02133{width:275.648000pt;}
._29_c02133{width:288.689600pt;}
._2e_c02133{width:339.742400pt;}
._30_c02133{width:401.216000pt;}
._2f_c02133{width:428.652800pt;}
._2d_c02133{width:430.155200pt;}
._27_c02133{width:500.313600pt;}
._31_c02133{width:710.840000pt;}
.fs5_c02133{font-size:10.560000pt;}
.fs3_c02133{font-size:37.440000pt;}
.fs2_c02133{font-size:42.560000pt;}
.fs1_c02133{font-size:48.000000pt;}
.fs4_c02133{font-size:58.560000pt;}
.fs0_c02133{font-size:64.000000pt;}
.y0_c02133{bottom:0.000000pt;}
.y3_c02133{bottom:50.987067pt;}
.y2_c02133{bottom:69.387067pt;}
.y63_c02133{bottom:100.827067pt;}
.y61_c02133{bottom:105.867067pt;}
.y60_c02133{bottom:106.186667pt;}
.y62_c02133{bottom:106.187067pt;}
.y5e_c02133{bottom:122.747067pt;}
.y5d_c02133{bottom:123.066800pt;}
.y5f_c02133{bottom:123.067067pt;}
.y5b_c02133{bottom:139.627067pt;}
.y5a_c02133{bottom:139.946800pt;}
.y5c_c02133{bottom:139.947200pt;}
.y58_c02133{bottom:156.507067pt;}
.y57_c02133{bottom:156.826667pt;}
.y59_c02133{bottom:156.827200pt;}
.y56_c02133{bottom:173.307067pt;}
.y55_c02133{bottom:173.707067pt;}
.y54_c02133{bottom:190.507067pt;}
.y53_c02133{bottom:207.067200pt;}
.y52_c02133{bottom:207.387067pt;}
.y51_c02133{bottom:226.427067pt;}
.y50_c02133{bottom:242.667067pt;}
.y4f_c02133{bottom:258.107067pt;}
.y4e_c02133{bottom:274.027067pt;}
.y4d_c02133{bottom:279.067067pt;}
.y4c_c02133{bottom:279.387067pt;}
.y4b_c02133{bottom:297.787067pt;}
.y4a_c02133{bottom:314.347067pt;}
.y49_c02133{bottom:314.667467pt;}
.y48_c02133{bottom:332.747067pt;}
.y47_c02133{bottom:333.067467pt;}
.y46_c02133{bottom:351.147200pt;}
.y45_c02133{bottom:351.467067pt;}
.y44_c02133{bottom:370.427067pt;}
.y43_c02133{bottom:386.747200pt;}
.y42_c02133{bottom:402.187200pt;}
.y41_c02133{bottom:420.027467pt;}
.y40_c02133{bottom:433.867067pt;}
.y3f_c02133{bottom:447.627467pt;}
.y3e_c02133{bottom:461.467067pt;}
.y3d_c02133{bottom:475.146755pt;}
.y3c_c02133{bottom:487.466811pt;}
.y3b_c02133{bottom:499.707067pt;}
.y3a_c02133{bottom:514.027067pt;}
.y39_c02133{bottom:527.867067pt;}
.y38_c02133{bottom:541.627067pt;}
.y37_c02133{bottom:555.467067pt;}
.y36_c02133{bottom:569.227067pt;}
.y35_c02133{bottom:583.067067pt;}
.y34_c02133{bottom:596.827067pt;}
.y33_c02133{bottom:610.667067pt;}
.y32_c02133{bottom:626.347067pt;}
.y30_c02133{bottom:626.427067pt;}
.y31_c02133{bottom:640.587067pt;}
.y2f_c02133{bottom:655.627067pt;}
.y2e_c02133{bottom:671.866667pt;}
.y2d_c02133{bottom:685.627067pt;}
.y2b_c02133{bottom:699.467067pt;}
.y2a_c02133{bottom:699.786667pt;}
.y2c_c02133{bottom:700.027067pt;}
.y28_c02133{bottom:716.267067pt;}
.y27_c02133{bottom:716.667067pt;}
.y29_c02133{bottom:716.907067pt;}
.y25_c02133{bottom:733.147200pt;}
.y24_c02133{bottom:733.466667pt;}
.y26_c02133{bottom:733.707067pt;}
.y22_c02133{bottom:750.027067pt;}
.y21_c02133{bottom:750.346667pt;}
.y23_c02133{bottom:750.587067pt;}
.y1f_c02133{bottom:766.907067pt;}
.y1e_c02133{bottom:767.227067pt;}
.y20_c02133{bottom:767.467067pt;}
.y1d_c02133{bottom:784.107067pt;}
.y1b_c02133{bottom:800.667067pt;}
.y1a_c02133{bottom:800.987467pt;}
.y1c_c02133{bottom:801.227067pt;}
.y18_c02133{bottom:819.067067pt;}
.y17_c02133{bottom:819.387067pt;}
.y19_c02133{bottom:819.627067pt;}
.y16_c02133{bottom:837.787067pt;}
.y14_c02133{bottom:854.267067pt;}
.y13_c02133{bottom:854.587067pt;}
.y15_c02133{bottom:854.827067pt;}
.y12_c02133{bottom:872.987067pt;}
.y10_c02133{bottom:889.547067pt;}
.y11_c02133{bottom:889.867067pt;}
.yf_c02133{bottom:889.867467pt;}
.yd_c02133{bottom:907.947067pt;}
.ye_c02133{bottom:908.267067pt;}
.yc_c02133{bottom:908.267467pt;}
.yb_c02133{bottom:926.347067pt;}
.ya_c02133{bottom:926.667067pt;}
.y9_c02133{bottom:945.067067pt;}
.y8_c02133{bottom:961.627067pt;}
.y7_c02133{bottom:961.947067pt;}
.y6_c02133{bottom:980.347067pt;}
.y5_c02133{bottom:997.227067pt;}
.y4_c02133{bottom:1012.667067pt;}
.y1_c02133{bottom:1060.587067pt;}
.h12_c02133{height:9.265781pt;}
.he_c02133{height:37.343906pt;}
.h8_c02133{height:42.117188pt;}
.h3_c02133{height:42.632812pt;}
.h6_c02133{height:43.077187pt;}
.hd_c02133{height:52.012031pt;}
.h9_c02133{height:54.252031pt;}
.ha_c02133{height:54.252565pt;}
.h4_c02133{height:54.572031pt;}
.h13_c02133{height:54.572565pt;}
.h10_c02133{height:55.531498pt;}
.h5_c02133{height:55.532031pt;}
.h11_c02133{height:55.532565pt;}
.hc_c02133{height:55.851498pt;}
.h7_c02133{height:55.852031pt;}
.hb_c02133{height:55.852565pt;}
.h2_c02133{height:56.156250pt;}
.h1_c02133{height:56.843750pt;}
.hf_c02133{height:70.917188pt;}
.h0_c02133{height:1122.666667pt;}
.w1_c02133{width:793.333333pt;}
.w0_c02133{width:793.626667pt;}
.x0_c02133{left:0.000000pt;}
.x1_c02133{left:113.440000pt;}
.xa_c02133{left:119.600000pt;}
.x3_c02133{left:120.560000pt;}
.x5_c02133{left:125.760000pt;}
.x4_c02133{left:127.920000pt;}
.x6_c02133{left:146.720000pt;}
.x7_c02133{left:196.080000pt;}
.xb_c02133{left:338.400000pt;}
.xc_c02133{left:358.880000pt;}
.x2_c02133{left:388.960000pt;}
.x8_c02133{left:495.040000pt;}
.x9_c02133{left:542.480000pt;}
.xd_c02133{left:663.840400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f58dd97b69862c981bed7780.woff2')format("woff");}.ff1_c02134{font-family:ff1_c02134;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02134;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02134{vertical-align:-3.960000px;}
.v2_c02134{vertical-align:-2.520000px;}
.v1_c02134{vertical-align:-1.440000px;}
.v0_c02134{vertical-align:0.000000px;}
.v6_c02134{vertical-align:1.080000px;}
.v4_c02134{vertical-align:2.520000px;}
.v5_c02134{vertical-align:3.960000px;}
.v7_c02134{vertical-align:32.040000px;}
.ls2e_c02134{letter-spacing:-0.178200px;}
.ls2b_c02134{letter-spacing:-0.102600px;}
.ls2d_c02134{letter-spacing:-0.086400px;}
.ls27_c02134{letter-spacing:-0.086184px;}
.ls23_c02134{letter-spacing:-0.043200px;}
.ls25_c02134{letter-spacing:-0.019152px;}
.ls2c_c02134{letter-spacing:-0.016200px;}
.ls20_c02134{letter-spacing:-0.014400px;}
.ls24_c02134{letter-spacing:-0.010800px;}
.ls29_c02134{letter-spacing:-0.009576px;}
.ls2a_c02134{letter-spacing:-0.004788px;}
.ls21_c02134{letter-spacing:0.000000px;}
.ls13_c02134{letter-spacing:0.005400px;}
.ls12_c02134{letter-spacing:0.006588px;}
.ls0_c02134{letter-spacing:0.010800px;}
.ls3_c02134{letter-spacing:0.012636px;}
.ls15_c02134{letter-spacing:0.016200px;}
.ls10_c02134{letter-spacing:0.019152px;}
.ls30_c02134{letter-spacing:0.021600px;}
.ls16_c02134{letter-spacing:0.027000px;}
.ls2_c02134{letter-spacing:0.028728px;}
.ls4_c02134{letter-spacing:0.032400px;}
.lsa_c02134{letter-spacing:0.037800px;}
.ls1_c02134{letter-spacing:0.043092px;}
.ls9_c02134{letter-spacing:0.043200px;}
.ls17_c02134{letter-spacing:0.067032px;}
.ls7_c02134{letter-spacing:0.076608px;}
.lsd_c02134{letter-spacing:0.081396px;}
.ls11_c02134{letter-spacing:0.092232px;}
.ls14_c02134{letter-spacing:0.095760px;}
.ls18_c02134{letter-spacing:0.100548px;}
.ls1a_c02134{letter-spacing:0.110124px;}
.lse_c02134{letter-spacing:0.124488px;}
.lsf_c02134{letter-spacing:0.134064px;}
.ls22_c02134{letter-spacing:0.151200px;}
.ls5_c02134{letter-spacing:0.158112px;}
.lsc_c02134{letter-spacing:0.162792px;}
.ls26_c02134{letter-spacing:0.167580px;}
.ls31_c02134{letter-spacing:0.177876px;}
.ls1c_c02134{letter-spacing:0.178200px;}
.ls8_c02134{letter-spacing:0.181944px;}
.ls1b_c02134{letter-spacing:0.205884px;}
.ls2f_c02134{letter-spacing:0.268128px;}
.ls1d_c02134{letter-spacing:104.943600px;}
.ls6_c02134{letter-spacing:112.680000px;}
.ls19_c02134{letter-spacing:114.120000px;}
.ls28_c02134{letter-spacing:144.180000px;}
.ls32_c02134{letter-spacing:145.621800px;}
.ls1f_c02134{letter-spacing:156.778200px;}
.ls1e_c02134{letter-spacing:199.260000px;}
.lsb_c02134{letter-spacing:200.790000px;}
.sc__c02134{text-shadow:none;}
.sc0_c02134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02134{-webkit-text-stroke:0px transparent;}
.sc0_c02134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02134{word-spacing:-16.628112px;}
.ws2_c02134{word-spacing:-16.476588px;}
.ws3_c02134{word-spacing:-13.500000px;}
.ws1f_c02134{word-spacing:-0.296856px;}
.ws7_c02134{word-spacing:-0.272916px;}
.ws9_c02134{word-spacing:-0.253764px;}
.wsc_c02134{word-spacing:-0.225036px;}
.wsb_c02134{word-spacing:-0.215460px;}
.ws1e_c02134{word-spacing:-0.201600px;}
.ws1d_c02134{word-spacing:-0.191520px;}
.ws14_c02134{word-spacing:-0.189000px;}
.ws10_c02134{word-spacing:-0.186732px;}
.wsd_c02134{word-spacing:-0.172368px;}
.wsf_c02134{word-spacing:-0.119700px;}
.wse_c02134{word-spacing:-0.110124px;}
.ws6_c02134{word-spacing:-0.101088px;}
.wsa_c02134{word-spacing:-0.081396px;}
.ws5_c02134{word-spacing:0.000000px;}
.ws4_c02134{word-spacing:0.014400px;}
.ws11_c02134{word-spacing:0.145800px;}
.ws17_c02134{word-spacing:0.151200px;}
.ws16_c02134{word-spacing:0.162000px;}
.ws13_c02134{word-spacing:0.194400px;}
.ws15_c02134{word-spacing:0.264600px;}
.ws12_c02134{word-spacing:0.280800px;}
.ws18_c02134{word-spacing:0.536256px;}
.ws19_c02134{word-spacing:0.550620px;}
.ws1a_c02134{word-spacing:2.724372px;}
.ws1c_c02134{word-spacing:2.748312px;}
.ws1b_c02134{word-spacing:2.762676px;}
.ws1_c02134{word-spacing:58.969440px;}
.ws8_c02134{word-spacing:156.735000px;}
.ws20_c02134{word-spacing:240.975000px;}
._1a_c02134{margin-left:-1.330056px;}
._28_c02134{width:1.026000px;}
._14_c02134{width:41.482800px;}
._1f_c02134{width:42.903000px;}
._c_c02134{width:50.937552px;}
._31_c02134{width:59.994000px;}
._36_c02134{width:61.706016px;}
._10_c02134{width:63.338256px;}
._f_c02134{width:65.340000px;}
._9_c02134{width:72.244440px;}
._12_c02134{width:75.780000px;}
._a_c02134{width:77.310180px;}
._34_c02134{width:82.324440px;}
._37_c02134{width:83.327004px;}
._2_c02134{width:84.834000px;}
._35_c02134{width:86.288580px;}
._1_c02134{width:88.221600px;}
._d_c02134{width:91.288440px;}
._19_c02134{width:92.304000px;}
._18_c02134{width:94.204296px;}
._b_c02134{width:100.015200px;}
._39_c02134{width:101.588220px;}
._1d_c02134{width:103.702896px;}
._17_c02134{width:104.937588px;}
._21_c02134{width:108.075600px;}
._13_c02134{width:109.234296px;}
._20_c02134{width:111.360168px;}
._6_c02134{width:114.216120px;}
._4_c02134{width:115.380000px;}
._30_c02134{width:117.021600px;}
._5_c02134{width:118.378944px;}
._1c_c02134{width:120.067668px;}
._3_c02134{width:122.220000px;}
._1e_c02134{width:124.306920px;}
._1b_c02134{width:127.802160px;}
._11_c02134{width:129.247020px;}
._22_c02134{width:132.887016px;}
._32_c02134{width:136.012680px;}
._16_c02134{width:144.180000px;}
._15_c02134{width:146.226384px;}
._8_c02134{width:148.667688px;}
._7_c02134{width:152.155404px;}
._38_c02134{width:153.235404px;}
._0_c02134{width:194.400000px;}
._e_c02134{width:200.604168px;}
._2f_c02134{width:203.036400px;}
._33_c02134{width:213.854652px;}
._26_c02134{width:216.180000px;}
._24_c02134{width:287.726112px;}
._2d_c02134{width:303.170400px;}
._27_c02134{width:310.104000px;}
._25_c02134{width:324.775800px;}
._2c_c02134{width:382.210200px;}
._29_c02134{width:451.783800px;}
._2a_c02134{width:482.234400px;}
._2b_c02134{width:483.924600px;}
._23_c02134{width:562.852800px;}
._2e_c02134{width:799.695000px;}
.fc0_c02134{color:rgb(0,0,0);}
.fs5_c02134{font-size:36.000000px;}
.fs3_c02134{font-size:42.120000px;}
.fs2_c02134{font-size:47.880000px;}
.fs1_c02134{font-size:54.000000px;}
.fs4_c02134{font-size:65.880000px;}
.fs0_c02134{font-size:72.000000px;}
.y0_c02134{bottom:0.000000px;}
.y3_c02134{bottom:57.360450px;}
.y2_c02134{bottom:78.060450px;}
.y52_c02134{bottom:121.531215px;}
.y51_c02134{bottom:140.521125px;}
.y50_c02134{bottom:159.420450px;}
.y4f_c02134{bottom:177.780450px;}
.y4e_c02134{bottom:193.260450px;}
.y4d_c02134{bottom:193.710450px;}
.y4c_c02134{bottom:212.250450px;}
.y4b_c02134{bottom:212.610150px;}
.y4a_c02134{bottom:231.240450px;}
.y49_c02134{bottom:231.600000px;}
.y48_c02134{bottom:250.230450px;}
.y47_c02134{bottom:250.590000px;}
.y46_c02134{bottom:269.220450px;}
.y45_c02134{bottom:269.580450px;}
.y44_c02134{bottom:288.570450px;}
.y43_c02134{bottom:307.110450px;}
.y42_c02134{bottom:307.470450px;}
.y41_c02134{bottom:328.890450px;}
.y40_c02134{bottom:347.160450px;}
.y3f_c02134{bottom:364.530450px;}
.y3e_c02134{bottom:384.690450px;}
.y3d_c02134{bottom:400.170900px;}
.y3c_c02134{bottom:415.740450px;}
.y3b_c02134{bottom:431.220450px;}
.y3a_c02134{bottom:431.580450px;}
.y39_c02134{bottom:452.280600px;}
.y38_c02134{bottom:470.910450px;}
.y37_c02134{bottom:471.270600px;}
.y36_c02134{bottom:492.690600px;}
.y35_c02134{bottom:510.960600px;}
.y34_c02134{bottom:528.330450px;}
.y33_c02134{bottom:547.680450px;}
.y32_c02134{bottom:558.030450px;}
.y31_c02134{bottom:568.380450px;}
.y30_c02134{bottom:578.730450px;}
.y2f_c02134{bottom:589.080450px;}
.y2e_c02134{bottom:599.430450px;}
.y2d_c02134{bottom:610.410099px;}
.y2c_c02134{bottom:624.270162px;}
.y2b_c02134{bottom:638.040450px;}
.y2a_c02134{bottom:654.240450px;}
.y29_c02134{bottom:669.720450px;}
.y28_c02134{bottom:685.290450px;}
.y27_c02134{bottom:700.770450px;}
.y26_c02134{bottom:716.340450px;}
.y25_c02134{bottom:731.820450px;}
.y24_c02134{bottom:747.390450px;}
.y23_c02134{bottom:762.870450px;}
.y22_c02134{bottom:780.510450px;}
.y20_c02134{bottom:780.600450px;}
.y21_c02134{bottom:796.620450px;}
.y1f_c02134{bottom:813.450450px;}
.y1e_c02134{bottom:831.629811px;}
.y1d_c02134{bottom:845.400099px;}
.y1c_c02134{bottom:859.170387px;}
.y1b_c02134{bottom:873.030450px;}
.y1a_c02134{bottom:886.890450px;}
.y19_c02134{bottom:887.250000px;}
.y18_c02134{bottom:905.880450px;}
.y17_c02134{bottom:906.240000px;}
.y16_c02134{bottom:924.870450px;}
.y15_c02134{bottom:925.230000px;}
.y14_c02134{bottom:943.860450px;}
.y13_c02134{bottom:944.220000px;}
.y12_c02134{bottom:962.760450px;}
.y11_c02134{bottom:963.210450px;}
.y10_c02134{bottom:982.110450px;}
.yf_c02134{bottom:1000.740450px;}
.ye_c02134{bottom:1001.100450px;}
.yd_c02134{bottom:1021.800450px;}
.yc_c02134{bottom:1040.430450px;}
.yb_c02134{bottom:1040.790900px;}
.ya_c02134{bottom:1061.130450px;}
.y9_c02134{bottom:1061.490900px;}
.y8_c02134{bottom:1081.830450px;}
.y7_c02134{bottom:1082.190450px;}
.y6_c02134{bottom:1103.520450px;}
.y5_c02134{bottom:1121.880450px;}
.y4_c02134{bottom:1139.250450px;}
.y1_c02134{bottom:1193.160450px;}
.hb_c02134{height:31.587891px;}
.h7_c02134{height:42.011895px;}
.h3_c02134{height:47.961914px;}
.h9_c02134{height:48.461836px;}
.h8_c02134{height:58.513535px;}
.hd_c02134{height:61.033535px;}
.hc_c02134{height:61.392935px;}
.h5_c02134{height:61.393535px;}
.h4_c02134{height:62.473535px;}
.h6_c02134{height:62.833535px;}
.h2_c02134{height:63.175781px;}
.h1_c02134{height:63.949219px;}
.ha_c02134{height:79.421836px;}
.h0_c02134{height:1263.000000px;}
.w1_c02134{width:892.500000px;}
.w0_c02134{width:892.830000px;}
.x0_c02134{left:0.000000px;}
.x1_c02134{left:127.620000px;}
.x7_c02134{left:134.550000px;}
.x3_c02134{left:135.630000px;}
.x4_c02134{left:143.910000px;}
.x5_c02134{left:165.060000px;}
.x6_c02134{left:220.680000px;}
.x8_c02134{left:380.700000px;}
.x9_c02134{left:403.740000px;}
.x2_c02134{left:437.580000px;}
.xa_c02134{left:555.299550px;}
@media print{
.v3_c02134{vertical-align:-3.520000pt;}
.v2_c02134{vertical-align:-2.240000pt;}
.v1_c02134{vertical-align:-1.280000pt;}
.v0_c02134{vertical-align:0.000000pt;}
.v6_c02134{vertical-align:0.960000pt;}
.v4_c02134{vertical-align:2.240000pt;}
.v5_c02134{vertical-align:3.520000pt;}
.v7_c02134{vertical-align:28.480000pt;}
.ls2e_c02134{letter-spacing:-0.158400pt;}
.ls2b_c02134{letter-spacing:-0.091200pt;}
.ls2d_c02134{letter-spacing:-0.076800pt;}
.ls27_c02134{letter-spacing:-0.076608pt;}
.ls23_c02134{letter-spacing:-0.038400pt;}
.ls25_c02134{letter-spacing:-0.017024pt;}
.ls2c_c02134{letter-spacing:-0.014400pt;}
.ls20_c02134{letter-spacing:-0.012800pt;}
.ls24_c02134{letter-spacing:-0.009600pt;}
.ls29_c02134{letter-spacing:-0.008512pt;}
.ls2a_c02134{letter-spacing:-0.004256pt;}
.ls21_c02134{letter-spacing:0.000000pt;}
.ls13_c02134{letter-spacing:0.004800pt;}
.ls12_c02134{letter-spacing:0.005856pt;}
.ls0_c02134{letter-spacing:0.009600pt;}
.ls3_c02134{letter-spacing:0.011232pt;}
.ls15_c02134{letter-spacing:0.014400pt;}
.ls10_c02134{letter-spacing:0.017024pt;}
.ls30_c02134{letter-spacing:0.019200pt;}
.ls16_c02134{letter-spacing:0.024000pt;}
.ls2_c02134{letter-spacing:0.025536pt;}
.ls4_c02134{letter-spacing:0.028800pt;}
.lsa_c02134{letter-spacing:0.033600pt;}
.ls1_c02134{letter-spacing:0.038304pt;}
.ls9_c02134{letter-spacing:0.038400pt;}
.ls17_c02134{letter-spacing:0.059584pt;}
.ls7_c02134{letter-spacing:0.068096pt;}
.lsd_c02134{letter-spacing:0.072352pt;}
.ls11_c02134{letter-spacing:0.081984pt;}
.ls14_c02134{letter-spacing:0.085120pt;}
.ls18_c02134{letter-spacing:0.089376pt;}
.ls1a_c02134{letter-spacing:0.097888pt;}
.lse_c02134{letter-spacing:0.110656pt;}
.lsf_c02134{letter-spacing:0.119168pt;}
.ls22_c02134{letter-spacing:0.134400pt;}
.ls5_c02134{letter-spacing:0.140544pt;}
.lsc_c02134{letter-spacing:0.144704pt;}
.ls26_c02134{letter-spacing:0.148960pt;}
.ls31_c02134{letter-spacing:0.158112pt;}
.ls1c_c02134{letter-spacing:0.158400pt;}
.ls8_c02134{letter-spacing:0.161728pt;}
.ls1b_c02134{letter-spacing:0.183008pt;}
.ls2f_c02134{letter-spacing:0.238336pt;}
.ls1d_c02134{letter-spacing:93.283200pt;}
.ls6_c02134{letter-spacing:100.160000pt;}
.ls19_c02134{letter-spacing:101.440000pt;}
.ls28_c02134{letter-spacing:128.160000pt;}
.ls32_c02134{letter-spacing:129.441600pt;}
.ls1f_c02134{letter-spacing:139.358400pt;}
.ls1e_c02134{letter-spacing:177.120000pt;}
.lsb_c02134{letter-spacing:178.480000pt;}
.ws0_c02134{word-spacing:-14.780544pt;}
.ws2_c02134{word-spacing:-14.645856pt;}
.ws3_c02134{word-spacing:-12.000000pt;}
.ws1f_c02134{word-spacing:-0.263872pt;}
.ws7_c02134{word-spacing:-0.242592pt;}
.ws9_c02134{word-spacing:-0.225568pt;}
.wsc_c02134{word-spacing:-0.200032pt;}
.wsb_c02134{word-spacing:-0.191520pt;}
.ws1e_c02134{word-spacing:-0.179200pt;}
.ws1d_c02134{word-spacing:-0.170240pt;}
.ws14_c02134{word-spacing:-0.168000pt;}
.ws10_c02134{word-spacing:-0.165984pt;}
.wsd_c02134{word-spacing:-0.153216pt;}
.wsf_c02134{word-spacing:-0.106400pt;}
.wse_c02134{word-spacing:-0.097888pt;}
.ws6_c02134{word-spacing:-0.089856pt;}
.wsa_c02134{word-spacing:-0.072352pt;}
.ws5_c02134{word-spacing:0.000000pt;}
.ws4_c02134{word-spacing:0.012800pt;}
.ws11_c02134{word-spacing:0.129600pt;}
.ws17_c02134{word-spacing:0.134400pt;}
.ws16_c02134{word-spacing:0.144000pt;}
.ws13_c02134{word-spacing:0.172800pt;}
.ws15_c02134{word-spacing:0.235200pt;}
.ws12_c02134{word-spacing:0.249600pt;}
.ws18_c02134{word-spacing:0.476672pt;}
.ws19_c02134{word-spacing:0.489440pt;}
.ws1a_c02134{word-spacing:2.421664pt;}
.ws1c_c02134{word-spacing:2.442944pt;}
.ws1b_c02134{word-spacing:2.455712pt;}
.ws1_c02134{word-spacing:52.417280pt;}
.ws8_c02134{word-spacing:139.320000pt;}
.ws20_c02134{word-spacing:214.200000pt;}
._1a_c02134{margin-left:-1.182272pt;}
._28_c02134{width:0.912000pt;}
._14_c02134{width:36.873600pt;}
._1f_c02134{width:38.136000pt;}
._c_c02134{width:45.277824pt;}
._31_c02134{width:53.328000pt;}
._36_c02134{width:54.849792pt;}
._10_c02134{width:56.300672pt;}
._f_c02134{width:58.080000pt;}
._9_c02134{width:64.217280pt;}
._12_c02134{width:67.360000pt;}
._a_c02134{width:68.720160pt;}
._34_c02134{width:73.177280pt;}
._37_c02134{width:74.068448pt;}
._2_c02134{width:75.408000pt;}
._35_c02134{width:76.700960pt;}
._1_c02134{width:78.419200pt;}
._d_c02134{width:81.145280pt;}
._19_c02134{width:82.048000pt;}
._18_c02134{width:83.737152pt;}
._b_c02134{width:88.902400pt;}
._39_c02134{width:90.300640pt;}
._1d_c02134{width:92.180352pt;}
._17_c02134{width:93.277856pt;}
._21_c02134{width:96.067200pt;}
._13_c02134{width:97.097152pt;}
._20_c02134{width:98.986816pt;}
._6_c02134{width:101.525440pt;}
._4_c02134{width:102.560000pt;}
._30_c02134{width:104.019200pt;}
._5_c02134{width:105.225728pt;}
._1c_c02134{width:106.726816pt;}
._3_c02134{width:108.640000pt;}
._1e_c02134{width:110.495040pt;}
._1b_c02134{width:113.601920pt;}
._11_c02134{width:114.886240pt;}
._22_c02134{width:118.121792pt;}
._32_c02134{width:120.900160pt;}
._16_c02134{width:128.160000pt;}
._15_c02134{width:129.979008pt;}
._8_c02134{width:132.149056pt;}
._7_c02134{width:135.249248pt;}
._38_c02134{width:136.209248pt;}
._0_c02134{width:172.800000pt;}
._e_c02134{width:178.314816pt;}
._2f_c02134{width:180.476800pt;}
._33_c02134{width:190.093024pt;}
._26_c02134{width:192.160000pt;}
._24_c02134{width:255.756544pt;}
._2d_c02134{width:269.484800pt;}
._27_c02134{width:275.648000pt;}
._25_c02134{width:288.689600pt;}
._2c_c02134{width:339.742400pt;}
._29_c02134{width:401.585600pt;}
._2a_c02134{width:428.652800pt;}
._2b_c02134{width:430.155200pt;}
._23_c02134{width:500.313600pt;}
._2e_c02134{width:710.840000pt;}
.fs5_c02134{font-size:32.000000pt;}
.fs3_c02134{font-size:37.440000pt;}
.fs2_c02134{font-size:42.560000pt;}
.fs1_c02134{font-size:48.000000pt;}
.fs4_c02134{font-size:58.560000pt;}
.fs0_c02134{font-size:64.000000pt;}
.y0_c02134{bottom:0.000000pt;}
.y3_c02134{bottom:50.987067pt;}
.y2_c02134{bottom:69.387067pt;}
.y52_c02134{bottom:108.027747pt;}
.y51_c02134{bottom:124.907667pt;}
.y50_c02134{bottom:141.707067pt;}
.y4f_c02134{bottom:158.027067pt;}
.y4e_c02134{bottom:171.787067pt;}
.y4d_c02134{bottom:172.187067pt;}
.y4c_c02134{bottom:188.667067pt;}
.y4b_c02134{bottom:188.986800pt;}
.y4a_c02134{bottom:205.547067pt;}
.y49_c02134{bottom:205.866667pt;}
.y48_c02134{bottom:222.427067pt;}
.y47_c02134{bottom:222.746667pt;}
.y46_c02134{bottom:239.307067pt;}
.y45_c02134{bottom:239.627067pt;}
.y44_c02134{bottom:256.507067pt;}
.y43_c02134{bottom:272.987067pt;}
.y42_c02134{bottom:273.307067pt;}
.y41_c02134{bottom:292.347067pt;}
.y40_c02134{bottom:308.587067pt;}
.y3f_c02134{bottom:324.027067pt;}
.y3e_c02134{bottom:341.947067pt;}
.y3d_c02134{bottom:355.707467pt;}
.y3c_c02134{bottom:369.547067pt;}
.y3b_c02134{bottom:383.307067pt;}
.y3a_c02134{bottom:383.627067pt;}
.y39_c02134{bottom:402.027200pt;}
.y38_c02134{bottom:418.587067pt;}
.y37_c02134{bottom:418.907200pt;}
.y36_c02134{bottom:437.947200pt;}
.y35_c02134{bottom:454.187200pt;}
.y34_c02134{bottom:469.627067pt;}
.y33_c02134{bottom:486.827067pt;}
.y32_c02134{bottom:496.027067pt;}
.y31_c02134{bottom:505.227067pt;}
.y30_c02134{bottom:514.427067pt;}
.y2f_c02134{bottom:523.627067pt;}
.y2e_c02134{bottom:532.827067pt;}
.y2d_c02134{bottom:542.586755pt;}
.y2c_c02134{bottom:554.906811pt;}
.y2b_c02134{bottom:567.147067pt;}
.y2a_c02134{bottom:581.547067pt;}
.y29_c02134{bottom:595.307067pt;}
.y28_c02134{bottom:609.147067pt;}
.y27_c02134{bottom:622.907067pt;}
.y26_c02134{bottom:636.747067pt;}
.y25_c02134{bottom:650.507067pt;}
.y24_c02134{bottom:664.347067pt;}
.y23_c02134{bottom:678.107067pt;}
.y22_c02134{bottom:693.787067pt;}
.y20_c02134{bottom:693.867067pt;}
.y21_c02134{bottom:708.107067pt;}
.y1f_c02134{bottom:723.067067pt;}
.y1e_c02134{bottom:739.226499pt;}
.y1d_c02134{bottom:751.466755pt;}
.y1c_c02134{bottom:763.707011pt;}
.y1b_c02134{bottom:776.027067pt;}
.y1a_c02134{bottom:788.347067pt;}
.y19_c02134{bottom:788.666667pt;}
.y18_c02134{bottom:805.227067pt;}
.y17_c02134{bottom:805.546667pt;}
.y16_c02134{bottom:822.107067pt;}
.y15_c02134{bottom:822.426667pt;}
.y14_c02134{bottom:838.987067pt;}
.y13_c02134{bottom:839.306667pt;}
.y12_c02134{bottom:855.787067pt;}
.y11_c02134{bottom:856.187067pt;}
.y10_c02134{bottom:872.987067pt;}
.yf_c02134{bottom:889.547067pt;}
.ye_c02134{bottom:889.867067pt;}
.yd_c02134{bottom:908.267067pt;}
.yc_c02134{bottom:924.827067pt;}
.yb_c02134{bottom:925.147467pt;}
.ya_c02134{bottom:943.227067pt;}
.y9_c02134{bottom:943.547467pt;}
.y8_c02134{bottom:961.627067pt;}
.y7_c02134{bottom:961.947067pt;}
.y6_c02134{bottom:980.907067pt;}
.y5_c02134{bottom:997.227067pt;}
.y4_c02134{bottom:1012.667067pt;}
.y1_c02134{bottom:1060.587067pt;}
.hb_c02134{height:28.078125pt;}
.h7_c02134{height:37.343906pt;}
.h3_c02134{height:42.632812pt;}
.h9_c02134{height:43.077188pt;}
.h8_c02134{height:52.012031pt;}
.hd_c02134{height:54.252031pt;}
.hc_c02134{height:54.571498pt;}
.h5_c02134{height:54.572031pt;}
.h4_c02134{height:55.532031pt;}
.h6_c02134{height:55.852031pt;}
.h2_c02134{height:56.156250pt;}
.h1_c02134{height:56.843750pt;}
.ha_c02134{height:70.597187pt;}
.h0_c02134{height:1122.666667pt;}
.w1_c02134{width:793.333333pt;}
.w0_c02134{width:793.626667pt;}
.x0_c02134{left:0.000000pt;}
.x1_c02134{left:113.440000pt;}
.x7_c02134{left:119.600000pt;}
.x3_c02134{left:120.560000pt;}
.x4_c02134{left:127.920000pt;}
.x5_c02134{left:146.720000pt;}
.x6_c02134{left:196.160000pt;}
.x8_c02134{left:338.400000pt;}
.x9_c02134{left:358.880000pt;}
.x2_c02134{left:388.960000pt;}
.xa_c02134{left:493.599600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e1b74d986df6b6cae745d70.woff2')format("woff");}.ff1_c02135{font-family:ff1_c02135;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02135;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02135{vertical-align:-8.640000px;}
.v6_c02135{vertical-align:-4.320000px;}
.v5_c02135{vertical-align:-2.880000px;}
.v4_c02135{vertical-align:-1.440000px;}
.v0_c02135{vertical-align:0.000000px;}
.v1_c02135{vertical-align:1.080000px;}
.v7_c02135{vertical-align:2.880000px;}
.v8_c02135{vertical-align:4.320000px;}
.v2_c02135{vertical-align:32.040000px;}
.ls2b_c02135{letter-spacing:-0.178200px;}
.ls35_c02135{letter-spacing:-0.118800px;}
.ls2a_c02135{letter-spacing:-0.102600px;}
.ls28_c02135{letter-spacing:-0.086400px;}
.ls31_c02135{letter-spacing:-0.086184px;}
.ls2e_c02135{letter-spacing:-0.043200px;}
.ls27_c02135{letter-spacing:-0.019152px;}
.ls29_c02135{letter-spacing:-0.016200px;}
.ls25_c02135{letter-spacing:-0.014400px;}
.ls2f_c02135{letter-spacing:-0.010800px;}
.ls33_c02135{letter-spacing:-0.009576px;}
.ls34_c02135{letter-spacing:-0.004788px;}
.ls26_c02135{letter-spacing:0.000000px;}
.ls2_c02135{letter-spacing:0.005400px;}
.ls1d_c02135{letter-spacing:0.006588px;}
.ls36_c02135{letter-spacing:0.007200px;}
.ls8_c02135{letter-spacing:0.010800px;}
.ls11_c02135{letter-spacing:0.012636px;}
.ls9_c02135{letter-spacing:0.016200px;}
.ls1b_c02135{letter-spacing:0.019152px;}
.ls7_c02135{letter-spacing:0.027000px;}
.lsd_c02135{letter-spacing:0.028728px;}
.ls10_c02135{letter-spacing:0.028800px;}
.ls6_c02135{letter-spacing:0.032400px;}
.lsa_c02135{letter-spacing:0.037800px;}
.lse_c02135{letter-spacing:0.043092px;}
.ls5_c02135{letter-spacing:0.043200px;}
.ls1_c02135{letter-spacing:0.046116px;}
.ls1c_c02135{letter-spacing:0.059292px;}
.lsc_c02135{letter-spacing:0.067032px;}
.ls20_c02135{letter-spacing:0.076608px;}
.ls0_c02135{letter-spacing:0.079056px;}
.lsb_c02135{letter-spacing:0.081396px;}
.ls1e_c02135{letter-spacing:0.086184px;}
.ls3_c02135{letter-spacing:0.095760px;}
.lsf_c02135{letter-spacing:0.100548px;}
.ls15_c02135{letter-spacing:0.110124px;}
.ls1f_c02135{letter-spacing:0.114912px;}
.ls21_c02135{letter-spacing:0.119700px;}
.ls19_c02135{letter-spacing:0.124488px;}
.ls1a_c02135{letter-spacing:0.134064px;}
.ls2d_c02135{letter-spacing:0.151200px;}
.ls12_c02135{letter-spacing:0.158112px;}
.ls30_c02135{letter-spacing:0.167580px;}
.ls23_c02135{letter-spacing:0.178200px;}
.ls4_c02135{letter-spacing:0.181944px;}
.ls16_c02135{letter-spacing:0.205884px;}
.ls2c_c02135{letter-spacing:0.268128px;}
.ls24_c02135{letter-spacing:77.943600px;}
.ls22_c02135{letter-spacing:113.040000px;}
.ls13_c02135{letter-spacing:113.760000px;}
.ls37_c02135{letter-spacing:144.541800px;}
.ls32_c02135{letter-spacing:145.260000px;}
.ls18_c02135{letter-spacing:156.778200px;}
.ls17_c02135{letter-spacing:199.260000px;}
.ls14_c02135{letter-spacing:200.790000px;}
.sc__c02135{text-shadow:none;}
.sc0_c02135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02135{-webkit-text-stroke:0px transparent;}
.sc0_c02135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02135{word-spacing:-16.628112px;}
.ws2_c02135{word-spacing:-16.476588px;}
.ws3_c02135{word-spacing:-13.500000px;}
.ws1b_c02135{word-spacing:-0.296856px;}
.ws17_c02135{word-spacing:-0.272916px;}
.ws1e_c02135{word-spacing:-0.225036px;}
.ws1d_c02135{word-spacing:-0.215460px;}
.ws28_c02135{word-spacing:-0.210672px;}
.ws14_c02135{word-spacing:-0.191520px;}
.wsc_c02135{word-spacing:-0.189000px;}
.ws7_c02135{word-spacing:-0.186732px;}
.ws1f_c02135{word-spacing:-0.172368px;}
.ws21_c02135{word-spacing:-0.119700px;}
.ws20_c02135{word-spacing:-0.110124px;}
.ws16_c02135{word-spacing:-0.101088px;}
.ws18_c02135{word-spacing:-0.081396px;}
.ws1a_c02135{word-spacing:-0.050400px;}
.ws15_c02135{word-spacing:-0.028800px;}
.ws29_c02135{word-spacing:-0.007200px;}
.ws5_c02135{word-spacing:0.000000px;}
.ws6_c02135{word-spacing:0.013176px;}
.ws4_c02135{word-spacing:0.014400px;}
.ws22_c02135{word-spacing:0.032940px;}
.ws9_c02135{word-spacing:0.145800px;}
.wsa_c02135{word-spacing:0.151200px;}
.wse_c02135{word-spacing:0.162000px;}
.wsb_c02135{word-spacing:0.194400px;}
.ws8_c02135{word-spacing:0.264600px;}
.wsd_c02135{word-spacing:0.280800px;}
.wsf_c02135{word-spacing:0.536256px;}
.ws10_c02135{word-spacing:0.550620px;}
.ws25_c02135{word-spacing:1.235304px;}
.ws27_c02135{word-spacing:1.273608px;}
.ws26_c02135{word-spacing:1.307124px;}
.ws11_c02135{word-spacing:2.724372px;}
.ws13_c02135{word-spacing:2.748312px;}
.ws12_c02135{word-spacing:2.762676px;}
.ws23_c02135{word-spacing:5.941908px;}
.ws24_c02135{word-spacing:5.961060px;}
.ws1_c02135{word-spacing:58.969440px;}
.ws19_c02135{word-spacing:156.735000px;}
.ws1c_c02135{word-spacing:240.975000px;}
._1_c02135{margin-left:-1.034316px;}
._a_c02135{width:1.026000px;}
._23_c02135{width:41.482800px;}
._24_c02135{width:42.541200px;}
._1b_c02135{width:50.577552px;}
._2f_c02135{width:61.649532px;}
._1f_c02135{width:62.978256px;}
._1e_c02135{width:65.340000px;}
._17_c02135{width:72.604440px;}
._21_c02135{width:75.420000px;}
._18_c02135{width:77.310180px;}
._10_c02135{width:84.834000px;}
._19_c02135{width:87.278400px;}
._f_c02135{width:88.581600px;}
._26_c02135{width:90.849276px;}
._28_c02135{width:92.666448px;}
._1d_c02135{width:94.564296px;}
._1a_c02135{width:100.958400px;}
._1c_c02135{width:104.575140px;}
._25_c02135{width:108.339840px;}
._2b_c02135{width:111.720168px;}
._14_c02135{width:114.216120px;}
._12_c02135{width:115.740000px;}
._13_c02135{width:118.378944px;}
._29_c02135{width:120.067668px;}
._11_c02135{width:122.220000px;}
._2a_c02135{width:124.666920px;}
._22_c02135{width:128.162160px;}
._20_c02135{width:129.352860px;}
._2c_c02135{width:133.247016px;}
._27_c02135{width:145.260000px;}
._16_c02135{width:148.307688px;}
._15_c02135{width:152.155404px;}
._0_c02135{width:194.400000px;}
._e_c02135{width:203.036400px;}
._5_c02135{width:216.180000px;}
._2e_c02135{width:283.500000px;}
._3_c02135{width:287.726112px;}
._8_c02135{width:303.170400px;}
._6_c02135{width:310.104000px;}
._7_c02135{width:324.775800px;}
._c_c02135{width:382.210200px;}
._b_c02135{width:451.783800px;}
._9_c02135{width:482.234400px;}
._4_c02135{width:483.924600px;}
._2d_c02135{width:560.692800px;}
._2_c02135{width:562.852800px;}
._d_c02135{width:799.695000px;}
.fc0_c02135{color:rgb(0,0,0);}
.fs5_c02135{font-size:11.880000px;}
.fs4_c02135{font-size:42.120000px;}
.fs3_c02135{font-size:47.880000px;}
.fs2_c02135{font-size:54.000000px;}
.fs1_c02135{font-size:65.880000px;}
.fs0_c02135{font-size:72.000000px;}
.y0_c02135{bottom:0.000000px;}
.y3_c02135{bottom:57.360450px;}
.y2_c02135{bottom:78.060450px;}
.y53_c02135{bottom:125.670450px;}
.y52_c02135{bottom:140.970450px;}
.y51_c02135{bottom:141.330000px;}
.y50_c02135{bottom:159.960600px;}
.y4f_c02135{bottom:160.320450px;}
.y4e_c02135{bottom:178.860450px;}
.y4d_c02135{bottom:179.220000px;}
.y4c_c02135{bottom:197.850450px;}
.y4b_c02135{bottom:198.210000px;}
.y4a_c02135{bottom:216.840450px;}
.y49_c02135{bottom:217.200600px;}
.y48_c02135{bottom:236.190450px;}
.y47_c02135{bottom:254.820450px;}
.y46_c02135{bottom:255.180450px;}
.y45_c02135{bottom:276.510450px;}
.y44_c02135{bottom:294.870450px;}
.y43_c02135{bottom:312.240450px;}
.y42_c02135{bottom:332.580450px;}
.y41_c02135{bottom:347.790024px;}
.y40_c02135{bottom:361.560312px;}
.y3f_c02135{bottom:375.330600px;}
.y3e_c02135{bottom:391.530450px;}
.y3d_c02135{bottom:407.010450px;}
.y3c_c02135{bottom:422.580450px;}
.y3b_c02135{bottom:438.060450px;}
.y3a_c02135{bottom:453.630450px;}
.y39_c02135{bottom:469.110600px;}
.y38_c02135{bottom:484.680600px;}
.y37_c02135{bottom:500.160450px;}
.y34_c02135{bottom:517.980450px;}
.y36_c02135{bottom:518.250600px;}
.y35_c02135{bottom:535.620450px;}
.y33_c02135{bottom:552.540450px;}
.y32_c02135{bottom:570.720900px;}
.y31_c02135{bottom:586.290450px;}
.y2f_c02135{bottom:601.770450px;}
.y2e_c02135{bottom:602.130000px;}
.y30_c02135{bottom:602.130450px;}
.y2c_c02135{bottom:620.760450px;}
.y2b_c02135{bottom:621.120000px;}
.y2d_c02135{bottom:621.120450px;}
.y29_c02135{bottom:639.750450px;}
.y28_c02135{bottom:640.110000px;}
.y2a_c02135{bottom:640.110450px;}
.y26_c02135{bottom:658.740450px;}
.y25_c02135{bottom:659.100000px;}
.y27_c02135{bottom:659.100450px;}
.y24_c02135{bottom:677.640450px;}
.y23_c02135{bottom:678.090450px;}
.y22_c02135{bottom:696.990450px;}
.y21_c02135{bottom:715.620450px;}
.y20_c02135{bottom:715.980450px;}
.y1f_c02135{bottom:736.680450px;}
.y1e_c02135{bottom:755.310450px;}
.y1d_c02135{bottom:755.670450px;}
.y1c_c02135{bottom:777.000450px;}
.y1b_c02135{bottom:795.360600px;}
.y1a_c02135{bottom:812.730450px;}
.y19_c02135{bottom:833.520450px;}
.y18_c02135{bottom:842.250450px;}
.y17_c02135{bottom:842.700450px;}
.y16_c02135{bottom:862.320450px;}
.y15_c02135{bottom:880.590450px;}
.y14_c02135{bottom:897.960450px;}
.y13_c02135{bottom:918.390450px;}
.y12_c02135{bottom:933.510099px;}
.y11_c02135{bottom:947.280387px;}
.y10_c02135{bottom:961.140450px;}
.yf_c02135{bottom:977.250450px;}
.ye_c02135{bottom:992.820450px;}
.yd_c02135{bottom:1013.250450px;}
.yc_c02135{bottom:1028.820450px;}
.yb_c02135{bottom:1044.300450px;}
.ya_c02135{bottom:1059.870450px;}
.y9_c02135{bottom:1075.350450px;}
.y8_c02135{bottom:1090.920450px;}
.y7_c02135{bottom:1108.560450px;}
.y5_c02135{bottom:1108.650450px;}
.y6_c02135{bottom:1124.580450px;}
.y4_c02135{bottom:1141.500450px;}
.y1_c02135{bottom:1193.160450px;}
.ha_c02135{height:10.551621px;}
.h5_c02135{height:42.011895px;}
.h8_c02135{height:47.381836px;}
.h4_c02135{height:47.961914px;}
.hf_c02135{height:48.461236px;}
.h6_c02135{height:48.461836px;}
.he_c02135{height:48.462436px;}
.h3_c02135{height:58.513535px;}
.hc_c02135{height:61.033535px;}
.hd_c02135{height:61.393535px;}
.hb_c02135{height:62.473535px;}
.h10_c02135{height:62.474135px;}
.h9_c02135{height:62.833535px;}
.h2_c02135{height:63.175781px;}
.h1_c02135{height:63.949219px;}
.h7_c02135{height:79.421836px;}
.h0_c02135{height:1263.000000px;}
.w1_c02135{width:892.500000px;}
.w0_c02135{width:892.830000px;}
.x0_c02135{left:0.000000px;}
.x1_c02135{left:127.620000px;}
.x3_c02135{left:134.550000px;}
.x6_c02135{left:135.630000px;}
.x7_c02135{left:143.820000px;}
.x8_c02135{left:164.880000px;}
.x9_c02135{left:220.680000px;}
.x4_c02135{left:380.700000px;}
.x5_c02135{left:403.740000px;}
.x2_c02135{left:437.580000px;}
.xa_c02135{left:555.299550px;}
@media print{
.v3_c02135{vertical-align:-7.680000pt;}
.v6_c02135{vertical-align:-3.840000pt;}
.v5_c02135{vertical-align:-2.560000pt;}
.v4_c02135{vertical-align:-1.280000pt;}
.v0_c02135{vertical-align:0.000000pt;}
.v1_c02135{vertical-align:0.960000pt;}
.v7_c02135{vertical-align:2.560000pt;}
.v8_c02135{vertical-align:3.840000pt;}
.v2_c02135{vertical-align:28.480000pt;}
.ls2b_c02135{letter-spacing:-0.158400pt;}
.ls35_c02135{letter-spacing:-0.105600pt;}
.ls2a_c02135{letter-spacing:-0.091200pt;}
.ls28_c02135{letter-spacing:-0.076800pt;}
.ls31_c02135{letter-spacing:-0.076608pt;}
.ls2e_c02135{letter-spacing:-0.038400pt;}
.ls27_c02135{letter-spacing:-0.017024pt;}
.ls29_c02135{letter-spacing:-0.014400pt;}
.ls25_c02135{letter-spacing:-0.012800pt;}
.ls2f_c02135{letter-spacing:-0.009600pt;}
.ls33_c02135{letter-spacing:-0.008512pt;}
.ls34_c02135{letter-spacing:-0.004256pt;}
.ls26_c02135{letter-spacing:0.000000pt;}
.ls2_c02135{letter-spacing:0.004800pt;}
.ls1d_c02135{letter-spacing:0.005856pt;}
.ls36_c02135{letter-spacing:0.006400pt;}
.ls8_c02135{letter-spacing:0.009600pt;}
.ls11_c02135{letter-spacing:0.011232pt;}
.ls9_c02135{letter-spacing:0.014400pt;}
.ls1b_c02135{letter-spacing:0.017024pt;}
.ls7_c02135{letter-spacing:0.024000pt;}
.lsd_c02135{letter-spacing:0.025536pt;}
.ls10_c02135{letter-spacing:0.025600pt;}
.ls6_c02135{letter-spacing:0.028800pt;}
.lsa_c02135{letter-spacing:0.033600pt;}
.lse_c02135{letter-spacing:0.038304pt;}
.ls5_c02135{letter-spacing:0.038400pt;}
.ls1_c02135{letter-spacing:0.040992pt;}
.ls1c_c02135{letter-spacing:0.052704pt;}
.lsc_c02135{letter-spacing:0.059584pt;}
.ls20_c02135{letter-spacing:0.068096pt;}
.ls0_c02135{letter-spacing:0.070272pt;}
.lsb_c02135{letter-spacing:0.072352pt;}
.ls1e_c02135{letter-spacing:0.076608pt;}
.ls3_c02135{letter-spacing:0.085120pt;}
.lsf_c02135{letter-spacing:0.089376pt;}
.ls15_c02135{letter-spacing:0.097888pt;}
.ls1f_c02135{letter-spacing:0.102144pt;}
.ls21_c02135{letter-spacing:0.106400pt;}
.ls19_c02135{letter-spacing:0.110656pt;}
.ls1a_c02135{letter-spacing:0.119168pt;}
.ls2d_c02135{letter-spacing:0.134400pt;}
.ls12_c02135{letter-spacing:0.140544pt;}
.ls30_c02135{letter-spacing:0.148960pt;}
.ls23_c02135{letter-spacing:0.158400pt;}
.ls4_c02135{letter-spacing:0.161728pt;}
.ls16_c02135{letter-spacing:0.183008pt;}
.ls2c_c02135{letter-spacing:0.238336pt;}
.ls24_c02135{letter-spacing:69.283200pt;}
.ls22_c02135{letter-spacing:100.480000pt;}
.ls13_c02135{letter-spacing:101.120000pt;}
.ls37_c02135{letter-spacing:128.481600pt;}
.ls32_c02135{letter-spacing:129.120000pt;}
.ls18_c02135{letter-spacing:139.358400pt;}
.ls17_c02135{letter-spacing:177.120000pt;}
.ls14_c02135{letter-spacing:178.480000pt;}
.ws0_c02135{word-spacing:-14.780544pt;}
.ws2_c02135{word-spacing:-14.645856pt;}
.ws3_c02135{word-spacing:-12.000000pt;}
.ws1b_c02135{word-spacing:-0.263872pt;}
.ws17_c02135{word-spacing:-0.242592pt;}
.ws1e_c02135{word-spacing:-0.200032pt;}
.ws1d_c02135{word-spacing:-0.191520pt;}
.ws28_c02135{word-spacing:-0.187264pt;}
.ws14_c02135{word-spacing:-0.170240pt;}
.wsc_c02135{word-spacing:-0.168000pt;}
.ws7_c02135{word-spacing:-0.165984pt;}
.ws1f_c02135{word-spacing:-0.153216pt;}
.ws21_c02135{word-spacing:-0.106400pt;}
.ws20_c02135{word-spacing:-0.097888pt;}
.ws16_c02135{word-spacing:-0.089856pt;}
.ws18_c02135{word-spacing:-0.072352pt;}
.ws1a_c02135{word-spacing:-0.044800pt;}
.ws15_c02135{word-spacing:-0.025600pt;}
.ws29_c02135{word-spacing:-0.006400pt;}
.ws5_c02135{word-spacing:0.000000pt;}
.ws6_c02135{word-spacing:0.011712pt;}
.ws4_c02135{word-spacing:0.012800pt;}
.ws22_c02135{word-spacing:0.029280pt;}
.ws9_c02135{word-spacing:0.129600pt;}
.wsa_c02135{word-spacing:0.134400pt;}
.wse_c02135{word-spacing:0.144000pt;}
.wsb_c02135{word-spacing:0.172800pt;}
.ws8_c02135{word-spacing:0.235200pt;}
.wsd_c02135{word-spacing:0.249600pt;}
.wsf_c02135{word-spacing:0.476672pt;}
.ws10_c02135{word-spacing:0.489440pt;}
.ws25_c02135{word-spacing:1.098048pt;}
.ws27_c02135{word-spacing:1.132096pt;}
.ws26_c02135{word-spacing:1.161888pt;}
.ws11_c02135{word-spacing:2.421664pt;}
.ws13_c02135{word-spacing:2.442944pt;}
.ws12_c02135{word-spacing:2.455712pt;}
.ws23_c02135{word-spacing:5.281696pt;}
.ws24_c02135{word-spacing:5.298720pt;}
.ws1_c02135{word-spacing:52.417280pt;}
.ws19_c02135{word-spacing:139.320000pt;}
.ws1c_c02135{word-spacing:214.200000pt;}
._1_c02135{margin-left:-0.919392pt;}
._a_c02135{width:0.912000pt;}
._23_c02135{width:36.873600pt;}
._24_c02135{width:37.814400pt;}
._1b_c02135{width:44.957824pt;}
._2f_c02135{width:54.799584pt;}
._1f_c02135{width:55.980672pt;}
._1e_c02135{width:58.080000pt;}
._17_c02135{width:64.537280pt;}
._21_c02135{width:67.040000pt;}
._18_c02135{width:68.720160pt;}
._10_c02135{width:75.408000pt;}
._19_c02135{width:77.580800pt;}
._f_c02135{width:78.739200pt;}
._26_c02135{width:80.754912pt;}
._28_c02135{width:82.370176pt;}
._1d_c02135{width:84.057152pt;}
._1a_c02135{width:89.740800pt;}
._1c_c02135{width:92.955680pt;}
._25_c02135{width:96.302080pt;}
._2b_c02135{width:99.306816pt;}
._14_c02135{width:101.525440pt;}
._12_c02135{width:102.880000pt;}
._13_c02135{width:105.225728pt;}
._29_c02135{width:106.726816pt;}
._11_c02135{width:108.640000pt;}
._2a_c02135{width:110.815040pt;}
._22_c02135{width:113.921920pt;}
._20_c02135{width:114.980320pt;}
._2c_c02135{width:118.441792pt;}
._27_c02135{width:129.120000pt;}
._16_c02135{width:131.829056pt;}
._15_c02135{width:135.249248pt;}
._0_c02135{width:172.800000pt;}
._e_c02135{width:180.476800pt;}
._5_c02135{width:192.160000pt;}
._2e_c02135{width:252.000000pt;}
._3_c02135{width:255.756544pt;}
._8_c02135{width:269.484800pt;}
._6_c02135{width:275.648000pt;}
._7_c02135{width:288.689600pt;}
._c_c02135{width:339.742400pt;}
._b_c02135{width:401.585600pt;}
._9_c02135{width:428.652800pt;}
._4_c02135{width:430.155200pt;}
._2d_c02135{width:498.393600pt;}
._2_c02135{width:500.313600pt;}
._d_c02135{width:710.840000pt;}
.fs5_c02135{font-size:10.560000pt;}
.fs4_c02135{font-size:37.440000pt;}
.fs3_c02135{font-size:42.560000pt;}
.fs2_c02135{font-size:48.000000pt;}
.fs1_c02135{font-size:58.560000pt;}
.fs0_c02135{font-size:64.000000pt;}
.y0_c02135{bottom:0.000000pt;}
.y3_c02135{bottom:50.987067pt;}
.y2_c02135{bottom:69.387067pt;}
.y53_c02135{bottom:111.707067pt;}
.y52_c02135{bottom:125.307067pt;}
.y51_c02135{bottom:125.626667pt;}
.y50_c02135{bottom:142.187200pt;}
.y4f_c02135{bottom:142.507067pt;}
.y4e_c02135{bottom:158.987067pt;}
.y4d_c02135{bottom:159.306667pt;}
.y4c_c02135{bottom:175.867067pt;}
.y4b_c02135{bottom:176.186667pt;}
.y4a_c02135{bottom:192.747067pt;}
.y49_c02135{bottom:193.067200pt;}
.y48_c02135{bottom:209.947067pt;}
.y47_c02135{bottom:226.507067pt;}
.y46_c02135{bottom:226.827067pt;}
.y45_c02135{bottom:245.787067pt;}
.y44_c02135{bottom:262.107067pt;}
.y43_c02135{bottom:277.547067pt;}
.y42_c02135{bottom:295.627067pt;}
.y41_c02135{bottom:309.146688pt;}
.y40_c02135{bottom:321.386944pt;}
.y3f_c02135{bottom:333.627200pt;}
.y3e_c02135{bottom:348.027067pt;}
.y3d_c02135{bottom:361.787067pt;}
.y3c_c02135{bottom:375.627067pt;}
.y3b_c02135{bottom:389.387067pt;}
.y3a_c02135{bottom:403.227067pt;}
.y39_c02135{bottom:416.987200pt;}
.y38_c02135{bottom:430.827200pt;}
.y37_c02135{bottom:444.587067pt;}
.y34_c02135{bottom:460.427067pt;}
.y36_c02135{bottom:460.667200pt;}
.y35_c02135{bottom:476.107067pt;}
.y33_c02135{bottom:491.147067pt;}
.y32_c02135{bottom:507.307467pt;}
.y31_c02135{bottom:521.147067pt;}
.y2f_c02135{bottom:534.907067pt;}
.y2e_c02135{bottom:535.226667pt;}
.y30_c02135{bottom:535.227067pt;}
.y2c_c02135{bottom:551.787067pt;}
.y2b_c02135{bottom:552.106667pt;}
.y2d_c02135{bottom:552.107067pt;}
.y29_c02135{bottom:568.667067pt;}
.y28_c02135{bottom:568.986667pt;}
.y2a_c02135{bottom:568.987067pt;}
.y26_c02135{bottom:585.547067pt;}
.y25_c02135{bottom:585.866667pt;}
.y27_c02135{bottom:585.867067pt;}
.y24_c02135{bottom:602.347067pt;}
.y23_c02135{bottom:602.747067pt;}
.y22_c02135{bottom:619.547067pt;}
.y21_c02135{bottom:636.107067pt;}
.y20_c02135{bottom:636.427067pt;}
.y1f_c02135{bottom:654.827067pt;}
.y1e_c02135{bottom:671.387067pt;}
.y1d_c02135{bottom:671.707067pt;}
.y1c_c02135{bottom:690.667067pt;}
.y1b_c02135{bottom:706.987200pt;}
.y1a_c02135{bottom:722.427067pt;}
.y19_c02135{bottom:740.907067pt;}
.y18_c02135{bottom:748.667067pt;}
.y17_c02135{bottom:749.067067pt;}
.y16_c02135{bottom:766.507067pt;}
.y15_c02135{bottom:782.747067pt;}
.y14_c02135{bottom:798.187067pt;}
.y13_c02135{bottom:816.347067pt;}
.y12_c02135{bottom:829.786755pt;}
.y11_c02135{bottom:842.027011pt;}
.y10_c02135{bottom:854.347067pt;}
.yf_c02135{bottom:868.667067pt;}
.ye_c02135{bottom:882.507067pt;}
.yd_c02135{bottom:900.667067pt;}
.yc_c02135{bottom:914.507067pt;}
.yb_c02135{bottom:928.267067pt;}
.ya_c02135{bottom:942.107067pt;}
.y9_c02135{bottom:955.867067pt;}
.y8_c02135{bottom:969.707067pt;}
.y7_c02135{bottom:985.387067pt;}
.y5_c02135{bottom:985.467067pt;}
.y6_c02135{bottom:999.627067pt;}
.y4_c02135{bottom:1014.667067pt;}
.y1_c02135{bottom:1060.587067pt;}
.ha_c02135{height:9.379219pt;}
.h5_c02135{height:37.343906pt;}
.h8_c02135{height:42.117188pt;}
.h4_c02135{height:42.632812pt;}
.hf_c02135{height:43.076654pt;}
.h6_c02135{height:43.077187pt;}
.he_c02135{height:43.077721pt;}
.h3_c02135{height:52.012031pt;}
.hc_c02135{height:54.252031pt;}
.hd_c02135{height:54.572031pt;}
.hb_c02135{height:55.532031pt;}
.h10_c02135{height:55.532565pt;}
.h9_c02135{height:55.852031pt;}
.h2_c02135{height:56.156250pt;}
.h1_c02135{height:56.843750pt;}
.h7_c02135{height:70.597187pt;}
.h0_c02135{height:1122.666667pt;}
.w1_c02135{width:793.333333pt;}
.w0_c02135{width:793.626667pt;}
.x0_c02135{left:0.000000pt;}
.x1_c02135{left:113.440000pt;}
.x3_c02135{left:119.600000pt;}
.x6_c02135{left:120.560000pt;}
.x7_c02135{left:127.840000pt;}
.x8_c02135{left:146.560000pt;}
.x9_c02135{left:196.160000pt;}
.x4_c02135{left:338.400000pt;}
.x5_c02135{left:358.880000pt;}
.x2_c02135{left:388.960000pt;}
.xa_c02135{left:493.599600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_076afb6ce8ab1a17f407e009.woff2')format("woff");}.ff1_c02136{font-family:ff1_c02136;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02136;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v5_c02136{vertical-align:-3.960000px;}
.v4_c02136{vertical-align:-2.520000px;}
.v3_c02136{vertical-align:-1.440000px;}
.v0_c02136{vertical-align:0.000000px;}
.v1_c02136{vertical-align:1.080000px;}
.v6_c02136{vertical-align:2.520000px;}
.v7_c02136{vertical-align:3.960000px;}
.v2_c02136{vertical-align:32.040000px;}
.ls29_c02136{letter-spacing:-0.178200px;}
.ls33_c02136{letter-spacing:-0.118800px;}
.ls28_c02136{letter-spacing:-0.102600px;}
.ls26_c02136{letter-spacing:-0.086400px;}
.ls2f_c02136{letter-spacing:-0.086184px;}
.ls2c_c02136{letter-spacing:-0.043200px;}
.ls25_c02136{letter-spacing:-0.019152px;}
.ls27_c02136{letter-spacing:-0.016200px;}
.ls23_c02136{letter-spacing:-0.014400px;}
.ls2d_c02136{letter-spacing:-0.010800px;}
.ls31_c02136{letter-spacing:-0.009576px;}
.ls32_c02136{letter-spacing:-0.004788px;}
.ls24_c02136{letter-spacing:0.000000px;}
.ls2_c02136{letter-spacing:0.005400px;}
.ls1_c02136{letter-spacing:0.006588px;}
.ls1a_c02136{letter-spacing:0.007200px;}
.ls8_c02136{letter-spacing:0.010800px;}
.ls10_c02136{letter-spacing:0.012636px;}
.ls7_c02136{letter-spacing:0.016200px;}
.ls18_c02136{letter-spacing:0.019152px;}
.ls9_c02136{letter-spacing:0.027000px;}
.lsd_c02136{letter-spacing:0.028728px;}
.ls6_c02136{letter-spacing:0.032400px;}
.lsa_c02136{letter-spacing:0.037800px;}
.lse_c02136{letter-spacing:0.043092px;}
.ls5_c02136{letter-spacing:0.043200px;}
.ls1e_c02136{letter-spacing:0.052668px;}
.lsc_c02136{letter-spacing:0.067032px;}
.ls1c_c02136{letter-spacing:0.076608px;}
.ls0_c02136{letter-spacing:0.079056px;}
.lsb_c02136{letter-spacing:0.081396px;}
.ls19_c02136{letter-spacing:0.092232px;}
.ls3_c02136{letter-spacing:0.095760px;}
.lsf_c02136{letter-spacing:0.100548px;}
.ls1f_c02136{letter-spacing:0.114912px;}
.ls16_c02136{letter-spacing:0.124488px;}
.ls17_c02136{letter-spacing:0.134064px;}
.ls20_c02136{letter-spacing:0.138852px;}
.ls2b_c02136{letter-spacing:0.151200px;}
.ls11_c02136{letter-spacing:0.158112px;}
.ls1d_c02136{letter-spacing:0.162792px;}
.ls2e_c02136{letter-spacing:0.167580px;}
.ls35_c02136{letter-spacing:0.177876px;}
.ls21_c02136{letter-spacing:0.178200px;}
.ls4_c02136{letter-spacing:0.181944px;}
.ls2a_c02136{letter-spacing:0.268128px;}
.ls22_c02136{letter-spacing:77.943600px;}
.ls1b_c02136{letter-spacing:113.400000px;}
.ls12_c02136{letter-spacing:114.480000px;}
.ls34_c02136{letter-spacing:144.898200px;}
.ls30_c02136{letter-spacing:145.978200px;}
.ls15_c02136{letter-spacing:155.698200px;}
.ls14_c02136{letter-spacing:199.978200px;}
.ls13_c02136{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02136{word-spacing:-16.628112px;}
.ws0_c02136{word-spacing:-16.476588px;}
.ws3_c02136{word-spacing:-13.500000px;}
.ws17_c02136{word-spacing:-0.272916px;}
.ws21_c02136{word-spacing:-0.253764px;}
.ws23_c02136{word-spacing:-0.229824px;}
.ws1b_c02136{word-spacing:-0.225036px;}
.ws1a_c02136{word-spacing:-0.215460px;}
.ws22_c02136{word-spacing:-0.205884px;}
.ws14_c02136{word-spacing:-0.191520px;}
.wsc_c02136{word-spacing:-0.189000px;}
.ws7_c02136{word-spacing:-0.186732px;}
.ws1d_c02136{word-spacing:-0.172368px;}
.ws15_c02136{word-spacing:-0.165600px;}
.ws1f_c02136{word-spacing:-0.119700px;}
.ws1e_c02136{word-spacing:-0.110124px;}
.ws16_c02136{word-spacing:-0.101088px;}
.ws20_c02136{word-spacing:-0.093600px;}
.ws18_c02136{word-spacing:-0.081396px;}
.ws5_c02136{word-spacing:0.000000px;}
.ws6_c02136{word-spacing:0.013176px;}
.ws4_c02136{word-spacing:0.014400px;}
.ws9_c02136{word-spacing:0.145800px;}
.wsd_c02136{word-spacing:0.151200px;}
.wsa_c02136{word-spacing:0.162000px;}
.wsb_c02136{word-spacing:0.194400px;}
.ws8_c02136{word-spacing:0.264600px;}
.wse_c02136{word-spacing:0.280800px;}
.wsf_c02136{word-spacing:0.536256px;}
.ws10_c02136{word-spacing:0.550620px;}
.ws11_c02136{word-spacing:2.724372px;}
.ws13_c02136{word-spacing:2.748312px;}
.ws12_c02136{word-spacing:2.762676px;}
.ws2_c02136{word-spacing:58.969440px;}
.ws1c_c02136{word-spacing:156.735000px;}
.ws19_c02136{word-spacing:241.336800px;}
._1_c02136{margin-left:-1.106784px;}
._b_c02136{width:1.026000px;}
._28_c02136{width:42.567984px;}
._27_c02136{width:43.696800px;}
._1b_c02136{width:50.577552px;}
._20_c02136{width:62.053200px;}
._1e_c02136{width:65.340000px;}
._17_c02136{width:72.964440px;}
._22_c02136{width:75.780000px;}
._18_c02136{width:76.950180px;}
._2f_c02136{width:78.469056px;}
._23_c02136{width:83.700000px;}
._10_c02136{width:85.194000px;}
._19_c02136{width:87.278400px;}
._f_c02136{width:88.581600px;}
._2d_c02136{width:91.648440px;}
._1f_c02136{width:92.664000px;}
._1d_c02136{width:94.564296px;}
._34_c02136{width:96.585300px;}
._1a_c02136{width:100.598400px;}
._33_c02136{width:102.718728px;}
._1c_c02136{width:104.575140px;}
._32_c02136{width:106.781868px;}
._2a_c02136{width:108.435600px;}
._30_c02136{width:109.594296px;}
._29_c02136{width:111.720168px;}
._14_c02136{width:114.216120px;}
._12_c02136{width:115.740000px;}
._13_c02136{width:118.378944px;}
._25_c02136{width:120.067668px;}
._11_c02136{width:122.220000px;}
._26_c02136{width:124.666920px;}
._21_c02136{width:128.979648px;}
._2b_c02136{width:133.247016px;}
._31_c02136{width:144.900000px;}
._24_c02136{width:145.980000px;}
._16_c02136{width:148.307688px;}
._15_c02136{width:152.515404px;}
._0_c02136{width:194.400000px;}
._2e_c02136{width:200.964168px;}
._e_c02136{width:203.036400px;}
._5_c02136{width:216.180000px;}
._3_c02136{width:287.726112px;}
._a_c02136{width:303.170400px;}
._6_c02136{width:310.104000px;}
._7_c02136{width:324.775800px;}
._8_c02136{width:382.210200px;}
._c_c02136{width:451.783800px;}
._9_c02136{width:482.234400px;}
._4_c02136{width:483.924600px;}
._2c_c02136{width:560.692800px;}
._2_c02136{width:562.852800px;}
._d_c02136{width:799.695000px;}
.fc0_c02136{color:rgb(0,0,0);}
.fs4_c02136{font-size:42.120000px;}
.fs3_c02136{font-size:47.880000px;}
.fs2_c02136{font-size:54.000000px;}
.fs1_c02136{font-size:65.880000px;}
.fs0_c02136{font-size:72.000000px;}
.y0_c02136{bottom:0.000000px;}
.y3_c02136{bottom:57.360450px;}
.y2_c02136{bottom:78.060450px;}
.y51_c02136{bottom:125.940450px;}
.y50_c02136{bottom:126.300000px;}
.y4f_c02136{bottom:144.930450px;}
.y4e_c02136{bottom:145.290000px;}
.y4d_c02136{bottom:163.920450px;}
.y4c_c02136{bottom:164.280150px;}
.y4b_c02136{bottom:182.910450px;}
.y4a_c02136{bottom:183.270150px;}
.y49_c02136{bottom:201.810450px;}
.y48_c02136{bottom:202.260450px;}
.y47_c02136{bottom:222.870600px;}
.y46_c02136{bottom:241.500450px;}
.y45_c02136{bottom:241.860900px;}
.y44_c02136{bottom:262.200450px;}
.y43_c02136{bottom:262.560450px;}
.y42_c02136{bottom:283.260450px;}
.y41_c02136{bottom:301.890450px;}
.y40_c02136{bottom:302.250450px;}
.y3f_c02136{bottom:322.950450px;}
.y3e_c02136{bottom:341.580450px;}
.y3d_c02136{bottom:341.940900px;}
.y3c_c02136{bottom:362.280450px;}
.y3b_c02136{bottom:362.640900px;}
.y3a_c02136{bottom:382.980450px;}
.y39_c02136{bottom:383.340450px;}
.y38_c02136{bottom:404.670450px;}
.y37_c02136{bottom:423.030450px;}
.y36_c02136{bottom:440.400450px;}
.y35_c02136{bottom:460.470450px;}
.y34_c02136{bottom:475.949874px;}
.y33_c02136{bottom:489.720162px;}
.y32_c02136{bottom:503.490450px;}
.y31_c02136{bottom:519.690600px;}
.y30_c02136{bottom:535.170450px;}
.y2f_c02136{bottom:550.740450px;}
.y2e_c02136{bottom:566.220450px;}
.y2d_c02136{bottom:581.790450px;}
.y2c_c02136{bottom:597.270450px;}
.y2b_c02136{bottom:612.840450px;}
.y2a_c02136{bottom:628.320450px;}
.y29_c02136{bottom:645.960450px;}
.y27_c02136{bottom:646.140450px;}
.y28_c02136{bottom:662.070450px;}
.y26_c02136{bottom:678.990063px;}
.y25_c02136{bottom:697.800450px;}
.y24_c02136{bottom:716.160450px;}
.y23_c02136{bottom:716.520000px;}
.y22_c02136{bottom:735.150450px;}
.y21_c02136{bottom:735.510000px;}
.y20_c02136{bottom:754.140450px;}
.y1f_c02136{bottom:754.500450px;}
.y1e_c02136{bottom:773.040600px;}
.y1d_c02136{bottom:773.400000px;}
.y1c_c02136{bottom:792.030450px;}
.y1b_c02136{bottom:792.390450px;}
.y1a_c02136{bottom:811.380450px;}
.y19_c02136{bottom:830.010450px;}
.y18_c02136{bottom:830.370450px;}
.y17_c02136{bottom:851.700450px;}
.y16_c02136{bottom:870.060450px;}
.y15_c02136{bottom:887.430600px;}
.y14_c02136{bottom:907.500900px;}
.y13_c02136{bottom:923.070450px;}
.y12_c02136{bottom:938.460099px;}
.y11_c02136{bottom:952.320162px;}
.y10_c02136{bottom:966.090450px;}
.yf_c02136{bottom:982.200450px;}
.ye_c02136{bottom:997.770450px;}
.yd_c02136{bottom:1013.250450px;}
.yc_c02136{bottom:1028.820450px;}
.yb_c02136{bottom:1044.300450px;}
.ya_c02136{bottom:1059.870450px;}
.y9_c02136{bottom:1075.350450px;}
.y8_c02136{bottom:1090.920450px;}
.y7_c02136{bottom:1108.560450px;}
.y5_c02136{bottom:1108.650450px;}
.y6_c02136{bottom:1124.580450px;}
.y4_c02136{bottom:1141.500450px;}
.y1_c02136{bottom:1193.160450px;}
.h5_c02136{height:42.011895px;}
.h4_c02136{height:47.961914px;}
.h6_c02136{height:48.461836px;}
.h8_c02136{height:48.462436px;}
.h3_c02136{height:58.513535px;}
.ha_c02136{height:61.033535px;}
.hd_c02136{height:61.393535px;}
.hf_c02136{height:61.752935px;}
.h9_c02136{height:62.473535px;}
.hc_c02136{height:62.832935px;}
.he_c02136{height:62.833535px;}
.hb_c02136{height:62.834135px;}
.h2_c02136{height:63.175781px;}
.h1_c02136{height:63.949219px;}
.h7_c02136{height:79.421836px;}
.h0_c02136{height:1263.000000px;}
.w1_c02136{width:892.500000px;}
.w0_c02136{width:892.830000px;}
.x0_c02136{left:0.000000px;}
.x1_c02136{left:127.620000px;}
.x3_c02136{left:134.550000px;}
.x6_c02136{left:135.630000px;}
.x7_c02136{left:143.730000px;}
.x8_c02136{left:164.700000px;}
.x9_c02136{left:220.680000px;}
.x4_c02136{left:380.700000px;}
.x5_c02136{left:403.740000px;}
.x2_c02136{left:437.580000px;}
.xa_c02136{left:555.390000px;}
@media print{
.v5_c02136{vertical-align:-3.520000pt;}
.v4_c02136{vertical-align:-2.240000pt;}
.v3_c02136{vertical-align:-1.280000pt;}
.v0_c02136{vertical-align:0.000000pt;}
.v1_c02136{vertical-align:0.960000pt;}
.v6_c02136{vertical-align:2.240000pt;}
.v7_c02136{vertical-align:3.520000pt;}
.v2_c02136{vertical-align:28.480000pt;}
.ls29_c02136{letter-spacing:-0.158400pt;}
.ls33_c02136{letter-spacing:-0.105600pt;}
.ls28_c02136{letter-spacing:-0.091200pt;}
.ls26_c02136{letter-spacing:-0.076800pt;}
.ls2f_c02136{letter-spacing:-0.076608pt;}
.ls2c_c02136{letter-spacing:-0.038400pt;}
.ls25_c02136{letter-spacing:-0.017024pt;}
.ls27_c02136{letter-spacing:-0.014400pt;}
.ls23_c02136{letter-spacing:-0.012800pt;}
.ls2d_c02136{letter-spacing:-0.009600pt;}
.ls31_c02136{letter-spacing:-0.008512pt;}
.ls32_c02136{letter-spacing:-0.004256pt;}
.ls24_c02136{letter-spacing:0.000000pt;}
.ls2_c02136{letter-spacing:0.004800pt;}
.ls1_c02136{letter-spacing:0.005856pt;}
.ls1a_c02136{letter-spacing:0.006400pt;}
.ls8_c02136{letter-spacing:0.009600pt;}
.ls10_c02136{letter-spacing:0.011232pt;}
.ls7_c02136{letter-spacing:0.014400pt;}
.ls18_c02136{letter-spacing:0.017024pt;}
.ls9_c02136{letter-spacing:0.024000pt;}
.lsd_c02136{letter-spacing:0.025536pt;}
.ls6_c02136{letter-spacing:0.028800pt;}
.lsa_c02136{letter-spacing:0.033600pt;}
.lse_c02136{letter-spacing:0.038304pt;}
.ls5_c02136{letter-spacing:0.038400pt;}
.ls1e_c02136{letter-spacing:0.046816pt;}
.lsc_c02136{letter-spacing:0.059584pt;}
.ls1c_c02136{letter-spacing:0.068096pt;}
.ls0_c02136{letter-spacing:0.070272pt;}
.lsb_c02136{letter-spacing:0.072352pt;}
.ls19_c02136{letter-spacing:0.081984pt;}
.ls3_c02136{letter-spacing:0.085120pt;}
.lsf_c02136{letter-spacing:0.089376pt;}
.ls1f_c02136{letter-spacing:0.102144pt;}
.ls16_c02136{letter-spacing:0.110656pt;}
.ls17_c02136{letter-spacing:0.119168pt;}
.ls20_c02136{letter-spacing:0.123424pt;}
.ls2b_c02136{letter-spacing:0.134400pt;}
.ls11_c02136{letter-spacing:0.140544pt;}
.ls1d_c02136{letter-spacing:0.144704pt;}
.ls2e_c02136{letter-spacing:0.148960pt;}
.ls35_c02136{letter-spacing:0.158112pt;}
.ls21_c02136{letter-spacing:0.158400pt;}
.ls4_c02136{letter-spacing:0.161728pt;}
.ls2a_c02136{letter-spacing:0.238336pt;}
.ls22_c02136{letter-spacing:69.283200pt;}
.ls1b_c02136{letter-spacing:100.800000pt;}
.ls12_c02136{letter-spacing:101.760000pt;}
.ls34_c02136{letter-spacing:128.798400pt;}
.ls30_c02136{letter-spacing:129.758400pt;}
.ls15_c02136{letter-spacing:138.398400pt;}
.ls14_c02136{letter-spacing:177.758400pt;}
.ls13_c02136{letter-spacing:178.480000pt;}
.ws1_c02136{word-spacing:-14.780544pt;}
.ws0_c02136{word-spacing:-14.645856pt;}
.ws3_c02136{word-spacing:-12.000000pt;}
.ws17_c02136{word-spacing:-0.242592pt;}
.ws21_c02136{word-spacing:-0.225568pt;}
.ws23_c02136{word-spacing:-0.204288pt;}
.ws1b_c02136{word-spacing:-0.200032pt;}
.ws1a_c02136{word-spacing:-0.191520pt;}
.ws22_c02136{word-spacing:-0.183008pt;}
.ws14_c02136{word-spacing:-0.170240pt;}
.wsc_c02136{word-spacing:-0.168000pt;}
.ws7_c02136{word-spacing:-0.165984pt;}
.ws1d_c02136{word-spacing:-0.153216pt;}
.ws15_c02136{word-spacing:-0.147200pt;}
.ws1f_c02136{word-spacing:-0.106400pt;}
.ws1e_c02136{word-spacing:-0.097888pt;}
.ws16_c02136{word-spacing:-0.089856pt;}
.ws20_c02136{word-spacing:-0.083200pt;}
.ws18_c02136{word-spacing:-0.072352pt;}
.ws5_c02136{word-spacing:0.000000pt;}
.ws6_c02136{word-spacing:0.011712pt;}
.ws4_c02136{word-spacing:0.012800pt;}
.ws9_c02136{word-spacing:0.129600pt;}
.wsd_c02136{word-spacing:0.134400pt;}
.wsa_c02136{word-spacing:0.144000pt;}
.wsb_c02136{word-spacing:0.172800pt;}
.ws8_c02136{word-spacing:0.235200pt;}
.wse_c02136{word-spacing:0.249600pt;}
.wsf_c02136{word-spacing:0.476672pt;}
.ws10_c02136{word-spacing:0.489440pt;}
.ws11_c02136{word-spacing:2.421664pt;}
.ws13_c02136{word-spacing:2.442944pt;}
.ws12_c02136{word-spacing:2.455712pt;}
.ws2_c02136{word-spacing:52.417280pt;}
.ws1c_c02136{word-spacing:139.320000pt;}
.ws19_c02136{word-spacing:214.521600pt;}
._1_c02136{margin-left:-0.983808pt;}
._b_c02136{width:0.912000pt;}
._28_c02136{width:37.838208pt;}
._27_c02136{width:38.841600pt;}
._1b_c02136{width:44.957824pt;}
._20_c02136{width:55.158400pt;}
._1e_c02136{width:58.080000pt;}
._17_c02136{width:64.857280pt;}
._22_c02136{width:67.360000pt;}
._18_c02136{width:68.400160pt;}
._2f_c02136{width:69.750272pt;}
._23_c02136{width:74.400000pt;}
._10_c02136{width:75.728000pt;}
._19_c02136{width:77.580800pt;}
._f_c02136{width:78.739200pt;}
._2d_c02136{width:81.465280pt;}
._1f_c02136{width:82.368000pt;}
._1d_c02136{width:84.057152pt;}
._34_c02136{width:85.853600pt;}
._1a_c02136{width:89.420800pt;}
._33_c02136{width:91.305536pt;}
._1c_c02136{width:92.955680pt;}
._32_c02136{width:94.917216pt;}
._2a_c02136{width:96.387200pt;}
._30_c02136{width:97.417152pt;}
._29_c02136{width:99.306816pt;}
._14_c02136{width:101.525440pt;}
._12_c02136{width:102.880000pt;}
._13_c02136{width:105.225728pt;}
._25_c02136{width:106.726816pt;}
._11_c02136{width:108.640000pt;}
._26_c02136{width:110.815040pt;}
._21_c02136{width:114.648576pt;}
._2b_c02136{width:118.441792pt;}
._31_c02136{width:128.800000pt;}
._24_c02136{width:129.760000pt;}
._16_c02136{width:131.829056pt;}
._15_c02136{width:135.569248pt;}
._0_c02136{width:172.800000pt;}
._2e_c02136{width:178.634816pt;}
._e_c02136{width:180.476800pt;}
._5_c02136{width:192.160000pt;}
._3_c02136{width:255.756544pt;}
._a_c02136{width:269.484800pt;}
._6_c02136{width:275.648000pt;}
._7_c02136{width:288.689600pt;}
._8_c02136{width:339.742400pt;}
._c_c02136{width:401.585600pt;}
._9_c02136{width:428.652800pt;}
._4_c02136{width:430.155200pt;}
._2c_c02136{width:498.393600pt;}
._2_c02136{width:500.313600pt;}
._d_c02136{width:710.840000pt;}
.fs4_c02136{font-size:37.440000pt;}
.fs3_c02136{font-size:42.560000pt;}
.fs2_c02136{font-size:48.000000pt;}
.fs1_c02136{font-size:58.560000pt;}
.fs0_c02136{font-size:64.000000pt;}
.y0_c02136{bottom:0.000000pt;}
.y3_c02136{bottom:50.987067pt;}
.y2_c02136{bottom:69.387067pt;}
.y51_c02136{bottom:111.947067pt;}
.y50_c02136{bottom:112.266667pt;}
.y4f_c02136{bottom:128.827067pt;}
.y4e_c02136{bottom:129.146667pt;}
.y4d_c02136{bottom:145.707067pt;}
.y4c_c02136{bottom:146.026800pt;}
.y4b_c02136{bottom:162.587067pt;}
.y4a_c02136{bottom:162.906800pt;}
.y49_c02136{bottom:179.387067pt;}
.y48_c02136{bottom:179.787067pt;}
.y47_c02136{bottom:198.107200pt;}
.y46_c02136{bottom:214.667067pt;}
.y45_c02136{bottom:214.987467pt;}
.y44_c02136{bottom:233.067067pt;}
.y43_c02136{bottom:233.387067pt;}
.y42_c02136{bottom:251.787067pt;}
.y41_c02136{bottom:268.347067pt;}
.y40_c02136{bottom:268.667067pt;}
.y3f_c02136{bottom:287.067067pt;}
.y3e_c02136{bottom:303.627067pt;}
.y3d_c02136{bottom:303.947467pt;}
.y3c_c02136{bottom:322.027067pt;}
.y3b_c02136{bottom:322.347467pt;}
.y3a_c02136{bottom:340.427067pt;}
.y39_c02136{bottom:340.747067pt;}
.y38_c02136{bottom:359.707067pt;}
.y37_c02136{bottom:376.027067pt;}
.y36_c02136{bottom:391.467067pt;}
.y35_c02136{bottom:409.307067pt;}
.y34_c02136{bottom:423.066555pt;}
.y33_c02136{bottom:435.306811pt;}
.y32_c02136{bottom:447.547067pt;}
.y31_c02136{bottom:461.947200pt;}
.y30_c02136{bottom:475.707067pt;}
.y2f_c02136{bottom:489.547067pt;}
.y2e_c02136{bottom:503.307067pt;}
.y2d_c02136{bottom:517.147067pt;}
.y2c_c02136{bottom:530.907067pt;}
.y2b_c02136{bottom:544.747067pt;}
.y2a_c02136{bottom:558.507067pt;}
.y29_c02136{bottom:574.187067pt;}
.y27_c02136{bottom:574.347067pt;}
.y28_c02136{bottom:588.507067pt;}
.y26_c02136{bottom:603.546723pt;}
.y25_c02136{bottom:620.267067pt;}
.y24_c02136{bottom:636.587067pt;}
.y23_c02136{bottom:636.906667pt;}
.y22_c02136{bottom:653.467067pt;}
.y21_c02136{bottom:653.786667pt;}
.y20_c02136{bottom:670.347067pt;}
.y1f_c02136{bottom:670.667067pt;}
.y1e_c02136{bottom:687.147200pt;}
.y1d_c02136{bottom:687.466667pt;}
.y1c_c02136{bottom:704.027067pt;}
.y1b_c02136{bottom:704.347067pt;}
.y1a_c02136{bottom:721.227067pt;}
.y19_c02136{bottom:737.787067pt;}
.y18_c02136{bottom:738.107067pt;}
.y17_c02136{bottom:757.067067pt;}
.y16_c02136{bottom:773.387067pt;}
.y15_c02136{bottom:788.827200pt;}
.y14_c02136{bottom:806.667467pt;}
.y13_c02136{bottom:820.507067pt;}
.y12_c02136{bottom:834.186755pt;}
.y11_c02136{bottom:846.506811pt;}
.y10_c02136{bottom:858.747067pt;}
.yf_c02136{bottom:873.067067pt;}
.ye_c02136{bottom:886.907067pt;}
.yd_c02136{bottom:900.667067pt;}
.yc_c02136{bottom:914.507067pt;}
.yb_c02136{bottom:928.267067pt;}
.ya_c02136{bottom:942.107067pt;}
.y9_c02136{bottom:955.867067pt;}
.y8_c02136{bottom:969.707067pt;}
.y7_c02136{bottom:985.387067pt;}
.y5_c02136{bottom:985.467067pt;}
.y6_c02136{bottom:999.627067pt;}
.y4_c02136{bottom:1014.667067pt;}
.y1_c02136{bottom:1060.587067pt;}
.h5_c02136{height:37.343906pt;}
.h4_c02136{height:42.632812pt;}
.h6_c02136{height:43.077187pt;}
.h8_c02136{height:43.077721pt;}
.h3_c02136{height:52.012031pt;}
.ha_c02136{height:54.252031pt;}
.hd_c02136{height:54.572031pt;}
.hf_c02136{height:54.891498pt;}
.h9_c02136{height:55.532031pt;}
.hc_c02136{height:55.851498pt;}
.he_c02136{height:55.852031pt;}
.hb_c02136{height:55.852565pt;}
.h2_c02136{height:56.156250pt;}
.h1_c02136{height:56.843750pt;}
.h7_c02136{height:70.597187pt;}
.h0_c02136{height:1122.666667pt;}
.w1_c02136{width:793.333333pt;}
.w0_c02136{width:793.626667pt;}
.x0_c02136{left:0.000000pt;}
.x1_c02136{left:113.440000pt;}
.x3_c02136{left:119.600000pt;}
.x6_c02136{left:120.560000pt;}
.x7_c02136{left:127.760000pt;}
.x8_c02136{left:146.400000pt;}
.x9_c02136{left:196.160000pt;}
.x4_c02136{left:338.400000pt;}
.x5_c02136{left:358.880000pt;}
.x2_c02136{left:388.960000pt;}
.xa_c02136{left:493.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_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_ad5992418352bc6535b57303.woff2')format("woff");}.ff1_c02137{font-family:ff1_c02137;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02137;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v5_c02137{vertical-align:-4.320600px;}
.v4_c02137{vertical-align:-2.880600px;}
.v3_c02137{vertical-align:-1.440000px;}
.v0_c02137{vertical-align:0.000000px;}
.v1_c02137{vertical-align:1.080000px;}
.v6_c02137{vertical-align:2.520000px;}
.v7_c02137{vertical-align:4.320000px;}
.v2_c02137{vertical-align:28.800000px;}
.ls2a_c02137{letter-spacing:-0.090972px;}
.ls31_c02137{letter-spacing:-0.086184px;}
.ls27_c02137{letter-spacing:-0.067032px;}
.ls26_c02137{letter-spacing:-0.052668px;}
.ls2e_c02137{letter-spacing:-0.043200px;}
.ls34_c02137{letter-spacing:-0.039528px;}
.ls28_c02137{letter-spacing:-0.033516px;}
.ls25_c02137{letter-spacing:-0.019152px;}
.ls22_c02137{letter-spacing:-0.014400px;}
.ls29_c02137{letter-spacing:-0.014364px;}
.ls2f_c02137{letter-spacing:-0.010800px;}
.ls2b_c02137{letter-spacing:-0.009576px;}
.ls2c_c02137{letter-spacing:-0.007200px;}
.ls33_c02137{letter-spacing:-0.004788px;}
.ls23_c02137{letter-spacing:0.000000px;}
.ls1_c02137{letter-spacing:0.006588px;}
.lsf_c02137{letter-spacing:0.010800px;}
.ls10_c02137{letter-spacing:0.012636px;}
.ls21_c02137{letter-spacing:0.014400px;}
.ls20_c02137{letter-spacing:0.016200px;}
.ls1a_c02137{letter-spacing:0.019152px;}
.ls5_c02137{letter-spacing:0.023940px;}
.ls8_c02137{letter-spacing:0.028728px;}
.ls11_c02137{letter-spacing:0.032400px;}
.ls17_c02137{letter-spacing:0.037800px;}
.lsc_c02137{letter-spacing:0.043092px;}
.ls15_c02137{letter-spacing:0.043200px;}
.ls1e_c02137{letter-spacing:0.050400px;}
.lsa_c02137{letter-spacing:0.067032px;}
.lsd_c02137{letter-spacing:0.076608px;}
.ls0_c02137{letter-spacing:0.079056px;}
.ls14_c02137{letter-spacing:0.081396px;}
.ls9_c02137{letter-spacing:0.086184px;}
.ls1b_c02137{letter-spacing:0.092232px;}
.ls2_c02137{letter-spacing:0.095760px;}
.ls1d_c02137{letter-spacing:0.100548px;}
.ls1c_c02137{letter-spacing:0.110124px;}
.lsb_c02137{letter-spacing:0.114912px;}
.lse_c02137{letter-spacing:0.119700px;}
.ls4_c02137{letter-spacing:0.124488px;}
.ls6_c02137{letter-spacing:0.134064px;}
.ls2d_c02137{letter-spacing:0.151200px;}
.ls24_c02137{letter-spacing:0.153216px;}
.ls12_c02137{letter-spacing:0.158112px;}
.ls30_c02137{letter-spacing:0.167580px;}
.ls18_c02137{letter-spacing:0.178200px;}
.ls3_c02137{letter-spacing:0.181944px;}
.ls35_c02137{letter-spacing:0.268128px;}
.ls19_c02137{letter-spacing:104.943600px;}
.ls1f_c02137{letter-spacing:112.320000px;}
.ls13_c02137{letter-spacing:113.400000px;}
.ls36_c02137{letter-spacing:143.818200px;}
.ls32_c02137{letter-spacing:144.898200px;}
.ls16_c02137{letter-spacing:200.790000px;}
.ls7_c02137{letter-spacing:228.150000px;}
.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;}
}
.ws1_c02137{word-spacing:-16.628112px;}
.ws4_c02137{word-spacing:-16.430472px;}
.ws3_c02137{word-spacing:-13.500000px;}
.ws0_c02137{word-spacing:-12.151944px;}
.ws18_c02137{word-spacing:-0.272916px;}
.wsd_c02137{word-spacing:-0.225036px;}
.wsa_c02137{word-spacing:-0.215460px;}
.ws15_c02137{word-spacing:-0.210672px;}
.ws23_c02137{word-spacing:-0.191520px;}
.ws8_c02137{word-spacing:-0.186732px;}
.ws1b_c02137{word-spacing:-0.172368px;}
.ws27_c02137{word-spacing:-0.129600px;}
.ws1d_c02137{word-spacing:-0.119700px;}
.wsb_c02137{word-spacing:-0.114912px;}
.ws1c_c02137{word-spacing:-0.110124px;}
.ws17_c02137{word-spacing:-0.101088px;}
.ws19_c02137{word-spacing:-0.081396px;}
.wsf_c02137{word-spacing:-0.076608px;}
.wse_c02137{word-spacing:-0.057456px;}
.ws24_c02137{word-spacing:-0.050400px;}
.ws9_c02137{word-spacing:-0.038304px;}
.wsc_c02137{word-spacing:-0.023940px;}
.ws6_c02137{word-spacing:0.000000px;}
.ws16_c02137{word-spacing:0.007200px;}
.ws7_c02137{word-spacing:0.013176px;}
.ws5_c02137{word-spacing:0.014400px;}
.ws1f_c02137{word-spacing:0.866628px;}
.ws1e_c02137{word-spacing:0.880992px;}
.ws12_c02137{word-spacing:1.235304px;}
.ws14_c02137{word-spacing:1.273608px;}
.ws13_c02137{word-spacing:1.307124px;}
.ws20_c02137{word-spacing:2.724372px;}
.ws22_c02137{word-spacing:2.748312px;}
.ws21_c02137{word-spacing:2.762676px;}
.ws10_c02137{word-spacing:5.941908px;}
.ws11_c02137{word-spacing:5.961060px;}
.ws2_c02137{word-spacing:58.969440px;}
.ws26_c02137{word-spacing:104.922000px;}
.ws25_c02137{word-spacing:119.664000px;}
.ws1a_c02137{word-spacing:156.735000px;}
._2b_c02137{margin-left:-57.679200px;}
._2d_c02137{margin-left:-29.516400px;}
._1_c02137{margin-left:-1.146312px;}
._4_c02137{width:1.268820px;}
._2c_c02137{width:24.337800px;}
._24_c02137{width:42.256800px;}
._1a_c02137{width:50.937552px;}
._1f_c02137{width:62.053200px;}
._32_c02137{width:63.244440px;}
._1d_c02137{width:65.340000px;}
._17_c02137{width:72.604440px;}
._21_c02137{width:75.420000px;}
._18_c02137{width:77.310180px;}
._31_c02137{width:82.427688px;}
._22_c02137{width:84.060000px;}
._10_c02137{width:85.194000px;}
._f_c02137{width:88.221600px;}
._33_c02137{width:90.270180px;}
._1e_c02137{width:92.304000px;}
._1c_c02137{width:94.564296px;}
._19_c02137{width:100.015200px;}
._1b_c02137{width:104.575140px;}
._29_c02137{width:108.435600px;}
._28_c02137{width:111.720168px;}
._34_c02137{width:112.975200px;}
._14_c02137{width:114.216120px;}
._12_c02137{width:115.740000px;}
._13_c02137{width:118.378944px;}
._26_c02137{width:120.067668px;}
._11_c02137{width:122.220000px;}
._27_c02137{width:124.666920px;}
._23_c02137{width:128.162160px;}
._20_c02137{width:129.352860px;}
._2a_c02137{width:133.247016px;}
._2f_c02137{width:137.098944px;}
._2e_c02137{width:139.914000px;}
._35_c02137{width:143.820000px;}
._25_c02137{width:144.900000px;}
._16_c02137{width:148.307688px;}
._15_c02137{width:152.155404px;}
._0_c02137{width:194.400000px;}
._30_c02137{width:212.587524px;}
._e_c02137{width:216.361944px;}
._6_c02137{width:227.604168px;}
._3_c02137{width:287.726112px;}
._7_c02137{width:311.210280px;}
._c_c02137{width:370.894572px;}
._5_c02137{width:390.870108px;}
._8_c02137{width:440.901900px;}
._b_c02137{width:502.042680px;}
._a_c02137{width:528.603696px;}
._9_c02137{width:530.397216px;}
._2_c02137{width:582.576192px;}
._d_c02137{width:810.964440px;}
.fc0_c02137{color:rgb(0,0,0);}
.fs6_c02137{font-size:11.880000px;}
.fs5_c02137{font-size:36.000000px;}
.fs4_c02137{font-size:42.120000px;}
.fs2_c02137{font-size:47.880000px;}
.fs3_c02137{font-size:54.000000px;}
.fs1_c02137{font-size:65.880000px;}
.fs0_c02137{font-size:72.000000px;}
.y0_c02137{bottom:0.000000px;}
.y3_c02137{bottom:57.360450px;}
.y2_c02137{bottom:78.060450px;}
.y53_c02137{bottom:116.760720px;}
.y52_c02137{bottom:135.750630px;}
.y51_c02137{bottom:154.740540px;}
.y50_c02137{bottom:173.730450px;}
.y4f_c02137{bottom:192.000450px;}
.y4e_c02137{bottom:192.360150px;}
.y4d_c02137{bottom:210.990450px;}
.y4c_c02137{bottom:211.350000px;}
.y4b_c02137{bottom:229.980450px;}
.y4a_c02137{bottom:230.340000px;}
.y49_c02137{bottom:248.970450px;}
.y48_c02137{bottom:249.330000px;}
.y47_c02137{bottom:267.870450px;}
.y46_c02137{bottom:268.320450px;}
.y45_c02137{bottom:287.220450px;}
.y44_c02137{bottom:305.850450px;}
.y43_c02137{bottom:306.210600px;}
.y42_c02137{bottom:327.630450px;}
.y41_c02137{bottom:345.900450px;}
.y40_c02137{bottom:363.270450px;}
.y3f_c02137{bottom:384.060450px;}
.y3e_c02137{bottom:392.880450px;}
.y3d_c02137{bottom:393.240450px;}
.y3b_c02137{bottom:412.860600px;}
.y3c_c02137{bottom:412.950600px;}
.y3a_c02137{bottom:431.130450px;}
.y39_c02137{bottom:448.500450px;}
.y38_c02137{bottom:466.680600px;}
.y37_c02137{bottom:472.530000px;}
.y36_c02137{bottom:488.010450px;}
.y35_c02137{bottom:503.400099px;}
.y34_c02137{bottom:517.260162px;}
.y33_c02137{bottom:531.030450px;}
.y32_c02137{bottom:546.780450px;}
.y31_c02137{bottom:560.640450px;}
.y30_c02137{bottom:574.410450px;}
.y2f_c02137{bottom:588.180450px;}
.y2e_c02137{bottom:602.040450px;}
.y2d_c02137{bottom:615.810450px;}
.y2c_c02137{bottom:629.580450px;}
.y2b_c02137{bottom:643.440450px;}
.y28_c02137{bottom:659.460450px;}
.y2a_c02137{bottom:659.730450px;}
.y29_c02137{bottom:675.750450px;}
.y27_c02137{bottom:692.850450px;}
.y26_c02137{bottom:710.310450px;}
.y25_c02137{bottom:720.660450px;}
.y24_c02137{bottom:731.730450px;}
.y23_c02137{bottom:732.090000px;}
.y22_c02137{bottom:750.720450px;}
.y21_c02137{bottom:751.080000px;}
.y20_c02137{bottom:769.710450px;}
.y1f_c02137{bottom:770.070000px;}
.y1e_c02137{bottom:788.700450px;}
.y1d_c02137{bottom:789.060000px;}
.y1c_c02137{bottom:807.600450px;}
.y1b_c02137{bottom:808.050450px;}
.y1a_c02137{bottom:826.950450px;}
.y19_c02137{bottom:845.580450px;}
.y18_c02137{bottom:845.940450px;}
.y17_c02137{bottom:867.360600px;}
.y16_c02137{bottom:885.630450px;}
.y15_c02137{bottom:903.000450px;}
.y14_c02137{bottom:923.429523px;}
.y13_c02137{bottom:937.199811px;}
.y12_c02137{bottom:950.970099px;}
.y11_c02137{bottom:964.830162px;}
.y10_c02137{bottom:978.600450px;}
.yf_c02137{bottom:994.350450px;}
.ye_c02137{bottom:1008.210450px;}
.yd_c02137{bottom:1021.980450px;}
.yc_c02137{bottom:1035.750450px;}
.yb_c02137{bottom:1049.610450px;}
.ya_c02137{bottom:1063.380450px;}
.y9_c02137{bottom:1077.150450px;}
.y8_c02137{bottom:1091.010450px;}
.y5_c02137{bottom:1107.030450px;}
.y7_c02137{bottom:1107.300450px;}
.y6_c02137{bottom:1123.320450px;}
.y4_c02137{bottom:1141.500450px;}
.y1_c02137{bottom:1193.160450px;}
.he_c02137{height:10.551621px;}
.hc_c02137{height:31.587891px;}
.h5_c02137{height:42.011895px;}
.h6_c02137{height:42.526230px;}
.h4_c02137{height:43.091895px;}
.h8_c02137{height:47.961914px;}
.hf_c02137{height:57.805840px;}
.h3_c02137{height:58.513535px;}
.ha_c02137{height:61.393535px;}
.hb_c02137{height:62.473535px;}
.h10_c02137{height:62.474135px;}
.h9_c02137{height:62.833535px;}
.h2_c02137{height:63.175781px;}
.h1_c02137{height:63.949219px;}
.hd_c02137{height:70.451895px;}
.h7_c02137{height:70.811895px;}
.h0_c02137{height:1263.000000px;}
.w1_c02137{width:892.500000px;}
.w0_c02137{width:892.830000px;}
.x0_c02137{left:0.000000px;}
.x1_c02137{left:127.620000px;}
.x3_c02137{left:134.550000px;}
.x6_c02137{left:135.630000px;}
.x7_c02137{left:143.820000px;}
.x8_c02137{left:164.880000px;}
.x9_c02137{left:220.680000px;}
.x4_c02137{left:373.230000px;}
.xa_c02137{left:380.700000px;}
.x5_c02137{left:403.740000px;}
.x2_c02137{left:437.580000px;}
.xb_c02137{left:717.930000px;}
@media print{
.v5_c02137{vertical-align:-3.840533pt;}
.v4_c02137{vertical-align:-2.560533pt;}
.v3_c02137{vertical-align:-1.280000pt;}
.v0_c02137{vertical-align:0.000000pt;}
.v1_c02137{vertical-align:0.960000pt;}
.v6_c02137{vertical-align:2.240000pt;}
.v7_c02137{vertical-align:3.840000pt;}
.v2_c02137{vertical-align:25.600000pt;}
.ls2a_c02137{letter-spacing:-0.080864pt;}
.ls31_c02137{letter-spacing:-0.076608pt;}
.ls27_c02137{letter-spacing:-0.059584pt;}
.ls26_c02137{letter-spacing:-0.046816pt;}
.ls2e_c02137{letter-spacing:-0.038400pt;}
.ls34_c02137{letter-spacing:-0.035136pt;}
.ls28_c02137{letter-spacing:-0.029792pt;}
.ls25_c02137{letter-spacing:-0.017024pt;}
.ls22_c02137{letter-spacing:-0.012800pt;}
.ls29_c02137{letter-spacing:-0.012768pt;}
.ls2f_c02137{letter-spacing:-0.009600pt;}
.ls2b_c02137{letter-spacing:-0.008512pt;}
.ls2c_c02137{letter-spacing:-0.006400pt;}
.ls33_c02137{letter-spacing:-0.004256pt;}
.ls23_c02137{letter-spacing:0.000000pt;}
.ls1_c02137{letter-spacing:0.005856pt;}
.lsf_c02137{letter-spacing:0.009600pt;}
.ls10_c02137{letter-spacing:0.011232pt;}
.ls21_c02137{letter-spacing:0.012800pt;}
.ls20_c02137{letter-spacing:0.014400pt;}
.ls1a_c02137{letter-spacing:0.017024pt;}
.ls5_c02137{letter-spacing:0.021280pt;}
.ls8_c02137{letter-spacing:0.025536pt;}
.ls11_c02137{letter-spacing:0.028800pt;}
.ls17_c02137{letter-spacing:0.033600pt;}
.lsc_c02137{letter-spacing:0.038304pt;}
.ls15_c02137{letter-spacing:0.038400pt;}
.ls1e_c02137{letter-spacing:0.044800pt;}
.lsa_c02137{letter-spacing:0.059584pt;}
.lsd_c02137{letter-spacing:0.068096pt;}
.ls0_c02137{letter-spacing:0.070272pt;}
.ls14_c02137{letter-spacing:0.072352pt;}
.ls9_c02137{letter-spacing:0.076608pt;}
.ls1b_c02137{letter-spacing:0.081984pt;}
.ls2_c02137{letter-spacing:0.085120pt;}
.ls1d_c02137{letter-spacing:0.089376pt;}
.ls1c_c02137{letter-spacing:0.097888pt;}
.lsb_c02137{letter-spacing:0.102144pt;}
.lse_c02137{letter-spacing:0.106400pt;}
.ls4_c02137{letter-spacing:0.110656pt;}
.ls6_c02137{letter-spacing:0.119168pt;}
.ls2d_c02137{letter-spacing:0.134400pt;}
.ls24_c02137{letter-spacing:0.136192pt;}
.ls12_c02137{letter-spacing:0.140544pt;}
.ls30_c02137{letter-spacing:0.148960pt;}
.ls18_c02137{letter-spacing:0.158400pt;}
.ls3_c02137{letter-spacing:0.161728pt;}
.ls35_c02137{letter-spacing:0.238336pt;}
.ls19_c02137{letter-spacing:93.283200pt;}
.ls1f_c02137{letter-spacing:99.840000pt;}
.ls13_c02137{letter-spacing:100.800000pt;}
.ls36_c02137{letter-spacing:127.838400pt;}
.ls32_c02137{letter-spacing:128.798400pt;}
.ls16_c02137{letter-spacing:178.480000pt;}
.ls7_c02137{letter-spacing:202.800000pt;}
.ws1_c02137{word-spacing:-14.780544pt;}
.ws4_c02137{word-spacing:-14.604864pt;}
.ws3_c02137{word-spacing:-12.000000pt;}
.ws0_c02137{word-spacing:-10.801728pt;}
.ws18_c02137{word-spacing:-0.242592pt;}
.wsd_c02137{word-spacing:-0.200032pt;}
.wsa_c02137{word-spacing:-0.191520pt;}
.ws15_c02137{word-spacing:-0.187264pt;}
.ws23_c02137{word-spacing:-0.170240pt;}
.ws8_c02137{word-spacing:-0.165984pt;}
.ws1b_c02137{word-spacing:-0.153216pt;}
.ws27_c02137{word-spacing:-0.115200pt;}
.ws1d_c02137{word-spacing:-0.106400pt;}
.wsb_c02137{word-spacing:-0.102144pt;}
.ws1c_c02137{word-spacing:-0.097888pt;}
.ws17_c02137{word-spacing:-0.089856pt;}
.ws19_c02137{word-spacing:-0.072352pt;}
.wsf_c02137{word-spacing:-0.068096pt;}
.wse_c02137{word-spacing:-0.051072pt;}
.ws24_c02137{word-spacing:-0.044800pt;}
.ws9_c02137{word-spacing:-0.034048pt;}
.wsc_c02137{word-spacing:-0.021280pt;}
.ws6_c02137{word-spacing:0.000000pt;}
.ws16_c02137{word-spacing:0.006400pt;}
.ws7_c02137{word-spacing:0.011712pt;}
.ws5_c02137{word-spacing:0.012800pt;}
.ws1f_c02137{word-spacing:0.770336pt;}
.ws1e_c02137{word-spacing:0.783104pt;}
.ws12_c02137{word-spacing:1.098048pt;}
.ws14_c02137{word-spacing:1.132096pt;}
.ws13_c02137{word-spacing:1.161888pt;}
.ws20_c02137{word-spacing:2.421664pt;}
.ws22_c02137{word-spacing:2.442944pt;}
.ws21_c02137{word-spacing:2.455712pt;}
.ws10_c02137{word-spacing:5.281696pt;}
.ws11_c02137{word-spacing:5.298720pt;}
.ws2_c02137{word-spacing:52.417280pt;}
.ws26_c02137{word-spacing:93.264000pt;}
.ws25_c02137{word-spacing:106.368000pt;}
.ws1a_c02137{word-spacing:139.320000pt;}
._2b_c02137{margin-left:-51.270400pt;}
._2d_c02137{margin-left:-26.236800pt;}
._1_c02137{margin-left:-1.018944pt;}
._4_c02137{width:1.127840pt;}
._2c_c02137{width:21.633600pt;}
._24_c02137{width:37.561600pt;}
._1a_c02137{width:45.277824pt;}
._1f_c02137{width:55.158400pt;}
._32_c02137{width:56.217280pt;}
._1d_c02137{width:58.080000pt;}
._17_c02137{width:64.537280pt;}
._21_c02137{width:67.040000pt;}
._18_c02137{width:68.720160pt;}
._31_c02137{width:73.269056pt;}
._22_c02137{width:74.720000pt;}
._10_c02137{width:75.728000pt;}
._f_c02137{width:78.419200pt;}
._33_c02137{width:80.240160pt;}
._1e_c02137{width:82.048000pt;}
._1c_c02137{width:84.057152pt;}
._19_c02137{width:88.902400pt;}
._1b_c02137{width:92.955680pt;}
._29_c02137{width:96.387200pt;}
._28_c02137{width:99.306816pt;}
._34_c02137{width:100.422400pt;}
._14_c02137{width:101.525440pt;}
._12_c02137{width:102.880000pt;}
._13_c02137{width:105.225728pt;}
._26_c02137{width:106.726816pt;}
._11_c02137{width:108.640000pt;}
._27_c02137{width:110.815040pt;}
._23_c02137{width:113.921920pt;}
._20_c02137{width:114.980320pt;}
._2a_c02137{width:118.441792pt;}
._2f_c02137{width:121.865728pt;}
._2e_c02137{width:124.368000pt;}
._35_c02137{width:127.840000pt;}
._25_c02137{width:128.800000pt;}
._16_c02137{width:131.829056pt;}
._15_c02137{width:135.249248pt;}
._0_c02137{width:172.800000pt;}
._30_c02137{width:188.966688pt;}
._e_c02137{width:192.321728pt;}
._6_c02137{width:202.314816pt;}
._3_c02137{width:255.756544pt;}
._7_c02137{width:276.631360pt;}
._c_c02137{width:329.684064pt;}
._5_c02137{width:347.440096pt;}
._8_c02137{width:391.912800pt;}
._b_c02137{width:446.260160pt;}
._a_c02137{width:469.869952pt;}
._9_c02137{width:471.464192pt;}
._2_c02137{width:517.845504pt;}
._d_c02137{width:720.857280pt;}
.fs6_c02137{font-size:10.560000pt;}
.fs5_c02137{font-size:32.000000pt;}
.fs4_c02137{font-size:37.440000pt;}
.fs2_c02137{font-size:42.560000pt;}
.fs3_c02137{font-size:48.000000pt;}
.fs1_c02137{font-size:58.560000pt;}
.fs0_c02137{font-size:64.000000pt;}
.y0_c02137{bottom:0.000000pt;}
.y3_c02137{bottom:50.987067pt;}
.y2_c02137{bottom:69.387067pt;}
.y53_c02137{bottom:103.787307pt;}
.y52_c02137{bottom:120.667227pt;}
.y51_c02137{bottom:137.547147pt;}
.y50_c02137{bottom:154.427067pt;}
.y4f_c02137{bottom:170.667067pt;}
.y4e_c02137{bottom:170.986800pt;}
.y4d_c02137{bottom:187.547067pt;}
.y4c_c02137{bottom:187.866667pt;}
.y4b_c02137{bottom:204.427067pt;}
.y4a_c02137{bottom:204.746667pt;}
.y49_c02137{bottom:221.307067pt;}
.y48_c02137{bottom:221.626667pt;}
.y47_c02137{bottom:238.107067pt;}
.y46_c02137{bottom:238.507067pt;}
.y45_c02137{bottom:255.307067pt;}
.y44_c02137{bottom:271.867067pt;}
.y43_c02137{bottom:272.187200pt;}
.y42_c02137{bottom:291.227067pt;}
.y41_c02137{bottom:307.467067pt;}
.y40_c02137{bottom:322.907067pt;}
.y3f_c02137{bottom:341.387067pt;}
.y3e_c02137{bottom:349.227067pt;}
.y3d_c02137{bottom:349.547067pt;}
.y3b_c02137{bottom:366.987200pt;}
.y3c_c02137{bottom:367.067200pt;}
.y3a_c02137{bottom:383.227067pt;}
.y39_c02137{bottom:398.667067pt;}
.y38_c02137{bottom:414.827200pt;}
.y37_c02137{bottom:420.026667pt;}
.y36_c02137{bottom:433.787067pt;}
.y35_c02137{bottom:447.466755pt;}
.y34_c02137{bottom:459.786811pt;}
.y33_c02137{bottom:472.027067pt;}
.y32_c02137{bottom:486.027067pt;}
.y31_c02137{bottom:498.347067pt;}
.y30_c02137{bottom:510.587067pt;}
.y2f_c02137{bottom:522.827067pt;}
.y2e_c02137{bottom:535.147067pt;}
.y2d_c02137{bottom:547.387067pt;}
.y2c_c02137{bottom:559.627067pt;}
.y2b_c02137{bottom:571.947067pt;}
.y28_c02137{bottom:586.187067pt;}
.y2a_c02137{bottom:586.427067pt;}
.y29_c02137{bottom:600.667067pt;}
.y27_c02137{bottom:615.867067pt;}
.y26_c02137{bottom:631.387067pt;}
.y25_c02137{bottom:640.587067pt;}
.y24_c02137{bottom:650.427067pt;}
.y23_c02137{bottom:650.746667pt;}
.y22_c02137{bottom:667.307067pt;}
.y21_c02137{bottom:667.626667pt;}
.y20_c02137{bottom:684.187067pt;}
.y1f_c02137{bottom:684.506667pt;}
.y1e_c02137{bottom:701.067067pt;}
.y1d_c02137{bottom:701.386667pt;}
.y1c_c02137{bottom:717.867067pt;}
.y1b_c02137{bottom:718.267067pt;}
.y1a_c02137{bottom:735.067067pt;}
.y19_c02137{bottom:751.627067pt;}
.y18_c02137{bottom:751.947067pt;}
.y17_c02137{bottom:770.987200pt;}
.y16_c02137{bottom:787.227067pt;}
.y15_c02137{bottom:802.667067pt;}
.y14_c02137{bottom:820.826243pt;}
.y13_c02137{bottom:833.066499pt;}
.y12_c02137{bottom:845.306755pt;}
.y11_c02137{bottom:857.626811pt;}
.y10_c02137{bottom:869.867067pt;}
.yf_c02137{bottom:883.867067pt;}
.ye_c02137{bottom:896.187067pt;}
.yd_c02137{bottom:908.427067pt;}
.yc_c02137{bottom:920.667067pt;}
.yb_c02137{bottom:932.987067pt;}
.ya_c02137{bottom:945.227067pt;}
.y9_c02137{bottom:957.467067pt;}
.y8_c02137{bottom:969.787067pt;}
.y5_c02137{bottom:984.027067pt;}
.y7_c02137{bottom:984.267067pt;}
.y6_c02137{bottom:998.507067pt;}
.y4_c02137{bottom:1014.667067pt;}
.y1_c02137{bottom:1060.587067pt;}
.he_c02137{height:9.379219pt;}
.hc_c02137{height:28.078125pt;}
.h5_c02137{height:37.343906pt;}
.h6_c02137{height:37.801094pt;}
.h4_c02137{height:38.303906pt;}
.h8_c02137{height:42.632812pt;}
.hf_c02137{height:51.382969pt;}
.h3_c02137{height:52.012031pt;}
.ha_c02137{height:54.572031pt;}
.hb_c02137{height:55.532031pt;}
.h10_c02137{height:55.532565pt;}
.h9_c02137{height:55.852031pt;}
.h2_c02137{height:56.156250pt;}
.h1_c02137{height:56.843750pt;}
.hd_c02137{height:62.623906pt;}
.h7_c02137{height:62.943906pt;}
.h0_c02137{height:1122.666667pt;}
.w1_c02137{width:793.333333pt;}
.w0_c02137{width:793.626667pt;}
.x0_c02137{left:0.000000pt;}
.x1_c02137{left:113.440000pt;}
.x3_c02137{left:119.600000pt;}
.x6_c02137{left:120.560000pt;}
.x7_c02137{left:127.840000pt;}
.x8_c02137{left:146.560000pt;}
.x9_c02137{left:196.160000pt;}
.x4_c02137{left:331.760000pt;}
.xa_c02137{left:338.400000pt;}
.x5_c02137{left:358.880000pt;}
.x2_c02137{left:388.960000pt;}
.xb_c02137{left:638.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_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_edf3912769550fca819d77b6.woff2')format("woff");}.ff1_c02138{font-family:ff1_c02138;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02138;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v8_c02138{vertical-align:-9.000000px;}
.v5_c02138{vertical-align:-4.320000px;}
.v4_c02138{vertical-align:-2.880000px;}
.v3_c02138{vertical-align:-1.440000px;}
.v0_c02138{vertical-align:0.000000px;}
.v1_c02138{vertical-align:1.080000px;}
.v6_c02138{vertical-align:2.519400px;}
.v7_c02138{vertical-align:4.319400px;}
.v9_c02138{vertical-align:18.720000px;}
.v2_c02138{vertical-align:32.040000px;}
.ls21_c02138{letter-spacing:-0.178200px;}
.ls2c_c02138{letter-spacing:-0.144288px;}
.ls1d_c02138{letter-spacing:-0.118800px;}
.ls20_c02138{letter-spacing:-0.102600px;}
.ls1e_c02138{letter-spacing:-0.086400px;}
.ls28_c02138{letter-spacing:-0.086184px;}
.ls24_c02138{letter-spacing:-0.043200px;}
.ls26_c02138{letter-spacing:-0.019152px;}
.ls1f_c02138{letter-spacing:-0.016200px;}
.ls1b_c02138{letter-spacing:-0.014400px;}
.ls25_c02138{letter-spacing:-0.010800px;}
.ls2a_c02138{letter-spacing:-0.009576px;}
.ls2b_c02138{letter-spacing:-0.004788px;}
.ls1c_c02138{letter-spacing:0.000000px;}
.ls1_c02138{letter-spacing:0.005400px;}
.ls1a_c02138{letter-spacing:0.006588px;}
.ls6_c02138{letter-spacing:0.010800px;}
.lsf_c02138{letter-spacing:0.012636px;}
.ls7_c02138{letter-spacing:0.016200px;}
.ls17_c02138{letter-spacing:0.019152px;}
.ls8_c02138{letter-spacing:0.027000px;}
.lsc_c02138{letter-spacing:0.028728px;}
.ls18_c02138{letter-spacing:0.028800px;}
.ls4_c02138{letter-spacing:0.032400px;}
.ls9_c02138{letter-spacing:0.037800px;}
.ls0_c02138{letter-spacing:0.039528px;}
.lsd_c02138{letter-spacing:0.043092px;}
.ls5_c02138{letter-spacing:0.043200px;}
.ls19_c02138{letter-spacing:0.059292px;}
.lsb_c02138{letter-spacing:0.067032px;}
.lsa_c02138{letter-spacing:0.081396px;}
.ls2_c02138{letter-spacing:0.095760px;}
.lse_c02138{letter-spacing:0.100548px;}
.ls15_c02138{letter-spacing:0.124488px;}
.ls16_c02138{letter-spacing:0.134064px;}
.ls23_c02138{letter-spacing:0.151200px;}
.ls10_c02138{letter-spacing:0.158112px;}
.ls27_c02138{letter-spacing:0.167580px;}
.ls3_c02138{letter-spacing:0.181944px;}
.ls22_c02138{letter-spacing:0.268128px;}
.ls11_c02138{letter-spacing:112.680000px;}
.ls29_c02138{letter-spacing:144.180000px;}
.ls14_c02138{letter-spacing:156.778200px;}
.ls13_c02138{letter-spacing:199.260000px;}
.ls12_c02138{letter-spacing:200.790000px;}
.sc__c02138{text-shadow:none;}
.sc0_c02138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02138{-webkit-text-stroke:0px transparent;}
.sc0_c02138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02138{word-spacing:-16.628112px;}
.ws0_c02138{word-spacing:-16.509528px;}
.ws3_c02138{word-spacing:-16.476588px;}
.ws16_c02138{word-spacing:-0.272916px;}
.ws1a_c02138{word-spacing:-0.225036px;}
.ws19_c02138{word-spacing:-0.215460px;}
.ws14_c02138{word-spacing:-0.191520px;}
.wsb_c02138{word-spacing:-0.189000px;}
.ws7_c02138{word-spacing:-0.186732px;}
.ws1c_c02138{word-spacing:-0.172368px;}
.ws1e_c02138{word-spacing:-0.119700px;}
.ws1f_c02138{word-spacing:-0.115200px;}
.ws1d_c02138{word-spacing:-0.110124px;}
.ws15_c02138{word-spacing:-0.101088px;}
.ws17_c02138{word-spacing:-0.081396px;}
.ws5_c02138{word-spacing:0.000000px;}
.ws4_c02138{word-spacing:0.014400px;}
.ws20_c02138{word-spacing:0.032940px;}
.ws6_c02138{word-spacing:0.052704px;}
.ws8_c02138{word-spacing:0.145800px;}
.wsd_c02138{word-spacing:0.151200px;}
.wsc_c02138{word-spacing:0.162000px;}
.wsa_c02138{word-spacing:0.194400px;}
.ws9_c02138{word-spacing:0.264600px;}
.wse_c02138{word-spacing:0.280800px;}
.wsf_c02138{word-spacing:0.536256px;}
.ws10_c02138{word-spacing:0.550620px;}
.ws11_c02138{word-spacing:2.724372px;}
.ws13_c02138{word-spacing:2.748312px;}
.ws12_c02138{word-spacing:2.762676px;}
.ws2_c02138{word-spacing:58.969440px;}
.ws1b_c02138{word-spacing:156.735000px;}
.ws18_c02138{word-spacing:240.975000px;}
._e_c02138{margin-left:-1.163484px;}
._a_c02138{width:1.026000px;}
._25_c02138{width:41.482800px;}
._26_c02138{width:42.541200px;}
._1a_c02138{width:50.937552px;}
._1e_c02138{width:62.978256px;}
._1d_c02138{width:65.340000px;}
._17_c02138{width:72.604440px;}
._20_c02138{width:75.420000px;}
._18_c02138{width:77.310180px;}
._10_c02138{width:84.834000px;}
._f_c02138{width:88.221600px;}
._2a_c02138{width:92.304000px;}
._1c_c02138{width:94.564296px;}
._19_c02138{width:100.015200px;}
._1b_c02138{width:104.575140px;}
._28_c02138{width:108.435600px;}
._27_c02138{width:111.720168px;}
._14_c02138{width:114.216120px;}
._12_c02138{width:115.740000px;}
._13_c02138{width:118.378944px;}
._23_c02138{width:120.067668px;}
._11_c02138{width:122.220000px;}
._24_c02138{width:124.666920px;}
._21_c02138{width:128.162160px;}
._1f_c02138{width:129.352860px;}
._29_c02138{width:133.247016px;}
._22_c02138{width:144.180000px;}
._16_c02138{width:148.307688px;}
._15_c02138{width:152.155404px;}
._0_c02138{width:194.400000px;}
._d_c02138{width:203.036400px;}
._4_c02138{width:216.180000px;}
._2c_c02138{width:283.500000px;}
._2_c02138{width:287.726112px;}
._9_c02138{width:303.170400px;}
._5_c02138{width:310.104000px;}
._3_c02138{width:324.775800px;}
._8_c02138{width:382.210200px;}
._b_c02138{width:451.783800px;}
._7_c02138{width:482.234400px;}
._6_c02138{width:483.924600px;}
._2b_c02138{width:540.984384px;}
._1_c02138{width:560.692800px;}
._c_c02138{width:799.695000px;}
.fc0_c02138{color:rgb(0,0,0);}
.fs5_c02138{font-size:11.880000px;}
.fs4_c02138{font-size:42.120000px;}
.fs3_c02138{font-size:47.880000px;}
.fs2_c02138{font-size:54.000000px;}
.fs6_c02138{font-size:60.120000px;}
.fs1_c02138{font-size:65.880000px;}
.fs0_c02138{font-size:72.000000px;}
.y0_c02138{bottom:0.000000px;}
.y3_c02138{bottom:57.360450px;}
.y2_c02138{bottom:78.060450px;}
.y4e_c02138{bottom:124.140600px;}
.y4d_c02138{bottom:139.621050px;}
.y4c_c02138{bottom:155.460600px;}
.y4b_c02138{bottom:170.580249px;}
.y4a_c02138{bottom:184.440312px;}
.y49_c02138{bottom:198.210600px;}
.y48_c02138{bottom:219.270450px;}
.y47_c02138{bottom:239.790600px;}
.y46_c02138{bottom:260.220450px;}
.y45_c02138{bottom:282.540450px;}
.y44_c02138{bottom:298.020450px;}
.y43_c02138{bottom:318.540450px;}
.y42_c02138{bottom:338.970450px;}
.y41_c02138{bottom:359.490450px;}
.y3f_c02138{bottom:377.490450px;}
.y40_c02138{bottom:394.950600px;}
.y3e_c02138{bottom:411.780450px;}
.y3d_c02138{bottom:427.800450px;}
.y3c_c02138{bottom:433.470450px;}
.y3b_c02138{bottom:433.830150px;}
.y3a_c02138{bottom:452.460600px;}
.y39_c02138{bottom:452.820000px;}
.y38_c02138{bottom:471.450600px;}
.y37_c02138{bottom:471.810000px;}
.y36_c02138{bottom:490.440600px;}
.y35_c02138{bottom:490.800000px;}
.y34_c02138{bottom:509.430600px;}
.y33_c02138{bottom:509.790600px;}
.y32_c02138{bottom:528.780450px;}
.y31_c02138{bottom:547.320450px;}
.y30_c02138{bottom:547.680450px;}
.y2f_c02138{bottom:569.100450px;}
.y2e_c02138{bottom:587.370450px;}
.y2d_c02138{bottom:604.740450px;}
.y2c_c02138{bottom:625.530450px;}
.y2b_c02138{bottom:634.350450px;}
.y2a_c02138{bottom:634.710450px;}
.y29_c02138{bottom:654.330450px;}
.y28_c02138{bottom:672.690450px;}
.y27_c02138{bottom:690.060450px;}
.y26_c02138{bottom:710.760450px;}
.y25_c02138{bottom:719.580450px;}
.y24_c02138{bottom:719.940000px;}
.y23_c02138{bottom:738.570450px;}
.y22_c02138{bottom:738.930000px;}
.y21_c02138{bottom:757.560450px;}
.y20_c02138{bottom:757.920000px;}
.y1f_c02138{bottom:776.550450px;}
.y1e_c02138{bottom:776.910000px;}
.y1d_c02138{bottom:795.450450px;}
.y1c_c02138{bottom:795.900450px;}
.y1b_c02138{bottom:814.800450px;}
.y19_c02138{bottom:833.430600px;}
.y1a_c02138{bottom:833.790450px;}
.y18_c02138{bottom:833.790600px;}
.y17_c02138{bottom:855.210450px;}
.y16_c02138{bottom:873.480450px;}
.y15_c02138{bottom:890.850450px;}
.y14_c02138{bottom:910.919523px;}
.y13_c02138{bottom:924.689811px;}
.y12_c02138{bottom:938.460099px;}
.y11_c02138{bottom:952.320162px;}
.y10_c02138{bottom:966.090450px;}
.yf_c02138{bottom:982.200450px;}
.ye_c02138{bottom:997.770450px;}
.yd_c02138{bottom:1013.250450px;}
.yc_c02138{bottom:1028.820450px;}
.yb_c02138{bottom:1044.300450px;}
.ya_c02138{bottom:1059.870450px;}
.y9_c02138{bottom:1075.350450px;}
.y8_c02138{bottom:1090.920450px;}
.y7_c02138{bottom:1108.560450px;}
.y5_c02138{bottom:1108.650450px;}
.y6_c02138{bottom:1124.580450px;}
.y4_c02138{bottom:1141.500450px;}
.y1_c02138{bottom:1193.160450px;}
.h11_c02138{height:10.424004px;}
.he_c02138{height:10.551621px;}
.h5_c02138{height:42.011895px;}
.h13_c02138{height:47.381836px;}
.h6_c02138{height:47.961914px;}
.h4_c02138{height:48.461836px;}
.h8_c02138{height:48.462436px;}
.h12_c02138{height:53.397598px;}
.h3_c02138{height:58.513535px;}
.hf_c02138{height:61.033535px;}
.ha_c02138{height:61.393535px;}
.h10_c02138{height:62.472935px;}
.hd_c02138{height:62.473535px;}
.hc_c02138{height:62.474135px;}
.h9_c02138{height:62.832935px;}
.hb_c02138{height:62.833535px;}
.h2_c02138{height:63.175781px;}
.h1_c02138{height:63.949219px;}
.h14_c02138{height:66.101836px;}
.h7_c02138{height:79.421836px;}
.h0_c02138{height:1263.000000px;}
.w1_c02138{width:892.500000px;}
.w0_c02138{width:892.830000px;}
.x0_c02138{left:0.000000px;}
.x1_c02138{left:127.620000px;}
.x3_c02138{left:134.550000px;}
.x6_c02138{left:135.630000px;}
.x7_c02138{left:143.910000px;}
.x8_c02138{left:165.060000px;}
.x9_c02138{left:220.680000px;}
.x4_c02138{left:380.700000px;}
.x5_c02138{left:403.740000px;}
.x2_c02138{left:437.580000px;}
.xa_c02138{left:555.299550px;}
@media print{
.v8_c02138{vertical-align:-8.000000pt;}
.v5_c02138{vertical-align:-3.840000pt;}
.v4_c02138{vertical-align:-2.560000pt;}
.v3_c02138{vertical-align:-1.280000pt;}
.v0_c02138{vertical-align:0.000000pt;}
.v1_c02138{vertical-align:0.960000pt;}
.v6_c02138{vertical-align:2.239467pt;}
.v7_c02138{vertical-align:3.839467pt;}
.v9_c02138{vertical-align:16.640000pt;}
.v2_c02138{vertical-align:28.480000pt;}
.ls21_c02138{letter-spacing:-0.158400pt;}
.ls2c_c02138{letter-spacing:-0.128256pt;}
.ls1d_c02138{letter-spacing:-0.105600pt;}
.ls20_c02138{letter-spacing:-0.091200pt;}
.ls1e_c02138{letter-spacing:-0.076800pt;}
.ls28_c02138{letter-spacing:-0.076608pt;}
.ls24_c02138{letter-spacing:-0.038400pt;}
.ls26_c02138{letter-spacing:-0.017024pt;}
.ls1f_c02138{letter-spacing:-0.014400pt;}
.ls1b_c02138{letter-spacing:-0.012800pt;}
.ls25_c02138{letter-spacing:-0.009600pt;}
.ls2a_c02138{letter-spacing:-0.008512pt;}
.ls2b_c02138{letter-spacing:-0.004256pt;}
.ls1c_c02138{letter-spacing:0.000000pt;}
.ls1_c02138{letter-spacing:0.004800pt;}
.ls1a_c02138{letter-spacing:0.005856pt;}
.ls6_c02138{letter-spacing:0.009600pt;}
.lsf_c02138{letter-spacing:0.011232pt;}
.ls7_c02138{letter-spacing:0.014400pt;}
.ls17_c02138{letter-spacing:0.017024pt;}
.ls8_c02138{letter-spacing:0.024000pt;}
.lsc_c02138{letter-spacing:0.025536pt;}
.ls18_c02138{letter-spacing:0.025600pt;}
.ls4_c02138{letter-spacing:0.028800pt;}
.ls9_c02138{letter-spacing:0.033600pt;}
.ls0_c02138{letter-spacing:0.035136pt;}
.lsd_c02138{letter-spacing:0.038304pt;}
.ls5_c02138{letter-spacing:0.038400pt;}
.ls19_c02138{letter-spacing:0.052704pt;}
.lsb_c02138{letter-spacing:0.059584pt;}
.lsa_c02138{letter-spacing:0.072352pt;}
.ls2_c02138{letter-spacing:0.085120pt;}
.lse_c02138{letter-spacing:0.089376pt;}
.ls15_c02138{letter-spacing:0.110656pt;}
.ls16_c02138{letter-spacing:0.119168pt;}
.ls23_c02138{letter-spacing:0.134400pt;}
.ls10_c02138{letter-spacing:0.140544pt;}
.ls27_c02138{letter-spacing:0.148960pt;}
.ls3_c02138{letter-spacing:0.161728pt;}
.ls22_c02138{letter-spacing:0.238336pt;}
.ls11_c02138{letter-spacing:100.160000pt;}
.ls29_c02138{letter-spacing:128.160000pt;}
.ls14_c02138{letter-spacing:139.358400pt;}
.ls13_c02138{letter-spacing:177.120000pt;}
.ls12_c02138{letter-spacing:178.480000pt;}
.ws1_c02138{word-spacing:-14.780544pt;}
.ws0_c02138{word-spacing:-14.675136pt;}
.ws3_c02138{word-spacing:-14.645856pt;}
.ws16_c02138{word-spacing:-0.242592pt;}
.ws1a_c02138{word-spacing:-0.200032pt;}
.ws19_c02138{word-spacing:-0.191520pt;}
.ws14_c02138{word-spacing:-0.170240pt;}
.wsb_c02138{word-spacing:-0.168000pt;}
.ws7_c02138{word-spacing:-0.165984pt;}
.ws1c_c02138{word-spacing:-0.153216pt;}
.ws1e_c02138{word-spacing:-0.106400pt;}
.ws1f_c02138{word-spacing:-0.102400pt;}
.ws1d_c02138{word-spacing:-0.097888pt;}
.ws15_c02138{word-spacing:-0.089856pt;}
.ws17_c02138{word-spacing:-0.072352pt;}
.ws5_c02138{word-spacing:0.000000pt;}
.ws4_c02138{word-spacing:0.012800pt;}
.ws20_c02138{word-spacing:0.029280pt;}
.ws6_c02138{word-spacing:0.046848pt;}
.ws8_c02138{word-spacing:0.129600pt;}
.wsd_c02138{word-spacing:0.134400pt;}
.wsc_c02138{word-spacing:0.144000pt;}
.wsa_c02138{word-spacing:0.172800pt;}
.ws9_c02138{word-spacing:0.235200pt;}
.wse_c02138{word-spacing:0.249600pt;}
.wsf_c02138{word-spacing:0.476672pt;}
.ws10_c02138{word-spacing:0.489440pt;}
.ws11_c02138{word-spacing:2.421664pt;}
.ws13_c02138{word-spacing:2.442944pt;}
.ws12_c02138{word-spacing:2.455712pt;}
.ws2_c02138{word-spacing:52.417280pt;}
.ws1b_c02138{word-spacing:139.320000pt;}
.ws18_c02138{word-spacing:214.200000pt;}
._e_c02138{margin-left:-1.034208pt;}
._a_c02138{width:0.912000pt;}
._25_c02138{width:36.873600pt;}
._26_c02138{width:37.814400pt;}
._1a_c02138{width:45.277824pt;}
._1e_c02138{width:55.980672pt;}
._1d_c02138{width:58.080000pt;}
._17_c02138{width:64.537280pt;}
._20_c02138{width:67.040000pt;}
._18_c02138{width:68.720160pt;}
._10_c02138{width:75.408000pt;}
._f_c02138{width:78.419200pt;}
._2a_c02138{width:82.048000pt;}
._1c_c02138{width:84.057152pt;}
._19_c02138{width:88.902400pt;}
._1b_c02138{width:92.955680pt;}
._28_c02138{width:96.387200pt;}
._27_c02138{width:99.306816pt;}
._14_c02138{width:101.525440pt;}
._12_c02138{width:102.880000pt;}
._13_c02138{width:105.225728pt;}
._23_c02138{width:106.726816pt;}
._11_c02138{width:108.640000pt;}
._24_c02138{width:110.815040pt;}
._21_c02138{width:113.921920pt;}
._1f_c02138{width:114.980320pt;}
._29_c02138{width:118.441792pt;}
._22_c02138{width:128.160000pt;}
._16_c02138{width:131.829056pt;}
._15_c02138{width:135.249248pt;}
._0_c02138{width:172.800000pt;}
._d_c02138{width:180.476800pt;}
._4_c02138{width:192.160000pt;}
._2c_c02138{width:252.000000pt;}
._2_c02138{width:255.756544pt;}
._9_c02138{width:269.484800pt;}
._5_c02138{width:275.648000pt;}
._3_c02138{width:288.689600pt;}
._8_c02138{width:339.742400pt;}
._b_c02138{width:401.585600pt;}
._7_c02138{width:428.652800pt;}
._6_c02138{width:430.155200pt;}
._2b_c02138{width:480.875008pt;}
._1_c02138{width:498.393600pt;}
._c_c02138{width:710.840000pt;}
.fs5_c02138{font-size:10.560000pt;}
.fs4_c02138{font-size:37.440000pt;}
.fs3_c02138{font-size:42.560000pt;}
.fs2_c02138{font-size:48.000000pt;}
.fs6_c02138{font-size:53.440000pt;}
.fs1_c02138{font-size:58.560000pt;}
.fs0_c02138{font-size:64.000000pt;}
.y0_c02138{bottom:0.000000pt;}
.y3_c02138{bottom:50.987067pt;}
.y2_c02138{bottom:69.387067pt;}
.y4e_c02138{bottom:110.347200pt;}
.y4d_c02138{bottom:124.107600pt;}
.y4c_c02138{bottom:138.187200pt;}
.y4b_c02138{bottom:151.626888pt;}
.y4a_c02138{bottom:163.946944pt;}
.y49_c02138{bottom:176.187200pt;}
.y48_c02138{bottom:194.907067pt;}
.y47_c02138{bottom:213.147200pt;}
.y46_c02138{bottom:231.307067pt;}
.y45_c02138{bottom:251.147067pt;}
.y44_c02138{bottom:264.907067pt;}
.y43_c02138{bottom:283.147067pt;}
.y42_c02138{bottom:301.307067pt;}
.y41_c02138{bottom:319.547067pt;}
.y3f_c02138{bottom:335.547067pt;}
.y40_c02138{bottom:351.067200pt;}
.y3e_c02138{bottom:366.027067pt;}
.y3d_c02138{bottom:380.267067pt;}
.y3c_c02138{bottom:385.307067pt;}
.y3b_c02138{bottom:385.626800pt;}
.y3a_c02138{bottom:402.187200pt;}
.y39_c02138{bottom:402.506667pt;}
.y38_c02138{bottom:419.067200pt;}
.y37_c02138{bottom:419.386667pt;}
.y36_c02138{bottom:435.947200pt;}
.y35_c02138{bottom:436.266667pt;}
.y34_c02138{bottom:452.827200pt;}
.y33_c02138{bottom:453.147200pt;}
.y32_c02138{bottom:470.027067pt;}
.y31_c02138{bottom:486.507067pt;}
.y30_c02138{bottom:486.827067pt;}
.y2f_c02138{bottom:505.867067pt;}
.y2e_c02138{bottom:522.107067pt;}
.y2d_c02138{bottom:537.547067pt;}
.y2c_c02138{bottom:556.027067pt;}
.y2b_c02138{bottom:563.867067pt;}
.y2a_c02138{bottom:564.187067pt;}
.y29_c02138{bottom:581.627067pt;}
.y28_c02138{bottom:597.947067pt;}
.y27_c02138{bottom:613.387067pt;}
.y26_c02138{bottom:631.787067pt;}
.y25_c02138{bottom:639.627067pt;}
.y24_c02138{bottom:639.946667pt;}
.y23_c02138{bottom:656.507067pt;}
.y22_c02138{bottom:656.826667pt;}
.y21_c02138{bottom:673.387067pt;}
.y20_c02138{bottom:673.706667pt;}
.y1f_c02138{bottom:690.267067pt;}
.y1e_c02138{bottom:690.586667pt;}
.y1d_c02138{bottom:707.067067pt;}
.y1c_c02138{bottom:707.467067pt;}
.y1b_c02138{bottom:724.267067pt;}
.y19_c02138{bottom:740.827200pt;}
.y1a_c02138{bottom:741.147067pt;}
.y18_c02138{bottom:741.147200pt;}
.y17_c02138{bottom:760.187067pt;}
.y16_c02138{bottom:776.427067pt;}
.y15_c02138{bottom:791.867067pt;}
.y14_c02138{bottom:809.706243pt;}
.y13_c02138{bottom:821.946499pt;}
.y12_c02138{bottom:834.186755pt;}
.y11_c02138{bottom:846.506811pt;}
.y10_c02138{bottom:858.747067pt;}
.yf_c02138{bottom:873.067067pt;}
.ye_c02138{bottom:886.907067pt;}
.yd_c02138{bottom:900.667067pt;}
.yc_c02138{bottom:914.507067pt;}
.yb_c02138{bottom:928.267067pt;}
.ya_c02138{bottom:942.107067pt;}
.y9_c02138{bottom:955.867067pt;}
.y8_c02138{bottom:969.707067pt;}
.y7_c02138{bottom:985.387067pt;}
.y5_c02138{bottom:985.467067pt;}
.y6_c02138{bottom:999.627067pt;}
.y4_c02138{bottom:1014.667067pt;}
.y1_c02138{bottom:1060.587067pt;}
.h11_c02138{height:9.265781pt;}
.he_c02138{height:9.379219pt;}
.h5_c02138{height:37.343906pt;}
.h13_c02138{height:42.117188pt;}
.h6_c02138{height:42.632812pt;}
.h4_c02138{height:43.077187pt;}
.h8_c02138{height:43.077721pt;}
.h12_c02138{height:47.464531pt;}
.h3_c02138{height:52.012031pt;}
.hf_c02138{height:54.252031pt;}
.ha_c02138{height:54.572031pt;}
.h10_c02138{height:55.531498pt;}
.hd_c02138{height:55.532031pt;}
.hc_c02138{height:55.532565pt;}
.h9_c02138{height:55.851498pt;}
.hb_c02138{height:55.852031pt;}
.h2_c02138{height:56.156250pt;}
.h1_c02138{height:56.843750pt;}
.h14_c02138{height:58.757188pt;}
.h7_c02138{height:70.597187pt;}
.h0_c02138{height:1122.666667pt;}
.w1_c02138{width:793.333333pt;}
.w0_c02138{width:793.626667pt;}
.x0_c02138{left:0.000000pt;}
.x1_c02138{left:113.440000pt;}
.x3_c02138{left:119.600000pt;}
.x6_c02138{left:120.560000pt;}
.x7_c02138{left:127.920000pt;}
.x8_c02138{left:146.720000pt;}
.x9_c02138{left:196.160000pt;}
.x4_c02138{left:338.400000pt;}
.x5_c02138{left:358.880000pt;}
.x2_c02138{left:388.960000pt;}
.xa_c02138{left:493.599600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78d29c8bb01ebd3874fdb58b.woff2')format("woff");}.ff1_c02139{font-family:ff1_c02139;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02139;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02139{vertical-align:-5.400000px;}
.v1_c02139{vertical-align:-3.600000px;}
.v0_c02139{vertical-align:0.000000px;}
.ls2a_c02139{letter-spacing:-0.042084px;}
.ls28_c02139{letter-spacing:-0.038304px;}
.ls26_c02139{letter-spacing:-0.028800px;}
.ls27_c02139{letter-spacing:-0.023940px;}
.ls23_c02139{letter-spacing:-0.014400px;}
.ls2c_c02139{letter-spacing:-0.007200px;}
.ls24_c02139{letter-spacing:0.000000px;}
.ls0_c02139{letter-spacing:0.007200px;}
.ls1_c02139{letter-spacing:0.010800px;}
.lsc_c02139{letter-spacing:0.014400px;}
.ls19_c02139{letter-spacing:0.021600px;}
.ls2_c02139{letter-spacing:0.032940px;}
.ls1e_c02139{letter-spacing:0.046116px;}
.ls13_c02139{letter-spacing:0.052704px;}
.ls6_c02139{letter-spacing:0.059292px;}
.ls1f_c02139{letter-spacing:0.065880px;}
.lse_c02139{letter-spacing:0.072468px;}
.ls14_c02139{letter-spacing:0.079056px;}
.ls12_c02139{letter-spacing:0.085644px;}
.lsa_c02139{letter-spacing:0.092232px;}
.ls29_c02139{letter-spacing:0.110124px;}
.ls9_c02139{letter-spacing:0.138348px;}
.ls25_c02139{letter-spacing:0.145800px;}
.ls5_c02139{letter-spacing:0.151524px;}
.ls10_c02139{letter-spacing:0.158112px;}
.ls4_c02139{letter-spacing:0.177876px;}
.ls2b_c02139{letter-spacing:0.180360px;}
.lsf_c02139{letter-spacing:53.640000px;}
.ls1c_c02139{letter-spacing:57.960000px;}
.ls17_c02139{letter-spacing:67.050000px;}
.ls22_c02139{letter-spacing:71.370000px;}
.ls15_c02139{letter-spacing:104.940000px;}
.ls11_c02139{letter-spacing:114.120000px;}
.ls1d_c02139{letter-spacing:118.800000px;}
.ls8_c02139{letter-spacing:172.981116px;}
.ls1a_c02139{letter-spacing:525.060000px;}
.lsd_c02139{letter-spacing:533.340000px;}
.ls20_c02139{letter-spacing:754.200000px;}
.ls3_c02139{letter-spacing:776.520000px;}
.ls1b_c02139{letter-spacing:802.800000px;}
.ls16_c02139{letter-spacing:827.280000px;}
.ls21_c02139{letter-spacing:841.680000px;}
.ls7_c02139{letter-spacing:867.960000px;}
.lsb_c02139{letter-spacing:901.080000px;}
.ls2d_c02139{letter-spacing:1109.700000px;}
.ls18_c02139{letter-spacing:1144.260000px;}
.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;}
}
.ws9_c02139{word-spacing:-16.647876px;}
.wsa_c02139{word-spacing:-16.628112px;}
.ws5_c02139{word-spacing:-16.562232px;}
.ws3_c02139{word-spacing:-16.529292px;}
.ws0_c02139{word-spacing:-16.502940px;}
.ws18_c02139{word-spacing:-0.129600px;}
.ws15_c02139{word-spacing:-0.122400px;}
.ws1a_c02139{word-spacing:-0.115200px;}
.ws21_c02139{word-spacing:-0.021600px;}
.ws16_c02139{word-spacing:-0.007200px;}
.ws14_c02139{word-spacing:0.000000px;}
.ws1c_c02139{word-spacing:0.006588px;}
.ws20_c02139{word-spacing:0.007200px;}
.ws1e_c02139{word-spacing:0.013176px;}
.ws13_c02139{word-spacing:0.014400px;}
.ws1b_c02139{word-spacing:0.019764px;}
.ws23_c02139{word-spacing:0.026352px;}
.ws19_c02139{word-spacing:0.028800px;}
.ws1d_c02139{word-spacing:0.039528px;}
.ws22_c02139{word-spacing:0.046116px;}
.ws1f_c02139{word-spacing:0.132264px;}
.ws17_c02139{word-spacing:0.167400px;}
.ws7_c02139{word-spacing:54.636372px;}
.wsb_c02139{word-spacing:54.638496px;}
.ws10_c02139{word-spacing:58.956372px;}
.wse_c02139{word-spacing:58.958496px;}
.wsc_c02139{word-spacing:87.756372px;}
.ws6_c02139{word-spacing:89.919612px;}
.ws11_c02139{word-spacing:92.076372px;}
.ws8_c02139{word-spacing:115.882380px;}
.wsd_c02139{word-spacing:115.906608px;}
.wsf_c02139{word-spacing:119.482380px;}
.ws12_c02139{word-spacing:119.506608px;}
.ws1_c02139{word-spacing:122.681736px;}
.ws2_c02139{word-spacing:165.563028px;}
.ws4_c02139{word-spacing:198.707256px;}
._9_c02139{margin-left:-1.060668px;}
._7_c02139{width:74.000880px;}
._15_c02139{width:78.320880px;}
._13_c02139{width:93.110400px;}
._5_c02139{width:99.230400px;}
._6_c02139{width:103.230000px;}
._14_c02139{width:106.830000px;}
._18_c02139{width:113.494032px;}
._3_c02139{width:132.300000px;}
._4_c02139{width:148.905468px;}
._a_c02139{width:162.254052px;}
._11_c02139{width:172.170000px;}
._1b_c02139{width:176.490000px;}
._2_c02139{width:178.606800px;}
._b_c02139{width:188.357832px;}
._0_c02139{width:194.400000px;}
._1_c02139{width:197.366400px;}
._12_c02139{width:206.625600px;}
._d_c02139{width:236.079180px;}
._c_c02139{width:276.946668px;}
._e_c02139{width:278.567316px;}
._19_c02139{width:290.105136px;}
._16_c02139{width:311.377788px;}
._17_c02139{width:326.016324px;}
._8_c02139{width:510.254100px;}
._f_c02139{width:686.779560px;}
._1a_c02139{width:1220.041836px;}
._10_c02139{width:1236.601836px;}
.fc0_c02139{color:rgb(0,0,0);}
.fs3_c02139{font-size:47.880000px;}
.fs1_c02139{font-size:54.000000px;}
.fs4_c02139{font-size:60.120000px;}
.fs2_c02139{font-size:65.880000px;}
.fs0_c02139{font-size:72.000000px;}
.y0_c02139{bottom:0.000000px;}
.y3_c02139{bottom:57.360450px;}
.y2_c02139{bottom:78.060450px;}
.y40_c02139{bottom:117.750450px;}
.y3f_c02139{bottom:133.320000px;}
.y3e_c02139{bottom:148.800450px;}
.y3d_c02139{bottom:164.370000px;}
.y3c_c02139{bottom:179.850450px;}
.y3b_c02139{bottom:195.420000px;}
.y3a_c02139{bottom:210.900450px;}
.y39_c02139{bottom:228.630450px;}
.y38_c02139{bottom:247.530450px;}
.y37_c02139{bottom:266.520450px;}
.y36_c02139{bottom:285.780450px;}
.y35_c02139{bottom:307.830450px;}
.y34_c02139{bottom:323.310900px;}
.y33_c02139{bottom:338.880450px;}
.y32_c02139{bottom:356.160450px;}
.y31_c02139{bottom:373.800450px;}
.y30_c02139{bottom:392.790600px;}
.y2f_c02139{bottom:411.780450px;}
.y2e_c02139{bottom:430.680600px;}
.y2d_c02139{bottom:449.670450px;}
.y2c_c02139{bottom:468.660450px;}
.y2b_c02139{bottom:487.650450px;}
.y2a_c02139{bottom:505.560450px;}
.y28_c02139{bottom:506.910450px;}
.y29_c02139{bottom:519.330450px;}
.y27_c02139{bottom:527.610450px;}
.y26_c02139{bottom:548.310450px;}
.y25_c02139{bottom:570.270900px;}
.y24_c02139{bottom:585.840450px;}
.y23_c02139{bottom:601.320900px;}
.y22_c02139{bottom:616.890450px;}
.y21_c02139{bottom:633.450450px;}
.y20_c02139{bottom:652.350450px;}
.y1f_c02139{bottom:671.340450px;}
.y1e_c02139{bottom:690.600450px;}
.y1d_c02139{bottom:712.920000px;}
.y1c_c02139{bottom:728.130450px;}
.y1b_c02139{bottom:743.700000px;}
.y1a_c02139{bottom:759.180450px;}
.y19_c02139{bottom:776.550450px;}
.y18_c02139{bottom:794.100450px;}
.y17_c02139{bottom:813.090450px;}
.y16_c02139{bottom:832.080450px;}
.y15_c02139{bottom:851.070450px;}
.y14_c02139{bottom:870.060450px;}
.y13_c02139{bottom:888.960450px;}
.y12_c02139{bottom:907.950450px;}
.y11_c02139{bottom:926.940450px;}
.y10_c02139{bottom:944.850450px;}
.ye_c02139{bottom:946.200450px;}
.yf_c02139{bottom:958.710450px;}
.yd_c02139{bottom:966.900450px;}
.yc_c02139{bottom:987.600450px;}
.yb_c02139{bottom:1009.830900px;}
.ya_c02139{bottom:1025.400450px;}
.y9_c02139{bottom:1042.770450px;}
.y8_c02139{bottom:1061.760450px;}
.y7_c02139{bottom:1080.750450px;}
.y6_c02139{bottom:1100.010450px;}
.y5_c02139{bottom:1122.060450px;}
.y4_c02139{bottom:1139.250450px;}
.y1_c02139{bottom:1193.160450px;}
.h5_c02139{height:42.526230px;}
.h4_c02139{height:47.381836px;}
.h3_c02139{height:47.961914px;}
.h6_c02139{height:53.471777px;}
.h2_c02139{height:63.175781px;}
.h1_c02139{height:63.949219px;}
.h0_c02139{height:1263.000000px;}
.w1_c02139{width:892.500000px;}
.w0_c02139{width:892.830000px;}
.x0_c02139{left:0.000000px;}
.x1_c02139{left:127.620000px;}
.x3_c02139{left:135.630000px;}
.x5_c02139{left:143.460000px;}
.x4_c02139{left:158.310000px;}
.xa_c02139{left:160.560000px;}
.x6_c02139{left:207.720000px;}
.x7_c02139{left:253.980000px;}
.x2_c02139{left:433.080000px;}
.x9_c02139{left:718.200000px;}
.x8_c02139{left:719.280000px;}
@media print{
.v2_c02139{vertical-align:-4.800000pt;}
.v1_c02139{vertical-align:-3.200000pt;}
.v0_c02139{vertical-align:0.000000pt;}
.ls2a_c02139{letter-spacing:-0.037408pt;}
.ls28_c02139{letter-spacing:-0.034048pt;}
.ls26_c02139{letter-spacing:-0.025600pt;}
.ls27_c02139{letter-spacing:-0.021280pt;}
.ls23_c02139{letter-spacing:-0.012800pt;}
.ls2c_c02139{letter-spacing:-0.006400pt;}
.ls24_c02139{letter-spacing:0.000000pt;}
.ls0_c02139{letter-spacing:0.006400pt;}
.ls1_c02139{letter-spacing:0.009600pt;}
.lsc_c02139{letter-spacing:0.012800pt;}
.ls19_c02139{letter-spacing:0.019200pt;}
.ls2_c02139{letter-spacing:0.029280pt;}
.ls1e_c02139{letter-spacing:0.040992pt;}
.ls13_c02139{letter-spacing:0.046848pt;}
.ls6_c02139{letter-spacing:0.052704pt;}
.ls1f_c02139{letter-spacing:0.058560pt;}
.lse_c02139{letter-spacing:0.064416pt;}
.ls14_c02139{letter-spacing:0.070272pt;}
.ls12_c02139{letter-spacing:0.076128pt;}
.lsa_c02139{letter-spacing:0.081984pt;}
.ls29_c02139{letter-spacing:0.097888pt;}
.ls9_c02139{letter-spacing:0.122976pt;}
.ls25_c02139{letter-spacing:0.129600pt;}
.ls5_c02139{letter-spacing:0.134688pt;}
.ls10_c02139{letter-spacing:0.140544pt;}
.ls4_c02139{letter-spacing:0.158112pt;}
.ls2b_c02139{letter-spacing:0.160320pt;}
.lsf_c02139{letter-spacing:47.680000pt;}
.ls1c_c02139{letter-spacing:51.520000pt;}
.ls17_c02139{letter-spacing:59.600000pt;}
.ls22_c02139{letter-spacing:63.440000pt;}
.ls15_c02139{letter-spacing:93.280000pt;}
.ls11_c02139{letter-spacing:101.440000pt;}
.ls1d_c02139{letter-spacing:105.600000pt;}
.ls8_c02139{letter-spacing:153.760992pt;}
.ls1a_c02139{letter-spacing:466.720000pt;}
.lsd_c02139{letter-spacing:474.080000pt;}
.ls20_c02139{letter-spacing:670.400000pt;}
.ls3_c02139{letter-spacing:690.240000pt;}
.ls1b_c02139{letter-spacing:713.600000pt;}
.ls16_c02139{letter-spacing:735.360000pt;}
.ls21_c02139{letter-spacing:748.160000pt;}
.ls7_c02139{letter-spacing:771.520000pt;}
.lsb_c02139{letter-spacing:800.960000pt;}
.ls2d_c02139{letter-spacing:986.400000pt;}
.ls18_c02139{letter-spacing:1017.120000pt;}
.ws9_c02139{word-spacing:-14.798112pt;}
.wsa_c02139{word-spacing:-14.780544pt;}
.ws5_c02139{word-spacing:-14.721984pt;}
.ws3_c02139{word-spacing:-14.692704pt;}
.ws0_c02139{word-spacing:-14.669280pt;}
.ws18_c02139{word-spacing:-0.115200pt;}
.ws15_c02139{word-spacing:-0.108800pt;}
.ws1a_c02139{word-spacing:-0.102400pt;}
.ws21_c02139{word-spacing:-0.019200pt;}
.ws16_c02139{word-spacing:-0.006400pt;}
.ws14_c02139{word-spacing:0.000000pt;}
.ws1c_c02139{word-spacing:0.005856pt;}
.ws20_c02139{word-spacing:0.006400pt;}
.ws1e_c02139{word-spacing:0.011712pt;}
.ws13_c02139{word-spacing:0.012800pt;}
.ws1b_c02139{word-spacing:0.017568pt;}
.ws23_c02139{word-spacing:0.023424pt;}
.ws19_c02139{word-spacing:0.025600pt;}
.ws1d_c02139{word-spacing:0.035136pt;}
.ws22_c02139{word-spacing:0.040992pt;}
.ws1f_c02139{word-spacing:0.117568pt;}
.ws17_c02139{word-spacing:0.148800pt;}
.ws7_c02139{word-spacing:48.565664pt;}
.wsb_c02139{word-spacing:48.567552pt;}
.ws10_c02139{word-spacing:52.405664pt;}
.wse_c02139{word-spacing:52.407552pt;}
.wsc_c02139{word-spacing:78.005664pt;}
.ws6_c02139{word-spacing:79.928544pt;}
.ws11_c02139{word-spacing:81.845664pt;}
.ws8_c02139{word-spacing:103.006560pt;}
.wsd_c02139{word-spacing:103.028096pt;}
.wsf_c02139{word-spacing:106.206560pt;}
.ws12_c02139{word-spacing:106.228096pt;}
.ws1_c02139{word-spacing:109.050432pt;}
.ws2_c02139{word-spacing:147.167136pt;}
.ws4_c02139{word-spacing:176.628672pt;}
._9_c02139{margin-left:-0.942816pt;}
._7_c02139{width:65.778560pt;}
._15_c02139{width:69.618560pt;}
._13_c02139{width:82.764800pt;}
._5_c02139{width:88.204800pt;}
._6_c02139{width:91.760000pt;}
._14_c02139{width:94.960000pt;}
._18_c02139{width:100.883584pt;}
._3_c02139{width:117.600000pt;}
._4_c02139{width:132.360416pt;}
._a_c02139{width:144.225824pt;}
._11_c02139{width:153.040000pt;}
._1b_c02139{width:156.880000pt;}
._2_c02139{width:158.761600pt;}
._b_c02139{width:167.429184pt;}
._0_c02139{width:172.800000pt;}
._1_c02139{width:175.436800pt;}
._12_c02139{width:183.667200pt;}
._d_c02139{width:209.848160pt;}
._c_c02139{width:246.174816pt;}
._e_c02139{width:247.615392pt;}
._19_c02139{width:257.871232pt;}
._16_c02139{width:276.780256pt;}
._17_c02139{width:289.792288pt;}
._8_c02139{width:453.559200pt;}
._f_c02139{width:610.470720pt;}
._1a_c02139{width:1084.481632pt;}
._10_c02139{width:1099.201632pt;}
.fs3_c02139{font-size:42.560000pt;}
.fs1_c02139{font-size:48.000000pt;}
.fs4_c02139{font-size:53.440000pt;}
.fs2_c02139{font-size:58.560000pt;}
.fs0_c02139{font-size:64.000000pt;}
.y0_c02139{bottom:0.000000pt;}
.y3_c02139{bottom:50.987067pt;}
.y2_c02139{bottom:69.387067pt;}
.y40_c02139{bottom:104.667067pt;}
.y3f_c02139{bottom:118.506667pt;}
.y3e_c02139{bottom:132.267067pt;}
.y3d_c02139{bottom:146.106667pt;}
.y3c_c02139{bottom:159.867067pt;}
.y3b_c02139{bottom:173.706667pt;}
.y3a_c02139{bottom:187.467067pt;}
.y39_c02139{bottom:203.227067pt;}
.y38_c02139{bottom:220.027067pt;}
.y37_c02139{bottom:236.907067pt;}
.y36_c02139{bottom:254.027067pt;}
.y35_c02139{bottom:273.627067pt;}
.y34_c02139{bottom:287.387467pt;}
.y33_c02139{bottom:301.227067pt;}
.y32_c02139{bottom:316.587067pt;}
.y31_c02139{bottom:332.267067pt;}
.y30_c02139{bottom:349.147200pt;}
.y2f_c02139{bottom:366.027067pt;}
.y2e_c02139{bottom:382.827200pt;}
.y2d_c02139{bottom:399.707067pt;}
.y2c_c02139{bottom:416.587067pt;}
.y2b_c02139{bottom:433.467067pt;}
.y2a_c02139{bottom:449.387067pt;}
.y28_c02139{bottom:450.587067pt;}
.y29_c02139{bottom:461.627067pt;}
.y27_c02139{bottom:468.987067pt;}
.y26_c02139{bottom:487.387067pt;}
.y25_c02139{bottom:506.907467pt;}
.y24_c02139{bottom:520.747067pt;}
.y23_c02139{bottom:534.507467pt;}
.y22_c02139{bottom:548.347067pt;}
.y21_c02139{bottom:563.067067pt;}
.y20_c02139{bottom:579.867067pt;}
.y1f_c02139{bottom:596.747067pt;}
.y1e_c02139{bottom:613.867067pt;}
.y1d_c02139{bottom:633.706667pt;}
.y1c_c02139{bottom:647.227067pt;}
.y1b_c02139{bottom:661.066667pt;}
.y1a_c02139{bottom:674.827067pt;}
.y19_c02139{bottom:690.267067pt;}
.y18_c02139{bottom:705.867067pt;}
.y17_c02139{bottom:722.747067pt;}
.y16_c02139{bottom:739.627067pt;}
.y15_c02139{bottom:756.507067pt;}
.y14_c02139{bottom:773.387067pt;}
.y13_c02139{bottom:790.187067pt;}
.y12_c02139{bottom:807.067067pt;}
.y11_c02139{bottom:823.947067pt;}
.y10_c02139{bottom:839.867067pt;}
.ye_c02139{bottom:841.067067pt;}
.yf_c02139{bottom:852.187067pt;}
.yd_c02139{bottom:859.467067pt;}
.yc_c02139{bottom:877.867067pt;}
.yb_c02139{bottom:897.627467pt;}
.ya_c02139{bottom:911.467067pt;}
.y9_c02139{bottom:926.907067pt;}
.y8_c02139{bottom:943.787067pt;}
.y7_c02139{bottom:960.667067pt;}
.y6_c02139{bottom:977.787067pt;}
.y5_c02139{bottom:997.387067pt;}
.y4_c02139{bottom:1012.667067pt;}
.y1_c02139{bottom:1060.587067pt;}
.h5_c02139{height:37.801094pt;}
.h4_c02139{height:42.117188pt;}
.h3_c02139{height:42.632812pt;}
.h6_c02139{height:47.530469pt;}
.h2_c02139{height:56.156250pt;}
.h1_c02139{height:56.843750pt;}
.h0_c02139{height:1122.666667pt;}
.w1_c02139{width:793.333333pt;}
.w0_c02139{width:793.626667pt;}
.x0_c02139{left:0.000000pt;}
.x1_c02139{left:113.440000pt;}
.x3_c02139{left:120.560000pt;}
.x5_c02139{left:127.520000pt;}
.x4_c02139{left:140.720000pt;}
.xa_c02139{left:142.720000pt;}
.x6_c02139{left:184.640000pt;}
.x7_c02139{left:225.760000pt;}
.x2_c02139{left:384.960000pt;}
.x9_c02139{left:638.400000pt;}
.x8_c02139{left:639.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c491ae5842be4d460f7cb15e.woff2')format("woff");}.ff1_c02140{font-family:ff1_c02140;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02140;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v1_c02140{vertical-align:-5.040000px;}
.v0_c02140{vertical-align:0.000000px;}
.v3_c02140{vertical-align:2.520000px;}
.v2_c02140{vertical-align:41.400000px;}
.ls2e_c02140{letter-spacing:-0.388800px;}
.ls2b_c02140{letter-spacing:-0.042084px;}
.ls29_c02140{letter-spacing:-0.038304px;}
.ls27_c02140{letter-spacing:-0.028800px;}
.ls28_c02140{letter-spacing:-0.023940px;}
.ls25_c02140{letter-spacing:-0.014400px;}
.ls2d_c02140{letter-spacing:-0.007200px;}
.ls26_c02140{letter-spacing:0.000000px;}
.ls0_c02140{letter-spacing:0.014400px;}
.ls11_c02140{letter-spacing:0.028800px;}
.ls30_c02140{letter-spacing:0.043092px;}
.ls20_c02140{letter-spacing:0.046116px;}
.ls1e_c02140{letter-spacing:0.052704px;}
.ls13_c02140{letter-spacing:0.057600px;}
.lsd_c02140{letter-spacing:0.059292px;}
.ls1c_c02140{letter-spacing:0.065880px;}
.ls17_c02140{letter-spacing:0.072468px;}
.ls8_c02140{letter-spacing:0.079056px;}
.ls15_c02140{letter-spacing:0.085644px;}
.ls2f_c02140{letter-spacing:0.090972px;}
.lsa_c02140{letter-spacing:0.092232px;}
.ls2_c02140{letter-spacing:0.098820px;}
.lsc_c02140{letter-spacing:0.105408px;}
.ls2a_c02140{letter-spacing:0.110124px;}
.ls12_c02140{letter-spacing:0.114228px;}
.lsf_c02140{letter-spacing:0.138348px;}
.ls4_c02140{letter-spacing:0.151524px;}
.ls6_c02140{letter-spacing:0.158112px;}
.ls9_c02140{letter-spacing:0.177876px;}
.ls2c_c02140{letter-spacing:0.180360px;}
.ls5_c02140{letter-spacing:53.640000px;}
.ls1b_c02140{letter-spacing:71.640000px;}
.ls16_c02140{letter-spacing:88.200000px;}
.ls10_c02140{letter-spacing:97.290000px;}
.ls1a_c02140{letter-spacing:104.760000px;}
.lse_c02140{letter-spacing:104.940000px;}
.ls7_c02140{letter-spacing:114.120000px;}
.ls24_c02140{letter-spacing:131.219856px;}
.ls23_c02140{letter-spacing:134.098740px;}
.ls1_c02140{letter-spacing:533.340000px;}
.ls14_c02140{letter-spacing:605.430000px;}
.ls22_c02140{letter-spacing:689.760000px;}
.ls3_c02140{letter-spacing:726.120000px;}
.ls1d_c02140{letter-spacing:734.400000px;}
.ls18_c02140{letter-spacing:790.920000px;}
.ls19_c02140{letter-spacing:799.560000px;}
.ls1f_c02140{letter-spacing:821.880000px;}
.ls21_c02140{letter-spacing:999.720000px;}
.lsb_c02140{letter-spacing:1036.080000px;}
.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;}
}
.ws7_c02140{word-spacing:-18.057600px;}
.ws2_c02140{word-spacing:-16.647876px;}
.ws3_c02140{word-spacing:-16.628112px;}
.wsf_c02140{word-spacing:-16.608348px;}
.ws23_c02140{word-spacing:-0.384768px;}
.ws1c_c02140{word-spacing:-0.115200px;}
.ws22_c02140{word-spacing:-0.108000px;}
.ws1a_c02140{word-spacing:-0.014400px;}
.ws1f_c02140{word-spacing:-0.013176px;}
.ws1d_c02140{word-spacing:-0.006588px;}
.ws19_c02140{word-spacing:0.000000px;}
.ws25_c02140{word-spacing:0.006588px;}
.ws24_c02140{word-spacing:0.007200px;}
.ws1e_c02140{word-spacing:0.013176px;}
.ws18_c02140{word-spacing:0.014400px;}
.ws26_c02140{word-spacing:0.019764px;}
.ws27_c02140{word-spacing:0.026352px;}
.ws1b_c02140{word-spacing:0.028800px;}
.ws20_c02140{word-spacing:0.032940px;}
.ws28_c02140{word-spacing:0.039528px;}
.ws29_c02140{word-spacing:0.046116px;}
.ws21_c02140{word-spacing:0.132264px;}
.ws0_c02140{word-spacing:54.636372px;}
.ws4_c02140{word-spacing:54.638496px;}
.ws8_c02140{word-spacing:67.237128px;}
.ws10_c02140{word-spacing:72.678888px;}
.ws12_c02140{word-spacing:72.679392px;}
.wsa_c02140{word-spacing:83.799360px;}
.ws6_c02140{word-spacing:87.756372px;}
.wsb_c02140{word-spacing:89.238888px;}
.wsd_c02140{word-spacing:89.239392px;}
.wse_c02140{word-spacing:89.243748px;}
.ws9_c02140{word-spacing:89.245476px;}
.ws14_c02140{word-spacing:89.267472px;}
.wsc_c02140{word-spacing:92.080476px;}
.ws13_c02140{word-spacing:97.476120px;}
.ws15_c02140{word-spacing:100.355004px;}
.ws11_c02140{word-spacing:108.636120px;}
.ws17_c02140{word-spacing:114.749856px;}
.ws1_c02140{word-spacing:115.882380px;}
.ws5_c02140{word-spacing:115.906608px;}
.ws16_c02140{word-spacing:124.836012px;}
._4_c02140{margin-left:-1.316016px;}
._e_c02140{width:1.692000px;}
._f_c02140{width:71.316000px;}
._3_c02140{width:74.000880px;}
._19_c02140{width:93.694536px;}
._1_c02140{width:99.230400px;}
._22_c02140{width:100.387944px;}
._2_c02140{width:103.230000px;}
._d_c02140{width:106.344000px;}
._1b_c02140{width:125.283996px;}
._13_c02140{width:130.683996px;}
._1f_c02140{width:135.363636px;}
._10_c02140{width:142.707672px;}
._18_c02140{width:151.998336px;}
._7_c02140{width:153.307548px;}
._23_c02140{width:158.579748px;}
._a_c02140{width:171.723132px;}
._c_c02140{width:172.976868px;}
._1d_c02140{width:183.414924px;}
._0_c02140{width:194.400000px;}
._1e_c02140{width:240.842520px;}
._1c_c02140{width:242.463168px;}
._20_c02140{width:270.305640px;}
._1a_c02140{width:291.833640px;}
._21_c02140{width:306.472176px;}
._17_c02140{width:407.387160px;}
._12_c02140{width:426.164544px;}
._8_c02140{width:443.746656px;}
._5_c02140{width:445.966272px;}
._16_c02140{width:473.894604px;}
._14_c02140{width:630.647892px;}
._11_c02140{width:650.420064px;}
._9_c02140{width:667.007388px;}
._15_c02140{width:1069.547040px;}
._6_c02140{width:1105.906536px;}
._b_c02140{width:1236.601836px;}
.fc0_c02140{color:rgb(0,0,0);}
.fs5_c02140{font-size:36.000000px;}
.fs2_c02140{font-size:47.880000px;}
.fs1_c02140{font-size:54.000000px;}
.fs4_c02140{font-size:60.120000px;}
.fs3_c02140{font-size:65.880000px;}
.fs0_c02140{font-size:72.000000px;}
.y0_c02140{bottom:0.000000px;}
.y3_c02140{bottom:57.360450px;}
.y2_c02140{bottom:78.060450px;}
.y3e_c02140{bottom:124.680450px;}
.y3d_c02140{bottom:145.380450px;}
.y3c_c02140{bottom:166.080450px;}
.y3b_c02140{bottom:186.780450px;}
.y3a_c02140{bottom:207.480450px;}
.y39_c02140{bottom:228.180450px;}
.y38_c02140{bottom:248.790450px;}
.y37_c02140{bottom:268.590000px;}
.y36_c02140{bottom:284.070450px;}
.y35_c02140{bottom:301.080450px;}
.y34_c02140{bottom:319.980450px;}
.y33_c02140{bottom:338.970450px;}
.y32_c02140{bottom:357.960600px;}
.y31_c02140{bottom:376.950450px;}
.y30_c02140{bottom:396.300450px;}
.y2f_c02140{bottom:415.290600px;}
.y2e_c02140{bottom:434.190450px;}
.y2d_c02140{bottom:453.180600px;}
.y2c_c02140{bottom:472.170450px;}
.y2b_c02140{bottom:491.160450px;}
.y2a_c02140{bottom:510.150450px;}
.y29_c02140{bottom:529.140450px;}
.y28_c02140{bottom:548.040450px;}
.y27_c02140{bottom:567.030450px;}
.y26_c02140{bottom:586.020450px;}
.y25_c02140{bottom:605.010450px;}
.y24_c02140{bottom:624.000450px;}
.y23_c02140{bottom:643.710450px;}
.y22_c02140{bottom:662.700450px;}
.y21_c02140{bottom:681.600450px;}
.y20_c02140{bottom:700.590450px;}
.y1f_c02140{bottom:719.580450px;}
.y1c_c02140{bottom:737.310450px;}
.y1e_c02140{bottom:737.940450px;}
.y1b_c02140{bottom:739.200450px;}
.y1d_c02140{bottom:751.710450px;}
.y1a_c02140{bottom:759.900450px;}
.y19_c02140{bottom:779.970450px;}
.y18_c02140{bottom:797.880450px;}
.y17_c02140{bottom:818.580450px;}
.y16_c02140{bottom:840.541050px;}
.y15_c02140{bottom:856.110600px;}
.y14_c02140{bottom:873.300450px;}
.y13_c02140{bottom:893.820000px;}
.y12_c02140{bottom:909.300450px;}
.y11_c02140{bottom:926.670450px;}
.y10_c02140{bottom:944.310450px;}
.yf_c02140{bottom:963.210450px;}
.ye_c02140{bottom:982.200450px;}
.yd_c02140{bottom:1001.190450px;}
.yc_c02140{bottom:1020.180450px;}
.yb_c02140{bottom:1039.170450px;}
.ya_c02140{bottom:1058.070450px;}
.y9_c02140{bottom:1077.060450px;}
.y8_c02140{bottom:1095.060450px;}
.y6_c02140{bottom:1096.320450px;}
.y7_c02140{bottom:1108.830450px;}
.y5_c02140{bottom:1117.020450px;}
.y4_c02140{bottom:1137.720450px;}
.y1_c02140{bottom:1193.160450px;}
.h3_c02140{height:42.526230px;}
.h8_c02140{height:45.046230px;}
.h5_c02140{height:47.961914px;}
.h6_c02140{height:53.397598px;}
.h4_c02140{height:53.471777px;}
.h2_c02140{height:63.175781px;}
.h1_c02140{height:63.949219px;}
.h7_c02140{height:78.886230px;}
.h0_c02140{height:1263.000000px;}
.w1_c02140{width:892.500000px;}
.w0_c02140{width:892.830000px;}
.x0_c02140{left:0.000000px;}
.x1_c02140{left:127.620000px;}
.x8_c02140{left:135.630000px;}
.xc_c02140{left:153.450000px;}
.x3_c02140{left:162.000000px;}
.x9_c02140{left:182.160000px;}
.x4_c02140{left:207.720000px;}
.xa_c02140{left:236.970000px;}
.x5_c02140{left:253.980000px;}
.xb_c02140{left:260.100000px;}
.xd_c02140{left:273.690000px;}
.x2_c02140{left:433.080000px;}
.xe_c02140{left:626.400000px;}
.x7_c02140{left:718.200000px;}
.x6_c02140{left:719.280000px;}
.xf_c02140{left:721.440000px;}
@media print{
.v1_c02140{vertical-align:-4.480000pt;}
.v0_c02140{vertical-align:0.000000pt;}
.v3_c02140{vertical-align:2.240000pt;}
.v2_c02140{vertical-align:36.800000pt;}
.ls2e_c02140{letter-spacing:-0.345600pt;}
.ls2b_c02140{letter-spacing:-0.037408pt;}
.ls29_c02140{letter-spacing:-0.034048pt;}
.ls27_c02140{letter-spacing:-0.025600pt;}
.ls28_c02140{letter-spacing:-0.021280pt;}
.ls25_c02140{letter-spacing:-0.012800pt;}
.ls2d_c02140{letter-spacing:-0.006400pt;}
.ls26_c02140{letter-spacing:0.000000pt;}
.ls0_c02140{letter-spacing:0.012800pt;}
.ls11_c02140{letter-spacing:0.025600pt;}
.ls30_c02140{letter-spacing:0.038304pt;}
.ls20_c02140{letter-spacing:0.040992pt;}
.ls1e_c02140{letter-spacing:0.046848pt;}
.ls13_c02140{letter-spacing:0.051200pt;}
.lsd_c02140{letter-spacing:0.052704pt;}
.ls1c_c02140{letter-spacing:0.058560pt;}
.ls17_c02140{letter-spacing:0.064416pt;}
.ls8_c02140{letter-spacing:0.070272pt;}
.ls15_c02140{letter-spacing:0.076128pt;}
.ls2f_c02140{letter-spacing:0.080864pt;}
.lsa_c02140{letter-spacing:0.081984pt;}
.ls2_c02140{letter-spacing:0.087840pt;}
.lsc_c02140{letter-spacing:0.093696pt;}
.ls2a_c02140{letter-spacing:0.097888pt;}
.ls12_c02140{letter-spacing:0.101536pt;}
.lsf_c02140{letter-spacing:0.122976pt;}
.ls4_c02140{letter-spacing:0.134688pt;}
.ls6_c02140{letter-spacing:0.140544pt;}
.ls9_c02140{letter-spacing:0.158112pt;}
.ls2c_c02140{letter-spacing:0.160320pt;}
.ls5_c02140{letter-spacing:47.680000pt;}
.ls1b_c02140{letter-spacing:63.680000pt;}
.ls16_c02140{letter-spacing:78.400000pt;}
.ls10_c02140{letter-spacing:86.480000pt;}
.ls1a_c02140{letter-spacing:93.120000pt;}
.lse_c02140{letter-spacing:93.280000pt;}
.ls7_c02140{letter-spacing:101.440000pt;}
.ls24_c02140{letter-spacing:116.639872pt;}
.ls23_c02140{letter-spacing:119.198880pt;}
.ls1_c02140{letter-spacing:474.080000pt;}
.ls14_c02140{letter-spacing:538.160000pt;}
.ls22_c02140{letter-spacing:613.120000pt;}
.ls3_c02140{letter-spacing:645.440000pt;}
.ls1d_c02140{letter-spacing:652.800000pt;}
.ls18_c02140{letter-spacing:703.040000pt;}
.ls19_c02140{letter-spacing:710.720000pt;}
.ls1f_c02140{letter-spacing:730.560000pt;}
.ls21_c02140{letter-spacing:888.640000pt;}
.lsb_c02140{letter-spacing:920.960000pt;}
.ws7_c02140{word-spacing:-16.051200pt;}
.ws2_c02140{word-spacing:-14.798112pt;}
.ws3_c02140{word-spacing:-14.780544pt;}
.wsf_c02140{word-spacing:-14.762976pt;}
.ws23_c02140{word-spacing:-0.342016pt;}
.ws1c_c02140{word-spacing:-0.102400pt;}
.ws22_c02140{word-spacing:-0.096000pt;}
.ws1a_c02140{word-spacing:-0.012800pt;}
.ws1f_c02140{word-spacing:-0.011712pt;}
.ws1d_c02140{word-spacing:-0.005856pt;}
.ws19_c02140{word-spacing:0.000000pt;}
.ws25_c02140{word-spacing:0.005856pt;}
.ws24_c02140{word-spacing:0.006400pt;}
.ws1e_c02140{word-spacing:0.011712pt;}
.ws18_c02140{word-spacing:0.012800pt;}
.ws26_c02140{word-spacing:0.017568pt;}
.ws27_c02140{word-spacing:0.023424pt;}
.ws1b_c02140{word-spacing:0.025600pt;}
.ws20_c02140{word-spacing:0.029280pt;}
.ws28_c02140{word-spacing:0.035136pt;}
.ws29_c02140{word-spacing:0.040992pt;}
.ws21_c02140{word-spacing:0.117568pt;}
.ws0_c02140{word-spacing:48.565664pt;}
.ws4_c02140{word-spacing:48.567552pt;}
.ws8_c02140{word-spacing:59.766336pt;}
.ws10_c02140{word-spacing:64.603456pt;}
.ws12_c02140{word-spacing:64.603904pt;}
.wsa_c02140{word-spacing:74.488320pt;}
.ws6_c02140{word-spacing:78.005664pt;}
.wsb_c02140{word-spacing:79.323456pt;}
.wsd_c02140{word-spacing:79.323904pt;}
.wse_c02140{word-spacing:79.327776pt;}
.ws9_c02140{word-spacing:79.329312pt;}
.ws14_c02140{word-spacing:79.348864pt;}
.wsc_c02140{word-spacing:81.849312pt;}
.ws13_c02140{word-spacing:86.645440pt;}
.ws15_c02140{word-spacing:89.204448pt;}
.ws11_c02140{word-spacing:96.565440pt;}
.ws17_c02140{word-spacing:101.999872pt;}
.ws1_c02140{word-spacing:103.006560pt;}
.ws5_c02140{word-spacing:103.028096pt;}
.ws16_c02140{word-spacing:110.965344pt;}
._4_c02140{margin-left:-1.169792pt;}
._e_c02140{width:1.504000pt;}
._f_c02140{width:63.392000pt;}
._3_c02140{width:65.778560pt;}
._19_c02140{width:83.284032pt;}
._1_c02140{width:88.204800pt;}
._22_c02140{width:89.233728pt;}
._2_c02140{width:91.760000pt;}
._d_c02140{width:94.528000pt;}
._1b_c02140{width:111.363552pt;}
._13_c02140{width:116.163552pt;}
._1f_c02140{width:120.323232pt;}
._10_c02140{width:126.851264pt;}
._18_c02140{width:135.109632pt;}
._7_c02140{width:136.273376pt;}
._23_c02140{width:140.959776pt;}
._a_c02140{width:152.642784pt;}
._c_c02140{width:153.757216pt;}
._1d_c02140{width:163.035488pt;}
._0_c02140{width:172.800000pt;}
._1e_c02140{width:214.082240pt;}
._1c_c02140{width:215.522816pt;}
._20_c02140{width:240.271680pt;}
._1a_c02140{width:259.407680pt;}
._21_c02140{width:272.419712pt;}
._17_c02140{width:362.121920pt;}
._12_c02140{width:378.812928pt;}
._8_c02140{width:394.441472pt;}
._5_c02140{width:396.414464pt;}
._16_c02140{width:421.239648pt;}
._14_c02140{width:560.575904pt;}
._11_c02140{width:578.151168pt;}
._9_c02140{width:592.895456pt;}
._15_c02140{width:950.708480pt;}
._6_c02140{width:983.028032pt;}
._b_c02140{width:1099.201632pt;}
.fs5_c02140{font-size:32.000000pt;}
.fs2_c02140{font-size:42.560000pt;}
.fs1_c02140{font-size:48.000000pt;}
.fs4_c02140{font-size:53.440000pt;}
.fs3_c02140{font-size:58.560000pt;}
.fs0_c02140{font-size:64.000000pt;}
.y0_c02140{bottom:0.000000pt;}
.y3_c02140{bottom:50.987067pt;}
.y2_c02140{bottom:69.387067pt;}
.y3e_c02140{bottom:110.827067pt;}
.y3d_c02140{bottom:129.227067pt;}
.y3c_c02140{bottom:147.627067pt;}
.y3b_c02140{bottom:166.027067pt;}
.y3a_c02140{bottom:184.427067pt;}
.y39_c02140{bottom:202.827067pt;}
.y38_c02140{bottom:221.147067pt;}
.y37_c02140{bottom:238.746667pt;}
.y36_c02140{bottom:252.507067pt;}
.y35_c02140{bottom:267.627067pt;}
.y34_c02140{bottom:284.427067pt;}
.y33_c02140{bottom:301.307067pt;}
.y32_c02140{bottom:318.187200pt;}
.y31_c02140{bottom:335.067067pt;}
.y30_c02140{bottom:352.267067pt;}
.y2f_c02140{bottom:369.147200pt;}
.y2e_c02140{bottom:385.947067pt;}
.y2d_c02140{bottom:402.827200pt;}
.y2c_c02140{bottom:419.707067pt;}
.y2b_c02140{bottom:436.587067pt;}
.y2a_c02140{bottom:453.467067pt;}
.y29_c02140{bottom:470.347067pt;}
.y28_c02140{bottom:487.147067pt;}
.y27_c02140{bottom:504.027067pt;}
.y26_c02140{bottom:520.907067pt;}
.y25_c02140{bottom:537.787067pt;}
.y24_c02140{bottom:554.667067pt;}
.y23_c02140{bottom:572.187067pt;}
.y22_c02140{bottom:589.067067pt;}
.y21_c02140{bottom:605.867067pt;}
.y20_c02140{bottom:622.747067pt;}
.y1f_c02140{bottom:639.627067pt;}
.y1c_c02140{bottom:655.387067pt;}
.y1e_c02140{bottom:655.947067pt;}
.y1b_c02140{bottom:657.067067pt;}
.y1d_c02140{bottom:668.187067pt;}
.y1a_c02140{bottom:675.467067pt;}
.y19_c02140{bottom:693.307067pt;}
.y18_c02140{bottom:709.227067pt;}
.y17_c02140{bottom:727.627067pt;}
.y16_c02140{bottom:747.147600pt;}
.y15_c02140{bottom:760.987200pt;}
.y14_c02140{bottom:776.267067pt;}
.y13_c02140{bottom:794.506667pt;}
.y12_c02140{bottom:808.267067pt;}
.y11_c02140{bottom:823.707067pt;}
.y10_c02140{bottom:839.387067pt;}
.yf_c02140{bottom:856.187067pt;}
.ye_c02140{bottom:873.067067pt;}
.yd_c02140{bottom:889.947067pt;}
.yc_c02140{bottom:906.827067pt;}
.yb_c02140{bottom:923.707067pt;}
.ya_c02140{bottom:940.507067pt;}
.y9_c02140{bottom:957.387067pt;}
.y8_c02140{bottom:973.387067pt;}
.y6_c02140{bottom:974.507067pt;}
.y7_c02140{bottom:985.627067pt;}
.y5_c02140{bottom:992.907067pt;}
.y4_c02140{bottom:1011.307067pt;}
.y1_c02140{bottom:1060.587067pt;}
.h3_c02140{height:37.801094pt;}
.h8_c02140{height:40.041094pt;}
.h5_c02140{height:42.632812pt;}
.h6_c02140{height:47.464531pt;}
.h4_c02140{height:47.530469pt;}
.h2_c02140{height:56.156250pt;}
.h1_c02140{height:56.843750pt;}
.h7_c02140{height:70.121094pt;}
.h0_c02140{height:1122.666667pt;}
.w1_c02140{width:793.333333pt;}
.w0_c02140{width:793.626667pt;}
.x0_c02140{left:0.000000pt;}
.x1_c02140{left:113.440000pt;}
.x8_c02140{left:120.560000pt;}
.xc_c02140{left:136.400000pt;}
.x3_c02140{left:144.000000pt;}
.x9_c02140{left:161.920000pt;}
.x4_c02140{left:184.640000pt;}
.xa_c02140{left:210.640000pt;}
.x5_c02140{left:225.760000pt;}
.xb_c02140{left:231.200000pt;}
.xd_c02140{left:243.280000pt;}
.x2_c02140{left:384.960000pt;}
.xe_c02140{left:556.800000pt;}
.x7_c02140{left:638.400000pt;}
.x6_c02140{left:639.360000pt;}
.xf_c02140{left:641.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_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_2614968f07c3013c7bff3596.woff2')format("woff");}.ff1_c02141{font-family:ff1_c02141;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02141;src:url('chunks/assets/font_ce364ab951f474da96213e60.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;}
.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);}
.v3_c02141{vertical-align:-22.320600px;}
.v2_c02141{vertical-align:-16.920600px;}
.v4_c02141{vertical-align:-4.680000px;}
.v0_c02141{vertical-align:0.000000px;}
.v1_c02141{vertical-align:1.440000px;}
.ls23_c02141{letter-spacing:-0.181116px;}
.ls22_c02141{letter-spacing:-0.180360px;}
.ls21_c02141{letter-spacing:-0.176904px;}
.ls20_c02141{letter-spacing:-0.086400px;}
.ls1e_c02141{letter-spacing:-0.032940px;}
.ls1b_c02141{letter-spacing:-0.014400px;}
.ls1d_c02141{letter-spacing:-0.013176px;}
.ls1f_c02141{letter-spacing:-0.007200px;}
.ls24_c02141{letter-spacing:-0.006588px;}
.ls1c_c02141{letter-spacing:0.000000px;}
.lse_c02141{letter-spacing:0.007200px;}
.ls1a_c02141{letter-spacing:0.013176px;}
.lsb_c02141{letter-spacing:0.014400px;}
.ls13_c02141{letter-spacing:0.019764px;}
.ls19_c02141{letter-spacing:0.026352px;}
.ls0_c02141{letter-spacing:0.028800px;}
.ls18_c02141{letter-spacing:0.032940px;}
.ls2_c02141{letter-spacing:0.039528px;}
.lsc_c02141{letter-spacing:0.043200px;}
.ls15_c02141{letter-spacing:0.046116px;}
.lsd_c02141{letter-spacing:0.050400px;}
.ls7_c02141{letter-spacing:0.052704px;}
.lsf_c02141{letter-spacing:0.059292px;}
.ls14_c02141{letter-spacing:0.065880px;}
.ls1_c02141{letter-spacing:0.075492px;}
.ls16_c02141{letter-spacing:0.085644px;}
.ls17_c02141{letter-spacing:0.092232px;}
.ls5_c02141{letter-spacing:0.098820px;}
.ls12_c02141{letter-spacing:0.111996px;}
.ls9_c02141{letter-spacing:0.131760px;}
.ls11_c02141{letter-spacing:0.181944px;}
.ls3_c02141{letter-spacing:64.080000px;}
.ls8_c02141{letter-spacing:99.720000px;}
.ls4_c02141{letter-spacing:113.760000px;}
.ls6_c02141{letter-spacing:128.520000px;}
.lsa_c02141{letter-spacing:444.960000px;}
.ls10_c02141{letter-spacing:1463.760000px;}
.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;}
}
.ws4_c02141{word-spacing:-16.601760px;}
.ws1_c02141{word-spacing:-16.568820px;}
.ws6_c02141{word-spacing:-16.562232px;}
.ws5_c02141{word-spacing:-16.529292px;}
.ws0_c02141{word-spacing:-16.509528px;}
.ws3_c02141{word-spacing:-16.437060px;}
.wsa_c02141{word-spacing:-0.167760px;}
.ws9_c02141{word-spacing:-0.144000px;}
.ws10_c02141{word-spacing:-0.093600px;}
.wsf_c02141{word-spacing:-0.043200px;}
.wse_c02141{word-spacing:-0.014400px;}
.ws8_c02141{word-spacing:0.000000px;}
.wsd_c02141{word-spacing:0.007200px;}
.ws7_c02141{word-spacing:0.014400px;}
.ws1b_c02141{word-spacing:0.026352px;}
.ws23_c02141{word-spacing:0.032940px;}
.wsb_c02141{word-spacing:0.039528px;}
.ws1d_c02141{word-spacing:0.046116px;}
.ws26_c02141{word-spacing:0.052704px;}
.ws28_c02141{word-spacing:1.877580px;}
.ws18_c02141{word-spacing:4.005504px;}
.ws17_c02141{word-spacing:4.341492px;}
.ws16_c02141{word-spacing:4.703832px;}
.ws1f_c02141{word-spacing:4.723596px;}
.ws24_c02141{word-spacing:6.535296px;}
.ws13_c02141{word-spacing:7.536672px;}
.ws14_c02141{word-spacing:7.549848px;}
.ws1e_c02141{word-spacing:7.582788px;}
.ws1a_c02141{word-spacing:7.648668px;}
.ws15_c02141{word-spacing:8.709336px;}
.ws27_c02141{word-spacing:10.145520px;}
.ws21_c02141{word-spacing:11.575116px;}
.ws25_c02141{word-spacing:13.057416px;}
.ws22_c02141{word-spacing:13.367052px;}
.ws20_c02141{word-spacing:14.447484px;}
.ws19_c02141{word-spacing:17.286912px;}
.ws12_c02141{word-spacing:33.150816px;}
.ws1c_c02141{word-spacing:43.553268px;}
.ws11_c02141{word-spacing:48.689172px;}
.ws2_c02141{word-spacing:96.810048px;}
.wsc_c02141{word-spacing:272.160000px;}
._4_c02141{margin-left:-28.800000px;}
._7_c02141{margin-left:-1.382400px;}
._f_c02141{width:1.192428px;}
._c_c02141{width:39.870720px;}
._d_c02141{width:40.950720px;}
._e_c02141{width:55.174464px;}
._b_c02141{width:73.850472px;}
._1_c02141{width:133.131852px;}
._0_c02141{width:194.400000px;}
._3_c02141{width:261.720000px;}
._8_c02141{width:590.025600px;}
._2_c02141{width:601.615440px;}
._9_c02141{width:695.491200px;}
._6_c02141{width:1332.417600px;}
._5_c02141{width:1791.288000px;}
._a_c02141{width:2268.561600px;}
.fc0_c02141{color:rgb(0,0,0);}
.fs4_c02141{font-size:11.880000px;}
.fs5_c02141{font-size:42.120000px;}
.fs7_c02141{font-size:47.880000px;}
.fs1_c02141{font-size:54.000000px;}
.fs6_c02141{font-size:60.120000px;}
.fs3_c02141{font-size:65.880000px;}
.fs0_c02141{font-size:72.000000px;}
.fs2_c02141{font-size:83.880000px;}
.y0_c02141{bottom:0.000000px;}
.y3_c02141{bottom:57.360450px;}
.y2_c02141{bottom:78.060450px;}
.y40_c02141{bottom:116.940450px;}
.y3f_c02141{bottom:137.640450px;}
.y3e_c02141{bottom:158.340450px;}
.y3d_c02141{bottom:179.040450px;}
.y3c_c02141{bottom:199.740450px;}
.y3b_c02141{bottom:220.440450px;}
.y39_c02141{bottom:242.040450px;}
.y38_c02141{bottom:262.380450px;}
.y37_c02141{bottom:281.370450px;}
.y3a_c02141{bottom:300.180450px;}
.y36_c02141{bottom:305.940450px;}
.y34_c02141{bottom:320.430450px;}
.y33_c02141{bottom:340.770450px;}
.y32_c02141{bottom:359.670540px;}
.y35_c02141{bottom:378.570450px;}
.y31_c02141{bottom:384.330450px;}
.y2f_c02141{bottom:398.820450px;}
.y2e_c02141{bottom:419.070960px;}
.y2d_c02141{bottom:438.060870px;}
.y2c_c02141{bottom:457.050780px;}
.y2b_c02141{bottom:476.040690px;}
.y30_c02141{bottom:494.940600px;}
.y2a_c02141{bottom:500.700600px;}
.y27_c02141{bottom:515.100450px;}
.y29_c02141{bottom:533.910450px;}
.y26_c02141{bottom:535.440540px;}
.y28_c02141{bottom:554.340450px;}
.y25_c02141{bottom:560.100450px;}
.y23_c02141{bottom:574.500450px;}
.y22_c02141{bottom:594.841215px;}
.y21_c02141{bottom:613.740540px;}
.y24_c02141{bottom:632.640450px;}
.y20_c02141{bottom:638.220450px;}
.y1d_c02141{bottom:652.890450px;}
.y1c_c02141{bottom:673.141665px;}
.y1b_c02141{bottom:692.131575px;}
.y1a_c02141{bottom:711.121485px;}
.y19_c02141{bottom:730.111395px;}
.y18_c02141{bottom:749.101305px;}
.y17_c02141{bottom:768.091215px;}
.y1f_c02141{bottom:785.460450px;}
.y16_c02141{bottom:786.990540px;}
.y1e_c02141{bottom:805.890450px;}
.y15_c02141{bottom:811.470450px;}
.y14_c02141{bottom:831.180600px;}
.y13_c02141{bottom:845.670450px;}
.y12_c02141{bottom:863.760450px;}
.y11_c02141{bottom:871.320450px;}
.y10_c02141{bottom:892.740450px;}
.yf_c02141{bottom:914.160450px;}
.ye_c02141{bottom:935.670450px;}
.yd_c02141{bottom:957.090450px;}
.yc_c02141{bottom:978.510450px;}
.yb_c02141{bottom:999.750450px;}
.ya_c02141{bottom:1021.170450px;}
.y9_c02141{bottom:1041.690450px;}
.y8_c02141{bottom:1065.270450px;}
.y7_c02141{bottom:1085.970450px;}
.y6_c02141{bottom:1106.490900px;}
.y5_c02141{bottom:1122.060450px;}
.y4_c02141{bottom:1139.250450px;}
.y1_c02141{bottom:1193.160450px;}
.h6_c02141{height:10.551621px;}
.hd_c02141{height:36.957832px;}
.h8_c02141{height:37.410293px;}
.h7_c02141{height:41.628619px;}
.h3_c02141{height:47.961914px;}
.h9_c02141{height:57.805840px;}
.hb_c02141{height:58.513535px;}
.ha_c02141{height:63.170921px;}
.hc_c02141{height:63.172721px;}
.hf_c02141{height:63.173741px;}
.he_c02141{height:63.175421px;}
.h2_c02141{height:63.175781px;}
.h1_c02141{height:63.949219px;}
.h5_c02141{height:64.615781px;}
.h4_c02141{height:74.500840px;}
.h0_c02141{height:1263.000000px;}
.w1_c02141{width:892.500000px;}
.w0_c02141{width:892.830000px;}
.x0_c02141{left:0.000000px;}
.x1_c02141{left:127.620000px;}
.x3_c02141{left:135.630000px;}
.x7_c02141{left:137.520000px;}
.x4_c02141{left:243.990000px;}
.x9_c02141{left:273.870000px;}
.x6_c02141{left:297.990000px;}
.x5_c02141{left:306.720000px;}
.x8_c02141{left:335.160000px;}
.x2_c02141{left:433.080000px;}
.xa_c02141{left:720.990000px;}
.xb_c02141{left:738.900000px;}
@media print{
.v3_c02141{vertical-align:-19.840533pt;}
.v2_c02141{vertical-align:-15.040533pt;}
.v4_c02141{vertical-align:-4.160000pt;}
.v0_c02141{vertical-align:0.000000pt;}
.v1_c02141{vertical-align:1.280000pt;}
.ls23_c02141{letter-spacing:-0.160992pt;}
.ls22_c02141{letter-spacing:-0.160320pt;}
.ls21_c02141{letter-spacing:-0.157248pt;}
.ls20_c02141{letter-spacing:-0.076800pt;}
.ls1e_c02141{letter-spacing:-0.029280pt;}
.ls1b_c02141{letter-spacing:-0.012800pt;}
.ls1d_c02141{letter-spacing:-0.011712pt;}
.ls1f_c02141{letter-spacing:-0.006400pt;}
.ls24_c02141{letter-spacing:-0.005856pt;}
.ls1c_c02141{letter-spacing:0.000000pt;}
.lse_c02141{letter-spacing:0.006400pt;}
.ls1a_c02141{letter-spacing:0.011712pt;}
.lsb_c02141{letter-spacing:0.012800pt;}
.ls13_c02141{letter-spacing:0.017568pt;}
.ls19_c02141{letter-spacing:0.023424pt;}
.ls0_c02141{letter-spacing:0.025600pt;}
.ls18_c02141{letter-spacing:0.029280pt;}
.ls2_c02141{letter-spacing:0.035136pt;}
.lsc_c02141{letter-spacing:0.038400pt;}
.ls15_c02141{letter-spacing:0.040992pt;}
.lsd_c02141{letter-spacing:0.044800pt;}
.ls7_c02141{letter-spacing:0.046848pt;}
.lsf_c02141{letter-spacing:0.052704pt;}
.ls14_c02141{letter-spacing:0.058560pt;}
.ls1_c02141{letter-spacing:0.067104pt;}
.ls16_c02141{letter-spacing:0.076128pt;}
.ls17_c02141{letter-spacing:0.081984pt;}
.ls5_c02141{letter-spacing:0.087840pt;}
.ls12_c02141{letter-spacing:0.099552pt;}
.ls9_c02141{letter-spacing:0.117120pt;}
.ls11_c02141{letter-spacing:0.161728pt;}
.ls3_c02141{letter-spacing:56.960000pt;}
.ls8_c02141{letter-spacing:88.640000pt;}
.ls4_c02141{letter-spacing:101.120000pt;}
.ls6_c02141{letter-spacing:114.240000pt;}
.lsa_c02141{letter-spacing:395.520000pt;}
.ls10_c02141{letter-spacing:1301.120000pt;}
.ws4_c02141{word-spacing:-14.757120pt;}
.ws1_c02141{word-spacing:-14.727840pt;}
.ws6_c02141{word-spacing:-14.721984pt;}
.ws5_c02141{word-spacing:-14.692704pt;}
.ws0_c02141{word-spacing:-14.675136pt;}
.ws3_c02141{word-spacing:-14.610720pt;}
.wsa_c02141{word-spacing:-0.149120pt;}
.ws9_c02141{word-spacing:-0.128000pt;}
.ws10_c02141{word-spacing:-0.083200pt;}
.wsf_c02141{word-spacing:-0.038400pt;}
.wse_c02141{word-spacing:-0.012800pt;}
.ws8_c02141{word-spacing:0.000000pt;}
.wsd_c02141{word-spacing:0.006400pt;}
.ws7_c02141{word-spacing:0.012800pt;}
.ws1b_c02141{word-spacing:0.023424pt;}
.ws23_c02141{word-spacing:0.029280pt;}
.wsb_c02141{word-spacing:0.035136pt;}
.ws1d_c02141{word-spacing:0.040992pt;}
.ws26_c02141{word-spacing:0.046848pt;}
.ws28_c02141{word-spacing:1.668960pt;}
.ws18_c02141{word-spacing:3.560448pt;}
.ws17_c02141{word-spacing:3.859104pt;}
.ws16_c02141{word-spacing:4.181184pt;}
.ws1f_c02141{word-spacing:4.198752pt;}
.ws24_c02141{word-spacing:5.809152pt;}
.ws13_c02141{word-spacing:6.699264pt;}
.ws14_c02141{word-spacing:6.710976pt;}
.ws1e_c02141{word-spacing:6.740256pt;}
.ws1a_c02141{word-spacing:6.798816pt;}
.ws15_c02141{word-spacing:7.741632pt;}
.ws27_c02141{word-spacing:9.018240pt;}
.ws21_c02141{word-spacing:10.288992pt;}
.ws25_c02141{word-spacing:11.606592pt;}
.ws22_c02141{word-spacing:11.881824pt;}
.ws20_c02141{word-spacing:12.842208pt;}
.ws19_c02141{word-spacing:15.366144pt;}
.ws12_c02141{word-spacing:29.467392pt;}
.ws1c_c02141{word-spacing:38.714016pt;}
.ws11_c02141{word-spacing:43.279264pt;}
.ws2_c02141{word-spacing:86.053376pt;}
.wsc_c02141{word-spacing:241.920000pt;}
._4_c02141{margin-left:-25.600000pt;}
._7_c02141{margin-left:-1.228800pt;}
._f_c02141{width:1.059936pt;}
._c_c02141{width:35.440640pt;}
._d_c02141{width:36.400640pt;}
._e_c02141{width:49.043968pt;}
._b_c02141{width:65.644864pt;}
._1_c02141{width:118.339424pt;}
._0_c02141{width:172.800000pt;}
._3_c02141{width:232.640000pt;}
._8_c02141{width:524.467200pt;}
._2_c02141{width:534.769280pt;}
._9_c02141{width:618.214400pt;}
._6_c02141{width:1184.371200pt;}
._5_c02141{width:1592.256000pt;}
._a_c02141{width:2016.499200pt;}
.fs4_c02141{font-size:10.560000pt;}
.fs5_c02141{font-size:37.440000pt;}
.fs7_c02141{font-size:42.560000pt;}
.fs1_c02141{font-size:48.000000pt;}
.fs6_c02141{font-size:53.440000pt;}
.fs3_c02141{font-size:58.560000pt;}
.fs0_c02141{font-size:64.000000pt;}
.fs2_c02141{font-size:74.560000pt;}
.y0_c02141{bottom:0.000000pt;}
.y3_c02141{bottom:50.987067pt;}
.y2_c02141{bottom:69.387067pt;}
.y40_c02141{bottom:103.947067pt;}
.y3f_c02141{bottom:122.347067pt;}
.y3e_c02141{bottom:140.747067pt;}
.y3d_c02141{bottom:159.147067pt;}
.y3c_c02141{bottom:177.547067pt;}
.y3b_c02141{bottom:195.947067pt;}
.y39_c02141{bottom:215.147067pt;}
.y38_c02141{bottom:233.227067pt;}
.y37_c02141{bottom:250.107067pt;}
.y3a_c02141{bottom:266.827067pt;}
.y36_c02141{bottom:271.947067pt;}
.y34_c02141{bottom:284.827067pt;}
.y33_c02141{bottom:302.907067pt;}
.y32_c02141{bottom:319.707147pt;}
.y35_c02141{bottom:336.507067pt;}
.y31_c02141{bottom:341.627067pt;}
.y2f_c02141{bottom:354.507067pt;}
.y2e_c02141{bottom:372.507520pt;}
.y2d_c02141{bottom:389.387440pt;}
.y2c_c02141{bottom:406.267360pt;}
.y2b_c02141{bottom:423.147280pt;}
.y30_c02141{bottom:439.947200pt;}
.y2a_c02141{bottom:445.067200pt;}
.y27_c02141{bottom:457.867067pt;}
.y29_c02141{bottom:474.587067pt;}
.y26_c02141{bottom:475.947147pt;}
.y28_c02141{bottom:492.747067pt;}
.y25_c02141{bottom:497.867067pt;}
.y23_c02141{bottom:510.667067pt;}
.y22_c02141{bottom:528.747747pt;}
.y21_c02141{bottom:545.547147pt;}
.y24_c02141{bottom:562.347067pt;}
.y20_c02141{bottom:567.307067pt;}
.y1d_c02141{bottom:580.347067pt;}
.y1c_c02141{bottom:598.348147pt;}
.y1b_c02141{bottom:615.228067pt;}
.y1a_c02141{bottom:632.107987pt;}
.y19_c02141{bottom:648.987907pt;}
.y18_c02141{bottom:665.867827pt;}
.y17_c02141{bottom:682.747747pt;}
.y1f_c02141{bottom:698.187067pt;}
.y16_c02141{bottom:699.547147pt;}
.y1e_c02141{bottom:716.347067pt;}
.y15_c02141{bottom:721.307067pt;}
.y14_c02141{bottom:738.827200pt;}
.y13_c02141{bottom:751.707067pt;}
.y12_c02141{bottom:767.787067pt;}
.y11_c02141{bottom:774.507067pt;}
.y10_c02141{bottom:793.547067pt;}
.yf_c02141{bottom:812.587067pt;}
.ye_c02141{bottom:831.707067pt;}
.yd_c02141{bottom:850.747067pt;}
.yc_c02141{bottom:869.787067pt;}
.yb_c02141{bottom:888.667067pt;}
.ya_c02141{bottom:907.707067pt;}
.y9_c02141{bottom:925.947067pt;}
.y8_c02141{bottom:946.907067pt;}
.y7_c02141{bottom:965.307067pt;}
.y6_c02141{bottom:983.547467pt;}
.y5_c02141{bottom:997.387067pt;}
.y4_c02141{bottom:1012.667067pt;}
.y1_c02141{bottom:1060.587067pt;}
.h6_c02141{height:9.379219pt;}
.hd_c02141{height:32.851406pt;}
.h8_c02141{height:33.253594pt;}
.h7_c02141{height:37.003217pt;}
.h3_c02141{height:42.632812pt;}
.h9_c02141{height:51.382969pt;}
.hb_c02141{height:52.012031pt;}
.ha_c02141{height:56.151930pt;}
.hc_c02141{height:56.153530pt;}
.hf_c02141{height:56.154437pt;}
.he_c02141{height:56.155930pt;}
.h2_c02141{height:56.156250pt;}
.h1_c02141{height:56.843750pt;}
.h5_c02141{height:57.436250pt;}
.h4_c02141{height:66.222969pt;}
.h0_c02141{height:1122.666667pt;}
.w1_c02141{width:793.333333pt;}
.w0_c02141{width:793.626667pt;}
.x0_c02141{left:0.000000pt;}
.x1_c02141{left:113.440000pt;}
.x3_c02141{left:120.560000pt;}
.x7_c02141{left:122.240000pt;}
.x4_c02141{left:216.880000pt;}
.x9_c02141{left:243.440000pt;}
.x6_c02141{left:264.880000pt;}
.x5_c02141{left:272.640000pt;}
.x8_c02141{left:297.920000pt;}
.x2_c02141{left:384.960000pt;}
.xa_c02141{left:640.880000pt;}
.xb_c02141{left:656.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_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_b5e7a64168e0ef73e060b028.woff2')format("woff");}.ff1_c02142{font-family:ff1_c02142;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02142;src:url('chunks/assets/font_fd99f37c502972a8b6a5809c.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;}
.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;}
.ls14_c02142{letter-spacing:-0.050400px;}
.ls15_c02142{letter-spacing:-0.021600px;}
.lse_c02142{letter-spacing:-0.014400px;}
.ls10_c02142{letter-spacing:-0.007200px;}
.ls12_c02142{letter-spacing:-0.006588px;}
.lsf_c02142{letter-spacing:0.000000px;}
.ls8_c02142{letter-spacing:0.013176px;}
.ls1_c02142{letter-spacing:0.014400px;}
.ls0_c02142{letter-spacing:0.021600px;}
.ls2_c02142{letter-spacing:0.028800px;}
.lsa_c02142{letter-spacing:0.032940px;}
.ls3_c02142{letter-spacing:0.036000px;}
.ls9_c02142{letter-spacing:0.039528px;}
.lsc_c02142{letter-spacing:0.043200px;}
.ls7_c02142{letter-spacing:0.046116px;}
.ls4_c02142{letter-spacing:0.050400px;}
.ls5_c02142{letter-spacing:0.057600px;}
.ls6_c02142{letter-spacing:0.079056px;}
.lsb_c02142{letter-spacing:0.093600px;}
.lsd_c02142{letter-spacing:0.115200px;}
.ls13_c02142{letter-spacing:0.360000px;}
.ls11_c02142{letter-spacing:5.760000px;}
.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;}
}
.ws2_c02142{word-spacing:-0.021600px;}
.ws1_c02142{word-spacing:0.000000px;}
.ws0_c02142{word-spacing:0.014400px;}
.wse_c02142{word-spacing:0.401868px;}
.ws10_c02142{word-spacing:0.408456px;}
.wsf_c02142{word-spacing:0.434808px;}
.ws16_c02142{word-spacing:0.568800px;}
.ws15_c02142{word-spacing:0.691200px;}
.ws9_c02142{word-spacing:0.972000px;}
.wsa_c02142{word-spacing:1.044000px;}
.ws1b_c02142{word-spacing:1.404000px;}
.ws1a_c02142{word-spacing:1.418400px;}
.ws19_c02142{word-spacing:1.756800px;}
.wsb_c02142{word-spacing:5.724000px;}
.wsc_c02142{word-spacing:5.771088px;}
.wsd_c02142{word-spacing:5.856732px;}
.ws4_c02142{word-spacing:6.091200px;}
.ws3_c02142{word-spacing:6.105600px;}
.ws12_c02142{word-spacing:9.014400px;}
.ws13_c02142{word-spacing:9.050400px;}
.ws11_c02142{word-spacing:9.058500px;}
.ws14_c02142{word-spacing:10.749600px;}
.ws18_c02142{word-spacing:16.041600px;}
.ws17_c02142{word-spacing:16.128000px;}
.ws7_c02142{word-spacing:33.429600px;}
.ws8_c02142{word-spacing:33.487200px;}
.ws5_c02142{word-spacing:35.604000px;}
.ws6_c02142{word-spacing:35.654400px;}
.ws1c_c02142{word-spacing:39.600000px;}
.ws1d_c02142{word-spacing:39.621600px;}
._2_c02142{margin-left:-6.013008px;}
._1_c02142{margin-left:-1.224000px;}
._0_c02142{width:194.400000px;}
.fc0_c02142{color:rgb(0,0,0);}
.fs1_c02142{font-size:47.880000px;}
.fs2_c02142{font-size:65.880000px;}
.fs0_c02142{font-size:72.000000px;}
.y0_c02142{bottom:0.000000px;}
.y3_c02142{bottom:57.360450px;}
.y2_c02142{bottom:78.060450px;}
.y2e_c02142{bottom:115.590450px;}
.y2d_c02142{bottom:136.290450px;}
.y2c_c02142{bottom:156.990450px;}
.y2b_c02142{bottom:177.690450px;}
.y2a_c02142{bottom:198.390450px;}
.y29_c02142{bottom:219.090450px;}
.y28_c02142{bottom:239.790450px;}
.y27_c02142{bottom:260.490450px;}
.y26_c02142{bottom:281.190450px;}
.y25_c02142{bottom:301.890450px;}
.y24_c02142{bottom:322.590450px;}
.y23_c02142{bottom:343.290450px;}
.y22_c02142{bottom:363.990450px;}
.y21_c02142{bottom:384.690450px;}
.y20_c02142{bottom:405.390450px;}
.y1f_c02142{bottom:426.090450px;}
.y1e_c02142{bottom:446.790450px;}
.y1d_c02142{bottom:467.490450px;}
.y1c_c02142{bottom:488.190450px;}
.y1b_c02142{bottom:508.890450px;}
.y1a_c02142{bottom:529.590450px;}
.y19_c02142{bottom:550.290450px;}
.y18_c02142{bottom:570.990450px;}
.y17_c02142{bottom:591.690450px;}
.y16_c02142{bottom:612.390450px;}
.y15_c02142{bottom:633.090450px;}
.y14_c02142{bottom:664.140450px;}
.y13_c02142{bottom:695.190450px;}
.y12_c02142{bottom:726.240450px;}
.y11_c02142{bottom:757.290450px;}
.y10_c02142{bottom:788.250450px;}
.yf_c02142{bottom:819.300450px;}
.ye_c02142{bottom:850.350450px;}
.yd_c02142{bottom:881.400450px;}
.yc_c02142{bottom:912.450450px;}
.yb_c02142{bottom:943.500450px;}
.ya_c02142{bottom:974.550450px;}
.y9_c02142{bottom:1005.600450px;}
.y8_c02142{bottom:1036.650450px;}
.y7_c02142{bottom:1067.700450px;}
.y6_c02142{bottom:1098.570450px;}
.y5_c02142{bottom:1124.940450px;}
.y4_c02142{bottom:1139.970450px;}
.y1_c02142{bottom:1193.160450px;}
.h3_c02142{height:42.526230px;}
.h2_c02142{height:63.175781px;}
.h1_c02142{height:63.949219px;}
.h0_c02142{height:1263.000000px;}
.w1_c02142{width:892.500000px;}
.w0_c02142{width:892.830000px;}
.x0_c02142{left:0.000000px;}
.x4_c02142{left:117.000000px;}
.x1_c02142{left:127.620000px;}
.x3_c02142{left:148.950000px;}
.x2_c02142{left:433.080000px;}
@media print{
.v0_c02142{vertical-align:0.000000pt;}
.ls14_c02142{letter-spacing:-0.044800pt;}
.ls15_c02142{letter-spacing:-0.019200pt;}
.lse_c02142{letter-spacing:-0.012800pt;}
.ls10_c02142{letter-spacing:-0.006400pt;}
.ls12_c02142{letter-spacing:-0.005856pt;}
.lsf_c02142{letter-spacing:0.000000pt;}
.ls8_c02142{letter-spacing:0.011712pt;}
.ls1_c02142{letter-spacing:0.012800pt;}
.ls0_c02142{letter-spacing:0.019200pt;}
.ls2_c02142{letter-spacing:0.025600pt;}
.lsa_c02142{letter-spacing:0.029280pt;}
.ls3_c02142{letter-spacing:0.032000pt;}
.ls9_c02142{letter-spacing:0.035136pt;}
.lsc_c02142{letter-spacing:0.038400pt;}
.ls7_c02142{letter-spacing:0.040992pt;}
.ls4_c02142{letter-spacing:0.044800pt;}
.ls5_c02142{letter-spacing:0.051200pt;}
.ls6_c02142{letter-spacing:0.070272pt;}
.lsb_c02142{letter-spacing:0.083200pt;}
.lsd_c02142{letter-spacing:0.102400pt;}
.ls13_c02142{letter-spacing:0.320000pt;}
.ls11_c02142{letter-spacing:5.120000pt;}
.ws2_c02142{word-spacing:-0.019200pt;}
.ws1_c02142{word-spacing:0.000000pt;}
.ws0_c02142{word-spacing:0.012800pt;}
.wse_c02142{word-spacing:0.357216pt;}
.ws10_c02142{word-spacing:0.363072pt;}
.wsf_c02142{word-spacing:0.386496pt;}
.ws16_c02142{word-spacing:0.505600pt;}
.ws15_c02142{word-spacing:0.614400pt;}
.ws9_c02142{word-spacing:0.864000pt;}
.wsa_c02142{word-spacing:0.928000pt;}
.ws1b_c02142{word-spacing:1.248000pt;}
.ws1a_c02142{word-spacing:1.260800pt;}
.ws19_c02142{word-spacing:1.561600pt;}
.wsb_c02142{word-spacing:5.088000pt;}
.wsc_c02142{word-spacing:5.129856pt;}
.wsd_c02142{word-spacing:5.205984pt;}
.ws4_c02142{word-spacing:5.414400pt;}
.ws3_c02142{word-spacing:5.427200pt;}
.ws12_c02142{word-spacing:8.012800pt;}
.ws13_c02142{word-spacing:8.044800pt;}
.ws11_c02142{word-spacing:8.052000pt;}
.ws14_c02142{word-spacing:9.555200pt;}
.ws18_c02142{word-spacing:14.259200pt;}
.ws17_c02142{word-spacing:14.336000pt;}
.ws7_c02142{word-spacing:29.715200pt;}
.ws8_c02142{word-spacing:29.766400pt;}
.ws5_c02142{word-spacing:31.648000pt;}
.ws6_c02142{word-spacing:31.692800pt;}
.ws1c_c02142{word-spacing:35.200000pt;}
.ws1d_c02142{word-spacing:35.219200pt;}
._2_c02142{margin-left:-5.344896pt;}
._1_c02142{margin-left:-1.088000pt;}
._0_c02142{width:172.800000pt;}
.fs1_c02142{font-size:42.560000pt;}
.fs2_c02142{font-size:58.560000pt;}
.fs0_c02142{font-size:64.000000pt;}
.y0_c02142{bottom:0.000000pt;}
.y3_c02142{bottom:50.987067pt;}
.y2_c02142{bottom:69.387067pt;}
.y2e_c02142{bottom:102.747067pt;}
.y2d_c02142{bottom:121.147067pt;}
.y2c_c02142{bottom:139.547067pt;}
.y2b_c02142{bottom:157.947067pt;}
.y2a_c02142{bottom:176.347067pt;}
.y29_c02142{bottom:194.747067pt;}
.y28_c02142{bottom:213.147067pt;}
.y27_c02142{bottom:231.547067pt;}
.y26_c02142{bottom:249.947067pt;}
.y25_c02142{bottom:268.347067pt;}
.y24_c02142{bottom:286.747067pt;}
.y23_c02142{bottom:305.147067pt;}
.y22_c02142{bottom:323.547067pt;}
.y21_c02142{bottom:341.947067pt;}
.y20_c02142{bottom:360.347067pt;}
.y1f_c02142{bottom:378.747067pt;}
.y1e_c02142{bottom:397.147067pt;}
.y1d_c02142{bottom:415.547067pt;}
.y1c_c02142{bottom:433.947067pt;}
.y1b_c02142{bottom:452.347067pt;}
.y1a_c02142{bottom:470.747067pt;}
.y19_c02142{bottom:489.147067pt;}
.y18_c02142{bottom:507.547067pt;}
.y17_c02142{bottom:525.947067pt;}
.y16_c02142{bottom:544.347067pt;}
.y15_c02142{bottom:562.747067pt;}
.y14_c02142{bottom:590.347067pt;}
.y13_c02142{bottom:617.947067pt;}
.y12_c02142{bottom:645.547067pt;}
.y11_c02142{bottom:673.147067pt;}
.y10_c02142{bottom:700.667067pt;}
.yf_c02142{bottom:728.267067pt;}
.ye_c02142{bottom:755.867067pt;}
.yd_c02142{bottom:783.467067pt;}
.yc_c02142{bottom:811.067067pt;}
.yb_c02142{bottom:838.667067pt;}
.ya_c02142{bottom:866.267067pt;}
.y9_c02142{bottom:893.867067pt;}
.y8_c02142{bottom:921.467067pt;}
.y7_c02142{bottom:949.067067pt;}
.y6_c02142{bottom:976.507067pt;}
.y5_c02142{bottom:999.947067pt;}
.y4_c02142{bottom:1013.307067pt;}
.y1_c02142{bottom:1060.587067pt;}
.h3_c02142{height:37.801094pt;}
.h2_c02142{height:56.156250pt;}
.h1_c02142{height:56.843750pt;}
.h0_c02142{height:1122.666667pt;}
.w1_c02142{width:793.333333pt;}
.w0_c02142{width:793.626667pt;}
.x0_c02142{left:0.000000pt;}
.x4_c02142{left:104.000000pt;}
.x1_c02142{left:113.440000pt;}
.x3_c02142{left:132.400000pt;}
.x2_c02142{left:384.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_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_5fcedc2f37ac1690c5309933.woff2')format("woff");}.ff1_c02143{font-family:ff1_c02143;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02143;src:url('chunks/assets/font_d044ea463b85b5b08042316d.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02143{font-family:ff3_c02143;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;}
.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);}
.v1_c02143{vertical-align:-5.400000px;}
.v0_c02143{vertical-align:0.000000px;}
.v3_c02143{vertical-align:11.160000px;}
.v2_c02143{vertical-align:16.560000px;}
.ls1f_c02143{letter-spacing:-0.090972px;}
.ls1d_c02143{letter-spacing:-0.059292px;}
.ls1a_c02143{letter-spacing:-0.050400px;}
.ls1c_c02143{letter-spacing:-0.021600px;}
.ls17_c02143{letter-spacing:-0.014400px;}
.ls19_c02143{letter-spacing:-0.007200px;}
.ls18_c02143{letter-spacing:0.000000px;}
.ls0_c02143{letter-spacing:0.007200px;}
.ls9_c02143{letter-spacing:0.013176px;}
.ls1b_c02143{letter-spacing:0.014400px;}
.ls7_c02143{letter-spacing:0.026352px;}
.ls6_c02143{letter-spacing:0.032940px;}
.ls1_c02143{letter-spacing:0.036000px;}
.ls5_c02143{letter-spacing:0.039528px;}
.ls10_c02143{letter-spacing:0.046116px;}
.ls3_c02143{letter-spacing:0.052704px;}
.lsc_c02143{letter-spacing:0.059292px;}
.ls16_c02143{letter-spacing:0.065880px;}
.lsa_c02143{letter-spacing:0.079056px;}
.ls2_c02143{letter-spacing:0.079200px;}
.lsf_c02143{letter-spacing:0.085644px;}
.ls4_c02143{letter-spacing:0.171288px;}
.ls1e_c02143{letter-spacing:0.180360px;}
.lsb_c02143{letter-spacing:0.181944px;}
.ls8_c02143{letter-spacing:209.880000px;}
.ls14_c02143{letter-spacing:1029.600000px;}
.ls15_c02143{letter-spacing:1068.120000px;}
.lse_c02143{letter-spacing:1082.520000px;}
.ls13_c02143{letter-spacing:1161.720000px;}
.lsd_c02143{letter-spacing:1231.200000px;}
.ls12_c02143{letter-spacing:1236.600000px;}
.ls11_c02143{letter-spacing:1242.360000px;}
.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;}
}
.ws3_c02143{word-spacing:-47.880000px;}
.ws0_c02143{word-spacing:-18.000000px;}
.ws2_c02143{word-spacing:-16.483176px;}
.ws1_c02143{word-spacing:-16.410708px;}
.ws13_c02143{word-spacing:-0.272916px;}
.wsd_c02143{word-spacing:-0.158400px;}
.wsc_c02143{word-spacing:-0.036000px;}
.ws6_c02143{word-spacing:-0.007200px;}
.ws5_c02143{word-spacing:0.000000px;}
.ws15_c02143{word-spacing:0.006588px;}
.ws7_c02143{word-spacing:0.007200px;}
.ws12_c02143{word-spacing:0.013176px;}
.ws4_c02143{word-spacing:0.014400px;}
.ws18_c02143{word-spacing:0.026352px;}
.ws14_c02143{word-spacing:0.032940px;}
.wse_c02143{word-spacing:0.039528px;}
.ws16_c02143{word-spacing:0.046116px;}
.wsf_c02143{word-spacing:0.052704px;}
.ws10_c02143{word-spacing:0.059292px;}
.ws11_c02143{word-spacing:0.065880px;}
.ws17_c02143{word-spacing:0.079056px;}
.ws9_c02143{word-spacing:12.952800px;}
.ws8_c02143{word-spacing:12.981600px;}
.wsb_c02143{word-spacing:16.135200px;}
.wsa_c02143{word-spacing:16.264800px;}
._1_c02143{margin-left:-1.231200px;}
._5_c02143{width:1.321488px;}
._3_c02143{width:51.748920px;}
._13_c02143{width:137.725704px;}
._0_c02143{width:194.400000px;}
._12_c02143{width:196.424784px;}
._2_c02143{width:334.643400px;}
._11_c02143{width:378.793800px;}
._8_c02143{width:399.078252px;}
._a_c02143{width:412.069788px;}
._f_c02143{width:417.149136px;}
._14_c02143{width:497.983896px;}
._4_c02143{width:517.569264px;}
._d_c02143{width:604.426212px;}
._c_c02143{width:607.542336px;}
._b_c02143{width:616.712832px;}
._6_c02143{width:643.479876px;}
._9_c02143{width:662.130504px;}
._7_c02143{width:717.501888px;}
._10_c02143{width:843.274152px;}
._e_c02143{width:849.097944px;}
.fc0_c02143{color:rgb(0,0,0);}
.fs3_c02143{font-size:47.880000px;}
.fs2_c02143{font-size:60.120000px;}
.fs1_c02143{font-size:65.880000px;}
.fs0_c02143{font-size:72.000000px;}
.y0_c02143{bottom:0.000000px;}
.y3_c02143{bottom:57.360450px;}
.y2_c02143{bottom:78.060450px;}
.y39_c02143{bottom:124.321260px;}
.y38_c02143{bottom:141.511071px;}
.y37_c02143{bottom:158.791062px;}
.y36_c02143{bottom:176.071053px;}
.y35_c02143{bottom:193.260864px;}
.y34_c02143{bottom:210.540855px;}
.y33_c02143{bottom:227.820846px;}
.y32_c02143{bottom:245.010657px;}
.y31_c02143{bottom:262.290648px;}
.y30_c02143{bottom:279.480459px;}
.y2f_c02143{bottom:296.760450px;}
.y2e_c02143{bottom:316.470450px;}
.y2d_c02143{bottom:336.180450px;}
.y2c_c02143{bottom:355.980450px;}
.y2b_c02143{bottom:375.690450px;}
.y2a_c02143{bottom:395.400450px;}
.y29_c02143{bottom:415.110600px;}
.y28_c02143{bottom:434.820450px;}
.y27_c02143{bottom:454.530600px;}
.y26_c02143{bottom:474.240450px;}
.y25_c02143{bottom:494.040600px;}
.y24_c02143{bottom:513.750600px;}
.y23_c02143{bottom:533.460450px;}
.y22_c02143{bottom:553.170450px;}
.y21_c02143{bottom:572.880450px;}
.y20_c02143{bottom:592.590450px;}
.y1f_c02143{bottom:612.300450px;}
.y1e_c02143{bottom:632.100450px;}
.y1d_c02143{bottom:651.810450px;}
.y1c_c02143{bottom:671.520450px;}
.y1b_c02143{bottom:691.230450px;}
.y1a_c02143{bottom:710.940450px;}
.y19_c02143{bottom:730.650450px;}
.y18_c02143{bottom:750.450450px;}
.y17_c02143{bottom:770.160450px;}
.y16_c02143{bottom:789.870450px;}
.y15_c02143{bottom:808.230450px;}
.y14_c02143{bottom:826.140450px;}
.y13_c02143{bottom:841.710450px;}
.y12_c02143{bottom:861.060450px;}
.y11_c02143{bottom:878.700450px;}
.y10_c02143{bottom:897.690450px;}
.yf_c02143{bottom:916.680450px;}
.ye_c02143{bottom:935.670450px;}
.yd_c02143{bottom:954.660450px;}
.yc_c02143{bottom:973.560450px;}
.yb_c02143{bottom:993.000450px;}
.ya_c02143{bottom:1013.700450px;}
.y9_c02143{bottom:1034.400450px;}
.y8_c02143{bottom:1055.100450px;}
.y7_c02143{bottom:1076.430450px;}
.y6_c02143{bottom:1097.850450px;}
.y5_c02143{bottom:1119.450450px;}
.y4_c02143{bottom:1139.970450px;}
.y1_c02143{bottom:1193.160450px;}
.h4_c02143{height:42.526230px;}
.h3_c02143{height:53.397598px;}
.h9_c02143{height:53.685630px;}
.h6_c02143{height:53.686230px;}
.ha_c02143{height:53.686830px;}
.h5_c02143{height:58.513535px;}
.h8_c02143{height:58.548619px;}
.h7_c02143{height:58.549219px;}
.h2_c02143{height:63.175781px;}
.h1_c02143{height:63.949219px;}
.h0_c02143{height:1263.000000px;}
.w1_c02143{width:892.500000px;}
.w0_c02143{width:892.830000px;}
.x0_c02143{left:0.000000px;}
.x1_c02143{left:127.620000px;}
.x3_c02143{left:135.630000px;}
.x5_c02143{left:146.340000px;}
.x4_c02143{left:148.860000px;}
.x7_c02143{left:167.580000px;}
.x2_c02143{left:433.080000px;}
.x6_c02143{left:451.800000px;}
@media print{
.v1_c02143{vertical-align:-4.800000pt;}
.v0_c02143{vertical-align:0.000000pt;}
.v3_c02143{vertical-align:9.920000pt;}
.v2_c02143{vertical-align:14.720000pt;}
.ls1f_c02143{letter-spacing:-0.080864pt;}
.ls1d_c02143{letter-spacing:-0.052704pt;}
.ls1a_c02143{letter-spacing:-0.044800pt;}
.ls1c_c02143{letter-spacing:-0.019200pt;}
.ls17_c02143{letter-spacing:-0.012800pt;}
.ls19_c02143{letter-spacing:-0.006400pt;}
.ls18_c02143{letter-spacing:0.000000pt;}
.ls0_c02143{letter-spacing:0.006400pt;}
.ls9_c02143{letter-spacing:0.011712pt;}
.ls1b_c02143{letter-spacing:0.012800pt;}
.ls7_c02143{letter-spacing:0.023424pt;}
.ls6_c02143{letter-spacing:0.029280pt;}
.ls1_c02143{letter-spacing:0.032000pt;}
.ls5_c02143{letter-spacing:0.035136pt;}
.ls10_c02143{letter-spacing:0.040992pt;}
.ls3_c02143{letter-spacing:0.046848pt;}
.lsc_c02143{letter-spacing:0.052704pt;}
.ls16_c02143{letter-spacing:0.058560pt;}
.lsa_c02143{letter-spacing:0.070272pt;}
.ls2_c02143{letter-spacing:0.070400pt;}
.lsf_c02143{letter-spacing:0.076128pt;}
.ls4_c02143{letter-spacing:0.152256pt;}
.ls1e_c02143{letter-spacing:0.160320pt;}
.lsb_c02143{letter-spacing:0.161728pt;}
.ls8_c02143{letter-spacing:186.560000pt;}
.ls14_c02143{letter-spacing:915.200000pt;}
.ls15_c02143{letter-spacing:949.440000pt;}
.lse_c02143{letter-spacing:962.240000pt;}
.ls13_c02143{letter-spacing:1032.640000pt;}
.lsd_c02143{letter-spacing:1094.400000pt;}
.ls12_c02143{letter-spacing:1099.200000pt;}
.ls11_c02143{letter-spacing:1104.320000pt;}
.ws3_c02143{word-spacing:-42.560000pt;}
.ws0_c02143{word-spacing:-16.000000pt;}
.ws2_c02143{word-spacing:-14.651712pt;}
.ws1_c02143{word-spacing:-14.587296pt;}
.ws13_c02143{word-spacing:-0.242592pt;}
.wsd_c02143{word-spacing:-0.140800pt;}
.wsc_c02143{word-spacing:-0.032000pt;}
.ws6_c02143{word-spacing:-0.006400pt;}
.ws5_c02143{word-spacing:0.000000pt;}
.ws15_c02143{word-spacing:0.005856pt;}
.ws7_c02143{word-spacing:0.006400pt;}
.ws12_c02143{word-spacing:0.011712pt;}
.ws4_c02143{word-spacing:0.012800pt;}
.ws18_c02143{word-spacing:0.023424pt;}
.ws14_c02143{word-spacing:0.029280pt;}
.wse_c02143{word-spacing:0.035136pt;}
.ws16_c02143{word-spacing:0.040992pt;}
.wsf_c02143{word-spacing:0.046848pt;}
.ws10_c02143{word-spacing:0.052704pt;}
.ws11_c02143{word-spacing:0.058560pt;}
.ws17_c02143{word-spacing:0.070272pt;}
.ws9_c02143{word-spacing:11.513600pt;}
.ws8_c02143{word-spacing:11.539200pt;}
.wsb_c02143{word-spacing:14.342400pt;}
.wsa_c02143{word-spacing:14.457600pt;}
._1_c02143{margin-left:-1.094400pt;}
._5_c02143{width:1.174656pt;}
._3_c02143{width:45.999040pt;}
._13_c02143{width:122.422848pt;}
._0_c02143{width:172.800000pt;}
._12_c02143{width:174.599808pt;}
._2_c02143{width:297.460800pt;}
._11_c02143{width:336.705600pt;}
._8_c02143{width:354.736224pt;}
._a_c02143{width:366.284256pt;}
._f_c02143{width:370.799232pt;}
._14_c02143{width:442.652352pt;}
._4_c02143{width:460.061568pt;}
._d_c02143{width:537.267744pt;}
._c_c02143{width:540.037632pt;}
._b_c02143{width:548.189184pt;}
._6_c02143{width:571.982112pt;}
._9_c02143{width:588.560448pt;}
._7_c02143{width:637.779456pt;}
._10_c02143{width:749.577024pt;}
._e_c02143{width:754.753728pt;}
.fs3_c02143{font-size:42.560000pt;}
.fs2_c02143{font-size:53.440000pt;}
.fs1_c02143{font-size:58.560000pt;}
.fs0_c02143{font-size:64.000000pt;}
.y0_c02143{bottom:0.000000pt;}
.y3_c02143{bottom:50.987067pt;}
.y2_c02143{bottom:69.387067pt;}
.y39_c02143{bottom:110.507787pt;}
.y38_c02143{bottom:125.787619pt;}
.y37_c02143{bottom:141.147611pt;}
.y36_c02143{bottom:156.507603pt;}
.y35_c02143{bottom:171.787435pt;}
.y34_c02143{bottom:187.147427pt;}
.y33_c02143{bottom:202.507419pt;}
.y32_c02143{bottom:217.787251pt;}
.y31_c02143{bottom:233.147243pt;}
.y30_c02143{bottom:248.427075pt;}
.y2f_c02143{bottom:263.787067pt;}
.y2e_c02143{bottom:281.307067pt;}
.y2d_c02143{bottom:298.827067pt;}
.y2c_c02143{bottom:316.427067pt;}
.y2b_c02143{bottom:333.947067pt;}
.y2a_c02143{bottom:351.467067pt;}
.y29_c02143{bottom:368.987200pt;}
.y28_c02143{bottom:386.507067pt;}
.y27_c02143{bottom:404.027200pt;}
.y26_c02143{bottom:421.547067pt;}
.y25_c02143{bottom:439.147200pt;}
.y24_c02143{bottom:456.667200pt;}
.y23_c02143{bottom:474.187067pt;}
.y22_c02143{bottom:491.707067pt;}
.y21_c02143{bottom:509.227067pt;}
.y20_c02143{bottom:526.747067pt;}
.y1f_c02143{bottom:544.267067pt;}
.y1e_c02143{bottom:561.867067pt;}
.y1d_c02143{bottom:579.387067pt;}
.y1c_c02143{bottom:596.907067pt;}
.y1b_c02143{bottom:614.427067pt;}
.y1a_c02143{bottom:631.947067pt;}
.y19_c02143{bottom:649.467067pt;}
.y18_c02143{bottom:667.067067pt;}
.y17_c02143{bottom:684.587067pt;}
.y16_c02143{bottom:702.107067pt;}
.y15_c02143{bottom:718.427067pt;}
.y14_c02143{bottom:734.347067pt;}
.y13_c02143{bottom:748.187067pt;}
.y12_c02143{bottom:765.387067pt;}
.y11_c02143{bottom:781.067067pt;}
.y10_c02143{bottom:797.947067pt;}
.yf_c02143{bottom:814.827067pt;}
.ye_c02143{bottom:831.707067pt;}
.yd_c02143{bottom:848.587067pt;}
.yc_c02143{bottom:865.387067pt;}
.yb_c02143{bottom:882.667067pt;}
.ya_c02143{bottom:901.067067pt;}
.y9_c02143{bottom:919.467067pt;}
.y8_c02143{bottom:937.867067pt;}
.y7_c02143{bottom:956.827067pt;}
.y6_c02143{bottom:975.867067pt;}
.y5_c02143{bottom:995.067067pt;}
.y4_c02143{bottom:1013.307067pt;}
.y1_c02143{bottom:1060.587067pt;}
.h4_c02143{height:37.801094pt;}
.h3_c02143{height:47.464531pt;}
.h9_c02143{height:47.720560pt;}
.h6_c02143{height:47.721094pt;}
.ha_c02143{height:47.721627pt;}
.h5_c02143{height:52.012031pt;}
.h8_c02143{height:52.043217pt;}
.h7_c02143{height:52.043750pt;}
.h2_c02143{height:56.156250pt;}
.h1_c02143{height:56.843750pt;}
.h0_c02143{height:1122.666667pt;}
.w1_c02143{width:793.333333pt;}
.w0_c02143{width:793.626667pt;}
.x0_c02143{left:0.000000pt;}
.x1_c02143{left:113.440000pt;}
.x3_c02143{left:120.560000pt;}
.x5_c02143{left:130.080000pt;}
.x4_c02143{left:132.320000pt;}
.x7_c02143{left:148.960000pt;}
.x2_c02143{left:384.960000pt;}
.x6_c02143{left:401.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_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_36b7c7b56efd99fc09bcc074.woff2')format("woff");}.ff1_c02144{font-family:ff1_c02144;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02144;src:url('chunks/assets/font_325cca62cd37bf11cee42b2f.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02144{font-family:ff3_c02144;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;}
.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);}
.v1_c02144{vertical-align:-5.400000px;}
.v0_c02144{vertical-align:0.000000px;}
.v2_c02144{vertical-align:11.160000px;}
.v3_c02144{vertical-align:16.560000px;}
.ls13_c02144{letter-spacing:-0.090972px;}
.ls11_c02144{letter-spacing:-0.059292px;}
.ls14_c02144{letter-spacing:-0.024048px;}
.lsf_c02144{letter-spacing:-0.014400px;}
.ls15_c02144{letter-spacing:-0.012024px;}
.ls10_c02144{letter-spacing:0.000000px;}
.ls2_c02144{letter-spacing:0.013176px;}
.lsa_c02144{letter-spacing:0.019764px;}
.ls4_c02144{letter-spacing:0.026352px;}
.ls6_c02144{letter-spacing:0.032940px;}
.ls1_c02144{letter-spacing:0.039528px;}
.ls5_c02144{letter-spacing:0.046116px;}
.ls9_c02144{letter-spacing:0.052704px;}
.ls8_c02144{letter-spacing:0.059292px;}
.lsc_c02144{letter-spacing:0.065880px;}
.lsd_c02144{letter-spacing:0.072468px;}
.lsb_c02144{letter-spacing:0.113400px;}
.ls12_c02144{letter-spacing:0.180360px;}
.ls3_c02144{letter-spacing:0.181944px;}
.ls0_c02144{letter-spacing:209.880000px;}
.ls7_c02144{letter-spacing:1251.360000px;}
.lse_c02144{letter-spacing:1771.290000px;}
.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;}
}
.ws2_c02144{word-spacing:-47.880000px;}
.ws1_c02144{word-spacing:-16.483176px;}
.ws0_c02144{word-spacing:-16.410708px;}
.ws6_c02144{word-spacing:-0.272916px;}
.ws11_c02144{word-spacing:-0.246492px;}
.ws4_c02144{word-spacing:0.000000px;}
.ws3_c02144{word-spacing:0.014400px;}
.ws10_c02144{word-spacing:0.019764px;}
.wsf_c02144{word-spacing:0.026352px;}
.wsb_c02144{word-spacing:0.032940px;}
.wsc_c02144{word-spacing:0.039528px;}
.ws8_c02144{word-spacing:0.046116px;}
.ws5_c02144{word-spacing:0.052704px;}
.ws9_c02144{word-spacing:0.059292px;}
.wse_c02144{word-spacing:0.064800px;}
.ws7_c02144{word-spacing:0.065880px;}
.wsd_c02144{word-spacing:0.072468px;}
.wsa_c02144{word-spacing:0.079056px;}
.ws12_c02144{word-spacing:0.102204px;}
._d_c02144{margin-left:-1.049004px;}
._4_c02144{width:1.321488px;}
._2_c02144{width:51.748920px;}
._b_c02144{width:133.017984px;}
._e_c02144{width:143.070408px;}
._0_c02144{width:194.400000px;}
._5_c02144{width:197.979552px;}
._1_c02144{width:334.643400px;}
._6_c02144{width:482.844672px;}
._a_c02144{width:539.237952px;}
._f_c02144{width:548.856432px;}
._c_c02144{width:620.836920px;}
._3_c02144{width:629.691192px;}
._7_c02144{width:705.189672px;}
._12_c02144{width:708.602256px;}
._11_c02144{width:769.949712px;}
._9_c02144{width:819.913104px;}
._10_c02144{width:962.740944px;}
._8_c02144{width:974.994624px;}
.fc0_c02144{color:rgb(0,0,0);}
.fs5_c02144{font-size:2.880000px;}
.fs2_c02144{font-size:47.880000px;}
.fs4_c02144{font-size:54.000000px;}
.fs3_c02144{font-size:60.120000px;}
.fs1_c02144{font-size:65.880000px;}
.fs0_c02144{font-size:72.000000px;}
.y0_c02144{bottom:0.000000px;}
.y3_c02144{bottom:57.360450px;}
.y2_c02144{bottom:78.060450px;}
.y3a_c02144{bottom:111.090450px;}
.y39_c02144{bottom:131.790450px;}
.y38_c02144{bottom:152.490450px;}
.y37_c02144{bottom:173.190450px;}
.y36_c02144{bottom:193.890450px;}
.y35_c02144{bottom:214.590450px;}
.y34_c02144{bottom:235.290450px;}
.y33_c02144{bottom:255.990450px;}
.y32_c02144{bottom:276.690450px;}
.y31_c02144{bottom:297.390450px;}
.y30_c02144{bottom:318.090450px;}
.y2f_c02144{bottom:338.790450px;}
.y2e_c02144{bottom:359.490450px;}
.y2d_c02144{bottom:380.190450px;}
.y2c_c02144{bottom:400.800450px;}
.y2b_c02144{bottom:421.500450px;}
.y2a_c02144{bottom:442.200450px;}
.y29_c02144{bottom:462.900450px;}
.y28_c02144{bottom:483.600450px;}
.y27_c02144{bottom:504.300450px;}
.y26_c02144{bottom:525.000450px;}
.y25_c02144{bottom:545.700450px;}
.y24_c02144{bottom:566.400450px;}
.y23_c02144{bottom:587.100450px;}
.y22_c02144{bottom:607.800450px;}
.y21_c02144{bottom:628.500450px;}
.y20_c02144{bottom:648.300450px;}
.y1f_c02144{bottom:663.780900px;}
.y1e_c02144{bottom:679.350450px;}
.y1d_c02144{bottom:692.580450px;}
.y1c_c02144{bottom:696.630450px;}
.y1b_c02144{bottom:714.810450px;}
.y1a_c02144{bottom:732.810450px;}
.y19_c02144{bottom:750.090450px;}
.y18_c02144{bottom:764.580450px;}
.y17_c02144{bottom:781.140450px;}
.y16_c02144{bottom:798.060450px;}
.y15_c02144{bottom:817.860600px;}
.y14_c02144{bottom:837.570450px;}
.y13_c02144{bottom:857.280450px;}
.y12_c02144{bottom:876.990450px;}
.y11_c02144{bottom:896.700450px;}
.y10_c02144{bottom:916.410450px;}
.yf_c02144{bottom:936.210450px;}
.ye_c02144{bottom:955.920450px;}
.yd_c02144{bottom:975.630450px;}
.yc_c02144{bottom:995.340450px;}
.yb_c02144{bottom:1015.050450px;}
.ya_c02144{bottom:1034.760450px;}
.y9_c02144{bottom:1054.470450px;}
.y8_c02144{bottom:1074.270450px;}
.y7_c02144{bottom:1091.550450px;}
.y6_c02144{bottom:1106.400450px;}
.y5_c02144{bottom:1124.310450px;}
.y4_c02144{bottom:1139.880450px;}
.y1_c02144{bottom:1193.160450px;}
.ha_c02144{height:2.557969px;}
.h3_c02144{height:42.526230px;}
.hb_c02144{height:47.961914px;}
.h8_c02144{height:53.397598px;}
.h7_c02144{height:53.685630px;}
.h4_c02144{height:53.686230px;}
.h6_c02144{height:53.686830px;}
.h5_c02144{height:58.549219px;}
.h2_c02144{height:63.175781px;}
.h1_c02144{height:63.949219px;}
.h9_c02144{height:74.335781px;}
.h0_c02144{height:1263.000000px;}
.w1_c02144{width:892.500000px;}
.w0_c02144{width:892.830000px;}
.x0_c02144{left:0.000000px;}
.x7_c02144{left:117.000000px;}
.x1_c02144{left:127.620000px;}
.x6_c02144{left:135.630000px;}
.x3_c02144{left:146.340000px;}
.x5_c02144{left:167.580000px;}
.x2_c02144{left:433.080000px;}
.x4_c02144{left:451.800000px;}
@media print{
.v1_c02144{vertical-align:-4.800000pt;}
.v0_c02144{vertical-align:0.000000pt;}
.v2_c02144{vertical-align:9.920000pt;}
.v3_c02144{vertical-align:14.720000pt;}
.ls13_c02144{letter-spacing:-0.080864pt;}
.ls11_c02144{letter-spacing:-0.052704pt;}
.ls14_c02144{letter-spacing:-0.021376pt;}
.lsf_c02144{letter-spacing:-0.012800pt;}
.ls15_c02144{letter-spacing:-0.010688pt;}
.ls10_c02144{letter-spacing:0.000000pt;}
.ls2_c02144{letter-spacing:0.011712pt;}
.lsa_c02144{letter-spacing:0.017568pt;}
.ls4_c02144{letter-spacing:0.023424pt;}
.ls6_c02144{letter-spacing:0.029280pt;}
.ls1_c02144{letter-spacing:0.035136pt;}
.ls5_c02144{letter-spacing:0.040992pt;}
.ls9_c02144{letter-spacing:0.046848pt;}
.ls8_c02144{letter-spacing:0.052704pt;}
.lsc_c02144{letter-spacing:0.058560pt;}
.lsd_c02144{letter-spacing:0.064416pt;}
.lsb_c02144{letter-spacing:0.100800pt;}
.ls12_c02144{letter-spacing:0.160320pt;}
.ls3_c02144{letter-spacing:0.161728pt;}
.ls0_c02144{letter-spacing:186.560000pt;}
.ls7_c02144{letter-spacing:1112.320000pt;}
.lse_c02144{letter-spacing:1574.480000pt;}
.ws2_c02144{word-spacing:-42.560000pt;}
.ws1_c02144{word-spacing:-14.651712pt;}
.ws0_c02144{word-spacing:-14.587296pt;}
.ws6_c02144{word-spacing:-0.242592pt;}
.ws11_c02144{word-spacing:-0.219104pt;}
.ws4_c02144{word-spacing:0.000000pt;}
.ws3_c02144{word-spacing:0.012800pt;}
.ws10_c02144{word-spacing:0.017568pt;}
.wsf_c02144{word-spacing:0.023424pt;}
.wsb_c02144{word-spacing:0.029280pt;}
.wsc_c02144{word-spacing:0.035136pt;}
.ws8_c02144{word-spacing:0.040992pt;}
.ws5_c02144{word-spacing:0.046848pt;}
.ws9_c02144{word-spacing:0.052704pt;}
.wse_c02144{word-spacing:0.057600pt;}
.ws7_c02144{word-spacing:0.058560pt;}
.wsd_c02144{word-spacing:0.064416pt;}
.wsa_c02144{word-spacing:0.070272pt;}
.ws12_c02144{word-spacing:0.090848pt;}
._d_c02144{margin-left:-0.932448pt;}
._4_c02144{width:1.174656pt;}
._2_c02144{width:45.999040pt;}
._b_c02144{width:118.238208pt;}
._e_c02144{width:127.173696pt;}
._0_c02144{width:172.800000pt;}
._5_c02144{width:175.981824pt;}
._1_c02144{width:297.460800pt;}
._6_c02144{width:429.195264pt;}
._a_c02144{width:479.322624pt;}
._f_c02144{width:487.872384pt;}
._c_c02144{width:551.855040pt;}
._3_c02144{width:559.725504pt;}
._7_c02144{width:626.835264pt;}
._12_c02144{width:629.868672pt;}
._11_c02144{width:684.399744pt;}
._9_c02144{width:728.811648pt;}
._10_c02144{width:855.769728pt;}
._8_c02144{width:866.661888pt;}
.fs5_c02144{font-size:2.560000pt;}
.fs2_c02144{font-size:42.560000pt;}
.fs4_c02144{font-size:48.000000pt;}
.fs3_c02144{font-size:53.440000pt;}
.fs1_c02144{font-size:58.560000pt;}
.fs0_c02144{font-size:64.000000pt;}
.y0_c02144{bottom:0.000000pt;}
.y3_c02144{bottom:50.987067pt;}
.y2_c02144{bottom:69.387067pt;}
.y3a_c02144{bottom:98.747067pt;}
.y39_c02144{bottom:117.147067pt;}
.y38_c02144{bottom:135.547067pt;}
.y37_c02144{bottom:153.947067pt;}
.y36_c02144{bottom:172.347067pt;}
.y35_c02144{bottom:190.747067pt;}
.y34_c02144{bottom:209.147067pt;}
.y33_c02144{bottom:227.547067pt;}
.y32_c02144{bottom:245.947067pt;}
.y31_c02144{bottom:264.347067pt;}
.y30_c02144{bottom:282.747067pt;}
.y2f_c02144{bottom:301.147067pt;}
.y2e_c02144{bottom:319.547067pt;}
.y2d_c02144{bottom:337.947067pt;}
.y2c_c02144{bottom:356.267067pt;}
.y2b_c02144{bottom:374.667067pt;}
.y2a_c02144{bottom:393.067067pt;}
.y29_c02144{bottom:411.467067pt;}
.y28_c02144{bottom:429.867067pt;}
.y27_c02144{bottom:448.267067pt;}
.y26_c02144{bottom:466.667067pt;}
.y25_c02144{bottom:485.067067pt;}
.y24_c02144{bottom:503.467067pt;}
.y23_c02144{bottom:521.867067pt;}
.y22_c02144{bottom:540.267067pt;}
.y21_c02144{bottom:558.667067pt;}
.y20_c02144{bottom:576.267067pt;}
.y1f_c02144{bottom:590.027467pt;}
.y1e_c02144{bottom:603.867067pt;}
.y1d_c02144{bottom:615.627067pt;}
.y1c_c02144{bottom:619.227067pt;}
.y1b_c02144{bottom:635.387067pt;}
.y1a_c02144{bottom:651.387067pt;}
.y19_c02144{bottom:666.747067pt;}
.y18_c02144{bottom:679.627067pt;}
.y17_c02144{bottom:694.347067pt;}
.y16_c02144{bottom:709.387067pt;}
.y15_c02144{bottom:726.987200pt;}
.y14_c02144{bottom:744.507067pt;}
.y13_c02144{bottom:762.027067pt;}
.y12_c02144{bottom:779.547067pt;}
.y11_c02144{bottom:797.067067pt;}
.y10_c02144{bottom:814.587067pt;}
.yf_c02144{bottom:832.187067pt;}
.ye_c02144{bottom:849.707067pt;}
.yd_c02144{bottom:867.227067pt;}
.yc_c02144{bottom:884.747067pt;}
.yb_c02144{bottom:902.267067pt;}
.ya_c02144{bottom:919.787067pt;}
.y9_c02144{bottom:937.307067pt;}
.y8_c02144{bottom:954.907067pt;}
.y7_c02144{bottom:970.267067pt;}
.y6_c02144{bottom:983.467067pt;}
.y5_c02144{bottom:999.387067pt;}
.y4_c02144{bottom:1013.227067pt;}
.y1_c02144{bottom:1060.587067pt;}
.ha_c02144{height:2.273750pt;}
.h3_c02144{height:37.801094pt;}
.hb_c02144{height:42.632812pt;}
.h8_c02144{height:47.464531pt;}
.h7_c02144{height:47.720560pt;}
.h4_c02144{height:47.721094pt;}
.h6_c02144{height:47.721627pt;}
.h5_c02144{height:52.043750pt;}
.h2_c02144{height:56.156250pt;}
.h1_c02144{height:56.843750pt;}
.h9_c02144{height:66.076250pt;}
.h0_c02144{height:1122.666667pt;}
.w1_c02144{width:793.333333pt;}
.w0_c02144{width:793.626667pt;}
.x0_c02144{left:0.000000pt;}
.x7_c02144{left:104.000000pt;}
.x1_c02144{left:113.440000pt;}
.x6_c02144{left:120.560000pt;}
.x3_c02144{left:130.080000pt;}
.x5_c02144{left:148.960000pt;}
.x2_c02144{left:384.960000pt;}
.x4_c02144{left:401.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_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_7966b9298da6c15ba77c8191.woff2')format("woff");}.ff1_c02145{font-family:ff1_c02145;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02145;src:url('chunks/assets/font_69d58801cd5fb89ff739a37e.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_0da7a218acd60484ddf0f5ed.woff2')format("woff");}.ff3_c02145{font-family:ff3_c02145;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_c02145;src:url('chunks/assets/font_4f60a293f28f40acb1492259.woff2')format("woff");}.ff4_c02145{font-family:ff4_c02145;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_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);}
.v1_c02145{vertical-align:-9.000000px;}
.v0_c02145{vertical-align:0.000000px;}
.v2_c02145{vertical-align:5.760000px;}
.ls14_c02145{letter-spacing:-0.028800px;}
.ls12_c02145{letter-spacing:-0.021600px;}
.ls10_c02145{letter-spacing:-0.014400px;}
.ls13_c02145{letter-spacing:-0.007200px;}
.ls11_c02145{letter-spacing:0.000000px;}
.ls5_c02145{letter-spacing:0.007200px;}
.ls0_c02145{letter-spacing:0.014400px;}
.ls4_c02145{letter-spacing:0.028800px;}
.lsb_c02145{letter-spacing:0.032940px;}
.ls6_c02145{letter-spacing:0.039528px;}
.lse_c02145{letter-spacing:0.046116px;}
.lsc_c02145{letter-spacing:0.052704px;}
.ls9_c02145{letter-spacing:0.059292px;}
.lsd_c02145{letter-spacing:0.065880px;}
.lsf_c02145{letter-spacing:0.072468px;}
.lsa_c02145{letter-spacing:0.079056px;}
.ls7_c02145{letter-spacing:0.085644px;}
.ls8_c02145{letter-spacing:0.092232px;}
.ls1_c02145{letter-spacing:0.093600px;}
.ls2_c02145{letter-spacing:0.144000px;}
.ls3_c02145{letter-spacing:0.181944px;}
.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;}
}
.ws8_c02145{word-spacing:-0.122400px;}
.ws5_c02145{word-spacing:-0.100800px;}
.ws2_c02145{word-spacing:-0.014400px;}
.ws1_c02145{word-spacing:0.000000px;}
.wsb_c02145{word-spacing:0.006588px;}
.ws9_c02145{word-spacing:0.007200px;}
.wsd_c02145{word-spacing:0.013176px;}
.ws0_c02145{word-spacing:0.014400px;}
.ws12_c02145{word-spacing:0.019764px;}
.ws10_c02145{word-spacing:0.026352px;}
.wsc_c02145{word-spacing:0.032940px;}
.wsf_c02145{word-spacing:0.039528px;}
.ws11_c02145{word-spacing:0.046116px;}
.wsa_c02145{word-spacing:0.052704px;}
.wse_c02145{word-spacing:0.059292px;}
.ws4_c02145{word-spacing:0.705600px;}
.ws7_c02145{word-spacing:13.701600px;}
.ws6_c02145{word-spacing:16.912800px;}
.ws3_c02145{word-spacing:43.905600px;}
._4_c02145{margin-left:-1.108800px;}
._3_c02145{width:16.716240px;}
._2_c02145{width:43.716240px;}
._5_c02145{width:112.096800px;}
._6_c02145{width:116.056800px;}
._1_c02145{width:165.024000px;}
._0_c02145{width:194.400000px;}
._7_c02145{width:278.236800px;}
.fc0_c02145{color:rgb(0,0,0);}
.fs1_c02145{font-size:47.880000px;}
.fs3_c02145{font-size:60.120000px;}
.fs2_c02145{font-size:65.880000px;}
.fs0_c02145{font-size:72.000000px;}
.y0_c02145{bottom:0.000000px;}
.y3_c02145{bottom:57.360450px;}
.y2_c02145{bottom:78.060450px;}
.y39_c02145{bottom:116.940450px;}
.y38_c02145{bottom:134.580450px;}
.y37_c02145{bottom:153.570450px;}
.y36_c02145{bottom:172.470450px;}
.y35_c02145{bottom:191.460600px;}
.y34_c02145{bottom:210.450600px;}
.y33_c02145{bottom:229.440450px;}
.y32_c02145{bottom:248.430450px;}
.y31_c02145{bottom:267.330450px;}
.y30_c02145{bottom:286.320450px;}
.y2f_c02145{bottom:305.310450px;}
.y2e_c02145{bottom:324.300450px;}
.y2d_c02145{bottom:343.290450px;}
.y2c_c02145{bottom:362.280450px;}
.y2b_c02145{bottom:381.180450px;}
.y2a_c02145{bottom:400.170450px;}
.y29_c02145{bottom:419.160600px;}
.y28_c02145{bottom:438.150450px;}
.y27_c02145{bottom:457.140450px;}
.y26_c02145{bottom:476.040600px;}
.y25_c02145{bottom:495.030600px;}
.y24_c02145{bottom:514.020600px;}
.y23_c02145{bottom:533.010450px;}
.y22_c02145{bottom:552.000450px;}
.y21_c02145{bottom:570.990450px;}
.y20_c02145{bottom:589.890450px;}
.y1f_c02145{bottom:608.880450px;}
.y1e_c02145{bottom:627.870450px;}
.y1d_c02145{bottom:646.860450px;}
.y1c_c02145{bottom:665.850450px;}
.y1b_c02145{bottom:684.750450px;}
.y1a_c02145{bottom:703.740450px;}
.y19_c02145{bottom:722.730450px;}
.y18_c02145{bottom:741.720450px;}
.y17_c02145{bottom:760.710450px;}
.y16_c02145{bottom:779.700450px;}
.y15_c02145{bottom:798.600450px;}
.y14_c02145{bottom:817.590450px;}
.y13_c02145{bottom:836.580450px;}
.y12_c02145{bottom:855.570450px;}
.y11_c02145{bottom:874.560450px;}
.y10_c02145{bottom:893.460450px;}
.yf_c02145{bottom:912.450450px;}
.ye_c02145{bottom:930.000450px;}
.yd_c02145{bottom:951.420450px;}
.yc_c02145{bottom:972.930450px;}
.yb_c02145{bottom:994.440450px;}
.ya_c02145{bottom:1015.140450px;}
.y9_c02145{bottom:1035.840450px;}
.y8_c02145{bottom:1056.540450px;}
.y7_c02145{bottom:1077.240450px;}
.y6_c02145{bottom:1097.850450px;}
.y5_c02145{bottom:1119.450450px;}
.y4_c02145{bottom:1139.970450px;}
.y1_c02145{bottom:1193.160450px;}
.h6_c02145{height:53.397598px;}
.h2_c02145{height:63.175781px;}
.h1_c02145{height:63.949219px;}
.h5_c02145{height:69.709219px;}
.h4_c02145{height:70.628906px;}
.h3_c02145{height:70.988906px;}
.h0_c02145{height:1263.000000px;}
.w1_c02145{width:892.500000px;}
.w0_c02145{width:892.830000px;}
.x0_c02145{left:0.000000px;}
.x1_c02145{left:127.620000px;}
.x3_c02145{left:135.630000px;}
.x4_c02145{left:252.630000px;}
.x2_c02145{left:433.080000px;}
@media print{
.v1_c02145{vertical-align:-8.000000pt;}
.v0_c02145{vertical-align:0.000000pt;}
.v2_c02145{vertical-align:5.120000pt;}
.ls14_c02145{letter-spacing:-0.025600pt;}
.ls12_c02145{letter-spacing:-0.019200pt;}
.ls10_c02145{letter-spacing:-0.012800pt;}
.ls13_c02145{letter-spacing:-0.006400pt;}
.ls11_c02145{letter-spacing:0.000000pt;}
.ls5_c02145{letter-spacing:0.006400pt;}
.ls0_c02145{letter-spacing:0.012800pt;}
.ls4_c02145{letter-spacing:0.025600pt;}
.lsb_c02145{letter-spacing:0.029280pt;}
.ls6_c02145{letter-spacing:0.035136pt;}
.lse_c02145{letter-spacing:0.040992pt;}
.lsc_c02145{letter-spacing:0.046848pt;}
.ls9_c02145{letter-spacing:0.052704pt;}
.lsd_c02145{letter-spacing:0.058560pt;}
.lsf_c02145{letter-spacing:0.064416pt;}
.lsa_c02145{letter-spacing:0.070272pt;}
.ls7_c02145{letter-spacing:0.076128pt;}
.ls8_c02145{letter-spacing:0.081984pt;}
.ls1_c02145{letter-spacing:0.083200pt;}
.ls2_c02145{letter-spacing:0.128000pt;}
.ls3_c02145{letter-spacing:0.161728pt;}
.ws8_c02145{word-spacing:-0.108800pt;}
.ws5_c02145{word-spacing:-0.089600pt;}
.ws2_c02145{word-spacing:-0.012800pt;}
.ws1_c02145{word-spacing:0.000000pt;}
.wsb_c02145{word-spacing:0.005856pt;}
.ws9_c02145{word-spacing:0.006400pt;}
.wsd_c02145{word-spacing:0.011712pt;}
.ws0_c02145{word-spacing:0.012800pt;}
.ws12_c02145{word-spacing:0.017568pt;}
.ws10_c02145{word-spacing:0.023424pt;}
.wsc_c02145{word-spacing:0.029280pt;}
.wsf_c02145{word-spacing:0.035136pt;}
.ws11_c02145{word-spacing:0.040992pt;}
.wsa_c02145{word-spacing:0.046848pt;}
.wse_c02145{word-spacing:0.052704pt;}
.ws4_c02145{word-spacing:0.627200pt;}
.ws7_c02145{word-spacing:12.179200pt;}
.ws6_c02145{word-spacing:15.033600pt;}
.ws3_c02145{word-spacing:39.027200pt;}
._4_c02145{margin-left:-0.985600pt;}
._3_c02145{width:14.858880pt;}
._2_c02145{width:38.858880pt;}
._5_c02145{width:99.641600pt;}
._6_c02145{width:103.161600pt;}
._1_c02145{width:146.688000pt;}
._0_c02145{width:172.800000pt;}
._7_c02145{width:247.321600pt;}
.fs1_c02145{font-size:42.560000pt;}
.fs3_c02145{font-size:53.440000pt;}
.fs2_c02145{font-size:58.560000pt;}
.fs0_c02145{font-size:64.000000pt;}
.y0_c02145{bottom:0.000000pt;}
.y3_c02145{bottom:50.987067pt;}
.y2_c02145{bottom:69.387067pt;}
.y39_c02145{bottom:103.947067pt;}
.y38_c02145{bottom:119.627067pt;}
.y37_c02145{bottom:136.507067pt;}
.y36_c02145{bottom:153.307067pt;}
.y35_c02145{bottom:170.187200pt;}
.y34_c02145{bottom:187.067200pt;}
.y33_c02145{bottom:203.947067pt;}
.y32_c02145{bottom:220.827067pt;}
.y31_c02145{bottom:237.627067pt;}
.y30_c02145{bottom:254.507067pt;}
.y2f_c02145{bottom:271.387067pt;}
.y2e_c02145{bottom:288.267067pt;}
.y2d_c02145{bottom:305.147067pt;}
.y2c_c02145{bottom:322.027067pt;}
.y2b_c02145{bottom:338.827067pt;}
.y2a_c02145{bottom:355.707067pt;}
.y29_c02145{bottom:372.587200pt;}
.y28_c02145{bottom:389.467067pt;}
.y27_c02145{bottom:406.347067pt;}
.y26_c02145{bottom:423.147200pt;}
.y25_c02145{bottom:440.027200pt;}
.y24_c02145{bottom:456.907200pt;}
.y23_c02145{bottom:473.787067pt;}
.y22_c02145{bottom:490.667067pt;}
.y21_c02145{bottom:507.547067pt;}
.y20_c02145{bottom:524.347067pt;}
.y1f_c02145{bottom:541.227067pt;}
.y1e_c02145{bottom:558.107067pt;}
.y1d_c02145{bottom:574.987067pt;}
.y1c_c02145{bottom:591.867067pt;}
.y1b_c02145{bottom:608.667067pt;}
.y1a_c02145{bottom:625.547067pt;}
.y19_c02145{bottom:642.427067pt;}
.y18_c02145{bottom:659.307067pt;}
.y17_c02145{bottom:676.187067pt;}
.y16_c02145{bottom:693.067067pt;}
.y15_c02145{bottom:709.867067pt;}
.y14_c02145{bottom:726.747067pt;}
.y13_c02145{bottom:743.627067pt;}
.y12_c02145{bottom:760.507067pt;}
.y11_c02145{bottom:777.387067pt;}
.y10_c02145{bottom:794.187067pt;}
.yf_c02145{bottom:811.067067pt;}
.ye_c02145{bottom:826.667067pt;}
.yd_c02145{bottom:845.707067pt;}
.yc_c02145{bottom:864.827067pt;}
.yb_c02145{bottom:883.947067pt;}
.ya_c02145{bottom:902.347067pt;}
.y9_c02145{bottom:920.747067pt;}
.y8_c02145{bottom:939.147067pt;}
.y7_c02145{bottom:957.547067pt;}
.y6_c02145{bottom:975.867067pt;}
.y5_c02145{bottom:995.067067pt;}
.y4_c02145{bottom:1013.307067pt;}
.y1_c02145{bottom:1060.587067pt;}
.h6_c02145{height:47.464531pt;}
.h2_c02145{height:56.156250pt;}
.h1_c02145{height:56.843750pt;}
.h5_c02145{height:61.963750pt;}
.h4_c02145{height:62.781250pt;}
.h3_c02145{height:63.101250pt;}
.h0_c02145{height:1122.666667pt;}
.w1_c02145{width:793.333333pt;}
.w0_c02145{width:793.626667pt;}
.x0_c02145{left:0.000000pt;}
.x1_c02145{left:113.440000pt;}
.x3_c02145{left:120.560000pt;}
.x4_c02145{left:224.560000pt;}
.x2_c02145{left:384.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_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_432763ab09426c4c899ad728.woff2')format("woff");}.ff1_c02146{font-family:ff1_c02146;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02146;src:url('chunks/assets/font_541a57f3a932fd62821f2644.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;}
.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;}
.lsc_c02146{letter-spacing:-0.014400px;}
.lse_c02146{letter-spacing:-0.007200px;}
.lsd_c02146{letter-spacing:0.000000px;}
.ls2_c02146{letter-spacing:0.007200px;}
.lsb_c02146{letter-spacing:0.014400px;}
.ls3_c02146{letter-spacing:0.021600px;}
.ls4_c02146{letter-spacing:0.028800px;}
.lsa_c02146{letter-spacing:0.036000px;}
.ls0_c02146{letter-spacing:0.043200px;}
.ls9_c02146{letter-spacing:0.050400px;}
.ls6_c02146{letter-spacing:0.057600px;}
.ls8_c02146{letter-spacing:0.064800px;}
.ls7_c02146{letter-spacing:0.072000px;}
.ls1_c02146{letter-spacing:0.079200px;}
.ls5_c02146{letter-spacing:0.093600px;}
.sc__c02146{text-shadow:none;}
.sc0_c02146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02146{-webkit-text-stroke:0px transparent;}
.sc0_c02146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02146{word-spacing:-17.992800px;}
.ws14_c02146{word-spacing:-0.410400px;}
.ws15_c02146{word-spacing:-0.273600px;}
.wse_c02146{word-spacing:-0.194400px;}
.wsd_c02146{word-spacing:-0.187200px;}
.ws13_c02146{word-spacing:-0.180000px;}
.ws5_c02146{word-spacing:-0.151200px;}
.wsa_c02146{word-spacing:-0.100800px;}
.wsb_c02146{word-spacing:-0.079200px;}
.wsc_c02146{word-spacing:-0.057600px;}
.ws10_c02146{word-spacing:-0.043200px;}
.ws11_c02146{word-spacing:-0.028800px;}
.ws8_c02146{word-spacing:-0.021600px;}
.ws9_c02146{word-spacing:-0.014400px;}
.wsf_c02146{word-spacing:-0.007200px;}
.ws2_c02146{word-spacing:0.000000px;}
.ws12_c02146{word-spacing:0.007200px;}
.ws1_c02146{word-spacing:0.014400px;}
.ws4_c02146{word-spacing:5.284800px;}
.ws3_c02146{word-spacing:5.335200px;}
.ws7_c02146{word-spacing:30.866400px;}
.ws6_c02146{word-spacing:30.952800px;}
._1_c02146{margin-left:-1.080000px;}
._0_c02146{width:194.400000px;}
.fc0_c02146{color:rgb(0,0,0);}
.fs1_c02146{font-size:54.000000px;}
.fs0_c02146{font-size:72.000000px;}
.y0_c02146{bottom:0.000000px;}
.y3_c02146{bottom:57.360450px;}
.y2_c02146{bottom:78.060450px;}
.y3d_c02146{bottom:112.350450px;}
.y3c_c02146{bottom:133.050450px;}
.y3b_c02146{bottom:153.750450px;}
.y3a_c02146{bottom:174.450450px;}
.y39_c02146{bottom:195.150450px;}
.y38_c02146{bottom:215.850450px;}
.y37_c02146{bottom:235.560450px;}
.y36_c02146{bottom:251.130000px;}
.y35_c02146{bottom:266.610450px;}
.y34_c02146{bottom:282.180000px;}
.y33_c02146{bottom:297.660450px;}
.y32_c02146{bottom:313.230000px;}
.y31_c02146{bottom:328.710450px;}
.y30_c02146{bottom:344.280000px;}
.y2f_c02146{bottom:359.760450px;}
.y2e_c02146{bottom:375.330000px;}
.y2d_c02146{bottom:390.810450px;}
.y2c_c02146{bottom:406.380000px;}
.y2b_c02146{bottom:421.860450px;}
.y2a_c02146{bottom:437.430000px;}
.y29_c02146{bottom:452.910450px;}
.y28_c02146{bottom:468.480000px;}
.y27_c02146{bottom:483.960450px;}
.y26_c02146{bottom:499.530000px;}
.y25_c02146{bottom:515.010450px;}
.y24_c02146{bottom:530.580000px;}
.y23_c02146{bottom:546.060450px;}
.y22_c02146{bottom:561.630000px;}
.y21_c02146{bottom:577.110450px;}
.y20_c02146{bottom:592.680000px;}
.y1f_c02146{bottom:608.160450px;}
.y1e_c02146{bottom:623.640900px;}
.y1d_c02146{bottom:639.210450px;}
.y1c_c02146{bottom:654.690900px;}
.y1b_c02146{bottom:670.260450px;}
.y1a_c02146{bottom:686.730450px;}
.y19_c02146{bottom:706.440900px;}
.y18_c02146{bottom:722.010450px;}
.y17_c02146{bottom:738.660450px;}
.y16_c02146{bottom:760.080450px;}
.y15_c02146{bottom:781.320450px;}
.y14_c02146{bottom:803.010450px;}
.y13_c02146{bottom:823.710450px;}
.y12_c02146{bottom:844.410450px;}
.y11_c02146{bottom:865.650450px;}
.y10_c02146{bottom:887.250600px;}
.yf_c02146{bottom:908.580450px;}
.ye_c02146{bottom:930.180450px;}
.yd_c02146{bottom:950.880450px;}
.yc_c02146{bottom:971.580450px;}
.yb_c02146{bottom:992.280450px;}
.ya_c02146{bottom:1012.980450px;}
.y9_c02146{bottom:1033.680450px;}
.y8_c02146{bottom:1054.380450px;}
.y7_c02146{bottom:1075.620450px;}
.y6_c02146{bottom:1097.310450px;}
.y5_c02146{bottom:1118.010450px;}
.y4_c02146{bottom:1139.250450px;}
.y1_c02146{bottom:1193.160450px;}
.h3_c02146{height:47.961914px;}
.h2_c02146{height:63.175781px;}
.h1_c02146{height:63.949219px;}
.h0_c02146{height:1263.000000px;}
.w1_c02146{width:892.500000px;}
.w0_c02146{width:892.830000px;}
.x0_c02146{left:0.000000px;}
.x1_c02146{left:127.620000px;}
.x3_c02146{left:135.630000px;}
.x2_c02146{left:433.080000px;}
@media print{
.v0_c02146{vertical-align:0.000000pt;}
.lsc_c02146{letter-spacing:-0.012800pt;}
.lse_c02146{letter-spacing:-0.006400pt;}
.lsd_c02146{letter-spacing:0.000000pt;}
.ls2_c02146{letter-spacing:0.006400pt;}
.lsb_c02146{letter-spacing:0.012800pt;}
.ls3_c02146{letter-spacing:0.019200pt;}
.ls4_c02146{letter-spacing:0.025600pt;}
.lsa_c02146{letter-spacing:0.032000pt;}
.ls0_c02146{letter-spacing:0.038400pt;}
.ls9_c02146{letter-spacing:0.044800pt;}
.ls6_c02146{letter-spacing:0.051200pt;}
.ls8_c02146{letter-spacing:0.057600pt;}
.ls7_c02146{letter-spacing:0.064000pt;}
.ls1_c02146{letter-spacing:0.070400pt;}
.ls5_c02146{letter-spacing:0.083200pt;}
.ws0_c02146{word-spacing:-15.993600pt;}
.ws14_c02146{word-spacing:-0.364800pt;}
.ws15_c02146{word-spacing:-0.243200pt;}
.wse_c02146{word-spacing:-0.172800pt;}
.wsd_c02146{word-spacing:-0.166400pt;}
.ws13_c02146{word-spacing:-0.160000pt;}
.ws5_c02146{word-spacing:-0.134400pt;}
.wsa_c02146{word-spacing:-0.089600pt;}
.wsb_c02146{word-spacing:-0.070400pt;}
.wsc_c02146{word-spacing:-0.051200pt;}
.ws10_c02146{word-spacing:-0.038400pt;}
.ws11_c02146{word-spacing:-0.025600pt;}
.ws8_c02146{word-spacing:-0.019200pt;}
.ws9_c02146{word-spacing:-0.012800pt;}
.wsf_c02146{word-spacing:-0.006400pt;}
.ws2_c02146{word-spacing:0.000000pt;}
.ws12_c02146{word-spacing:0.006400pt;}
.ws1_c02146{word-spacing:0.012800pt;}
.ws4_c02146{word-spacing:4.697600pt;}
.ws3_c02146{word-spacing:4.742400pt;}
.ws7_c02146{word-spacing:27.436800pt;}
.ws6_c02146{word-spacing:27.513600pt;}
._1_c02146{margin-left:-0.960000pt;}
._0_c02146{width:172.800000pt;}
.fs1_c02146{font-size:48.000000pt;}
.fs0_c02146{font-size:64.000000pt;}
.y0_c02146{bottom:0.000000pt;}
.y3_c02146{bottom:50.987067pt;}
.y2_c02146{bottom:69.387067pt;}
.y3d_c02146{bottom:99.867067pt;}
.y3c_c02146{bottom:118.267067pt;}
.y3b_c02146{bottom:136.667067pt;}
.y3a_c02146{bottom:155.067067pt;}
.y39_c02146{bottom:173.467067pt;}
.y38_c02146{bottom:191.867067pt;}
.y37_c02146{bottom:209.387067pt;}
.y36_c02146{bottom:223.226667pt;}
.y35_c02146{bottom:236.987067pt;}
.y34_c02146{bottom:250.826667pt;}
.y33_c02146{bottom:264.587067pt;}
.y32_c02146{bottom:278.426667pt;}
.y31_c02146{bottom:292.187067pt;}
.y30_c02146{bottom:306.026667pt;}
.y2f_c02146{bottom:319.787067pt;}
.y2e_c02146{bottom:333.626667pt;}
.y2d_c02146{bottom:347.387067pt;}
.y2c_c02146{bottom:361.226667pt;}
.y2b_c02146{bottom:374.987067pt;}
.y2a_c02146{bottom:388.826667pt;}
.y29_c02146{bottom:402.587067pt;}
.y28_c02146{bottom:416.426667pt;}
.y27_c02146{bottom:430.187067pt;}
.y26_c02146{bottom:444.026667pt;}
.y25_c02146{bottom:457.787067pt;}
.y24_c02146{bottom:471.626667pt;}
.y23_c02146{bottom:485.387067pt;}
.y22_c02146{bottom:499.226667pt;}
.y21_c02146{bottom:512.987067pt;}
.y20_c02146{bottom:526.826667pt;}
.y1f_c02146{bottom:540.587067pt;}
.y1e_c02146{bottom:554.347467pt;}
.y1d_c02146{bottom:568.187067pt;}
.y1c_c02146{bottom:581.947467pt;}
.y1b_c02146{bottom:595.787067pt;}
.y1a_c02146{bottom:610.427067pt;}
.y19_c02146{bottom:627.947467pt;}
.y18_c02146{bottom:641.787067pt;}
.y17_c02146{bottom:656.587067pt;}
.y16_c02146{bottom:675.627067pt;}
.y15_c02146{bottom:694.507067pt;}
.y14_c02146{bottom:713.787067pt;}
.y13_c02146{bottom:732.187067pt;}
.y12_c02146{bottom:750.587067pt;}
.y11_c02146{bottom:769.467067pt;}
.y10_c02146{bottom:788.667200pt;}
.yf_c02146{bottom:807.627067pt;}
.ye_c02146{bottom:826.827067pt;}
.yd_c02146{bottom:845.227067pt;}
.yc_c02146{bottom:863.627067pt;}
.yb_c02146{bottom:882.027067pt;}
.ya_c02146{bottom:900.427067pt;}
.y9_c02146{bottom:918.827067pt;}
.y8_c02146{bottom:937.227067pt;}
.y7_c02146{bottom:956.107067pt;}
.y6_c02146{bottom:975.387067pt;}
.y5_c02146{bottom:993.787067pt;}
.y4_c02146{bottom:1012.667067pt;}
.y1_c02146{bottom:1060.587067pt;}
.h3_c02146{height:42.632812pt;}
.h2_c02146{height:56.156250pt;}
.h1_c02146{height:56.843750pt;}
.h0_c02146{height:1122.666667pt;}
.w1_c02146{width:793.333333pt;}
.w0_c02146{width:793.626667pt;}
.x0_c02146{left:0.000000pt;}
.x1_c02146{left:113.440000pt;}
.x3_c02146{left:120.560000pt;}
.x2_c02146{left:384.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_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_92c05aad159db8b7f412dcac.woff2')format("woff");}.ff1_c02147{font-family:ff1_c02147;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02147;src:url('chunks/assets/font_68a78c7bf4279507247146f1.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02147{font-family:ff3_c02147;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_c02147;src:url('chunks/assets/font_ddda41dfd859e9e726841467.woff2')format("woff");}.ff4_c02147{font-family:ff4_c02147;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02147;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff5_c02147{font-family:ff5_c02147;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;}
.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;}
.ls3a_c02147{letter-spacing:-0.239400px;}
.ls4a_c02147{letter-spacing:-0.229824px;}
.ls44_c02147{letter-spacing:-0.201096px;}
.ls48_c02147{letter-spacing:-0.153216px;}
.ls4c_c02147{letter-spacing:-0.136800px;}
.ls31_c02147{letter-spacing:-0.134064px;}
.ls3e_c02147{letter-spacing:-0.129276px;}
.ls3b_c02147{letter-spacing:-0.119700px;}
.ls4d_c02147{letter-spacing:-0.115200px;}
.ls33_c02147{letter-spacing:-0.105336px;}
.ls45_c02147{letter-spacing:-0.095760px;}
.ls30_c02147{letter-spacing:-0.090972px;}
.ls3d_c02147{letter-spacing:-0.086184px;}
.ls35_c02147{letter-spacing:-0.076608px;}
.ls2e_c02147{letter-spacing:-0.071820px;}
.ls41_c02147{letter-spacing:-0.067032px;}
.ls51_c02147{letter-spacing:-0.060120px;}
.ls4b_c02147{letter-spacing:-0.057600px;}
.ls34_c02147{letter-spacing:-0.057456px;}
.ls29_c02147{letter-spacing:-0.048096px;}
.ls3c_c02147{letter-spacing:-0.043092px;}
.ls2a_c02147{letter-spacing:-0.042084px;}
.ls27_c02147{letter-spacing:-0.030060px;}
.ls28_c02147{letter-spacing:-0.024048px;}
.ls49_c02147{letter-spacing:-0.023940px;}
.ls4e_c02147{letter-spacing:-0.021600px;}
.ls47_c02147{letter-spacing:-0.019152px;}
.ls25_c02147{letter-spacing:-0.014400px;}
.ls2f_c02147{letter-spacing:-0.009576px;}
.ls26_c02147{letter-spacing:0.000000px;}
.ls3_c02147{letter-spacing:0.006012px;}
.lse_c02147{letter-spacing:0.009576px;}
.ls46_c02147{letter-spacing:0.014364px;}
.ls1_c02147{letter-spacing:0.014400px;}
.ls23_c02147{letter-spacing:0.019152px;}
.ls0_c02147{letter-spacing:0.021600px;}
.ls7_c02147{letter-spacing:0.023940px;}
.ls38_c02147{letter-spacing:0.028728px;}
.ls5_c02147{letter-spacing:0.033516px;}
.ls37_c02147{letter-spacing:0.038304px;}
.ls8_c02147{letter-spacing:0.043092px;}
.ls2_c02147{letter-spacing:0.048096px;}
.ls50_c02147{letter-spacing:0.050400px;}
.ls1b_c02147{letter-spacing:0.052668px;}
.ls2d_c02147{letter-spacing:0.054108px;}
.lsb_c02147{letter-spacing:0.057456px;}
.ls18_c02147{letter-spacing:0.062244px;}
.ls36_c02147{letter-spacing:0.067032px;}
.ls13_c02147{letter-spacing:0.071820px;}
.ls1d_c02147{letter-spacing:0.076608px;}
.ls11_c02147{letter-spacing:0.081396px;}
.ls12_c02147{letter-spacing:0.086184px;}
.ls2c_c02147{letter-spacing:0.090180px;}
.lsc_c02147{letter-spacing:0.090972px;}
.ls22_c02147{letter-spacing:0.095760px;}
.ls20_c02147{letter-spacing:0.100548px;}
.ls6_c02147{letter-spacing:0.105336px;}
.ls14_c02147{letter-spacing:0.110124px;}
.ls16_c02147{letter-spacing:0.114912px;}
.ls4f_c02147{letter-spacing:0.115200px;}
.ls1f_c02147{letter-spacing:0.119700px;}
.ls39_c02147{letter-spacing:0.124488px;}
.ls1e_c02147{letter-spacing:0.134064px;}
.lsd_c02147{letter-spacing:0.143640px;}
.ls17_c02147{letter-spacing:0.148428px;}
.ls1c_c02147{letter-spacing:0.153216px;}
.ls42_c02147{letter-spacing:0.167580px;}
.ls19_c02147{letter-spacing:0.172368px;}
.ls3f_c02147{letter-spacing:0.177156px;}
.ls2b_c02147{letter-spacing:0.178200px;}
.lsf_c02147{letter-spacing:0.181944px;}
.ls1a_c02147{letter-spacing:0.191520px;}
.ls21_c02147{letter-spacing:0.201096px;}
.ls10_c02147{letter-spacing:0.205884px;}
.ls40_c02147{letter-spacing:0.225036px;}
.ls43_c02147{letter-spacing:0.253764px;}
.ls32_c02147{letter-spacing:0.258552px;}
.ls24_c02147{letter-spacing:0.288000px;}
.ls15_c02147{letter-spacing:0.307080px;}
.ls4_c02147{letter-spacing:0.339948px;}
.lsa_c02147{letter-spacing:0.699048px;}
.ls9_c02147{letter-spacing:1.058148px;}
.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;}
}
.ws3d_c02147{word-spacing:-72.000000px;}
.ws2_c02147{word-spacing:-47.880000px;}
.ws7_c02147{word-spacing:-0.306432px;}
.ws2d_c02147{word-spacing:-0.301644px;}
.ws2a_c02147{word-spacing:-0.272916px;}
.ws18_c02147{word-spacing:-0.253764px;}
.ws35_c02147{word-spacing:-0.248976px;}
.ws25_c02147{word-spacing:-0.239400px;}
.ws15_c02147{word-spacing:-0.229824px;}
.ws24_c02147{word-spacing:-0.225036px;}
.ws23_c02147{word-spacing:-0.220248px;}
.ws2c_c02147{word-spacing:-0.215460px;}
.ws27_c02147{word-spacing:-0.201096px;}
.ws16_c02147{word-spacing:-0.196308px;}
.ws10_c02147{word-spacing:-0.191520px;}
.ws40_c02147{word-spacing:-0.187200px;}
.ws29_c02147{word-spacing:-0.181944px;}
.ws12_c02147{word-spacing:-0.172368px;}
.ws3_c02147{word-spacing:-0.167580px;}
.ws1f_c02147{word-spacing:-0.162792px;}
.ws1d_c02147{word-spacing:-0.158004px;}
.ws33_c02147{word-spacing:-0.153216px;}
.ws31_c02147{word-spacing:-0.148428px;}
.ws37_c02147{word-spacing:-0.143640px;}
.wsd_c02147{word-spacing:-0.138852px;}
.ws1a_c02147{word-spacing:-0.134064px;}
.ws19_c02147{word-spacing:-0.129276px;}
.ws28_c02147{word-spacing:-0.124488px;}
.ws1c_c02147{word-spacing:-0.119700px;}
.ws47_c02147{word-spacing:-0.115200px;}
.ws13_c02147{word-spacing:-0.114912px;}
.ws21_c02147{word-spacing:-0.110124px;}
.wsc_c02147{word-spacing:-0.105336px;}
.ws26_c02147{word-spacing:-0.100548px;}
.ws46_c02147{word-spacing:-0.093600px;}
.ws9_c02147{word-spacing:-0.090972px;}
.wsf_c02147{word-spacing:-0.086184px;}
.ws1_c02147{word-spacing:-0.081396px;}
.ws11_c02147{word-spacing:-0.076608px;}
.ws8_c02147{word-spacing:-0.071820px;}
.ws3a_c02147{word-spacing:-0.067032px;}
.ws32_c02147{word-spacing:-0.062244px;}
.ws14_c02147{word-spacing:-0.057456px;}
.ws3f_c02147{word-spacing:-0.050400px;}
.ws2e_c02147{word-spacing:-0.047880px;}
.ws4_c02147{word-spacing:-0.038304px;}
.ws34_c02147{word-spacing:-0.028728px;}
.ws38_c02147{word-spacing:-0.023940px;}
.ws3b_c02147{word-spacing:-0.014400px;}
.ws1e_c02147{word-spacing:-0.004788px;}
.ws42_c02147{word-spacing:0.000000px;}
.wsb_c02147{word-spacing:0.009576px;}
.ws41_c02147{word-spacing:0.014400px;}
.ws2b_c02147{word-spacing:0.019152px;}
.ws0_c02147{word-spacing:0.023940px;}
.wse_c02147{word-spacing:0.028728px;}
.ws20_c02147{word-spacing:0.038304px;}
.ws5_c02147{word-spacing:0.043092px;}
.ws3e_c02147{word-spacing:0.043200px;}
.ws30_c02147{word-spacing:0.047880px;}
.wsa_c02147{word-spacing:0.057456px;}
.ws3c_c02147{word-spacing:0.064800px;}
.ws1b_c02147{word-spacing:0.071820px;}
.ws22_c02147{word-spacing:0.081396px;}
.ws4a_c02147{word-spacing:0.084168px;}
.ws6_c02147{word-spacing:0.086184px;}
.ws36_c02147{word-spacing:0.105336px;}
.ws49_c02147{word-spacing:0.114228px;}
.ws48_c02147{word-spacing:0.120240px;}
.ws4c_c02147{word-spacing:0.132264px;}
.ws4b_c02147{word-spacing:0.138276px;}
.ws2f_c02147{word-spacing:0.153216px;}
.ws39_c02147{word-spacing:0.181944px;}
.ws17_c02147{word-spacing:0.191520px;}
.ws45_c02147{word-spacing:27.338400px;}
.ws44_c02147{word-spacing:27.554400px;}
.ws43_c02147{word-spacing:27.734400px;}
._1_c02147{margin-left:-1.310616px;}
._3_c02147{width:1.019844px;}
._0_c02147{width:194.400000px;}
._2_c02147{width:2460.607200px;}
.fc0_c02147{color:rgb(0,0,0);}
.fs2_c02147{font-size:47.880000px;}
.fs3_c02147{font-size:54.000000px;}
.fs1_c02147{font-size:60.120000px;}
.fs0_c02147{font-size:72.000000px;}
.y0_c02147{bottom:0.000000px;}
.y3_c02147{bottom:57.360450px;}
.y2_c02147{bottom:78.060450px;}
.ye_c02147{bottom:112.710600px;}
.yf_c02147{bottom:132.870600px;}
.y37_c02147{bottom:134.580450px;}
.y10_c02147{bottom:150.960708px;}
.y38_c02147{bottom:152.670711px;}
.y11_c02147{bottom:169.050816px;}
.y39_c02147{bottom:170.760972px;}
.y12_c02147{bottom:187.140924px;}
.y3a_c02147{bottom:188.851233px;}
.y13_c02147{bottom:205.140852px;}
.y3b_c02147{bottom:206.941494px;}
.y14_c02147{bottom:223.230960px;}
.y3c_c02147{bottom:224.941980px;}
.y15_c02147{bottom:241.321068px;}
.y3d_c02147{bottom:243.032241px;}
.y16_c02147{bottom:259.411176px;}
.y3e_c02147{bottom:261.122502px;}
.y17_c02147{bottom:277.501284px;}
.y3f_c02147{bottom:279.212763px;}
.y18_c02147{bottom:295.591392px;}
.y40_c02147{bottom:297.303024px;}
.y19_c02147{bottom:313.681500px;}
.y41_c02147{bottom:315.393285px;}
.y1a_c02147{bottom:331.771608px;}
.y42_c02147{bottom:333.483546px;}
.y1b_c02147{bottom:349.861716px;}
.y43_c02147{bottom:351.573807px;}
.y1c_c02147{bottom:367.951824px;}
.y44_c02147{bottom:369.664068px;}
.y1d_c02147{bottom:386.041932px;}
.y45_c02147{bottom:387.754329px;}
.y1e_c02147{bottom:404.132040px;}
.y46_c02147{bottom:405.844590px;}
.y1f_c02147{bottom:422.222148px;}
.y47_c02147{bottom:423.930861px;}
.y20_c02147{bottom:440.222076px;}
.y48_c02147{bottom:442.021122px;}
.y21_c02147{bottom:458.312184px;}
.y49_c02147{bottom:460.021608px;}
.y22_c02147{bottom:476.402292px;}
.y4a_c02147{bottom:478.111869px;}
.y23_c02147{bottom:494.492400px;}
.y4b_c02147{bottom:496.202130px;}
.y24_c02147{bottom:512.582508px;}
.y4c_c02147{bottom:514.292391px;}
.y25_c02147{bottom:530.672616px;}
.y4d_c02147{bottom:532.382652px;}
.y26_c02147{bottom:548.762724px;}
.y4e_c02147{bottom:550.472913px;}
.y27_c02147{bottom:566.852832px;}
.y4f_c02147{bottom:568.563174px;}
.y28_c02147{bottom:584.942940px;}
.y50_c02147{bottom:586.653435px;}
.y29_c02147{bottom:603.033048px;}
.y51_c02147{bottom:604.743696px;}
.y2a_c02147{bottom:621.123156px;}
.y52_c02147{bottom:622.833957px;}
.y2b_c02147{bottom:639.213264px;}
.y53_c02147{bottom:640.924218px;}
.y2c_c02147{bottom:657.303372px;}
.y54_c02147{bottom:659.014479px;}
.y2d_c02147{bottom:675.303300px;}
.y55_c02147{bottom:677.104740px;}
.y2e_c02147{bottom:693.393408px;}
.y56_c02147{bottom:695.105226px;}
.y2f_c02147{bottom:711.483516px;}
.y57_c02147{bottom:713.190711px;}
.y30_c02147{bottom:729.573624px;}
.y58_c02147{bottom:731.280972px;}
.y31_c02147{bottom:747.663732px;}
.y59_c02147{bottom:749.371233px;}
.y32_c02147{bottom:765.753840px;}
.y5a_c02147{bottom:767.461494px;}
.y33_c02147{bottom:783.843948px;}
.y5b_c02147{bottom:785.551755px;}
.y34_c02147{bottom:801.934056px;}
.y5c_c02147{bottom:803.642016px;}
.y35_c02147{bottom:820.024164px;}
.y5d_c02147{bottom:821.732277px;}
.y36_c02147{bottom:838.114272px;}
.y5e_c02147{bottom:839.822538px;}
.y60_c02147{bottom:897.960450px;}
.y5f_c02147{bottom:921.360450px;}
.yd_c02147{bottom:952.410162px;}
.yc_c02147{bottom:966.180450px;}
.yb_c02147{bottom:980.670450px;}
.ya_c02147{bottom:997.860450px;}
.y9_c02147{bottom:1015.140450px;}
.y8_c02147{bottom:1032.420450px;}
.y7_c02147{bottom:1049.610450px;}
.y6_c02147{bottom:1078.050450px;}
.y5_c02147{bottom:1109.100450px;}
.y4_c02147{bottom:1139.970450px;}
.y1_c02147{bottom:1193.160450px;}
.h7_c02147{height:34.764434px;}
.h4_c02147{height:42.526230px;}
.h6_c02147{height:43.651582px;}
.h5_c02147{height:47.961914px;}
.h8_c02147{height:52.277344px;}
.h3_c02147{height:53.397598px;}
.h2_c02147{height:63.175781px;}
.h1_c02147{height:63.949219px;}
.h0_c02147{height:1263.000000px;}
.w1_c02147{width:892.500000px;}
.w0_c02147{width:892.830000px;}
.x0_c02147{left:0.000000px;}
.x5_c02147{left:117.000000px;}
.x1_c02147{left:127.620000px;}
.x4_c02147{left:140.850000px;}
.x3_c02147{left:148.950000px;}
.x39_c02147{left:150.662619px;}
.x2a_c02147{left:161.643573px;}
.x2c_c02147{left:164.074680px;}
.x2f_c02147{left:167.137803px;}
.x37_c02147{left:169.201755px;}
.x2e_c02147{left:171.096282px;}
.x32_c02147{left:172.531647px;}
.x34_c02147{left:175.324248px;}
.x38_c02147{left:176.851782px;}
.x23_c02147{left:182.700000px;}
.x25_c02147{left:184.593654px;}
.x29_c02147{left:187.563411px;}
.x24_c02147{left:190.531971px;}
.x35_c02147{left:192.425787px;}
.x28_c02147{left:194.313294px;}
.x2b_c02147{left:197.103501px;}
.x31_c02147{left:200.160801px;}
.x27_c02147{left:203.943159px;}
.x26_c02147{left:206.373069px;}
.x33_c02147{left:212.043420px;}
.x3a_c02147{left:218.344590px;}
.x36_c02147{left:227.706165px;}
.x30_c02147{left:237.788334px;}
.x3b_c02147{left:242.370000px;}
.x2d_c02147{left:260.826993px;}
.x2_c02147{left:433.080000px;}
.x3c_c02147{left:439.110000px;}
.x22_c02147{left:566.816472px;}
.x21_c02147{left:591.656553px;}
.x20_c02147{left:608.756184px;}
.x1f_c02147{left:611.096355px;}
.x1e_c02147{left:612.626409px;}
.x1d_c02147{left:625.855815px;}
.x1c_c02147{left:629.006103px;}
.x1b_c02147{left:631.346274px;}
.x1a_c02147{left:632.876328px;}
.x19_c02147{left:635.216499px;}
.x18_c02147{left:638.366787px;}
.x17_c02147{left:640.706958px;}
.x16_c02147{left:643.047129px;}
.x15_c02147{left:648.447408px;}
.x14_c02147{left:650.787579px;}
.x13_c02147{left:661.678317px;}
.x12_c02147{left:664.828605px;}
.x11_c02147{left:667.078596px;}
.x10_c02147{left:671.758938px;}
.xf_c02147{left:677.249397px;}
.xe_c02147{left:683.459793px;}
.xd_c02147{left:685.799964px;}
.xc_c02147{left:687.330018px;}
.xb_c02147{left:695.160648px;}
.xa_c02147{left:706.049883px;}
.x9_c02147{left:708.390054px;}
.x8_c02147{left:710.640045px;}
.x7_c02147{left:714.600450px;}
.x6_c02147{left:721.890000px;}
@media print{
.v0_c02147{vertical-align:0.000000pt;}
.ls3a_c02147{letter-spacing:-0.212800pt;}
.ls4a_c02147{letter-spacing:-0.204288pt;}
.ls44_c02147{letter-spacing:-0.178752pt;}
.ls48_c02147{letter-spacing:-0.136192pt;}
.ls4c_c02147{letter-spacing:-0.121600pt;}
.ls31_c02147{letter-spacing:-0.119168pt;}
.ls3e_c02147{letter-spacing:-0.114912pt;}
.ls3b_c02147{letter-spacing:-0.106400pt;}
.ls4d_c02147{letter-spacing:-0.102400pt;}
.ls33_c02147{letter-spacing:-0.093632pt;}
.ls45_c02147{letter-spacing:-0.085120pt;}
.ls30_c02147{letter-spacing:-0.080864pt;}
.ls3d_c02147{letter-spacing:-0.076608pt;}
.ls35_c02147{letter-spacing:-0.068096pt;}
.ls2e_c02147{letter-spacing:-0.063840pt;}
.ls41_c02147{letter-spacing:-0.059584pt;}
.ls51_c02147{letter-spacing:-0.053440pt;}
.ls4b_c02147{letter-spacing:-0.051200pt;}
.ls34_c02147{letter-spacing:-0.051072pt;}
.ls29_c02147{letter-spacing:-0.042752pt;}
.ls3c_c02147{letter-spacing:-0.038304pt;}
.ls2a_c02147{letter-spacing:-0.037408pt;}
.ls27_c02147{letter-spacing:-0.026720pt;}
.ls28_c02147{letter-spacing:-0.021376pt;}
.ls49_c02147{letter-spacing:-0.021280pt;}
.ls4e_c02147{letter-spacing:-0.019200pt;}
.ls47_c02147{letter-spacing:-0.017024pt;}
.ls25_c02147{letter-spacing:-0.012800pt;}
.ls2f_c02147{letter-spacing:-0.008512pt;}
.ls26_c02147{letter-spacing:0.000000pt;}
.ls3_c02147{letter-spacing:0.005344pt;}
.lse_c02147{letter-spacing:0.008512pt;}
.ls46_c02147{letter-spacing:0.012768pt;}
.ls1_c02147{letter-spacing:0.012800pt;}
.ls23_c02147{letter-spacing:0.017024pt;}
.ls0_c02147{letter-spacing:0.019200pt;}
.ls7_c02147{letter-spacing:0.021280pt;}
.ls38_c02147{letter-spacing:0.025536pt;}
.ls5_c02147{letter-spacing:0.029792pt;}
.ls37_c02147{letter-spacing:0.034048pt;}
.ls8_c02147{letter-spacing:0.038304pt;}
.ls2_c02147{letter-spacing:0.042752pt;}
.ls50_c02147{letter-spacing:0.044800pt;}
.ls1b_c02147{letter-spacing:0.046816pt;}
.ls2d_c02147{letter-spacing:0.048096pt;}
.lsb_c02147{letter-spacing:0.051072pt;}
.ls18_c02147{letter-spacing:0.055328pt;}
.ls36_c02147{letter-spacing:0.059584pt;}
.ls13_c02147{letter-spacing:0.063840pt;}
.ls1d_c02147{letter-spacing:0.068096pt;}
.ls11_c02147{letter-spacing:0.072352pt;}
.ls12_c02147{letter-spacing:0.076608pt;}
.ls2c_c02147{letter-spacing:0.080160pt;}
.lsc_c02147{letter-spacing:0.080864pt;}
.ls22_c02147{letter-spacing:0.085120pt;}
.ls20_c02147{letter-spacing:0.089376pt;}
.ls6_c02147{letter-spacing:0.093632pt;}
.ls14_c02147{letter-spacing:0.097888pt;}
.ls16_c02147{letter-spacing:0.102144pt;}
.ls4f_c02147{letter-spacing:0.102400pt;}
.ls1f_c02147{letter-spacing:0.106400pt;}
.ls39_c02147{letter-spacing:0.110656pt;}
.ls1e_c02147{letter-spacing:0.119168pt;}
.lsd_c02147{letter-spacing:0.127680pt;}
.ls17_c02147{letter-spacing:0.131936pt;}
.ls1c_c02147{letter-spacing:0.136192pt;}
.ls42_c02147{letter-spacing:0.148960pt;}
.ls19_c02147{letter-spacing:0.153216pt;}
.ls3f_c02147{letter-spacing:0.157472pt;}
.ls2b_c02147{letter-spacing:0.158400pt;}
.lsf_c02147{letter-spacing:0.161728pt;}
.ls1a_c02147{letter-spacing:0.170240pt;}
.ls21_c02147{letter-spacing:0.178752pt;}
.ls10_c02147{letter-spacing:0.183008pt;}
.ls40_c02147{letter-spacing:0.200032pt;}
.ls43_c02147{letter-spacing:0.225568pt;}
.ls32_c02147{letter-spacing:0.229824pt;}
.ls24_c02147{letter-spacing:0.256000pt;}
.ls15_c02147{letter-spacing:0.272960pt;}
.ls4_c02147{letter-spacing:0.302176pt;}
.lsa_c02147{letter-spacing:0.621376pt;}
.ls9_c02147{letter-spacing:0.940576pt;}
.ws3d_c02147{word-spacing:-64.000000pt;}
.ws2_c02147{word-spacing:-42.560000pt;}
.ws7_c02147{word-spacing:-0.272384pt;}
.ws2d_c02147{word-spacing:-0.268128pt;}
.ws2a_c02147{word-spacing:-0.242592pt;}
.ws18_c02147{word-spacing:-0.225568pt;}
.ws35_c02147{word-spacing:-0.221312pt;}
.ws25_c02147{word-spacing:-0.212800pt;}
.ws15_c02147{word-spacing:-0.204288pt;}
.ws24_c02147{word-spacing:-0.200032pt;}
.ws23_c02147{word-spacing:-0.195776pt;}
.ws2c_c02147{word-spacing:-0.191520pt;}
.ws27_c02147{word-spacing:-0.178752pt;}
.ws16_c02147{word-spacing:-0.174496pt;}
.ws10_c02147{word-spacing:-0.170240pt;}
.ws40_c02147{word-spacing:-0.166400pt;}
.ws29_c02147{word-spacing:-0.161728pt;}
.ws12_c02147{word-spacing:-0.153216pt;}
.ws3_c02147{word-spacing:-0.148960pt;}
.ws1f_c02147{word-spacing:-0.144704pt;}
.ws1d_c02147{word-spacing:-0.140448pt;}
.ws33_c02147{word-spacing:-0.136192pt;}
.ws31_c02147{word-spacing:-0.131936pt;}
.ws37_c02147{word-spacing:-0.127680pt;}
.wsd_c02147{word-spacing:-0.123424pt;}
.ws1a_c02147{word-spacing:-0.119168pt;}
.ws19_c02147{word-spacing:-0.114912pt;}
.ws28_c02147{word-spacing:-0.110656pt;}
.ws1c_c02147{word-spacing:-0.106400pt;}
.ws47_c02147{word-spacing:-0.102400pt;}
.ws13_c02147{word-spacing:-0.102144pt;}
.ws21_c02147{word-spacing:-0.097888pt;}
.wsc_c02147{word-spacing:-0.093632pt;}
.ws26_c02147{word-spacing:-0.089376pt;}
.ws46_c02147{word-spacing:-0.083200pt;}
.ws9_c02147{word-spacing:-0.080864pt;}
.wsf_c02147{word-spacing:-0.076608pt;}
.ws1_c02147{word-spacing:-0.072352pt;}
.ws11_c02147{word-spacing:-0.068096pt;}
.ws8_c02147{word-spacing:-0.063840pt;}
.ws3a_c02147{word-spacing:-0.059584pt;}
.ws32_c02147{word-spacing:-0.055328pt;}
.ws14_c02147{word-spacing:-0.051072pt;}
.ws3f_c02147{word-spacing:-0.044800pt;}
.ws2e_c02147{word-spacing:-0.042560pt;}
.ws4_c02147{word-spacing:-0.034048pt;}
.ws34_c02147{word-spacing:-0.025536pt;}
.ws38_c02147{word-spacing:-0.021280pt;}
.ws3b_c02147{word-spacing:-0.012800pt;}
.ws1e_c02147{word-spacing:-0.004256pt;}
.ws42_c02147{word-spacing:0.000000pt;}
.wsb_c02147{word-spacing:0.008512pt;}
.ws41_c02147{word-spacing:0.012800pt;}
.ws2b_c02147{word-spacing:0.017024pt;}
.ws0_c02147{word-spacing:0.021280pt;}
.wse_c02147{word-spacing:0.025536pt;}
.ws20_c02147{word-spacing:0.034048pt;}
.ws5_c02147{word-spacing:0.038304pt;}
.ws3e_c02147{word-spacing:0.038400pt;}
.ws30_c02147{word-spacing:0.042560pt;}
.wsa_c02147{word-spacing:0.051072pt;}
.ws3c_c02147{word-spacing:0.057600pt;}
.ws1b_c02147{word-spacing:0.063840pt;}
.ws22_c02147{word-spacing:0.072352pt;}
.ws4a_c02147{word-spacing:0.074816pt;}
.ws6_c02147{word-spacing:0.076608pt;}
.ws36_c02147{word-spacing:0.093632pt;}
.ws49_c02147{word-spacing:0.101536pt;}
.ws48_c02147{word-spacing:0.106880pt;}
.ws4c_c02147{word-spacing:0.117568pt;}
.ws4b_c02147{word-spacing:0.122912pt;}
.ws2f_c02147{word-spacing:0.136192pt;}
.ws39_c02147{word-spacing:0.161728pt;}
.ws17_c02147{word-spacing:0.170240pt;}
.ws45_c02147{word-spacing:24.300800pt;}
.ws44_c02147{word-spacing:24.492800pt;}
.ws43_c02147{word-spacing:24.652800pt;}
._1_c02147{margin-left:-1.164992pt;}
._3_c02147{width:0.906528pt;}
._0_c02147{width:172.800000pt;}
._2_c02147{width:2187.206400pt;}
.fs2_c02147{font-size:42.560000pt;}
.fs3_c02147{font-size:48.000000pt;}
.fs1_c02147{font-size:53.440000pt;}
.fs0_c02147{font-size:64.000000pt;}
.y0_c02147{bottom:0.000000pt;}
.y3_c02147{bottom:50.987067pt;}
.y2_c02147{bottom:69.387067pt;}
.ye_c02147{bottom:100.187200pt;}
.yf_c02147{bottom:118.107200pt;}
.y37_c02147{bottom:119.627067pt;}
.y10_c02147{bottom:134.187296pt;}
.y38_c02147{bottom:135.707299pt;}
.y11_c02147{bottom:150.267392pt;}
.y39_c02147{bottom:151.787531pt;}
.y12_c02147{bottom:166.347488pt;}
.y3a_c02147{bottom:167.867763pt;}
.y13_c02147{bottom:182.347424pt;}
.y3b_c02147{bottom:183.947995pt;}
.y14_c02147{bottom:198.427520pt;}
.y3c_c02147{bottom:199.948427pt;}
.y15_c02147{bottom:214.507616pt;}
.y3d_c02147{bottom:216.028659pt;}
.y16_c02147{bottom:230.587712pt;}
.y3e_c02147{bottom:232.108891pt;}
.y17_c02147{bottom:246.667808pt;}
.y3f_c02147{bottom:248.189123pt;}
.y18_c02147{bottom:262.747904pt;}
.y40_c02147{bottom:264.269355pt;}
.y19_c02147{bottom:278.828000pt;}
.y41_c02147{bottom:280.349587pt;}
.y1a_c02147{bottom:294.908096pt;}
.y42_c02147{bottom:296.429819pt;}
.y1b_c02147{bottom:310.988192pt;}
.y43_c02147{bottom:312.510051pt;}
.y1c_c02147{bottom:327.068288pt;}
.y44_c02147{bottom:328.590283pt;}
.y1d_c02147{bottom:343.148384pt;}
.y45_c02147{bottom:344.670515pt;}
.y1e_c02147{bottom:359.228480pt;}
.y46_c02147{bottom:360.750747pt;}
.y1f_c02147{bottom:375.308576pt;}
.y47_c02147{bottom:376.827432pt;}
.y20_c02147{bottom:391.308512pt;}
.y48_c02147{bottom:392.907664pt;}
.y21_c02147{bottom:407.388608pt;}
.y49_c02147{bottom:408.908096pt;}
.y22_c02147{bottom:423.468704pt;}
.y4a_c02147{bottom:424.988328pt;}
.y23_c02147{bottom:439.548800pt;}
.y4b_c02147{bottom:441.068560pt;}
.y24_c02147{bottom:455.628896pt;}
.y4c_c02147{bottom:457.148792pt;}
.y25_c02147{bottom:471.708992pt;}
.y4d_c02147{bottom:473.229024pt;}
.y26_c02147{bottom:487.789088pt;}
.y4e_c02147{bottom:489.309256pt;}
.y27_c02147{bottom:503.869184pt;}
.y4f_c02147{bottom:505.389488pt;}
.y28_c02147{bottom:519.949280pt;}
.y50_c02147{bottom:521.469720pt;}
.y29_c02147{bottom:536.029376pt;}
.y51_c02147{bottom:537.549952pt;}
.y2a_c02147{bottom:552.109472pt;}
.y52_c02147{bottom:553.630184pt;}
.y2b_c02147{bottom:568.189568pt;}
.y53_c02147{bottom:569.710416pt;}
.y2c_c02147{bottom:584.269664pt;}
.y54_c02147{bottom:585.790648pt;}
.y2d_c02147{bottom:600.269600pt;}
.y55_c02147{bottom:601.870880pt;}
.y2e_c02147{bottom:616.349696pt;}
.y56_c02147{bottom:617.871312pt;}
.y2f_c02147{bottom:632.429792pt;}
.y57_c02147{bottom:633.947299pt;}
.y30_c02147{bottom:648.509888pt;}
.y58_c02147{bottom:650.027531pt;}
.y31_c02147{bottom:664.589984pt;}
.y59_c02147{bottom:666.107763pt;}
.y32_c02147{bottom:680.670080pt;}
.y5a_c02147{bottom:682.187995pt;}
.y33_c02147{bottom:696.750176pt;}
.y5b_c02147{bottom:698.268227pt;}
.y34_c02147{bottom:712.830272pt;}
.y5c_c02147{bottom:714.348459pt;}
.y35_c02147{bottom:728.910368pt;}
.y5d_c02147{bottom:730.428691pt;}
.y36_c02147{bottom:744.990464pt;}
.y5e_c02147{bottom:746.508923pt;}
.y60_c02147{bottom:798.187067pt;}
.y5f_c02147{bottom:818.987067pt;}
.yd_c02147{bottom:846.586811pt;}
.yc_c02147{bottom:858.827067pt;}
.yb_c02147{bottom:871.707067pt;}
.ya_c02147{bottom:886.987067pt;}
.y9_c02147{bottom:902.347067pt;}
.y8_c02147{bottom:917.707067pt;}
.y7_c02147{bottom:932.987067pt;}
.y6_c02147{bottom:958.267067pt;}
.y5_c02147{bottom:985.867067pt;}
.y4_c02147{bottom:1013.307067pt;}
.y1_c02147{bottom:1060.587067pt;}
.h7_c02147{height:30.901719pt;}
.h4_c02147{height:37.801094pt;}
.h6_c02147{height:38.801406pt;}
.h5_c02147{height:42.632812pt;}
.h8_c02147{height:46.468750pt;}
.h3_c02147{height:47.464531pt;}
.h2_c02147{height:56.156250pt;}
.h1_c02147{height:56.843750pt;}
.h0_c02147{height:1122.666667pt;}
.w1_c02147{width:793.333333pt;}
.w0_c02147{width:793.626667pt;}
.x0_c02147{left:0.000000pt;}
.x5_c02147{left:104.000000pt;}
.x1_c02147{left:113.440000pt;}
.x4_c02147{left:125.200000pt;}
.x3_c02147{left:132.400000pt;}
.x39_c02147{left:133.922328pt;}
.x2a_c02147{left:143.683176pt;}
.x2c_c02147{left:145.844160pt;}
.x2f_c02147{left:148.566936pt;}
.x37_c02147{left:150.401560pt;}
.x2e_c02147{left:152.085584pt;}
.x32_c02147{left:153.361464pt;}
.x34_c02147{left:155.843776pt;}
.x38_c02147{left:157.201584pt;}
.x23_c02147{left:162.400000pt;}
.x25_c02147{left:164.083248pt;}
.x29_c02147{left:166.723032pt;}
.x24_c02147{left:169.361752pt;}
.x35_c02147{left:171.045144pt;}
.x28_c02147{left:172.722928pt;}
.x2b_c02147{left:175.203112pt;}
.x31_c02147{left:177.920712pt;}
.x27_c02147{left:181.282808pt;}
.x26_c02147{left:183.442728pt;}
.x33_c02147{left:188.483040pt;}
.x3a_c02147{left:194.084080pt;}
.x36_c02147{left:202.405480pt;}
.x30_c02147{left:211.367408pt;}
.x3b_c02147{left:215.440000pt;}
.x2d_c02147{left:231.846216pt;}
.x2_c02147{left:384.960000pt;}
.x3c_c02147{left:390.320000pt;}
.x22_c02147{left:503.836864pt;}
.x21_c02147{left:525.916936pt;}
.x20_c02147{left:541.116608pt;}
.x1f_c02147{left:543.196760pt;}
.x1e_c02147{left:544.556808pt;}
.x1d_c02147{left:556.316280pt;}
.x1c_c02147{left:559.116536pt;}
.x1b_c02147{left:561.196688pt;}
.x1a_c02147{left:562.556736pt;}
.x19_c02147{left:564.636888pt;}
.x18_c02147{left:567.437144pt;}
.x17_c02147{left:569.517296pt;}
.x16_c02147{left:571.597448pt;}
.x15_c02147{left:576.397696pt;}
.x14_c02147{left:578.477848pt;}
.x13_c02147{left:588.158504pt;}
.x12_c02147{left:590.958760pt;}
.x11_c02147{left:592.958752pt;}
.x10_c02147{left:597.119056pt;}
.xf_c02147{left:601.999464pt;}
.xe_c02147{left:607.519816pt;}
.xd_c02147{left:609.599968pt;}
.xc_c02147{left:610.960016pt;}
.xb_c02147{left:617.920576pt;}
.xa_c02147{left:627.599896pt;}
.x9_c02147{left:629.680048pt;}
.x8_c02147{left:631.680040pt;}
.x7_c02147{left:635.200400pt;}
.x6_c02147{left:641.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_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_e14a9e4adc6eb14ec04240dc.woff2')format("woff");}.ff1_c02148{font-family:ff1_c02148;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02148;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02148{vertical-align:-1.440000px;}
.v0_c02148{vertical-align:0.000000px;}
.v3_c02148{vertical-align:1.800000px;}
.v1_c02148{vertical-align:40.320000px;}
.v4_c02148{vertical-align:75.960000px;}
.ls42_c02148{letter-spacing:-0.144288px;}
.ls41_c02148{letter-spacing:-0.090180px;}
.ls40_c02148{letter-spacing:-0.078156px;}
.ls3d_c02148{letter-spacing:-0.014400px;}
.ls43_c02148{letter-spacing:-0.006588px;}
.ls3e_c02148{letter-spacing:0.000000px;}
.ls0_c02148{letter-spacing:0.007200px;}
.ls1_c02148{letter-spacing:0.014400px;}
.ls26_c02148{letter-spacing:0.039528px;}
.ls4_c02148{letter-spacing:0.046116px;}
.ls38_c02148{letter-spacing:0.052704px;}
.ls1c_c02148{letter-spacing:0.059292px;}
.lsa_c02148{letter-spacing:0.065880px;}
.ls29_c02148{letter-spacing:0.072468px;}
.ls3_c02148{letter-spacing:0.079056px;}
.ls6_c02148{letter-spacing:0.092232px;}
.ls5_c02148{letter-spacing:0.097200px;}
.ls16_c02148{letter-spacing:0.098820px;}
.lsd_c02148{letter-spacing:0.138348px;}
.ls3f_c02148{letter-spacing:0.144288px;}
.ls12_c02148{letter-spacing:0.151524px;}
.ls28_c02148{letter-spacing:0.158112px;}
.ls2_c02148{letter-spacing:0.164700px;}
.ls19_c02148{letter-spacing:0.177876px;}
.ls1a_c02148{letter-spacing:63.000000px;}
.ls1b_c02148{letter-spacing:63.360000px;}
.ls3b_c02148{letter-spacing:64.440000px;}
.ls2e_c02148{letter-spacing:64.620000px;}
.ls3a_c02148{letter-spacing:64.800000px;}
.ls2d_c02148{letter-spacing:64.980000px;}
.ls15_c02148{letter-spacing:95.760000px;}
.ls13_c02148{letter-spacing:96.120000px;}
.ls2f_c02148{letter-spacing:96.480000px;}
.ls25_c02148{letter-spacing:109.170000px;}
.ls24_c02148{letter-spacing:111.330000px;}
.ls2a_c02148{letter-spacing:111.420000px;}
.lse_c02148{letter-spacing:128.880000px;}
.ls10_c02148{letter-spacing:129.240000px;}
.ls3c_c02148{letter-spacing:146.160000px;}
.ls33_c02148{letter-spacing:162.000000px;}
.ls34_c02148{letter-spacing:162.360000px;}
.ls11_c02148{letter-spacing:164.160000px;}
.lsf_c02148{letter-spacing:165.780000px;}
.lsc_c02148{letter-spacing:166.140000px;}
.ls20_c02148{letter-spacing:175.050000px;}
.ls1f_c02148{letter-spacing:177.210000px;}
.ls35_c02148{letter-spacing:180.720000px;}
.ls2c_c02148{letter-spacing:182.520000px;}
.ls36_c02148{letter-spacing:191.880000px;}
.ls39_c02148{letter-spacing:196.920000px;}
.ls21_c02148{letter-spacing:198.900000px;}
.ls9_c02148{letter-spacing:199.260000px;}
.ls1e_c02148{letter-spacing:211.320000px;}
.ls22_c02148{letter-spacing:211.679400px;}
.ls2b_c02148{letter-spacing:211.680000px;}
.ls14_c02148{letter-spacing:212.040000px;}
.ls30_c02148{letter-spacing:225.000000px;}
.ls18_c02148{letter-spacing:230.040000px;}
.ls27_c02148{letter-spacing:246.600000px;}
.ls1d_c02148{letter-spacing:259.200000px;}
.ls17_c02148{letter-spacing:263.160000px;}
.ls23_c02148{letter-spacing:292.320000px;}
.lsb_c02148{letter-spacing:307.080000px;}
.ls37_c02148{letter-spacing:350.280000px;}
.ls31_c02148{letter-spacing:383.400000px;}
.ls8_c02148{letter-spacing:405.000000px;}
.ls32_c02148{letter-spacing:469.080000px;}
.ls7_c02148{letter-spacing:573.840000px;}
.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;}
}
.ws15_c02148{word-spacing:-16.647876px;}
.ws0_c02148{word-spacing:-16.634700px;}
.wse_c02148{word-spacing:-16.621524px;}
.ws4_c02148{word-spacing:-16.608348px;}
.ws10_c02148{word-spacing:-16.568820px;}
.ws17_c02148{word-spacing:-16.562232px;}
.ws1d_c02148{word-spacing:-16.542468px;}
.ws2a_c02148{word-spacing:-16.535880px;}
.ws16_c02148{word-spacing:-16.529292px;}
.ws1_c02148{word-spacing:-16.516116px;}
.ws1b_c02148{word-spacing:-16.509528px;}
.ws27_c02148{word-spacing:-14.885712px;}
.ws36_c02148{word-spacing:-0.100800px;}
.ws35_c02148{word-spacing:-0.014400px;}
.ws34_c02148{word-spacing:-0.007200px;}
.ws3b_c02148{word-spacing:-0.006588px;}
.ws33_c02148{word-spacing:0.000000px;}
.ws37_c02148{word-spacing:0.013176px;}
.ws32_c02148{word-spacing:0.014400px;}
.ws3a_c02148{word-spacing:0.026352px;}
.ws38_c02148{word-spacing:0.032940px;}
.ws3f_c02148{word-spacing:0.039528px;}
.ws3e_c02148{word-spacing:0.046116px;}
.ws3c_c02148{word-spacing:0.052704px;}
.ws39_c02148{word-spacing:0.081000px;}
.ws3d_c02148{word-spacing:0.098820px;}
.ws20_c02148{word-spacing:47.449440px;}
.ws2d_c02148{word-spacing:47.798496px;}
.ws1c_c02148{word-spacing:47.809440px;}
.ws13_c02148{word-spacing:64.042380px;}
.ws1a_c02148{word-spacing:82.718496px;}
.ws19_c02148{word-spacing:83.078496px;}
.ws23_c02148{word-spacing:92.122380px;}
.ws1f_c02148{word-spacing:92.146608px;}
.ws21_c02148{word-spacing:94.282380px;}
.ws2c_c02148{word-spacing:94.306608px;}
.wsb_c02148{word-spacing:96.802380px;}
.ws25_c02148{word-spacing:99.541152px;}
.ws14_c02148{word-spacing:108.640728px;}
.ws12_c02148{word-spacing:110.800728px;}
.wsd_c02148{word-spacing:115.476372px;}
.wsa_c02148{word-spacing:115.836372px;}
.ws11_c02148{word-spacing:115.838496px;}
.ws6_c02148{word-spacing:129.946608px;}
.ws22_c02148{word-spacing:130.453020px;}
.wsc_c02148{word-spacing:141.802380px;}
.wsf_c02148{word-spacing:143.962380px;}
.ws9_c02148{word-spacing:143.986608px;}
.ws8_c02148{word-spacing:148.956372px;}
.ws2_c02148{word-spacing:163.163304px;}
.ws1e_c02148{word-spacing:163.573020px;}
.ws31_c02148{word-spacing:171.682380px;}
.ws30_c02148{word-spacing:173.842380px;}
.ws26_c02148{word-spacing:174.562380px;}
.ws7_c02148{word-spacing:174.586608px;}
.ws24_c02148{word-spacing:176.676372px;}
.ws2e_c02148{word-spacing:176.722380px;}
.ws5_c02148{word-spacing:176.746608px;}
.ws18_c02148{word-spacing:212.483304px;}
.ws29_c02148{word-spacing:231.078096px;}
.ws28_c02148{word-spacing:231.435972px;}
.ws2f_c02148{word-spacing:231.438096px;}
.ws3_c02148{word-spacing:455.843304px;}
.ws2b_c02148{word-spacing:1160.363304px;}
._2_c02148{margin-left:-1.148292px;}
._6_c02148{width:72.885600px;}
._7_c02148{width:85.485600px;}
._5_c02148{width:118.890000px;}
._4_c02148{width:126.835776px;}
._9_c02148{width:132.587604px;}
._8_c02148{width:138.391020px;}
._b_c02148{width:148.991544px;}
._3_c02148{width:158.359284px;}
._0_c02148{width:194.400000px;}
._a_c02148{width:228.813732px;}
._1_c02148{width:472.665600px;}
._c_c02148{width:614.555784px;}
.fc0_c02148{color:rgb(0,0,0);}
.fs4_c02148{font-size:11.880000px;}
.fs1_c02148{font-size:54.000000px;}
.fs3_c02148{font-size:60.120000px;}
.fs2_c02148{font-size:65.880000px;}
.fs0_c02148{font-size:72.000000px;}
.y0_c02148{bottom:0.000000px;}
.y3_c02148{bottom:57.360450px;}
.y2_c02148{bottom:78.060450px;}
.y40_c02148{bottom:111.720693px;}
.y3f_c02148{bottom:115.230639px;}
.y3e_c02148{bottom:118.650594px;}
.y3d_c02148{bottom:122.070549px;}
.y3c_c02148{bottom:125.580495px;}
.y3b_c02148{bottom:129.000450px;}
.y3a_c02148{bottom:135.840450px;}
.y39_c02148{bottom:156.540600px;}
.y38_c02148{bottom:177.240450px;}
.y37_c02148{bottom:196.230450px;}
.y36_c02148{bottom:215.580450px;}
.y35_c02148{bottom:236.280600px;}
.y34_c02148{bottom:256.980450px;}
.y33_c02148{bottom:275.880450px;}
.y32_c02148{bottom:294.870450px;}
.y31_c02148{bottom:313.860450px;}
.y30_c02148{bottom:332.850450px;}
.y2f_c02148{bottom:351.840450px;}
.y2e_c02148{bottom:372.180450px;}
.y2c_c02148{bottom:389.730450px;}
.y2b_c02148{bottom:398.640450px;}
.y2d_c02148{bottom:408.720450px;}
.y2a_c02148{bottom:427.980450px;}
.y29_c02148{bottom:450.930600px;}
.y28_c02148{bottom:471.720450px;}
.y27_c02148{bottom:492.420450px;}
.y26_c02148{bottom:511.410450px;}
.y25_c02148{bottom:530.400450px;}
.y24_c02148{bottom:549.750450px;}
.y23_c02148{bottom:570.450450px;}
.y22_c02148{bottom:591.150450px;}
.y21_c02148{bottom:610.050450px;}
.y20_c02148{bottom:629.040450px;}
.y1f_c02148{bottom:648.030450px;}
.y1e_c02148{bottom:667.020450px;}
.y1d_c02148{bottom:686.010450px;}
.y1c_c02148{bottom:706.350450px;}
.y1a_c02148{bottom:723.900450px;}
.y19_c02148{bottom:732.810450px;}
.y1b_c02148{bottom:742.890450px;}
.y18_c02148{bottom:762.150450px;}
.y17_c02148{bottom:785.100450px;}
.y16_c02148{bottom:805.890450px;}
.y15_c02148{bottom:826.590450px;}
.y14_c02148{bottom:845.580450px;}
.y13_c02148{bottom:864.570450px;}
.y12_c02148{bottom:883.920450px;}
.y11_c02148{bottom:904.620450px;}
.y10_c02148{bottom:925.320450px;}
.yf_c02148{bottom:944.310450px;}
.ye_c02148{bottom:963.210450px;}
.yd_c02148{bottom:982.200450px;}
.yc_c02148{bottom:1001.190450px;}
.yb_c02148{bottom:1020.180450px;}
.ya_c02148{bottom:1040.520450px;}
.y8_c02148{bottom:1058.070450px;}
.y7_c02148{bottom:1066.980450px;}
.y9_c02148{bottom:1077.060450px;}
.y6_c02148{bottom:1096.320450px;}
.y5_c02148{bottom:1119.270450px;}
.y4_c02148{bottom:1139.970450px;}
.y1_c02148{bottom:1193.160450px;}
.hb_c02148{height:10.551621px;}
.h5_c02148{height:53.397598px;}
.h4_c02148{height:58.513535px;}
.h2_c02148{height:63.175781px;}
.h1_c02148{height:63.949219px;}
.h6_c02148{height:64.975781px;}
.h9_c02148{height:64.976381px;}
.ha_c02148{height:65.028619px;}
.h7_c02148{height:65.029219px;}
.h3_c02148{height:104.269219px;}
.h8_c02148{height:134.473535px;}
.h0_c02148{height:1263.000000px;}
.w1_c02148{width:892.500000px;}
.w0_c02148{width:892.830000px;}
.x0_c02148{left:0.000000px;}
.x1_c02148{left:127.620000px;}
.x3_c02148{left:135.630000px;}
.x9_c02148{left:158.850000px;}
.xd_c02148{left:249.930000px;}
.x4_c02148{left:251.820000px;}
.xa_c02148{left:288.450000px;}
.x6_c02148{left:423.990000px;}
.xe_c02148{left:425.430000px;}
.x2_c02148{left:433.080000px;}
.xb_c02148{left:435.240000px;}
.x5_c02148{left:463.410000px;}
.xc_c02148{left:594.900000px;}
.xf_c02148{left:600.660000px;}
.x8_c02148{left:624.420000px;}
.x7_c02148{left:639.360000px;}
@media print{
.v2_c02148{vertical-align:-1.280000pt;}
.v0_c02148{vertical-align:0.000000pt;}
.v3_c02148{vertical-align:1.600000pt;}
.v1_c02148{vertical-align:35.840000pt;}
.v4_c02148{vertical-align:67.520000pt;}
.ls42_c02148{letter-spacing:-0.128256pt;}
.ls41_c02148{letter-spacing:-0.080160pt;}
.ls40_c02148{letter-spacing:-0.069472pt;}
.ls3d_c02148{letter-spacing:-0.012800pt;}
.ls43_c02148{letter-spacing:-0.005856pt;}
.ls3e_c02148{letter-spacing:0.000000pt;}
.ls0_c02148{letter-spacing:0.006400pt;}
.ls1_c02148{letter-spacing:0.012800pt;}
.ls26_c02148{letter-spacing:0.035136pt;}
.ls4_c02148{letter-spacing:0.040992pt;}
.ls38_c02148{letter-spacing:0.046848pt;}
.ls1c_c02148{letter-spacing:0.052704pt;}
.lsa_c02148{letter-spacing:0.058560pt;}
.ls29_c02148{letter-spacing:0.064416pt;}
.ls3_c02148{letter-spacing:0.070272pt;}
.ls6_c02148{letter-spacing:0.081984pt;}
.ls5_c02148{letter-spacing:0.086400pt;}
.ls16_c02148{letter-spacing:0.087840pt;}
.lsd_c02148{letter-spacing:0.122976pt;}
.ls3f_c02148{letter-spacing:0.128256pt;}
.ls12_c02148{letter-spacing:0.134688pt;}
.ls28_c02148{letter-spacing:0.140544pt;}
.ls2_c02148{letter-spacing:0.146400pt;}
.ls19_c02148{letter-spacing:0.158112pt;}
.ls1a_c02148{letter-spacing:56.000000pt;}
.ls1b_c02148{letter-spacing:56.320000pt;}
.ls3b_c02148{letter-spacing:57.280000pt;}
.ls2e_c02148{letter-spacing:57.440000pt;}
.ls3a_c02148{letter-spacing:57.600000pt;}
.ls2d_c02148{letter-spacing:57.760000pt;}
.ls15_c02148{letter-spacing:85.120000pt;}
.ls13_c02148{letter-spacing:85.440000pt;}
.ls2f_c02148{letter-spacing:85.760000pt;}
.ls25_c02148{letter-spacing:97.040000pt;}
.ls24_c02148{letter-spacing:98.960000pt;}
.ls2a_c02148{letter-spacing:99.040000pt;}
.lse_c02148{letter-spacing:114.560000pt;}
.ls10_c02148{letter-spacing:114.880000pt;}
.ls3c_c02148{letter-spacing:129.920000pt;}
.ls33_c02148{letter-spacing:144.000000pt;}
.ls34_c02148{letter-spacing:144.320000pt;}
.ls11_c02148{letter-spacing:145.920000pt;}
.lsf_c02148{letter-spacing:147.360000pt;}
.lsc_c02148{letter-spacing:147.680000pt;}
.ls20_c02148{letter-spacing:155.600000pt;}
.ls1f_c02148{letter-spacing:157.520000pt;}
.ls35_c02148{letter-spacing:160.640000pt;}
.ls2c_c02148{letter-spacing:162.240000pt;}
.ls36_c02148{letter-spacing:170.560000pt;}
.ls39_c02148{letter-spacing:175.040000pt;}
.ls21_c02148{letter-spacing:176.800000pt;}
.ls9_c02148{letter-spacing:177.120000pt;}
.ls1e_c02148{letter-spacing:187.840000pt;}
.ls22_c02148{letter-spacing:188.159467pt;}
.ls2b_c02148{letter-spacing:188.160000pt;}
.ls14_c02148{letter-spacing:188.480000pt;}
.ls30_c02148{letter-spacing:200.000000pt;}
.ls18_c02148{letter-spacing:204.480000pt;}
.ls27_c02148{letter-spacing:219.200000pt;}
.ls1d_c02148{letter-spacing:230.400000pt;}
.ls17_c02148{letter-spacing:233.920000pt;}
.ls23_c02148{letter-spacing:259.840000pt;}
.lsb_c02148{letter-spacing:272.960000pt;}
.ls37_c02148{letter-spacing:311.360000pt;}
.ls31_c02148{letter-spacing:340.800000pt;}
.ls8_c02148{letter-spacing:360.000000pt;}
.ls32_c02148{letter-spacing:416.960000pt;}
.ls7_c02148{letter-spacing:510.080000pt;}
.ws15_c02148{word-spacing:-14.798112pt;}
.ws0_c02148{word-spacing:-14.786400pt;}
.wse_c02148{word-spacing:-14.774688pt;}
.ws4_c02148{word-spacing:-14.762976pt;}
.ws10_c02148{word-spacing:-14.727840pt;}
.ws17_c02148{word-spacing:-14.721984pt;}
.ws1d_c02148{word-spacing:-14.704416pt;}
.ws2a_c02148{word-spacing:-14.698560pt;}
.ws16_c02148{word-spacing:-14.692704pt;}
.ws1_c02148{word-spacing:-14.680992pt;}
.ws1b_c02148{word-spacing:-14.675136pt;}
.ws27_c02148{word-spacing:-13.231744pt;}
.ws36_c02148{word-spacing:-0.089600pt;}
.ws35_c02148{word-spacing:-0.012800pt;}
.ws34_c02148{word-spacing:-0.006400pt;}
.ws3b_c02148{word-spacing:-0.005856pt;}
.ws33_c02148{word-spacing:0.000000pt;}
.ws37_c02148{word-spacing:0.011712pt;}
.ws32_c02148{word-spacing:0.012800pt;}
.ws3a_c02148{word-spacing:0.023424pt;}
.ws38_c02148{word-spacing:0.029280pt;}
.ws3f_c02148{word-spacing:0.035136pt;}
.ws3e_c02148{word-spacing:0.040992pt;}
.ws3c_c02148{word-spacing:0.046848pt;}
.ws39_c02148{word-spacing:0.072000pt;}
.ws3d_c02148{word-spacing:0.087840pt;}
.ws20_c02148{word-spacing:42.177280pt;}
.ws2d_c02148{word-spacing:42.487552pt;}
.ws1c_c02148{word-spacing:42.497280pt;}
.ws13_c02148{word-spacing:56.926560pt;}
.ws1a_c02148{word-spacing:73.527552pt;}
.ws19_c02148{word-spacing:73.847552pt;}
.ws23_c02148{word-spacing:81.886560pt;}
.ws1f_c02148{word-spacing:81.908096pt;}
.ws21_c02148{word-spacing:83.806560pt;}
.ws2c_c02148{word-spacing:83.828096pt;}
.wsb_c02148{word-spacing:86.046560pt;}
.ws25_c02148{word-spacing:88.481024pt;}
.ws14_c02148{word-spacing:96.569536pt;}
.ws12_c02148{word-spacing:98.489536pt;}
.wsd_c02148{word-spacing:102.645664pt;}
.wsa_c02148{word-spacing:102.965664pt;}
.ws11_c02148{word-spacing:102.967552pt;}
.ws6_c02148{word-spacing:115.508096pt;}
.ws22_c02148{word-spacing:115.958240pt;}
.wsc_c02148{word-spacing:126.046560pt;}
.wsf_c02148{word-spacing:127.966560pt;}
.ws9_c02148{word-spacing:127.988096pt;}
.ws8_c02148{word-spacing:132.405664pt;}
.ws2_c02148{word-spacing:145.034048pt;}
.ws1e_c02148{word-spacing:145.398240pt;}
.ws31_c02148{word-spacing:152.606560pt;}
.ws30_c02148{word-spacing:154.526560pt;}
.ws26_c02148{word-spacing:155.166560pt;}
.ws7_c02148{word-spacing:155.188096pt;}
.ws24_c02148{word-spacing:157.045664pt;}
.ws2e_c02148{word-spacing:157.086560pt;}
.ws5_c02148{word-spacing:157.108096pt;}
.ws18_c02148{word-spacing:188.874048pt;}
.ws29_c02148{word-spacing:205.402752pt;}
.ws28_c02148{word-spacing:205.720864pt;}
.ws2f_c02148{word-spacing:205.722752pt;}
.ws3_c02148{word-spacing:405.194048pt;}
.ws2b_c02148{word-spacing:1031.434048pt;}
._2_c02148{margin-left:-1.020704pt;}
._6_c02148{width:64.787200pt;}
._7_c02148{width:75.987200pt;}
._5_c02148{width:105.680000pt;}
._4_c02148{width:112.742912pt;}
._9_c02148{width:117.855648pt;}
._8_c02148{width:123.014240pt;}
._b_c02148{width:132.436928pt;}
._3_c02148{width:140.763808pt;}
._0_c02148{width:172.800000pt;}
._a_c02148{width:203.389984pt;}
._1_c02148{width:420.147200pt;}
._c_c02148{width:546.271808pt;}
.fs4_c02148{font-size:10.560000pt;}
.fs1_c02148{font-size:48.000000pt;}
.fs3_c02148{font-size:53.440000pt;}
.fs2_c02148{font-size:58.560000pt;}
.fs0_c02148{font-size:64.000000pt;}
.y0_c02148{bottom:0.000000pt;}
.y3_c02148{bottom:50.987067pt;}
.y2_c02148{bottom:69.387067pt;}
.y40_c02148{bottom:99.307283pt;}
.y3f_c02148{bottom:102.427235pt;}
.y3e_c02148{bottom:105.467195pt;}
.y3d_c02148{bottom:108.507155pt;}
.y3c_c02148{bottom:111.627107pt;}
.y3b_c02148{bottom:114.667067pt;}
.y3a_c02148{bottom:120.747067pt;}
.y39_c02148{bottom:139.147200pt;}
.y38_c02148{bottom:157.547067pt;}
.y37_c02148{bottom:174.427067pt;}
.y36_c02148{bottom:191.627067pt;}
.y35_c02148{bottom:210.027200pt;}
.y34_c02148{bottom:228.427067pt;}
.y33_c02148{bottom:245.227067pt;}
.y32_c02148{bottom:262.107067pt;}
.y31_c02148{bottom:278.987067pt;}
.y30_c02148{bottom:295.867067pt;}
.y2f_c02148{bottom:312.747067pt;}
.y2e_c02148{bottom:330.827067pt;}
.y2c_c02148{bottom:346.427067pt;}
.y2b_c02148{bottom:354.347067pt;}
.y2d_c02148{bottom:363.307067pt;}
.y2a_c02148{bottom:380.427067pt;}
.y29_c02148{bottom:400.827200pt;}
.y28_c02148{bottom:419.307067pt;}
.y27_c02148{bottom:437.707067pt;}
.y26_c02148{bottom:454.587067pt;}
.y25_c02148{bottom:471.467067pt;}
.y24_c02148{bottom:488.667067pt;}
.y23_c02148{bottom:507.067067pt;}
.y22_c02148{bottom:525.467067pt;}
.y21_c02148{bottom:542.267067pt;}
.y20_c02148{bottom:559.147067pt;}
.y1f_c02148{bottom:576.027067pt;}
.y1e_c02148{bottom:592.907067pt;}
.y1d_c02148{bottom:609.787067pt;}
.y1c_c02148{bottom:627.867067pt;}
.y1a_c02148{bottom:643.467067pt;}
.y19_c02148{bottom:651.387067pt;}
.y1b_c02148{bottom:660.347067pt;}
.y18_c02148{bottom:677.467067pt;}
.y17_c02148{bottom:697.867067pt;}
.y16_c02148{bottom:716.347067pt;}
.y15_c02148{bottom:734.747067pt;}
.y14_c02148{bottom:751.627067pt;}
.y13_c02148{bottom:768.507067pt;}
.y12_c02148{bottom:785.707067pt;}
.y11_c02148{bottom:804.107067pt;}
.y10_c02148{bottom:822.507067pt;}
.yf_c02148{bottom:839.387067pt;}
.ye_c02148{bottom:856.187067pt;}
.yd_c02148{bottom:873.067067pt;}
.yc_c02148{bottom:889.947067pt;}
.yb_c02148{bottom:906.827067pt;}
.ya_c02148{bottom:924.907067pt;}
.y8_c02148{bottom:940.507067pt;}
.y7_c02148{bottom:948.427067pt;}
.y9_c02148{bottom:957.387067pt;}
.y6_c02148{bottom:974.507067pt;}
.y5_c02148{bottom:994.907067pt;}
.y4_c02148{bottom:1013.307067pt;}
.y1_c02148{bottom:1060.587067pt;}
.hb_c02148{height:9.379219pt;}
.h5_c02148{height:47.464531pt;}
.h4_c02148{height:52.012031pt;}
.h2_c02148{height:56.156250pt;}
.h1_c02148{height:56.843750pt;}
.h6_c02148{height:57.756250pt;}
.h9_c02148{height:57.756783pt;}
.ha_c02148{height:57.803217pt;}
.h7_c02148{height:57.803750pt;}
.h3_c02148{height:92.683750pt;}
.h8_c02148{height:119.532031pt;}
.h0_c02148{height:1122.666667pt;}
.w1_c02148{width:793.333333pt;}
.w0_c02148{width:793.626667pt;}
.x0_c02148{left:0.000000pt;}
.x1_c02148{left:113.440000pt;}
.x3_c02148{left:120.560000pt;}
.x9_c02148{left:141.200000pt;}
.xd_c02148{left:222.160000pt;}
.x4_c02148{left:223.840000pt;}
.xa_c02148{left:256.400000pt;}
.x6_c02148{left:376.880000pt;}
.xe_c02148{left:378.160000pt;}
.x2_c02148{left:384.960000pt;}
.xb_c02148{left:386.880000pt;}
.x5_c02148{left:411.920000pt;}
.xc_c02148{left:528.800000pt;}
.xf_c02148{left:533.920000pt;}
.x8_c02148{left:555.040000pt;}
.x7_c02148{left:568.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_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_22a9e6971350575d0f7dbe40.woff2')format("woff");}.ff1_c02149{font-family:ff1_c02149;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02149;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02149{vertical-align:-1.440000px;}
.v0_c02149{vertical-align:0.000000px;}
.v3_c02149{vertical-align:1.440000px;}
.v1_c02149{vertical-align:40.320000px;}
.v4_c02149{vertical-align:75.600000px;}
.ls5f_c02149{letter-spacing:-0.144288px;}
.ls5e_c02149{letter-spacing:-0.090180px;}
.ls5d_c02149{letter-spacing:-0.078156px;}
.ls5a_c02149{letter-spacing:-0.014400px;}
.ls60_c02149{letter-spacing:-0.006588px;}
.ls5b_c02149{letter-spacing:0.000000px;}
.ls2_c02149{letter-spacing:0.006588px;}
.ls0_c02149{letter-spacing:0.014400px;}
.ls2f_c02149{letter-spacing:0.019764px;}
.ls3_c02149{letter-spacing:0.032940px;}
.ls24_c02149{letter-spacing:0.039528px;}
.ls1c_c02149{letter-spacing:0.059292px;}
.lsc_c02149{letter-spacing:0.065880px;}
.ls27_c02149{letter-spacing:0.072468px;}
.ls14_c02149{letter-spacing:0.079056px;}
.ls5_c02149{letter-spacing:0.092232px;}
.ls4_c02149{letter-spacing:0.097200px;}
.ls16_c02149{letter-spacing:0.098820px;}
.lsa_c02149{letter-spacing:0.138348px;}
.ls5c_c02149{letter-spacing:0.144288px;}
.ls11_c02149{letter-spacing:0.151524px;}
.ls26_c02149{letter-spacing:0.158112px;}
.ls1_c02149{letter-spacing:0.164700px;}
.ls18_c02149{letter-spacing:0.177876px;}
.ls39_c02149{letter-spacing:60.840000px;}
.ls1a_c02149{letter-spacing:62.640000px;}
.ls52_c02149{letter-spacing:63.000000px;}
.ls1b_c02149{letter-spacing:63.360000px;}
.ls45_c02149{letter-spacing:64.800000px;}
.ls2a_c02149{letter-spacing:64.980000px;}
.ls44_c02149{letter-spacing:65.340000px;}
.ls34_c02149{letter-spacing:93.600000px;}
.ls46_c02149{letter-spacing:93.960000px;}
.ls12_c02149{letter-spacing:95.400000px;}
.ls4f_c02149{letter-spacing:95.760000px;}
.ls13_c02149{letter-spacing:96.120000px;}
.ls2c_c02149{letter-spacing:96.480000px;}
.ls23_c02149{letter-spacing:108.450000px;}
.ls40_c02149{letter-spacing:109.530000px;}
.ls56_c02149{letter-spacing:111.330000px;}
.ls22_c02149{letter-spacing:111.690000px;}
.ls3f_c02149{letter-spacing:112.050000px;}
.ls42_c02149{letter-spacing:126.720000px;}
.lse_c02149{letter-spacing:128.520000px;}
.ls4c_c02149{letter-spacing:128.880000px;}
.lsf_c02149{letter-spacing:129.240000px;}
.ls2b_c02149{letter-spacing:145.440000px;}
.ls8_c02149{letter-spacing:161.640000px;}
.ls4a_c02149{letter-spacing:162.000000px;}
.lsb_c02149{letter-spacing:162.360000px;}
.ls4d_c02149{letter-spacing:164.160000px;}
.ls10_c02149{letter-spacing:164.520000px;}
.ls9_c02149{letter-spacing:166.140000px;}
.ls35_c02149{letter-spacing:167.400000px;}
.ls20_c02149{letter-spacing:174.330000px;}
.ls3d_c02149{letter-spacing:175.410000px;}
.ls55_c02149{letter-spacing:177.210000px;}
.ls1f_c02149{letter-spacing:177.570000px;}
.ls3c_c02149{letter-spacing:177.930000px;}
.ls28_c02149{letter-spacing:178.200000px;}
.ls58_c02149{letter-spacing:179.640000px;}
.ls29_c02149{letter-spacing:182.880000px;}
.ls43_c02149{letter-spacing:185.760000px;}
.ls47_c02149{letter-spacing:195.120000px;}
.ls7_c02149{letter-spacing:199.260000px;}
.ls32_c02149{letter-spacing:199.620000px;}
.ls3e_c02149{letter-spacing:209.159400px;}
.ls1e_c02149{letter-spacing:210.960000px;}
.ls54_c02149{letter-spacing:211.320000px;}
.ls21_c02149{letter-spacing:211.679400px;}
.ls3b_c02149{letter-spacing:211.680000px;}
.ls4e_c02149{letter-spacing:212.040000px;}
.ls15_c02149{letter-spacing:212.400000px;}
.ls36_c02149{letter-spacing:215.280000px;}
.ls59_c02149{letter-spacing:225.000000px;}
.ls2d_c02149{letter-spacing:225.360000px;}
.ls51_c02149{letter-spacing:230.040000px;}
.ls19_c02149{letter-spacing:230.400000px;}
.ls38_c02149{letter-spacing:233.280000px;}
.ls57_c02149{letter-spacing:246.600000px;}
.ls25_c02149{letter-spacing:246.960000px;}
.ls41_c02149{letter-spacing:249.840000px;}
.ls53_c02149{letter-spacing:259.200000px;}
.ls1d_c02149{letter-spacing:259.560000px;}
.ls3a_c02149{letter-spacing:262.440000px;}
.ls50_c02149{letter-spacing:263.160000px;}
.ls17_c02149{letter-spacing:263.520000px;}
.ls37_c02149{letter-spacing:266.400000px;}
.ls33_c02149{letter-spacing:277.560000px;}
.ls49_c02149{letter-spacing:292.320000px;}
.ls6_c02149{letter-spacing:292.680000px;}
.ls31_c02149{letter-spacing:295.560000px;}
.ls4b_c02149{letter-spacing:307.080000px;}
.lsd_c02149{letter-spacing:307.440000px;}
.ls48_c02149{letter-spacing:351.360000px;}
.ls30_c02149{letter-spacing:377.280000px;}
.ls2e_c02149{letter-spacing:383.400000px;}
.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;}
}
.ws17_c02149{word-spacing:-16.647876px;}
.ws0_c02149{word-spacing:-16.634700px;}
.wsb_c02149{word-spacing:-16.621524px;}
.ws6_c02149{word-spacing:-16.608348px;}
.ws13_c02149{word-spacing:-16.568820px;}
.ws2_c02149{word-spacing:-16.562232px;}
.ws1d_c02149{word-spacing:-16.542468px;}
.ws18_c02149{word-spacing:-16.529292px;}
.ws1b_c02149{word-spacing:-16.509528px;}
.ws1_c02149{word-spacing:-16.502940px;}
.ws2a_c02149{word-spacing:-16.489764px;}
.ws24_c02149{word-spacing:-14.885712px;}
.ws53_c02149{word-spacing:-0.100800px;}
.ws52_c02149{word-spacing:-0.014400px;}
.ws59_c02149{word-spacing:-0.006588px;}
.ws51_c02149{word-spacing:0.000000px;}
.ws58_c02149{word-spacing:0.013176px;}
.ws50_c02149{word-spacing:0.014400px;}
.ws57_c02149{word-spacing:0.026352px;}
.ws5b_c02149{word-spacing:0.032940px;}
.ws55_c02149{word-spacing:0.052704px;}
.ws5c_c02149{word-spacing:0.059292px;}
.ws56_c02149{word-spacing:0.081000px;}
.ws54_c02149{word-spacing:0.085644px;}
.ws5a_c02149{word-spacing:0.098820px;}
.ws1c_c02149{word-spacing:47.809440px;}
.ws37_c02149{word-spacing:48.169440px;}
.ws33_c02149{word-spacing:61.522380px;}
.ws15_c02149{word-spacing:64.042380px;}
.ws49_c02149{word-spacing:64.402380px;}
.ws1a_c02149{word-spacing:83.078496px;}
.ws36_c02149{word-spacing:83.438496px;}
.ws23_c02149{word-spacing:91.402380px;}
.ws20_c02149{word-spacing:91.426608px;}
.ws3a_c02149{word-spacing:92.482380px;}
.ws2f_c02149{word-spacing:94.282380px;}
.ws4b_c02149{word-spacing:94.306608px;}
.ws21_c02149{word-spacing:94.596372px;}
.ws1e_c02149{word-spacing:94.642380px;}
.ws38_c02149{word-spacing:95.002380px;}
.wsf_c02149{word-spacing:96.802380px;}
.ws3c_c02149{word-spacing:97.021152px;}
.ws45_c02149{word-spacing:97.162380px;}
.ws4e_c02149{word-spacing:99.901152px;}
.ws16_c02149{word-spacing:107.920728px;}
.ws34_c02149{word-spacing:109.000728px;}
.ws48_c02149{word-spacing:110.800728px;}
.ws14_c02149{word-spacing:111.160728px;}
.ws11_c02149{word-spacing:111.202380px;}
.ws32_c02149{word-spacing:111.520728px;}
.wsa_c02149{word-spacing:115.836372px;}
.ws12_c02149{word-spacing:115.838496px;}
.ws2d_c02149{word-spacing:116.196372px;}
.ws31_c02149{word-spacing:116.198496px;}
.ws39_c02149{word-spacing:127.933020px;}
.ws4_c02149{word-spacing:129.946608px;}
.ws43_c02149{word-spacing:130.306608px;}
.ws22_c02149{word-spacing:130.453020px;}
.ws4d_c02149{word-spacing:130.813020px;}
.ws10_c02149{word-spacing:141.082380px;}
.wse_c02149{word-spacing:141.106608px;}
.ws41_c02149{word-spacing:141.203304px;}
.ws30_c02149{word-spacing:142.162380px;}
.ws46_c02149{word-spacing:143.962380px;}
.ws44_c02149{word-spacing:143.986608px;}
.wsc_c02149{word-spacing:144.322380px;}
.ws2e_c02149{word-spacing:144.682380px;}
.wsd_c02149{word-spacing:148.956372px;}
.ws26_c02149{word-spacing:149.221152px;}
.ws8_c02149{word-spacing:163.163304px;}
.ws40_c02149{word-spacing:163.523304px;}
.ws1f_c02149{word-spacing:163.573020px;}
.ws4c_c02149{word-spacing:163.933020px;}
.ws4f_c02149{word-spacing:170.962380px;}
.ws3d_c02149{word-spacing:172.042380px;}
.ws27_c02149{word-spacing:173.796372px;}
.ws47_c02149{word-spacing:173.842380px;}
.ws5_c02149{word-spacing:173.866608px;}
.ws9_c02149{word-spacing:173.963304px;}
.ws42_c02149{word-spacing:176.746608px;}
.ws3f_c02149{word-spacing:176.843304px;}
.ws25_c02149{word-spacing:177.036372px;}
.ws7_c02149{word-spacing:177.106608px;}
.ws3_c02149{word-spacing:177.203304px;}
.ws3b_c02149{word-spacing:177.442380px;}
.ws2b_c02149{word-spacing:177.563304px;}
.ws35_c02149{word-spacing:209.963304px;}
.ws19_c02149{word-spacing:212.386608px;}
.ws4a_c02149{word-spacing:212.746608px;}
.ws28_c02149{word-spacing:231.435972px;}
.ws29_c02149{word-spacing:231.438096px;}
.ws3e_c02149{word-spacing:231.798096px;}
.ws2c_c02149{word-spacing:232.110000px;}
._2_c02149{margin-left:-1.148292px;}
._6_c02149{width:73.245600px;}
._f_c02149{width:84.045600px;}
._7_c02149{width:85.125600px;}
._5_c02149{width:118.530000px;}
._e_c02149{width:119.610000px;}
._4_c02149{width:126.835776px;}
._9_c02149{width:132.587604px;}
._8_c02149{width:138.751020px;}
._3_c02149{width:158.719284px;}
._d_c02149{width:159.799284px;}
._0_c02149{width:194.400000px;}
._11_c02149{width:226.293732px;}
._a_c02149{width:228.813732px;}
._1_c02149{width:473.025600px;}
._c_c02149{width:475.905600px;}
._12_c02149{width:612.397908px;}
._b_c02149{width:613.835784px;}
._10_c02149{width:666.745272px;}
.fc0_c02149{color:rgb(0,0,0);}
.fs4_c02149{font-size:11.880000px;}
.fs3_c02149{font-size:54.000000px;}
.fs2_c02149{font-size:60.120000px;}
.fs1_c02149{font-size:65.880000px;}
.fs0_c02149{font-size:72.000000px;}
.y0_c02149{bottom:0.000000px;}
.y3_c02149{bottom:57.360450px;}
.y2_c02149{bottom:78.060450px;}
.y3c_c02149{bottom:125.580450px;}
.y3b_c02149{bottom:132.420450px;}
.y3a_c02149{bottom:153.120600px;}
.y39_c02149{bottom:173.820450px;}
.y38_c02149{bottom:192.720450px;}
.y37_c02149{bottom:212.070450px;}
.y36_c02149{bottom:232.770450px;}
.y35_c02149{bottom:253.470450px;}
.y34_c02149{bottom:272.460450px;}
.y33_c02149{bottom:291.450450px;}
.y32_c02149{bottom:310.440450px;}
.y31_c02149{bottom:329.430450px;}
.y30_c02149{bottom:348.330450px;}
.y2f_c02149{bottom:366.960600px;}
.y2d_c02149{bottom:384.600450px;}
.y2c_c02149{bottom:393.510450px;}
.y2e_c02149{bottom:403.590600px;}
.y2b_c02149{bottom:422.850450px;}
.y2a_c02149{bottom:444.810600px;}
.y29_c02149{bottom:460.380150px;}
.y28_c02149{bottom:475.860600px;}
.y27_c02149{bottom:492.420450px;}
.y26_c02149{bottom:513.120600px;}
.y25_c02149{bottom:533.820450px;}
.y24_c02149{bottom:552.810450px;}
.y23_c02149{bottom:572.160450px;}
.y22_c02149{bottom:592.860450px;}
.y21_c02149{bottom:613.560450px;}
.y20_c02149{bottom:632.550450px;}
.y1f_c02149{bottom:651.450450px;}
.y1e_c02149{bottom:670.440450px;}
.y1d_c02149{bottom:689.430450px;}
.y1c_c02149{bottom:708.420450px;}
.y1b_c02149{bottom:728.760450px;}
.y19_c02149{bottom:746.400450px;}
.y18_c02149{bottom:755.310450px;}
.y1a_c02149{bottom:765.300450px;}
.y17_c02149{bottom:784.560450px;}
.y16_c02149{bottom:807.510450px;}
.y15_c02149{bottom:828.210450px;}
.y14_c02149{bottom:849.000450px;}
.y13_c02149{bottom:869.700450px;}
.y12_c02149{bottom:888.690450px;}
.y11_c02149{bottom:907.680450px;}
.y10_c02149{bottom:927.030450px;}
.yf_c02149{bottom:947.730450px;}
.ye_c02149{bottom:968.430450px;}
.yd_c02149{bottom:987.420450px;}
.yc_c02149{bottom:1006.320450px;}
.yb_c02149{bottom:1025.310450px;}
.ya_c02149{bottom:1044.300450px;}
.y9_c02149{bottom:1063.290450px;}
.y8_c02149{bottom:1081.920450px;}
.y6_c02149{bottom:1099.470450px;}
.y5_c02149{bottom:1108.380450px;}
.y7_c02149{bottom:1118.460450px;}
.y4_c02149{bottom:1137.720450px;}
.y1_c02149{bottom:1193.160450px;}
.he_c02149{height:10.551621px;}
.hc_c02149{height:47.961914px;}
.h5_c02149{height:53.397598px;}
.h4_c02149{height:58.513535px;}
.h2_c02149{height:63.175781px;}
.h1_c02149{height:63.949219px;}
.h9_c02149{height:64.975781px;}
.ha_c02149{height:65.028619px;}
.h6_c02149{height:65.029219px;}
.hb_c02149{height:65.029819px;}
.h7_c02149{height:103.909219px;}
.h3_c02149{height:104.269219px;}
.hd_c02149{height:104.269819px;}
.h8_c02149{height:134.113535px;}
.h0_c02149{height:1263.000000px;}
.w1_c02149{width:892.500000px;}
.w0_c02149{width:892.830000px;}
.x0_c02149{left:0.000000px;}
.x10_c02149{left:117.000000px;}
.x1_c02149{left:127.620000px;}
.x3_c02149{left:135.630000px;}
.x9_c02149{left:158.850000px;}
.xd_c02149{left:246.330000px;}
.x4_c02149{left:254.610000px;}
.xa_c02149{left:266.310000px;}
.xe_c02149{left:418.590000px;}
.xb_c02149{left:424.620000px;}
.x2_c02149{left:433.080000px;}
.x6_c02149{left:434.880000px;}
.x5_c02149{left:463.500000px;}
.xc_c02149{left:596.070000px;}
.xf_c02149{left:600.390000px;}
.x8_c02149{left:628.110000px;}
.x7_c02149{left:639.360000px;}
@media print{
.v2_c02149{vertical-align:-1.280000pt;}
.v0_c02149{vertical-align:0.000000pt;}
.v3_c02149{vertical-align:1.280000pt;}
.v1_c02149{vertical-align:35.840000pt;}
.v4_c02149{vertical-align:67.200000pt;}
.ls5f_c02149{letter-spacing:-0.128256pt;}
.ls5e_c02149{letter-spacing:-0.080160pt;}
.ls5d_c02149{letter-spacing:-0.069472pt;}
.ls5a_c02149{letter-spacing:-0.012800pt;}
.ls60_c02149{letter-spacing:-0.005856pt;}
.ls5b_c02149{letter-spacing:0.000000pt;}
.ls2_c02149{letter-spacing:0.005856pt;}
.ls0_c02149{letter-spacing:0.012800pt;}
.ls2f_c02149{letter-spacing:0.017568pt;}
.ls3_c02149{letter-spacing:0.029280pt;}
.ls24_c02149{letter-spacing:0.035136pt;}
.ls1c_c02149{letter-spacing:0.052704pt;}
.lsc_c02149{letter-spacing:0.058560pt;}
.ls27_c02149{letter-spacing:0.064416pt;}
.ls14_c02149{letter-spacing:0.070272pt;}
.ls5_c02149{letter-spacing:0.081984pt;}
.ls4_c02149{letter-spacing:0.086400pt;}
.ls16_c02149{letter-spacing:0.087840pt;}
.lsa_c02149{letter-spacing:0.122976pt;}
.ls5c_c02149{letter-spacing:0.128256pt;}
.ls11_c02149{letter-spacing:0.134688pt;}
.ls26_c02149{letter-spacing:0.140544pt;}
.ls1_c02149{letter-spacing:0.146400pt;}
.ls18_c02149{letter-spacing:0.158112pt;}
.ls39_c02149{letter-spacing:54.080000pt;}
.ls1a_c02149{letter-spacing:55.680000pt;}
.ls52_c02149{letter-spacing:56.000000pt;}
.ls1b_c02149{letter-spacing:56.320000pt;}
.ls45_c02149{letter-spacing:57.600000pt;}
.ls2a_c02149{letter-spacing:57.760000pt;}
.ls44_c02149{letter-spacing:58.080000pt;}
.ls34_c02149{letter-spacing:83.200000pt;}
.ls46_c02149{letter-spacing:83.520000pt;}
.ls12_c02149{letter-spacing:84.800000pt;}
.ls4f_c02149{letter-spacing:85.120000pt;}
.ls13_c02149{letter-spacing:85.440000pt;}
.ls2c_c02149{letter-spacing:85.760000pt;}
.ls23_c02149{letter-spacing:96.400000pt;}
.ls40_c02149{letter-spacing:97.360000pt;}
.ls56_c02149{letter-spacing:98.960000pt;}
.ls22_c02149{letter-spacing:99.280000pt;}
.ls3f_c02149{letter-spacing:99.600000pt;}
.ls42_c02149{letter-spacing:112.640000pt;}
.lse_c02149{letter-spacing:114.240000pt;}
.ls4c_c02149{letter-spacing:114.560000pt;}
.lsf_c02149{letter-spacing:114.880000pt;}
.ls2b_c02149{letter-spacing:129.280000pt;}
.ls8_c02149{letter-spacing:143.680000pt;}
.ls4a_c02149{letter-spacing:144.000000pt;}
.lsb_c02149{letter-spacing:144.320000pt;}
.ls4d_c02149{letter-spacing:145.920000pt;}
.ls10_c02149{letter-spacing:146.240000pt;}
.ls9_c02149{letter-spacing:147.680000pt;}
.ls35_c02149{letter-spacing:148.800000pt;}
.ls20_c02149{letter-spacing:154.960000pt;}
.ls3d_c02149{letter-spacing:155.920000pt;}
.ls55_c02149{letter-spacing:157.520000pt;}
.ls1f_c02149{letter-spacing:157.840000pt;}
.ls3c_c02149{letter-spacing:158.160000pt;}
.ls28_c02149{letter-spacing:158.400000pt;}
.ls58_c02149{letter-spacing:159.680000pt;}
.ls29_c02149{letter-spacing:162.560000pt;}
.ls43_c02149{letter-spacing:165.120000pt;}
.ls47_c02149{letter-spacing:173.440000pt;}
.ls7_c02149{letter-spacing:177.120000pt;}
.ls32_c02149{letter-spacing:177.440000pt;}
.ls3e_c02149{letter-spacing:185.919467pt;}
.ls1e_c02149{letter-spacing:187.520000pt;}
.ls54_c02149{letter-spacing:187.840000pt;}
.ls21_c02149{letter-spacing:188.159467pt;}
.ls3b_c02149{letter-spacing:188.160000pt;}
.ls4e_c02149{letter-spacing:188.480000pt;}
.ls15_c02149{letter-spacing:188.800000pt;}
.ls36_c02149{letter-spacing:191.360000pt;}
.ls59_c02149{letter-spacing:200.000000pt;}
.ls2d_c02149{letter-spacing:200.320000pt;}
.ls51_c02149{letter-spacing:204.480000pt;}
.ls19_c02149{letter-spacing:204.800000pt;}
.ls38_c02149{letter-spacing:207.360000pt;}
.ls57_c02149{letter-spacing:219.200000pt;}
.ls25_c02149{letter-spacing:219.520000pt;}
.ls41_c02149{letter-spacing:222.080000pt;}
.ls53_c02149{letter-spacing:230.400000pt;}
.ls1d_c02149{letter-spacing:230.720000pt;}
.ls3a_c02149{letter-spacing:233.280000pt;}
.ls50_c02149{letter-spacing:233.920000pt;}
.ls17_c02149{letter-spacing:234.240000pt;}
.ls37_c02149{letter-spacing:236.800000pt;}
.ls33_c02149{letter-spacing:246.720000pt;}
.ls49_c02149{letter-spacing:259.840000pt;}
.ls6_c02149{letter-spacing:260.160000pt;}
.ls31_c02149{letter-spacing:262.720000pt;}
.ls4b_c02149{letter-spacing:272.960000pt;}
.lsd_c02149{letter-spacing:273.280000pt;}
.ls48_c02149{letter-spacing:312.320000pt;}
.ls30_c02149{letter-spacing:335.360000pt;}
.ls2e_c02149{letter-spacing:340.800000pt;}
.ws17_c02149{word-spacing:-14.798112pt;}
.ws0_c02149{word-spacing:-14.786400pt;}
.wsb_c02149{word-spacing:-14.774688pt;}
.ws6_c02149{word-spacing:-14.762976pt;}
.ws13_c02149{word-spacing:-14.727840pt;}
.ws2_c02149{word-spacing:-14.721984pt;}
.ws1d_c02149{word-spacing:-14.704416pt;}
.ws18_c02149{word-spacing:-14.692704pt;}
.ws1b_c02149{word-spacing:-14.675136pt;}
.ws1_c02149{word-spacing:-14.669280pt;}
.ws2a_c02149{word-spacing:-14.657568pt;}
.ws24_c02149{word-spacing:-13.231744pt;}
.ws53_c02149{word-spacing:-0.089600pt;}
.ws52_c02149{word-spacing:-0.012800pt;}
.ws59_c02149{word-spacing:-0.005856pt;}
.ws51_c02149{word-spacing:0.000000pt;}
.ws58_c02149{word-spacing:0.011712pt;}
.ws50_c02149{word-spacing:0.012800pt;}
.ws57_c02149{word-spacing:0.023424pt;}
.ws5b_c02149{word-spacing:0.029280pt;}
.ws55_c02149{word-spacing:0.046848pt;}
.ws5c_c02149{word-spacing:0.052704pt;}
.ws56_c02149{word-spacing:0.072000pt;}
.ws54_c02149{word-spacing:0.076128pt;}
.ws5a_c02149{word-spacing:0.087840pt;}
.ws1c_c02149{word-spacing:42.497280pt;}
.ws37_c02149{word-spacing:42.817280pt;}
.ws33_c02149{word-spacing:54.686560pt;}
.ws15_c02149{word-spacing:56.926560pt;}
.ws49_c02149{word-spacing:57.246560pt;}
.ws1a_c02149{word-spacing:73.847552pt;}
.ws36_c02149{word-spacing:74.167552pt;}
.ws23_c02149{word-spacing:81.246560pt;}
.ws20_c02149{word-spacing:81.268096pt;}
.ws3a_c02149{word-spacing:82.206560pt;}
.ws2f_c02149{word-spacing:83.806560pt;}
.ws4b_c02149{word-spacing:83.828096pt;}
.ws21_c02149{word-spacing:84.085664pt;}
.ws1e_c02149{word-spacing:84.126560pt;}
.ws38_c02149{word-spacing:84.446560pt;}
.wsf_c02149{word-spacing:86.046560pt;}
.ws3c_c02149{word-spacing:86.241024pt;}
.ws45_c02149{word-spacing:86.366560pt;}
.ws4e_c02149{word-spacing:88.801024pt;}
.ws16_c02149{word-spacing:95.929536pt;}
.ws34_c02149{word-spacing:96.889536pt;}
.ws48_c02149{word-spacing:98.489536pt;}
.ws14_c02149{word-spacing:98.809536pt;}
.ws11_c02149{word-spacing:98.846560pt;}
.ws32_c02149{word-spacing:99.129536pt;}
.wsa_c02149{word-spacing:102.965664pt;}
.ws12_c02149{word-spacing:102.967552pt;}
.ws2d_c02149{word-spacing:103.285664pt;}
.ws31_c02149{word-spacing:103.287552pt;}
.ws39_c02149{word-spacing:113.718240pt;}
.ws4_c02149{word-spacing:115.508096pt;}
.ws43_c02149{word-spacing:115.828096pt;}
.ws22_c02149{word-spacing:115.958240pt;}
.ws4d_c02149{word-spacing:116.278240pt;}
.ws10_c02149{word-spacing:125.406560pt;}
.wse_c02149{word-spacing:125.428096pt;}
.ws41_c02149{word-spacing:125.514048pt;}
.ws30_c02149{word-spacing:126.366560pt;}
.ws46_c02149{word-spacing:127.966560pt;}
.ws44_c02149{word-spacing:127.988096pt;}
.wsc_c02149{word-spacing:128.286560pt;}
.ws2e_c02149{word-spacing:128.606560pt;}
.wsd_c02149{word-spacing:132.405664pt;}
.ws26_c02149{word-spacing:132.641024pt;}
.ws8_c02149{word-spacing:145.034048pt;}
.ws40_c02149{word-spacing:145.354048pt;}
.ws1f_c02149{word-spacing:145.398240pt;}
.ws4c_c02149{word-spacing:145.718240pt;}
.ws4f_c02149{word-spacing:151.966560pt;}
.ws3d_c02149{word-spacing:152.926560pt;}
.ws27_c02149{word-spacing:154.485664pt;}
.ws47_c02149{word-spacing:154.526560pt;}
.ws5_c02149{word-spacing:154.548096pt;}
.ws9_c02149{word-spacing:154.634048pt;}
.ws42_c02149{word-spacing:157.108096pt;}
.ws3f_c02149{word-spacing:157.194048pt;}
.ws25_c02149{word-spacing:157.365664pt;}
.ws7_c02149{word-spacing:157.428096pt;}
.ws3_c02149{word-spacing:157.514048pt;}
.ws3b_c02149{word-spacing:157.726560pt;}
.ws2b_c02149{word-spacing:157.834048pt;}
.ws35_c02149{word-spacing:186.634048pt;}
.ws19_c02149{word-spacing:188.788096pt;}
.ws4a_c02149{word-spacing:189.108096pt;}
.ws28_c02149{word-spacing:205.720864pt;}
.ws29_c02149{word-spacing:205.722752pt;}
.ws3e_c02149{word-spacing:206.042752pt;}
.ws2c_c02149{word-spacing:206.320000pt;}
._2_c02149{margin-left:-1.020704pt;}
._6_c02149{width:65.107200pt;}
._f_c02149{width:74.707200pt;}
._7_c02149{width:75.667200pt;}
._5_c02149{width:105.360000pt;}
._e_c02149{width:106.320000pt;}
._4_c02149{width:112.742912pt;}
._9_c02149{width:117.855648pt;}
._8_c02149{width:123.334240pt;}
._3_c02149{width:141.083808pt;}
._d_c02149{width:142.043808pt;}
._0_c02149{width:172.800000pt;}
._11_c02149{width:201.149984pt;}
._a_c02149{width:203.389984pt;}
._1_c02149{width:420.467200pt;}
._c_c02149{width:423.027200pt;}
._12_c02149{width:544.353696pt;}
._b_c02149{width:545.631808pt;}
._10_c02149{width:592.662464pt;}
.fs4_c02149{font-size:10.560000pt;}
.fs3_c02149{font-size:48.000000pt;}
.fs2_c02149{font-size:53.440000pt;}
.fs1_c02149{font-size:58.560000pt;}
.fs0_c02149{font-size:64.000000pt;}
.y0_c02149{bottom:0.000000pt;}
.y3_c02149{bottom:50.987067pt;}
.y2_c02149{bottom:69.387067pt;}
.y3c_c02149{bottom:111.627067pt;}
.y3b_c02149{bottom:117.707067pt;}
.y3a_c02149{bottom:136.107200pt;}
.y39_c02149{bottom:154.507067pt;}
.y38_c02149{bottom:171.307067pt;}
.y37_c02149{bottom:188.507067pt;}
.y36_c02149{bottom:206.907067pt;}
.y35_c02149{bottom:225.307067pt;}
.y34_c02149{bottom:242.187067pt;}
.y33_c02149{bottom:259.067067pt;}
.y32_c02149{bottom:275.947067pt;}
.y31_c02149{bottom:292.827067pt;}
.y30_c02149{bottom:309.627067pt;}
.y2f_c02149{bottom:326.187200pt;}
.y2d_c02149{bottom:341.867067pt;}
.y2c_c02149{bottom:349.787067pt;}
.y2e_c02149{bottom:358.747200pt;}
.y2b_c02149{bottom:375.867067pt;}
.y2a_c02149{bottom:395.387200pt;}
.y29_c02149{bottom:409.226800pt;}
.y28_c02149{bottom:422.987200pt;}
.y27_c02149{bottom:437.707067pt;}
.y26_c02149{bottom:456.107200pt;}
.y25_c02149{bottom:474.507067pt;}
.y24_c02149{bottom:491.387067pt;}
.y23_c02149{bottom:508.587067pt;}
.y22_c02149{bottom:526.987067pt;}
.y21_c02149{bottom:545.387067pt;}
.y20_c02149{bottom:562.267067pt;}
.y1f_c02149{bottom:579.067067pt;}
.y1e_c02149{bottom:595.947067pt;}
.y1d_c02149{bottom:612.827067pt;}
.y1c_c02149{bottom:629.707067pt;}
.y1b_c02149{bottom:647.787067pt;}
.y19_c02149{bottom:663.467067pt;}
.y18_c02149{bottom:671.387067pt;}
.y1a_c02149{bottom:680.267067pt;}
.y17_c02149{bottom:697.387067pt;}
.y16_c02149{bottom:717.787067pt;}
.y15_c02149{bottom:736.187067pt;}
.y14_c02149{bottom:754.667067pt;}
.y13_c02149{bottom:773.067067pt;}
.y12_c02149{bottom:789.947067pt;}
.y11_c02149{bottom:806.827067pt;}
.y10_c02149{bottom:824.027067pt;}
.yf_c02149{bottom:842.427067pt;}
.ye_c02149{bottom:860.827067pt;}
.yd_c02149{bottom:877.707067pt;}
.yc_c02149{bottom:894.507067pt;}
.yb_c02149{bottom:911.387067pt;}
.ya_c02149{bottom:928.267067pt;}
.y9_c02149{bottom:945.147067pt;}
.y8_c02149{bottom:961.707067pt;}
.y6_c02149{bottom:977.307067pt;}
.y5_c02149{bottom:985.227067pt;}
.y7_c02149{bottom:994.187067pt;}
.y4_c02149{bottom:1011.307067pt;}
.y1_c02149{bottom:1060.587067pt;}
.he_c02149{height:9.379219pt;}
.hc_c02149{height:42.632812pt;}
.h5_c02149{height:47.464531pt;}
.h4_c02149{height:52.012031pt;}
.h2_c02149{height:56.156250pt;}
.h1_c02149{height:56.843750pt;}
.h9_c02149{height:57.756250pt;}
.ha_c02149{height:57.803217pt;}
.h6_c02149{height:57.803750pt;}
.hb_c02149{height:57.804283pt;}
.h7_c02149{height:92.363750pt;}
.h3_c02149{height:92.683750pt;}
.hd_c02149{height:92.684283pt;}
.h8_c02149{height:119.212031pt;}
.h0_c02149{height:1122.666667pt;}
.w1_c02149{width:793.333333pt;}
.w0_c02149{width:793.626667pt;}
.x0_c02149{left:0.000000pt;}
.x10_c02149{left:104.000000pt;}
.x1_c02149{left:113.440000pt;}
.x3_c02149{left:120.560000pt;}
.x9_c02149{left:141.200000pt;}
.xd_c02149{left:218.960000pt;}
.x4_c02149{left:226.320000pt;}
.xa_c02149{left:236.720000pt;}
.xe_c02149{left:372.080000pt;}
.xb_c02149{left:377.440000pt;}
.x2_c02149{left:384.960000pt;}
.x6_c02149{left:386.560000pt;}
.x5_c02149{left:412.000000pt;}
.xc_c02149{left:529.840000pt;}
.xf_c02149{left:533.680000pt;}
.x8_c02149{left:558.320000pt;}
.x7_c02149{left:568.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_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_07ba8a423c479be1f17f9e8e.woff2')format("woff");}.ff1_c02150{font-family:ff1_c02150;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02150;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02150{vertical-align:-1.440000px;}
.v0_c02150{vertical-align:0.000000px;}
.v3_c02150{vertical-align:1.440000px;}
.v1_c02150{vertical-align:40.320000px;}
.ls4f_c02150{letter-spacing:-0.144288px;}
.ls4e_c02150{letter-spacing:-0.090180px;}
.ls4d_c02150{letter-spacing:-0.078156px;}
.ls4a_c02150{letter-spacing:-0.014400px;}
.ls50_c02150{letter-spacing:-0.006588px;}
.ls4b_c02150{letter-spacing:0.000000px;}
.ls40_c02150{letter-spacing:0.013176px;}
.ls0_c02150{letter-spacing:0.014400px;}
.ls2_c02150{letter-spacing:0.026352px;}
.ls3_c02150{letter-spacing:0.039528px;}
.ls51_c02150{letter-spacing:0.052704px;}
.ls1a_c02150{letter-spacing:0.059292px;}
.lsc_c02150{letter-spacing:0.065880px;}
.ls24_c02150{letter-spacing:0.072468px;}
.ls12_c02150{letter-spacing:0.079056px;}
.ls5_c02150{letter-spacing:0.092232px;}
.ls4_c02150{letter-spacing:0.097200px;}
.ls14_c02150{letter-spacing:0.098820px;}
.ls8_c02150{letter-spacing:0.138348px;}
.ls4c_c02150{letter-spacing:0.144288px;}
.lse_c02150{letter-spacing:0.151524px;}
.ls23_c02150{letter-spacing:0.158112px;}
.ls1_c02150{letter-spacing:0.164700px;}
.ls17_c02150{letter-spacing:0.177876px;}
.ls18_c02150{letter-spacing:62.640000px;}
.ls34_c02150{letter-spacing:63.000000px;}
.ls19_c02150{letter-spacing:63.360000px;}
.ls3d_c02150{letter-spacing:64.440000px;}
.ls27_c02150{letter-spacing:64.800000px;}
.ls3e_c02150{letter-spacing:64.980000px;}
.lsf_c02150{letter-spacing:95.400000px;}
.ls28_c02150{letter-spacing:95.760000px;}
.ls10_c02150{letter-spacing:96.120000px;}
.ls29_c02150{letter-spacing:96.480000px;}
.ls21_c02150{letter-spacing:108.450000px;}
.ls44_c02150{letter-spacing:109.170000px;}
.ls39_c02150{letter-spacing:111.330000px;}
.ls45_c02150{letter-spacing:111.420000px;}
.ls20_c02150{letter-spacing:111.690000px;}
.ls9_c02150{letter-spacing:128.520000px;}
.ls2e_c02150{letter-spacing:128.880000px;}
.ls25_c02150{letter-spacing:129.240000px;}
.ls3b_c02150{letter-spacing:132.120000px;}
.ls48_c02150{letter-spacing:145.800000px;}
.ls41_c02150{letter-spacing:162.000000px;}
.lsb_c02150{letter-spacing:162.360000px;}
.ls11_c02150{letter-spacing:164.520000px;}
.ls30_c02150{letter-spacing:164.880000px;}
.ls2d_c02150{letter-spacing:165.780000px;}
.ls7_c02150{letter-spacing:166.140000px;}
.ls1e_c02150{letter-spacing:174.330000px;}
.ls38_c02150{letter-spacing:177.210000px;}
.ls1d_c02150{letter-spacing:177.570000px;}
.ls46_c02150{letter-spacing:178.920000px;}
.ls26_c02150{letter-spacing:180.000000px;}
.ls3c_c02150{letter-spacing:180.360000px;}
.ls47_c02150{letter-spacing:182.880000px;}
.ls2a_c02150{letter-spacing:192.240000px;}
.ls3f_c02150{letter-spacing:192.600000px;}
.ls36_c02150{letter-spacing:198.900000px;}
.lsa_c02150{letter-spacing:199.260000px;}
.ls1c_c02150{letter-spacing:210.960000px;}
.ls37_c02150{letter-spacing:211.320000px;}
.ls1f_c02150{letter-spacing:211.679400px;}
.ls13_c02150{letter-spacing:212.400000px;}
.ls31_c02150{letter-spacing:212.760000px;}
.ls49_c02150{letter-spacing:225.360000px;}
.ls16_c02150{letter-spacing:230.400000px;}
.ls33_c02150{letter-spacing:230.760000px;}
.ls22_c02150{letter-spacing:246.960000px;}
.ls3a_c02150{letter-spacing:247.320000px;}
.ls1b_c02150{letter-spacing:259.560000px;}
.ls35_c02150{letter-spacing:259.920000px;}
.ls15_c02150{letter-spacing:263.520000px;}
.ls32_c02150{letter-spacing:263.880000px;}
.lsd_c02150{letter-spacing:274.680000px;}
.ls2f_c02150{letter-spacing:275.040000px;}
.ls6_c02150{letter-spacing:292.680000px;}
.ls2c_c02150{letter-spacing:293.040000px;}
.ls42_c02150{letter-spacing:307.440000px;}
.ls2b_c02150{letter-spacing:350.280000px;}
.ls43_c02150{letter-spacing:456.210000px;}
.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;}
}
.ws12_c02150{word-spacing:-16.647876px;}
.ws0_c02150{word-spacing:-16.634700px;}
.ws7_c02150{word-spacing:-16.621524px;}
.ws1_c02150{word-spacing:-16.608348px;}
.wsd_c02150{word-spacing:-16.568820px;}
.ws5_c02150{word-spacing:-16.562232px;}
.ws18_c02150{word-spacing:-16.542468px;}
.ws13_c02150{word-spacing:-16.529292px;}
.ws16_c02150{word-spacing:-16.509528px;}
.ws1c_c02150{word-spacing:-14.885712px;}
.ws3c_c02150{word-spacing:-0.100800px;}
.ws3b_c02150{word-spacing:-0.014400px;}
.ws43_c02150{word-spacing:-0.006588px;}
.ws3a_c02150{word-spacing:0.000000px;}
.ws42_c02150{word-spacing:0.013176px;}
.ws39_c02150{word-spacing:0.014400px;}
.ws41_c02150{word-spacing:0.026352px;}
.ws3e_c02150{word-spacing:0.032940px;}
.ws45_c02150{word-spacing:0.039528px;}
.ws3f_c02150{word-spacing:0.052704px;}
.ws3d_c02150{word-spacing:0.065880px;}
.ws46_c02150{word-spacing:0.079056px;}
.ws40_c02150{word-spacing:0.081000px;}
.ws44_c02150{word-spacing:0.098820px;}
.ws2d_c02150{word-spacing:47.447316px;}
.ws29_c02150{word-spacing:47.449440px;}
.ws17_c02150{word-spacing:47.809440px;}
.ws10_c02150{word-spacing:64.042380px;}
.ws28_c02150{word-spacing:82.718496px;}
.ws15_c02150{word-spacing:83.078496px;}
.ws1b_c02150{word-spacing:91.402380px;}
.ws2c_c02150{word-spacing:91.426608px;}
.ws35_c02150{word-spacing:92.122380px;}
.ws2a_c02150{word-spacing:94.282380px;}
.ws19_c02150{word-spacing:94.642380px;}
.ws9_c02150{word-spacing:96.802380px;}
.ws1e_c02150{word-spacing:99.541152px;}
.ws11_c02150{word-spacing:107.920728px;}
.ws27_c02150{word-spacing:110.800728px;}
.wsf_c02150{word-spacing:111.160728px;}
.ws24_c02150{word-spacing:115.476372px;}
.ws26_c02150{word-spacing:115.478496px;}
.ws6_c02150{word-spacing:115.836372px;}
.wse_c02150{word-spacing:115.838496px;}
.ws3_c02150{word-spacing:129.946608px;}
.ws1a_c02150{word-spacing:130.453020px;}
.wsa_c02150{word-spacing:141.082380px;}
.ws32_c02150{word-spacing:141.802380px;}
.ws33_c02150{word-spacing:141.826608px;}
.ws25_c02150{word-spacing:143.962380px;}
.ws23_c02150{word-spacing:143.986608px;}
.ws8_c02150{word-spacing:144.322380px;}
.wsc_c02150{word-spacing:144.346608px;}
.ws22_c02150{word-spacing:148.596372px;}
.wsb_c02150{word-spacing:148.956372px;}
.ws2b_c02150{word-spacing:163.573020px;}
.ws1f_c02150{word-spacing:170.962380px;}
.ws37_c02150{word-spacing:171.682380px;}
.ws2e_c02150{word-spacing:173.842380px;}
.ws4_c02150{word-spacing:173.866608px;}
.ws1d_c02150{word-spacing:174.202380px;}
.ws31_c02150{word-spacing:174.562380px;}
.ws36_c02150{word-spacing:176.676372px;}
.ws2_c02150{word-spacing:177.106608px;}
.ws14_c02150{word-spacing:212.483304px;}
.ws2f_c02150{word-spacing:231.078096px;}
.ws38_c02150{word-spacing:231.435972px;}
.ws20_c02150{word-spacing:231.438096px;}
.ws34_c02150{word-spacing:455.680728px;}
.ws30_c02150{word-spacing:879.203304px;}
.ws21_c02150{word-spacing:1159.906608px;}
._2_c02150{margin-left:-1.148292px;}
._6_c02150{width:73.245600px;}
._7_c02150{width:85.125600px;}
._5_c02150{width:118.530000px;}
._c_c02150{width:119.610000px;}
._4_c02150{width:126.835776px;}
._9_c02150{width:132.587604px;}
._8_c02150{width:138.751020px;}
._3_c02150{width:158.719284px;}
._0_c02150{width:194.400000px;}
._a_c02150{width:228.813732px;}
._f_c02150{width:248.040000px;}
._d_c02150{width:342.711936px;}
._1_c02150{width:473.025600px;}
._b_c02150{width:613.837908px;}
._e_c02150{width:642.600000px;}
.fc0_c02150{color:rgb(0,0,0);}
.fs4_c02150{font-size:11.880000px;}
.fs3_c02150{font-size:54.000000px;}
.fs2_c02150{font-size:60.120000px;}
.fs1_c02150{font-size:65.880000px;}
.fs0_c02150{font-size:72.000000px;}
.y0_c02150{bottom:0.000000px;}
.y3_c02150{bottom:57.360450px;}
.y2_c02150{bottom:78.060450px;}
.y3b_c02150{bottom:125.580450px;}
.y3a_c02150{bottom:132.420450px;}
.y39_c02150{bottom:153.120600px;}
.y38_c02150{bottom:173.820450px;}
.y37_c02150{bottom:192.720450px;}
.y36_c02150{bottom:212.070450px;}
.y35_c02150{bottom:232.770450px;}
.y34_c02150{bottom:253.470450px;}
.y33_c02150{bottom:274.170450px;}
.y32_c02150{bottom:293.160450px;}
.y31_c02150{bottom:312.150450px;}
.y30_c02150{bottom:331.140450px;}
.y2f_c02150{bottom:350.130450px;}
.y2e_c02150{bottom:370.380450px;}
.y2c_c02150{bottom:388.020600px;}
.y2b_c02150{bottom:396.930600px;}
.y2d_c02150{bottom:407.010450px;}
.y2a_c02150{bottom:426.270600px;}
.y29_c02150{bottom:449.220450px;}
.y28_c02150{bottom:469.920450px;}
.y27_c02150{bottom:490.710600px;}
.y26_c02150{bottom:511.410450px;}
.y25_c02150{bottom:532.110450px;}
.y24_c02150{bottom:551.100450px;}
.y23_c02150{bottom:570.450450px;}
.y22_c02150{bottom:591.150450px;}
.y21_c02150{bottom:611.850450px;}
.y20_c02150{bottom:630.750450px;}
.y1f_c02150{bottom:649.740450px;}
.y1e_c02150{bottom:668.730450px;}
.y1d_c02150{bottom:687.720450px;}
.y1c_c02150{bottom:706.710450px;}
.y1b_c02150{bottom:727.050450px;}
.y19_c02150{bottom:744.600450px;}
.y18_c02150{bottom:753.510450px;}
.y1a_c02150{bottom:763.590450px;}
.y17_c02150{bottom:782.850450px;}
.y16_c02150{bottom:805.800450px;}
.y15_c02150{bottom:826.500450px;}
.y14_c02150{bottom:847.290600px;}
.y13_c02150{bottom:867.990450px;}
.y12_c02150{bottom:888.690450px;}
.y11_c02150{bottom:907.680450px;}
.y10_c02150{bottom:927.030450px;}
.yf_c02150{bottom:947.730450px;}
.ye_c02150{bottom:968.430450px;}
.yd_c02150{bottom:987.420450px;}
.yc_c02150{bottom:1006.320450px;}
.yb_c02150{bottom:1025.310450px;}
.ya_c02150{bottom:1044.300450px;}
.y9_c02150{bottom:1063.290450px;}
.y8_c02150{bottom:1081.920450px;}
.y6_c02150{bottom:1099.470450px;}
.y5_c02150{bottom:1108.380450px;}
.y7_c02150{bottom:1118.460450px;}
.y4_c02150{bottom:1137.720450px;}
.y1_c02150{bottom:1193.160450px;}
.hc_c02150{height:10.551621px;}
.h5_c02150{height:53.397598px;}
.h4_c02150{height:58.513535px;}
.h2_c02150{height:63.175781px;}
.h1_c02150{height:63.949219px;}
.h8_c02150{height:64.975781px;}
.h7_c02150{height:65.028619px;}
.h6_c02150{height:65.029219px;}
.h9_c02150{height:65.029819px;}
.hb_c02150{height:65.335781px;}
.ha_c02150{height:104.268619px;}
.h3_c02150{height:104.269219px;}
.h0_c02150{height:1263.000000px;}
.w1_c02150{width:892.500000px;}
.w0_c02150{width:892.830000px;}
.x0_c02150{left:0.000000px;}
.xa_c02150{left:117.000000px;}
.x1_c02150{left:127.620000px;}
.x3_c02150{left:135.630000px;}
.x9_c02150{left:158.850000px;}
.x4_c02150{left:247.230000px;}
.xb_c02150{left:254.340000px;}
.xc_c02150{left:417.780000px;}
.x6_c02150{left:419.220000px;}
.xd_c02150{left:426.780000px;}
.x2_c02150{left:433.080000px;}
.x5_c02150{left:463.500000px;}
.xe_c02150{left:594.720000px;}
.x8_c02150{left:595.800000px;}
.x7_c02150{left:639.360000px;}
@media print{
.v2_c02150{vertical-align:-1.280000pt;}
.v0_c02150{vertical-align:0.000000pt;}
.v3_c02150{vertical-align:1.280000pt;}
.v1_c02150{vertical-align:35.840000pt;}
.ls4f_c02150{letter-spacing:-0.128256pt;}
.ls4e_c02150{letter-spacing:-0.080160pt;}
.ls4d_c02150{letter-spacing:-0.069472pt;}
.ls4a_c02150{letter-spacing:-0.012800pt;}
.ls50_c02150{letter-spacing:-0.005856pt;}
.ls4b_c02150{letter-spacing:0.000000pt;}
.ls40_c02150{letter-spacing:0.011712pt;}
.ls0_c02150{letter-spacing:0.012800pt;}
.ls2_c02150{letter-spacing:0.023424pt;}
.ls3_c02150{letter-spacing:0.035136pt;}
.ls51_c02150{letter-spacing:0.046848pt;}
.ls1a_c02150{letter-spacing:0.052704pt;}
.lsc_c02150{letter-spacing:0.058560pt;}
.ls24_c02150{letter-spacing:0.064416pt;}
.ls12_c02150{letter-spacing:0.070272pt;}
.ls5_c02150{letter-spacing:0.081984pt;}
.ls4_c02150{letter-spacing:0.086400pt;}
.ls14_c02150{letter-spacing:0.087840pt;}
.ls8_c02150{letter-spacing:0.122976pt;}
.ls4c_c02150{letter-spacing:0.128256pt;}
.lse_c02150{letter-spacing:0.134688pt;}
.ls23_c02150{letter-spacing:0.140544pt;}
.ls1_c02150{letter-spacing:0.146400pt;}
.ls17_c02150{letter-spacing:0.158112pt;}
.ls18_c02150{letter-spacing:55.680000pt;}
.ls34_c02150{letter-spacing:56.000000pt;}
.ls19_c02150{letter-spacing:56.320000pt;}
.ls3d_c02150{letter-spacing:57.280000pt;}
.ls27_c02150{letter-spacing:57.600000pt;}
.ls3e_c02150{letter-spacing:57.760000pt;}
.lsf_c02150{letter-spacing:84.800000pt;}
.ls28_c02150{letter-spacing:85.120000pt;}
.ls10_c02150{letter-spacing:85.440000pt;}
.ls29_c02150{letter-spacing:85.760000pt;}
.ls21_c02150{letter-spacing:96.400000pt;}
.ls44_c02150{letter-spacing:97.040000pt;}
.ls39_c02150{letter-spacing:98.960000pt;}
.ls45_c02150{letter-spacing:99.040000pt;}
.ls20_c02150{letter-spacing:99.280000pt;}
.ls9_c02150{letter-spacing:114.240000pt;}
.ls2e_c02150{letter-spacing:114.560000pt;}
.ls25_c02150{letter-spacing:114.880000pt;}
.ls3b_c02150{letter-spacing:117.440000pt;}
.ls48_c02150{letter-spacing:129.600000pt;}
.ls41_c02150{letter-spacing:144.000000pt;}
.lsb_c02150{letter-spacing:144.320000pt;}
.ls11_c02150{letter-spacing:146.240000pt;}
.ls30_c02150{letter-spacing:146.560000pt;}
.ls2d_c02150{letter-spacing:147.360000pt;}
.ls7_c02150{letter-spacing:147.680000pt;}
.ls1e_c02150{letter-spacing:154.960000pt;}
.ls38_c02150{letter-spacing:157.520000pt;}
.ls1d_c02150{letter-spacing:157.840000pt;}
.ls46_c02150{letter-spacing:159.040000pt;}
.ls26_c02150{letter-spacing:160.000000pt;}
.ls3c_c02150{letter-spacing:160.320000pt;}
.ls47_c02150{letter-spacing:162.560000pt;}
.ls2a_c02150{letter-spacing:170.880000pt;}
.ls3f_c02150{letter-spacing:171.200000pt;}
.ls36_c02150{letter-spacing:176.800000pt;}
.lsa_c02150{letter-spacing:177.120000pt;}
.ls1c_c02150{letter-spacing:187.520000pt;}
.ls37_c02150{letter-spacing:187.840000pt;}
.ls1f_c02150{letter-spacing:188.159467pt;}
.ls13_c02150{letter-spacing:188.800000pt;}
.ls31_c02150{letter-spacing:189.120000pt;}
.ls49_c02150{letter-spacing:200.320000pt;}
.ls16_c02150{letter-spacing:204.800000pt;}
.ls33_c02150{letter-spacing:205.120000pt;}
.ls22_c02150{letter-spacing:219.520000pt;}
.ls3a_c02150{letter-spacing:219.840000pt;}
.ls1b_c02150{letter-spacing:230.720000pt;}
.ls35_c02150{letter-spacing:231.040000pt;}
.ls15_c02150{letter-spacing:234.240000pt;}
.ls32_c02150{letter-spacing:234.560000pt;}
.lsd_c02150{letter-spacing:244.160000pt;}
.ls2f_c02150{letter-spacing:244.480000pt;}
.ls6_c02150{letter-spacing:260.160000pt;}
.ls2c_c02150{letter-spacing:260.480000pt;}
.ls42_c02150{letter-spacing:273.280000pt;}
.ls2b_c02150{letter-spacing:311.360000pt;}
.ls43_c02150{letter-spacing:405.520000pt;}
.ws12_c02150{word-spacing:-14.798112pt;}
.ws0_c02150{word-spacing:-14.786400pt;}
.ws7_c02150{word-spacing:-14.774688pt;}
.ws1_c02150{word-spacing:-14.762976pt;}
.wsd_c02150{word-spacing:-14.727840pt;}
.ws5_c02150{word-spacing:-14.721984pt;}
.ws18_c02150{word-spacing:-14.704416pt;}
.ws13_c02150{word-spacing:-14.692704pt;}
.ws16_c02150{word-spacing:-14.675136pt;}
.ws1c_c02150{word-spacing:-13.231744pt;}
.ws3c_c02150{word-spacing:-0.089600pt;}
.ws3b_c02150{word-spacing:-0.012800pt;}
.ws43_c02150{word-spacing:-0.005856pt;}
.ws3a_c02150{word-spacing:0.000000pt;}
.ws42_c02150{word-spacing:0.011712pt;}
.ws39_c02150{word-spacing:0.012800pt;}
.ws41_c02150{word-spacing:0.023424pt;}
.ws3e_c02150{word-spacing:0.029280pt;}
.ws45_c02150{word-spacing:0.035136pt;}
.ws3f_c02150{word-spacing:0.046848pt;}
.ws3d_c02150{word-spacing:0.058560pt;}
.ws46_c02150{word-spacing:0.070272pt;}
.ws40_c02150{word-spacing:0.072000pt;}
.ws44_c02150{word-spacing:0.087840pt;}
.ws2d_c02150{word-spacing:42.175392pt;}
.ws29_c02150{word-spacing:42.177280pt;}
.ws17_c02150{word-spacing:42.497280pt;}
.ws10_c02150{word-spacing:56.926560pt;}
.ws28_c02150{word-spacing:73.527552pt;}
.ws15_c02150{word-spacing:73.847552pt;}
.ws1b_c02150{word-spacing:81.246560pt;}
.ws2c_c02150{word-spacing:81.268096pt;}
.ws35_c02150{word-spacing:81.886560pt;}
.ws2a_c02150{word-spacing:83.806560pt;}
.ws19_c02150{word-spacing:84.126560pt;}
.ws9_c02150{word-spacing:86.046560pt;}
.ws1e_c02150{word-spacing:88.481024pt;}
.ws11_c02150{word-spacing:95.929536pt;}
.ws27_c02150{word-spacing:98.489536pt;}
.wsf_c02150{word-spacing:98.809536pt;}
.ws24_c02150{word-spacing:102.645664pt;}
.ws26_c02150{word-spacing:102.647552pt;}
.ws6_c02150{word-spacing:102.965664pt;}
.wse_c02150{word-spacing:102.967552pt;}
.ws3_c02150{word-spacing:115.508096pt;}
.ws1a_c02150{word-spacing:115.958240pt;}
.wsa_c02150{word-spacing:125.406560pt;}
.ws32_c02150{word-spacing:126.046560pt;}
.ws33_c02150{word-spacing:126.068096pt;}
.ws25_c02150{word-spacing:127.966560pt;}
.ws23_c02150{word-spacing:127.988096pt;}
.ws8_c02150{word-spacing:128.286560pt;}
.wsc_c02150{word-spacing:128.308096pt;}
.ws22_c02150{word-spacing:132.085664pt;}
.wsb_c02150{word-spacing:132.405664pt;}
.ws2b_c02150{word-spacing:145.398240pt;}
.ws1f_c02150{word-spacing:151.966560pt;}
.ws37_c02150{word-spacing:152.606560pt;}
.ws2e_c02150{word-spacing:154.526560pt;}
.ws4_c02150{word-spacing:154.548096pt;}
.ws1d_c02150{word-spacing:154.846560pt;}
.ws31_c02150{word-spacing:155.166560pt;}
.ws36_c02150{word-spacing:157.045664pt;}
.ws2_c02150{word-spacing:157.428096pt;}
.ws14_c02150{word-spacing:188.874048pt;}
.ws2f_c02150{word-spacing:205.402752pt;}
.ws38_c02150{word-spacing:205.720864pt;}
.ws20_c02150{word-spacing:205.722752pt;}
.ws34_c02150{word-spacing:405.049536pt;}
.ws30_c02150{word-spacing:781.514048pt;}
.ws21_c02150{word-spacing:1031.028096pt;}
._2_c02150{margin-left:-1.020704pt;}
._6_c02150{width:65.107200pt;}
._7_c02150{width:75.667200pt;}
._5_c02150{width:105.360000pt;}
._c_c02150{width:106.320000pt;}
._4_c02150{width:112.742912pt;}
._9_c02150{width:117.855648pt;}
._8_c02150{width:123.334240pt;}
._3_c02150{width:141.083808pt;}
._0_c02150{width:172.800000pt;}
._a_c02150{width:203.389984pt;}
._f_c02150{width:220.480000pt;}
._d_c02150{width:304.632832pt;}
._1_c02150{width:420.467200pt;}
._b_c02150{width:545.633696pt;}
._e_c02150{width:571.200000pt;}
.fs4_c02150{font-size:10.560000pt;}
.fs3_c02150{font-size:48.000000pt;}
.fs2_c02150{font-size:53.440000pt;}
.fs1_c02150{font-size:58.560000pt;}
.fs0_c02150{font-size:64.000000pt;}
.y0_c02150{bottom:0.000000pt;}
.y3_c02150{bottom:50.987067pt;}
.y2_c02150{bottom:69.387067pt;}
.y3b_c02150{bottom:111.627067pt;}
.y3a_c02150{bottom:117.707067pt;}
.y39_c02150{bottom:136.107200pt;}
.y38_c02150{bottom:154.507067pt;}
.y37_c02150{bottom:171.307067pt;}
.y36_c02150{bottom:188.507067pt;}
.y35_c02150{bottom:206.907067pt;}
.y34_c02150{bottom:225.307067pt;}
.y33_c02150{bottom:243.707067pt;}
.y32_c02150{bottom:260.587067pt;}
.y31_c02150{bottom:277.467067pt;}
.y30_c02150{bottom:294.347067pt;}
.y2f_c02150{bottom:311.227067pt;}
.y2e_c02150{bottom:329.227067pt;}
.y2c_c02150{bottom:344.907200pt;}
.y2b_c02150{bottom:352.827200pt;}
.y2d_c02150{bottom:361.787067pt;}
.y2a_c02150{bottom:378.907200pt;}
.y29_c02150{bottom:399.307067pt;}
.y28_c02150{bottom:417.707067pt;}
.y27_c02150{bottom:436.187200pt;}
.y26_c02150{bottom:454.587067pt;}
.y25_c02150{bottom:472.987067pt;}
.y24_c02150{bottom:489.867067pt;}
.y23_c02150{bottom:507.067067pt;}
.y22_c02150{bottom:525.467067pt;}
.y21_c02150{bottom:543.867067pt;}
.y20_c02150{bottom:560.667067pt;}
.y1f_c02150{bottom:577.547067pt;}
.y1e_c02150{bottom:594.427067pt;}
.y1d_c02150{bottom:611.307067pt;}
.y1c_c02150{bottom:628.187067pt;}
.y1b_c02150{bottom:646.267067pt;}
.y19_c02150{bottom:661.867067pt;}
.y18_c02150{bottom:669.787067pt;}
.y1a_c02150{bottom:678.747067pt;}
.y17_c02150{bottom:695.867067pt;}
.y16_c02150{bottom:716.267067pt;}
.y15_c02150{bottom:734.667067pt;}
.y14_c02150{bottom:753.147200pt;}
.y13_c02150{bottom:771.547067pt;}
.y12_c02150{bottom:789.947067pt;}
.y11_c02150{bottom:806.827067pt;}
.y10_c02150{bottom:824.027067pt;}
.yf_c02150{bottom:842.427067pt;}
.ye_c02150{bottom:860.827067pt;}
.yd_c02150{bottom:877.707067pt;}
.yc_c02150{bottom:894.507067pt;}
.yb_c02150{bottom:911.387067pt;}
.ya_c02150{bottom:928.267067pt;}
.y9_c02150{bottom:945.147067pt;}
.y8_c02150{bottom:961.707067pt;}
.y6_c02150{bottom:977.307067pt;}
.y5_c02150{bottom:985.227067pt;}
.y7_c02150{bottom:994.187067pt;}
.y4_c02150{bottom:1011.307067pt;}
.y1_c02150{bottom:1060.587067pt;}
.hc_c02150{height:9.379219pt;}
.h5_c02150{height:47.464531pt;}
.h4_c02150{height:52.012031pt;}
.h2_c02150{height:56.156250pt;}
.h1_c02150{height:56.843750pt;}
.h8_c02150{height:57.756250pt;}
.h7_c02150{height:57.803217pt;}
.h6_c02150{height:57.803750pt;}
.h9_c02150{height:57.804283pt;}
.hb_c02150{height:58.076250pt;}
.ha_c02150{height:92.683217pt;}
.h3_c02150{height:92.683750pt;}
.h0_c02150{height:1122.666667pt;}
.w1_c02150{width:793.333333pt;}
.w0_c02150{width:793.626667pt;}
.x0_c02150{left:0.000000pt;}
.xa_c02150{left:104.000000pt;}
.x1_c02150{left:113.440000pt;}
.x3_c02150{left:120.560000pt;}
.x9_c02150{left:141.200000pt;}
.x4_c02150{left:219.760000pt;}
.xb_c02150{left:226.080000pt;}
.xc_c02150{left:371.360000pt;}
.x6_c02150{left:372.640000pt;}
.xd_c02150{left:379.360000pt;}
.x2_c02150{left:384.960000pt;}
.x5_c02150{left:412.000000pt;}
.xe_c02150{left:528.640000pt;}
.x8_c02150{left:529.600000pt;}
.x7_c02150{left:568.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_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_d2a457081ca9988fc8758471.woff2')format("woff");}.ff1_c02151{font-family:ff1_c02151;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02151;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02151{vertical-align:-1.440000px;}
.v0_c02151{vertical-align:0.000000px;}
.v3_c02151{vertical-align:1.440000px;}
.v1_c02151{vertical-align:40.320000px;}
.ls54_c02151{letter-spacing:-0.144288px;}
.ls53_c02151{letter-spacing:-0.090180px;}
.ls52_c02151{letter-spacing:-0.078156px;}
.ls4f_c02151{letter-spacing:-0.014400px;}
.ls55_c02151{letter-spacing:-0.006588px;}
.ls50_c02151{letter-spacing:0.000000px;}
.ls40_c02151{letter-spacing:0.013176px;}
.ls0_c02151{letter-spacing:0.014400px;}
.ls2c_c02151{letter-spacing:0.019764px;}
.ls2_c02151{letter-spacing:0.026352px;}
.ls3_c02151{letter-spacing:0.032940px;}
.ls21_c02151{letter-spacing:0.039528px;}
.ls19_c02151{letter-spacing:0.059292px;}
.lsc_c02151{letter-spacing:0.065880px;}
.ls24_c02151{letter-spacing:0.072468px;}
.ls12_c02151{letter-spacing:0.079056px;}
.ls5_c02151{letter-spacing:0.092232px;}
.ls4_c02151{letter-spacing:0.097200px;}
.ls14_c02151{letter-spacing:0.098820px;}
.lsa_c02151{letter-spacing:0.138348px;}
.ls51_c02151{letter-spacing:0.144288px;}
.lse_c02151{letter-spacing:0.151524px;}
.ls23_c02151{letter-spacing:0.158112px;}
.ls1_c02151{letter-spacing:0.164700px;}
.ls17_c02151{letter-spacing:0.177876px;}
.ls4a_c02151{letter-spacing:62.640000px;}
.ls36_c02151{letter-spacing:63.000000px;}
.ls18_c02151{letter-spacing:63.360000px;}
.ls20_c02151{letter-spacing:63.720000px;}
.ls27_c02151{letter-spacing:64.800000px;}
.ls3c_c02151{letter-spacing:64.980000px;}
.ls45_c02151{letter-spacing:95.400000px;}
.ls30_c02151{letter-spacing:95.760000px;}
.lsf_c02151{letter-spacing:96.120000px;}
.ls10_c02151{letter-spacing:96.480000px;}
.ls29_c02151{letter-spacing:96.840000px;}
.ls1f_c02151{letter-spacing:109.170000px;}
.ls1e_c02151{letter-spacing:112.050000px;}
.ls42_c02151{letter-spacing:128.520000px;}
.ls3a_c02151{letter-spacing:128.880000px;}
.ls25_c02151{letter-spacing:129.240000px;}
.lsb_c02151{letter-spacing:129.600000px;}
.ls3d_c02151{letter-spacing:145.800000px;}
.ls28_c02151{letter-spacing:146.160000px;}
.ls31_c02151{letter-spacing:161.640000px;}
.ls2e_c02151{letter-spacing:162.000000px;}
.ls8_c02151{letter-spacing:162.360000px;}
.ls44_c02151{letter-spacing:164.520000px;}
.ls9_c02151{letter-spacing:166.140000px;}
.ls11_c02151{letter-spacing:167.040000px;}
.ls1c_c02151{letter-spacing:177.930000px;}
.ls38_c02151{letter-spacing:178.560000px;}
.ls39_c02151{letter-spacing:178.920000px;}
.ls3b_c02151{letter-spacing:180.000000px;}
.ls26_c02151{letter-spacing:182.520000px;}
.ls4c_c02151{letter-spacing:182.880000px;}
.ls3e_c02151{letter-spacing:189.360000px;}
.ls4d_c02151{letter-spacing:192.240000px;}
.ls2a_c02151{letter-spacing:194.760000px;}
.ls7_c02151{letter-spacing:199.260000px;}
.ls32_c02151{letter-spacing:209.520000px;}
.ls1b_c02151{letter-spacing:211.680000px;}
.ls46_c02151{letter-spacing:212.400000px;}
.ls13_c02151{letter-spacing:214.920000px;}
.ls16_c02151{letter-spacing:232.920000px;}
.ls37_c02151{letter-spacing:244.080000px;}
.ls4b_c02151{letter-spacing:246.960000px;}
.ls22_c02151{letter-spacing:249.480000px;}
.ls33_c02151{letter-spacing:260.640000px;}
.ls1a_c02151{letter-spacing:262.080000px;}
.ls47_c02151{letter-spacing:263.520000px;}
.ls15_c02151{letter-spacing:266.040000px;}
.ls2f_c02151{letter-spacing:271.800000px;}
.ls43_c02151{letter-spacing:274.680000px;}
.lsd_c02151{letter-spacing:277.200000px;}
.ls2d_c02151{letter-spacing:289.800000px;}
.ls41_c02151{letter-spacing:292.680000px;}
.ls6_c02151{letter-spacing:295.200000px;}
.ls4e_c02151{letter-spacing:350.280000px;}
.ls2b_c02151{letter-spacing:351.360000px;}
.ls3f_c02151{letter-spacing:353.160000px;}
.ls1d_c02151{letter-spacing:456.570000px;}
.ls35_c02151{letter-spacing:538.200000px;}
.ls49_c02151{letter-spacing:541.080000px;}
.ls34_c02151{letter-spacing:574.920000px;}
.ls48_c02151{letter-spacing:577.800000px;}
.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;}
}
.ws15_c02151{word-spacing:-16.647876px;}
.ws0_c02151{word-spacing:-16.634700px;}
.ws7_c02151{word-spacing:-16.621524px;}
.ws5_c02151{word-spacing:-16.608348px;}
.wse_c02151{word-spacing:-16.568820px;}
.ws1_c02151{word-spacing:-16.562232px;}
.ws18_c02151{word-spacing:-16.542468px;}
.ws12_c02151{word-spacing:-16.529292px;}
.ws16_c02151{word-spacing:-16.509528px;}
.ws1d_c02151{word-spacing:-14.885712px;}
.ws3f_c02151{word-spacing:-0.100800px;}
.ws3e_c02151{word-spacing:-0.014400px;}
.ws46_c02151{word-spacing:-0.006588px;}
.ws3d_c02151{word-spacing:0.000000px;}
.ws45_c02151{word-spacing:0.013176px;}
.ws3c_c02151{word-spacing:0.014400px;}
.ws44_c02151{word-spacing:0.026352px;}
.ws47_c02151{word-spacing:0.052704px;}
.ws42_c02151{word-spacing:0.059292px;}
.ws40_c02151{word-spacing:0.065880px;}
.ws41_c02151{word-spacing:0.072468px;}
.ws49_c02151{word-spacing:0.079056px;}
.ws43_c02151{word-spacing:0.081000px;}
.ws48_c02151{word-spacing:0.098820px;}
.ws2c_c02151{word-spacing:47.807316px;}
.ws17_c02151{word-spacing:47.809440px;}
.ws2b_c02151{word-spacing:64.402380px;}
.ws14_c02151{word-spacing:83.078496px;}
.ws37_c02151{word-spacing:91.356372px;}
.ws2a_c02151{word-spacing:91.402380px;}
.wsb_c02151{word-spacing:92.122380px;}
.ws1b_c02151{word-spacing:92.146608px;}
.ws38_c02151{word-spacing:94.642380px;}
.ws35_c02151{word-spacing:94.666608px;}
.ws1f_c02151{word-spacing:94.861152px;}
.ws19_c02151{word-spacing:95.002380px;}
.ws26_c02151{word-spacing:96.802380px;}
.ws28_c02151{word-spacing:97.116372px;}
.ws2e_c02151{word-spacing:99.541152px;}
.ws10_c02151{word-spacing:111.520728px;}
.ws6_c02151{word-spacing:115.836372px;}
.wsf_c02151{word-spacing:115.838496px;}
.ws3_c02151{word-spacing:125.266608px;}
.ws1c_c02151{word-spacing:125.773020px;}
.ws23_c02151{word-spacing:129.946608px;}
.ws29_c02151{word-spacing:130.453020px;}
.ws27_c02151{word-spacing:141.082380px;}
.wsc_c02151{word-spacing:141.802380px;}
.ws9_c02151{word-spacing:141.826608px;}
.ws34_c02151{word-spacing:144.322380px;}
.ws33_c02151{word-spacing:144.346608px;}
.wsa_c02151{word-spacing:144.682380px;}
.ws25_c02151{word-spacing:146.842380px;}
.wsd_c02151{word-spacing:148.956372px;}
.ws3a_c02151{word-spacing:149.221152px;}
.ws1a_c02151{word-spacing:158.893020px;}
.ws31_c02151{word-spacing:163.163304px;}
.ws20_c02151{word-spacing:171.682380px;}
.ws3b_c02151{word-spacing:173.796372px;}
.ws2f_c02151{word-spacing:173.842380px;}
.ws24_c02151{word-spacing:173.866608px;}
.ws32_c02151{word-spacing:173.963304px;}
.ws1e_c02151{word-spacing:174.516372px;}
.ws4_c02151{word-spacing:174.586608px;}
.ws39_c02151{word-spacing:177.082380px;}
.ws30_c02151{word-spacing:177.106608px;}
.ws8_c02151{word-spacing:177.442380px;}
.ws2_c02151{word-spacing:177.563304px;}
.ws2d_c02151{word-spacing:179.556372px;}
.ws22_c02151{word-spacing:179.723304px;}
.ws36_c02151{word-spacing:180.133020px;}
.ws13_c02151{word-spacing:207.803304px;}
.ws21_c02151{word-spacing:231.438096px;}
.ws11_c02151{word-spacing:680.722380px;}
._2_c02151{margin-left:-1.148292px;}
._6_c02151{width:73.605600px;}
._f_c02151{width:75.113892px;}
._13_c02151{width:80.200620px;}
._8_c02151{width:82.965600px;}
._18_c02151{width:84.473892px;}
._10_c02151{width:85.485600px;}
._7_c02151{width:116.370000px;}
._5_c02151{width:118.890000px;}
._14_c02151{width:124.120620px;}
._4_c02151{width:127.195776px;}
._12_c02151{width:130.173732px;}
._a_c02151{width:132.587604px;}
._9_c02151{width:139.111020px;}
._e_c02151{width:156.919284px;}
._17_c02151{width:158.719284px;}
._3_c02151{width:159.799284px;}
._0_c02151{width:194.400000px;}
._b_c02151{width:224.133732px;}
._d_c02151{width:470.865600px;}
._16_c02151{width:473.025600px;}
._1_c02151{width:475.545600px;}
._c_c02151{width:609.877908px;}
._15_c02151{width:613.837908px;}
._19_c02151{width:1387.897020px;}
._11_c02151{width:1390.777020px;}
.fc0_c02151{color:rgb(0,0,0);}
.fs4_c02151{font-size:11.880000px;}
.fs3_c02151{font-size:54.000000px;}
.fs2_c02151{font-size:60.120000px;}
.fs1_c02151{font-size:65.880000px;}
.fs0_c02151{font-size:72.000000px;}
.y0_c02151{bottom:0.000000px;}
.y3_c02151{bottom:57.360450px;}
.y2_c02151{bottom:78.060450px;}
.y3d_c02151{bottom:125.580540px;}
.y3c_c02151{bottom:129.000495px;}
.y3b_c02151{bottom:132.420450px;}
.y3a_c02151{bottom:139.260450px;}
.y39_c02151{bottom:159.960600px;}
.y38_c02151{bottom:178.950600px;}
.y37_c02151{bottom:197.940450px;}
.y36_c02151{bottom:217.290600px;}
.y35_c02151{bottom:236.280600px;}
.y34_c02151{bottom:256.980450px;}
.y33_c02151{bottom:277.680450px;}
.y32_c02151{bottom:296.580450px;}
.y31_c02151{bottom:315.570450px;}
.y30_c02151{bottom:334.560450px;}
.y2f_c02151{bottom:353.550450px;}
.y2e_c02151{bottom:372.180450px;}
.y2c_c02151{bottom:389.730450px;}
.y2b_c02151{bottom:398.640450px;}
.y2d_c02151{bottom:408.720450px;}
.y2a_c02151{bottom:427.980450px;}
.y29_c02151{bottom:450.930450px;}
.y28_c02151{bottom:471.630450px;}
.y27_c02151{bottom:492.420450px;}
.y26_c02151{bottom:513.120600px;}
.y25_c02151{bottom:532.110450px;}
.y24_c02151{bottom:551.100450px;}
.y23_c02151{bottom:570.450450px;}
.y22_c02151{bottom:589.440450px;}
.y21_c02151{bottom:610.050450px;}
.y20_c02151{bottom:630.750450px;}
.y1f_c02151{bottom:649.740450px;}
.y1e_c02151{bottom:668.730450px;}
.y1d_c02151{bottom:687.720450px;}
.y1c_c02151{bottom:706.710450px;}
.y1b_c02151{bottom:725.250450px;}
.y19_c02151{bottom:742.890450px;}
.y18_c02151{bottom:751.800450px;}
.y1a_c02151{bottom:761.880450px;}
.y17_c02151{bottom:781.140450px;}
.y16_c02151{bottom:804.090600px;}
.y15_c02151{bottom:824.790600px;}
.y14_c02151{bottom:845.580450px;}
.y13_c02151{bottom:866.280450px;}
.y12_c02151{bottom:886.980450px;}
.y11_c02151{bottom:905.970450px;}
.y10_c02151{bottom:925.320450px;}
.yf_c02151{bottom:946.020450px;}
.ye_c02151{bottom:966.720450px;}
.yd_c02151{bottom:987.420450px;}
.yc_c02151{bottom:1006.320450px;}
.yb_c02151{bottom:1025.310450px;}
.ya_c02151{bottom:1044.300450px;}
.y9_c02151{bottom:1063.290450px;}
.y8_c02151{bottom:1081.920450px;}
.y6_c02151{bottom:1099.470450px;}
.y5_c02151{bottom:1108.380450px;}
.y7_c02151{bottom:1118.460450px;}
.y4_c02151{bottom:1137.720450px;}
.y1_c02151{bottom:1193.160450px;}
.hb_c02151{height:10.551621px;}
.h5_c02151{height:53.397598px;}
.h4_c02151{height:58.513535px;}
.h2_c02151{height:63.175781px;}
.h1_c02151{height:63.949219px;}
.ha_c02151{height:64.975181px;}
.h6_c02151{height:64.975781px;}
.h7_c02151{height:65.029219px;}
.h9_c02151{height:65.029819px;}
.h8_c02151{height:65.335781px;}
.h3_c02151{height:104.269219px;}
.h0_c02151{height:1263.000000px;}
.w1_c02151{width:892.500000px;}
.w0_c02151{width:892.830000px;}
.x0_c02151{left:0.000000px;}
.x1_c02151{left:127.620000px;}
.x3_c02151{left:135.630000px;}
.x9_c02151{left:159.120000px;}
.xc_c02151{left:246.330000px;}
.x4_c02151{left:250.200000px;}
.xa_c02151{left:420.390000px;}
.x6_c02151{left:430.290000px;}
.xd_c02151{left:431.640000px;}
.x2_c02151{left:433.080000px;}
.x5_c02151{left:463.770000px;}
.xb_c02151{left:594.900000px;}
.xe_c02151{left:602.010000px;}
.x8_c02151{left:604.620000px;}
.x7_c02151{left:639.180000px;}
@media print{
.v2_c02151{vertical-align:-1.280000pt;}
.v0_c02151{vertical-align:0.000000pt;}
.v3_c02151{vertical-align:1.280000pt;}
.v1_c02151{vertical-align:35.840000pt;}
.ls54_c02151{letter-spacing:-0.128256pt;}
.ls53_c02151{letter-spacing:-0.080160pt;}
.ls52_c02151{letter-spacing:-0.069472pt;}
.ls4f_c02151{letter-spacing:-0.012800pt;}
.ls55_c02151{letter-spacing:-0.005856pt;}
.ls50_c02151{letter-spacing:0.000000pt;}
.ls40_c02151{letter-spacing:0.011712pt;}
.ls0_c02151{letter-spacing:0.012800pt;}
.ls2c_c02151{letter-spacing:0.017568pt;}
.ls2_c02151{letter-spacing:0.023424pt;}
.ls3_c02151{letter-spacing:0.029280pt;}
.ls21_c02151{letter-spacing:0.035136pt;}
.ls19_c02151{letter-spacing:0.052704pt;}
.lsc_c02151{letter-spacing:0.058560pt;}
.ls24_c02151{letter-spacing:0.064416pt;}
.ls12_c02151{letter-spacing:0.070272pt;}
.ls5_c02151{letter-spacing:0.081984pt;}
.ls4_c02151{letter-spacing:0.086400pt;}
.ls14_c02151{letter-spacing:0.087840pt;}
.lsa_c02151{letter-spacing:0.122976pt;}
.ls51_c02151{letter-spacing:0.128256pt;}
.lse_c02151{letter-spacing:0.134688pt;}
.ls23_c02151{letter-spacing:0.140544pt;}
.ls1_c02151{letter-spacing:0.146400pt;}
.ls17_c02151{letter-spacing:0.158112pt;}
.ls4a_c02151{letter-spacing:55.680000pt;}
.ls36_c02151{letter-spacing:56.000000pt;}
.ls18_c02151{letter-spacing:56.320000pt;}
.ls20_c02151{letter-spacing:56.640000pt;}
.ls27_c02151{letter-spacing:57.600000pt;}
.ls3c_c02151{letter-spacing:57.760000pt;}
.ls45_c02151{letter-spacing:84.800000pt;}
.ls30_c02151{letter-spacing:85.120000pt;}
.lsf_c02151{letter-spacing:85.440000pt;}
.ls10_c02151{letter-spacing:85.760000pt;}
.ls29_c02151{letter-spacing:86.080000pt;}
.ls1f_c02151{letter-spacing:97.040000pt;}
.ls1e_c02151{letter-spacing:99.600000pt;}
.ls42_c02151{letter-spacing:114.240000pt;}
.ls3a_c02151{letter-spacing:114.560000pt;}
.ls25_c02151{letter-spacing:114.880000pt;}
.lsb_c02151{letter-spacing:115.200000pt;}
.ls3d_c02151{letter-spacing:129.600000pt;}
.ls28_c02151{letter-spacing:129.920000pt;}
.ls31_c02151{letter-spacing:143.680000pt;}
.ls2e_c02151{letter-spacing:144.000000pt;}
.ls8_c02151{letter-spacing:144.320000pt;}
.ls44_c02151{letter-spacing:146.240000pt;}
.ls9_c02151{letter-spacing:147.680000pt;}
.ls11_c02151{letter-spacing:148.480000pt;}
.ls1c_c02151{letter-spacing:158.160000pt;}
.ls38_c02151{letter-spacing:158.720000pt;}
.ls39_c02151{letter-spacing:159.040000pt;}
.ls3b_c02151{letter-spacing:160.000000pt;}
.ls26_c02151{letter-spacing:162.240000pt;}
.ls4c_c02151{letter-spacing:162.560000pt;}
.ls3e_c02151{letter-spacing:168.320000pt;}
.ls4d_c02151{letter-spacing:170.880000pt;}
.ls2a_c02151{letter-spacing:173.120000pt;}
.ls7_c02151{letter-spacing:177.120000pt;}
.ls32_c02151{letter-spacing:186.240000pt;}
.ls1b_c02151{letter-spacing:188.160000pt;}
.ls46_c02151{letter-spacing:188.800000pt;}
.ls13_c02151{letter-spacing:191.040000pt;}
.ls16_c02151{letter-spacing:207.040000pt;}
.ls37_c02151{letter-spacing:216.960000pt;}
.ls4b_c02151{letter-spacing:219.520000pt;}
.ls22_c02151{letter-spacing:221.760000pt;}
.ls33_c02151{letter-spacing:231.680000pt;}
.ls1a_c02151{letter-spacing:232.960000pt;}
.ls47_c02151{letter-spacing:234.240000pt;}
.ls15_c02151{letter-spacing:236.480000pt;}
.ls2f_c02151{letter-spacing:241.600000pt;}
.ls43_c02151{letter-spacing:244.160000pt;}
.lsd_c02151{letter-spacing:246.400000pt;}
.ls2d_c02151{letter-spacing:257.600000pt;}
.ls41_c02151{letter-spacing:260.160000pt;}
.ls6_c02151{letter-spacing:262.400000pt;}
.ls4e_c02151{letter-spacing:311.360000pt;}
.ls2b_c02151{letter-spacing:312.320000pt;}
.ls3f_c02151{letter-spacing:313.920000pt;}
.ls1d_c02151{letter-spacing:405.840000pt;}
.ls35_c02151{letter-spacing:478.400000pt;}
.ls49_c02151{letter-spacing:480.960000pt;}
.ls34_c02151{letter-spacing:511.040000pt;}
.ls48_c02151{letter-spacing:513.600000pt;}
.ws15_c02151{word-spacing:-14.798112pt;}
.ws0_c02151{word-spacing:-14.786400pt;}
.ws7_c02151{word-spacing:-14.774688pt;}
.ws5_c02151{word-spacing:-14.762976pt;}
.wse_c02151{word-spacing:-14.727840pt;}
.ws1_c02151{word-spacing:-14.721984pt;}
.ws18_c02151{word-spacing:-14.704416pt;}
.ws12_c02151{word-spacing:-14.692704pt;}
.ws16_c02151{word-spacing:-14.675136pt;}
.ws1d_c02151{word-spacing:-13.231744pt;}
.ws3f_c02151{word-spacing:-0.089600pt;}
.ws3e_c02151{word-spacing:-0.012800pt;}
.ws46_c02151{word-spacing:-0.005856pt;}
.ws3d_c02151{word-spacing:0.000000pt;}
.ws45_c02151{word-spacing:0.011712pt;}
.ws3c_c02151{word-spacing:0.012800pt;}
.ws44_c02151{word-spacing:0.023424pt;}
.ws47_c02151{word-spacing:0.046848pt;}
.ws42_c02151{word-spacing:0.052704pt;}
.ws40_c02151{word-spacing:0.058560pt;}
.ws41_c02151{word-spacing:0.064416pt;}
.ws49_c02151{word-spacing:0.070272pt;}
.ws43_c02151{word-spacing:0.072000pt;}
.ws48_c02151{word-spacing:0.087840pt;}
.ws2c_c02151{word-spacing:42.495392pt;}
.ws17_c02151{word-spacing:42.497280pt;}
.ws2b_c02151{word-spacing:57.246560pt;}
.ws14_c02151{word-spacing:73.847552pt;}
.ws37_c02151{word-spacing:81.205664pt;}
.ws2a_c02151{word-spacing:81.246560pt;}
.wsb_c02151{word-spacing:81.886560pt;}
.ws1b_c02151{word-spacing:81.908096pt;}
.ws38_c02151{word-spacing:84.126560pt;}
.ws35_c02151{word-spacing:84.148096pt;}
.ws1f_c02151{word-spacing:84.321024pt;}
.ws19_c02151{word-spacing:84.446560pt;}
.ws26_c02151{word-spacing:86.046560pt;}
.ws28_c02151{word-spacing:86.325664pt;}
.ws2e_c02151{word-spacing:88.481024pt;}
.ws10_c02151{word-spacing:99.129536pt;}
.ws6_c02151{word-spacing:102.965664pt;}
.wsf_c02151{word-spacing:102.967552pt;}
.ws3_c02151{word-spacing:111.348096pt;}
.ws1c_c02151{word-spacing:111.798240pt;}
.ws23_c02151{word-spacing:115.508096pt;}
.ws29_c02151{word-spacing:115.958240pt;}
.ws27_c02151{word-spacing:125.406560pt;}
.wsc_c02151{word-spacing:126.046560pt;}
.ws9_c02151{word-spacing:126.068096pt;}
.ws34_c02151{word-spacing:128.286560pt;}
.ws33_c02151{word-spacing:128.308096pt;}
.wsa_c02151{word-spacing:128.606560pt;}
.ws25_c02151{word-spacing:130.526560pt;}
.wsd_c02151{word-spacing:132.405664pt;}
.ws3a_c02151{word-spacing:132.641024pt;}
.ws1a_c02151{word-spacing:141.238240pt;}
.ws31_c02151{word-spacing:145.034048pt;}
.ws20_c02151{word-spacing:152.606560pt;}
.ws3b_c02151{word-spacing:154.485664pt;}
.ws2f_c02151{word-spacing:154.526560pt;}
.ws24_c02151{word-spacing:154.548096pt;}
.ws32_c02151{word-spacing:154.634048pt;}
.ws1e_c02151{word-spacing:155.125664pt;}
.ws4_c02151{word-spacing:155.188096pt;}
.ws39_c02151{word-spacing:157.406560pt;}
.ws30_c02151{word-spacing:157.428096pt;}
.ws8_c02151{word-spacing:157.726560pt;}
.ws2_c02151{word-spacing:157.834048pt;}
.ws2d_c02151{word-spacing:159.605664pt;}
.ws22_c02151{word-spacing:159.754048pt;}
.ws36_c02151{word-spacing:160.118240pt;}
.ws13_c02151{word-spacing:184.714048pt;}
.ws21_c02151{word-spacing:205.722752pt;}
.ws11_c02151{word-spacing:605.086560pt;}
._2_c02151{margin-left:-1.020704pt;}
._6_c02151{width:65.427200pt;}
._f_c02151{width:66.767904pt;}
._13_c02151{width:71.289440pt;}
._8_c02151{width:73.747200pt;}
._18_c02151{width:75.087904pt;}
._10_c02151{width:75.987200pt;}
._7_c02151{width:103.440000pt;}
._5_c02151{width:105.680000pt;}
._14_c02151{width:110.329440pt;}
._4_c02151{width:113.062912pt;}
._12_c02151{width:115.709984pt;}
._a_c02151{width:117.855648pt;}
._9_c02151{width:123.654240pt;}
._e_c02151{width:139.483808pt;}
._17_c02151{width:141.083808pt;}
._3_c02151{width:142.043808pt;}
._0_c02151{width:172.800000pt;}
._b_c02151{width:199.229984pt;}
._d_c02151{width:418.547200pt;}
._16_c02151{width:420.467200pt;}
._1_c02151{width:422.707200pt;}
._c_c02151{width:542.113696pt;}
._15_c02151{width:545.633696pt;}
._19_c02151{width:1233.686240pt;}
._11_c02151{width:1236.246240pt;}
.fs4_c02151{font-size:10.560000pt;}
.fs3_c02151{font-size:48.000000pt;}
.fs2_c02151{font-size:53.440000pt;}
.fs1_c02151{font-size:58.560000pt;}
.fs0_c02151{font-size:64.000000pt;}
.y0_c02151{bottom:0.000000pt;}
.y3_c02151{bottom:50.987067pt;}
.y2_c02151{bottom:69.387067pt;}
.y3d_c02151{bottom:111.627147pt;}
.y3c_c02151{bottom:114.667107pt;}
.y3b_c02151{bottom:117.707067pt;}
.y3a_c02151{bottom:123.787067pt;}
.y39_c02151{bottom:142.187200pt;}
.y38_c02151{bottom:159.067200pt;}
.y37_c02151{bottom:175.947067pt;}
.y36_c02151{bottom:193.147200pt;}
.y35_c02151{bottom:210.027200pt;}
.y34_c02151{bottom:228.427067pt;}
.y33_c02151{bottom:246.827067pt;}
.y32_c02151{bottom:263.627067pt;}
.y31_c02151{bottom:280.507067pt;}
.y30_c02151{bottom:297.387067pt;}
.y2f_c02151{bottom:314.267067pt;}
.y2e_c02151{bottom:330.827067pt;}
.y2c_c02151{bottom:346.427067pt;}
.y2b_c02151{bottom:354.347067pt;}
.y2d_c02151{bottom:363.307067pt;}
.y2a_c02151{bottom:380.427067pt;}
.y29_c02151{bottom:400.827067pt;}
.y28_c02151{bottom:419.227067pt;}
.y27_c02151{bottom:437.707067pt;}
.y26_c02151{bottom:456.107200pt;}
.y25_c02151{bottom:472.987067pt;}
.y24_c02151{bottom:489.867067pt;}
.y23_c02151{bottom:507.067067pt;}
.y22_c02151{bottom:523.947067pt;}
.y21_c02151{bottom:542.267067pt;}
.y20_c02151{bottom:560.667067pt;}
.y1f_c02151{bottom:577.547067pt;}
.y1e_c02151{bottom:594.427067pt;}
.y1d_c02151{bottom:611.307067pt;}
.y1c_c02151{bottom:628.187067pt;}
.y1b_c02151{bottom:644.667067pt;}
.y19_c02151{bottom:660.347067pt;}
.y18_c02151{bottom:668.267067pt;}
.y1a_c02151{bottom:677.227067pt;}
.y17_c02151{bottom:694.347067pt;}
.y16_c02151{bottom:714.747200pt;}
.y15_c02151{bottom:733.147200pt;}
.y14_c02151{bottom:751.627067pt;}
.y13_c02151{bottom:770.027067pt;}
.y12_c02151{bottom:788.427067pt;}
.y11_c02151{bottom:805.307067pt;}
.y10_c02151{bottom:822.507067pt;}
.yf_c02151{bottom:840.907067pt;}
.ye_c02151{bottom:859.307067pt;}
.yd_c02151{bottom:877.707067pt;}
.yc_c02151{bottom:894.507067pt;}
.yb_c02151{bottom:911.387067pt;}
.ya_c02151{bottom:928.267067pt;}
.y9_c02151{bottom:945.147067pt;}
.y8_c02151{bottom:961.707067pt;}
.y6_c02151{bottom:977.307067pt;}
.y5_c02151{bottom:985.227067pt;}
.y7_c02151{bottom:994.187067pt;}
.y4_c02151{bottom:1011.307067pt;}
.y1_c02151{bottom:1060.587067pt;}
.hb_c02151{height:9.379219pt;}
.h5_c02151{height:47.464531pt;}
.h4_c02151{height:52.012031pt;}
.h2_c02151{height:56.156250pt;}
.h1_c02151{height:56.843750pt;}
.ha_c02151{height:57.755717pt;}
.h6_c02151{height:57.756250pt;}
.h7_c02151{height:57.803750pt;}
.h9_c02151{height:57.804283pt;}
.h8_c02151{height:58.076250pt;}
.h3_c02151{height:92.683750pt;}
.h0_c02151{height:1122.666667pt;}
.w1_c02151{width:793.333333pt;}
.w0_c02151{width:793.626667pt;}
.x0_c02151{left:0.000000pt;}
.x1_c02151{left:113.440000pt;}
.x3_c02151{left:120.560000pt;}
.x9_c02151{left:141.440000pt;}
.xc_c02151{left:218.960000pt;}
.x4_c02151{left:222.400000pt;}
.xa_c02151{left:373.680000pt;}
.x6_c02151{left:382.480000pt;}
.xd_c02151{left:383.680000pt;}
.x2_c02151{left:384.960000pt;}
.x5_c02151{left:412.240000pt;}
.xb_c02151{left:528.800000pt;}
.xe_c02151{left:535.120000pt;}
.x8_c02151{left:537.440000pt;}
.x7_c02151{left:568.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_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_902594daa5c9a79aa187d838.woff2')format("woff");}.ff1_c02152{font-family:ff1_c02152;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02152;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02152{vertical-align:-1.440000px;}
.v0_c02152{vertical-align:0.000000px;}
.v3_c02152{vertical-align:1.440000px;}
.v1_c02152{vertical-align:40.320000px;}
.ls42_c02152{letter-spacing:-0.144288px;}
.ls41_c02152{letter-spacing:-0.090180px;}
.ls40_c02152{letter-spacing:-0.078156px;}
.ls3c_c02152{letter-spacing:-0.014400px;}
.ls43_c02152{letter-spacing:-0.006588px;}
.ls3d_c02152{letter-spacing:0.000000px;}
.ls44_c02152{letter-spacing:0.007200px;}
.ls0_c02152{letter-spacing:0.014400px;}
.ls2_c02152{letter-spacing:0.032940px;}
.ls1e_c02152{letter-spacing:0.039528px;}
.ls3e_c02152{letter-spacing:0.046116px;}
.ls17_c02152{letter-spacing:0.059292px;}
.ls3_c02152{letter-spacing:0.065880px;}
.ls21_c02152{letter-spacing:0.072468px;}
.ls10_c02152{letter-spacing:0.079056px;}
.ls5_c02152{letter-spacing:0.092232px;}
.ls4_c02152{letter-spacing:0.097200px;}
.ls12_c02152{letter-spacing:0.098820px;}
.ls8_c02152{letter-spacing:0.138348px;}
.ls3f_c02152{letter-spacing:0.144288px;}
.lsc_c02152{letter-spacing:0.151524px;}
.ls20_c02152{letter-spacing:0.158112px;}
.ls1_c02152{letter-spacing:0.164700px;}
.ls15_c02152{letter-spacing:0.177876px;}
.ls2a_c02152{letter-spacing:0.180000px;}
.ls37_c02152{letter-spacing:46.800000px;}
.ls35_c02152{letter-spacing:57.960000px;}
.ls16_c02152{letter-spacing:62.640000px;}
.ls1d_c02152{letter-spacing:63.360000px;}
.ls24_c02152{letter-spacing:64.980000px;}
.ls34_c02152{letter-spacing:82.080000px;}
.ls2f_c02152{letter-spacing:90.720000px;}
.ls3a_c02152{letter-spacing:91.080000px;}
.lsd_c02152{letter-spacing:95.400000px;}
.ls25_c02152{letter-spacing:95.760000px;}
.lse_c02152{letter-spacing:96.120000px;}
.ls1c_c02152{letter-spacing:111.690000px;}
.ls2e_c02152{letter-spacing:114.840000px;}
.ls38_c02152{letter-spacing:123.840000px;}
.ls9_c02152{letter-spacing:128.520000px;}
.lsa_c02152{letter-spacing:129.240000px;}
.ls26_c02152{letter-spacing:146.160000px;}
.ls2c_c02152{letter-spacing:156.960000px;}
.lsf_c02152{letter-spacing:164.520000px;}
.ls7_c02152{letter-spacing:166.140000px;}
.ls30_c02152{letter-spacing:172.800000px;}
.ls22_c02152{letter-spacing:178.920000px;}
.ls2b_c02152{letter-spacing:181.080000px;}
.ls23_c02152{letter-spacing:182.880000px;}
.ls39_c02152{letter-spacing:191.160000px;}
.ls27_c02152{letter-spacing:192.240000px;}
.ls19_c02152{letter-spacing:199.260000px;}
.ls3b_c02152{letter-spacing:200.520000px;}
.ls1a_c02152{letter-spacing:210.960000px;}
.ls11_c02152{letter-spacing:212.400000px;}
.ls31_c02152{letter-spacing:220.680000px;}
.ls14_c02152{letter-spacing:230.400000px;}
.ls1f_c02152{letter-spacing:246.960000px;}
.ls36_c02152{letter-spacing:255.240000px;}
.ls18_c02152{letter-spacing:259.560000px;}
.ls13_c02152{letter-spacing:263.520000px;}
.ls32_c02152{letter-spacing:271.800000px;}
.lsb_c02152{letter-spacing:274.680000px;}
.ls2d_c02152{letter-spacing:282.960000px;}
.ls6_c02152{letter-spacing:292.680000px;}
.ls29_c02152{letter-spacing:300.960000px;}
.ls33_c02152{letter-spacing:337.680000px;}
.ls28_c02152{letter-spacing:350.280000px;}
.ls1b_c02152{letter-spacing:1160.730000px;}
.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;}
}
.ws12_c02152{word-spacing:-16.647876px;}
.ws0_c02152{word-spacing:-16.634700px;}
.ws1e_c02152{word-spacing:-16.628112px;}
.ws6_c02152{word-spacing:-16.621524px;}
.ws1_c02152{word-spacing:-16.608348px;}
.wsc_c02152{word-spacing:-16.568820px;}
.ws10_c02152{word-spacing:-16.562232px;}
.ws15_c02152{word-spacing:-16.542468px;}
.wsf_c02152{word-spacing:-16.529292px;}
.ws13_c02152{word-spacing:-16.509528px;}
.ws19_c02152{word-spacing:-14.885712px;}
.ws25_c02152{word-spacing:-0.335988px;}
.ws22_c02152{word-spacing:-0.100800px;}
.ws21_c02152{word-spacing:-0.014400px;}
.ws29_c02152{word-spacing:-0.006588px;}
.ws20_c02152{word-spacing:0.000000px;}
.ws28_c02152{word-spacing:0.013176px;}
.ws1f_c02152{word-spacing:0.014400px;}
.ws27_c02152{word-spacing:0.026352px;}
.ws23_c02152{word-spacing:0.046116px;}
.ws2a_c02152{word-spacing:0.052704px;}
.ws24_c02152{word-spacing:0.059292px;}
.ws26_c02152{word-spacing:0.081000px;}
.ws2b_c02152{word-spacing:0.098820px;}
.ws14_c02152{word-spacing:47.809440px;}
.ws2c_c02152{word-spacing:51.472800px;}
.ws11_c02152{word-spacing:83.078496px;}
.ws18_c02152{word-spacing:91.402380px;}
.ws16_c02152{word-spacing:94.642380px;}
.ws8_c02152{word-spacing:96.802380px;}
.ws1b_c02152{word-spacing:99.541152px;}
.ws5_c02152{word-spacing:115.836372px;}
.wsd_c02152{word-spacing:115.838496px;}
.ws3_c02152{word-spacing:129.946608px;}
.ws17_c02152{word-spacing:130.453020px;}
.ws9_c02152{word-spacing:141.082380px;}
.wsb_c02152{word-spacing:141.106608px;}
.ws7_c02152{word-spacing:144.322380px;}
.wsa_c02152{word-spacing:148.956372px;}
.ws1c_c02152{word-spacing:173.842380px;}
.ws4_c02152{word-spacing:173.866608px;}
.ws1a_c02152{word-spacing:177.082380px;}
.ws2_c02152{word-spacing:177.106608px;}
.ws1d_c02152{word-spacing:231.438096px;}
.wse_c02152{word-spacing:1160.200728px;}
._2_c02152{margin-left:-1.148292px;}
._6_c02152{width:73.245600px;}
._9_c02152{width:80.493732px;}
._7_c02152{width:85.125600px;}
._f_c02152{width:116.370000px;}
._5_c02152{width:118.530000px;}
._a_c02152{width:124.120620px;}
._4_c02152{width:126.835776px;}
._e_c02152{width:127.915776px;}
._8_c02152{width:138.751020px;}
._3_c02152{width:158.719284px;}
._d_c02152{width:162.679284px;}
._0_c02152{width:194.400000px;}
._10_c02152{width:230.137020px;}
._1_c02152{width:473.025600px;}
._c_c02152{width:477.705600px;}
._b_c02152{width:613.837908px;}
.fc0_c02152{color:rgb(0,0,0);}
.fs4_c02152{font-size:11.880000px;}
.fs3_c02152{font-size:54.000000px;}
.fs2_c02152{font-size:60.120000px;}
.fs1_c02152{font-size:65.880000px;}
.fs0_c02152{font-size:72.000000px;}
.y0_c02152{bottom:0.000000px;}
.y3_c02152{bottom:57.360450px;}
.y2_c02152{bottom:78.060450px;}
.y39_c02152{bottom:122.250450px;}
.y38_c02152{bottom:138.720450px;}
.y37_c02152{bottom:159.420450px;}
.y36_c02152{bottom:180.120450px;}
.y35_c02152{bottom:200.820450px;}
.y34_c02152{bottom:221.520450px;}
.y33_c02152{bottom:242.220450px;}
.y32_c02152{bottom:262.920450px;}
.y31_c02152{bottom:283.620450px;}
.y30_c02152{bottom:304.320450px;}
.y2f_c02152{bottom:325.020450px;}
.y2e_c02152{bottom:345.720450px;}
.y2d_c02152{bottom:366.420450px;}
.y2c_c02152{bottom:387.120450px;}
.y2b_c02152{bottom:407.820450px;}
.y2a_c02152{bottom:428.520450px;}
.y29_c02152{bottom:449.220450px;}
.y28_c02152{bottom:470.010450px;}
.y27_c02152{bottom:490.710600px;}
.y26_c02152{bottom:509.700600px;}
.y25_c02152{bottom:528.690450px;}
.y24_c02152{bottom:548.040450px;}
.y23_c02152{bottom:566.940450px;}
.y22_c02152{bottom:587.640450px;}
.y21_c02152{bottom:608.340450px;}
.y20_c02152{bottom:627.330450px;}
.y1f_c02152{bottom:646.320450px;}
.y1e_c02152{bottom:665.310450px;}
.y1d_c02152{bottom:684.300450px;}
.y1c_c02152{bottom:702.840450px;}
.y1b_c02152{bottom:720.480450px;}
.y1a_c02152{bottom:729.390450px;}
.y19_c02152{bottom:758.730450px;}
.y18_c02152{bottom:779.430450px;}
.y17_c02152{bottom:799.050450px;}
.y16_c02152{bottom:805.800450px;}
.y15_c02152{bottom:826.500450px;}
.y14_c02152{bottom:847.290600px;}
.y13_c02152{bottom:867.990450px;}
.y12_c02152{bottom:886.980450px;}
.y11_c02152{bottom:905.970450px;}
.y10_c02152{bottom:925.320450px;}
.yf_c02152{bottom:946.020450px;}
.ye_c02152{bottom:966.720450px;}
.yd_c02152{bottom:987.420450px;}
.yc_c02152{bottom:1006.320450px;}
.yb_c02152{bottom:1025.310450px;}
.ya_c02152{bottom:1044.300450px;}
.y9_c02152{bottom:1063.290450px;}
.y8_c02152{bottom:1081.920450px;}
.y6_c02152{bottom:1099.470450px;}
.y5_c02152{bottom:1108.380450px;}
.y7_c02152{bottom:1118.460450px;}
.y4_c02152{bottom:1137.720450px;}
.y1_c02152{bottom:1193.160450px;}
.h8_c02152{height:10.551621px;}
.hb_c02152{height:47.961914px;}
.h5_c02152{height:53.397598px;}
.h4_c02152{height:58.513535px;}
.h2_c02152{height:63.175781px;}
.h1_c02152{height:63.949219px;}
.h6_c02152{height:64.975781px;}
.h7_c02152{height:65.028619px;}
.ha_c02152{height:65.029819px;}
.h9_c02152{height:65.335781px;}
.h3_c02152{height:104.269219px;}
.h0_c02152{height:1263.000000px;}
.w1_c02152{width:892.500000px;}
.w0_c02152{width:892.830000px;}
.x0_c02152{left:0.000000px;}
.xa_c02152{left:117.000000px;}
.x1_c02152{left:127.620000px;}
.x3_c02152{left:135.630000px;}
.x9_c02152{left:158.850000px;}
.xb_c02152{left:248.130000px;}
.x4_c02152{left:251.370000px;}
.x2_c02152{left:433.080000px;}
.x6_c02152{left:435.150000px;}
.x5_c02152{left:463.500000px;}
.x8_c02152{left:593.280000px;}
.x7_c02152{left:639.360000px;}
@media print{
.v2_c02152{vertical-align:-1.280000pt;}
.v0_c02152{vertical-align:0.000000pt;}
.v3_c02152{vertical-align:1.280000pt;}
.v1_c02152{vertical-align:35.840000pt;}
.ls42_c02152{letter-spacing:-0.128256pt;}
.ls41_c02152{letter-spacing:-0.080160pt;}
.ls40_c02152{letter-spacing:-0.069472pt;}
.ls3c_c02152{letter-spacing:-0.012800pt;}
.ls43_c02152{letter-spacing:-0.005856pt;}
.ls3d_c02152{letter-spacing:0.000000pt;}
.ls44_c02152{letter-spacing:0.006400pt;}
.ls0_c02152{letter-spacing:0.012800pt;}
.ls2_c02152{letter-spacing:0.029280pt;}
.ls1e_c02152{letter-spacing:0.035136pt;}
.ls3e_c02152{letter-spacing:0.040992pt;}
.ls17_c02152{letter-spacing:0.052704pt;}
.ls3_c02152{letter-spacing:0.058560pt;}
.ls21_c02152{letter-spacing:0.064416pt;}
.ls10_c02152{letter-spacing:0.070272pt;}
.ls5_c02152{letter-spacing:0.081984pt;}
.ls4_c02152{letter-spacing:0.086400pt;}
.ls12_c02152{letter-spacing:0.087840pt;}
.ls8_c02152{letter-spacing:0.122976pt;}
.ls3f_c02152{letter-spacing:0.128256pt;}
.lsc_c02152{letter-spacing:0.134688pt;}
.ls20_c02152{letter-spacing:0.140544pt;}
.ls1_c02152{letter-spacing:0.146400pt;}
.ls15_c02152{letter-spacing:0.158112pt;}
.ls2a_c02152{letter-spacing:0.160000pt;}
.ls37_c02152{letter-spacing:41.600000pt;}
.ls35_c02152{letter-spacing:51.520000pt;}
.ls16_c02152{letter-spacing:55.680000pt;}
.ls1d_c02152{letter-spacing:56.320000pt;}
.ls24_c02152{letter-spacing:57.760000pt;}
.ls34_c02152{letter-spacing:72.960000pt;}
.ls2f_c02152{letter-spacing:80.640000pt;}
.ls3a_c02152{letter-spacing:80.960000pt;}
.lsd_c02152{letter-spacing:84.800000pt;}
.ls25_c02152{letter-spacing:85.120000pt;}
.lse_c02152{letter-spacing:85.440000pt;}
.ls1c_c02152{letter-spacing:99.280000pt;}
.ls2e_c02152{letter-spacing:102.080000pt;}
.ls38_c02152{letter-spacing:110.080000pt;}
.ls9_c02152{letter-spacing:114.240000pt;}
.lsa_c02152{letter-spacing:114.880000pt;}
.ls26_c02152{letter-spacing:129.920000pt;}
.ls2c_c02152{letter-spacing:139.520000pt;}
.lsf_c02152{letter-spacing:146.240000pt;}
.ls7_c02152{letter-spacing:147.680000pt;}
.ls30_c02152{letter-spacing:153.600000pt;}
.ls22_c02152{letter-spacing:159.040000pt;}
.ls2b_c02152{letter-spacing:160.960000pt;}
.ls23_c02152{letter-spacing:162.560000pt;}
.ls39_c02152{letter-spacing:169.920000pt;}
.ls27_c02152{letter-spacing:170.880000pt;}
.ls19_c02152{letter-spacing:177.120000pt;}
.ls3b_c02152{letter-spacing:178.240000pt;}
.ls1a_c02152{letter-spacing:187.520000pt;}
.ls11_c02152{letter-spacing:188.800000pt;}
.ls31_c02152{letter-spacing:196.160000pt;}
.ls14_c02152{letter-spacing:204.800000pt;}
.ls1f_c02152{letter-spacing:219.520000pt;}
.ls36_c02152{letter-spacing:226.880000pt;}
.ls18_c02152{letter-spacing:230.720000pt;}
.ls13_c02152{letter-spacing:234.240000pt;}
.ls32_c02152{letter-spacing:241.600000pt;}
.lsb_c02152{letter-spacing:244.160000pt;}
.ls2d_c02152{letter-spacing:251.520000pt;}
.ls6_c02152{letter-spacing:260.160000pt;}
.ls29_c02152{letter-spacing:267.520000pt;}
.ls33_c02152{letter-spacing:300.160000pt;}
.ls28_c02152{letter-spacing:311.360000pt;}
.ls1b_c02152{letter-spacing:1031.760000pt;}
.ws12_c02152{word-spacing:-14.798112pt;}
.ws0_c02152{word-spacing:-14.786400pt;}
.ws1e_c02152{word-spacing:-14.780544pt;}
.ws6_c02152{word-spacing:-14.774688pt;}
.ws1_c02152{word-spacing:-14.762976pt;}
.wsc_c02152{word-spacing:-14.727840pt;}
.ws10_c02152{word-spacing:-14.721984pt;}
.ws15_c02152{word-spacing:-14.704416pt;}
.wsf_c02152{word-spacing:-14.692704pt;}
.ws13_c02152{word-spacing:-14.675136pt;}
.ws19_c02152{word-spacing:-13.231744pt;}
.ws25_c02152{word-spacing:-0.298656pt;}
.ws22_c02152{word-spacing:-0.089600pt;}
.ws21_c02152{word-spacing:-0.012800pt;}
.ws29_c02152{word-spacing:-0.005856pt;}
.ws20_c02152{word-spacing:0.000000pt;}
.ws28_c02152{word-spacing:0.011712pt;}
.ws1f_c02152{word-spacing:0.012800pt;}
.ws27_c02152{word-spacing:0.023424pt;}
.ws23_c02152{word-spacing:0.040992pt;}
.ws2a_c02152{word-spacing:0.046848pt;}
.ws24_c02152{word-spacing:0.052704pt;}
.ws26_c02152{word-spacing:0.072000pt;}
.ws2b_c02152{word-spacing:0.087840pt;}
.ws14_c02152{word-spacing:42.497280pt;}
.ws2c_c02152{word-spacing:45.753600pt;}
.ws11_c02152{word-spacing:73.847552pt;}
.ws18_c02152{word-spacing:81.246560pt;}
.ws16_c02152{word-spacing:84.126560pt;}
.ws8_c02152{word-spacing:86.046560pt;}
.ws1b_c02152{word-spacing:88.481024pt;}
.ws5_c02152{word-spacing:102.965664pt;}
.wsd_c02152{word-spacing:102.967552pt;}
.ws3_c02152{word-spacing:115.508096pt;}
.ws17_c02152{word-spacing:115.958240pt;}
.ws9_c02152{word-spacing:125.406560pt;}
.wsb_c02152{word-spacing:125.428096pt;}
.ws7_c02152{word-spacing:128.286560pt;}
.wsa_c02152{word-spacing:132.405664pt;}
.ws1c_c02152{word-spacing:154.526560pt;}
.ws4_c02152{word-spacing:154.548096pt;}
.ws1a_c02152{word-spacing:157.406560pt;}
.ws2_c02152{word-spacing:157.428096pt;}
.ws1d_c02152{word-spacing:205.722752pt;}
.wse_c02152{word-spacing:1031.289536pt;}
._2_c02152{margin-left:-1.020704pt;}
._6_c02152{width:65.107200pt;}
._9_c02152{width:71.549984pt;}
._7_c02152{width:75.667200pt;}
._f_c02152{width:103.440000pt;}
._5_c02152{width:105.360000pt;}
._a_c02152{width:110.329440pt;}
._4_c02152{width:112.742912pt;}
._e_c02152{width:113.702912pt;}
._8_c02152{width:123.334240pt;}
._3_c02152{width:141.083808pt;}
._d_c02152{width:144.603808pt;}
._0_c02152{width:172.800000pt;}
._10_c02152{width:204.566240pt;}
._1_c02152{width:420.467200pt;}
._c_c02152{width:424.627200pt;}
._b_c02152{width:545.633696pt;}
.fs4_c02152{font-size:10.560000pt;}
.fs3_c02152{font-size:48.000000pt;}
.fs2_c02152{font-size:53.440000pt;}
.fs1_c02152{font-size:58.560000pt;}
.fs0_c02152{font-size:64.000000pt;}
.y0_c02152{bottom:0.000000pt;}
.y3_c02152{bottom:50.987067pt;}
.y2_c02152{bottom:69.387067pt;}
.y39_c02152{bottom:108.667067pt;}
.y38_c02152{bottom:123.307067pt;}
.y37_c02152{bottom:141.707067pt;}
.y36_c02152{bottom:160.107067pt;}
.y35_c02152{bottom:178.507067pt;}
.y34_c02152{bottom:196.907067pt;}
.y33_c02152{bottom:215.307067pt;}
.y32_c02152{bottom:233.707067pt;}
.y31_c02152{bottom:252.107067pt;}
.y30_c02152{bottom:270.507067pt;}
.y2f_c02152{bottom:288.907067pt;}
.y2e_c02152{bottom:307.307067pt;}
.y2d_c02152{bottom:325.707067pt;}
.y2c_c02152{bottom:344.107067pt;}
.y2b_c02152{bottom:362.507067pt;}
.y2a_c02152{bottom:380.907067pt;}
.y29_c02152{bottom:399.307067pt;}
.y28_c02152{bottom:417.787067pt;}
.y27_c02152{bottom:436.187200pt;}
.y26_c02152{bottom:453.067200pt;}
.y25_c02152{bottom:469.947067pt;}
.y24_c02152{bottom:487.147067pt;}
.y23_c02152{bottom:503.947067pt;}
.y22_c02152{bottom:522.347067pt;}
.y21_c02152{bottom:540.747067pt;}
.y20_c02152{bottom:557.627067pt;}
.y1f_c02152{bottom:574.507067pt;}
.y1e_c02152{bottom:591.387067pt;}
.y1d_c02152{bottom:608.267067pt;}
.y1c_c02152{bottom:624.747067pt;}
.y1b_c02152{bottom:640.427067pt;}
.y1a_c02152{bottom:648.347067pt;}
.y19_c02152{bottom:674.427067pt;}
.y18_c02152{bottom:692.827067pt;}
.y17_c02152{bottom:710.267067pt;}
.y16_c02152{bottom:716.267067pt;}
.y15_c02152{bottom:734.667067pt;}
.y14_c02152{bottom:753.147200pt;}
.y13_c02152{bottom:771.547067pt;}
.y12_c02152{bottom:788.427067pt;}
.y11_c02152{bottom:805.307067pt;}
.y10_c02152{bottom:822.507067pt;}
.yf_c02152{bottom:840.907067pt;}
.ye_c02152{bottom:859.307067pt;}
.yd_c02152{bottom:877.707067pt;}
.yc_c02152{bottom:894.507067pt;}
.yb_c02152{bottom:911.387067pt;}
.ya_c02152{bottom:928.267067pt;}
.y9_c02152{bottom:945.147067pt;}
.y8_c02152{bottom:961.707067pt;}
.y6_c02152{bottom:977.307067pt;}
.y5_c02152{bottom:985.227067pt;}
.y7_c02152{bottom:994.187067pt;}
.y4_c02152{bottom:1011.307067pt;}
.y1_c02152{bottom:1060.587067pt;}
.h8_c02152{height:9.379219pt;}
.hb_c02152{height:42.632812pt;}
.h5_c02152{height:47.464531pt;}
.h4_c02152{height:52.012031pt;}
.h2_c02152{height:56.156250pt;}
.h1_c02152{height:56.843750pt;}
.h6_c02152{height:57.756250pt;}
.h7_c02152{height:57.803217pt;}
.ha_c02152{height:57.804283pt;}
.h9_c02152{height:58.076250pt;}
.h3_c02152{height:92.683750pt;}
.h0_c02152{height:1122.666667pt;}
.w1_c02152{width:793.333333pt;}
.w0_c02152{width:793.626667pt;}
.x0_c02152{left:0.000000pt;}
.xa_c02152{left:104.000000pt;}
.x1_c02152{left:113.440000pt;}
.x3_c02152{left:120.560000pt;}
.x9_c02152{left:141.200000pt;}
.xb_c02152{left:220.560000pt;}
.x4_c02152{left:223.440000pt;}
.x2_c02152{left:384.960000pt;}
.x6_c02152{left:386.800000pt;}
.x5_c02152{left:412.000000pt;}
.x8_c02152{left:527.360000pt;}
.x7_c02152{left:568.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_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_330cbacde51c1bf713a88453.woff2')format("woff");}.ff1_c02153{font-family:ff1_c02153;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02153;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.v3_c02153{vertical-align:-3.960000px;}
.v2_c02153{vertical-align:-2.520000px;}
.v1_c02153{vertical-align:-1.440000px;}
.v0_c02153{vertical-align:0.000000px;}
.v6_c02153{vertical-align:1.440000px;}
.v4_c02153{vertical-align:2.520000px;}
.v5_c02153{vertical-align:3.960000px;}
.ls2e_c02153{letter-spacing:-0.178200px;}
.ls2d_c02153{letter-spacing:-0.118800px;}
.ls2b_c02153{letter-spacing:-0.086184px;}
.ls27_c02153{letter-spacing:-0.043200px;}
.ls29_c02153{letter-spacing:-0.019152px;}
.ls24_c02153{letter-spacing:-0.014400px;}
.ls28_c02153{letter-spacing:-0.010800px;}
.ls2f_c02153{letter-spacing:-0.009576px;}
.ls32_c02153{letter-spacing:-0.004788px;}
.ls25_c02153{letter-spacing:0.000000px;}
.ls12_c02153{letter-spacing:0.006588px;}
.ls1_c02153{letter-spacing:0.007200px;}
.ls2_c02153{letter-spacing:0.010800px;}
.ls5_c02153{letter-spacing:0.012636px;}
.ls21_c02153{letter-spacing:0.016200px;}
.ls23_c02153{letter-spacing:0.019152px;}
.ls4_c02153{letter-spacing:0.028728px;}
.ls0_c02153{letter-spacing:0.028800px;}
.ls6_c02153{letter-spacing:0.032400px;}
.lsb_c02153{letter-spacing:0.037800px;}
.ls3_c02153{letter-spacing:0.043092px;}
.lsa_c02153{letter-spacing:0.043200px;}
.ls17_c02153{letter-spacing:0.048600px;}
.ls1e_c02153{letter-spacing:0.052668px;}
.ls16_c02153{letter-spacing:0.054000px;}
.ls19_c02153{letter-spacing:0.067032px;}
.ls15_c02153{letter-spacing:0.070200px;}
.lse_c02153{letter-spacing:0.076608px;}
.ls1d_c02153{letter-spacing:0.081396px;}
.ls11_c02153{letter-spacing:0.085644px;}
.ls18_c02153{letter-spacing:0.086184px;}
.ls14_c02153{letter-spacing:0.095760px;}
.ls13_c02153{letter-spacing:0.108000px;}
.ls9_c02153{letter-spacing:0.110124px;}
.ls1a_c02153{letter-spacing:0.114912px;}
.ls1b_c02153{letter-spacing:0.119700px;}
.ls20_c02153{letter-spacing:0.124488px;}
.ls22_c02153{letter-spacing:0.134064px;}
.ls1f_c02153{letter-spacing:0.138852px;}
.ls26_c02153{letter-spacing:0.151200px;}
.ls7_c02153{letter-spacing:0.158112px;}
.ls10_c02153{letter-spacing:0.162792px;}
.ls2a_c02153{letter-spacing:0.167580px;}
.ls30_c02153{letter-spacing:0.180360px;}
.lsf_c02153{letter-spacing:0.181944px;}
.lsd_c02153{letter-spacing:0.205884px;}
.ls8_c02153{letter-spacing:112.320000px;}
.ls1c_c02153{letter-spacing:114.120000px;}
.ls2c_c02153{letter-spacing:143.818200px;}
.ls31_c02153{letter-spacing:145.621800px;}
.lsc_c02153{letter-spacing:200.790000px;}
.sc__c02153{text-shadow:none;}
.sc0_c02153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02153{-webkit-text-stroke:0px transparent;}
.sc0_c02153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02153{word-spacing:-16.628112px;}
.ws8_c02153{word-spacing:-0.296856px;}
.ws7_c02153{word-spacing:-0.272916px;}
.wsa_c02153{word-spacing:-0.253764px;}
.ws1a_c02153{word-spacing:-0.229824px;}
.ws1e_c02153{word-spacing:-0.225036px;}
.ws1b_c02153{word-spacing:-0.215460px;}
.ws15_c02153{word-spacing:-0.210672px;}
.ws19_c02153{word-spacing:-0.205884px;}
.wsc_c02153{word-spacing:-0.186732px;}
.ws1f_c02153{word-spacing:-0.172368px;}
.ws18_c02153{word-spacing:-0.119700px;}
.ws4_c02153{word-spacing:-0.115200px;}
.ws20_c02153{word-spacing:-0.110124px;}
.ws6_c02153{word-spacing:-0.101088px;}
.ws17_c02153{word-spacing:-0.081396px;}
.ws5_c02153{word-spacing:-0.007200px;}
.ws3_c02153{word-spacing:0.000000px;}
.wsb_c02153{word-spacing:0.006588px;}
.ws2_c02153{word-spacing:0.014400px;}
.wsd_c02153{word-spacing:0.108000px;}
.wse_c02153{word-spacing:0.124200px;}
.wsf_c02153{word-spacing:0.129600px;}
.ws12_c02153{word-spacing:1.235304px;}
.ws14_c02153{word-spacing:1.273608px;}
.ws13_c02153{word-spacing:1.307124px;}
.ws10_c02153{word-spacing:5.941908px;}
.ws11_c02153{word-spacing:5.961060px;}
.ws1_c02153{word-spacing:58.969440px;}
.ws1c_c02153{word-spacing:103.820400px;}
.ws1d_c02153{word-spacing:129.762000px;}
.ws9_c02153{word-spacing:156.735000px;}
.ws16_c02153{word-spacing:156.740400px;}
._2f_c02153{margin-left:-54.669780px;}
._1_c02153{margin-left:-1.296000px;}
._15_c02153{width:42.501636px;}
._2a_c02153{width:49.498200px;}
._d_c02153{width:51.297552px;}
._12_c02153{width:62.053200px;}
._28_c02153{width:68.480820px;}
._a_c02153{width:72.604440px;}
._14_c02153{width:75.420000px;}
._b_c02153{width:77.310180px;}
._10_c02153{width:83.700000px;}
._3_c02153{width:84.834000px;}
._2_c02153{width:88.221600px;}
._f_c02153{width:90.075600px;}
._17_c02153{width:91.650888px;}
._2b_c02153{width:95.135472px;}
._2d_c02153{width:96.585300px;}
._c_c02153{width:100.015200px;}
._2c_c02153{width:102.513564px;}
._e_c02153{width:104.479380px;}
._5_c02153{width:106.740000px;}
._32_c02153{width:108.435600px;}
._27_c02153{width:109.594296px;}
._31_c02153{width:111.720168px;}
._2e_c02153{width:114.496236px;}
._23_c02153{width:116.100000px;}
._6_c02153{width:118.018944px;}
._11_c02153{width:119.304000px;}
._4_c02153{width:122.220000px;}
._7_c02153{width:123.576120px;}
._30_c02153{width:124.666920px;}
._19_c02153{width:128.226384px;}
._13_c02153{width:129.607020px;}
._26_c02153{width:130.948020px;}
._33_c02153{width:133.247016px;}
._24_c02153{width:141.023808px;}
._16_c02153{width:143.820000px;}
._29_c02153{width:146.586384px;}
._9_c02153{width:148.307688px;}
._8_c02153{width:152.155404px;}
._18_c02153{width:182.604168px;}
._0_c02153{width:194.400000px;}
._25_c02153{width:201.457008px;}
._22_c02153{width:203.036400px;}
._1d_c02153{width:216.180000px;}
._1b_c02153{width:283.500000px;}
._1e_c02153{width:310.104000px;}
._1c_c02153{width:347.693400px;}
._20_c02153{width:353.833200px;}
._1f_c02153{width:419.929200px;}
._1a_c02153{width:425.790000px;}
._21_c02153{width:605.295000px;}
.fc0_c02153{color:rgb(0,0,0);}
.fs6_c02153{font-size:11.880000px;}
.fs1_c02153{font-size:24.120000px;}
.fs4_c02153{font-size:42.120000px;}
.fs3_c02153{font-size:47.880000px;}
.fs2_c02153{font-size:54.000000px;}
.fs7_c02153{font-size:60.120000px;}
.fs5_c02153{font-size:65.880000px;}
.fs0_c02153{font-size:72.000000px;}
.y0_c02153{bottom:0.000000px;}
.y3_c02153{bottom:57.360450px;}
.y2_c02153{bottom:78.060450px;}
.y53_c02153{bottom:126.482250px;}
.y52_c02153{bottom:145.472160px;}
.y51_c02153{bottom:164.371485px;}
.y50_c02153{bottom:183.361395px;}
.y4f_c02153{bottom:202.351305px;}
.y4e_c02153{bottom:221.341215px;}
.y4d_c02153{bottom:240.331125px;}
.y4c_c02153{bottom:259.230450px;}
.y4b_c02153{bottom:275.970450px;}
.y4a_c02153{bottom:284.520450px;}
.y49_c02153{bottom:284.880900px;}
.y48_c02153{bottom:301.710600px;}
.y47_c02153{bottom:302.070450px;}
.y46_c02153{bottom:318.990450px;}
.y45_c02153{bottom:319.350450px;}
.y44_c02153{bottom:336.270450px;}
.y43_c02153{bottom:336.630900px;}
.y42_c02153{bottom:353.460600px;}
.y41_c02153{bottom:353.820450px;}
.y3e_c02153{bottom:370.740450px;}
.y3d_c02153{bottom:371.100150px;}
.y3f_c02153{bottom:371.100450px;}
.y40_c02153{bottom:371.820450px;}
.y3c_c02153{bottom:389.730450px;}
.y3b_c02153{bottom:390.090900px;}
.y3a_c02153{bottom:410.430600px;}
.y39_c02153{bottom:410.790600px;}
.y38_c02153{bottom:431.490450px;}
.y37_c02153{bottom:450.030600px;}
.y36_c02153{bottom:450.480450px;}
.y35_c02153{bottom:471.180600px;}
.y34_c02153{bottom:489.720450px;}
.y33_c02153{bottom:490.080900px;}
.y32_c02153{bottom:510.420450px;}
.y31_c02153{bottom:510.780900px;}
.y30_c02153{bottom:531.120450px;}
.y2f_c02153{bottom:531.480450px;}
.y2e_c02153{bottom:552.900450px;}
.y2d_c02153{bottom:571.170450px;}
.y2c_c02153{bottom:588.900450px;}
.y2b_c02153{bottom:608.609172px;}
.y2a_c02153{bottom:622.379460px;}
.y29_c02153{bottom:636.149748px;}
.y28_c02153{bottom:650.009811px;}
.y27_c02153{bottom:663.780099px;}
.y26_c02153{bottom:677.550387px;}
.y25_c02153{bottom:691.410450px;}
.y24_c02153{bottom:707.520450px;}
.y23_c02153{bottom:723.090450px;}
.y22_c02153{bottom:738.570450px;}
.y21_c02153{bottom:754.050450px;}
.y20_c02153{bottom:769.620450px;}
.y1e_c02153{bottom:787.620450px;}
.y1f_c02153{bottom:805.080450px;}
.y1d_c02153{bottom:822.000450px;}
.y1c_c02153{bottom:840.181050px;}
.y1b_c02153{bottom:855.750600px;}
.y1a_c02153{bottom:871.230450px;}
.y19_c02153{bottom:871.590000px;}
.y18_c02153{bottom:890.220450px;}
.y17_c02153{bottom:890.580000px;}
.y16_c02153{bottom:909.210450px;}
.y15_c02153{bottom:909.570450px;}
.y14_c02153{bottom:928.560450px;}
.y13_c02153{bottom:947.100450px;}
.y12_c02153{bottom:947.460450px;}
.y11_c02153{bottom:968.880450px;}
.y10_c02153{bottom:987.150450px;}
.yf_c02153{bottom:1004.520450px;}
.ye_c02153{bottom:1025.310450px;}
.yd_c02153{bottom:1034.130450px;}
.yc_c02153{bottom:1034.490450px;}
.yb_c02153{bottom:1054.110450px;}
.ya_c02153{bottom:1072.470450px;}
.y9_c02153{bottom:1089.840450px;}
.y8_c02153{bottom:1108.470063px;}
.y7_c02153{bottom:1115.309892px;}
.y6_c02153{bottom:1122.240171px;}
.y5_c02153{bottom:1129.170450px;}
.y4_c02153{bottom:1139.250450px;}
.y1_c02153{bottom:1193.160450px;}
.h6_c02153{height:10.551621px;}
.h3_c02153{height:21.163887px;}
.h16_c02153{height:21.422988px;}
.hb_c02153{height:42.011895px;}
.ha_c02153{height:47.381836px;}
.h4_c02153{height:47.961914px;}
.hc_c02153{height:48.461836px;}
.h12_c02153{height:55.916998px;}
.h14_c02153{height:55.917598px;}
.h13_c02153{height:55.918198px;}
.h10_c02153{height:56.276998px;}
.hd_c02153{height:56.277598px;}
.he_c02153{height:56.278198px;}
.h15_c02153{height:57.805840px;}
.h9_c02153{height:58.513535px;}
.hf_c02153{height:60.685240px;}
.h8_c02153{height:61.033535px;}
.h11_c02153{height:61.034135px;}
.h5_c02153{height:62.473535px;}
.h7_c02153{height:62.833535px;}
.h2_c02153{height:63.175781px;}
.h1_c02153{height:63.949219px;}
.h0_c02153{height:1263.000000px;}
.w1_c02153{width:892.500000px;}
.w0_c02153{width:892.830000px;}
.x0_c02153{left:0.000000px;}
.x1_c02153{left:127.620000px;}
.x7_c02153{left:134.550000px;}
.x3_c02153{left:135.630000px;}
.x4_c02153{left:143.910000px;}
.x5_c02153{left:165.060000px;}
.x6_c02153{left:220.680000px;}
.x8_c02153{left:332.100000px;}
.x9_c02153{left:354.780000px;}
.x2_c02153{left:433.080000px;}
.xa_c02153{left:531.809550px;}
.xb_c02153{left:717.930000px;}
@media print{
.v3_c02153{vertical-align:-3.520000pt;}
.v2_c02153{vertical-align:-2.240000pt;}
.v1_c02153{vertical-align:-1.280000pt;}
.v0_c02153{vertical-align:0.000000pt;}
.v6_c02153{vertical-align:1.280000pt;}
.v4_c02153{vertical-align:2.240000pt;}
.v5_c02153{vertical-align:3.520000pt;}
.ls2e_c02153{letter-spacing:-0.158400pt;}
.ls2d_c02153{letter-spacing:-0.105600pt;}
.ls2b_c02153{letter-spacing:-0.076608pt;}
.ls27_c02153{letter-spacing:-0.038400pt;}
.ls29_c02153{letter-spacing:-0.017024pt;}
.ls24_c02153{letter-spacing:-0.012800pt;}
.ls28_c02153{letter-spacing:-0.009600pt;}
.ls2f_c02153{letter-spacing:-0.008512pt;}
.ls32_c02153{letter-spacing:-0.004256pt;}
.ls25_c02153{letter-spacing:0.000000pt;}
.ls12_c02153{letter-spacing:0.005856pt;}
.ls1_c02153{letter-spacing:0.006400pt;}
.ls2_c02153{letter-spacing:0.009600pt;}
.ls5_c02153{letter-spacing:0.011232pt;}
.ls21_c02153{letter-spacing:0.014400pt;}
.ls23_c02153{letter-spacing:0.017024pt;}
.ls4_c02153{letter-spacing:0.025536pt;}
.ls0_c02153{letter-spacing:0.025600pt;}
.ls6_c02153{letter-spacing:0.028800pt;}
.lsb_c02153{letter-spacing:0.033600pt;}
.ls3_c02153{letter-spacing:0.038304pt;}
.lsa_c02153{letter-spacing:0.038400pt;}
.ls17_c02153{letter-spacing:0.043200pt;}
.ls1e_c02153{letter-spacing:0.046816pt;}
.ls16_c02153{letter-spacing:0.048000pt;}
.ls19_c02153{letter-spacing:0.059584pt;}
.ls15_c02153{letter-spacing:0.062400pt;}
.lse_c02153{letter-spacing:0.068096pt;}
.ls1d_c02153{letter-spacing:0.072352pt;}
.ls11_c02153{letter-spacing:0.076128pt;}
.ls18_c02153{letter-spacing:0.076608pt;}
.ls14_c02153{letter-spacing:0.085120pt;}
.ls13_c02153{letter-spacing:0.096000pt;}
.ls9_c02153{letter-spacing:0.097888pt;}
.ls1a_c02153{letter-spacing:0.102144pt;}
.ls1b_c02153{letter-spacing:0.106400pt;}
.ls20_c02153{letter-spacing:0.110656pt;}
.ls22_c02153{letter-spacing:0.119168pt;}
.ls1f_c02153{letter-spacing:0.123424pt;}
.ls26_c02153{letter-spacing:0.134400pt;}
.ls7_c02153{letter-spacing:0.140544pt;}
.ls10_c02153{letter-spacing:0.144704pt;}
.ls2a_c02153{letter-spacing:0.148960pt;}
.ls30_c02153{letter-spacing:0.160320pt;}
.lsf_c02153{letter-spacing:0.161728pt;}
.lsd_c02153{letter-spacing:0.183008pt;}
.ls8_c02153{letter-spacing:99.840000pt;}
.ls1c_c02153{letter-spacing:101.440000pt;}
.ls2c_c02153{letter-spacing:127.838400pt;}
.ls31_c02153{letter-spacing:129.441600pt;}
.lsc_c02153{letter-spacing:178.480000pt;}
.ws0_c02153{word-spacing:-14.780544pt;}
.ws8_c02153{word-spacing:-0.263872pt;}
.ws7_c02153{word-spacing:-0.242592pt;}
.wsa_c02153{word-spacing:-0.225568pt;}
.ws1a_c02153{word-spacing:-0.204288pt;}
.ws1e_c02153{word-spacing:-0.200032pt;}
.ws1b_c02153{word-spacing:-0.191520pt;}
.ws15_c02153{word-spacing:-0.187264pt;}
.ws19_c02153{word-spacing:-0.183008pt;}
.wsc_c02153{word-spacing:-0.165984pt;}
.ws1f_c02153{word-spacing:-0.153216pt;}
.ws18_c02153{word-spacing:-0.106400pt;}
.ws4_c02153{word-spacing:-0.102400pt;}
.ws20_c02153{word-spacing:-0.097888pt;}
.ws6_c02153{word-spacing:-0.089856pt;}
.ws17_c02153{word-spacing:-0.072352pt;}
.ws5_c02153{word-spacing:-0.006400pt;}
.ws3_c02153{word-spacing:0.000000pt;}
.wsb_c02153{word-spacing:0.005856pt;}
.ws2_c02153{word-spacing:0.012800pt;}
.wsd_c02153{word-spacing:0.096000pt;}
.wse_c02153{word-spacing:0.110400pt;}
.wsf_c02153{word-spacing:0.115200pt;}
.ws12_c02153{word-spacing:1.098048pt;}
.ws14_c02153{word-spacing:1.132096pt;}
.ws13_c02153{word-spacing:1.161888pt;}
.ws10_c02153{word-spacing:5.281696pt;}
.ws11_c02153{word-spacing:5.298720pt;}
.ws1_c02153{word-spacing:52.417280pt;}
.ws1c_c02153{word-spacing:92.284800pt;}
.ws1d_c02153{word-spacing:115.344000pt;}
.ws9_c02153{word-spacing:139.320000pt;}
.ws16_c02153{word-spacing:139.324800pt;}
._2f_c02153{margin-left:-48.595360pt;}
._1_c02153{margin-left:-1.152000pt;}
._15_c02153{width:37.779232pt;}
._2a_c02153{width:43.998400pt;}
._d_c02153{width:45.597824pt;}
._12_c02153{width:55.158400pt;}
._28_c02153{width:60.871840pt;}
._a_c02153{width:64.537280pt;}
._14_c02153{width:67.040000pt;}
._b_c02153{width:68.720160pt;}
._10_c02153{width:74.400000pt;}
._3_c02153{width:75.408000pt;}
._2_c02153{width:78.419200pt;}
._f_c02153{width:80.067200pt;}
._17_c02153{width:81.467456pt;}
._2b_c02153{width:84.564864pt;}
._2d_c02153{width:85.853600pt;}
._c_c02153{width:88.902400pt;}
._2c_c02153{width:91.123168pt;}
._e_c02153{width:92.870560pt;}
._5_c02153{width:94.880000pt;}
._32_c02153{width:96.387200pt;}
._27_c02153{width:97.417152pt;}
._31_c02153{width:99.306816pt;}
._2e_c02153{width:101.774432pt;}
._23_c02153{width:103.200000pt;}
._6_c02153{width:104.905728pt;}
._11_c02153{width:106.048000pt;}
._4_c02153{width:108.640000pt;}
._7_c02153{width:109.845440pt;}
._30_c02153{width:110.815040pt;}
._19_c02153{width:113.979008pt;}
._13_c02153{width:115.206240pt;}
._26_c02153{width:116.398240pt;}
._33_c02153{width:118.441792pt;}
._24_c02153{width:125.354496pt;}
._16_c02153{width:127.840000pt;}
._29_c02153{width:130.299008pt;}
._9_c02153{width:131.829056pt;}
._8_c02153{width:135.249248pt;}
._18_c02153{width:162.314816pt;}
._0_c02153{width:172.800000pt;}
._25_c02153{width:179.072896pt;}
._22_c02153{width:180.476800pt;}
._1d_c02153{width:192.160000pt;}
._1b_c02153{width:252.000000pt;}
._1e_c02153{width:275.648000pt;}
._1c_c02153{width:309.060800pt;}
._20_c02153{width:314.518400pt;}
._1f_c02153{width:373.270400pt;}
._1a_c02153{width:378.480000pt;}
._21_c02153{width:538.040000pt;}
.fs6_c02153{font-size:10.560000pt;}
.fs1_c02153{font-size:21.440000pt;}
.fs4_c02153{font-size:37.440000pt;}
.fs3_c02153{font-size:42.560000pt;}
.fs2_c02153{font-size:48.000000pt;}
.fs7_c02153{font-size:53.440000pt;}
.fs5_c02153{font-size:58.560000pt;}
.fs0_c02153{font-size:64.000000pt;}
.y0_c02153{bottom:0.000000pt;}
.y3_c02153{bottom:50.987067pt;}
.y2_c02153{bottom:69.387067pt;}
.y53_c02153{bottom:112.428667pt;}
.y52_c02153{bottom:129.308587pt;}
.y51_c02153{bottom:146.107987pt;}
.y50_c02153{bottom:162.987907pt;}
.y4f_c02153{bottom:179.867827pt;}
.y4e_c02153{bottom:196.747747pt;}
.y4d_c02153{bottom:213.627667pt;}
.y4c_c02153{bottom:230.427067pt;}
.y4b_c02153{bottom:245.307067pt;}
.y4a_c02153{bottom:252.907067pt;}
.y49_c02153{bottom:253.227467pt;}
.y48_c02153{bottom:268.187200pt;}
.y47_c02153{bottom:268.507067pt;}
.y46_c02153{bottom:283.547067pt;}
.y45_c02153{bottom:283.867067pt;}
.y44_c02153{bottom:298.907067pt;}
.y43_c02153{bottom:299.227467pt;}
.y42_c02153{bottom:314.187200pt;}
.y41_c02153{bottom:314.507067pt;}
.y3e_c02153{bottom:329.547067pt;}
.y3d_c02153{bottom:329.866800pt;}
.y3f_c02153{bottom:329.867067pt;}
.y40_c02153{bottom:330.507067pt;}
.y3c_c02153{bottom:346.427067pt;}
.y3b_c02153{bottom:346.747467pt;}
.y3a_c02153{bottom:364.827200pt;}
.y39_c02153{bottom:365.147200pt;}
.y38_c02153{bottom:383.547067pt;}
.y37_c02153{bottom:400.027200pt;}
.y36_c02153{bottom:400.427067pt;}
.y35_c02153{bottom:418.827200pt;}
.y34_c02153{bottom:435.307067pt;}
.y33_c02153{bottom:435.627467pt;}
.y32_c02153{bottom:453.707067pt;}
.y31_c02153{bottom:454.027467pt;}
.y30_c02153{bottom:472.107067pt;}
.y2f_c02153{bottom:472.427067pt;}
.y2e_c02153{bottom:491.467067pt;}
.y2d_c02153{bottom:507.707067pt;}
.y2c_c02153{bottom:523.467067pt;}
.y2b_c02153{bottom:540.985931pt;}
.y2a_c02153{bottom:553.226187pt;}
.y29_c02153{bottom:565.466443pt;}
.y28_c02153{bottom:577.786499pt;}
.y27_c02153{bottom:590.026755pt;}
.y26_c02153{bottom:602.267011pt;}
.y25_c02153{bottom:614.587067pt;}
.y24_c02153{bottom:628.907067pt;}
.y23_c02153{bottom:642.747067pt;}
.y22_c02153{bottom:656.507067pt;}
.y21_c02153{bottom:670.267067pt;}
.y20_c02153{bottom:684.107067pt;}
.y1e_c02153{bottom:700.107067pt;}
.y1f_c02153{bottom:715.627067pt;}
.y1d_c02153{bottom:730.667067pt;}
.y1c_c02153{bottom:746.827600pt;}
.y1b_c02153{bottom:760.667200pt;}
.y1a_c02153{bottom:774.427067pt;}
.y19_c02153{bottom:774.746667pt;}
.y18_c02153{bottom:791.307067pt;}
.y17_c02153{bottom:791.626667pt;}
.y16_c02153{bottom:808.187067pt;}
.y15_c02153{bottom:808.507067pt;}
.y14_c02153{bottom:825.387067pt;}
.y13_c02153{bottom:841.867067pt;}
.y12_c02153{bottom:842.187067pt;}
.y11_c02153{bottom:861.227067pt;}
.y10_c02153{bottom:877.467067pt;}
.yf_c02153{bottom:892.907067pt;}
.ye_c02153{bottom:911.387067pt;}
.yd_c02153{bottom:919.227067pt;}
.yc_c02153{bottom:919.547067pt;}
.yb_c02153{bottom:936.987067pt;}
.ya_c02153{bottom:953.307067pt;}
.y9_c02153{bottom:968.747067pt;}
.y8_c02153{bottom:985.306723pt;}
.y7_c02153{bottom:991.386571pt;}
.y6_c02153{bottom:997.546819pt;}
.y5_c02153{bottom:1003.707067pt;}
.y4_c02153{bottom:1012.667067pt;}
.y1_c02153{bottom:1060.587067pt;}
.h6_c02153{height:9.379219pt;}
.h3_c02153{height:18.812344pt;}
.h16_c02153{height:19.042656pt;}
.hb_c02153{height:37.343906pt;}
.ha_c02153{height:42.117188pt;}
.h4_c02153{height:42.632812pt;}
.hc_c02153{height:43.077187pt;}
.h12_c02153{height:49.703998pt;}
.h14_c02153{height:49.704531pt;}
.h13_c02153{height:49.705065pt;}
.h10_c02153{height:50.023998pt;}
.hd_c02153{height:50.024531pt;}
.he_c02153{height:50.025065pt;}
.h15_c02153{height:51.382969pt;}
.h9_c02153{height:52.012031pt;}
.hf_c02153{height:53.942435pt;}
.h8_c02153{height:54.252031pt;}
.h11_c02153{height:54.252565pt;}
.h5_c02153{height:55.532031pt;}
.h7_c02153{height:55.852031pt;}
.h2_c02153{height:56.156250pt;}
.h1_c02153{height:56.843750pt;}
.h0_c02153{height:1122.666667pt;}
.w1_c02153{width:793.333333pt;}
.w0_c02153{width:793.626667pt;}
.x0_c02153{left:0.000000pt;}
.x1_c02153{left:113.440000pt;}
.x7_c02153{left:119.600000pt;}
.x3_c02153{left:120.560000pt;}
.x4_c02153{left:127.920000pt;}
.x5_c02153{left:146.720000pt;}
.x6_c02153{left:196.160000pt;}
.x8_c02153{left:295.200000pt;}
.x9_c02153{left:315.360000pt;}
.x2_c02153{left:384.960000pt;}
.xa_c02153{left:472.719600pt;}
.xb_c02153{left:638.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_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_f56df83c41b49bd7c2cd96a9.woff2')format("woff");}.ff1_c02154{font-family:ff1_c02154;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02154;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.v4_c02154{vertical-align:-3.960000px;}
.v3_c02154{vertical-align:-1.799400px;}
.v0_c02154{vertical-align:0.000000px;}
.v1_c02154{vertical-align:1.080000px;}
.v5_c02154{vertical-align:2.520000px;}
.v6_c02154{vertical-align:3.960000px;}
.v2_c02154{vertical-align:32.040000px;}
.ls24_c02154{letter-spacing:-0.178200px;}
.ls20_c02154{letter-spacing:-0.118800px;}
.ls22_c02154{letter-spacing:-0.102600px;}
.ls21_c02154{letter-spacing:-0.086400px;}
.ls2b_c02154{letter-spacing:-0.086184px;}
.ls27_c02154{letter-spacing:-0.043200px;}
.ls29_c02154{letter-spacing:-0.019152px;}
.ls23_c02154{letter-spacing:-0.016200px;}
.ls1e_c02154{letter-spacing:-0.014400px;}
.ls28_c02154{letter-spacing:-0.010800px;}
.ls25_c02154{letter-spacing:-0.009576px;}
.ls2d_c02154{letter-spacing:-0.004788px;}
.ls1f_c02154{letter-spacing:0.000000px;}
.ls1_c02154{letter-spacing:0.006588px;}
.ls8_c02154{letter-spacing:0.010800px;}
.ls11_c02154{letter-spacing:0.012636px;}
.ls2e_c02154{letter-spacing:0.014400px;}
.ls7_c02154{letter-spacing:0.016200px;}
.ls1a_c02154{letter-spacing:0.019152px;}
.ls6_c02154{letter-spacing:0.027000px;}
.ls10_c02154{letter-spacing:0.028728px;}
.ls4_c02154{letter-spacing:0.032400px;}
.ls9_c02154{letter-spacing:0.037800px;}
.lsd_c02154{letter-spacing:0.043092px;}
.ls5_c02154{letter-spacing:0.043200px;}
.ls1d_c02154{letter-spacing:0.046116px;}
.ls0_c02154{letter-spacing:0.059292px;}
.lsb_c02154{letter-spacing:0.067032px;}
.ls2_c02154{letter-spacing:0.070200px;}
.lse_c02154{letter-spacing:0.076608px;}
.ls17_c02154{letter-spacing:0.081396px;}
.lsa_c02154{letter-spacing:0.086184px;}
.ls3_c02154{letter-spacing:0.095760px;}
.lsc_c02154{letter-spacing:0.114912px;}
.lsf_c02154{letter-spacing:0.119700px;}
.ls18_c02154{letter-spacing:0.124488px;}
.ls19_c02154{letter-spacing:0.134064px;}
.ls26_c02154{letter-spacing:0.151200px;}
.ls12_c02154{letter-spacing:0.158112px;}
.ls16_c02154{letter-spacing:0.162792px;}
.ls2a_c02154{letter-spacing:0.167580px;}
.ls1b_c02154{letter-spacing:0.178200px;}
.ls14_c02154{letter-spacing:0.181944px;}
.ls1c_c02154{letter-spacing:104.943600px;}
.ls13_c02154{letter-spacing:112.320000px;}
.ls2c_c02154{letter-spacing:143.818200px;}
.ls15_c02154{letter-spacing:200.790000px;}
.sc__c02154{text-shadow:none;}
.sc0_c02154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02154{-webkit-text-stroke:0px transparent;}
.sc0_c02154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02154{word-spacing:-16.628112px;}
.ws3_c02154{word-spacing:-13.500000px;}
.ws17_c02154{word-spacing:-0.272916px;}
.ws19_c02154{word-spacing:-0.253764px;}
.ws1c_c02154{word-spacing:-0.225036px;}
.ws1b_c02154{word-spacing:-0.215460px;}
.ws14_c02154{word-spacing:-0.210672px;}
.wse_c02154{word-spacing:-0.189000px;}
.ws7_c02154{word-spacing:-0.186732px;}
.ws1e_c02154{word-spacing:-0.172368px;}
.ws20_c02154{word-spacing:-0.119700px;}
.ws1f_c02154{word-spacing:-0.110124px;}
.ws16_c02154{word-spacing:-0.101088px;}
.ws1a_c02154{word-spacing:-0.081396px;}
.ws15_c02154{word-spacing:-0.043200px;}
.ws21_c02154{word-spacing:-0.014400px;}
.ws5_c02154{word-spacing:0.000000px;}
.ws4_c02154{word-spacing:0.014400px;}
.ws6_c02154{word-spacing:0.032940px;}
.ws22_c02154{word-spacing:0.046116px;}
.ws8_c02154{word-spacing:0.145800px;}
.ws9_c02154{word-spacing:0.151200px;}
.wsb_c02154{word-spacing:0.162000px;}
.wsd_c02154{word-spacing:0.194400px;}
.wsa_c02154{word-spacing:0.264600px;}
.wsc_c02154{word-spacing:0.280800px;}
.ws11_c02154{word-spacing:1.235304px;}
.ws13_c02154{word-spacing:1.273608px;}
.ws12_c02154{word-spacing:1.307124px;}
.wsf_c02154{word-spacing:5.941908px;}
.ws10_c02154{word-spacing:5.961060px;}
.ws1_c02154{word-spacing:48.169440px;}
.ws2_c02154{word-spacing:75.169440px;}
.ws18_c02154{word-spacing:156.735000px;}
.ws1d_c02154{word-spacing:156.740400px;}
._e_c02154{margin-left:-1.230516px;}
._9_c02154{width:1.026000px;}
._24_c02154{width:42.481800px;}
._19_c02154{width:51.297552px;}
._1e_c02154{width:62.053200px;}
._1c_c02154{width:65.340000px;}
._23_c02154{width:67.635000px;}
._16_c02154{width:72.604440px;}
._20_c02154{width:75.420000px;}
._17_c02154{width:77.310180px;}
._21_c02154{width:84.060000px;}
._10_c02154{width:85.194000px;}
._f_c02154{width:87.861600px;}
._1a_c02154{width:91.288440px;}
._28_c02154{width:94.564296px;}
._18_c02154{width:100.375200px;}
._1d_c02154{width:103.093200px;}
._27_c02154{width:104.937588px;}
._2e_c02154{width:108.435600px;}
._22_c02154{width:109.594296px;}
._2d_c02154{width:111.720168px;}
._2b_c02154{width:114.095016px;}
._12_c02154{width:115.740000px;}
._13_c02154{width:118.378944px;}
._2a_c02154{width:120.067668px;}
._11_c02154{width:122.220000px;}
._2c_c02154{width:124.666920px;}
._29_c02154{width:128.162160px;}
._1f_c02154{width:129.607020px;}
._2f_c02154{width:133.247016px;}
._15_c02154{width:140.027688px;}
._26_c02154{width:143.820000px;}
._25_c02154{width:146.586384px;}
._14_c02154{width:152.431524px;}
._0_c02154{width:194.400000px;}
._1b_c02154{width:200.964168px;}
._d_c02154{width:203.036400px;}
._4_c02154{width:216.180000px;}
._2_c02154{width:283.500000px;}
._6_c02154{width:303.170400px;}
._5_c02154{width:310.104000px;}
._3_c02154{width:324.775800px;}
._8_c02154{width:382.210200px;}
._a_c02154{width:451.783800px;}
._b_c02154{width:482.234400px;}
._7_c02154{width:483.924600px;}
._1_c02154{width:578.156400px;}
._c_c02154{width:799.695000px;}
.fc0_c02154{color:rgb(0,0,0);}
.fs6_c02154{font-size:11.880000px;}
.fs4_c02154{font-size:24.120000px;}
.fs5_c02154{font-size:42.120000px;}
.fs3_c02154{font-size:47.880000px;}
.fs2_c02154{font-size:54.000000px;}
.fs1_c02154{font-size:65.880000px;}
.fs0_c02154{font-size:72.000000px;}
.y0_c02154{bottom:0.000000px;}
.y3_c02154{bottom:57.360450px;}
.y2_c02154{bottom:78.060450px;}
.y4e_c02154{bottom:125.130000px;}
.y4d_c02154{bottom:140.610450px;}
.y4c_c02154{bottom:156.089874px;}
.y4b_c02154{bottom:169.860162px;}
.y4a_c02154{bottom:183.630450px;}
.y49_c02154{bottom:199.830450px;}
.y48_c02154{bottom:215.310450px;}
.y47_c02154{bottom:230.880450px;}
.y46_c02154{bottom:246.360600px;}
.y45_c02154{bottom:261.930450px;}
.y44_c02154{bottom:277.410450px;}
.y43_c02154{bottom:292.980450px;}
.y42_c02154{bottom:308.460600px;}
.y40_c02154{bottom:326.550450px;}
.y41_c02154{bottom:343.920450px;}
.y3f_c02154{bottom:360.840450px;}
.y3e_c02154{bottom:379.020450px;}
.y3d_c02154{bottom:394.590000px;}
.y3c_c02154{bottom:410.070450px;}
.y3b_c02154{bottom:425.640450px;}
.y3a_c02154{bottom:426.000900px;}
.y39_c02154{bottom:446.340600px;}
.y38_c02154{bottom:446.700900px;}
.y37_c02154{bottom:467.040600px;}
.y36_c02154{bottom:467.401050px;}
.y35_c02154{bottom:487.740450px;}
.y34_c02154{bottom:488.100900px;}
.y33_c02154{bottom:508.440600px;}
.y32_c02154{bottom:508.800450px;}
.y31_c02154{bottom:529.500450px;}
.y30_c02154{bottom:548.130450px;}
.y2f_c02154{bottom:548.490450px;}
.y2e_c02154{bottom:569.820450px;}
.y2d_c02154{bottom:588.090450px;}
.y2c_c02154{bottom:605.460450px;}
.y2b_c02154{bottom:626.250450px;}
.y2a_c02154{bottom:635.070450px;}
.y29_c02154{bottom:635.430900px;}
.y28_c02154{bottom:655.770450px;}
.y27_c02154{bottom:656.130900px;}
.y26_c02154{bottom:676.470450px;}
.y25_c02154{bottom:676.830900px;}
.y24_c02154{bottom:697.170450px;}
.y23_c02154{bottom:697.530900px;}
.y22_c02154{bottom:717.870450px;}
.y21_c02154{bottom:718.230450px;}
.y20_c02154{bottom:738.930450px;}
.y1f_c02154{bottom:757.560450px;}
.y1e_c02154{bottom:757.920450px;}
.y1d_c02154{bottom:778.620450px;}
.y1c_c02154{bottom:797.250450px;}
.y1b_c02154{bottom:797.610900px;}
.y1a_c02154{bottom:817.950450px;}
.y19_c02154{bottom:818.310900px;}
.y18_c02154{bottom:838.650450px;}
.y17_c02154{bottom:839.010450px;}
.y16_c02154{bottom:860.340450px;}
.y15_c02154{bottom:878.700450px;}
.y14_c02154{bottom:896.070450px;}
.y13_c02154{bottom:914.610450px;}
.y12_c02154{bottom:922.979811px;}
.y11_c02154{bottom:936.750099px;}
.y10_c02154{bottom:950.520387px;}
.yf_c02154{bottom:964.380450px;}
.ye_c02154{bottom:980.490450px;}
.yd_c02154{bottom:996.060450px;}
.yc_c02154{bottom:1011.540450px;}
.yb_c02154{bottom:1027.110450px;}
.ya_c02154{bottom:1042.590450px;}
.y9_c02154{bottom:1058.160450px;}
.y8_c02154{bottom:1073.640450px;}
.y7_c02154{bottom:1089.210450px;}
.y5_c02154{bottom:1107.210450px;}
.y6_c02154{bottom:1124.580450px;}
.y4_c02154{bottom:1141.500450px;}
.y1_c02154{bottom:1193.160450px;}
.he_c02154{height:10.551621px;}
.h9_c02154{height:21.163887px;}
.h5_c02154{height:42.011895px;}
.h4_c02154{height:47.381836px;}
.h7_c02154{height:47.961914px;}
.h10_c02154{height:48.461236px;}
.h6_c02154{height:48.461836px;}
.h3_c02154{height:58.513535px;}
.hb_c02154{height:61.033535px;}
.hc_c02154{height:61.393535px;}
.hf_c02154{height:62.472935px;}
.ha_c02154{height:62.473535px;}
.hd_c02154{height:62.833535px;}
.h2_c02154{height:63.175781px;}
.h1_c02154{height:63.949219px;}
.h8_c02154{height:79.421836px;}
.h11_c02154{height:79.781236px;}
.h0_c02154{height:1263.000000px;}
.w1_c02154{width:892.500000px;}
.w0_c02154{width:892.830000px;}
.x0_c02154{left:0.000000px;}
.x1_c02154{left:127.620000px;}
.x3_c02154{left:134.550000px;}
.x6_c02154{left:135.630000px;}
.x7_c02154{left:143.910000px;}
.x8_c02154{left:165.060000px;}
.x9_c02154{left:220.680000px;}
.x4_c02154{left:380.700000px;}
.x5_c02154{left:403.380000px;}
.x2_c02154{left:433.080000px;}
@media print{
.v4_c02154{vertical-align:-3.520000pt;}
.v3_c02154{vertical-align:-1.599467pt;}
.v0_c02154{vertical-align:0.000000pt;}
.v1_c02154{vertical-align:0.960000pt;}
.v5_c02154{vertical-align:2.240000pt;}
.v6_c02154{vertical-align:3.520000pt;}
.v2_c02154{vertical-align:28.480000pt;}
.ls24_c02154{letter-spacing:-0.158400pt;}
.ls20_c02154{letter-spacing:-0.105600pt;}
.ls22_c02154{letter-spacing:-0.091200pt;}
.ls21_c02154{letter-spacing:-0.076800pt;}
.ls2b_c02154{letter-spacing:-0.076608pt;}
.ls27_c02154{letter-spacing:-0.038400pt;}
.ls29_c02154{letter-spacing:-0.017024pt;}
.ls23_c02154{letter-spacing:-0.014400pt;}
.ls1e_c02154{letter-spacing:-0.012800pt;}
.ls28_c02154{letter-spacing:-0.009600pt;}
.ls25_c02154{letter-spacing:-0.008512pt;}
.ls2d_c02154{letter-spacing:-0.004256pt;}
.ls1f_c02154{letter-spacing:0.000000pt;}
.ls1_c02154{letter-spacing:0.005856pt;}
.ls8_c02154{letter-spacing:0.009600pt;}
.ls11_c02154{letter-spacing:0.011232pt;}
.ls2e_c02154{letter-spacing:0.012800pt;}
.ls7_c02154{letter-spacing:0.014400pt;}
.ls1a_c02154{letter-spacing:0.017024pt;}
.ls6_c02154{letter-spacing:0.024000pt;}
.ls10_c02154{letter-spacing:0.025536pt;}
.ls4_c02154{letter-spacing:0.028800pt;}
.ls9_c02154{letter-spacing:0.033600pt;}
.lsd_c02154{letter-spacing:0.038304pt;}
.ls5_c02154{letter-spacing:0.038400pt;}
.ls1d_c02154{letter-spacing:0.040992pt;}
.ls0_c02154{letter-spacing:0.052704pt;}
.lsb_c02154{letter-spacing:0.059584pt;}
.ls2_c02154{letter-spacing:0.062400pt;}
.lse_c02154{letter-spacing:0.068096pt;}
.ls17_c02154{letter-spacing:0.072352pt;}
.lsa_c02154{letter-spacing:0.076608pt;}
.ls3_c02154{letter-spacing:0.085120pt;}
.lsc_c02154{letter-spacing:0.102144pt;}
.lsf_c02154{letter-spacing:0.106400pt;}
.ls18_c02154{letter-spacing:0.110656pt;}
.ls19_c02154{letter-spacing:0.119168pt;}
.ls26_c02154{letter-spacing:0.134400pt;}
.ls12_c02154{letter-spacing:0.140544pt;}
.ls16_c02154{letter-spacing:0.144704pt;}
.ls2a_c02154{letter-spacing:0.148960pt;}
.ls1b_c02154{letter-spacing:0.158400pt;}
.ls14_c02154{letter-spacing:0.161728pt;}
.ls1c_c02154{letter-spacing:93.283200pt;}
.ls13_c02154{letter-spacing:99.840000pt;}
.ls2c_c02154{letter-spacing:127.838400pt;}
.ls15_c02154{letter-spacing:178.480000pt;}
.ws0_c02154{word-spacing:-14.780544pt;}
.ws3_c02154{word-spacing:-12.000000pt;}
.ws17_c02154{word-spacing:-0.242592pt;}
.ws19_c02154{word-spacing:-0.225568pt;}
.ws1c_c02154{word-spacing:-0.200032pt;}
.ws1b_c02154{word-spacing:-0.191520pt;}
.ws14_c02154{word-spacing:-0.187264pt;}
.wse_c02154{word-spacing:-0.168000pt;}
.ws7_c02154{word-spacing:-0.165984pt;}
.ws1e_c02154{word-spacing:-0.153216pt;}
.ws20_c02154{word-spacing:-0.106400pt;}
.ws1f_c02154{word-spacing:-0.097888pt;}
.ws16_c02154{word-spacing:-0.089856pt;}
.ws1a_c02154{word-spacing:-0.072352pt;}
.ws15_c02154{word-spacing:-0.038400pt;}
.ws21_c02154{word-spacing:-0.012800pt;}
.ws5_c02154{word-spacing:0.000000pt;}
.ws4_c02154{word-spacing:0.012800pt;}
.ws6_c02154{word-spacing:0.029280pt;}
.ws22_c02154{word-spacing:0.040992pt;}
.ws8_c02154{word-spacing:0.129600pt;}
.ws9_c02154{word-spacing:0.134400pt;}
.wsb_c02154{word-spacing:0.144000pt;}
.wsd_c02154{word-spacing:0.172800pt;}
.wsa_c02154{word-spacing:0.235200pt;}
.wsc_c02154{word-spacing:0.249600pt;}
.ws11_c02154{word-spacing:1.098048pt;}
.ws13_c02154{word-spacing:1.132096pt;}
.ws12_c02154{word-spacing:1.161888pt;}
.wsf_c02154{word-spacing:5.281696pt;}
.ws10_c02154{word-spacing:5.298720pt;}
.ws1_c02154{word-spacing:42.817280pt;}
.ws2_c02154{word-spacing:66.817280pt;}
.ws18_c02154{word-spacing:139.320000pt;}
.ws1d_c02154{word-spacing:139.324800pt;}
._e_c02154{margin-left:-1.093792pt;}
._9_c02154{width:0.912000pt;}
._24_c02154{width:37.761600pt;}
._19_c02154{width:45.597824pt;}
._1e_c02154{width:55.158400pt;}
._1c_c02154{width:58.080000pt;}
._23_c02154{width:60.120000pt;}
._16_c02154{width:64.537280pt;}
._20_c02154{width:67.040000pt;}
._17_c02154{width:68.720160pt;}
._21_c02154{width:74.720000pt;}
._10_c02154{width:75.728000pt;}
._f_c02154{width:78.099200pt;}
._1a_c02154{width:81.145280pt;}
._28_c02154{width:84.057152pt;}
._18_c02154{width:89.222400pt;}
._1d_c02154{width:91.638400pt;}
._27_c02154{width:93.277856pt;}
._2e_c02154{width:96.387200pt;}
._22_c02154{width:97.417152pt;}
._2d_c02154{width:99.306816pt;}
._2b_c02154{width:101.417792pt;}
._12_c02154{width:102.880000pt;}
._13_c02154{width:105.225728pt;}
._2a_c02154{width:106.726816pt;}
._11_c02154{width:108.640000pt;}
._2c_c02154{width:110.815040pt;}
._29_c02154{width:113.921920pt;}
._1f_c02154{width:115.206240pt;}
._2f_c02154{width:118.441792pt;}
._15_c02154{width:124.469056pt;}
._26_c02154{width:127.840000pt;}
._25_c02154{width:130.299008pt;}
._14_c02154{width:135.494688pt;}
._0_c02154{width:172.800000pt;}
._1b_c02154{width:178.634816pt;}
._d_c02154{width:180.476800pt;}
._4_c02154{width:192.160000pt;}
._2_c02154{width:252.000000pt;}
._6_c02154{width:269.484800pt;}
._5_c02154{width:275.648000pt;}
._3_c02154{width:288.689600pt;}
._8_c02154{width:339.742400pt;}
._a_c02154{width:401.585600pt;}
._b_c02154{width:428.652800pt;}
._7_c02154{width:430.155200pt;}
._1_c02154{width:513.916800pt;}
._c_c02154{width:710.840000pt;}
.fs6_c02154{font-size:10.560000pt;}
.fs4_c02154{font-size:21.440000pt;}
.fs5_c02154{font-size:37.440000pt;}
.fs3_c02154{font-size:42.560000pt;}
.fs2_c02154{font-size:48.000000pt;}
.fs1_c02154{font-size:58.560000pt;}
.fs0_c02154{font-size:64.000000pt;}
.y0_c02154{bottom:0.000000pt;}
.y3_c02154{bottom:50.987067pt;}
.y2_c02154{bottom:69.387067pt;}
.y4e_c02154{bottom:111.226667pt;}
.y4d_c02154{bottom:124.987067pt;}
.y4c_c02154{bottom:138.746555pt;}
.y4b_c02154{bottom:150.986811pt;}
.y4a_c02154{bottom:163.227067pt;}
.y49_c02154{bottom:177.627067pt;}
.y48_c02154{bottom:191.387067pt;}
.y47_c02154{bottom:205.227067pt;}
.y46_c02154{bottom:218.987200pt;}
.y45_c02154{bottom:232.827067pt;}
.y44_c02154{bottom:246.587067pt;}
.y43_c02154{bottom:260.427067pt;}
.y42_c02154{bottom:274.187200pt;}
.y40_c02154{bottom:290.267067pt;}
.y41_c02154{bottom:305.707067pt;}
.y3f_c02154{bottom:320.747067pt;}
.y3e_c02154{bottom:336.907067pt;}
.y3d_c02154{bottom:350.746667pt;}
.y3c_c02154{bottom:364.507067pt;}
.y3b_c02154{bottom:378.347067pt;}
.y3a_c02154{bottom:378.667467pt;}
.y39_c02154{bottom:396.747200pt;}
.y38_c02154{bottom:397.067467pt;}
.y37_c02154{bottom:415.147200pt;}
.y36_c02154{bottom:415.467600pt;}
.y35_c02154{bottom:433.547067pt;}
.y34_c02154{bottom:433.867467pt;}
.y33_c02154{bottom:451.947200pt;}
.y32_c02154{bottom:452.267067pt;}
.y31_c02154{bottom:470.667067pt;}
.y30_c02154{bottom:487.227067pt;}
.y2f_c02154{bottom:487.547067pt;}
.y2e_c02154{bottom:506.507067pt;}
.y2d_c02154{bottom:522.747067pt;}
.y2c_c02154{bottom:538.187067pt;}
.y2b_c02154{bottom:556.667067pt;}
.y2a_c02154{bottom:564.507067pt;}
.y29_c02154{bottom:564.827467pt;}
.y28_c02154{bottom:582.907067pt;}
.y27_c02154{bottom:583.227467pt;}
.y26_c02154{bottom:601.307067pt;}
.y25_c02154{bottom:601.627467pt;}
.y24_c02154{bottom:619.707067pt;}
.y23_c02154{bottom:620.027467pt;}
.y22_c02154{bottom:638.107067pt;}
.y21_c02154{bottom:638.427067pt;}
.y20_c02154{bottom:656.827067pt;}
.y1f_c02154{bottom:673.387067pt;}
.y1e_c02154{bottom:673.707067pt;}
.y1d_c02154{bottom:692.107067pt;}
.y1c_c02154{bottom:708.667067pt;}
.y1b_c02154{bottom:708.987467pt;}
.y1a_c02154{bottom:727.067067pt;}
.y19_c02154{bottom:727.387467pt;}
.y18_c02154{bottom:745.467067pt;}
.y17_c02154{bottom:745.787067pt;}
.y16_c02154{bottom:764.747067pt;}
.y15_c02154{bottom:781.067067pt;}
.y14_c02154{bottom:796.507067pt;}
.y13_c02154{bottom:812.987067pt;}
.y12_c02154{bottom:820.426499pt;}
.y11_c02154{bottom:832.666755pt;}
.y10_c02154{bottom:844.907011pt;}
.yf_c02154{bottom:857.227067pt;}
.ye_c02154{bottom:871.547067pt;}
.yd_c02154{bottom:885.387067pt;}
.yc_c02154{bottom:899.147067pt;}
.yb_c02154{bottom:912.987067pt;}
.ya_c02154{bottom:926.747067pt;}
.y9_c02154{bottom:940.587067pt;}
.y8_c02154{bottom:954.347067pt;}
.y7_c02154{bottom:968.187067pt;}
.y5_c02154{bottom:984.187067pt;}
.y6_c02154{bottom:999.627067pt;}
.y4_c02154{bottom:1014.667067pt;}
.y1_c02154{bottom:1060.587067pt;}
.he_c02154{height:9.379219pt;}
.h9_c02154{height:18.812344pt;}
.h5_c02154{height:37.343906pt;}
.h4_c02154{height:42.117188pt;}
.h7_c02154{height:42.632812pt;}
.h10_c02154{height:43.076654pt;}
.h6_c02154{height:43.077187pt;}
.h3_c02154{height:52.012031pt;}
.hb_c02154{height:54.252031pt;}
.hc_c02154{height:54.572031pt;}
.hf_c02154{height:55.531498pt;}
.ha_c02154{height:55.532031pt;}
.hd_c02154{height:55.852031pt;}
.h2_c02154{height:56.156250pt;}
.h1_c02154{height:56.843750pt;}
.h8_c02154{height:70.597188pt;}
.h11_c02154{height:70.916654pt;}
.h0_c02154{height:1122.666667pt;}
.w1_c02154{width:793.333333pt;}
.w0_c02154{width:793.626667pt;}
.x0_c02154{left:0.000000pt;}
.x1_c02154{left:113.440000pt;}
.x3_c02154{left:119.600000pt;}
.x6_c02154{left:120.560000pt;}
.x7_c02154{left:127.920000pt;}
.x8_c02154{left:146.720000pt;}
.x9_c02154{left:196.160000pt;}
.x4_c02154{left:338.400000pt;}
.x5_c02154{left:358.560000pt;}
.x2_c02154{left:384.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_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_bfd32775e21c737338a5febf.woff2')format("woff");}.ff1_c02155{font-family:ff1_c02155;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02155;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.vb_c02155{vertical-align:-10.438200px;}
.vc_c02155{vertical-align:-6.839400px;}
.v3_c02155{vertical-align:-4.320000px;}
.v2_c02155{vertical-align:-2.880000px;}
.v1_c02155{vertical-align:-1.440000px;}
.v0_c02155{vertical-align:0.000000px;}
.v6_c02155{vertical-align:1.080000px;}
.v4_c02155{vertical-align:2.160000px;}
.v5_c02155{vertical-align:4.320000px;}
.v8_c02155{vertical-align:5.400000px;}
.va_c02155{vertical-align:7.560000px;}
.v9_c02155{vertical-align:12.960000px;}
.v7_c02155{vertical-align:32.040000px;}
.ls30_c02155{letter-spacing:-0.178200px;}
.ls2c_c02155{letter-spacing:-0.118800px;}
.ls2f_c02155{letter-spacing:-0.102600px;}
.ls2d_c02155{letter-spacing:-0.086400px;}
.ls28_c02155{letter-spacing:-0.086184px;}
.ls24_c02155{letter-spacing:-0.043200px;}
.ls33_c02155{letter-spacing:-0.032400px;}
.ls26_c02155{letter-spacing:-0.019152px;}
.ls2e_c02155{letter-spacing:-0.016200px;}
.ls20_c02155{letter-spacing:-0.014400px;}
.ls25_c02155{letter-spacing:-0.010800px;}
.ls2a_c02155{letter-spacing:-0.009576px;}
.ls2b_c02155{letter-spacing:-0.004788px;}
.ls21_c02155{letter-spacing:0.000000px;}
.ls11_c02155{letter-spacing:0.005400px;}
.ls10_c02155{letter-spacing:0.006588px;}
.ls0_c02155{letter-spacing:0.010800px;}
.ls3_c02155{letter-spacing:0.012636px;}
.ls22_c02155{letter-spacing:0.014400px;}
.ls14_c02155{letter-spacing:0.016200px;}
.lse_c02155{letter-spacing:0.019152px;}
.ls13_c02155{letter-spacing:0.027000px;}
.ls2_c02155{letter-spacing:0.028728px;}
.ls4_c02155{letter-spacing:0.032400px;}
.lsa_c02155{letter-spacing:0.037800px;}
.ls1_c02155{letter-spacing:0.043092px;}
.ls9_c02155{letter-spacing:0.043200px;}
.ls1f_c02155{letter-spacing:0.048600px;}
.ls1d_c02155{letter-spacing:0.054000px;}
.lsf_c02155{letter-spacing:0.059292px;}
.ls1b_c02155{letter-spacing:0.065880px;}
.ls15_c02155{letter-spacing:0.067032px;}
.ls1e_c02155{letter-spacing:0.070200px;}
.ls18_c02155{letter-spacing:0.076608px;}
.ls7_c02155{letter-spacing:0.081396px;}
.ls12_c02155{letter-spacing:0.095760px;}
.ls16_c02155{letter-spacing:0.100548px;}
.ls1c_c02155{letter-spacing:0.108000px;}
.lsc_c02155{letter-spacing:0.124488px;}
.lsd_c02155{letter-spacing:0.134064px;}
.ls23_c02155{letter-spacing:0.151200px;}
.ls5_c02155{letter-spacing:0.158112px;}
.ls1a_c02155{letter-spacing:0.162792px;}
.ls27_c02155{letter-spacing:0.167580px;}
.ls8_c02155{letter-spacing:0.181944px;}
.ls31_c02155{letter-spacing:0.268128px;}
.ls17_c02155{letter-spacing:112.680000px;}
.ls6_c02155{letter-spacing:113.040000px;}
.ls32_c02155{letter-spacing:144.180000px;}
.ls29_c02155{letter-spacing:144.541800px;}
.ls19_c02155{letter-spacing:156.778200px;}
.lsb_c02155{letter-spacing:200.790000px;}
.sc__c02155{text-shadow:none;}
.sc0_c02155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02155{-webkit-text-stroke:0px transparent;}
.sc0_c02155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02155{word-spacing:-16.628112px;}
.ws3_c02155{word-spacing:-13.467600px;}
.ws8_c02155{word-spacing:-0.272916px;}
.ws20_c02155{word-spacing:-0.253764px;}
.wsc_c02155{word-spacing:-0.225036px;}
.wsb_c02155{word-spacing:-0.215460px;}
.ws1f_c02155{word-spacing:-0.191520px;}
.ws18_c02155{word-spacing:-0.189000px;}
.ws12_c02155{word-spacing:-0.186732px;}
.wse_c02155{word-spacing:-0.172368px;}
.ws10_c02155{word-spacing:-0.119700px;}
.wsf_c02155{word-spacing:-0.110124px;}
.ws7_c02155{word-spacing:-0.101088px;}
.ws9_c02155{word-spacing:-0.081396px;}
.ws6_c02155{word-spacing:-0.014400px;}
.ws5_c02155{word-spacing:0.000000px;}
.ws4_c02155{word-spacing:0.014400px;}
.ws21_c02155{word-spacing:0.026352px;}
.ws11_c02155{word-spacing:0.032940px;}
.ws23_c02155{word-spacing:0.108000px;}
.ws22_c02155{word-spacing:0.124200px;}
.ws24_c02155{word-spacing:0.129600px;}
.ws13_c02155{word-spacing:0.145800px;}
.ws14_c02155{word-spacing:0.151200px;}
.ws16_c02155{word-spacing:0.162000px;}
.ws17_c02155{word-spacing:0.194400px;}
.ws15_c02155{word-spacing:0.264600px;}
.ws19_c02155{word-spacing:0.280800px;}
.ws1a_c02155{word-spacing:0.536256px;}
.ws1b_c02155{word-spacing:0.550620px;}
.ws1c_c02155{word-spacing:2.724372px;}
.ws1e_c02155{word-spacing:2.748312px;}
.ws1d_c02155{word-spacing:2.762676px;}
.ws2_c02155{word-spacing:48.169440px;}
.ws1_c02155{word-spacing:75.169440px;}
.wsa_c02155{word-spacing:156.735000px;}
.wsd_c02155{word-spacing:156.740400px;}
._f_c02155{margin-left:-1.240380px;}
._28_c02155{width:1.026000px;}
._16_c02155{width:42.481800px;}
._b_c02155{width:50.937552px;}
._10_c02155{width:62.447400px;}
._e_c02155{width:65.340000px;}
._15_c02155{width:67.996800px;}
._8_c02155{width:72.604440px;}
._12_c02155{width:75.420000px;}
._9_c02155{width:77.310180px;}
._13_c02155{width:83.700000px;}
._2_c02155{width:84.834000px;}
._1_c02155{width:88.221600px;}
._2c_c02155{width:91.288440px;}
._d_c02155{width:94.564296px;}
._a_c02155{width:99.655200px;}
._1a_c02155{width:103.464000px;}
._c_c02155{width:104.575140px;}
._1d_c02155{width:108.435600px;}
._2e_c02155{width:109.594296px;}
._1c_c02155{width:111.720168px;}
._19_c02155{width:114.095016px;}
._4_c02155{width:115.740000px;}
._5_c02155{width:118.378944px;}
._18_c02155{width:120.067668px;}
._3_c02155{width:122.220000px;}
._1b_c02155{width:124.666920px;}
._14_c02155{width:128.162160px;}
._11_c02155{width:129.607020px;}
._1e_c02155{width:133.247016px;}
._7_c02155{width:140.027688px;}
._17_c02155{width:144.540000px;}
._30_c02155{width:146.586384px;}
._6_c02155{width:152.791524px;}
._36_c02155{width:176.036400px;}
._0_c02155{width:194.400000px;}
._2d_c02155{width:200.964168px;}
._2b_c02155{width:203.036400px;}
._22_c02155{width:216.180000px;}
._2f_c02155{width:224.785800px;}
._20_c02155{width:283.500000px;}
._24_c02155{width:303.170400px;}
._23_c02155{width:310.104000px;}
._21_c02155{width:324.775800px;}
._33_c02155{width:347.693400px;}
._34_c02155{width:353.833200px;}
._26_c02155{width:382.210200px;}
._32_c02155{width:419.929200px;}
._31_c02155{width:425.790000px;}
._29_c02155{width:451.783800px;}
._27_c02155{width:482.234400px;}
._25_c02155{width:483.924600px;}
._1f_c02155{width:560.692800px;}
._35_c02155{width:605.295000px;}
._2a_c02155{width:799.695000px;}
.fc0_c02155{color:rgb(0,0,0);}
.fs3_c02155{font-size:42.120000px;}
.fs2_c02155{font-size:47.880000px;}
.fs1_c02155{font-size:54.000000px;}
.fs4_c02155{font-size:65.880000px;}
.fs0_c02155{font-size:72.000000px;}
.y0_c02155{bottom:0.000000px;}
.y3_c02155{bottom:57.360450px;}
.y2_c02155{bottom:78.060450px;}
.y4b_c02155{bottom:120.809700px;}
.y4a_c02155{bottom:136.290150px;}
.y49_c02155{bottom:151.859700px;}
.y48_c02155{bottom:167.340150px;}
.y47_c02155{bottom:182.909700px;}
.y46_c02155{bottom:198.390150px;}
.y45_c02155{bottom:213.870600px;}
.y44_c02155{bottom:229.349874px;}
.y43_c02155{bottom:243.120162px;}
.y42_c02155{bottom:256.890450px;}
.y41_c02155{bottom:273.090450px;}
.y40_c02155{bottom:288.570450px;}
.y3f_c02155{bottom:304.140450px;}
.y3e_c02155{bottom:319.620450px;}
.y3d_c02155{bottom:335.190450px;}
.y3b_c02155{bottom:353.190450px;}
.y3c_c02155{bottom:370.650450px;}
.y3a_c02155{bottom:387.480450px;}
.y39_c02155{bottom:405.750450px;}
.y38_c02155{bottom:421.230900px;}
.y37_c02155{bottom:436.800450px;}
.y36_c02155{bottom:452.280600px;}
.y35_c02155{bottom:452.730450px;}
.y34_c02155{bottom:473.430600px;}
.y33_c02155{bottom:491.970450px;}
.y32_c02155{bottom:492.331350px;}
.y31_c02155{bottom:512.670450px;}
.y30_c02155{bottom:513.031350px;}
.y2f_c02155{bottom:533.370450px;}
.y2e_c02155{bottom:533.730450px;}
.y2d_c02155{bottom:555.150450px;}
.y2c_c02155{bottom:573.420450px;}
.y2b_c02155{bottom:590.790450px;}
.y2a_c02155{bottom:610.950000px;}
.y29_c02155{bottom:626.430450px;}
.y28_c02155{bottom:642.000000px;}
.y27_c02155{bottom:657.480450px;}
.y26_c02155{bottom:672.959874px;}
.y25_c02155{bottom:686.730162px;}
.y24_c02155{bottom:700.500450px;}
.y23_c02155{bottom:716.700450px;}
.y22_c02155{bottom:732.180450px;}
.y21_c02155{bottom:747.750450px;}
.y20_c02155{bottom:763.230450px;}
.y1f_c02155{bottom:778.800450px;}
.y1e_c02155{bottom:794.280450px;}
.y1d_c02155{bottom:809.850450px;}
.y1c_c02155{bottom:825.330450px;}
.y19_c02155{bottom:843.150450px;}
.y1b_c02155{bottom:843.420450px;}
.y1a_c02155{bottom:860.790600px;}
.y18_c02155{bottom:877.711890px;}
.y17_c02155{bottom:896.611215px;}
.y16_c02155{bottom:915.510540px;}
.y15_c02155{bottom:934.500450px;}
.y14_c02155{bottom:952.860450px;}
.y13_c02155{bottom:968.340450px;}
.y12_c02155{bottom:968.700000px;}
.y11_c02155{bottom:987.330450px;}
.y10_c02155{bottom:987.690000px;}
.yf_c02155{bottom:1006.320450px;}
.ye_c02155{bottom:1006.680000px;}
.yd_c02155{bottom:1025.310450px;}
.yc_c02155{bottom:1025.670000px;}
.yb_c02155{bottom:1044.210450px;}
.ya_c02155{bottom:1044.660450px;}
.y9_c02155{bottom:1063.560450px;}
.y8_c02155{bottom:1082.190450px;}
.y7_c02155{bottom:1082.550450px;}
.y6_c02155{bottom:1103.970450px;}
.y5_c02155{bottom:1122.240450px;}
.y4_c02155{bottom:1139.610450px;}
.y1_c02155{bottom:1193.160450px;}
.h9_c02155{height:42.011895px;}
.ha_c02155{height:47.381836px;}
.h3_c02155{height:47.961914px;}
.h8_c02155{height:48.461836px;}
.h10_c02155{height:48.462436px;}
.h7_c02155{height:58.513535px;}
.he_c02155{height:61.032935px;}
.h5_c02155{height:61.393535px;}
.h6_c02155{height:62.473535px;}
.h4_c02155{height:62.833535px;}
.h2_c02155{height:63.175781px;}
.h1_c02155{height:63.949219px;}
.hc_c02155{height:66.073535px;}
.hd_c02155{height:66.074135px;}
.hf_c02155{height:66.432935px;}
.hb_c02155{height:79.421836px;}
.h0_c02155{height:1263.000000px;}
.w1_c02155{width:892.500000px;}
.w0_c02155{width:892.830000px;}
.x0_c02155{left:0.000000px;}
.x1_c02155{left:127.620000px;}
.x7_c02155{left:134.550000px;}
.x3_c02155{left:135.630000px;}
.x4_c02155{left:143.910000px;}
.x5_c02155{left:164.970000px;}
.x6_c02155{left:220.680000px;}
.xa_c02155{left:332.100000px;}
.xb_c02155{left:354.780000px;}
.x8_c02155{left:380.700000px;}
.x9_c02155{left:403.380000px;}
.x2_c02155{left:433.080000px;}
@media print{
.vb_c02155{vertical-align:-9.278400pt;}
.vc_c02155{vertical-align:-6.079467pt;}
.v3_c02155{vertical-align:-3.840000pt;}
.v2_c02155{vertical-align:-2.560000pt;}
.v1_c02155{vertical-align:-1.280000pt;}
.v0_c02155{vertical-align:0.000000pt;}
.v6_c02155{vertical-align:0.960000pt;}
.v4_c02155{vertical-align:1.920000pt;}
.v5_c02155{vertical-align:3.840000pt;}
.v8_c02155{vertical-align:4.800000pt;}
.va_c02155{vertical-align:6.720000pt;}
.v9_c02155{vertical-align:11.520000pt;}
.v7_c02155{vertical-align:28.480000pt;}
.ls30_c02155{letter-spacing:-0.158400pt;}
.ls2c_c02155{letter-spacing:-0.105600pt;}
.ls2f_c02155{letter-spacing:-0.091200pt;}
.ls2d_c02155{letter-spacing:-0.076800pt;}
.ls28_c02155{letter-spacing:-0.076608pt;}
.ls24_c02155{letter-spacing:-0.038400pt;}
.ls33_c02155{letter-spacing:-0.028800pt;}
.ls26_c02155{letter-spacing:-0.017024pt;}
.ls2e_c02155{letter-spacing:-0.014400pt;}
.ls20_c02155{letter-spacing:-0.012800pt;}
.ls25_c02155{letter-spacing:-0.009600pt;}
.ls2a_c02155{letter-spacing:-0.008512pt;}
.ls2b_c02155{letter-spacing:-0.004256pt;}
.ls21_c02155{letter-spacing:0.000000pt;}
.ls11_c02155{letter-spacing:0.004800pt;}
.ls10_c02155{letter-spacing:0.005856pt;}
.ls0_c02155{letter-spacing:0.009600pt;}
.ls3_c02155{letter-spacing:0.011232pt;}
.ls22_c02155{letter-spacing:0.012800pt;}
.ls14_c02155{letter-spacing:0.014400pt;}
.lse_c02155{letter-spacing:0.017024pt;}
.ls13_c02155{letter-spacing:0.024000pt;}
.ls2_c02155{letter-spacing:0.025536pt;}
.ls4_c02155{letter-spacing:0.028800pt;}
.lsa_c02155{letter-spacing:0.033600pt;}
.ls1_c02155{letter-spacing:0.038304pt;}
.ls9_c02155{letter-spacing:0.038400pt;}
.ls1f_c02155{letter-spacing:0.043200pt;}
.ls1d_c02155{letter-spacing:0.048000pt;}
.lsf_c02155{letter-spacing:0.052704pt;}
.ls1b_c02155{letter-spacing:0.058560pt;}
.ls15_c02155{letter-spacing:0.059584pt;}
.ls1e_c02155{letter-spacing:0.062400pt;}
.ls18_c02155{letter-spacing:0.068096pt;}
.ls7_c02155{letter-spacing:0.072352pt;}
.ls12_c02155{letter-spacing:0.085120pt;}
.ls16_c02155{letter-spacing:0.089376pt;}
.ls1c_c02155{letter-spacing:0.096000pt;}
.lsc_c02155{letter-spacing:0.110656pt;}
.lsd_c02155{letter-spacing:0.119168pt;}
.ls23_c02155{letter-spacing:0.134400pt;}
.ls5_c02155{letter-spacing:0.140544pt;}
.ls1a_c02155{letter-spacing:0.144704pt;}
.ls27_c02155{letter-spacing:0.148960pt;}
.ls8_c02155{letter-spacing:0.161728pt;}
.ls31_c02155{letter-spacing:0.238336pt;}
.ls17_c02155{letter-spacing:100.160000pt;}
.ls6_c02155{letter-spacing:100.480000pt;}
.ls32_c02155{letter-spacing:128.160000pt;}
.ls29_c02155{letter-spacing:128.481600pt;}
.ls19_c02155{letter-spacing:139.358400pt;}
.lsb_c02155{letter-spacing:178.480000pt;}
.ws0_c02155{word-spacing:-14.780544pt;}
.ws3_c02155{word-spacing:-11.971200pt;}
.ws8_c02155{word-spacing:-0.242592pt;}
.ws20_c02155{word-spacing:-0.225568pt;}
.wsc_c02155{word-spacing:-0.200032pt;}
.wsb_c02155{word-spacing:-0.191520pt;}
.ws1f_c02155{word-spacing:-0.170240pt;}
.ws18_c02155{word-spacing:-0.168000pt;}
.ws12_c02155{word-spacing:-0.165984pt;}
.wse_c02155{word-spacing:-0.153216pt;}
.ws10_c02155{word-spacing:-0.106400pt;}
.wsf_c02155{word-spacing:-0.097888pt;}
.ws7_c02155{word-spacing:-0.089856pt;}
.ws9_c02155{word-spacing:-0.072352pt;}
.ws6_c02155{word-spacing:-0.012800pt;}
.ws5_c02155{word-spacing:0.000000pt;}
.ws4_c02155{word-spacing:0.012800pt;}
.ws21_c02155{word-spacing:0.023424pt;}
.ws11_c02155{word-spacing:0.029280pt;}
.ws23_c02155{word-spacing:0.096000pt;}
.ws22_c02155{word-spacing:0.110400pt;}
.ws24_c02155{word-spacing:0.115200pt;}
.ws13_c02155{word-spacing:0.129600pt;}
.ws14_c02155{word-spacing:0.134400pt;}
.ws16_c02155{word-spacing:0.144000pt;}
.ws17_c02155{word-spacing:0.172800pt;}
.ws15_c02155{word-spacing:0.235200pt;}
.ws19_c02155{word-spacing:0.249600pt;}
.ws1a_c02155{word-spacing:0.476672pt;}
.ws1b_c02155{word-spacing:0.489440pt;}
.ws1c_c02155{word-spacing:2.421664pt;}
.ws1e_c02155{word-spacing:2.442944pt;}
.ws1d_c02155{word-spacing:2.455712pt;}
.ws2_c02155{word-spacing:42.817280pt;}
.ws1_c02155{word-spacing:66.817280pt;}
.wsa_c02155{word-spacing:139.320000pt;}
.wsd_c02155{word-spacing:139.324800pt;}
._f_c02155{margin-left:-1.102560pt;}
._28_c02155{width:0.912000pt;}
._16_c02155{width:37.761600pt;}
._b_c02155{width:45.277824pt;}
._10_c02155{width:55.508800pt;}
._e_c02155{width:58.080000pt;}
._15_c02155{width:60.441600pt;}
._8_c02155{width:64.537280pt;}
._12_c02155{width:67.040000pt;}
._9_c02155{width:68.720160pt;}
._13_c02155{width:74.400000pt;}
._2_c02155{width:75.408000pt;}
._1_c02155{width:78.419200pt;}
._2c_c02155{width:81.145280pt;}
._d_c02155{width:84.057152pt;}
._a_c02155{width:88.582400pt;}
._1a_c02155{width:91.968000pt;}
._c_c02155{width:92.955680pt;}
._1d_c02155{width:96.387200pt;}
._2e_c02155{width:97.417152pt;}
._1c_c02155{width:99.306816pt;}
._19_c02155{width:101.417792pt;}
._4_c02155{width:102.880000pt;}
._5_c02155{width:105.225728pt;}
._18_c02155{width:106.726816pt;}
._3_c02155{width:108.640000pt;}
._1b_c02155{width:110.815040pt;}
._14_c02155{width:113.921920pt;}
._11_c02155{width:115.206240pt;}
._1e_c02155{width:118.441792pt;}
._7_c02155{width:124.469056pt;}
._17_c02155{width:128.480000pt;}
._30_c02155{width:130.299008pt;}
._6_c02155{width:135.814688pt;}
._36_c02155{width:156.476800pt;}
._0_c02155{width:172.800000pt;}
._2d_c02155{width:178.634816pt;}
._2b_c02155{width:180.476800pt;}
._22_c02155{width:192.160000pt;}
._2f_c02155{width:199.809600pt;}
._20_c02155{width:252.000000pt;}
._24_c02155{width:269.484800pt;}
._23_c02155{width:275.648000pt;}
._21_c02155{width:288.689600pt;}
._33_c02155{width:309.060800pt;}
._34_c02155{width:314.518400pt;}
._26_c02155{width:339.742400pt;}
._32_c02155{width:373.270400pt;}
._31_c02155{width:378.480000pt;}
._29_c02155{width:401.585600pt;}
._27_c02155{width:428.652800pt;}
._25_c02155{width:430.155200pt;}
._1f_c02155{width:498.393600pt;}
._35_c02155{width:538.040000pt;}
._2a_c02155{width:710.840000pt;}
.fs3_c02155{font-size:37.440000pt;}
.fs2_c02155{font-size:42.560000pt;}
.fs1_c02155{font-size:48.000000pt;}
.fs4_c02155{font-size:58.560000pt;}
.fs0_c02155{font-size:64.000000pt;}
.y0_c02155{bottom:0.000000pt;}
.y3_c02155{bottom:50.987067pt;}
.y2_c02155{bottom:69.387067pt;}
.y4b_c02155{bottom:107.386400pt;}
.y4a_c02155{bottom:121.146800pt;}
.y49_c02155{bottom:134.986400pt;}
.y48_c02155{bottom:148.746800pt;}
.y47_c02155{bottom:162.586400pt;}
.y46_c02155{bottom:176.346800pt;}
.y45_c02155{bottom:190.107200pt;}
.y44_c02155{bottom:203.866555pt;}
.y43_c02155{bottom:216.106811pt;}
.y42_c02155{bottom:228.347067pt;}
.y41_c02155{bottom:242.747067pt;}
.y40_c02155{bottom:256.507067pt;}
.y3f_c02155{bottom:270.347067pt;}
.y3e_c02155{bottom:284.107067pt;}
.y3d_c02155{bottom:297.947067pt;}
.y3b_c02155{bottom:313.947067pt;}
.y3c_c02155{bottom:329.467067pt;}
.y3a_c02155{bottom:344.427067pt;}
.y39_c02155{bottom:360.667067pt;}
.y38_c02155{bottom:374.427467pt;}
.y37_c02155{bottom:388.267067pt;}
.y36_c02155{bottom:402.027200pt;}
.y35_c02155{bottom:402.427067pt;}
.y34_c02155{bottom:420.827200pt;}
.y33_c02155{bottom:437.307067pt;}
.y32_c02155{bottom:437.627867pt;}
.y31_c02155{bottom:455.707067pt;}
.y30_c02155{bottom:456.027867pt;}
.y2f_c02155{bottom:474.107067pt;}
.y2e_c02155{bottom:474.427067pt;}
.y2d_c02155{bottom:493.467067pt;}
.y2c_c02155{bottom:509.707067pt;}
.y2b_c02155{bottom:525.147067pt;}
.y2a_c02155{bottom:543.066667pt;}
.y29_c02155{bottom:556.827067pt;}
.y28_c02155{bottom:570.666667pt;}
.y27_c02155{bottom:584.427067pt;}
.y26_c02155{bottom:598.186555pt;}
.y25_c02155{bottom:610.426811pt;}
.y24_c02155{bottom:622.667067pt;}
.y23_c02155{bottom:637.067067pt;}
.y22_c02155{bottom:650.827067pt;}
.y21_c02155{bottom:664.667067pt;}
.y20_c02155{bottom:678.427067pt;}
.y1f_c02155{bottom:692.267067pt;}
.y1e_c02155{bottom:706.027067pt;}
.y1d_c02155{bottom:719.867067pt;}
.y1c_c02155{bottom:733.627067pt;}
.y19_c02155{bottom:749.467067pt;}
.y1b_c02155{bottom:749.707067pt;}
.y1a_c02155{bottom:765.147200pt;}
.y18_c02155{bottom:780.188347pt;}
.y17_c02155{bottom:796.987747pt;}
.y16_c02155{bottom:813.787147pt;}
.y15_c02155{bottom:830.667067pt;}
.y14_c02155{bottom:846.987067pt;}
.y13_c02155{bottom:860.747067pt;}
.y12_c02155{bottom:861.066667pt;}
.y11_c02155{bottom:877.627067pt;}
.y10_c02155{bottom:877.946667pt;}
.yf_c02155{bottom:894.507067pt;}
.ye_c02155{bottom:894.826667pt;}
.yd_c02155{bottom:911.387067pt;}
.yc_c02155{bottom:911.706667pt;}
.yb_c02155{bottom:928.187067pt;}
.ya_c02155{bottom:928.587067pt;}
.y9_c02155{bottom:945.387067pt;}
.y8_c02155{bottom:961.947067pt;}
.y7_c02155{bottom:962.267067pt;}
.y6_c02155{bottom:981.307067pt;}
.y5_c02155{bottom:997.547067pt;}
.y4_c02155{bottom:1012.987067pt;}
.y1_c02155{bottom:1060.587067pt;}
.h9_c02155{height:37.343906pt;}
.ha_c02155{height:42.117188pt;}
.h3_c02155{height:42.632812pt;}
.h8_c02155{height:43.077188pt;}
.h10_c02155{height:43.077721pt;}
.h7_c02155{height:52.012031pt;}
.he_c02155{height:54.251498pt;}
.h5_c02155{height:54.572031pt;}
.h6_c02155{height:55.532031pt;}
.h4_c02155{height:55.852031pt;}
.h2_c02155{height:56.156250pt;}
.h1_c02155{height:56.843750pt;}
.hc_c02155{height:58.732031pt;}
.hd_c02155{height:58.732565pt;}
.hf_c02155{height:59.051498pt;}
.hb_c02155{height:70.597187pt;}
.h0_c02155{height:1122.666667pt;}
.w1_c02155{width:793.333333pt;}
.w0_c02155{width:793.626667pt;}
.x0_c02155{left:0.000000pt;}
.x1_c02155{left:113.440000pt;}
.x7_c02155{left:119.600000pt;}
.x3_c02155{left:120.560000pt;}
.x4_c02155{left:127.920000pt;}
.x5_c02155{left:146.640000pt;}
.x6_c02155{left:196.160000pt;}
.xa_c02155{left:295.200000pt;}
.xb_c02155{left:315.360000pt;}
.x8_c02155{left:338.400000pt;}
.x9_c02155{left:358.560000pt;}
.x2_c02155{left:384.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_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_176bcd39559e2e3778293cb3.woff2')format("woff");}.ff1_c02156{font-family:ff1_c02156;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02156;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02156{vertical-align:-4.320000px;}
.v2_c02156{vertical-align:-2.880000px;}
.v1_c02156{vertical-align:-1.440000px;}
.v0_c02156{vertical-align:0.000000px;}
.v6_c02156{vertical-align:1.080000px;}
.v4_c02156{vertical-align:2.520000px;}
.v5_c02156{vertical-align:4.320000px;}
.v7_c02156{vertical-align:32.040000px;}
.ls2e_c02156{letter-spacing:-0.178200px;}
.ls2a_c02156{letter-spacing:-0.118800px;}
.ls2d_c02156{letter-spacing:-0.102600px;}
.ls2b_c02156{letter-spacing:-0.086400px;}
.ls26_c02156{letter-spacing:-0.086184px;}
.ls22_c02156{letter-spacing:-0.043200px;}
.ls24_c02156{letter-spacing:-0.019152px;}
.ls2c_c02156{letter-spacing:-0.016200px;}
.ls1f_c02156{letter-spacing:-0.014400px;}
.ls23_c02156{letter-spacing:-0.010800px;}
.ls28_c02156{letter-spacing:-0.009576px;}
.ls29_c02156{letter-spacing:-0.004788px;}
.ls20_c02156{letter-spacing:0.000000px;}
.ls11_c02156{letter-spacing:0.005400px;}
.ls0_c02156{letter-spacing:0.007200px;}
.ls1_c02156{letter-spacing:0.010800px;}
.ls4_c02156{letter-spacing:0.012636px;}
.ls1a_c02156{letter-spacing:0.014400px;}
.ls14_c02156{letter-spacing:0.016200px;}
.lsf_c02156{letter-spacing:0.019152px;}
.ls13_c02156{letter-spacing:0.027000px;}
.ls3_c02156{letter-spacing:0.028728px;}
.ls5_c02156{letter-spacing:0.032400px;}
.lsb_c02156{letter-spacing:0.037800px;}
.ls2_c02156{letter-spacing:0.043092px;}
.lsa_c02156{letter-spacing:0.043200px;}
.ls10_c02156{letter-spacing:0.046116px;}
.ls16_c02156{letter-spacing:0.067032px;}
.ls18_c02156{letter-spacing:0.076608px;}
.ls8_c02156{letter-spacing:0.081396px;}
.ls15_c02156{letter-spacing:0.086184px;}
.ls12_c02156{letter-spacing:0.095760px;}
.ls1c_c02156{letter-spacing:0.110124px;}
.ls17_c02156{letter-spacing:0.114912px;}
.ls19_c02156{letter-spacing:0.119700px;}
.lsd_c02156{letter-spacing:0.124488px;}
.lse_c02156{letter-spacing:0.134064px;}
.ls21_c02156{letter-spacing:0.151200px;}
.ls6_c02156{letter-spacing:0.158112px;}
.ls25_c02156{letter-spacing:0.167580px;}
.ls9_c02156{letter-spacing:0.181944px;}
.ls1e_c02156{letter-spacing:0.205884px;}
.ls7_c02156{letter-spacing:112.680000px;}
.ls1b_c02156{letter-spacing:113.040000px;}
.ls27_c02156{letter-spacing:144.180000px;}
.ls2f_c02156{letter-spacing:144.541800px;}
.ls31_c02156{letter-spacing:156.778200px;}
.ls30_c02156{letter-spacing:158.310432px;}
.ls1d_c02156{letter-spacing:200.790000px;}
.lsc_c02156{letter-spacing:206.190000px;}
.sc__c02156{text-shadow:none;}
.sc0_c02156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02156{-webkit-text-stroke:0px transparent;}
.sc0_c02156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02156{word-spacing:-16.628112px;}
.ws3_c02156{word-spacing:-16.516116px;}
.ws23_c02156{word-spacing:-0.296856px;}
.wsa_c02156{word-spacing:-0.272916px;}
.wse_c02156{word-spacing:-0.225036px;}
.wsd_c02156{word-spacing:-0.215460px;}
.ws21_c02156{word-spacing:-0.210672px;}
.ws19_c02156{word-spacing:-0.189000px;}
.ws14_c02156{word-spacing:-0.186732px;}
.ws10_c02156{word-spacing:-0.172368px;}
.ws12_c02156{word-spacing:-0.119700px;}
.ws11_c02156{word-spacing:-0.110124px;}
.ws9_c02156{word-spacing:-0.101088px;}
.ws25_c02156{word-spacing:-0.086400px;}
.wsb_c02156{word-spacing:-0.081396px;}
.ws8_c02156{word-spacing:-0.057600px;}
.ws22_c02156{word-spacing:-0.014400px;}
.ws7_c02156{word-spacing:0.000000px;}
.ws6_c02156{word-spacing:0.014400px;}
.ws13_c02156{word-spacing:0.046116px;}
.ws16_c02156{word-spacing:0.145800px;}
.ws15_c02156{word-spacing:0.151200px;}
.ws1b_c02156{word-spacing:0.162000px;}
.ws18_c02156{word-spacing:0.194400px;}
.ws17_c02156{word-spacing:0.264600px;}
.ws1a_c02156{word-spacing:0.280800px;}
.ws1e_c02156{word-spacing:1.235304px;}
.ws20_c02156{word-spacing:1.273608px;}
.ws1f_c02156{word-spacing:1.307124px;}
.ws1c_c02156{word-spacing:5.941908px;}
.ws1d_c02156{word-spacing:5.961060px;}
.ws5_c02156{word-spacing:48.169440px;}
.ws2_c02156{word-spacing:55.009440px;}
.ws1_c02156{word-spacing:68.689440px;}
.ws4_c02156{word-spacing:75.169440px;}
.ws24_c02156{word-spacing:156.735000px;}
.wsc_c02156{word-spacing:177.978600px;}
.wsf_c02156{word-spacing:177.984000px;}
._1c_c02156{margin-left:-39.598200px;}
._1e_c02156{margin-left:-26.829648px;}
._14_c02156{margin-left:-25.743780px;}
._16_c02156{margin-left:-21.600000px;}
._1a_c02156{margin-left:-1.189440px;}
._28_c02156{width:1.026000px;}
._15_c02156{width:12.960000px;}
._36_c02156{width:42.481800px;}
._b_c02156{width:50.937552px;}
._d_c02156{width:58.722696px;}
._31_c02156{width:62.042400px;}
._39_c02156{width:65.268000px;}
._35_c02156{width:67.159836px;}
._10_c02156{width:69.984000px;}
._8_c02156{width:72.604440px;}
._33_c02156{width:75.420000px;}
._9_c02156{width:77.310180px;}
._13_c02156{width:79.740000px;}
._f_c02156{width:82.573200px;}
._34_c02156{width:84.060000px;}
._2d_c02156{width:85.701600px;}
._2_c02156{width:87.354000px;}
._1_c02156{width:88.581600px;}
._e_c02156{width:90.864000px;}
._1d_c02156{width:92.640168px;}
._19_c02156{width:95.015016px;}
._a_c02156{width:100.522800px;}
._12_c02156{width:102.420000px;}
._11_c02156{width:103.453200px;}
._30_c02156{width:104.479380px;}
._1b_c02156{width:105.586920px;}
._2e_c02156{width:106.740000px;}
._3c_c02156{width:108.435600px;}
._c_c02156{width:109.975140px;}
._3b_c02156{width:111.720168px;}
._4_c02156{width:112.860000px;}
._1f_c02156{width:114.167016px;}
._37_c02156{width:115.740000px;}
._5_c02156{width:118.378944px;}
._38_c02156{width:119.705220px;}
._3_c02156{width:122.220000px;}
._18_c02156{width:125.467668px;}
._3e_c02156{width:128.162160px;}
._32_c02156{width:129.607020px;}
._2f_c02156{width:131.136120px;}
._3d_c02156{width:133.247016px;}
._7_c02156{width:140.027688px;}
._17_c02156{width:144.180000px;}
._6_c02156{width:152.791524px;}
._0_c02156{width:194.400000px;}
._2c_c02156{width:203.036400px;}
._23_c02156{width:216.180000px;}
._3a_c02156{width:224.884692px;}
._21_c02156{width:283.500000px;}
._22_c02156{width:303.170400px;}
._24_c02156{width:310.104000px;}
._25_c02156{width:324.775800px;}
._2a_c02156{width:382.210200px;}
._29_c02156{width:451.783800px;}
._27_c02156{width:482.234400px;}
._26_c02156{width:483.924600px;}
._20_c02156{width:560.692800px;}
._2b_c02156{width:799.695000px;}
.fc0_c02156{color:rgb(0,0,0);}
.fs5_c02156{font-size:11.880000px;}
.fs3_c02156{font-size:42.120000px;}
.fs2_c02156{font-size:47.880000px;}
.fs1_c02156{font-size:54.000000px;}
.fs4_c02156{font-size:65.880000px;}
.fs0_c02156{font-size:72.000000px;}
.y0_c02156{bottom:0.000000px;}
.y3_c02156{bottom:57.360450px;}
.y2_c02156{bottom:78.060450px;}
.y4d_c02156{bottom:123.782520px;}
.y4c_c02156{bottom:142.772430px;}
.y4b_c02156{bottom:161.671755px;}
.y4a_c02156{bottom:180.661665px;}
.y49_c02156{bottom:199.651575px;}
.y48_c02156{bottom:218.641485px;}
.y47_c02156{bottom:237.631395px;}
.y46_c02156{bottom:256.530720px;}
.y45_c02156{bottom:275.520630px;}
.y44_c02156{bottom:294.510540px;}
.y43_c02156{bottom:313.500450px;}
.y42_c02156{bottom:331.770450px;}
.y41_c02156{bottom:332.220450px;}
.y40_c02156{bottom:351.840450px;}
.y3f_c02156{bottom:370.110450px;}
.y3e_c02156{bottom:387.480450px;}
.y3d_c02156{bottom:408.270600px;}
.y3c_c02156{bottom:417.090600px;}
.y3b_c02156{bottom:417.450150px;}
.y3a_c02156{bottom:436.080450px;}
.y39_c02156{bottom:436.440150px;}
.y38_c02156{bottom:454.980450px;}
.y37_c02156{bottom:455.430450px;}
.y36_c02156{bottom:473.970450px;}
.y35_c02156{bottom:474.330150px;}
.y34_c02156{bottom:492.960600px;}
.y33_c02156{bottom:493.320450px;}
.y32_c02156{bottom:512.940600px;}
.y31_c02156{bottom:531.300450px;}
.y30_c02156{bottom:548.670450px;}
.y2f_c02156{bottom:569.460450px;}
.y2e_c02156{bottom:578.190450px;}
.y2d_c02156{bottom:578.640450px;}
.y2c_c02156{bottom:598.260450px;}
.y2b_c02156{bottom:616.530450px;}
.y2a_c02156{bottom:633.900450px;}
.y29_c02156{bottom:651.720450px;}
.y28_c02156{bottom:657.389460px;}
.y27_c02156{bottom:671.159748px;}
.y26_c02156{bottom:685.019811px;}
.y25_c02156{bottom:698.790099px;}
.y24_c02156{bottom:712.560387px;}
.y23_c02156{bottom:726.420450px;}
.y22_c02156{bottom:742.530450px;}
.y21_c02156{bottom:758.100450px;}
.y20_c02156{bottom:773.580450px;}
.y1f_c02156{bottom:789.150450px;}
.y1e_c02156{bottom:804.630450px;}
.y1d_c02156{bottom:820.200450px;}
.y1c_c02156{bottom:835.680600px;}
.y1b_c02156{bottom:851.250600px;}
.y18_c02156{bottom:868.980450px;}
.y1a_c02156{bottom:869.250600px;}
.y19_c02156{bottom:886.620450px;}
.y17_c02156{bottom:903.540600px;}
.y16_c02156{bottom:921.810450px;}
.y15_c02156{bottom:937.290900px;}
.y14_c02156{bottom:952.860450px;}
.y13_c02156{bottom:968.340450px;}
.y12_c02156{bottom:968.700000px;}
.y11_c02156{bottom:987.330450px;}
.y10_c02156{bottom:987.690000px;}
.yf_c02156{bottom:1006.320450px;}
.ye_c02156{bottom:1006.680000px;}
.yd_c02156{bottom:1025.310450px;}
.yc_c02156{bottom:1025.670000px;}
.yb_c02156{bottom:1044.210450px;}
.ya_c02156{bottom:1044.660450px;}
.y9_c02156{bottom:1063.560450px;}
.y8_c02156{bottom:1082.190450px;}
.y7_c02156{bottom:1082.550450px;}
.y6_c02156{bottom:1103.970450px;}
.y5_c02156{bottom:1122.240450px;}
.y4_c02156{bottom:1139.610450px;}
.y1_c02156{bottom:1193.160450px;}
.hf_c02156{height:10.551621px;}
.ha_c02156{height:42.011895px;}
.hb_c02156{height:47.381836px;}
.h3_c02156{height:47.961914px;}
.hc_c02156{height:48.461236px;}
.hd_c02156{height:48.461836px;}
.h9_c02156{height:48.462436px;}
.h8_c02156{height:58.513535px;}
.h5_c02156{height:61.393535px;}
.h10_c02156{height:62.472935px;}
.h7_c02156{height:62.473535px;}
.h6_c02156{height:62.833535px;}
.h2_c02156{height:63.175781px;}
.h1_c02156{height:63.949219px;}
.h4_c02156{height:69.349219px;}
.he_c02156{height:79.421836px;}
.h0_c02156{height:1263.000000px;}
.w1_c02156{width:892.500000px;}
.w0_c02156{width:892.830000px;}
.x0_c02156{left:0.000000px;}
.x1_c02156{left:127.620000px;}
.x7_c02156{left:134.550000px;}
.x3_c02156{left:135.630000px;}
.x4_c02156{left:143.910000px;}
.x5_c02156{left:165.060000px;}
.x6_c02156{left:220.680000px;}
.x8_c02156{left:380.700000px;}
.x9_c02156{left:403.380000px;}
.x2_c02156{left:433.080000px;}
@media print{
.v3_c02156{vertical-align:-3.840000pt;}
.v2_c02156{vertical-align:-2.560000pt;}
.v1_c02156{vertical-align:-1.280000pt;}
.v0_c02156{vertical-align:0.000000pt;}
.v6_c02156{vertical-align:0.960000pt;}
.v4_c02156{vertical-align:2.240000pt;}
.v5_c02156{vertical-align:3.840000pt;}
.v7_c02156{vertical-align:28.480000pt;}
.ls2e_c02156{letter-spacing:-0.158400pt;}
.ls2a_c02156{letter-spacing:-0.105600pt;}
.ls2d_c02156{letter-spacing:-0.091200pt;}
.ls2b_c02156{letter-spacing:-0.076800pt;}
.ls26_c02156{letter-spacing:-0.076608pt;}
.ls22_c02156{letter-spacing:-0.038400pt;}
.ls24_c02156{letter-spacing:-0.017024pt;}
.ls2c_c02156{letter-spacing:-0.014400pt;}
.ls1f_c02156{letter-spacing:-0.012800pt;}
.ls23_c02156{letter-spacing:-0.009600pt;}
.ls28_c02156{letter-spacing:-0.008512pt;}
.ls29_c02156{letter-spacing:-0.004256pt;}
.ls20_c02156{letter-spacing:0.000000pt;}
.ls11_c02156{letter-spacing:0.004800pt;}
.ls0_c02156{letter-spacing:0.006400pt;}
.ls1_c02156{letter-spacing:0.009600pt;}
.ls4_c02156{letter-spacing:0.011232pt;}
.ls1a_c02156{letter-spacing:0.012800pt;}
.ls14_c02156{letter-spacing:0.014400pt;}
.lsf_c02156{letter-spacing:0.017024pt;}
.ls13_c02156{letter-spacing:0.024000pt;}
.ls3_c02156{letter-spacing:0.025536pt;}
.ls5_c02156{letter-spacing:0.028800pt;}
.lsb_c02156{letter-spacing:0.033600pt;}
.ls2_c02156{letter-spacing:0.038304pt;}
.lsa_c02156{letter-spacing:0.038400pt;}
.ls10_c02156{letter-spacing:0.040992pt;}
.ls16_c02156{letter-spacing:0.059584pt;}
.ls18_c02156{letter-spacing:0.068096pt;}
.ls8_c02156{letter-spacing:0.072352pt;}
.ls15_c02156{letter-spacing:0.076608pt;}
.ls12_c02156{letter-spacing:0.085120pt;}
.ls1c_c02156{letter-spacing:0.097888pt;}
.ls17_c02156{letter-spacing:0.102144pt;}
.ls19_c02156{letter-spacing:0.106400pt;}
.lsd_c02156{letter-spacing:0.110656pt;}
.lse_c02156{letter-spacing:0.119168pt;}
.ls21_c02156{letter-spacing:0.134400pt;}
.ls6_c02156{letter-spacing:0.140544pt;}
.ls25_c02156{letter-spacing:0.148960pt;}
.ls9_c02156{letter-spacing:0.161728pt;}
.ls1e_c02156{letter-spacing:0.183008pt;}
.ls7_c02156{letter-spacing:100.160000pt;}
.ls1b_c02156{letter-spacing:100.480000pt;}
.ls27_c02156{letter-spacing:128.160000pt;}
.ls2f_c02156{letter-spacing:128.481600pt;}
.ls31_c02156{letter-spacing:139.358400pt;}
.ls30_c02156{letter-spacing:140.720384pt;}
.ls1d_c02156{letter-spacing:178.480000pt;}
.lsc_c02156{letter-spacing:183.280000pt;}
.ws0_c02156{word-spacing:-14.780544pt;}
.ws3_c02156{word-spacing:-14.680992pt;}
.ws23_c02156{word-spacing:-0.263872pt;}
.wsa_c02156{word-spacing:-0.242592pt;}
.wse_c02156{word-spacing:-0.200032pt;}
.wsd_c02156{word-spacing:-0.191520pt;}
.ws21_c02156{word-spacing:-0.187264pt;}
.ws19_c02156{word-spacing:-0.168000pt;}
.ws14_c02156{word-spacing:-0.165984pt;}
.ws10_c02156{word-spacing:-0.153216pt;}
.ws12_c02156{word-spacing:-0.106400pt;}
.ws11_c02156{word-spacing:-0.097888pt;}
.ws9_c02156{word-spacing:-0.089856pt;}
.ws25_c02156{word-spacing:-0.076800pt;}
.wsb_c02156{word-spacing:-0.072352pt;}
.ws8_c02156{word-spacing:-0.051200pt;}
.ws22_c02156{word-spacing:-0.012800pt;}
.ws7_c02156{word-spacing:0.000000pt;}
.ws6_c02156{word-spacing:0.012800pt;}
.ws13_c02156{word-spacing:0.040992pt;}
.ws16_c02156{word-spacing:0.129600pt;}
.ws15_c02156{word-spacing:0.134400pt;}
.ws1b_c02156{word-spacing:0.144000pt;}
.ws18_c02156{word-spacing:0.172800pt;}
.ws17_c02156{word-spacing:0.235200pt;}
.ws1a_c02156{word-spacing:0.249600pt;}
.ws1e_c02156{word-spacing:1.098048pt;}
.ws20_c02156{word-spacing:1.132096pt;}
.ws1f_c02156{word-spacing:1.161888pt;}
.ws1c_c02156{word-spacing:5.281696pt;}
.ws1d_c02156{word-spacing:5.298720pt;}
.ws5_c02156{word-spacing:42.817280pt;}
.ws2_c02156{word-spacing:48.897280pt;}
.ws1_c02156{word-spacing:61.057280pt;}
.ws4_c02156{word-spacing:66.817280pt;}
.ws24_c02156{word-spacing:139.320000pt;}
.wsc_c02156{word-spacing:158.203200pt;}
.wsf_c02156{word-spacing:158.208000pt;}
._1c_c02156{margin-left:-35.198400pt;}
._1e_c02156{margin-left:-23.848576pt;}
._14_c02156{margin-left:-22.883360pt;}
._16_c02156{margin-left:-19.200000pt;}
._1a_c02156{margin-left:-1.057280pt;}
._28_c02156{width:0.912000pt;}
._15_c02156{width:11.520000pt;}
._36_c02156{width:37.761600pt;}
._b_c02156{width:45.277824pt;}
._d_c02156{width:52.197952pt;}
._31_c02156{width:55.148800pt;}
._39_c02156{width:58.016000pt;}
._35_c02156{width:59.697632pt;}
._10_c02156{width:62.208000pt;}
._8_c02156{width:64.537280pt;}
._33_c02156{width:67.040000pt;}
._9_c02156{width:68.720160pt;}
._13_c02156{width:70.880000pt;}
._f_c02156{width:73.398400pt;}
._34_c02156{width:74.720000pt;}
._2d_c02156{width:76.179200pt;}
._2_c02156{width:77.648000pt;}
._1_c02156{width:78.739200pt;}
._e_c02156{width:80.768000pt;}
._1d_c02156{width:82.346816pt;}
._19_c02156{width:84.457792pt;}
._a_c02156{width:89.353600pt;}
._12_c02156{width:91.040000pt;}
._11_c02156{width:91.958400pt;}
._30_c02156{width:92.870560pt;}
._1b_c02156{width:93.855040pt;}
._2e_c02156{width:94.880000pt;}
._3c_c02156{width:96.387200pt;}
._c_c02156{width:97.755680pt;}
._3b_c02156{width:99.306816pt;}
._4_c02156{width:100.320000pt;}
._1f_c02156{width:101.481792pt;}
._37_c02156{width:102.880000pt;}
._5_c02156{width:105.225728pt;}
._38_c02156{width:106.404640pt;}
._3_c02156{width:108.640000pt;}
._18_c02156{width:111.526816pt;}
._3e_c02156{width:113.921920pt;}
._32_c02156{width:115.206240pt;}
._2f_c02156{width:116.565440pt;}
._3d_c02156{width:118.441792pt;}
._7_c02156{width:124.469056pt;}
._17_c02156{width:128.160000pt;}
._6_c02156{width:135.814688pt;}
._0_c02156{width:172.800000pt;}
._2c_c02156{width:180.476800pt;}
._23_c02156{width:192.160000pt;}
._3a_c02156{width:199.897504pt;}
._21_c02156{width:252.000000pt;}
._22_c02156{width:269.484800pt;}
._24_c02156{width:275.648000pt;}
._25_c02156{width:288.689600pt;}
._2a_c02156{width:339.742400pt;}
._29_c02156{width:401.585600pt;}
._27_c02156{width:428.652800pt;}
._26_c02156{width:430.155200pt;}
._20_c02156{width:498.393600pt;}
._2b_c02156{width:710.840000pt;}
.fs5_c02156{font-size:10.560000pt;}
.fs3_c02156{font-size:37.440000pt;}
.fs2_c02156{font-size:42.560000pt;}
.fs1_c02156{font-size:48.000000pt;}
.fs4_c02156{font-size:58.560000pt;}
.fs0_c02156{font-size:64.000000pt;}
.y0_c02156{bottom:0.000000pt;}
.y3_c02156{bottom:50.987067pt;}
.y2_c02156{bottom:69.387067pt;}
.y4d_c02156{bottom:110.028907pt;}
.y4c_c02156{bottom:126.908827pt;}
.y4b_c02156{bottom:143.708227pt;}
.y4a_c02156{bottom:160.588147pt;}
.y49_c02156{bottom:177.468067pt;}
.y48_c02156{bottom:194.347987pt;}
.y47_c02156{bottom:211.227907pt;}
.y46_c02156{bottom:228.027307pt;}
.y45_c02156{bottom:244.907227pt;}
.y44_c02156{bottom:261.787147pt;}
.y43_c02156{bottom:278.667067pt;}
.y42_c02156{bottom:294.907067pt;}
.y41_c02156{bottom:295.307067pt;}
.y40_c02156{bottom:312.747067pt;}
.y3f_c02156{bottom:328.987067pt;}
.y3e_c02156{bottom:344.427067pt;}
.y3d_c02156{bottom:362.907200pt;}
.y3c_c02156{bottom:370.747200pt;}
.y3b_c02156{bottom:371.066800pt;}
.y3a_c02156{bottom:387.627067pt;}
.y39_c02156{bottom:387.946800pt;}
.y38_c02156{bottom:404.427067pt;}
.y37_c02156{bottom:404.827067pt;}
.y36_c02156{bottom:421.307067pt;}
.y35_c02156{bottom:421.626800pt;}
.y34_c02156{bottom:438.187200pt;}
.y33_c02156{bottom:438.507067pt;}
.y32_c02156{bottom:455.947200pt;}
.y31_c02156{bottom:472.267067pt;}
.y30_c02156{bottom:487.707067pt;}
.y2f_c02156{bottom:506.187067pt;}
.y2e_c02156{bottom:513.947067pt;}
.y2d_c02156{bottom:514.347067pt;}
.y2c_c02156{bottom:531.787067pt;}
.y2b_c02156{bottom:548.027067pt;}
.y2a_c02156{bottom:563.467067pt;}
.y29_c02156{bottom:579.307067pt;}
.y28_c02156{bottom:584.346187pt;}
.y27_c02156{bottom:596.586443pt;}
.y26_c02156{bottom:608.906499pt;}
.y25_c02156{bottom:621.146755pt;}
.y24_c02156{bottom:633.387011pt;}
.y23_c02156{bottom:645.707067pt;}
.y22_c02156{bottom:660.027067pt;}
.y21_c02156{bottom:673.867067pt;}
.y20_c02156{bottom:687.627067pt;}
.y1f_c02156{bottom:701.467067pt;}
.y1e_c02156{bottom:715.227067pt;}
.y1d_c02156{bottom:729.067067pt;}
.y1c_c02156{bottom:742.827200pt;}
.y1b_c02156{bottom:756.667200pt;}
.y18_c02156{bottom:772.427067pt;}
.y1a_c02156{bottom:772.667200pt;}
.y19_c02156{bottom:788.107067pt;}
.y17_c02156{bottom:803.147200pt;}
.y16_c02156{bottom:819.387067pt;}
.y15_c02156{bottom:833.147467pt;}
.y14_c02156{bottom:846.987067pt;}
.y13_c02156{bottom:860.747067pt;}
.y12_c02156{bottom:861.066667pt;}
.y11_c02156{bottom:877.627067pt;}
.y10_c02156{bottom:877.946667pt;}
.yf_c02156{bottom:894.507067pt;}
.ye_c02156{bottom:894.826667pt;}
.yd_c02156{bottom:911.387067pt;}
.yc_c02156{bottom:911.706667pt;}
.yb_c02156{bottom:928.187067pt;}
.ya_c02156{bottom:928.587067pt;}
.y9_c02156{bottom:945.387067pt;}
.y8_c02156{bottom:961.947067pt;}
.y7_c02156{bottom:962.267067pt;}
.y6_c02156{bottom:981.307067pt;}
.y5_c02156{bottom:997.547067pt;}
.y4_c02156{bottom:1012.987067pt;}
.y1_c02156{bottom:1060.587067pt;}
.hf_c02156{height:9.379219pt;}
.ha_c02156{height:37.343906pt;}
.hb_c02156{height:42.117188pt;}
.h3_c02156{height:42.632812pt;}
.hc_c02156{height:43.076654pt;}
.hd_c02156{height:43.077187pt;}
.h9_c02156{height:43.077721pt;}
.h8_c02156{height:52.012031pt;}
.h5_c02156{height:54.572031pt;}
.h10_c02156{height:55.531498pt;}
.h7_c02156{height:55.532031pt;}
.h6_c02156{height:55.852031pt;}
.h2_c02156{height:56.156250pt;}
.h1_c02156{height:56.843750pt;}
.h4_c02156{height:61.643750pt;}
.he_c02156{height:70.597187pt;}
.h0_c02156{height:1122.666667pt;}
.w1_c02156{width:793.333333pt;}
.w0_c02156{width:793.626667pt;}
.x0_c02156{left:0.000000pt;}
.x1_c02156{left:113.440000pt;}
.x7_c02156{left:119.600000pt;}
.x3_c02156{left:120.560000pt;}
.x4_c02156{left:127.920000pt;}
.x5_c02156{left:146.720000pt;}
.x6_c02156{left:196.160000pt;}
.x8_c02156{left:338.400000pt;}
.x9_c02156{left:358.560000pt;}
.x2_c02156{left:384.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_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_a541f2dd9503228f746bc7e9.woff2')format("woff");}.ff1_c02157{font-family:ff1_c02157;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02157;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v3_c02157{vertical-align:-4.320000px;}
.v2_c02157{vertical-align:-2.880000px;}
.v1_c02157{vertical-align:-1.440000px;}
.v0_c02157{vertical-align:0.000000px;}
.v6_c02157{vertical-align:1.080000px;}
.v4_c02157{vertical-align:2.520000px;}
.v5_c02157{vertical-align:4.320000px;}
.v8_c02157{vertical-align:6.840000px;}
.v7_c02157{vertical-align:32.040000px;}
.ls2d_c02157{letter-spacing:-0.178200px;}
.ls29_c02157{letter-spacing:-0.118800px;}
.ls2b_c02157{letter-spacing:-0.102600px;}
.ls2a_c02157{letter-spacing:-0.086400px;}
.ls25_c02157{letter-spacing:-0.086184px;}
.ls21_c02157{letter-spacing:-0.043200px;}
.ls23_c02157{letter-spacing:-0.019152px;}
.ls2c_c02157{letter-spacing:-0.016200px;}
.ls1e_c02157{letter-spacing:-0.014400px;}
.ls22_c02157{letter-spacing:-0.010800px;}
.ls27_c02157{letter-spacing:-0.009576px;}
.ls2e_c02157{letter-spacing:-0.007200px;}
.ls28_c02157{letter-spacing:-0.004788px;}
.ls1f_c02157{letter-spacing:0.000000px;}
.ls13_c02157{letter-spacing:0.005400px;}
.ls12_c02157{letter-spacing:0.006588px;}
.ls0_c02157{letter-spacing:0.010800px;}
.ls3_c02157{letter-spacing:0.012636px;}
.ls16_c02157{letter-spacing:0.016200px;}
.ls10_c02157{letter-spacing:0.019152px;}
.ls15_c02157{letter-spacing:0.027000px;}
.ls2_c02157{letter-spacing:0.028728px;}
.ls4_c02157{letter-spacing:0.032400px;}
.lsa_c02157{letter-spacing:0.037800px;}
.ls1_c02157{letter-spacing:0.043092px;}
.ls9_c02157{letter-spacing:0.043200px;}
.ls18_c02157{letter-spacing:0.067032px;}
.ls7_c02157{letter-spacing:0.076608px;}
.ls11_c02157{letter-spacing:0.079056px;}
.lsd_c02157{letter-spacing:0.081396px;}
.ls17_c02157{letter-spacing:0.086184px;}
.ls14_c02157{letter-spacing:0.095760px;}
.ls19_c02157{letter-spacing:0.114912px;}
.ls1a_c02157{letter-spacing:0.119700px;}
.lse_c02157{letter-spacing:0.124488px;}
.lsf_c02157{letter-spacing:0.134064px;}
.ls20_c02157{letter-spacing:0.151200px;}
.ls5_c02157{letter-spacing:0.158112px;}
.lsc_c02157{letter-spacing:0.162792px;}
.ls24_c02157{letter-spacing:0.167580px;}
.ls8_c02157{letter-spacing:0.181944px;}
.ls1b_c02157{letter-spacing:112.320000px;}
.ls6_c02157{letter-spacing:113.040000px;}
.ls2f_c02157{letter-spacing:143.818200px;}
.ls26_c02157{letter-spacing:144.541800px;}
.ls1d_c02157{letter-spacing:156.778200px;}
.ls1c_c02157{letter-spacing:199.260000px;}
.lsb_c02157{letter-spacing:200.790000px;}
.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;}
}
.ws0_c02157{word-spacing:-16.628112px;}
.ws3_c02157{word-spacing:-16.476588px;}
.ws8_c02157{word-spacing:-0.272916px;}
.wsa_c02157{word-spacing:-0.253764px;}
.wse_c02157{word-spacing:-0.225036px;}
.wsd_c02157{word-spacing:-0.215460px;}
.ws20_c02157{word-spacing:-0.210672px;}
.ws1a_c02157{word-spacing:-0.189000px;}
.ws13_c02157{word-spacing:-0.186732px;}
.wsf_c02157{word-spacing:-0.172368px;}
.ws11_c02157{word-spacing:-0.119700px;}
.ws10_c02157{word-spacing:-0.110124px;}
.ws7_c02157{word-spacing:-0.101088px;}
.wsc_c02157{word-spacing:-0.081396px;}
.ws6_c02157{word-spacing:0.000000px;}
.ws21_c02157{word-spacing:0.007200px;}
.ws12_c02157{word-spacing:0.013176px;}
.ws5_c02157{word-spacing:0.014400px;}
.ws14_c02157{word-spacing:0.145800px;}
.ws17_c02157{word-spacing:0.151200px;}
.ws18_c02157{word-spacing:0.162000px;}
.ws19_c02157{word-spacing:0.194400px;}
.ws15_c02157{word-spacing:0.264600px;}
.ws16_c02157{word-spacing:0.280800px;}
.ws1d_c02157{word-spacing:1.235304px;}
.ws1f_c02157{word-spacing:1.273608px;}
.ws1e_c02157{word-spacing:1.307124px;}
.ws1b_c02157{word-spacing:5.941908px;}
.ws1c_c02157{word-spacing:5.961060px;}
.ws2_c02157{word-spacing:48.169440px;}
.ws4_c02157{word-spacing:59.329440px;}
.ws1_c02157{word-spacing:75.169440px;}
.ws22_c02157{word-spacing:156.378600px;}
.ws9_c02157{word-spacing:156.735000px;}
.wsb_c02157{word-spacing:156.740400px;}
.ws23_c02157{word-spacing:199.578600px;}
._22_c02157{margin-left:-1.054080px;}
._29_c02157{width:1.026000px;}
._14_c02157{width:42.481800px;}
._34_c02157{width:43.693776px;}
._b_c02157{width:50.937552px;}
._10_c02157{width:62.064000px;}
._e_c02157{width:65.340000px;}
._13_c02157{width:67.635000px;}
._8_c02157{width:72.604440px;}
._11_c02157{width:74.923020px;}
._19_c02157{width:76.104000px;}
._9_c02157{width:77.310180px;}
._33_c02157{width:83.728260px;}
._2_c02157{width:84.834000px;}
._30_c02157{width:87.141600px;}
._1_c02157{width:88.221600px;}
._c_c02157{width:91.288440px;}
._18_c02157{width:94.564296px;}
._a_c02157{width:100.015200px;}
._32_c02157{width:101.095200px;}
._1d_c02157{width:103.104000px;}
._17_c02157{width:104.937588px;}
._20_c02157{width:108.435600px;}
._12_c02157{width:109.594296px;}
._1f_c02157{width:111.720168px;}
._1c_c02157{width:114.095016px;}
._4_c02157{width:115.740000px;}
._5_c02157{width:118.378944px;}
._1b_c02157{width:120.067668px;}
._3_c02157{width:122.220000px;}
._1e_c02157{width:124.666920px;}
._31_c02157{width:126.958608px;}
._1a_c02157{width:128.162160px;}
._f_c02157{width:130.104000px;}
._21_c02157{width:133.247016px;}
._36_c02157{width:136.920168px;}
._7_c02157{width:140.027688px;}
._16_c02157{width:144.540000px;}
._15_c02157{width:146.586384px;}
._35_c02157{width:149.866920px;}
._6_c02157{width:152.431524px;}
._37_c02157{width:158.447016px;}
._0_c02157{width:194.400000px;}
._d_c02157{width:200.964168px;}
._2f_c02157{width:203.036400px;}
._26_c02157{width:216.180000px;}
._24_c02157{width:283.500000px;}
._2b_c02157{width:303.170400px;}
._27_c02157{width:310.104000px;}
._25_c02157{width:324.775800px;}
._2c_c02157{width:382.210200px;}
._2a_c02157{width:451.783800px;}
._2d_c02157{width:482.234400px;}
._28_c02157{width:483.924600px;}
._23_c02157{width:560.692800px;}
._2e_c02157{width:799.695000px;}
.fc0_c02157{color:rgb(0,0,0);}
.fs5_c02157{font-size:11.880000px;}
.fs3_c02157{font-size:42.120000px;}
.fs2_c02157{font-size:47.880000px;}
.fs1_c02157{font-size:54.000000px;}
.fs4_c02157{font-size:65.880000px;}
.fs0_c02157{font-size:72.000000px;}
.y0_c02157{bottom:0.000000px;}
.y3_c02157{bottom:57.360450px;}
.y2_c02157{bottom:78.060450px;}
.y53_c02157{bottom:113.520450px;}
.y52_c02157{bottom:129.000900px;}
.y51_c02157{bottom:144.570450px;}
.y50_c02157{bottom:160.050450px;}
.y4f_c02157{bottom:160.410900px;}
.y4e_c02157{bottom:180.750450px;}
.y4d_c02157{bottom:181.110900px;}
.y4c_c02157{bottom:201.450600px;}
.y4b_c02157{bottom:201.811050px;}
.y4a_c02157{bottom:222.150450px;}
.y49_c02157{bottom:222.510900px;}
.y48_c02157{bottom:242.850450px;}
.y47_c02157{bottom:243.210600px;}
.y46_c02157{bottom:263.910450px;}
.y45_c02157{bottom:282.540450px;}
.y44_c02157{bottom:282.900450px;}
.y43_c02157{bottom:304.230450px;}
.y42_c02157{bottom:322.590450px;}
.y41_c02157{bottom:339.960600px;}
.y40_c02157{bottom:360.750600px;}
.y3f_c02157{bottom:369.570450px;}
.y3e_c02157{bottom:369.930000px;}
.y3d_c02157{bottom:388.470450px;}
.y3c_c02157{bottom:388.920600px;}
.y3b_c02157{bottom:407.460600px;}
.y3a_c02157{bottom:407.820000px;}
.y39_c02157{bottom:426.450600px;}
.y38_c02157{bottom:426.810000px;}
.y37_c02157{bottom:445.440600px;}
.y36_c02157{bottom:445.800450px;}
.y35_c02157{bottom:464.790600px;}
.y34_c02157{bottom:483.330450px;}
.y33_c02157{bottom:483.780600px;}
.y32_c02157{bottom:505.110600px;}
.y31_c02157{bottom:523.380450px;}
.y30_c02157{bottom:540.750450px;}
.y2f_c02157{bottom:560.910450px;}
.y2e_c02157{bottom:576.480000px;}
.y2d_c02157{bottom:591.960450px;}
.y2c_c02157{bottom:607.350099px;}
.y2b_c02157{bottom:621.210162px;}
.y2a_c02157{bottom:634.980450px;}
.y29_c02157{bottom:651.090450px;}
.y28_c02157{bottom:666.660450px;}
.y27_c02157{bottom:682.140450px;}
.y26_c02157{bottom:697.710450px;}
.y25_c02157{bottom:713.190450px;}
.y24_c02157{bottom:728.760450px;}
.y23_c02157{bottom:744.240450px;}
.y22_c02157{bottom:759.810450px;}
.y1f_c02157{bottom:777.540600px;}
.y21_c02157{bottom:777.810450px;}
.y20_c02157{bottom:795.270450px;}
.y1e_c02157{bottom:812.101305px;}
.y1d_c02157{bottom:831.000630px;}
.y1c_c02157{bottom:849.990540px;}
.y1b_c02157{bottom:868.980450px;}
.y1a_c02157{bottom:887.250600px;}
.y19_c02157{bottom:887.700450px;}
.y18_c02157{bottom:906.240450px;}
.y17_c02157{bottom:906.600000px;}
.y16_c02157{bottom:925.230450px;}
.y15_c02157{bottom:925.590000px;}
.y14_c02157{bottom:944.220450px;}
.y13_c02157{bottom:944.580000px;}
.y12_c02157{bottom:963.210450px;}
.y11_c02157{bottom:963.570450px;}
.y10_c02157{bottom:982.560450px;}
.yf_c02157{bottom:1001.100450px;}
.ye_c02157{bottom:1001.460450px;}
.yd_c02157{bottom:1022.160450px;}
.yc_c02157{bottom:1040.790450px;}
.yb_c02157{bottom:1041.150900px;}
.ya_c02157{bottom:1061.490450px;}
.y9_c02157{bottom:1061.850900px;}
.y8_c02157{bottom:1082.190450px;}
.y7_c02157{bottom:1082.550450px;}
.y6_c02157{bottom:1103.970450px;}
.y5_c02157{bottom:1122.240450px;}
.y4_c02157{bottom:1139.610450px;}
.y1_c02157{bottom:1193.160450px;}
.h11_c02157{height:10.551621px;}
.hb_c02157{height:42.011895px;}
.hc_c02157{height:47.381836px;}
.h3_c02157{height:47.961914px;}
.ha_c02157{height:48.461236px;}
.hd_c02157{height:48.461836px;}
.h9_c02157{height:58.513535px;}
.hf_c02157{height:61.032935px;}
.h6_c02157{height:61.033535px;}
.h5_c02157{height:61.393535px;}
.h10_c02157{height:62.472935px;}
.h7_c02157{height:62.473535px;}
.h8_c02157{height:62.832935px;}
.h4_c02157{height:62.833535px;}
.h2_c02157{height:63.175781px;}
.h1_c02157{height:63.949219px;}
.he_c02157{height:79.421836px;}
.h0_c02157{height:1263.000000px;}
.w1_c02157{width:892.500000px;}
.w0_c02157{width:892.830000px;}
.x0_c02157{left:0.000000px;}
.x1_c02157{left:127.620000px;}
.x7_c02157{left:134.550000px;}
.x3_c02157{left:135.630000px;}
.x4_c02157{left:143.910000px;}
.x5_c02157{left:164.970000px;}
.x6_c02157{left:220.680000px;}
.x8_c02157{left:380.700000px;}
.x9_c02157{left:403.380000px;}
.x2_c02157{left:433.080000px;}
.xa_c02157{left:555.300000px;}
@media print{
.v3_c02157{vertical-align:-3.840000pt;}
.v2_c02157{vertical-align:-2.560000pt;}
.v1_c02157{vertical-align:-1.280000pt;}
.v0_c02157{vertical-align:0.000000pt;}
.v6_c02157{vertical-align:0.960000pt;}
.v4_c02157{vertical-align:2.240000pt;}
.v5_c02157{vertical-align:3.840000pt;}
.v8_c02157{vertical-align:6.080000pt;}
.v7_c02157{vertical-align:28.480000pt;}
.ls2d_c02157{letter-spacing:-0.158400pt;}
.ls29_c02157{letter-spacing:-0.105600pt;}
.ls2b_c02157{letter-spacing:-0.091200pt;}
.ls2a_c02157{letter-spacing:-0.076800pt;}
.ls25_c02157{letter-spacing:-0.076608pt;}
.ls21_c02157{letter-spacing:-0.038400pt;}
.ls23_c02157{letter-spacing:-0.017024pt;}
.ls2c_c02157{letter-spacing:-0.014400pt;}
.ls1e_c02157{letter-spacing:-0.012800pt;}
.ls22_c02157{letter-spacing:-0.009600pt;}
.ls27_c02157{letter-spacing:-0.008512pt;}
.ls2e_c02157{letter-spacing:-0.006400pt;}
.ls28_c02157{letter-spacing:-0.004256pt;}
.ls1f_c02157{letter-spacing:0.000000pt;}
.ls13_c02157{letter-spacing:0.004800pt;}
.ls12_c02157{letter-spacing:0.005856pt;}
.ls0_c02157{letter-spacing:0.009600pt;}
.ls3_c02157{letter-spacing:0.011232pt;}
.ls16_c02157{letter-spacing:0.014400pt;}
.ls10_c02157{letter-spacing:0.017024pt;}
.ls15_c02157{letter-spacing:0.024000pt;}
.ls2_c02157{letter-spacing:0.025536pt;}
.ls4_c02157{letter-spacing:0.028800pt;}
.lsa_c02157{letter-spacing:0.033600pt;}
.ls1_c02157{letter-spacing:0.038304pt;}
.ls9_c02157{letter-spacing:0.038400pt;}
.ls18_c02157{letter-spacing:0.059584pt;}
.ls7_c02157{letter-spacing:0.068096pt;}
.ls11_c02157{letter-spacing:0.070272pt;}
.lsd_c02157{letter-spacing:0.072352pt;}
.ls17_c02157{letter-spacing:0.076608pt;}
.ls14_c02157{letter-spacing:0.085120pt;}
.ls19_c02157{letter-spacing:0.102144pt;}
.ls1a_c02157{letter-spacing:0.106400pt;}
.lse_c02157{letter-spacing:0.110656pt;}
.lsf_c02157{letter-spacing:0.119168pt;}
.ls20_c02157{letter-spacing:0.134400pt;}
.ls5_c02157{letter-spacing:0.140544pt;}
.lsc_c02157{letter-spacing:0.144704pt;}
.ls24_c02157{letter-spacing:0.148960pt;}
.ls8_c02157{letter-spacing:0.161728pt;}
.ls1b_c02157{letter-spacing:99.840000pt;}
.ls6_c02157{letter-spacing:100.480000pt;}
.ls2f_c02157{letter-spacing:127.838400pt;}
.ls26_c02157{letter-spacing:128.481600pt;}
.ls1d_c02157{letter-spacing:139.358400pt;}
.ls1c_c02157{letter-spacing:177.120000pt;}
.lsb_c02157{letter-spacing:178.480000pt;}
.ws0_c02157{word-spacing:-14.780544pt;}
.ws3_c02157{word-spacing:-14.645856pt;}
.ws8_c02157{word-spacing:-0.242592pt;}
.wsa_c02157{word-spacing:-0.225568pt;}
.wse_c02157{word-spacing:-0.200032pt;}
.wsd_c02157{word-spacing:-0.191520pt;}
.ws20_c02157{word-spacing:-0.187264pt;}
.ws1a_c02157{word-spacing:-0.168000pt;}
.ws13_c02157{word-spacing:-0.165984pt;}
.wsf_c02157{word-spacing:-0.153216pt;}
.ws11_c02157{word-spacing:-0.106400pt;}
.ws10_c02157{word-spacing:-0.097888pt;}
.ws7_c02157{word-spacing:-0.089856pt;}
.wsc_c02157{word-spacing:-0.072352pt;}
.ws6_c02157{word-spacing:0.000000pt;}
.ws21_c02157{word-spacing:0.006400pt;}
.ws12_c02157{word-spacing:0.011712pt;}
.ws5_c02157{word-spacing:0.012800pt;}
.ws14_c02157{word-spacing:0.129600pt;}
.ws17_c02157{word-spacing:0.134400pt;}
.ws18_c02157{word-spacing:0.144000pt;}
.ws19_c02157{word-spacing:0.172800pt;}
.ws15_c02157{word-spacing:0.235200pt;}
.ws16_c02157{word-spacing:0.249600pt;}
.ws1d_c02157{word-spacing:1.098048pt;}
.ws1f_c02157{word-spacing:1.132096pt;}
.ws1e_c02157{word-spacing:1.161888pt;}
.ws1b_c02157{word-spacing:5.281696pt;}
.ws1c_c02157{word-spacing:5.298720pt;}
.ws2_c02157{word-spacing:42.817280pt;}
.ws4_c02157{word-spacing:52.737280pt;}
.ws1_c02157{word-spacing:66.817280pt;}
.ws22_c02157{word-spacing:139.003200pt;}
.ws9_c02157{word-spacing:139.320000pt;}
.wsb_c02157{word-spacing:139.324800pt;}
.ws23_c02157{word-spacing:177.403200pt;}
._22_c02157{margin-left:-0.936960pt;}
._29_c02157{width:0.912000pt;}
._14_c02157{width:37.761600pt;}
._34_c02157{width:38.838912pt;}
._b_c02157{width:45.277824pt;}
._10_c02157{width:55.168000pt;}
._e_c02157{width:58.080000pt;}
._13_c02157{width:60.120000pt;}
._8_c02157{width:64.537280pt;}
._11_c02157{width:66.598240pt;}
._19_c02157{width:67.648000pt;}
._9_c02157{width:68.720160pt;}
._33_c02157{width:74.425120pt;}
._2_c02157{width:75.408000pt;}
._30_c02157{width:77.459200pt;}
._1_c02157{width:78.419200pt;}
._c_c02157{width:81.145280pt;}
._18_c02157{width:84.057152pt;}
._a_c02157{width:88.902400pt;}
._32_c02157{width:89.862400pt;}
._1d_c02157{width:91.648000pt;}
._17_c02157{width:93.277856pt;}
._20_c02157{width:96.387200pt;}
._12_c02157{width:97.417152pt;}
._1f_c02157{width:99.306816pt;}
._1c_c02157{width:101.417792pt;}
._4_c02157{width:102.880000pt;}
._5_c02157{width:105.225728pt;}
._1b_c02157{width:106.726816pt;}
._3_c02157{width:108.640000pt;}
._1e_c02157{width:110.815040pt;}
._31_c02157{width:112.852096pt;}
._1a_c02157{width:113.921920pt;}
._f_c02157{width:115.648000pt;}
._21_c02157{width:118.441792pt;}
._36_c02157{width:121.706816pt;}
._7_c02157{width:124.469056pt;}
._16_c02157{width:128.480000pt;}
._15_c02157{width:130.299008pt;}
._35_c02157{width:133.215040pt;}
._6_c02157{width:135.494688pt;}
._37_c02157{width:140.841792pt;}
._0_c02157{width:172.800000pt;}
._d_c02157{width:178.634816pt;}
._2f_c02157{width:180.476800pt;}
._26_c02157{width:192.160000pt;}
._24_c02157{width:252.000000pt;}
._2b_c02157{width:269.484800pt;}
._27_c02157{width:275.648000pt;}
._25_c02157{width:288.689600pt;}
._2c_c02157{width:339.742400pt;}
._2a_c02157{width:401.585600pt;}
._2d_c02157{width:428.652800pt;}
._28_c02157{width:430.155200pt;}
._23_c02157{width:498.393600pt;}
._2e_c02157{width:710.840000pt;}
.fs5_c02157{font-size:10.560000pt;}
.fs3_c02157{font-size:37.440000pt;}
.fs2_c02157{font-size:42.560000pt;}
.fs1_c02157{font-size:48.000000pt;}
.fs4_c02157{font-size:58.560000pt;}
.fs0_c02157{font-size:64.000000pt;}
.y0_c02157{bottom:0.000000pt;}
.y3_c02157{bottom:50.987067pt;}
.y2_c02157{bottom:69.387067pt;}
.y53_c02157{bottom:100.907067pt;}
.y52_c02157{bottom:114.667467pt;}
.y51_c02157{bottom:128.507067pt;}
.y50_c02157{bottom:142.267067pt;}
.y4f_c02157{bottom:142.587467pt;}
.y4e_c02157{bottom:160.667067pt;}
.y4d_c02157{bottom:160.987467pt;}
.y4c_c02157{bottom:179.067200pt;}
.y4b_c02157{bottom:179.387600pt;}
.y4a_c02157{bottom:197.467067pt;}
.y49_c02157{bottom:197.787467pt;}
.y48_c02157{bottom:215.867067pt;}
.y47_c02157{bottom:216.187200pt;}
.y46_c02157{bottom:234.587067pt;}
.y45_c02157{bottom:251.147067pt;}
.y44_c02157{bottom:251.467067pt;}
.y43_c02157{bottom:270.427067pt;}
.y42_c02157{bottom:286.747067pt;}
.y41_c02157{bottom:302.187200pt;}
.y40_c02157{bottom:320.667200pt;}
.y3f_c02157{bottom:328.507067pt;}
.y3e_c02157{bottom:328.826667pt;}
.y3d_c02157{bottom:345.307067pt;}
.y3c_c02157{bottom:345.707200pt;}
.y3b_c02157{bottom:362.187200pt;}
.y3a_c02157{bottom:362.506667pt;}
.y39_c02157{bottom:379.067200pt;}
.y38_c02157{bottom:379.386667pt;}
.y37_c02157{bottom:395.947200pt;}
.y36_c02157{bottom:396.267067pt;}
.y35_c02157{bottom:413.147200pt;}
.y34_c02157{bottom:429.627067pt;}
.y33_c02157{bottom:430.027200pt;}
.y32_c02157{bottom:448.987200pt;}
.y31_c02157{bottom:465.227067pt;}
.y30_c02157{bottom:480.667067pt;}
.y2f_c02157{bottom:498.587067pt;}
.y2e_c02157{bottom:512.426667pt;}
.y2d_c02157{bottom:526.187067pt;}
.y2c_c02157{bottom:539.866755pt;}
.y2b_c02157{bottom:552.186811pt;}
.y2a_c02157{bottom:564.427067pt;}
.y29_c02157{bottom:578.747067pt;}
.y28_c02157{bottom:592.587067pt;}
.y27_c02157{bottom:606.347067pt;}
.y26_c02157{bottom:620.187067pt;}
.y25_c02157{bottom:633.947067pt;}
.y24_c02157{bottom:647.787067pt;}
.y23_c02157{bottom:661.547067pt;}
.y22_c02157{bottom:675.387067pt;}
.y1f_c02157{bottom:691.147200pt;}
.y21_c02157{bottom:691.387067pt;}
.y20_c02157{bottom:706.907067pt;}
.y1e_c02157{bottom:721.867827pt;}
.y1d_c02157{bottom:738.667227pt;}
.y1c_c02157{bottom:755.547147pt;}
.y1b_c02157{bottom:772.427067pt;}
.y1a_c02157{bottom:788.667200pt;}
.y19_c02157{bottom:789.067067pt;}
.y18_c02157{bottom:805.547067pt;}
.y17_c02157{bottom:805.866667pt;}
.y16_c02157{bottom:822.427067pt;}
.y15_c02157{bottom:822.746667pt;}
.y14_c02157{bottom:839.307067pt;}
.y13_c02157{bottom:839.626667pt;}
.y12_c02157{bottom:856.187067pt;}
.y11_c02157{bottom:856.507067pt;}
.y10_c02157{bottom:873.387067pt;}
.yf_c02157{bottom:889.867067pt;}
.ye_c02157{bottom:890.187067pt;}
.yd_c02157{bottom:908.587067pt;}
.yc_c02157{bottom:925.147067pt;}
.yb_c02157{bottom:925.467467pt;}
.ya_c02157{bottom:943.547067pt;}
.y9_c02157{bottom:943.867467pt;}
.y8_c02157{bottom:961.947067pt;}
.y7_c02157{bottom:962.267067pt;}
.y6_c02157{bottom:981.307067pt;}
.y5_c02157{bottom:997.547067pt;}
.y4_c02157{bottom:1012.987067pt;}
.y1_c02157{bottom:1060.587067pt;}
.h11_c02157{height:9.379219pt;}
.hb_c02157{height:37.343906pt;}
.hc_c02157{height:42.117188pt;}
.h3_c02157{height:42.632812pt;}
.ha_c02157{height:43.076654pt;}
.hd_c02157{height:43.077187pt;}
.h9_c02157{height:52.012031pt;}
.hf_c02157{height:54.251498pt;}
.h6_c02157{height:54.252031pt;}
.h5_c02157{height:54.572031pt;}
.h10_c02157{height:55.531498pt;}
.h7_c02157{height:55.532031pt;}
.h8_c02157{height:55.851498pt;}
.h4_c02157{height:55.852031pt;}
.h2_c02157{height:56.156250pt;}
.h1_c02157{height:56.843750pt;}
.he_c02157{height:70.597187pt;}
.h0_c02157{height:1122.666667pt;}
.w1_c02157{width:793.333333pt;}
.w0_c02157{width:793.626667pt;}
.x0_c02157{left:0.000000pt;}
.x1_c02157{left:113.440000pt;}
.x7_c02157{left:119.600000pt;}
.x3_c02157{left:120.560000pt;}
.x4_c02157{left:127.920000pt;}
.x5_c02157{left:146.640000pt;}
.x6_c02157{left:196.160000pt;}
.x8_c02157{left:338.400000pt;}
.x9_c02157{left:358.560000pt;}
.x2_c02157{left:384.960000pt;}
.xa_c02157{left:493.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_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_37ba796b80676117d35c15c8.woff2')format("woff");}.ff1_c02158{font-family:ff1_c02158;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02158;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.vc_c02158{vertical-align:-9.000000px;}
.va_c02158{vertical-align:-6.841800px;}
.v3_c02158{vertical-align:-4.320000px;}
.v2_c02158{vertical-align:-2.880000px;}
.v1_c02158{vertical-align:-1.440000px;}
.v0_c02158{vertical-align:0.000000px;}
.v7_c02158{vertical-align:1.080000px;}
.v5_c02158{vertical-align:2.520000px;}
.v6_c02158{vertical-align:4.320000px;}
.v8_c02158{vertical-align:5.399400px;}
.v4_c02158{vertical-align:6.840000px;}
.v9_c02158{vertical-align:9.360000px;}
.vb_c02158{vertical-align:32.040000px;}
.ls2d_c02158{letter-spacing:-0.178200px;}
.ls29_c02158{letter-spacing:-0.118800px;}
.ls2c_c02158{letter-spacing:-0.102600px;}
.ls2a_c02158{letter-spacing:-0.086400px;}
.ls24_c02158{letter-spacing:-0.086184px;}
.ls20_c02158{letter-spacing:-0.043200px;}
.ls22_c02158{letter-spacing:-0.019152px;}
.ls2b_c02158{letter-spacing:-0.016200px;}
.ls1c_c02158{letter-spacing:-0.014400px;}
.ls21_c02158{letter-spacing:-0.010800px;}
.ls27_c02158{letter-spacing:-0.009576px;}
.ls2f_c02158{letter-spacing:-0.007200px;}
.ls1d_c02158{letter-spacing:0.000000px;}
.ls13_c02158{letter-spacing:0.005400px;}
.ls12_c02158{letter-spacing:0.006588px;}
.ls1e_c02158{letter-spacing:0.007200px;}
.ls0_c02158{letter-spacing:0.010800px;}
.ls3_c02158{letter-spacing:0.012636px;}
.ls15_c02158{letter-spacing:0.016200px;}
.ls16_c02158{letter-spacing:0.027000px;}
.ls2_c02158{letter-spacing:0.028728px;}
.ls4_c02158{letter-spacing:0.032400px;}
.lsa_c02158{letter-spacing:0.037800px;}
.ls1_c02158{letter-spacing:0.043092px;}
.ls9_c02158{letter-spacing:0.043200px;}
.ls18_c02158{letter-spacing:0.067032px;}
.ls7_c02158{letter-spacing:0.076608px;}
.ls11_c02158{letter-spacing:0.079056px;}
.lse_c02158{letter-spacing:0.081396px;}
.ls17_c02158{letter-spacing:0.086184px;}
.ls14_c02158{letter-spacing:0.095760px;}
.lsf_c02158{letter-spacing:0.110124px;}
.ls19_c02158{letter-spacing:0.114912px;}
.ls1a_c02158{letter-spacing:0.119700px;}
.ls1f_c02158{letter-spacing:0.151200px;}
.ls5_c02158{letter-spacing:0.158112px;}
.lsd_c02158{letter-spacing:0.162792px;}
.ls23_c02158{letter-spacing:0.167580px;}
.ls8_c02158{letter-spacing:0.181944px;}
.ls10_c02158{letter-spacing:0.205884px;}
.ls1b_c02158{letter-spacing:112.320000px;}
.ls6_c02158{letter-spacing:113.040000px;}
.ls2e_c02158{letter-spacing:143.818200px;}
.ls25_c02158{letter-spacing:144.541800px;}
.ls28_c02158{letter-spacing:156.421800px;}
.lsc_c02158{letter-spacing:156.778200px;}
.ls26_c02158{letter-spacing:157.951332px;}
.lsb_c02158{letter-spacing:200.790000px;}
.sc__c02158{text-shadow:none;}
.sc0_c02158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02158{-webkit-text-stroke:0px transparent;}
.sc0_c02158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02158{word-spacing:-16.628112px;}
.wsb_c02158{word-spacing:-0.296856px;}
.ws8_c02158{word-spacing:-0.272916px;}
.ws9_c02158{word-spacing:-0.253764px;}
.ws1a_c02158{word-spacing:-0.210672px;}
.ws12_c02158{word-spacing:-0.189000px;}
.wsd_c02158{word-spacing:-0.186732px;}
.ws7_c02158{word-spacing:-0.101088px;}
.wsa_c02158{word-spacing:-0.081396px;}
.ws1b_c02158{word-spacing:-0.050400px;}
.ws6_c02158{word-spacing:-0.007200px;}
.ws5_c02158{word-spacing:0.000000px;}
.ws1c_c02158{word-spacing:0.007200px;}
.wsc_c02158{word-spacing:0.013176px;}
.ws4_c02158{word-spacing:0.014400px;}
.wse_c02158{word-spacing:0.145800px;}
.ws13_c02158{word-spacing:0.151200px;}
.wsf_c02158{word-spacing:0.162000px;}
.ws11_c02158{word-spacing:0.194400px;}
.ws10_c02158{word-spacing:0.264600px;}
.ws14_c02158{word-spacing:0.280800px;}
.ws17_c02158{word-spacing:1.235304px;}
.ws19_c02158{word-spacing:1.273608px;}
.ws18_c02158{word-spacing:1.307124px;}
.ws15_c02158{word-spacing:5.941908px;}
.ws16_c02158{word-spacing:5.961060px;}
.ws1_c02158{word-spacing:58.969440px;}
.ws3_c02158{word-spacing:75.169440px;}
.ws2_c02158{word-spacing:101.089440px;}
.ws1d_c02158{word-spacing:156.735000px;}
._1c_c02158{margin-left:-1.001376px;}
._26_c02158{width:1.026000px;}
._16_c02158{width:42.837336px;}
._c_c02158{width:50.937552px;}
._11_c02158{width:61.693200px;}
._1a_c02158{width:65.340000px;}
._2f_c02158{width:67.195836px;}
._9_c02158{width:72.604440px;}
._14_c02158{width:75.420000px;}
._a_c02158{width:77.310180px;}
._f_c02158{width:83.700000px;}
._2_c02158{width:84.834000px;}
._1_c02158{width:87.861600px;}
._d_c02158{width:91.288440px;}
._19_c02158{width:94.595436px;}
._b_c02158{width:100.375200px;}
._6_c02158{width:101.976120px;}
._12_c02158{width:104.544000px;}
._1b_c02158{width:108.370980px;}
._18_c02158{width:114.216120px;}
._17_c02158{width:115.740000px;}
._5_c02158{width:118.378944px;}
._10_c02158{width:120.744000px;}
._3_c02158{width:122.220000px;}
._2b_c02158{width:126.347688px;}
._4_c02158{width:127.980000px;}
._13_c02158{width:129.384000px;}
._2e_c02158{width:130.464000px;}
._2a_c02158{width:135.456120px;}
._2d_c02158{width:139.583808px;}
._30_c02158{width:143.820000px;}
._8_c02158{width:148.307688px;}
._7_c02158{width:153.235404px;}
._e_c02158{width:182.604168px;}
._0_c02158{width:194.400000px;}
._2c_c02158{width:199.046160px;}
._29_c02158{width:203.036400px;}
._20_c02158{width:216.180000px;}
._15_c02158{width:242.009856px;}
._1e_c02158{width:283.500000px;}
._25_c02158{width:303.170400px;}
._21_c02158{width:310.104000px;}
._1f_c02158{width:324.775800px;}
._22_c02158{width:382.210200px;}
._27_c02158{width:451.783800px;}
._24_c02158{width:482.234400px;}
._23_c02158{width:483.924600px;}
._1d_c02158{width:560.692800px;}
._28_c02158{width:799.695000px;}
.fc0_c02158{color:rgb(0,0,0);}
.fs5_c02158{font-size:11.880000px;}
.fs3_c02158{font-size:42.120000px;}
.fs2_c02158{font-size:47.880000px;}
.fs1_c02158{font-size:54.000000px;}
.fs4_c02158{font-size:65.880000px;}
.fs0_c02158{font-size:72.000000px;}
.y0_c02158{bottom:0.000000px;}
.y3_c02158{bottom:57.360450px;}
.y2_c02158{bottom:78.060450px;}
.y49_c02158{bottom:129.450900px;}
.y48_c02158{bottom:145.020450px;}
.y47_c02158{bottom:160.500900px;}
.y46_c02158{bottom:176.070450px;}
.y45_c02158{bottom:191.550900px;}
.y44_c02158{bottom:207.120450px;}
.y43_c02158{bottom:222.600900px;}
.y42_c02158{bottom:238.170450px;}
.y41_c02158{bottom:253.650900px;}
.y40_c02158{bottom:269.220450px;}
.y3f_c02158{bottom:284.700900px;}
.y3e_c02158{bottom:300.270450px;}
.y3d_c02158{bottom:315.750450px;}
.y3c_c02158{bottom:316.110450px;}
.y3b_c02158{bottom:336.810450px;}
.y3a_c02158{bottom:355.440450px;}
.y39_c02158{bottom:355.800450px;}
.y38_c02158{bottom:377.130450px;}
.y37_c02158{bottom:395.490450px;}
.y36_c02158{bottom:412.860600px;}
.y35_c02158{bottom:433.650450px;}
.y34_c02158{bottom:442.380450px;}
.y33_c02158{bottom:442.830450px;}
.y32_c02158{bottom:462.450600px;}
.y31_c02158{bottom:480.720450px;}
.y30_c02158{bottom:498.090600px;}
.y2f_c02158{bottom:518.250000px;}
.y2e_c02158{bottom:533.730450px;}
.y2d_c02158{bottom:549.300000px;}
.y2c_c02158{bottom:564.780450px;}
.y2b_c02158{bottom:580.259874px;}
.y2a_c02158{bottom:594.030162px;}
.y29_c02158{bottom:607.800450px;}
.y28_c02158{bottom:624.000450px;}
.y27_c02158{bottom:639.480450px;}
.y26_c02158{bottom:660.000450px;}
.y25_c02158{bottom:675.480450px;}
.y24_c02158{bottom:691.050450px;}
.y23_c02158{bottom:706.530450px;}
.y22_c02158{bottom:722.100450px;}
.y21_c02158{bottom:737.580450px;}
.y1e_c02158{bottom:755.400450px;}
.y20_c02158{bottom:755.670450px;}
.y1f_c02158{bottom:773.040600px;}
.y1d_c02158{bottom:789.960450px;}
.y1c_c02158{bottom:808.140900px;}
.y1b_c02158{bottom:823.710450px;}
.y1a_c02158{bottom:839.190900px;}
.y19_c02158{bottom:854.760450px;}
.y18_c02158{bottom:870.240450px;}
.y17_c02158{bottom:870.600450px;}
.y16_c02158{bottom:890.310450px;}
.y15_c02158{bottom:908.580450px;}
.y14_c02158{bottom:925.950450px;}
.y13_c02158{bottom:946.740450px;}
.y12_c02158{bottom:955.560450px;}
.y11_c02158{bottom:955.920450px;}
.y10_c02158{bottom:975.540600px;}
.yf_c02158{bottom:993.810450px;}
.ye_c02158{bottom:1011.180450px;}
.yd_c02158{bottom:1031.970450px;}
.yc_c02158{bottom:1040.790450px;}
.yb_c02158{bottom:1041.150900px;}
.ya_c02158{bottom:1061.490450px;}
.y9_c02158{bottom:1061.850900px;}
.y8_c02158{bottom:1082.190450px;}
.y7_c02158{bottom:1082.550450px;}
.y6_c02158{bottom:1103.970450px;}
.y5_c02158{bottom:1122.240450px;}
.y4_c02158{bottom:1139.610450px;}
.y1_c02158{bottom:1193.160450px;}
.h5_c02158{height:10.551621px;}
.h9_c02158{height:42.011895px;}
.ha_c02158{height:47.381836px;}
.h3_c02158{height:47.961914px;}
.h8_c02158{height:48.461836px;}
.h7_c02158{height:58.513535px;}
.hd_c02158{height:61.033535px;}
.h6_c02158{height:62.473535px;}
.h4_c02158{height:62.833535px;}
.hc_c02158{height:62.834135px;}
.h2_c02158{height:63.175781px;}
.h1_c02158{height:63.949219px;}
.hb_c02158{height:79.421836px;}
.h0_c02158{height:1263.000000px;}
.w1_c02158{width:892.500000px;}
.w0_c02158{width:892.830000px;}
.x0_c02158{left:0.000000px;}
.x1_c02158{left:127.620000px;}
.x7_c02158{left:134.550000px;}
.x3_c02158{left:135.630000px;}
.x4_c02158{left:143.730000px;}
.x5_c02158{left:164.700000px;}
.x6_c02158{left:220.410000px;}
.x8_c02158{left:380.700000px;}
.x9_c02158{left:403.380000px;}
.x2_c02158{left:433.080000px;}
@media print{
.vc_c02158{vertical-align:-8.000000pt;}
.va_c02158{vertical-align:-6.081600pt;}
.v3_c02158{vertical-align:-3.840000pt;}
.v2_c02158{vertical-align:-2.560000pt;}
.v1_c02158{vertical-align:-1.280000pt;}
.v0_c02158{vertical-align:0.000000pt;}
.v7_c02158{vertical-align:0.960000pt;}
.v5_c02158{vertical-align:2.240000pt;}
.v6_c02158{vertical-align:3.840000pt;}
.v8_c02158{vertical-align:4.799467pt;}
.v4_c02158{vertical-align:6.080000pt;}
.v9_c02158{vertical-align:8.320000pt;}
.vb_c02158{vertical-align:28.480000pt;}
.ls2d_c02158{letter-spacing:-0.158400pt;}
.ls29_c02158{letter-spacing:-0.105600pt;}
.ls2c_c02158{letter-spacing:-0.091200pt;}
.ls2a_c02158{letter-spacing:-0.076800pt;}
.ls24_c02158{letter-spacing:-0.076608pt;}
.ls20_c02158{letter-spacing:-0.038400pt;}
.ls22_c02158{letter-spacing:-0.017024pt;}
.ls2b_c02158{letter-spacing:-0.014400pt;}
.ls1c_c02158{letter-spacing:-0.012800pt;}
.ls21_c02158{letter-spacing:-0.009600pt;}
.ls27_c02158{letter-spacing:-0.008512pt;}
.ls2f_c02158{letter-spacing:-0.006400pt;}
.ls1d_c02158{letter-spacing:0.000000pt;}
.ls13_c02158{letter-spacing:0.004800pt;}
.ls12_c02158{letter-spacing:0.005856pt;}
.ls1e_c02158{letter-spacing:0.006400pt;}
.ls0_c02158{letter-spacing:0.009600pt;}
.ls3_c02158{letter-spacing:0.011232pt;}
.ls15_c02158{letter-spacing:0.014400pt;}
.ls16_c02158{letter-spacing:0.024000pt;}
.ls2_c02158{letter-spacing:0.025536pt;}
.ls4_c02158{letter-spacing:0.028800pt;}
.lsa_c02158{letter-spacing:0.033600pt;}
.ls1_c02158{letter-spacing:0.038304pt;}
.ls9_c02158{letter-spacing:0.038400pt;}
.ls18_c02158{letter-spacing:0.059584pt;}
.ls7_c02158{letter-spacing:0.068096pt;}
.ls11_c02158{letter-spacing:0.070272pt;}
.lse_c02158{letter-spacing:0.072352pt;}
.ls17_c02158{letter-spacing:0.076608pt;}
.ls14_c02158{letter-spacing:0.085120pt;}
.lsf_c02158{letter-spacing:0.097888pt;}
.ls19_c02158{letter-spacing:0.102144pt;}
.ls1a_c02158{letter-spacing:0.106400pt;}
.ls1f_c02158{letter-spacing:0.134400pt;}
.ls5_c02158{letter-spacing:0.140544pt;}
.lsd_c02158{letter-spacing:0.144704pt;}
.ls23_c02158{letter-spacing:0.148960pt;}
.ls8_c02158{letter-spacing:0.161728pt;}
.ls10_c02158{letter-spacing:0.183008pt;}
.ls1b_c02158{letter-spacing:99.840000pt;}
.ls6_c02158{letter-spacing:100.480000pt;}
.ls2e_c02158{letter-spacing:127.838400pt;}
.ls25_c02158{letter-spacing:128.481600pt;}
.ls28_c02158{letter-spacing:139.041600pt;}
.lsc_c02158{letter-spacing:139.358400pt;}
.ls26_c02158{letter-spacing:140.401184pt;}
.lsb_c02158{letter-spacing:178.480000pt;}
.ws0_c02158{word-spacing:-14.780544pt;}
.wsb_c02158{word-spacing:-0.263872pt;}
.ws8_c02158{word-spacing:-0.242592pt;}
.ws9_c02158{word-spacing:-0.225568pt;}
.ws1a_c02158{word-spacing:-0.187264pt;}
.ws12_c02158{word-spacing:-0.168000pt;}
.wsd_c02158{word-spacing:-0.165984pt;}
.ws7_c02158{word-spacing:-0.089856pt;}
.wsa_c02158{word-spacing:-0.072352pt;}
.ws1b_c02158{word-spacing:-0.044800pt;}
.ws6_c02158{word-spacing:-0.006400pt;}
.ws5_c02158{word-spacing:0.000000pt;}
.ws1c_c02158{word-spacing:0.006400pt;}
.wsc_c02158{word-spacing:0.011712pt;}
.ws4_c02158{word-spacing:0.012800pt;}
.wse_c02158{word-spacing:0.129600pt;}
.ws13_c02158{word-spacing:0.134400pt;}
.wsf_c02158{word-spacing:0.144000pt;}
.ws11_c02158{word-spacing:0.172800pt;}
.ws10_c02158{word-spacing:0.235200pt;}
.ws14_c02158{word-spacing:0.249600pt;}
.ws17_c02158{word-spacing:1.098048pt;}
.ws19_c02158{word-spacing:1.132096pt;}
.ws18_c02158{word-spacing:1.161888pt;}
.ws15_c02158{word-spacing:5.281696pt;}
.ws16_c02158{word-spacing:5.298720pt;}
.ws1_c02158{word-spacing:52.417280pt;}
.ws3_c02158{word-spacing:66.817280pt;}
.ws2_c02158{word-spacing:89.857280pt;}
.ws1d_c02158{word-spacing:139.320000pt;}
._1c_c02158{margin-left:-0.890112pt;}
._26_c02158{width:0.912000pt;}
._16_c02158{width:38.077632pt;}
._c_c02158{width:45.277824pt;}
._11_c02158{width:54.838400pt;}
._1a_c02158{width:58.080000pt;}
._2f_c02158{width:59.729632pt;}
._9_c02158{width:64.537280pt;}
._14_c02158{width:67.040000pt;}
._a_c02158{width:68.720160pt;}
._f_c02158{width:74.400000pt;}
._2_c02158{width:75.408000pt;}
._1_c02158{width:78.099200pt;}
._d_c02158{width:81.145280pt;}
._19_c02158{width:84.084832pt;}
._b_c02158{width:89.222400pt;}
._6_c02158{width:90.645440pt;}
._12_c02158{width:92.928000pt;}
._1b_c02158{width:96.329760pt;}
._18_c02158{width:101.525440pt;}
._17_c02158{width:102.880000pt;}
._5_c02158{width:105.225728pt;}
._10_c02158{width:107.328000pt;}
._3_c02158{width:108.640000pt;}
._2b_c02158{width:112.309056pt;}
._4_c02158{width:113.760000pt;}
._13_c02158{width:115.008000pt;}
._2e_c02158{width:115.968000pt;}
._2a_c02158{width:120.405440pt;}
._2d_c02158{width:124.074496pt;}
._30_c02158{width:127.840000pt;}
._8_c02158{width:131.829056pt;}
._7_c02158{width:136.209248pt;}
._e_c02158{width:162.314816pt;}
._0_c02158{width:172.800000pt;}
._2c_c02158{width:176.929920pt;}
._29_c02158{width:180.476800pt;}
._20_c02158{width:192.160000pt;}
._15_c02158{width:215.119872pt;}
._1e_c02158{width:252.000000pt;}
._25_c02158{width:269.484800pt;}
._21_c02158{width:275.648000pt;}
._1f_c02158{width:288.689600pt;}
._22_c02158{width:339.742400pt;}
._27_c02158{width:401.585600pt;}
._24_c02158{width:428.652800pt;}
._23_c02158{width:430.155200pt;}
._1d_c02158{width:498.393600pt;}
._28_c02158{width:710.840000pt;}
.fs5_c02158{font-size:10.560000pt;}
.fs3_c02158{font-size:37.440000pt;}
.fs2_c02158{font-size:42.560000pt;}
.fs1_c02158{font-size:48.000000pt;}
.fs4_c02158{font-size:58.560000pt;}
.fs0_c02158{font-size:64.000000pt;}
.y0_c02158{bottom:0.000000pt;}
.y3_c02158{bottom:50.987067pt;}
.y2_c02158{bottom:69.387067pt;}
.y49_c02158{bottom:115.067467pt;}
.y48_c02158{bottom:128.907067pt;}
.y47_c02158{bottom:142.667467pt;}
.y46_c02158{bottom:156.507067pt;}
.y45_c02158{bottom:170.267467pt;}
.y44_c02158{bottom:184.107067pt;}
.y43_c02158{bottom:197.867467pt;}
.y42_c02158{bottom:211.707067pt;}
.y41_c02158{bottom:225.467467pt;}
.y40_c02158{bottom:239.307067pt;}
.y3f_c02158{bottom:253.067467pt;}
.y3e_c02158{bottom:266.907067pt;}
.y3d_c02158{bottom:280.667067pt;}
.y3c_c02158{bottom:280.987067pt;}
.y3b_c02158{bottom:299.387067pt;}
.y3a_c02158{bottom:315.947067pt;}
.y39_c02158{bottom:316.267067pt;}
.y38_c02158{bottom:335.227067pt;}
.y37_c02158{bottom:351.547067pt;}
.y36_c02158{bottom:366.987200pt;}
.y35_c02158{bottom:385.467067pt;}
.y34_c02158{bottom:393.227067pt;}
.y33_c02158{bottom:393.627067pt;}
.y32_c02158{bottom:411.067200pt;}
.y31_c02158{bottom:427.307067pt;}
.y30_c02158{bottom:442.747200pt;}
.y2f_c02158{bottom:460.666667pt;}
.y2e_c02158{bottom:474.427067pt;}
.y2d_c02158{bottom:488.266667pt;}
.y2c_c02158{bottom:502.027067pt;}
.y2b_c02158{bottom:515.786555pt;}
.y2a_c02158{bottom:528.026811pt;}
.y29_c02158{bottom:540.267067pt;}
.y28_c02158{bottom:554.667067pt;}
.y27_c02158{bottom:568.427067pt;}
.y26_c02158{bottom:586.667067pt;}
.y25_c02158{bottom:600.427067pt;}
.y24_c02158{bottom:614.267067pt;}
.y23_c02158{bottom:628.027067pt;}
.y22_c02158{bottom:641.867067pt;}
.y21_c02158{bottom:655.627067pt;}
.y1e_c02158{bottom:671.467067pt;}
.y20_c02158{bottom:671.707067pt;}
.y1f_c02158{bottom:687.147200pt;}
.y1d_c02158{bottom:702.187067pt;}
.y1c_c02158{bottom:718.347467pt;}
.y1b_c02158{bottom:732.187067pt;}
.y1a_c02158{bottom:745.947467pt;}
.y19_c02158{bottom:759.787067pt;}
.y18_c02158{bottom:773.547067pt;}
.y17_c02158{bottom:773.867067pt;}
.y16_c02158{bottom:791.387067pt;}
.y15_c02158{bottom:807.627067pt;}
.y14_c02158{bottom:823.067067pt;}
.y13_c02158{bottom:841.547067pt;}
.y12_c02158{bottom:849.387067pt;}
.y11_c02158{bottom:849.707067pt;}
.y10_c02158{bottom:867.147200pt;}
.yf_c02158{bottom:883.387067pt;}
.ye_c02158{bottom:898.827067pt;}
.yd_c02158{bottom:917.307067pt;}
.yc_c02158{bottom:925.147067pt;}
.yb_c02158{bottom:925.467467pt;}
.ya_c02158{bottom:943.547067pt;}
.y9_c02158{bottom:943.867467pt;}
.y8_c02158{bottom:961.947067pt;}
.y7_c02158{bottom:962.267067pt;}
.y6_c02158{bottom:981.307067pt;}
.y5_c02158{bottom:997.547067pt;}
.y4_c02158{bottom:1012.987067pt;}
.y1_c02158{bottom:1060.587067pt;}
.h5_c02158{height:9.379219pt;}
.h9_c02158{height:37.343906pt;}
.ha_c02158{height:42.117188pt;}
.h3_c02158{height:42.632812pt;}
.h8_c02158{height:43.077187pt;}
.h7_c02158{height:52.012031pt;}
.hd_c02158{height:54.252031pt;}
.h6_c02158{height:55.532031pt;}
.h4_c02158{height:55.852031pt;}
.hc_c02158{height:55.852565pt;}
.h2_c02158{height:56.156250pt;}
.h1_c02158{height:56.843750pt;}
.hb_c02158{height:70.597187pt;}
.h0_c02158{height:1122.666667pt;}
.w1_c02158{width:793.333333pt;}
.w0_c02158{width:793.626667pt;}
.x0_c02158{left:0.000000pt;}
.x1_c02158{left:113.440000pt;}
.x7_c02158{left:119.600000pt;}
.x3_c02158{left:120.560000pt;}
.x4_c02158{left:127.760000pt;}
.x5_c02158{left:146.400000pt;}
.x6_c02158{left:195.920000pt;}
.x8_c02158{left:338.400000pt;}
.x9_c02158{left:358.560000pt;}
.x2_c02158{left:384.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_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_4e206c04aba0897a522c0ef7.woff2')format("woff");}.ff1_c02159{font-family:ff1_c02159;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02159;src:url('chunks/assets/font_9f4ebb228da9dab34fcebe2c.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;}
.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);}
.v9_c02159{vertical-align:-5.040000px;}
.v7_c02159{vertical-align:-3.960000px;}
.v2_c02159{vertical-align:-2.520000px;}
.v1_c02159{vertical-align:-1.440000px;}
.v0_c02159{vertical-align:0.000000px;}
.v3_c02159{vertical-align:1.800000px;}
.v5_c02159{vertical-align:2.880000px;}
.v4_c02159{vertical-align:4.320000px;}
.v8_c02159{vertical-align:6.840000px;}
.v6_c02159{vertical-align:32.040000px;}
.ls33_c02159{letter-spacing:-0.178200px;}
.ls2f_c02159{letter-spacing:-0.118800px;}
.ls30_c02159{letter-spacing:-0.102600px;}
.ls31_c02159{letter-spacing:-0.086400px;}
.ls2a_c02159{letter-spacing:-0.086184px;}
.ls26_c02159{letter-spacing:-0.043200px;}
.ls28_c02159{letter-spacing:-0.019152px;}
.ls32_c02159{letter-spacing:-0.016200px;}
.ls23_c02159{letter-spacing:-0.014400px;}
.ls27_c02159{letter-spacing:-0.010800px;}
.ls2d_c02159{letter-spacing:-0.009576px;}
.ls2e_c02159{letter-spacing:-0.004788px;}
.ls24_c02159{letter-spacing:0.000000px;}
.ls13_c02159{letter-spacing:0.005400px;}
.ls12_c02159{letter-spacing:0.006588px;}
.ls0_c02159{letter-spacing:0.007200px;}
.ls1_c02159{letter-spacing:0.010800px;}
.ls4_c02159{letter-spacing:0.012636px;}
.ls37_c02159{letter-spacing:0.014400px;}
.ls16_c02159{letter-spacing:0.016200px;}
.ls10_c02159{letter-spacing:0.019152px;}
.ls15_c02159{letter-spacing:0.027000px;}
.ls3_c02159{letter-spacing:0.028728px;}
.ls5_c02159{letter-spacing:0.032400px;}
.lsa_c02159{letter-spacing:0.037800px;}
.ls2_c02159{letter-spacing:0.043092px;}
.ls9_c02159{letter-spacing:0.043200px;}
.ls11_c02159{letter-spacing:0.046116px;}
.ls18_c02159{letter-spacing:0.067032px;}
.ls6_c02159{letter-spacing:0.076608px;}
.lsd_c02159{letter-spacing:0.081396px;}
.ls17_c02159{letter-spacing:0.086184px;}
.ls14_c02159{letter-spacing:0.095760px;}
.ls20_c02159{letter-spacing:0.110124px;}
.ls19_c02159{letter-spacing:0.114912px;}
.ls1a_c02159{letter-spacing:0.119700px;}
.lse_c02159{letter-spacing:0.124488px;}
.lsf_c02159{letter-spacing:0.134064px;}
.ls25_c02159{letter-spacing:0.151200px;}
.ls8_c02159{letter-spacing:0.158112px;}
.lsc_c02159{letter-spacing:0.162792px;}
.ls29_c02159{letter-spacing:0.167580px;}
.ls2b_c02159{letter-spacing:0.180360px;}
.ls7_c02159{letter-spacing:0.181944px;}
.ls22_c02159{letter-spacing:0.205884px;}
.ls1f_c02159{letter-spacing:111.960000px;}
.ls1b_c02159{letter-spacing:112.680000px;}
.ls39_c02159{letter-spacing:143.461800px;}
.ls2c_c02159{letter-spacing:143.818200px;}
.ls34_c02159{letter-spacing:144.180000px;}
.ls1e_c02159{letter-spacing:150.030000px;}
.ls35_c02159{letter-spacing:157.587444px;}
.ls36_c02159{letter-spacing:160.018200px;}
.ls1d_c02159{letter-spacing:168.120000px;}
.ls38_c02159{letter-spacing:199.621800px;}
.lsb_c02159{letter-spacing:200.790000px;}
.ls21_c02159{letter-spacing:204.750000px;}
.ls1c_c02159{letter-spacing:205.110000px;}
.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;}
}
.ws2_c02159{word-spacing:-16.628112px;}
.ws28_c02159{word-spacing:-0.296856px;}
.wsa_c02159{word-spacing:-0.272916px;}
.wsc_c02159{word-spacing:-0.253764px;}
.wsf_c02159{word-spacing:-0.225036px;}
.wse_c02159{word-spacing:-0.215460px;}
.ws22_c02159{word-spacing:-0.210672px;}
.ws1b_c02159{word-spacing:-0.189000px;}
.ws15_c02159{word-spacing:-0.186732px;}
.ws11_c02159{word-spacing:-0.172368px;}
.ws25_c02159{word-spacing:-0.129600px;}
.ws13_c02159{word-spacing:-0.119700px;}
.ws12_c02159{word-spacing:-0.110124px;}
.ws9_c02159{word-spacing:-0.101088px;}
.wsd_c02159{word-spacing:-0.081396px;}
.ws8_c02159{word-spacing:-0.007200px;}
.ws7_c02159{word-spacing:0.000000px;}
.ws6_c02159{word-spacing:0.014400px;}
.ws14_c02159{word-spacing:0.046116px;}
.ws16_c02159{word-spacing:0.145800px;}
.ws19_c02159{word-spacing:0.151200px;}
.ws1c_c02159{word-spacing:0.162000px;}
.ws1a_c02159{word-spacing:0.194400px;}
.ws18_c02159{word-spacing:0.264600px;}
.ws17_c02159{word-spacing:0.280800px;}
.ws1f_c02159{word-spacing:1.235304px;}
.ws21_c02159{word-spacing:1.273608px;}
.ws20_c02159{word-spacing:1.307124px;}
.ws1d_c02159{word-spacing:5.941908px;}
.ws1e_c02159{word-spacing:5.961060px;}
.ws1_c02159{word-spacing:48.169440px;}
.ws3_c02159{word-spacing:58.609440px;}
.ws5_c02159{word-spacing:70.849440px;}
.ws0_c02159{word-spacing:75.169440px;}
.ws4_c02159{word-spacing:97.849440px;}
.ws23_c02159{word-spacing:119.664000px;}
.ws24_c02159{word-spacing:133.002000px;}
.ws26_c02159{word-spacing:146.669400px;}
.ws29_c02159{word-spacing:156.378600px;}
.ws2a_c02159{word-spacing:156.384000px;}
.wsb_c02159{word-spacing:156.735000px;}
.ws10_c02159{word-spacing:156.740400px;}
.ws27_c02159{word-spacing:240.975000px;}
._3b_c02159{margin-left:-85.752000px;}
._41_c02159{margin-left:-84.240000px;}
._40_c02159{margin-left:-81.000000px;}
._3e_c02159{margin-left:-70.923600px;}
._3c_c02159{margin-left:-69.876000px;}
._32_c02159{margin-left:-56.896200px;}
._3f_c02159{margin-left:-42.087600px;}
._3d_c02159{margin-left:-14.077800px;}
._35_c02159{margin-left:-3.236688px;}
._2e_c02159{margin-left:-1.230516px;}
._26_c02159{width:1.026000px;}
._36_c02159{width:38.167200px;}
._16_c02159{width:42.481800px;}
._43_c02159{width:43.792236px;}
._46_c02159{width:44.872992px;}
._39_c02159{width:50.577552px;}
._c_c02159{width:51.660000px;}
._3a_c02159{width:53.815140px;}
._33_c02159{width:61.020000px;}
._11_c02159{width:62.053200px;}
._f_c02159{width:65.340000px;}
._45_c02159{width:66.346920px;}
._15_c02159{width:67.635000px;}
._8_c02159{width:72.604440px;}
._13_c02159{width:75.420000px;}
._9_c02159{width:77.310180px;}
._30_c02159{width:79.283340px;}
._44_c02159{width:83.158344px;}
._2_c02159{width:84.834000px;}
._2f_c02159{width:86.634000px;}
._1_c02159{width:88.221600px;}
._31_c02159{width:89.438400px;}
._d_c02159{width:91.288440px;}
._1a_c02159{width:94.564296px;}
._37_c02159{width:96.501600px;}
._a_c02159{width:100.015200px;}
._10_c02159{width:103.104000px;}
._19_c02159{width:104.575140px;}
._1f_c02159{width:108.435600px;}
._14_c02159{width:109.594296px;}
._1e_c02159{width:111.720168px;}
._b_c02159{width:114.298200px;}
._4_c02159{width:115.740000px;}
._5_c02159{width:118.378944px;}
._1c_c02159{width:119.705220px;}
._3_c02159{width:122.220000px;}
._42_c02159{width:123.660000px;}
._1d_c02159{width:124.666920px;}
._1b_c02159{width:128.162160px;}
._12_c02159{width:129.607020px;}
._20_c02159{width:133.247016px;}
._7_c02159{width:140.027688px;}
._18_c02159{width:143.820000px;}
._17_c02159{width:146.586384px;}
._38_c02159{width:148.126464px;}
._6_c02159{width:152.431524px;}
._0_c02159{width:194.400000px;}
._e_c02159{width:200.964168px;}
._2d_c02159{width:203.036400px;}
._24_c02159{width:216.180000px;}
._34_c02159{width:240.624000px;}
._22_c02159{width:283.500000px;}
._29_c02159{width:303.170400px;}
._25_c02159{width:310.104000px;}
._23_c02159{width:324.775800px;}
._2b_c02159{width:382.210200px;}
._27_c02159{width:451.783800px;}
._2a_c02159{width:482.234400px;}
._28_c02159{width:483.924600px;}
._21_c02159{width:560.692800px;}
._2c_c02159{width:799.695000px;}
.fc0_c02159{color:rgb(0,0,0);}
.fs6_c02159{font-size:11.880000px;}
.fs3_c02159{font-size:42.120000px;}
.fs2_c02159{font-size:47.880000px;}
.fs1_c02159{font-size:54.000000px;}
.fs4_c02159{font-size:60.120000px;}
.fs5_c02159{font-size:65.880000px;}
.fs0_c02159{font-size:72.000000px;}
.y0_c02159{bottom:0.000000px;}
.y3_c02159{bottom:57.360450px;}
.y2_c02159{bottom:78.060450px;}
.y54_c02159{bottom:117.030000px;}
.y53_c02159{bottom:132.510450px;}
.y52_c02159{bottom:148.080450px;}
.y51_c02159{bottom:148.440150px;}
.y50_c02159{bottom:167.070450px;}
.y4f_c02159{bottom:167.430000px;}
.y4e_c02159{bottom:185.970450px;}
.y4d_c02159{bottom:186.420450px;}
.y4c_c02159{bottom:204.960600px;}
.y4b_c02159{bottom:205.320000px;}
.y4a_c02159{bottom:223.950600px;}
.y49_c02159{bottom:224.310450px;}
.y48_c02159{bottom:243.300450px;}
.y47_c02159{bottom:261.930450px;}
.y46_c02159{bottom:262.290450px;}
.y45_c02159{bottom:283.620450px;}
.y44_c02159{bottom:301.980450px;}
.y43_c02159{bottom:319.350450px;}
.y42_c02159{bottom:339.420450px;}
.y41_c02159{bottom:354.990450px;}
.y40_c02159{bottom:355.350450px;}
.y3f_c02159{bottom:374.970450px;}
.y3e_c02159{bottom:393.330450px;}
.y3d_c02159{bottom:410.700600px;}
.y3c_c02159{bottom:431.400450px;}
.y3b_c02159{bottom:440.220450px;}
.y3a_c02159{bottom:440.580150px;}
.y39_c02159{bottom:459.210600px;}
.y38_c02159{bottom:459.570000px;}
.y37_c02159{bottom:478.200600px;}
.y36_c02159{bottom:478.560450px;}
.y34_c02159{bottom:497.550450px;}
.y33_c02159{bottom:498.180600px;}
.y35_c02159{bottom:498.270600px;}
.y32_c02159{bottom:516.540600px;}
.y31_c02159{bottom:533.910450px;}
.y30_c02159{bottom:553.889172px;}
.y2f_c02159{bottom:567.749235px;}
.y2e_c02159{bottom:581.519523px;}
.y2d_c02159{bottom:595.289811px;}
.y2c_c02159{bottom:609.060099px;}
.y2b_c02159{bottom:622.920162px;}
.y2a_c02159{bottom:636.690450px;}
.y29_c02159{bottom:652.890450px;}
.y28_c02159{bottom:668.370450px;}
.y27_c02159{bottom:683.940450px;}
.y26_c02159{bottom:699.420450px;}
.y25_c02159{bottom:714.990450px;}
.y24_c02159{bottom:730.470450px;}
.y23_c02159{bottom:746.040450px;}
.y22_c02159{bottom:761.520450px;}
.y1f_c02159{bottom:779.250450px;}
.y21_c02159{bottom:779.520450px;}
.y20_c02159{bottom:796.980450px;}
.y1e_c02159{bottom:813.900450px;}
.y1d_c02159{bottom:832.080450px;}
.y1c_c02159{bottom:847.650000px;}
.y1b_c02159{bottom:863.130450px;}
.y1a_c02159{bottom:878.700450px;}
.y19_c02159{bottom:879.060900px;}
.y18_c02159{bottom:899.400450px;}
.y17_c02159{bottom:899.760900px;}
.y16_c02159{bottom:920.100450px;}
.y15_c02159{bottom:920.460900px;}
.y14_c02159{bottom:940.800450px;}
.y13_c02159{bottom:941.160900px;}
.y12_c02159{bottom:961.410450px;}
.y11_c02159{bottom:961.860450px;}
.y10_c02159{bottom:982.560450px;}
.yf_c02159{bottom:1001.100450px;}
.ye_c02159{bottom:1001.460450px;}
.yd_c02159{bottom:1022.160450px;}
.yc_c02159{bottom:1040.790450px;}
.yb_c02159{bottom:1041.150900px;}
.ya_c02159{bottom:1061.490450px;}
.y9_c02159{bottom:1061.850900px;}
.y8_c02159{bottom:1082.190450px;}
.y7_c02159{bottom:1082.550450px;}
.y6_c02159{bottom:1103.520450px;}
.y5_c02159{bottom:1122.240450px;}
.y4_c02159{bottom:1139.610450px;}
.y1_c02159{bottom:1193.160450px;}
.h10_c02159{height:10.551621px;}
.hc_c02159{height:42.011895px;}
.hd_c02159{height:47.381836px;}
.h3_c02159{height:47.961914px;}
.hb_c02159{height:48.461836px;}
.hf_c02159{height:57.805840px;}
.ha_c02159{height:58.513535px;}
.h4_c02159{height:60.313535px;}
.h7_c02159{height:61.033535px;}
.h6_c02159{height:61.393535px;}
.h9_c02159{height:62.473535px;}
.h8_c02159{height:62.474135px;}
.h5_c02159{height:62.833535px;}
.h2_c02159{height:63.175781px;}
.h1_c02159{height:63.949219px;}
.he_c02159{height:79.421836px;}
.h0_c02159{height:1263.000000px;}
.w1_c02159{width:892.500000px;}
.w0_c02159{width:892.830000px;}
.x0_c02159{left:0.000000px;}
.x1_c02159{left:127.620000px;}
.x8_c02159{left:134.550000px;}
.x3_c02159{left:135.630000px;}
.x5_c02159{left:138.780000px;}
.x4_c02159{left:143.910000px;}
.x6_c02159{left:165.060000px;}
.x7_c02159{left:220.680000px;}
.xd_c02159{left:234.270000px;}
.x9_c02159{left:380.700000px;}
.xa_c02159{left:403.380000px;}
.x2_c02159{left:433.080000px;}
.xb_c02159{left:531.269550px;}
.xc_c02159{left:717.840000px;}
.xe_c02159{left:746.729550px;}
@media print{
.v9_c02159{vertical-align:-4.480000pt;}
.v7_c02159{vertical-align:-3.520000pt;}
.v2_c02159{vertical-align:-2.240000pt;}
.v1_c02159{vertical-align:-1.280000pt;}
.v0_c02159{vertical-align:0.000000pt;}
.v3_c02159{vertical-align:1.600000pt;}
.v5_c02159{vertical-align:2.560000pt;}
.v4_c02159{vertical-align:3.840000pt;}
.v8_c02159{vertical-align:6.080000pt;}
.v6_c02159{vertical-align:28.480000pt;}
.ls33_c02159{letter-spacing:-0.158400pt;}
.ls2f_c02159{letter-spacing:-0.105600pt;}
.ls30_c02159{letter-spacing:-0.091200pt;}
.ls31_c02159{letter-spacing:-0.076800pt;}
.ls2a_c02159{letter-spacing:-0.076608pt;}
.ls26_c02159{letter-spacing:-0.038400pt;}
.ls28_c02159{letter-spacing:-0.017024pt;}
.ls32_c02159{letter-spacing:-0.014400pt;}
.ls23_c02159{letter-spacing:-0.012800pt;}
.ls27_c02159{letter-spacing:-0.009600pt;}
.ls2d_c02159{letter-spacing:-0.008512pt;}
.ls2e_c02159{letter-spacing:-0.004256pt;}
.ls24_c02159{letter-spacing:0.000000pt;}
.ls13_c02159{letter-spacing:0.004800pt;}
.ls12_c02159{letter-spacing:0.005856pt;}
.ls0_c02159{letter-spacing:0.006400pt;}
.ls1_c02159{letter-spacing:0.009600pt;}
.ls4_c02159{letter-spacing:0.011232pt;}
.ls37_c02159{letter-spacing:0.012800pt;}
.ls16_c02159{letter-spacing:0.014400pt;}
.ls10_c02159{letter-spacing:0.017024pt;}
.ls15_c02159{letter-spacing:0.024000pt;}
.ls3_c02159{letter-spacing:0.025536pt;}
.ls5_c02159{letter-spacing:0.028800pt;}
.lsa_c02159{letter-spacing:0.033600pt;}
.ls2_c02159{letter-spacing:0.038304pt;}
.ls9_c02159{letter-spacing:0.038400pt;}
.ls11_c02159{letter-spacing:0.040992pt;}
.ls18_c02159{letter-spacing:0.059584pt;}
.ls6_c02159{letter-spacing:0.068096pt;}
.lsd_c02159{letter-spacing:0.072352pt;}
.ls17_c02159{letter-spacing:0.076608pt;}
.ls14_c02159{letter-spacing:0.085120pt;}
.ls20_c02159{letter-spacing:0.097888pt;}
.ls19_c02159{letter-spacing:0.102144pt;}
.ls1a_c02159{letter-spacing:0.106400pt;}
.lse_c02159{letter-spacing:0.110656pt;}
.lsf_c02159{letter-spacing:0.119168pt;}
.ls25_c02159{letter-spacing:0.134400pt;}
.ls8_c02159{letter-spacing:0.140544pt;}
.lsc_c02159{letter-spacing:0.144704pt;}
.ls29_c02159{letter-spacing:0.148960pt;}
.ls2b_c02159{letter-spacing:0.160320pt;}
.ls7_c02159{letter-spacing:0.161728pt;}
.ls22_c02159{letter-spacing:0.183008pt;}
.ls1f_c02159{letter-spacing:99.520000pt;}
.ls1b_c02159{letter-spacing:100.160000pt;}
.ls39_c02159{letter-spacing:127.521600pt;}
.ls2c_c02159{letter-spacing:127.838400pt;}
.ls34_c02159{letter-spacing:128.160000pt;}
.ls1e_c02159{letter-spacing:133.360000pt;}
.ls35_c02159{letter-spacing:140.077728pt;}
.ls36_c02159{letter-spacing:142.238400pt;}
.ls1d_c02159{letter-spacing:149.440000pt;}
.ls38_c02159{letter-spacing:177.441600pt;}
.lsb_c02159{letter-spacing:178.480000pt;}
.ls21_c02159{letter-spacing:182.000000pt;}
.ls1c_c02159{letter-spacing:182.320000pt;}
.ws2_c02159{word-spacing:-14.780544pt;}
.ws28_c02159{word-spacing:-0.263872pt;}
.wsa_c02159{word-spacing:-0.242592pt;}
.wsc_c02159{word-spacing:-0.225568pt;}
.wsf_c02159{word-spacing:-0.200032pt;}
.wse_c02159{word-spacing:-0.191520pt;}
.ws22_c02159{word-spacing:-0.187264pt;}
.ws1b_c02159{word-spacing:-0.168000pt;}
.ws15_c02159{word-spacing:-0.165984pt;}
.ws11_c02159{word-spacing:-0.153216pt;}
.ws25_c02159{word-spacing:-0.115200pt;}
.ws13_c02159{word-spacing:-0.106400pt;}
.ws12_c02159{word-spacing:-0.097888pt;}
.ws9_c02159{word-spacing:-0.089856pt;}
.wsd_c02159{word-spacing:-0.072352pt;}
.ws8_c02159{word-spacing:-0.006400pt;}
.ws7_c02159{word-spacing:0.000000pt;}
.ws6_c02159{word-spacing:0.012800pt;}
.ws14_c02159{word-spacing:0.040992pt;}
.ws16_c02159{word-spacing:0.129600pt;}
.ws19_c02159{word-spacing:0.134400pt;}
.ws1c_c02159{word-spacing:0.144000pt;}
.ws1a_c02159{word-spacing:0.172800pt;}
.ws18_c02159{word-spacing:0.235200pt;}
.ws17_c02159{word-spacing:0.249600pt;}
.ws1f_c02159{word-spacing:1.098048pt;}
.ws21_c02159{word-spacing:1.132096pt;}
.ws20_c02159{word-spacing:1.161888pt;}
.ws1d_c02159{word-spacing:5.281696pt;}
.ws1e_c02159{word-spacing:5.298720pt;}
.ws1_c02159{word-spacing:42.817280pt;}
.ws3_c02159{word-spacing:52.097280pt;}
.ws5_c02159{word-spacing:62.977280pt;}
.ws0_c02159{word-spacing:66.817280pt;}
.ws4_c02159{word-spacing:86.977280pt;}
.ws23_c02159{word-spacing:106.368000pt;}
.ws24_c02159{word-spacing:118.224000pt;}
.ws26_c02159{word-spacing:130.372800pt;}
.ws29_c02159{word-spacing:139.003200pt;}
.ws2a_c02159{word-spacing:139.008000pt;}
.wsb_c02159{word-spacing:139.320000pt;}
.ws10_c02159{word-spacing:139.324800pt;}
.ws27_c02159{word-spacing:214.200000pt;}
._3b_c02159{margin-left:-76.224000pt;}
._41_c02159{margin-left:-74.880000pt;}
._40_c02159{margin-left:-72.000000pt;}
._3e_c02159{margin-left:-63.043200pt;}
._3c_c02159{margin-left:-62.112000pt;}
._32_c02159{margin-left:-50.574400pt;}
._3f_c02159{margin-left:-37.411200pt;}
._3d_c02159{margin-left:-12.513600pt;}
._35_c02159{margin-left:-2.877056pt;}
._2e_c02159{margin-left:-1.093792pt;}
._26_c02159{width:0.912000pt;}
._36_c02159{width:33.926400pt;}
._16_c02159{width:37.761600pt;}
._43_c02159{width:38.926432pt;}
._46_c02159{width:39.887104pt;}
._39_c02159{width:44.957824pt;}
._c_c02159{width:45.920000pt;}
._3a_c02159{width:47.835680pt;}
._33_c02159{width:54.240000pt;}
._11_c02159{width:55.158400pt;}
._f_c02159{width:58.080000pt;}
._45_c02159{width:58.975040pt;}
._15_c02159{width:60.120000pt;}
._8_c02159{width:64.537280pt;}
._13_c02159{width:67.040000pt;}
._9_c02159{width:68.720160pt;}
._30_c02159{width:70.474080pt;}
._44_c02159{width:73.918528pt;}
._2_c02159{width:75.408000pt;}
._2f_c02159{width:77.008000pt;}
._1_c02159{width:78.419200pt;}
._31_c02159{width:79.500800pt;}
._d_c02159{width:81.145280pt;}
._1a_c02159{width:84.057152pt;}
._37_c02159{width:85.779200pt;}
._a_c02159{width:88.902400pt;}
._10_c02159{width:91.648000pt;}
._19_c02159{width:92.955680pt;}
._1f_c02159{width:96.387200pt;}
._14_c02159{width:97.417152pt;}
._1e_c02159{width:99.306816pt;}
._b_c02159{width:101.598400pt;}
._4_c02159{width:102.880000pt;}
._5_c02159{width:105.225728pt;}
._1c_c02159{width:106.404640pt;}
._3_c02159{width:108.640000pt;}
._42_c02159{width:109.920000pt;}
._1d_c02159{width:110.815040pt;}
._1b_c02159{width:113.921920pt;}
._12_c02159{width:115.206240pt;}
._20_c02159{width:118.441792pt;}
._7_c02159{width:124.469056pt;}
._18_c02159{width:127.840000pt;}
._17_c02159{width:130.299008pt;}
._38_c02159{width:131.667968pt;}
._6_c02159{width:135.494688pt;}
._0_c02159{width:172.800000pt;}
._e_c02159{width:178.634816pt;}
._2d_c02159{width:180.476800pt;}
._24_c02159{width:192.160000pt;}
._34_c02159{width:213.888000pt;}
._22_c02159{width:252.000000pt;}
._29_c02159{width:269.484800pt;}
._25_c02159{width:275.648000pt;}
._23_c02159{width:288.689600pt;}
._2b_c02159{width:339.742400pt;}
._27_c02159{width:401.585600pt;}
._2a_c02159{width:428.652800pt;}
._28_c02159{width:430.155200pt;}
._21_c02159{width:498.393600pt;}
._2c_c02159{width:710.840000pt;}
.fs6_c02159{font-size:10.560000pt;}
.fs3_c02159{font-size:37.440000pt;}
.fs2_c02159{font-size:42.560000pt;}
.fs1_c02159{font-size:48.000000pt;}
.fs4_c02159{font-size:53.440000pt;}
.fs5_c02159{font-size:58.560000pt;}
.fs0_c02159{font-size:64.000000pt;}
.y0_c02159{bottom:0.000000pt;}
.y3_c02159{bottom:50.987067pt;}
.y2_c02159{bottom:69.387067pt;}
.y54_c02159{bottom:104.026667pt;}
.y53_c02159{bottom:117.787067pt;}
.y52_c02159{bottom:131.627067pt;}
.y51_c02159{bottom:131.946800pt;}
.y50_c02159{bottom:148.507067pt;}
.y4f_c02159{bottom:148.826667pt;}
.y4e_c02159{bottom:165.307067pt;}
.y4d_c02159{bottom:165.707067pt;}
.y4c_c02159{bottom:182.187200pt;}
.y4b_c02159{bottom:182.506667pt;}
.y4a_c02159{bottom:199.067200pt;}
.y49_c02159{bottom:199.387067pt;}
.y48_c02159{bottom:216.267067pt;}
.y47_c02159{bottom:232.827067pt;}
.y46_c02159{bottom:233.147067pt;}
.y45_c02159{bottom:252.107067pt;}
.y44_c02159{bottom:268.427067pt;}
.y43_c02159{bottom:283.867067pt;}
.y42_c02159{bottom:301.707067pt;}
.y41_c02159{bottom:315.547067pt;}
.y40_c02159{bottom:315.867067pt;}
.y3f_c02159{bottom:333.307067pt;}
.y3e_c02159{bottom:349.627067pt;}
.y3d_c02159{bottom:365.067200pt;}
.y3c_c02159{bottom:383.467067pt;}
.y3b_c02159{bottom:391.307067pt;}
.y3a_c02159{bottom:391.626800pt;}
.y39_c02159{bottom:408.187200pt;}
.y38_c02159{bottom:408.506667pt;}
.y37_c02159{bottom:425.067200pt;}
.y36_c02159{bottom:425.387067pt;}
.y34_c02159{bottom:442.267067pt;}
.y33_c02159{bottom:442.827200pt;}
.y35_c02159{bottom:442.907200pt;}
.y32_c02159{bottom:459.147200pt;}
.y31_c02159{bottom:474.587067pt;}
.y30_c02159{bottom:492.345931pt;}
.y2f_c02159{bottom:504.665987pt;}
.y2e_c02159{bottom:516.906243pt;}
.y2d_c02159{bottom:529.146499pt;}
.y2c_c02159{bottom:541.386755pt;}
.y2b_c02159{bottom:553.706811pt;}
.y2a_c02159{bottom:565.947067pt;}
.y29_c02159{bottom:580.347067pt;}
.y28_c02159{bottom:594.107067pt;}
.y27_c02159{bottom:607.947067pt;}
.y26_c02159{bottom:621.707067pt;}
.y25_c02159{bottom:635.547067pt;}
.y24_c02159{bottom:649.307067pt;}
.y23_c02159{bottom:663.147067pt;}
.y22_c02159{bottom:676.907067pt;}
.y1f_c02159{bottom:692.667067pt;}
.y21_c02159{bottom:692.907067pt;}
.y20_c02159{bottom:708.427067pt;}
.y1e_c02159{bottom:723.467067pt;}
.y1d_c02159{bottom:739.627067pt;}
.y1c_c02159{bottom:753.466667pt;}
.y1b_c02159{bottom:767.227067pt;}
.y1a_c02159{bottom:781.067067pt;}
.y19_c02159{bottom:781.387467pt;}
.y18_c02159{bottom:799.467067pt;}
.y17_c02159{bottom:799.787467pt;}
.y16_c02159{bottom:817.867067pt;}
.y15_c02159{bottom:818.187467pt;}
.y14_c02159{bottom:836.267067pt;}
.y13_c02159{bottom:836.587467pt;}
.y12_c02159{bottom:854.587067pt;}
.y11_c02159{bottom:854.987067pt;}
.y10_c02159{bottom:873.387067pt;}
.yf_c02159{bottom:889.867067pt;}
.ye_c02159{bottom:890.187067pt;}
.yd_c02159{bottom:908.587067pt;}
.yc_c02159{bottom:925.147067pt;}
.yb_c02159{bottom:925.467467pt;}
.ya_c02159{bottom:943.547067pt;}
.y9_c02159{bottom:943.867467pt;}
.y8_c02159{bottom:961.947067pt;}
.y7_c02159{bottom:962.267067pt;}
.y6_c02159{bottom:980.907067pt;}
.y5_c02159{bottom:997.547067pt;}
.y4_c02159{bottom:1012.987067pt;}
.y1_c02159{bottom:1060.587067pt;}
.h10_c02159{height:9.379219pt;}
.hc_c02159{height:37.343906pt;}
.hd_c02159{height:42.117188pt;}
.h3_c02159{height:42.632812pt;}
.hb_c02159{height:43.077188pt;}
.hf_c02159{height:51.382969pt;}
.ha_c02159{height:52.012031pt;}
.h4_c02159{height:53.612031pt;}
.h7_c02159{height:54.252031pt;}
.h6_c02159{height:54.572031pt;}
.h9_c02159{height:55.532031pt;}
.h8_c02159{height:55.532565pt;}
.h5_c02159{height:55.852031pt;}
.h2_c02159{height:56.156250pt;}
.h1_c02159{height:56.843750pt;}
.he_c02159{height:70.597188pt;}
.h0_c02159{height:1122.666667pt;}
.w1_c02159{width:793.333333pt;}
.w0_c02159{width:793.626667pt;}
.x0_c02159{left:0.000000pt;}
.x1_c02159{left:113.440000pt;}
.x8_c02159{left:119.600000pt;}
.x3_c02159{left:120.560000pt;}
.x5_c02159{left:123.360000pt;}
.x4_c02159{left:127.920000pt;}
.x6_c02159{left:146.720000pt;}
.x7_c02159{left:196.160000pt;}
.xd_c02159{left:208.240000pt;}
.x9_c02159{left:338.400000pt;}
.xa_c02159{left:358.560000pt;}
.x2_c02159{left:384.960000pt;}
.xb_c02159{left:472.239600pt;}
.xc_c02159{left:638.080000pt;}
.xe_c02159{left:663.759600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b41c832778a5d2ca907dc703.woff2')format("woff");}.ff1_c02160{font-family:ff1_c02160;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02160;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.va_c02160{vertical-align:-10.438200px;}
.vc_c02160{vertical-align:-6.840000px;}
.v3_c02160{vertical-align:-4.320000px;}
.v2_c02160{vertical-align:-2.880000px;}
.v1_c02160{vertical-align:-1.440000px;}
.v0_c02160{vertical-align:0.000000px;}
.v6_c02160{vertical-align:1.080000px;}
.v4_c02160{vertical-align:2.520000px;}
.v5_c02160{vertical-align:4.320000px;}
.v8_c02160{vertical-align:5.400000px;}
.v7_c02160{vertical-align:6.840000px;}
.vb_c02160{vertical-align:7.920000px;}
.vd_c02160{vertical-align:9.720000px;}
.v9_c02160{vertical-align:12.960000px;}
.ls1f_c02160{letter-spacing:-0.086184px;}
.ls1b_c02160{letter-spacing:-0.043200px;}
.ls26_c02160{letter-spacing:-0.021600px;}
.ls1d_c02160{letter-spacing:-0.019152px;}
.ls18_c02160{letter-spacing:-0.014400px;}
.ls1c_c02160{letter-spacing:-0.010800px;}
.ls21_c02160{letter-spacing:-0.009576px;}
.ls23_c02160{letter-spacing:-0.007200px;}
.ls22_c02160{letter-spacing:-0.004788px;}
.ls19_c02160{letter-spacing:0.000000px;}
.ls1_c02160{letter-spacing:0.010800px;}
.ls4_c02160{letter-spacing:0.012636px;}
.ls0_c02160{letter-spacing:0.014400px;}
.lsf_c02160{letter-spacing:0.019152px;}
.ls14_c02160{letter-spacing:0.021600px;}
.ls3_c02160{letter-spacing:0.028728px;}
.ls5_c02160{letter-spacing:0.032400px;}
.lsb_c02160{letter-spacing:0.037800px;}
.ls2_c02160{letter-spacing:0.043092px;}
.lsa_c02160{letter-spacing:0.043200px;}
.ls8_c02160{letter-spacing:0.081396px;}
.lsd_c02160{letter-spacing:0.124488px;}
.lse_c02160{letter-spacing:0.134064px;}
.ls1a_c02160{letter-spacing:0.151200px;}
.ls6_c02160{letter-spacing:0.158112px;}
.ls1e_c02160{letter-spacing:0.167580px;}
.ls9_c02160{letter-spacing:0.181944px;}
.ls7_c02160{letter-spacing:111.960000px;}
.ls10_c02160{letter-spacing:116.460000px;}
.ls20_c02160{letter-spacing:143.461800px;}
.ls13_c02160{letter-spacing:150.030000px;}
.ls17_c02160{letter-spacing:156.060000px;}
.ls11_c02160{letter-spacing:156.421800px;}
.ls25_c02160{letter-spacing:157.592232px;}
.ls24_c02160{letter-spacing:157.951332px;}
.ls12_c02160{letter-spacing:167.040000px;}
.ls27_c02160{letter-spacing:198.541800px;}
.ls15_c02160{letter-spacing:200.790000px;}
.ls16_c02160{letter-spacing:201.781800px;}
.lsc_c02160{letter-spacing:204.750000px;}
.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;}
}
.ws0_c02160{word-spacing:-16.628112px;}
.ws9_c02160{word-spacing:-0.272916px;}
.wsd_c02160{word-spacing:-0.225036px;}
.wsc_c02160{word-spacing:-0.215460px;}
.wse_c02160{word-spacing:-0.172368px;}
.ws11_c02160{word-spacing:-0.119700px;}
.ws10_c02160{word-spacing:-0.110124px;}
.ws8_c02160{word-spacing:-0.101088px;}
.wsa_c02160{word-spacing:-0.081396px;}
.ws15_c02160{word-spacing:-0.021600px;}
.ws7_c02160{word-spacing:-0.014400px;}
.ws6_c02160{word-spacing:0.000000px;}
.ws12_c02160{word-spacing:0.007200px;}
.ws5_c02160{word-spacing:0.014400px;}
.ws14_c02160{word-spacing:0.021600px;}
.ws2_c02160{word-spacing:70.849440px;}
.ws4_c02160{word-spacing:75.169440px;}
.ws13_c02160{word-spacing:86.907600px;}
.ws1_c02160{word-spacing:97.849440px;}
.ws3_c02160{word-spacing:102.169440px;}
.wsb_c02160{word-spacing:156.378600px;}
.wsf_c02160{word-spacing:156.384000px;}
.ws16_c02160{word-spacing:198.136800px;}
._21_c02160{margin-left:-8.659728px;}
._1a_c02160{margin-left:-1.195812px;}
._15_c02160{width:41.758200px;}
._1b_c02160{width:42.886800px;}
._14_c02160{width:44.605872px;}
._b_c02160{width:51.297552px;}
._27_c02160{width:53.455140px;}
._10_c02160{width:61.333200px;}
._30_c02160{width:62.408340px;}
._33_c02160{width:64.520460px;}
._e_c02160{width:65.700000px;}
._2a_c02160{width:68.947668px;}
._8_c02160{width:72.244440px;}
._2e_c02160{width:74.044440px;}
._12_c02160{width:75.420000px;}
._9_c02160{width:76.950180px;}
._1e_c02160{width:78.178212px;}
._f_c02160{width:79.344000px;}
._32_c02160{width:80.413632px;}
._13_c02160{width:83.340000px;}
._2b_c02160{width:84.834000px;}
._25_c02160{width:86.475600px;}
._1_c02160{width:87.861600px;}
._24_c02160{width:92.664000px;}
._d_c02160{width:94.204296px;}
._26_c02160{width:96.300000px;}
._a_c02160{width:99.655200px;}
._2f_c02160{width:100.893168px;}
._1f_c02160{width:102.024000px;}
._20_c02160{width:104.184000px;}
._28_c02160{width:106.344000px;}
._c_c02160{width:108.535140px;}
._19_c02160{width:111.360168px;}
._18_c02160{width:113.735016px;}
._3_c02160{width:115.740000px;}
._2c_c02160{width:117.086544px;}
._4_c02160{width:118.378944px;}
._31_c02160{width:120.067668px;}
._2_c02160{width:122.792400px;}
._17_c02160{width:124.027668px;}
._2d_c02160{width:126.373608px;}
._7_c02160{width:127.427688px;}
._11_c02160{width:128.887020px;}
._1c_c02160{width:132.887016px;}
._5_c02160{width:134.016120px;}
._22_c02160{width:136.510200px;}
._1d_c02160{width:138.651408px;}
._16_c02160{width:143.460000px;}
._6_c02160{width:151.795404px;}
._0_c02160{width:194.400000px;}
._29_c02160{width:198.540000px;}
._23_c02160{width:201.038472px;}
.fc0_c02160{color:rgb(0,0,0);}
.fs5_c02160{font-size:11.880000px;}
.fs3_c02160{font-size:42.120000px;}
.fs2_c02160{font-size:47.880000px;}
.fs1_c02160{font-size:54.000000px;}
.fs4_c02160{font-size:65.880000px;}
.fs0_c02160{font-size:72.000000px;}
.y0_c02160{bottom:0.000000px;}
.y3_c02160{bottom:57.360450px;}
.y2_c02160{bottom:78.060450px;}
.y57_c02160{bottom:125.310900px;}
.y56_c02160{bottom:140.880450px;}
.y55_c02160{bottom:156.360900px;}
.y54_c02160{bottom:171.930450px;}
.y53_c02160{bottom:187.410900px;}
.y52_c02160{bottom:202.980450px;}
.y51_c02160{bottom:218.460900px;}
.y50_c02160{bottom:234.030450px;}
.y4f_c02160{bottom:249.510900px;}
.y4e_c02160{bottom:265.080450px;}
.y4d_c02160{bottom:280.560450px;}
.y4c_c02160{bottom:280.920000px;}
.y4b_c02160{bottom:299.550450px;}
.y4a_c02160{bottom:299.910000px;}
.y49_c02160{bottom:318.540450px;}
.y48_c02160{bottom:318.900000px;}
.y47_c02160{bottom:337.530450px;}
.y46_c02160{bottom:337.890000px;}
.y45_c02160{bottom:356.430450px;}
.y44_c02160{bottom:356.880450px;}
.y43_c02160{bottom:377.580600px;}
.y41_c02160{bottom:396.120600px;}
.y40_c02160{bottom:396.480450px;}
.y42_c02160{bottom:396.480600px;}
.y3f_c02160{bottom:417.900450px;}
.y3e_c02160{bottom:436.170450px;}
.y3d_c02160{bottom:453.540600px;}
.y3c_c02160{bottom:474.330450px;}
.y3b_c02160{bottom:483.150450px;}
.y3a_c02160{bottom:483.509550px;}
.y39_c02160{bottom:502.140450px;}
.y38_c02160{bottom:502.499550px;}
.y37_c02160{bottom:521.130450px;}
.y36_c02160{bottom:521.490900px;}
.y35_c02160{bottom:540.030450px;}
.y34_c02160{bottom:540.390450px;}
.y33_c02160{bottom:559.020450px;}
.y32_c02160{bottom:559.380450px;}
.y31_c02160{bottom:580.080450px;}
.y30_c02160{bottom:598.710450px;}
.y2f_c02160{bottom:599.070450px;}
.y2e_c02160{bottom:620.400450px;}
.y2d_c02160{bottom:638.760450px;}
.y2c_c02160{bottom:656.130450px;}
.y2b_c02160{bottom:676.920450px;}
.y2a_c02160{bottom:685.740450px;}
.y29_c02160{bottom:686.100000px;}
.y28_c02160{bottom:704.640450px;}
.y27_c02160{bottom:705.090450px;}
.y26_c02160{bottom:723.630450px;}
.y25_c02160{bottom:723.990000px;}
.y24_c02160{bottom:742.620450px;}
.y23_c02160{bottom:742.980000px;}
.y22_c02160{bottom:761.610450px;}
.y21_c02160{bottom:761.970450px;}
.y20_c02160{bottom:780.960450px;}
.y1f_c02160{bottom:799.500450px;}
.y1e_c02160{bottom:799.950450px;}
.y1d_c02160{bottom:821.280450px;}
.y1c_c02160{bottom:839.550450px;}
.y1b_c02160{bottom:856.920450px;}
.y1a_c02160{bottom:877.710450px;}
.y19_c02160{bottom:886.530450px;}
.y18_c02160{bottom:886.890450px;}
.y17_c02160{bottom:903.090450px;}
.y16_c02160{bottom:921.450450px;}
.y15_c02160{bottom:938.820450px;}
.y14_c02160{bottom:959.520450px;}
.y13_c02160{bottom:968.340450px;}
.y12_c02160{bottom:968.700000px;}
.y11_c02160{bottom:987.330450px;}
.y10_c02160{bottom:987.690000px;}
.yf_c02160{bottom:1006.320450px;}
.ye_c02160{bottom:1006.680000px;}
.yd_c02160{bottom:1025.310450px;}
.yc_c02160{bottom:1025.670000px;}
.yb_c02160{bottom:1044.210450px;}
.ya_c02160{bottom:1044.660450px;}
.y9_c02160{bottom:1063.560450px;}
.y8_c02160{bottom:1082.190450px;}
.y7_c02160{bottom:1082.550450px;}
.y6_c02160{bottom:1103.970450px;}
.y5_c02160{bottom:1122.240450px;}
.y4_c02160{bottom:1139.610450px;}
.y1_c02160{bottom:1193.160450px;}
.h7_c02160{height:10.551621px;}
.h3_c02160{height:47.961914px;}
.hd_c02160{height:48.461836px;}
.h9_c02160{height:49.901836px;}
.h8_c02160{height:58.513535px;}
.ha_c02160{height:61.033535px;}
.h5_c02160{height:61.393535px;}
.h6_c02160{height:62.473535px;}
.hc_c02160{height:62.474135px;}
.h4_c02160{height:62.833535px;}
.h2_c02160{height:63.175781px;}
.h1_c02160{height:63.949219px;}
.hb_c02160{height:66.073535px;}
.h0_c02160{height:1263.000000px;}
.w1_c02160{width:892.500000px;}
.w0_c02160{width:892.830000px;}
.x0_c02160{left:0.000000px;}
.x1_c02160{left:127.620000px;}
.x3_c02160{left:135.630000px;}
.x4_c02160{left:143.910000px;}
.x5_c02160{left:165.060000px;}
.x6_c02160{left:220.590000px;}
.x7_c02160{left:234.270000px;}
.x2_c02160{left:433.080000px;}
.x8_c02160{left:555.029550px;}
@media print{
.va_c02160{vertical-align:-9.278400pt;}
.vc_c02160{vertical-align:-6.080000pt;}
.v3_c02160{vertical-align:-3.840000pt;}
.v2_c02160{vertical-align:-2.560000pt;}
.v1_c02160{vertical-align:-1.280000pt;}
.v0_c02160{vertical-align:0.000000pt;}
.v6_c02160{vertical-align:0.960000pt;}
.v4_c02160{vertical-align:2.240000pt;}
.v5_c02160{vertical-align:3.840000pt;}
.v8_c02160{vertical-align:4.800000pt;}
.v7_c02160{vertical-align:6.080000pt;}
.vb_c02160{vertical-align:7.040000pt;}
.vd_c02160{vertical-align:8.640000pt;}
.v9_c02160{vertical-align:11.520000pt;}
.ls1f_c02160{letter-spacing:-0.076608pt;}
.ls1b_c02160{letter-spacing:-0.038400pt;}
.ls26_c02160{letter-spacing:-0.019200pt;}
.ls1d_c02160{letter-spacing:-0.017024pt;}
.ls18_c02160{letter-spacing:-0.012800pt;}
.ls1c_c02160{letter-spacing:-0.009600pt;}
.ls21_c02160{letter-spacing:-0.008512pt;}
.ls23_c02160{letter-spacing:-0.006400pt;}
.ls22_c02160{letter-spacing:-0.004256pt;}
.ls19_c02160{letter-spacing:0.000000pt;}
.ls1_c02160{letter-spacing:0.009600pt;}
.ls4_c02160{letter-spacing:0.011232pt;}
.ls0_c02160{letter-spacing:0.012800pt;}
.lsf_c02160{letter-spacing:0.017024pt;}
.ls14_c02160{letter-spacing:0.019200pt;}
.ls3_c02160{letter-spacing:0.025536pt;}
.ls5_c02160{letter-spacing:0.028800pt;}
.lsb_c02160{letter-spacing:0.033600pt;}
.ls2_c02160{letter-spacing:0.038304pt;}
.lsa_c02160{letter-spacing:0.038400pt;}
.ls8_c02160{letter-spacing:0.072352pt;}
.lsd_c02160{letter-spacing:0.110656pt;}
.lse_c02160{letter-spacing:0.119168pt;}
.ls1a_c02160{letter-spacing:0.134400pt;}
.ls6_c02160{letter-spacing:0.140544pt;}
.ls1e_c02160{letter-spacing:0.148960pt;}
.ls9_c02160{letter-spacing:0.161728pt;}
.ls7_c02160{letter-spacing:99.520000pt;}
.ls10_c02160{letter-spacing:103.520000pt;}
.ls20_c02160{letter-spacing:127.521600pt;}
.ls13_c02160{letter-spacing:133.360000pt;}
.ls17_c02160{letter-spacing:138.720000pt;}
.ls11_c02160{letter-spacing:139.041600pt;}
.ls25_c02160{letter-spacing:140.081984pt;}
.ls24_c02160{letter-spacing:140.401184pt;}
.ls12_c02160{letter-spacing:148.480000pt;}
.ls27_c02160{letter-spacing:176.481600pt;}
.ls15_c02160{letter-spacing:178.480000pt;}
.ls16_c02160{letter-spacing:179.361600pt;}
.lsc_c02160{letter-spacing:182.000000pt;}
.ws0_c02160{word-spacing:-14.780544pt;}
.ws9_c02160{word-spacing:-0.242592pt;}
.wsd_c02160{word-spacing:-0.200032pt;}
.wsc_c02160{word-spacing:-0.191520pt;}
.wse_c02160{word-spacing:-0.153216pt;}
.ws11_c02160{word-spacing:-0.106400pt;}
.ws10_c02160{word-spacing:-0.097888pt;}
.ws8_c02160{word-spacing:-0.089856pt;}
.wsa_c02160{word-spacing:-0.072352pt;}
.ws15_c02160{word-spacing:-0.019200pt;}
.ws7_c02160{word-spacing:-0.012800pt;}
.ws6_c02160{word-spacing:0.000000pt;}
.ws12_c02160{word-spacing:0.006400pt;}
.ws5_c02160{word-spacing:0.012800pt;}
.ws14_c02160{word-spacing:0.019200pt;}
.ws2_c02160{word-spacing:62.977280pt;}
.ws4_c02160{word-spacing:66.817280pt;}
.ws13_c02160{word-spacing:77.251200pt;}
.ws1_c02160{word-spacing:86.977280pt;}
.ws3_c02160{word-spacing:90.817280pt;}
.wsb_c02160{word-spacing:139.003200pt;}
.wsf_c02160{word-spacing:139.008000pt;}
.ws16_c02160{word-spacing:176.121600pt;}
._21_c02160{margin-left:-7.697536pt;}
._1a_c02160{margin-left:-1.062944pt;}
._15_c02160{width:37.118400pt;}
._1b_c02160{width:38.121600pt;}
._14_c02160{width:39.649664pt;}
._b_c02160{width:45.597824pt;}
._27_c02160{width:47.515680pt;}
._10_c02160{width:54.518400pt;}
._30_c02160{width:55.474080pt;}
._33_c02160{width:57.351520pt;}
._e_c02160{width:58.400000pt;}
._2a_c02160{width:61.286816pt;}
._8_c02160{width:64.217280pt;}
._2e_c02160{width:65.817280pt;}
._12_c02160{width:67.040000pt;}
._9_c02160{width:68.400160pt;}
._1e_c02160{width:69.491744pt;}
._f_c02160{width:70.528000pt;}
._32_c02160{width:71.478784pt;}
._13_c02160{width:74.080000pt;}
._2b_c02160{width:75.408000pt;}
._25_c02160{width:76.867200pt;}
._1_c02160{width:78.099200pt;}
._24_c02160{width:82.368000pt;}
._d_c02160{width:83.737152pt;}
._26_c02160{width:85.600000pt;}
._a_c02160{width:88.582400pt;}
._2f_c02160{width:89.682816pt;}
._1f_c02160{width:90.688000pt;}
._20_c02160{width:92.608000pt;}
._28_c02160{width:94.528000pt;}
._c_c02160{width:96.475680pt;}
._19_c02160{width:98.986816pt;}
._18_c02160{width:101.097792pt;}
._3_c02160{width:102.880000pt;}
._2c_c02160{width:104.076928pt;}
._4_c02160{width:105.225728pt;}
._31_c02160{width:106.726816pt;}
._2_c02160{width:109.148800pt;}
._17_c02160{width:110.246816pt;}
._2d_c02160{width:112.332096pt;}
._7_c02160{width:113.269056pt;}
._11_c02160{width:114.566240pt;}
._1c_c02160{width:118.121792pt;}
._5_c02160{width:119.125440pt;}
._22_c02160{width:121.342400pt;}
._1d_c02160{width:123.245696pt;}
._16_c02160{width:127.520000pt;}
._6_c02160{width:134.929248pt;}
._0_c02160{width:172.800000pt;}
._29_c02160{width:176.480000pt;}
._23_c02160{width:178.700864pt;}
.fs5_c02160{font-size:10.560000pt;}
.fs3_c02160{font-size:37.440000pt;}
.fs2_c02160{font-size:42.560000pt;}
.fs1_c02160{font-size:48.000000pt;}
.fs4_c02160{font-size:58.560000pt;}
.fs0_c02160{font-size:64.000000pt;}
.y0_c02160{bottom:0.000000pt;}
.y3_c02160{bottom:50.987067pt;}
.y2_c02160{bottom:69.387067pt;}
.y57_c02160{bottom:111.387467pt;}
.y56_c02160{bottom:125.227067pt;}
.y55_c02160{bottom:138.987467pt;}
.y54_c02160{bottom:152.827067pt;}
.y53_c02160{bottom:166.587467pt;}
.y52_c02160{bottom:180.427067pt;}
.y51_c02160{bottom:194.187467pt;}
.y50_c02160{bottom:208.027067pt;}
.y4f_c02160{bottom:221.787467pt;}
.y4e_c02160{bottom:235.627067pt;}
.y4d_c02160{bottom:249.387067pt;}
.y4c_c02160{bottom:249.706667pt;}
.y4b_c02160{bottom:266.267067pt;}
.y4a_c02160{bottom:266.586667pt;}
.y49_c02160{bottom:283.147067pt;}
.y48_c02160{bottom:283.466667pt;}
.y47_c02160{bottom:300.027067pt;}
.y46_c02160{bottom:300.346667pt;}
.y45_c02160{bottom:316.827067pt;}
.y44_c02160{bottom:317.227067pt;}
.y43_c02160{bottom:335.627200pt;}
.y41_c02160{bottom:352.107200pt;}
.y40_c02160{bottom:352.427067pt;}
.y42_c02160{bottom:352.427200pt;}
.y3f_c02160{bottom:371.467067pt;}
.y3e_c02160{bottom:387.707067pt;}
.y3d_c02160{bottom:403.147200pt;}
.y3c_c02160{bottom:421.627067pt;}
.y3b_c02160{bottom:429.467067pt;}
.y3a_c02160{bottom:429.786267pt;}
.y39_c02160{bottom:446.347067pt;}
.y38_c02160{bottom:446.666267pt;}
.y37_c02160{bottom:463.227067pt;}
.y36_c02160{bottom:463.547467pt;}
.y35_c02160{bottom:480.027067pt;}
.y34_c02160{bottom:480.347067pt;}
.y33_c02160{bottom:496.907067pt;}
.y32_c02160{bottom:497.227067pt;}
.y31_c02160{bottom:515.627067pt;}
.y30_c02160{bottom:532.187067pt;}
.y2f_c02160{bottom:532.507067pt;}
.y2e_c02160{bottom:551.467067pt;}
.y2d_c02160{bottom:567.787067pt;}
.y2c_c02160{bottom:583.227067pt;}
.y2b_c02160{bottom:601.707067pt;}
.y2a_c02160{bottom:609.547067pt;}
.y29_c02160{bottom:609.866667pt;}
.y28_c02160{bottom:626.347067pt;}
.y27_c02160{bottom:626.747067pt;}
.y26_c02160{bottom:643.227067pt;}
.y25_c02160{bottom:643.546667pt;}
.y24_c02160{bottom:660.107067pt;}
.y23_c02160{bottom:660.426667pt;}
.y22_c02160{bottom:676.987067pt;}
.y21_c02160{bottom:677.307067pt;}
.y20_c02160{bottom:694.187067pt;}
.y1f_c02160{bottom:710.667067pt;}
.y1e_c02160{bottom:711.067067pt;}
.y1d_c02160{bottom:730.027067pt;}
.y1c_c02160{bottom:746.267067pt;}
.y1b_c02160{bottom:761.707067pt;}
.y1a_c02160{bottom:780.187067pt;}
.y19_c02160{bottom:788.027067pt;}
.y18_c02160{bottom:788.347067pt;}
.y17_c02160{bottom:802.747067pt;}
.y16_c02160{bottom:819.067067pt;}
.y15_c02160{bottom:834.507067pt;}
.y14_c02160{bottom:852.907067pt;}
.y13_c02160{bottom:860.747067pt;}
.y12_c02160{bottom:861.066667pt;}
.y11_c02160{bottom:877.627067pt;}
.y10_c02160{bottom:877.946667pt;}
.yf_c02160{bottom:894.507067pt;}
.ye_c02160{bottom:894.826667pt;}
.yd_c02160{bottom:911.387067pt;}
.yc_c02160{bottom:911.706667pt;}
.yb_c02160{bottom:928.187067pt;}
.ya_c02160{bottom:928.587067pt;}
.y9_c02160{bottom:945.387067pt;}
.y8_c02160{bottom:961.947067pt;}
.y7_c02160{bottom:962.267067pt;}
.y6_c02160{bottom:981.307067pt;}
.y5_c02160{bottom:997.547067pt;}
.y4_c02160{bottom:1012.987067pt;}
.y1_c02160{bottom:1060.587067pt;}
.h7_c02160{height:9.379219pt;}
.h3_c02160{height:42.632812pt;}
.hd_c02160{height:43.077187pt;}
.h9_c02160{height:44.357187pt;}
.h8_c02160{height:52.012031pt;}
.ha_c02160{height:54.252031pt;}
.h5_c02160{height:54.572031pt;}
.h6_c02160{height:55.532031pt;}
.hc_c02160{height:55.532565pt;}
.h4_c02160{height:55.852031pt;}
.h2_c02160{height:56.156250pt;}
.h1_c02160{height:56.843750pt;}
.hb_c02160{height:58.732031pt;}
.h0_c02160{height:1122.666667pt;}
.w1_c02160{width:793.333333pt;}
.w0_c02160{width:793.626667pt;}
.x0_c02160{left:0.000000pt;}
.x1_c02160{left:113.440000pt;}
.x3_c02160{left:120.560000pt;}
.x4_c02160{left:127.920000pt;}
.x5_c02160{left:146.720000pt;}
.x6_c02160{left:196.080000pt;}
.x7_c02160{left:208.240000pt;}
.x2_c02160{left:384.960000pt;}
.x8_c02160{left:493.359600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d092a1a7df7874fdb48db102.woff2')format("woff");}.ff1_c02161{font-family:ff1_c02161;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02161;src:url('chunks/assets/font_dfd344ef94f511a7cb16614c.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;}
.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);}
.v9_c02161{vertical-align:-6.841800px;}
.v4_c02161{vertical-align:-3.960000px;}
.vb_c02161{vertical-align:-2.880000px;}
.v3_c02161{vertical-align:-1.800000px;}
.v0_c02161{vertical-align:0.000000px;}
.v1_c02161{vertical-align:1.080000px;}
.v5_c02161{vertical-align:2.520000px;}
.v6_c02161{vertical-align:3.960000px;}
.v7_c02161{vertical-align:5.400000px;}
.va_c02161{vertical-align:8.280000px;}
.v8_c02161{vertical-align:9.360000px;}
.v2_c02161{vertical-align:32.040000px;}
.ls26_c02161{letter-spacing:-0.178200px;}
.ls22_c02161{letter-spacing:-0.118800px;}
.ls25_c02161{letter-spacing:-0.102600px;}
.ls23_c02161{letter-spacing:-0.086400px;}
.ls2d_c02161{letter-spacing:-0.086184px;}
.ls29_c02161{letter-spacing:-0.043200px;}
.ls2b_c02161{letter-spacing:-0.019152px;}
.ls24_c02161{letter-spacing:-0.016200px;}
.ls20_c02161{letter-spacing:-0.014400px;}
.ls2a_c02161{letter-spacing:-0.010800px;}
.ls27_c02161{letter-spacing:-0.009576px;}
.ls30_c02161{letter-spacing:-0.007200px;}
.ls2e_c02161{letter-spacing:-0.004788px;}
.ls21_c02161{letter-spacing:0.000000px;}
.ls1_c02161{letter-spacing:0.006588px;}
.ls8_c02161{letter-spacing:0.010800px;}
.ls12_c02161{letter-spacing:0.012636px;}
.ls10_c02161{letter-spacing:0.014400px;}
.ls6_c02161{letter-spacing:0.016200px;}
.ls18_c02161{letter-spacing:0.019152px;}
.ls7_c02161{letter-spacing:0.027000px;}
.ls11_c02161{letter-spacing:0.028728px;}
.ls4_c02161{letter-spacing:0.032400px;}
.ls9_c02161{letter-spacing:0.037800px;}
.lsd_c02161{letter-spacing:0.043092px;}
.ls5_c02161{letter-spacing:0.043200px;}
.ls19_c02161{letter-spacing:0.052704px;}
.ls0_c02161{letter-spacing:0.059292px;}
.ls1d_c02161{letter-spacing:0.065880px;}
.lsb_c02161{letter-spacing:0.067032px;}
.ls2_c02161{letter-spacing:0.070200px;}
.lse_c02161{letter-spacing:0.076608px;}
.ls1b_c02161{letter-spacing:0.081396px;}
.ls1f_c02161{letter-spacing:0.085644px;}
.lsa_c02161{letter-spacing:0.086184px;}
.ls3_c02161{letter-spacing:0.095760px;}
.lsc_c02161{letter-spacing:0.114912px;}
.lsf_c02161{letter-spacing:0.119700px;}
.ls15_c02161{letter-spacing:0.124488px;}
.ls17_c02161{letter-spacing:0.134064px;}
.ls28_c02161{letter-spacing:0.151200px;}
.ls13_c02161{letter-spacing:0.158112px;}
.ls2c_c02161{letter-spacing:0.167580px;}
.ls1c_c02161{letter-spacing:0.181944px;}
.ls1a_c02161{letter-spacing:112.320000px;}
.ls14_c02161{letter-spacing:112.680000px;}
.ls31_c02161{letter-spacing:143.818200px;}
.ls2f_c02161{letter-spacing:144.180000px;}
.ls32_c02161{letter-spacing:156.778200px;}
.ls33_c02161{letter-spacing:158.310432px;}
.ls16_c02161{letter-spacing:200.790000px;}
.ls1e_c02161{letter-spacing:305.100000px;}
.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;}
}
.ws1_c02161{word-spacing:-16.628112px;}
.ws0_c02161{word-spacing:-16.476588px;}
.ws1c_c02161{word-spacing:-0.272916px;}
.ws19_c02161{word-spacing:-0.225036px;}
.ws18_c02161{word-spacing:-0.215460px;}
.ws15_c02161{word-spacing:-0.210672px;}
.wse_c02161{word-spacing:-0.189000px;}
.ws8_c02161{word-spacing:-0.186732px;}
.ws1b_c02161{word-spacing:-0.172368px;}
.ws1e_c02161{word-spacing:-0.119700px;}
.ws1d_c02161{word-spacing:-0.110124px;}
.ws17_c02161{word-spacing:-0.101088px;}
.ws21_c02161{word-spacing:-0.081396px;}
.ws16_c02161{word-spacing:-0.050400px;}
.ws6_c02161{word-spacing:0.000000px;}
.ws25_c02161{word-spacing:0.006588px;}
.ws20_c02161{word-spacing:0.007200px;}
.ws5_c02161{word-spacing:0.014400px;}
.ws22_c02161{word-spacing:0.026352px;}
.ws7_c02161{word-spacing:0.032940px;}
.ws1f_c02161{word-spacing:0.039528px;}
.ws9_c02161{word-spacing:0.145800px;}
.wsc_c02161{word-spacing:0.151200px;}
.wsa_c02161{word-spacing:0.162000px;}
.wsd_c02161{word-spacing:0.194400px;}
.wsb_c02161{word-spacing:0.264600px;}
.wsf_c02161{word-spacing:0.280800px;}
.ws12_c02161{word-spacing:1.235304px;}
.ws14_c02161{word-spacing:1.273608px;}
.ws13_c02161{word-spacing:1.307124px;}
.ws10_c02161{word-spacing:5.941908px;}
.ws11_c02161{word-spacing:5.961060px;}
.ws2_c02161{word-spacing:47.809440px;}
.ws4_c02161{word-spacing:58.969440px;}
.ws3_c02161{word-spacing:74.809440px;}
.ws23_c02161{word-spacing:119.664000px;}
.ws24_c02161{word-spacing:129.762000px;}
.ws1a_c02161{word-spacing:156.735000px;}
._2f_c02161{margin-left:-55.125540px;}
._e_c02161{margin-left:-1.230516px;}
._a_c02161{width:1.026000px;}
._23_c02161{width:42.481800px;}
._1b_c02161{width:50.937552px;}
._1f_c02161{width:62.053200px;}
._2b_c02161{width:65.340000px;}
._22_c02161{width:68.380236px;}
._17_c02161{width:72.604440px;}
._21_c02161{width:75.420000px;}
._18_c02161{width:77.310180px;}
._2c_c02161{width:78.469056px;}
._10_c02161{width:84.474000px;}
._27_c02161{width:85.777200px;}
._19_c02161{width:87.278400px;}
._f_c02161{width:88.581600px;}
._25_c02161{width:90.075600px;}
._24_c02161{width:93.360168px;}
._2a_c02161{width:94.564296px;}
._1d_c02161{width:95.735016px;}
._1a_c02161{width:100.598400px;}
._1e_c02161{width:103.039200px;}
._29_c02161{width:104.935140px;}
._12_c02161{width:106.740000px;}
._32_c02161{width:108.435600px;}
._31_c02161{width:111.720168px;}
._26_c02161{width:114.887016px;}
._13_c02161{width:118.378944px;}
._1c_c02161{width:119.705220px;}
._11_c02161{width:122.220000px;}
._30_c02161{width:124.666920px;}
._2d_c02161{width:128.162160px;}
._20_c02161{width:129.607020px;}
._14_c02161{width:131.136120px;}
._33_c02161{width:133.247016px;}
._16_c02161{width:140.027688px;}
._28_c02161{width:147.769776px;}
._15_c02161{width:152.875404px;}
._0_c02161{width:194.400000px;}
._d_c02161{width:203.036400px;}
._4_c02161{width:216.180000px;}
._2e_c02161{width:240.624000px;}
._2_c02161{width:283.500000px;}
._8_c02161{width:303.170400px;}
._5_c02161{width:310.104000px;}
._3_c02161{width:324.775800px;}
._6_c02161{width:382.210200px;}
._b_c02161{width:451.783800px;}
._9_c02161{width:482.234400px;}
._7_c02161{width:483.924600px;}
._1_c02161{width:578.156400px;}
._c_c02161{width:799.695000px;}
.fc0_c02161{color:rgb(0,0,0);}
.fs5_c02161{font-size:11.880000px;}
.fs4_c02161{font-size:42.120000px;}
.fs3_c02161{font-size:47.880000px;}
.fs2_c02161{font-size:54.000000px;}
.fs1_c02161{font-size:65.880000px;}
.fs0_c02161{font-size:72.000000px;}
.y0_c02161{bottom:0.000000px;}
.y3_c02161{bottom:57.360450px;}
.y2_c02161{bottom:78.060450px;}
.y51_c02161{bottom:128.730450px;}
.y50_c02161{bottom:144.210900px;}
.y4f_c02161{bottom:159.780450px;}
.y4e_c02161{bottom:175.260450px;}
.y4d_c02161{bottom:175.620600px;}
.y4b_c02161{bottom:194.610450px;}
.y4a_c02161{bottom:195.330450px;}
.y4c_c02161{bottom:195.420450px;}
.y49_c02161{bottom:213.600450px;}
.y48_c02161{bottom:230.700600px;}
.y47_c02161{bottom:250.050450px;}
.y46_c02161{bottom:258.870450px;}
.y45_c02161{bottom:259.230000px;}
.y44_c02161{bottom:277.770450px;}
.y43_c02161{bottom:278.220450px;}
.y42_c02161{bottom:296.760450px;}
.y41_c02161{bottom:297.120900px;}
.y3f_c02161{bottom:315.750450px;}
.y3e_c02161{bottom:316.110000px;}
.y40_c02161{bottom:319.890000px;}
.y3d_c02161{bottom:334.740450px;}
.y3c_c02161{bottom:335.100450px;}
.y39_c02161{bottom:354.720450px;}
.y3b_c02161{bottom:354.810450px;}
.y3a_c02161{bottom:355.800450px;}
.y38_c02161{bottom:373.080600px;}
.y37_c02161{bottom:390.090600px;}
.y36_c02161{bottom:408.810450px;}
.y35_c02161{bottom:424.380450px;}
.y34_c02161{bottom:424.740450px;}
.y33_c02161{bottom:444.360600px;}
.y32_c02161{bottom:462.630450px;}
.y31_c02161{bottom:480.000600px;}
.y30_c02161{bottom:500.430600px;}
.y2f_c02161{bottom:515.550099px;}
.y2e_c02161{bottom:529.410162px;}
.y2d_c02161{bottom:543.180450px;}
.y2c_c02161{bottom:559.380450px;}
.y2b_c02161{bottom:574.860450px;}
.y2a_c02161{bottom:590.340450px;}
.y29_c02161{bottom:605.910450px;}
.y28_c02161{bottom:621.390450px;}
.y27_c02161{bottom:636.960450px;}
.y26_c02161{bottom:652.440450px;}
.y25_c02161{bottom:668.010450px;}
.y23_c02161{bottom:686.010450px;}
.y24_c02161{bottom:703.470450px;}
.y22_c02161{bottom:720.390450px;}
.y21_c02161{bottom:738.570450px;}
.y20_c02161{bottom:754.140450px;}
.y1f_c02161{bottom:754.500450px;}
.y1e_c02161{bottom:773.040600px;}
.y1d_c02161{bottom:773.400000px;}
.y1c_c02161{bottom:792.030450px;}
.y1b_c02161{bottom:792.390000px;}
.y1a_c02161{bottom:811.020450px;}
.y19_c02161{bottom:811.380000px;}
.y18_c02161{bottom:830.010450px;}
.y17_c02161{bottom:830.370450px;}
.y16_c02161{bottom:849.990450px;}
.y15_c02161{bottom:868.350450px;}
.y14_c02161{bottom:885.720450px;}
.y13_c02161{bottom:905.790900px;}
.y12_c02161{bottom:921.360450px;}
.y11_c02161{bottom:936.750099px;}
.y10_c02161{bottom:950.520387px;}
.yf_c02161{bottom:964.380450px;}
.ye_c02161{bottom:980.490450px;}
.yd_c02161{bottom:996.060450px;}
.yc_c02161{bottom:1011.540450px;}
.yb_c02161{bottom:1027.110450px;}
.ya_c02161{bottom:1042.590450px;}
.y9_c02161{bottom:1058.160450px;}
.y8_c02161{bottom:1073.640450px;}
.y7_c02161{bottom:1089.210450px;}
.y5_c02161{bottom:1107.210450px;}
.y6_c02161{bottom:1124.580450px;}
.y4_c02161{bottom:1141.500450px;}
.y1_c02161{bottom:1193.160450px;}
.h10_c02161{height:10.551621px;}
.h5_c02161{height:42.011895px;}
.h4_c02161{height:47.381836px;}
.h7_c02161{height:47.961914px;}
.h6_c02161{height:48.461836px;}
.h11_c02161{height:55.303636px;}
.he_c02161{height:57.805840px;}
.h3_c02161{height:58.513535px;}
.h9_c02161{height:62.473535px;}
.hd_c02161{height:62.474135px;}
.hb_c02161{height:62.832935px;}
.hf_c02161{height:62.833535px;}
.ha_c02161{height:62.834135px;}
.h2_c02161{height:63.175781px;}
.h1_c02161{height:63.949219px;}
.h8_c02161{height:79.421836px;}
.hc_c02161{height:79.781836px;}
.h0_c02161{height:1263.000000px;}
.w1_c02161{width:892.500000px;}
.w0_c02161{width:892.830000px;}
.x0_c02161{left:0.000000px;}
.x1_c02161{left:127.620000px;}
.x3_c02161{left:134.550000px;}
.x6_c02161{left:135.630000px;}
.x7_c02161{left:143.910000px;}
.x8_c02161{left:165.060000px;}
.x9_c02161{left:220.680000px;}
.x4_c02161{left:380.700000px;}
.x5_c02161{left:403.380000px;}
.x2_c02161{left:433.080000px;}
.xa_c02161{left:531.720450px;}
.xc_c02161{left:667.170450px;}
.xb_c02161{left:717.930000px;}
@media print{
.v9_c02161{vertical-align:-6.081600pt;}
.v4_c02161{vertical-align:-3.520000pt;}
.vb_c02161{vertical-align:-2.560000pt;}
.v3_c02161{vertical-align:-1.600000pt;}
.v0_c02161{vertical-align:0.000000pt;}
.v1_c02161{vertical-align:0.960000pt;}
.v5_c02161{vertical-align:2.240000pt;}
.v6_c02161{vertical-align:3.520000pt;}
.v7_c02161{vertical-align:4.800000pt;}
.va_c02161{vertical-align:7.360000pt;}
.v8_c02161{vertical-align:8.320000pt;}
.v2_c02161{vertical-align:28.480000pt;}
.ls26_c02161{letter-spacing:-0.158400pt;}
.ls22_c02161{letter-spacing:-0.105600pt;}
.ls25_c02161{letter-spacing:-0.091200pt;}
.ls23_c02161{letter-spacing:-0.076800pt;}
.ls2d_c02161{letter-spacing:-0.076608pt;}
.ls29_c02161{letter-spacing:-0.038400pt;}
.ls2b_c02161{letter-spacing:-0.017024pt;}
.ls24_c02161{letter-spacing:-0.014400pt;}
.ls20_c02161{letter-spacing:-0.012800pt;}
.ls2a_c02161{letter-spacing:-0.009600pt;}
.ls27_c02161{letter-spacing:-0.008512pt;}
.ls30_c02161{letter-spacing:-0.006400pt;}
.ls2e_c02161{letter-spacing:-0.004256pt;}
.ls21_c02161{letter-spacing:0.000000pt;}
.ls1_c02161{letter-spacing:0.005856pt;}
.ls8_c02161{letter-spacing:0.009600pt;}
.ls12_c02161{letter-spacing:0.011232pt;}
.ls10_c02161{letter-spacing:0.012800pt;}
.ls6_c02161{letter-spacing:0.014400pt;}
.ls18_c02161{letter-spacing:0.017024pt;}
.ls7_c02161{letter-spacing:0.024000pt;}
.ls11_c02161{letter-spacing:0.025536pt;}
.ls4_c02161{letter-spacing:0.028800pt;}
.ls9_c02161{letter-spacing:0.033600pt;}
.lsd_c02161{letter-spacing:0.038304pt;}
.ls5_c02161{letter-spacing:0.038400pt;}
.ls19_c02161{letter-spacing:0.046848pt;}
.ls0_c02161{letter-spacing:0.052704pt;}
.ls1d_c02161{letter-spacing:0.058560pt;}
.lsb_c02161{letter-spacing:0.059584pt;}
.ls2_c02161{letter-spacing:0.062400pt;}
.lse_c02161{letter-spacing:0.068096pt;}
.ls1b_c02161{letter-spacing:0.072352pt;}
.ls1f_c02161{letter-spacing:0.076128pt;}
.lsa_c02161{letter-spacing:0.076608pt;}
.ls3_c02161{letter-spacing:0.085120pt;}
.lsc_c02161{letter-spacing:0.102144pt;}
.lsf_c02161{letter-spacing:0.106400pt;}
.ls15_c02161{letter-spacing:0.110656pt;}
.ls17_c02161{letter-spacing:0.119168pt;}
.ls28_c02161{letter-spacing:0.134400pt;}
.ls13_c02161{letter-spacing:0.140544pt;}
.ls2c_c02161{letter-spacing:0.148960pt;}
.ls1c_c02161{letter-spacing:0.161728pt;}
.ls1a_c02161{letter-spacing:99.840000pt;}
.ls14_c02161{letter-spacing:100.160000pt;}
.ls31_c02161{letter-spacing:127.838400pt;}
.ls2f_c02161{letter-spacing:128.160000pt;}
.ls32_c02161{letter-spacing:139.358400pt;}
.ls33_c02161{letter-spacing:140.720384pt;}
.ls16_c02161{letter-spacing:178.480000pt;}
.ls1e_c02161{letter-spacing:271.200000pt;}
.ws1_c02161{word-spacing:-14.780544pt;}
.ws0_c02161{word-spacing:-14.645856pt;}
.ws1c_c02161{word-spacing:-0.242592pt;}
.ws19_c02161{word-spacing:-0.200032pt;}
.ws18_c02161{word-spacing:-0.191520pt;}
.ws15_c02161{word-spacing:-0.187264pt;}
.wse_c02161{word-spacing:-0.168000pt;}
.ws8_c02161{word-spacing:-0.165984pt;}
.ws1b_c02161{word-spacing:-0.153216pt;}
.ws1e_c02161{word-spacing:-0.106400pt;}
.ws1d_c02161{word-spacing:-0.097888pt;}
.ws17_c02161{word-spacing:-0.089856pt;}
.ws21_c02161{word-spacing:-0.072352pt;}
.ws16_c02161{word-spacing:-0.044800pt;}
.ws6_c02161{word-spacing:0.000000pt;}
.ws25_c02161{word-spacing:0.005856pt;}
.ws20_c02161{word-spacing:0.006400pt;}
.ws5_c02161{word-spacing:0.012800pt;}
.ws22_c02161{word-spacing:0.023424pt;}
.ws7_c02161{word-spacing:0.029280pt;}
.ws1f_c02161{word-spacing:0.035136pt;}
.ws9_c02161{word-spacing:0.129600pt;}
.wsc_c02161{word-spacing:0.134400pt;}
.wsa_c02161{word-spacing:0.144000pt;}
.wsd_c02161{word-spacing:0.172800pt;}
.wsb_c02161{word-spacing:0.235200pt;}
.wsf_c02161{word-spacing:0.249600pt;}
.ws12_c02161{word-spacing:1.098048pt;}
.ws14_c02161{word-spacing:1.132096pt;}
.ws13_c02161{word-spacing:1.161888pt;}
.ws10_c02161{word-spacing:5.281696pt;}
.ws11_c02161{word-spacing:5.298720pt;}
.ws2_c02161{word-spacing:42.497280pt;}
.ws4_c02161{word-spacing:52.417280pt;}
.ws3_c02161{word-spacing:66.497280pt;}
.ws23_c02161{word-spacing:106.368000pt;}
.ws24_c02161{word-spacing:115.344000pt;}
.ws1a_c02161{word-spacing:139.320000pt;}
._2f_c02161{margin-left:-49.000480pt;}
._e_c02161{margin-left:-1.093792pt;}
._a_c02161{width:0.912000pt;}
._23_c02161{width:37.761600pt;}
._1b_c02161{width:45.277824pt;}
._1f_c02161{width:55.158400pt;}
._2b_c02161{width:58.080000pt;}
._22_c02161{width:60.782432pt;}
._17_c02161{width:64.537280pt;}
._21_c02161{width:67.040000pt;}
._18_c02161{width:68.720160pt;}
._2c_c02161{width:69.750272pt;}
._10_c02161{width:75.088000pt;}
._27_c02161{width:76.246400pt;}
._19_c02161{width:77.580800pt;}
._f_c02161{width:78.739200pt;}
._25_c02161{width:80.067200pt;}
._24_c02161{width:82.986816pt;}
._2a_c02161{width:84.057152pt;}
._1d_c02161{width:85.097792pt;}
._1a_c02161{width:89.420800pt;}
._1e_c02161{width:91.590400pt;}
._29_c02161{width:93.275680pt;}
._12_c02161{width:94.880000pt;}
._32_c02161{width:96.387200pt;}
._31_c02161{width:99.306816pt;}
._26_c02161{width:102.121792pt;}
._13_c02161{width:105.225728pt;}
._1c_c02161{width:106.404640pt;}
._11_c02161{width:108.640000pt;}
._30_c02161{width:110.815040pt;}
._2d_c02161{width:113.921920pt;}
._20_c02161{width:115.206240pt;}
._14_c02161{width:116.565440pt;}
._33_c02161{width:118.441792pt;}
._16_c02161{width:124.469056pt;}
._28_c02161{width:131.350912pt;}
._15_c02161{width:135.889248pt;}
._0_c02161{width:172.800000pt;}
._d_c02161{width:180.476800pt;}
._4_c02161{width:192.160000pt;}
._2e_c02161{width:213.888000pt;}
._2_c02161{width:252.000000pt;}
._8_c02161{width:269.484800pt;}
._5_c02161{width:275.648000pt;}
._3_c02161{width:288.689600pt;}
._6_c02161{width:339.742400pt;}
._b_c02161{width:401.585600pt;}
._9_c02161{width:428.652800pt;}
._7_c02161{width:430.155200pt;}
._1_c02161{width:513.916800pt;}
._c_c02161{width:710.840000pt;}
.fs5_c02161{font-size:10.560000pt;}
.fs4_c02161{font-size:37.440000pt;}
.fs3_c02161{font-size:42.560000pt;}
.fs2_c02161{font-size:48.000000pt;}
.fs1_c02161{font-size:58.560000pt;}
.fs0_c02161{font-size:64.000000pt;}
.y0_c02161{bottom:0.000000pt;}
.y3_c02161{bottom:50.987067pt;}
.y2_c02161{bottom:69.387067pt;}
.y51_c02161{bottom:114.427067pt;}
.y50_c02161{bottom:128.187467pt;}
.y4f_c02161{bottom:142.027067pt;}
.y4e_c02161{bottom:155.787067pt;}
.y4d_c02161{bottom:156.107200pt;}
.y4b_c02161{bottom:172.987067pt;}
.y4a_c02161{bottom:173.627067pt;}
.y4c_c02161{bottom:173.707067pt;}
.y49_c02161{bottom:189.867067pt;}
.y48_c02161{bottom:205.067200pt;}
.y47_c02161{bottom:222.267067pt;}
.y46_c02161{bottom:230.107067pt;}
.y45_c02161{bottom:230.426667pt;}
.y44_c02161{bottom:246.907067pt;}
.y43_c02161{bottom:247.307067pt;}
.y42_c02161{bottom:263.787067pt;}
.y41_c02161{bottom:264.107467pt;}
.y3f_c02161{bottom:280.667067pt;}
.y3e_c02161{bottom:280.986667pt;}
.y40_c02161{bottom:284.346667pt;}
.y3d_c02161{bottom:297.547067pt;}
.y3c_c02161{bottom:297.867067pt;}
.y39_c02161{bottom:315.307067pt;}
.y3b_c02161{bottom:315.387067pt;}
.y3a_c02161{bottom:316.267067pt;}
.y38_c02161{bottom:331.627200pt;}
.y37_c02161{bottom:346.747200pt;}
.y36_c02161{bottom:363.387067pt;}
.y35_c02161{bottom:377.227067pt;}
.y34_c02161{bottom:377.547067pt;}
.y33_c02161{bottom:394.987200pt;}
.y32_c02161{bottom:411.227067pt;}
.y31_c02161{bottom:426.667200pt;}
.y30_c02161{bottom:444.827200pt;}
.y2f_c02161{bottom:458.266755pt;}
.y2e_c02161{bottom:470.586811pt;}
.y2d_c02161{bottom:482.827067pt;}
.y2c_c02161{bottom:497.227067pt;}
.y2b_c02161{bottom:510.987067pt;}
.y2a_c02161{bottom:524.747067pt;}
.y29_c02161{bottom:538.587067pt;}
.y28_c02161{bottom:552.347067pt;}
.y27_c02161{bottom:566.187067pt;}
.y26_c02161{bottom:579.947067pt;}
.y25_c02161{bottom:593.787067pt;}
.y23_c02161{bottom:609.787067pt;}
.y24_c02161{bottom:625.307067pt;}
.y22_c02161{bottom:640.347067pt;}
.y21_c02161{bottom:656.507067pt;}
.y20_c02161{bottom:670.347067pt;}
.y1f_c02161{bottom:670.667067pt;}
.y1e_c02161{bottom:687.147200pt;}
.y1d_c02161{bottom:687.466667pt;}
.y1c_c02161{bottom:704.027067pt;}
.y1b_c02161{bottom:704.346667pt;}
.y1a_c02161{bottom:720.907067pt;}
.y19_c02161{bottom:721.226667pt;}
.y18_c02161{bottom:737.787067pt;}
.y17_c02161{bottom:738.107067pt;}
.y16_c02161{bottom:755.547067pt;}
.y15_c02161{bottom:771.867067pt;}
.y14_c02161{bottom:787.307067pt;}
.y13_c02161{bottom:805.147467pt;}
.y12_c02161{bottom:818.987067pt;}
.y11_c02161{bottom:832.666755pt;}
.y10_c02161{bottom:844.907011pt;}
.yf_c02161{bottom:857.227067pt;}
.ye_c02161{bottom:871.547067pt;}
.yd_c02161{bottom:885.387067pt;}
.yc_c02161{bottom:899.147067pt;}
.yb_c02161{bottom:912.987067pt;}
.ya_c02161{bottom:926.747067pt;}
.y9_c02161{bottom:940.587067pt;}
.y8_c02161{bottom:954.347067pt;}
.y7_c02161{bottom:968.187067pt;}
.y5_c02161{bottom:984.187067pt;}
.y6_c02161{bottom:999.627067pt;}
.y4_c02161{bottom:1014.667067pt;}
.y1_c02161{bottom:1060.587067pt;}
.h10_c02161{height:9.379219pt;}
.h5_c02161{height:37.343906pt;}
.h4_c02161{height:42.117188pt;}
.h7_c02161{height:42.632812pt;}
.h6_c02161{height:43.077187pt;}
.h11_c02161{height:49.158788pt;}
.he_c02161{height:51.382969pt;}
.h3_c02161{height:52.012031pt;}
.h9_c02161{height:55.532031pt;}
.hd_c02161{height:55.532565pt;}
.hb_c02161{height:55.851498pt;}
.hf_c02161{height:55.852031pt;}
.ha_c02161{height:55.852565pt;}
.h2_c02161{height:56.156250pt;}
.h1_c02161{height:56.843750pt;}
.h8_c02161{height:70.597188pt;}
.hc_c02161{height:70.917188pt;}
.h0_c02161{height:1122.666667pt;}
.w1_c02161{width:793.333333pt;}
.w0_c02161{width:793.626667pt;}
.x0_c02161{left:0.000000pt;}
.x1_c02161{left:113.440000pt;}
.x3_c02161{left:119.600000pt;}
.x6_c02161{left:120.560000pt;}
.x7_c02161{left:127.920000pt;}
.x8_c02161{left:146.720000pt;}
.x9_c02161{left:196.160000pt;}
.x4_c02161{left:338.400000pt;}
.x5_c02161{left:358.560000pt;}
.x2_c02161{left:384.960000pt;}
.xa_c02161{left:472.640400pt;}
.xc_c02161{left:593.040400pt;}
.xb_c02161{left:638.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_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_d0f8556d262868f1290d1f14.woff2')format("woff");}.ff1_c02162{font-family:ff1_c02162;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02162;src:url('chunks/assets/font_6f3169a1c1864950910b33fa.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;}
.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;}
.ls26_c02162{letter-spacing:-0.014400px;}
.ls28_c02162{letter-spacing:-0.012024px;}
.ls27_c02162{letter-spacing:0.000000px;}
.ls1_c02162{letter-spacing:0.018036px;}
.ls1a_c02162{letter-spacing:0.026352px;}
.ls1d_c02162{letter-spacing:0.039528px;}
.lsc_c02162{letter-spacing:0.046116px;}
.ls0_c02162{letter-spacing:0.048096px;}
.ls10_c02162{letter-spacing:0.052704px;}
.ls12_c02162{letter-spacing:0.059292px;}
.ls14_c02162{letter-spacing:0.065880px;}
.ls17_c02162{letter-spacing:0.072468px;}
.lse_c02162{letter-spacing:0.079056px;}
.ls7_c02162{letter-spacing:0.085644px;}
.ls5_c02162{letter-spacing:0.092232px;}
.ls2_c02162{letter-spacing:0.098820px;}
.lsb_c02162{letter-spacing:0.105408px;}
.ls9_c02162{letter-spacing:0.131760px;}
.ls4_c02162{letter-spacing:0.158112px;}
.ls29_c02162{letter-spacing:0.177876px;}
.ls22_c02162{letter-spacing:456.840000px;}
.ls18_c02162{letter-spacing:482.400000px;}
.ls1b_c02162{letter-spacing:484.560000px;}
.lsf_c02162{letter-spacing:486.000000px;}
.ls1c_c02162{letter-spacing:526.320000px;}
.ls15_c02162{letter-spacing:530.280000px;}
.ls24_c02162{letter-spacing:546.480000px;}
.ls19_c02162{letter-spacing:555.840000px;}
.lsd_c02162{letter-spacing:559.080000px;}
.ls21_c02162{letter-spacing:570.240000px;}
.ls25_c02162{letter-spacing:592.200000px;}
.ls6_c02162{letter-spacing:599.760000px;}
.ls13_c02162{letter-spacing:605.160000px;}
.ls11_c02162{letter-spacing:610.920000px;}
.ls1e_c02162{letter-spacing:612.360000px;}
.ls3_c02162{letter-spacing:614.520000px;}
.ls20_c02162{letter-spacing:620.280000px;}
.ls1f_c02162{letter-spacing:647.280000px;}
.ls23_c02162{letter-spacing:687.960000px;}
.ls16_c02162{letter-spacing:740.520000px;}
.ls8_c02162{letter-spacing:795.600000px;}
.lsa_c02162{letter-spacing:924.120000px;}
.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;}
}
.ws4_c02162{word-spacing:-0.072000px;}
.ws7_c02162{word-spacing:-0.039528px;}
.ws8_c02162{word-spacing:-0.013176px;}
.ws5_c02162{word-spacing:-0.006588px;}
.ws3_c02162{word-spacing:0.000000px;}
.ws6_c02162{word-spacing:0.006588px;}
.wsa_c02162{word-spacing:0.013176px;}
.ws2_c02162{word-spacing:0.014400px;}
.wse_c02162{word-spacing:0.019764px;}
.wsd_c02162{word-spacing:0.026352px;}
.wsc_c02162{word-spacing:0.032940px;}
.wsb_c02162{word-spacing:0.039528px;}
.ws9_c02162{word-spacing:0.046116px;}
.ws10_c02162{word-spacing:0.052704px;}
.wsf_c02162{word-spacing:0.065880px;}
.ws1_c02162{word-spacing:107.929440px;}
.ws0_c02162{word-spacing:141.049440px;}
._3_c02162{margin-left:-1.525248px;}
._2_c02162{width:49.386240px;}
._0_c02162{width:194.400000px;}
._e_c02162{width:256.671180px;}
._13_c02162{width:323.453736px;}
._5_c02162{width:331.688736px;}
._10_c02162{width:342.743400px;}
._12_c02162{width:380.624400px;}
._b_c02162{width:389.452320px;}
._f_c02162{width:391.804236px;}
._c_c02162{width:395.236584px;}
._9_c02162{width:403.945920px;}
._d_c02162{width:407.104992px;}
._6_c02162{width:415.692324px;}
._a_c02162{width:428.690448px;}
._11_c02162{width:438.084936px;}
._4_c02162{width:441.652464px;}
._8_c02162{width:453.810492px;}
._7_c02162{width:455.276448px;}
._1_c02162{width:1128.331656px;}
.fc0_c02162{color:rgb(0,0,0);}
.fs3_c02162{font-size:11.880000px;}
.fs1_c02162{font-size:60.120000px;}
.fs2_c02162{font-size:65.880000px;}
.fs0_c02162{font-size:72.000000px;}
.y0_c02162{bottom:0.000000px;}
.y3_c02162{bottom:57.360450px;}
.y2_c02162{bottom:78.060450px;}
.y5a_c02162{bottom:126.837234px;}
.y59_c02162{bottom:131.967315px;}
.y58_c02162{bottom:137.187387px;}
.y57_c02162{bottom:142.317468px;}
.y56_c02162{bottom:147.537540px;}
.y55_c02162{bottom:152.667621px;}
.y54_c02162{bottom:157.887693px;}
.y53_c02162{bottom:163.017774px;}
.y52_c02162{bottom:168.237846px;}
.y51_c02162{bottom:173.367927px;}
.y50_c02162{bottom:178.587999px;}
.y4f_c02162{bottom:183.718080px;}
.y4e_c02162{bottom:188.938152px;}
.y4d_c02162{bottom:194.068233px;}
.y4c_c02162{bottom:199.288305px;}
.y4b_c02162{bottom:204.418386px;}
.y4a_c02162{bottom:209.638458px;}
.y49_c02162{bottom:214.768539px;}
.y48_c02162{bottom:219.988611px;}
.y47_c02162{bottom:225.118692px;}
.y46_c02162{bottom:230.338764px;}
.y45_c02162{bottom:235.468845px;}
.y44_c02162{bottom:240.688917px;}
.y43_c02162{bottom:245.818998px;}
.y42_c02162{bottom:251.039070px;}
.y41_c02162{bottom:256.169151px;}
.y40_c02162{bottom:261.389223px;}
.y3f_c02162{bottom:266.519304px;}
.y3e_c02162{bottom:271.739376px;}
.y3d_c02162{bottom:276.869457px;}
.y3c_c02162{bottom:282.089529px;}
.y3b_c02162{bottom:287.219610px;}
.y3a_c02162{bottom:292.439682px;}
.y39_c02162{bottom:297.569763px;}
.y38_c02162{bottom:302.789835px;}
.y37_c02162{bottom:307.919916px;}
.y36_c02162{bottom:313.139988px;}
.y35_c02162{bottom:318.270069px;}
.y34_c02162{bottom:323.490141px;}
.y33_c02162{bottom:328.620222px;}
.y32_c02162{bottom:333.840294px;}
.y31_c02162{bottom:338.970375px;}
.y30_c02162{bottom:344.190447px;}
.y2f_c02162{bottom:349.320528px;}
.y2e_c02162{bottom:354.540600px;}
.y2d_c02162{bottom:361.290600px;}
.y2c_c02162{bottom:380.280450px;}
.y2b_c02162{bottom:399.180600px;}
.y2a_c02162{bottom:418.170450px;}
.y29_c02162{bottom:437.160600px;}
.y28_c02162{bottom:456.150450px;}
.y27_c02162{bottom:475.140450px;}
.y26_c02162{bottom:494.040600px;}
.y25_c02162{bottom:513.030600px;}
.y24_c02162{bottom:532.020450px;}
.y23_c02162{bottom:551.010450px;}
.y22_c02162{bottom:570.000450px;}
.y21_c02162{bottom:588.990450px;}
.y20_c02162{bottom:607.890450px;}
.y1f_c02162{bottom:626.880450px;}
.y1e_c02162{bottom:645.870450px;}
.y1d_c02162{bottom:664.860450px;}
.y1c_c02162{bottom:683.850450px;}
.y1b_c02162{bottom:702.750450px;}
.y1a_c02162{bottom:721.740450px;}
.y19_c02162{bottom:740.730450px;}
.y18_c02162{bottom:759.720450px;}
.y17_c02162{bottom:778.710450px;}
.y16_c02162{bottom:797.610600px;}
.y15_c02162{bottom:816.600450px;}
.y14_c02162{bottom:835.590450px;}
.y13_c02162{bottom:854.580450px;}
.y12_c02162{bottom:873.570450px;}
.y11_c02162{bottom:892.560450px;}
.y10_c02162{bottom:911.460450px;}
.yf_c02162{bottom:930.450450px;}
.ye_c02162{bottom:949.440450px;}
.yd_c02162{bottom:968.430450px;}
.yc_c02162{bottom:987.420450px;}
.yb_c02162{bottom:1006.320450px;}
.ya_c02162{bottom:1025.310450px;}
.y9_c02162{bottom:1044.300450px;}
.y8_c02162{bottom:1063.290450px;}
.y7_c02162{bottom:1082.280450px;}
.y6_c02162{bottom:1101.270450px;}
.y5_c02162{bottom:1119.810450px;}
.y4_c02162{bottom:1137.720450px;}
.y1_c02162{bottom:1193.160450px;}
.h5_c02162{height:10.424004px;}
.h3_c02162{height:53.397598px;}
.h4_c02162{height:58.513535px;}
.h2_c02162{height:63.175781px;}
.h1_c02162{height:63.949219px;}
.h0_c02162{height:1263.000000px;}
.w1_c02162{width:892.500000px;}
.w0_c02162{width:892.830000px;}
.x0_c02162{left:0.000000px;}
.x1_c02162{left:127.620000px;}
.x3_c02162{left:135.630000px;}
.x2_c02162{left:433.080000px;}
@media print{
.v0_c02162{vertical-align:0.000000pt;}
.ls26_c02162{letter-spacing:-0.012800pt;}
.ls28_c02162{letter-spacing:-0.010688pt;}
.ls27_c02162{letter-spacing:0.000000pt;}
.ls1_c02162{letter-spacing:0.016032pt;}
.ls1a_c02162{letter-spacing:0.023424pt;}
.ls1d_c02162{letter-spacing:0.035136pt;}
.lsc_c02162{letter-spacing:0.040992pt;}
.ls0_c02162{letter-spacing:0.042752pt;}
.ls10_c02162{letter-spacing:0.046848pt;}
.ls12_c02162{letter-spacing:0.052704pt;}
.ls14_c02162{letter-spacing:0.058560pt;}
.ls17_c02162{letter-spacing:0.064416pt;}
.lse_c02162{letter-spacing:0.070272pt;}
.ls7_c02162{letter-spacing:0.076128pt;}
.ls5_c02162{letter-spacing:0.081984pt;}
.ls2_c02162{letter-spacing:0.087840pt;}
.lsb_c02162{letter-spacing:0.093696pt;}
.ls9_c02162{letter-spacing:0.117120pt;}
.ls4_c02162{letter-spacing:0.140544pt;}
.ls29_c02162{letter-spacing:0.158112pt;}
.ls22_c02162{letter-spacing:406.080000pt;}
.ls18_c02162{letter-spacing:428.800000pt;}
.ls1b_c02162{letter-spacing:430.720000pt;}
.lsf_c02162{letter-spacing:432.000000pt;}
.ls1c_c02162{letter-spacing:467.840000pt;}
.ls15_c02162{letter-spacing:471.360000pt;}
.ls24_c02162{letter-spacing:485.760000pt;}
.ls19_c02162{letter-spacing:494.080000pt;}
.lsd_c02162{letter-spacing:496.960000pt;}
.ls21_c02162{letter-spacing:506.880000pt;}
.ls25_c02162{letter-spacing:526.400000pt;}
.ls6_c02162{letter-spacing:533.120000pt;}
.ls13_c02162{letter-spacing:537.920000pt;}
.ls11_c02162{letter-spacing:543.040000pt;}
.ls1e_c02162{letter-spacing:544.320000pt;}
.ls3_c02162{letter-spacing:546.240000pt;}
.ls20_c02162{letter-spacing:551.360000pt;}
.ls1f_c02162{letter-spacing:575.360000pt;}
.ls23_c02162{letter-spacing:611.520000pt;}
.ls16_c02162{letter-spacing:658.240000pt;}
.ls8_c02162{letter-spacing:707.200000pt;}
.lsa_c02162{letter-spacing:821.440000pt;}
.ws4_c02162{word-spacing:-0.064000pt;}
.ws7_c02162{word-spacing:-0.035136pt;}
.ws8_c02162{word-spacing:-0.011712pt;}
.ws5_c02162{word-spacing:-0.005856pt;}
.ws3_c02162{word-spacing:0.000000pt;}
.ws6_c02162{word-spacing:0.005856pt;}
.wsa_c02162{word-spacing:0.011712pt;}
.ws2_c02162{word-spacing:0.012800pt;}
.wse_c02162{word-spacing:0.017568pt;}
.wsd_c02162{word-spacing:0.023424pt;}
.wsc_c02162{word-spacing:0.029280pt;}
.wsb_c02162{word-spacing:0.035136pt;}
.ws9_c02162{word-spacing:0.040992pt;}
.ws10_c02162{word-spacing:0.046848pt;}
.wsf_c02162{word-spacing:0.058560pt;}
.ws1_c02162{word-spacing:95.937280pt;}
.ws0_c02162{word-spacing:125.377280pt;}
._3_c02162{margin-left:-1.355776pt;}
._2_c02162{width:43.898880pt;}
._0_c02162{width:172.800000pt;}
._e_c02162{width:228.152160pt;}
._13_c02162{width:287.514432pt;}
._5_c02162{width:294.834432pt;}
._10_c02162{width:304.660800pt;}
._12_c02162{width:338.332800pt;}
._b_c02162{width:346.179840pt;}
._f_c02162{width:348.270432pt;}
._c_c02162{width:351.321408pt;}
._9_c02162{width:359.063040pt;}
._d_c02162{width:361.871104pt;}
._6_c02162{width:369.504288pt;}
._a_c02162{width:381.058176pt;}
._11_c02162{width:389.408832pt;}
._4_c02162{width:392.579968pt;}
._8_c02162{width:403.387104pt;}
._7_c02162{width:404.690176pt;}
._1_c02162{width:1002.961472pt;}
.fs3_c02162{font-size:10.560000pt;}
.fs1_c02162{font-size:53.440000pt;}
.fs2_c02162{font-size:58.560000pt;}
.fs0_c02162{font-size:64.000000pt;}
.y0_c02162{bottom:0.000000pt;}
.y3_c02162{bottom:50.987067pt;}
.y2_c02162{bottom:69.387067pt;}
.y5a_c02162{bottom:112.744208pt;}
.y59_c02162{bottom:117.304280pt;}
.y58_c02162{bottom:121.944344pt;}
.y57_c02162{bottom:126.504416pt;}
.y56_c02162{bottom:131.144480pt;}
.y55_c02162{bottom:135.704552pt;}
.y54_c02162{bottom:140.344616pt;}
.y53_c02162{bottom:144.904688pt;}
.y52_c02162{bottom:149.544752pt;}
.y51_c02162{bottom:154.104824pt;}
.y50_c02162{bottom:158.744888pt;}
.y4f_c02162{bottom:163.304960pt;}
.y4e_c02162{bottom:167.945024pt;}
.y4d_c02162{bottom:172.505096pt;}
.y4c_c02162{bottom:177.145160pt;}
.y4b_c02162{bottom:181.705232pt;}
.y4a_c02162{bottom:186.345296pt;}
.y49_c02162{bottom:190.905368pt;}
.y48_c02162{bottom:195.545432pt;}
.y47_c02162{bottom:200.105504pt;}
.y46_c02162{bottom:204.745568pt;}
.y45_c02162{bottom:209.305640pt;}
.y44_c02162{bottom:213.945704pt;}
.y43_c02162{bottom:218.505776pt;}
.y42_c02162{bottom:223.145840pt;}
.y41_c02162{bottom:227.705912pt;}
.y40_c02162{bottom:232.345976pt;}
.y3f_c02162{bottom:236.906048pt;}
.y3e_c02162{bottom:241.546112pt;}
.y3d_c02162{bottom:246.106184pt;}
.y3c_c02162{bottom:250.746248pt;}
.y3b_c02162{bottom:255.306320pt;}
.y3a_c02162{bottom:259.946384pt;}
.y39_c02162{bottom:264.506456pt;}
.y38_c02162{bottom:269.146520pt;}
.y37_c02162{bottom:273.706592pt;}
.y36_c02162{bottom:278.346656pt;}
.y35_c02162{bottom:282.906728pt;}
.y34_c02162{bottom:287.546792pt;}
.y33_c02162{bottom:292.106864pt;}
.y32_c02162{bottom:296.746928pt;}
.y31_c02162{bottom:301.307000pt;}
.y30_c02162{bottom:305.947064pt;}
.y2f_c02162{bottom:310.507136pt;}
.y2e_c02162{bottom:315.147200pt;}
.y2d_c02162{bottom:321.147200pt;}
.y2c_c02162{bottom:338.027067pt;}
.y2b_c02162{bottom:354.827200pt;}
.y2a_c02162{bottom:371.707067pt;}
.y29_c02162{bottom:388.587200pt;}
.y28_c02162{bottom:405.467067pt;}
.y27_c02162{bottom:422.347067pt;}
.y26_c02162{bottom:439.147200pt;}
.y25_c02162{bottom:456.027200pt;}
.y24_c02162{bottom:472.907067pt;}
.y23_c02162{bottom:489.787067pt;}
.y22_c02162{bottom:506.667067pt;}
.y21_c02162{bottom:523.547067pt;}
.y20_c02162{bottom:540.347067pt;}
.y1f_c02162{bottom:557.227067pt;}
.y1e_c02162{bottom:574.107067pt;}
.y1d_c02162{bottom:590.987067pt;}
.y1c_c02162{bottom:607.867067pt;}
.y1b_c02162{bottom:624.667067pt;}
.y1a_c02162{bottom:641.547067pt;}
.y19_c02162{bottom:658.427067pt;}
.y18_c02162{bottom:675.307067pt;}
.y17_c02162{bottom:692.187067pt;}
.y16_c02162{bottom:708.987200pt;}
.y15_c02162{bottom:725.867067pt;}
.y14_c02162{bottom:742.747067pt;}
.y13_c02162{bottom:759.627067pt;}
.y12_c02162{bottom:776.507067pt;}
.y11_c02162{bottom:793.387067pt;}
.y10_c02162{bottom:810.187067pt;}
.yf_c02162{bottom:827.067067pt;}
.ye_c02162{bottom:843.947067pt;}
.yd_c02162{bottom:860.827067pt;}
.yc_c02162{bottom:877.707067pt;}
.yb_c02162{bottom:894.507067pt;}
.ya_c02162{bottom:911.387067pt;}
.y9_c02162{bottom:928.267067pt;}
.y8_c02162{bottom:945.147067pt;}
.y7_c02162{bottom:962.027067pt;}
.y6_c02162{bottom:978.907067pt;}
.y5_c02162{bottom:995.387067pt;}
.y4_c02162{bottom:1011.307067pt;}
.y1_c02162{bottom:1060.587067pt;}
.h5_c02162{height:9.265781pt;}
.h3_c02162{height:47.464531pt;}
.h4_c02162{height:52.012031pt;}
.h2_c02162{height:56.156250pt;}
.h1_c02162{height:56.843750pt;}
.h0_c02162{height:1122.666667pt;}
.w1_c02162{width:793.333333pt;}
.w0_c02162{width:793.626667pt;}
.x0_c02162{left:0.000000pt;}
.x1_c02162{left:113.440000pt;}
.x3_c02162{left:120.560000pt;}
.x2_c02162{left:384.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_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_d0f8556d262868f1290d1f14.woff2')format("woff");}.ff1_c02163{font-family:ff1_c02163;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02163;src:url('chunks/assets/font_887aa91aed709f1aebb84300.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;}
.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;}
.ls28_c02163{letter-spacing:-0.014400px;}
.ls2a_c02163{letter-spacing:-0.012024px;}
.ls29_c02163{letter-spacing:0.000000px;}
.ls1_c02163{letter-spacing:0.014400px;}
.ls3_c02163{letter-spacing:0.018036px;}
.ls0_c02163{letter-spacing:0.019764px;}
.ls1c_c02163{letter-spacing:0.026352px;}
.ls22_c02163{letter-spacing:0.039528px;}
.ls8_c02163{letter-spacing:0.046116px;}
.ls2_c02163{letter-spacing:0.048096px;}
.ls7_c02163{letter-spacing:0.052704px;}
.ls11_c02163{letter-spacing:0.059292px;}
.ls9_c02163{letter-spacing:0.065880px;}
.ls1d_c02163{letter-spacing:0.072468px;}
.ls4_c02163{letter-spacing:0.079056px;}
.ls17_c02163{letter-spacing:0.085644px;}
.lsd_c02163{letter-spacing:0.092232px;}
.lsb_c02163{letter-spacing:0.098820px;}
.ls16_c02163{letter-spacing:0.105408px;}
.ls14_c02163{letter-spacing:0.131760px;}
.ls6_c02163{letter-spacing:0.158112px;}
.ls2b_c02163{letter-spacing:0.177876px;}
.ls26_c02163{letter-spacing:456.840000px;}
.lsa_c02163{letter-spacing:482.400000px;}
.ls25_c02163{letter-spacing:484.560000px;}
.ls5_c02163{letter-spacing:486.000000px;}
.ls1e_c02163{letter-spacing:526.320000px;}
.ls10_c02163{letter-spacing:530.280000px;}
.ls20_c02163{letter-spacing:546.480000px;}
.lsf_c02163{letter-spacing:555.840000px;}
.ls12_c02163{letter-spacing:559.080000px;}
.ls19_c02163{letter-spacing:570.240000px;}
.ls1a_c02163{letter-spacing:592.200000px;}
.lse_c02163{letter-spacing:599.760000px;}
.ls13_c02163{letter-spacing:605.160000px;}
.ls1b_c02163{letter-spacing:610.920000px;}
.ls23_c02163{letter-spacing:612.360000px;}
.lsc_c02163{letter-spacing:614.520000px;}
.ls24_c02163{letter-spacing:620.280000px;}
.ls1f_c02163{letter-spacing:647.280000px;}
.ls27_c02163{letter-spacing:687.960000px;}
.ls21_c02163{letter-spacing:740.520000px;}
.ls18_c02163{letter-spacing:795.600000px;}
.ls15_c02163{letter-spacing:924.120000px;}
.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;}
}
.ws7_c02163{word-spacing:-0.057600px;}
.wsd_c02163{word-spacing:-0.039528px;}
.wse_c02163{word-spacing:-0.013176px;}
.wsb_c02163{word-spacing:-0.006588px;}
.ws4_c02163{word-spacing:0.000000px;}
.wsf_c02163{word-spacing:0.006588px;}
.ws8_c02163{word-spacing:0.013176px;}
.ws3_c02163{word-spacing:0.014400px;}
.ws11_c02163{word-spacing:0.019764px;}
.wsa_c02163{word-spacing:0.026352px;}
.wsc_c02163{word-spacing:0.032940px;}
.ws9_c02163{word-spacing:0.039528px;}
.ws6_c02163{word-spacing:0.046116px;}
.ws12_c02163{word-spacing:0.052704px;}
.ws10_c02163{word-spacing:0.065880px;}
.ws5_c02163{word-spacing:0.072468px;}
.ws1_c02163{word-spacing:107.929440px;}
.ws2_c02163{word-spacing:129.889440px;}
.ws0_c02163{word-spacing:141.049440px;}
._3_c02163{margin-left:-1.014552px;}
._2_c02163{width:49.386240px;}
._0_c02163{width:194.400000px;}
._5_c02163{width:256.671180px;}
._b_c02163{width:323.453736px;}
._4_c02163{width:331.688736px;}
._12_c02163{width:342.743400px;}
._e_c02163{width:380.624400px;}
._11_c02163{width:389.452320px;}
._6_c02163{width:391.804236px;}
._a_c02163{width:395.236584px;}
._13_c02163{width:403.945920px;}
._8_c02163{width:406.594296px;}
._f_c02163{width:407.852604px;}
._7_c02163{width:415.692324px;}
._10_c02163{width:428.690448px;}
._d_c02163{width:438.084936px;}
._9_c02163{width:441.141768px;}
._c_c02163{width:453.810492px;}
._1_c02163{width:1128.331656px;}
.fc0_c02163{color:rgb(0,0,0);}
.fs3_c02163{font-size:54.000000px;}
.fs2_c02163{font-size:60.120000px;}
.fs1_c02163{font-size:65.880000px;}
.fs0_c02163{font-size:72.000000px;}
.y0_c02163{bottom:0.000000px;}
.y3_c02163{bottom:57.360450px;}
.y2_c02163{bottom:78.060450px;}
.y3b_c02163{bottom:119.820000px;}
.y3a_c02163{bottom:135.300450px;}
.y39_c02163{bottom:150.870000px;}
.y38_c02163{bottom:166.350450px;}
.y37_c02163{bottom:181.920000px;}
.y36_c02163{bottom:197.400450px;}
.y35_c02163{bottom:212.970000px;}
.y34_c02163{bottom:228.450450px;}
.y33_c02163{bottom:244.020000px;}
.y32_c02163{bottom:259.500450px;}
.y31_c02163{bottom:275.070000px;}
.y30_c02163{bottom:290.550450px;}
.y2f_c02163{bottom:317.550450px;}
.y2e_c02163{bottom:339.330450px;}
.y2d_c02163{bottom:358.230450px;}
.y2c_c02163{bottom:377.220450px;}
.y2b_c02163{bottom:396.210600px;}
.y2a_c02163{bottom:415.200600px;}
.y29_c02163{bottom:434.190450px;}
.y28_c02163{bottom:453.540600px;}
.y27_c02163{bottom:472.440600px;}
.y26_c02163{bottom:491.430600px;}
.y25_c02163{bottom:510.420450px;}
.y24_c02163{bottom:529.410450px;}
.y23_c02163{bottom:548.400450px;}
.y22_c02163{bottom:567.390450px;}
.y21_c02163{bottom:586.290450px;}
.y20_c02163{bottom:605.280450px;}
.y1f_c02163{bottom:624.270450px;}
.y1e_c02163{bottom:643.260450px;}
.y1d_c02163{bottom:662.250450px;}
.y1c_c02163{bottom:681.150450px;}
.y1b_c02163{bottom:700.140450px;}
.y1a_c02163{bottom:719.130450px;}
.y19_c02163{bottom:738.120450px;}
.y18_c02163{bottom:757.110450px;}
.y17_c02163{bottom:776.100450px;}
.y16_c02163{bottom:795.360600px;}
.y15_c02163{bottom:814.350450px;}
.y14_c02163{bottom:833.340450px;}
.y13_c02163{bottom:852.330450px;}
.y12_c02163{bottom:871.320450px;}
.y11_c02163{bottom:890.310450px;}
.y10_c02163{bottom:909.210450px;}
.yf_c02163{bottom:928.200450px;}
.ye_c02163{bottom:947.190450px;}
.yd_c02163{bottom:966.180450px;}
.yc_c02163{bottom:985.170450px;}
.yb_c02163{bottom:1004.070450px;}
.ya_c02163{bottom:1023.060450px;}
.y9_c02163{bottom:1042.410450px;}
.y8_c02163{bottom:1061.400450px;}
.y7_c02163{bottom:1080.390450px;}
.y6_c02163{bottom:1099.380450px;}
.y5_c02163{bottom:1118.730450px;}
.y4_c02163{bottom:1139.160450px;}
.y1_c02163{bottom:1193.160450px;}
.h5_c02163{height:47.961914px;}
.h4_c02163{height:53.397598px;}
.h3_c02163{height:58.513535px;}
.h2_c02163{height:63.175781px;}
.h1_c02163{height:63.949219px;}
.h0_c02163{height:1263.000000px;}
.w1_c02163{width:892.500000px;}
.w0_c02163{width:892.830000px;}
.x0_c02163{left:0.000000px;}
.x1_c02163{left:127.620000px;}
.x3_c02163{left:135.630000px;}
.x2_c02163{left:433.080000px;}
@media print{
.v0_c02163{vertical-align:0.000000pt;}
.ls28_c02163{letter-spacing:-0.012800pt;}
.ls2a_c02163{letter-spacing:-0.010688pt;}
.ls29_c02163{letter-spacing:0.000000pt;}
.ls1_c02163{letter-spacing:0.012800pt;}
.ls3_c02163{letter-spacing:0.016032pt;}
.ls0_c02163{letter-spacing:0.017568pt;}
.ls1c_c02163{letter-spacing:0.023424pt;}
.ls22_c02163{letter-spacing:0.035136pt;}
.ls8_c02163{letter-spacing:0.040992pt;}
.ls2_c02163{letter-spacing:0.042752pt;}
.ls7_c02163{letter-spacing:0.046848pt;}
.ls11_c02163{letter-spacing:0.052704pt;}
.ls9_c02163{letter-spacing:0.058560pt;}
.ls1d_c02163{letter-spacing:0.064416pt;}
.ls4_c02163{letter-spacing:0.070272pt;}
.ls17_c02163{letter-spacing:0.076128pt;}
.lsd_c02163{letter-spacing:0.081984pt;}
.lsb_c02163{letter-spacing:0.087840pt;}
.ls16_c02163{letter-spacing:0.093696pt;}
.ls14_c02163{letter-spacing:0.117120pt;}
.ls6_c02163{letter-spacing:0.140544pt;}
.ls2b_c02163{letter-spacing:0.158112pt;}
.ls26_c02163{letter-spacing:406.080000pt;}
.lsa_c02163{letter-spacing:428.800000pt;}
.ls25_c02163{letter-spacing:430.720000pt;}
.ls5_c02163{letter-spacing:432.000000pt;}
.ls1e_c02163{letter-spacing:467.840000pt;}
.ls10_c02163{letter-spacing:471.360000pt;}
.ls20_c02163{letter-spacing:485.760000pt;}
.lsf_c02163{letter-spacing:494.080000pt;}
.ls12_c02163{letter-spacing:496.960000pt;}
.ls19_c02163{letter-spacing:506.880000pt;}
.ls1a_c02163{letter-spacing:526.400000pt;}
.lse_c02163{letter-spacing:533.120000pt;}
.ls13_c02163{letter-spacing:537.920000pt;}
.ls1b_c02163{letter-spacing:543.040000pt;}
.ls23_c02163{letter-spacing:544.320000pt;}
.lsc_c02163{letter-spacing:546.240000pt;}
.ls24_c02163{letter-spacing:551.360000pt;}
.ls1f_c02163{letter-spacing:575.360000pt;}
.ls27_c02163{letter-spacing:611.520000pt;}
.ls21_c02163{letter-spacing:658.240000pt;}
.ls18_c02163{letter-spacing:707.200000pt;}
.ls15_c02163{letter-spacing:821.440000pt;}
.ws7_c02163{word-spacing:-0.051200pt;}
.wsd_c02163{word-spacing:-0.035136pt;}
.wse_c02163{word-spacing:-0.011712pt;}
.wsb_c02163{word-spacing:-0.005856pt;}
.ws4_c02163{word-spacing:0.000000pt;}
.wsf_c02163{word-spacing:0.005856pt;}
.ws8_c02163{word-spacing:0.011712pt;}
.ws3_c02163{word-spacing:0.012800pt;}
.ws11_c02163{word-spacing:0.017568pt;}
.wsa_c02163{word-spacing:0.023424pt;}
.wsc_c02163{word-spacing:0.029280pt;}
.ws9_c02163{word-spacing:0.035136pt;}
.ws6_c02163{word-spacing:0.040992pt;}
.ws12_c02163{word-spacing:0.046848pt;}
.ws10_c02163{word-spacing:0.058560pt;}
.ws5_c02163{word-spacing:0.064416pt;}
.ws1_c02163{word-spacing:95.937280pt;}
.ws2_c02163{word-spacing:115.457280pt;}
.ws0_c02163{word-spacing:125.377280pt;}
._3_c02163{margin-left:-0.901824pt;}
._2_c02163{width:43.898880pt;}
._0_c02163{width:172.800000pt;}
._5_c02163{width:228.152160pt;}
._b_c02163{width:287.514432pt;}
._4_c02163{width:294.834432pt;}
._12_c02163{width:304.660800pt;}
._e_c02163{width:338.332800pt;}
._11_c02163{width:346.179840pt;}
._6_c02163{width:348.270432pt;}
._a_c02163{width:351.321408pt;}
._13_c02163{width:359.063040pt;}
._8_c02163{width:361.417152pt;}
._f_c02163{width:362.535648pt;}
._7_c02163{width:369.504288pt;}
._10_c02163{width:381.058176pt;}
._d_c02163{width:389.408832pt;}
._9_c02163{width:392.126016pt;}
._c_c02163{width:403.387104pt;}
._1_c02163{width:1002.961472pt;}
.fs3_c02163{font-size:48.000000pt;}
.fs2_c02163{font-size:53.440000pt;}
.fs1_c02163{font-size:58.560000pt;}
.fs0_c02163{font-size:64.000000pt;}
.y0_c02163{bottom:0.000000pt;}
.y3_c02163{bottom:50.987067pt;}
.y2_c02163{bottom:69.387067pt;}
.y3b_c02163{bottom:106.506667pt;}
.y3a_c02163{bottom:120.267067pt;}
.y39_c02163{bottom:134.106667pt;}
.y38_c02163{bottom:147.867067pt;}
.y37_c02163{bottom:161.706667pt;}
.y36_c02163{bottom:175.467067pt;}
.y35_c02163{bottom:189.306667pt;}
.y34_c02163{bottom:203.067067pt;}
.y33_c02163{bottom:216.906667pt;}
.y32_c02163{bottom:230.667067pt;}
.y31_c02163{bottom:244.506667pt;}
.y30_c02163{bottom:258.267067pt;}
.y2f_c02163{bottom:282.267067pt;}
.y2e_c02163{bottom:301.627067pt;}
.y2d_c02163{bottom:318.427067pt;}
.y2c_c02163{bottom:335.307067pt;}
.y2b_c02163{bottom:352.187200pt;}
.y2a_c02163{bottom:369.067200pt;}
.y29_c02163{bottom:385.947067pt;}
.y28_c02163{bottom:403.147200pt;}
.y27_c02163{bottom:419.947200pt;}
.y26_c02163{bottom:436.827200pt;}
.y25_c02163{bottom:453.707067pt;}
.y24_c02163{bottom:470.587067pt;}
.y23_c02163{bottom:487.467067pt;}
.y22_c02163{bottom:504.347067pt;}
.y21_c02163{bottom:521.147067pt;}
.y20_c02163{bottom:538.027067pt;}
.y1f_c02163{bottom:554.907067pt;}
.y1e_c02163{bottom:571.787067pt;}
.y1d_c02163{bottom:588.667067pt;}
.y1c_c02163{bottom:605.467067pt;}
.y1b_c02163{bottom:622.347067pt;}
.y1a_c02163{bottom:639.227067pt;}
.y19_c02163{bottom:656.107067pt;}
.y18_c02163{bottom:672.987067pt;}
.y17_c02163{bottom:689.867067pt;}
.y16_c02163{bottom:706.987200pt;}
.y15_c02163{bottom:723.867067pt;}
.y14_c02163{bottom:740.747067pt;}
.y13_c02163{bottom:757.627067pt;}
.y12_c02163{bottom:774.507067pt;}
.y11_c02163{bottom:791.387067pt;}
.y10_c02163{bottom:808.187067pt;}
.yf_c02163{bottom:825.067067pt;}
.ye_c02163{bottom:841.947067pt;}
.yd_c02163{bottom:858.827067pt;}
.yc_c02163{bottom:875.707067pt;}
.yb_c02163{bottom:892.507067pt;}
.ya_c02163{bottom:909.387067pt;}
.y9_c02163{bottom:926.587067pt;}
.y8_c02163{bottom:943.467067pt;}
.y7_c02163{bottom:960.347067pt;}
.y6_c02163{bottom:977.227067pt;}
.y5_c02163{bottom:994.427067pt;}
.y4_c02163{bottom:1012.587067pt;}
.y1_c02163{bottom:1060.587067pt;}
.h5_c02163{height:42.632812pt;}
.h4_c02163{height:47.464531pt;}
.h3_c02163{height:52.012031pt;}
.h2_c02163{height:56.156250pt;}
.h1_c02163{height:56.843750pt;}
.h0_c02163{height:1122.666667pt;}
.w1_c02163{width:793.333333pt;}
.w0_c02163{width:793.626667pt;}
.x0_c02163{left:0.000000pt;}
.x1_c02163{left:113.440000pt;}
.x3_c02163{left:120.560000pt;}
.x2_c02163{left:384.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_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_fc5712e4e2d90ae5cbe5b479.woff2')format("woff");}.ff1_c02164{font-family:ff1_c02164;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02164;src:url('chunks/assets/font_2881f0504699ad72d39d2d7d.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;}
.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);}
.v3_c02164{vertical-align:-12.600000px;}
.v1_c02164{vertical-align:-5.760000px;}
.v0_c02164{vertical-align:0.000000px;}
.v2_c02164{vertical-align:61.200000px;}
.ls25_c02164{letter-spacing:-0.118800px;}
.ls28_c02164{letter-spacing:-0.059400px;}
.ls2a_c02164{letter-spacing:-0.043200px;}
.ls27_c02164{letter-spacing:-0.042084px;}
.ls22_c02164{letter-spacing:-0.014400px;}
.ls26_c02164{letter-spacing:-0.012024px;}
.ls29_c02164{letter-spacing:-0.010800px;}
.ls23_c02164{letter-spacing:0.000000px;}
.ls24_c02164{letter-spacing:0.007200px;}
.ls14_c02164{letter-spacing:0.013176px;}
.ls0_c02164{letter-spacing:0.014400px;}
.ls1c_c02164{letter-spacing:0.019764px;}
.ls1a_c02164{letter-spacing:0.026352px;}
.ls20_c02164{letter-spacing:0.028800px;}
.ls9_c02164{letter-spacing:0.032940px;}
.ls21_c02164{letter-spacing:0.036000px;}
.ls13_c02164{letter-spacing:0.039528px;}
.lsf_c02164{letter-spacing:0.046116px;}
.lsd_c02164{letter-spacing:0.052704px;}
.ls7_c02164{letter-spacing:0.059292px;}
.ls17_c02164{letter-spacing:0.065880px;}
.ls1d_c02164{letter-spacing:0.072468px;}
.lse_c02164{letter-spacing:0.085644px;}
.ls2_c02164{letter-spacing:0.098820px;}
.ls1_c02164{letter-spacing:0.135000px;}
.ls19_c02164{letter-spacing:0.138348px;}
.ls3_c02164{letter-spacing:0.158112px;}
.lsb_c02164{letter-spacing:0.177876px;}
.ls4_c02164{letter-spacing:0.180000px;}
.ls2b_c02164{letter-spacing:0.180360px;}
.ls5_c02164{letter-spacing:72.000000px;}
.lsc_c02164{letter-spacing:99.720000px;}
.ls1e_c02164{letter-spacing:113.130000px;}
.ls6_c02164{letter-spacing:132.840000px;}
.ls15_c02164{letter-spacing:459.000000px;}
.ls16_c02164{letter-spacing:475.200000px;}
.ls18_c02164{letter-spacing:497.520000px;}
.lsa_c02164{letter-spacing:511.920000px;}
.ls12_c02164{letter-spacing:591.120000px;}
.ls8_c02164{letter-spacing:660.600000px;}
.ls11_c02164{letter-spacing:666.000000px;}
.ls10_c02164{letter-spacing:671.760000px;}
.ls1b_c02164{letter-spacing:680.760000px;}
.ls1f_c02164{letter-spacing:922.680000px;}
.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;}
}
.wsc_c02164{word-spacing:-16.647876px;}
.ws3_c02164{word-spacing:-16.628112px;}
.wsf_c02164{word-spacing:-16.608348px;}
.wsd_c02164{word-spacing:-16.489764px;}
.ws12_c02164{word-spacing:-0.014400px;}
.ws13_c02164{word-spacing:-0.007200px;}
.ws16_c02164{word-spacing:-0.006588px;}
.ws11_c02164{word-spacing:0.000000px;}
.ws1a_c02164{word-spacing:0.006588px;}
.ws10_c02164{word-spacing:0.014400px;}
.ws21_c02164{word-spacing:0.019764px;}
.ws1e_c02164{word-spacing:0.026352px;}
.ws17_c02164{word-spacing:0.032940px;}
.ws19_c02164{word-spacing:0.039528px;}
.ws1b_c02164{word-spacing:0.046116px;}
.ws1c_c02164{word-spacing:0.052704px;}
.ws18_c02164{word-spacing:0.059292px;}
.ws1f_c02164{word-spacing:0.065880px;}
.ws20_c02164{word-spacing:0.072468px;}
.ws1d_c02164{word-spacing:0.079056px;}
.ws14_c02164{word-spacing:0.102204px;}
.ws15_c02164{word-spacing:0.132264px;}
.ws26_c02164{word-spacing:1.411200px;}
.ws27_c02164{word-spacing:1.461600px;}
.ws24_c02164{word-spacing:1.764000px;}
.ws25_c02164{word-spacing:1.821600px;}
.ws22_c02164{word-spacing:2.073600px;}
.ws23_c02164{word-spacing:2.160000px;}
.ws1_c02164{word-spacing:73.035972px;}
.ws5_c02164{word-spacing:73.038096px;}
.ws4_c02164{word-spacing:100.729440px;}
.wse_c02164{word-spacing:105.769440px;}
.ws6_c02164{word-spacing:106.155972px;}
.wsa_c02164{word-spacing:106.158096px;}
.wsb_c02164{word-spacing:122.329440px;}
.ws0_c02164{word-spacing:133.849440px;}
.ws2_c02164{word-spacing:155.089440px;}
.ws7_c02164{word-spacing:155.146608px;}
.ws8_c02164{word-spacing:155.478096px;}
.ws9_c02164{word-spacing:155.790000px;}
._2_c02164{margin-left:-1.292580px;}
._1c_c02164{width:1.502064px;}
._4_c02164{width:52.468920px;}
._9_c02164{width:91.530504px;}
._e_c02164{width:105.332364px;}
._1e_c02164{width:107.157240px;}
._f_c02164{width:114.489684px;}
._17_c02164{width:130.663224px;}
._13_c02164{width:133.535592px;}
._18_c02164{width:134.589672px;}
._20_c02164{width:138.002256px;}
._15_c02164{width:141.638832px;}
._7_c02164{width:146.963268px;}
._14_c02164{width:152.693496px;}
._12_c02164{width:174.420720px;}
._0_c02164{width:194.400000px;}
._1f_c02164{width:199.349712px;}
._b_c02164{width:200.720016px;}
._6_c02164{width:203.394744px;}
._8_c02164{width:209.745576px;}
._11_c02164{width:216.860616px;}
._5_c02164{width:236.329488px;}
._1a_c02164{width:249.313104px;}
._10_c02164{width:272.674152px;}
._d_c02164{width:278.497944px;}
._1_c02164{width:290.768400px;}
._21_c02164{width:295.623360px;}
._c_c02164{width:303.235884px;}
._3_c02164{width:343.489644px;}
._1d_c02164{width:359.082360px;}
._16_c02164{width:387.338292px;}
._a_c02164{width:392.918328px;}
._1b_c02164{width:395.046252px;}
._19_c02164{width:404.394624px;}
.fc0_c02164{color:rgb(0,0,0);}
.fs1_c02164{font-size:54.000000px;}
.fs2_c02164{font-size:60.120000px;}
.fs3_c02164{font-size:65.880000px;}
.fs0_c02164{font-size:72.000000px;}
.y0_c02164{bottom:0.000000px;}
.y3_c02164{bottom:57.360450px;}
.y2_c02164{bottom:78.060450px;}
.y39_c02164{bottom:135.660450px;}
.y38_c02164{bottom:166.710450px;}
.y37_c02164{bottom:197.760450px;}
.y36_c02164{bottom:228.810450px;}
.y35_c02164{bottom:248.340000px;}
.y34_c02164{bottom:263.820450px;}
.y33_c02164{bottom:283.530450px;}
.y32_c02164{bottom:302.880450px;}
.y31_c02164{bottom:321.780450px;}
.y30_c02164{bottom:340.770450px;}
.y2f_c02164{bottom:359.760450px;}
.y2e_c02164{bottom:378.750600px;}
.y2d_c02164{bottom:397.740450px;}
.y2c_c02164{bottom:416.730450px;}
.y2b_c02164{bottom:435.630450px;}
.y2a_c02164{bottom:454.620600px;}
.y29_c02164{bottom:473.610600px;}
.y28_c02164{bottom:492.600450px;}
.y27_c02164{bottom:511.590600px;}
.y26_c02164{bottom:530.490450px;}
.y25_c02164{bottom:549.480450px;}
.y24_c02164{bottom:568.470450px;}
.y23_c02164{bottom:587.460450px;}
.y22_c02164{bottom:606.450450px;}
.y21_c02164{bottom:625.350450px;}
.y20_c02164{bottom:644.340450px;}
.y1f_c02164{bottom:663.330450px;}
.y1e_c02164{bottom:682.320450px;}
.y1d_c02164{bottom:701.310450px;}
.y1c_c02164{bottom:720.300450px;}
.y1b_c02164{bottom:739.200450px;}
.y1a_c02164{bottom:758.190450px;}
.y19_c02164{bottom:777.180450px;}
.y18_c02164{bottom:796.170450px;}
.y17_c02164{bottom:815.160450px;}
.y16_c02164{bottom:834.060450px;}
.y15_c02164{bottom:853.050450px;}
.y14_c02164{bottom:872.040600px;}
.y13_c02164{bottom:891.030450px;}
.y12_c02164{bottom:910.020450px;}
.y11_c02164{bottom:929.010450px;}
.y10_c02164{bottom:947.910450px;}
.yf_c02164{bottom:966.900450px;}
.ye_c02164{bottom:985.890450px;}
.yd_c02164{bottom:1004.880450px;}
.yc_c02164{bottom:1023.870450px;}
.yb_c02164{bottom:1042.770450px;}
.y9_c02164{bottom:1060.140450px;}
.y8_c02164{bottom:1060.410450px;}
.ya_c02164{bottom:1075.710450px;}
.y7_c02164{bottom:1079.130450px;}
.y6_c02164{bottom:1095.960450px;}
.y5_c02164{bottom:1116.660450px;}
.y4_c02164{bottom:1137.720450px;}
.y1_c02164{bottom:1193.160450px;}
.h3_c02164{height:47.961914px;}
.h7_c02164{height:58.548619px;}
.h5_c02164{height:58.549219px;}
.h6_c02164{height:58.549819px;}
.h2_c02164{height:63.175781px;}
.h1_c02164{height:63.949219px;}
.h4_c02164{height:109.161914px;}
.h0_c02164{height:1263.000000px;}
.w1_c02164{width:892.500000px;}
.w0_c02164{width:892.830000px;}
.x0_c02164{left:0.000000px;}
.x1_c02164{left:127.620000px;}
.x3_c02164{left:135.630000px;}
.xf_c02164{left:148.950000px;}
.x4_c02164{left:231.930000px;}
.x2_c02164{left:433.080000px;}
.x5_c02164{left:472.950000px;}
.x7_c02164{left:520.560000px;}
.x6_c02164{left:526.050000px;}
.x8_c02164{left:575.010000px;}
.xa_c02164{left:623.250000px;}
.x9_c02164{left:626.310000px;}
.xc_c02164{left:678.420000px;}
.xb_c02164{left:680.130000px;}
.xe_c02164{left:726.030000px;}
.xd_c02164{left:731.520000px;}
@media print{
.v3_c02164{vertical-align:-11.200000pt;}
.v1_c02164{vertical-align:-5.120000pt;}
.v0_c02164{vertical-align:0.000000pt;}
.v2_c02164{vertical-align:54.400000pt;}
.ls25_c02164{letter-spacing:-0.105600pt;}
.ls28_c02164{letter-spacing:-0.052800pt;}
.ls2a_c02164{letter-spacing:-0.038400pt;}
.ls27_c02164{letter-spacing:-0.037408pt;}
.ls22_c02164{letter-spacing:-0.012800pt;}
.ls26_c02164{letter-spacing:-0.010688pt;}
.ls29_c02164{letter-spacing:-0.009600pt;}
.ls23_c02164{letter-spacing:0.000000pt;}
.ls24_c02164{letter-spacing:0.006400pt;}
.ls14_c02164{letter-spacing:0.011712pt;}
.ls0_c02164{letter-spacing:0.012800pt;}
.ls1c_c02164{letter-spacing:0.017568pt;}
.ls1a_c02164{letter-spacing:0.023424pt;}
.ls20_c02164{letter-spacing:0.025600pt;}
.ls9_c02164{letter-spacing:0.029280pt;}
.ls21_c02164{letter-spacing:0.032000pt;}
.ls13_c02164{letter-spacing:0.035136pt;}
.lsf_c02164{letter-spacing:0.040992pt;}
.lsd_c02164{letter-spacing:0.046848pt;}
.ls7_c02164{letter-spacing:0.052704pt;}
.ls17_c02164{letter-spacing:0.058560pt;}
.ls1d_c02164{letter-spacing:0.064416pt;}
.lse_c02164{letter-spacing:0.076128pt;}
.ls2_c02164{letter-spacing:0.087840pt;}
.ls1_c02164{letter-spacing:0.120000pt;}
.ls19_c02164{letter-spacing:0.122976pt;}
.ls3_c02164{letter-spacing:0.140544pt;}
.lsb_c02164{letter-spacing:0.158112pt;}
.ls4_c02164{letter-spacing:0.160000pt;}
.ls2b_c02164{letter-spacing:0.160320pt;}
.ls5_c02164{letter-spacing:64.000000pt;}
.lsc_c02164{letter-spacing:88.640000pt;}
.ls1e_c02164{letter-spacing:100.560000pt;}
.ls6_c02164{letter-spacing:118.080000pt;}
.ls15_c02164{letter-spacing:408.000000pt;}
.ls16_c02164{letter-spacing:422.400000pt;}
.ls18_c02164{letter-spacing:442.240000pt;}
.lsa_c02164{letter-spacing:455.040000pt;}
.ls12_c02164{letter-spacing:525.440000pt;}
.ls8_c02164{letter-spacing:587.200000pt;}
.ls11_c02164{letter-spacing:592.000000pt;}
.ls10_c02164{letter-spacing:597.120000pt;}
.ls1b_c02164{letter-spacing:605.120000pt;}
.ls1f_c02164{letter-spacing:820.160000pt;}
.wsc_c02164{word-spacing:-14.798112pt;}
.ws3_c02164{word-spacing:-14.780544pt;}
.wsf_c02164{word-spacing:-14.762976pt;}
.wsd_c02164{word-spacing:-14.657568pt;}
.ws12_c02164{word-spacing:-0.012800pt;}
.ws13_c02164{word-spacing:-0.006400pt;}
.ws16_c02164{word-spacing:-0.005856pt;}
.ws11_c02164{word-spacing:0.000000pt;}
.ws1a_c02164{word-spacing:0.005856pt;}
.ws10_c02164{word-spacing:0.012800pt;}
.ws21_c02164{word-spacing:0.017568pt;}
.ws1e_c02164{word-spacing:0.023424pt;}
.ws17_c02164{word-spacing:0.029280pt;}
.ws19_c02164{word-spacing:0.035136pt;}
.ws1b_c02164{word-spacing:0.040992pt;}
.ws1c_c02164{word-spacing:0.046848pt;}
.ws18_c02164{word-spacing:0.052704pt;}
.ws1f_c02164{word-spacing:0.058560pt;}
.ws20_c02164{word-spacing:0.064416pt;}
.ws1d_c02164{word-spacing:0.070272pt;}
.ws14_c02164{word-spacing:0.090848pt;}
.ws15_c02164{word-spacing:0.117568pt;}
.ws26_c02164{word-spacing:1.254400pt;}
.ws27_c02164{word-spacing:1.299200pt;}
.ws24_c02164{word-spacing:1.568000pt;}
.ws25_c02164{word-spacing:1.619200pt;}
.ws22_c02164{word-spacing:1.843200pt;}
.ws23_c02164{word-spacing:1.920000pt;}
.ws1_c02164{word-spacing:64.920864pt;}
.ws5_c02164{word-spacing:64.922752pt;}
.ws4_c02164{word-spacing:89.537280pt;}
.wse_c02164{word-spacing:94.017280pt;}
.ws6_c02164{word-spacing:94.360864pt;}
.wsa_c02164{word-spacing:94.362752pt;}
.wsb_c02164{word-spacing:108.737280pt;}
.ws0_c02164{word-spacing:118.977280pt;}
.ws2_c02164{word-spacing:137.857280pt;}
.ws7_c02164{word-spacing:137.908096pt;}
.ws8_c02164{word-spacing:138.202752pt;}
.ws9_c02164{word-spacing:138.480000pt;}
._2_c02164{margin-left:-1.148960pt;}
._1c_c02164{width:1.335168pt;}
._4_c02164{width:46.639040pt;}
._9_c02164{width:81.360448pt;}
._e_c02164{width:93.628768pt;}
._1e_c02164{width:95.250880pt;}
._f_c02164{width:101.768608pt;}
._17_c02164{width:116.145088pt;}
._13_c02164{width:118.698304pt;}
._18_c02164{width:119.635264pt;}
._20_c02164{width:122.668672pt;}
._15_c02164{width:125.901184pt;}
._7_c02164{width:130.634016pt;}
._14_c02164{width:135.727552pt;}
._12_c02164{width:155.040640pt;}
._0_c02164{width:172.800000pt;}
._1f_c02164{width:177.199744pt;}
._b_c02164{width:178.417792pt;}
._6_c02164{width:180.795328pt;}
._8_c02164{width:186.440512pt;}
._11_c02164{width:192.764992pt;}
._5_c02164{width:210.070656pt;}
._1a_c02164{width:221.611648pt;}
._10_c02164{width:242.377024pt;}
._d_c02164{width:247.553728pt;}
._1_c02164{width:258.460800pt;}
._21_c02164{width:262.776320pt;}
._c_c02164{width:269.543008pt;}
._3_c02164{width:305.324128pt;}
._1d_c02164{width:319.184320pt;}
._16_c02164{width:344.300704pt;}
._a_c02164{width:349.260736pt;}
._1b_c02164{width:351.152224pt;}
._19_c02164{width:359.461888pt;}
.fs1_c02164{font-size:48.000000pt;}
.fs2_c02164{font-size:53.440000pt;}
.fs3_c02164{font-size:58.560000pt;}
.fs0_c02164{font-size:64.000000pt;}
.y0_c02164{bottom:0.000000pt;}
.y3_c02164{bottom:50.987067pt;}
.y2_c02164{bottom:69.387067pt;}
.y39_c02164{bottom:120.587067pt;}
.y38_c02164{bottom:148.187067pt;}
.y37_c02164{bottom:175.787067pt;}
.y36_c02164{bottom:203.387067pt;}
.y35_c02164{bottom:220.746667pt;}
.y34_c02164{bottom:234.507067pt;}
.y33_c02164{bottom:252.027067pt;}
.y32_c02164{bottom:269.227067pt;}
.y31_c02164{bottom:286.027067pt;}
.y30_c02164{bottom:302.907067pt;}
.y2f_c02164{bottom:319.787067pt;}
.y2e_c02164{bottom:336.667200pt;}
.y2d_c02164{bottom:353.547067pt;}
.y2c_c02164{bottom:370.427067pt;}
.y2b_c02164{bottom:387.227067pt;}
.y2a_c02164{bottom:404.107200pt;}
.y29_c02164{bottom:420.987200pt;}
.y28_c02164{bottom:437.867067pt;}
.y27_c02164{bottom:454.747200pt;}
.y26_c02164{bottom:471.547067pt;}
.y25_c02164{bottom:488.427067pt;}
.y24_c02164{bottom:505.307067pt;}
.y23_c02164{bottom:522.187067pt;}
.y22_c02164{bottom:539.067067pt;}
.y21_c02164{bottom:555.867067pt;}
.y20_c02164{bottom:572.747067pt;}
.y1f_c02164{bottom:589.627067pt;}
.y1e_c02164{bottom:606.507067pt;}
.y1d_c02164{bottom:623.387067pt;}
.y1c_c02164{bottom:640.267067pt;}
.y1b_c02164{bottom:657.067067pt;}
.y1a_c02164{bottom:673.947067pt;}
.y19_c02164{bottom:690.827067pt;}
.y18_c02164{bottom:707.707067pt;}
.y17_c02164{bottom:724.587067pt;}
.y16_c02164{bottom:741.387067pt;}
.y15_c02164{bottom:758.267067pt;}
.y14_c02164{bottom:775.147200pt;}
.y13_c02164{bottom:792.027067pt;}
.y12_c02164{bottom:808.907067pt;}
.y11_c02164{bottom:825.787067pt;}
.y10_c02164{bottom:842.587067pt;}
.yf_c02164{bottom:859.467067pt;}
.ye_c02164{bottom:876.347067pt;}
.yd_c02164{bottom:893.227067pt;}
.yc_c02164{bottom:910.107067pt;}
.yb_c02164{bottom:926.907067pt;}
.y9_c02164{bottom:942.347067pt;}
.y8_c02164{bottom:942.587067pt;}
.ya_c02164{bottom:956.187067pt;}
.y7_c02164{bottom:959.227067pt;}
.y6_c02164{bottom:974.187067pt;}
.y5_c02164{bottom:992.587067pt;}
.y4_c02164{bottom:1011.307067pt;}
.y1_c02164{bottom:1060.587067pt;}
.h3_c02164{height:42.632812pt;}
.h7_c02164{height:52.043217pt;}
.h5_c02164{height:52.043750pt;}
.h6_c02164{height:52.044283pt;}
.h2_c02164{height:56.156250pt;}
.h1_c02164{height:56.843750pt;}
.h4_c02164{height:97.032813pt;}
.h0_c02164{height:1122.666667pt;}
.w1_c02164{width:793.333333pt;}
.w0_c02164{width:793.626667pt;}
.x0_c02164{left:0.000000pt;}
.x1_c02164{left:113.440000pt;}
.x3_c02164{left:120.560000pt;}
.xf_c02164{left:132.400000pt;}
.x4_c02164{left:206.160000pt;}
.x2_c02164{left:384.960000pt;}
.x5_c02164{left:420.400000pt;}
.x7_c02164{left:462.720000pt;}
.x6_c02164{left:467.600000pt;}
.x8_c02164{left:511.120000pt;}
.xa_c02164{left:554.000000pt;}
.x9_c02164{left:556.720000pt;}
.xc_c02164{left:603.040000pt;}
.xb_c02164{left:604.560000pt;}
.xe_c02164{left:645.360000pt;}
.xd_c02164{left:650.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_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_5b29b177f5476019a8dcf24b.woff2')format("woff");}.ff1_c02165{font-family:ff1_c02165;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02165;src:url('chunks/assets/font_2b5833917331a960f1a90ee4.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;}
.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);}
.v4_c02165{vertical-align:-19.440000px;}
.v5_c02165{vertical-align:-18.000000px;}
.v3_c02165{vertical-align:-16.920000px;}
.v1_c02165{vertical-align:-11.160000px;}
.v0_c02165{vertical-align:0.000000px;}
.v2_c02165{vertical-align:5.400000px;}
.ls1b_c02165{letter-spacing:-0.180360px;}
.ls1c_c02165{letter-spacing:-0.120240px;}
.ls1e_c02165{letter-spacing:-0.118800px;}
.ls18_c02165{letter-spacing:-0.014400px;}
.ls1a_c02165{letter-spacing:-0.007200px;}
.ls19_c02165{letter-spacing:0.000000px;}
.ls15_c02165{letter-spacing:0.013176px;}
.ls1d_c02165{letter-spacing:0.019764px;}
.lsc_c02165{letter-spacing:0.032940px;}
.ls0_c02165{letter-spacing:0.036072px;}
.ls7_c02165{letter-spacing:0.039528px;}
.lsf_c02165{letter-spacing:0.046116px;}
.lse_c02165{letter-spacing:0.052704px;}
.lsa_c02165{letter-spacing:0.059292px;}
.ls1_c02165{letter-spacing:0.079056px;}
.ls4_c02165{letter-spacing:0.085644px;}
.ls6_c02165{letter-spacing:0.092232px;}
.ls5_c02165{letter-spacing:0.098820px;}
.ls3_c02165{letter-spacing:0.105408px;}
.ls2_c02165{letter-spacing:0.111996px;}
.ls8_c02165{letter-spacing:0.138852px;}
.ls1f_c02165{letter-spacing:0.140400px;}
.ls9_c02165{letter-spacing:0.158112px;}
.ls14_c02165{letter-spacing:0.180360px;}
.ls17_c02165{letter-spacing:1003.680000px;}
.ls16_c02165{letter-spacing:1185.120000px;}
.lsd_c02165{letter-spacing:1199.520000px;}
.ls12_c02165{letter-spacing:1278.720000px;}
.lsb_c02165{letter-spacing:1348.200000px;}
.ls11_c02165{letter-spacing:1353.600000px;}
.ls10_c02165{letter-spacing:1359.360000px;}
.ls13_c02165{letter-spacing:1895.760000px;}
.sc__c02165{text-shadow:none;}
.sc0_c02165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02165{-webkit-text-stroke:0px transparent;}
.sc0_c02165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02165{word-spacing:-16.628112px;}
.ws1_c02165{word-spacing:-16.483176px;}
.ws5_c02165{word-spacing:-0.306612px;}
.ws4_c02165{word-spacing:-0.079200px;}
.ws7_c02165{word-spacing:-0.019764px;}
.ws8_c02165{word-spacing:-0.013176px;}
.wsa_c02165{word-spacing:-0.006588px;}
.ws3_c02165{word-spacing:0.000000px;}
.ws9_c02165{word-spacing:0.006588px;}
.ws6_c02165{word-spacing:0.013176px;}
.ws2_c02165{word-spacing:0.014400px;}
.wsc_c02165{word-spacing:0.032940px;}
.wse_c02165{word-spacing:0.039528px;}
.wsf_c02165{word-spacing:0.046116px;}
.wsb_c02165{word-spacing:0.052704px;}
.wsd_c02165{word-spacing:0.059292px;}
.ws10_c02165{word-spacing:0.079056px;}
._10_c02165{margin-left:-1.027728px;}
._1_c02165{width:1.202400px;}
._16_c02165{width:51.429600px;}
._3_c02165{width:76.966704px;}
._f_c02165{width:145.260000px;}
._0_c02165{width:194.400000px;}
._e_c02165{width:242.190576px;}
._5_c02165{width:284.936292px;}
._d_c02165{width:319.568400px;}
._14_c02165{width:516.078252px;}
._17_c02165{width:529.069788px;}
._11_c02165{width:634.365792px;}
._1b_c02165{width:721.426212px;}
._1a_c02165{width:724.542336px;}
._19_c02165{width:733.712832px;}
._12_c02165{width:760.479876px;}
._15_c02165{width:779.130504px;}
._13_c02165{width:834.298416px;}
._2_c02165{width:844.739640px;}
._c_c02165{width:854.799588px;}
._a_c02165{width:926.457264px;}
._1d_c02165{width:933.069600px;}
._1c_c02165{width:966.097944px;}
._8_c02165{width:982.073160px;}
._b_c02165{width:987.198624px;}
._4_c02165{width:996.836868px;}
._7_c02165{width:1032.721704px;}
._9_c02165{width:1036.595448px;}
._6_c02165{width:1072.934856px;}
._18_c02165{width:1165.226832px;}
.fc0_c02165{color:rgb(0,0,0);}
.fs5_c02165{font-size:29.880000px;}
.fs3_c02165{font-size:47.880000px;}
.fs4_c02165{font-size:54.000000px;}
.fs1_c02165{font-size:60.120000px;}
.fs2_c02165{font-size:65.880000px;}
.fs0_c02165{font-size:72.000000px;}
.y0_c02165{bottom:0.000000px;}
.y3_c02165{bottom:57.360450px;}
.y2_c02165{bottom:78.060450px;}
.y42_c02165{bottom:109.921476px;}
.y41_c02165{bottom:118.561278px;}
.y40_c02165{bottom:127.201080px;}
.y3f_c02165{bottom:135.840882px;}
.y3e_c02165{bottom:144.480684px;}
.y3d_c02165{bottom:153.120486px;}
.y3c_c02165{bottom:161.670648px;}
.y3b_c02165{bottom:170.310450px;}
.y3a_c02165{bottom:185.610450px;}
.y39_c02165{bottom:204.960600px;}
.y38_c02165{bottom:223.950600px;}
.y37_c02165{bottom:242.940450px;}
.y36_c02165{bottom:261.930450px;}
.y35_c02165{bottom:280.920450px;}
.y34_c02165{bottom:299.820450px;}
.y33_c02165{bottom:318.810450px;}
.y32_c02165{bottom:338.160450px;}
.y31_c02165{bottom:354.360450px;}
.y30_c02165{bottom:372.630450px;}
.y2f_c02165{bottom:393.330450px;}
.y2e_c02165{bottom:415.019034px;}
.y2d_c02165{bottom:428.789322px;}
.y2c_c02165{bottom:442.559610px;}
.y2b_c02165{bottom:456.329898px;}
.y2a_c02165{bottom:470.189961px;}
.y29_c02165{bottom:483.960249px;}
.y28_c02165{bottom:497.730537px;}
.y27_c02165{bottom:511.590600px;}
.y26_c02165{bottom:531.300450px;}
.y25_c02165{bottom:550.650450px;}
.y24_c02165{bottom:569.640450px;}
.y23_c02165{bottom:588.630450px;}
.y22_c02165{bottom:607.530450px;}
.y21_c02165{bottom:626.520450px;}
.y20_c02165{bottom:645.510450px;}
.y1f_c02165{bottom:664.500450px;}
.y1e_c02165{bottom:683.490450px;}
.y1d_c02165{bottom:702.390450px;}
.y1c_c02165{bottom:721.380450px;}
.y1b_c02165{bottom:740.730450px;}
.y1a_c02165{bottom:756.930450px;}
.y19_c02165{bottom:775.200450px;}
.y18_c02165{bottom:795.900450px;}
.y17_c02165{bottom:817.499109px;}
.y16_c02165{bottom:831.359172px;}
.y15_c02165{bottom:845.129460px;}
.y14_c02165{bottom:858.899748px;}
.y13_c02165{bottom:872.759811px;}
.y12_c02165{bottom:886.530099px;}
.y11_c02165{bottom:900.300387px;}
.y10_c02165{bottom:914.160450px;}
.yf_c02165{bottom:929.370450px;}
.ye_c02165{bottom:948.360450px;}
.yd_c02165{bottom:967.260450px;}
.yc_c02165{bottom:986.250450px;}
.yb_c02165{bottom:1005.240450px;}
.ya_c02165{bottom:1024.230450px;}
.y9_c02165{bottom:1043.220450px;}
.y8_c02165{bottom:1062.120450px;}
.y7_c02165{bottom:1081.110450px;}
.y6_c02165{bottom:1098.750450px;}
.y5_c02165{bottom:1117.020450px;}
.y4_c02165{bottom:1137.720450px;}
.y1_c02165{bottom:1193.160450px;}
.h9_c02165{height:26.217949px;}
.h5_c02165{height:42.526230px;}
.h6_c02165{height:47.961914px;}
.h8_c02165{height:52.788619px;}
.h7_c02165{height:52.789219px;}
.h3_c02165{height:53.397598px;}
.h4_c02165{height:58.513535px;}
.h2_c02165{height:63.175781px;}
.h1_c02165{height:63.949219px;}
.h0_c02165{height:1263.000000px;}
.w1_c02165{width:892.500000px;}
.w0_c02165{width:892.830000px;}
.x0_c02165{left:0.000000px;}
.x1_c02165{left:127.620000px;}
.x3_c02165{left:135.630000px;}
.x4_c02165{left:323.820000px;}
.x5_c02165{left:335.340000px;}
.x2_c02165{left:433.080000px;}
@media print{
.v4_c02165{vertical-align:-17.280000pt;}
.v5_c02165{vertical-align:-16.000000pt;}
.v3_c02165{vertical-align:-15.040000pt;}
.v1_c02165{vertical-align:-9.920000pt;}
.v0_c02165{vertical-align:0.000000pt;}
.v2_c02165{vertical-align:4.800000pt;}
.ls1b_c02165{letter-spacing:-0.160320pt;}
.ls1c_c02165{letter-spacing:-0.106880pt;}
.ls1e_c02165{letter-spacing:-0.105600pt;}
.ls18_c02165{letter-spacing:-0.012800pt;}
.ls1a_c02165{letter-spacing:-0.006400pt;}
.ls19_c02165{letter-spacing:0.000000pt;}
.ls15_c02165{letter-spacing:0.011712pt;}
.ls1d_c02165{letter-spacing:0.017568pt;}
.lsc_c02165{letter-spacing:0.029280pt;}
.ls0_c02165{letter-spacing:0.032064pt;}
.ls7_c02165{letter-spacing:0.035136pt;}
.lsf_c02165{letter-spacing:0.040992pt;}
.lse_c02165{letter-spacing:0.046848pt;}
.lsa_c02165{letter-spacing:0.052704pt;}
.ls1_c02165{letter-spacing:0.070272pt;}
.ls4_c02165{letter-spacing:0.076128pt;}
.ls6_c02165{letter-spacing:0.081984pt;}
.ls5_c02165{letter-spacing:0.087840pt;}
.ls3_c02165{letter-spacing:0.093696pt;}
.ls2_c02165{letter-spacing:0.099552pt;}
.ls8_c02165{letter-spacing:0.123424pt;}
.ls1f_c02165{letter-spacing:0.124800pt;}
.ls9_c02165{letter-spacing:0.140544pt;}
.ls14_c02165{letter-spacing:0.160320pt;}
.ls17_c02165{letter-spacing:892.160000pt;}
.ls16_c02165{letter-spacing:1053.440000pt;}
.lsd_c02165{letter-spacing:1066.240000pt;}
.ls12_c02165{letter-spacing:1136.640000pt;}
.lsb_c02165{letter-spacing:1198.400000pt;}
.ls11_c02165{letter-spacing:1203.200000pt;}
.ls10_c02165{letter-spacing:1208.320000pt;}
.ls13_c02165{letter-spacing:1685.120000pt;}
.ws0_c02165{word-spacing:-14.780544pt;}
.ws1_c02165{word-spacing:-14.651712pt;}
.ws5_c02165{word-spacing:-0.272544pt;}
.ws4_c02165{word-spacing:-0.070400pt;}
.ws7_c02165{word-spacing:-0.017568pt;}
.ws8_c02165{word-spacing:-0.011712pt;}
.wsa_c02165{word-spacing:-0.005856pt;}
.ws3_c02165{word-spacing:0.000000pt;}
.ws9_c02165{word-spacing:0.005856pt;}
.ws6_c02165{word-spacing:0.011712pt;}
.ws2_c02165{word-spacing:0.012800pt;}
.wsc_c02165{word-spacing:0.029280pt;}
.wse_c02165{word-spacing:0.035136pt;}
.wsf_c02165{word-spacing:0.040992pt;}
.wsb_c02165{word-spacing:0.046848pt;}
.wsd_c02165{word-spacing:0.052704pt;}
.ws10_c02165{word-spacing:0.070272pt;}
._10_c02165{margin-left:-0.913536pt;}
._1_c02165{width:1.068800pt;}
._16_c02165{width:45.715200pt;}
._3_c02165{width:68.414848pt;}
._f_c02165{width:129.120000pt;}
._0_c02165{width:172.800000pt;}
._e_c02165{width:215.280512pt;}
._5_c02165{width:253.276704pt;}
._d_c02165{width:284.060800pt;}
._14_c02165{width:458.736224pt;}
._17_c02165{width:470.284256pt;}
._11_c02165{width:563.880704pt;}
._1b_c02165{width:641.267744pt;}
._1a_c02165{width:644.037632pt;}
._19_c02165{width:652.189184pt;}
._12_c02165{width:675.982112pt;}
._15_c02165{width:692.560448pt;}
._13_c02165{width:741.598592pt;}
._2_c02165{width:750.879680pt;}
._c_c02165{width:759.821856pt;}
._a_c02165{width:823.517568pt;}
._1d_c02165{width:829.395200pt;}
._1c_c02165{width:858.753728pt;}
._8_c02165{width:872.953920pt;}
._b_c02165{width:877.509888pt;}
._4_c02165{width:886.077216pt;}
._7_c02165{width:917.974848pt;}
._9_c02165{width:921.418176pt;}
._6_c02165{width:953.719872pt;}
._18_c02165{width:1035.757184pt;}
.fs5_c02165{font-size:26.560000pt;}
.fs3_c02165{font-size:42.560000pt;}
.fs4_c02165{font-size:48.000000pt;}
.fs1_c02165{font-size:53.440000pt;}
.fs2_c02165{font-size:58.560000pt;}
.fs0_c02165{font-size:64.000000pt;}
.y0_c02165{bottom:0.000000pt;}
.y3_c02165{bottom:50.987067pt;}
.y2_c02165{bottom:69.387067pt;}
.y42_c02165{bottom:97.707979pt;}
.y41_c02165{bottom:105.387803pt;}
.y40_c02165{bottom:113.067627pt;}
.y3f_c02165{bottom:120.747451pt;}
.y3e_c02165{bottom:128.427275pt;}
.y3d_c02165{bottom:136.107099pt;}
.y3c_c02165{bottom:143.707243pt;}
.y3b_c02165{bottom:151.387067pt;}
.y3a_c02165{bottom:164.987067pt;}
.y39_c02165{bottom:182.187200pt;}
.y38_c02165{bottom:199.067200pt;}
.y37_c02165{bottom:215.947067pt;}
.y36_c02165{bottom:232.827067pt;}
.y35_c02165{bottom:249.707067pt;}
.y34_c02165{bottom:266.507067pt;}
.y33_c02165{bottom:283.387067pt;}
.y32_c02165{bottom:300.587067pt;}
.y31_c02165{bottom:314.987067pt;}
.y30_c02165{bottom:331.227067pt;}
.y2f_c02165{bottom:349.627067pt;}
.y2e_c02165{bottom:368.905808pt;}
.y2d_c02165{bottom:381.146064pt;}
.y2c_c02165{bottom:393.386320pt;}
.y2b_c02165{bottom:405.626576pt;}
.y2a_c02165{bottom:417.946632pt;}
.y29_c02165{bottom:430.186888pt;}
.y28_c02165{bottom:442.427144pt;}
.y27_c02165{bottom:454.747200pt;}
.y26_c02165{bottom:472.267067pt;}
.y25_c02165{bottom:489.467067pt;}
.y24_c02165{bottom:506.347067pt;}
.y23_c02165{bottom:523.227067pt;}
.y22_c02165{bottom:540.027067pt;}
.y21_c02165{bottom:556.907067pt;}
.y20_c02165{bottom:573.787067pt;}
.y1f_c02165{bottom:590.667067pt;}
.y1e_c02165{bottom:607.547067pt;}
.y1d_c02165{bottom:624.347067pt;}
.y1c_c02165{bottom:641.227067pt;}
.y1b_c02165{bottom:658.427067pt;}
.y1a_c02165{bottom:672.827067pt;}
.y19_c02165{bottom:689.067067pt;}
.y18_c02165{bottom:707.467067pt;}
.y17_c02165{bottom:726.665875pt;}
.y16_c02165{bottom:738.985931pt;}
.y15_c02165{bottom:751.226187pt;}
.y14_c02165{bottom:763.466443pt;}
.y13_c02165{bottom:775.786499pt;}
.y12_c02165{bottom:788.026755pt;}
.y11_c02165{bottom:800.267011pt;}
.y10_c02165{bottom:812.587067pt;}
.yf_c02165{bottom:826.107067pt;}
.ye_c02165{bottom:842.987067pt;}
.yd_c02165{bottom:859.787067pt;}
.yc_c02165{bottom:876.667067pt;}
.yb_c02165{bottom:893.547067pt;}
.ya_c02165{bottom:910.427067pt;}
.y9_c02165{bottom:927.307067pt;}
.y8_c02165{bottom:944.107067pt;}
.y7_c02165{bottom:960.987067pt;}
.y6_c02165{bottom:976.667067pt;}
.y5_c02165{bottom:992.907067pt;}
.y4_c02165{bottom:1011.307067pt;}
.y1_c02165{bottom:1060.587067pt;}
.h9_c02165{height:23.304844pt;}
.h5_c02165{height:37.801094pt;}
.h6_c02165{height:42.632812pt;}
.h8_c02165{height:46.923217pt;}
.h7_c02165{height:46.923750pt;}
.h3_c02165{height:47.464531pt;}
.h4_c02165{height:52.012031pt;}
.h2_c02165{height:56.156250pt;}
.h1_c02165{height:56.843750pt;}
.h0_c02165{height:1122.666667pt;}
.w1_c02165{width:793.333333pt;}
.w0_c02165{width:793.626667pt;}
.x0_c02165{left:0.000000pt;}
.x1_c02165{left:113.440000pt;}
.x3_c02165{left:120.560000pt;}
.x4_c02165{left:287.840000pt;}
.x5_c02165{left:298.080000pt;}
.x2_c02165{left:384.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_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_de0678771e671dd4691b30c3.woff2')format("woff");}.ff1_c02166{font-family:ff1_c02166;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02166;src:url('chunks/assets/font_436819afc45b8ab0c3cfc383.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;}
.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);}
.v4_c02166{vertical-align:-18.000000px;}
.v3_c02166{vertical-align:-16.920000px;}
.v1_c02166{vertical-align:-11.160000px;}
.v2_c02166{vertical-align:-5.760000px;}
.v0_c02166{vertical-align:0.000000px;}
.ls15_c02166{letter-spacing:-0.180360px;}
.ls16_c02166{letter-spacing:-0.118800px;}
.ls13_c02166{letter-spacing:-0.014400px;}
.ls14_c02166{letter-spacing:0.000000px;}
.ls11_c02166{letter-spacing:0.007200px;}
.lsd_c02166{letter-spacing:0.013176px;}
.ls12_c02166{letter-spacing:0.026352px;}
.ls5_c02166{letter-spacing:0.032940px;}
.ls0_c02166{letter-spacing:0.039528px;}
.ls9_c02166{letter-spacing:0.046116px;}
.ls8_c02166{letter-spacing:0.052704px;}
.ls3_c02166{letter-spacing:0.059292px;}
.lsf_c02166{letter-spacing:0.065880px;}
.ls1_c02166{letter-spacing:0.079056px;}
.ls7_c02166{letter-spacing:0.085644px;}
.ls17_c02166{letter-spacing:0.140400px;}
.ls2_c02166{letter-spacing:0.158112px;}
.lse_c02166{letter-spacing:1185.120000px;}
.ls6_c02166{letter-spacing:1199.520000px;}
.lsc_c02166{letter-spacing:1278.720000px;}
.ls4_c02166{letter-spacing:1348.200000px;}
.lsb_c02166{letter-spacing:1353.600000px;}
.lsa_c02166{letter-spacing:1359.360000px;}
.ls10_c02166{letter-spacing:1885.320000px;}
.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;}
}
.ws1_c02166{word-spacing:-16.628112px;}
.ws2_c02166{word-spacing:-16.483176px;}
.ws0_c02166{word-spacing:-14.849640px;}
.ws5_c02166{word-spacing:-0.072000px;}
.wsf_c02166{word-spacing:-0.007200px;}
.ws4_c02166{word-spacing:0.000000px;}
.wsa_c02166{word-spacing:0.006588px;}
.ws7_c02166{word-spacing:0.013176px;}
.ws3_c02166{word-spacing:0.014400px;}
.wse_c02166{word-spacing:0.026352px;}
.ws8_c02166{word-spacing:0.032940px;}
.wsb_c02166{word-spacing:0.039528px;}
.wsc_c02166{word-spacing:0.046116px;}
.ws6_c02166{word-spacing:0.052704px;}
.ws9_c02166{word-spacing:0.059292px;}
.ws10_c02166{word-spacing:0.065880px;}
.wsd_c02166{word-spacing:0.079056px;}
._4_c02166{margin-left:-1.027728px;}
._10_c02166{width:51.429600px;}
._3_c02166{width:145.260000px;}
._0_c02166{width:194.400000px;}
._2_c02166{width:242.190576px;}
._16_c02166{width:254.725704px;}
._15_c02166{width:313.424784px;}
._19_c02166{width:314.979552px;}
._1_c02166{width:319.568400px;}
._14_c02166{width:495.793800px;}
._8_c02166{width:516.078252px;}
._a_c02166{width:529.069788px;}
._12_c02166{width:534.149136px;}
._17_c02166{width:614.983896px;}
._5_c02166{width:634.365792px;}
._e_c02166{width:721.426212px;}
._d_c02166{width:724.542336px;}
._c_c02166{width:733.712832px;}
._18_c02166{width:746.691192px;}
._6_c02166{width:760.479876px;}
._9_c02166{width:779.130504px;}
._7_c02166{width:834.298416px;}
._13_c02166{width:960.274152px;}
._f_c02166{width:966.097944px;}
._b_c02166{width:1165.226832px;}
._11_c02166{width:1910.880000px;}
.fc0_c02166{color:rgb(0,0,0);}
.fs4_c02166{font-size:11.880000px;}
.fs2_c02166{font-size:54.000000px;}
.fs1_c02166{font-size:60.120000px;}
.fs3_c02166{font-size:65.880000px;}
.fs0_c02166{font-size:72.000000px;}
.y0_c02166{bottom:0.000000px;}
.y3_c02166{bottom:57.360450px;}
.y2_c02166{bottom:78.060450px;}
.y39_c02166{bottom:126.120504px;}
.y38_c02166{bottom:129.630450px;}
.y37_c02166{bottom:140.880450px;}
.y36_c02166{bottom:160.230450px;}
.y35_c02166{bottom:179.220450px;}
.y34_c02166{bottom:198.210600px;}
.y33_c02166{bottom:217.110450px;}
.y32_c02166{bottom:236.100450px;}
.y31_c02166{bottom:252.300450px;}
.y30_c02166{bottom:270.570450px;}
.y2f_c02166{bottom:291.270450px;}
.y2e_c02166{bottom:314.400450px;}
.y2d_c02166{bottom:339.510450px;}
.y2c_c02166{bottom:358.860450px;}
.y2b_c02166{bottom:377.850450px;}
.y2a_c02166{bottom:397.200600px;}
.y29_c02166{bottom:413.400450px;}
.y28_c02166{bottom:431.670450px;}
.y27_c02166{bottom:452.370600px;}
.y26_c02166{bottom:475.500600px;}
.y25_c02166{bottom:496.200600px;}
.y24_c02166{bottom:521.310450px;}
.y23_c02166{bottom:540.660450px;}
.y22_c02166{bottom:559.650450px;}
.y21_c02166{bottom:578.640450px;}
.y20_c02166{bottom:597.630450px;}
.y1f_c02166{bottom:616.530450px;}
.y1e_c02166{bottom:632.730450px;}
.y1d_c02166{bottom:651.000450px;}
.y1c_c02166{bottom:671.700450px;}
.y1b_c02166{bottom:694.830450px;}
.y1a_c02166{bottom:715.530450px;}
.y19_c02166{bottom:740.640450px;}
.y18_c02166{bottom:759.990450px;}
.y17_c02166{bottom:778.980450px;}
.y16_c02166{bottom:797.970450px;}
.y15_c02166{bottom:816.960450px;}
.y14_c02166{bottom:835.950450px;}
.y13_c02166{bottom:854.850450px;}
.y12_c02166{bottom:873.840450px;}
.y11_c02166{bottom:892.830450px;}
.y10_c02166{bottom:911.820450px;}
.yf_c02166{bottom:930.810450px;}
.ye_c02166{bottom:949.800450px;}
.yd_c02166{bottom:968.700450px;}
.yc_c02166{bottom:987.690450px;}
.yb_c02166{bottom:1006.680450px;}
.ya_c02166{bottom:1025.670450px;}
.y9_c02166{bottom:1044.660450px;}
.y8_c02166{bottom:1063.560450px;}
.y7_c02166{bottom:1082.910450px;}
.y6_c02166{bottom:1099.110450px;}
.y5_c02166{bottom:1117.020450px;}
.y4_c02166{bottom:1137.720450px;}
.y1_c02166{bottom:1193.160450px;}
.h8_c02166{height:10.424004px;}
.h3_c02166{height:47.961914px;}
.h7_c02166{height:52.788619px;}
.h4_c02166{height:52.789219px;}
.h5_c02166{height:52.789819px;}
.h6_c02166{height:53.397598px;}
.h2_c02166{height:63.175781px;}
.h1_c02166{height:63.949219px;}
.h0_c02166{height:1263.000000px;}
.w1_c02166{width:892.500000px;}
.w0_c02166{width:892.830000px;}
.x0_c02166{left:0.000000px;}
.x1_c02166{left:127.620000px;}
.x3_c02166{left:135.630000px;}
.x5_c02166{left:322.830000px;}
.x4_c02166{left:330.840000px;}
.x2_c02166{left:433.080000px;}
@media print{
.v4_c02166{vertical-align:-16.000000pt;}
.v3_c02166{vertical-align:-15.040000pt;}
.v1_c02166{vertical-align:-9.920000pt;}
.v2_c02166{vertical-align:-5.120000pt;}
.v0_c02166{vertical-align:0.000000pt;}
.ls15_c02166{letter-spacing:-0.160320pt;}
.ls16_c02166{letter-spacing:-0.105600pt;}
.ls13_c02166{letter-spacing:-0.012800pt;}
.ls14_c02166{letter-spacing:0.000000pt;}
.ls11_c02166{letter-spacing:0.006400pt;}
.lsd_c02166{letter-spacing:0.011712pt;}
.ls12_c02166{letter-spacing:0.023424pt;}
.ls5_c02166{letter-spacing:0.029280pt;}
.ls0_c02166{letter-spacing:0.035136pt;}
.ls9_c02166{letter-spacing:0.040992pt;}
.ls8_c02166{letter-spacing:0.046848pt;}
.ls3_c02166{letter-spacing:0.052704pt;}
.lsf_c02166{letter-spacing:0.058560pt;}
.ls1_c02166{letter-spacing:0.070272pt;}
.ls7_c02166{letter-spacing:0.076128pt;}
.ls17_c02166{letter-spacing:0.124800pt;}
.ls2_c02166{letter-spacing:0.140544pt;}
.lse_c02166{letter-spacing:1053.440000pt;}
.ls6_c02166{letter-spacing:1066.240000pt;}
.lsc_c02166{letter-spacing:1136.640000pt;}
.ls4_c02166{letter-spacing:1198.400000pt;}
.lsb_c02166{letter-spacing:1203.200000pt;}
.lsa_c02166{letter-spacing:1208.320000pt;}
.ls10_c02166{letter-spacing:1675.840000pt;}
.ws1_c02166{word-spacing:-14.780544pt;}
.ws2_c02166{word-spacing:-14.651712pt;}
.ws0_c02166{word-spacing:-13.199680pt;}
.ws5_c02166{word-spacing:-0.064000pt;}
.wsf_c02166{word-spacing:-0.006400pt;}
.ws4_c02166{word-spacing:0.000000pt;}
.wsa_c02166{word-spacing:0.005856pt;}
.ws7_c02166{word-spacing:0.011712pt;}
.ws3_c02166{word-spacing:0.012800pt;}
.wse_c02166{word-spacing:0.023424pt;}
.ws8_c02166{word-spacing:0.029280pt;}
.wsb_c02166{word-spacing:0.035136pt;}
.wsc_c02166{word-spacing:0.040992pt;}
.ws6_c02166{word-spacing:0.046848pt;}
.ws9_c02166{word-spacing:0.052704pt;}
.ws10_c02166{word-spacing:0.058560pt;}
.wsd_c02166{word-spacing:0.070272pt;}
._4_c02166{margin-left:-0.913536pt;}
._10_c02166{width:45.715200pt;}
._3_c02166{width:129.120000pt;}
._0_c02166{width:172.800000pt;}
._2_c02166{width:215.280512pt;}
._16_c02166{width:226.422848pt;}
._15_c02166{width:278.599808pt;}
._19_c02166{width:279.981824pt;}
._1_c02166{width:284.060800pt;}
._14_c02166{width:440.705600pt;}
._8_c02166{width:458.736224pt;}
._a_c02166{width:470.284256pt;}
._12_c02166{width:474.799232pt;}
._17_c02166{width:546.652352pt;}
._5_c02166{width:563.880704pt;}
._e_c02166{width:641.267744pt;}
._d_c02166{width:644.037632pt;}
._c_c02166{width:652.189184pt;}
._18_c02166{width:663.725504pt;}
._6_c02166{width:675.982112pt;}
._9_c02166{width:692.560448pt;}
._7_c02166{width:741.598592pt;}
._13_c02166{width:853.577024pt;}
._f_c02166{width:858.753728pt;}
._b_c02166{width:1035.757184pt;}
._11_c02166{width:1698.560000pt;}
.fs4_c02166{font-size:10.560000pt;}
.fs2_c02166{font-size:48.000000pt;}
.fs1_c02166{font-size:53.440000pt;}
.fs3_c02166{font-size:58.560000pt;}
.fs0_c02166{font-size:64.000000pt;}
.y0_c02166{bottom:0.000000pt;}
.y3_c02166{bottom:50.987067pt;}
.y2_c02166{bottom:69.387067pt;}
.y39_c02166{bottom:112.107115pt;}
.y38_c02166{bottom:115.227067pt;}
.y37_c02166{bottom:125.227067pt;}
.y36_c02166{bottom:142.427067pt;}
.y35_c02166{bottom:159.307067pt;}
.y34_c02166{bottom:176.187200pt;}
.y33_c02166{bottom:192.987067pt;}
.y32_c02166{bottom:209.867067pt;}
.y31_c02166{bottom:224.267067pt;}
.y30_c02166{bottom:240.507067pt;}
.y2f_c02166{bottom:258.907067pt;}
.y2e_c02166{bottom:279.467067pt;}
.y2d_c02166{bottom:301.787067pt;}
.y2c_c02166{bottom:318.987067pt;}
.y2b_c02166{bottom:335.867067pt;}
.y2a_c02166{bottom:353.067200pt;}
.y29_c02166{bottom:367.467067pt;}
.y28_c02166{bottom:383.707067pt;}
.y27_c02166{bottom:402.107200pt;}
.y26_c02166{bottom:422.667200pt;}
.y25_c02166{bottom:441.067200pt;}
.y24_c02166{bottom:463.387067pt;}
.y23_c02166{bottom:480.587067pt;}
.y22_c02166{bottom:497.467067pt;}
.y21_c02166{bottom:514.347067pt;}
.y20_c02166{bottom:531.227067pt;}
.y1f_c02166{bottom:548.027067pt;}
.y1e_c02166{bottom:562.427067pt;}
.y1d_c02166{bottom:578.667067pt;}
.y1c_c02166{bottom:597.067067pt;}
.y1b_c02166{bottom:617.627067pt;}
.y1a_c02166{bottom:636.027067pt;}
.y19_c02166{bottom:658.347067pt;}
.y18_c02166{bottom:675.547067pt;}
.y17_c02166{bottom:692.427067pt;}
.y16_c02166{bottom:709.307067pt;}
.y15_c02166{bottom:726.187067pt;}
.y14_c02166{bottom:743.067067pt;}
.y13_c02166{bottom:759.867067pt;}
.y12_c02166{bottom:776.747067pt;}
.y11_c02166{bottom:793.627067pt;}
.y10_c02166{bottom:810.507067pt;}
.yf_c02166{bottom:827.387067pt;}
.ye_c02166{bottom:844.267067pt;}
.yd_c02166{bottom:861.067067pt;}
.yc_c02166{bottom:877.947067pt;}
.yb_c02166{bottom:894.827067pt;}
.ya_c02166{bottom:911.707067pt;}
.y9_c02166{bottom:928.587067pt;}
.y8_c02166{bottom:945.387067pt;}
.y7_c02166{bottom:962.587067pt;}
.y6_c02166{bottom:976.987067pt;}
.y5_c02166{bottom:992.907067pt;}
.y4_c02166{bottom:1011.307067pt;}
.y1_c02166{bottom:1060.587067pt;}
.h8_c02166{height:9.265781pt;}
.h3_c02166{height:42.632812pt;}
.h7_c02166{height:46.923217pt;}
.h4_c02166{height:46.923750pt;}
.h5_c02166{height:46.924283pt;}
.h6_c02166{height:47.464531pt;}
.h2_c02166{height:56.156250pt;}
.h1_c02166{height:56.843750pt;}
.h0_c02166{height:1122.666667pt;}
.w1_c02166{width:793.333333pt;}
.w0_c02166{width:793.626667pt;}
.x0_c02166{left:0.000000pt;}
.x1_c02166{left:113.440000pt;}
.x3_c02166{left:120.560000pt;}
.x5_c02166{left:286.960000pt;}
.x4_c02166{left:294.080000pt;}
.x2_c02166{left:384.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_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_85101527ba696fe5ce94e6fe.woff2')format("woff");}.ff1_c02167{font-family:ff1_c02167;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02167;src:url('chunks/assets/font_f83e92af6ee19e3122552c40.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;}
.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);}
.v5_c02167{vertical-align:-23.399400px;}
.v4_c02167{vertical-align:-22.320000px;}
.v3_c02167{vertical-align:-18.000000px;}
.v2_c02167{vertical-align:-16.920000px;}
.v1_c02167{vertical-align:-11.160000px;}
.v0_c02167{vertical-align:0.000000px;}
.ls14_c02167{letter-spacing:-0.180360px;}
.ls15_c02167{letter-spacing:-0.118800px;}
.ls12_c02167{letter-spacing:-0.014400px;}
.ls17_c02167{letter-spacing:-0.007200px;}
.ls13_c02167{letter-spacing:0.000000px;}
.ls18_c02167{letter-spacing:0.007200px;}
.ls3_c02167{letter-spacing:0.013176px;}
.ls1_c02167{letter-spacing:0.014400px;}
.lsd_c02167{letter-spacing:0.019764px;}
.lsf_c02167{letter-spacing:0.021600px;}
.ls9_c02167{letter-spacing:0.026352px;}
.ls0_c02167{letter-spacing:0.028800px;}
.ls5_c02167{letter-spacing:0.032940px;}
.ls2_c02167{letter-spacing:0.039528px;}
.lsb_c02167{letter-spacing:0.046116px;}
.ls8_c02167{letter-spacing:0.052704px;}
.ls7_c02167{letter-spacing:0.059292px;}
.ls6_c02167{letter-spacing:0.065880px;}
.ls10_c02167{letter-spacing:0.072468px;}
.ls11_c02167{letter-spacing:0.090972px;}
.ls16_c02167{letter-spacing:0.140400px;}
.ls4_c02167{letter-spacing:0.158112px;}
.lsa_c02167{letter-spacing:1003.680000px;}
.lsc_c02167{letter-spacing:1368.360000px;}
.lse_c02167{letter-spacing:1885.320000px;}
.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;}
}
.ws1_c02167{word-spacing:-16.628112px;}
.ws0_c02167{word-spacing:-16.483176px;}
.ws5_c02167{word-spacing:-0.100800px;}
.ws4_c02167{word-spacing:-0.028800px;}
.ws10_c02167{word-spacing:-0.021600px;}
.ws11_c02167{word-spacing:-0.007200px;}
.ws3_c02167{word-spacing:0.000000px;}
.wsc_c02167{word-spacing:0.007200px;}
.ws2_c02167{word-spacing:0.014400px;}
.ws12_c02167{word-spacing:0.019764px;}
.ws8_c02167{word-spacing:0.026352px;}
.ws9_c02167{word-spacing:0.032940px;}
.wsa_c02167{word-spacing:0.039528px;}
.wsd_c02167{word-spacing:0.046116px;}
.ws6_c02167{word-spacing:0.052704px;}
.ws7_c02167{word-spacing:0.059292px;}
.wsb_c02167{word-spacing:0.065880px;}
.wsf_c02167{word-spacing:0.072468px;}
.wse_c02167{word-spacing:0.079056px;}
._1b_c02167{width:1.469124px;}
._1e_c02167{width:51.429600px;}
._1_c02167{width:142.808400px;}
._15_c02167{width:145.260000px;}
._0_c02167{width:194.400000px;}
._c_c02167{width:197.125704px;}
._b_c02167{width:202.860000px;}
._a_c02167{width:226.304784px;}
._11_c02167{width:227.859552px;}
._9_c02167{width:232.380000px;}
._14_c02167{width:242.190576px;}
._1c_c02167{width:249.870348px;}
._8_c02167{width:317.953800px;}
._13_c02167{width:319.568400px;}
._7_c02167{width:323.100000px;}
._4_c02167{width:337.229136px;}
._3_c02167{width:342.180000px;}
._e_c02167{width:377.383896px;}
._d_c02167{width:382.860000px;}
._2_c02167{width:418.950576px;}
._10_c02167{width:443.211192px;}
._f_c02167{width:448.740000px;}
._6_c02167{width:549.874152px;}
._5_c02167{width:555.660000px;}
._16_c02167{width:599.844672px;}
._1a_c02167{width:656.237952px;}
._1f_c02167{width:665.856432px;}
._1d_c02167{width:737.836920px;}
._17_c02167{width:822.189672px;}
._22_c02167{width:825.602256px;}
._21_c02167{width:886.949712px;}
._12_c02167{width:933.069600px;}
._19_c02167{width:936.913104px;}
._23_c02167{width:951.554808px;}
._20_c02167{width:1079.740944px;}
._18_c02167{width:1091.994624px;}
.fc0_c02167{color:rgb(0,0,0);}
.fs4_c02167{font-size:47.880000px;}
.fs2_c02167{font-size:54.000000px;}
.fs1_c02167{font-size:60.120000px;}
.fs3_c02167{font-size:65.880000px;}
.fs0_c02167{font-size:72.000000px;}
.y0_c02167{bottom:0.000000px;}
.y3_c02167{bottom:57.360450px;}
.y2_c02167{bottom:78.060450px;}
.y37_c02167{bottom:128.820450px;}
.y36_c02167{bottom:149.520450px;}
.y35_c02167{bottom:170.220450px;}
.y34_c02167{bottom:190.920450px;}
.y33_c02167{bottom:217.380450px;}
.y32_c02167{bottom:235.380450px;}
.y31_c02167{bottom:254.370450px;}
.y30_c02167{bottom:273.270450px;}
.y2f_c02167{bottom:292.620450px;}
.y2e_c02167{bottom:308.820450px;}
.y2d_c02167{bottom:327.090450px;}
.y2c_c02167{bottom:347.790600px;}
.y2b_c02167{bottom:370.920600px;}
.y2a_c02167{bottom:391.620600px;}
.y29_c02167{bottom:415.020600px;}
.y28_c02167{bottom:434.370600px;}
.y27_c02167{bottom:450.570450px;}
.y26_c02167{bottom:468.840600px;}
.y25_c02167{bottom:489.540600px;}
.y24_c02167{bottom:512.670450px;}
.y23_c02167{bottom:533.370450px;}
.y22_c02167{bottom:558.480450px;}
.y21_c02167{bottom:577.830450px;}
.y20_c02167{bottom:596.820450px;}
.y1f_c02167{bottom:615.810450px;}
.y1e_c02167{bottom:634.800450px;}
.y1d_c02167{bottom:653.790450px;}
.y1c_c02167{bottom:672.690450px;}
.y1b_c02167{bottom:691.680450px;}
.y1a_c02167{bottom:710.670450px;}
.y19_c02167{bottom:729.660450px;}
.y18_c02167{bottom:749.010450px;}
.y17_c02167{bottom:765.210450px;}
.y16_c02167{bottom:783.480450px;}
.y15_c02167{bottom:804.180450px;}
.y14_c02167{bottom:827.310450px;}
.y13_c02167{bottom:848.010450px;}
.y12_c02167{bottom:873.120450px;}
.y11_c02167{bottom:892.470450px;}
.y10_c02167{bottom:911.460450px;}
.yf_c02167{bottom:930.450450px;}
.ye_c02167{bottom:949.350450px;}
.yd_c02167{bottom:968.340450px;}
.yc_c02167{bottom:987.330450px;}
.yb_c02167{bottom:1006.320450px;}
.ya_c02167{bottom:1025.310450px;}
.y9_c02167{bottom:1044.210450px;}
.y8_c02167{bottom:1063.200450px;}
.y7_c02167{bottom:1082.550450px;}
.y6_c02167{bottom:1098.750450px;}
.y5_c02167{bottom:1117.020450px;}
.y4_c02167{bottom:1137.720450px;}
.y1_c02167{bottom:1193.160450px;}
.h8_c02167{height:42.526230px;}
.h6_c02167{height:47.961914px;}
.h7_c02167{height:52.788619px;}
.h4_c02167{height:52.789219px;}
.h5_c02167{height:52.789819px;}
.h3_c02167{height:53.397598px;}
.h2_c02167{height:63.175781px;}
.h1_c02167{height:63.949219px;}
.h0_c02167{height:1263.000000px;}
.w1_c02167{width:892.500000px;}
.w0_c02167{width:892.830000px;}
.x0_c02167{left:0.000000px;}
.x1_c02167{left:127.620000px;}
.x3_c02167{left:135.630000px;}
.x4_c02167{left:179.460000px;}
.x7_c02167{left:305.550000px;}
.x6_c02167{left:313.830000px;}
.x5_c02167{left:317.340000px;}
.x2_c02167{left:433.080000px;}
@media print{
.v5_c02167{vertical-align:-20.799467pt;}
.v4_c02167{vertical-align:-19.840000pt;}
.v3_c02167{vertical-align:-16.000000pt;}
.v2_c02167{vertical-align:-15.040000pt;}
.v1_c02167{vertical-align:-9.920000pt;}
.v0_c02167{vertical-align:0.000000pt;}
.ls14_c02167{letter-spacing:-0.160320pt;}
.ls15_c02167{letter-spacing:-0.105600pt;}
.ls12_c02167{letter-spacing:-0.012800pt;}
.ls17_c02167{letter-spacing:-0.006400pt;}
.ls13_c02167{letter-spacing:0.000000pt;}
.ls18_c02167{letter-spacing:0.006400pt;}
.ls3_c02167{letter-spacing:0.011712pt;}
.ls1_c02167{letter-spacing:0.012800pt;}
.lsd_c02167{letter-spacing:0.017568pt;}
.lsf_c02167{letter-spacing:0.019200pt;}
.ls9_c02167{letter-spacing:0.023424pt;}
.ls0_c02167{letter-spacing:0.025600pt;}
.ls5_c02167{letter-spacing:0.029280pt;}
.ls2_c02167{letter-spacing:0.035136pt;}
.lsb_c02167{letter-spacing:0.040992pt;}
.ls8_c02167{letter-spacing:0.046848pt;}
.ls7_c02167{letter-spacing:0.052704pt;}
.ls6_c02167{letter-spacing:0.058560pt;}
.ls10_c02167{letter-spacing:0.064416pt;}
.ls11_c02167{letter-spacing:0.080864pt;}
.ls16_c02167{letter-spacing:0.124800pt;}
.ls4_c02167{letter-spacing:0.140544pt;}
.lsa_c02167{letter-spacing:892.160000pt;}
.lsc_c02167{letter-spacing:1216.320000pt;}
.lse_c02167{letter-spacing:1675.840000pt;}
.ws1_c02167{word-spacing:-14.780544pt;}
.ws0_c02167{word-spacing:-14.651712pt;}
.ws5_c02167{word-spacing:-0.089600pt;}
.ws4_c02167{word-spacing:-0.025600pt;}
.ws10_c02167{word-spacing:-0.019200pt;}
.ws11_c02167{word-spacing:-0.006400pt;}
.ws3_c02167{word-spacing:0.000000pt;}
.wsc_c02167{word-spacing:0.006400pt;}
.ws2_c02167{word-spacing:0.012800pt;}
.ws12_c02167{word-spacing:0.017568pt;}
.ws8_c02167{word-spacing:0.023424pt;}
.ws9_c02167{word-spacing:0.029280pt;}
.wsa_c02167{word-spacing:0.035136pt;}
.wsd_c02167{word-spacing:0.040992pt;}
.ws6_c02167{word-spacing:0.046848pt;}
.ws7_c02167{word-spacing:0.052704pt;}
.wsb_c02167{word-spacing:0.058560pt;}
.wsf_c02167{word-spacing:0.064416pt;}
.wse_c02167{word-spacing:0.070272pt;}
._1b_c02167{width:1.305888pt;}
._1e_c02167{width:45.715200pt;}
._1_c02167{width:126.940800pt;}
._15_c02167{width:129.120000pt;}
._0_c02167{width:172.800000pt;}
._c_c02167{width:175.222848pt;}
._b_c02167{width:180.320000pt;}
._a_c02167{width:201.159808pt;}
._11_c02167{width:202.541824pt;}
._9_c02167{width:206.560000pt;}
._14_c02167{width:215.280512pt;}
._1c_c02167{width:222.106976pt;}
._8_c02167{width:282.625600pt;}
._13_c02167{width:284.060800pt;}
._7_c02167{width:287.200000pt;}
._4_c02167{width:299.759232pt;}
._3_c02167{width:304.160000pt;}
._e_c02167{width:335.452352pt;}
._d_c02167{width:340.320000pt;}
._2_c02167{width:372.400512pt;}
._10_c02167{width:393.965504pt;}
._f_c02167{width:398.880000pt;}
._6_c02167{width:488.777024pt;}
._5_c02167{width:493.920000pt;}
._16_c02167{width:533.195264pt;}
._1a_c02167{width:583.322624pt;}
._1f_c02167{width:591.872384pt;}
._1d_c02167{width:655.855040pt;}
._17_c02167{width:730.835264pt;}
._22_c02167{width:733.868672pt;}
._21_c02167{width:788.399744pt;}
._12_c02167{width:829.395200pt;}
._19_c02167{width:832.811648pt;}
._23_c02167{width:845.826496pt;}
._20_c02167{width:959.769728pt;}
._18_c02167{width:970.661888pt;}
.fs4_c02167{font-size:42.560000pt;}
.fs2_c02167{font-size:48.000000pt;}
.fs1_c02167{font-size:53.440000pt;}
.fs3_c02167{font-size:58.560000pt;}
.fs0_c02167{font-size:64.000000pt;}
.y0_c02167{bottom:0.000000pt;}
.y3_c02167{bottom:50.987067pt;}
.y2_c02167{bottom:69.387067pt;}
.y37_c02167{bottom:114.507067pt;}
.y36_c02167{bottom:132.907067pt;}
.y35_c02167{bottom:151.307067pt;}
.y34_c02167{bottom:169.707067pt;}
.y33_c02167{bottom:193.227067pt;}
.y32_c02167{bottom:209.227067pt;}
.y31_c02167{bottom:226.107067pt;}
.y30_c02167{bottom:242.907067pt;}
.y2f_c02167{bottom:260.107067pt;}
.y2e_c02167{bottom:274.507067pt;}
.y2d_c02167{bottom:290.747067pt;}
.y2c_c02167{bottom:309.147200pt;}
.y2b_c02167{bottom:329.707200pt;}
.y2a_c02167{bottom:348.107200pt;}
.y29_c02167{bottom:368.907200pt;}
.y28_c02167{bottom:386.107200pt;}
.y27_c02167{bottom:400.507067pt;}
.y26_c02167{bottom:416.747200pt;}
.y25_c02167{bottom:435.147200pt;}
.y24_c02167{bottom:455.707067pt;}
.y23_c02167{bottom:474.107067pt;}
.y22_c02167{bottom:496.427067pt;}
.y21_c02167{bottom:513.627067pt;}
.y20_c02167{bottom:530.507067pt;}
.y1f_c02167{bottom:547.387067pt;}
.y1e_c02167{bottom:564.267067pt;}
.y1d_c02167{bottom:581.147067pt;}
.y1c_c02167{bottom:597.947067pt;}
.y1b_c02167{bottom:614.827067pt;}
.y1a_c02167{bottom:631.707067pt;}
.y19_c02167{bottom:648.587067pt;}
.y18_c02167{bottom:665.787067pt;}
.y17_c02167{bottom:680.187067pt;}
.y16_c02167{bottom:696.427067pt;}
.y15_c02167{bottom:714.827067pt;}
.y14_c02167{bottom:735.387067pt;}
.y13_c02167{bottom:753.787067pt;}
.y12_c02167{bottom:776.107067pt;}
.y11_c02167{bottom:793.307067pt;}
.y10_c02167{bottom:810.187067pt;}
.yf_c02167{bottom:827.067067pt;}
.ye_c02167{bottom:843.867067pt;}
.yd_c02167{bottom:860.747067pt;}
.yc_c02167{bottom:877.627067pt;}
.yb_c02167{bottom:894.507067pt;}
.ya_c02167{bottom:911.387067pt;}
.y9_c02167{bottom:928.187067pt;}
.y8_c02167{bottom:945.067067pt;}
.y7_c02167{bottom:962.267067pt;}
.y6_c02167{bottom:976.667067pt;}
.y5_c02167{bottom:992.907067pt;}
.y4_c02167{bottom:1011.307067pt;}
.y1_c02167{bottom:1060.587067pt;}
.h8_c02167{height:37.801094pt;}
.h6_c02167{height:42.632812pt;}
.h7_c02167{height:46.923217pt;}
.h4_c02167{height:46.923750pt;}
.h5_c02167{height:46.924283pt;}
.h3_c02167{height:47.464531pt;}
.h2_c02167{height:56.156250pt;}
.h1_c02167{height:56.843750pt;}
.h0_c02167{height:1122.666667pt;}
.w1_c02167{width:793.333333pt;}
.w0_c02167{width:793.626667pt;}
.x0_c02167{left:0.000000pt;}
.x1_c02167{left:113.440000pt;}
.x3_c02167{left:120.560000pt;}
.x4_c02167{left:159.520000pt;}
.x7_c02167{left:271.600000pt;}
.x6_c02167{left:278.960000pt;}
.x5_c02167{left:282.080000pt;}
.x2_c02167{left:384.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_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_2f60ac45a4f6d9a1d670ee00.woff2')format("woff");}.ff1_c02168{font-family:ff1_c02168;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02168;src:url('chunks/assets/font_89d0f0e19cc2f99d1bf5d433.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;}
.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);}
.v5_c02168{vertical-align:-22.680000px;}
.v2_c02168{vertical-align:-16.920000px;}
.v4_c02168{vertical-align:-10.800000px;}
.v3_c02168{vertical-align:-5.400000px;}
.v0_c02168{vertical-align:0.000000px;}
.v1_c02168{vertical-align:1.440000px;}
.v6_c02168{vertical-align:75.599640px;}
.ls2c_c02168{letter-spacing:-0.181116px;}
.ls2a_c02168{letter-spacing:-0.180360px;}
.ls29_c02168{letter-spacing:-0.176904px;}
.ls28_c02168{letter-spacing:-0.086400px;}
.ls2b_c02168{letter-spacing:-0.048096px;}
.ls27_c02168{letter-spacing:-0.032940px;}
.ls23_c02168{letter-spacing:-0.014400px;}
.ls26_c02168{letter-spacing:-0.013176px;}
.ls25_c02168{letter-spacing:-0.007200px;}
.ls24_c02168{letter-spacing:0.000000px;}
.ls0_c02168{letter-spacing:0.007200px;}
.lsa_c02168{letter-spacing:0.014400px;}
.lsf_c02168{letter-spacing:0.019764px;}
.ls1f_c02168{letter-spacing:0.020124px;}
.lsb_c02168{letter-spacing:0.021600px;}
.ls1a_c02168{letter-spacing:0.021960px;}
.ls18_c02168{letter-spacing:0.026352px;}
.lsd_c02168{letter-spacing:0.028800px;}
.ls1e_c02168{letter-spacing:0.032940px;}
.ls1_c02168{letter-spacing:0.039528px;}
.ls10_c02168{letter-spacing:0.046116px;}
.lsc_c02168{letter-spacing:0.050400px;}
.ls6_c02168{letter-spacing:0.052704px;}
.ls14_c02168{letter-spacing:0.059292px;}
.ls22_c02168{letter-spacing:0.065880px;}
.ls17_c02168{letter-spacing:0.079056px;}
.ls4_c02168{letter-spacing:0.098820px;}
.ls8_c02168{letter-spacing:0.131760px;}
.ls15_c02168{letter-spacing:0.178164px;}
.ls12_c02168{letter-spacing:0.180000px;}
.ls21_c02168{letter-spacing:0.181944px;}
.lse_c02168{letter-spacing:34.065360px;}
.ls1d_c02168{letter-spacing:34.560000px;}
.ls13_c02168{letter-spacing:36.360000px;}
.ls16_c02168{letter-spacing:38.160000px;}
.ls1b_c02168{letter-spacing:49.320000px;}
.ls19_c02168{letter-spacing:52.200000px;}
.ls2_c02168{letter-spacing:64.080000px;}
.ls7_c02168{letter-spacing:99.720000px;}
.ls3_c02168{letter-spacing:113.760000px;}
.ls5_c02168{letter-spacing:128.520000px;}
.ls9_c02168{letter-spacing:408.960000px;}
.ls11_c02168{letter-spacing:1325.520000px;}
.ls1c_c02168{letter-spacing:1371.600000px;}
.ls20_c02168{letter-spacing:1463.760000px;}
.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;}
}
.ws4_c02168{word-spacing:-16.601760px;}
.ws1_c02168{word-spacing:-16.568820px;}
.ws6_c02168{word-spacing:-16.529292px;}
.ws5_c02168{word-spacing:-16.522704px;}
.ws0_c02168{word-spacing:-16.509528px;}
.ws3_c02168{word-spacing:-16.437060px;}
.wsf_c02168{word-spacing:-0.237600px;}
.ws12_c02168{word-spacing:-0.222444px;}
.wse_c02168{word-spacing:-0.165600px;}
.ws10_c02168{word-spacing:-0.115200px;}
.ws1b_c02168{word-spacing:-0.093600px;}
.ws11_c02168{word-spacing:-0.086400px;}
.wsd_c02168{word-spacing:-0.014400px;}
.ws9_c02168{word-spacing:-0.007200px;}
.ws8_c02168{word-spacing:0.000000px;}
.wsa_c02168{word-spacing:0.007200px;}
.ws17_c02168{word-spacing:0.013176px;}
.ws7_c02168{word-spacing:0.014400px;}
.ws1f_c02168{word-spacing:0.019764px;}
.ws16_c02168{word-spacing:0.032940px;}
.wsb_c02168{word-spacing:0.039528px;}
.ws15_c02168{word-spacing:0.046116px;}
.ws19_c02168{word-spacing:0.059292px;}
.ws18_c02168{word-spacing:0.065880px;}
.ws23_c02168{word-spacing:0.092232px;}
.ws1a_c02168{word-spacing:0.777384px;}
.ws21_c02168{word-spacing:1.133136px;}
.ws1e_c02168{word-spacing:2.542968px;}
.ws22_c02168{word-spacing:6.864696px;}
.ws14_c02168{word-spacing:22.748364px;}
.ws20_c02168{word-spacing:29.922696px;}
.ws1d_c02168{word-spacing:44.350416px;}
.ws13_c02168{word-spacing:44.458200px;}
.ws1c_c02168{word-spacing:48.689172px;}
.ws2_c02168{word-spacing:96.810048px;}
.wsc_c02168{word-spacing:272.160000px;}
._4_c02168{margin-left:-64.800000px;}
._1b_c02168{margin-left:-1.152900px;}
._17_c02168{width:1.194840px;}
._f_c02168{width:39.870720px;}
._10_c02168{width:40.950720px;}
._12_c02168{width:55.174464px;}
._e_c02168{width:73.850472px;}
._1_c02168{width:133.131852px;}
._0_c02168{width:194.400000px;}
._7_c02168{width:244.800000px;}
._3_c02168{width:261.720000px;}
._2_c02168{width:565.615440px;}
._8_c02168{width:636.336000px;}
._1a_c02168{width:646.436736px;}
._18_c02168{width:747.997344px;}
._13_c02168{width:787.742748px;}
._14_c02168{width:857.496492px;}
._15_c02168{width:913.079448px;}
._19_c02168{width:1101.476484px;}
._6_c02168{width:1122.436800px;}
._9_c02168{width:1173.016800px;}
._16_c02168{width:1223.569548px;}
._11_c02168{width:1252.142640px;}
._b_c02168{width:1263.902400px;}
._c_c02168{width:1269.244800px;}
._a_c02168{width:1468.872000px;}
._5_c02168{width:1791.288000px;}
._d_c02168{width:2232.561600px;}
.fc0_c02168{color:rgb(0,0,0);}
.fs3_c02168{font-size:42.120000px;}
.fs5_c02168{font-size:47.880000px;}
.fs1_c02168{font-size:54.000000px;}
.fs4_c02168{font-size:60.120000px;}
.fs2_c02168{font-size:65.880000px;}
.fs0_c02168{font-size:72.000000px;}
.y0_c02168{bottom:0.000000px;}
.y3_c02168{bottom:57.360450px;}
.y2_c02168{bottom:78.060450px;}
.y39_c02168{bottom:129.990450px;}
.y38_c02168{bottom:150.690450px;}
.y37_c02168{bottom:171.031305px;}
.y36_c02168{bottom:190.021215px;}
.y35_c02168{bottom:209.011125px;}
.y3a_c02168{bottom:227.820450px;}
.y34_c02168{bottom:233.580450px;}
.y31_c02168{bottom:248.070450px;}
.y30_c02168{bottom:268.320630px;}
.y33_c02168{bottom:287.220690px;}
.y2f_c02168{bottom:287.310540px;}
.y32_c02168{bottom:306.210600px;}
.y2e_c02168{bottom:311.970450px;}
.y2d_c02168{bottom:331.500600px;}
.y2c_c02168{bottom:345.990450px;}
.y2b_c02168{bottom:367.410450px;}
.y2a_c02168{bottom:388.110450px;}
.y29_c02168{bottom:408.810450px;}
.y28_c02168{bottom:435.720450px;}
.y27_c02168{bottom:455.430600px;}
.y26_c02168{bottom:475.140450px;}
.y24_c02168{bottom:489.180540px;}
.y25_c02168{bottom:508.079865px;}
.y23_c02168{bottom:513.840600px;}
.y22_c02168{bottom:533.370450px;}
.y21_c02168{bottom:547.590450px;}
.y20_c02168{bottom:573.060450px;}
.y1f_c02168{bottom:592.770450px;}
.y1e_c02168{bottom:612.480450px;}
.y1d_c02168{bottom:632.190450px;}
.y1c_c02168{bottom:651.900450px;}
.y1b_c02168{bottom:665.940540px;}
.y1a_c02168{bottom:690.600450px;}
.y19_c02168{bottom:710.130450px;}
.y18_c02168{bottom:724.620450px;}
.y17_c02168{bottom:746.040450px;}
.y16_c02168{bottom:767.460450px;}
.y15_c02168{bottom:788.160450px;}
.y14_c02168{bottom:809.670450px;}
.y13_c02168{bottom:831.090450px;}
.y12_c02168{bottom:852.510450px;}
.y11_c02168{bottom:874.020450px;}
.y10_c02168{bottom:895.440450px;}
.yf_c02168{bottom:916.860450px;}
.ye_c02168{bottom:938.370450px;}
.yd_c02168{bottom:959.790600px;}
.yc_c02168{bottom:981.210450px;}
.yb_c02168{bottom:1002.630450px;}
.ya_c02168{bottom:1023.960450px;}
.y9_c02168{bottom:1045.290450px;}
.y8_c02168{bottom:1065.270450px;}
.y7_c02168{bottom:1085.970450px;}
.y6_c02168{bottom:1106.490900px;}
.y5_c02168{bottom:1122.060450px;}
.y4_c02168{bottom:1139.250450px;}
.y1_c02168{bottom:1193.160450px;}
.h6_c02168{height:36.957832px;}
.h5_c02168{height:37.410293px;}
.hb_c02168{height:40.908619px;}
.h8_c02168{height:40.909219px;}
.hc_c02168{height:40.909819px;}
.hd_c02168{height:41.628619px;}
.h3_c02168{height:47.961914px;}
.h9_c02168{height:57.805840px;}
.hf_c02168{height:58.513535px;}
.h10_c02168{height:63.172361px;}
.he_c02168{height:63.175061px;}
.h2_c02168{height:63.175781px;}
.h1_c02168{height:63.949219px;}
.ha_c02168{height:63.951559px;}
.h4_c02168{height:64.615781px;}
.h7_c02168{height:139.548859px;}
.h0_c02168{height:1263.000000px;}
.w1_c02168{width:892.500000px;}
.w0_c02168{width:892.830000px;}
.x0_c02168{left:0.000000px;}
.x8_c02168{left:117.000000px;}
.x1_c02168{left:127.620000px;}
.x3_c02168{left:135.630000px;}
.x6_c02168{left:137.520000px;}
.x9_c02168{left:243.180000px;}
.xb_c02168{left:260.100000px;}
.x4_c02168{left:263.430000px;}
.xa_c02168{left:273.870000px;}
.x5_c02168{left:307.170000px;}
.x7_c02168{left:335.160000px;}
.x2_c02168{left:433.080000px;}
.xc_c02168{left:699.120459px;}
.xd_c02168{left:720.990000px;}
@media print{
.v5_c02168{vertical-align:-20.160000pt;}
.v2_c02168{vertical-align:-15.040000pt;}
.v4_c02168{vertical-align:-9.600000pt;}
.v3_c02168{vertical-align:-4.800000pt;}
.v0_c02168{vertical-align:0.000000pt;}
.v1_c02168{vertical-align:1.280000pt;}
.v6_c02168{vertical-align:67.199680pt;}
.ls2c_c02168{letter-spacing:-0.160992pt;}
.ls2a_c02168{letter-spacing:-0.160320pt;}
.ls29_c02168{letter-spacing:-0.157248pt;}
.ls28_c02168{letter-spacing:-0.076800pt;}
.ls2b_c02168{letter-spacing:-0.042752pt;}
.ls27_c02168{letter-spacing:-0.029280pt;}
.ls23_c02168{letter-spacing:-0.012800pt;}
.ls26_c02168{letter-spacing:-0.011712pt;}
.ls25_c02168{letter-spacing:-0.006400pt;}
.ls24_c02168{letter-spacing:0.000000pt;}
.ls0_c02168{letter-spacing:0.006400pt;}
.lsa_c02168{letter-spacing:0.012800pt;}
.lsf_c02168{letter-spacing:0.017568pt;}
.ls1f_c02168{letter-spacing:0.017888pt;}
.lsb_c02168{letter-spacing:0.019200pt;}
.ls1a_c02168{letter-spacing:0.019520pt;}
.ls18_c02168{letter-spacing:0.023424pt;}
.lsd_c02168{letter-spacing:0.025600pt;}
.ls1e_c02168{letter-spacing:0.029280pt;}
.ls1_c02168{letter-spacing:0.035136pt;}
.ls10_c02168{letter-spacing:0.040992pt;}
.lsc_c02168{letter-spacing:0.044800pt;}
.ls6_c02168{letter-spacing:0.046848pt;}
.ls14_c02168{letter-spacing:0.052704pt;}
.ls22_c02168{letter-spacing:0.058560pt;}
.ls17_c02168{letter-spacing:0.070272pt;}
.ls4_c02168{letter-spacing:0.087840pt;}
.ls8_c02168{letter-spacing:0.117120pt;}
.ls15_c02168{letter-spacing:0.158368pt;}
.ls12_c02168{letter-spacing:0.160000pt;}
.ls21_c02168{letter-spacing:0.161728pt;}
.lse_c02168{letter-spacing:30.280320pt;}
.ls1d_c02168{letter-spacing:30.720000pt;}
.ls13_c02168{letter-spacing:32.320000pt;}
.ls16_c02168{letter-spacing:33.920000pt;}
.ls1b_c02168{letter-spacing:43.840000pt;}
.ls19_c02168{letter-spacing:46.400000pt;}
.ls2_c02168{letter-spacing:56.960000pt;}
.ls7_c02168{letter-spacing:88.640000pt;}
.ls3_c02168{letter-spacing:101.120000pt;}
.ls5_c02168{letter-spacing:114.240000pt;}
.ls9_c02168{letter-spacing:363.520000pt;}
.ls11_c02168{letter-spacing:1178.240000pt;}
.ls1c_c02168{letter-spacing:1219.200000pt;}
.ls20_c02168{letter-spacing:1301.120000pt;}
.ws4_c02168{word-spacing:-14.757120pt;}
.ws1_c02168{word-spacing:-14.727840pt;}
.ws6_c02168{word-spacing:-14.692704pt;}
.ws5_c02168{word-spacing:-14.686848pt;}
.ws0_c02168{word-spacing:-14.675136pt;}
.ws3_c02168{word-spacing:-14.610720pt;}
.wsf_c02168{word-spacing:-0.211200pt;}
.ws12_c02168{word-spacing:-0.197728pt;}
.wse_c02168{word-spacing:-0.147200pt;}
.ws10_c02168{word-spacing:-0.102400pt;}
.ws1b_c02168{word-spacing:-0.083200pt;}
.ws11_c02168{word-spacing:-0.076800pt;}
.wsd_c02168{word-spacing:-0.012800pt;}
.ws9_c02168{word-spacing:-0.006400pt;}
.ws8_c02168{word-spacing:0.000000pt;}
.wsa_c02168{word-spacing:0.006400pt;}
.ws17_c02168{word-spacing:0.011712pt;}
.ws7_c02168{word-spacing:0.012800pt;}
.ws1f_c02168{word-spacing:0.017568pt;}
.ws16_c02168{word-spacing:0.029280pt;}
.wsb_c02168{word-spacing:0.035136pt;}
.ws15_c02168{word-spacing:0.040992pt;}
.ws19_c02168{word-spacing:0.052704pt;}
.ws18_c02168{word-spacing:0.058560pt;}
.ws23_c02168{word-spacing:0.081984pt;}
.ws1a_c02168{word-spacing:0.691008pt;}
.ws21_c02168{word-spacing:1.007232pt;}
.ws1e_c02168{word-spacing:2.260416pt;}
.ws22_c02168{word-spacing:6.101952pt;}
.ws14_c02168{word-spacing:20.220768pt;}
.ws20_c02168{word-spacing:26.597952pt;}
.ws1d_c02168{word-spacing:39.422592pt;}
.ws13_c02168{word-spacing:39.518400pt;}
.ws1c_c02168{word-spacing:43.279264pt;}
.ws2_c02168{word-spacing:86.053376pt;}
.wsc_c02168{word-spacing:241.920000pt;}
._4_c02168{margin-left:-57.600000pt;}
._1b_c02168{margin-left:-1.024800pt;}
._17_c02168{width:1.062080pt;}
._f_c02168{width:35.440640pt;}
._10_c02168{width:36.400640pt;}
._12_c02168{width:49.043968pt;}
._e_c02168{width:65.644864pt;}
._1_c02168{width:118.339424pt;}
._0_c02168{width:172.800000pt;}
._7_c02168{width:217.600000pt;}
._3_c02168{width:232.640000pt;}
._2_c02168{width:502.769280pt;}
._8_c02168{width:565.632000pt;}
._1a_c02168{width:574.610432pt;}
._18_c02168{width:664.886528pt;}
._13_c02168{width:700.215776pt;}
._14_c02168{width:762.219104pt;}
._15_c02168{width:811.626176pt;}
._19_c02168{width:979.090208pt;}
._6_c02168{width:997.721600pt;}
._9_c02168{width:1042.681600pt;}
._16_c02168{width:1087.617376pt;}
._11_c02168{width:1113.015680pt;}
._b_c02168{width:1123.468800pt;}
._c_c02168{width:1128.217600pt;}
._a_c02168{width:1305.664000pt;}
._5_c02168{width:1592.256000pt;}
._d_c02168{width:1984.499200pt;}
.fs3_c02168{font-size:37.440000pt;}
.fs5_c02168{font-size:42.560000pt;}
.fs1_c02168{font-size:48.000000pt;}
.fs4_c02168{font-size:53.440000pt;}
.fs2_c02168{font-size:58.560000pt;}
.fs0_c02168{font-size:64.000000pt;}
.y0_c02168{bottom:0.000000pt;}
.y3_c02168{bottom:50.987067pt;}
.y2_c02168{bottom:69.387067pt;}
.y39_c02168{bottom:115.547067pt;}
.y38_c02168{bottom:133.947067pt;}
.y37_c02168{bottom:152.027827pt;}
.y36_c02168{bottom:168.907747pt;}
.y35_c02168{bottom:185.787667pt;}
.y3a_c02168{bottom:202.507067pt;}
.y34_c02168{bottom:207.627067pt;}
.y31_c02168{bottom:220.507067pt;}
.y30_c02168{bottom:238.507227pt;}
.y33_c02168{bottom:255.307280pt;}
.y2f_c02168{bottom:255.387147pt;}
.y32_c02168{bottom:272.187200pt;}
.y2e_c02168{bottom:277.307067pt;}
.y2d_c02168{bottom:294.667200pt;}
.y2c_c02168{bottom:307.547067pt;}
.y2b_c02168{bottom:326.587067pt;}
.y2a_c02168{bottom:344.987067pt;}
.y29_c02168{bottom:363.387067pt;}
.y28_c02168{bottom:387.307067pt;}
.y27_c02168{bottom:404.827200pt;}
.y26_c02168{bottom:422.347067pt;}
.y24_c02168{bottom:434.827147pt;}
.y25_c02168{bottom:451.626547pt;}
.y23_c02168{bottom:456.747200pt;}
.y22_c02168{bottom:474.107067pt;}
.y21_c02168{bottom:486.747067pt;}
.y20_c02168{bottom:509.387067pt;}
.y1f_c02168{bottom:526.907067pt;}
.y1e_c02168{bottom:544.427067pt;}
.y1d_c02168{bottom:561.947067pt;}
.y1c_c02168{bottom:579.467067pt;}
.y1b_c02168{bottom:591.947147pt;}
.y1a_c02168{bottom:613.867067pt;}
.y19_c02168{bottom:631.227067pt;}
.y18_c02168{bottom:644.107067pt;}
.y17_c02168{bottom:663.147067pt;}
.y16_c02168{bottom:682.187067pt;}
.y15_c02168{bottom:700.587067pt;}
.y14_c02168{bottom:719.707067pt;}
.y13_c02168{bottom:738.747067pt;}
.y12_c02168{bottom:757.787067pt;}
.y11_c02168{bottom:776.907067pt;}
.y10_c02168{bottom:795.947067pt;}
.yf_c02168{bottom:814.987067pt;}
.ye_c02168{bottom:834.107067pt;}
.yd_c02168{bottom:853.147200pt;}
.yc_c02168{bottom:872.187067pt;}
.yb_c02168{bottom:891.227067pt;}
.ya_c02168{bottom:910.187067pt;}
.y9_c02168{bottom:929.147067pt;}
.y8_c02168{bottom:946.907067pt;}
.y7_c02168{bottom:965.307067pt;}
.y6_c02168{bottom:983.547467pt;}
.y5_c02168{bottom:997.387067pt;}
.y4_c02168{bottom:1012.667067pt;}
.y1_c02168{bottom:1060.587067pt;}
.h6_c02168{height:32.851406pt;}
.h5_c02168{height:33.253594pt;}
.hb_c02168{height:36.363217pt;}
.h8_c02168{height:36.363750pt;}
.hc_c02168{height:36.364283pt;}
.hd_c02168{height:37.003217pt;}
.h3_c02168{height:42.632812pt;}
.h9_c02168{height:51.382969pt;}
.hf_c02168{height:52.012031pt;}
.h10_c02168{height:56.153210pt;}
.he_c02168{height:56.155610pt;}
.h2_c02168{height:56.156250pt;}
.h1_c02168{height:56.843750pt;}
.ha_c02168{height:56.845830pt;}
.h4_c02168{height:57.436250pt;}
.h7_c02168{height:124.043430pt;}
.h0_c02168{height:1122.666667pt;}
.w1_c02168{width:793.333333pt;}
.w0_c02168{width:793.626667pt;}
.x0_c02168{left:0.000000pt;}
.x8_c02168{left:104.000000pt;}
.x1_c02168{left:113.440000pt;}
.x3_c02168{left:120.560000pt;}
.x6_c02168{left:122.240000pt;}
.x9_c02168{left:216.160000pt;}
.xb_c02168{left:231.200000pt;}
.x4_c02168{left:234.160000pt;}
.xa_c02168{left:243.440000pt;}
.x5_c02168{left:273.040000pt;}
.x7_c02168{left:297.920000pt;}
.x2_c02168{left:384.960000pt;}
.xc_c02168{left:621.440408pt;}
.xd_c02168{left:640.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_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_2a803cbfbc56c97fadfe83d1.woff2')format("woff");}.ff1_c02169{font-family:ff1_c02169;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02169;src:url('chunks/assets/font_bf381a402e06655a773428ce.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;}
.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);}
.v2_c02169{vertical-align:-22.320000px;}
.v1_c02169{vertical-align:-16.919400px;}
.v3_c02169{vertical-align:-5.400000px;}
.v0_c02169{vertical-align:0.000000px;}
.ls17_c02169{letter-spacing:-0.181116px;}
.ls15_c02169{letter-spacing:-0.180360px;}
.ls14_c02169{letter-spacing:-0.176904px;}
.ls1b_c02169{letter-spacing:-0.039528px;}
.ls16_c02169{letter-spacing:-0.032940px;}
.ls18_c02169{letter-spacing:-0.021600px;}
.ls12_c02169{letter-spacing:-0.014400px;}
.ls19_c02169{letter-spacing:-0.007200px;}
.ls1a_c02169{letter-spacing:-0.006588px;}
.ls13_c02169{letter-spacing:0.000000px;}
.lsc_c02169{letter-spacing:0.006588px;}
.ls11_c02169{letter-spacing:0.013176px;}
.lsb_c02169{letter-spacing:0.019764px;}
.ls7_c02169{letter-spacing:0.026352px;}
.ls6_c02169{letter-spacing:0.032940px;}
.lsf_c02169{letter-spacing:0.039528px;}
.ls5_c02169{letter-spacing:0.046116px;}
.ls8_c02169{letter-spacing:0.052704px;}
.ls0_c02169{letter-spacing:0.059292px;}
.lse_c02169{letter-spacing:0.065880px;}
.ls4_c02169{letter-spacing:0.072468px;}
.ls3_c02169{letter-spacing:0.079056px;}
.ls10_c02169{letter-spacing:0.085644px;}
.ls9_c02169{letter-spacing:0.105408px;}
.lsa_c02169{letter-spacing:0.111996px;}
.lsd_c02169{letter-spacing:0.131760px;}
.ls2_c02169{letter-spacing:0.181944px;}
.ls1_c02169{letter-spacing:1463.760000px;}
.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;}
}
.ws1_c02169{word-spacing:-16.601760px;}
.ws0_c02169{word-spacing:-16.529292px;}
.ws2_c02169{word-spacing:-16.483176px;}
.ws4_c02169{word-spacing:0.000000px;}
.ws3_c02169{word-spacing:0.014400px;}
.ws30_c02169{word-spacing:0.019764px;}
.ws13_c02169{word-spacing:0.039528px;}
.ws26_c02169{word-spacing:0.046116px;}
.ws28_c02169{word-spacing:0.052704px;}
.ws2c_c02169{word-spacing:0.059292px;}
.ws1b_c02169{word-spacing:0.065880px;}
.ws21_c02169{word-spacing:0.072468px;}
.ws22_c02169{word-spacing:0.085644px;}
.ws31_c02169{word-spacing:0.487512px;}
.ws12_c02169{word-spacing:0.764208px;}
.ws15_c02169{word-spacing:2.220156px;}
.ws27_c02169{word-spacing:2.239920px;}
.ws34_c02169{word-spacing:2.575908px;}
.ws33_c02169{word-spacing:2.602260px;}
.ws1e_c02169{word-spacing:3.629988px;}
.ws2a_c02169{word-spacing:3.676104px;}
.ws8_c02169{word-spacing:4.361256px;}
.ws11_c02169{word-spacing:7.951716px;}
.ws1c_c02169{word-spacing:9.309600px;}
.ws1d_c02169{word-spacing:9.367200px;}
.ws32_c02169{word-spacing:9.414252px;}
.wsa_c02169{word-spacing:9.420840px;}
.ws10_c02169{word-spacing:9.802944px;}
.ws2b_c02169{word-spacing:11.199600px;}
.ws35_c02169{word-spacing:11.529000px;}
.ws36_c02169{word-spacing:11.548764px;}
.wsb_c02169{word-spacing:12.655548px;}
.ws24_c02169{word-spacing:13.031064px;}
.ws6_c02169{word-spacing:14.052204px;}
.ws7_c02169{word-spacing:14.058792px;}
.ws2f_c02169{word-spacing:14.085144px;}
.ws14_c02169{word-spacing:16.581996px;}
.ws19_c02169{word-spacing:16.964100px;}
.ws1a_c02169{word-spacing:16.977276px;}
.ws17_c02169{word-spacing:18.051120px;}
.ws29_c02169{word-spacing:19.111788px;}
.ws18_c02169{word-spacing:20.580912px;}
.ws9_c02169{word-spacing:22.017096px;}
.ws16_c02169{word-spacing:27.017388px;}
.ws25_c02169{word-spacing:28.875204px;}
.wsc_c02169{word-spacing:29.217780px;}
.ws20_c02169{word-spacing:33.460452px;}
.ws1f_c02169{word-spacing:33.486804px;}
.wsd_c02169{word-spacing:35.674020px;}
.ws2d_c02169{word-spacing:39.284244px;}
.ws2e_c02169{word-spacing:39.336948px;}
.wse_c02169{word-spacing:44.620524px;}
.wsf_c02169{word-spacing:44.712756px;}
.ws5_c02169{word-spacing:48.689172px;}
.ws23_c02169{word-spacing:56.544804px;}
._6_c02169{margin-left:-1.146312px;}
._5_c02169{width:1.231956px;}
._2_c02169{width:39.870720px;}
._3_c02169{width:40.950720px;}
._4_c02169{width:55.174464px;}
._1_c02169{width:73.850472px;}
._0_c02169{width:194.400000px;}
.fc0_c02169{color:rgb(0,0,0);}
.fs5_c02169{font-size:24.120000px;}
.fs1_c02169{font-size:42.120000px;}
.fs4_c02169{font-size:47.880000px;}
.fs2_c02169{font-size:60.120000px;}
.fs3_c02169{font-size:65.880000px;}
.fs0_c02169{font-size:72.000000px;}
.y0_c02169{bottom:0.000000px;}
.y3_c02169{bottom:57.360450px;}
.y2_c02169{bottom:78.060450px;}
.y4a_c02169{bottom:129.181305px;}
.y49_c02169{bottom:148.171215px;}
.y48_c02169{bottom:167.161125px;}
.y47_c02169{bottom:186.060450px;}
.y46_c02169{bottom:202.800450px;}
.y45_c02169{bottom:211.980540px;}
.y44_c02169{bottom:230.970450px;}
.y43_c02169{bottom:247.620450px;}
.y42_c02169{bottom:256.800450px;}
.y4e_c02169{bottom:275.701719px;}
.y41_c02169{bottom:275.790450px;}
.y4d_c02169{bottom:294.691629px;}
.y40_c02169{bottom:294.780450px;}
.y4c_c02169{bottom:313.681539px;}
.y3f_c02169{bottom:313.770450px;}
.y4b_c02169{bottom:332.580864px;}
.y3e_c02169{bottom:338.340450px;}
.y3b_c02169{bottom:351.570450px;}
.y3a_c02169{bottom:366.240630px;}
.y39_c02169{bottom:385.230540px;}
.y38_c02169{bottom:404.220450px;}
.y37_c02169{bottom:420.870600px;}
.y36_c02169{bottom:430.050690px;}
.y35_c02169{bottom:449.040600px;}
.y34_c02169{bottom:465.690600px;}
.y33_c02169{bottom:474.870720px;}
.y32_c02169{bottom:493.860630px;}
.y3d_c02169{bottom:512.760540px;}
.y31_c02169{bottom:512.850540px;}
.y3c_c02169{bottom:531.750450px;}
.y30_c02169{bottom:537.510450px;}
.y2f_c02169{bottom:551.460540px;}
.y2d_c02169{bottom:555.870450px;}
.y2e_c02169{bottom:570.450450px;}
.y2c_c02169{bottom:576.210450px;}
.y2a_c02169{bottom:589.350450px;}
.y29_c02169{bottom:604.020630px;}
.y28_c02169{bottom:623.010540px;}
.y2b_c02169{bottom:641.910450px;}
.y27_c02169{bottom:647.670450px;}
.y25_c02169{bottom:660.810450px;}
.y24_c02169{bottom:675.840450px;}
.y26_c02169{bottom:697.800450px;}
.y23_c02169{bottom:703.380450px;}
.y1f_c02169{bottom:716.790450px;}
.y1e_c02169{bottom:731.460450px;}
.y1d_c02169{bottom:750.450450px;}
.y1c_c02169{bottom:769.440450px;}
.y1b_c02169{bottom:788.340720px;}
.y22_c02169{bottom:805.800450px;}
.y1a_c02169{bottom:807.330630px;}
.y21_c02169{bottom:826.230540px;}
.y19_c02169{bottom:826.320540px;}
.y20_c02169{bottom:845.220450px;}
.y18_c02169{bottom:850.980450px;}
.y14_c02169{bottom:864.120450px;}
.y13_c02169{bottom:878.790600px;}
.y12_c02169{bottom:897.780450px;}
.y17_c02169{bottom:916.680630px;}
.y11_c02169{bottom:916.770450px;}
.y16_c02169{bottom:935.670540px;}
.y10_c02169{bottom:935.760540px;}
.y15_c02169{bottom:954.660450px;}
.yf_c02169{bottom:960.420450px;}
.yd_c02169{bottom:973.560450px;}
.yc_c02169{bottom:988.231665px;}
.yb_c02169{bottom:1007.221575px;}
.ya_c02169{bottom:1026.211485px;}
.y9_c02169{bottom:1045.110810px;}
.y8_c02169{bottom:1064.100720px;}
.y7_c02169{bottom:1083.090630px;}
.y6_c02169{bottom:1102.080540px;}
.ye_c02169{bottom:1120.980450px;}
.y5_c02169{bottom:1126.740450px;}
.y4_c02169{bottom:1146.270450px;}
.y1_c02169{bottom:1193.160450px;}
.hd_c02169{height:21.163887px;}
.h4_c02169{height:36.957832px;}
.ha_c02169{height:37.410293px;}
.h3_c02169{height:41.629219px;}
.h7_c02169{height:42.011895px;}
.h5_c02169{height:57.805840px;}
.h8_c02169{height:58.513535px;}
.h6_c02169{height:63.170921px;}
.he_c02169{height:63.174821px;}
.hb_c02169{height:63.175061px;}
.hc_c02169{height:63.175301px;}
.hf_c02169{height:63.175421px;}
.h2_c02169{height:63.175781px;}
.h9_c02169{height:63.948499px;}
.h1_c02169{height:63.949219px;}
.h0_c02169{height:1263.000000px;}
.w1_c02169{width:892.500000px;}
.w0_c02169{width:892.830000px;}
.x0_c02169{left:0.000000px;}
.x1_c02169{left:127.620000px;}
.x3_c02169{left:135.630000px;}
.x4_c02169{left:273.870000px;}
.x2_c02169{left:433.080000px;}
.x5_c02169{left:720.540000px;}
.x6_c02169{left:722.338524px;}
.x7_c02169{left:738.900000px;}
@media print{
.v2_c02169{vertical-align:-19.840000pt;}
.v1_c02169{vertical-align:-15.039467pt;}
.v3_c02169{vertical-align:-4.800000pt;}
.v0_c02169{vertical-align:0.000000pt;}
.ls17_c02169{letter-spacing:-0.160992pt;}
.ls15_c02169{letter-spacing:-0.160320pt;}
.ls14_c02169{letter-spacing:-0.157248pt;}
.ls1b_c02169{letter-spacing:-0.035136pt;}
.ls16_c02169{letter-spacing:-0.029280pt;}
.ls18_c02169{letter-spacing:-0.019200pt;}
.ls12_c02169{letter-spacing:-0.012800pt;}
.ls19_c02169{letter-spacing:-0.006400pt;}
.ls1a_c02169{letter-spacing:-0.005856pt;}
.ls13_c02169{letter-spacing:0.000000pt;}
.lsc_c02169{letter-spacing:0.005856pt;}
.ls11_c02169{letter-spacing:0.011712pt;}
.lsb_c02169{letter-spacing:0.017568pt;}
.ls7_c02169{letter-spacing:0.023424pt;}
.ls6_c02169{letter-spacing:0.029280pt;}
.lsf_c02169{letter-spacing:0.035136pt;}
.ls5_c02169{letter-spacing:0.040992pt;}
.ls8_c02169{letter-spacing:0.046848pt;}
.ls0_c02169{letter-spacing:0.052704pt;}
.lse_c02169{letter-spacing:0.058560pt;}
.ls4_c02169{letter-spacing:0.064416pt;}
.ls3_c02169{letter-spacing:0.070272pt;}
.ls10_c02169{letter-spacing:0.076128pt;}
.ls9_c02169{letter-spacing:0.093696pt;}
.lsa_c02169{letter-spacing:0.099552pt;}
.lsd_c02169{letter-spacing:0.117120pt;}
.ls2_c02169{letter-spacing:0.161728pt;}
.ls1_c02169{letter-spacing:1301.120000pt;}
.ws1_c02169{word-spacing:-14.757120pt;}
.ws0_c02169{word-spacing:-14.692704pt;}
.ws2_c02169{word-spacing:-14.651712pt;}
.ws4_c02169{word-spacing:0.000000pt;}
.ws3_c02169{word-spacing:0.012800pt;}
.ws30_c02169{word-spacing:0.017568pt;}
.ws13_c02169{word-spacing:0.035136pt;}
.ws26_c02169{word-spacing:0.040992pt;}
.ws28_c02169{word-spacing:0.046848pt;}
.ws2c_c02169{word-spacing:0.052704pt;}
.ws1b_c02169{word-spacing:0.058560pt;}
.ws21_c02169{word-spacing:0.064416pt;}
.ws22_c02169{word-spacing:0.076128pt;}
.ws31_c02169{word-spacing:0.433344pt;}
.ws12_c02169{word-spacing:0.679296pt;}
.ws15_c02169{word-spacing:1.973472pt;}
.ws27_c02169{word-spacing:1.991040pt;}
.ws34_c02169{word-spacing:2.289696pt;}
.ws33_c02169{word-spacing:2.313120pt;}
.ws1e_c02169{word-spacing:3.226656pt;}
.ws2a_c02169{word-spacing:3.267648pt;}
.ws8_c02169{word-spacing:3.876672pt;}
.ws11_c02169{word-spacing:7.068192pt;}
.ws1c_c02169{word-spacing:8.275200pt;}
.ws1d_c02169{word-spacing:8.326400pt;}
.ws32_c02169{word-spacing:8.368224pt;}
.wsa_c02169{word-spacing:8.374080pt;}
.ws10_c02169{word-spacing:8.713728pt;}
.ws2b_c02169{word-spacing:9.955200pt;}
.ws35_c02169{word-spacing:10.248000pt;}
.ws36_c02169{word-spacing:10.265568pt;}
.wsb_c02169{word-spacing:11.249376pt;}
.ws24_c02169{word-spacing:11.583168pt;}
.ws6_c02169{word-spacing:12.490848pt;}
.ws7_c02169{word-spacing:12.496704pt;}
.ws2f_c02169{word-spacing:12.520128pt;}
.ws14_c02169{word-spacing:14.739552pt;}
.ws19_c02169{word-spacing:15.079200pt;}
.ws1a_c02169{word-spacing:15.090912pt;}
.ws17_c02169{word-spacing:16.045440pt;}
.ws29_c02169{word-spacing:16.988256pt;}
.ws18_c02169{word-spacing:18.294144pt;}
.ws9_c02169{word-spacing:19.570752pt;}
.ws16_c02169{word-spacing:24.015456pt;}
.ws25_c02169{word-spacing:25.666848pt;}
.wsc_c02169{word-spacing:25.971360pt;}
.ws20_c02169{word-spacing:29.742624pt;}
.ws1f_c02169{word-spacing:29.766048pt;}
.wsd_c02169{word-spacing:31.710240pt;}
.ws2d_c02169{word-spacing:34.919328pt;}
.ws2e_c02169{word-spacing:34.966176pt;}
.wse_c02169{word-spacing:39.662688pt;}
.wsf_c02169{word-spacing:39.744672pt;}
.ws5_c02169{word-spacing:43.279264pt;}
.ws23_c02169{word-spacing:50.262048pt;}
._6_c02169{margin-left:-1.018944pt;}
._5_c02169{width:1.095072pt;}
._2_c02169{width:35.440640pt;}
._3_c02169{width:36.400640pt;}
._4_c02169{width:49.043968pt;}
._1_c02169{width:65.644864pt;}
._0_c02169{width:172.800000pt;}
.fs5_c02169{font-size:21.440000pt;}
.fs1_c02169{font-size:37.440000pt;}
.fs4_c02169{font-size:42.560000pt;}
.fs2_c02169{font-size:53.440000pt;}
.fs3_c02169{font-size:58.560000pt;}
.fs0_c02169{font-size:64.000000pt;}
.y0_c02169{bottom:0.000000pt;}
.y3_c02169{bottom:50.987067pt;}
.y2_c02169{bottom:69.387067pt;}
.y4a_c02169{bottom:114.827827pt;}
.y49_c02169{bottom:131.707747pt;}
.y48_c02169{bottom:148.587667pt;}
.y47_c02169{bottom:165.387067pt;}
.y46_c02169{bottom:180.267067pt;}
.y45_c02169{bottom:188.427147pt;}
.y44_c02169{bottom:205.307067pt;}
.y43_c02169{bottom:220.107067pt;}
.y42_c02169{bottom:228.267067pt;}
.y4e_c02169{bottom:245.068195pt;}
.y41_c02169{bottom:245.147067pt;}
.y4d_c02169{bottom:261.948115pt;}
.y40_c02169{bottom:262.027067pt;}
.y4c_c02169{bottom:278.828035pt;}
.y3f_c02169{bottom:278.907067pt;}
.y4b_c02169{bottom:295.627435pt;}
.y3e_c02169{bottom:300.747067pt;}
.y3b_c02169{bottom:312.507067pt;}
.y3a_c02169{bottom:325.547227pt;}
.y39_c02169{bottom:342.427147pt;}
.y38_c02169{bottom:359.307067pt;}
.y37_c02169{bottom:374.107200pt;}
.y36_c02169{bottom:382.267280pt;}
.y35_c02169{bottom:399.147200pt;}
.y34_c02169{bottom:413.947200pt;}
.y33_c02169{bottom:422.107307pt;}
.y32_c02169{bottom:438.987227pt;}
.y3d_c02169{bottom:455.787147pt;}
.y31_c02169{bottom:455.867147pt;}
.y3c_c02169{bottom:472.667067pt;}
.y30_c02169{bottom:477.787067pt;}
.y2f_c02169{bottom:490.187147pt;}
.y2d_c02169{bottom:494.107067pt;}
.y2e_c02169{bottom:507.067067pt;}
.y2c_c02169{bottom:512.187067pt;}
.y2a_c02169{bottom:523.867067pt;}
.y29_c02169{bottom:536.907227pt;}
.y28_c02169{bottom:553.787147pt;}
.y2b_c02169{bottom:570.587067pt;}
.y27_c02169{bottom:575.707067pt;}
.y25_c02169{bottom:587.387067pt;}
.y24_c02169{bottom:600.747067pt;}
.y26_c02169{bottom:620.267067pt;}
.y23_c02169{bottom:625.227067pt;}
.y1f_c02169{bottom:637.147067pt;}
.y1e_c02169{bottom:650.187067pt;}
.y1d_c02169{bottom:667.067067pt;}
.y1c_c02169{bottom:683.947067pt;}
.y1b_c02169{bottom:700.747307pt;}
.y22_c02169{bottom:716.267067pt;}
.y1a_c02169{bottom:717.627227pt;}
.y21_c02169{bottom:734.427147pt;}
.y19_c02169{bottom:734.507147pt;}
.y20_c02169{bottom:751.307067pt;}
.y18_c02169{bottom:756.427067pt;}
.y14_c02169{bottom:768.107067pt;}
.y13_c02169{bottom:781.147200pt;}
.y12_c02169{bottom:798.027067pt;}
.y17_c02169{bottom:814.827227pt;}
.y11_c02169{bottom:814.907067pt;}
.y16_c02169{bottom:831.707147pt;}
.y10_c02169{bottom:831.787147pt;}
.y15_c02169{bottom:848.587067pt;}
.yf_c02169{bottom:853.707067pt;}
.yd_c02169{bottom:865.387067pt;}
.yc_c02169{bottom:878.428147pt;}
.yb_c02169{bottom:895.308067pt;}
.ya_c02169{bottom:912.187987pt;}
.y9_c02169{bottom:928.987387pt;}
.y8_c02169{bottom:945.867307pt;}
.y7_c02169{bottom:962.747227pt;}
.y6_c02169{bottom:979.627147pt;}
.ye_c02169{bottom:996.427067pt;}
.y5_c02169{bottom:1001.547067pt;}
.y4_c02169{bottom:1018.907067pt;}
.y1_c02169{bottom:1060.587067pt;}
.hd_c02169{height:18.812344pt;}
.h4_c02169{height:32.851406pt;}
.ha_c02169{height:33.253594pt;}
.h3_c02169{height:37.003750pt;}
.h7_c02169{height:37.343906pt;}
.h5_c02169{height:51.382969pt;}
.h8_c02169{height:52.012031pt;}
.h6_c02169{height:56.151930pt;}
.he_c02169{height:56.155397pt;}
.hb_c02169{height:56.155610pt;}
.hc_c02169{height:56.155823pt;}
.hf_c02169{height:56.155930pt;}
.h2_c02169{height:56.156250pt;}
.h9_c02169{height:56.843110pt;}
.h1_c02169{height:56.843750pt;}
.h0_c02169{height:1122.666667pt;}
.w1_c02169{width:793.333333pt;}
.w0_c02169{width:793.626667pt;}
.x0_c02169{left:0.000000pt;}
.x1_c02169{left:113.440000pt;}
.x3_c02169{left:120.560000pt;}
.x4_c02169{left:243.440000pt;}
.x2_c02169{left:384.960000pt;}
.x5_c02169{left:640.480000pt;}
.x6_c02169{left:642.078688pt;}
.x7_c02169{left:656.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_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_a9a62862788be547d49722aa.woff2')format("woff");}.ff1_c02170{font-family:ff1_c02170;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02170;src:url('chunks/assets/font_2f57ee768f288130661fc5ec.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_8f262f8220470c2d7717c1d7.woff2')format("woff");}.ff3_c02170{font-family:ff3_c02170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02170;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff4_c02170{font-family:ff4_c02170;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;}
.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);}
.v1_c02170{vertical-align:-5.399400px;}
.v0_c02170{vertical-align:0.000000px;}
.ls1b_c02170{letter-spacing:-0.270540px;}
.ls17_c02170{letter-spacing:-0.122400px;}
.ls13_c02170{letter-spacing:-0.057600px;}
.ls16_c02170{letter-spacing:-0.050400px;}
.ls15_c02170{letter-spacing:-0.036000px;}
.ls12_c02170{letter-spacing:-0.021600px;}
.ls10_c02170{letter-spacing:-0.014400px;}
.ls19_c02170{letter-spacing:-0.012024px;}
.ls14_c02170{letter-spacing:-0.007200px;}
.ls11_c02170{letter-spacing:0.000000px;}
.ls1_c02170{letter-spacing:0.007200px;}
.ls0_c02170{letter-spacing:0.014400px;}
.ls5_c02170{letter-spacing:0.021600px;}
.lsa_c02170{letter-spacing:0.026352px;}
.ls8_c02170{letter-spacing:0.028800px;}
.lsf_c02170{letter-spacing:0.032940px;}
.ls4_c02170{letter-spacing:0.036000px;}
.lse_c02170{letter-spacing:0.039528px;}
.ls7_c02170{letter-spacing:0.043200px;}
.lsc_c02170{letter-spacing:0.048096px;}
.ls6_c02170{letter-spacing:0.050400px;}
.ls3_c02170{letter-spacing:0.057600px;}
.ls9_c02170{letter-spacing:0.065880px;}
.ls2_c02170{letter-spacing:0.072000px;}
.lsb_c02170{letter-spacing:0.078156px;}
.lsd_c02170{letter-spacing:0.084168px;}
.ls18_c02170{letter-spacing:0.144288px;}
.ls1a_c02170{letter-spacing:0.180360px;}
.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;}
}
.ws26_c02170{word-spacing:-0.258516px;}
.ws21_c02170{word-spacing:-0.237600px;}
.ws1f_c02170{word-spacing:-0.050400px;}
.ws15_c02170{word-spacing:-0.043200px;}
.ws24_c02170{word-spacing:-0.028800px;}
.ws16_c02170{word-spacing:-0.021600px;}
.ws20_c02170{word-spacing:-0.014400px;}
.ws1_c02170{word-spacing:0.000000px;}
.ws29_c02170{word-spacing:0.006012px;}
.ws28_c02170{word-spacing:0.012024px;}
.ws0_c02170{word-spacing:0.014400px;}
.ws17_c02170{word-spacing:0.021600px;}
.ws25_c02170{word-spacing:0.026352px;}
.ws2a_c02170{word-spacing:0.052704px;}
.ws2b_c02170{word-spacing:0.059292px;}
.ws27_c02170{word-spacing:0.065880px;}
.ws23_c02170{word-spacing:0.259200px;}
.ws22_c02170{word-spacing:0.302400px;}
.wsd_c02170{word-spacing:1.346400px;}
.wsf_c02170{word-spacing:1.447200px;}
.wse_c02170{word-spacing:1.497600px;}
.ws1e_c02170{word-spacing:1.771200px;}
.ws1d_c02170{word-spacing:1.778400px;}
.ws10_c02170{word-spacing:3.564000px;}
.ws13_c02170{word-spacing:4.161600px;}
.ws12_c02170{word-spacing:4.176000px;}
.ws11_c02170{word-spacing:4.320000px;}
.wsc_c02170{word-spacing:4.644000px;}
.wsb_c02170{word-spacing:4.680000px;}
.ws6_c02170{word-spacing:4.881600px;}
.ws5_c02170{word-spacing:4.982400px;}
.ws14_c02170{word-spacing:8.258400px;}
.ws8_c02170{word-spacing:8.964000px;}
.ws7_c02170{word-spacing:8.978400px;}
.ws4_c02170{word-spacing:10.008000px;}
.ws2_c02170{word-spacing:10.065600px;}
.ws3_c02170{word-spacing:10.072800px;}
.ws19_c02170{word-spacing:16.848000px;}
.ws18_c02170{word-spacing:16.912800px;}
.ws1a_c02170{word-spacing:16.934400px;}
.wsa_c02170{word-spacing:23.306400px;}
.ws1b_c02170{word-spacing:23.320800px;}
.ws1c_c02170{word-spacing:23.356800px;}
.ws9_c02170{word-spacing:23.378400px;}
._3_c02170{margin-left:-24.314400px;}
._1_c02170{margin-left:-1.036800px;}
._2_c02170{width:16.920000px;}
._4_c02170{width:91.210896px;}
._6_c02170{width:94.228920px;}
._0_c02170{width:194.400000px;}
._9_c02170{width:301.700484px;}
._7_c02170{width:367.824240px;}
._a_c02170{width:418.630896px;}
._8_c02170{width:451.610424px;}
._5_c02170{width:618.023304px;}
.fc0_c02170{color:rgb(0,0,0);}
.fs5_c02170{font-size:2.880000px;}
.fs1_c02170{font-size:47.880000px;}
.fs2_c02170{font-size:54.000000px;}
.fs3_c02170{font-size:60.120000px;}
.fs4_c02170{font-size:65.880000px;}
.fs0_c02170{font-size:72.000000px;}
.y0_c02170{bottom:0.000000px;}
.y3_c02170{bottom:57.360450px;}
.y2_c02170{bottom:78.060450px;}
.y30_c02170{bottom:122.700000px;}
.y2f_c02170{bottom:138.180450px;}
.y2e_c02170{bottom:153.750000px;}
.y2d_c02170{bottom:169.230450px;}
.y2c_c02170{bottom:184.800000px;}
.y2b_c02170{bottom:200.280450px;}
.y2a_c02170{bottom:215.850000px;}
.y29_c02170{bottom:231.330450px;}
.y28_c02170{bottom:246.900000px;}
.y27_c02170{bottom:262.380450px;}
.y26_c02170{bottom:323.040450px;}
.y25_c02170{bottom:328.800450px;}
.y24_c02170{bottom:348.510450px;}
.y23_c02170{bottom:368.220450px;}
.y22_c02170{bottom:387.930600px;}
.y21_c02170{bottom:407.730450px;}
.y20_c02170{bottom:427.440450px;}
.y1f_c02170{bottom:445.440600px;}
.y1e_c02170{bottom:463.530600px;}
.y1d_c02170{bottom:484.230450px;}
.y1c_c02170{bottom:504.930600px;}
.y1b_c02170{bottom:525.630450px;}
.y1a_c02170{bottom:546.330450px;}
.y19_c02170{bottom:567.030450px;}
.y18_c02170{bottom:587.730450px;}
.y17_c02170{bottom:607.530450px;}
.y16_c02170{bottom:626.160450px;}
.y15_c02170{bottom:647.670450px;}
.y14_c02170{bottom:669.270450px;}
.y13_c02170{bottom:700.140450px;}
.y12_c02170{bottom:719.940450px;}
.y11_c02170{bottom:746.940450px;}
.y10_c02170{bottom:777.990450px;}
.yf_c02170{bottom:808.950450px;}
.ye_c02170{bottom:840.000450px;}
.yd_c02170{bottom:871.050450px;}
.yc_c02170{bottom:902.100450px;}
.yb_c02170{bottom:933.150450px;}
.ya_c02170{bottom:964.200450px;}
.y9_c02170{bottom:995.250450px;}
.y8_c02170{bottom:1026.300450px;}
.y7_c02170{bottom:1057.350450px;}
.y6_c02170{bottom:1088.220450px;}
.y5_c02170{bottom:1114.860450px;}
.y4_c02170{bottom:1139.970450px;}
.y1_c02170{bottom:1193.160450px;}
.h7_c02170{height:2.557969px;}
.h3_c02170{height:42.011895px;}
.h5_c02170{height:47.961914px;}
.h6_c02170{height:53.397598px;}
.h2_c02170{height:63.175781px;}
.h1_c02170{height:63.949219px;}
.h4_c02170{height:70.628906px;}
.h0_c02170{height:1263.000000px;}
.w1_c02170{width:892.500000px;}
.w0_c02170{width:892.830000px;}
.x0_c02170{left:0.000000px;}
.x3_c02170{left:117.000000px;}
.x1_c02170{left:127.620000px;}
.x5_c02170{left:135.630000px;}
.x6_c02170{left:146.340000px;}
.x4_c02170{left:148.950000px;}
.x2_c02170{left:433.080000px;}
@media print{
.v1_c02170{vertical-align:-4.799467pt;}
.v0_c02170{vertical-align:0.000000pt;}
.ls1b_c02170{letter-spacing:-0.240480pt;}
.ls17_c02170{letter-spacing:-0.108800pt;}
.ls13_c02170{letter-spacing:-0.051200pt;}
.ls16_c02170{letter-spacing:-0.044800pt;}
.ls15_c02170{letter-spacing:-0.032000pt;}
.ls12_c02170{letter-spacing:-0.019200pt;}
.ls10_c02170{letter-spacing:-0.012800pt;}
.ls19_c02170{letter-spacing:-0.010688pt;}
.ls14_c02170{letter-spacing:-0.006400pt;}
.ls11_c02170{letter-spacing:0.000000pt;}
.ls1_c02170{letter-spacing:0.006400pt;}
.ls0_c02170{letter-spacing:0.012800pt;}
.ls5_c02170{letter-spacing:0.019200pt;}
.lsa_c02170{letter-spacing:0.023424pt;}
.ls8_c02170{letter-spacing:0.025600pt;}
.lsf_c02170{letter-spacing:0.029280pt;}
.ls4_c02170{letter-spacing:0.032000pt;}
.lse_c02170{letter-spacing:0.035136pt;}
.ls7_c02170{letter-spacing:0.038400pt;}
.lsc_c02170{letter-spacing:0.042752pt;}
.ls6_c02170{letter-spacing:0.044800pt;}
.ls3_c02170{letter-spacing:0.051200pt;}
.ls9_c02170{letter-spacing:0.058560pt;}
.ls2_c02170{letter-spacing:0.064000pt;}
.lsb_c02170{letter-spacing:0.069472pt;}
.lsd_c02170{letter-spacing:0.074816pt;}
.ls18_c02170{letter-spacing:0.128256pt;}
.ls1a_c02170{letter-spacing:0.160320pt;}
.ws26_c02170{word-spacing:-0.229792pt;}
.ws21_c02170{word-spacing:-0.211200pt;}
.ws1f_c02170{word-spacing:-0.044800pt;}
.ws15_c02170{word-spacing:-0.038400pt;}
.ws24_c02170{word-spacing:-0.025600pt;}
.ws16_c02170{word-spacing:-0.019200pt;}
.ws20_c02170{word-spacing:-0.012800pt;}
.ws1_c02170{word-spacing:0.000000pt;}
.ws29_c02170{word-spacing:0.005344pt;}
.ws28_c02170{word-spacing:0.010688pt;}
.ws0_c02170{word-spacing:0.012800pt;}
.ws17_c02170{word-spacing:0.019200pt;}
.ws25_c02170{word-spacing:0.023424pt;}
.ws2a_c02170{word-spacing:0.046848pt;}
.ws2b_c02170{word-spacing:0.052704pt;}
.ws27_c02170{word-spacing:0.058560pt;}
.ws23_c02170{word-spacing:0.230400pt;}
.ws22_c02170{word-spacing:0.268800pt;}
.wsd_c02170{word-spacing:1.196800pt;}
.wsf_c02170{word-spacing:1.286400pt;}
.wse_c02170{word-spacing:1.331200pt;}
.ws1e_c02170{word-spacing:1.574400pt;}
.ws1d_c02170{word-spacing:1.580800pt;}
.ws10_c02170{word-spacing:3.168000pt;}
.ws13_c02170{word-spacing:3.699200pt;}
.ws12_c02170{word-spacing:3.712000pt;}
.ws11_c02170{word-spacing:3.840000pt;}
.wsc_c02170{word-spacing:4.128000pt;}
.wsb_c02170{word-spacing:4.160000pt;}
.ws6_c02170{word-spacing:4.339200pt;}
.ws5_c02170{word-spacing:4.428800pt;}
.ws14_c02170{word-spacing:7.340800pt;}
.ws8_c02170{word-spacing:7.968000pt;}
.ws7_c02170{word-spacing:7.980800pt;}
.ws4_c02170{word-spacing:8.896000pt;}
.ws2_c02170{word-spacing:8.947200pt;}
.ws3_c02170{word-spacing:8.953600pt;}
.ws19_c02170{word-spacing:14.976000pt;}
.ws18_c02170{word-spacing:15.033600pt;}
.ws1a_c02170{word-spacing:15.052800pt;}
.wsa_c02170{word-spacing:20.716800pt;}
.ws1b_c02170{word-spacing:20.729600pt;}
.ws1c_c02170{word-spacing:20.761600pt;}
.ws9_c02170{word-spacing:20.780800pt;}
._3_c02170{margin-left:-21.612800pt;}
._1_c02170{margin-left:-0.921600pt;}
._2_c02170{width:15.040000pt;}
._4_c02170{width:81.076352pt;}
._6_c02170{width:83.759040pt;}
._0_c02170{width:172.800000pt;}
._9_c02170{width:268.178208pt;}
._7_c02170{width:326.954880pt;}
._a_c02170{width:372.116352pt;}
._8_c02170{width:401.431488pt;}
._5_c02170{width:549.354048pt;}
.fs5_c02170{font-size:2.560000pt;}
.fs1_c02170{font-size:42.560000pt;}
.fs2_c02170{font-size:48.000000pt;}
.fs3_c02170{font-size:53.440000pt;}
.fs4_c02170{font-size:58.560000pt;}
.fs0_c02170{font-size:64.000000pt;}
.y0_c02170{bottom:0.000000pt;}
.y3_c02170{bottom:50.987067pt;}
.y2_c02170{bottom:69.387067pt;}
.y30_c02170{bottom:109.066667pt;}
.y2f_c02170{bottom:122.827067pt;}
.y2e_c02170{bottom:136.666667pt;}
.y2d_c02170{bottom:150.427067pt;}
.y2c_c02170{bottom:164.266667pt;}
.y2b_c02170{bottom:178.027067pt;}
.y2a_c02170{bottom:191.866667pt;}
.y29_c02170{bottom:205.627067pt;}
.y28_c02170{bottom:219.466667pt;}
.y27_c02170{bottom:233.227067pt;}
.y26_c02170{bottom:287.147067pt;}
.y25_c02170{bottom:292.267067pt;}
.y24_c02170{bottom:309.787067pt;}
.y23_c02170{bottom:327.307067pt;}
.y22_c02170{bottom:344.827200pt;}
.y21_c02170{bottom:362.427067pt;}
.y20_c02170{bottom:379.947067pt;}
.y1f_c02170{bottom:395.947200pt;}
.y1e_c02170{bottom:412.027200pt;}
.y1d_c02170{bottom:430.427067pt;}
.y1c_c02170{bottom:448.827200pt;}
.y1b_c02170{bottom:467.227067pt;}
.y1a_c02170{bottom:485.627067pt;}
.y19_c02170{bottom:504.027067pt;}
.y18_c02170{bottom:522.427067pt;}
.y17_c02170{bottom:540.027067pt;}
.y16_c02170{bottom:556.587067pt;}
.y15_c02170{bottom:575.707067pt;}
.y14_c02170{bottom:594.907067pt;}
.y13_c02170{bottom:622.347067pt;}
.y12_c02170{bottom:639.947067pt;}
.y11_c02170{bottom:663.947067pt;}
.y10_c02170{bottom:691.547067pt;}
.yf_c02170{bottom:719.067067pt;}
.ye_c02170{bottom:746.667067pt;}
.yd_c02170{bottom:774.267067pt;}
.yc_c02170{bottom:801.867067pt;}
.yb_c02170{bottom:829.467067pt;}
.ya_c02170{bottom:857.067067pt;}
.y9_c02170{bottom:884.667067pt;}
.y8_c02170{bottom:912.267067pt;}
.y7_c02170{bottom:939.867067pt;}
.y6_c02170{bottom:967.307067pt;}
.y5_c02170{bottom:990.987067pt;}
.y4_c02170{bottom:1013.307067pt;}
.y1_c02170{bottom:1060.587067pt;}
.h7_c02170{height:2.273750pt;}
.h3_c02170{height:37.343906pt;}
.h5_c02170{height:42.632812pt;}
.h6_c02170{height:47.464531pt;}
.h2_c02170{height:56.156250pt;}
.h1_c02170{height:56.843750pt;}
.h4_c02170{height:62.781250pt;}
.h0_c02170{height:1122.666667pt;}
.w1_c02170{width:793.333333pt;}
.w0_c02170{width:793.626667pt;}
.x0_c02170{left:0.000000pt;}
.x3_c02170{left:104.000000pt;}
.x1_c02170{left:113.440000pt;}
.x5_c02170{left:120.560000pt;}
.x6_c02170{left:130.080000pt;}
.x4_c02170{left:132.400000pt;}
.x2_c02170{left:384.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_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_286f0aa85e016abd656fab42.woff2')format("woff");}.ff1_c02171{font-family:ff1_c02171;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02171;src:url('chunks/assets/font_ed11c8d82f8f3bfba05f50ea.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_52e6c130ca880923e2e497ad.woff2')format("woff");}.ff3_c02171{font-family:ff3_c02171;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_c02171;src:url('chunks/assets/font_ed550496050312108fb643f6.woff2')format("woff");}.ff4_c02171{font-family:ff4_c02171;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_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);}
.v2_c02171{vertical-align:-9.000000px;}
.v1_c02171{vertical-align:-5.400000px;}
.v0_c02171{vertical-align:0.000000px;}
.ls1c_c02171{letter-spacing:-0.036000px;}
.ls1b_c02171{letter-spacing:-0.021600px;}
.ls18_c02171{letter-spacing:-0.014400px;}
.ls19_c02171{letter-spacing:0.000000px;}
.ls3_c02171{letter-spacing:0.007200px;}
.ls0_c02171{letter-spacing:0.013176px;}
.ls4_c02171{letter-spacing:0.014400px;}
.ls8_c02171{letter-spacing:0.019764px;}
.lsf_c02171{letter-spacing:0.021600px;}
.ls14_c02171{letter-spacing:0.028800px;}
.ls17_c02171{letter-spacing:0.036000px;}
.lsd_c02171{letter-spacing:0.039528px;}
.ls16_c02171{letter-spacing:0.043200px;}
.ls5_c02171{letter-spacing:0.046116px;}
.ls13_c02171{letter-spacing:0.050400px;}
.ls10_c02171{letter-spacing:0.057600px;}
.ls11_c02171{letter-spacing:0.059292px;}
.ls15_c02171{letter-spacing:0.064800px;}
.lsa_c02171{letter-spacing:0.065880px;}
.lse_c02171{letter-spacing:0.072000px;}
.lsb_c02171{letter-spacing:0.072468px;}
.ls12_c02171{letter-spacing:0.079200px;}
.lsc_c02171{letter-spacing:0.085644px;}
.ls2_c02171{letter-spacing:0.144000px;}
.ls1a_c02171{letter-spacing:0.181944px;}
.ls6_c02171{letter-spacing:140.040000px;}
.ls7_c02171{letter-spacing:144.000000px;}
.ls1_c02171{letter-spacing:189.720000px;}
.ls9_c02171{letter-spacing:292.320000px;}
.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;}
}
.ws3_c02171{word-spacing:-16.529292px;}
.ws2_c02171{word-spacing:-16.509528px;}
.ws1_c02171{word-spacing:-16.489764px;}
.ws0_c02171{word-spacing:-16.483176px;}
.ws22_c02171{word-spacing:-0.216000px;}
.ws1b_c02171{word-spacing:-0.194400px;}
.ws1a_c02171{word-spacing:-0.180000px;}
.ws18_c02171{word-spacing:-0.144000px;}
.ws1d_c02171{word-spacing:-0.136800px;}
.ws1c_c02171{word-spacing:-0.129600px;}
.wsb_c02171{word-spacing:-0.115200px;}
.ws23_c02171{word-spacing:-0.086400px;}
.ws19_c02171{word-spacing:-0.079200px;}
.ws13_c02171{word-spacing:-0.057600px;}
.ws1f_c02171{word-spacing:-0.043200px;}
.ws21_c02171{word-spacing:-0.036000px;}
.ws20_c02171{word-spacing:-0.028800px;}
.ws17_c02171{word-spacing:-0.021600px;}
.ws16_c02171{word-spacing:-0.014400px;}
.ws1e_c02171{word-spacing:-0.007200px;}
.ws5_c02171{word-spacing:0.000000px;}
.wsf_c02171{word-spacing:0.006588px;}
.ws4_c02171{word-spacing:0.014400px;}
.wse_c02171{word-spacing:0.019764px;}
.wsd_c02171{word-spacing:0.026352px;}
.wsc_c02171{word-spacing:0.046116px;}
.ws6_c02171{word-spacing:1.792800px;}
.ws11_c02171{word-spacing:4.514400px;}
.ws10_c02171{word-spacing:4.608000px;}
.ws12_c02171{word-spacing:4.672800px;}
.ws15_c02171{word-spacing:10.332000px;}
.ws14_c02171{word-spacing:10.360800px;}
.ws8_c02171{word-spacing:15.753600px;}
.ws7_c02171{word-spacing:15.789600px;}
.ws9_c02171{word-spacing:27.259200px;}
.wsa_c02171{word-spacing:27.381600px;}
._2_c02171{margin-left:-1.067256px;}
._1_c02171{width:1.863000px;}
._0_c02171{width:194.400000px;}
.fc0_c02171{color:rgb(0,0,0);}
.fs3_c02171{font-size:47.880000px;}
.fs1_c02171{font-size:54.000000px;}
.fs2_c02171{font-size:65.880000px;}
.fs0_c02171{font-size:72.000000px;}
.y0_c02171{bottom:0.000000px;}
.y3_c02171{bottom:57.360450px;}
.y2_c02171{bottom:78.060450px;}
.y35_c02171{bottom:132.600450px;}
.y34_c02171{bottom:163.650450px;}
.y33_c02171{bottom:194.700450px;}
.y32_c02171{bottom:225.750450px;}
.y31_c02171{bottom:256.800450px;}
.y30_c02171{bottom:287.850450px;}
.y2f_c02171{bottom:315.390150px;}
.y2e_c02171{bottom:330.870600px;}
.y2d_c02171{bottom:346.440150px;}
.y2c_c02171{bottom:361.920600px;}
.y2b_c02171{bottom:377.490150px;}
.y2a_c02171{bottom:392.970600px;}
.y29_c02171{bottom:408.540150px;}
.y28_c02171{bottom:424.020600px;}
.y27_c02171{bottom:440.490600px;}
.y26_c02171{bottom:461.190600px;}
.y25_c02171{bottom:480.990600px;}
.y24_c02171{bottom:496.471050px;}
.y23_c02171{bottom:512.040600px;}
.y22_c02171{bottom:529.410450px;}
.y21_c02171{bottom:550.380450px;}
.y20_c02171{bottom:570.630450px;}
.y1f_c02171{bottom:591.330450px;}
.y1e_c02171{bottom:612.570450px;}
.y1d_c02171{bottom:634.170450px;}
.y1c_c02171{bottom:655.410450px;}
.y1b_c02171{bottom:677.100450px;}
.y1a_c02171{bottom:697.800450px;}
.y19_c02171{bottom:718.500450px;}
.y18_c02171{bottom:739.200450px;}
.y17_c02171{bottom:759.900450px;}
.y16_c02171{bottom:780.600450px;}
.y15_c02171{bottom:801.570450px;}
.y14_c02171{bottom:821.730600px;}
.y13_c02171{bottom:842.430600px;}
.y12_c02171{bottom:863.400450px;}
.y11_c02171{bottom:883.110600px;}
.y10_c02171{bottom:902.100450px;}
.yf_c02171{bottom:921.090450px;}
.ye_c02171{bottom:940.080450px;}
.yd_c02171{bottom:959.071125px;}
.yc_c02171{bottom:977.970450px;}
.yb_c02171{bottom:999.480450px;}
.ya_c02171{bottom:1020.900450px;}
.y9_c02171{bottom:1040.970450px;}
.y8_c02171{bottom:1061.670450px;}
.y7_c02171{bottom:1082.370450px;}
.y6_c02171{bottom:1104.420450px;}
.y5_c02171{bottom:1123.500450px;}
.y4_c02171{bottom:1139.970450px;}
.y1_c02171{bottom:1193.160450px;}
.h3_c02171{height:47.961914px;}
.h7_c02171{height:58.513535px;}
.h2_c02171{height:63.175781px;}
.h6_c02171{height:63.946519px;}
.h1_c02171{height:63.949219px;}
.h4_c02171{height:65.228906px;}
.h5_c02171{height:70.628906px;}
.h0_c02171{height:1263.000000px;}
.w1_c02171{width:892.500000px;}
.w0_c02171{width:892.830000px;}
.x0_c02171{left:0.000000px;}
.x1_c02171{left:127.620000px;}
.x3_c02171{left:135.630000px;}
.x4_c02171{left:252.630000px;}
.x2_c02171{left:433.080000px;}
@media print{
.v2_c02171{vertical-align:-8.000000pt;}
.v1_c02171{vertical-align:-4.800000pt;}
.v0_c02171{vertical-align:0.000000pt;}
.ls1c_c02171{letter-spacing:-0.032000pt;}
.ls1b_c02171{letter-spacing:-0.019200pt;}
.ls18_c02171{letter-spacing:-0.012800pt;}
.ls19_c02171{letter-spacing:0.000000pt;}
.ls3_c02171{letter-spacing:0.006400pt;}
.ls0_c02171{letter-spacing:0.011712pt;}
.ls4_c02171{letter-spacing:0.012800pt;}
.ls8_c02171{letter-spacing:0.017568pt;}
.lsf_c02171{letter-spacing:0.019200pt;}
.ls14_c02171{letter-spacing:0.025600pt;}
.ls17_c02171{letter-spacing:0.032000pt;}
.lsd_c02171{letter-spacing:0.035136pt;}
.ls16_c02171{letter-spacing:0.038400pt;}
.ls5_c02171{letter-spacing:0.040992pt;}
.ls13_c02171{letter-spacing:0.044800pt;}
.ls10_c02171{letter-spacing:0.051200pt;}
.ls11_c02171{letter-spacing:0.052704pt;}
.ls15_c02171{letter-spacing:0.057600pt;}
.lsa_c02171{letter-spacing:0.058560pt;}
.lse_c02171{letter-spacing:0.064000pt;}
.lsb_c02171{letter-spacing:0.064416pt;}
.ls12_c02171{letter-spacing:0.070400pt;}
.lsc_c02171{letter-spacing:0.076128pt;}
.ls2_c02171{letter-spacing:0.128000pt;}
.ls1a_c02171{letter-spacing:0.161728pt;}
.ls6_c02171{letter-spacing:124.480000pt;}
.ls7_c02171{letter-spacing:128.000000pt;}
.ls1_c02171{letter-spacing:168.640000pt;}
.ls9_c02171{letter-spacing:259.840000pt;}
.ws3_c02171{word-spacing:-14.692704pt;}
.ws2_c02171{word-spacing:-14.675136pt;}
.ws1_c02171{word-spacing:-14.657568pt;}
.ws0_c02171{word-spacing:-14.651712pt;}
.ws22_c02171{word-spacing:-0.192000pt;}
.ws1b_c02171{word-spacing:-0.172800pt;}
.ws1a_c02171{word-spacing:-0.160000pt;}
.ws18_c02171{word-spacing:-0.128000pt;}
.ws1d_c02171{word-spacing:-0.121600pt;}
.ws1c_c02171{word-spacing:-0.115200pt;}
.wsb_c02171{word-spacing:-0.102400pt;}
.ws23_c02171{word-spacing:-0.076800pt;}
.ws19_c02171{word-spacing:-0.070400pt;}
.ws13_c02171{word-spacing:-0.051200pt;}
.ws1f_c02171{word-spacing:-0.038400pt;}
.ws21_c02171{word-spacing:-0.032000pt;}
.ws20_c02171{word-spacing:-0.025600pt;}
.ws17_c02171{word-spacing:-0.019200pt;}
.ws16_c02171{word-spacing:-0.012800pt;}
.ws1e_c02171{word-spacing:-0.006400pt;}
.ws5_c02171{word-spacing:0.000000pt;}
.wsf_c02171{word-spacing:0.005856pt;}
.ws4_c02171{word-spacing:0.012800pt;}
.wse_c02171{word-spacing:0.017568pt;}
.wsd_c02171{word-spacing:0.023424pt;}
.wsc_c02171{word-spacing:0.040992pt;}
.ws6_c02171{word-spacing:1.593600pt;}
.ws11_c02171{word-spacing:4.012800pt;}
.ws10_c02171{word-spacing:4.096000pt;}
.ws12_c02171{word-spacing:4.153600pt;}
.ws15_c02171{word-spacing:9.184000pt;}
.ws14_c02171{word-spacing:9.209600pt;}
.ws8_c02171{word-spacing:14.003200pt;}
.ws7_c02171{word-spacing:14.035200pt;}
.ws9_c02171{word-spacing:24.230400pt;}
.wsa_c02171{word-spacing:24.339200pt;}
._2_c02171{margin-left:-0.948672pt;}
._1_c02171{width:1.656000pt;}
._0_c02171{width:172.800000pt;}
.fs3_c02171{font-size:42.560000pt;}
.fs1_c02171{font-size:48.000000pt;}
.fs2_c02171{font-size:58.560000pt;}
.fs0_c02171{font-size:64.000000pt;}
.y0_c02171{bottom:0.000000pt;}
.y3_c02171{bottom:50.987067pt;}
.y2_c02171{bottom:69.387067pt;}
.y35_c02171{bottom:117.867067pt;}
.y34_c02171{bottom:145.467067pt;}
.y33_c02171{bottom:173.067067pt;}
.y32_c02171{bottom:200.667067pt;}
.y31_c02171{bottom:228.267067pt;}
.y30_c02171{bottom:255.867067pt;}
.y2f_c02171{bottom:280.346800pt;}
.y2e_c02171{bottom:294.107200pt;}
.y2d_c02171{bottom:307.946800pt;}
.y2c_c02171{bottom:321.707200pt;}
.y2b_c02171{bottom:335.546800pt;}
.y2a_c02171{bottom:349.307200pt;}
.y29_c02171{bottom:363.146800pt;}
.y28_c02171{bottom:376.907200pt;}
.y27_c02171{bottom:391.547200pt;}
.y26_c02171{bottom:409.947200pt;}
.y25_c02171{bottom:427.547200pt;}
.y24_c02171{bottom:441.307600pt;}
.y23_c02171{bottom:455.147200pt;}
.y22_c02171{bottom:470.587067pt;}
.y21_c02171{bottom:489.227067pt;}
.y20_c02171{bottom:507.227067pt;}
.y1f_c02171{bottom:525.627067pt;}
.y1e_c02171{bottom:544.507067pt;}
.y1d_c02171{bottom:563.707067pt;}
.y1c_c02171{bottom:582.587067pt;}
.y1b_c02171{bottom:601.867067pt;}
.y1a_c02171{bottom:620.267067pt;}
.y19_c02171{bottom:638.667067pt;}
.y18_c02171{bottom:657.067067pt;}
.y17_c02171{bottom:675.467067pt;}
.y16_c02171{bottom:693.867067pt;}
.y15_c02171{bottom:712.507067pt;}
.y14_c02171{bottom:730.427200pt;}
.y13_c02171{bottom:748.827200pt;}
.y12_c02171{bottom:767.467067pt;}
.y11_c02171{bottom:784.987200pt;}
.y10_c02171{bottom:801.867067pt;}
.yf_c02171{bottom:818.747067pt;}
.ye_c02171{bottom:835.627067pt;}
.yd_c02171{bottom:852.507667pt;}
.yc_c02171{bottom:869.307067pt;}
.yb_c02171{bottom:888.427067pt;}
.ya_c02171{bottom:907.467067pt;}
.y9_c02171{bottom:925.307067pt;}
.y8_c02171{bottom:943.707067pt;}
.y7_c02171{bottom:962.107067pt;}
.y6_c02171{bottom:981.707067pt;}
.y5_c02171{bottom:998.667067pt;}
.y4_c02171{bottom:1013.307067pt;}
.y1_c02171{bottom:1060.587067pt;}
.h3_c02171{height:42.632812pt;}
.h7_c02171{height:52.012031pt;}
.h2_c02171{height:56.156250pt;}
.h6_c02171{height:56.841350pt;}
.h1_c02171{height:56.843750pt;}
.h4_c02171{height:57.981250pt;}
.h5_c02171{height:62.781250pt;}
.h0_c02171{height:1122.666667pt;}
.w1_c02171{width:793.333333pt;}
.w0_c02171{width:793.626667pt;}
.x0_c02171{left:0.000000pt;}
.x1_c02171{left:113.440000pt;}
.x3_c02171{left:120.560000pt;}
.x4_c02171{left:224.560000pt;}
.x2_c02171{left:384.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_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_d6d593a3c3601aefe75ff7b7.woff2')format("woff");}.ff1_c02172{font-family:ff1_c02172;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02172;src:url('chunks/assets/font_a9f3f5015d1b22b93713f462.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_54c6d3f59d3bbaa5adfd66c7.woff2')format("woff");}.ff3_c02172{font-family:ff3_c02172;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02172;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02172{font-family:ff4_c02172;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;}
.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;}
.ls2a_c02172{letter-spacing:-0.842400px;}
.ls3a_c02172{letter-spacing:-0.228456px;}
.ls32_c02172{letter-spacing:-0.168336px;}
.ls3b_c02172{letter-spacing:-0.144288px;}
.ls26_c02172{letter-spacing:-0.140400px;}
.ls38_c02172{letter-spacing:-0.138276px;}
.ls28_c02172{letter-spacing:-0.136800px;}
.ls21_c02172{letter-spacing:-0.129600px;}
.ls3d_c02172{letter-spacing:-0.115200px;}
.ls2c_c02172{letter-spacing:-0.093600px;}
.ls3e_c02172{letter-spacing:-0.079200px;}
.ls33_c02172{letter-spacing:-0.066132px;}
.ls2d_c02172{letter-spacing:-0.064800px;}
.ls24_c02172{letter-spacing:-0.059400px;}
.ls37_c02172{letter-spacing:-0.054108px;}
.ls36_c02172{letter-spacing:-0.048096px;}
.ls1e_c02172{letter-spacing:-0.043200px;}
.ls31_c02172{letter-spacing:-0.036072px;}
.ls35_c02172{letter-spacing:-0.024048px;}
.ls29_c02172{letter-spacing:-0.021600px;}
.ls20_c02172{letter-spacing:-0.016776px;}
.ls1c_c02172{letter-spacing:-0.014400px;}
.ls3c_c02172{letter-spacing:-0.012024px;}
.ls23_c02172{letter-spacing:-0.010800px;}
.ls1f_c02172{letter-spacing:-0.007200px;}
.ls1d_c02172{letter-spacing:0.000000px;}
.ls3_c02172{letter-spacing:0.007200px;}
.ls9_c02172{letter-spacing:0.010800px;}
.ls2_c02172{letter-spacing:0.014400px;}
.ls7_c02172{letter-spacing:0.016200px;}
.ls34_c02172{letter-spacing:0.018036px;}
.ls17_c02172{letter-spacing:0.019764px;}
.ls6_c02172{letter-spacing:0.021600px;}
.ls1a_c02172{letter-spacing:0.026352px;}
.ls1_c02172{letter-spacing:0.028800px;}
.ls8_c02172{letter-spacing:0.037800px;}
.ls0_c02172{letter-spacing:0.043200px;}
.ls2b_c02172{letter-spacing:0.050400px;}
.ls2e_c02172{letter-spacing:0.054108px;}
.ls4_c02172{letter-spacing:0.057600px;}
.ls19_c02172{letter-spacing:0.059292px;}
.ls14_c02172{letter-spacing:0.060120px;}
.ls5_c02172{letter-spacing:0.064800px;}
.ls18_c02172{letter-spacing:0.065880px;}
.lsf_c02172{letter-spacing:0.072000px;}
.ls2f_c02172{letter-spacing:0.078156px;}
.lsd_c02172{letter-spacing:0.086400px;}
.ls11_c02172{letter-spacing:0.090180px;}
.ls22_c02172{letter-spacing:0.092232px;}
.ls16_c02172{letter-spacing:0.093600px;}
.ls13_c02172{letter-spacing:0.114228px;}
.ls39_c02172{letter-spacing:0.120240px;}
.ls30_c02172{letter-spacing:0.126252px;}
.lsb_c02172{letter-spacing:0.178200px;}
.ls15_c02172{letter-spacing:0.180360px;}
.ls25_c02172{letter-spacing:0.216000px;}
.ls12_c02172{letter-spacing:0.216432px;}
.ls1b_c02172{letter-spacing:0.230580px;}
.lsa_c02172{letter-spacing:0.232200px;}
.ls10_c02172{letter-spacing:0.288000px;}
.lsc_c02172{letter-spacing:0.324000px;}
.ls27_c02172{letter-spacing:0.340200px;}
.lse_c02172{letter-spacing:0.648000px;}
.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;}
}
.wsd_c02172{word-spacing:-72.000000px;}
.ws28_c02172{word-spacing:-65.880000px;}
.ws15_c02172{word-spacing:-60.120000px;}
.ws2_c02172{word-spacing:-54.000000px;}
.ws8_c02172{word-spacing:-0.394200px;}
.ws18_c02172{word-spacing:-0.276552px;}
.ws4_c02172{word-spacing:-0.270000px;}
.ws1c_c02172{word-spacing:-0.180360px;}
.ws22_c02172{word-spacing:-0.165600px;}
.wsa_c02172{word-spacing:-0.140400px;}
.ws25_c02172{word-spacing:-0.136800px;}
.ws2a_c02172{word-spacing:-0.125172px;}
.wsf_c02172{word-spacing:-0.122400px;}
.ws20_c02172{word-spacing:-0.120240px;}
.ws23_c02172{word-spacing:-0.100800px;}
.ws9_c02172{word-spacing:-0.097200px;}
.ws2c_c02172{word-spacing:-0.092232px;}
.ws3_c02172{word-spacing:-0.091800px;}
.ws27_c02172{word-spacing:-0.085644px;}
.ws36_c02172{word-spacing:-0.079200px;}
.ws17_c02172{word-spacing:-0.078156px;}
.ws0_c02172{word-spacing:-0.070200px;}
.ws5_c02172{word-spacing:-0.064800px;}
.ws16_c02172{word-spacing:-0.060120px;}
.ws6_c02172{word-spacing:-0.054000px;}
.wsc_c02172{word-spacing:-0.050400px;}
.ws21_c02172{word-spacing:-0.048096px;}
.ws19_c02172{word-spacing:-0.036072px;}
.ws12_c02172{word-spacing:-0.024048px;}
.ws2f_c02172{word-spacing:-0.014400px;}
.ws1e_c02172{word-spacing:-0.012024px;}
.ws11_c02172{word-spacing:-0.007200px;}
.ws1a_c02172{word-spacing:-0.006012px;}
.ws2e_c02172{word-spacing:0.000000px;}
.ws1_c02172{word-spacing:0.005400px;}
.ws14_c02172{word-spacing:0.006012px;}
.ws26_c02172{word-spacing:0.007200px;}
.ws2d_c02172{word-spacing:0.014400px;}
.ws10_c02172{word-spacing:0.021600px;}
.ws24_c02172{word-spacing:0.043200px;}
.wsb_c02172{word-spacing:0.064800px;}
.ws1b_c02172{word-spacing:0.078156px;}
.ws1f_c02172{word-spacing:0.084168px;}
.ws7_c02172{word-spacing:0.086400px;}
.ws13_c02172{word-spacing:0.108216px;}
.ws1d_c02172{word-spacing:0.168336px;}
.ws39_c02172{word-spacing:0.612000px;}
.ws3a_c02172{word-spacing:0.655200px;}
.wse_c02172{word-spacing:0.770400px;}
.ws34_c02172{word-spacing:3.931200px;}
.ws35_c02172{word-spacing:3.945600px;}
.ws30_c02172{word-spacing:5.400000px;}
.ws3b_c02172{word-spacing:7.797600px;}
.ws3c_c02172{word-spacing:7.833600px;}
.ws3d_c02172{word-spacing:7.862400px;}
.ws31_c02172{word-spacing:9.252000px;}
.ws33_c02172{word-spacing:9.280800px;}
.ws32_c02172{word-spacing:9.360000px;}
.ws38_c02172{word-spacing:12.088800px;}
.ws37_c02172{word-spacing:12.196800px;}
.ws29_c02172{word-spacing:122.881356px;}
.ws2b_c02172{word-spacing:123.235632px;}
._1_c02172{margin-left:-1.051200px;}
._4_c02172{width:1.656000px;}
._0_c02172{width:194.400000px;}
._3_c02172{width:2457.289764px;}
._2_c02172{width:2461.609584px;}
.fc0_c02172{color:rgb(0,0,0);}
.fs2_c02172{font-size:29.880000px;}
.fs4_c02172{font-size:54.000000px;}
.fs6_c02172{font-size:60.120000px;}
.fs5_c02172{font-size:64.800000px;}
.fs3_c02172{font-size:65.880000px;}
.fs0_c02172{font-size:72.000000px;}
.fs1_c02172{font-size:83.880000px;}
.y0_c02172{bottom:0.000000px;}
.y3_c02172{bottom:57.360450px;}
.y2_c02172{bottom:78.060450px;}
.y11_c02172{bottom:119.910450px;}
.y1e_c02172{bottom:145.200450px;}
.y2e_c02172{bottom:150.782592px;}
.y23_c02172{bottom:159.061116px;}
.y2d_c02172{bottom:169.053060px;}
.y28_c02172{bottom:173.011962px;}
.y1f_c02172{bottom:200.910648px;}
.y30_c02172{bottom:206.581467px;}
.y24_c02172{bottom:214.861494px;}
.y2f_c02172{bottom:224.851935px;}
.y29_c02172{bottom:228.812340px;}
.y20_c02172{bottom:256.620846px;}
.y32_c02172{bottom:262.291665px;}
.y25_c02172{bottom:270.571692px;}
.y31_c02172{bottom:280.562133px;}
.y2a_c02172{bottom:284.522538px;}
.y21_c02172{bottom:312.421224px;}
.y34_c02172{bottom:318.001863px;}
.y26_c02172{bottom:326.281890px;}
.y33_c02172{bottom:336.272331px;}
.y2b_c02172{bottom:340.232736px;}
.y22_c02172{bottom:368.131422px;}
.y36_c02172{bottom:373.799982px;}
.y27_c02172{bottom:382.082268px;}
.y35_c02172{bottom:392.071206px;}
.y2c_c02172{bottom:396.033114px;}
.y38_c02172{bottom:445.620600px;}
.y37_c02172{bottom:476.670450px;}
.y10_c02172{bottom:519.510450px;}
.yf_c02172{bottom:550.560450px;}
.ye_c02172{bottom:581.610450px;}
.yd_c02172{bottom:612.660450px;}
.yc_c02172{bottom:643.530450px;}
.yb_c02172{bottom:661.980450px;}
.ya_c02172{bottom:668.910450px;}
.y12_c02172{bottom:697.530450px;}
.y17_c02172{bottom:699.690000px;}
.y13_c02172{bottom:736.320450px;}
.y18_c02172{bottom:738.570000px;}
.y14_c02172{bottom:775.560450px;}
.y19_c02172{bottom:777.359550px;}
.y15_c02172{bottom:815.340450px;}
.y1a_c02172{bottom:816.149100px;}
.y16_c02172{bottom:854.220450px;}
.y1b_c02172{bottom:854.938650px;}
.y1d_c02172{bottom:911.280450px;}
.y1c_c02172{bottom:942.060450px;}
.y9_c02172{bottom:984.900450px;}
.y8_c02172{bottom:1015.950450px;}
.y7_c02172{bottom:1047.000450px;}
.y6_c02172{bottom:1078.050450px;}
.y5_c02172{bottom:1108.920450px;}
.y4_c02172{bottom:1139.970450px;}
.y1_c02172{bottom:1193.160450px;}
.h4_c02172{height:26.538926px;}
.h7_c02172{height:39.208008px;}
.h8_c02172{height:43.651582px;}
.h6_c02172{height:47.833770px;}
.h5_c02172{height:52.277344px;}
.h2_c02172{height:63.175781px;}
.h1_c02172{height:63.949219px;}
.h3_c02172{height:74.500840px;}
.h0_c02172{height:1263.000000px;}
.w1_c02172{width:892.500000px;}
.w0_c02172{width:892.830000px;}
.x0_c02172{left:0.000000px;}
.x4_c02172{left:107.190000px;}
.x1_c02172{left:127.620000px;}
.x3_c02172{left:148.950000px;}
.x20_c02172{left:150.390621px;}
.x23_c02172{left:163.254798px;}
.x1e_c02172{left:164.520324px;}
.xd_c02172{left:165.964950px;}
.xc_c02172{left:179.999550px;}
.xe_c02172{left:187.926750px;}
.xf_c02172{left:192.519450px;}
.x24_c02172{left:216.900000px;}
.x10_c02172{left:256.950000px;}
.x22_c02172{left:269.004375px;}
.x6_c02172{left:276.120000px;}
.x21_c02172{left:277.287408px;}
.x1f_c02172{left:283.230270px;}
.x25_c02172{left:385.650000px;}
.x5_c02172{left:430.560000px;}
.x2_c02172{left:433.080000px;}
.x13_c02172{left:450.900441px;}
.x1a_c02172{left:459.269145px;}
.x15_c02172{left:467.640855px;}
.x11_c02172{left:476.820000px;}
.x17_c02172{left:481.500018px;}
.xb_c02172{left:485.460000px;}
.x1b_c02172{left:489.958902px;}
.xa_c02172{left:497.610000px;}
.x1c_c02172{left:509.669244px;}
.x19_c02172{left:526.409658px;}
.x9_c02172{left:568.980000px;}
.x16_c02172{left:573.930009px;}
.x18_c02172{left:618.929829px;}
.x14_c02172{left:624.330108px;}
.x8_c02172{left:655.020000px;}
.x12_c02172{left:666.360000px;}
.x7_c02172{left:670.140000px;}
.x1d_c02172{left:694.529226px;}
@media print{
.v0_c02172{vertical-align:0.000000pt;}
.ls2a_c02172{letter-spacing:-0.748800pt;}
.ls3a_c02172{letter-spacing:-0.203072pt;}
.ls32_c02172{letter-spacing:-0.149632pt;}
.ls3b_c02172{letter-spacing:-0.128256pt;}
.ls26_c02172{letter-spacing:-0.124800pt;}
.ls38_c02172{letter-spacing:-0.122912pt;}
.ls28_c02172{letter-spacing:-0.121600pt;}
.ls21_c02172{letter-spacing:-0.115200pt;}
.ls3d_c02172{letter-spacing:-0.102400pt;}
.ls2c_c02172{letter-spacing:-0.083200pt;}
.ls3e_c02172{letter-spacing:-0.070400pt;}
.ls33_c02172{letter-spacing:-0.058784pt;}
.ls2d_c02172{letter-spacing:-0.057600pt;}
.ls24_c02172{letter-spacing:-0.052800pt;}
.ls37_c02172{letter-spacing:-0.048096pt;}
.ls36_c02172{letter-spacing:-0.042752pt;}
.ls1e_c02172{letter-spacing:-0.038400pt;}
.ls31_c02172{letter-spacing:-0.032064pt;}
.ls35_c02172{letter-spacing:-0.021376pt;}
.ls29_c02172{letter-spacing:-0.019200pt;}
.ls20_c02172{letter-spacing:-0.014912pt;}
.ls1c_c02172{letter-spacing:-0.012800pt;}
.ls3c_c02172{letter-spacing:-0.010688pt;}
.ls23_c02172{letter-spacing:-0.009600pt;}
.ls1f_c02172{letter-spacing:-0.006400pt;}
.ls1d_c02172{letter-spacing:0.000000pt;}
.ls3_c02172{letter-spacing:0.006400pt;}
.ls9_c02172{letter-spacing:0.009600pt;}
.ls2_c02172{letter-spacing:0.012800pt;}
.ls7_c02172{letter-spacing:0.014400pt;}
.ls34_c02172{letter-spacing:0.016032pt;}
.ls17_c02172{letter-spacing:0.017568pt;}
.ls6_c02172{letter-spacing:0.019200pt;}
.ls1a_c02172{letter-spacing:0.023424pt;}
.ls1_c02172{letter-spacing:0.025600pt;}
.ls8_c02172{letter-spacing:0.033600pt;}
.ls0_c02172{letter-spacing:0.038400pt;}
.ls2b_c02172{letter-spacing:0.044800pt;}
.ls2e_c02172{letter-spacing:0.048096pt;}
.ls4_c02172{letter-spacing:0.051200pt;}
.ls19_c02172{letter-spacing:0.052704pt;}
.ls14_c02172{letter-spacing:0.053440pt;}
.ls5_c02172{letter-spacing:0.057600pt;}
.ls18_c02172{letter-spacing:0.058560pt;}
.lsf_c02172{letter-spacing:0.064000pt;}
.ls2f_c02172{letter-spacing:0.069472pt;}
.lsd_c02172{letter-spacing:0.076800pt;}
.ls11_c02172{letter-spacing:0.080160pt;}
.ls22_c02172{letter-spacing:0.081984pt;}
.ls16_c02172{letter-spacing:0.083200pt;}
.ls13_c02172{letter-spacing:0.101536pt;}
.ls39_c02172{letter-spacing:0.106880pt;}
.ls30_c02172{letter-spacing:0.112224pt;}
.lsb_c02172{letter-spacing:0.158400pt;}
.ls15_c02172{letter-spacing:0.160320pt;}
.ls25_c02172{letter-spacing:0.192000pt;}
.ls12_c02172{letter-spacing:0.192384pt;}
.ls1b_c02172{letter-spacing:0.204960pt;}
.lsa_c02172{letter-spacing:0.206400pt;}
.ls10_c02172{letter-spacing:0.256000pt;}
.lsc_c02172{letter-spacing:0.288000pt;}
.ls27_c02172{letter-spacing:0.302400pt;}
.lse_c02172{letter-spacing:0.576000pt;}
.wsd_c02172{word-spacing:-64.000000pt;}
.ws28_c02172{word-spacing:-58.560000pt;}
.ws15_c02172{word-spacing:-53.440000pt;}
.ws2_c02172{word-spacing:-48.000000pt;}
.ws8_c02172{word-spacing:-0.350400pt;}
.ws18_c02172{word-spacing:-0.245824pt;}
.ws4_c02172{word-spacing:-0.240000pt;}
.ws1c_c02172{word-spacing:-0.160320pt;}
.ws22_c02172{word-spacing:-0.147200pt;}
.wsa_c02172{word-spacing:-0.124800pt;}
.ws25_c02172{word-spacing:-0.121600pt;}
.ws2a_c02172{word-spacing:-0.111264pt;}
.wsf_c02172{word-spacing:-0.108800pt;}
.ws20_c02172{word-spacing:-0.106880pt;}
.ws23_c02172{word-spacing:-0.089600pt;}
.ws9_c02172{word-spacing:-0.086400pt;}
.ws2c_c02172{word-spacing:-0.081984pt;}
.ws3_c02172{word-spacing:-0.081600pt;}
.ws27_c02172{word-spacing:-0.076128pt;}
.ws36_c02172{word-spacing:-0.070400pt;}
.ws17_c02172{word-spacing:-0.069472pt;}
.ws0_c02172{word-spacing:-0.062400pt;}
.ws5_c02172{word-spacing:-0.057600pt;}
.ws16_c02172{word-spacing:-0.053440pt;}
.ws6_c02172{word-spacing:-0.048000pt;}
.wsc_c02172{word-spacing:-0.044800pt;}
.ws21_c02172{word-spacing:-0.042752pt;}
.ws19_c02172{word-spacing:-0.032064pt;}
.ws12_c02172{word-spacing:-0.021376pt;}
.ws2f_c02172{word-spacing:-0.012800pt;}
.ws1e_c02172{word-spacing:-0.010688pt;}
.ws11_c02172{word-spacing:-0.006400pt;}
.ws1a_c02172{word-spacing:-0.005344pt;}
.ws2e_c02172{word-spacing:0.000000pt;}
.ws1_c02172{word-spacing:0.004800pt;}
.ws14_c02172{word-spacing:0.005344pt;}
.ws26_c02172{word-spacing:0.006400pt;}
.ws2d_c02172{word-spacing:0.012800pt;}
.ws10_c02172{word-spacing:0.019200pt;}
.ws24_c02172{word-spacing:0.038400pt;}
.wsb_c02172{word-spacing:0.057600pt;}
.ws1b_c02172{word-spacing:0.069472pt;}
.ws1f_c02172{word-spacing:0.074816pt;}
.ws7_c02172{word-spacing:0.076800pt;}
.ws13_c02172{word-spacing:0.096192pt;}
.ws1d_c02172{word-spacing:0.149632pt;}
.ws39_c02172{word-spacing:0.544000pt;}
.ws3a_c02172{word-spacing:0.582400pt;}
.wse_c02172{word-spacing:0.684800pt;}
.ws34_c02172{word-spacing:3.494400pt;}
.ws35_c02172{word-spacing:3.507200pt;}
.ws30_c02172{word-spacing:4.800000pt;}
.ws3b_c02172{word-spacing:6.931200pt;}
.ws3c_c02172{word-spacing:6.963200pt;}
.ws3d_c02172{word-spacing:6.988800pt;}
.ws31_c02172{word-spacing:8.224000pt;}
.ws33_c02172{word-spacing:8.249600pt;}
.ws32_c02172{word-spacing:8.320000pt;}
.ws38_c02172{word-spacing:10.745600pt;}
.ws37_c02172{word-spacing:10.841600pt;}
.ws29_c02172{word-spacing:109.227872pt;}
.ws2b_c02172{word-spacing:109.542784pt;}
._1_c02172{margin-left:-0.934400pt;}
._4_c02172{width:1.472000pt;}
._0_c02172{width:172.800000pt;}
._3_c02172{width:2184.257568pt;}
._2_c02172{width:2188.097408pt;}
.fs2_c02172{font-size:26.560000pt;}
.fs4_c02172{font-size:48.000000pt;}
.fs6_c02172{font-size:53.440000pt;}
.fs5_c02172{font-size:57.600000pt;}
.fs3_c02172{font-size:58.560000pt;}
.fs0_c02172{font-size:64.000000pt;}
.fs1_c02172{font-size:74.560000pt;}
.y0_c02172{bottom:0.000000pt;}
.y3_c02172{bottom:50.987067pt;}
.y2_c02172{bottom:69.387067pt;}
.y11_c02172{bottom:106.587067pt;}
.y1e_c02172{bottom:129.067067pt;}
.y2e_c02172{bottom:134.028971pt;}
.y23_c02172{bottom:141.387659pt;}
.y2d_c02172{bottom:150.269387pt;}
.y28_c02172{bottom:153.788411pt;}
.y1f_c02172{bottom:178.587243pt;}
.y30_c02172{bottom:183.627971pt;}
.y24_c02172{bottom:190.987995pt;}
.y2f_c02172{bottom:199.868387pt;}
.y29_c02172{bottom:203.388747pt;}
.y20_c02172{bottom:228.107419pt;}
.y32_c02172{bottom:233.148147pt;}
.y25_c02172{bottom:240.508171pt;}
.y31_c02172{bottom:249.388563pt;}
.y2a_c02172{bottom:252.908923pt;}
.y21_c02172{bottom:277.707755pt;}
.y34_c02172{bottom:282.668323pt;}
.y26_c02172{bottom:290.028347pt;}
.y33_c02172{bottom:298.908739pt;}
.y2b_c02172{bottom:302.429099pt;}
.y22_c02172{bottom:327.227931pt;}
.y36_c02172{bottom:332.266651pt;}
.y27_c02172{bottom:339.628683pt;}
.y35_c02172{bottom:348.507739pt;}
.y2c_c02172{bottom:352.029435pt;}
.y38_c02172{bottom:396.107200pt;}
.y37_c02172{bottom:423.707067pt;}
.y10_c02172{bottom:461.787067pt;}
.yf_c02172{bottom:489.387067pt;}
.ye_c02172{bottom:516.987067pt;}
.yd_c02172{bottom:544.587067pt;}
.yc_c02172{bottom:572.027067pt;}
.yb_c02172{bottom:588.427067pt;}
.ya_c02172{bottom:594.587067pt;}
.y12_c02172{bottom:620.027067pt;}
.y17_c02172{bottom:621.946667pt;}
.y13_c02172{bottom:654.507067pt;}
.y18_c02172{bottom:656.506667pt;}
.y14_c02172{bottom:689.387067pt;}
.y19_c02172{bottom:690.986267pt;}
.y15_c02172{bottom:724.747067pt;}
.y1a_c02172{bottom:725.465867pt;}
.y16_c02172{bottom:759.307067pt;}
.y1b_c02172{bottom:759.945467pt;}
.y1d_c02172{bottom:810.027067pt;}
.y1c_c02172{bottom:837.387067pt;}
.y9_c02172{bottom:875.467067pt;}
.y8_c02172{bottom:903.067067pt;}
.y7_c02172{bottom:930.667067pt;}
.y6_c02172{bottom:958.267067pt;}
.y5_c02172{bottom:985.707067pt;}
.y4_c02172{bottom:1013.307067pt;}
.y1_c02172{bottom:1060.587067pt;}
.h4_c02172{height:23.590156pt;}
.h7_c02172{height:34.851562pt;}
.h8_c02172{height:38.801406pt;}
.h6_c02172{height:42.518906pt;}
.h5_c02172{height:46.468750pt;}
.h2_c02172{height:56.156250pt;}
.h1_c02172{height:56.843750pt;}
.h3_c02172{height:66.222969pt;}
.h0_c02172{height:1122.666667pt;}
.w1_c02172{width:793.333333pt;}
.w0_c02172{width:793.626667pt;}
.x0_c02172{left:0.000000pt;}
.x4_c02172{left:95.280000pt;}
.x1_c02172{left:113.440000pt;}
.x3_c02172{left:132.400000pt;}
.x20_c02172{left:133.680552pt;}
.x23_c02172{left:145.115376pt;}
.x1e_c02172{left:146.240288pt;}
.xd_c02172{left:147.524400pt;}
.xc_c02172{left:159.999600pt;}
.xe_c02172{left:167.046000pt;}
.xf_c02172{left:171.128400pt;}
.x24_c02172{left:192.800000pt;}
.x10_c02172{left:228.400000pt;}
.x22_c02172{left:239.115000pt;}
.x6_c02172{left:245.440000pt;}
.x21_c02172{left:246.477696pt;}
.x1f_c02172{left:251.760240pt;}
.x25_c02172{left:342.800000pt;}
.x5_c02172{left:382.720000pt;}
.x2_c02172{left:384.960000pt;}
.x13_c02172{left:400.800392pt;}
.x1a_c02172{left:408.239240pt;}
.x15_c02172{left:415.680760pt;}
.x11_c02172{left:423.840000pt;}
.x17_c02172{left:428.000016pt;}
.xb_c02172{left:431.520000pt;}
.x1b_c02172{left:435.519024pt;}
.xa_c02172{left:442.320000pt;}
.x1c_c02172{left:453.039328pt;}
.x19_c02172{left:467.919696pt;}
.x9_c02172{left:505.760000pt;}
.x16_c02172{left:510.160008pt;}
.x18_c02172{left:550.159848pt;}
.x14_c02172{left:554.960096pt;}
.x8_c02172{left:582.240000pt;}
.x12_c02172{left:592.320000pt;}
.x7_c02172{left:595.680000pt;}
.x1d_c02172{left:617.359312pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ff88717120cf49d6e2762c1.woff2')format("woff");}.ff1_c02173{font-family:ff1_c02173;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02173;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v4_c02173{vertical-align:-5.760000px;}
.v0_c02173{vertical-align:0.000000px;}
.v1_c02173{vertical-align:1.800000px;}
.v2_c02173{vertical-align:5.760000px;}
.v3_c02173{vertical-align:11.880000px;}
.ls44_c02173{letter-spacing:-0.222444px;}
.ls46_c02173{letter-spacing:-0.180360px;}
.ls42_c02173{letter-spacing:-0.138276px;}
.ls43_c02173{letter-spacing:-0.114228px;}
.ls48_c02173{letter-spacing:-0.108216px;}
.ls3e_c02173{letter-spacing:-0.075600px;}
.ls36_c02173{letter-spacing:-0.046116px;}
.ls39_c02173{letter-spacing:-0.043092px;}
.ls47_c02173{letter-spacing:-0.030060px;}
.ls3f_c02173{letter-spacing:-0.028728px;}
.ls37_c02173{letter-spacing:-0.023940px;}
.ls34_c02173{letter-spacing:-0.014400px;}
.ls3c_c02173{letter-spacing:-0.013176px;}
.ls41_c02173{letter-spacing:-0.012024px;}
.ls3b_c02173{letter-spacing:-0.007200px;}
.ls35_c02173{letter-spacing:0.000000px;}
.ls28_c02173{letter-spacing:0.007200px;}
.ls2e_c02173{letter-spacing:0.019152px;}
.ls8_c02173{letter-spacing:0.019764px;}
.ls17_c02173{letter-spacing:0.023940px;}
.ls2f_c02173{letter-spacing:0.028728px;}
.ls16_c02173{letter-spacing:0.028800px;}
.ls19_c02173{letter-spacing:0.033516px;}
.ls3a_c02173{letter-spacing:0.043092px;}
.ls2d_c02173{letter-spacing:0.047880px;}
.ls4_c02173{letter-spacing:0.059292px;}
.ls6_c02173{letter-spacing:0.065880px;}
.ls1d_c02173{letter-spacing:0.066132px;}
.ls38_c02173{letter-spacing:0.067032px;}
.ls0_c02173{letter-spacing:0.079056px;}
.ls20_c02173{letter-spacing:0.085644px;}
.ls18_c02173{letter-spacing:0.086184px;}
.ls45_c02173{letter-spacing:0.090180px;}
.ls1a_c02173{letter-spacing:0.090972px;}
.ls13_c02173{letter-spacing:0.092232px;}
.lsd_c02173{letter-spacing:0.098820px;}
.ls40_c02173{letter-spacing:0.100548px;}
.ls30_c02173{letter-spacing:0.134064px;}
.ls12_c02173{letter-spacing:0.138348px;}
.lsc_c02173{letter-spacing:0.151524px;}
.ls1b_c02173{letter-spacing:0.158112px;}
.lsa_c02173{letter-spacing:0.177876px;}
.ls10_c02173{letter-spacing:0.180000px;}
.ls3d_c02173{letter-spacing:0.180360px;}
.ls1c_c02173{letter-spacing:47.160000px;}
.ls27_c02173{letter-spacing:62.280000px;}
.ls15_c02173{letter-spacing:173.520000px;}
.ls1f_c02173{letter-spacing:191.880000px;}
.ls2_c02173{letter-spacing:195.480000px;}
.ls1_c02173{letter-spacing:196.200000px;}
.ls3_c02173{letter-spacing:197.640000px;}
.lsb_c02173{letter-spacing:206.280000px;}
.ls9_c02173{letter-spacing:220.680000px;}
.ls23_c02173{letter-spacing:225.000000px;}
.ls31_c02173{letter-spacing:232.650000px;}
.ls11_c02173{letter-spacing:239.400000px;}
.ls21_c02173{letter-spacing:291.240000px;}
.ls1e_c02173{letter-spacing:298.800000px;}
.ls22_c02173{letter-spacing:309.960000px;}
.ls5_c02173{letter-spacing:319.320000px;}
.ls2a_c02173{letter-spacing:324.000000px;}
.ls7_c02173{letter-spacing:330.480000px;}
.ls29_c02173{letter-spacing:331.560000px;}
.lse_c02173{letter-spacing:339.480000px;}
.ls2c_c02173{letter-spacing:342.720000px;}
.ls24_c02173{letter-spacing:364.680000px;}
.ls33_c02173{letter-spacing:367.651836px;}
.lsf_c02173{letter-spacing:368.640000px;}
.ls14_c02173{letter-spacing:401.760000px;}
.ls26_c02173{letter-spacing:425.700000px;}
.ls2b_c02173{letter-spacing:425.701584px;}
.ls25_c02173{letter-spacing:901.800000px;}
.ls32_c02173{letter-spacing:1145.880000px;}
.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;}
}
.ws3_c02173{word-spacing:-16.647876px;}
.wsb_c02173{word-spacing:-16.628112px;}
.ws5_c02173{word-spacing:-16.568820px;}
.ws8_c02173{word-spacing:-16.562232px;}
.ws0_c02173{word-spacing:-16.549056px;}
.ws6_c02173{word-spacing:-16.529292px;}
.ws2_c02173{word-spacing:-16.470000px;}
.ws1_c02173{word-spacing:-16.423884px;}
.ws14_c02173{word-spacing:-15.210360px;}
.wsc_c02173{word-spacing:-15.096132px;}
.ws2c_c02173{word-spacing:-0.360720px;}
.ws2a_c02173{word-spacing:-0.258516px;}
.ws2e_c02173{word-spacing:-0.240480px;}
.ws28_c02173{word-spacing:-0.191520px;}
.ws20_c02173{word-spacing:-0.177156px;}
.ws27_c02173{word-spacing:-0.134064px;}
.ws29_c02173{word-spacing:-0.119700px;}
.ws1f_c02173{word-spacing:-0.028800px;}
.ws1a_c02173{word-spacing:-0.007200px;}
.ws19_c02173{word-spacing:0.000000px;}
.ws1b_c02173{word-spacing:0.006588px;}
.ws21_c02173{word-spacing:0.007200px;}
.ws18_c02173{word-spacing:0.014400px;}
.ws1d_c02173{word-spacing:0.026352px;}
.ws1c_c02173{word-spacing:0.032940px;}
.ws1e_c02173{word-spacing:0.072468px;}
.ws22_c02173{word-spacing:0.092232px;}
.ws23_c02173{word-spacing:0.105408px;}
.ws30_c02173{word-spacing:0.198396px;}
.ws24_c02173{word-spacing:0.253800px;}
.ws2b_c02173{word-spacing:62.867484px;}
.ws2d_c02173{word-spacing:92.428488px;}
.ws2f_c02173{word-spacing:92.723076px;}
.ws26_c02173{word-spacing:110.100060px;}
.ws13_c02173{word-spacing:159.756372px;}
.wsa_c02173{word-spacing:159.758496px;}
.wsd_c02173{word-spacing:171.320940px;}
.ws9_c02173{word-spacing:174.878460px;}
.wsf_c02173{word-spacing:204.445404px;}
.ws15_c02173{word-spacing:204.465168px;}
.ws4_c02173{word-spacing:207.680112px;}
.ws11_c02173{word-spacing:207.706464px;}
.ws17_c02173{word-spacing:237.200940px;}
.ws7_c02173{word-spacing:240.824340px;}
.ws12_c02173{word-spacing:408.513492px;}
.ws10_c02173{word-spacing:408.515616px;}
.ws16_c02173{word-spacing:408.520080px;}
.wse_c02173{word-spacing:408.522204px;}
.ws25_c02173{word-spacing:862.424136px;}
._e_c02173{margin-left:-798.909912px;}
._1b_c02173{margin-left:-169.923168px;}
._1_c02173{margin-left:-1.305396px;}
._f_c02173{width:1.439064px;}
._9_c02173{width:79.200000px;}
._7_c02173{width:80.714808px;}
._6_c02173{width:112.828788px;}
._17_c02173{width:116.272080px;}
._5_c02173{width:138.216096px;}
._8_c02173{width:156.232800px;}
._2_c02173{width:162.678960px;}
._11_c02173{width:168.018300px;}
._12_c02173{width:170.301240px;}
._3_c02173{width:174.645180px;}
._10_c02173{width:175.742784px;}
._0_c02173{width:194.400000px;}
._1a_c02173{width:197.911440px;}
._4_c02173{width:204.390000px;}
._a_c02173{width:224.436132px;}
._b_c02173{width:227.016000px;}
._15_c02173{width:232.356060px;}
._16_c02173{width:233.624484px;}
._14_c02173{width:237.499632px;}
._d_c02173{width:245.289600px;}
._18_c02173{width:251.527860px;}
._c_c02173{width:257.922936px;}
._19_c02173{width:274.244040px;}
._13_c02173{width:348.265368px;}
.fc0_c02173{color:rgb(0,0,0);}
.fs3_c02173{font-size:47.880000px;}
.fs1_c02173{font-size:54.000000px;}
.fs4_c02173{font-size:60.120000px;}
.fs2_c02173{font-size:65.880000px;}
.fs0_c02173{font-size:72.000000px;}
.y0_c02173{bottom:0.000000px;}
.y3_c02173{bottom:57.360450px;}
.y2_c02173{bottom:78.060450px;}
.y3a_c02173{bottom:131.430900px;}
.y39_c02173{bottom:146.730450px;}
.y38_c02173{bottom:162.210900px;}
.y37_c02173{bottom:177.780450px;}
.y36_c02173{bottom:194.970450px;}
.y35_c02173{bottom:215.760450px;}
.y34_c02173{bottom:233.760450px;}
.y33_c02173{bottom:251.760450px;}
.y32_c02173{bottom:269.760450px;}
.y31_c02173{bottom:287.760450px;}
.y30_c02173{bottom:305.130450px;}
.y2f_c02173{bottom:318.900450px;}
.y2e_c02173{bottom:332.670450px;}
.y2d_c02173{bottom:346.530450px;}
.y2c_c02173{bottom:363.090450px;}
.y2b_c02173{bottom:385.140450px;}
.y2a_c02173{bottom:400.620900px;}
.y29_c02173{bottom:416.190450px;}
.y28_c02173{bottom:431.670900px;}
.y27_c02173{bottom:447.240450px;}
.y26_c02173{bottom:466.590600px;}
.y25_c02173{bottom:487.290600px;}
.y24_c02173{bottom:507.990450px;}
.y23_c02173{bottom:527.250450px;}
.y22_c02173{bottom:549.390450px;}
.y21_c02173{bottom:570.090450px;}
.y20_c02173{bottom:590.790450px;}
.y1f_c02173{bottom:610.050450px;}
.y1e_c02173{bottom:632.190450px;}
.y1d_c02173{bottom:652.890450px;}
.y1c_c02173{bottom:673.590450px;}
.y1b_c02173{bottom:692.850450px;}
.y1a_c02173{bottom:714.990450px;}
.y19_c02173{bottom:735.690450px;}
.y18_c02173{bottom:756.390450px;}
.y17_c02173{bottom:775.650450px;}
.y16_c02173{bottom:797.790600px;}
.y15_c02173{bottom:818.490450px;}
.y14_c02173{bottom:839.190450px;}
.y13_c02173{bottom:858.450450px;}
.y12_c02173{bottom:877.800450px;}
.y11_c02173{bottom:891.660450px;}
.y10_c02173{bottom:908.220450px;}
.yf_c02173{bottom:930.270000px;}
.ye_c02173{bottom:945.750450px;}
.yd_c02173{bottom:963.480450px;}
.yc_c02173{bottom:982.470450px;}
.yb_c02173{bottom:1001.370450px;}
.ya_c02173{bottom:1020.360450px;}
.y9_c02173{bottom:1039.350450px;}
.y8_c02173{bottom:1060.050450px;}
.y7_c02173{bottom:1080.750450px;}
.y6_c02173{bottom:1101.540450px;}
.y5_c02173{bottom:1123.500450px;}
.y4_c02173{bottom:1139.970450px;}
.y1_c02173{bottom:1193.160450px;}
.h5_c02173{height:42.526230px;}
.h9_c02173{height:47.381836px;}
.h3_c02173{height:47.961914px;}
.h7_c02173{height:53.397598px;}
.h2_c02173{height:63.175781px;}
.h1_c02173{height:63.949219px;}
.h8_c02173{height:64.557598px;}
.h4_c02173{height:64.975781px;}
.h6_c02173{height:69.709219px;}
.h0_c02173{height:1263.000000px;}
.w1_c02173{width:892.500000px;}
.w0_c02173{width:892.830000px;}
.x0_c02173{left:0.000000px;}
.x1_c02173{left:127.620000px;}
.x3_c02173{left:135.630000px;}
.x5_c02173{left:159.120000px;}
.x4_c02173{left:161.820000px;}
.x2_c02173{left:433.080000px;}
.x6_c02173{left:562.050000px;}
.xa_c02173{left:579.420000px;}
.x9_c02173{left:590.310000px;}
.x7_c02173{left:615.870000px;}
.x8_c02173{left:669.420000px;}
.xc_c02173{left:680.310000px;}
.xd_c02173{left:690.300000px;}
.xb_c02173{left:701.010000px;}
@media print{
.v4_c02173{vertical-align:-5.120000pt;}
.v0_c02173{vertical-align:0.000000pt;}
.v1_c02173{vertical-align:1.600000pt;}
.v2_c02173{vertical-align:5.120000pt;}
.v3_c02173{vertical-align:10.560000pt;}
.ls44_c02173{letter-spacing:-0.197728pt;}
.ls46_c02173{letter-spacing:-0.160320pt;}
.ls42_c02173{letter-spacing:-0.122912pt;}
.ls43_c02173{letter-spacing:-0.101536pt;}
.ls48_c02173{letter-spacing:-0.096192pt;}
.ls3e_c02173{letter-spacing:-0.067200pt;}
.ls36_c02173{letter-spacing:-0.040992pt;}
.ls39_c02173{letter-spacing:-0.038304pt;}
.ls47_c02173{letter-spacing:-0.026720pt;}
.ls3f_c02173{letter-spacing:-0.025536pt;}
.ls37_c02173{letter-spacing:-0.021280pt;}
.ls34_c02173{letter-spacing:-0.012800pt;}
.ls3c_c02173{letter-spacing:-0.011712pt;}
.ls41_c02173{letter-spacing:-0.010688pt;}
.ls3b_c02173{letter-spacing:-0.006400pt;}
.ls35_c02173{letter-spacing:0.000000pt;}
.ls28_c02173{letter-spacing:0.006400pt;}
.ls2e_c02173{letter-spacing:0.017024pt;}
.ls8_c02173{letter-spacing:0.017568pt;}
.ls17_c02173{letter-spacing:0.021280pt;}
.ls2f_c02173{letter-spacing:0.025536pt;}
.ls16_c02173{letter-spacing:0.025600pt;}
.ls19_c02173{letter-spacing:0.029792pt;}
.ls3a_c02173{letter-spacing:0.038304pt;}
.ls2d_c02173{letter-spacing:0.042560pt;}
.ls4_c02173{letter-spacing:0.052704pt;}
.ls6_c02173{letter-spacing:0.058560pt;}
.ls1d_c02173{letter-spacing:0.058784pt;}
.ls38_c02173{letter-spacing:0.059584pt;}
.ls0_c02173{letter-spacing:0.070272pt;}
.ls20_c02173{letter-spacing:0.076128pt;}
.ls18_c02173{letter-spacing:0.076608pt;}
.ls45_c02173{letter-spacing:0.080160pt;}
.ls1a_c02173{letter-spacing:0.080864pt;}
.ls13_c02173{letter-spacing:0.081984pt;}
.lsd_c02173{letter-spacing:0.087840pt;}
.ls40_c02173{letter-spacing:0.089376pt;}
.ls30_c02173{letter-spacing:0.119168pt;}
.ls12_c02173{letter-spacing:0.122976pt;}
.lsc_c02173{letter-spacing:0.134688pt;}
.ls1b_c02173{letter-spacing:0.140544pt;}
.lsa_c02173{letter-spacing:0.158112pt;}
.ls10_c02173{letter-spacing:0.160000pt;}
.ls3d_c02173{letter-spacing:0.160320pt;}
.ls1c_c02173{letter-spacing:41.920000pt;}
.ls27_c02173{letter-spacing:55.360000pt;}
.ls15_c02173{letter-spacing:154.240000pt;}
.ls1f_c02173{letter-spacing:170.560000pt;}
.ls2_c02173{letter-spacing:173.760000pt;}
.ls1_c02173{letter-spacing:174.400000pt;}
.ls3_c02173{letter-spacing:175.680000pt;}
.lsb_c02173{letter-spacing:183.360000pt;}
.ls9_c02173{letter-spacing:196.160000pt;}
.ls23_c02173{letter-spacing:200.000000pt;}
.ls31_c02173{letter-spacing:206.800000pt;}
.ls11_c02173{letter-spacing:212.800000pt;}
.ls21_c02173{letter-spacing:258.880000pt;}
.ls1e_c02173{letter-spacing:265.600000pt;}
.ls22_c02173{letter-spacing:275.520000pt;}
.ls5_c02173{letter-spacing:283.840000pt;}
.ls2a_c02173{letter-spacing:288.000000pt;}
.ls7_c02173{letter-spacing:293.760000pt;}
.ls29_c02173{letter-spacing:294.720000pt;}
.lse_c02173{letter-spacing:301.760000pt;}
.ls2c_c02173{letter-spacing:304.640000pt;}
.ls24_c02173{letter-spacing:324.160000pt;}
.ls33_c02173{letter-spacing:326.801632pt;}
.lsf_c02173{letter-spacing:327.680000pt;}
.ls14_c02173{letter-spacing:357.120000pt;}
.ls26_c02173{letter-spacing:378.400000pt;}
.ls2b_c02173{letter-spacing:378.401408pt;}
.ls25_c02173{letter-spacing:801.600000pt;}
.ls32_c02173{letter-spacing:1018.560000pt;}
.ws3_c02173{word-spacing:-14.798112pt;}
.wsb_c02173{word-spacing:-14.780544pt;}
.ws5_c02173{word-spacing:-14.727840pt;}
.ws8_c02173{word-spacing:-14.721984pt;}
.ws0_c02173{word-spacing:-14.710272pt;}
.ws6_c02173{word-spacing:-14.692704pt;}
.ws2_c02173{word-spacing:-14.640000pt;}
.ws1_c02173{word-spacing:-14.599008pt;}
.ws14_c02173{word-spacing:-13.520320pt;}
.wsc_c02173{word-spacing:-13.418784pt;}
.ws2c_c02173{word-spacing:-0.320640pt;}
.ws2a_c02173{word-spacing:-0.229792pt;}
.ws2e_c02173{word-spacing:-0.213760pt;}
.ws28_c02173{word-spacing:-0.170240pt;}
.ws20_c02173{word-spacing:-0.157472pt;}
.ws27_c02173{word-spacing:-0.119168pt;}
.ws29_c02173{word-spacing:-0.106400pt;}
.ws1f_c02173{word-spacing:-0.025600pt;}
.ws1a_c02173{word-spacing:-0.006400pt;}
.ws19_c02173{word-spacing:0.000000pt;}
.ws1b_c02173{word-spacing:0.005856pt;}
.ws21_c02173{word-spacing:0.006400pt;}
.ws18_c02173{word-spacing:0.012800pt;}
.ws1d_c02173{word-spacing:0.023424pt;}
.ws1c_c02173{word-spacing:0.029280pt;}
.ws1e_c02173{word-spacing:0.064416pt;}
.ws22_c02173{word-spacing:0.081984pt;}
.ws23_c02173{word-spacing:0.093696pt;}
.ws30_c02173{word-spacing:0.176352pt;}
.ws24_c02173{word-spacing:0.225600pt;}
.ws2b_c02173{word-spacing:55.882208pt;}
.ws2d_c02173{word-spacing:82.158656pt;}
.ws2f_c02173{word-spacing:82.420512pt;}
.ws26_c02173{word-spacing:97.866720pt;}
.ws13_c02173{word-spacing:142.005664pt;}
.wsa_c02173{word-spacing:142.007552pt;}
.wsd_c02173{word-spacing:152.285280pt;}
.ws9_c02173{word-spacing:155.447520pt;}
.wsf_c02173{word-spacing:181.729248pt;}
.ws15_c02173{word-spacing:181.746816pt;}
.ws4_c02173{word-spacing:184.604544pt;}
.ws11_c02173{word-spacing:184.627968pt;}
.ws17_c02173{word-spacing:210.845280pt;}
.ws7_c02173{word-spacing:214.066080pt;}
.ws12_c02173{word-spacing:363.123104pt;}
.ws10_c02173{word-spacing:363.124992pt;}
.ws16_c02173{word-spacing:363.128960pt;}
.wse_c02173{word-spacing:363.130848pt;}
.ws25_c02173{word-spacing:766.599232pt;}
._e_c02173{margin-left:-710.142144pt;}
._1b_c02173{margin-left:-151.042816pt;}
._1_c02173{margin-left:-1.160352pt;}
._f_c02173{width:1.279168pt;}
._9_c02173{width:70.400000pt;}
._7_c02173{width:71.746496pt;}
._6_c02173{width:100.292256pt;}
._17_c02173{width:103.352960pt;}
._5_c02173{width:122.858752pt;}
._8_c02173{width:138.873600pt;}
._2_c02173{width:144.603520pt;}
._11_c02173{width:149.349600pt;}
._12_c02173{width:151.378880pt;}
._3_c02173{width:155.240160pt;}
._10_c02173{width:156.215808pt;}
._0_c02173{width:172.800000pt;}
._1a_c02173{width:175.921280pt;}
._4_c02173{width:181.680000pt;}
._a_c02173{width:199.498784pt;}
._b_c02173{width:201.792000pt;}
._15_c02173{width:206.538720pt;}
._16_c02173{width:207.666208pt;}
._14_c02173{width:211.110784pt;}
._d_c02173{width:218.035200pt;}
._18_c02173{width:223.580320pt;}
._c_c02173{width:229.264832pt;}
._19_c02173{width:243.772480pt;}
._13_c02173{width:309.569216pt;}
.fs3_c02173{font-size:42.560000pt;}
.fs1_c02173{font-size:48.000000pt;}
.fs4_c02173{font-size:53.440000pt;}
.fs2_c02173{font-size:58.560000pt;}
.fs0_c02173{font-size:64.000000pt;}
.y0_c02173{bottom:0.000000pt;}
.y3_c02173{bottom:50.987067pt;}
.y2_c02173{bottom:69.387067pt;}
.y3a_c02173{bottom:116.827467pt;}
.y39_c02173{bottom:130.427067pt;}
.y38_c02173{bottom:144.187467pt;}
.y37_c02173{bottom:158.027067pt;}
.y36_c02173{bottom:173.307067pt;}
.y35_c02173{bottom:191.787067pt;}
.y34_c02173{bottom:207.787067pt;}
.y33_c02173{bottom:223.787067pt;}
.y32_c02173{bottom:239.787067pt;}
.y31_c02173{bottom:255.787067pt;}
.y30_c02173{bottom:271.227067pt;}
.y2f_c02173{bottom:283.467067pt;}
.y2e_c02173{bottom:295.707067pt;}
.y2d_c02173{bottom:308.027067pt;}
.y2c_c02173{bottom:322.747067pt;}
.y2b_c02173{bottom:342.347067pt;}
.y2a_c02173{bottom:356.107467pt;}
.y29_c02173{bottom:369.947067pt;}
.y28_c02173{bottom:383.707467pt;}
.y27_c02173{bottom:397.547067pt;}
.y26_c02173{bottom:414.747200pt;}
.y25_c02173{bottom:433.147200pt;}
.y24_c02173{bottom:451.547067pt;}
.y23_c02173{bottom:468.667067pt;}
.y22_c02173{bottom:488.347067pt;}
.y21_c02173{bottom:506.747067pt;}
.y20_c02173{bottom:525.147067pt;}
.y1f_c02173{bottom:542.267067pt;}
.y1e_c02173{bottom:561.947067pt;}
.y1d_c02173{bottom:580.347067pt;}
.y1c_c02173{bottom:598.747067pt;}
.y1b_c02173{bottom:615.867067pt;}
.y1a_c02173{bottom:635.547067pt;}
.y19_c02173{bottom:653.947067pt;}
.y18_c02173{bottom:672.347067pt;}
.y17_c02173{bottom:689.467067pt;}
.y16_c02173{bottom:709.147200pt;}
.y15_c02173{bottom:727.547067pt;}
.y14_c02173{bottom:745.947067pt;}
.y13_c02173{bottom:763.067067pt;}
.y12_c02173{bottom:780.267067pt;}
.y11_c02173{bottom:792.587067pt;}
.y10_c02173{bottom:807.307067pt;}
.yf_c02173{bottom:826.906667pt;}
.ye_c02173{bottom:840.667067pt;}
.yd_c02173{bottom:856.427067pt;}
.yc_c02173{bottom:873.307067pt;}
.yb_c02173{bottom:890.107067pt;}
.ya_c02173{bottom:906.987067pt;}
.y9_c02173{bottom:923.867067pt;}
.y8_c02173{bottom:942.267067pt;}
.y7_c02173{bottom:960.667067pt;}
.y6_c02173{bottom:979.147067pt;}
.y5_c02173{bottom:998.667067pt;}
.y4_c02173{bottom:1013.307067pt;}
.y1_c02173{bottom:1060.587067pt;}
.h5_c02173{height:37.801094pt;}
.h9_c02173{height:42.117188pt;}
.h3_c02173{height:42.632812pt;}
.h7_c02173{height:47.464531pt;}
.h2_c02173{height:56.156250pt;}
.h1_c02173{height:56.843750pt;}
.h8_c02173{height:57.384531pt;}
.h4_c02173{height:57.756250pt;}
.h6_c02173{height:61.963750pt;}
.h0_c02173{height:1122.666667pt;}
.w1_c02173{width:793.333333pt;}
.w0_c02173{width:793.626667pt;}
.x0_c02173{left:0.000000pt;}
.x1_c02173{left:113.440000pt;}
.x3_c02173{left:120.560000pt;}
.x5_c02173{left:141.440000pt;}
.x4_c02173{left:143.840000pt;}
.x2_c02173{left:384.960000pt;}
.x6_c02173{left:499.600000pt;}
.xa_c02173{left:515.040000pt;}
.x9_c02173{left:524.720000pt;}
.x7_c02173{left:547.440000pt;}
.x8_c02173{left:595.040000pt;}
.xc_c02173{left:604.720000pt;}
.xd_c02173{left:613.600000pt;}
.xb_c02173{left:623.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_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_0c209bd44b868f4559b2a46a.woff2')format("woff");}.ff1_c02174{font-family:ff1_c02174;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02174;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v8_c02174{vertical-align:-11.160000px;}
.v3_c02174{vertical-align:-3.960000px;}
.v2_c02174{vertical-align:-2.520000px;}
.v1_c02174{vertical-align:-1.440000px;}
.v0_c02174{vertical-align:0.000000px;}
.v6_c02174{vertical-align:1.080000px;}
.v4_c02174{vertical-align:2.520000px;}
.v5_c02174{vertical-align:3.960000px;}
.v7_c02174{vertical-align:5.400000px;}
.ls22_c02174{letter-spacing:-0.086184px;}
.ls1e_c02174{letter-spacing:-0.043200px;}
.ls20_c02174{letter-spacing:-0.019152px;}
.ls1a_c02174{letter-spacing:-0.014400px;}
.ls1f_c02174{letter-spacing:-0.010800px;}
.ls24_c02174{letter-spacing:-0.009576px;}
.ls26_c02174{letter-spacing:-0.007200px;}
.ls25_c02174{letter-spacing:-0.004788px;}
.ls1b_c02174{letter-spacing:0.000000px;}
.ls0_c02174{letter-spacing:0.010800px;}
.ls3_c02174{letter-spacing:0.012636px;}
.ls1c_c02174{letter-spacing:0.014400px;}
.ls13_c02174{letter-spacing:0.019152px;}
.ls15_c02174{letter-spacing:0.021600px;}
.ls2_c02174{letter-spacing:0.028728px;}
.ls4_c02174{letter-spacing:0.032400px;}
.ls9_c02174{letter-spacing:0.037800px;}
.ls1_c02174{letter-spacing:0.043092px;}
.ls8_c02174{letter-spacing:0.043200px;}
.ls17_c02174{letter-spacing:0.052668px;}
.lsc_c02174{letter-spacing:0.076608px;}
.ls10_c02174{letter-spacing:0.081396px;}
.ls14_c02174{letter-spacing:0.085644px;}
.ls7_c02174{letter-spacing:0.110124px;}
.ls18_c02174{letter-spacing:0.114912px;}
.ls11_c02174{letter-spacing:0.124488px;}
.ls12_c02174{letter-spacing:0.134064px;}
.lse_c02174{letter-spacing:0.138348px;}
.ls19_c02174{letter-spacing:0.138852px;}
.ls1d_c02174{letter-spacing:0.151200px;}
.ls5_c02174{letter-spacing:0.158112px;}
.lsf_c02174{letter-spacing:0.162792px;}
.ls21_c02174{letter-spacing:0.167580px;}
.lsd_c02174{letter-spacing:0.181944px;}
.lsb_c02174{letter-spacing:0.205884px;}
.ls6_c02174{letter-spacing:113.760000px;}
.ls16_c02174{letter-spacing:115.920000px;}
.ls23_c02174{letter-spacing:145.260000px;}
.ls27_c02174{letter-spacing:147.420000px;}
.lsa_c02174{letter-spacing:200.790000px;}
.sc__c02174{text-shadow:none;}
.sc0_c02174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02174{-webkit-text-stroke:0px transparent;}
.sc0_c02174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02174{word-spacing:-16.628112px;}
.ws8_c02174{word-spacing:-0.296856px;}
.ws7_c02174{word-spacing:-0.272916px;}
.wsa_c02174{word-spacing:-0.253764px;}
.ws16_c02174{word-spacing:-0.229824px;}
.wsd_c02174{word-spacing:-0.225036px;}
.wsc_c02174{word-spacing:-0.215460px;}
.ws15_c02174{word-spacing:-0.205884px;}
.ws5_c02174{word-spacing:-0.194400px;}
.wse_c02174{word-spacing:-0.172368px;}
.ws10_c02174{word-spacing:-0.119700px;}
.wsf_c02174{word-spacing:-0.110124px;}
.ws6_c02174{word-spacing:-0.101088px;}
.wsb_c02174{word-spacing:-0.081396px;}
.ws4_c02174{word-spacing:0.000000px;}
.ws11_c02174{word-spacing:0.006588px;}
.ws14_c02174{word-spacing:0.007200px;}
.ws3_c02174{word-spacing:0.014400px;}
.ws1_c02174{word-spacing:58.969440px;}
.ws2_c02174{word-spacing:59.026608px;}
.ws12_c02174{word-spacing:119.664000px;}
.ws13_c02174{word-spacing:129.038400px;}
.ws9_c02174{word-spacing:240.975000px;}
._17_c02174{margin-left:-84.645000px;}
._25_c02174{margin-left:-53.069580px;}
._18_c02174{margin-left:-41.040000px;}
._26_c02174{margin-left:-23.760000px;}
._20_c02174{margin-left:-1.286316px;}
._d_c02174{width:50.937552px;}
._27_c02174{width:52.133616px;}
._12_c02174{width:62.053200px;}
._10_c02174{width:64.260000px;}
._9_c02174{width:72.964440px;}
._14_c02174{width:75.420000px;}
._a_c02174{width:77.310180px;}
._21_c02174{width:78.397416px;}
._15_c02174{width:84.060000px;}
._2_c02174{width:85.194000px;}
._b_c02174{width:86.918400px;}
._1_c02174{width:88.941600px;}
._16_c02174{width:90.849276px;}
._1e_c02174{width:95.022504px;}
._1b_c02174{width:97.380000px;}
._c_c02174{width:100.958400px;}
._29_c02174{width:102.718728px;}
._e_c02174{width:104.479380px;}
._28_c02174{width:106.059420px;}
._f_c02174{width:108.435600px;}
._1c_c02174{width:109.594296px;}
._23_c02174{width:111.720168px;}
._6_c02174{width:113.856120px;}
._4_c02174{width:115.740000px;}
._5_c02174{width:117.658944px;}
._11_c02174{width:119.304000px;}
._3_c02174{width:122.220000px;}
._22_c02174{width:124.666920px;}
._1f_c02174{width:128.162160px;}
._13_c02174{width:129.607020px;}
._24_c02174{width:133.247016px;}
._19_c02174{width:145.260000px;}
._1d_c02174{width:146.586384px;}
._8_c02174{width:148.307688px;}
._7_c02174{width:152.155404px;}
._0_c02174{width:194.400000px;}
._1a_c02174{width:201.765780px;}
.fc0_c02174{color:rgb(0,0,0);}
.fs5_c02174{font-size:11.880000px;}
.fs3_c02174{font-size:42.120000px;}
.fs2_c02174{font-size:47.880000px;}
.fs1_c02174{font-size:54.000000px;}
.fs4_c02174{font-size:65.880000px;}
.fs0_c02174{font-size:72.000000px;}
.y0_c02174{bottom:0.000000px;}
.y3_c02174{bottom:57.360450px;}
.y2_c02174{bottom:78.060450px;}
.y4f_c02174{bottom:129.720600px;}
.y4e_c02174{bottom:150.420600px;}
.y4d_c02174{bottom:171.120600px;}
.y4c_c02174{bottom:191.820600px;}
.y4b_c02174{bottom:212.520600px;}
.y4a_c02174{bottom:233.220600px;}
.y49_c02174{bottom:253.920600px;}
.y48_c02174{bottom:274.620600px;}
.y47_c02174{bottom:295.320600px;}
.y46_c02174{bottom:316.020600px;}
.y45_c02174{bottom:336.720600px;}
.y44_c02174{bottom:357.420600px;}
.y43_c02174{bottom:378.120600px;}
.y42_c02174{bottom:398.820600px;}
.y41_c02174{bottom:419.520600px;}
.y40_c02174{bottom:440.220600px;}
.y3f_c02174{bottom:460.920600px;}
.y3e_c02174{bottom:481.620600px;}
.y3c_c02174{bottom:501.330450px;}
.y3d_c02174{bottom:501.780450px;}
.y3b_c02174{bottom:501.780600px;}
.y3a_c02174{bottom:520.320450px;}
.y39_c02174{bottom:520.680600px;}
.y38_c02174{bottom:539.670450px;}
.y37_c02174{bottom:558.300450px;}
.y36_c02174{bottom:558.660900px;}
.y35_c02174{bottom:579.000450px;}
.y34_c02174{bottom:579.360900px;}
.y33_c02174{bottom:599.700450px;}
.y32_c02174{bottom:600.060450px;}
.y31_c02174{bottom:620.760450px;}
.y30_c02174{bottom:639.390450px;}
.y2f_c02174{bottom:639.750450px;}
.y2e_c02174{bottom:661.080450px;}
.y2d_c02174{bottom:680.340450px;}
.y2c_c02174{bottom:696.810450px;}
.y2b_c02174{bottom:717.510450px;}
.y29_c02174{bottom:726.330450px;}
.y28_c02174{bottom:726.690000px;}
.y2a_c02174{bottom:726.690450px;}
.y27_c02174{bottom:745.680450px;}
.y26_c02174{bottom:746.400450px;}
.y25_c02174{bottom:765.570450px;}
.y24_c02174{bottom:781.770450px;}
.y23_c02174{bottom:801.120450px;}
.y22_c02174{bottom:809.850450px;}
.y21_c02174{bottom:810.300450px;}
.y1f_c02174{bottom:828.840450px;}
.y1e_c02174{bottom:829.200000px;}
.y20_c02174{bottom:829.200450px;}
.y1c_c02174{bottom:847.830450px;}
.y1b_c02174{bottom:848.190000px;}
.y1d_c02174{bottom:848.190450px;}
.y19_c02174{bottom:866.820450px;}
.y18_c02174{bottom:867.180000px;}
.y1a_c02174{bottom:867.180450px;}
.y17_c02174{bottom:885.810450px;}
.y16_c02174{bottom:886.170450px;}
.y15_c02174{bottom:905.160450px;}
.y14_c02174{bottom:923.700450px;}
.y13_c02174{bottom:924.150450px;}
.y12_c02174{bottom:944.850450px;}
.y11_c02174{bottom:963.390450px;}
.y10_c02174{bottom:963.750900px;}
.yf_c02174{bottom:984.090450px;}
.ye_c02174{bottom:984.450900px;}
.yd_c02174{bottom:1004.790450px;}
.yc_c02174{bottom:1005.150450px;}
.yb_c02174{bottom:1025.850450px;}
.ya_c02174{bottom:1044.480450px;}
.y9_c02174{bottom:1044.840450px;}
.y8_c02174{bottom:1066.170450px;}
.y7_c02174{bottom:1084.530450px;}
.y6_c02174{bottom:1101.900450px;}
.y5_c02174{bottom:1122.060450px;}
.y4_c02174{bottom:1139.250450px;}
.y1_c02174{bottom:1193.160450px;}
.ha_c02174{height:10.551621px;}
.h3_c02174{height:47.961914px;}
.hd_c02174{height:48.461836px;}
.he_c02174{height:48.570293px;}
.hc_c02174{height:48.570893px;}
.hb_c02174{height:58.513535px;}
.h7_c02174{height:61.033535px;}
.h8_c02174{height:61.034135px;}
.h5_c02174{height:61.393535px;}
.h4_c02174{height:62.473535px;}
.h6_c02174{height:62.833535px;}
.h9_c02174{height:62.834135px;}
.h2_c02174{height:63.175781px;}
.h1_c02174{height:63.949219px;}
.h0_c02174{height:1263.000000px;}
.w1_c02174{width:892.500000px;}
.w0_c02174{width:892.830000px;}
.x0_c02174{left:0.000000px;}
.x1_c02174{left:127.620000px;}
.x3_c02174{left:135.630000px;}
.x4_c02174{left:143.910000px;}
.x5_c02174{left:165.060000px;}
.x6_c02174{left:220.950000px;}
.x2_c02174{left:433.080000px;}
.x8_c02174{left:531.720450px;}
.x7_c02174{left:746.820000px;}
@media print{
.v8_c02174{vertical-align:-9.920000pt;}
.v3_c02174{vertical-align:-3.520000pt;}
.v2_c02174{vertical-align:-2.240000pt;}
.v1_c02174{vertical-align:-1.280000pt;}
.v0_c02174{vertical-align:0.000000pt;}
.v6_c02174{vertical-align:0.960000pt;}
.v4_c02174{vertical-align:2.240000pt;}
.v5_c02174{vertical-align:3.520000pt;}
.v7_c02174{vertical-align:4.800000pt;}
.ls22_c02174{letter-spacing:-0.076608pt;}
.ls1e_c02174{letter-spacing:-0.038400pt;}
.ls20_c02174{letter-spacing:-0.017024pt;}
.ls1a_c02174{letter-spacing:-0.012800pt;}
.ls1f_c02174{letter-spacing:-0.009600pt;}
.ls24_c02174{letter-spacing:-0.008512pt;}
.ls26_c02174{letter-spacing:-0.006400pt;}
.ls25_c02174{letter-spacing:-0.004256pt;}
.ls1b_c02174{letter-spacing:0.000000pt;}
.ls0_c02174{letter-spacing:0.009600pt;}
.ls3_c02174{letter-spacing:0.011232pt;}
.ls1c_c02174{letter-spacing:0.012800pt;}
.ls13_c02174{letter-spacing:0.017024pt;}
.ls15_c02174{letter-spacing:0.019200pt;}
.ls2_c02174{letter-spacing:0.025536pt;}
.ls4_c02174{letter-spacing:0.028800pt;}
.ls9_c02174{letter-spacing:0.033600pt;}
.ls1_c02174{letter-spacing:0.038304pt;}
.ls8_c02174{letter-spacing:0.038400pt;}
.ls17_c02174{letter-spacing:0.046816pt;}
.lsc_c02174{letter-spacing:0.068096pt;}
.ls10_c02174{letter-spacing:0.072352pt;}
.ls14_c02174{letter-spacing:0.076128pt;}
.ls7_c02174{letter-spacing:0.097888pt;}
.ls18_c02174{letter-spacing:0.102144pt;}
.ls11_c02174{letter-spacing:0.110656pt;}
.ls12_c02174{letter-spacing:0.119168pt;}
.lse_c02174{letter-spacing:0.122976pt;}
.ls19_c02174{letter-spacing:0.123424pt;}
.ls1d_c02174{letter-spacing:0.134400pt;}
.ls5_c02174{letter-spacing:0.140544pt;}
.lsf_c02174{letter-spacing:0.144704pt;}
.ls21_c02174{letter-spacing:0.148960pt;}
.lsd_c02174{letter-spacing:0.161728pt;}
.lsb_c02174{letter-spacing:0.183008pt;}
.ls6_c02174{letter-spacing:101.120000pt;}
.ls16_c02174{letter-spacing:103.040000pt;}
.ls23_c02174{letter-spacing:129.120000pt;}
.ls27_c02174{letter-spacing:131.040000pt;}
.lsa_c02174{letter-spacing:178.480000pt;}
.ws0_c02174{word-spacing:-14.780544pt;}
.ws8_c02174{word-spacing:-0.263872pt;}
.ws7_c02174{word-spacing:-0.242592pt;}
.wsa_c02174{word-spacing:-0.225568pt;}
.ws16_c02174{word-spacing:-0.204288pt;}
.wsd_c02174{word-spacing:-0.200032pt;}
.wsc_c02174{word-spacing:-0.191520pt;}
.ws15_c02174{word-spacing:-0.183008pt;}
.ws5_c02174{word-spacing:-0.172800pt;}
.wse_c02174{word-spacing:-0.153216pt;}
.ws10_c02174{word-spacing:-0.106400pt;}
.wsf_c02174{word-spacing:-0.097888pt;}
.ws6_c02174{word-spacing:-0.089856pt;}
.wsb_c02174{word-spacing:-0.072352pt;}
.ws4_c02174{word-spacing:0.000000pt;}
.ws11_c02174{word-spacing:0.005856pt;}
.ws14_c02174{word-spacing:0.006400pt;}
.ws3_c02174{word-spacing:0.012800pt;}
.ws1_c02174{word-spacing:52.417280pt;}
.ws2_c02174{word-spacing:52.468096pt;}
.ws12_c02174{word-spacing:106.368000pt;}
.ws13_c02174{word-spacing:114.700800pt;}
.ws9_c02174{word-spacing:214.200000pt;}
._17_c02174{margin-left:-75.240000pt;}
._25_c02174{margin-left:-47.172960pt;}
._18_c02174{margin-left:-36.480000pt;}
._26_c02174{margin-left:-21.120000pt;}
._20_c02174{margin-left:-1.143392pt;}
._d_c02174{width:45.277824pt;}
._27_c02174{width:46.340992pt;}
._12_c02174{width:55.158400pt;}
._10_c02174{width:57.120000pt;}
._9_c02174{width:64.857280pt;}
._14_c02174{width:67.040000pt;}
._a_c02174{width:68.720160pt;}
._21_c02174{width:69.686592pt;}
._15_c02174{width:74.720000pt;}
._2_c02174{width:75.728000pt;}
._b_c02174{width:77.260800pt;}
._1_c02174{width:79.059200pt;}
._16_c02174{width:80.754912pt;}
._1e_c02174{width:84.464448pt;}
._1b_c02174{width:86.560000pt;}
._c_c02174{width:89.740800pt;}
._29_c02174{width:91.305536pt;}
._e_c02174{width:92.870560pt;}
._28_c02174{width:94.275040pt;}
._f_c02174{width:96.387200pt;}
._1c_c02174{width:97.417152pt;}
._23_c02174{width:99.306816pt;}
._6_c02174{width:101.205440pt;}
._4_c02174{width:102.880000pt;}
._5_c02174{width:104.585728pt;}
._11_c02174{width:106.048000pt;}
._3_c02174{width:108.640000pt;}
._22_c02174{width:110.815040pt;}
._1f_c02174{width:113.921920pt;}
._13_c02174{width:115.206240pt;}
._24_c02174{width:118.441792pt;}
._19_c02174{width:129.120000pt;}
._1d_c02174{width:130.299008pt;}
._8_c02174{width:131.829056pt;}
._7_c02174{width:135.249248pt;}
._0_c02174{width:172.800000pt;}
._1a_c02174{width:179.347360pt;}
.fs5_c02174{font-size:10.560000pt;}
.fs3_c02174{font-size:37.440000pt;}
.fs2_c02174{font-size:42.560000pt;}
.fs1_c02174{font-size:48.000000pt;}
.fs4_c02174{font-size:58.560000pt;}
.fs0_c02174{font-size:64.000000pt;}
.y0_c02174{bottom:0.000000pt;}
.y3_c02174{bottom:50.987067pt;}
.y2_c02174{bottom:69.387067pt;}
.y4f_c02174{bottom:115.307200pt;}
.y4e_c02174{bottom:133.707200pt;}
.y4d_c02174{bottom:152.107200pt;}
.y4c_c02174{bottom:170.507200pt;}
.y4b_c02174{bottom:188.907200pt;}
.y4a_c02174{bottom:207.307200pt;}
.y49_c02174{bottom:225.707200pt;}
.y48_c02174{bottom:244.107200pt;}
.y47_c02174{bottom:262.507200pt;}
.y46_c02174{bottom:280.907200pt;}
.y45_c02174{bottom:299.307200pt;}
.y44_c02174{bottom:317.707200pt;}
.y43_c02174{bottom:336.107200pt;}
.y42_c02174{bottom:354.507200pt;}
.y41_c02174{bottom:372.907200pt;}
.y40_c02174{bottom:391.307200pt;}
.y3f_c02174{bottom:409.707200pt;}
.y3e_c02174{bottom:428.107200pt;}
.y3c_c02174{bottom:445.627067pt;}
.y3d_c02174{bottom:446.027067pt;}
.y3b_c02174{bottom:446.027200pt;}
.y3a_c02174{bottom:462.507067pt;}
.y39_c02174{bottom:462.827200pt;}
.y38_c02174{bottom:479.707067pt;}
.y37_c02174{bottom:496.267067pt;}
.y36_c02174{bottom:496.587467pt;}
.y35_c02174{bottom:514.667067pt;}
.y34_c02174{bottom:514.987467pt;}
.y33_c02174{bottom:533.067067pt;}
.y32_c02174{bottom:533.387067pt;}
.y31_c02174{bottom:551.787067pt;}
.y30_c02174{bottom:568.347067pt;}
.y2f_c02174{bottom:568.667067pt;}
.y2e_c02174{bottom:587.627067pt;}
.y2d_c02174{bottom:604.747067pt;}
.y2c_c02174{bottom:619.387067pt;}
.y2b_c02174{bottom:637.787067pt;}
.y29_c02174{bottom:645.627067pt;}
.y28_c02174{bottom:645.946667pt;}
.y2a_c02174{bottom:645.947067pt;}
.y27_c02174{bottom:662.827067pt;}
.y26_c02174{bottom:663.467067pt;}
.y25_c02174{bottom:680.507067pt;}
.y24_c02174{bottom:694.907067pt;}
.y23_c02174{bottom:712.107067pt;}
.y22_c02174{bottom:719.867067pt;}
.y21_c02174{bottom:720.267067pt;}
.y1f_c02174{bottom:736.747067pt;}
.y1e_c02174{bottom:737.066667pt;}
.y20_c02174{bottom:737.067067pt;}
.y1c_c02174{bottom:753.627067pt;}
.y1b_c02174{bottom:753.946667pt;}
.y1d_c02174{bottom:753.947067pt;}
.y19_c02174{bottom:770.507067pt;}
.y18_c02174{bottom:770.826667pt;}
.y1a_c02174{bottom:770.827067pt;}
.y17_c02174{bottom:787.387067pt;}
.y16_c02174{bottom:787.707067pt;}
.y15_c02174{bottom:804.587067pt;}
.y14_c02174{bottom:821.067067pt;}
.y13_c02174{bottom:821.467067pt;}
.y12_c02174{bottom:839.867067pt;}
.y11_c02174{bottom:856.347067pt;}
.y10_c02174{bottom:856.667467pt;}
.yf_c02174{bottom:874.747067pt;}
.ye_c02174{bottom:875.067467pt;}
.yd_c02174{bottom:893.147067pt;}
.yc_c02174{bottom:893.467067pt;}
.yb_c02174{bottom:911.867067pt;}
.ya_c02174{bottom:928.427067pt;}
.y9_c02174{bottom:928.747067pt;}
.y8_c02174{bottom:947.707067pt;}
.y7_c02174{bottom:964.027067pt;}
.y6_c02174{bottom:979.467067pt;}
.y5_c02174{bottom:997.387067pt;}
.y4_c02174{bottom:1012.667067pt;}
.y1_c02174{bottom:1060.587067pt;}
.ha_c02174{height:9.379219pt;}
.h3_c02174{height:42.632812pt;}
.hd_c02174{height:43.077187pt;}
.he_c02174{height:43.173594pt;}
.hc_c02174{height:43.174127pt;}
.hb_c02174{height:52.012031pt;}
.h7_c02174{height:54.252031pt;}
.h8_c02174{height:54.252565pt;}
.h5_c02174{height:54.572031pt;}
.h4_c02174{height:55.532031pt;}
.h6_c02174{height:55.852031pt;}
.h9_c02174{height:55.852565pt;}
.h2_c02174{height:56.156250pt;}
.h1_c02174{height:56.843750pt;}
.h0_c02174{height:1122.666667pt;}
.w1_c02174{width:793.333333pt;}
.w0_c02174{width:793.626667pt;}
.x0_c02174{left:0.000000pt;}
.x1_c02174{left:113.440000pt;}
.x3_c02174{left:120.560000pt;}
.x4_c02174{left:127.920000pt;}
.x5_c02174{left:146.720000pt;}
.x6_c02174{left:196.400000pt;}
.x2_c02174{left:384.960000pt;}
.x8_c02174{left:472.640400pt;}
.x7_c02174{left:663.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_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_796393b8ae0f3d8770610b60.woff2')format("woff");}.ff1_c02175{font-family:ff1_c02175;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02175;src:url('chunks/assets/font_441a3f8388b977cfeaf57841.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;}
.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);}
.v5_c02175{vertical-align:-22.680000px;}
.v2_c02175{vertical-align:-16.919400px;}
.v4_c02175{vertical-align:-5.400000px;}
.v0_c02175{vertical-align:0.000000px;}
.v1_c02175{vertical-align:1.440000px;}
.v3_c02175{vertical-align:11.159400px;}
.ls25_c02175{letter-spacing:-0.181116px;}
.ls23_c02175{letter-spacing:-0.180360px;}
.ls22_c02175{letter-spacing:-0.176904px;}
.ls21_c02175{letter-spacing:-0.086400px;}
.ls1e_c02175{letter-spacing:-0.032940px;}
.ls1b_c02175{letter-spacing:-0.014400px;}
.ls1d_c02175{letter-spacing:-0.013176px;}
.ls20_c02175{letter-spacing:-0.007200px;}
.ls1c_c02175{letter-spacing:0.000000px;}
.ls18_c02175{letter-spacing:0.006588px;}
.lsc_c02175{letter-spacing:0.007200px;}
.ls17_c02175{letter-spacing:0.013176px;}
.ls0_c02175{letter-spacing:0.014400px;}
.ls1a_c02175{letter-spacing:0.019764px;}
.lsf_c02175{letter-spacing:0.026352px;}
.lsa_c02175{letter-spacing:0.028800px;}
.ls13_c02175{letter-spacing:0.032940px;}
.ls1_c02175{letter-spacing:0.039528px;}
.ls1f_c02175{letter-spacing:0.043200px;}
.ls12_c02175{letter-spacing:0.046116px;}
.lsb_c02175{letter-spacing:0.050400px;}
.ls6_c02175{letter-spacing:0.052704px;}
.ls19_c02175{letter-spacing:0.059292px;}
.ls24_c02175{letter-spacing:0.062244px;}
.ls16_c02175{letter-spacing:0.065880px;}
.ls11_c02175{letter-spacing:0.072468px;}
.ls10_c02175{letter-spacing:0.079056px;}
.lse_c02175{letter-spacing:0.092232px;}
.ls4_c02175{letter-spacing:0.098820px;}
.ls14_c02175{letter-spacing:0.105408px;}
.ls15_c02175{letter-spacing:0.118584px;}
.ls8_c02175{letter-spacing:0.131760px;}
.lsd_c02175{letter-spacing:0.181944px;}
.ls2_c02175{letter-spacing:64.080000px;}
.ls7_c02175{letter-spacing:99.720000px;}
.ls3_c02175{letter-spacing:113.760000px;}
.ls5_c02175{letter-spacing:128.520000px;}
.ls9_c02175{letter-spacing:456.840000px;}
.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;}
}
.ws4_c02175{word-spacing:-16.601760px;}
.ws1_c02175{word-spacing:-16.568820px;}
.ws0_c02175{word-spacing:-16.509528px;}
.ws5_c02175{word-spacing:-16.496352px;}
.ws3_c02175{word-spacing:-16.437060px;}
.wse_c02175{word-spacing:-0.093600px;}
.wsc_c02175{word-spacing:-0.086400px;}
.wsd_c02175{word-spacing:-0.050400px;}
.ws8_c02175{word-spacing:-0.014400px;}
.ws7_c02175{word-spacing:0.000000px;}
.wsb_c02175{word-spacing:0.007200px;}
.ws6_c02175{word-spacing:0.014400px;}
.ws34_c02175{word-spacing:0.019764px;}
.ws29_c02175{word-spacing:0.026352px;}
.ws1e_c02175{word-spacing:0.032940px;}
.ws9_c02175{word-spacing:0.039528px;}
.ws1d_c02175{word-spacing:0.046116px;}
.ws28_c02175{word-spacing:0.059292px;}
.ws2e_c02175{word-spacing:0.072468px;}
.ws25_c02175{word-spacing:0.085644px;}
.ws21_c02175{word-spacing:0.395280px;}
.ws2b_c02175{word-spacing:0.783972px;}
.ws14_c02175{word-spacing:4.361256px;}
.ws24_c02175{word-spacing:4.756536px;}
.ws2f_c02175{word-spacing:5.059584px;}
.ws30_c02175{word-spacing:5.099112px;}
.ws22_c02175{word-spacing:5.421924px;}
.ws31_c02175{word-spacing:5.836968px;}
.ws32_c02175{word-spacing:6.192720px;}
.ws2d_c02175{word-spacing:7.233624px;}
.ws1a_c02175{word-spacing:8.267940px;}
.ws16_c02175{word-spacing:9.420840px;}
.ws33_c02175{word-spacing:10.494684px;}
.ws17_c02175{word-spacing:12.655548px;}
.ws12_c02175{word-spacing:14.052204px;}
.ws13_c02175{word-spacing:14.058792px;}
.ws2a_c02175{word-spacing:14.098320px;}
.ws26_c02175{word-spacing:14.434308px;}
.ws23_c02175{word-spacing:17.333028px;}
.ws15_c02175{word-spacing:22.017096px;}
.ws11_c02175{word-spacing:25.620732px;}
.ws2c_c02175{word-spacing:25.969896px;}
.ws18_c02175{word-spacing:29.217780px;}
.ws27_c02175{word-spacing:30.647376px;}
.ws20_c02175{word-spacing:34.916400px;}
.ws1f_c02175{word-spacing:34.969104px;}
.ws19_c02175{word-spacing:35.674020px;}
.ws1b_c02175{word-spacing:37.050912px;}
.ws1c_c02175{word-spacing:37.090440px;}
.wsf_c02175{word-spacing:48.689172px;}
.ws2_c02175{word-spacing:96.810048px;}
.ws10_c02175{word-spacing:174.595176px;}
.wsa_c02175{word-spacing:236.116800px;}
._5_c02175{margin-left:-28.843200px;}
._10_c02175{margin-left:-1.146312px;}
._f_c02175{width:1.021140px;}
._2_c02175{width:35.695440px;}
._b_c02175{width:39.870720px;}
._c_c02175{width:40.950720px;}
._e_c02175{width:55.174464px;}
._a_c02175{width:73.850472px;}
._1_c02175{width:133.131852px;}
._0_c02175{width:194.400000px;}
._4_c02175{width:261.633600px;}
._3_c02175{width:565.876800px;}
._7_c02175{width:568.656000px;}
._8_c02175{width:1013.443200px;}
._d_c02175{width:1494.676440px;}
._6_c02175{width:1791.288000px;}
._9_c02175{width:2232.561600px;}
.fc0_c02175{color:rgb(0,0,0);}
.fs5_c02175{font-size:24.120000px;}
.fs3_c02175{font-size:42.120000px;}
.fs4_c02175{font-size:47.880000px;}
.fs1_c02175{font-size:60.120000px;}
.fs2_c02175{font-size:65.880000px;}
.fs0_c02175{font-size:72.000000px;}
.y0_c02175{bottom:0.000000px;}
.y3_c02175{bottom:57.360450px;}
.y2_c02175{bottom:78.060450px;}
.y41_c02175{bottom:127.560810px;}
.y40_c02175{bottom:146.550720px;}
.y3f_c02175{bottom:165.540630px;}
.y3e_c02175{bottom:184.530540px;}
.y3d_c02175{bottom:203.520450px;}
.y43_c02175{bottom:220.980450px;}
.y3c_c02175{bottom:222.511125px;}
.y42_c02175{bottom:241.320450px;}
.y3b_c02175{bottom:247.080450px;}
.y39_c02175{bottom:260.310450px;}
.y38_c02175{bottom:274.981575px;}
.y37_c02175{bottom:293.971485px;}
.y36_c02175{bottom:312.870810px;}
.y35_c02175{bottom:331.860720px;}
.y34_c02175{bottom:350.850630px;}
.y33_c02175{bottom:369.840540px;}
.y32_c02175{bottom:388.830450px;}
.y31_c02175{bottom:405.480450px;}
.y30_c02175{bottom:414.660720px;}
.y2f_c02175{bottom:433.650630px;}
.y2e_c02175{bottom:452.640540px;}
.y3a_c02175{bottom:471.540600px;}
.y2d_c02175{bottom:477.300450px;}
.y2b_c02175{bottom:490.440600px;}
.y2a_c02175{bottom:505.111395px;}
.y29_c02175{bottom:524.101305px;}
.y28_c02175{bottom:543.091215px;}
.y27_c02175{bottom:562.081125px;}
.y2c_c02175{bottom:580.890450px;}
.y26_c02175{bottom:586.650450px;}
.y22_c02175{bottom:599.880450px;}
.y21_c02175{bottom:614.551665px;}
.y20_c02175{bottom:633.541575px;}
.y1f_c02175{bottom:652.440900px;}
.y1e_c02175{bottom:671.430810px;}
.y1d_c02175{bottom:690.420720px;}
.y25_c02175{bottom:707.880450px;}
.y1c_c02175{bottom:709.410630px;}
.y24_c02175{bottom:728.310540px;}
.y1b_c02175{bottom:728.400540px;}
.y23_c02175{bottom:747.300450px;}
.y1a_c02175{bottom:753.060450px;}
.y17_c02175{bottom:766.200450px;}
.y16_c02175{bottom:780.870630px;}
.y19_c02175{bottom:798.330450px;}
.y15_c02175{bottom:799.860540px;}
.y18_c02175{bottom:818.760450px;}
.y14_c02175{bottom:824.520450px;}
.y13_c02175{bottom:842.340450px;}
.y12_c02175{bottom:856.740450px;}
.y11_c02175{bottom:877.530459px;}
.y10_c02175{bottom:894.810450px;}
.yf_c02175{bottom:913.440450px;}
.ye_c02175{bottom:934.860450px;}
.yd_c02175{bottom:956.280450px;}
.yc_c02175{bottom:977.790600px;}
.yb_c02175{bottom:999.210450px;}
.ya_c02175{bottom:1020.450450px;}
.y9_c02175{bottom:1041.870450px;}
.y8_c02175{bottom:1061.850450px;}
.y7_c02175{bottom:1082.550450px;}
.y6_c02175{bottom:1103.340099px;}
.y5_c02175{bottom:1120.800450px;}
.y4_c02175{bottom:1139.250450px;}
.y1_c02175{bottom:1193.160450px;}
.hf_c02175{height:21.163887px;}
.h7_c02175{height:36.957832px;}
.h6_c02175{height:37.410293px;}
.ha_c02175{height:42.011895px;}
.h3_c02175{height:52.751777px;}
.h4_c02175{height:53.397598px;}
.h8_c02175{height:57.805840px;}
.hb_c02175{height:58.513535px;}
.hc_c02175{height:63.170921px;}
.h10_c02175{height:63.171281px;}
.hd_c02175{height:63.172601px;}
.h11_c02175{height:63.173081px;}
.h12_c02175{height:63.174341px;}
.h9_c02175{height:63.175061px;}
.he_c02175{height:63.175301px;}
.h2_c02175{height:63.175781px;}
.h1_c02175{height:63.949219px;}
.h5_c02175{height:64.615781px;}
.h0_c02175{height:1263.000000px;}
.w1_c02175{width:892.500000px;}
.w0_c02175{width:892.830000px;}
.x0_c02175{left:0.000000px;}
.x1_c02175{left:127.620000px;}
.x3_c02175{left:135.630000px;}
.x6_c02175{left:137.520000px;}
.x4_c02175{left:246.960000px;}
.x8_c02175{left:273.870000px;}
.x5_c02175{left:315.900000px;}
.x7_c02175{left:335.160000px;}
.x2_c02175{left:433.080000px;}
.x9_c02175{left:720.990000px;}
.xa_c02175{left:738.900000px;}
@media print{
.v5_c02175{vertical-align:-20.160000pt;}
.v2_c02175{vertical-align:-15.039467pt;}
.v4_c02175{vertical-align:-4.800000pt;}
.v0_c02175{vertical-align:0.000000pt;}
.v1_c02175{vertical-align:1.280000pt;}
.v3_c02175{vertical-align:9.919467pt;}
.ls25_c02175{letter-spacing:-0.160992pt;}
.ls23_c02175{letter-spacing:-0.160320pt;}
.ls22_c02175{letter-spacing:-0.157248pt;}
.ls21_c02175{letter-spacing:-0.076800pt;}
.ls1e_c02175{letter-spacing:-0.029280pt;}
.ls1b_c02175{letter-spacing:-0.012800pt;}
.ls1d_c02175{letter-spacing:-0.011712pt;}
.ls20_c02175{letter-spacing:-0.006400pt;}
.ls1c_c02175{letter-spacing:0.000000pt;}
.ls18_c02175{letter-spacing:0.005856pt;}
.lsc_c02175{letter-spacing:0.006400pt;}
.ls17_c02175{letter-spacing:0.011712pt;}
.ls0_c02175{letter-spacing:0.012800pt;}
.ls1a_c02175{letter-spacing:0.017568pt;}
.lsf_c02175{letter-spacing:0.023424pt;}
.lsa_c02175{letter-spacing:0.025600pt;}
.ls13_c02175{letter-spacing:0.029280pt;}
.ls1_c02175{letter-spacing:0.035136pt;}
.ls1f_c02175{letter-spacing:0.038400pt;}
.ls12_c02175{letter-spacing:0.040992pt;}
.lsb_c02175{letter-spacing:0.044800pt;}
.ls6_c02175{letter-spacing:0.046848pt;}
.ls19_c02175{letter-spacing:0.052704pt;}
.ls24_c02175{letter-spacing:0.055328pt;}
.ls16_c02175{letter-spacing:0.058560pt;}
.ls11_c02175{letter-spacing:0.064416pt;}
.ls10_c02175{letter-spacing:0.070272pt;}
.lse_c02175{letter-spacing:0.081984pt;}
.ls4_c02175{letter-spacing:0.087840pt;}
.ls14_c02175{letter-spacing:0.093696pt;}
.ls15_c02175{letter-spacing:0.105408pt;}
.ls8_c02175{letter-spacing:0.117120pt;}
.lsd_c02175{letter-spacing:0.161728pt;}
.ls2_c02175{letter-spacing:56.960000pt;}
.ls7_c02175{letter-spacing:88.640000pt;}
.ls3_c02175{letter-spacing:101.120000pt;}
.ls5_c02175{letter-spacing:114.240000pt;}
.ls9_c02175{letter-spacing:406.080000pt;}
.ws4_c02175{word-spacing:-14.757120pt;}
.ws1_c02175{word-spacing:-14.727840pt;}
.ws0_c02175{word-spacing:-14.675136pt;}
.ws5_c02175{word-spacing:-14.663424pt;}
.ws3_c02175{word-spacing:-14.610720pt;}
.wse_c02175{word-spacing:-0.083200pt;}
.wsc_c02175{word-spacing:-0.076800pt;}
.wsd_c02175{word-spacing:-0.044800pt;}
.ws8_c02175{word-spacing:-0.012800pt;}
.ws7_c02175{word-spacing:0.000000pt;}
.wsb_c02175{word-spacing:0.006400pt;}
.ws6_c02175{word-spacing:0.012800pt;}
.ws34_c02175{word-spacing:0.017568pt;}
.ws29_c02175{word-spacing:0.023424pt;}
.ws1e_c02175{word-spacing:0.029280pt;}
.ws9_c02175{word-spacing:0.035136pt;}
.ws1d_c02175{word-spacing:0.040992pt;}
.ws28_c02175{word-spacing:0.052704pt;}
.ws2e_c02175{word-spacing:0.064416pt;}
.ws25_c02175{word-spacing:0.076128pt;}
.ws21_c02175{word-spacing:0.351360pt;}
.ws2b_c02175{word-spacing:0.696864pt;}
.ws14_c02175{word-spacing:3.876672pt;}
.ws24_c02175{word-spacing:4.228032pt;}
.ws2f_c02175{word-spacing:4.497408pt;}
.ws30_c02175{word-spacing:4.532544pt;}
.ws22_c02175{word-spacing:4.819488pt;}
.ws31_c02175{word-spacing:5.188416pt;}
.ws32_c02175{word-spacing:5.504640pt;}
.ws2d_c02175{word-spacing:6.429888pt;}
.ws1a_c02175{word-spacing:7.349280pt;}
.ws16_c02175{word-spacing:8.374080pt;}
.ws33_c02175{word-spacing:9.328608pt;}
.ws17_c02175{word-spacing:11.249376pt;}
.ws12_c02175{word-spacing:12.490848pt;}
.ws13_c02175{word-spacing:12.496704pt;}
.ws2a_c02175{word-spacing:12.531840pt;}
.ws26_c02175{word-spacing:12.830496pt;}
.ws23_c02175{word-spacing:15.407136pt;}
.ws15_c02175{word-spacing:19.570752pt;}
.ws11_c02175{word-spacing:22.773984pt;}
.ws2c_c02175{word-spacing:23.084352pt;}
.ws18_c02175{word-spacing:25.971360pt;}
.ws27_c02175{word-spacing:27.242112pt;}
.ws20_c02175{word-spacing:31.036800pt;}
.ws1f_c02175{word-spacing:31.083648pt;}
.ws19_c02175{word-spacing:31.710240pt;}
.ws1b_c02175{word-spacing:32.934144pt;}
.ws1c_c02175{word-spacing:32.969280pt;}
.wsf_c02175{word-spacing:43.279264pt;}
.ws2_c02175{word-spacing:86.053376pt;}
.ws10_c02175{word-spacing:155.195712pt;}
.wsa_c02175{word-spacing:209.881600pt;}
._5_c02175{margin-left:-25.638400pt;}
._10_c02175{margin-left:-1.018944pt;}
._f_c02175{width:0.907680pt;}
._2_c02175{width:31.729280pt;}
._b_c02175{width:35.440640pt;}
._c_c02175{width:36.400640pt;}
._e_c02175{width:49.043968pt;}
._a_c02175{width:65.644864pt;}
._1_c02175{width:118.339424pt;}
._0_c02175{width:172.800000pt;}
._4_c02175{width:232.563200pt;}
._3_c02175{width:503.001600pt;}
._7_c02175{width:505.472000pt;}
._8_c02175{width:900.838400pt;}
._d_c02175{width:1328.601280pt;}
._6_c02175{width:1592.256000pt;}
._9_c02175{width:1984.499200pt;}
.fs5_c02175{font-size:21.440000pt;}
.fs3_c02175{font-size:37.440000pt;}
.fs4_c02175{font-size:42.560000pt;}
.fs1_c02175{font-size:53.440000pt;}
.fs2_c02175{font-size:58.560000pt;}
.fs0_c02175{font-size:64.000000pt;}
.y0_c02175{bottom:0.000000pt;}
.y3_c02175{bottom:50.987067pt;}
.y2_c02175{bottom:69.387067pt;}
.y41_c02175{bottom:113.387387pt;}
.y40_c02175{bottom:130.267307pt;}
.y3f_c02175{bottom:147.147227pt;}
.y3e_c02175{bottom:164.027147pt;}
.y3d_c02175{bottom:180.907067pt;}
.y43_c02175{bottom:196.427067pt;}
.y3c_c02175{bottom:197.787667pt;}
.y42_c02175{bottom:214.507067pt;}
.y3b_c02175{bottom:219.627067pt;}
.y39_c02175{bottom:231.387067pt;}
.y38_c02175{bottom:244.428067pt;}
.y37_c02175{bottom:261.307987pt;}
.y36_c02175{bottom:278.107387pt;}
.y35_c02175{bottom:294.987307pt;}
.y34_c02175{bottom:311.867227pt;}
.y33_c02175{bottom:328.747147pt;}
.y32_c02175{bottom:345.627067pt;}
.y31_c02175{bottom:360.427067pt;}
.y30_c02175{bottom:368.587307pt;}
.y2f_c02175{bottom:385.467227pt;}
.y2e_c02175{bottom:402.347147pt;}
.y3a_c02175{bottom:419.147200pt;}
.y2d_c02175{bottom:424.267067pt;}
.y2b_c02175{bottom:435.947200pt;}
.y2a_c02175{bottom:448.987907pt;}
.y29_c02175{bottom:465.867827pt;}
.y28_c02175{bottom:482.747747pt;}
.y27_c02175{bottom:499.627667pt;}
.y2c_c02175{bottom:516.347067pt;}
.y26_c02175{bottom:521.467067pt;}
.y22_c02175{bottom:533.227067pt;}
.y21_c02175{bottom:546.268147pt;}
.y20_c02175{bottom:563.148067pt;}
.y1f_c02175{bottom:579.947467pt;}
.y1e_c02175{bottom:596.827387pt;}
.y1d_c02175{bottom:613.707307pt;}
.y25_c02175{bottom:629.227067pt;}
.y1c_c02175{bottom:630.587227pt;}
.y24_c02175{bottom:647.387147pt;}
.y1b_c02175{bottom:647.467147pt;}
.y23_c02175{bottom:664.267067pt;}
.y1a_c02175{bottom:669.387067pt;}
.y17_c02175{bottom:681.067067pt;}
.y16_c02175{bottom:694.107227pt;}
.y19_c02175{bottom:709.627067pt;}
.y15_c02175{bottom:710.987147pt;}
.y18_c02175{bottom:727.787067pt;}
.y14_c02175{bottom:732.907067pt;}
.y13_c02175{bottom:748.747067pt;}
.y12_c02175{bottom:761.547067pt;}
.y11_c02175{bottom:780.027075pt;}
.y10_c02175{bottom:795.387067pt;}
.yf_c02175{bottom:811.947067pt;}
.ye_c02175{bottom:830.987067pt;}
.yd_c02175{bottom:850.027067pt;}
.yc_c02175{bottom:869.147200pt;}
.yb_c02175{bottom:888.187067pt;}
.ya_c02175{bottom:907.067067pt;}
.y9_c02175{bottom:926.107067pt;}
.y8_c02175{bottom:943.867067pt;}
.y7_c02175{bottom:962.267067pt;}
.y6_c02175{bottom:980.746755pt;}
.y5_c02175{bottom:996.267067pt;}
.y4_c02175{bottom:1012.667067pt;}
.y1_c02175{bottom:1060.587067pt;}
.hf_c02175{height:18.812344pt;}
.h7_c02175{height:32.851406pt;}
.h6_c02175{height:33.253594pt;}
.ha_c02175{height:37.343906pt;}
.h3_c02175{height:46.890469pt;}
.h4_c02175{height:47.464531pt;}
.h8_c02175{height:51.382969pt;}
.hb_c02175{height:52.012031pt;}
.hc_c02175{height:56.151930pt;}
.h10_c02175{height:56.152250pt;}
.hd_c02175{height:56.153423pt;}
.h11_c02175{height:56.153850pt;}
.h12_c02175{height:56.154970pt;}
.h9_c02175{height:56.155610pt;}
.he_c02175{height:56.155823pt;}
.h2_c02175{height:56.156250pt;}
.h1_c02175{height:56.843750pt;}
.h5_c02175{height:57.436250pt;}
.h0_c02175{height:1122.666667pt;}
.w1_c02175{width:793.333333pt;}
.w0_c02175{width:793.626667pt;}
.x0_c02175{left:0.000000pt;}
.x1_c02175{left:113.440000pt;}
.x3_c02175{left:120.560000pt;}
.x6_c02175{left:122.240000pt;}
.x4_c02175{left:219.520000pt;}
.x8_c02175{left:243.440000pt;}
.x5_c02175{left:280.800000pt;}
.x7_c02175{left:297.920000pt;}
.x2_c02175{left:384.960000pt;}
.x9_c02175{left:640.880000pt;}
.xa_c02175{left:656.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_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_d617b2f94610323b6f953afe.woff2')format("woff");}.ff1_c02176{font-family:ff1_c02176;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02176;src:url('chunks/assets/font_1a240e08f7058cd49915ab90.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;}
.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);}
.v4_c02176{vertical-align:-22.680000px;}
.v1_c02176{vertical-align:-16.919400px;}
.v3_c02176{vertical-align:-5.400000px;}
.v0_c02176{vertical-align:0.000000px;}
.v2_c02176{vertical-align:11.159400px;}
.ls15_c02176{letter-spacing:-0.181116px;}
.ls13_c02176{letter-spacing:-0.180360px;}
.ls12_c02176{letter-spacing:-0.176904px;}
.ls10_c02176{letter-spacing:-0.014400px;}
.ls17_c02176{letter-spacing:-0.013176px;}
.ls18_c02176{letter-spacing:-0.006588px;}
.ls11_c02176{letter-spacing:0.000000px;}
.ls9_c02176{letter-spacing:0.006588px;}
.lsf_c02176{letter-spacing:0.013176px;}
.ls5_c02176{letter-spacing:0.019764px;}
.lse_c02176{letter-spacing:0.026352px;}
.ls2_c02176{letter-spacing:0.032940px;}
.ls3_c02176{letter-spacing:0.039528px;}
.ls6_c02176{letter-spacing:0.046116px;}
.ls4_c02176{letter-spacing:0.052704px;}
.ls1_c02176{letter-spacing:0.059292px;}
.ls14_c02176{letter-spacing:0.062244px;}
.lsd_c02176{letter-spacing:0.065880px;}
.ls7_c02176{letter-spacing:0.072468px;}
.lsb_c02176{letter-spacing:0.079056px;}
.lsc_c02176{letter-spacing:0.085644px;}
.lsa_c02176{letter-spacing:0.092232px;}
.ls8_c02176{letter-spacing:0.111996px;}
.ls16_c02176{letter-spacing:0.131760px;}
.ls0_c02176{letter-spacing:0.181944px;}
.sc__c02176{text-shadow:none;}
.sc0_c02176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02176{-webkit-text-stroke:0px transparent;}
.sc0_c02176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02176{word-spacing:-16.529292px;}
.ws18_c02176{word-spacing:-0.316224px;}
.ws2_c02176{word-spacing:0.000000px;}
.ws1_c02176{word-spacing:0.014400px;}
.wsc_c02176{word-spacing:0.019764px;}
.ws4_c02176{word-spacing:0.032940px;}
.ws8_c02176{word-spacing:0.039528px;}
.ws26_c02176{word-spacing:0.046116px;}
.ws28_c02176{word-spacing:0.052704px;}
.ws20_c02176{word-spacing:0.065880px;}
.ws2f_c02176{word-spacing:0.098820px;}
.ws11_c02176{word-spacing:0.764208px;}
.ws14_c02176{word-spacing:1.442772px;}
.ws15_c02176{word-spacing:1.488888px;}
.wsa_c02176{word-spacing:1.508652px;}
.ws1a_c02176{word-spacing:2.220156px;}
.ws27_c02176{word-spacing:2.239920px;}
.ws5_c02176{word-spacing:3.656340px;}
.wsb_c02176{word-spacing:4.723596px;}
.ws22_c02176{word-spacing:6.568236px;}
.ws7_c02176{word-spacing:6.581412px;}
.ws10_c02176{word-spacing:7.951716px;}
.ws2a_c02176{word-spacing:8.327232px;}
.wsf_c02176{word-spacing:9.802944px;}
.ws12_c02176{word-spacing:10.435392px;}
.ws21_c02176{word-spacing:10.455156px;}
.ws9_c02176{word-spacing:10.474920px;}
.ws16_c02176{word-spacing:11.917692px;}
.ws13_c02176{word-spacing:12.971772px;}
.ws24_c02176{word-spacing:13.031064px;}
.ws19_c02176{word-spacing:16.581996px;}
.ws29_c02176{word-spacing:16.601760px;}
.ws1e_c02176{word-spacing:16.964100px;}
.ws1f_c02176{word-spacing:16.977276px;}
.ws2e_c02176{word-spacing:18.005004px;}
.ws1c_c02176{word-spacing:18.051120px;}
.ws2b_c02176{word-spacing:19.777176px;}
.ws1d_c02176{word-spacing:20.580912px;}
.ws17_c02176{word-spacing:21.312180px;}
.ws2d_c02176{word-spacing:22.675896px;}
.ws2c_c02176{word-spacing:22.715424px;}
.ws1b_c02176{word-spacing:27.017388px;}
.ws6_c02176{word-spacing:27.050328px;}
.ws25_c02176{word-spacing:28.875204px;}
.wsd_c02176{word-spacing:44.620524px;}
.wse_c02176{word-spacing:44.712756px;}
.ws3_c02176{word-spacing:48.689172px;}
.ws23_c02176{word-spacing:56.544804px;}
._7_c02176{margin-left:-1.034316px;}
._6_c02176{width:1.203480px;}
._2_c02176{width:39.870720px;}
._3_c02176{width:40.950720px;}
._5_c02176{width:55.174464px;}
._1_c02176{width:73.850472px;}
._0_c02176{width:194.400000px;}
._4_c02176{width:1494.676440px;}
.fc0_c02176{color:rgb(0,0,0);}
.fs5_c02176{font-size:24.120000px;}
.fs1_c02176{font-size:42.120000px;}
.fs3_c02176{font-size:47.880000px;}
.fs2_c02176{font-size:60.120000px;}
.fs4_c02176{font-size:65.880000px;}
.fs0_c02176{font-size:72.000000px;}
.y0_c02176{bottom:0.000000px;}
.y3_c02176{bottom:57.360450px;}
.y2_c02176{bottom:78.060450px;}
.y47_c02176{bottom:121.440450px;}
.y46_c02176{bottom:136.111485px;}
.y45_c02176{bottom:155.010810px;}
.y44_c02176{bottom:174.000720px;}
.y43_c02176{bottom:192.990630px;}
.y49_c02176{bottom:210.450600px;}
.y42_c02176{bottom:211.980540px;}
.y48_c02176{bottom:230.880450px;}
.y41_c02176{bottom:236.640450px;}
.y3f_c02176{bottom:249.780450px;}
.y3e_c02176{bottom:264.450540px;}
.y3d_c02176{bottom:283.440450px;}
.y3c_c02176{bottom:300.180450px;}
.y3b_c02176{bottom:309.270720px;}
.y3a_c02176{bottom:328.260630px;}
.y39_c02176{bottom:347.250540px;}
.y40_c02176{bottom:366.150450px;}
.y38_c02176{bottom:371.910450px;}
.y35_c02176{bottom:386.310450px;}
.y34_c02176{bottom:406.650630px;}
.y37_c02176{bottom:424.110600px;}
.y33_c02176{bottom:425.640540px;}
.y36_c02176{bottom:444.540600px;}
.y32_c02176{bottom:450.300450px;}
.y2f_c02176{bottom:464.700600px;}
.y2e_c02176{bottom:485.041305px;}
.y2d_c02176{bottom:504.031215px;}
.y2c_c02176{bottom:522.930540px;}
.y2b_c02176{bottom:541.920450px;}
.y2a_c02176{bottom:560.910450px;}
.y31_c02176{bottom:578.370450px;}
.y29_c02176{bottom:579.900450px;}
.y30_c02176{bottom:598.800450px;}
.y28_c02176{bottom:604.560450px;}
.y25_c02176{bottom:618.960450px;}
.y24_c02176{bottom:639.300540px;}
.y23_c02176{bottom:658.290450px;}
.y22_c02176{bottom:677.190450px;}
.y21_c02176{bottom:696.180450px;}
.y20_c02176{bottom:715.530450px;}
.y1f_c02176{bottom:735.870630px;}
.y27_c02176{bottom:754.770540px;}
.y1e_c02176{bottom:754.860540px;}
.y26_c02176{bottom:773.760450px;}
.y1d_c02176{bottom:779.520450px;}
.y1a_c02176{bottom:793.920450px;}
.y19_c02176{bottom:814.260450px;}
.y18_c02176{bottom:833.250450px;}
.y17_c02176{bottom:852.150450px;}
.y1c_c02176{bottom:869.610600px;}
.y16_c02176{bottom:871.140540px;}
.y1b_c02176{bottom:890.040600px;}
.y15_c02176{bottom:895.800450px;}
.y12_c02176{bottom:910.200600px;}
.y11_c02176{bottom:930.540720px;}
.y10_c02176{bottom:949.530630px;}
.yf_c02176{bottom:968.520540px;}
.ye_c02176{bottom:987.510450px;}
.y14_c02176{bottom:1004.880450px;}
.yd_c02176{bottom:1006.410450px;}
.y13_c02176{bottom:1025.310450px;}
.yc_c02176{bottom:1031.070450px;}
.y9_c02176{bottom:1045.560450px;}
.y8_c02176{bottom:1065.810720px;}
.y7_c02176{bottom:1084.800630px;}
.yb_c02176{bottom:1102.260450px;}
.y6_c02176{bottom:1103.790540px;}
.ya_c02176{bottom:1122.690450px;}
.y5_c02176{bottom:1128.450450px;}
.y4_c02176{bottom:1146.270450px;}
.y1_c02176{bottom:1193.160450px;}
.hc_c02176{height:21.163887px;}
.h4_c02176{height:36.957832px;}
.h3_c02176{height:37.410293px;}
.hd_c02176{height:42.011895px;}
.h5_c02176{height:57.805840px;}
.h7_c02176{height:58.513535px;}
.he_c02176{height:63.171641px;}
.hb_c02176{height:63.172961px;}
.h6_c02176{height:63.174701px;}
.h9_c02176{height:63.175061px;}
.h8_c02176{height:63.175301px;}
.ha_c02176{height:63.175421px;}
.h2_c02176{height:63.175781px;}
.h1_c02176{height:63.949219px;}
.h0_c02176{height:1263.000000px;}
.w1_c02176{width:892.500000px;}
.w0_c02176{width:892.830000px;}
.x0_c02176{left:0.000000px;}
.x1_c02176{left:127.620000px;}
.x3_c02176{left:135.630000px;}
.x4_c02176{left:273.870000px;}
.x2_c02176{left:433.080000px;}
.x5_c02176{left:720.990000px;}
.x6_c02176{left:738.900000px;}
@media print{
.v4_c02176{vertical-align:-20.160000pt;}
.v1_c02176{vertical-align:-15.039467pt;}
.v3_c02176{vertical-align:-4.800000pt;}
.v0_c02176{vertical-align:0.000000pt;}
.v2_c02176{vertical-align:9.919467pt;}
.ls15_c02176{letter-spacing:-0.160992pt;}
.ls13_c02176{letter-spacing:-0.160320pt;}
.ls12_c02176{letter-spacing:-0.157248pt;}
.ls10_c02176{letter-spacing:-0.012800pt;}
.ls17_c02176{letter-spacing:-0.011712pt;}
.ls18_c02176{letter-spacing:-0.005856pt;}
.ls11_c02176{letter-spacing:0.000000pt;}
.ls9_c02176{letter-spacing:0.005856pt;}
.lsf_c02176{letter-spacing:0.011712pt;}
.ls5_c02176{letter-spacing:0.017568pt;}
.lse_c02176{letter-spacing:0.023424pt;}
.ls2_c02176{letter-spacing:0.029280pt;}
.ls3_c02176{letter-spacing:0.035136pt;}
.ls6_c02176{letter-spacing:0.040992pt;}
.ls4_c02176{letter-spacing:0.046848pt;}
.ls1_c02176{letter-spacing:0.052704pt;}
.ls14_c02176{letter-spacing:0.055328pt;}
.lsd_c02176{letter-spacing:0.058560pt;}
.ls7_c02176{letter-spacing:0.064416pt;}
.lsb_c02176{letter-spacing:0.070272pt;}
.lsc_c02176{letter-spacing:0.076128pt;}
.lsa_c02176{letter-spacing:0.081984pt;}
.ls8_c02176{letter-spacing:0.099552pt;}
.ls16_c02176{letter-spacing:0.117120pt;}
.ls0_c02176{letter-spacing:0.161728pt;}
.ws0_c02176{word-spacing:-14.692704pt;}
.ws18_c02176{word-spacing:-0.281088pt;}
.ws2_c02176{word-spacing:0.000000pt;}
.ws1_c02176{word-spacing:0.012800pt;}
.wsc_c02176{word-spacing:0.017568pt;}
.ws4_c02176{word-spacing:0.029280pt;}
.ws8_c02176{word-spacing:0.035136pt;}
.ws26_c02176{word-spacing:0.040992pt;}
.ws28_c02176{word-spacing:0.046848pt;}
.ws20_c02176{word-spacing:0.058560pt;}
.ws2f_c02176{word-spacing:0.087840pt;}
.ws11_c02176{word-spacing:0.679296pt;}
.ws14_c02176{word-spacing:1.282464pt;}
.ws15_c02176{word-spacing:1.323456pt;}
.wsa_c02176{word-spacing:1.341024pt;}
.ws1a_c02176{word-spacing:1.973472pt;}
.ws27_c02176{word-spacing:1.991040pt;}
.ws5_c02176{word-spacing:3.250080pt;}
.wsb_c02176{word-spacing:4.198752pt;}
.ws22_c02176{word-spacing:5.838432pt;}
.ws7_c02176{word-spacing:5.850144pt;}
.ws10_c02176{word-spacing:7.068192pt;}
.ws2a_c02176{word-spacing:7.401984pt;}
.wsf_c02176{word-spacing:8.713728pt;}
.ws12_c02176{word-spacing:9.275904pt;}
.ws21_c02176{word-spacing:9.293472pt;}
.ws9_c02176{word-spacing:9.311040pt;}
.ws16_c02176{word-spacing:10.593504pt;}
.ws13_c02176{word-spacing:11.530464pt;}
.ws24_c02176{word-spacing:11.583168pt;}
.ws19_c02176{word-spacing:14.739552pt;}
.ws29_c02176{word-spacing:14.757120pt;}
.ws1e_c02176{word-spacing:15.079200pt;}
.ws1f_c02176{word-spacing:15.090912pt;}
.ws2e_c02176{word-spacing:16.004448pt;}
.ws1c_c02176{word-spacing:16.045440pt;}
.ws2b_c02176{word-spacing:17.579712pt;}
.ws1d_c02176{word-spacing:18.294144pt;}
.ws17_c02176{word-spacing:18.944160pt;}
.ws2d_c02176{word-spacing:20.156352pt;}
.ws2c_c02176{word-spacing:20.191488pt;}
.ws1b_c02176{word-spacing:24.015456pt;}
.ws6_c02176{word-spacing:24.044736pt;}
.ws25_c02176{word-spacing:25.666848pt;}
.wsd_c02176{word-spacing:39.662688pt;}
.wse_c02176{word-spacing:39.744672pt;}
.ws3_c02176{word-spacing:43.279264pt;}
.ws23_c02176{word-spacing:50.262048pt;}
._7_c02176{margin-left:-0.919392pt;}
._6_c02176{width:1.069760pt;}
._2_c02176{width:35.440640pt;}
._3_c02176{width:36.400640pt;}
._5_c02176{width:49.043968pt;}
._1_c02176{width:65.644864pt;}
._0_c02176{width:172.800000pt;}
._4_c02176{width:1328.601280pt;}
.fs5_c02176{font-size:21.440000pt;}
.fs1_c02176{font-size:37.440000pt;}
.fs3_c02176{font-size:42.560000pt;}
.fs2_c02176{font-size:53.440000pt;}
.fs4_c02176{font-size:58.560000pt;}
.fs0_c02176{font-size:64.000000pt;}
.y0_c02176{bottom:0.000000pt;}
.y3_c02176{bottom:50.987067pt;}
.y2_c02176{bottom:69.387067pt;}
.y47_c02176{bottom:107.947067pt;}
.y46_c02176{bottom:120.987987pt;}
.y45_c02176{bottom:137.787387pt;}
.y44_c02176{bottom:154.667307pt;}
.y43_c02176{bottom:171.547227pt;}
.y49_c02176{bottom:187.067200pt;}
.y42_c02176{bottom:188.427147pt;}
.y48_c02176{bottom:205.227067pt;}
.y41_c02176{bottom:210.347067pt;}
.y3f_c02176{bottom:222.027067pt;}
.y3e_c02176{bottom:235.067147pt;}
.y3d_c02176{bottom:251.947067pt;}
.y3c_c02176{bottom:266.827067pt;}
.y3b_c02176{bottom:274.907307pt;}
.y3a_c02176{bottom:291.787227pt;}
.y39_c02176{bottom:308.667147pt;}
.y40_c02176{bottom:325.467067pt;}
.y38_c02176{bottom:330.587067pt;}
.y35_c02176{bottom:343.387067pt;}
.y34_c02176{bottom:361.467227pt;}
.y37_c02176{bottom:376.987200pt;}
.y33_c02176{bottom:378.347147pt;}
.y36_c02176{bottom:395.147200pt;}
.y32_c02176{bottom:400.267067pt;}
.y2f_c02176{bottom:413.067200pt;}
.y2e_c02176{bottom:431.147827pt;}
.y2d_c02176{bottom:448.027747pt;}
.y2c_c02176{bottom:464.827147pt;}
.y2b_c02176{bottom:481.707067pt;}
.y2a_c02176{bottom:498.587067pt;}
.y31_c02176{bottom:514.107067pt;}
.y29_c02176{bottom:515.467067pt;}
.y30_c02176{bottom:532.267067pt;}
.y28_c02176{bottom:537.387067pt;}
.y25_c02176{bottom:550.187067pt;}
.y24_c02176{bottom:568.267147pt;}
.y23_c02176{bottom:585.147067pt;}
.y22_c02176{bottom:601.947067pt;}
.y21_c02176{bottom:618.827067pt;}
.y20_c02176{bottom:636.027067pt;}
.y1f_c02176{bottom:654.107227pt;}
.y27_c02176{bottom:670.907147pt;}
.y1e_c02176{bottom:670.987147pt;}
.y26_c02176{bottom:687.787067pt;}
.y1d_c02176{bottom:692.907067pt;}
.y1a_c02176{bottom:705.707067pt;}
.y19_c02176{bottom:723.787067pt;}
.y18_c02176{bottom:740.667067pt;}
.y17_c02176{bottom:757.467067pt;}
.y1c_c02176{bottom:772.987200pt;}
.y16_c02176{bottom:774.347147pt;}
.y1b_c02176{bottom:791.147200pt;}
.y15_c02176{bottom:796.267067pt;}
.y12_c02176{bottom:809.067200pt;}
.y11_c02176{bottom:827.147307pt;}
.y10_c02176{bottom:844.027227pt;}
.yf_c02176{bottom:860.907147pt;}
.ye_c02176{bottom:877.787067pt;}
.y14_c02176{bottom:893.227067pt;}
.yd_c02176{bottom:894.587067pt;}
.y13_c02176{bottom:911.387067pt;}
.yc_c02176{bottom:916.507067pt;}
.y9_c02176{bottom:929.387067pt;}
.y8_c02176{bottom:947.387307pt;}
.y7_c02176{bottom:964.267227pt;}
.yb_c02176{bottom:979.787067pt;}
.y6_c02176{bottom:981.147147pt;}
.ya_c02176{bottom:997.947067pt;}
.y5_c02176{bottom:1003.067067pt;}
.y4_c02176{bottom:1018.907067pt;}
.y1_c02176{bottom:1060.587067pt;}
.hc_c02176{height:18.812344pt;}
.h4_c02176{height:32.851406pt;}
.h3_c02176{height:33.253594pt;}
.hd_c02176{height:37.343906pt;}
.h5_c02176{height:51.382969pt;}
.h7_c02176{height:52.012031pt;}
.he_c02176{height:56.152570pt;}
.hb_c02176{height:56.153743pt;}
.h6_c02176{height:56.155290pt;}
.h9_c02176{height:56.155610pt;}
.h8_c02176{height:56.155823pt;}
.ha_c02176{height:56.155930pt;}
.h2_c02176{height:56.156250pt;}
.h1_c02176{height:56.843750pt;}
.h0_c02176{height:1122.666667pt;}
.w1_c02176{width:793.333333pt;}
.w0_c02176{width:793.626667pt;}
.x0_c02176{left:0.000000pt;}
.x1_c02176{left:113.440000pt;}
.x3_c02176{left:120.560000pt;}
.x4_c02176{left:243.440000pt;}
.x2_c02176{left:384.960000pt;}
.x5_c02176{left:640.880000pt;}
.x6_c02176{left:656.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_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_d617b2f94610323b6f953afe.woff2')format("woff");}.ff1_c02177{font-family:ff1_c02177;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02177;src:url('chunks/assets/font_d49dd5d7d45d65457b699680.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;}
.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);}
.v4_c02177{vertical-align:-22.680000px;}
.v1_c02177{vertical-align:-16.919400px;}
.v3_c02177{vertical-align:-5.400000px;}
.v0_c02177{vertical-align:0.000000px;}
.v2_c02177{vertical-align:11.159400px;}
.lsf_c02177{letter-spacing:-0.181116px;}
.lsd_c02177{letter-spacing:-0.180360px;}
.lsc_c02177{letter-spacing:-0.176904px;}
.lsa_c02177{letter-spacing:-0.014400px;}
.lsb_c02177{letter-spacing:0.000000px;}
.ls8_c02177{letter-spacing:0.026352px;}
.ls3_c02177{letter-spacing:0.039528px;}
.ls9_c02177{letter-spacing:0.046116px;}
.ls5_c02177{letter-spacing:0.052704px;}
.ls7_c02177{letter-spacing:0.059292px;}
.lse_c02177{letter-spacing:0.062244px;}
.ls4_c02177{letter-spacing:0.065880px;}
.ls1_c02177{letter-spacing:0.072468px;}
.ls6_c02177{letter-spacing:0.079056px;}
.ls2_c02177{letter-spacing:0.092232px;}
.ls10_c02177{letter-spacing:0.131760px;}
.ls0_c02177{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02177{word-spacing:0.000000px;}
.ws0_c02177{word-spacing:0.014400px;}
.wsc_c02177{word-spacing:0.039528px;}
.ws6_c02177{word-spacing:4.703832px;}
.ws10_c02177{word-spacing:6.528708px;}
.ws8_c02177{word-spacing:7.213860px;}
.ws9_c02177{word-spacing:7.227036px;}
.ws7_c02177{word-spacing:11.199600px;}
.ws4_c02177{word-spacing:15.119460px;}
.ws3_c02177{word-spacing:15.139224px;}
.ws13_c02177{word-spacing:15.508152px;}
.ws5_c02177{word-spacing:17.333028px;}
.ws11_c02177{word-spacing:18.024768px;}
.wsb_c02177{word-spacing:21.990744px;}
.wsa_c02177{word-spacing:21.997332px;}
.wsf_c02177{word-spacing:30.627612px;}
.wse_c02177{word-spacing:31.352292px;}
.ws12_c02177{word-spacing:35.680608px;}
.ws2_c02177{word-spacing:48.689172px;}
.wsd_c02177{word-spacing:64.140768px;}
._6_c02177{margin-left:-1.036440px;}
._7_c02177{width:1.054080px;}
._2_c02177{width:39.870720px;}
._3_c02177{width:40.950720px;}
._5_c02177{width:55.174464px;}
._1_c02177{width:73.850472px;}
._0_c02177{width:194.400000px;}
._4_c02177{width:1494.676440px;}
.fc0_c02177{color:rgb(0,0,0);}
.fs1_c02177{font-size:42.120000px;}
.fs3_c02177{font-size:47.880000px;}
.fs2_c02177{font-size:60.120000px;}
.fs4_c02177{font-size:65.880000px;}
.fs0_c02177{font-size:72.000000px;}
.y0_c02177{bottom:0.000000px;}
.y3_c02177{bottom:57.360450px;}
.y2_c02177{bottom:78.060450px;}
.y1a_c02177{bottom:774.750450px;}
.y17_c02177{bottom:796.350450px;}
.y16_c02177{bottom:816.691665px;}
.y15_c02177{bottom:835.681575px;}
.y14_c02177{bottom:854.671485px;}
.y13_c02177{bottom:873.661395px;}
.y12_c02177{bottom:892.651305px;}
.y11_c02177{bottom:911.550630px;}
.y19_c02177{bottom:929.010450px;}
.y10_c02177{bottom:930.540540px;}
.y18_c02177{bottom:949.440450px;}
.yf_c02177{bottom:955.200450px;}
.yd_c02177{bottom:969.600450px;}
.yc_c02177{bottom:989.940630px;}
.yb_c02177{bottom:1008.930540px;}
.ya_c02177{bottom:1027.920450px;}
.y9_c02177{bottom:1046.910450px;}
.y8_c02177{bottom:1065.810450px;}
.y7_c02177{bottom:1084.800450px;}
.y6_c02177{bottom:1103.790540px;}
.ye_c02177{bottom:1122.690450px;}
.y5_c02177{bottom:1128.450450px;}
.y4_c02177{bottom:1146.270450px;}
.y1_c02177{bottom:1193.160450px;}
.h4_c02177{height:36.957832px;}
.h3_c02177{height:37.410293px;}
.h5_c02177{height:57.805840px;}
.h7_c02177{height:58.513535px;}
.h8_c02177{height:63.170921px;}
.h6_c02177{height:63.175061px;}
.h2_c02177{height:63.175781px;}
.h1_c02177{height:63.949219px;}
.h0_c02177{height:1263.000000px;}
.w1_c02177{width:892.500000px;}
.w0_c02177{width:892.830000px;}
.x0_c02177{left:0.000000px;}
.x1_c02177{left:127.620000px;}
.x3_c02177{left:135.630000px;}
.x4_c02177{left:273.870000px;}
.x2_c02177{left:433.080000px;}
.x5_c02177{left:720.540000px;}
.x6_c02177{left:738.900000px;}
@media print{
.v4_c02177{vertical-align:-20.160000pt;}
.v1_c02177{vertical-align:-15.039467pt;}
.v3_c02177{vertical-align:-4.800000pt;}
.v0_c02177{vertical-align:0.000000pt;}
.v2_c02177{vertical-align:9.919467pt;}
.lsf_c02177{letter-spacing:-0.160992pt;}
.lsd_c02177{letter-spacing:-0.160320pt;}
.lsc_c02177{letter-spacing:-0.157248pt;}
.lsa_c02177{letter-spacing:-0.012800pt;}
.lsb_c02177{letter-spacing:0.000000pt;}
.ls8_c02177{letter-spacing:0.023424pt;}
.ls3_c02177{letter-spacing:0.035136pt;}
.ls9_c02177{letter-spacing:0.040992pt;}
.ls5_c02177{letter-spacing:0.046848pt;}
.ls7_c02177{letter-spacing:0.052704pt;}
.lse_c02177{letter-spacing:0.055328pt;}
.ls4_c02177{letter-spacing:0.058560pt;}
.ls1_c02177{letter-spacing:0.064416pt;}
.ls6_c02177{letter-spacing:0.070272pt;}
.ls2_c02177{letter-spacing:0.081984pt;}
.ls10_c02177{letter-spacing:0.117120pt;}
.ls0_c02177{letter-spacing:0.161728pt;}
.ws1_c02177{word-spacing:0.000000pt;}
.ws0_c02177{word-spacing:0.012800pt;}
.wsc_c02177{word-spacing:0.035136pt;}
.ws6_c02177{word-spacing:4.181184pt;}
.ws10_c02177{word-spacing:5.803296pt;}
.ws8_c02177{word-spacing:6.412320pt;}
.ws9_c02177{word-spacing:6.424032pt;}
.ws7_c02177{word-spacing:9.955200pt;}
.ws4_c02177{word-spacing:13.439520pt;}
.ws3_c02177{word-spacing:13.457088pt;}
.ws13_c02177{word-spacing:13.785024pt;}
.ws5_c02177{word-spacing:15.407136pt;}
.ws11_c02177{word-spacing:16.022016pt;}
.wsb_c02177{word-spacing:19.547328pt;}
.wsa_c02177{word-spacing:19.553184pt;}
.wsf_c02177{word-spacing:27.224544pt;}
.wse_c02177{word-spacing:27.868704pt;}
.ws12_c02177{word-spacing:31.716096pt;}
.ws2_c02177{word-spacing:43.279264pt;}
.wsd_c02177{word-spacing:57.014016pt;}
._6_c02177{margin-left:-0.921280pt;}
._7_c02177{width:0.936960pt;}
._2_c02177{width:35.440640pt;}
._3_c02177{width:36.400640pt;}
._5_c02177{width:49.043968pt;}
._1_c02177{width:65.644864pt;}
._0_c02177{width:172.800000pt;}
._4_c02177{width:1328.601280pt;}
.fs1_c02177{font-size:37.440000pt;}
.fs3_c02177{font-size:42.560000pt;}
.fs2_c02177{font-size:53.440000pt;}
.fs4_c02177{font-size:58.560000pt;}
.fs0_c02177{font-size:64.000000pt;}
.y0_c02177{bottom:0.000000pt;}
.y3_c02177{bottom:50.987067pt;}
.y2_c02177{bottom:69.387067pt;}
.y1a_c02177{bottom:688.667067pt;}
.y17_c02177{bottom:707.867067pt;}
.y16_c02177{bottom:725.948147pt;}
.y15_c02177{bottom:742.828067pt;}
.y14_c02177{bottom:759.707987pt;}
.y13_c02177{bottom:776.587907pt;}
.y12_c02177{bottom:793.467827pt;}
.y11_c02177{bottom:810.267227pt;}
.y19_c02177{bottom:825.787067pt;}
.y10_c02177{bottom:827.147147pt;}
.y18_c02177{bottom:843.947067pt;}
.yf_c02177{bottom:849.067067pt;}
.yd_c02177{bottom:861.867067pt;}
.yc_c02177{bottom:879.947227pt;}
.yb_c02177{bottom:896.827147pt;}
.ya_c02177{bottom:913.707067pt;}
.y9_c02177{bottom:930.587067pt;}
.y8_c02177{bottom:947.387067pt;}
.y7_c02177{bottom:964.267067pt;}
.y6_c02177{bottom:981.147147pt;}
.ye_c02177{bottom:997.947067pt;}
.y5_c02177{bottom:1003.067067pt;}
.y4_c02177{bottom:1018.907067pt;}
.y1_c02177{bottom:1060.587067pt;}
.h4_c02177{height:32.851406pt;}
.h3_c02177{height:33.253594pt;}
.h5_c02177{height:51.382969pt;}
.h7_c02177{height:52.012031pt;}
.h8_c02177{height:56.151930pt;}
.h6_c02177{height:56.155610pt;}
.h2_c02177{height:56.156250pt;}
.h1_c02177{height:56.843750pt;}
.h0_c02177{height:1122.666667pt;}
.w1_c02177{width:793.333333pt;}
.w0_c02177{width:793.626667pt;}
.x0_c02177{left:0.000000pt;}
.x1_c02177{left:113.440000pt;}
.x3_c02177{left:120.560000pt;}
.x4_c02177{left:243.440000pt;}
.x2_c02177{left:384.960000pt;}
.x5_c02177{left:640.480000pt;}
.x6_c02177{left:656.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_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_47d29430ef949f63cb9a74db.woff2')format("woff");}.ff1_c02178{font-family:ff1_c02178;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02178;src:url('chunks/assets/font_139a5e3d60413c08410026d8.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;}
.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;}
.ls1d_c02178{letter-spacing:-0.201600px;}
.ls1e_c02178{letter-spacing:-0.064800px;}
.ls1a_c02178{letter-spacing:-0.043200px;}
.ls1b_c02178{letter-spacing:-0.036000px;}
.ls19_c02178{letter-spacing:-0.021600px;}
.ls18_c02178{letter-spacing:-0.014400px;}
.ls1c_c02178{letter-spacing:-0.013176px;}
.ls17_c02178{letter-spacing:0.000000px;}
.ls16_c02178{letter-spacing:0.006588px;}
.ls0_c02178{letter-spacing:0.007200px;}
.ls13_c02178{letter-spacing:0.013176px;}
.lsc_c02178{letter-spacing:0.014400px;}
.ls11_c02178{letter-spacing:0.019764px;}
.ls1_c02178{letter-spacing:0.021600px;}
.ls4_c02178{letter-spacing:0.026352px;}
.ls20_c02178{letter-spacing:0.028800px;}
.ls2_c02178{letter-spacing:0.032940px;}
.ls9_c02178{letter-spacing:0.039528px;}
.lsd_c02178{letter-spacing:0.043200px;}
.ls3_c02178{letter-spacing:0.046116px;}
.lse_c02178{letter-spacing:0.050400px;}
.ls7_c02178{letter-spacing:0.052704px;}
.lsa_c02178{letter-spacing:0.059292px;}
.lsf_c02178{letter-spacing:0.064800px;}
.ls6_c02178{letter-spacing:0.065880px;}
.lsb_c02178{letter-spacing:0.072468px;}
.ls15_c02178{letter-spacing:0.079056px;}
.ls5_c02178{letter-spacing:0.079200px;}
.ls8_c02178{letter-spacing:0.085644px;}
.ls21_c02178{letter-spacing:0.092232px;}
.ls14_c02178{letter-spacing:0.105408px;}
.ls10_c02178{letter-spacing:0.151524px;}
.ls1f_c02178{letter-spacing:5.132052px;}
.ls12_c02178{letter-spacing:9.809532px;}
.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;}
}
.ws2_c02178{word-spacing:-16.621524px;}
.ws0_c02178{word-spacing:-16.555644px;}
.ws1_c02178{word-spacing:-16.542468px;}
.ws25_c02178{word-spacing:-0.424800px;}
.wsb_c02178{word-spacing:-0.165600px;}
.ws1f_c02178{word-spacing:-0.093600px;}
.ws7_c02178{word-spacing:-0.079200px;}
.ws6_c02178{word-spacing:-0.064800px;}
.ws4_c02178{word-spacing:-0.050400px;}
.ws1d_c02178{word-spacing:-0.028800px;}
.wsc_c02178{word-spacing:-0.021600px;}
.ws15_c02178{word-spacing:-0.014400px;}
.ws3_c02178{word-spacing:0.000000px;}
.ws5_c02178{word-spacing:0.014400px;}
.ws12_c02178{word-spacing:0.026352px;}
.wsd_c02178{word-spacing:0.036000px;}
.ws13_c02178{word-spacing:0.039528px;}
.ws30_c02178{word-spacing:0.046116px;}
.ws11_c02178{word-spacing:0.059292px;}
.ws14_c02178{word-spacing:0.065880px;}
.ws2c_c02178{word-spacing:0.079056px;}
.ws1c_c02178{word-spacing:0.093600px;}
.ws1e_c02178{word-spacing:1.785600px;}
.ws22_c02178{word-spacing:2.044800px;}
.ws23_c02178{word-spacing:2.059200px;}
.ws24_c02178{word-spacing:2.224800px;}
.wsf_c02178{word-spacing:2.925072px;}
.ws10_c02178{word-spacing:2.944836px;}
.ws16_c02178{word-spacing:3.287412px;}
.wse_c02178{word-spacing:4.374432px;}
.ws27_c02178{word-spacing:5.099112px;}
.ws26_c02178{word-spacing:5.105700px;}
.ws28_c02178{word-spacing:5.112288px;}
.ws31_c02178{word-spacing:7.931952px;}
.ws32_c02178{word-spacing:7.997832px;}
.ws33_c02178{word-spacing:8.004420px;}
.ws19_c02178{word-spacing:9.045324px;}
.ws1a_c02178{word-spacing:9.104616px;}
.ws29_c02178{word-spacing:9.387900px;}
.ws2b_c02178{word-spacing:9.407664px;}
.ws2a_c02178{word-spacing:9.427428px;}
.ws18_c02178{word-spacing:10.468332px;}
.ws17_c02178{word-spacing:10.488096px;}
.ws34_c02178{word-spacing:15.534504px;}
.ws35_c02178{word-spacing:15.554268px;}
.ws21_c02178{word-spacing:18.669600px;}
.ws20_c02178{word-spacing:18.705600px;}
.ws9_c02178{word-spacing:21.139200px;}
.wsa_c02178{word-spacing:21.160800px;}
.ws8_c02178{word-spacing:21.189600px;}
.ws1b_c02178{word-spacing:21.641580px;}
.ws2d_c02178{word-spacing:26.266356px;}
.ws2f_c02178{word-spacing:26.358588px;}
.ws2e_c02178{word-spacing:26.384940px;}
._2_c02178{margin-left:-5.777676px;}
._1_c02178{margin-left:-1.093608px;}
._0_c02178{width:1.212192px;}
.fc0_c02178{color:rgb(0,0,0);}
.fs1_c02178{font-size:47.880000px;}
.fs2_c02178{font-size:65.880000px;}
.fs0_c02178{font-size:72.000000px;}
.y0_c02178{bottom:0.000000px;}
.y3_c02178{bottom:57.360450px;}
.y2_c02178{bottom:78.060450px;}
.y36_c02178{bottom:124.770450px;}
.y35_c02178{bottom:143.760450px;}
.y34_c02178{bottom:162.660450px;}
.y33_c02178{bottom:180.570450px;}
.y32_c02178{bottom:195.690450px;}
.y31_c02178{bottom:216.930450px;}
.y30_c02178{bottom:235.920450px;}
.y2f_c02178{bottom:253.740450px;}
.y2e_c02178{bottom:268.860450px;}
.y2d_c02178{bottom:289.290450px;}
.y2c_c02178{bottom:303.870450px;}
.y2b_c02178{bottom:322.860450px;}
.y2a_c02178{bottom:341.850450px;}
.y29_c02178{bottom:359.670450px;}
.y28_c02178{bottom:374.790600px;}
.y27_c02178{bottom:394.950600px;}
.y26_c02178{bottom:420.600450px;}
.y25_c02178{bottom:451.650450px;}
.y24_c02178{bottom:482.700450px;}
.y23_c02178{bottom:513.750450px;}
.y22_c02178{bottom:544.800450px;}
.y21_c02178{bottom:575.850450px;}
.y20_c02178{bottom:602.310450px;}
.y1f_c02178{bottom:616.710450px;}
.y1e_c02178{bottom:631.380450px;}
.y1d_c02178{bottom:650.370450px;}
.y1c_c02178{bottom:669.360450px;}
.y1b_c02178{bottom:688.260450px;}
.y1a_c02178{bottom:707.340450px;}
.y19_c02178{bottom:726.240450px;}
.y18_c02178{bottom:745.230450px;}
.y17_c02178{bottom:763.140450px;}
.y16_c02178{bottom:778.260450px;}
.y15_c02178{bottom:798.600450px;}
.y14_c02178{bottom:813.270450px;}
.y13_c02178{bottom:832.260450px;}
.y12_c02178{bottom:851.250600px;}
.y11_c02178{bottom:869.340450px;}
.y10_c02178{bottom:884.190450px;}
.yf_c02178{bottom:904.620450px;}
.ye_c02178{bottom:919.200450px;}
.yd_c02178{bottom:938.190450px;}
.yc_c02178{bottom:957.180450px;}
.yb_c02178{bottom:975.270450px;}
.ya_c02178{bottom:990.120450px;}
.y9_c02178{bottom:1011.630450px;}
.y8_c02178{bottom:1043.580450px;}
.y7_c02178{bottom:1074.630450px;}
.y6_c02178{bottom:1093.800450px;}
.y5_c02178{bottom:1108.920450px;}
.y4_c02178{bottom:1139.970450px;}
.y1_c02178{bottom:1193.160450px;}
.h4_c02178{height:42.011895px;}
.h3_c02178{height:42.526230px;}
.h5_c02178{height:57.805840px;}
.h6_c02178{height:58.513535px;}
.h2_c02178{height:63.175781px;}
.h1_c02178{height:63.949219px;}
.h0_c02178{height:1263.000000px;}
.w1_c02178{width:892.500000px;}
.w0_c02178{width:892.830000px;}
.x0_c02178{left:0.000000px;}
.x1_c02178{left:127.620000px;}
.x6_c02178{left:135.630000px;}
.x5_c02178{left:148.950000px;}
.x7_c02178{left:159.480000px;}
.x4_c02178{left:178.020000px;}
.x3_c02178{left:406.350000px;}
.x2_c02178{left:433.080000px;}
@media print{
.v0_c02178{vertical-align:0.000000pt;}
.ls1d_c02178{letter-spacing:-0.179200pt;}
.ls1e_c02178{letter-spacing:-0.057600pt;}
.ls1a_c02178{letter-spacing:-0.038400pt;}
.ls1b_c02178{letter-spacing:-0.032000pt;}
.ls19_c02178{letter-spacing:-0.019200pt;}
.ls18_c02178{letter-spacing:-0.012800pt;}
.ls1c_c02178{letter-spacing:-0.011712pt;}
.ls17_c02178{letter-spacing:0.000000pt;}
.ls16_c02178{letter-spacing:0.005856pt;}
.ls0_c02178{letter-spacing:0.006400pt;}
.ls13_c02178{letter-spacing:0.011712pt;}
.lsc_c02178{letter-spacing:0.012800pt;}
.ls11_c02178{letter-spacing:0.017568pt;}
.ls1_c02178{letter-spacing:0.019200pt;}
.ls4_c02178{letter-spacing:0.023424pt;}
.ls20_c02178{letter-spacing:0.025600pt;}
.ls2_c02178{letter-spacing:0.029280pt;}
.ls9_c02178{letter-spacing:0.035136pt;}
.lsd_c02178{letter-spacing:0.038400pt;}
.ls3_c02178{letter-spacing:0.040992pt;}
.lse_c02178{letter-spacing:0.044800pt;}
.ls7_c02178{letter-spacing:0.046848pt;}
.lsa_c02178{letter-spacing:0.052704pt;}
.lsf_c02178{letter-spacing:0.057600pt;}
.ls6_c02178{letter-spacing:0.058560pt;}
.lsb_c02178{letter-spacing:0.064416pt;}
.ls15_c02178{letter-spacing:0.070272pt;}
.ls5_c02178{letter-spacing:0.070400pt;}
.ls8_c02178{letter-spacing:0.076128pt;}
.ls21_c02178{letter-spacing:0.081984pt;}
.ls14_c02178{letter-spacing:0.093696pt;}
.ls10_c02178{letter-spacing:0.134688pt;}
.ls1f_c02178{letter-spacing:4.561824pt;}
.ls12_c02178{letter-spacing:8.719584pt;}
.ws2_c02178{word-spacing:-14.774688pt;}
.ws0_c02178{word-spacing:-14.716128pt;}
.ws1_c02178{word-spacing:-14.704416pt;}
.ws25_c02178{word-spacing:-0.377600pt;}
.wsb_c02178{word-spacing:-0.147200pt;}
.ws1f_c02178{word-spacing:-0.083200pt;}
.ws7_c02178{word-spacing:-0.070400pt;}
.ws6_c02178{word-spacing:-0.057600pt;}
.ws4_c02178{word-spacing:-0.044800pt;}
.ws1d_c02178{word-spacing:-0.025600pt;}
.wsc_c02178{word-spacing:-0.019200pt;}
.ws15_c02178{word-spacing:-0.012800pt;}
.ws3_c02178{word-spacing:0.000000pt;}
.ws5_c02178{word-spacing:0.012800pt;}
.ws12_c02178{word-spacing:0.023424pt;}
.wsd_c02178{word-spacing:0.032000pt;}
.ws13_c02178{word-spacing:0.035136pt;}
.ws30_c02178{word-spacing:0.040992pt;}
.ws11_c02178{word-spacing:0.052704pt;}
.ws14_c02178{word-spacing:0.058560pt;}
.ws2c_c02178{word-spacing:0.070272pt;}
.ws1c_c02178{word-spacing:0.083200pt;}
.ws1e_c02178{word-spacing:1.587200pt;}
.ws22_c02178{word-spacing:1.817600pt;}
.ws23_c02178{word-spacing:1.830400pt;}
.ws24_c02178{word-spacing:1.977600pt;}
.wsf_c02178{word-spacing:2.600064pt;}
.ws10_c02178{word-spacing:2.617632pt;}
.ws16_c02178{word-spacing:2.922144pt;}
.wse_c02178{word-spacing:3.888384pt;}
.ws27_c02178{word-spacing:4.532544pt;}
.ws26_c02178{word-spacing:4.538400pt;}
.ws28_c02178{word-spacing:4.544256pt;}
.ws31_c02178{word-spacing:7.050624pt;}
.ws32_c02178{word-spacing:7.109184pt;}
.ws33_c02178{word-spacing:7.115040pt;}
.ws19_c02178{word-spacing:8.040288pt;}
.ws1a_c02178{word-spacing:8.092992pt;}
.ws29_c02178{word-spacing:8.344800pt;}
.ws2b_c02178{word-spacing:8.362368pt;}
.ws2a_c02178{word-spacing:8.379936pt;}
.ws18_c02178{word-spacing:9.305184pt;}
.ws17_c02178{word-spacing:9.322752pt;}
.ws34_c02178{word-spacing:13.808448pt;}
.ws35_c02178{word-spacing:13.826016pt;}
.ws21_c02178{word-spacing:16.595200pt;}
.ws20_c02178{word-spacing:16.627200pt;}
.ws9_c02178{word-spacing:18.790400pt;}
.wsa_c02178{word-spacing:18.809600pt;}
.ws8_c02178{word-spacing:18.835200pt;}
.ws1b_c02178{word-spacing:19.236960pt;}
.ws2d_c02178{word-spacing:23.347872pt;}
.ws2f_c02178{word-spacing:23.429856pt;}
.ws2e_c02178{word-spacing:23.453280pt;}
._2_c02178{margin-left:-5.135712pt;}
._1_c02178{margin-left:-0.972096pt;}
._0_c02178{width:1.077504pt;}
.fs1_c02178{font-size:42.560000pt;}
.fs2_c02178{font-size:58.560000pt;}
.fs0_c02178{font-size:64.000000pt;}
.y0_c02178{bottom:0.000000pt;}
.y3_c02178{bottom:50.987067pt;}
.y2_c02178{bottom:69.387067pt;}
.y36_c02178{bottom:110.907067pt;}
.y35_c02178{bottom:127.787067pt;}
.y34_c02178{bottom:144.587067pt;}
.y33_c02178{bottom:160.507067pt;}
.y32_c02178{bottom:173.947067pt;}
.y31_c02178{bottom:192.827067pt;}
.y30_c02178{bottom:209.707067pt;}
.y2f_c02178{bottom:225.547067pt;}
.y2e_c02178{bottom:238.987067pt;}
.y2d_c02178{bottom:257.147067pt;}
.y2c_c02178{bottom:270.107067pt;}
.y2b_c02178{bottom:286.987067pt;}
.y2a_c02178{bottom:303.867067pt;}
.y29_c02178{bottom:319.707067pt;}
.y28_c02178{bottom:333.147200pt;}
.y27_c02178{bottom:351.067200pt;}
.y26_c02178{bottom:373.867067pt;}
.y25_c02178{bottom:401.467067pt;}
.y24_c02178{bottom:429.067067pt;}
.y23_c02178{bottom:456.667067pt;}
.y22_c02178{bottom:484.267067pt;}
.y21_c02178{bottom:511.867067pt;}
.y20_c02178{bottom:535.387067pt;}
.y1f_c02178{bottom:548.187067pt;}
.y1e_c02178{bottom:561.227067pt;}
.y1d_c02178{bottom:578.107067pt;}
.y1c_c02178{bottom:594.987067pt;}
.y1b_c02178{bottom:611.787067pt;}
.y1a_c02178{bottom:628.747067pt;}
.y19_c02178{bottom:645.547067pt;}
.y18_c02178{bottom:662.427067pt;}
.y17_c02178{bottom:678.347067pt;}
.y16_c02178{bottom:691.787067pt;}
.y15_c02178{bottom:709.867067pt;}
.y14_c02178{bottom:722.907067pt;}
.y13_c02178{bottom:739.787067pt;}
.y12_c02178{bottom:756.667200pt;}
.y11_c02178{bottom:772.747067pt;}
.y10_c02178{bottom:785.947067pt;}
.yf_c02178{bottom:804.107067pt;}
.ye_c02178{bottom:817.067067pt;}
.yd_c02178{bottom:833.947067pt;}
.yc_c02178{bottom:850.827067pt;}
.yb_c02178{bottom:866.907067pt;}
.ya_c02178{bottom:880.107067pt;}
.y9_c02178{bottom:899.227067pt;}
.y8_c02178{bottom:927.627067pt;}
.y7_c02178{bottom:955.227067pt;}
.y6_c02178{bottom:972.267067pt;}
.y5_c02178{bottom:985.707067pt;}
.y4_c02178{bottom:1013.307067pt;}
.y1_c02178{bottom:1060.587067pt;}
.h4_c02178{height:37.343906pt;}
.h3_c02178{height:37.801094pt;}
.h5_c02178{height:51.382969pt;}
.h6_c02178{height:52.012031pt;}
.h2_c02178{height:56.156250pt;}
.h1_c02178{height:56.843750pt;}
.h0_c02178{height:1122.666667pt;}
.w1_c02178{width:793.333333pt;}
.w0_c02178{width:793.626667pt;}
.x0_c02178{left:0.000000pt;}
.x1_c02178{left:113.440000pt;}
.x6_c02178{left:120.560000pt;}
.x5_c02178{left:132.400000pt;}
.x7_c02178{left:141.760000pt;}
.x4_c02178{left:158.240000pt;}
.x3_c02178{left:361.200000pt;}
.x2_c02178{left:384.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_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_2d5a2d271087be7c32e4fb82.woff2')format("woff");}.ff1_c02179{font-family:ff1_c02179;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02179;src:url('chunks/assets/font_1e8fbbe0b7d9df4c8a9a3927.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;}
.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;}
.ls1d_c02179{letter-spacing:-0.057600px;}
.ls20_c02179{letter-spacing:-0.052704px;}
.ls1c_c02179{letter-spacing:-0.036000px;}
.ls1a_c02179{letter-spacing:-0.032940px;}
.ls1e_c02179{letter-spacing:-0.028800px;}
.ls23_c02179{letter-spacing:-0.021600px;}
.ls22_c02179{letter-spacing:-0.019764px;}
.ls1b_c02179{letter-spacing:-0.014400px;}
.ls21_c02179{letter-spacing:-0.007200px;}
.ls1f_c02179{letter-spacing:-0.006588px;}
.ls19_c02179{letter-spacing:0.000000px;}
.ls8_c02179{letter-spacing:0.006588px;}
.ls15_c02179{letter-spacing:0.007200px;}
.ls3_c02179{letter-spacing:0.013176px;}
.ls0_c02179{letter-spacing:0.014400px;}
.ls5_c02179{letter-spacing:0.019764px;}
.ls10_c02179{letter-spacing:0.021600px;}
.ls13_c02179{letter-spacing:0.026352px;}
.lsd_c02179{letter-spacing:0.028800px;}
.lsa_c02179{letter-spacing:0.032940px;}
.lsf_c02179{letter-spacing:0.036000px;}
.ls7_c02179{letter-spacing:0.039528px;}
.ls4_c02179{letter-spacing:0.046116px;}
.lsc_c02179{letter-spacing:0.050400px;}
.ls14_c02179{letter-spacing:0.052704px;}
.ls17_c02179{letter-spacing:0.059292px;}
.lse_c02179{letter-spacing:0.064800px;}
.ls9_c02179{letter-spacing:0.065880px;}
.ls2_c02179{letter-spacing:0.072468px;}
.lsb_c02179{letter-spacing:0.079200px;}
.ls18_c02179{letter-spacing:0.085644px;}
.ls6_c02179{letter-spacing:0.092232px;}
.ls12_c02179{letter-spacing:0.098820px;}
.ls1_c02179{letter-spacing:0.111996px;}
.ls16_c02179{letter-spacing:0.131760px;}
.ls11_c02179{letter-spacing:0.151524px;}
.sc__c02179{text-shadow:none;}
.sc0_c02179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02179{-webkit-text-stroke:0px transparent;}
.sc0_c02179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02179{word-spacing:-16.621524px;}
.ws1_c02179{word-spacing:-16.417296px;}
.ws1c_c02179{word-spacing:-0.122400px;}
.ws1d_c02179{word-spacing:-0.108000px;}
.ws1e_c02179{word-spacing:-0.086400px;}
.ws3_c02179{word-spacing:-0.050400px;}
.ws4_c02179{word-spacing:-0.014400px;}
.wsb_c02179{word-spacing:-0.007200px;}
.ws2_c02179{word-spacing:0.000000px;}
.ws2f_c02179{word-spacing:0.007200px;}
.ws3d_c02179{word-spacing:0.014400px;}
.ws11_c02179{word-spacing:0.019764px;}
.ws10_c02179{word-spacing:0.026352px;}
.ws2d_c02179{word-spacing:0.052704px;}
.ws2e_c02179{word-spacing:0.059292px;}
.ws24_c02179{word-spacing:0.065880px;}
.ws9_c02179{word-spacing:0.072468px;}
.wsf_c02179{word-spacing:0.085644px;}
.wsa_c02179{word-spacing:0.125172px;}
.ws12_c02179{word-spacing:0.187200px;}
.ws13_c02179{word-spacing:0.374400px;}
.ws30_c02179{word-spacing:1.106784px;}
.ws31_c02179{word-spacing:1.133136px;}
.ws37_c02179{word-spacing:1.805112px;}
.ws36_c02179{word-spacing:1.870992px;}
.ws29_c02179{word-spacing:2.180628px;}
.ws2a_c02179{word-spacing:2.259684px;}
.ws5_c02179{word-spacing:3.979152px;}
.ws7_c02179{word-spacing:4.005504px;}
.ws8_c02179{word-spacing:4.031856px;}
.ws6_c02179{word-spacing:4.038444px;}
.ws32_c02179{word-spacing:6.522120px;}
.ws33_c02179{word-spacing:6.548472px;}
.ws34_c02179{word-spacing:6.588000px;}
.wse_c02179{word-spacing:7.246800px;}
.wsd_c02179{word-spacing:7.648668px;}
.ws28_c02179{word-spacing:7.958304px;}
.ws3b_c02179{word-spacing:9.914400px;}
.ws3c_c02179{word-spacing:10.029600px;}
.ws3a_c02179{word-spacing:10.072800px;}
.ws23_c02179{word-spacing:12.978360px;}
.ws22_c02179{word-spacing:13.037652px;}
.ws21_c02179{word-spacing:13.050828px;}
.ws14_c02179{word-spacing:14.731200px;}
.ws15_c02179{word-spacing:14.745600px;}
.ws2c_c02179{word-spacing:14.809824px;}
.ws2b_c02179{word-spacing:14.829588px;}
.ws17_c02179{word-spacing:15.372000px;}
.ws18_c02179{word-spacing:15.444000px;}
.ws16_c02179{word-spacing:15.516000px;}
.ws35_c02179{word-spacing:17.675604px;}
.ws27_c02179{word-spacing:17.998416px;}
.ws26_c02179{word-spacing:18.051120px;}
.ws25_c02179{word-spacing:18.064296px;}
.wsc_c02179{word-spacing:20.211984px;}
.ws20_c02179{word-spacing:20.508444px;}
.ws1f_c02179{word-spacing:20.534796px;}
.ws38_c02179{word-spacing:23.459868px;}
.ws39_c02179{word-spacing:23.486220px;}
.ws19_c02179{word-spacing:23.680800px;}
.ws1b_c02179{word-spacing:23.695200px;}
.ws1a_c02179{word-spacing:23.788800px;}
._3_c02179{margin-left:-1.872000px;}
._1_c02179{width:1.113372px;}
._5_c02179{width:2.141100px;}
._0_c02179{width:3.939624px;}
._4_c02179{width:17.978652px;}
._2_c02179{width:20.139516px;}
.fc0_c02179{color:rgb(0,0,0);}
.fs3_c02179{font-size:24.120000px;}
.fs1_c02179{font-size:47.880000px;}
.fs2_c02179{font-size:65.880000px;}
.fs0_c02179{font-size:72.000000px;}
.y0_c02179{bottom:0.000000px;}
.y3_c02179{bottom:57.360450px;}
.y2_c02179{bottom:78.060450px;}
.y37_c02179{bottom:126.840450px;}
.y36_c02179{bottom:147.540450px;}
.y35_c02179{bottom:168.240450px;}
.y34_c02179{bottom:199.290450px;}
.y33_c02179{bottom:230.340450px;}
.y32_c02179{bottom:251.040450px;}
.y31_c02179{bottom:271.020450px;}
.y30_c02179{bottom:285.780450px;}
.y2f_c02179{bottom:304.860450px;}
.y2e_c02179{bottom:323.850450px;}
.y2d_c02179{bottom:342.840450px;}
.y2c_c02179{bottom:361.830450px;}
.y2b_c02179{bottom:380.820450px;}
.y2a_c02179{bottom:398.640450px;}
.y29_c02179{bottom:413.760450px;}
.y28_c02179{bottom:434.100450px;}
.y27_c02179{bottom:448.770600px;}
.y26_c02179{bottom:467.760450px;}
.y25_c02179{bottom:486.750600px;}
.y24_c02179{bottom:504.570450px;}
.y23_c02179{bottom:519.690600px;}
.y22_c02179{bottom:540.120450px;}
.y21_c02179{bottom:554.790450px;}
.y20_c02179{bottom:573.780450px;}
.y1f_c02179{bottom:592.680450px;}
.y1e_c02179{bottom:610.590450px;}
.y1d_c02179{bottom:625.710450px;}
.y1c_c02179{bottom:646.050450px;}
.y1b_c02179{bottom:660.720450px;}
.y1a_c02179{bottom:679.710450px;}
.y19_c02179{bottom:698.700450px;}
.y18_c02179{bottom:716.520450px;}
.y17_c02179{bottom:731.640450px;}
.y16_c02179{bottom:753.240450px;}
.y15_c02179{bottom:784.290450px;}
.y14_c02179{bottom:815.340450px;}
.y13_c02179{bottom:846.390450px;}
.y12_c02179{bottom:877.440450px;}
.y11_c02179{bottom:908.490450px;}
.y10_c02179{bottom:939.360450px;}
.yf_c02179{bottom:957.540600px;}
.ye_c02179{bottom:966.630450px;}
.yd_c02179{bottom:981.300450px;}
.yc_c02179{bottom:1000.290450px;}
.yb_c02179{bottom:1019.280450px;}
.ya_c02179{bottom:1037.100450px;}
.y9_c02179{bottom:1052.220450px;}
.y8_c02179{bottom:1072.650450px;}
.y7_c02179{bottom:1087.320450px;}
.y6_c02179{bottom:1106.310450px;}
.y5_c02179{bottom:1124.130450px;}
.y4_c02179{bottom:1139.250450px;}
.y1_c02179{bottom:1193.160450px;}
.h6_c02179{height:21.422988px;}
.h5_c02179{height:42.011895px;}
.h3_c02179{height:42.526230px;}
.h7_c02179{height:57.805840px;}
.h4_c02179{height:58.513535px;}
.h2_c02179{height:63.175781px;}
.h1_c02179{height:63.949219px;}
.h0_c02179{height:1263.000000px;}
.w1_c02179{width:892.500000px;}
.w0_c02179{width:892.830000px;}
.x0_c02179{left:0.000000px;}
.x1_c02179{left:127.620000px;}
.x3_c02179{left:135.630000px;}
.x4_c02179{left:148.950000px;}
.x2_c02179{left:433.080000px;}
@media print{
.v0_c02179{vertical-align:0.000000pt;}
.ls1d_c02179{letter-spacing:-0.051200pt;}
.ls20_c02179{letter-spacing:-0.046848pt;}
.ls1c_c02179{letter-spacing:-0.032000pt;}
.ls1a_c02179{letter-spacing:-0.029280pt;}
.ls1e_c02179{letter-spacing:-0.025600pt;}
.ls23_c02179{letter-spacing:-0.019200pt;}
.ls22_c02179{letter-spacing:-0.017568pt;}
.ls1b_c02179{letter-spacing:-0.012800pt;}
.ls21_c02179{letter-spacing:-0.006400pt;}
.ls1f_c02179{letter-spacing:-0.005856pt;}
.ls19_c02179{letter-spacing:0.000000pt;}
.ls8_c02179{letter-spacing:0.005856pt;}
.ls15_c02179{letter-spacing:0.006400pt;}
.ls3_c02179{letter-spacing:0.011712pt;}
.ls0_c02179{letter-spacing:0.012800pt;}
.ls5_c02179{letter-spacing:0.017568pt;}
.ls10_c02179{letter-spacing:0.019200pt;}
.ls13_c02179{letter-spacing:0.023424pt;}
.lsd_c02179{letter-spacing:0.025600pt;}
.lsa_c02179{letter-spacing:0.029280pt;}
.lsf_c02179{letter-spacing:0.032000pt;}
.ls7_c02179{letter-spacing:0.035136pt;}
.ls4_c02179{letter-spacing:0.040992pt;}
.lsc_c02179{letter-spacing:0.044800pt;}
.ls14_c02179{letter-spacing:0.046848pt;}
.ls17_c02179{letter-spacing:0.052704pt;}
.lse_c02179{letter-spacing:0.057600pt;}
.ls9_c02179{letter-spacing:0.058560pt;}
.ls2_c02179{letter-spacing:0.064416pt;}
.lsb_c02179{letter-spacing:0.070400pt;}
.ls18_c02179{letter-spacing:0.076128pt;}
.ls6_c02179{letter-spacing:0.081984pt;}
.ls12_c02179{letter-spacing:0.087840pt;}
.ls1_c02179{letter-spacing:0.099552pt;}
.ls16_c02179{letter-spacing:0.117120pt;}
.ls11_c02179{letter-spacing:0.134688pt;}
.ws0_c02179{word-spacing:-14.774688pt;}
.ws1_c02179{word-spacing:-14.593152pt;}
.ws1c_c02179{word-spacing:-0.108800pt;}
.ws1d_c02179{word-spacing:-0.096000pt;}
.ws1e_c02179{word-spacing:-0.076800pt;}
.ws3_c02179{word-spacing:-0.044800pt;}
.ws4_c02179{word-spacing:-0.012800pt;}
.wsb_c02179{word-spacing:-0.006400pt;}
.ws2_c02179{word-spacing:0.000000pt;}
.ws2f_c02179{word-spacing:0.006400pt;}
.ws3d_c02179{word-spacing:0.012800pt;}
.ws11_c02179{word-spacing:0.017568pt;}
.ws10_c02179{word-spacing:0.023424pt;}
.ws2d_c02179{word-spacing:0.046848pt;}
.ws2e_c02179{word-spacing:0.052704pt;}
.ws24_c02179{word-spacing:0.058560pt;}
.ws9_c02179{word-spacing:0.064416pt;}
.wsf_c02179{word-spacing:0.076128pt;}
.wsa_c02179{word-spacing:0.111264pt;}
.ws12_c02179{word-spacing:0.166400pt;}
.ws13_c02179{word-spacing:0.332800pt;}
.ws30_c02179{word-spacing:0.983808pt;}
.ws31_c02179{word-spacing:1.007232pt;}
.ws37_c02179{word-spacing:1.604544pt;}
.ws36_c02179{word-spacing:1.663104pt;}
.ws29_c02179{word-spacing:1.938336pt;}
.ws2a_c02179{word-spacing:2.008608pt;}
.ws5_c02179{word-spacing:3.537024pt;}
.ws7_c02179{word-spacing:3.560448pt;}
.ws8_c02179{word-spacing:3.583872pt;}
.ws6_c02179{word-spacing:3.589728pt;}
.ws32_c02179{word-spacing:5.797440pt;}
.ws33_c02179{word-spacing:5.820864pt;}
.ws34_c02179{word-spacing:5.856000pt;}
.wse_c02179{word-spacing:6.441600pt;}
.wsd_c02179{word-spacing:6.798816pt;}
.ws28_c02179{word-spacing:7.074048pt;}
.ws3b_c02179{word-spacing:8.812800pt;}
.ws3c_c02179{word-spacing:8.915200pt;}
.ws3a_c02179{word-spacing:8.953600pt;}
.ws23_c02179{word-spacing:11.536320pt;}
.ws22_c02179{word-spacing:11.589024pt;}
.ws21_c02179{word-spacing:11.600736pt;}
.ws14_c02179{word-spacing:13.094400pt;}
.ws15_c02179{word-spacing:13.107200pt;}
.ws2c_c02179{word-spacing:13.164288pt;}
.ws2b_c02179{word-spacing:13.181856pt;}
.ws17_c02179{word-spacing:13.664000pt;}
.ws18_c02179{word-spacing:13.728000pt;}
.ws16_c02179{word-spacing:13.792000pt;}
.ws35_c02179{word-spacing:15.711648pt;}
.ws27_c02179{word-spacing:15.998592pt;}
.ws26_c02179{word-spacing:16.045440pt;}
.ws25_c02179{word-spacing:16.057152pt;}
.wsc_c02179{word-spacing:17.966208pt;}
.ws20_c02179{word-spacing:18.229728pt;}
.ws1f_c02179{word-spacing:18.253152pt;}
.ws38_c02179{word-spacing:20.853216pt;}
.ws39_c02179{word-spacing:20.876640pt;}
.ws19_c02179{word-spacing:21.049600pt;}
.ws1b_c02179{word-spacing:21.062400pt;}
.ws1a_c02179{word-spacing:21.145600pt;}
._3_c02179{margin-left:-1.664000pt;}
._1_c02179{width:0.989664pt;}
._5_c02179{width:1.903200pt;}
._0_c02179{width:3.501888pt;}
._4_c02179{width:15.981024pt;}
._2_c02179{width:17.901792pt;}
.fs3_c02179{font-size:21.440000pt;}
.fs1_c02179{font-size:42.560000pt;}
.fs2_c02179{font-size:58.560000pt;}
.fs0_c02179{font-size:64.000000pt;}
.y0_c02179{bottom:0.000000pt;}
.y3_c02179{bottom:50.987067pt;}
.y2_c02179{bottom:69.387067pt;}
.y37_c02179{bottom:112.747067pt;}
.y36_c02179{bottom:131.147067pt;}
.y35_c02179{bottom:149.547067pt;}
.y34_c02179{bottom:177.147067pt;}
.y33_c02179{bottom:204.747067pt;}
.y32_c02179{bottom:223.147067pt;}
.y31_c02179{bottom:240.907067pt;}
.y30_c02179{bottom:254.027067pt;}
.y2f_c02179{bottom:270.987067pt;}
.y2e_c02179{bottom:287.867067pt;}
.y2d_c02179{bottom:304.747067pt;}
.y2c_c02179{bottom:321.627067pt;}
.y2b_c02179{bottom:338.507067pt;}
.y2a_c02179{bottom:354.347067pt;}
.y29_c02179{bottom:367.787067pt;}
.y28_c02179{bottom:385.867067pt;}
.y27_c02179{bottom:398.907200pt;}
.y26_c02179{bottom:415.787067pt;}
.y25_c02179{bottom:432.667200pt;}
.y24_c02179{bottom:448.507067pt;}
.y23_c02179{bottom:461.947200pt;}
.y22_c02179{bottom:480.107067pt;}
.y21_c02179{bottom:493.147067pt;}
.y20_c02179{bottom:510.027067pt;}
.y1f_c02179{bottom:526.827067pt;}
.y1e_c02179{bottom:542.747067pt;}
.y1d_c02179{bottom:556.187067pt;}
.y1c_c02179{bottom:574.267067pt;}
.y1b_c02179{bottom:587.307067pt;}
.y1a_c02179{bottom:604.187067pt;}
.y19_c02179{bottom:621.067067pt;}
.y18_c02179{bottom:636.907067pt;}
.y17_c02179{bottom:650.347067pt;}
.y16_c02179{bottom:669.547067pt;}
.y15_c02179{bottom:697.147067pt;}
.y14_c02179{bottom:724.747067pt;}
.y13_c02179{bottom:752.347067pt;}
.y12_c02179{bottom:779.947067pt;}
.y11_c02179{bottom:807.547067pt;}
.y10_c02179{bottom:834.987067pt;}
.yf_c02179{bottom:851.147200pt;}
.ye_c02179{bottom:859.227067pt;}
.yd_c02179{bottom:872.267067pt;}
.yc_c02179{bottom:889.147067pt;}
.yb_c02179{bottom:906.027067pt;}
.ya_c02179{bottom:921.867067pt;}
.y9_c02179{bottom:935.307067pt;}
.y8_c02179{bottom:953.467067pt;}
.y7_c02179{bottom:966.507067pt;}
.y6_c02179{bottom:983.387067pt;}
.y5_c02179{bottom:999.227067pt;}
.y4_c02179{bottom:1012.667067pt;}
.y1_c02179{bottom:1060.587067pt;}
.h6_c02179{height:19.042656pt;}
.h5_c02179{height:37.343906pt;}
.h3_c02179{height:37.801094pt;}
.h7_c02179{height:51.382969pt;}
.h4_c02179{height:52.012031pt;}
.h2_c02179{height:56.156250pt;}
.h1_c02179{height:56.843750pt;}
.h0_c02179{height:1122.666667pt;}
.w1_c02179{width:793.333333pt;}
.w0_c02179{width:793.626667pt;}
.x0_c02179{left:0.000000pt;}
.x1_c02179{left:113.440000pt;}
.x3_c02179{left:120.560000pt;}
.x4_c02179{left:132.400000pt;}
.x2_c02179{left:384.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_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_0e6c0389ee3ed77ddd19300f.woff2')format("woff");}.ff1_c02180{font-family:ff1_c02180;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02180;src:url('chunks/assets/font_d0d6b55f0c70248d03d87c8d.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02180{font-family:ff3_c02180;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;}
.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);}
.v1_c02180{vertical-align:-16.560000px;}
.v2_c02180{vertical-align:-5.400000px;}
.v0_c02180{vertical-align:0.000000px;}
.ls18_c02180{letter-spacing:-0.334800px;}
.ls19_c02180{letter-spacing:-0.248400px;}
.ls12_c02180{letter-spacing:-0.050400px;}
.ls17_c02180{letter-spacing:-0.021600px;}
.ls11_c02180{letter-spacing:-0.014400px;}
.ls15_c02180{letter-spacing:-0.005400px;}
.lsf_c02180{letter-spacing:0.000000px;}
.ls0_c02180{letter-spacing:0.007200px;}
.ls9_c02180{letter-spacing:0.009576px;}
.lsb_c02180{letter-spacing:0.010800px;}
.lsa_c02180{letter-spacing:0.013176px;}
.ls3_c02180{letter-spacing:0.014400px;}
.ls5_c02180{letter-spacing:0.021600px;}
.ls10_c02180{letter-spacing:0.028800px;}
.ls6_c02180{letter-spacing:0.036000px;}
.ls1_c02180{letter-spacing:0.043200px;}
.lsc_c02180{letter-spacing:0.046116px;}
.ls14_c02180{letter-spacing:0.050400px;}
.lse_c02180{letter-spacing:0.052704px;}
.ls4_c02180{letter-spacing:0.057600px;}
.ls2_c02180{letter-spacing:0.079200px;}
.ls8_c02180{letter-spacing:0.090000px;}
.lsd_c02180{letter-spacing:0.145800px;}
.ls16_c02180{letter-spacing:0.181944px;}
.ls7_c02180{letter-spacing:14.400000px;}
.ls13_c02180{letter-spacing:38.880000px;}
.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;}
}
.ws1_c02180{word-spacing:-54.000000px;}
.ws0_c02180{word-spacing:-17.985600px;}
.ws4_c02180{word-spacing:-0.187200px;}
.ws12_c02180{word-spacing:-0.108000px;}
.ws11_c02180{word-spacing:-0.072000px;}
.ws3_c02180{word-spacing:-0.050400px;}
.wsf_c02180{word-spacing:-0.021600px;}
.ws5_c02180{word-spacing:-0.007200px;}
.ws2_c02180{word-spacing:0.000000px;}
.ws10_c02180{word-spacing:0.014400px;}
.ws1f_c02180{word-spacing:0.039528px;}
.ws1a_c02180{word-spacing:0.046116px;}
.ws19_c02180{word-spacing:0.167400px;}
.ws1e_c02180{word-spacing:0.178200px;}
.ws18_c02180{word-spacing:0.183600px;}
.ws1b_c02180{word-spacing:0.199800px;}
.ws1d_c02180{word-spacing:0.426600px;}
.ws1c_c02180{word-spacing:0.513000px;}
.wsb_c02180{word-spacing:9.345600px;}
.wsa_c02180{word-spacing:9.540000px;}
.ws9_c02180{word-spacing:9.705600px;}
.wsd_c02180{word-spacing:13.593600px;}
.wsc_c02180{word-spacing:13.680000px;}
.ws17_c02180{word-spacing:14.342400px;}
.ws16_c02180{word-spacing:14.392800px;}
.ws6_c02180{word-spacing:16.516800px;}
.wse_c02180{word-spacing:20.102400px;}
.ws8_c02180{word-spacing:23.997600px;}
.ws7_c02180{word-spacing:24.040800px;}
.ws15_c02180{word-spacing:38.829600px;}
.ws14_c02180{word-spacing:38.836800px;}
.ws13_c02180{word-spacing:38.844000px;}
._1_c02180{margin-left:-39.873600px;}
._0_c02180{margin-left:-1.166400px;}
._6_c02180{width:1.252800px;}
._2_c02180{width:74.071512px;}
._4_c02180{width:76.044168px;}
._5_c02180{width:85.788648px;}
._7_c02180{width:228.695544px;}
._3_c02180{width:419.721192px;}
.fc0_c02180{color:rgb(0,0,0);}
.fs4_c02180{font-size:2.880000px;}
.fs1_c02180{font-size:47.880000px;}
.fs3_c02180{font-size:54.000000px;}
.fs2_c02180{font-size:65.880000px;}
.fs0_c02180{font-size:72.000000px;}
.y0_c02180{bottom:0.000000px;}
.y3_c02180{bottom:57.360450px;}
.y2_c02180{bottom:78.060450px;}
.y32_c02180{bottom:127.200450px;}
.y31_c02180{bottom:147.900450px;}
.y30_c02180{bottom:168.600450px;}
.y2f_c02180{bottom:189.300450px;}
.y2e_c02180{bottom:210.000450px;}
.y2d_c02180{bottom:230.700450px;}
.y2c_c02180{bottom:251.400450px;}
.y2b_c02180{bottom:272.100450px;}
.y2a_c02180{bottom:292.800450px;}
.y29_c02180{bottom:313.500450px;}
.y28_c02180{bottom:334.200450px;}
.y27_c02180{bottom:354.900450px;}
.y26_c02180{bottom:375.600450px;}
.y25_c02180{bottom:396.300450px;}
.y24_c02180{bottom:417.000450px;}
.y23_c02180{bottom:437.700450px;}
.y22_c02180{bottom:458.310450px;}
.y21_c02180{bottom:479.010450px;}
.y20_c02180{bottom:499.710450px;}
.y1f_c02180{bottom:520.410450px;}
.y1e_c02180{bottom:541.110450px;}
.y1d_c02180{bottom:561.810450px;}
.y1c_c02180{bottom:582.510450px;}
.y1b_c02180{bottom:603.210450px;}
.y1a_c02180{bottom:637.050450px;}
.y19_c02180{bottom:645.690450px;}
.y18_c02180{bottom:667.470450px;}
.y17_c02180{bottom:687.180450px;}
.y16_c02180{bottom:702.030450px;}
.y15_c02180{bottom:717.060450px;}
.y14_c02180{bottom:737.760450px;}
.y13_c02180{bottom:758.460450px;}
.y12_c02180{bottom:779.700450px;}
.y11_c02180{bottom:801.120450px;}
.y10_c02180{bottom:821.280450px;}
.yf_c02180{bottom:836.400450px;}
.ye_c02180{bottom:857.280450px;}
.yd_c02180{bottom:888.330450px;}
.yc_c02180{bottom:919.380450px;}
.yb_c02180{bottom:950.430450px;}
.ya_c02180{bottom:981.480450px;}
.y9_c02180{bottom:1012.530450px;}
.y8_c02180{bottom:1043.580450px;}
.y7_c02180{bottom:1074.630450px;}
.y6_c02180{bottom:1105.500450px;}
.y5_c02180{bottom:1125.120450px;}
.y4_c02180{bottom:1139.970450px;}
.y1_c02180{bottom:1193.160450px;}
.h7_c02180{height:2.557969px;}
.h3_c02180{height:42.011895px;}
.h4_c02180{height:42.526230px;}
.h6_c02180{height:42.561914px;}
.h5_c02180{height:57.805840px;}
.h2_c02180{height:63.175781px;}
.h1_c02180{height:63.949219px;}
.h0_c02180{height:1263.000000px;}
.w1_c02180{width:892.500000px;}
.w0_c02180{width:892.830000px;}
.x0_c02180{left:0.000000px;}
.x4_c02180{left:117.000000px;}
.x1_c02180{left:127.620000px;}
.x5_c02180{left:135.630000px;}
.x6_c02180{left:144.180000px;}
.x3_c02180{left:148.950000px;}
.x2_c02180{left:433.080000px;}
@media print{
.v1_c02180{vertical-align:-14.720000pt;}
.v2_c02180{vertical-align:-4.800000pt;}
.v0_c02180{vertical-align:0.000000pt;}
.ls18_c02180{letter-spacing:-0.297600pt;}
.ls19_c02180{letter-spacing:-0.220800pt;}
.ls12_c02180{letter-spacing:-0.044800pt;}
.ls17_c02180{letter-spacing:-0.019200pt;}
.ls11_c02180{letter-spacing:-0.012800pt;}
.ls15_c02180{letter-spacing:-0.004800pt;}
.lsf_c02180{letter-spacing:0.000000pt;}
.ls0_c02180{letter-spacing:0.006400pt;}
.ls9_c02180{letter-spacing:0.008512pt;}
.lsb_c02180{letter-spacing:0.009600pt;}
.lsa_c02180{letter-spacing:0.011712pt;}
.ls3_c02180{letter-spacing:0.012800pt;}
.ls5_c02180{letter-spacing:0.019200pt;}
.ls10_c02180{letter-spacing:0.025600pt;}
.ls6_c02180{letter-spacing:0.032000pt;}
.ls1_c02180{letter-spacing:0.038400pt;}
.lsc_c02180{letter-spacing:0.040992pt;}
.ls14_c02180{letter-spacing:0.044800pt;}
.lse_c02180{letter-spacing:0.046848pt;}
.ls4_c02180{letter-spacing:0.051200pt;}
.ls2_c02180{letter-spacing:0.070400pt;}
.ls8_c02180{letter-spacing:0.080000pt;}
.lsd_c02180{letter-spacing:0.129600pt;}
.ls16_c02180{letter-spacing:0.161728pt;}
.ls7_c02180{letter-spacing:12.800000pt;}
.ls13_c02180{letter-spacing:34.560000pt;}
.ws1_c02180{word-spacing:-48.000000pt;}
.ws0_c02180{word-spacing:-15.987200pt;}
.ws4_c02180{word-spacing:-0.166400pt;}
.ws12_c02180{word-spacing:-0.096000pt;}
.ws11_c02180{word-spacing:-0.064000pt;}
.ws3_c02180{word-spacing:-0.044800pt;}
.wsf_c02180{word-spacing:-0.019200pt;}
.ws5_c02180{word-spacing:-0.006400pt;}
.ws2_c02180{word-spacing:0.000000pt;}
.ws10_c02180{word-spacing:0.012800pt;}
.ws1f_c02180{word-spacing:0.035136pt;}
.ws1a_c02180{word-spacing:0.040992pt;}
.ws19_c02180{word-spacing:0.148800pt;}
.ws1e_c02180{word-spacing:0.158400pt;}
.ws18_c02180{word-spacing:0.163200pt;}
.ws1b_c02180{word-spacing:0.177600pt;}
.ws1d_c02180{word-spacing:0.379200pt;}
.ws1c_c02180{word-spacing:0.456000pt;}
.wsb_c02180{word-spacing:8.307200pt;}
.wsa_c02180{word-spacing:8.480000pt;}
.ws9_c02180{word-spacing:8.627200pt;}
.wsd_c02180{word-spacing:12.083200pt;}
.wsc_c02180{word-spacing:12.160000pt;}
.ws17_c02180{word-spacing:12.748800pt;}
.ws16_c02180{word-spacing:12.793600pt;}
.ws6_c02180{word-spacing:14.681600pt;}
.wse_c02180{word-spacing:17.868800pt;}
.ws8_c02180{word-spacing:21.331200pt;}
.ws7_c02180{word-spacing:21.369600pt;}
.ws15_c02180{word-spacing:34.515200pt;}
.ws14_c02180{word-spacing:34.521600pt;}
.ws13_c02180{word-spacing:34.528000pt;}
._1_c02180{margin-left:-35.443200pt;}
._0_c02180{margin-left:-1.036800pt;}
._6_c02180{width:1.113600pt;}
._2_c02180{width:65.841344pt;}
._4_c02180{width:67.594816pt;}
._5_c02180{width:76.256576pt;}
._7_c02180{width:203.284928pt;}
._3_c02180{width:373.085504pt;}
.fs4_c02180{font-size:2.560000pt;}
.fs1_c02180{font-size:42.560000pt;}
.fs3_c02180{font-size:48.000000pt;}
.fs2_c02180{font-size:58.560000pt;}
.fs0_c02180{font-size:64.000000pt;}
.y0_c02180{bottom:0.000000pt;}
.y3_c02180{bottom:50.987067pt;}
.y2_c02180{bottom:69.387067pt;}
.y32_c02180{bottom:113.067067pt;}
.y31_c02180{bottom:131.467067pt;}
.y30_c02180{bottom:149.867067pt;}
.y2f_c02180{bottom:168.267067pt;}
.y2e_c02180{bottom:186.667067pt;}
.y2d_c02180{bottom:205.067067pt;}
.y2c_c02180{bottom:223.467067pt;}
.y2b_c02180{bottom:241.867067pt;}
.y2a_c02180{bottom:260.267067pt;}
.y29_c02180{bottom:278.667067pt;}
.y28_c02180{bottom:297.067067pt;}
.y27_c02180{bottom:315.467067pt;}
.y26_c02180{bottom:333.867067pt;}
.y25_c02180{bottom:352.267067pt;}
.y24_c02180{bottom:370.667067pt;}
.y23_c02180{bottom:389.067067pt;}
.y22_c02180{bottom:407.387067pt;}
.y21_c02180{bottom:425.787067pt;}
.y20_c02180{bottom:444.187067pt;}
.y1f_c02180{bottom:462.587067pt;}
.y1e_c02180{bottom:480.987067pt;}
.y1d_c02180{bottom:499.387067pt;}
.y1c_c02180{bottom:517.787067pt;}
.y1b_c02180{bottom:536.187067pt;}
.y1a_c02180{bottom:566.267067pt;}
.y19_c02180{bottom:573.947067pt;}
.y18_c02180{bottom:593.307067pt;}
.y17_c02180{bottom:610.827067pt;}
.y16_c02180{bottom:624.027067pt;}
.y15_c02180{bottom:637.387067pt;}
.y14_c02180{bottom:655.787067pt;}
.y13_c02180{bottom:674.187067pt;}
.y12_c02180{bottom:693.067067pt;}
.y11_c02180{bottom:712.107067pt;}
.y10_c02180{bottom:730.027067pt;}
.yf_c02180{bottom:743.467067pt;}
.ye_c02180{bottom:762.027067pt;}
.yd_c02180{bottom:789.627067pt;}
.yc_c02180{bottom:817.227067pt;}
.yb_c02180{bottom:844.827067pt;}
.ya_c02180{bottom:872.427067pt;}
.y9_c02180{bottom:900.027067pt;}
.y8_c02180{bottom:927.627067pt;}
.y7_c02180{bottom:955.227067pt;}
.y6_c02180{bottom:982.667067pt;}
.y5_c02180{bottom:1000.107067pt;}
.y4_c02180{bottom:1013.307067pt;}
.y1_c02180{bottom:1060.587067pt;}
.h7_c02180{height:2.273750pt;}
.h3_c02180{height:37.343906pt;}
.h4_c02180{height:37.801094pt;}
.h6_c02180{height:37.832812pt;}
.h5_c02180{height:51.382969pt;}
.h2_c02180{height:56.156250pt;}
.h1_c02180{height:56.843750pt;}
.h0_c02180{height:1122.666667pt;}
.w1_c02180{width:793.333333pt;}
.w0_c02180{width:793.626667pt;}
.x0_c02180{left:0.000000pt;}
.x4_c02180{left:104.000000pt;}
.x1_c02180{left:113.440000pt;}
.x5_c02180{left:120.560000pt;}
.x6_c02180{left:128.160000pt;}
.x3_c02180{left:132.400000pt;}
.x2_c02180{left:384.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_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_e8afe92c4983cf24fe11abf0.woff2')format("woff");}.ff1_c02181{font-family:ff1_c02181;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02181;src:url('chunks/assets/font_bb5866f06351e1bf0b6d4392.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_1f54e08a04915a5a14a478d7.woff2')format("woff");}.ff3_c02181{font-family:ff3_c02181;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_c02181;src:url('chunks/assets/font_d8aceb109fa81f20853baf5f.woff2')format("woff");}.ff4_c02181{font-family:ff4_c02181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02181;src:url('chunks/assets/font_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff5_c02181{font-family:ff5_c02181;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;}
.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);}
.v2_c02181{vertical-align:-9.000000px;}
.v1_c02181{vertical-align:-5.400000px;}
.v0_c02181{vertical-align:0.000000px;}
.ls13_c02181{letter-spacing:-0.043200px;}
.ls14_c02181{letter-spacing:-0.036000px;}
.ls15_c02181{letter-spacing:-0.021600px;}
.ls12_c02181{letter-spacing:-0.007200px;}
.ls11_c02181{letter-spacing:0.000000px;}
.ls4_c02181{letter-spacing:0.007200px;}
.ls0_c02181{letter-spacing:0.013176px;}
.ls8_c02181{letter-spacing:0.014400px;}
.ls9_c02181{letter-spacing:0.019764px;}
.lsb_c02181{letter-spacing:0.021600px;}
.ls5_c02181{letter-spacing:0.028800px;}
.ls7_c02181{letter-spacing:0.032940px;}
.lsa_c02181{letter-spacing:0.039528px;}
.ls3_c02181{letter-spacing:0.043200px;}
.ls6_c02181{letter-spacing:0.046116px;}
.ls10_c02181{letter-spacing:0.050400px;}
.ls16_c02181{letter-spacing:0.052704px;}
.lse_c02181{letter-spacing:0.057600px;}
.lsf_c02181{letter-spacing:0.065880px;}
.lsd_c02181{letter-spacing:0.072000px;}
.lsc_c02181{letter-spacing:0.086400px;}
.ls1_c02181{letter-spacing:0.144000px;}
.ls2_c02181{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02181{word-spacing:-17.992800px;}
.ws0_c02181{word-spacing:-12.151944px;}
.ws1f_c02181{word-spacing:-0.288000px;}
.ws12_c02181{word-spacing:-0.223200px;}
.ws17_c02181{word-spacing:-0.187200px;}
.ws14_c02181{word-spacing:-0.100800px;}
.ws16_c02181{word-spacing:-0.086400px;}
.ws4_c02181{word-spacing:-0.079200px;}
.ws19_c02181{word-spacing:-0.072000px;}
.ws18_c02181{word-spacing:-0.057600px;}
.ws3_c02181{word-spacing:-0.050400px;}
.ws11_c02181{word-spacing:-0.043200px;}
.ws1b_c02181{word-spacing:-0.028800px;}
.ws13_c02181{word-spacing:-0.021600px;}
.wsb_c02181{word-spacing:-0.014400px;}
.ws6_c02181{word-spacing:-0.007200px;}
.ws2_c02181{word-spacing:0.000000px;}
.ws7_c02181{word-spacing:0.007200px;}
.ws1c_c02181{word-spacing:0.021600px;}
.ws1d_c02181{word-spacing:0.026352px;}
.ws15_c02181{word-spacing:0.028800px;}
.ws1a_c02181{word-spacing:0.036000px;}
.ws1e_c02181{word-spacing:0.039528px;}
.wsa_c02181{word-spacing:0.046116px;}
.wsc_c02181{word-spacing:0.059292px;}
.wsf_c02181{word-spacing:12.225600px;}
.ws10_c02181{word-spacing:12.240000px;}
.ws5_c02181{word-spacing:13.960800px;}
.ws8_c02181{word-spacing:17.107200px;}
.ws9_c02181{word-spacing:17.208000px;}
.wse_c02181{word-spacing:18.972000px;}
.wsd_c02181{word-spacing:19.029600px;}
._6_c02181{margin-left:-18.977328px;}
._1_c02181{margin-left:-1.125072px;}
._2_c02181{width:16.718184px;}
._3_c02181{width:141.689772px;}
._4_c02181{width:145.431756px;}
._0_c02181{width:191.501640px;}
._5_c02181{width:294.089976px;}
.fc0_c02181{color:rgb(0,0,0);}
.fs3_c02181{font-size:24.120000px;}
.fs1_c02181{font-size:47.880000px;}
.fs2_c02181{font-size:65.880000px;}
.fs0_c02181{font-size:72.000000px;}
.y0_c02181{bottom:0.000000px;}
.y3_c02181{bottom:57.360450px;}
.y2_c02181{bottom:78.060450px;}
.y35_c02181{bottom:118.920450px;}
.y34_c02181{bottom:149.970450px;}
.y33_c02181{bottom:170.670450px;}
.y32_c02181{bottom:191.370450px;}
.y31_c02181{bottom:212.070450px;}
.y30_c02181{bottom:232.770450px;}
.y2f_c02181{bottom:253.470450px;}
.y2e_c02181{bottom:274.170450px;}
.y2d_c02181{bottom:294.870450px;}
.y2c_c02181{bottom:315.570450px;}
.y2b_c02181{bottom:336.270450px;}
.y2a_c02181{bottom:356.970450px;}
.y29_c02181{bottom:377.670450px;}
.y28_c02181{bottom:398.370450px;}
.y27_c02181{bottom:419.070450px;}
.y26_c02181{bottom:439.770450px;}
.y25_c02181{bottom:460.650450px;}
.y24_c02181{bottom:481.350450px;}
.y23_c02181{bottom:502.050450px;}
.y22_c02181{bottom:522.750450px;}
.y21_c02181{bottom:543.450450px;}
.y20_c02181{bottom:564.150450px;}
.y1f_c02181{bottom:585.570450px;}
.y1e_c02181{bottom:606.540450px;}
.y1d_c02181{bottom:626.790450px;}
.y1c_c02181{bottom:647.760450px;}
.y1b_c02181{bottom:667.740450px;}
.y1a_c02181{bottom:688.620450px;}
.y19_c02181{bottom:709.590450px;}
.y18_c02181{bottom:729.840450px;}
.y17_c02181{bottom:750.540450px;}
.y16_c02181{bottom:771.240450px;}
.y15_c02181{bottom:791.850450px;}
.y14_c02181{bottom:812.550450px;}
.y13_c02181{bottom:833.250450px;}
.y12_c02181{bottom:853.950450px;}
.y11_c02181{bottom:875.010450px;}
.y10_c02181{bottom:895.170450px;}
.yf_c02181{bottom:915.870450px;}
.ye_c02181{bottom:936.840450px;}
.yd_c02181{bottom:958.260450px;}
.yc_c02181{bottom:979.770450px;}
.yb_c02181{bottom:1001.190450px;}
.ya_c02181{bottom:1022.610450px;}
.y9_c02181{bottom:1042.770450px;}
.y8_c02181{bottom:1063.470450px;}
.y7_c02181{bottom:1084.170450px;}
.y6_c02181{bottom:1106.220450px;}
.y5_c02181{bottom:1125.120450px;}
.y4_c02181{bottom:1139.970450px;}
.y1_c02181{bottom:1193.160450px;}
.h3_c02181{height:42.011895px;}
.h6_c02181{height:58.513535px;}
.h2_c02181{height:63.175781px;}
.h1_c02181{height:63.949219px;}
.h4_c02181{height:65.228906px;}
.h5_c02181{height:70.628906px;}
.h0_c02181{height:1263.000000px;}
.w1_c02181{width:892.500000px;}
.w0_c02181{width:892.830000px;}
.x0_c02181{left:0.000000px;}
.x1_c02181{left:127.620000px;}
.x3_c02181{left:135.630000px;}
.x4_c02181{left:252.630000px;}
.x2_c02181{left:433.080000px;}
@media print{
.v2_c02181{vertical-align:-8.000000pt;}
.v1_c02181{vertical-align:-4.800000pt;}
.v0_c02181{vertical-align:0.000000pt;}
.ls13_c02181{letter-spacing:-0.038400pt;}
.ls14_c02181{letter-spacing:-0.032000pt;}
.ls15_c02181{letter-spacing:-0.019200pt;}
.ls12_c02181{letter-spacing:-0.006400pt;}
.ls11_c02181{letter-spacing:0.000000pt;}
.ls4_c02181{letter-spacing:0.006400pt;}
.ls0_c02181{letter-spacing:0.011712pt;}
.ls8_c02181{letter-spacing:0.012800pt;}
.ls9_c02181{letter-spacing:0.017568pt;}
.lsb_c02181{letter-spacing:0.019200pt;}
.ls5_c02181{letter-spacing:0.025600pt;}
.ls7_c02181{letter-spacing:0.029280pt;}
.lsa_c02181{letter-spacing:0.035136pt;}
.ls3_c02181{letter-spacing:0.038400pt;}
.ls6_c02181{letter-spacing:0.040992pt;}
.ls10_c02181{letter-spacing:0.044800pt;}
.ls16_c02181{letter-spacing:0.046848pt;}
.lse_c02181{letter-spacing:0.051200pt;}
.lsf_c02181{letter-spacing:0.058560pt;}
.lsd_c02181{letter-spacing:0.064000pt;}
.lsc_c02181{letter-spacing:0.076800pt;}
.ls1_c02181{letter-spacing:0.128000pt;}
.ls2_c02181{letter-spacing:0.161728pt;}
.ws1_c02181{word-spacing:-15.993600pt;}
.ws0_c02181{word-spacing:-10.801728pt;}
.ws1f_c02181{word-spacing:-0.256000pt;}
.ws12_c02181{word-spacing:-0.198400pt;}
.ws17_c02181{word-spacing:-0.166400pt;}
.ws14_c02181{word-spacing:-0.089600pt;}
.ws16_c02181{word-spacing:-0.076800pt;}
.ws4_c02181{word-spacing:-0.070400pt;}
.ws19_c02181{word-spacing:-0.064000pt;}
.ws18_c02181{word-spacing:-0.051200pt;}
.ws3_c02181{word-spacing:-0.044800pt;}
.ws11_c02181{word-spacing:-0.038400pt;}
.ws1b_c02181{word-spacing:-0.025600pt;}
.ws13_c02181{word-spacing:-0.019200pt;}
.wsb_c02181{word-spacing:-0.012800pt;}
.ws6_c02181{word-spacing:-0.006400pt;}
.ws2_c02181{word-spacing:0.000000pt;}
.ws7_c02181{word-spacing:0.006400pt;}
.ws1c_c02181{word-spacing:0.019200pt;}
.ws1d_c02181{word-spacing:0.023424pt;}
.ws15_c02181{word-spacing:0.025600pt;}
.ws1a_c02181{word-spacing:0.032000pt;}
.ws1e_c02181{word-spacing:0.035136pt;}
.wsa_c02181{word-spacing:0.040992pt;}
.wsc_c02181{word-spacing:0.052704pt;}
.wsf_c02181{word-spacing:10.867200pt;}
.ws10_c02181{word-spacing:10.880000pt;}
.ws5_c02181{word-spacing:12.409600pt;}
.ws8_c02181{word-spacing:15.206400pt;}
.ws9_c02181{word-spacing:15.296000pt;}
.wse_c02181{word-spacing:16.864000pt;}
.wsd_c02181{word-spacing:16.915200pt;}
._6_c02181{margin-left:-16.868736pt;}
._1_c02181{margin-left:-1.000064pt;}
._2_c02181{width:14.860608pt;}
._3_c02181{width:125.946464pt;}
._4_c02181{width:129.272672pt;}
._0_c02181{width:170.223680pt;}
._5_c02181{width:261.413312pt;}
.fs3_c02181{font-size:21.440000pt;}
.fs1_c02181{font-size:42.560000pt;}
.fs2_c02181{font-size:58.560000pt;}
.fs0_c02181{font-size:64.000000pt;}
.y0_c02181{bottom:0.000000pt;}
.y3_c02181{bottom:50.987067pt;}
.y2_c02181{bottom:69.387067pt;}
.y35_c02181{bottom:105.707067pt;}
.y34_c02181{bottom:133.307067pt;}
.y33_c02181{bottom:151.707067pt;}
.y32_c02181{bottom:170.107067pt;}
.y31_c02181{bottom:188.507067pt;}
.y30_c02181{bottom:206.907067pt;}
.y2f_c02181{bottom:225.307067pt;}
.y2e_c02181{bottom:243.707067pt;}
.y2d_c02181{bottom:262.107067pt;}
.y2c_c02181{bottom:280.507067pt;}
.y2b_c02181{bottom:298.907067pt;}
.y2a_c02181{bottom:317.307067pt;}
.y29_c02181{bottom:335.707067pt;}
.y28_c02181{bottom:354.107067pt;}
.y27_c02181{bottom:372.507067pt;}
.y26_c02181{bottom:390.907067pt;}
.y25_c02181{bottom:409.467067pt;}
.y24_c02181{bottom:427.867067pt;}
.y23_c02181{bottom:446.267067pt;}
.y22_c02181{bottom:464.667067pt;}
.y21_c02181{bottom:483.067067pt;}
.y20_c02181{bottom:501.467067pt;}
.y1f_c02181{bottom:520.507067pt;}
.y1e_c02181{bottom:539.147067pt;}
.y1d_c02181{bottom:557.147067pt;}
.y1c_c02181{bottom:575.787067pt;}
.y1b_c02181{bottom:593.547067pt;}
.y1a_c02181{bottom:612.107067pt;}
.y19_c02181{bottom:630.747067pt;}
.y18_c02181{bottom:648.747067pt;}
.y17_c02181{bottom:667.147067pt;}
.y16_c02181{bottom:685.547067pt;}
.y15_c02181{bottom:703.867067pt;}
.y14_c02181{bottom:722.267067pt;}
.y13_c02181{bottom:740.667067pt;}
.y12_c02181{bottom:759.067067pt;}
.y11_c02181{bottom:777.787067pt;}
.y10_c02181{bottom:795.707067pt;}
.yf_c02181{bottom:814.107067pt;}
.ye_c02181{bottom:832.747067pt;}
.yd_c02181{bottom:851.787067pt;}
.yc_c02181{bottom:870.907067pt;}
.yb_c02181{bottom:889.947067pt;}
.ya_c02181{bottom:908.987067pt;}
.y9_c02181{bottom:926.907067pt;}
.y8_c02181{bottom:945.307067pt;}
.y7_c02181{bottom:963.707067pt;}
.y6_c02181{bottom:983.307067pt;}
.y5_c02181{bottom:1000.107067pt;}
.y4_c02181{bottom:1013.307067pt;}
.y1_c02181{bottom:1060.587067pt;}
.h3_c02181{height:37.343906pt;}
.h6_c02181{height:52.012031pt;}
.h2_c02181{height:56.156250pt;}
.h1_c02181{height:56.843750pt;}
.h4_c02181{height:57.981250pt;}
.h5_c02181{height:62.781250pt;}
.h0_c02181{height:1122.666667pt;}
.w1_c02181{width:793.333333pt;}
.w0_c02181{width:793.626667pt;}
.x0_c02181{left:0.000000pt;}
.x1_c02181{left:113.440000pt;}
.x3_c02181{left:120.560000pt;}
.x4_c02181{left:224.560000pt;}
.x2_c02181{left:384.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_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_aa9ff0d261553aaa099b8c48.woff2')format("woff");}.ff1_c02182{font-family:ff1_c02182;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02182;src:url('chunks/assets/font_ee058c9db47a5d43bf08324b.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_59848e8dd092636766aec9f4.woff2')format("woff");}.ff3_c02182{font-family:ff3_c02182;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;}
.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);}
.vb_c02182{vertical-align:-40.680000px;}
.va_c02182{vertical-align:-38.879400px;}
.vc_c02182{vertical-align:-37.800000px;}
.v7_c02182{vertical-align:-15.479400px;}
.v8_c02182{vertical-align:-12.960000px;}
.v9_c02182{vertical-align:-11.159400px;}
.v3_c02182{vertical-align:-3.960000px;}
.v2_c02182{vertical-align:-2.520000px;}
.v4_c02182{vertical-align:-1.440000px;}
.v0_c02182{vertical-align:0.000000px;}
.vd_c02182{vertical-align:1.080000px;}
.v5_c02182{vertical-align:2.520000px;}
.v6_c02182{vertical-align:3.960000px;}
.v1_c02182{vertical-align:5.400000px;}
.ls35_c02182{letter-spacing:-0.086184px;}
.ls31_c02182{letter-spacing:-0.043200px;}
.ls33_c02182{letter-spacing:-0.019152px;}
.ls32_c02182{letter-spacing:-0.010800px;}
.ls37_c02182{letter-spacing:-0.009576px;}
.ls2d_c02182{letter-spacing:-0.007200px;}
.ls2f_c02182{letter-spacing:-0.006588px;}
.ls2e_c02182{letter-spacing:-0.006012px;}
.ls38_c02182{letter-spacing:-0.004788px;}
.ls2b_c02182{letter-spacing:0.000000px;}
.ls19_c02182{letter-spacing:0.007200px;}
.ls1a_c02182{letter-spacing:0.010800px;}
.ls2c_c02182{letter-spacing:0.014400px;}
.ls26_c02182{letter-spacing:0.019152px;}
.ls2_c02182{letter-spacing:0.021600px;}
.ls1c_c02182{letter-spacing:0.028728px;}
.ls5_c02182{letter-spacing:0.028800px;}
.ls1e_c02182{letter-spacing:0.032400px;}
.ls22_c02182{letter-spacing:0.037800px;}
.ls18_c02182{letter-spacing:0.039528px;}
.ls1b_c02182{letter-spacing:0.043092px;}
.ls21_c02182{letter-spacing:0.043200px;}
.ls9_c02182{letter-spacing:0.046116px;}
.lsa_c02182{letter-spacing:0.052704px;}
.ls1_c02182{letter-spacing:0.057600px;}
.ls12_c02182{letter-spacing:0.059292px;}
.ls1d_c02182{letter-spacing:0.059400px;}
.ls0_c02182{letter-spacing:0.064800px;}
.lsc_c02182{letter-spacing:0.065880px;}
.ls4_c02182{letter-spacing:0.072000px;}
.ls10_c02182{letter-spacing:0.072468px;}
.ls14_c02182{letter-spacing:0.079056px;}
.ls1f_c02182{letter-spacing:0.081396px;}
.ls16_c02182{letter-spacing:0.085644px;}
.ls3_c02182{letter-spacing:0.093600px;}
.lsf_c02182{letter-spacing:0.105408px;}
.ls24_c02182{letter-spacing:0.124488px;}
.ls6_c02182{letter-spacing:0.131760px;}
.ls25_c02182{letter-spacing:0.134064px;}
.lsd_c02182{letter-spacing:0.138348px;}
.lsb_c02182{letter-spacing:0.144288px;}
.ls30_c02182{letter-spacing:0.151200px;}
.lse_c02182{letter-spacing:0.151524px;}
.ls17_c02182{letter-spacing:0.158112px;}
.ls8_c02182{letter-spacing:0.164700px;}
.ls34_c02182{letter-spacing:0.167580px;}
.ls13_c02182{letter-spacing:0.177876px;}
.ls20_c02182{letter-spacing:0.181944px;}
.ls15_c02182{letter-spacing:97.290000px;}
.ls28_c02182{letter-spacing:97.740000px;}
.ls36_c02182{letter-spacing:156.778200px;}
.ls27_c02182{letter-spacing:167.310000px;}
.ls11_c02182{letter-spacing:172.620000px;}
.ls2a_c02182{letter-spacing:172.978200px;}
.ls29_c02182{letter-spacing:198.898200px;}
.ls39_c02182{letter-spacing:200.789568px;}
.ls23_c02182{letter-spacing:200.790000px;}
.ls7_c02182{letter-spacing:457.651440px;}
.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:-16.647876px;}
.ws0_c02182{word-spacing:-16.601760px;}
.ws1e_c02182{word-spacing:-0.453600px;}
.ws2c_c02182{word-spacing:-0.272916px;}
.ws30_c02182{word-spacing:-0.225036px;}
.ws2f_c02182{word-spacing:-0.215460px;}
.ws19_c02182{word-spacing:-0.172800px;}
.ws32_c02182{word-spacing:-0.172368px;}
.ws21_c02182{word-spacing:-0.129600px;}
.ws34_c02182{word-spacing:-0.119700px;}
.ws2a_c02182{word-spacing:-0.115200px;}
.ws33_c02182{word-spacing:-0.110124px;}
.ws2d_c02182{word-spacing:-0.081396px;}
.ws1f_c02182{word-spacing:-0.072000px;}
.ws1d_c02182{word-spacing:-0.064800px;}
.ws24_c02182{word-spacing:-0.054108px;}
.ws17_c02182{word-spacing:-0.050400px;}
.ws1c_c02182{word-spacing:-0.021600px;}
.ws18_c02182{word-spacing:-0.014400px;}
.ws26_c02182{word-spacing:-0.013176px;}
.ws20_c02182{word-spacing:-0.007200px;}
.ws16_c02182{word-spacing:0.000000px;}
.ws27_c02182{word-spacing:0.019764px;}
.ws25_c02182{word-spacing:0.026352px;}
.ws23_c02182{word-spacing:0.039528px;}
.ws22_c02182{word-spacing:0.046116px;}
.ws28_c02182{word-spacing:0.052704px;}
.ws29_c02182{word-spacing:0.098820px;}
.ws2b_c02182{word-spacing:0.118800px;}
.ws1a_c02182{word-spacing:4.255200px;}
.ws1b_c02182{word-spacing:24.033600px;}
.ws15_c02182{word-spacing:48.169440px;}
.ws14_c02182{word-spacing:75.169440px;}
.ws11_c02182{word-spacing:80.242380px;}
.ws12_c02182{word-spacing:87.409440px;}
.wsf_c02182{word-spacing:89.558496px;}
.wsb_c02182{word-spacing:89.962380px;}
.wsa_c02182{word-spacing:96.758496px;}
.ws3_c02182{word-spacing:122.316372px;}
.ws4_c02182{word-spacing:122.722380px;}
.ws5_c02182{word-spacing:123.082380px;}
.ws13_c02182{word-spacing:123.253020px;}
.ws10_c02182{word-spacing:123.613020px;}
.ws6_c02182{word-spacing:129.922380px;}
.ws2_c02182{word-spacing:129.946608px;}
.ws9_c02182{word-spacing:139.642380px;}
.ws8_c02182{word-spacing:155.866608px;}
.ws1_c02182{word-spacing:156.226608px;}
.ws2e_c02182{word-spacing:156.735000px;}
.ws31_c02182{word-spacing:156.740400px;}
.ws7_c02182{word-spacing:162.682380px;}
.wse_c02182{word-spacing:238.306608px;}
.wsd_c02182{word-spacing:238.666608px;}
._2c_c02182{margin-left:-24.840000px;}
._0_c02182{margin-left:-1.303200px;}
._2a_c02182{width:25.357896px;}
._24_c02182{width:51.300000px;}
._26_c02182{width:62.889228px;}
._28_c02182{width:65.675160px;}
._20_c02182{width:74.044440px;}
._21_c02182{width:75.357000px;}
._22_c02182{width:80.712360px;}
._1c_c02182{width:83.497104px;}
._2b_c02182{width:84.963600px;}
._16_c02182{width:87.409440px;}
._2f_c02182{width:88.417836px;}
._13_c02182{width:89.558496px;}
._2e_c02182{width:97.740000px;}
._25_c02182{width:104.575140px;}
._23_c02182{width:113.689440px;}
._3_c02182{width:115.290000px;}
._1f_c02182{width:118.636524px;}
._27_c02182{width:120.024000px;}
._a_c02182{width:122.316372px;}
._6_c02182{width:126.810000px;}
._1d_c02182{width:127.883628px;}
._4_c02182{width:129.038040px;}
._1e_c02182{width:131.786568px;}
._32_c02182{width:132.915600px;}
._31_c02182{width:136.200168px;}
._e_c02182{width:138.968496px;}
._33_c02182{width:147.960864px;}
._30_c02182{width:149.146920px;}
._29_c02182{width:152.642160px;}
._8_c02182{width:155.436372px;}
._2d_c02182{width:156.780000px;}
._10_c02182{width:163.527876px;}
._c_c02182{width:169.176168px;}
._5_c02182{width:170.368704px;}
._11_c02182{width:172.620000px;}
._2_c02182{width:191.608704px;}
._b_c02182{width:224.291376px;}
._14_c02182{width:254.800620px;}
._7_c02182{width:268.075224px;}
._1_c02182{width:276.234192px;}
._17_c02182{width:306.674424px;}
._18_c02182{width:325.039536px;}
._1a_c02182{width:368.989704px;}
._d_c02182{width:372.644424px;}
._15_c02182{width:389.050776px;}
._f_c02182{width:401.901732px;}
._9_c02182{width:405.316440px;}
._12_c02182{width:434.901024px;}
._1b_c02182{width:652.992156px;}
._19_c02182{width:673.474248px;}
.fc0_c02182{color:rgb(0,0,0);}
.fs6_c02182{font-size:11.880000px;}
.fs1_c02182{font-size:36.000000px;}
.fs5_c02182{font-size:47.880000px;}
.fs4_c02182{font-size:54.000000px;}
.fs3_c02182{font-size:60.120000px;}
.fs2_c02182{font-size:65.880000px;}
.fs0_c02182{font-size:72.000000px;}
.y0_c02182{bottom:0.000000px;}
.y3_c02182{bottom:57.360450px;}
.y2_c02182{bottom:78.060450px;}
.y31_c02182{bottom:131.340450px;}
.y30_c02182{bottom:137.100450px;}
.y2f_c02182{bottom:140.970000px;}
.y2e_c02182{bottom:156.090450px;}
.y2d_c02182{bottom:159.871050px;}
.y2c_c02182{bottom:175.080450px;}
.y2b_c02182{bottom:178.861050px;}
.y2a_c02182{bottom:193.980450px;}
.y29_c02182{bottom:197.850000px;}
.y28_c02182{bottom:212.970450px;}
.y27_c02182{bottom:216.840450px;}
.y26_c02182{bottom:235.830450px;}
.y25_c02182{bottom:250.950450px;}
.y24_c02182{bottom:254.730450px;}
.y23_c02182{bottom:270.930450px;}
.y22_c02182{bottom:290.190450px;}
.y21_c02182{bottom:306.660450px;}
.y20_c02182{bottom:328.620450px;}
.y1f_c02182{bottom:345.900450px;}
.y1e_c02182{bottom:365.970450px;}
.y1d_c02182{bottom:380.190450px;}
.y1c_c02182{bottom:396.750600px;}
.y1b_c02182{bottom:415.650450px;}
.y1a_c02182{bottom:434.640450px;}
.y19_c02182{bottom:453.630450px;}
.y18_c02182{bottom:473.340600px;}
.y17_c02182{bottom:492.330450px;}
.y16_c02182{bottom:511.320450px;}
.y15_c02182{bottom:530.310450px;}
.y14_c02182{bottom:549.300450px;}
.y13_c02182{bottom:568.200450px;}
.y12_c02182{bottom:587.190450px;}
.y11_c02182{bottom:605.820450px;}
.y10_c02182{bottom:623.460450px;}
.yf_c02182{bottom:642.360450px;}
.ye_c02182{bottom:661.620450px;}
.yd_c02182{bottom:696.090450px;}
.yc_c02182{bottom:714.900450px;}
.yb_c02182{bottom:723.180450px;}
.ya_c02182{bottom:962.220450px;}
.y9_c02182{bottom:984.900450px;}
.y8_c02182{bottom:1015.950450px;}
.y7_c02182{bottom:1047.000450px;}
.y6_c02182{bottom:1078.050450px;}
.y5_c02182{bottom:1108.920450px;}
.y4_c02182{bottom:1139.970450px;}
.y1_c02182{bottom:1193.160450px;}
.hb_c02182{height:10.551621px;}
.h3_c02182{height:31.587891px;}
.h4_c02182{height:31.974609px;}
.h8_c02182{height:42.526230px;}
.h7_c02182{height:47.961914px;}
.h6_c02182{height:53.397598px;}
.h5_c02182{height:58.513535px;}
.h9_c02182{height:62.473535px;}
.ha_c02182{height:62.833535px;}
.h2_c02182{height:63.175781px;}
.h1_c02182{height:63.949219px;}
.h0_c02182{height:1263.000000px;}
.w1_c02182{width:892.500000px;}
.w0_c02182{width:892.830000px;}
.x0_c02182{left:0.000000px;}
.x1_c02182{left:127.620000px;}
.x6_c02182{left:135.630000px;}
.xc_c02182{left:143.910000px;}
.x4_c02182{left:148.950000px;}
.xd_c02182{left:150.300000px;}
.xb_c02182{left:172.980000px;}
.x7_c02182{left:178.020000px;}
.xe_c02182{left:220.680000px;}
.x8_c02182{left:283.950000px;}
.x3_c02182{left:373.140000px;}
.x2_c02182{left:433.080000px;}
.xa_c02182{left:487.890000px;}
.x9_c02182{left:509.220000px;}
.x5_c02182{left:774.540000px;}
@media print{
.vb_c02182{vertical-align:-36.160000pt;}
.va_c02182{vertical-align:-34.559467pt;}
.vc_c02182{vertical-align:-33.600000pt;}
.v7_c02182{vertical-align:-13.759467pt;}
.v8_c02182{vertical-align:-11.520000pt;}
.v9_c02182{vertical-align:-9.919467pt;}
.v3_c02182{vertical-align:-3.520000pt;}
.v2_c02182{vertical-align:-2.240000pt;}
.v4_c02182{vertical-align:-1.280000pt;}
.v0_c02182{vertical-align:0.000000pt;}
.vd_c02182{vertical-align:0.960000pt;}
.v5_c02182{vertical-align:2.240000pt;}
.v6_c02182{vertical-align:3.520000pt;}
.v1_c02182{vertical-align:4.800000pt;}
.ls35_c02182{letter-spacing:-0.076608pt;}
.ls31_c02182{letter-spacing:-0.038400pt;}
.ls33_c02182{letter-spacing:-0.017024pt;}
.ls32_c02182{letter-spacing:-0.009600pt;}
.ls37_c02182{letter-spacing:-0.008512pt;}
.ls2d_c02182{letter-spacing:-0.006400pt;}
.ls2f_c02182{letter-spacing:-0.005856pt;}
.ls2e_c02182{letter-spacing:-0.005344pt;}
.ls38_c02182{letter-spacing:-0.004256pt;}
.ls2b_c02182{letter-spacing:0.000000pt;}
.ls19_c02182{letter-spacing:0.006400pt;}
.ls1a_c02182{letter-spacing:0.009600pt;}
.ls2c_c02182{letter-spacing:0.012800pt;}
.ls26_c02182{letter-spacing:0.017024pt;}
.ls2_c02182{letter-spacing:0.019200pt;}
.ls1c_c02182{letter-spacing:0.025536pt;}
.ls5_c02182{letter-spacing:0.025600pt;}
.ls1e_c02182{letter-spacing:0.028800pt;}
.ls22_c02182{letter-spacing:0.033600pt;}
.ls18_c02182{letter-spacing:0.035136pt;}
.ls1b_c02182{letter-spacing:0.038304pt;}
.ls21_c02182{letter-spacing:0.038400pt;}
.ls9_c02182{letter-spacing:0.040992pt;}
.lsa_c02182{letter-spacing:0.046848pt;}
.ls1_c02182{letter-spacing:0.051200pt;}
.ls12_c02182{letter-spacing:0.052704pt;}
.ls1d_c02182{letter-spacing:0.052800pt;}
.ls0_c02182{letter-spacing:0.057600pt;}
.lsc_c02182{letter-spacing:0.058560pt;}
.ls4_c02182{letter-spacing:0.064000pt;}
.ls10_c02182{letter-spacing:0.064416pt;}
.ls14_c02182{letter-spacing:0.070272pt;}
.ls1f_c02182{letter-spacing:0.072352pt;}
.ls16_c02182{letter-spacing:0.076128pt;}
.ls3_c02182{letter-spacing:0.083200pt;}
.lsf_c02182{letter-spacing:0.093696pt;}
.ls24_c02182{letter-spacing:0.110656pt;}
.ls6_c02182{letter-spacing:0.117120pt;}
.ls25_c02182{letter-spacing:0.119168pt;}
.lsd_c02182{letter-spacing:0.122976pt;}
.lsb_c02182{letter-spacing:0.128256pt;}
.ls30_c02182{letter-spacing:0.134400pt;}
.lse_c02182{letter-spacing:0.134688pt;}
.ls17_c02182{letter-spacing:0.140544pt;}
.ls8_c02182{letter-spacing:0.146400pt;}
.ls34_c02182{letter-spacing:0.148960pt;}
.ls13_c02182{letter-spacing:0.158112pt;}
.ls20_c02182{letter-spacing:0.161728pt;}
.ls15_c02182{letter-spacing:86.480000pt;}
.ls28_c02182{letter-spacing:86.880000pt;}
.ls36_c02182{letter-spacing:139.358400pt;}
.ls27_c02182{letter-spacing:148.720000pt;}
.ls11_c02182{letter-spacing:153.440000pt;}
.ls2a_c02182{letter-spacing:153.758400pt;}
.ls29_c02182{letter-spacing:176.798400pt;}
.ls39_c02182{letter-spacing:178.479616pt;}
.ls23_c02182{letter-spacing:178.480000pt;}
.ls7_c02182{letter-spacing:406.801280pt;}
.wsc_c02182{word-spacing:-14.798112pt;}
.ws0_c02182{word-spacing:-14.757120pt;}
.ws1e_c02182{word-spacing:-0.403200pt;}
.ws2c_c02182{word-spacing:-0.242592pt;}
.ws30_c02182{word-spacing:-0.200032pt;}
.ws2f_c02182{word-spacing:-0.191520pt;}
.ws19_c02182{word-spacing:-0.153600pt;}
.ws32_c02182{word-spacing:-0.153216pt;}
.ws21_c02182{word-spacing:-0.115200pt;}
.ws34_c02182{word-spacing:-0.106400pt;}
.ws2a_c02182{word-spacing:-0.102400pt;}
.ws33_c02182{word-spacing:-0.097888pt;}
.ws2d_c02182{word-spacing:-0.072352pt;}
.ws1f_c02182{word-spacing:-0.064000pt;}
.ws1d_c02182{word-spacing:-0.057600pt;}
.ws24_c02182{word-spacing:-0.048096pt;}
.ws17_c02182{word-spacing:-0.044800pt;}
.ws1c_c02182{word-spacing:-0.019200pt;}
.ws18_c02182{word-spacing:-0.012800pt;}
.ws26_c02182{word-spacing:-0.011712pt;}
.ws20_c02182{word-spacing:-0.006400pt;}
.ws16_c02182{word-spacing:0.000000pt;}
.ws27_c02182{word-spacing:0.017568pt;}
.ws25_c02182{word-spacing:0.023424pt;}
.ws23_c02182{word-spacing:0.035136pt;}
.ws22_c02182{word-spacing:0.040992pt;}
.ws28_c02182{word-spacing:0.046848pt;}
.ws29_c02182{word-spacing:0.087840pt;}
.ws2b_c02182{word-spacing:0.105600pt;}
.ws1a_c02182{word-spacing:3.782400pt;}
.ws1b_c02182{word-spacing:21.363200pt;}
.ws15_c02182{word-spacing:42.817280pt;}
.ws14_c02182{word-spacing:66.817280pt;}
.ws11_c02182{word-spacing:71.326560pt;}
.ws12_c02182{word-spacing:77.697280pt;}
.wsf_c02182{word-spacing:79.607552pt;}
.wsb_c02182{word-spacing:79.966560pt;}
.wsa_c02182{word-spacing:86.007552pt;}
.ws3_c02182{word-spacing:108.725664pt;}
.ws4_c02182{word-spacing:109.086560pt;}
.ws5_c02182{word-spacing:109.406560pt;}
.ws13_c02182{word-spacing:109.558240pt;}
.ws10_c02182{word-spacing:109.878240pt;}
.ws6_c02182{word-spacing:115.486560pt;}
.ws2_c02182{word-spacing:115.508096pt;}
.ws9_c02182{word-spacing:124.126560pt;}
.ws8_c02182{word-spacing:138.548096pt;}
.ws1_c02182{word-spacing:138.868096pt;}
.ws2e_c02182{word-spacing:139.320000pt;}
.ws31_c02182{word-spacing:139.324800pt;}
.ws7_c02182{word-spacing:144.606560pt;}
.wse_c02182{word-spacing:211.828096pt;}
.wsd_c02182{word-spacing:212.148096pt;}
._2c_c02182{margin-left:-22.080000pt;}
._0_c02182{margin-left:-1.158400pt;}
._2a_c02182{width:22.540352pt;}
._24_c02182{width:45.600000pt;}
._26_c02182{width:55.901536pt;}
._28_c02182{width:58.377920pt;}
._20_c02182{width:65.817280pt;}
._21_c02182{width:66.984000pt;}
._22_c02182{width:71.744320pt;}
._1c_c02182{width:74.219648pt;}
._2b_c02182{width:75.523200pt;}
._16_c02182{width:77.697280pt;}
._2f_c02182{width:78.593632pt;}
._13_c02182{width:79.607552pt;}
._2e_c02182{width:86.880000pt;}
._25_c02182{width:92.955680pt;}
._23_c02182{width:101.057280pt;}
._3_c02182{width:102.480000pt;}
._1f_c02182{width:105.454688pt;}
._27_c02182{width:106.688000pt;}
._a_c02182{width:108.725664pt;}
._6_c02182{width:112.720000pt;}
._1d_c02182{width:113.674336pt;}
._4_c02182{width:114.700480pt;}
._1e_c02182{width:117.143616pt;}
._32_c02182{width:118.147200pt;}
._31_c02182{width:121.066816pt;}
._e_c02182{width:123.527552pt;}
._33_c02182{width:131.520768pt;}
._30_c02182{width:132.575040pt;}
._29_c02182{width:135.681920pt;}
._8_c02182{width:138.165664pt;}
._2d_c02182{width:139.360000pt;}
._10_c02182{width:145.358112pt;}
._c_c02182{width:150.378816pt;}
._5_c02182{width:151.438848pt;}
._11_c02182{width:153.440000pt;}
._2_c02182{width:170.318848pt;}
._b_c02182{width:199.370112pt;}
._14_c02182{width:226.489440pt;}
._7_c02182{width:238.289088pt;}
._1_c02182{width:245.541504pt;}
._17_c02182{width:272.599488pt;}
._18_c02182{width:288.924032pt;}
._1a_c02182{width:327.990848pt;}
._d_c02182{width:331.239488pt;}
._15_c02182{width:345.822912pt;}
._f_c02182{width:357.245984pt;}
._9_c02182{width:360.281280pt;}
._12_c02182{width:386.578688pt;}
._1b_c02182{width:580.437472pt;}
._19_c02182{width:598.643776pt;}
.fs6_c02182{font-size:10.560000pt;}
.fs1_c02182{font-size:32.000000pt;}
.fs5_c02182{font-size:42.560000pt;}
.fs4_c02182{font-size:48.000000pt;}
.fs3_c02182{font-size:53.440000pt;}
.fs2_c02182{font-size:58.560000pt;}
.fs0_c02182{font-size:64.000000pt;}
.y0_c02182{bottom:0.000000pt;}
.y3_c02182{bottom:50.987067pt;}
.y2_c02182{bottom:69.387067pt;}
.y31_c02182{bottom:116.747067pt;}
.y30_c02182{bottom:121.867067pt;}
.y2f_c02182{bottom:125.306667pt;}
.y2e_c02182{bottom:138.747067pt;}
.y2d_c02182{bottom:142.107600pt;}
.y2c_c02182{bottom:155.627067pt;}
.y2b_c02182{bottom:158.987600pt;}
.y2a_c02182{bottom:172.427067pt;}
.y29_c02182{bottom:175.866667pt;}
.y28_c02182{bottom:189.307067pt;}
.y27_c02182{bottom:192.747067pt;}
.y26_c02182{bottom:209.627067pt;}
.y25_c02182{bottom:223.067067pt;}
.y24_c02182{bottom:226.427067pt;}
.y23_c02182{bottom:240.827067pt;}
.y22_c02182{bottom:257.947067pt;}
.y21_c02182{bottom:272.587067pt;}
.y20_c02182{bottom:292.107067pt;}
.y1f_c02182{bottom:307.467067pt;}
.y1e_c02182{bottom:325.307067pt;}
.y1d_c02182{bottom:337.947067pt;}
.y1c_c02182{bottom:352.667200pt;}
.y1b_c02182{bottom:369.467067pt;}
.y1a_c02182{bottom:386.347067pt;}
.y19_c02182{bottom:403.227067pt;}
.y18_c02182{bottom:420.747200pt;}
.y17_c02182{bottom:437.627067pt;}
.y16_c02182{bottom:454.507067pt;}
.y15_c02182{bottom:471.387067pt;}
.y14_c02182{bottom:488.267067pt;}
.y13_c02182{bottom:505.067067pt;}
.y12_c02182{bottom:521.947067pt;}
.y11_c02182{bottom:538.507067pt;}
.y10_c02182{bottom:554.187067pt;}
.yf_c02182{bottom:570.987067pt;}
.ye_c02182{bottom:588.107067pt;}
.yd_c02182{bottom:618.747067pt;}
.yc_c02182{bottom:635.467067pt;}
.yb_c02182{bottom:642.827067pt;}
.ya_c02182{bottom:855.307067pt;}
.y9_c02182{bottom:875.467067pt;}
.y8_c02182{bottom:903.067067pt;}
.y7_c02182{bottom:930.667067pt;}
.y6_c02182{bottom:958.267067pt;}
.y5_c02182{bottom:985.707067pt;}
.y4_c02182{bottom:1013.307067pt;}
.y1_c02182{bottom:1060.587067pt;}
.hb_c02182{height:9.379219pt;}
.h3_c02182{height:28.078125pt;}
.h4_c02182{height:28.421875pt;}
.h8_c02182{height:37.801094pt;}
.h7_c02182{height:42.632812pt;}
.h6_c02182{height:47.464531pt;}
.h5_c02182{height:52.012031pt;}
.h9_c02182{height:55.532031pt;}
.ha_c02182{height:55.852031pt;}
.h2_c02182{height:56.156250pt;}
.h1_c02182{height:56.843750pt;}
.h0_c02182{height:1122.666667pt;}
.w1_c02182{width:793.333333pt;}
.w0_c02182{width:793.626667pt;}
.x0_c02182{left:0.000000pt;}
.x1_c02182{left:113.440000pt;}
.x6_c02182{left:120.560000pt;}
.xc_c02182{left:127.920000pt;}
.x4_c02182{left:132.400000pt;}
.xd_c02182{left:133.600000pt;}
.xb_c02182{left:153.760000pt;}
.x7_c02182{left:158.240000pt;}
.xe_c02182{left:196.160000pt;}
.x8_c02182{left:252.400000pt;}
.x3_c02182{left:331.680000pt;}
.x2_c02182{left:384.960000pt;}
.xa_c02182{left:433.680000pt;}
.x9_c02182{left:452.640000pt;}
.x5_c02182{left:688.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_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_6962fb242d752e4ee1e0b6ba.woff2')format("woff");}.ff1_c02183{font-family:ff1_c02183;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02183;src:url('chunks/assets/font_eee3aa01db5650174bea8776.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02183{font-family:ff3_c02183;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;}
.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;}
.ls21_c02183{letter-spacing:-0.270108px;}
.ls1e_c02183{letter-spacing:-0.050400px;}
.ls1d_c02183{letter-spacing:-0.036000px;}
.ls1c_c02183{letter-spacing:-0.028800px;}
.ls1b_c02183{letter-spacing:-0.014400px;}
.ls1f_c02183{letter-spacing:-0.013176px;}
.ls19_c02183{letter-spacing:0.000000px;}
.ls1a_c02183{letter-spacing:0.007200px;}
.ls9_c02183{letter-spacing:0.013176px;}
.ls1_c02183{letter-spacing:0.014400px;}
.ls4_c02183{letter-spacing:0.021600px;}
.ls0_c02183{letter-spacing:0.028800px;}
.lsb_c02183{letter-spacing:0.032940px;}
.ls3_c02183{letter-spacing:0.036000px;}
.ls5_c02183{letter-spacing:0.043200px;}
.lsa_c02183{letter-spacing:0.046116px;}
.ls13_c02183{letter-spacing:0.052704px;}
.ls2_c02183{letter-spacing:0.057600px;}
.ls18_c02183{letter-spacing:0.059292px;}
.ls14_c02183{letter-spacing:0.065880px;}
.ls10_c02183{letter-spacing:0.072000px;}
.ls17_c02183{letter-spacing:0.072468px;}
.ls12_c02183{letter-spacing:0.079056px;}
.ls6_c02183{letter-spacing:0.079200px;}
.lsf_c02183{letter-spacing:0.085644px;}
.lsc_c02183{letter-spacing:0.092232px;}
.lse_c02183{letter-spacing:0.098820px;}
.ls8_c02183{letter-spacing:0.105408px;}
.ls11_c02183{letter-spacing:0.122400px;}
.ls15_c02183{letter-spacing:0.125172px;}
.ls16_c02183{letter-spacing:0.138348px;}
.ls7_c02183{letter-spacing:0.151524px;}
.lsd_c02183{letter-spacing:0.171288px;}
.ls20_c02183{letter-spacing:0.177876px;}
.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;}
}
.ws1_c02183{word-spacing:-17.985600px;}
.ws0_c02183{word-spacing:-16.621524px;}
.ws10_c02183{word-spacing:-0.136800px;}
.ws3_c02183{word-spacing:-0.050400px;}
.ws26_c02183{word-spacing:-0.046116px;}
.ws25_c02183{word-spacing:-0.032940px;}
.ws12_c02183{word-spacing:-0.028800px;}
.ws1b_c02183{word-spacing:-0.021600px;}
.ws1a_c02183{word-spacing:-0.013176px;}
.ws22_c02183{word-spacing:-0.007200px;}
.ws18_c02183{word-spacing:-0.006588px;}
.ws2_c02183{word-spacing:0.000000px;}
.ws19_c02183{word-spacing:0.006588px;}
.ws29_c02183{word-spacing:0.013176px;}
.ws4_c02183{word-spacing:0.014400px;}
.ws27_c02183{word-spacing:0.019764px;}
.ws24_c02183{word-spacing:0.026352px;}
.ws28_c02183{word-spacing:0.032940px;}
.ws11_c02183{word-spacing:0.036000px;}
.ws23_c02183{word-spacing:0.039528px;}
.ws16_c02183{word-spacing:0.046116px;}
.ws17_c02183{word-spacing:0.059292px;}
.wse_c02183{word-spacing:1.029600px;}
.wsf_c02183{word-spacing:1.130400px;}
.wsc_c02183{word-spacing:1.360800px;}
.wsd_c02183{word-spacing:1.396800px;}
.wsb_c02183{word-spacing:3.578400px;}
.ws6_c02183{word-spacing:3.888000px;}
.ws5_c02183{word-spacing:3.931200px;}
.ws7_c02183{word-spacing:7.084800px;}
.ws8_c02183{word-spacing:7.142400px;}
.ws1d_c02183{word-spacing:10.656000px;}
.ws1c_c02183{word-spacing:10.756800px;}
.ws1e_c02183{word-spacing:10.778400px;}
.ws9_c02183{word-spacing:18.979200px;}
.wsa_c02183{word-spacing:19.108800px;}
.ws21_c02183{word-spacing:24.537600px;}
.ws20_c02183{word-spacing:24.645600px;}
.ws1f_c02183{word-spacing:24.696000px;}
.ws13_c02183{word-spacing:26.266356px;}
.ws15_c02183{word-spacing:26.358588px;}
.ws14_c02183{word-spacing:26.384940px;}
._0_c02183{margin-left:-1.137600px;}
._1_c02183{width:83.907072px;}
._3_c02183{width:87.036372px;}
._9_c02183{width:192.705732px;}
._2_c02183{width:321.309072px;}
._4_c02183{width:415.505304px;}
._6_c02183{width:485.957376px;}
._5_c02183{width:501.630228px;}
._8_c02183{width:582.339816px;}
._7_c02183{width:1263.585132px;}
.fc0_c02183{color:rgb(0,0,0);}
.fs3_c02183{font-size:2.880000px;}
.fs1_c02183{font-size:47.880000px;}
.fs2_c02183{font-size:65.880000px;}
.fs0_c02183{font-size:72.000000px;}
.y0_c02183{bottom:0.000000px;}
.y3_c02183{bottom:57.360450px;}
.y2_c02183{bottom:78.060450px;}
.y30_c02183{bottom:121.980450px;}
.y2f_c02183{bottom:142.680450px;}
.y2e_c02183{bottom:163.380450px;}
.y2d_c02183{bottom:199.470450px;}
.y2c_c02183{bottom:203.970450px;}
.y2b_c02183{bottom:223.680450px;}
.y2a_c02183{bottom:243.390450px;}
.y29_c02183{bottom:263.100450px;}
.y28_c02183{bottom:282.810450px;}
.y27_c02183{bottom:302.520450px;}
.y26_c02183{bottom:322.230450px;}
.y25_c02183{bottom:342.030450px;}
.y24_c02183{bottom:361.830450px;}
.y23_c02183{bottom:381.180450px;}
.y22_c02183{bottom:401.880450px;}
.y21_c02183{bottom:422.580450px;}
.y20_c02183{bottom:442.740450px;}
.y1f_c02183{bottom:462.810450px;}
.y1e_c02183{bottom:484.230450px;}
.y1d_c02183{bottom:505.650450px;}
.y1c_c02183{bottom:526.350450px;}
.y1b_c02183{bottom:547.050450px;}
.y1a_c02183{bottom:567.750450px;}
.y19_c02183{bottom:588.450450px;}
.y18_c02183{bottom:609.600900px;}
.y17_c02183{bottom:628.590810px;}
.y16_c02183{bottom:647.671305px;}
.y15_c02183{bottom:666.661215px;}
.y14_c02183{bottom:685.651125px;}
.y13_c02183{bottom:704.550450px;}
.y12_c02183{bottom:724.530450px;}
.y11_c02183{bottom:745.950450px;}
.y10_c02183{bottom:777.810450px;}
.yf_c02183{bottom:808.950450px;}
.ye_c02183{bottom:840.000450px;}
.yd_c02183{bottom:871.050450px;}
.yc_c02183{bottom:902.100450px;}
.yb_c02183{bottom:933.150450px;}
.ya_c02183{bottom:964.200450px;}
.y9_c02183{bottom:995.250450px;}
.y8_c02183{bottom:1026.300450px;}
.y7_c02183{bottom:1057.350450px;}
.y6_c02183{bottom:1088.220450px;}
.y5_c02183{bottom:1114.590450px;}
.y4_c02183{bottom:1139.970450px;}
.y1_c02183{bottom:1193.160450px;}
.h6_c02183{height:2.557969px;}
.h3_c02183{height:42.526230px;}
.h5_c02183{height:57.805840px;}
.h4_c02183{height:58.513535px;}
.h2_c02183{height:63.175781px;}
.h1_c02183{height:63.949219px;}
.h0_c02183{height:1263.000000px;}
.w1_c02183{width:892.500000px;}
.w0_c02183{width:892.830000px;}
.x0_c02183{left:0.000000px;}
.x5_c02183{left:117.000000px;}
.x1_c02183{left:127.620000px;}
.x4_c02183{left:135.630000px;}
.x6_c02183{left:144.180000px;}
.x3_c02183{left:148.950000px;}
.x2_c02183{left:433.080000px;}
@media print{
.v0_c02183{vertical-align:0.000000pt;}
.ls21_c02183{letter-spacing:-0.240096pt;}
.ls1e_c02183{letter-spacing:-0.044800pt;}
.ls1d_c02183{letter-spacing:-0.032000pt;}
.ls1c_c02183{letter-spacing:-0.025600pt;}
.ls1b_c02183{letter-spacing:-0.012800pt;}
.ls1f_c02183{letter-spacing:-0.011712pt;}
.ls19_c02183{letter-spacing:0.000000pt;}
.ls1a_c02183{letter-spacing:0.006400pt;}
.ls9_c02183{letter-spacing:0.011712pt;}
.ls1_c02183{letter-spacing:0.012800pt;}
.ls4_c02183{letter-spacing:0.019200pt;}
.ls0_c02183{letter-spacing:0.025600pt;}
.lsb_c02183{letter-spacing:0.029280pt;}
.ls3_c02183{letter-spacing:0.032000pt;}
.ls5_c02183{letter-spacing:0.038400pt;}
.lsa_c02183{letter-spacing:0.040992pt;}
.ls13_c02183{letter-spacing:0.046848pt;}
.ls2_c02183{letter-spacing:0.051200pt;}
.ls18_c02183{letter-spacing:0.052704pt;}
.ls14_c02183{letter-spacing:0.058560pt;}
.ls10_c02183{letter-spacing:0.064000pt;}
.ls17_c02183{letter-spacing:0.064416pt;}
.ls12_c02183{letter-spacing:0.070272pt;}
.ls6_c02183{letter-spacing:0.070400pt;}
.lsf_c02183{letter-spacing:0.076128pt;}
.lsc_c02183{letter-spacing:0.081984pt;}
.lse_c02183{letter-spacing:0.087840pt;}
.ls8_c02183{letter-spacing:0.093696pt;}
.ls11_c02183{letter-spacing:0.108800pt;}
.ls15_c02183{letter-spacing:0.111264pt;}
.ls16_c02183{letter-spacing:0.122976pt;}
.ls7_c02183{letter-spacing:0.134688pt;}
.lsd_c02183{letter-spacing:0.152256pt;}
.ls20_c02183{letter-spacing:0.158112pt;}
.ws1_c02183{word-spacing:-15.987200pt;}
.ws0_c02183{word-spacing:-14.774688pt;}
.ws10_c02183{word-spacing:-0.121600pt;}
.ws3_c02183{word-spacing:-0.044800pt;}
.ws26_c02183{word-spacing:-0.040992pt;}
.ws25_c02183{word-spacing:-0.029280pt;}
.ws12_c02183{word-spacing:-0.025600pt;}
.ws1b_c02183{word-spacing:-0.019200pt;}
.ws1a_c02183{word-spacing:-0.011712pt;}
.ws22_c02183{word-spacing:-0.006400pt;}
.ws18_c02183{word-spacing:-0.005856pt;}
.ws2_c02183{word-spacing:0.000000pt;}
.ws19_c02183{word-spacing:0.005856pt;}
.ws29_c02183{word-spacing:0.011712pt;}
.ws4_c02183{word-spacing:0.012800pt;}
.ws27_c02183{word-spacing:0.017568pt;}
.ws24_c02183{word-spacing:0.023424pt;}
.ws28_c02183{word-spacing:0.029280pt;}
.ws11_c02183{word-spacing:0.032000pt;}
.ws23_c02183{word-spacing:0.035136pt;}
.ws16_c02183{word-spacing:0.040992pt;}
.ws17_c02183{word-spacing:0.052704pt;}
.wse_c02183{word-spacing:0.915200pt;}
.wsf_c02183{word-spacing:1.004800pt;}
.wsc_c02183{word-spacing:1.209600pt;}
.wsd_c02183{word-spacing:1.241600pt;}
.wsb_c02183{word-spacing:3.180800pt;}
.ws6_c02183{word-spacing:3.456000pt;}
.ws5_c02183{word-spacing:3.494400pt;}
.ws7_c02183{word-spacing:6.297600pt;}
.ws8_c02183{word-spacing:6.348800pt;}
.ws1d_c02183{word-spacing:9.472000pt;}
.ws1c_c02183{word-spacing:9.561600pt;}
.ws1e_c02183{word-spacing:9.580800pt;}
.ws9_c02183{word-spacing:16.870400pt;}
.wsa_c02183{word-spacing:16.985600pt;}
.ws21_c02183{word-spacing:21.811200pt;}
.ws20_c02183{word-spacing:21.907200pt;}
.ws1f_c02183{word-spacing:21.952000pt;}
.ws13_c02183{word-spacing:23.347872pt;}
.ws15_c02183{word-spacing:23.429856pt;}
.ws14_c02183{word-spacing:23.453280pt;}
._0_c02183{margin-left:-1.011200pt;}
._1_c02183{width:74.584064pt;}
._3_c02183{width:77.365664pt;}
._9_c02183{width:171.293984pt;}
._2_c02183{width:285.608064pt;}
._4_c02183{width:369.338048pt;}
._6_c02183{width:431.962112pt;}
._5_c02183{width:445.893536pt;}
._8_c02183{width:517.635392pt;}
._7_c02183{width:1123.186784pt;}
.fs3_c02183{font-size:2.560000pt;}
.fs1_c02183{font-size:42.560000pt;}
.fs2_c02183{font-size:58.560000pt;}
.fs0_c02183{font-size:64.000000pt;}
.y0_c02183{bottom:0.000000pt;}
.y3_c02183{bottom:50.987067pt;}
.y2_c02183{bottom:69.387067pt;}
.y30_c02183{bottom:108.427067pt;}
.y2f_c02183{bottom:126.827067pt;}
.y2e_c02183{bottom:145.227067pt;}
.y2d_c02183{bottom:177.307067pt;}
.y2c_c02183{bottom:181.307067pt;}
.y2b_c02183{bottom:198.827067pt;}
.y2a_c02183{bottom:216.347067pt;}
.y29_c02183{bottom:233.867067pt;}
.y28_c02183{bottom:251.387067pt;}
.y27_c02183{bottom:268.907067pt;}
.y26_c02183{bottom:286.427067pt;}
.y25_c02183{bottom:304.027067pt;}
.y24_c02183{bottom:321.627067pt;}
.y23_c02183{bottom:338.827067pt;}
.y22_c02183{bottom:357.227067pt;}
.y21_c02183{bottom:375.627067pt;}
.y20_c02183{bottom:393.547067pt;}
.y1f_c02183{bottom:411.387067pt;}
.y1e_c02183{bottom:430.427067pt;}
.y1d_c02183{bottom:449.467067pt;}
.y1c_c02183{bottom:467.867067pt;}
.y1b_c02183{bottom:486.267067pt;}
.y1a_c02183{bottom:504.667067pt;}
.y19_c02183{bottom:523.067067pt;}
.y18_c02183{bottom:541.867467pt;}
.y17_c02183{bottom:558.747387pt;}
.y16_c02183{bottom:575.707827pt;}
.y15_c02183{bottom:592.587747pt;}
.y14_c02183{bottom:609.467667pt;}
.y13_c02183{bottom:626.267067pt;}
.y12_c02183{bottom:644.027067pt;}
.y11_c02183{bottom:663.067067pt;}
.y10_c02183{bottom:691.387067pt;}
.yf_c02183{bottom:719.067067pt;}
.ye_c02183{bottom:746.667067pt;}
.yd_c02183{bottom:774.267067pt;}
.yc_c02183{bottom:801.867067pt;}
.yb_c02183{bottom:829.467067pt;}
.ya_c02183{bottom:857.067067pt;}
.y9_c02183{bottom:884.667067pt;}
.y8_c02183{bottom:912.267067pt;}
.y7_c02183{bottom:939.867067pt;}
.y6_c02183{bottom:967.307067pt;}
.y5_c02183{bottom:990.747067pt;}
.y4_c02183{bottom:1013.307067pt;}
.y1_c02183{bottom:1060.587067pt;}
.h6_c02183{height:2.273750pt;}
.h3_c02183{height:37.801094pt;}
.h5_c02183{height:51.382969pt;}
.h4_c02183{height:52.012031pt;}
.h2_c02183{height:56.156250pt;}
.h1_c02183{height:56.843750pt;}
.h0_c02183{height:1122.666667pt;}
.w1_c02183{width:793.333333pt;}
.w0_c02183{width:793.626667pt;}
.x0_c02183{left:0.000000pt;}
.x5_c02183{left:104.000000pt;}
.x1_c02183{left:113.440000pt;}
.x4_c02183{left:120.560000pt;}
.x6_c02183{left:128.160000pt;}
.x3_c02183{left:132.400000pt;}
.x2_c02183{left:384.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_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_b921b2f2c61d9157e9377789.woff2')format("woff");}.ff1_c02184{font-family:ff1_c02184;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02184;src:url('chunks/assets/font_ab9201ba8dcde3250d7cde5d.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_22ca7462e0ab98a4216fa340.woff2')format("woff");}.ff3_c02184{font-family:ff3_c02184;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_c02184;src:url('chunks/assets/font_faab27eba510696e0da51263.woff2')format("woff");}.ff4_c02184{font-family:ff4_c02184;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_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);}
.v2_c02184{vertical-align:-9.000000px;}
.v1_c02184{vertical-align:-5.760000px;}
.v0_c02184{vertical-align:0.000000px;}
.ls14_c02184{letter-spacing:-0.028800px;}
.ls12_c02184{letter-spacing:-0.021600px;}
.ls13_c02184{letter-spacing:-0.007200px;}
.ls10_c02184{letter-spacing:0.000000px;}
.ls6_c02184{letter-spacing:0.007200px;}
.ls1_c02184{letter-spacing:0.013176px;}
.lsa_c02184{letter-spacing:0.014400px;}
.ls9_c02184{letter-spacing:0.019764px;}
.ls4_c02184{letter-spacing:0.021600px;}
.ls0_c02184{letter-spacing:0.028800px;}
.ls8_c02184{letter-spacing:0.032940px;}
.ls3_c02184{letter-spacing:0.036000px;}
.lsb_c02184{letter-spacing:0.039528px;}
.ls5_c02184{letter-spacing:0.043200px;}
.ls7_c02184{letter-spacing:0.046116px;}
.lsf_c02184{letter-spacing:0.050400px;}
.ls15_c02184{letter-spacing:0.052704px;}
.lsd_c02184{letter-spacing:0.057600px;}
.lsc_c02184{letter-spacing:0.064800px;}
.lse_c02184{letter-spacing:0.065880px;}
.ls2_c02184{letter-spacing:0.144000px;}
.ls11_c02184{letter-spacing:0.181944px;}
.sc__c02184{text-shadow:none;}
.sc0_c02184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02184{-webkit-text-stroke:0px transparent;}
.sc0_c02184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02184{word-spacing:-17.992800px;}
.ws19_c02184{word-spacing:-0.424800px;}
.ws1e_c02184{word-spacing:-0.360000px;}
.ws22_c02184{word-spacing:-0.288000px;}
.ws17_c02184{word-spacing:-0.180000px;}
.ws14_c02184{word-spacing:-0.129600px;}
.ws15_c02184{word-spacing:-0.100800px;}
.ws5_c02184{word-spacing:-0.086400px;}
.wsd_c02184{word-spacing:-0.079200px;}
.ws8_c02184{word-spacing:-0.057600px;}
.ws2_c02184{word-spacing:-0.050400px;}
.wse_c02184{word-spacing:-0.043200px;}
.ws3_c02184{word-spacing:-0.028800px;}
.ws6_c02184{word-spacing:-0.021600px;}
.wsf_c02184{word-spacing:-0.014400px;}
.wsb_c02184{word-spacing:-0.007200px;}
.ws1_c02184{word-spacing:0.000000px;}
.wsc_c02184{word-spacing:0.007200px;}
.ws1a_c02184{word-spacing:0.026352px;}
.ws16_c02184{word-spacing:0.028800px;}
.ws21_c02184{word-spacing:0.039528px;}
.ws9_c02184{word-spacing:0.046116px;}
.ws18_c02184{word-spacing:0.052704px;}
.wsa_c02184{word-spacing:0.059292px;}
.ws10_c02184{word-spacing:2.858400px;}
.ws11_c02184{word-spacing:2.923200px;}
.ws1d_c02184{word-spacing:4.500000px;}
.ws1b_c02184{word-spacing:4.572000px;}
.ws1c_c02184{word-spacing:4.708800px;}
.ws4_c02184{word-spacing:6.861600px;}
.ws12_c02184{word-spacing:13.284000px;}
.ws13_c02184{word-spacing:13.327200px;}
.ws7_c02184{word-spacing:29.793600px;}
.ws1f_c02184{word-spacing:34.171200px;}
.ws20_c02184{word-spacing:34.185600px;}
._7_c02184{margin-left:-3.412800px;}
._3_c02184{margin-left:-1.123200px;}
._1_c02184{width:6.278184px;}
._2_c02184{width:29.318184px;}
._4_c02184{width:141.689772px;}
._5_c02184{width:145.431756px;}
._0_c02184{width:191.501640px;}
._6_c02184{width:294.089976px;}
.fc0_c02184{color:rgb(0,0,0);}
.fs2_c02184{font-size:47.880000px;}
.fs1_c02184{font-size:65.880000px;}
.fs0_c02184{font-size:72.000000px;}
.y0_c02184{bottom:0.000000px;}
.y3_c02184{bottom:57.360450px;}
.y2_c02184{bottom:78.060450px;}
.y34_c02184{bottom:112.800450px;}
.y33_c02184{bottom:143.850450px;}
.y32_c02184{bottom:174.900450px;}
.y31_c02184{bottom:205.950450px;}
.y30_c02184{bottom:226.830450px;}
.y2f_c02184{bottom:247.530450px;}
.y2e_c02184{bottom:268.230450px;}
.y2d_c02184{bottom:288.930450px;}
.y2c_c02184{bottom:309.630450px;}
.y2b_c02184{bottom:330.150450px;}
.y2a_c02184{bottom:350.850450px;}
.y29_c02184{bottom:372.450450px;}
.y28_c02184{bottom:393.420450px;}
.y27_c02184{bottom:413.670450px;}
.y26_c02184{bottom:434.280450px;}
.y25_c02184{bottom:454.980450px;}
.y24_c02184{bottom:475.680600px;}
.y23_c02184{bottom:496.740450px;}
.y22_c02184{bottom:516.900450px;}
.y21_c02184{bottom:537.870450px;}
.y20_c02184{bottom:558.030450px;}
.y1f_c02184{bottom:578.730450px;}
.y1e_c02184{bottom:599.430450px;}
.y1d_c02184{bottom:620.130450px;}
.y1c_c02184{bottom:640.830450px;}
.y1b_c02184{bottom:661.530450px;}
.y1a_c02184{bottom:682.500450px;}
.y19_c02184{bottom:702.750450px;}
.y18_c02184{bottom:723.450450px;}
.y17_c02184{bottom:744.420450px;}
.y16_c02184{bottom:764.400450px;}
.y15_c02184{bottom:785.100450px;}
.y14_c02184{bottom:805.800450px;}
.y13_c02184{bottom:826.500450px;}
.y12_c02184{bottom:847.200450px;}
.y11_c02184{bottom:867.900450px;}
.y10_c02184{bottom:888.600450px;}
.yf_c02184{bottom:909.300450px;}
.ye_c02184{bottom:931.440450px;}
.yd_c02184{bottom:952.860450px;}
.yc_c02184{bottom:974.370450px;}
.yb_c02184{bottom:994.440450px;}
.ya_c02184{bottom:1015.140450px;}
.y9_c02184{bottom:1035.750450px;}
.y8_c02184{bottom:1056.540450px;}
.y7_c02184{bottom:1077.240450px;}
.y6_c02184{bottom:1099.290450px;}
.y5_c02184{bottom:1119.450450px;}
.y4_c02184{bottom:1139.970450px;}
.y1_c02184{bottom:1193.160450px;}
.h3_c02184{height:58.513535px;}
.h2_c02184{height:63.175781px;}
.h1_c02184{height:63.949219px;}
.h4_c02184{height:70.628906px;}
.h0_c02184{height:1263.000000px;}
.w1_c02184{width:892.500000px;}
.w0_c02184{width:892.830000px;}
.x0_c02184{left:0.000000px;}
.x5_c02184{left:117.000000px;}
.x1_c02184{left:127.620000px;}
.x3_c02184{left:135.630000px;}
.x4_c02184{left:252.630000px;}
.x2_c02184{left:433.080000px;}
@media print{
.v2_c02184{vertical-align:-8.000000pt;}
.v1_c02184{vertical-align:-5.120000pt;}
.v0_c02184{vertical-align:0.000000pt;}
.ls14_c02184{letter-spacing:-0.025600pt;}
.ls12_c02184{letter-spacing:-0.019200pt;}
.ls13_c02184{letter-spacing:-0.006400pt;}
.ls10_c02184{letter-spacing:0.000000pt;}
.ls6_c02184{letter-spacing:0.006400pt;}
.ls1_c02184{letter-spacing:0.011712pt;}
.lsa_c02184{letter-spacing:0.012800pt;}
.ls9_c02184{letter-spacing:0.017568pt;}
.ls4_c02184{letter-spacing:0.019200pt;}
.ls0_c02184{letter-spacing:0.025600pt;}
.ls8_c02184{letter-spacing:0.029280pt;}
.ls3_c02184{letter-spacing:0.032000pt;}
.lsb_c02184{letter-spacing:0.035136pt;}
.ls5_c02184{letter-spacing:0.038400pt;}
.ls7_c02184{letter-spacing:0.040992pt;}
.lsf_c02184{letter-spacing:0.044800pt;}
.ls15_c02184{letter-spacing:0.046848pt;}
.lsd_c02184{letter-spacing:0.051200pt;}
.lsc_c02184{letter-spacing:0.057600pt;}
.lse_c02184{letter-spacing:0.058560pt;}
.ls2_c02184{letter-spacing:0.128000pt;}
.ls11_c02184{letter-spacing:0.161728pt;}
.ws0_c02184{word-spacing:-15.993600pt;}
.ws19_c02184{word-spacing:-0.377600pt;}
.ws1e_c02184{word-spacing:-0.320000pt;}
.ws22_c02184{word-spacing:-0.256000pt;}
.ws17_c02184{word-spacing:-0.160000pt;}
.ws14_c02184{word-spacing:-0.115200pt;}
.ws15_c02184{word-spacing:-0.089600pt;}
.ws5_c02184{word-spacing:-0.076800pt;}
.wsd_c02184{word-spacing:-0.070400pt;}
.ws8_c02184{word-spacing:-0.051200pt;}
.ws2_c02184{word-spacing:-0.044800pt;}
.wse_c02184{word-spacing:-0.038400pt;}
.ws3_c02184{word-spacing:-0.025600pt;}
.ws6_c02184{word-spacing:-0.019200pt;}
.wsf_c02184{word-spacing:-0.012800pt;}
.wsb_c02184{word-spacing:-0.006400pt;}
.ws1_c02184{word-spacing:0.000000pt;}
.wsc_c02184{word-spacing:0.006400pt;}
.ws1a_c02184{word-spacing:0.023424pt;}
.ws16_c02184{word-spacing:0.025600pt;}
.ws21_c02184{word-spacing:0.035136pt;}
.ws9_c02184{word-spacing:0.040992pt;}
.ws18_c02184{word-spacing:0.046848pt;}
.wsa_c02184{word-spacing:0.052704pt;}
.ws10_c02184{word-spacing:2.540800pt;}
.ws11_c02184{word-spacing:2.598400pt;}
.ws1d_c02184{word-spacing:4.000000pt;}
.ws1b_c02184{word-spacing:4.064000pt;}
.ws1c_c02184{word-spacing:4.185600pt;}
.ws4_c02184{word-spacing:6.099200pt;}
.ws12_c02184{word-spacing:11.808000pt;}
.ws13_c02184{word-spacing:11.846400pt;}
.ws7_c02184{word-spacing:26.483200pt;}
.ws1f_c02184{word-spacing:30.374400pt;}
.ws20_c02184{word-spacing:30.387200pt;}
._7_c02184{margin-left:-3.033600pt;}
._3_c02184{margin-left:-0.998400pt;}
._1_c02184{width:5.580608pt;}
._2_c02184{width:26.060608pt;}
._4_c02184{width:125.946464pt;}
._5_c02184{width:129.272672pt;}
._0_c02184{width:170.223680pt;}
._6_c02184{width:261.413312pt;}
.fs2_c02184{font-size:42.560000pt;}
.fs1_c02184{font-size:58.560000pt;}
.fs0_c02184{font-size:64.000000pt;}
.y0_c02184{bottom:0.000000pt;}
.y3_c02184{bottom:50.987067pt;}
.y2_c02184{bottom:69.387067pt;}
.y34_c02184{bottom:100.267067pt;}
.y33_c02184{bottom:127.867067pt;}
.y32_c02184{bottom:155.467067pt;}
.y31_c02184{bottom:183.067067pt;}
.y30_c02184{bottom:201.627067pt;}
.y2f_c02184{bottom:220.027067pt;}
.y2e_c02184{bottom:238.427067pt;}
.y2d_c02184{bottom:256.827067pt;}
.y2c_c02184{bottom:275.227067pt;}
.y2b_c02184{bottom:293.467067pt;}
.y2a_c02184{bottom:311.867067pt;}
.y29_c02184{bottom:331.067067pt;}
.y28_c02184{bottom:349.707067pt;}
.y27_c02184{bottom:367.707067pt;}
.y26_c02184{bottom:386.027067pt;}
.y25_c02184{bottom:404.427067pt;}
.y24_c02184{bottom:422.827200pt;}
.y23_c02184{bottom:441.547067pt;}
.y22_c02184{bottom:459.467067pt;}
.y21_c02184{bottom:478.107067pt;}
.y20_c02184{bottom:496.027067pt;}
.y1f_c02184{bottom:514.427067pt;}
.y1e_c02184{bottom:532.827067pt;}
.y1d_c02184{bottom:551.227067pt;}
.y1c_c02184{bottom:569.627067pt;}
.y1b_c02184{bottom:588.027067pt;}
.y1a_c02184{bottom:606.667067pt;}
.y19_c02184{bottom:624.667067pt;}
.y18_c02184{bottom:643.067067pt;}
.y17_c02184{bottom:661.707067pt;}
.y16_c02184{bottom:679.467067pt;}
.y15_c02184{bottom:697.867067pt;}
.y14_c02184{bottom:716.267067pt;}
.y13_c02184{bottom:734.667067pt;}
.y12_c02184{bottom:753.067067pt;}
.y11_c02184{bottom:771.467067pt;}
.y10_c02184{bottom:789.867067pt;}
.yf_c02184{bottom:808.267067pt;}
.ye_c02184{bottom:827.947067pt;}
.yd_c02184{bottom:846.987067pt;}
.yc_c02184{bottom:866.107067pt;}
.yb_c02184{bottom:883.947067pt;}
.ya_c02184{bottom:902.347067pt;}
.y9_c02184{bottom:920.667067pt;}
.y8_c02184{bottom:939.147067pt;}
.y7_c02184{bottom:957.547067pt;}
.y6_c02184{bottom:977.147067pt;}
.y5_c02184{bottom:995.067067pt;}
.y4_c02184{bottom:1013.307067pt;}
.y1_c02184{bottom:1060.587067pt;}
.h3_c02184{height:52.012031pt;}
.h2_c02184{height:56.156250pt;}
.h1_c02184{height:56.843750pt;}
.h4_c02184{height:62.781250pt;}
.h0_c02184{height:1122.666667pt;}
.w1_c02184{width:793.333333pt;}
.w0_c02184{width:793.626667pt;}
.x0_c02184{left:0.000000pt;}
.x5_c02184{left:104.000000pt;}
.x1_c02184{left:113.440000pt;}
.x3_c02184{left:120.560000pt;}
.x4_c02184{left:224.560000pt;}
.x2_c02184{left:384.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_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_61fda8bb80665b971dde5eff.woff2')format("woff");}.ff1_c02185{font-family:ff1_c02185;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02185;src:url('chunks/assets/font_bb2c129b7d5601d0685880a2.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;}
.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);}
.v5_c02185{vertical-align:-18.000000px;}
.v4_c02185{vertical-align:-1.440000px;}
.v0_c02185{vertical-align:0.000000px;}
.v6_c02185{vertical-align:1.800000px;}
.v1_c02185{vertical-align:5.400000px;}
.v2_c02185{vertical-align:11.160000px;}
.v3_c02185{vertical-align:16.560000px;}
.ls27_c02185{letter-spacing:-0.086184px;}
.ls1c_c02185{letter-spacing:-0.064800px;}
.ls23_c02185{letter-spacing:-0.043200px;}
.ls1f_c02185{letter-spacing:-0.028800px;}
.ls25_c02185{letter-spacing:-0.019152px;}
.ls24_c02185{letter-spacing:-0.010800px;}
.ls1b_c02185{letter-spacing:-0.007200px;}
.ls20_c02185{letter-spacing:-0.006012px;}
.ls19_c02185{letter-spacing:0.000000px;}
.lse_c02185{letter-spacing:0.007200px;}
.lsf_c02185{letter-spacing:0.010800px;}
.ls1a_c02185{letter-spacing:0.014400px;}
.ls21_c02185{letter-spacing:0.021600px;}
.ls11_c02185{letter-spacing:0.028728px;}
.lsd_c02185{letter-spacing:0.028800px;}
.ls13_c02185{letter-spacing:0.032400px;}
.ls16_c02185{letter-spacing:0.037800px;}
.lsb_c02185{letter-spacing:0.039528px;}
.ls10_c02185{letter-spacing:0.043092px;}
.ls15_c02185{letter-spacing:0.043200px;}
.ls0_c02185{letter-spacing:0.050400px;}
.ls6_c02185{letter-spacing:0.059292px;}
.ls12_c02185{letter-spacing:0.059400px;}
.ls4_c02185{letter-spacing:0.079056px;}
.ls9_c02185{letter-spacing:0.085644px;}
.ls1d_c02185{letter-spacing:0.086400px;}
.ls3_c02185{letter-spacing:0.105408px;}
.ls14_c02185{letter-spacing:0.110124px;}
.ls7_c02185{letter-spacing:0.138348px;}
.ls2_c02185{letter-spacing:0.144288px;}
.ls22_c02185{letter-spacing:0.151200px;}
.ls5_c02185{letter-spacing:0.151524px;}
.lsa_c02185{letter-spacing:0.158112px;}
.ls26_c02185{letter-spacing:0.167580px;}
.ls8_c02185{letter-spacing:0.177876px;}
.lsc_c02185{letter-spacing:0.178200px;}
.ls28_c02185{letter-spacing:0.181944px;}
.ls18_c02185{letter-spacing:0.205884px;}
.ls29_c02185{letter-spacing:156.778200px;}
.ls17_c02185{letter-spacing:200.790000px;}
.ls1_c02185{letter-spacing:250.920000px;}
.ls1e_c02185{letter-spacing:1114.020000px;}
.sc__c02185{text-shadow:none;}
.sc0_c02185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02185{-webkit-text-stroke:0px transparent;}
.sc0_c02185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02185{word-spacing:-17.971200px;}
.ws17_c02185{word-spacing:-0.296856px;}
.ws16_c02185{word-spacing:-0.272916px;}
.ws5_c02185{word-spacing:-0.172800px;}
.ws14_c02185{word-spacing:-0.136800px;}
.wsd_c02185{word-spacing:-0.129600px;}
.ws13_c02185{word-spacing:-0.115200px;}
.wsc_c02185{word-spacing:-0.086400px;}
.wse_c02185{word-spacing:-0.054108px;}
.ws3_c02185{word-spacing:-0.050400px;}
.ws4_c02185{word-spacing:-0.014400px;}
.wsf_c02185{word-spacing:-0.013176px;}
.wsb_c02185{word-spacing:-0.007200px;}
.ws2_c02185{word-spacing:0.000000px;}
.ws10_c02185{word-spacing:0.013176px;}
.ws11_c02185{word-spacing:0.032940px;}
.ws12_c02185{word-spacing:0.052704px;}
.ws15_c02185{word-spacing:0.118800px;}
.ws6_c02185{word-spacing:3.549600px;}
.ws7_c02185{word-spacing:3.664800px;}
.wsa_c02185{word-spacing:5.493600px;}
.ws9_c02185{word-spacing:5.529600px;}
.ws8_c02185{word-spacing:5.760000px;}
.ws1_c02185{word-spacing:58.969440px;}
.ws18_c02185{word-spacing:172.935000px;}
._23_c02185{margin-left:-27.362124px;}
._25_c02185{margin-left:-15.838200px;}
._0_c02185{margin-left:-1.339200px;}
._26_c02185{width:25.612200px;}
._1d_c02185{width:51.300000px;}
._24_c02185{width:63.001800px;}
._19_c02185{width:65.764440px;}
._1a_c02185{width:72.837000px;}
._22_c02185{width:75.420000px;}
._20_c02185{width:83.340000px;}
._14_c02185{width:85.286160px;}
._11_c02185{width:87.769440px;}
._f_c02185{width:89.918496px;}
._1b_c02185{width:100.107360px;}
._1e_c02185{width:104.479380px;}
._18_c02185{width:108.347688px;}
._1c_c02185{width:113.689440px;}
._4_c02185{width:114.930000px;}
._17_c02185{width:118.855152px;}
._8_c02185{width:122.676372px;}
._15_c02185{width:127.523628px;}
._21_c02185{width:129.864960px;}
._1f_c02185{width:132.915600px;}
._16_c02185{width:139.618944px;}
._6_c02185{width:156.154248px;}
._3_c02185{width:170.728704px;}
._b_c02185{width:238.770000px;}
._2_c02185{width:255.030192px;}
._12_c02185{width:264.194424px;}
._5_c02185{width:269.067312px;}
._13_c02185{width:282.559536px;}
._a_c02185{width:320.501952px;}
._c_c02185{width:330.164424px;}
._10_c02185{width:346.570776px;}
._d_c02185{width:359.421732px;}
._7_c02185{width:377.791200px;}
._9_c02185{width:388.911744px;}
._e_c02185{width:392.421024px;}
._1_c02185{width:2501.999400px;}
.fc0_c02185{color:rgb(0,0,0);}
.fs4_c02185{font-size:47.880000px;}
.fs1_c02185{font-size:54.000000px;}
.fs2_c02185{font-size:60.120000px;}
.fs3_c02185{font-size:65.880000px;}
.fs0_c02185{font-size:72.000000px;}
.y0_c02185{bottom:0.000000px;}
.y3_c02185{bottom:57.360450px;}
.y2_c02185{bottom:78.060450px;}
.y28_c02185{bottom:123.960600px;}
.y26_c02185{bottom:143.310450px;}
.y27_c02185{bottom:144.660450px;}
.y25_c02185{bottom:159.510450px;}
.y24_c02185{bottom:178.680450px;}
.y23_c02185{bottom:195.150450px;}
.y22_c02185{bottom:215.310900px;}
.y21_c02185{bottom:230.880450px;}
.y20_c02185{bottom:248.070450px;}
.y1f_c02185{bottom:268.590450px;}
.y1e_c02185{bottom:284.070900px;}
.y1d_c02185{bottom:299.640450px;}
.y1c_c02185{bottom:316.200450px;}
.y1b_c02185{bottom:335.100450px;}
.y1a_c02185{bottom:354.090450px;}
.y19_c02185{bottom:373.800450px;}
.y18_c02185{bottom:392.790600px;}
.y17_c02185{bottom:411.780450px;}
.y16_c02185{bottom:430.770600px;}
.y15_c02185{bottom:449.760450px;}
.y14_c02185{bottom:468.750600px;}
.y13_c02185{bottom:487.650450px;}
.y12_c02185{bottom:506.280600px;}
.y11_c02185{bottom:524.190600px;}
.y10_c02185{bottom:544.890450px;}
.yf_c02185{bottom:565.590450px;}
.ye_c02185{bottom:588.720450px;}
.yd_c02185{bottom:605.190450px;}
.yc_c02185{bottom:626.070450px;}
.yb_c02185{bottom:646.770450px;}
.ya_c02185{bottom:663.330450px;}
.y9_c02185{bottom:984.720450px;}
.y8_c02185{bottom:1015.950450px;}
.y7_c02185{bottom:1047.000450px;}
.y6_c02185{bottom:1078.050450px;}
.y5_c02185{bottom:1108.920450px;}
.y4_c02185{bottom:1139.970450px;}
.y1_c02185{bottom:1193.160450px;}
.h7_c02185{height:42.526230px;}
.h3_c02185{height:47.961914px;}
.h4_c02185{height:53.397598px;}
.h5_c02185{height:58.513535px;}
.h6_c02185{height:59.121914px;}
.h2_c02185{height:63.175781px;}
.h1_c02185{height:63.949219px;}
.h0_c02185{height:1263.000000px;}
.w1_c02185{width:892.500000px;}
.w0_c02185{width:892.830000px;}
.x0_c02185{left:0.000000px;}
.x5_c02185{left:117.000000px;}
.x1_c02185{left:127.620000px;}
.x6_c02185{left:135.630000px;}
.xa_c02185{left:143.910000px;}
.x4_c02185{left:148.950000px;}
.xb_c02185{left:150.300000px;}
.x9_c02185{left:172.980000px;}
.x7_c02185{left:176.850000px;}
.xc_c02185{left:220.680000px;}
.x8_c02185{left:316.980000px;}
.x3_c02185{left:373.140000px;}
.x2_c02185{left:433.080000px;}
@media print{
.v5_c02185{vertical-align:-16.000000pt;}
.v4_c02185{vertical-align:-1.280000pt;}
.v0_c02185{vertical-align:0.000000pt;}
.v6_c02185{vertical-align:1.600000pt;}
.v1_c02185{vertical-align:4.800000pt;}
.v2_c02185{vertical-align:9.920000pt;}
.v3_c02185{vertical-align:14.720000pt;}
.ls27_c02185{letter-spacing:-0.076608pt;}
.ls1c_c02185{letter-spacing:-0.057600pt;}
.ls23_c02185{letter-spacing:-0.038400pt;}
.ls1f_c02185{letter-spacing:-0.025600pt;}
.ls25_c02185{letter-spacing:-0.017024pt;}
.ls24_c02185{letter-spacing:-0.009600pt;}
.ls1b_c02185{letter-spacing:-0.006400pt;}
.ls20_c02185{letter-spacing:-0.005344pt;}
.ls19_c02185{letter-spacing:0.000000pt;}
.lse_c02185{letter-spacing:0.006400pt;}
.lsf_c02185{letter-spacing:0.009600pt;}
.ls1a_c02185{letter-spacing:0.012800pt;}
.ls21_c02185{letter-spacing:0.019200pt;}
.ls11_c02185{letter-spacing:0.025536pt;}
.lsd_c02185{letter-spacing:0.025600pt;}
.ls13_c02185{letter-spacing:0.028800pt;}
.ls16_c02185{letter-spacing:0.033600pt;}
.lsb_c02185{letter-spacing:0.035136pt;}
.ls10_c02185{letter-spacing:0.038304pt;}
.ls15_c02185{letter-spacing:0.038400pt;}
.ls0_c02185{letter-spacing:0.044800pt;}
.ls6_c02185{letter-spacing:0.052704pt;}
.ls12_c02185{letter-spacing:0.052800pt;}
.ls4_c02185{letter-spacing:0.070272pt;}
.ls9_c02185{letter-spacing:0.076128pt;}
.ls1d_c02185{letter-spacing:0.076800pt;}
.ls3_c02185{letter-spacing:0.093696pt;}
.ls14_c02185{letter-spacing:0.097888pt;}
.ls7_c02185{letter-spacing:0.122976pt;}
.ls2_c02185{letter-spacing:0.128256pt;}
.ls22_c02185{letter-spacing:0.134400pt;}
.ls5_c02185{letter-spacing:0.134688pt;}
.lsa_c02185{letter-spacing:0.140544pt;}
.ls26_c02185{letter-spacing:0.148960pt;}
.ls8_c02185{letter-spacing:0.158112pt;}
.lsc_c02185{letter-spacing:0.158400pt;}
.ls28_c02185{letter-spacing:0.161728pt;}
.ls18_c02185{letter-spacing:0.183008pt;}
.ls29_c02185{letter-spacing:139.358400pt;}
.ls17_c02185{letter-spacing:178.480000pt;}
.ls1_c02185{letter-spacing:223.040000pt;}
.ls1e_c02185{letter-spacing:990.240000pt;}
.ws0_c02185{word-spacing:-15.974400pt;}
.ws17_c02185{word-spacing:-0.263872pt;}
.ws16_c02185{word-spacing:-0.242592pt;}
.ws5_c02185{word-spacing:-0.153600pt;}
.ws14_c02185{word-spacing:-0.121600pt;}
.wsd_c02185{word-spacing:-0.115200pt;}
.ws13_c02185{word-spacing:-0.102400pt;}
.wsc_c02185{word-spacing:-0.076800pt;}
.wse_c02185{word-spacing:-0.048096pt;}
.ws3_c02185{word-spacing:-0.044800pt;}
.ws4_c02185{word-spacing:-0.012800pt;}
.wsf_c02185{word-spacing:-0.011712pt;}
.wsb_c02185{word-spacing:-0.006400pt;}
.ws2_c02185{word-spacing:0.000000pt;}
.ws10_c02185{word-spacing:0.011712pt;}
.ws11_c02185{word-spacing:0.029280pt;}
.ws12_c02185{word-spacing:0.046848pt;}
.ws15_c02185{word-spacing:0.105600pt;}
.ws6_c02185{word-spacing:3.155200pt;}
.ws7_c02185{word-spacing:3.257600pt;}
.wsa_c02185{word-spacing:4.883200pt;}
.ws9_c02185{word-spacing:4.915200pt;}
.ws8_c02185{word-spacing:5.120000pt;}
.ws1_c02185{word-spacing:52.417280pt;}
.ws18_c02185{word-spacing:153.720000pt;}
._23_c02185{margin-left:-24.321888pt;}
._25_c02185{margin-left:-14.078400pt;}
._0_c02185{margin-left:-1.190400pt;}
._26_c02185{width:22.766400pt;}
._1d_c02185{width:45.600000pt;}
._24_c02185{width:56.001600pt;}
._19_c02185{width:58.457280pt;}
._1a_c02185{width:64.744000pt;}
._22_c02185{width:67.040000pt;}
._20_c02185{width:74.080000pt;}
._14_c02185{width:75.809920pt;}
._11_c02185{width:78.017280pt;}
._f_c02185{width:79.927552pt;}
._1b_c02185{width:88.984320pt;}
._1e_c02185{width:92.870560pt;}
._18_c02185{width:96.309056pt;}
._1c_c02185{width:101.057280pt;}
._4_c02185{width:102.160000pt;}
._17_c02185{width:105.649024pt;}
._8_c02185{width:109.045664pt;}
._15_c02185{width:113.354336pt;}
._21_c02185{width:115.435520pt;}
._1f_c02185{width:118.147200pt;}
._16_c02185{width:124.105728pt;}
._6_c02185{width:138.803776pt;}
._3_c02185{width:151.758848pt;}
._b_c02185{width:212.240000pt;}
._2_c02185{width:226.693504pt;}
._12_c02185{width:234.839488pt;}
._5_c02185{width:239.170944pt;}
._13_c02185{width:251.164032pt;}
._a_c02185{width:284.890624pt;}
._c_c02185{width:293.479488pt;}
._10_c02185{width:308.062912pt;}
._d_c02185{width:319.485984pt;}
._7_c02185{width:335.814400pt;}
._9_c02185{width:345.699328pt;}
._e_c02185{width:348.818688pt;}
._1_c02185{width:2223.999467pt;}
.fs4_c02185{font-size:42.560000pt;}
.fs1_c02185{font-size:48.000000pt;}
.fs2_c02185{font-size:53.440000pt;}
.fs3_c02185{font-size:58.560000pt;}
.fs0_c02185{font-size:64.000000pt;}
.y0_c02185{bottom:0.000000pt;}
.y3_c02185{bottom:50.987067pt;}
.y2_c02185{bottom:69.387067pt;}
.y28_c02185{bottom:110.187200pt;}
.y26_c02185{bottom:127.387067pt;}
.y27_c02185{bottom:128.587067pt;}
.y25_c02185{bottom:141.787067pt;}
.y24_c02185{bottom:158.827067pt;}
.y23_c02185{bottom:173.467067pt;}
.y22_c02185{bottom:191.387467pt;}
.y21_c02185{bottom:205.227067pt;}
.y20_c02185{bottom:220.507067pt;}
.y1f_c02185{bottom:238.747067pt;}
.y1e_c02185{bottom:252.507467pt;}
.y1d_c02185{bottom:266.347067pt;}
.y1c_c02185{bottom:281.067067pt;}
.y1b_c02185{bottom:297.867067pt;}
.y1a_c02185{bottom:314.747067pt;}
.y19_c02185{bottom:332.267067pt;}
.y18_c02185{bottom:349.147200pt;}
.y17_c02185{bottom:366.027067pt;}
.y16_c02185{bottom:382.907200pt;}
.y15_c02185{bottom:399.787067pt;}
.y14_c02185{bottom:416.667200pt;}
.y13_c02185{bottom:433.467067pt;}
.y12_c02185{bottom:450.027200pt;}
.y11_c02185{bottom:465.947200pt;}
.y10_c02185{bottom:484.347067pt;}
.yf_c02185{bottom:502.747067pt;}
.ye_c02185{bottom:523.307067pt;}
.yd_c02185{bottom:537.947067pt;}
.yc_c02185{bottom:556.507067pt;}
.yb_c02185{bottom:574.907067pt;}
.ya_c02185{bottom:589.627067pt;}
.y9_c02185{bottom:875.307067pt;}
.y8_c02185{bottom:903.067067pt;}
.y7_c02185{bottom:930.667067pt;}
.y6_c02185{bottom:958.267067pt;}
.y5_c02185{bottom:985.707067pt;}
.y4_c02185{bottom:1013.307067pt;}
.y1_c02185{bottom:1060.587067pt;}
.h7_c02185{height:37.801094pt;}
.h3_c02185{height:42.632812pt;}
.h4_c02185{height:47.464531pt;}
.h5_c02185{height:52.012031pt;}
.h6_c02185{height:52.552813pt;}
.h2_c02185{height:56.156250pt;}
.h1_c02185{height:56.843750pt;}
.h0_c02185{height:1122.666667pt;}
.w1_c02185{width:793.333333pt;}
.w0_c02185{width:793.626667pt;}
.x0_c02185{left:0.000000pt;}
.x5_c02185{left:104.000000pt;}
.x1_c02185{left:113.440000pt;}
.x6_c02185{left:120.560000pt;}
.xa_c02185{left:127.920000pt;}
.x4_c02185{left:132.400000pt;}
.xb_c02185{left:133.600000pt;}
.x9_c02185{left:153.760000pt;}
.x7_c02185{left:157.200000pt;}
.xc_c02185{left:196.160000pt;}
.x8_c02185{left:281.760000pt;}
.x3_c02185{left:331.680000pt;}
.x2_c02185{left:384.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_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_c7d0e2ec34d4fde13078b5d9.woff2')format("woff");}.ff1_c02186{font-family:ff1_c02186;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02186;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02186{font-family:ff3_c02186;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_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;}
.ls16_c02186{letter-spacing:-0.021600px;}
.ls15_c02186{letter-spacing:-0.014400px;}
.ls14_c02186{letter-spacing:-0.007200px;}
.ls19_c02186{letter-spacing:-0.006588px;}
.ls18_c02186{letter-spacing:-0.006012px;}
.ls12_c02186{letter-spacing:0.000000px;}
.ls13_c02186{letter-spacing:0.007200px;}
.ls1a_c02186{letter-spacing:0.014400px;}
.lsf_c02186{letter-spacing:0.019764px;}
.ls17_c02186{letter-spacing:0.021600px;}
.ls11_c02186{letter-spacing:0.028800px;}
.ls0_c02186{letter-spacing:0.036000px;}
.lse_c02186{letter-spacing:0.039528px;}
.ls1_c02186{letter-spacing:0.050400px;}
.ls8_c02186{letter-spacing:0.059292px;}
.lsd_c02186{letter-spacing:0.072468px;}
.ls6_c02186{letter-spacing:0.079056px;}
.lsb_c02186{letter-spacing:0.085644px;}
.ls3_c02186{letter-spacing:0.105408px;}
.ls9_c02186{letter-spacing:0.138348px;}
.ls2_c02186{letter-spacing:0.144288px;}
.ls4_c02186{letter-spacing:0.151524px;}
.lsc_c02186{letter-spacing:0.158112px;}
.ls7_c02186{letter-spacing:0.177876px;}
.lsa_c02186{letter-spacing:117.450000px;}
.ls5_c02186{letter-spacing:150.300000px;}
.ls10_c02186{letter-spacing:394.650000px;}
.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;}
}
.wsa_c02186{word-spacing:-16.647876px;}
.ws20_c02186{word-spacing:-0.180000px;}
.ws15_c02186{word-spacing:-0.108000px;}
.ws16_c02186{word-spacing:-0.093600px;}
.ws19_c02186{word-spacing:-0.054108px;}
.ws13_c02186{word-spacing:-0.050400px;}
.ws17_c02186{word-spacing:-0.021600px;}
.ws1f_c02186{word-spacing:-0.014400px;}
.ws1a_c02186{word-spacing:-0.013176px;}
.ws14_c02186{word-spacing:-0.007200px;}
.ws12_c02186{word-spacing:0.000000px;}
.ws1b_c02186{word-spacing:0.013176px;}
.ws18_c02186{word-spacing:0.014400px;}
.ws1c_c02186{word-spacing:0.032940px;}
.ws1d_c02186{word-spacing:0.052704px;}
.ws1e_c02186{word-spacing:0.098820px;}
.wsd_c02186{word-spacing:65.089440px;}
.wsc_c02186{word-spacing:67.238496px;}
.ws9_c02186{word-spacing:67.642380px;}
.ws1_c02186{word-spacing:99.996372px;}
.ws5_c02186{word-spacing:99.998496px;}
.ws2_c02186{word-spacing:100.402380px;}
.wsf_c02186{word-spacing:100.426608px;}
.wse_c02186{word-spacing:100.933020px;}
.ws4_c02186{word-spacing:116.962380px;}
.ws7_c02186{word-spacing:133.546608px;}
.ws10_c02186{word-spacing:134.053020px;}
.ws0_c02186{word-spacing:150.082380px;}
.ws8_c02186{word-spacing:150.106608px;}
.ws3_c02186{word-spacing:182.842380px;}
.ws6_c02186{word-spacing:182.866608px;}
.ws11_c02186{word-spacing:215.595972px;}
.wsb_c02186{word-spacing:215.986608px;}
._0_c02186{margin-left:-1.148292px;}
._17_c02186{width:65.089440px;}
._f_c02186{width:67.644504px;}
._15_c02186{width:83.886372px;}
._2f_c02186{width:87.409440px;}
._2a_c02186{width:89.964504px;}
._6_c02186{width:99.996372px;}
._9_c02186{width:101.168388px;}
._3_c02186{width:104.490000px;}
._4_c02186{width:115.923132px;}
._27_c02186{width:122.316372px;}
._23_c02186{width:126.810000px;}
._10_c02186{width:133.120620px;}
._7_c02186{width:134.312616px;}
._d_c02186{width:150.300000px;}
._25_c02186{width:155.794248px;}
._5_c02186{width:159.987312px;}
._2_c02186{width:169.288704px;}
._22_c02186{width:176.128704px;}
._30_c02186{width:179.234424px;}
._12_c02186{width:182.990952px;}
._24_c02186{width:184.107312px;}
._18_c02186{width:187.874424px;}
._1e_c02186{width:192.747312px;}
._31_c02186{width:197.599536px;}
._19_c02186{width:206.239536px;}
._20_c02186{width:211.061952px;}
._21_c02186{width:212.359284px;}
._1_c02186{width:216.679284px;}
._14_c02186{width:231.656364px;}
._1b_c02186{width:232.740000px;}
._2c_c02186{width:238.306608px;}
._32_c02186{width:240.469704px;}
._b_c02186{width:244.181952px;}
._29_c02186{width:245.204424px;}
._1c_c02186{width:249.109704px;}
._e_c02186{width:253.844424px;}
._2e_c02186{width:261.610776px;}
._16_c02186{width:270.250776px;}
._2b_c02186{width:274.461732px;}
._11_c02186{width:283.101732px;}
._26_c02186{width:292.831200px;}
._8_c02186{width:301.471200px;}
._28_c02186{width:303.951744px;}
._2d_c02186{width:307.461024px;}
._1f_c02186{width:312.591744px;}
._13_c02186{width:316.101024px;}
._a_c02186{width:345.351744px;}
._c_c02186{width:415.660716px;}
._1d_c02186{width:642.754872px;}
._1a_c02186{width:665.284248px;}
.fc0_c02186{color:rgb(0,0,0);}
.fs3_c02186{font-size:29.880000px;}
.fs4_c02186{font-size:54.000000px;}
.fs1_c02186{font-size:60.120000px;}
.fs2_c02186{font-size:65.880000px;}
.fs0_c02186{font-size:72.000000px;}
.y0_c02186{bottom:0.000000px;}
.y3_c02186{bottom:57.360450px;}
.y2_c02186{bottom:78.060450px;}
.y3c_c02186{bottom:128.820900px;}
.y3b_c02186{bottom:144.390450px;}
.y3a_c02186{bottom:160.950600px;}
.y39_c02186{bottom:179.940450px;}
.y38_c02186{bottom:198.840450px;}
.y37_c02186{bottom:217.830450px;}
.y36_c02186{bottom:237.180450px;}
.y35_c02186{bottom:256.170450px;}
.y34_c02186{bottom:275.160450px;}
.y33_c02186{bottom:294.150450px;}
.y32_c02186{bottom:313.050450px;}
.y31_c02186{bottom:332.040450px;}
.y30_c02186{bottom:351.030450px;}
.y2f_c02186{bottom:369.660450px;}
.y2e_c02186{bottom:387.570450px;}
.y2c_c02186{bottom:408.270600px;}
.y2d_c02186{bottom:428.970450px;}
.y2b_c02186{bottom:449.580996px;}
.y2a_c02186{bottom:458.220798px;}
.y29_c02186{bottom:466.860600px;}
.y28_c02186{bottom:477.840600px;}
.y27_c02186{bottom:496.830450px;}
.y26_c02186{bottom:515.820450px;}
.y25_c02186{bottom:534.810450px;}
.y24_c02186{bottom:554.160450px;}
.y23_c02186{bottom:573.060450px;}
.y22_c02186{bottom:592.050450px;}
.y21_c02186{bottom:611.040450px;}
.y20_c02186{bottom:630.030450px;}
.y1f_c02186{bottom:649.020450px;}
.y1e_c02186{bottom:667.920450px;}
.y1d_c02186{bottom:686.550450px;}
.y1c_c02186{bottom:704.460450px;}
.y1a_c02186{bottom:725.160450px;}
.y1b_c02186{bottom:745.860450px;}
.y19_c02186{bottom:766.560684px;}
.y18_c02186{bottom:775.200486px;}
.y17_c02186{bottom:783.840288px;}
.y16_c02186{bottom:792.390450px;}
.y15_c02186{bottom:803.370450px;}
.y14_c02186{bottom:822.360600px;}
.y13_c02186{bottom:841.350450px;}
.y12_c02186{bottom:860.340450px;}
.y11_c02186{bottom:879.690450px;}
.y10_c02186{bottom:898.680450px;}
.yf_c02186{bottom:917.580450px;}
.ye_c02186{bottom:936.570450px;}
.yd_c02186{bottom:955.560450px;}
.yc_c02186{bottom:974.550450px;}
.yb_c02186{bottom:993.540600px;}
.ya_c02186{bottom:1012.080450px;}
.y9_c02186{bottom:1029.990450px;}
.y7_c02186{bottom:1050.690450px;}
.y8_c02186{bottom:1071.390450px;}
.y6_c02186{bottom:1092.090450px;}
.y5_c02186{bottom:1119.180450px;}
.y4_c02186{bottom:1139.970450px;}
.y1_c02186{bottom:1193.160450px;}
.h6_c02186{height:26.538926px;}
.h7_c02186{height:47.961914px;}
.h4_c02186{height:53.397598px;}
.h5_c02186{height:58.513535px;}
.h2_c02186{height:63.175781px;}
.h1_c02186{height:63.949219px;}
.h3_c02186{height:75.093750px;}
.h0_c02186{height:1263.000000px;}
.w1_c02186{width:892.500000px;}
.w0_c02186{width:892.830000px;}
.x0_c02186{left:0.000000px;}
.x1_c02186{left:127.620000px;}
.x3_c02186{left:135.630000px;}
.xd_c02186{left:160.920000px;}
.x5_c02186{left:244.350000px;}
.x13_c02186{left:246.600000px;}
.x6_c02186{left:252.990000px;}
.x14_c02186{left:261.630000px;}
.xe_c02186{left:271.350000px;}
.x4_c02186{left:288.090000px;}
.x12_c02186{left:292.590000px;}
.x8_c02186{left:419.400000px;}
.x9_c02186{left:427.590000px;}
.x2_c02186{left:433.080000px;}
.xf_c02186{left:447.930000px;}
.x10_c02186{left:458.910000px;}
.x7_c02186{left:462.690000px;}
.xb_c02186{left:591.300000px;}
.x11_c02186{left:622.800000px;}
.xa_c02186{left:637.290000px;}
.xc_c02186{left:656.820000px;}
@media print{
.v0_c02186{vertical-align:0.000000pt;}
.ls16_c02186{letter-spacing:-0.019200pt;}
.ls15_c02186{letter-spacing:-0.012800pt;}
.ls14_c02186{letter-spacing:-0.006400pt;}
.ls19_c02186{letter-spacing:-0.005856pt;}
.ls18_c02186{letter-spacing:-0.005344pt;}
.ls12_c02186{letter-spacing:0.000000pt;}
.ls13_c02186{letter-spacing:0.006400pt;}
.ls1a_c02186{letter-spacing:0.012800pt;}
.lsf_c02186{letter-spacing:0.017568pt;}
.ls17_c02186{letter-spacing:0.019200pt;}
.ls11_c02186{letter-spacing:0.025600pt;}
.ls0_c02186{letter-spacing:0.032000pt;}
.lse_c02186{letter-spacing:0.035136pt;}
.ls1_c02186{letter-spacing:0.044800pt;}
.ls8_c02186{letter-spacing:0.052704pt;}
.lsd_c02186{letter-spacing:0.064416pt;}
.ls6_c02186{letter-spacing:0.070272pt;}
.lsb_c02186{letter-spacing:0.076128pt;}
.ls3_c02186{letter-spacing:0.093696pt;}
.ls9_c02186{letter-spacing:0.122976pt;}
.ls2_c02186{letter-spacing:0.128256pt;}
.ls4_c02186{letter-spacing:0.134688pt;}
.lsc_c02186{letter-spacing:0.140544pt;}
.ls7_c02186{letter-spacing:0.158112pt;}
.lsa_c02186{letter-spacing:104.400000pt;}
.ls5_c02186{letter-spacing:133.600000pt;}
.ls10_c02186{letter-spacing:350.800000pt;}
.wsa_c02186{word-spacing:-14.798112pt;}
.ws20_c02186{word-spacing:-0.160000pt;}
.ws15_c02186{word-spacing:-0.096000pt;}
.ws16_c02186{word-spacing:-0.083200pt;}
.ws19_c02186{word-spacing:-0.048096pt;}
.ws13_c02186{word-spacing:-0.044800pt;}
.ws17_c02186{word-spacing:-0.019200pt;}
.ws1f_c02186{word-spacing:-0.012800pt;}
.ws1a_c02186{word-spacing:-0.011712pt;}
.ws14_c02186{word-spacing:-0.006400pt;}
.ws12_c02186{word-spacing:0.000000pt;}
.ws1b_c02186{word-spacing:0.011712pt;}
.ws18_c02186{word-spacing:0.012800pt;}
.ws1c_c02186{word-spacing:0.029280pt;}
.ws1d_c02186{word-spacing:0.046848pt;}
.ws1e_c02186{word-spacing:0.087840pt;}
.wsd_c02186{word-spacing:57.857280pt;}
.wsc_c02186{word-spacing:59.767552pt;}
.ws9_c02186{word-spacing:60.126560pt;}
.ws1_c02186{word-spacing:88.885664pt;}
.ws5_c02186{word-spacing:88.887552pt;}
.ws2_c02186{word-spacing:89.246560pt;}
.wsf_c02186{word-spacing:89.268096pt;}
.wse_c02186{word-spacing:89.718240pt;}
.ws4_c02186{word-spacing:103.966560pt;}
.ws7_c02186{word-spacing:118.708096pt;}
.ws10_c02186{word-spacing:119.158240pt;}
.ws0_c02186{word-spacing:133.406560pt;}
.ws8_c02186{word-spacing:133.428096pt;}
.ws3_c02186{word-spacing:162.526560pt;}
.ws6_c02186{word-spacing:162.548096pt;}
.ws11_c02186{word-spacing:191.640864pt;}
.wsb_c02186{word-spacing:191.988096pt;}
._0_c02186{margin-left:-1.020704pt;}
._17_c02186{width:57.857280pt;}
._f_c02186{width:60.128448pt;}
._15_c02186{width:74.565664pt;}
._2f_c02186{width:77.697280pt;}
._2a_c02186{width:79.968448pt;}
._6_c02186{width:88.885664pt;}
._9_c02186{width:89.927456pt;}
._3_c02186{width:92.880000pt;}
._4_c02186{width:103.042784pt;}
._27_c02186{width:108.725664pt;}
._23_c02186{width:112.720000pt;}
._10_c02186{width:118.329440pt;}
._7_c02186{width:119.388992pt;}
._d_c02186{width:133.600000pt;}
._25_c02186{width:138.483776pt;}
._5_c02186{width:142.210944pt;}
._2_c02186{width:150.478848pt;}
._22_c02186{width:156.558848pt;}
._30_c02186{width:159.319488pt;}
._12_c02186{width:162.658624pt;}
._24_c02186{width:163.650944pt;}
._18_c02186{width:166.999488pt;}
._1e_c02186{width:171.330944pt;}
._31_c02186{width:175.644032pt;}
._19_c02186{width:183.324032pt;}
._20_c02186{width:187.610624pt;}
._21_c02186{width:188.763808pt;}
._1_c02186{width:192.603808pt;}
._14_c02186{width:205.916768pt;}
._1b_c02186{width:206.880000pt;}
._2c_c02186{width:211.828096pt;}
._32_c02186{width:213.750848pt;}
._b_c02186{width:217.050624pt;}
._29_c02186{width:217.959488pt;}
._1c_c02186{width:221.430848pt;}
._e_c02186{width:225.639488pt;}
._2e_c02186{width:232.542912pt;}
._16_c02186{width:240.222912pt;}
._2b_c02186{width:243.965984pt;}
._11_c02186{width:251.645984pt;}
._26_c02186{width:260.294400pt;}
._8_c02186{width:267.974400pt;}
._28_c02186{width:270.179328pt;}
._2d_c02186{width:273.298688pt;}
._1f_c02186{width:277.859328pt;}
._13_c02186{width:280.978688pt;}
._a_c02186{width:306.979328pt;}
._c_c02186{width:369.476192pt;}
._1d_c02186{width:571.337664pt;}
._1a_c02186{width:591.363776pt;}
.fs3_c02186{font-size:26.560000pt;}
.fs4_c02186{font-size:48.000000pt;}
.fs1_c02186{font-size:53.440000pt;}
.fs2_c02186{font-size:58.560000pt;}
.fs0_c02186{font-size:64.000000pt;}
.y0_c02186{bottom:0.000000pt;}
.y3_c02186{bottom:50.987067pt;}
.y2_c02186{bottom:69.387067pt;}
.y3c_c02186{bottom:114.507467pt;}
.y3b_c02186{bottom:128.347067pt;}
.y3a_c02186{bottom:143.067200pt;}
.y39_c02186{bottom:159.947067pt;}
.y38_c02186{bottom:176.747067pt;}
.y37_c02186{bottom:193.627067pt;}
.y36_c02186{bottom:210.827067pt;}
.y35_c02186{bottom:227.707067pt;}
.y34_c02186{bottom:244.587067pt;}
.y33_c02186{bottom:261.467067pt;}
.y32_c02186{bottom:278.267067pt;}
.y31_c02186{bottom:295.147067pt;}
.y30_c02186{bottom:312.027067pt;}
.y2f_c02186{bottom:328.587067pt;}
.y2e_c02186{bottom:344.507067pt;}
.y2c_c02186{bottom:362.907200pt;}
.y2d_c02186{bottom:381.307067pt;}
.y2b_c02186{bottom:399.627552pt;}
.y2a_c02186{bottom:407.307376pt;}
.y29_c02186{bottom:414.987200pt;}
.y28_c02186{bottom:424.747200pt;}
.y27_c02186{bottom:441.627067pt;}
.y26_c02186{bottom:458.507067pt;}
.y25_c02186{bottom:475.387067pt;}
.y24_c02186{bottom:492.587067pt;}
.y23_c02186{bottom:509.387067pt;}
.y22_c02186{bottom:526.267067pt;}
.y21_c02186{bottom:543.147067pt;}
.y20_c02186{bottom:560.027067pt;}
.y1f_c02186{bottom:576.907067pt;}
.y1e_c02186{bottom:593.707067pt;}
.y1d_c02186{bottom:610.267067pt;}
.y1c_c02186{bottom:626.187067pt;}
.y1a_c02186{bottom:644.587067pt;}
.y1b_c02186{bottom:662.987067pt;}
.y19_c02186{bottom:681.387275pt;}
.y18_c02186{bottom:689.067099pt;}
.y17_c02186{bottom:696.746923pt;}
.y16_c02186{bottom:704.347067pt;}
.y15_c02186{bottom:714.107067pt;}
.y14_c02186{bottom:730.987200pt;}
.y13_c02186{bottom:747.867067pt;}
.y12_c02186{bottom:764.747067pt;}
.y11_c02186{bottom:781.947067pt;}
.y10_c02186{bottom:798.827067pt;}
.yf_c02186{bottom:815.627067pt;}
.ye_c02186{bottom:832.507067pt;}
.yd_c02186{bottom:849.387067pt;}
.yc_c02186{bottom:866.267067pt;}
.yb_c02186{bottom:883.147200pt;}
.ya_c02186{bottom:899.627067pt;}
.y9_c02186{bottom:915.547067pt;}
.y7_c02186{bottom:933.947067pt;}
.y8_c02186{bottom:952.347067pt;}
.y6_c02186{bottom:970.747067pt;}
.y5_c02186{bottom:994.827067pt;}
.y4_c02186{bottom:1013.307067pt;}
.y1_c02186{bottom:1060.587067pt;}
.h6_c02186{height:23.590156pt;}
.h7_c02186{height:42.632812pt;}
.h4_c02186{height:47.464531pt;}
.h5_c02186{height:52.012031pt;}
.h2_c02186{height:56.156250pt;}
.h1_c02186{height:56.843750pt;}
.h3_c02186{height:66.750000pt;}
.h0_c02186{height:1122.666667pt;}
.w1_c02186{width:793.333333pt;}
.w0_c02186{width:793.626667pt;}
.x0_c02186{left:0.000000pt;}
.x1_c02186{left:113.440000pt;}
.x3_c02186{left:120.560000pt;}
.xd_c02186{left:143.040000pt;}
.x5_c02186{left:217.200000pt;}
.x13_c02186{left:219.200000pt;}
.x6_c02186{left:224.880000pt;}
.x14_c02186{left:232.560000pt;}
.xe_c02186{left:241.200000pt;}
.x4_c02186{left:256.080000pt;}
.x12_c02186{left:260.080000pt;}
.x8_c02186{left:372.800000pt;}
.x9_c02186{left:380.080000pt;}
.x2_c02186{left:384.960000pt;}
.xf_c02186{left:398.160000pt;}
.x10_c02186{left:407.920000pt;}
.x7_c02186{left:411.280000pt;}
.xb_c02186{left:525.600000pt;}
.x11_c02186{left:553.600000pt;}
.xa_c02186{left:566.480000pt;}
.xc_c02186{left:583.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_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_418011540cb184e9ec2692b1.woff2')format("woff");}.ff1_c02187{font-family:ff1_c02187;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02187;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v5_c02187{vertical-align:-18.000000px;}
.v6_c02187{vertical-align:-16.560000px;}
.va_c02187{vertical-align:-13.680000px;}
.v8_c02187{vertical-align:-12.599400px;}
.v9_c02187{vertical-align:-11.160000px;}
.vc_c02187{vertical-align:-4.320000px;}
.v2_c02187{vertical-align:-2.520000px;}
.v4_c02187{vertical-align:-1.440000px;}
.v0_c02187{vertical-align:0.000000px;}
.v7_c02187{vertical-align:1.080000px;}
.vb_c02187{vertical-align:2.160000px;}
.v1_c02187{vertical-align:5.400000px;}
.v3_c02187{vertical-align:16.560000px;}
.ls2e_c02187{letter-spacing:-0.086184px;}
.ls2a_c02187{letter-spacing:-0.043200px;}
.ls2c_c02187{letter-spacing:-0.019152px;}
.ls2b_c02187{letter-spacing:-0.010800px;}
.ls31_c02187{letter-spacing:-0.009576px;}
.ls2f_c02187{letter-spacing:-0.004788px;}
.ls28_c02187{letter-spacing:0.000000px;}
.ls1e_c02187{letter-spacing:0.006588px;}
.ls1_c02187{letter-spacing:0.007200px;}
.ls3_c02187{letter-spacing:0.010800px;}
.ls6_c02187{letter-spacing:0.012636px;}
.lse_c02187{letter-spacing:0.019152px;}
.ls5_c02187{letter-spacing:0.028728px;}
.ls0_c02187{letter-spacing:0.028800px;}
.ls7_c02187{letter-spacing:0.032400px;}
.lsb_c02187{letter-spacing:0.037800px;}
.ls4_c02187{letter-spacing:0.043092px;}
.lsa_c02187{letter-spacing:0.043200px;}
.ls17_c02187{letter-spacing:0.052668px;}
.ls20_c02187{letter-spacing:0.057456px;}
.ls1d_c02187{letter-spacing:0.065880px;}
.ls26_c02187{letter-spacing:0.067032px;}
.ls2_c02187{letter-spacing:0.072468px;}
.ls10_c02187{letter-spacing:0.076608px;}
.ls1f_c02187{letter-spacing:0.079056px;}
.ls16_c02187{letter-spacing:0.081396px;}
.lsf_c02187{letter-spacing:0.085644px;}
.ls25_c02187{letter-spacing:0.086184px;}
.ls34_c02187{letter-spacing:0.092232px;}
.ls22_c02187{letter-spacing:0.105408px;}
.ls18_c02187{letter-spacing:0.114912px;}
.ls27_c02187{letter-spacing:0.119700px;}
.ls9_c02187{letter-spacing:0.124488px;}
.ls24_c02187{letter-spacing:0.125172px;}
.lsd_c02187{letter-spacing:0.134064px;}
.ls19_c02187{letter-spacing:0.138852px;}
.ls21_c02187{letter-spacing:0.144936px;}
.ls29_c02187{letter-spacing:0.151200px;}
.ls8_c02187{letter-spacing:0.158112px;}
.ls15_c02187{letter-spacing:0.162792px;}
.ls2d_c02187{letter-spacing:0.167580px;}
.ls32_c02187{letter-spacing:0.177876px;}
.ls1b_c02187{letter-spacing:0.180000px;}
.ls11_c02187{letter-spacing:0.181944px;}
.ls33_c02187{letter-spacing:143.818200px;}
.ls12_c02187{letter-spacing:154.887156px;}
.ls30_c02187{letter-spacing:156.421800px;}
.ls14_c02187{letter-spacing:156.778200px;}
.ls1c_c02187{letter-spacing:157.950000px;}
.ls23_c02187{letter-spacing:191.970000px;}
.ls13_c02187{letter-spacing:197.732844px;}
.lsc_c02187{letter-spacing:200.790000px;}
.ls1a_c02187{letter-spacing:408.780000px;}
.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;}
}
.ws1_c02187{word-spacing:-16.647876px;}
.ws2_c02187{word-spacing:-16.476588px;}
.wsf_c02187{word-spacing:-0.272916px;}
.ws13_c02187{word-spacing:-0.253764px;}
.ws16_c02187{word-spacing:-0.229824px;}
.wsc_c02187{word-spacing:-0.225036px;}
.wsb_c02187{word-spacing:-0.215460px;}
.ws21_c02187{word-spacing:-0.210672px;}
.ws15_c02187{word-spacing:-0.205884px;}
.wse_c02187{word-spacing:-0.172368px;}
.ws18_c02187{word-spacing:-0.148428px;}
.ws11_c02187{word-spacing:-0.119700px;}
.ws7_c02187{word-spacing:-0.115200px;}
.ws10_c02187{word-spacing:-0.110124px;}
.wsa_c02187{word-spacing:-0.101088px;}
.ws14_c02187{word-spacing:-0.081396px;}
.ws19_c02187{word-spacing:-0.052704px;}
.ws6_c02187{word-spacing:-0.050400px;}
.ws1b_c02187{word-spacing:-0.013176px;}
.ws8_c02187{word-spacing:-0.007200px;}
.ws5_c02187{word-spacing:0.000000px;}
.ws12_c02187{word-spacing:0.006588px;}
.ws1a_c02187{word-spacing:0.013176px;}
.ws9_c02187{word-spacing:0.019764px;}
.ws17_c02187{word-spacing:0.026352px;}
.ws1e_c02187{word-spacing:1.235304px;}
.ws20_c02187{word-spacing:1.273608px;}
.ws1f_c02187{word-spacing:1.307124px;}
.ws1c_c02187{word-spacing:5.941908px;}
.ws1d_c02187{word-spacing:5.961060px;}
.ws0_c02187{word-spacing:58.969440px;}
.ws4_c02187{word-spacing:158.689440px;}
.wsd_c02187{word-spacing:199.216800px;}
.ws3_c02187{word-spacing:307.009440px;}
._25_c02187{margin-left:-351.003312px;}
._14_c02187{margin-left:-42.559272px;}
._0_c02187{margin-left:-1.296000px;}
._21_c02187{width:42.487200px;}
._c_c02187{width:51.660000px;}
._10_c02187{width:61.704000px;}
._26_c02187{width:63.594000px;}
._8_c02187{width:72.604440px;}
._12_c02187{width:75.420000px;}
._9_c02187{width:77.310180px;}
._1a_c02187{width:78.450948px;}
._e_c02187{width:82.296072px;}
._16_c02187{width:83.621592px;}
._2_c02187{width:84.834000px;}
._1_c02187{width:88.221600px;}
._18_c02187{width:91.288440px;}
._1f_c02187{width:98.100000px;}
._a_c02187{width:100.015200px;}
._f_c02187{width:104.544000px;}
._22_c02187{width:106.059420px;}
._b_c02187{width:113.329440px;}
._23_c02187{width:115.918200px;}
._d_c02187{width:119.705220px;}
._24_c02187{width:121.065300px;}
._3_c02187{width:122.220000px;}
._27_c02187{width:123.289200px;}
._7_c02187{width:126.707688px;}
._4_c02187{width:127.980000px;}
._11_c02187{width:129.607020px;}
._6_c02187{width:132.631524px;}
._1b_c02187{width:134.074296px;}
._15_c02187{width:136.200168px;}
._5_c02187{width:139.258944px;}
._13_c02187{width:149.146920px;}
._20_c02187{width:152.642160px;}
._1e_c02187{width:156.420000px;}
._17_c02187{width:157.727016px;}
._28_c02187{width:161.915436px;}
._1d_c02187{width:171.066384px;}
._32_c02187{width:175.315536px;}
._2d_c02187{width:191.436372px;}
._29_c02187{width:195.482160px;}
._1c_c02187{width:199.547928px;}
._19_c02187{width:225.444168px;}
._2e_c02187{width:269.751528px;}
._2f_c02187{width:276.541632px;}
._2b_c02187{width:287.726112px;}
._30_c02187{width:307.354248px;}
._2c_c02187{width:357.266520px;}
._2a_c02187{width:385.954200px;}
._31_c02187{width:583.070220px;}
.fc0_c02187{color:rgb(0,0,0);}
.fs5_c02187{font-size:11.880000px;}
.fs4_c02187{font-size:42.120000px;}
.fs3_c02187{font-size:47.880000px;}
.fs2_c02187{font-size:54.000000px;}
.fs6_c02187{font-size:60.120000px;}
.fs1_c02187{font-size:65.880000px;}
.fs0_c02187{font-size:72.000000px;}
.y0_c02187{bottom:0.000000px;}
.y3_c02187{bottom:57.360450px;}
.y2_c02187{bottom:78.060450px;}
.y52_c02187{bottom:124.320540px;}
.y51_c02187{bottom:143.310450px;}
.y50_c02187{bottom:161.490249px;}
.y4f_c02187{bottom:175.350312px;}
.y4e_c02187{bottom:189.120600px;}
.y4d_c02187{bottom:207.480450px;}
.y4c_c02187{bottom:226.380450px;}
.y4b_c02187{bottom:245.370600px;}
.y4a_c02187{bottom:264.360450px;}
.y49_c02187{bottom:283.350450px;}
.y48_c02187{bottom:303.780450px;}
.y46_c02187{bottom:304.590450px;}
.y47_c02187{bottom:319.620450px;}
.y45_c02187{bottom:336.720450px;}
.y44_c02187{bottom:354.990000px;}
.y43_c02187{bottom:370.470450px;}
.y41_c02187{bottom:389.820450px;}
.y42_c02187{bottom:391.170450px;}
.y40_c02187{bottom:408.810450px;}
.y3e_c02187{bottom:427.800000px;}
.y3f_c02187{bottom:429.150450px;}
.y3c_c02187{bottom:446.790150px;}
.y3d_c02187{bottom:448.140450px;}
.y3a_c02187{bottom:465.780600px;}
.y3b_c02187{bottom:467.130450px;}
.y39_c02187{bottom:481.890450px;}
.y38_c02187{bottom:501.150450px;}
.y37_c02187{bottom:517.350450px;}
.y36_c02187{bottom:536.610450px;}
.y34_c02187{bottom:545.790000px;}
.y35_c02187{bottom:550.650450px;}
.y33_c02187{bottom:565.500450px;}
.y32_c02187{bottom:584.670450px;}
.y31_c02187{bottom:600.870450px;}
.y30_c02187{bottom:620.220450px;}
.y2f_c02187{bottom:629.400450px;}
.y2d_c02187{bottom:632.820900px;}
.y2e_c02187{bottom:634.170450px;}
.y2b_c02187{bottom:651.810000px;}
.y2c_c02187{bottom:653.160450px;}
.y2a_c02187{bottom:670.800450px;}
.y28_c02187{bottom:689.790000px;}
.y29_c02187{bottom:691.140450px;}
.y26_c02187{bottom:708.690900px;}
.y27_c02187{bottom:710.040450px;}
.y24_c02187{bottom:727.680900px;}
.y25_c02187{bottom:729.030450px;}
.y23_c02187{bottom:743.880450px;}
.y22_c02187{bottom:763.050450px;}
.y21_c02187{bottom:779.250450px;}
.y20_c02187{bottom:798.600450px;}
.y1e_c02187{bottom:811.200450px;}
.y1f_c02187{bottom:812.550450px;}
.y1d_c02187{bottom:830.190450px;}
.y1b_c02187{bottom:849.180900px;}
.y1c_c02187{bottom:850.530450px;}
.y19_c02187{bottom:868.170000px;}
.y1a_c02187{bottom:869.520450px;}
.y17_c02187{bottom:887.160450px;}
.y18_c02187{bottom:888.510450px;}
.y16_c02187{bottom:903.360450px;}
.y15_c02187{bottom:922.530450px;}
.y14_c02187{bottom:938.730450px;}
.y13_c02187{bottom:958.080450px;}
.y11_c02187{bottom:970.680000px;}
.y12_c02187{bottom:972.030450px;}
.yf_c02187{bottom:989.670000px;}
.y10_c02187{bottom:991.020450px;}
.yd_c02187{bottom:1008.660000px;}
.ye_c02187{bottom:1010.010450px;}
.yb_c02187{bottom:1027.560900px;}
.yc_c02187{bottom:1028.910450px;}
.y9_c02187{bottom:1046.550450px;}
.ya_c02187{bottom:1047.900450px;}
.y8_c02187{bottom:1062.750450px;}
.y7_c02187{bottom:1082.010450px;}
.y6_c02187{bottom:1098.120450px;}
.y5_c02187{bottom:1118.010450px;}
.y4_c02187{bottom:1139.250450px;}
.y1_c02187{bottom:1193.160450px;}
.h8_c02187{height:10.551621px;}
.hb_c02187{height:42.011895px;}
.h7_c02187{height:42.526230px;}
.h6_c02187{height:47.961914px;}
.h4_c02187{height:48.570293px;}
.h9_c02187{height:48.570893px;}
.h3_c02187{height:58.513535px;}
.h5_c02187{height:59.086230px;}
.ha_c02187{height:59.086830px;}
.h2_c02187{height:63.175781px;}
.h1_c02187{height:63.949219px;}
.h0_c02187{height:1263.000000px;}
.w1_c02187{width:892.500000px;}
.w0_c02187{width:892.830000px;}
.x0_c02187{left:0.000000px;}
.x1_c02187{left:127.620000px;}
.x9_c02187{left:134.550000px;}
.x3_c02187{left:135.630000px;}
.x4_c02187{left:143.910000px;}
.x5_c02187{left:150.300000px;}
.x8_c02187{left:165.060300px;}
.x6_c02187{left:220.680000px;}
.xa_c02187{left:327.330000px;}
.xb_c02187{left:355.140000px;}
.x2_c02187{left:433.080000px;}
.x7_c02187{left:749.609550px;}
@media print{
.v5_c02187{vertical-align:-16.000000pt;}
.v6_c02187{vertical-align:-14.720000pt;}
.va_c02187{vertical-align:-12.160000pt;}
.v8_c02187{vertical-align:-11.199467pt;}
.v9_c02187{vertical-align:-9.920000pt;}
.vc_c02187{vertical-align:-3.840000pt;}
.v2_c02187{vertical-align:-2.240000pt;}
.v4_c02187{vertical-align:-1.280000pt;}
.v0_c02187{vertical-align:0.000000pt;}
.v7_c02187{vertical-align:0.960000pt;}
.vb_c02187{vertical-align:1.920000pt;}
.v1_c02187{vertical-align:4.800000pt;}
.v3_c02187{vertical-align:14.720000pt;}
.ls2e_c02187{letter-spacing:-0.076608pt;}
.ls2a_c02187{letter-spacing:-0.038400pt;}
.ls2c_c02187{letter-spacing:-0.017024pt;}
.ls2b_c02187{letter-spacing:-0.009600pt;}
.ls31_c02187{letter-spacing:-0.008512pt;}
.ls2f_c02187{letter-spacing:-0.004256pt;}
.ls28_c02187{letter-spacing:0.000000pt;}
.ls1e_c02187{letter-spacing:0.005856pt;}
.ls1_c02187{letter-spacing:0.006400pt;}
.ls3_c02187{letter-spacing:0.009600pt;}
.ls6_c02187{letter-spacing:0.011232pt;}
.lse_c02187{letter-spacing:0.017024pt;}
.ls5_c02187{letter-spacing:0.025536pt;}
.ls0_c02187{letter-spacing:0.025600pt;}
.ls7_c02187{letter-spacing:0.028800pt;}
.lsb_c02187{letter-spacing:0.033600pt;}
.ls4_c02187{letter-spacing:0.038304pt;}
.lsa_c02187{letter-spacing:0.038400pt;}
.ls17_c02187{letter-spacing:0.046816pt;}
.ls20_c02187{letter-spacing:0.051072pt;}
.ls1d_c02187{letter-spacing:0.058560pt;}
.ls26_c02187{letter-spacing:0.059584pt;}
.ls2_c02187{letter-spacing:0.064416pt;}
.ls10_c02187{letter-spacing:0.068096pt;}
.ls1f_c02187{letter-spacing:0.070272pt;}
.ls16_c02187{letter-spacing:0.072352pt;}
.lsf_c02187{letter-spacing:0.076128pt;}
.ls25_c02187{letter-spacing:0.076608pt;}
.ls34_c02187{letter-spacing:0.081984pt;}
.ls22_c02187{letter-spacing:0.093696pt;}
.ls18_c02187{letter-spacing:0.102144pt;}
.ls27_c02187{letter-spacing:0.106400pt;}
.ls9_c02187{letter-spacing:0.110656pt;}
.ls24_c02187{letter-spacing:0.111264pt;}
.lsd_c02187{letter-spacing:0.119168pt;}
.ls19_c02187{letter-spacing:0.123424pt;}
.ls21_c02187{letter-spacing:0.128832pt;}
.ls29_c02187{letter-spacing:0.134400pt;}
.ls8_c02187{letter-spacing:0.140544pt;}
.ls15_c02187{letter-spacing:0.144704pt;}
.ls2d_c02187{letter-spacing:0.148960pt;}
.ls32_c02187{letter-spacing:0.158112pt;}
.ls1b_c02187{letter-spacing:0.160000pt;}
.ls11_c02187{letter-spacing:0.161728pt;}
.ls33_c02187{letter-spacing:127.838400pt;}
.ls12_c02187{letter-spacing:137.677472pt;}
.ls30_c02187{letter-spacing:139.041600pt;}
.ls14_c02187{letter-spacing:139.358400pt;}
.ls1c_c02187{letter-spacing:140.400000pt;}
.ls23_c02187{letter-spacing:170.640000pt;}
.ls13_c02187{letter-spacing:175.762528pt;}
.lsc_c02187{letter-spacing:178.480000pt;}
.ls1a_c02187{letter-spacing:363.360000pt;}
.ws1_c02187{word-spacing:-14.798112pt;}
.ws2_c02187{word-spacing:-14.645856pt;}
.wsf_c02187{word-spacing:-0.242592pt;}
.ws13_c02187{word-spacing:-0.225568pt;}
.ws16_c02187{word-spacing:-0.204288pt;}
.wsc_c02187{word-spacing:-0.200032pt;}
.wsb_c02187{word-spacing:-0.191520pt;}
.ws21_c02187{word-spacing:-0.187264pt;}
.ws15_c02187{word-spacing:-0.183008pt;}
.wse_c02187{word-spacing:-0.153216pt;}
.ws18_c02187{word-spacing:-0.131936pt;}
.ws11_c02187{word-spacing:-0.106400pt;}
.ws7_c02187{word-spacing:-0.102400pt;}
.ws10_c02187{word-spacing:-0.097888pt;}
.wsa_c02187{word-spacing:-0.089856pt;}
.ws14_c02187{word-spacing:-0.072352pt;}
.ws19_c02187{word-spacing:-0.046848pt;}
.ws6_c02187{word-spacing:-0.044800pt;}
.ws1b_c02187{word-spacing:-0.011712pt;}
.ws8_c02187{word-spacing:-0.006400pt;}
.ws5_c02187{word-spacing:0.000000pt;}
.ws12_c02187{word-spacing:0.005856pt;}
.ws1a_c02187{word-spacing:0.011712pt;}
.ws9_c02187{word-spacing:0.017568pt;}
.ws17_c02187{word-spacing:0.023424pt;}
.ws1e_c02187{word-spacing:1.098048pt;}
.ws20_c02187{word-spacing:1.132096pt;}
.ws1f_c02187{word-spacing:1.161888pt;}
.ws1c_c02187{word-spacing:5.281696pt;}
.ws1d_c02187{word-spacing:5.298720pt;}
.ws0_c02187{word-spacing:52.417280pt;}
.ws4_c02187{word-spacing:141.057280pt;}
.wsd_c02187{word-spacing:177.081600pt;}
.ws3_c02187{word-spacing:272.897280pt;}
._25_c02187{margin-left:-312.002944pt;}
._14_c02187{margin-left:-37.830464pt;}
._0_c02187{margin-left:-1.152000pt;}
._21_c02187{width:37.766400pt;}
._c_c02187{width:45.920000pt;}
._10_c02187{width:54.848000pt;}
._26_c02187{width:56.528000pt;}
._8_c02187{width:64.537280pt;}
._12_c02187{width:67.040000pt;}
._9_c02187{width:68.720160pt;}
._1a_c02187{width:69.734176pt;}
._e_c02187{width:73.152064pt;}
._16_c02187{width:74.330304pt;}
._2_c02187{width:75.408000pt;}
._1_c02187{width:78.419200pt;}
._18_c02187{width:81.145280pt;}
._1f_c02187{width:87.200000pt;}
._a_c02187{width:88.902400pt;}
._f_c02187{width:92.928000pt;}
._22_c02187{width:94.275040pt;}
._b_c02187{width:100.737280pt;}
._23_c02187{width:103.038400pt;}
._d_c02187{width:106.404640pt;}
._24_c02187{width:107.613600pt;}
._3_c02187{width:108.640000pt;}
._27_c02187{width:109.590400pt;}
._7_c02187{width:112.629056pt;}
._4_c02187{width:113.760000pt;}
._11_c02187{width:115.206240pt;}
._6_c02187{width:117.894688pt;}
._1b_c02187{width:119.177152pt;}
._15_c02187{width:121.066816pt;}
._5_c02187{width:123.785728pt;}
._13_c02187{width:132.575040pt;}
._20_c02187{width:135.681920pt;}
._1e_c02187{width:139.040000pt;}
._17_c02187{width:140.201792pt;}
._28_c02187{width:143.924832pt;}
._1d_c02187{width:152.059008pt;}
._32_c02187{width:155.836032pt;}
._2d_c02187{width:170.165664pt;}
._29_c02187{width:173.761920pt;}
._1c_c02187{width:177.375936pt;}
._19_c02187{width:200.394816pt;}
._2e_c02187{width:239.779136pt;}
._2f_c02187{width:245.814784pt;}
._2b_c02187{width:255.756544pt;}
._30_c02187{width:273.203776pt;}
._2c_c02187{width:317.570240pt;}
._2a_c02187{width:343.070400pt;}
._31_c02187{width:518.284640pt;}
.fs5_c02187{font-size:10.560000pt;}
.fs4_c02187{font-size:37.440000pt;}
.fs3_c02187{font-size:42.560000pt;}
.fs2_c02187{font-size:48.000000pt;}
.fs6_c02187{font-size:53.440000pt;}
.fs1_c02187{font-size:58.560000pt;}
.fs0_c02187{font-size:64.000000pt;}
.y0_c02187{bottom:0.000000pt;}
.y3_c02187{bottom:50.987067pt;}
.y2_c02187{bottom:69.387067pt;}
.y52_c02187{bottom:110.507147pt;}
.y51_c02187{bottom:127.387067pt;}
.y50_c02187{bottom:143.546888pt;}
.y4f_c02187{bottom:155.866944pt;}
.y4e_c02187{bottom:168.107200pt;}
.y4d_c02187{bottom:184.427067pt;}
.y4c_c02187{bottom:201.227067pt;}
.y4b_c02187{bottom:218.107200pt;}
.y4a_c02187{bottom:234.987067pt;}
.y49_c02187{bottom:251.867067pt;}
.y48_c02187{bottom:270.027067pt;}
.y46_c02187{bottom:270.747067pt;}
.y47_c02187{bottom:284.107067pt;}
.y45_c02187{bottom:299.307067pt;}
.y44_c02187{bottom:315.546667pt;}
.y43_c02187{bottom:329.307067pt;}
.y41_c02187{bottom:346.507067pt;}
.y42_c02187{bottom:347.707067pt;}
.y40_c02187{bottom:363.387067pt;}
.y3e_c02187{bottom:380.266667pt;}
.y3f_c02187{bottom:381.467067pt;}
.y3c_c02187{bottom:397.146800pt;}
.y3d_c02187{bottom:398.347067pt;}
.y3a_c02187{bottom:414.027200pt;}
.y3b_c02187{bottom:415.227067pt;}
.y39_c02187{bottom:428.347067pt;}
.y38_c02187{bottom:445.467067pt;}
.y37_c02187{bottom:459.867067pt;}
.y36_c02187{bottom:476.987067pt;}
.y34_c02187{bottom:485.146667pt;}
.y35_c02187{bottom:489.467067pt;}
.y33_c02187{bottom:502.667067pt;}
.y32_c02187{bottom:519.707067pt;}
.y31_c02187{bottom:534.107067pt;}
.y30_c02187{bottom:551.307067pt;}
.y2f_c02187{bottom:559.467067pt;}
.y2d_c02187{bottom:562.507467pt;}
.y2e_c02187{bottom:563.707067pt;}
.y2b_c02187{bottom:579.386667pt;}
.y2c_c02187{bottom:580.587067pt;}
.y2a_c02187{bottom:596.267067pt;}
.y28_c02187{bottom:613.146667pt;}
.y29_c02187{bottom:614.347067pt;}
.y26_c02187{bottom:629.947467pt;}
.y27_c02187{bottom:631.147067pt;}
.y24_c02187{bottom:646.827467pt;}
.y25_c02187{bottom:648.027067pt;}
.y23_c02187{bottom:661.227067pt;}
.y22_c02187{bottom:678.267067pt;}
.y21_c02187{bottom:692.667067pt;}
.y20_c02187{bottom:709.867067pt;}
.y1e_c02187{bottom:721.067067pt;}
.y1f_c02187{bottom:722.267067pt;}
.y1d_c02187{bottom:737.947067pt;}
.y1b_c02187{bottom:754.827467pt;}
.y1c_c02187{bottom:756.027067pt;}
.y19_c02187{bottom:771.706667pt;}
.y1a_c02187{bottom:772.907067pt;}
.y17_c02187{bottom:788.587067pt;}
.y18_c02187{bottom:789.787067pt;}
.y16_c02187{bottom:802.987067pt;}
.y15_c02187{bottom:820.027067pt;}
.y14_c02187{bottom:834.427067pt;}
.y13_c02187{bottom:851.627067pt;}
.y11_c02187{bottom:862.826667pt;}
.y12_c02187{bottom:864.027067pt;}
.yf_c02187{bottom:879.706667pt;}
.y10_c02187{bottom:880.907067pt;}
.yd_c02187{bottom:896.586667pt;}
.ye_c02187{bottom:897.787067pt;}
.yb_c02187{bottom:913.387467pt;}
.yc_c02187{bottom:914.587067pt;}
.y9_c02187{bottom:930.267067pt;}
.ya_c02187{bottom:931.467067pt;}
.y8_c02187{bottom:944.667067pt;}
.y7_c02187{bottom:961.787067pt;}
.y6_c02187{bottom:976.107067pt;}
.y5_c02187{bottom:993.787067pt;}
.y4_c02187{bottom:1012.667067pt;}
.y1_c02187{bottom:1060.587067pt;}
.h8_c02187{height:9.379219pt;}
.hb_c02187{height:37.343906pt;}
.h7_c02187{height:37.801094pt;}
.h6_c02187{height:42.632812pt;}
.h4_c02187{height:43.173594pt;}
.h9_c02187{height:43.174127pt;}
.h3_c02187{height:52.012031pt;}
.h5_c02187{height:52.521094pt;}
.ha_c02187{height:52.521627pt;}
.h2_c02187{height:56.156250pt;}
.h1_c02187{height:56.843750pt;}
.h0_c02187{height:1122.666667pt;}
.w1_c02187{width:793.333333pt;}
.w0_c02187{width:793.626667pt;}
.x0_c02187{left:0.000000pt;}
.x1_c02187{left:113.440000pt;}
.x9_c02187{left:119.600000pt;}
.x3_c02187{left:120.560000pt;}
.x4_c02187{left:127.920000pt;}
.x5_c02187{left:133.600000pt;}
.x8_c02187{left:146.720267pt;}
.x6_c02187{left:196.160000pt;}
.xa_c02187{left:290.960000pt;}
.xb_c02187{left:315.680000pt;}
.x2_c02187{left:384.960000pt;}
.x7_c02187{left:666.319600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0571d7ca3ee04931a56e935.woff2')format("woff");}.ff1_c02188{font-family:ff1_c02188;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02188;src:url('chunks/assets/font_619ae4e9a22a71a0f5157ac5.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;}
.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);}
.v5_c02188{vertical-align:-22.320000px;}
.v4_c02188{vertical-align:-16.920000px;}
.v2_c02188{vertical-align:-10.800000px;}
.v6_c02188{vertical-align:-5.400000px;}
.v1_c02188{vertical-align:-4.320000px;}
.v3_c02188{vertical-align:-2.520000px;}
.v0_c02188{vertical-align:0.000000px;}
.ls26_c02188{letter-spacing:-0.181116px;}
.ls25_c02188{letter-spacing:-0.180360px;}
.ls24_c02188{letter-spacing:-0.176904px;}
.ls22_c02188{letter-spacing:-0.086400px;}
.ls21_c02188{letter-spacing:-0.032940px;}
.ls1d_c02188{letter-spacing:-0.019152px;}
.ls1f_c02188{letter-spacing:-0.014400px;}
.ls20_c02188{letter-spacing:-0.013176px;}
.ls23_c02188{letter-spacing:-0.007200px;}
.ls1b_c02188{letter-spacing:0.000000px;}
.ls7_c02188{letter-spacing:0.005400px;}
.ls1_c02188{letter-spacing:0.006588px;}
.ls1c_c02188{letter-spacing:0.007200px;}
.lsb_c02188{letter-spacing:0.010800px;}
.ls2_c02188{letter-spacing:0.013176px;}
.ls15_c02188{letter-spacing:0.014400px;}
.ls12_c02188{letter-spacing:0.019764px;}
.lse_c02188{letter-spacing:0.021600px;}
.ls1a_c02188{letter-spacing:0.026352px;}
.ls13_c02188{letter-spacing:0.028800px;}
.ls8_c02188{letter-spacing:0.032400px;}
.ls17_c02188{letter-spacing:0.032940px;}
.ls5_c02188{letter-spacing:0.037800px;}
.ls10_c02188{letter-spacing:0.039528px;}
.lsc_c02188{letter-spacing:0.043200px;}
.ls14_c02188{letter-spacing:0.050400px;}
.ls0_c02188{letter-spacing:0.052704px;}
.ls3_c02188{letter-spacing:0.057456px;}
.ls16_c02188{letter-spacing:0.059292px;}
.ls19_c02188{letter-spacing:0.065880px;}
.lsf_c02188{letter-spacing:0.072468px;}
.lsd_c02188{letter-spacing:0.091800px;}
.ls11_c02188{letter-spacing:0.098820px;}
.lsa_c02188{letter-spacing:0.125172px;}
.ls18_c02188{letter-spacing:0.131760px;}
.ls6_c02188{letter-spacing:0.158112px;}
.ls1e_c02188{letter-spacing:0.177876px;}
.ls4_c02188{letter-spacing:0.181944px;}
.ls9_c02188{letter-spacing:191.970000px;}
.sc__c02188{text-shadow:none;}
.sc0_c02188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02188{-webkit-text-stroke:0px transparent;}
.sc0_c02188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02188{word-spacing:-16.476588px;}
.ws8_c02188{word-spacing:-0.148428px;}
.ws19_c02188{word-spacing:-0.086400px;}
.ws17_c02188{word-spacing:-0.072000px;}
.ws6_c02188{word-spacing:-0.050400px;}
.ws18_c02188{word-spacing:-0.028800px;}
.ws13_c02188{word-spacing:-0.021600px;}
.ws14_c02188{word-spacing:-0.014400px;}
.ws5_c02188{word-spacing:0.000000px;}
.ws1a_c02188{word-spacing:0.007200px;}
.ws12_c02188{word-spacing:0.014400px;}
.ws15_c02188{word-spacing:0.019764px;}
.ws24_c02188{word-spacing:0.026352px;}
.ws28_c02188{word-spacing:0.032940px;}
.ws7_c02188{word-spacing:0.039528px;}
.ws2a_c02188{word-spacing:0.052704px;}
.ws1d_c02188{word-spacing:0.059292px;}
.ws21_c02188{word-spacing:0.079056px;}
.wsf_c02188{word-spacing:0.086400px;}
.wse_c02188{word-spacing:0.135000px;}
.ws9_c02188{word-spacing:0.140400px;}
.wsb_c02188{word-spacing:0.145800px;}
.ws11_c02188{word-spacing:0.167400px;}
.wsa_c02188{word-spacing:0.172800px;}
.ws10_c02188{word-spacing:0.178200px;}
.ws26_c02188{word-spacing:0.783972px;}
.ws30_c02188{word-spacing:3.656340px;}
.ws20_c02188{word-spacing:4.756536px;}
.ws2b_c02188{word-spacing:5.059584px;}
.ws2c_c02188{word-spacing:5.099112px;}
.ws1e_c02188{word-spacing:5.421924px;}
.ws2d_c02188{word-spacing:5.836968px;}
.ws1c_c02188{word-spacing:6.153192px;}
.ws2e_c02188{word-spacing:6.192720px;}
.wsd_c02188{word-spacing:6.620400px;}
.wsc_c02188{word-spacing:6.647400px;}
.ws29_c02188{word-spacing:7.233624px;}
.ws2f_c02188{word-spacing:10.494684px;}
.ws25_c02188{word-spacing:14.098320px;}
.ws22_c02188{word-spacing:14.434308px;}
.ws1f_c02188{word-spacing:17.333028px;}
.ws27_c02188{word-spacing:25.969896px;}
.ws31_c02188{word-spacing:27.050328px;}
.ws23_c02188{word-spacing:30.647376px;}
.ws1b_c02188{word-spacing:48.689172px;}
.ws1_c02188{word-spacing:191.436372px;}
.ws3_c02188{word-spacing:191.449440px;}
.ws16_c02188{word-spacing:276.445656px;}
.ws4_c02188{word-spacing:306.996372px;}
.ws2_c02188{word-spacing:307.009440px;}
._d_c02188{margin-left:-276.478596px;}
._11_c02188{margin-left:-28.802736px;}
._6_c02188{margin-left:-1.204200px;}
._1a_c02188{width:1.093608px;}
._e_c02188{width:30.983364px;}
._16_c02188{width:39.870720px;}
._17_c02188{width:40.950720px;}
._19_c02188{width:55.174464px;}
._7_c02188{width:65.407068px;}
._15_c02188{width:73.850472px;}
._a_c02188{width:96.810048px;}
._c_c02188{width:101.605680px;}
._8_c02188{width:115.338168px;}
._b_c02188{width:116.438220px;}
._9_c02188{width:129.525840px;}
._10_c02188{width:264.653136px;}
._1_c02188{width:287.726112px;}
._3_c02188{width:300.040200px;}
._4_c02188{width:304.155000px;}
._2_c02188{width:316.089000px;}
._0_c02188{width:441.179208px;}
._f_c02188{width:604.857456px;}
._5_c02188{width:824.630220px;}
._13_c02188{width:1007.568000px;}
._18_c02188{width:1468.100880px;}
._12_c02188{width:1791.288000px;}
._14_c02188{width:2268.561600px;}
.fc0_c02188{color:rgb(0,0,0);}
.fs4_c02188{font-size:42.120000px;}
.fs2_c02188{font-size:47.880000px;}
.fs3_c02188{font-size:54.000000px;}
.fs5_c02188{font-size:60.120000px;}
.fs1_c02188{font-size:65.880000px;}
.fs0_c02188{font-size:72.000000px;}
.y0_c02188{bottom:0.000000px;}
.y3_c02188{bottom:57.360450px;}
.y2_c02188{bottom:78.060450px;}
.y3b_c02188{bottom:130.440720px;}
.y3a_c02188{bottom:149.430630px;}
.y39_c02188{bottom:168.420540px;}
.y38_c02188{bottom:187.410450px;}
.y37_c02188{bottom:205.500450px;}
.y36_c02188{bottom:220.171395px;}
.y35_c02188{bottom:239.070720px;}
.y34_c02188{bottom:258.060630px;}
.y33_c02188{bottom:277.050540px;}
.y32_c02188{bottom:296.040450px;}
.y31_c02188{bottom:314.130450px;}
.y30_c02188{bottom:328.800690px;}
.y2f_c02188{bottom:347.790600px;}
.y2e_c02188{bottom:365.880450px;}
.y2d_c02188{bottom:380.552610px;}
.y2c_c02188{bottom:399.542520px;}
.y2b_c02188{bottom:418.532430px;}
.y2a_c02188{bottom:437.431755px;}
.y29_c02188{bottom:456.421665px;}
.y28_c02188{bottom:475.411575px;}
.y27_c02188{bottom:494.401485px;}
.y26_c02188{bottom:513.391395px;}
.y25_c02188{bottom:532.381305px;}
.y24_c02188{bottom:551.280630px;}
.y23_c02188{bottom:570.270540px;}
.y3c_c02188{bottom:589.171395px;}
.y22_c02188{bottom:594.750450px;}
.y20_c02188{bottom:608.160450px;}
.y1f_c02188{bottom:622.740450px;}
.y21_c02188{bottom:641.640450px;}
.y1e_c02188{bottom:647.400450px;}
.y1d_c02188{bottom:666.930450px;}
.y1c_c02188{bottom:681.420450px;}
.y1b_c02188{bottom:713.370450px;}
.y1a_c02188{bottom:734.610450px;}
.y19_c02188{bottom:756.120450px;}
.y18_c02188{bottom:777.540600px;}
.y17_c02188{bottom:798.960450px;}
.y16_c02188{bottom:820.200450px;}
.y15_c02188{bottom:839.910450px;}
.y14_c02188{bottom:859.890450px;}
.y13_c02188{bottom:880.590450px;}
.y12_c02188{bottom:901.290600px;}
.y11_c02188{bottom:922.890450px;}
.y10_c02188{bottom:944.130450px;}
.yf_c02188{bottom:964.650900px;}
.ye_c02188{bottom:980.490450px;}
.yd_c02188{bottom:995.970900px;}
.yc_c02188{bottom:1011.540450px;}
.yb_c02188{bottom:1031.160450px;}
.ya_c02188{bottom:1052.940450px;}
.y9_c02188{bottom:1071.930450px;}
.y8_c02188{bottom:1090.920450px;}
.y7_c02188{bottom:1108.560450px;}
.y5_c02188{bottom:1109.370450px;}
.y6_c02188{bottom:1124.310450px;}
.y4_c02188{bottom:1141.500450px;}
.y1_c02188{bottom:1193.160450px;}
.ha_c02188{height:36.957832px;}
.h9_c02188{height:37.410293px;}
.h5_c02188{height:42.011895px;}
.h4_c02188{height:42.526230px;}
.h7_c02188{height:47.381836px;}
.h6_c02188{height:47.961914px;}
.h8_c02188{height:57.805840px;}
.h3_c02188{height:58.513535px;}
.h2_c02188{height:63.175781px;}
.h1_c02188{height:63.949219px;}
.h0_c02188{height:1263.000000px;}
.w1_c02188{width:892.500000px;}
.w0_c02188{width:892.830000px;}
.x0_c02188{left:0.000000px;}
.x1_c02188{left:127.620000px;}
.x3_c02188{left:134.550000px;}
.x6_c02188{left:135.630000px;}
.xa_c02188{left:137.520000px;}
.x7_c02188{left:227.880000px;}
.x9_c02188{left:274.140000px;}
.xb_c02188{left:311.670000px;}
.x8_c02188{left:318.420000px;}
.x4_c02188{left:387.720000px;}
.x5_c02188{left:415.530000px;}
.x2_c02188{left:433.080000px;}
.xc_c02188{left:720.990000px;}
@media print{
.v5_c02188{vertical-align:-19.840000pt;}
.v4_c02188{vertical-align:-15.040000pt;}
.v2_c02188{vertical-align:-9.600000pt;}
.v6_c02188{vertical-align:-4.800000pt;}
.v1_c02188{vertical-align:-3.840000pt;}
.v3_c02188{vertical-align:-2.240000pt;}
.v0_c02188{vertical-align:0.000000pt;}
.ls26_c02188{letter-spacing:-0.160992pt;}
.ls25_c02188{letter-spacing:-0.160320pt;}
.ls24_c02188{letter-spacing:-0.157248pt;}
.ls22_c02188{letter-spacing:-0.076800pt;}
.ls21_c02188{letter-spacing:-0.029280pt;}
.ls1d_c02188{letter-spacing:-0.017024pt;}
.ls1f_c02188{letter-spacing:-0.012800pt;}
.ls20_c02188{letter-spacing:-0.011712pt;}
.ls23_c02188{letter-spacing:-0.006400pt;}
.ls1b_c02188{letter-spacing:0.000000pt;}
.ls7_c02188{letter-spacing:0.004800pt;}
.ls1_c02188{letter-spacing:0.005856pt;}
.ls1c_c02188{letter-spacing:0.006400pt;}
.lsb_c02188{letter-spacing:0.009600pt;}
.ls2_c02188{letter-spacing:0.011712pt;}
.ls15_c02188{letter-spacing:0.012800pt;}
.ls12_c02188{letter-spacing:0.017568pt;}
.lse_c02188{letter-spacing:0.019200pt;}
.ls1a_c02188{letter-spacing:0.023424pt;}
.ls13_c02188{letter-spacing:0.025600pt;}
.ls8_c02188{letter-spacing:0.028800pt;}
.ls17_c02188{letter-spacing:0.029280pt;}
.ls5_c02188{letter-spacing:0.033600pt;}
.ls10_c02188{letter-spacing:0.035136pt;}
.lsc_c02188{letter-spacing:0.038400pt;}
.ls14_c02188{letter-spacing:0.044800pt;}
.ls0_c02188{letter-spacing:0.046848pt;}
.ls3_c02188{letter-spacing:0.051072pt;}
.ls16_c02188{letter-spacing:0.052704pt;}
.ls19_c02188{letter-spacing:0.058560pt;}
.lsf_c02188{letter-spacing:0.064416pt;}
.lsd_c02188{letter-spacing:0.081600pt;}
.ls11_c02188{letter-spacing:0.087840pt;}
.lsa_c02188{letter-spacing:0.111264pt;}
.ls18_c02188{letter-spacing:0.117120pt;}
.ls6_c02188{letter-spacing:0.140544pt;}
.ls1e_c02188{letter-spacing:0.158112pt;}
.ls4_c02188{letter-spacing:0.161728pt;}
.ls9_c02188{letter-spacing:170.640000pt;}
.ws0_c02188{word-spacing:-14.645856pt;}
.ws8_c02188{word-spacing:-0.131936pt;}
.ws19_c02188{word-spacing:-0.076800pt;}
.ws17_c02188{word-spacing:-0.064000pt;}
.ws6_c02188{word-spacing:-0.044800pt;}
.ws18_c02188{word-spacing:-0.025600pt;}
.ws13_c02188{word-spacing:-0.019200pt;}
.ws14_c02188{word-spacing:-0.012800pt;}
.ws5_c02188{word-spacing:0.000000pt;}
.ws1a_c02188{word-spacing:0.006400pt;}
.ws12_c02188{word-spacing:0.012800pt;}
.ws15_c02188{word-spacing:0.017568pt;}
.ws24_c02188{word-spacing:0.023424pt;}
.ws28_c02188{word-spacing:0.029280pt;}
.ws7_c02188{word-spacing:0.035136pt;}
.ws2a_c02188{word-spacing:0.046848pt;}
.ws1d_c02188{word-spacing:0.052704pt;}
.ws21_c02188{word-spacing:0.070272pt;}
.wsf_c02188{word-spacing:0.076800pt;}
.wse_c02188{word-spacing:0.120000pt;}
.ws9_c02188{word-spacing:0.124800pt;}
.wsb_c02188{word-spacing:0.129600pt;}
.ws11_c02188{word-spacing:0.148800pt;}
.wsa_c02188{word-spacing:0.153600pt;}
.ws10_c02188{word-spacing:0.158400pt;}
.ws26_c02188{word-spacing:0.696864pt;}
.ws30_c02188{word-spacing:3.250080pt;}
.ws20_c02188{word-spacing:4.228032pt;}
.ws2b_c02188{word-spacing:4.497408pt;}
.ws2c_c02188{word-spacing:4.532544pt;}
.ws1e_c02188{word-spacing:4.819488pt;}
.ws2d_c02188{word-spacing:5.188416pt;}
.ws1c_c02188{word-spacing:5.469504pt;}
.ws2e_c02188{word-spacing:5.504640pt;}
.wsd_c02188{word-spacing:5.884800pt;}
.wsc_c02188{word-spacing:5.908800pt;}
.ws29_c02188{word-spacing:6.429888pt;}
.ws2f_c02188{word-spacing:9.328608pt;}
.ws25_c02188{word-spacing:12.531840pt;}
.ws22_c02188{word-spacing:12.830496pt;}
.ws1f_c02188{word-spacing:15.407136pt;}
.ws27_c02188{word-spacing:23.084352pt;}
.ws31_c02188{word-spacing:24.044736pt;}
.ws23_c02188{word-spacing:27.242112pt;}
.ws1b_c02188{word-spacing:43.279264pt;}
.ws1_c02188{word-spacing:170.165664pt;}
.ws3_c02188{word-spacing:170.177280pt;}
.ws16_c02188{word-spacing:245.729472pt;}
.ws4_c02188{word-spacing:272.885664pt;}
.ws2_c02188{word-spacing:272.897280pt;}
._d_c02188{margin-left:-245.758752pt;}
._11_c02188{margin-left:-25.602432pt;}
._6_c02188{margin-left:-1.070400pt;}
._1a_c02188{width:0.972096pt;}
._e_c02188{width:27.540768pt;}
._16_c02188{width:35.440640pt;}
._17_c02188{width:36.400640pt;}
._19_c02188{width:49.043968pt;}
._7_c02188{width:58.139616pt;}
._15_c02188{width:65.644864pt;}
._a_c02188{width:86.053376pt;}
._c_c02188{width:90.316160pt;}
._8_c02188{width:102.522816pt;}
._b_c02188{width:103.500640pt;}
._9_c02188{width:115.134080pt;}
._10_c02188{width:235.247232pt;}
._1_c02188{width:255.756544pt;}
._3_c02188{width:266.702400pt;}
._4_c02188{width:270.360000pt;}
._2_c02188{width:280.968000pt;}
._0_c02188{width:392.159296pt;}
._f_c02188{width:537.651072pt;}
._5_c02188{width:733.004640pt;}
._13_c02188{width:895.616000pt;}
._18_c02188{width:1304.978560pt;}
._12_c02188{width:1592.256000pt;}
._14_c02188{width:2016.499200pt;}
.fs4_c02188{font-size:37.440000pt;}
.fs2_c02188{font-size:42.560000pt;}
.fs3_c02188{font-size:48.000000pt;}
.fs5_c02188{font-size:53.440000pt;}
.fs1_c02188{font-size:58.560000pt;}
.fs0_c02188{font-size:64.000000pt;}
.y0_c02188{bottom:0.000000pt;}
.y3_c02188{bottom:50.987067pt;}
.y2_c02188{bottom:69.387067pt;}
.y3b_c02188{bottom:115.947307pt;}
.y3a_c02188{bottom:132.827227pt;}
.y39_c02188{bottom:149.707147pt;}
.y38_c02188{bottom:166.587067pt;}
.y37_c02188{bottom:182.667067pt;}
.y36_c02188{bottom:195.707907pt;}
.y35_c02188{bottom:212.507307pt;}
.y34_c02188{bottom:229.387227pt;}
.y33_c02188{bottom:246.267147pt;}
.y32_c02188{bottom:263.147067pt;}
.y31_c02188{bottom:279.227067pt;}
.y30_c02188{bottom:292.267280pt;}
.y2f_c02188{bottom:309.147200pt;}
.y2e_c02188{bottom:325.227067pt;}
.y2d_c02188{bottom:338.268987pt;}
.y2c_c02188{bottom:355.148907pt;}
.y2b_c02188{bottom:372.028827pt;}
.y2a_c02188{bottom:388.828227pt;}
.y29_c02188{bottom:405.708147pt;}
.y28_c02188{bottom:422.588067pt;}
.y27_c02188{bottom:439.467987pt;}
.y26_c02188{bottom:456.347907pt;}
.y25_c02188{bottom:473.227827pt;}
.y24_c02188{bottom:490.027227pt;}
.y23_c02188{bottom:506.907147pt;}
.y3c_c02188{bottom:523.707907pt;}
.y22_c02188{bottom:528.667067pt;}
.y20_c02188{bottom:540.587067pt;}
.y1f_c02188{bottom:553.547067pt;}
.y21_c02188{bottom:570.347067pt;}
.y1e_c02188{bottom:575.467067pt;}
.y1d_c02188{bottom:592.827067pt;}
.y1c_c02188{bottom:605.707067pt;}
.y1b_c02188{bottom:634.107067pt;}
.y1a_c02188{bottom:652.987067pt;}
.y19_c02188{bottom:672.107067pt;}
.y18_c02188{bottom:691.147200pt;}
.y17_c02188{bottom:710.187067pt;}
.y16_c02188{bottom:729.067067pt;}
.y15_c02188{bottom:746.587067pt;}
.y14_c02188{bottom:764.347067pt;}
.y13_c02188{bottom:782.747067pt;}
.y12_c02188{bottom:801.147200pt;}
.y11_c02188{bottom:820.347067pt;}
.y10_c02188{bottom:839.227067pt;}
.yf_c02188{bottom:857.467467pt;}
.ye_c02188{bottom:871.547067pt;}
.yd_c02188{bottom:885.307467pt;}
.yc_c02188{bottom:899.147067pt;}
.yb_c02188{bottom:916.587067pt;}
.ya_c02188{bottom:935.947067pt;}
.y9_c02188{bottom:952.827067pt;}
.y8_c02188{bottom:969.707067pt;}
.y7_c02188{bottom:985.387067pt;}
.y5_c02188{bottom:986.107067pt;}
.y6_c02188{bottom:999.387067pt;}
.y4_c02188{bottom:1014.667067pt;}
.y1_c02188{bottom:1060.587067pt;}
.ha_c02188{height:32.851406pt;}
.h9_c02188{height:33.253594pt;}
.h5_c02188{height:37.343906pt;}
.h4_c02188{height:37.801094pt;}
.h7_c02188{height:42.117188pt;}
.h6_c02188{height:42.632812pt;}
.h8_c02188{height:51.382969pt;}
.h3_c02188{height:52.012031pt;}
.h2_c02188{height:56.156250pt;}
.h1_c02188{height:56.843750pt;}
.h0_c02188{height:1122.666667pt;}
.w1_c02188{width:793.333333pt;}
.w0_c02188{width:793.626667pt;}
.x0_c02188{left:0.000000pt;}
.x1_c02188{left:113.440000pt;}
.x3_c02188{left:119.600000pt;}
.x6_c02188{left:120.560000pt;}
.xa_c02188{left:122.240000pt;}
.x7_c02188{left:202.560000pt;}
.x9_c02188{left:243.680000pt;}
.xb_c02188{left:277.040000pt;}
.x8_c02188{left:283.040000pt;}
.x4_c02188{left:344.640000pt;}
.x5_c02188{left:369.360000pt;}
.x2_c02188{left:384.960000pt;}
.xc_c02188{left:640.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_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_2649f567b5b39f73b59e3432.woff2')format("woff");}.ff1_c02189{font-family:ff1_c02189;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02189;src:url('chunks/assets/font_9e696d0b577f19cb6bceda91.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;}
.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);}
.v2_c02189{vertical-align:-22.320000px;}
.v1_c02189{vertical-align:-16.919400px;}
.v3_c02189{vertical-align:-5.400000px;}
.v0_c02189{vertical-align:0.000000px;}
.ls13_c02189{letter-spacing:-0.181116px;}
.ls11_c02189{letter-spacing:-0.180360px;}
.ls10_c02189{letter-spacing:-0.176904px;}
.ls12_c02189{letter-spacing:-0.032940px;}
.lse_c02189{letter-spacing:0.000000px;}
.lsf_c02189{letter-spacing:0.007200px;}
.lsa_c02189{letter-spacing:0.013176px;}
.ls9_c02189{letter-spacing:0.019764px;}
.ls5_c02189{letter-spacing:0.026352px;}
.ls4_c02189{letter-spacing:0.032940px;}
.lsc_c02189{letter-spacing:0.039528px;}
.ls3_c02189{letter-spacing:0.046116px;}
.ls6_c02189{letter-spacing:0.052704px;}
.lsd_c02189{letter-spacing:0.059292px;}
.lsb_c02189{letter-spacing:0.065880px;}
.ls0_c02189{letter-spacing:0.072468px;}
.ls2_c02189{letter-spacing:0.079056px;}
.ls7_c02189{letter-spacing:0.105408px;}
.ls8_c02189{letter-spacing:0.131760px;}
.ls1_c02189{letter-spacing:0.181944px;}
.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:-0.375516px;}
.ws1_c02189{word-spacing:-0.050400px;}
.ws0_c02189{word-spacing:0.000000px;}
.ws18_c02189{word-spacing:0.046116px;}
.ws16_c02189{word-spacing:0.052704px;}
.ws10_c02189{word-spacing:0.777384px;}
.ws11_c02189{word-spacing:1.838052px;}
.ws17_c02189{word-spacing:2.239920px;}
.ws1a_c02189{word-spacing:3.676104px;}
.ws5_c02189{word-spacing:4.361256px;}
.wsd_c02189{word-spacing:7.220448px;}
.wse_c02189{word-spacing:9.394488px;}
.wsf_c02189{word-spacing:9.401076px;}
.ws7_c02189{word-spacing:9.420840px;}
.ws8_c02189{word-spacing:12.655548px;}
.ws14_c02189{word-spacing:13.031064px;}
.ws3_c02189{word-spacing:14.052204px;}
.ws4_c02189{word-spacing:14.058792px;}
.ws12_c02189{word-spacing:16.997040px;}
.ws19_c02189{word-spacing:19.111788px;}
.ws6_c02189{word-spacing:22.017096px;}
.ws15_c02189{word-spacing:28.875204px;}
.ws9_c02189{word-spacing:29.217780px;}
.wsc_c02189{word-spacing:31.022892px;}
.wsa_c02189{word-spacing:35.674020px;}
.ws2_c02189{word-spacing:48.689172px;}
.ws13_c02189{word-spacing:56.544804px;}
._6_c02189{margin-left:-1.146312px;}
._5_c02189{width:1.231956px;}
._1_c02189{width:39.870720px;}
._2_c02189{width:40.950720px;}
._4_c02189{width:55.174464px;}
._0_c02189{width:73.850472px;}
._3_c02189{width:1468.100880px;}
.fc0_c02189{color:rgb(0,0,0);}
.fs1_c02189{font-size:42.120000px;}
.fs4_c02189{font-size:47.880000px;}
.fs2_c02189{font-size:60.120000px;}
.fs3_c02189{font-size:65.880000px;}
.fs0_c02189{font-size:72.000000px;}
.y0_c02189{bottom:0.000000px;}
.y3_c02189{bottom:57.360450px;}
.y2_c02189{bottom:78.060450px;}
.y34_c02189{bottom:125.670450px;}
.y33_c02189{bottom:156.720450px;}
.y32_c02189{bottom:187.770450px;}
.y31_c02189{bottom:218.820450px;}
.y30_c02189{bottom:249.870450px;}
.y2f_c02189{bottom:280.920450px;}
.y2e_c02189{bottom:311.970450px;}
.y2d_c02189{bottom:343.020450px;}
.y2c_c02189{bottom:374.070450px;}
.y2b_c02189{bottom:405.120450px;}
.y2a_c02189{bottom:436.080450px;}
.y29_c02189{bottom:467.130450px;}
.y28_c02189{bottom:498.180450px;}
.y27_c02189{bottom:529.230450px;}
.y25_c02189{bottom:550.382610px;}
.y24_c02189{bottom:569.281935px;}
.y23_c02189{bottom:588.271845px;}
.y22_c02189{bottom:607.261755px;}
.y21_c02189{bottom:626.251665px;}
.y20_c02189{bottom:645.241575px;}
.y1f_c02189{bottom:664.140900px;}
.y1e_c02189{bottom:683.130810px;}
.y1d_c02189{bottom:702.120720px;}
.y1c_c02189{bottom:721.110630px;}
.y1b_c02189{bottom:740.100540px;}
.y26_c02189{bottom:759.003159px;}
.y1a_c02189{bottom:764.760450px;}
.y18_c02189{bottom:778.802430px;}
.y17_c02189{bottom:797.701755px;}
.y16_c02189{bottom:816.691665px;}
.y15_c02189{bottom:835.681575px;}
.y14_c02189{bottom:854.671485px;}
.y13_c02189{bottom:873.661395px;}
.y12_c02189{bottom:892.651305px;}
.y11_c02189{bottom:911.550630px;}
.y10_c02189{bottom:930.540540px;}
.y19_c02189{bottom:949.443159px;}
.yf_c02189{bottom:955.200450px;}
.yd_c02189{bottom:969.241755px;}
.yc_c02189{bottom:988.231665px;}
.yb_c02189{bottom:1007.221575px;}
.ya_c02189{bottom:1026.211485px;}
.y9_c02189{bottom:1045.110810px;}
.y8_c02189{bottom:1064.100720px;}
.y7_c02189{bottom:1083.090630px;}
.y6_c02189{bottom:1102.080540px;}
.ye_c02189{bottom:1120.981512px;}
.y5_c02189{bottom:1126.740450px;}
.y4_c02189{bottom:1146.270450px;}
.y1_c02189{bottom:1193.160450px;}
.h4_c02189{height:36.957832px;}
.h3_c02189{height:37.410293px;}
.h5_c02189{height:57.805840px;}
.h6_c02189{height:58.513535px;}
.h2_c02189{height:63.175781px;}
.h1_c02189{height:63.949219px;}
.h0_c02189{height:1263.000000px;}
.w1_c02189{width:892.500000px;}
.w0_c02189{width:892.830000px;}
.x0_c02189{left:0.000000px;}
.x1_c02189{left:127.620000px;}
.x3_c02189{left:135.630000px;}
.x4_c02189{left:273.870000px;}
.x2_c02189{left:433.080000px;}
.x5_c02189{left:720.989325px;}
@media print{
.v2_c02189{vertical-align:-19.840000pt;}
.v1_c02189{vertical-align:-15.039467pt;}
.v3_c02189{vertical-align:-4.800000pt;}
.v0_c02189{vertical-align:0.000000pt;}
.ls13_c02189{letter-spacing:-0.160992pt;}
.ls11_c02189{letter-spacing:-0.160320pt;}
.ls10_c02189{letter-spacing:-0.157248pt;}
.ls12_c02189{letter-spacing:-0.029280pt;}
.lse_c02189{letter-spacing:0.000000pt;}
.lsf_c02189{letter-spacing:0.006400pt;}
.lsa_c02189{letter-spacing:0.011712pt;}
.ls9_c02189{letter-spacing:0.017568pt;}
.ls5_c02189{letter-spacing:0.023424pt;}
.ls4_c02189{letter-spacing:0.029280pt;}
.lsc_c02189{letter-spacing:0.035136pt;}
.ls3_c02189{letter-spacing:0.040992pt;}
.ls6_c02189{letter-spacing:0.046848pt;}
.lsd_c02189{letter-spacing:0.052704pt;}
.lsb_c02189{letter-spacing:0.058560pt;}
.ls0_c02189{letter-spacing:0.064416pt;}
.ls2_c02189{letter-spacing:0.070272pt;}
.ls7_c02189{letter-spacing:0.093696pt;}
.ls8_c02189{letter-spacing:0.117120pt;}
.ls1_c02189{letter-spacing:0.161728pt;}
.wsb_c02189{word-spacing:-0.333792pt;}
.ws1_c02189{word-spacing:-0.044800pt;}
.ws0_c02189{word-spacing:0.000000pt;}
.ws18_c02189{word-spacing:0.040992pt;}
.ws16_c02189{word-spacing:0.046848pt;}
.ws10_c02189{word-spacing:0.691008pt;}
.ws11_c02189{word-spacing:1.633824pt;}
.ws17_c02189{word-spacing:1.991040pt;}
.ws1a_c02189{word-spacing:3.267648pt;}
.ws5_c02189{word-spacing:3.876672pt;}
.wsd_c02189{word-spacing:6.418176pt;}
.wse_c02189{word-spacing:8.350656pt;}
.wsf_c02189{word-spacing:8.356512pt;}
.ws7_c02189{word-spacing:8.374080pt;}
.ws8_c02189{word-spacing:11.249376pt;}
.ws14_c02189{word-spacing:11.583168pt;}
.ws3_c02189{word-spacing:12.490848pt;}
.ws4_c02189{word-spacing:12.496704pt;}
.ws12_c02189{word-spacing:15.108480pt;}
.ws19_c02189{word-spacing:16.988256pt;}
.ws6_c02189{word-spacing:19.570752pt;}
.ws15_c02189{word-spacing:25.666848pt;}
.ws9_c02189{word-spacing:25.971360pt;}
.wsc_c02189{word-spacing:27.575904pt;}
.wsa_c02189{word-spacing:31.710240pt;}
.ws2_c02189{word-spacing:43.279264pt;}
.ws13_c02189{word-spacing:50.262048pt;}
._6_c02189{margin-left:-1.018944pt;}
._5_c02189{width:1.095072pt;}
._1_c02189{width:35.440640pt;}
._2_c02189{width:36.400640pt;}
._4_c02189{width:49.043968pt;}
._0_c02189{width:65.644864pt;}
._3_c02189{width:1304.978560pt;}
.fs1_c02189{font-size:37.440000pt;}
.fs4_c02189{font-size:42.560000pt;}
.fs2_c02189{font-size:53.440000pt;}
.fs3_c02189{font-size:58.560000pt;}
.fs0_c02189{font-size:64.000000pt;}
.y0_c02189{bottom:0.000000pt;}
.y3_c02189{bottom:50.987067pt;}
.y2_c02189{bottom:69.387067pt;}
.y34_c02189{bottom:111.707067pt;}
.y33_c02189{bottom:139.307067pt;}
.y32_c02189{bottom:166.907067pt;}
.y31_c02189{bottom:194.507067pt;}
.y30_c02189{bottom:222.107067pt;}
.y2f_c02189{bottom:249.707067pt;}
.y2e_c02189{bottom:277.307067pt;}
.y2d_c02189{bottom:304.907067pt;}
.y2c_c02189{bottom:332.507067pt;}
.y2b_c02189{bottom:360.107067pt;}
.y2a_c02189{bottom:387.627067pt;}
.y29_c02189{bottom:415.227067pt;}
.y28_c02189{bottom:442.827067pt;}
.y27_c02189{bottom:470.427067pt;}
.y25_c02189{bottom:489.228987pt;}
.y24_c02189{bottom:506.028387pt;}
.y23_c02189{bottom:522.908307pt;}
.y22_c02189{bottom:539.788227pt;}
.y21_c02189{bottom:556.668147pt;}
.y20_c02189{bottom:573.548067pt;}
.y1f_c02189{bottom:590.347467pt;}
.y1e_c02189{bottom:607.227387pt;}
.y1d_c02189{bottom:624.107307pt;}
.y1c_c02189{bottom:640.987227pt;}
.y1b_c02189{bottom:657.867147pt;}
.y26_c02189{bottom:674.669475pt;}
.y1a_c02189{bottom:679.787067pt;}
.y18_c02189{bottom:692.268827pt;}
.y17_c02189{bottom:709.068227pt;}
.y16_c02189{bottom:725.948147pt;}
.y15_c02189{bottom:742.828067pt;}
.y14_c02189{bottom:759.707987pt;}
.y13_c02189{bottom:776.587907pt;}
.y12_c02189{bottom:793.467827pt;}
.y11_c02189{bottom:810.267227pt;}
.y10_c02189{bottom:827.147147pt;}
.y19_c02189{bottom:843.949475pt;}
.yf_c02189{bottom:849.067067pt;}
.yd_c02189{bottom:861.548227pt;}
.yc_c02189{bottom:878.428147pt;}
.yb_c02189{bottom:895.308067pt;}
.ya_c02189{bottom:912.187987pt;}
.y9_c02189{bottom:928.987387pt;}
.y8_c02189{bottom:945.867307pt;}
.y7_c02189{bottom:962.747227pt;}
.y6_c02189{bottom:979.627147pt;}
.ye_c02189{bottom:996.428011pt;}
.y5_c02189{bottom:1001.547067pt;}
.y4_c02189{bottom:1018.907067pt;}
.y1_c02189{bottom:1060.587067pt;}
.h4_c02189{height:32.851406pt;}
.h3_c02189{height:33.253594pt;}
.h5_c02189{height:51.382969pt;}
.h6_c02189{height:52.012031pt;}
.h2_c02189{height:56.156250pt;}
.h1_c02189{height:56.843750pt;}
.h0_c02189{height:1122.666667pt;}
.w1_c02189{width:793.333333pt;}
.w0_c02189{width:793.626667pt;}
.x0_c02189{left:0.000000pt;}
.x1_c02189{left:113.440000pt;}
.x3_c02189{left:120.560000pt;}
.x4_c02189{left:243.440000pt;}
.x2_c02189{left:384.960000pt;}
.x5_c02189{left:640.879400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7babad47981d37c3bfda994.woff2')format("woff");}.ff1_c02190{font-family:ff1_c02190;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02190;src:url('chunks/assets/font_f5f23cd1dbc265c2a1d61e0d.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02190{font-family:ff3_c02190;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_c02190;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02190{font-family:ff4_c02190;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;}
.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);}
.v1_c02190{vertical-align:-22.320000px;}
.v2_c02190{vertical-align:-10.440000px;}
.v0_c02190{vertical-align:0.000000px;}
.v4_c02190{vertical-align:11.160000px;}
.v3_c02190{vertical-align:21.600000px;}
.v5_c02190{vertical-align:58.680600px;}
.ls20_c02190{letter-spacing:-0.090972px;}
.ls21_c02190{letter-spacing:-0.072000px;}
.ls1a_c02190{letter-spacing:-0.050400px;}
.ls1b_c02190{letter-spacing:-0.036000px;}
.ls22_c02190{letter-spacing:-0.028800px;}
.ls1f_c02190{letter-spacing:-0.021600px;}
.ls18_c02190{letter-spacing:-0.014400px;}
.ls1c_c02190{letter-spacing:-0.014364px;}
.ls19_c02190{letter-spacing:-0.007200px;}
.ls1e_c02190{letter-spacing:-0.004788px;}
.ls17_c02190{letter-spacing:0.000000px;}
.ls6_c02190{letter-spacing:0.007200px;}
.ls9_c02190{letter-spacing:0.009576px;}
.ls0_c02190{letter-spacing:0.014400px;}
.ls1_c02190{letter-spacing:0.021600px;}
.ls13_c02190{letter-spacing:0.026352px;}
.ls5_c02190{letter-spacing:0.028800px;}
.ls4_c02190{letter-spacing:0.036000px;}
.lse_c02190{letter-spacing:0.043200px;}
.ls2_c02190{letter-spacing:0.050400px;}
.ls3_c02190{letter-spacing:0.064800px;}
.ls7_c02190{letter-spacing:0.072000px;}
.ls12_c02190{letter-spacing:0.079200px;}
.lsd_c02190{letter-spacing:0.090180px;}
.lsf_c02190{letter-spacing:0.093600px;}
.ls8_c02190{letter-spacing:0.100800px;}
.lsa_c02190{letter-spacing:0.129276px;}
.ls10_c02190{letter-spacing:0.180360px;}
.ls1d_c02190{letter-spacing:0.181944px;}
.ls15_c02190{letter-spacing:0.210672px;}
.ls16_c02190{letter-spacing:0.239400px;}
.lsc_c02190{letter-spacing:58.593348px;}
.ls11_c02190{letter-spacing:112.410000px;}
.lsb_c02190{letter-spacing:344.160000px;}
.ls14_c02190{letter-spacing:1601.010000px;}
.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;}
}
.ws4_c02190{word-spacing:-60.120000px;}
.ws3_c02190{word-spacing:-47.880000px;}
.ws1_c02190{word-spacing:-18.100800px;}
.ws7_c02190{word-spacing:-18.079200px;}
.ws6_c02190{word-spacing:-18.028800px;}
.ws0_c02190{word-spacing:-18.000000px;}
.ws5_c02190{word-spacing:-17.992800px;}
.ws2_c02190{word-spacing:-17.978400px;}
.ws2f_c02190{word-spacing:-0.331200px;}
.ws36_c02190{word-spacing:-0.301644px;}
.ws23_c02190{word-spacing:-0.272916px;}
.ws22_c02190{word-spacing:-0.220248px;}
.ws28_c02190{word-spacing:-0.208800px;}
.ws2c_c02190{word-spacing:-0.194400px;}
.ws31_c02190{word-spacing:-0.100800px;}
.ws16_c02190{word-spacing:-0.093600px;}
.ws1a_c02190{word-spacing:-0.086400px;}
.ws17_c02190{word-spacing:-0.079200px;}
.ws20_c02190{word-spacing:-0.064800px;}
.ws9_c02190{word-spacing:-0.050400px;}
.ws18_c02190{word-spacing:-0.036000px;}
.ws21_c02190{word-spacing:-0.021600px;}
.ws24_c02190{word-spacing:-0.014400px;}
.ws15_c02190{word-spacing:-0.007200px;}
.ws8_c02190{word-spacing:0.000000px;}
.wsa_c02190{word-spacing:0.014400px;}
.ws19_c02190{word-spacing:0.036000px;}
.ws35_c02190{word-spacing:0.065880px;}
.ws1b_c02190{word-spacing:0.165600px;}
.ws1f_c02190{word-spacing:0.172800px;}
.ws2b_c02190{word-spacing:0.216000px;}
.ws1c_c02190{word-spacing:0.338400px;}
.ws33_c02190{word-spacing:0.705600px;}
.ws34_c02190{word-spacing:0.720000px;}
.ws32_c02190{word-spacing:0.727200px;}
.ws13_c02190{word-spacing:2.174400px;}
.ws14_c02190{word-spacing:2.253600px;}
.ws12_c02190{word-spacing:3.564000px;}
.wsc_c02190{word-spacing:4.543200px;}
.wsb_c02190{word-spacing:4.593600px;}
.wsd_c02190{word-spacing:4.730400px;}
.ws10_c02190{word-spacing:5.601600px;}
.ws11_c02190{word-spacing:5.652000px;}
.ws29_c02190{word-spacing:13.665600px;}
.ws2a_c02190{word-spacing:14.112000px;}
.ws30_c02190{word-spacing:14.673600px;}
.ws2e_c02190{word-spacing:19.080000px;}
.ws2d_c02190{word-spacing:19.087200px;}
.wsf_c02190{word-spacing:25.855200px;}
.wse_c02190{word-spacing:25.898400px;}
.ws1e_c02190{word-spacing:26.179200px;}
.ws1d_c02190{word-spacing:26.265600px;}
.ws27_c02190{word-spacing:31.651200px;}
.ws26_c02190{word-spacing:131.666400px;}
.ws25_c02190{word-spacing:131.716800px;}
._0_c02190{margin-left:-1.101600px;}
._5_c02190{width:1.266120px;}
._7_c02190{width:13.968000px;}
._4_c02190{width:51.748920px;}
._1_c02190{width:65.071512px;}
._9_c02190{width:105.508800px;}
._6_c02190{width:131.688000px;}
._3_c02190{width:157.123692px;}
._2_c02190{width:477.381600px;}
._8_c02190{width:858.484800px;}
.fc0_c02190{color:rgb(0,0,0);}
.fs5_c02190{font-size:2.880000px;}
.fs4_c02190{font-size:29.880000px;}
.fs1_c02190{font-size:47.880000px;}
.fs6_c02190{font-size:54.000000px;}
.fs3_c02190{font-size:60.120000px;}
.fs2_c02190{font-size:65.880000px;}
.fs0_c02190{font-size:72.000000px;}
.y0_c02190{bottom:0.000000px;}
.y3_c02190{bottom:57.360450px;}
.y2_c02190{bottom:78.060450px;}
.y3a_c02190{bottom:119.820900px;}
.y39_c02190{bottom:135.390450px;}
.y38_c02190{bottom:150.870900px;}
.y37_c02190{bottom:166.440450px;}
.y36_c02190{bottom:181.920900px;}
.y35_c02190{bottom:197.490450px;}
.y34_c02190{bottom:225.030600px;}
.y33_c02190{bottom:229.080450px;}
.y32_c02190{bottom:245.460600px;}
.y31_c02190{bottom:256.080450px;}
.y30_c02190{bottom:273.000450px;}
.y2e_c02190{bottom:284.880450px;}
.y2d_c02190{bottom:308.190450px;}
.y2f_c02190{bottom:310.980450px;}
.y2b_c02190{bottom:327.000600px;}
.y2a_c02190{bottom:350.310450px;}
.y2c_c02190{bottom:353.100450px;}
.y29_c02190{bottom:371.730450px;}
.y27_c02190{bottom:390.630450px;}
.y26_c02190{bottom:413.940450px;}
.y28_c02190{bottom:416.730450px;}
.y24_c02190{bottom:432.750600px;}
.y23_c02190{bottom:438.780450px;}
.y22_c02190{bottom:456.060450px;}
.y25_c02190{bottom:458.850450px;}
.y21_c02190{bottom:477.480450px;}
.y1f_c02190{bottom:496.380450px;}
.y1e_c02190{bottom:519.690600px;}
.y20_c02190{bottom:522.480450px;}
.y1c_c02190{bottom:538.500450px;}
.y1b_c02190{bottom:559.200450px;}
.y1a_c02190{bottom:582.510450px;}
.y1d_c02190{bottom:585.300450px;}
.y19_c02190{bottom:603.930450px;}
.y18_c02190{bottom:621.300450px;}
.y17_c02190{bottom:635.070450px;}
.y16_c02190{bottom:648.840450px;}
.y15_c02190{bottom:673.950450px;}
.y14_c02190{bottom:694.650450px;}
.y13_c02190{bottom:715.350450px;}
.y12_c02190{bottom:735.600450px;}
.y11_c02190{bottom:755.580450px;}
.y10_c02190{bottom:777.000450px;}
.yf_c02190{bottom:808.770450px;}
.ye_c02190{bottom:840.000450px;}
.yd_c02190{bottom:871.050450px;}
.yc_c02190{bottom:902.100450px;}
.yb_c02190{bottom:933.150450px;}
.ya_c02190{bottom:964.200450px;}
.y9_c02190{bottom:995.250450px;}
.y8_c02190{bottom:1026.300450px;}
.y7_c02190{bottom:1057.350450px;}
.y6_c02190{bottom:1088.220450px;}
.y5_c02190{bottom:1114.590450px;}
.y4_c02190{bottom:1139.970450px;}
.y1_c02190{bottom:1193.160450px;}
.hc_c02190{height:2.557969px;}
.hb_c02190{height:26.538926px;}
.h3_c02190{height:42.526230px;}
.hd_c02190{height:47.961914px;}
.h9_c02190{height:53.397598px;}
.h7_c02190{height:53.508619px;}
.h6_c02190{height:53.509219px;}
.h5_c02190{height:53.686230px;}
.h8_c02190{height:53.686830px;}
.h4_c02190{height:58.513535px;}
.h2_c02190{height:63.175781px;}
.h1_c02190{height:63.949219px;}
.ha_c02190{height:122.629819px;}
.h0_c02190{height:1263.000000px;}
.w1_c02190{width:892.500000px;}
.w0_c02190{width:892.830000px;}
.x0_c02190{left:0.000000px;}
.x1_c02190{left:127.620000px;}
.x4_c02190{left:135.630000px;}
.x5_c02190{left:138.150000px;}
.x6_c02190{left:146.340000px;}
.x3_c02190{left:148.950000px;}
.x9_c02190{left:178.200000px;}
.x2_c02190{left:433.080000px;}
.xa_c02190{left:582.210000px;}
.x8_c02190{left:711.990000px;}
.x7_c02190{left:725.310000px;}
@media print{
.v1_c02190{vertical-align:-19.840000pt;}
.v2_c02190{vertical-align:-9.280000pt;}
.v0_c02190{vertical-align:0.000000pt;}
.v4_c02190{vertical-align:9.920000pt;}
.v3_c02190{vertical-align:19.200000pt;}
.v5_c02190{vertical-align:52.160533pt;}
.ls20_c02190{letter-spacing:-0.080864pt;}
.ls21_c02190{letter-spacing:-0.064000pt;}
.ls1a_c02190{letter-spacing:-0.044800pt;}
.ls1b_c02190{letter-spacing:-0.032000pt;}
.ls22_c02190{letter-spacing:-0.025600pt;}
.ls1f_c02190{letter-spacing:-0.019200pt;}
.ls18_c02190{letter-spacing:-0.012800pt;}
.ls1c_c02190{letter-spacing:-0.012768pt;}
.ls19_c02190{letter-spacing:-0.006400pt;}
.ls1e_c02190{letter-spacing:-0.004256pt;}
.ls17_c02190{letter-spacing:0.000000pt;}
.ls6_c02190{letter-spacing:0.006400pt;}
.ls9_c02190{letter-spacing:0.008512pt;}
.ls0_c02190{letter-spacing:0.012800pt;}
.ls1_c02190{letter-spacing:0.019200pt;}
.ls13_c02190{letter-spacing:0.023424pt;}
.ls5_c02190{letter-spacing:0.025600pt;}
.ls4_c02190{letter-spacing:0.032000pt;}
.lse_c02190{letter-spacing:0.038400pt;}
.ls2_c02190{letter-spacing:0.044800pt;}
.ls3_c02190{letter-spacing:0.057600pt;}
.ls7_c02190{letter-spacing:0.064000pt;}
.ls12_c02190{letter-spacing:0.070400pt;}
.lsd_c02190{letter-spacing:0.080160pt;}
.lsf_c02190{letter-spacing:0.083200pt;}
.ls8_c02190{letter-spacing:0.089600pt;}
.lsa_c02190{letter-spacing:0.114912pt;}
.ls10_c02190{letter-spacing:0.160320pt;}
.ls1d_c02190{letter-spacing:0.161728pt;}
.ls15_c02190{letter-spacing:0.187264pt;}
.ls16_c02190{letter-spacing:0.212800pt;}
.lsc_c02190{letter-spacing:52.082976pt;}
.ls11_c02190{letter-spacing:99.920000pt;}
.lsb_c02190{letter-spacing:305.920000pt;}
.ls14_c02190{letter-spacing:1423.120000pt;}
.ws4_c02190{word-spacing:-53.440000pt;}
.ws3_c02190{word-spacing:-42.560000pt;}
.ws1_c02190{word-spacing:-16.089600pt;}
.ws7_c02190{word-spacing:-16.070400pt;}
.ws6_c02190{word-spacing:-16.025600pt;}
.ws0_c02190{word-spacing:-16.000000pt;}
.ws5_c02190{word-spacing:-15.993600pt;}
.ws2_c02190{word-spacing:-15.980800pt;}
.ws2f_c02190{word-spacing:-0.294400pt;}
.ws36_c02190{word-spacing:-0.268128pt;}
.ws23_c02190{word-spacing:-0.242592pt;}
.ws22_c02190{word-spacing:-0.195776pt;}
.ws28_c02190{word-spacing:-0.185600pt;}
.ws2c_c02190{word-spacing:-0.172800pt;}
.ws31_c02190{word-spacing:-0.089600pt;}
.ws16_c02190{word-spacing:-0.083200pt;}
.ws1a_c02190{word-spacing:-0.076800pt;}
.ws17_c02190{word-spacing:-0.070400pt;}
.ws20_c02190{word-spacing:-0.057600pt;}
.ws9_c02190{word-spacing:-0.044800pt;}
.ws18_c02190{word-spacing:-0.032000pt;}
.ws21_c02190{word-spacing:-0.019200pt;}
.ws24_c02190{word-spacing:-0.012800pt;}
.ws15_c02190{word-spacing:-0.006400pt;}
.ws8_c02190{word-spacing:0.000000pt;}
.wsa_c02190{word-spacing:0.012800pt;}
.ws19_c02190{word-spacing:0.032000pt;}
.ws35_c02190{word-spacing:0.058560pt;}
.ws1b_c02190{word-spacing:0.147200pt;}
.ws1f_c02190{word-spacing:0.153600pt;}
.ws2b_c02190{word-spacing:0.192000pt;}
.ws1c_c02190{word-spacing:0.300800pt;}
.ws33_c02190{word-spacing:0.627200pt;}
.ws34_c02190{word-spacing:0.640000pt;}
.ws32_c02190{word-spacing:0.646400pt;}
.ws13_c02190{word-spacing:1.932800pt;}
.ws14_c02190{word-spacing:2.003200pt;}
.ws12_c02190{word-spacing:3.168000pt;}
.wsc_c02190{word-spacing:4.038400pt;}
.wsb_c02190{word-spacing:4.083200pt;}
.wsd_c02190{word-spacing:4.204800pt;}
.ws10_c02190{word-spacing:4.979200pt;}
.ws11_c02190{word-spacing:5.024000pt;}
.ws29_c02190{word-spacing:12.147200pt;}
.ws2a_c02190{word-spacing:12.544000pt;}
.ws30_c02190{word-spacing:13.043200pt;}
.ws2e_c02190{word-spacing:16.960000pt;}
.ws2d_c02190{word-spacing:16.966400pt;}
.wsf_c02190{word-spacing:22.982400pt;}
.wse_c02190{word-spacing:23.020800pt;}
.ws1e_c02190{word-spacing:23.270400pt;}
.ws1d_c02190{word-spacing:23.347200pt;}
.ws27_c02190{word-spacing:28.134400pt;}
.ws26_c02190{word-spacing:117.036800pt;}
.ws25_c02190{word-spacing:117.081600pt;}
._0_c02190{margin-left:-0.979200pt;}
._5_c02190{width:1.125440pt;}
._7_c02190{width:12.416000pt;}
._4_c02190{width:45.999040pt;}
._1_c02190{width:57.841344pt;}
._9_c02190{width:93.785600pt;}
._6_c02190{width:117.056000pt;}
._3_c02190{width:139.665504pt;}
._2_c02190{width:424.339200pt;}
._8_c02190{width:763.097600pt;}
.fs5_c02190{font-size:2.560000pt;}
.fs4_c02190{font-size:26.560000pt;}
.fs1_c02190{font-size:42.560000pt;}
.fs6_c02190{font-size:48.000000pt;}
.fs3_c02190{font-size:53.440000pt;}
.fs2_c02190{font-size:58.560000pt;}
.fs0_c02190{font-size:64.000000pt;}
.y0_c02190{bottom:0.000000pt;}
.y3_c02190{bottom:50.987067pt;}
.y2_c02190{bottom:69.387067pt;}
.y3a_c02190{bottom:106.507467pt;}
.y39_c02190{bottom:120.347067pt;}
.y38_c02190{bottom:134.107467pt;}
.y37_c02190{bottom:147.947067pt;}
.y36_c02190{bottom:161.707467pt;}
.y35_c02190{bottom:175.547067pt;}
.y34_c02190{bottom:200.027200pt;}
.y33_c02190{bottom:203.627067pt;}
.y32_c02190{bottom:218.187200pt;}
.y31_c02190{bottom:227.627067pt;}
.y30_c02190{bottom:242.667067pt;}
.y2e_c02190{bottom:253.227067pt;}
.y2d_c02190{bottom:273.947067pt;}
.y2f_c02190{bottom:276.427067pt;}
.y2b_c02190{bottom:290.667200pt;}
.y2a_c02190{bottom:311.387067pt;}
.y2c_c02190{bottom:313.867067pt;}
.y29_c02190{bottom:330.427067pt;}
.y27_c02190{bottom:347.227067pt;}
.y26_c02190{bottom:367.947067pt;}
.y28_c02190{bottom:370.427067pt;}
.y24_c02190{bottom:384.667200pt;}
.y23_c02190{bottom:390.027067pt;}
.y22_c02190{bottom:405.387067pt;}
.y25_c02190{bottom:407.867067pt;}
.y21_c02190{bottom:424.427067pt;}
.y1f_c02190{bottom:441.227067pt;}
.y1e_c02190{bottom:461.947200pt;}
.y20_c02190{bottom:464.427067pt;}
.y1c_c02190{bottom:478.667067pt;}
.y1b_c02190{bottom:497.067067pt;}
.y1a_c02190{bottom:517.787067pt;}
.y1d_c02190{bottom:520.267067pt;}
.y19_c02190{bottom:536.827067pt;}
.y18_c02190{bottom:552.267067pt;}
.y17_c02190{bottom:564.507067pt;}
.y16_c02190{bottom:576.747067pt;}
.y15_c02190{bottom:599.067067pt;}
.y14_c02190{bottom:617.467067pt;}
.y13_c02190{bottom:635.867067pt;}
.y12_c02190{bottom:653.867067pt;}
.y11_c02190{bottom:671.627067pt;}
.y10_c02190{bottom:690.667067pt;}
.yf_c02190{bottom:718.907067pt;}
.ye_c02190{bottom:746.667067pt;}
.yd_c02190{bottom:774.267067pt;}
.yc_c02190{bottom:801.867067pt;}
.yb_c02190{bottom:829.467067pt;}
.ya_c02190{bottom:857.067067pt;}
.y9_c02190{bottom:884.667067pt;}
.y8_c02190{bottom:912.267067pt;}
.y7_c02190{bottom:939.867067pt;}
.y6_c02190{bottom:967.307067pt;}
.y5_c02190{bottom:990.747067pt;}
.y4_c02190{bottom:1013.307067pt;}
.y1_c02190{bottom:1060.587067pt;}
.hc_c02190{height:2.273750pt;}
.hb_c02190{height:23.590156pt;}
.h3_c02190{height:37.801094pt;}
.hd_c02190{height:42.632812pt;}
.h9_c02190{height:47.464531pt;}
.h7_c02190{height:47.563217pt;}
.h6_c02190{height:47.563750pt;}
.h5_c02190{height:47.721094pt;}
.h8_c02190{height:47.721627pt;}
.h4_c02190{height:52.012031pt;}
.h2_c02190{height:56.156250pt;}
.h1_c02190{height:56.843750pt;}
.ha_c02190{height:109.004283pt;}
.h0_c02190{height:1122.666667pt;}
.w1_c02190{width:793.333333pt;}
.w0_c02190{width:793.626667pt;}
.x0_c02190{left:0.000000pt;}
.x1_c02190{left:113.440000pt;}
.x4_c02190{left:120.560000pt;}
.x5_c02190{left:122.800000pt;}
.x6_c02190{left:130.080000pt;}
.x3_c02190{left:132.400000pt;}
.x9_c02190{left:158.400000pt;}
.x2_c02190{left:384.960000pt;}
.xa_c02190{left:517.520000pt;}
.x8_c02190{left:632.880000pt;}
.x7_c02190{left:644.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_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_0c431dfd12e9d5741b000d2e.woff2')format("woff");}.ff1_c02191{font-family:ff1_c02191;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02191;src:url('chunks/assets/font_b392fdc906a291de3d570b54.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_ff10f687b0c21350040dfeb8.woff2')format("woff");}.ff3_c02191{font-family:ff3_c02191;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_c02191;src:url('chunks/assets/font_24c9d94ad6ea5c3258432976.woff2')format("woff");}.ff4_c02191{font-family:ff4_c02191;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_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);}
.v2_c02191{vertical-align:-9.000000px;}
.v1_c02191{vertical-align:-5.400000px;}
.v0_c02191{vertical-align:0.000000px;}
.ls13_c02191{letter-spacing:-0.021600px;}
.ls14_c02191{letter-spacing:-0.014400px;}
.ls15_c02191{letter-spacing:-0.007200px;}
.ls12_c02191{letter-spacing:0.000000px;}
.ls10_c02191{letter-spacing:0.007200px;}
.ls1_c02191{letter-spacing:0.013176px;}
.ls0_c02191{letter-spacing:0.014400px;}
.ls8_c02191{letter-spacing:0.019764px;}
.ls9_c02191{letter-spacing:0.021600px;}
.ls5_c02191{letter-spacing:0.028800px;}
.ls7_c02191{letter-spacing:0.032940px;}
.ls4_c02191{letter-spacing:0.036000px;}
.lsa_c02191{letter-spacing:0.039528px;}
.lsf_c02191{letter-spacing:0.043200px;}
.ls6_c02191{letter-spacing:0.046116px;}
.ls11_c02191{letter-spacing:0.050400px;}
.ls16_c02191{letter-spacing:0.052704px;}
.lsd_c02191{letter-spacing:0.057600px;}
.lsb_c02191{letter-spacing:0.064800px;}
.lse_c02191{letter-spacing:0.065880px;}
.lsc_c02191{letter-spacing:0.079200px;}
.ls2_c02191{letter-spacing:0.144000px;}
.ls3_c02191{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02191{word-spacing:-17.992800px;}
.ws0_c02191{word-spacing:-12.151944px;}
.ws21_c02191{word-spacing:-0.288000px;}
.ws1f_c02191{word-spacing:-0.187200px;}
.ws1b_c02191{word-spacing:-0.180000px;}
.wsd_c02191{word-spacing:-0.172800px;}
.ws9_c02191{word-spacing:-0.100800px;}
.ws11_c02191{word-spacing:-0.093600px;}
.ws1a_c02191{word-spacing:-0.079200px;}
.ws4_c02191{word-spacing:-0.072000px;}
.ws12_c02191{word-spacing:-0.064800px;}
.ws1c_c02191{word-spacing:-0.057600px;}
.ws3_c02191{word-spacing:-0.050400px;}
.ws1e_c02191{word-spacing:-0.043200px;}
.ws19_c02191{word-spacing:-0.036000px;}
.ws13_c02191{word-spacing:-0.021600px;}
.wse_c02191{word-spacing:-0.014400px;}
.ws14_c02191{word-spacing:-0.007200px;}
.ws2_c02191{word-spacing:0.000000px;}
.wsf_c02191{word-spacing:0.007200px;}
.wsb_c02191{word-spacing:0.014400px;}
.ws1d_c02191{word-spacing:0.026352px;}
.ws20_c02191{word-spacing:0.039528px;}
.wsa_c02191{word-spacing:0.046116px;}
.wsc_c02191{word-spacing:0.059292px;}
.ws10_c02191{word-spacing:0.122400px;}
.ws17_c02191{word-spacing:2.332800px;}
.ws18_c02191{word-spacing:2.505600px;}
.ws8_c02191{word-spacing:3.225600px;}
.ws16_c02191{word-spacing:4.233600px;}
.ws15_c02191{word-spacing:4.320000px;}
.ws7_c02191{word-spacing:11.001600px;}
.ws6_c02191{word-spacing:11.160000px;}
.ws5_c02191{word-spacing:15.804000px;}
._1_c02191{margin-left:-1.031472px;}
._2_c02191{width:141.689772px;}
._3_c02191{width:145.431756px;}
._0_c02191{width:191.501640px;}
._4_c02191{width:294.089976px;}
.fc0_c02191{color:rgb(0,0,0);}
.fs2_c02191{font-size:47.880000px;}
.fs1_c02191{font-size:65.880000px;}
.fs0_c02191{font-size:72.000000px;}
.y0_c02191{bottom:0.000000px;}
.y3_c02191{bottom:57.360450px;}
.y2_c02191{bottom:78.060450px;}
.y35_c02191{bottom:123.150450px;}
.y34_c02191{bottom:143.850450px;}
.y33_c02191{bottom:164.550450px;}
.y32_c02191{bottom:185.250450px;}
.y31_c02191{bottom:205.950450px;}
.y30_c02191{bottom:226.650450px;}
.y2f_c02191{bottom:247.350450px;}
.y2e_c02191{bottom:268.050450px;}
.y2d_c02191{bottom:288.750450px;}
.y2c_c02191{bottom:309.450450px;}
.y2b_c02191{bottom:330.150450px;}
.y2a_c02191{bottom:350.850450px;}
.y29_c02191{bottom:371.550450px;}
.y28_c02191{bottom:392.250450px;}
.y27_c02191{bottom:412.950450px;}
.y26_c02191{bottom:433.650450px;}
.y25_c02191{bottom:455.250450px;}
.y24_c02191{bottom:476.220450px;}
.y23_c02191{bottom:496.380450px;}
.y22_c02191{bottom:517.440600px;}
.y21_c02191{bottom:537.600450px;}
.y20_c02191{bottom:558.570450px;}
.y1f_c02191{bottom:578.730450px;}
.y1e_c02191{bottom:599.430450px;}
.y1d_c02191{bottom:620.130450px;}
.y1c_c02191{bottom:640.830450px;}
.y1b_c02191{bottom:661.530450px;}
.y1a_c02191{bottom:682.230450px;}
.y19_c02191{bottom:703.200450px;}
.y18_c02191{bottom:723.450450px;}
.y17_c02191{bottom:744.150450px;}
.y16_c02191{bottom:765.120450px;}
.y15_c02191{bottom:785.100450px;}
.y14_c02191{bottom:805.800450px;}
.y13_c02191{bottom:826.500450px;}
.y12_c02191{bottom:847.200450px;}
.y11_c02191{bottom:867.900450px;}
.y10_c02191{bottom:888.600450px;}
.yf_c02191{bottom:909.300450px;}
.ye_c02191{bottom:930.000450px;}
.yd_c02191{bottom:950.700450px;}
.yc_c02191{bottom:972.840450px;}
.yb_c02191{bottom:994.260450px;}
.ya_c02191{bottom:1015.770450px;}
.y9_c02191{bottom:1035.840450px;}
.y8_c02191{bottom:1056.540450px;}
.y7_c02191{bottom:1077.240450px;}
.y6_c02191{bottom:1099.290450px;}
.y5_c02191{bottom:1119.270450px;}
.y4_c02191{bottom:1139.970450px;}
.y1_c02191{bottom:1193.160450px;}
.h5_c02191{height:58.513535px;}
.h2_c02191{height:63.175781px;}
.h1_c02191{height:63.949219px;}
.h3_c02191{height:65.228906px;}
.h4_c02191{height:70.628906px;}
.h0_c02191{height:1263.000000px;}
.w1_c02191{width:892.500000px;}
.w0_c02191{width:892.830000px;}
.x0_c02191{left:0.000000px;}
.x1_c02191{left:127.620000px;}
.x3_c02191{left:135.630000px;}
.x4_c02191{left:252.630000px;}
.x2_c02191{left:433.080000px;}
@media print{
.v2_c02191{vertical-align:-8.000000pt;}
.v1_c02191{vertical-align:-4.800000pt;}
.v0_c02191{vertical-align:0.000000pt;}
.ls13_c02191{letter-spacing:-0.019200pt;}
.ls14_c02191{letter-spacing:-0.012800pt;}
.ls15_c02191{letter-spacing:-0.006400pt;}
.ls12_c02191{letter-spacing:0.000000pt;}
.ls10_c02191{letter-spacing:0.006400pt;}
.ls1_c02191{letter-spacing:0.011712pt;}
.ls0_c02191{letter-spacing:0.012800pt;}
.ls8_c02191{letter-spacing:0.017568pt;}
.ls9_c02191{letter-spacing:0.019200pt;}
.ls5_c02191{letter-spacing:0.025600pt;}
.ls7_c02191{letter-spacing:0.029280pt;}
.ls4_c02191{letter-spacing:0.032000pt;}
.lsa_c02191{letter-spacing:0.035136pt;}
.lsf_c02191{letter-spacing:0.038400pt;}
.ls6_c02191{letter-spacing:0.040992pt;}
.ls11_c02191{letter-spacing:0.044800pt;}
.ls16_c02191{letter-spacing:0.046848pt;}
.lsd_c02191{letter-spacing:0.051200pt;}
.lsb_c02191{letter-spacing:0.057600pt;}
.lse_c02191{letter-spacing:0.058560pt;}
.lsc_c02191{letter-spacing:0.070400pt;}
.ls2_c02191{letter-spacing:0.128000pt;}
.ls3_c02191{letter-spacing:0.161728pt;}
.ws1_c02191{word-spacing:-15.993600pt;}
.ws0_c02191{word-spacing:-10.801728pt;}
.ws21_c02191{word-spacing:-0.256000pt;}
.ws1f_c02191{word-spacing:-0.166400pt;}
.ws1b_c02191{word-spacing:-0.160000pt;}
.wsd_c02191{word-spacing:-0.153600pt;}
.ws9_c02191{word-spacing:-0.089600pt;}
.ws11_c02191{word-spacing:-0.083200pt;}
.ws1a_c02191{word-spacing:-0.070400pt;}
.ws4_c02191{word-spacing:-0.064000pt;}
.ws12_c02191{word-spacing:-0.057600pt;}
.ws1c_c02191{word-spacing:-0.051200pt;}
.ws3_c02191{word-spacing:-0.044800pt;}
.ws1e_c02191{word-spacing:-0.038400pt;}
.ws19_c02191{word-spacing:-0.032000pt;}
.ws13_c02191{word-spacing:-0.019200pt;}
.wse_c02191{word-spacing:-0.012800pt;}
.ws14_c02191{word-spacing:-0.006400pt;}
.ws2_c02191{word-spacing:0.000000pt;}
.wsf_c02191{word-spacing:0.006400pt;}
.wsb_c02191{word-spacing:0.012800pt;}
.ws1d_c02191{word-spacing:0.023424pt;}
.ws20_c02191{word-spacing:0.035136pt;}
.wsa_c02191{word-spacing:0.040992pt;}
.wsc_c02191{word-spacing:0.052704pt;}
.ws10_c02191{word-spacing:0.108800pt;}
.ws17_c02191{word-spacing:2.073600pt;}
.ws18_c02191{word-spacing:2.227200pt;}
.ws8_c02191{word-spacing:2.867200pt;}
.ws16_c02191{word-spacing:3.763200pt;}
.ws15_c02191{word-spacing:3.840000pt;}
.ws7_c02191{word-spacing:9.779200pt;}
.ws6_c02191{word-spacing:9.920000pt;}
.ws5_c02191{word-spacing:14.048000pt;}
._1_c02191{margin-left:-0.916864pt;}
._2_c02191{width:125.946464pt;}
._3_c02191{width:129.272672pt;}
._0_c02191{width:170.223680pt;}
._4_c02191{width:261.413312pt;}
.fs2_c02191{font-size:42.560000pt;}
.fs1_c02191{font-size:58.560000pt;}
.fs0_c02191{font-size:64.000000pt;}
.y0_c02191{bottom:0.000000pt;}
.y3_c02191{bottom:50.987067pt;}
.y2_c02191{bottom:69.387067pt;}
.y35_c02191{bottom:109.467067pt;}
.y34_c02191{bottom:127.867067pt;}
.y33_c02191{bottom:146.267067pt;}
.y32_c02191{bottom:164.667067pt;}
.y31_c02191{bottom:183.067067pt;}
.y30_c02191{bottom:201.467067pt;}
.y2f_c02191{bottom:219.867067pt;}
.y2e_c02191{bottom:238.267067pt;}
.y2d_c02191{bottom:256.667067pt;}
.y2c_c02191{bottom:275.067067pt;}
.y2b_c02191{bottom:293.467067pt;}
.y2a_c02191{bottom:311.867067pt;}
.y29_c02191{bottom:330.267067pt;}
.y28_c02191{bottom:348.667067pt;}
.y27_c02191{bottom:367.067067pt;}
.y26_c02191{bottom:385.467067pt;}
.y25_c02191{bottom:404.667067pt;}
.y24_c02191{bottom:423.307067pt;}
.y23_c02191{bottom:441.227067pt;}
.y22_c02191{bottom:459.947200pt;}
.y21_c02191{bottom:477.867067pt;}
.y20_c02191{bottom:496.507067pt;}
.y1f_c02191{bottom:514.427067pt;}
.y1e_c02191{bottom:532.827067pt;}
.y1d_c02191{bottom:551.227067pt;}
.y1c_c02191{bottom:569.627067pt;}
.y1b_c02191{bottom:588.027067pt;}
.y1a_c02191{bottom:606.427067pt;}
.y19_c02191{bottom:625.067067pt;}
.y18_c02191{bottom:643.067067pt;}
.y17_c02191{bottom:661.467067pt;}
.y16_c02191{bottom:680.107067pt;}
.y15_c02191{bottom:697.867067pt;}
.y14_c02191{bottom:716.267067pt;}
.y13_c02191{bottom:734.667067pt;}
.y12_c02191{bottom:753.067067pt;}
.y11_c02191{bottom:771.467067pt;}
.y10_c02191{bottom:789.867067pt;}
.yf_c02191{bottom:808.267067pt;}
.ye_c02191{bottom:826.667067pt;}
.yd_c02191{bottom:845.067067pt;}
.yc_c02191{bottom:864.747067pt;}
.yb_c02191{bottom:883.787067pt;}
.ya_c02191{bottom:902.907067pt;}
.y9_c02191{bottom:920.747067pt;}
.y8_c02191{bottom:939.147067pt;}
.y7_c02191{bottom:957.547067pt;}
.y6_c02191{bottom:977.147067pt;}
.y5_c02191{bottom:994.907067pt;}
.y4_c02191{bottom:1013.307067pt;}
.y1_c02191{bottom:1060.587067pt;}
.h5_c02191{height:52.012031pt;}
.h2_c02191{height:56.156250pt;}
.h1_c02191{height:56.843750pt;}
.h3_c02191{height:57.981250pt;}
.h4_c02191{height:62.781250pt;}
.h0_c02191{height:1122.666667pt;}
.w1_c02191{width:793.333333pt;}
.w0_c02191{width:793.626667pt;}
.x0_c02191{left:0.000000pt;}
.x1_c02191{left:113.440000pt;}
.x3_c02191{left:120.560000pt;}
.x4_c02191{left:224.560000pt;}
.x2_c02191{left:384.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_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_d89f0bef9a8532c6f6f19990.woff2')format("woff");}.ff1_c02192{font-family:ff1_c02192;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02192;src:url('chunks/assets/font_40c5df5eaea74e0d2f2b8137.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;}
.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;}
.ls7_c02192{letter-spacing:-0.057600px;}
.ls6_c02192{letter-spacing:-0.007200px;}
.ls4_c02192{letter-spacing:0.000000px;}
.ls1_c02192{letter-spacing:0.007200px;}
.ls5_c02192{letter-spacing:0.014400px;}
.ls2_c02192{letter-spacing:0.028800px;}
.ls3_c02192{letter-spacing:0.064800px;}
.ls0_c02192{letter-spacing:0.086400px;}
.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;}
}
.ws9_c02192{word-spacing:-0.129600px;}
.ws3_c02192{word-spacing:-0.108000px;}
.ws1_c02192{word-spacing:-0.050400px;}
.wsc_c02192{word-spacing:-0.028800px;}
.ws2_c02192{word-spacing:-0.014400px;}
.ws0_c02192{word-spacing:0.000000px;}
.ws8_c02192{word-spacing:0.057600px;}
.ws7_c02192{word-spacing:4.190400px;}
.ws6_c02192{word-spacing:4.219200px;}
.ws4_c02192{word-spacing:4.233600px;}
.ws5_c02192{word-spacing:4.312800px;}
.wsb_c02192{word-spacing:6.350400px;}
.wsa_c02192{word-spacing:6.487200px;}
._0_c02192{margin-left:-1.036800px;}
._2_c02192{width:2502.000000px;}
._1_c02192{width:2524.680000px;}
.fc0_c02192{color:rgb(0,0,0);}
.fs1_c02192{font-size:24.120000px;}
.fs2_c02192{font-size:47.880000px;}
.fs0_c02192{font-size:72.000000px;}
.y0_c02192{bottom:0.000000px;}
.y3_c02192{bottom:57.360450px;}
.y2_c02192{bottom:78.060450px;}
.y11_c02192{bottom:119.460600px;}
.y10_c02192{bottom:506.010450px;}
.yf_c02192{bottom:531.390450px;}
.ye_c02192{bottom:562.440450px;}
.yd_c02192{bottom:582.960450px;}
.yc_c02192{bottom:602.310450px;}
.yb_c02192{bottom:613.470450px;}
.ya_c02192{bottom:1009.830450px;}
.y9_c02192{bottom:1029.810450px;}
.y8_c02192{bottom:1060.860450px;}
.y7_c02192{bottom:1091.910450px;}
.y6_c02192{bottom:1112.430450px;}
.y5_c02192{bottom:1130.520450px;}
.y4_c02192{bottom:1139.970450px;}
.y1_c02192{bottom:1193.160450px;}
.h3_c02192{height:21.422988px;}
.h5_c02192{height:42.011895px;}
.h4_c02192{height:42.526230px;}
.h2_c02192{height:63.175781px;}
.h1_c02192{height:63.949219px;}
.h0_c02192{height:1263.000000px;}
.w1_c02192{width:892.500000px;}
.w0_c02192{width:892.830000px;}
.x0_c02192{left:0.000000px;}
.x1_c02192{left:127.620000px;}
.x4_c02192{left:148.950000px;}
.x5_c02192{left:285.570000px;}
.x3_c02192{left:356.580000px;}
.x2_c02192{left:433.080000px;}
@media print{
.v0_c02192{vertical-align:0.000000pt;}
.ls7_c02192{letter-spacing:-0.051200pt;}
.ls6_c02192{letter-spacing:-0.006400pt;}
.ls4_c02192{letter-spacing:0.000000pt;}
.ls1_c02192{letter-spacing:0.006400pt;}
.ls5_c02192{letter-spacing:0.012800pt;}
.ls2_c02192{letter-spacing:0.025600pt;}
.ls3_c02192{letter-spacing:0.057600pt;}
.ls0_c02192{letter-spacing:0.076800pt;}
.ws9_c02192{word-spacing:-0.115200pt;}
.ws3_c02192{word-spacing:-0.096000pt;}
.ws1_c02192{word-spacing:-0.044800pt;}
.wsc_c02192{word-spacing:-0.025600pt;}
.ws2_c02192{word-spacing:-0.012800pt;}
.ws0_c02192{word-spacing:0.000000pt;}
.ws8_c02192{word-spacing:0.051200pt;}
.ws7_c02192{word-spacing:3.724800pt;}
.ws6_c02192{word-spacing:3.750400pt;}
.ws4_c02192{word-spacing:3.763200pt;}
.ws5_c02192{word-spacing:3.833600pt;}
.wsb_c02192{word-spacing:5.644800pt;}
.wsa_c02192{word-spacing:5.766400pt;}
._0_c02192{margin-left:-0.921600pt;}
._2_c02192{width:2224.000000pt;}
._1_c02192{width:2244.160000pt;}
.fs1_c02192{font-size:21.440000pt;}
.fs2_c02192{font-size:42.560000pt;}
.fs0_c02192{font-size:64.000000pt;}
.y0_c02192{bottom:0.000000pt;}
.y3_c02192{bottom:50.987067pt;}
.y2_c02192{bottom:69.387067pt;}
.y11_c02192{bottom:106.187200pt;}
.y10_c02192{bottom:449.787067pt;}
.yf_c02192{bottom:472.347067pt;}
.ye_c02192{bottom:499.947067pt;}
.yd_c02192{bottom:518.187067pt;}
.yc_c02192{bottom:535.387067pt;}
.yb_c02192{bottom:545.307067pt;}
.ya_c02192{bottom:897.627067pt;}
.y9_c02192{bottom:915.387067pt;}
.y8_c02192{bottom:942.987067pt;}
.y7_c02192{bottom:970.587067pt;}
.y6_c02192{bottom:988.827067pt;}
.y5_c02192{bottom:1004.907067pt;}
.y4_c02192{bottom:1013.307067pt;}
.y1_c02192{bottom:1060.587067pt;}
.h3_c02192{height:19.042656pt;}
.h5_c02192{height:37.343906pt;}
.h4_c02192{height:37.801094pt;}
.h2_c02192{height:56.156250pt;}
.h1_c02192{height:56.843750pt;}
.h0_c02192{height:1122.666667pt;}
.w1_c02192{width:793.333333pt;}
.w0_c02192{width:793.626667pt;}
.x0_c02192{left:0.000000pt;}
.x1_c02192{left:113.440000pt;}
.x4_c02192{left:132.400000pt;}
.x5_c02192{left:253.840000pt;}
.x3_c02192{left:316.960000pt;}
.x2_c02192{left:384.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_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_912d3e050547dfda02e85900.woff2')format("woff");}.ff1_c02193{font-family:ff1_c02193;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02193;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02193{font-family:ff3_c02193;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_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);}
.v1_c02193{vertical-align:-1.440000px;}
.v0_c02193{vertical-align:0.000000px;}
.ls1d_c02193{letter-spacing:-0.050400px;}
.ls21_c02193{letter-spacing:-0.046116px;}
.ls24_c02193{letter-spacing:-0.036000px;}
.ls23_c02193{letter-spacing:-0.028800px;}
.ls1f_c02193{letter-spacing:-0.027000px;}
.ls20_c02193{letter-spacing:-0.023940px;}
.ls25_c02193{letter-spacing:-0.021600px;}
.ls1c_c02193{letter-spacing:-0.014400px;}
.ls1b_c02193{letter-spacing:-0.007200px;}
.ls22_c02193{letter-spacing:-0.006588px;}
.ls19_c02193{letter-spacing:0.000000px;}
.ls1a_c02193{letter-spacing:0.007200px;}
.ls1e_c02193{letter-spacing:0.014400px;}
.ls16_c02193{letter-spacing:0.019764px;}
.ls3_c02193{letter-spacing:0.021600px;}
.ls0_c02193{letter-spacing:0.028800px;}
.ls2_c02193{letter-spacing:0.036000px;}
.ls12_c02193{letter-spacing:0.039528px;}
.lsa_c02193{letter-spacing:0.059292px;}
.ls1_c02193{letter-spacing:0.064800px;}
.ls8_c02193{letter-spacing:0.065880px;}
.ls11_c02193{letter-spacing:0.072468px;}
.ls4_c02193{letter-spacing:0.076608px;}
.lsb_c02193{letter-spacing:0.079056px;}
.lse_c02193{letter-spacing:0.085644px;}
.ls15_c02193{letter-spacing:0.086400px;}
.ls5_c02193{letter-spacing:0.092232px;}
.ls10_c02193{letter-spacing:0.105408px;}
.ls6_c02193{letter-spacing:0.138348px;}
.ls9_c02193{letter-spacing:0.151524px;}
.lsf_c02193{letter-spacing:0.158112px;}
.lsc_c02193{letter-spacing:0.177876px;}
.lsd_c02193{letter-spacing:117.450000px;}
.ls7_c02193{letter-spacing:150.300000px;}
.ls18_c02193{letter-spacing:150.570000px;}
.ls17_c02193{letter-spacing:183.420000px;}
.ls14_c02193{letter-spacing:394.650000px;}
.ls13_c02193{letter-spacing:416.250000px;}
.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;}
}
.wsf_c02193{word-spacing:-17.971200px;}
.ws9_c02193{word-spacing:-16.647876px;}
.ws1e_c02193{word-spacing:-0.167580px;}
.ws1a_c02193{word-spacing:-0.064800px;}
.ws18_c02193{word-spacing:-0.050400px;}
.ws1c_c02193{word-spacing:-0.036000px;}
.ws1b_c02193{word-spacing:-0.028800px;}
.ws1d_c02193{word-spacing:-0.021600px;}
.ws25_c02193{word-spacing:-0.014400px;}
.ws19_c02193{word-spacing:-0.007200px;}
.ws17_c02193{word-spacing:0.000000px;}
.ws21_c02193{word-spacing:0.013176px;}
.ws1f_c02193{word-spacing:0.026352px;}
.ws20_c02193{word-spacing:0.032940px;}
.ws24_c02193{word-spacing:0.036000px;}
.ws22_c02193{word-spacing:0.052704px;}
.ws23_c02193{word-spacing:0.098820px;}
.wsc_c02193{word-spacing:65.089440px;}
.wsb_c02193{word-spacing:67.238496px;}
.ws8_c02193{word-spacing:67.642380px;}
.ws5_c02193{word-spacing:99.996372px;}
.ws7_c02193{word-spacing:99.998496px;}
.ws6_c02193{word-spacing:100.402380px;}
.ws15_c02193{word-spacing:100.426608px;}
.wsd_c02193{word-spacing:100.933020px;}
.ws11_c02193{word-spacing:116.962380px;}
.ws3_c02193{word-spacing:133.116372px;}
.ws1_c02193{word-spacing:133.546608px;}
.ws16_c02193{word-spacing:134.053020px;}
.ws4_c02193{word-spacing:150.082380px;}
.ws2_c02193{word-spacing:150.106608px;}
.ws12_c02193{word-spacing:166.763304px;}
.ws10_c02193{word-spacing:182.842380px;}
.ws0_c02193{word-spacing:182.866608px;}
.ws13_c02193{word-spacing:182.963304px;}
.wse_c02193{word-spacing:215.595972px;}
.wsa_c02193{word-spacing:215.986608px;}
.ws14_c02193{word-spacing:216.083304px;}
._c_c02193{margin-left:-1.036656px;}
._16_c02193{width:65.089440px;}
._b_c02193{width:67.644504px;}
._14_c02193{width:83.886372px;}
._7_c02193{width:99.996372px;}
._3_c02193{width:101.778264px;}
._2_c02193{width:130.230000px;}
._5_c02193{width:133.474248px;}
._1c_c02193{width:135.020268px;}
._1_c02193{width:144.532800px;}
._11_c02193{width:150.300000px;}
._e_c02193{width:166.594248px;}
._20_c02193{width:167.804100px;}
._10_c02193{width:183.330000px;}
._8_c02193{width:187.907256px;}
._0_c02193{width:191.646000px;}
._22_c02193{width:202.392144px;}
._17_c02193{width:206.239536px;}
._12_c02193{width:215.330256px;}
._f_c02193{width:216.498348px;}
._1b_c02193{width:217.604100px;}
._13_c02193{width:232.120620px;}
._9_c02193{width:235.512144px;}
._1e_c02193{width:249.109704px;}
._19_c02193{width:250.189704px;}
._a_c02193{width:253.844424px;}
._15_c02193{width:270.250776px;}
._d_c02193{width:283.101732px;}
._6_c02193{width:297.926856px;}
._4_c02193{width:315.837504px;}
._21_c02193{width:330.686856px;}
._1f_c02193{width:348.957504px;}
._1d_c02193{width:416.833992px;}
._1a_c02193{width:643.985748px;}
._18_c02193{width:666.043992px;}
.fc0_c02193{color:rgb(0,0,0);}
.fs5_c02193{font-size:11.880000px;}
.fs4_c02193{font-size:29.880000px;}
.fs2_c02193{font-size:47.880000px;}
.fs1_c02193{font-size:54.000000px;}
.fs3_c02193{font-size:65.880000px;}
.fs0_c02193{font-size:72.000000px;}
.y0_c02193{bottom:0.000000px;}
.y3_c02193{bottom:57.360450px;}
.y2_c02193{bottom:78.060450px;}
.y3c_c02193{bottom:124.410450px;}
.y3b_c02193{bottom:130.260000px;}
.y3a_c02193{bottom:145.740450px;}
.y39_c02193{bottom:162.300450px;}
.y38_c02193{bottom:181.290600px;}
.y37_c02193{bottom:200.280600px;}
.y36_c02193{bottom:219.270450px;}
.y35_c02193{bottom:238.620600px;}
.y34_c02193{bottom:257.520450px;}
.y33_c02193{bottom:276.510450px;}
.y32_c02193{bottom:295.500450px;}
.y31_c02193{bottom:314.490450px;}
.y30_c02193{bottom:333.480450px;}
.y2f_c02193{bottom:352.380450px;}
.y2e_c02193{bottom:370.740450px;}
.y2d_c02193{bottom:387.210600px;}
.y2b_c02193{bottom:407.910450px;}
.y2c_c02193{bottom:428.610600px;}
.y2a_c02193{bottom:450.570900px;}
.y29_c02193{bottom:466.140450px;}
.y28_c02193{bottom:482.700600px;}
.y27_c02193{bottom:501.690600px;}
.y26_c02193{bottom:520.590600px;}
.y25_c02193{bottom:539.580450px;}
.y24_c02193{bottom:558.930450px;}
.y23_c02193{bottom:577.920450px;}
.y22_c02193{bottom:596.910450px;}
.y21_c02193{bottom:615.900450px;}
.y20_c02193{bottom:634.800450px;}
.y1f_c02193{bottom:653.790450px;}
.y1e_c02193{bottom:672.780450px;}
.y1d_c02193{bottom:691.140450px;}
.y1c_c02193{bottom:707.610450px;}
.y1b_c02193{bottom:728.310450px;}
.y18_c02193{bottom:738.660450px;}
.y1a_c02193{bottom:749.010450px;}
.y19_c02193{bottom:769.710450px;}
.y17_c02193{bottom:790.320846px;}
.y16_c02193{bottom:798.960648px;}
.y15_c02193{bottom:807.600450px;}
.y14_c02193{bottom:818.580450px;}
.y13_c02193{bottom:837.570450px;}
.y12_c02193{bottom:856.560450px;}
.y11_c02193{bottom:875.460450px;}
.y10_c02193{bottom:894.810450px;}
.yf_c02193{bottom:913.800450px;}
.ye_c02193{bottom:932.790600px;}
.yd_c02193{bottom:951.780450px;}
.yc_c02193{bottom:970.770450px;}
.yb_c02193{bottom:989.670450px;}
.ya_c02193{bottom:1008.660450px;}
.y9_c02193{bottom:1027.020450px;}
.y8_c02193{bottom:1043.490450px;}
.y6_c02193{bottom:1064.190450px;}
.y7_c02193{bottom:1084.890450px;}
.y5_c02193{bottom:1105.590450px;}
.y4_c02193{bottom:1139.970450px;}
.y1_c02193{bottom:1193.160450px;}
.h7_c02193{height:10.551621px;}
.h6_c02193{height:26.538926px;}
.h4_c02193{height:47.961914px;}
.h5_c02193{height:58.513535px;}
.h2_c02193{height:63.175781px;}
.h1_c02193{height:63.949219px;}
.h3_c02193{height:75.093750px;}
.h0_c02193{height:1263.000000px;}
.w1_c02193{width:892.500000px;}
.w0_c02193{width:892.830000px;}
.x0_c02193{left:0.000000px;}
.x1_c02193{left:127.620000px;}
.x3_c02193{left:135.630000px;}
.xd_c02193{left:162.720000px;}
.x5_c02193{left:239.310000px;}
.x13_c02193{left:246.780000px;}
.xe_c02193{left:260.100000px;}
.x6_c02193{left:285.840000px;}
.x4_c02193{left:288.090000px;}
.xf_c02193{left:419.580000px;}
.x8_c02193{left:428.580000px;}
.x2_c02193{left:433.080000px;}
.x15_c02193{left:438.390000px;}
.x14_c02193{left:442.890000px;}
.x9_c02193{left:451.890000px;}
.x7_c02193{left:462.690000px;}
.xb_c02193{left:594.270000px;}
.xc_c02193{left:605.070000px;}
.x11_c02193{left:608.580000px;}
.x17_c02193{left:626.760000px;}
.x10_c02193{left:628.020000px;}
.x16_c02193{left:632.790000px;}
.xa_c02193{left:637.290000px;}
.x12_c02193{left:649.080000px;}
@media print{
.v1_c02193{vertical-align:-1.280000pt;}
.v0_c02193{vertical-align:0.000000pt;}
.ls1d_c02193{letter-spacing:-0.044800pt;}
.ls21_c02193{letter-spacing:-0.040992pt;}
.ls24_c02193{letter-spacing:-0.032000pt;}
.ls23_c02193{letter-spacing:-0.025600pt;}
.ls1f_c02193{letter-spacing:-0.024000pt;}
.ls20_c02193{letter-spacing:-0.021280pt;}
.ls25_c02193{letter-spacing:-0.019200pt;}
.ls1c_c02193{letter-spacing:-0.012800pt;}
.ls1b_c02193{letter-spacing:-0.006400pt;}
.ls22_c02193{letter-spacing:-0.005856pt;}
.ls19_c02193{letter-spacing:0.000000pt;}
.ls1a_c02193{letter-spacing:0.006400pt;}
.ls1e_c02193{letter-spacing:0.012800pt;}
.ls16_c02193{letter-spacing:0.017568pt;}
.ls3_c02193{letter-spacing:0.019200pt;}
.ls0_c02193{letter-spacing:0.025600pt;}
.ls2_c02193{letter-spacing:0.032000pt;}
.ls12_c02193{letter-spacing:0.035136pt;}
.lsa_c02193{letter-spacing:0.052704pt;}
.ls1_c02193{letter-spacing:0.057600pt;}
.ls8_c02193{letter-spacing:0.058560pt;}
.ls11_c02193{letter-spacing:0.064416pt;}
.ls4_c02193{letter-spacing:0.068096pt;}
.lsb_c02193{letter-spacing:0.070272pt;}
.lse_c02193{letter-spacing:0.076128pt;}
.ls15_c02193{letter-spacing:0.076800pt;}
.ls5_c02193{letter-spacing:0.081984pt;}
.ls10_c02193{letter-spacing:0.093696pt;}
.ls6_c02193{letter-spacing:0.122976pt;}
.ls9_c02193{letter-spacing:0.134688pt;}
.lsf_c02193{letter-spacing:0.140544pt;}
.lsc_c02193{letter-spacing:0.158112pt;}
.lsd_c02193{letter-spacing:104.400000pt;}
.ls7_c02193{letter-spacing:133.600000pt;}
.ls18_c02193{letter-spacing:133.840000pt;}
.ls17_c02193{letter-spacing:163.040000pt;}
.ls14_c02193{letter-spacing:350.800000pt;}
.ls13_c02193{letter-spacing:370.000000pt;}
.wsf_c02193{word-spacing:-15.974400pt;}
.ws9_c02193{word-spacing:-14.798112pt;}
.ws1e_c02193{word-spacing:-0.148960pt;}
.ws1a_c02193{word-spacing:-0.057600pt;}
.ws18_c02193{word-spacing:-0.044800pt;}
.ws1c_c02193{word-spacing:-0.032000pt;}
.ws1b_c02193{word-spacing:-0.025600pt;}
.ws1d_c02193{word-spacing:-0.019200pt;}
.ws25_c02193{word-spacing:-0.012800pt;}
.ws19_c02193{word-spacing:-0.006400pt;}
.ws17_c02193{word-spacing:0.000000pt;}
.ws21_c02193{word-spacing:0.011712pt;}
.ws1f_c02193{word-spacing:0.023424pt;}
.ws20_c02193{word-spacing:0.029280pt;}
.ws24_c02193{word-spacing:0.032000pt;}
.ws22_c02193{word-spacing:0.046848pt;}
.ws23_c02193{word-spacing:0.087840pt;}
.wsc_c02193{word-spacing:57.857280pt;}
.wsb_c02193{word-spacing:59.767552pt;}
.ws8_c02193{word-spacing:60.126560pt;}
.ws5_c02193{word-spacing:88.885664pt;}
.ws7_c02193{word-spacing:88.887552pt;}
.ws6_c02193{word-spacing:89.246560pt;}
.ws15_c02193{word-spacing:89.268096pt;}
.wsd_c02193{word-spacing:89.718240pt;}
.ws11_c02193{word-spacing:103.966560pt;}
.ws3_c02193{word-spacing:118.325664pt;}
.ws1_c02193{word-spacing:118.708096pt;}
.ws16_c02193{word-spacing:119.158240pt;}
.ws4_c02193{word-spacing:133.406560pt;}
.ws2_c02193{word-spacing:133.428096pt;}
.ws12_c02193{word-spacing:148.234048pt;}
.ws10_c02193{word-spacing:162.526560pt;}
.ws0_c02193{word-spacing:162.548096pt;}
.ws13_c02193{word-spacing:162.634048pt;}
.wse_c02193{word-spacing:191.640864pt;}
.wsa_c02193{word-spacing:191.988096pt;}
.ws14_c02193{word-spacing:192.074048pt;}
._c_c02193{margin-left:-0.921472pt;}
._16_c02193{width:57.857280pt;}
._b_c02193{width:60.128448pt;}
._14_c02193{width:74.565664pt;}
._7_c02193{width:88.885664pt;}
._3_c02193{width:90.469568pt;}
._2_c02193{width:115.760000pt;}
._5_c02193{width:118.643776pt;}
._1c_c02193{width:120.018016pt;}
._1_c02193{width:128.473600pt;}
._11_c02193{width:133.600000pt;}
._e_c02193{width:148.083776pt;}
._20_c02193{width:149.159200pt;}
._10_c02193{width:162.960000pt;}
._8_c02193{width:167.028672pt;}
._0_c02193{width:170.352000pt;}
._22_c02193{width:179.904128pt;}
._17_c02193{width:183.324032pt;}
._12_c02193{width:191.404672pt;}
._f_c02193{width:192.442976pt;}
._1b_c02193{width:193.425867pt;}
._13_c02193{width:206.329440pt;}
._9_c02193{width:209.344128pt;}
._1e_c02193{width:221.430848pt;}
._19_c02193{width:222.390848pt;}
._a_c02193{width:225.639488pt;}
._15_c02193{width:240.222912pt;}
._d_c02193{width:251.645984pt;}
._6_c02193{width:264.823872pt;}
._4_c02193{width:280.744448pt;}
._21_c02193{width:293.943872pt;}
._1f_c02193{width:310.184448pt;}
._1d_c02193{width:370.519104pt;}
._1a_c02193{width:572.431776pt;}
._18_c02193{width:592.039104pt;}
.fs5_c02193{font-size:10.560000pt;}
.fs4_c02193{font-size:26.560000pt;}
.fs2_c02193{font-size:42.560000pt;}
.fs1_c02193{font-size:48.000000pt;}
.fs3_c02193{font-size:58.560000pt;}
.fs0_c02193{font-size:64.000000pt;}
.y0_c02193{bottom:0.000000pt;}
.y3_c02193{bottom:50.987067pt;}
.y2_c02193{bottom:69.387067pt;}
.y3c_c02193{bottom:110.587067pt;}
.y3b_c02193{bottom:115.786667pt;}
.y3a_c02193{bottom:129.547067pt;}
.y39_c02193{bottom:144.267067pt;}
.y38_c02193{bottom:161.147200pt;}
.y37_c02193{bottom:178.027200pt;}
.y36_c02193{bottom:194.907067pt;}
.y35_c02193{bottom:212.107200pt;}
.y34_c02193{bottom:228.907067pt;}
.y33_c02193{bottom:245.787067pt;}
.y32_c02193{bottom:262.667067pt;}
.y31_c02193{bottom:279.547067pt;}
.y30_c02193{bottom:296.427067pt;}
.y2f_c02193{bottom:313.227067pt;}
.y2e_c02193{bottom:329.547067pt;}
.y2d_c02193{bottom:344.187200pt;}
.y2b_c02193{bottom:362.587067pt;}
.y2c_c02193{bottom:380.987200pt;}
.y2a_c02193{bottom:400.507467pt;}
.y29_c02193{bottom:414.347067pt;}
.y28_c02193{bottom:429.067200pt;}
.y27_c02193{bottom:445.947200pt;}
.y26_c02193{bottom:462.747200pt;}
.y25_c02193{bottom:479.627067pt;}
.y24_c02193{bottom:496.827067pt;}
.y23_c02193{bottom:513.707067pt;}
.y22_c02193{bottom:530.587067pt;}
.y21_c02193{bottom:547.467067pt;}
.y20_c02193{bottom:564.267067pt;}
.y1f_c02193{bottom:581.147067pt;}
.y1e_c02193{bottom:598.027067pt;}
.y1d_c02193{bottom:614.347067pt;}
.y1c_c02193{bottom:628.987067pt;}
.y1b_c02193{bottom:647.387067pt;}
.y18_c02193{bottom:656.587067pt;}
.y1a_c02193{bottom:665.787067pt;}
.y19_c02193{bottom:684.187067pt;}
.y17_c02193{bottom:702.507419pt;}
.y16_c02193{bottom:710.187243pt;}
.y15_c02193{bottom:717.867067pt;}
.y14_c02193{bottom:727.627067pt;}
.y13_c02193{bottom:744.507067pt;}
.y12_c02193{bottom:761.387067pt;}
.y11_c02193{bottom:778.187067pt;}
.y10_c02193{bottom:795.387067pt;}
.yf_c02193{bottom:812.267067pt;}
.ye_c02193{bottom:829.147200pt;}
.yd_c02193{bottom:846.027067pt;}
.yc_c02193{bottom:862.907067pt;}
.yb_c02193{bottom:879.707067pt;}
.ya_c02193{bottom:896.587067pt;}
.y9_c02193{bottom:912.907067pt;}
.y8_c02193{bottom:927.547067pt;}
.y6_c02193{bottom:945.947067pt;}
.y7_c02193{bottom:964.347067pt;}
.y5_c02193{bottom:982.747067pt;}
.y4_c02193{bottom:1013.307067pt;}
.y1_c02193{bottom:1060.587067pt;}
.h7_c02193{height:9.379219pt;}
.h6_c02193{height:23.590156pt;}
.h4_c02193{height:42.632812pt;}
.h5_c02193{height:52.012031pt;}
.h2_c02193{height:56.156250pt;}
.h1_c02193{height:56.843750pt;}
.h3_c02193{height:66.750000pt;}
.h0_c02193{height:1122.666667pt;}
.w1_c02193{width:793.333333pt;}
.w0_c02193{width:793.626667pt;}
.x0_c02193{left:0.000000pt;}
.x1_c02193{left:113.440000pt;}
.x3_c02193{left:120.560000pt;}
.xd_c02193{left:144.640000pt;}
.x5_c02193{left:212.720000pt;}
.x13_c02193{left:219.360000pt;}
.xe_c02193{left:231.200000pt;}
.x6_c02193{left:254.080000pt;}
.x4_c02193{left:256.080000pt;}
.xf_c02193{left:372.960000pt;}
.x8_c02193{left:380.960000pt;}
.x2_c02193{left:384.960000pt;}
.x15_c02193{left:389.680000pt;}
.x14_c02193{left:393.680000pt;}
.x9_c02193{left:401.680000pt;}
.x7_c02193{left:411.280000pt;}
.xb_c02193{left:528.240000pt;}
.xc_c02193{left:537.840000pt;}
.x11_c02193{left:540.960000pt;}
.x17_c02193{left:557.120000pt;}
.x10_c02193{left:558.240000pt;}
.x16_c02193{left:562.480000pt;}
.xa_c02193{left:566.480000pt;}
.x12_c02193{left:576.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_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_0047c95b87becdfb10da1398.woff2')format("woff");}.ff1_c02194{font-family:ff1_c02194;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02194;src:url('chunks/assets/font_513206d0cd3e8fd6a044498b.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;}
.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);}
.v7_c02194{vertical-align:-15.120000px;}
.v8_c02194{vertical-align:-12.600000px;}
.v9_c02194{vertical-align:-11.160000px;}
.v3_c02194{vertical-align:-3.960000px;}
.v2_c02194{vertical-align:-2.520000px;}
.v4_c02194{vertical-align:-1.440000px;}
.v0_c02194{vertical-align:0.000000px;}
.va_c02194{vertical-align:1.440600px;}
.v5_c02194{vertical-align:2.520000px;}
.v6_c02194{vertical-align:3.960000px;}
.v1_c02194{vertical-align:11.160000px;}
.ls23_c02194{letter-spacing:-0.216432px;}
.ls25_c02194{letter-spacing:-0.180360px;}
.ls24_c02194{letter-spacing:-0.138276px;}
.ls2c_c02194{letter-spacing:-0.118800px;}
.ls2d_c02194{letter-spacing:-0.070200px;}
.ls2a_c02194{letter-spacing:-0.043200px;}
.ls2b_c02194{letter-spacing:-0.010800px;}
.ls27_c02194{letter-spacing:-0.009576px;}
.ls30_c02194{letter-spacing:-0.004788px;}
.ls22_c02194{letter-spacing:0.000000px;}
.ls3_c02194{letter-spacing:0.006588px;}
.ls1_c02194{letter-spacing:0.007200px;}
.ls12_c02194{letter-spacing:0.010800px;}
.ls14_c02194{letter-spacing:0.012636px;}
.ls4_c02194{letter-spacing:0.013176px;}
.ls1c_c02194{letter-spacing:0.019152px;}
.ls5_c02194{letter-spacing:0.026352px;}
.ls1d_c02194{letter-spacing:0.028728px;}
.ls0_c02194{letter-spacing:0.028800px;}
.ls15_c02194{letter-spacing:0.032400px;}
.ls13_c02194{letter-spacing:0.037800px;}
.lse_c02194{letter-spacing:0.043092px;}
.ls17_c02194{letter-spacing:0.043200px;}
.ls11_c02194{letter-spacing:0.046116px;}
.ls20_c02194{letter-spacing:0.052668px;}
.ls2_c02194{letter-spacing:0.052704px;}
.ls28_c02194{letter-spacing:0.059292px;}
.lsc_c02194{letter-spacing:0.067032px;}
.ls8_c02194{letter-spacing:0.072468px;}
.lsf_c02194{letter-spacing:0.076608px;}
.ls31_c02194{letter-spacing:0.081396px;}
.lsb_c02194{letter-spacing:0.086184px;}
.ls7_c02194{letter-spacing:0.092232px;}
.ls16_c02194{letter-spacing:0.110124px;}
.lsd_c02194{letter-spacing:0.114912px;}
.ls10_c02194{letter-spacing:0.119700px;}
.ls1a_c02194{letter-spacing:0.124488px;}
.lsa_c02194{letter-spacing:0.125172px;}
.ls1b_c02194{letter-spacing:0.134064px;}
.ls2e_c02194{letter-spacing:0.135000px;}
.ls21_c02194{letter-spacing:0.138852px;}
.ls29_c02194{letter-spacing:0.151200px;}
.ls6_c02194{letter-spacing:0.158112px;}
.ls1f_c02194{letter-spacing:0.162792px;}
.ls26_c02194{letter-spacing:0.177876px;}
.ls1e_c02194{letter-spacing:0.181944px;}
.ls19_c02194{letter-spacing:0.205884px;}
.ls2f_c02194{letter-spacing:155.698200px;}
.ls18_c02194{letter-spacing:195.030000px;}
.ls9_c02194{letter-spacing:228.330000px;}
.sc__c02194{text-shadow:none;}
.sc0_c02194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02194{-webkit-text-stroke:0px transparent;}
.sc0_c02194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02194{word-spacing:-16.476588px;}
.ws17_c02194{word-spacing:-0.296856px;}
.ws16_c02194{word-spacing:-0.272916px;}
.ws21_c02194{word-spacing:-0.253764px;}
.ws23_c02194{word-spacing:-0.229824px;}
.ws1a_c02194{word-spacing:-0.225036px;}
.ws19_c02194{word-spacing:-0.215460px;}
.ws12_c02194{word-spacing:-0.210672px;}
.ws22_c02194{word-spacing:-0.205884px;}
.ws24_c02194{word-spacing:-0.177156px;}
.ws1b_c02194{word-spacing:-0.172368px;}
.ws1d_c02194{word-spacing:-0.119700px;}
.ws7_c02194{word-spacing:-0.115200px;}
.ws1c_c02194{word-spacing:-0.110124px;}
.ws15_c02194{word-spacing:-0.101088px;}
.ws20_c02194{word-spacing:-0.090972px;}
.ws6_c02194{word-spacing:-0.050400px;}
.ws1f_c02194{word-spacing:-0.028800px;}
.ws8_c02194{word-spacing:-0.007200px;}
.ws5_c02194{word-spacing:0.000000px;}
.wsc_c02194{word-spacing:0.019764px;}
.ws14_c02194{word-spacing:0.032940px;}
.ws9_c02194{word-spacing:0.039528px;}
.ws13_c02194{word-spacing:0.046116px;}
.wsb_c02194{word-spacing:0.065880px;}
.wsa_c02194{word-spacing:0.228456px;}
.wsf_c02194{word-spacing:1.235304px;}
.ws11_c02194{word-spacing:1.273608px;}
.ws10_c02194{word-spacing:1.307124px;}
.wsd_c02194{word-spacing:5.941908px;}
.wse_c02194{word-spacing:5.961060px;}
.ws4_c02194{word-spacing:47.809440px;}
.ws3_c02194{word-spacing:74.809440px;}
.ws18_c02194{word-spacing:156.378600px;}
.ws1e_c02194{word-spacing:156.384000px;}
.ws25_c02194{word-spacing:181.936800px;}
.ws2_c02194{word-spacing:227.809440px;}
.ws1_c02194{word-spacing:343.369440px;}
._31_c02194{margin-left:-29.521800px;}
._2f_c02194{margin-left:-26.916984px;}
._0_c02194{margin-left:-1.296000px;}
._2_c02194{width:1.088172px;}
._32_c02194{width:12.241800px;}
._30_c02194{width:14.040000px;}
._33_c02194{width:17.265528px;}
._7_c02194{width:38.631240px;}
._6_c02194{width:40.080600px;}
._1f_c02194{width:42.838200px;}
._4_c02194{width:50.555520px;}
._1e_c02194{width:54.444816px;}
._2d_c02194{width:60.264000px;}
._1a_c02194{width:61.693200px;}
._2b_c02194{width:63.855000px;}
._13_c02194{width:66.375000px;}
._2c_c02194{width:73.350180px;}
._1c_c02194{width:75.420000px;}
._14_c02194{width:77.310180px;}
._18_c02194{width:78.555600px;}
._22_c02194{width:79.574796px;}
._c_c02194{width:81.954000px;}
._1d_c02194{width:84.060000px;}
._26_c02194{width:85.528440px;}
._b_c02194{width:87.141600px;}
._19_c02194{width:88.704000px;}
._21_c02194{width:97.380000px;}
._17_c02194{width:99.463860px;}
._15_c02194{width:101.095200px;}
._25_c02194{width:104.544000px;}
._29_c02194{width:105.585300px;}
._2a_c02194{width:108.624600px;}
._16_c02194{width:112.969440px;}
._d_c02194{width:115.020000px;}
._28_c02194{width:116.168400px;}
._e_c02194{width:117.900000px;}
._10_c02194{width:120.261600px;}
._12_c02194{width:123.516000px;}
._2e_c02194{width:125.636220px;}
._f_c02194{width:127.389600px;}
._1b_c02194{width:129.607020px;}
._23_c02194{width:133.666920px;}
._11_c02194{width:137.784600px;}
._24_c02194{width:142.247016px;}
._20_c02194{width:155.700000px;}
._27_c02194{width:209.964168px;}
._a_c02194{width:212.395536px;}
._5_c02194{width:228.516372px;}
._3_c02194{width:315.630720px;}
._8_c02194{width:344.076372px;}
._1_c02194{width:373.499208px;}
._9_c02194{width:660.110220px;}
.fc0_c02194{color:rgb(0,0,0);}
.fs6_c02194{font-size:11.880000px;}
.fs5_c02194{font-size:42.120000px;}
.fs4_c02194{font-size:47.880000px;}
.fs1_c02194{font-size:54.000000px;}
.fs3_c02194{font-size:60.120000px;}
.fs2_c02194{font-size:65.880000px;}
.fs0_c02194{font-size:72.000000px;}
.y0_c02194{bottom:0.000000px;}
.y3_c02194{bottom:57.360450px;}
.y2_c02194{bottom:78.060450px;}
.y59_c02194{bottom:125.580978px;}
.y58_c02194{bottom:129.000933px;}
.y57_c02194{bottom:132.420888px;}
.y56_c02194{bottom:135.930834px;}
.y55_c02194{bottom:139.350789px;}
.y54_c02194{bottom:142.770744px;}
.y53_c02194{bottom:146.280690px;}
.y52_c02194{bottom:149.700645px;}
.y51_c02194{bottom:153.120600px;}
.y50_c02194{bottom:158.970450px;}
.y4f_c02194{bottom:162.750900px;}
.y4e_c02194{bottom:177.870600px;}
.y4d_c02194{bottom:181.740450px;}
.y4c_c02194{bottom:200.730450px;}
.y4b_c02194{bottom:215.850450px;}
.y4a_c02194{bottom:219.720450px;}
.y49_c02194{bottom:235.830450px;}
.y48_c02194{bottom:255.090450px;}
.y47_c02194{bottom:271.560450px;}
.y46_c02194{bottom:292.350450px;}
.y45_c02194{bottom:301.170450px;}
.y44_c02194{bottom:304.950900px;}
.y43_c02194{bottom:320.070450px;}
.y42_c02194{bottom:323.940450px;}
.y41_c02194{bottom:342.930450px;}
.y40_c02194{bottom:358.050450px;}
.y3f_c02194{bottom:361.830900px;}
.y3e_c02194{bottom:377.040600px;}
.y3d_c02194{bottom:380.820900px;}
.y3c_c02194{bottom:396.030450px;}
.y3b_c02194{bottom:399.810450px;}
.y3a_c02194{bottom:418.800450px;}
.y39_c02194{bottom:433.920450px;}
.y38_c02194{bottom:437.790600px;}
.y37_c02194{bottom:453.990450px;}
.y36_c02194{bottom:473.160450px;}
.y35_c02194{bottom:489.360600px;}
.y34_c02194{bottom:508.710600px;}
.y33_c02194{bottom:517.530600px;}
.y32_c02194{bottom:521.310900px;}
.y31_c02194{bottom:536.430450px;}
.y30_c02194{bottom:540.300000px;}
.y2f_c02194{bottom:555.420450px;}
.y2e_c02194{bottom:559.290000px;}
.y2d_c02194{bottom:574.410450px;}
.y2c_c02194{bottom:578.190900px;}
.y2b_c02194{bottom:593.400450px;}
.y2a_c02194{bottom:597.180450px;}
.y29_c02194{bottom:616.170450px;}
.y28_c02194{bottom:631.290450px;}
.y27_c02194{bottom:635.160450px;}
.y26_c02194{bottom:651.360450px;}
.y25_c02194{bottom:670.530450px;}
.y24_c02194{bottom:687.000450px;}
.y23_c02194{bottom:707.790450px;}
.y22_c02194{bottom:716.610450px;}
.y21_c02194{bottom:720.390900px;}
.y20_c02194{bottom:735.600450px;}
.y1f_c02194{bottom:739.380900px;}
.y1e_c02194{bottom:754.500450px;}
.y1d_c02194{bottom:758.370000px;}
.y1c_c02194{bottom:773.490450px;}
.y1b_c02194{bottom:777.360150px;}
.y1a_c02194{bottom:792.480450px;}
.y19_c02194{bottom:796.350450px;}
.y18_c02194{bottom:815.250450px;}
.y17_c02194{bottom:830.460450px;}
.y16_c02194{bottom:834.240450px;}
.y15_c02194{bottom:850.440450px;}
.y14_c02194{bottom:869.700450px;}
.y13_c02194{bottom:885.810450px;}
.y12_c02194{bottom:904.530450px;}
.y11_c02194{bottom:919.920099px;}
.y10_c02194{bottom:933.780162px;}
.yf_c02194{bottom:947.550450px;}
.ye_c02194{bottom:964.470450px;}
.yd_c02194{bottom:983.460450px;}
.yc_c02194{bottom:1002.360450px;}
.yb_c02194{bottom:1021.350450px;}
.ya_c02194{bottom:1043.850450px;}
.y8_c02194{bottom:1044.030450px;}
.y9_c02194{bottom:1063.290450px;}
.y7_c02194{bottom:1083.090450px;}
.y6_c02194{bottom:1101.360450px;}
.y5_c02194{bottom:1118.010450px;}
.y4_c02194{bottom:1139.250450px;}
.y1_c02194{bottom:1193.160450px;}
.hb_c02194{height:10.551621px;}
.h7_c02194{height:42.011895px;}
.h3_c02194{height:47.961914px;}
.h8_c02194{height:48.570293px;}
.hc_c02194{height:48.570893px;}
.h5_c02194{height:52.751777px;}
.h6_c02194{height:57.805840px;}
.h4_c02194{height:58.513535px;}
.hf_c02194{height:62.472935px;}
.h9_c02194{height:62.473535px;}
.he_c02194{height:62.474135px;}
.ha_c02194{height:62.833535px;}
.hd_c02194{height:62.834135px;}
.h2_c02194{height:63.175781px;}
.h1_c02194{height:63.949219px;}
.h0_c02194{height:1263.000000px;}
.w1_c02194{width:892.500000px;}
.w0_c02194{width:892.830000px;}
.x0_c02194{left:0.000000px;}
.x1_c02194{left:127.620000px;}
.x4_c02194{left:134.550000px;}
.x3_c02194{left:135.630000px;}
.x7_c02194{left:143.820000px;}
.x8_c02194{left:150.210000px;}
.x9_c02194{left:220.230000px;}
.x5_c02194{left:343.980000px;}
.x6_c02194{left:378.360000px;}
.x2_c02194{left:433.080000px;}
@media print{
.v7_c02194{vertical-align:-13.440000pt;}
.v8_c02194{vertical-align:-11.200000pt;}
.v9_c02194{vertical-align:-9.920000pt;}
.v3_c02194{vertical-align:-3.520000pt;}
.v2_c02194{vertical-align:-2.240000pt;}
.v4_c02194{vertical-align:-1.280000pt;}
.v0_c02194{vertical-align:0.000000pt;}
.va_c02194{vertical-align:1.280533pt;}
.v5_c02194{vertical-align:2.240000pt;}
.v6_c02194{vertical-align:3.520000pt;}
.v1_c02194{vertical-align:9.920000pt;}
.ls23_c02194{letter-spacing:-0.192384pt;}
.ls25_c02194{letter-spacing:-0.160320pt;}
.ls24_c02194{letter-spacing:-0.122912pt;}
.ls2c_c02194{letter-spacing:-0.105600pt;}
.ls2d_c02194{letter-spacing:-0.062400pt;}
.ls2a_c02194{letter-spacing:-0.038400pt;}
.ls2b_c02194{letter-spacing:-0.009600pt;}
.ls27_c02194{letter-spacing:-0.008512pt;}
.ls30_c02194{letter-spacing:-0.004256pt;}
.ls22_c02194{letter-spacing:0.000000pt;}
.ls3_c02194{letter-spacing:0.005856pt;}
.ls1_c02194{letter-spacing:0.006400pt;}
.ls12_c02194{letter-spacing:0.009600pt;}
.ls14_c02194{letter-spacing:0.011232pt;}
.ls4_c02194{letter-spacing:0.011712pt;}
.ls1c_c02194{letter-spacing:0.017024pt;}
.ls5_c02194{letter-spacing:0.023424pt;}
.ls1d_c02194{letter-spacing:0.025536pt;}
.ls0_c02194{letter-spacing:0.025600pt;}
.ls15_c02194{letter-spacing:0.028800pt;}
.ls13_c02194{letter-spacing:0.033600pt;}
.lse_c02194{letter-spacing:0.038304pt;}
.ls17_c02194{letter-spacing:0.038400pt;}
.ls11_c02194{letter-spacing:0.040992pt;}
.ls20_c02194{letter-spacing:0.046816pt;}
.ls2_c02194{letter-spacing:0.046848pt;}
.ls28_c02194{letter-spacing:0.052704pt;}
.lsc_c02194{letter-spacing:0.059584pt;}
.ls8_c02194{letter-spacing:0.064416pt;}
.lsf_c02194{letter-spacing:0.068096pt;}
.ls31_c02194{letter-spacing:0.072352pt;}
.lsb_c02194{letter-spacing:0.076608pt;}
.ls7_c02194{letter-spacing:0.081984pt;}
.ls16_c02194{letter-spacing:0.097888pt;}
.lsd_c02194{letter-spacing:0.102144pt;}
.ls10_c02194{letter-spacing:0.106400pt;}
.ls1a_c02194{letter-spacing:0.110656pt;}
.lsa_c02194{letter-spacing:0.111264pt;}
.ls1b_c02194{letter-spacing:0.119168pt;}
.ls2e_c02194{letter-spacing:0.120000pt;}
.ls21_c02194{letter-spacing:0.123424pt;}
.ls29_c02194{letter-spacing:0.134400pt;}
.ls6_c02194{letter-spacing:0.140544pt;}
.ls1f_c02194{letter-spacing:0.144704pt;}
.ls26_c02194{letter-spacing:0.158112pt;}
.ls1e_c02194{letter-spacing:0.161728pt;}
.ls19_c02194{letter-spacing:0.183008pt;}
.ls2f_c02194{letter-spacing:138.398400pt;}
.ls18_c02194{letter-spacing:173.360000pt;}
.ls9_c02194{letter-spacing:202.960000pt;}
.ws0_c02194{word-spacing:-14.645856pt;}
.ws17_c02194{word-spacing:-0.263872pt;}
.ws16_c02194{word-spacing:-0.242592pt;}
.ws21_c02194{word-spacing:-0.225568pt;}
.ws23_c02194{word-spacing:-0.204288pt;}
.ws1a_c02194{word-spacing:-0.200032pt;}
.ws19_c02194{word-spacing:-0.191520pt;}
.ws12_c02194{word-spacing:-0.187264pt;}
.ws22_c02194{word-spacing:-0.183008pt;}
.ws24_c02194{word-spacing:-0.157472pt;}
.ws1b_c02194{word-spacing:-0.153216pt;}
.ws1d_c02194{word-spacing:-0.106400pt;}
.ws7_c02194{word-spacing:-0.102400pt;}
.ws1c_c02194{word-spacing:-0.097888pt;}
.ws15_c02194{word-spacing:-0.089856pt;}
.ws20_c02194{word-spacing:-0.080864pt;}
.ws6_c02194{word-spacing:-0.044800pt;}
.ws1f_c02194{word-spacing:-0.025600pt;}
.ws8_c02194{word-spacing:-0.006400pt;}
.ws5_c02194{word-spacing:0.000000pt;}
.wsc_c02194{word-spacing:0.017568pt;}
.ws14_c02194{word-spacing:0.029280pt;}
.ws9_c02194{word-spacing:0.035136pt;}
.ws13_c02194{word-spacing:0.040992pt;}
.wsb_c02194{word-spacing:0.058560pt;}
.wsa_c02194{word-spacing:0.203072pt;}
.wsf_c02194{word-spacing:1.098048pt;}
.ws11_c02194{word-spacing:1.132096pt;}
.ws10_c02194{word-spacing:1.161888pt;}
.wsd_c02194{word-spacing:5.281696pt;}
.wse_c02194{word-spacing:5.298720pt;}
.ws4_c02194{word-spacing:42.497280pt;}
.ws3_c02194{word-spacing:66.497280pt;}
.ws18_c02194{word-spacing:139.003200pt;}
.ws1e_c02194{word-spacing:139.008000pt;}
.ws25_c02194{word-spacing:161.721600pt;}
.ws2_c02194{word-spacing:202.497280pt;}
.ws1_c02194{word-spacing:305.217280pt;}
._31_c02194{margin-left:-26.241600pt;}
._2f_c02194{margin-left:-23.926208pt;}
._0_c02194{margin-left:-1.152000pt;}
._2_c02194{width:0.967264pt;}
._32_c02194{width:10.881600pt;}
._30_c02194{width:12.480000pt;}
._33_c02194{width:15.347136pt;}
._7_c02194{width:34.338880pt;}
._6_c02194{width:35.627200pt;}
._1f_c02194{width:38.078400pt;}
._4_c02194{width:44.938240pt;}
._1e_c02194{width:48.395392pt;}
._2d_c02194{width:53.568000pt;}
._1a_c02194{width:54.838400pt;}
._2b_c02194{width:56.760000pt;}
._13_c02194{width:59.000000pt;}
._2c_c02194{width:65.200160pt;}
._1c_c02194{width:67.040000pt;}
._14_c02194{width:68.720160pt;}
._18_c02194{width:69.827200pt;}
._22_c02194{width:70.733152pt;}
._c_c02194{width:72.848000pt;}
._1d_c02194{width:74.720000pt;}
._26_c02194{width:76.025280pt;}
._b_c02194{width:77.459200pt;}
._19_c02194{width:78.848000pt;}
._21_c02194{width:86.560000pt;}
._17_c02194{width:88.412320pt;}
._15_c02194{width:89.862400pt;}
._25_c02194{width:92.928000pt;}
._29_c02194{width:93.853600pt;}
._2a_c02194{width:96.555200pt;}
._16_c02194{width:100.417280pt;}
._d_c02194{width:102.240000pt;}
._28_c02194{width:103.260800pt;}
._e_c02194{width:104.800000pt;}
._10_c02194{width:106.899200pt;}
._12_c02194{width:109.792000pt;}
._2e_c02194{width:111.676640pt;}
._f_c02194{width:113.235200pt;}
._1b_c02194{width:115.206240pt;}
._23_c02194{width:118.815040pt;}
._11_c02194{width:122.475200pt;}
._24_c02194{width:126.441792pt;}
._20_c02194{width:138.400000pt;}
._27_c02194{width:186.634816pt;}
._a_c02194{width:188.796032pt;}
._5_c02194{width:203.125664pt;}
._3_c02194{width:280.560640pt;}
._8_c02194{width:305.845664pt;}
._1_c02194{width:331.999296pt;}
._9_c02194{width:586.764640pt;}
.fs6_c02194{font-size:10.560000pt;}
.fs5_c02194{font-size:37.440000pt;}
.fs4_c02194{font-size:42.560000pt;}
.fs1_c02194{font-size:48.000000pt;}
.fs3_c02194{font-size:53.440000pt;}
.fs2_c02194{font-size:58.560000pt;}
.fs0_c02194{font-size:64.000000pt;}
.y0_c02194{bottom:0.000000pt;}
.y3_c02194{bottom:50.987067pt;}
.y2_c02194{bottom:69.387067pt;}
.y59_c02194{bottom:111.627536pt;}
.y58_c02194{bottom:114.667496pt;}
.y57_c02194{bottom:117.707456pt;}
.y56_c02194{bottom:120.827408pt;}
.y55_c02194{bottom:123.867368pt;}
.y54_c02194{bottom:126.907328pt;}
.y53_c02194{bottom:130.027280pt;}
.y52_c02194{bottom:133.067240pt;}
.y51_c02194{bottom:136.107200pt;}
.y50_c02194{bottom:141.307067pt;}
.y4f_c02194{bottom:144.667467pt;}
.y4e_c02194{bottom:158.107200pt;}
.y4d_c02194{bottom:161.547067pt;}
.y4c_c02194{bottom:178.427067pt;}
.y4b_c02194{bottom:191.867067pt;}
.y4a_c02194{bottom:195.307067pt;}
.y49_c02194{bottom:209.627067pt;}
.y48_c02194{bottom:226.747067pt;}
.y47_c02194{bottom:241.387067pt;}
.y46_c02194{bottom:259.867067pt;}
.y45_c02194{bottom:267.707067pt;}
.y44_c02194{bottom:271.067467pt;}
.y43_c02194{bottom:284.507067pt;}
.y42_c02194{bottom:287.947067pt;}
.y41_c02194{bottom:304.827067pt;}
.y40_c02194{bottom:318.267067pt;}
.y3f_c02194{bottom:321.627467pt;}
.y3e_c02194{bottom:335.147200pt;}
.y3d_c02194{bottom:338.507467pt;}
.y3c_c02194{bottom:352.027067pt;}
.y3b_c02194{bottom:355.387067pt;}
.y3a_c02194{bottom:372.267067pt;}
.y39_c02194{bottom:385.707067pt;}
.y38_c02194{bottom:389.147200pt;}
.y37_c02194{bottom:403.547067pt;}
.y36_c02194{bottom:420.587067pt;}
.y35_c02194{bottom:434.987200pt;}
.y34_c02194{bottom:452.187200pt;}
.y33_c02194{bottom:460.027200pt;}
.y32_c02194{bottom:463.387467pt;}
.y31_c02194{bottom:476.827067pt;}
.y30_c02194{bottom:480.266667pt;}
.y2f_c02194{bottom:493.707067pt;}
.y2e_c02194{bottom:497.146667pt;}
.y2d_c02194{bottom:510.587067pt;}
.y2c_c02194{bottom:513.947467pt;}
.y2b_c02194{bottom:527.467067pt;}
.y2a_c02194{bottom:530.827067pt;}
.y29_c02194{bottom:547.707067pt;}
.y28_c02194{bottom:561.147067pt;}
.y27_c02194{bottom:564.587067pt;}
.y26_c02194{bottom:578.987067pt;}
.y25_c02194{bottom:596.027067pt;}
.y24_c02194{bottom:610.667067pt;}
.y23_c02194{bottom:629.147067pt;}
.y22_c02194{bottom:636.987067pt;}
.y21_c02194{bottom:640.347467pt;}
.y20_c02194{bottom:653.867067pt;}
.y1f_c02194{bottom:657.227467pt;}
.y1e_c02194{bottom:670.667067pt;}
.y1d_c02194{bottom:674.106667pt;}
.y1c_c02194{bottom:687.547067pt;}
.y1b_c02194{bottom:690.986800pt;}
.y1a_c02194{bottom:704.427067pt;}
.y19_c02194{bottom:707.867067pt;}
.y18_c02194{bottom:724.667067pt;}
.y17_c02194{bottom:738.187067pt;}
.y16_c02194{bottom:741.547067pt;}
.y15_c02194{bottom:755.947067pt;}
.y14_c02194{bottom:773.067067pt;}
.y13_c02194{bottom:787.387067pt;}
.y12_c02194{bottom:804.027067pt;}
.y11_c02194{bottom:817.706755pt;}
.y10_c02194{bottom:830.026811pt;}
.yf_c02194{bottom:842.267067pt;}
.ye_c02194{bottom:857.307067pt;}
.yd_c02194{bottom:874.187067pt;}
.yc_c02194{bottom:890.987067pt;}
.yb_c02194{bottom:907.867067pt;}
.ya_c02194{bottom:927.867067pt;}
.y8_c02194{bottom:928.027067pt;}
.y9_c02194{bottom:945.147067pt;}
.y7_c02194{bottom:962.747067pt;}
.y6_c02194{bottom:978.987067pt;}
.y5_c02194{bottom:993.787067pt;}
.y4_c02194{bottom:1012.667067pt;}
.y1_c02194{bottom:1060.587067pt;}
.hb_c02194{height:9.379219pt;}
.h7_c02194{height:37.343906pt;}
.h3_c02194{height:42.632812pt;}
.h8_c02194{height:43.173594pt;}
.hc_c02194{height:43.174127pt;}
.h5_c02194{height:46.890469pt;}
.h6_c02194{height:51.382969pt;}
.h4_c02194{height:52.012031pt;}
.hf_c02194{height:55.531498pt;}
.h9_c02194{height:55.532031pt;}
.he_c02194{height:55.532565pt;}
.ha_c02194{height:55.852031pt;}
.hd_c02194{height:55.852565pt;}
.h2_c02194{height:56.156250pt;}
.h1_c02194{height:56.843750pt;}
.h0_c02194{height:1122.666667pt;}
.w1_c02194{width:793.333333pt;}
.w0_c02194{width:793.626667pt;}
.x0_c02194{left:0.000000pt;}
.x1_c02194{left:113.440000pt;}
.x4_c02194{left:119.600000pt;}
.x3_c02194{left:120.560000pt;}
.x7_c02194{left:127.840000pt;}
.x8_c02194{left:133.520000pt;}
.x9_c02194{left:195.760000pt;}
.x5_c02194{left:305.760000pt;}
.x6_c02194{left:336.320000pt;}
.x2_c02194{left:384.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_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_6607bc67a01a9c8b5d428a18.woff2')format("woff");}.ff1_c02195{font-family:ff1_c02195;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02195;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v8_c02195{vertical-align:-15.478200px;}
.vb_c02195{vertical-align:-13.681800px;}
.v9_c02195{vertical-align:-12.600000px;}
.va_c02195{vertical-align:-11.160000px;}
.v3_c02195{vertical-align:-4.320000px;}
.v2_c02195{vertical-align:-2.880000px;}
.v4_c02195{vertical-align:-1.800000px;}
.v0_c02195{vertical-align:0.000000px;}
.v7_c02195{vertical-align:1.080000px;}
.v5_c02195{vertical-align:2.520000px;}
.v6_c02195{vertical-align:4.320000px;}
.v1_c02195{vertical-align:11.160000px;}
.vc_c02195{vertical-align:38.159400px;}
.ls2a_c02195{letter-spacing:-0.118800px;}
.ls36_c02195{letter-spacing:-0.090972px;}
.ls34_c02195{letter-spacing:-0.086184px;}
.ls2b_c02195{letter-spacing:-0.070200px;}
.ls37_c02195{letter-spacing:-0.059400px;}
.ls28_c02195{letter-spacing:-0.043200px;}
.ls32_c02195{letter-spacing:-0.019152px;}
.ls29_c02195{letter-spacing:-0.010800px;}
.ls2d_c02195{letter-spacing:-0.004788px;}
.ls25_c02195{letter-spacing:0.000000px;}
.ls26_c02195{letter-spacing:0.007200px;}
.ls1_c02195{letter-spacing:0.009576px;}
.ls2_c02195{letter-spacing:0.010800px;}
.ls4_c02195{letter-spacing:0.012636px;}
.ls19_c02195{letter-spacing:0.013176px;}
.ls0_c02195{letter-spacing:0.014400px;}
.lsb_c02195{letter-spacing:0.019152px;}
.ls15_c02195{letter-spacing:0.021600px;}
.lsc_c02195{letter-spacing:0.028728px;}
.lsd_c02195{letter-spacing:0.028800px;}
.ls5_c02195{letter-spacing:0.032400px;}
.ls3_c02195{letter-spacing:0.037800px;}
.ls17_c02195{letter-spacing:0.039528px;}
.lse_c02195{letter-spacing:0.043092px;}
.ls8_c02195{letter-spacing:0.043200px;}
.ls1f_c02195{letter-spacing:0.046116px;}
.ls12_c02195{letter-spacing:0.052668px;}
.ls1c_c02195{letter-spacing:0.059292px;}
.ls18_c02195{letter-spacing:0.065880px;}
.ls16_c02195{letter-spacing:0.067032px;}
.ls22_c02195{letter-spacing:0.072468px;}
.lsf_c02195{letter-spacing:0.076608px;}
.ls1d_c02195{letter-spacing:0.079056px;}
.ls31_c02195{letter-spacing:0.081396px;}
.ls23_c02195{letter-spacing:0.085644px;}
.ls21_c02195{letter-spacing:0.092232px;}
.ls13_c02195{letter-spacing:0.114912px;}
.ls7_c02195{letter-spacing:0.124488px;}
.ls1b_c02195{letter-spacing:0.131760px;}
.lsa_c02195{letter-spacing:0.134064px;}
.ls2c_c02195{letter-spacing:0.135000px;}
.ls38_c02195{letter-spacing:0.138348px;}
.ls14_c02195{letter-spacing:0.138852px;}
.ls27_c02195{letter-spacing:0.151200px;}
.ls1a_c02195{letter-spacing:0.151524px;}
.ls6_c02195{letter-spacing:0.158112px;}
.ls11_c02195{letter-spacing:0.162792px;}
.ls33_c02195{letter-spacing:0.167580px;}
.ls1e_c02195{letter-spacing:0.177876px;}
.ls10_c02195{letter-spacing:0.181944px;}
.ls20_c02195{letter-spacing:130.500000px;}
.ls35_c02195{letter-spacing:143.818200px;}
.ls2f_c02195{letter-spacing:154.887156px;}
.ls2e_c02195{letter-spacing:156.421800px;}
.ls30_c02195{letter-spacing:156.778200px;}
.ls9_c02195{letter-spacing:200.790000px;}
.ls24_c02195{letter-spacing:215.009676px;}
.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;}
}
.wse_c02195{word-spacing:-0.272916px;}
.ws13_c02195{word-spacing:-0.253764px;}
.ws15_c02195{word-spacing:-0.229824px;}
.wsc_c02195{word-spacing:-0.225036px;}
.wsb_c02195{word-spacing:-0.215460px;}
.ws14_c02195{word-spacing:-0.205884px;}
.wsd_c02195{word-spacing:-0.172368px;}
.ws18_c02195{word-spacing:-0.167580px;}
.ws10_c02195{word-spacing:-0.119700px;}
.wsf_c02195{word-spacing:-0.110124px;}
.wsa_c02195{word-spacing:-0.101088px;}
.ws9_c02195{word-spacing:-0.100548px;}
.ws17_c02195{word-spacing:-0.086400px;}
.ws1c_c02195{word-spacing:-0.064800px;}
.ws7_c02195{word-spacing:-0.050400px;}
.ws11_c02195{word-spacing:-0.028800px;}
.ws16_c02195{word-spacing:-0.021600px;}
.ws8_c02195{word-spacing:-0.014400px;}
.ws6_c02195{word-spacing:0.000000px;}
.ws20_c02195{word-spacing:0.006588px;}
.ws1e_c02195{word-spacing:0.013176px;}
.ws1f_c02195{word-spacing:0.019764px;}
.ws1a_c02195{word-spacing:0.026352px;}
.ws21_c02195{word-spacing:0.032940px;}
.ws1d_c02195{word-spacing:0.046116px;}
.ws19_c02195{word-spacing:0.052704px;}
.ws1b_c02195{word-spacing:0.079056px;}
.ws1_c02195{word-spacing:48.169440px;}
.ws0_c02195{word-spacing:75.169440px;}
.ws4_c02195{word-spacing:80.196372px;}
.ws5_c02195{word-spacing:113.316372px;}
.ws12_c02195{word-spacing:156.378600px;}
.ws2_c02195{word-spacing:209.842380px;}
.ws3_c02195{word-spacing:242.962380px;}
._26_c02195{margin-left:-1.224828px;}
._20_c02195{width:1.245492px;}
._1f_c02195{width:26.233200px;}
._14_c02195{width:42.845688px;}
._29_c02195{width:43.938360px;}
._b_c02195{width:51.660000px;}
._f_c02195{width:61.344000px;}
._1a_c02195{width:62.988588px;}
._7_c02195{width:66.375000px;}
._11_c02195{width:75.420000px;}
._8_c02195{width:77.310180px;}
._e_c02195{width:82.980000px;}
._1_c02195{width:84.834000px;}
._0_c02195{width:88.221600px;}
._1b_c02195{width:90.270180px;}
._1c_c02195{width:91.288440px;}
._28_c02195{width:98.100000px;}
._9_c02195{width:100.015200px;}
._23_c02195{width:106.059420px;}
._19_c02195{width:107.736120px;}
._6_c02195{width:109.836000px;}
._a_c02195{width:113.329440px;}
._25_c02195{width:115.918200px;}
._c_c02195{width:119.705220px;}
._2_c02195{width:122.220000px;}
._5_c02195{width:124.666200px;}
._3_c02195{width:125.820000px;}
._24_c02195{width:127.198728px;}
._10_c02195{width:129.956220px;}
._4_c02195{width:132.789600px;}
._1e_c02195{width:134.074296px;}
._15_c02195{width:136.200168px;}
._d_c02195{width:138.575016px;}
._22_c02195{width:143.820000px;}
._36_c02195{width:145.787688px;}
._12_c02195{width:149.146920px;}
._18_c02195{width:154.738944px;}
._27_c02195{width:156.420000px;}
._16_c02195{width:157.727016px;}
._34_c02195{width:160.478496px;}
._17_c02195{width:163.620000px;}
._21_c02195{width:171.066384px;}
._13_c02195{width:182.664000px;}
._30_c02195{width:193.238496px;}
._2c_c02195{width:223.110000px;}
._1d_c02195{width:225.444168px;}
._2f_c02195{width:240.169608px;}
._2b_c02195{width:275.387688px;}
._37_c02195{width:279.163620px;}
._2a_c02195{width:290.729088px;}
._3d_c02195{width:333.890136px;}
._2d_c02195{width:338.787504px;}
._2e_c02195{width:349.525944px;}
._32_c02195{width:355.461732px;}
._31_c02195{width:373.010040px;}
._3b_c02195{width:417.096036px;}
._33_c02195{width:421.221024px;}
._3c_c02195{width:442.380780px;}
._3e_c02195{width:500.888808px;}
._39_c02195{width:530.255988px;}
._38_c02195{width:720.157752px;}
._3a_c02195{width:789.283512px;}
._35_c02195{width:832.851000px;}
.fc0_c02195{color:rgb(0,0,0);}
.fs6_c02195{font-size:11.880000px;}
.fs7_c02195{font-size:36.000000px;}
.fs3_c02195{font-size:42.120000px;}
.fs1_c02195{font-size:47.880000px;}
.fs2_c02195{font-size:54.000000px;}
.fs5_c02195{font-size:60.120000px;}
.fs4_c02195{font-size:65.880000px;}
.fs0_c02195{font-size:72.000000px;}
.y0_c02195{bottom:0.000000px;}
.y3_c02195{bottom:57.360450px;}
.y2_c02195{bottom:78.060450px;}
.y4a_c02195{bottom:113.790600px;}
.y49_c02195{bottom:120.630450px;}
.y48_c02195{bottom:139.620600px;}
.y47_c02195{bottom:158.520450px;}
.y46_c02195{bottom:177.510450px;}
.y45_c02195{bottom:196.500450px;}
.y44_c02195{bottom:215.490450px;}
.y43_c02195{bottom:234.480450px;}
.y42_c02195{bottom:253.380450px;}
.y41_c02195{bottom:272.370450px;}
.y40_c02195{bottom:290.730450px;}
.y3f_c02195{bottom:307.200450px;}
.y3e_c02195{bottom:329.340450px;}
.y3d_c02195{bottom:340.320450px;}
.y3c_c02195{bottom:356.610450px;}
.y3b_c02195{bottom:375.600450px;}
.y3a_c02195{bottom:394.590600px;}
.y39_c02195{bottom:413.490450px;}
.y38_c02195{bottom:432.480450px;}
.y37_c02195{bottom:451.470450px;}
.y36_c02195{bottom:470.460600px;}
.y35_c02195{bottom:488.370600px;}
.y34_c02195{bottom:503.490450px;}
.y33_c02195{bottom:525.180162px;}
.y32_c02195{bottom:538.950450px;}
.y31_c02195{bottom:554.790450px;}
.y30_c02195{bottom:575.310450px;}
.y2f_c02195{bottom:590.790450px;}
.y2e_c02195{bottom:594.660000px;}
.y2d_c02195{bottom:613.650000px;}
.y2c_c02195{bottom:628.770450px;}
.y2b_c02195{bottom:632.640000px;}
.y2a_c02195{bottom:651.540900px;}
.y29_c02195{bottom:666.750450px;}
.y28_c02195{bottom:670.530450px;}
.y27_c02195{bottom:689.520450px;}
.y26_c02195{bottom:704.640450px;}
.y25_c02195{bottom:708.510000px;}
.y24_c02195{bottom:727.500000px;}
.y23_c02195{bottom:742.620450px;}
.y22_c02195{bottom:746.400450px;}
.y21_c02195{bottom:762.600450px;}
.y20_c02195{bottom:781.860600px;}
.y1f_c02195{bottom:798.330450px;}
.y1e_c02195{bottom:819.120450px;}
.y1d_c02195{bottom:828.300450px;}
.y1c_c02195{bottom:846.840450px;}
.y1b_c02195{bottom:847.200450px;}
.y1a_c02195{bottom:866.190450px;}
.y19_c02195{bottom:884.820450px;}
.y18_c02195{bottom:885.180000px;}
.y17_c02195{bottom:904.170000px;}
.y16_c02195{bottom:922.800450px;}
.y15_c02195{bottom:923.160450px;}
.y14_c02195{bottom:942.780450px;}
.y13_c02195{bottom:961.950450px;}
.y12_c02195{bottom:978.420450px;}
.y11_c02195{bottom:999.210450px;}
.y10_c02195{bottom:1008.030450px;}
.yf_c02195{bottom:1011.810900px;}
.ye_c02195{bottom:1027.020450px;}
.yd_c02195{bottom:1030.800900px;}
.yc_c02195{bottom:1046.010450px;}
.yb_c02195{bottom:1049.790900px;}
.ya_c02195{bottom:1064.910450px;}
.y9_c02195{bottom:1068.780000px;}
.y8_c02195{bottom:1083.900450px;}
.y7_c02195{bottom:1087.770450px;}
.y6_c02195{bottom:1103.970450px;}
.y5_c02195{bottom:1123.140450px;}
.y4_c02195{bottom:1139.610450px;}
.y1_c02195{bottom:1193.160450px;}
.h8_c02195{height:10.551621px;}
.hf_c02195{height:31.974609px;}
.hd_c02195{height:42.526230px;}
.h5_c02195{height:47.961914px;}
.h3_c02195{height:48.570293px;}
.h4_c02195{height:58.513535px;}
.hc_c02195{height:61.034135px;}
.ha_c02195{height:61.035335px;}
.hb_c02195{height:61.393535px;}
.h7_c02195{height:62.473535px;}
.h9_c02195{height:62.474135px;}
.h6_c02195{height:62.833535px;}
.h2_c02195{height:63.175781px;}
.h1_c02195{height:63.949219px;}
.he_c02195{height:95.965240px;}
.h0_c02195{height:1263.000000px;}
.w1_c02195{width:892.500000px;}
.w0_c02195{width:892.830000px;}
.x0_c02195{left:0.000000px;}
.x1_c02195{left:127.620000px;}
.x3_c02195{left:135.630000px;}
.x4_c02195{left:143.910000px;}
.x5_c02195{left:150.300000px;}
.x7_c02195{left:165.060000px;}
.x8_c02195{left:166.140000px;}
.x6_c02195{left:220.680000px;}
.x9_c02195{left:320.130000px;}
.x2_c02195{left:433.080000px;}
@media print{
.v8_c02195{vertical-align:-13.758400pt;}
.vb_c02195{vertical-align:-12.161600pt;}
.v9_c02195{vertical-align:-11.200000pt;}
.va_c02195{vertical-align:-9.920000pt;}
.v3_c02195{vertical-align:-3.840000pt;}
.v2_c02195{vertical-align:-2.560000pt;}
.v4_c02195{vertical-align:-1.600000pt;}
.v0_c02195{vertical-align:0.000000pt;}
.v7_c02195{vertical-align:0.960000pt;}
.v5_c02195{vertical-align:2.240000pt;}
.v6_c02195{vertical-align:3.840000pt;}
.v1_c02195{vertical-align:9.920000pt;}
.vc_c02195{vertical-align:33.919467pt;}
.ls2a_c02195{letter-spacing:-0.105600pt;}
.ls36_c02195{letter-spacing:-0.080864pt;}
.ls34_c02195{letter-spacing:-0.076608pt;}
.ls2b_c02195{letter-spacing:-0.062400pt;}
.ls37_c02195{letter-spacing:-0.052800pt;}
.ls28_c02195{letter-spacing:-0.038400pt;}
.ls32_c02195{letter-spacing:-0.017024pt;}
.ls29_c02195{letter-spacing:-0.009600pt;}
.ls2d_c02195{letter-spacing:-0.004256pt;}
.ls25_c02195{letter-spacing:0.000000pt;}
.ls26_c02195{letter-spacing:0.006400pt;}
.ls1_c02195{letter-spacing:0.008512pt;}
.ls2_c02195{letter-spacing:0.009600pt;}
.ls4_c02195{letter-spacing:0.011232pt;}
.ls19_c02195{letter-spacing:0.011712pt;}
.ls0_c02195{letter-spacing:0.012800pt;}
.lsb_c02195{letter-spacing:0.017024pt;}
.ls15_c02195{letter-spacing:0.019200pt;}
.lsc_c02195{letter-spacing:0.025536pt;}
.lsd_c02195{letter-spacing:0.025600pt;}
.ls5_c02195{letter-spacing:0.028800pt;}
.ls3_c02195{letter-spacing:0.033600pt;}
.ls17_c02195{letter-spacing:0.035136pt;}
.lse_c02195{letter-spacing:0.038304pt;}
.ls8_c02195{letter-spacing:0.038400pt;}
.ls1f_c02195{letter-spacing:0.040992pt;}
.ls12_c02195{letter-spacing:0.046816pt;}
.ls1c_c02195{letter-spacing:0.052704pt;}
.ls18_c02195{letter-spacing:0.058560pt;}
.ls16_c02195{letter-spacing:0.059584pt;}
.ls22_c02195{letter-spacing:0.064416pt;}
.lsf_c02195{letter-spacing:0.068096pt;}
.ls1d_c02195{letter-spacing:0.070272pt;}
.ls31_c02195{letter-spacing:0.072352pt;}
.ls23_c02195{letter-spacing:0.076128pt;}
.ls21_c02195{letter-spacing:0.081984pt;}
.ls13_c02195{letter-spacing:0.102144pt;}
.ls7_c02195{letter-spacing:0.110656pt;}
.ls1b_c02195{letter-spacing:0.117120pt;}
.lsa_c02195{letter-spacing:0.119168pt;}
.ls2c_c02195{letter-spacing:0.120000pt;}
.ls38_c02195{letter-spacing:0.122976pt;}
.ls14_c02195{letter-spacing:0.123424pt;}
.ls27_c02195{letter-spacing:0.134400pt;}
.ls1a_c02195{letter-spacing:0.134688pt;}
.ls6_c02195{letter-spacing:0.140544pt;}
.ls11_c02195{letter-spacing:0.144704pt;}
.ls33_c02195{letter-spacing:0.148960pt;}
.ls1e_c02195{letter-spacing:0.158112pt;}
.ls10_c02195{letter-spacing:0.161728pt;}
.ls20_c02195{letter-spacing:116.000000pt;}
.ls35_c02195{letter-spacing:127.838400pt;}
.ls2f_c02195{letter-spacing:137.677472pt;}
.ls2e_c02195{letter-spacing:139.041600pt;}
.ls30_c02195{letter-spacing:139.358400pt;}
.ls9_c02195{letter-spacing:178.480000pt;}
.ls24_c02195{letter-spacing:191.119712pt;}
.wse_c02195{word-spacing:-0.242592pt;}
.ws13_c02195{word-spacing:-0.225568pt;}
.ws15_c02195{word-spacing:-0.204288pt;}
.wsc_c02195{word-spacing:-0.200032pt;}
.wsb_c02195{word-spacing:-0.191520pt;}
.ws14_c02195{word-spacing:-0.183008pt;}
.wsd_c02195{word-spacing:-0.153216pt;}
.ws18_c02195{word-spacing:-0.148960pt;}
.ws10_c02195{word-spacing:-0.106400pt;}
.wsf_c02195{word-spacing:-0.097888pt;}
.wsa_c02195{word-spacing:-0.089856pt;}
.ws9_c02195{word-spacing:-0.089376pt;}
.ws17_c02195{word-spacing:-0.076800pt;}
.ws1c_c02195{word-spacing:-0.057600pt;}
.ws7_c02195{word-spacing:-0.044800pt;}
.ws11_c02195{word-spacing:-0.025600pt;}
.ws16_c02195{word-spacing:-0.019200pt;}
.ws8_c02195{word-spacing:-0.012800pt;}
.ws6_c02195{word-spacing:0.000000pt;}
.ws20_c02195{word-spacing:0.005856pt;}
.ws1e_c02195{word-spacing:0.011712pt;}
.ws1f_c02195{word-spacing:0.017568pt;}
.ws1a_c02195{word-spacing:0.023424pt;}
.ws21_c02195{word-spacing:0.029280pt;}
.ws1d_c02195{word-spacing:0.040992pt;}
.ws19_c02195{word-spacing:0.046848pt;}
.ws1b_c02195{word-spacing:0.070272pt;}
.ws1_c02195{word-spacing:42.817280pt;}
.ws0_c02195{word-spacing:66.817280pt;}
.ws4_c02195{word-spacing:71.285664pt;}
.ws5_c02195{word-spacing:100.725664pt;}
.ws12_c02195{word-spacing:139.003200pt;}
.ws2_c02195{word-spacing:186.526560pt;}
.ws3_c02195{word-spacing:215.966560pt;}
._26_c02195{margin-left:-1.088736pt;}
._20_c02195{width:1.107104pt;}
._1f_c02195{width:23.318400pt;}
._14_c02195{width:38.085056pt;}
._29_c02195{width:39.056320pt;}
._b_c02195{width:45.920000pt;}
._f_c02195{width:54.528000pt;}
._1a_c02195{width:55.989856pt;}
._7_c02195{width:59.000000pt;}
._11_c02195{width:67.040000pt;}
._8_c02195{width:68.720160pt;}
._e_c02195{width:73.760000pt;}
._1_c02195{width:75.408000pt;}
._0_c02195{width:78.419200pt;}
._1b_c02195{width:80.240160pt;}
._1c_c02195{width:81.145280pt;}
._28_c02195{width:87.200000pt;}
._9_c02195{width:88.902400pt;}
._23_c02195{width:94.275040pt;}
._19_c02195{width:95.765440pt;}
._6_c02195{width:97.632000pt;}
._a_c02195{width:100.737280pt;}
._25_c02195{width:103.038400pt;}
._c_c02195{width:106.404640pt;}
._2_c02195{width:108.640000pt;}
._5_c02195{width:110.814400pt;}
._3_c02195{width:111.840000pt;}
._24_c02195{width:113.065536pt;}
._10_c02195{width:115.516640pt;}
._4_c02195{width:118.035200pt;}
._1e_c02195{width:119.177152pt;}
._15_c02195{width:121.066816pt;}
._d_c02195{width:123.177792pt;}
._22_c02195{width:127.840000pt;}
._36_c02195{width:129.589056pt;}
._12_c02195{width:132.575040pt;}
._18_c02195{width:137.545728pt;}
._27_c02195{width:139.040000pt;}
._16_c02195{width:140.201792pt;}
._34_c02195{width:142.647552pt;}
._17_c02195{width:145.440000pt;}
._21_c02195{width:152.059008pt;}
._13_c02195{width:162.368000pt;}
._30_c02195{width:171.767552pt;}
._2c_c02195{width:198.320000pt;}
._1d_c02195{width:200.394816pt;}
._2f_c02195{width:213.484096pt;}
._2b_c02195{width:244.789056pt;}
._37_c02195{width:248.145440pt;}
._2a_c02195{width:258.425856pt;}
._3d_c02195{width:296.791232pt;}
._2d_c02195{width:301.144448pt;}
._2e_c02195{width:310.689728pt;}
._32_c02195{width:315.965984pt;}
._31_c02195{width:331.564480pt;}
._3b_c02195{width:370.752032pt;}
._33_c02195{width:374.418688pt;}
._3c_c02195{width:393.227360pt;}
._3e_c02195{width:445.234496pt;}
._39_c02195{width:471.338656pt;}
._38_c02195{width:640.140224pt;}
._3a_c02195{width:701.585344pt;}
._35_c02195{width:740.312000pt;}
.fs6_c02195{font-size:10.560000pt;}
.fs7_c02195{font-size:32.000000pt;}
.fs3_c02195{font-size:37.440000pt;}
.fs1_c02195{font-size:42.560000pt;}
.fs2_c02195{font-size:48.000000pt;}
.fs5_c02195{font-size:53.440000pt;}
.fs4_c02195{font-size:58.560000pt;}
.fs0_c02195{font-size:64.000000pt;}
.y0_c02195{bottom:0.000000pt;}
.y3_c02195{bottom:50.987067pt;}
.y2_c02195{bottom:69.387067pt;}
.y4a_c02195{bottom:101.147200pt;}
.y49_c02195{bottom:107.227067pt;}
.y48_c02195{bottom:124.107200pt;}
.y47_c02195{bottom:140.907067pt;}
.y46_c02195{bottom:157.787067pt;}
.y45_c02195{bottom:174.667067pt;}
.y44_c02195{bottom:191.547067pt;}
.y43_c02195{bottom:208.427067pt;}
.y42_c02195{bottom:225.227067pt;}
.y41_c02195{bottom:242.107067pt;}
.y40_c02195{bottom:258.427067pt;}
.y3f_c02195{bottom:273.067067pt;}
.y3e_c02195{bottom:292.747067pt;}
.y3d_c02195{bottom:302.507067pt;}
.y3c_c02195{bottom:316.987067pt;}
.y3b_c02195{bottom:333.867067pt;}
.y3a_c02195{bottom:350.747200pt;}
.y39_c02195{bottom:367.547067pt;}
.y38_c02195{bottom:384.427067pt;}
.y37_c02195{bottom:401.307067pt;}
.y36_c02195{bottom:418.187200pt;}
.y35_c02195{bottom:434.107200pt;}
.y34_c02195{bottom:447.547067pt;}
.y33_c02195{bottom:466.826811pt;}
.y32_c02195{bottom:479.067067pt;}
.y31_c02195{bottom:493.147067pt;}
.y30_c02195{bottom:511.387067pt;}
.y2f_c02195{bottom:525.147067pt;}
.y2e_c02195{bottom:528.586667pt;}
.y2d_c02195{bottom:545.466667pt;}
.y2c_c02195{bottom:558.907067pt;}
.y2b_c02195{bottom:562.346667pt;}
.y2a_c02195{bottom:579.147467pt;}
.y29_c02195{bottom:592.667067pt;}
.y28_c02195{bottom:596.027067pt;}
.y27_c02195{bottom:612.907067pt;}
.y26_c02195{bottom:626.347067pt;}
.y25_c02195{bottom:629.786667pt;}
.y24_c02195{bottom:646.666667pt;}
.y23_c02195{bottom:660.107067pt;}
.y22_c02195{bottom:663.467067pt;}
.y21_c02195{bottom:677.867067pt;}
.y20_c02195{bottom:694.987200pt;}
.y1f_c02195{bottom:709.627067pt;}
.y1e_c02195{bottom:728.107067pt;}
.y1d_c02195{bottom:736.267067pt;}
.y1c_c02195{bottom:752.747067pt;}
.y1b_c02195{bottom:753.067067pt;}
.y1a_c02195{bottom:769.947067pt;}
.y19_c02195{bottom:786.507067pt;}
.y18_c02195{bottom:786.826667pt;}
.y17_c02195{bottom:803.706667pt;}
.y16_c02195{bottom:820.267067pt;}
.y15_c02195{bottom:820.587067pt;}
.y14_c02195{bottom:838.027067pt;}
.y13_c02195{bottom:855.067067pt;}
.y12_c02195{bottom:869.707067pt;}
.y11_c02195{bottom:888.187067pt;}
.y10_c02195{bottom:896.027067pt;}
.yf_c02195{bottom:899.387467pt;}
.ye_c02195{bottom:912.907067pt;}
.yd_c02195{bottom:916.267467pt;}
.yc_c02195{bottom:929.787067pt;}
.yb_c02195{bottom:933.147467pt;}
.ya_c02195{bottom:946.587067pt;}
.y9_c02195{bottom:950.026667pt;}
.y8_c02195{bottom:963.467067pt;}
.y7_c02195{bottom:966.907067pt;}
.y6_c02195{bottom:981.307067pt;}
.y5_c02195{bottom:998.347067pt;}
.y4_c02195{bottom:1012.987067pt;}
.y1_c02195{bottom:1060.587067pt;}
.h8_c02195{height:9.379219pt;}
.hf_c02195{height:28.421875pt;}
.hd_c02195{height:37.801094pt;}
.h5_c02195{height:42.632812pt;}
.h3_c02195{height:43.173594pt;}
.h4_c02195{height:52.012031pt;}
.hc_c02195{height:54.252565pt;}
.ha_c02195{height:54.253631pt;}
.hb_c02195{height:54.572031pt;}
.h7_c02195{height:55.532031pt;}
.h9_c02195{height:55.532565pt;}
.h6_c02195{height:55.852031pt;}
.h2_c02195{height:56.156250pt;}
.h1_c02195{height:56.843750pt;}
.he_c02195{height:85.302435pt;}
.h0_c02195{height:1122.666667pt;}
.w1_c02195{width:793.333333pt;}
.w0_c02195{width:793.626667pt;}
.x0_c02195{left:0.000000pt;}
.x1_c02195{left:113.440000pt;}
.x3_c02195{left:120.560000pt;}
.x4_c02195{left:127.920000pt;}
.x5_c02195{left:133.600000pt;}
.x7_c02195{left:146.720000pt;}
.x8_c02195{left:147.680000pt;}
.x6_c02195{left:196.160000pt;}
.x9_c02195{left:284.560000pt;}
.x2_c02195{left:384.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_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_67fee2fcf18ac26e62767350.woff2')format("woff");}.ff1_c02196{font-family:ff1_c02196;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02196;src:url('chunks/assets/font_42600779791956c62048dbd4.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;}
.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);}
.v4_c02196{vertical-align:-22.680000px;}
.v2_c02196{vertical-align:-5.400000px;}
.v0_c02196{vertical-align:0.000000px;}
.v3_c02196{vertical-align:3.240000px;}
.v1_c02196{vertical-align:53.640000px;}
.ls30_c02196{letter-spacing:-0.181116px;}
.ls2d_c02196{letter-spacing:-0.180360px;}
.ls2c_c02196{letter-spacing:-0.168336px;}
.ls2b_c02196{letter-spacing:-0.086400px;}
.ls1f_c02196{letter-spacing:-0.086184px;}
.ls1d_c02196{letter-spacing:-0.059400px;}
.ls23_c02196{letter-spacing:-0.059292px;}
.ls20_c02196{letter-spacing:-0.038304px;}
.ls29_c02196{letter-spacing:-0.032940px;}
.ls27_c02196{letter-spacing:-0.014400px;}
.ls28_c02196{letter-spacing:-0.013176px;}
.ls21_c02196{letter-spacing:-0.010800px;}
.ls2a_c02196{letter-spacing:-0.007200px;}
.ls1e_c02196{letter-spacing:-0.004788px;}
.ls1c_c02196{letter-spacing:0.000000px;}
.ls10_c02196{letter-spacing:0.007200px;}
.ls8_c02196{letter-spacing:0.014364px;}
.ls1a_c02196{letter-spacing:0.014400px;}
.ls1_c02196{letter-spacing:0.019152px;}
.ls5_c02196{letter-spacing:0.019764px;}
.ls18_c02196{letter-spacing:0.026352px;}
.ls14_c02196{letter-spacing:0.028800px;}
.lsb_c02196{letter-spacing:0.033516px;}
.ls11_c02196{letter-spacing:0.039528px;}
.ls0_c02196{letter-spacing:0.043092px;}
.ls16_c02196{letter-spacing:0.046116px;}
.ls2_c02196{letter-spacing:0.052704px;}
.lsd_c02196{letter-spacing:0.065880px;}
.ls6_c02196{letter-spacing:0.072468px;}
.lse_c02196{letter-spacing:0.079056px;}
.ls7_c02196{letter-spacing:0.085644px;}
.lsf_c02196{letter-spacing:0.092232px;}
.ls12_c02196{letter-spacing:0.098820px;}
.lsa_c02196{letter-spacing:0.105408px;}
.ls19_c02196{letter-spacing:0.131760px;}
.ls24_c02196{letter-spacing:0.138348px;}
.ls2e_c02196{letter-spacing:0.144288px;}
.ls17_c02196{letter-spacing:0.144936px;}
.ls4_c02196{letter-spacing:0.158112px;}
.ls13_c02196{letter-spacing:0.164700px;}
.ls22_c02196{letter-spacing:0.177876px;}
.ls1b_c02196{letter-spacing:0.181944px;}
.ls2f_c02196{letter-spacing:0.237168px;}
.ls15_c02196{letter-spacing:55.260000px;}
.ls25_c02196{letter-spacing:130.501692px;}
.ls9_c02196{letter-spacing:171.808452px;}
.ls26_c02196{letter-spacing:179.819460px;}
.ls3_c02196{letter-spacing:225.092196px;}
.lsc_c02196{letter-spacing:230.850108px;}
.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;}
}
.ws6_c02196{word-spacing:-146.971692px;}
.ws8_c02196{word-spacing:-16.522704px;}
.ws7_c02196{word-spacing:-16.437060px;}
.ws13_c02196{word-spacing:-0.124488px;}
.ws1a_c02196{word-spacing:-0.122400px;}
.wsb_c02196{word-spacing:-0.115200px;}
.ws11_c02196{word-spacing:-0.105336px;}
.ws24_c02196{word-spacing:-0.093600px;}
.ws17_c02196{word-spacing:-0.086400px;}
.wsa_c02196{word-spacing:-0.050400px;}
.ws1b_c02196{word-spacing:-0.028800px;}
.ws23_c02196{word-spacing:-0.014400px;}
.ws12_c02196{word-spacing:-0.013176px;}
.wsc_c02196{word-spacing:-0.007200px;}
.ws9_c02196{word-spacing:0.000000px;}
.ws10_c02196{word-spacing:0.006588px;}
.ws19_c02196{word-spacing:0.007200px;}
.ws15_c02196{word-spacing:0.013176px;}
.ws16_c02196{word-spacing:0.014400px;}
.wsf_c02196{word-spacing:0.019764px;}
.ws14_c02196{word-spacing:0.026352px;}
.wsd_c02196{word-spacing:0.039528px;}
.ws1c_c02196{word-spacing:0.046116px;}
.ws22_c02196{word-spacing:0.052704px;}
.ws20_c02196{word-spacing:0.065880px;}
.ws1e_c02196{word-spacing:0.072468px;}
.wse_c02196{word-spacing:0.189000px;}
.ws29_c02196{word-spacing:0.401868px;}
.ws2c_c02196{word-spacing:9.401076px;}
.ws2a_c02196{word-spacing:11.930868px;}
.ws28_c02196{word-spacing:20.620440px;}
.ws27_c02196{word-spacing:24.527124px;}
.ws2b_c02196{word-spacing:29.566944px;}
.ws1d_c02196{word-spacing:44.820000px;}
.ws21_c02196{word-spacing:48.546972px;}
.ws25_c02196{word-spacing:49.048272px;}
.ws1f_c02196{word-spacing:50.345496px;}
.ws26_c02196{word-spacing:57.289248px;}
.ws1_c02196{word-spacing:79.517160px;}
.ws0_c02196{word-spacing:80.235252px;}
.ws2_c02196{word-spacing:98.557740px;}
.ws3_c02196{word-spacing:98.558460px;}
.ws5_c02196{word-spacing:98.920080px;}
.ws4_c02196{word-spacing:112.635036px;}
.ws18_c02196{word-spacing:276.406128px;}
._d_c02196{margin-left:-130.323816px;}
._17_c02196{margin-left:-28.802736px;}
._5_c02196{margin-left:-1.218780px;}
._2c_c02196{width:1.192428px;}
._22_c02196{width:6.480000px;}
._2b_c02196{width:20.534796px;}
._1f_c02196{width:39.510720px;}
._1e_c02196{width:40.590720px;}
._29_c02196{width:55.260000px;}
._21_c02196{width:61.761024px;}
._f_c02196{width:65.407068px;}
._4_c02196{width:72.790308px;}
._1_c02196{width:84.138912px;}
._1d_c02196{width:91.570896px;}
._11_c02196{width:96.810048px;}
._3_c02196{width:98.568252px;}
._13_c02196{width:101.605680px;}
._2_c02196{width:114.725016px;}
._12_c02196{width:116.438220px;}
._10_c02196{width:130.138992px;}
._7_c02196{width:146.523708px;}
._14_c02196{width:172.454076px;}
._b_c02196{width:179.279244px;}
._26_c02196{width:190.999728px;}
._a_c02196{width:204.689160px;}
._6_c02196{width:229.973904px;}
._16_c02196{width:264.613608px;}
._8_c02196{width:288.481932px;}
._c_c02196{width:317.851236px;}
._1b_c02196{width:328.660380px;}
._19_c02196{width:400.737600px;}
._28_c02196{width:426.850128px;}
._9_c02196{width:507.756924px;}
._e_c02196{width:576.884808px;}
._15_c02196{width:604.817928px;}
._0_c02196{width:679.851000px;}
._1a_c02196{width:835.689600px;}
._23_c02196{width:858.067668px;}
._24_c02196{width:964.878912px;}
._27_c02196{width:1057.156596px;}
._25_c02196{width:1090.340784px;}
._20_c02196{width:1120.769676px;}
._2a_c02196{width:1451.116440px;}
._18_c02196{width:1791.288000px;}
._1c_c02196{width:2306.026656px;}
.fc0_c02196{color:rgb(0,0,0);}
.fs6_c02196{font-size:11.880000px;}
.fs5_c02196{font-size:42.120000px;}
.fs2_c02196{font-size:47.880000px;}
.fs1_c02196{font-size:54.000000px;}
.fs4_c02196{font-size:60.120000px;}
.fs3_c02196{font-size:65.880000px;}
.fs0_c02196{font-size:72.000000px;}
.y0_c02196{bottom:0.000000px;}
.y3_c02196{bottom:57.360450px;}
.y2_c02196{bottom:78.060450px;}
.y3f_c02196{bottom:118.290645px;}
.y3e_c02196{bottom:121.710600px;}
.y3c_c02196{bottom:129.001665px;}
.y3b_c02196{bottom:147.991575px;}
.y3a_c02196{bottom:166.981485px;}
.y39_c02196{bottom:185.971395px;}
.y38_c02196{bottom:204.961305px;}
.y37_c02196{bottom:223.860630px;}
.y36_c02196{bottom:242.850540px;}
.y3d_c02196{bottom:261.751512px;}
.y35_c02196{bottom:267.510450px;}
.y34_c02196{bottom:282.810450px;}
.y33_c02196{bottom:301.440450px;}
.y32_c02196{bottom:321.600450px;}
.y31_c02196{bottom:335.820450px;}
.y30_c02196{bottom:352.020450px;}
.y2f_c02196{bottom:371.820450px;}
.y2e_c02196{bottom:391.530450px;}
.y2a_c02196{bottom:411.240450px;}
.y2c_c02196{bottom:411.960690px;}
.y2d_c02196{bottom:430.860015px;}
.y2b_c02196{bottom:430.950600px;}
.y29_c02196{bottom:449.940600px;}
.y28_c02196{bottom:469.650450px;}
.y27_c02196{bottom:489.360600px;}
.y26_c02196{bottom:509.070450px;}
.y25_c02196{bottom:530.850450px;}
.y24_c02196{bottom:549.480450px;}
.y23_c02196{bottom:571.080450px;}
.y22_c02196{bottom:590.700450px;}
.y21_c02196{bottom:607.260450px;}
.y20_c02196{bottom:625.890450px;}
.y1f_c02196{bottom:647.310450px;}
.y1e_c02196{bottom:668.820450px;}
.y1d_c02196{bottom:690.240450px;}
.y1c_c02196{bottom:711.660450px;}
.y1b_c02196{bottom:732.990450px;}
.y1a_c02196{bottom:752.610450px;}
.y19_c02196{bottom:772.590450px;}
.y18_c02196{bottom:793.290600px;}
.y17_c02196{bottom:813.810150px;}
.y16_c02196{bottom:829.290600px;}
.y15_c02196{bottom:846.570450px;}
.y14_c02196{bottom:867.000900px;}
.y13_c02196{bottom:882.570450px;}
.y12_c02196{bottom:899.130450px;}
.y11_c02196{bottom:918.480450px;}
.y10_c02196{bottom:937.470450px;}
.yf_c02196{bottom:956.460450px;}
.ye_c02196{bottom:975.720450px;}
.yd_c02196{bottom:994.710450px;}
.yc_c02196{bottom:1013.700450px;}
.yb_c02196{bottom:1032.690450px;}
.ya_c02196{bottom:1051.680450px;}
.y8_c02196{bottom:1069.590450px;}
.y7_c02196{bottom:1069.950450px;}
.y9_c02196{bottom:1083.360450px;}
.y6_c02196{bottom:1098.930450px;}
.y5_c02196{bottom:1122.060450px;}
.y4_c02196{bottom:1139.250450px;}
.y1_c02196{bottom:1193.160450px;}
.hf_c02196{height:10.551621px;}
.he_c02196{height:36.957832px;}
.h5_c02196{height:42.526230px;}
.h3_c02196{height:47.961914px;}
.h9_c02196{height:53.397598px;}
.h8_c02196{height:53.471777px;}
.h7_c02196{height:57.805840px;}
.hd_c02196{height:58.151195px;}
.h6_c02196{height:58.513535px;}
.hb_c02196{height:61.030595px;}
.hc_c02196{height:61.031795px;}
.ha_c02196{height:61.391195px;}
.h2_c02196{height:63.175781px;}
.h1_c02196{height:63.949219px;}
.h4_c02196{height:96.166230px;}
.h0_c02196{height:1263.000000px;}
.w1_c02196{width:892.500000px;}
.w0_c02196{width:892.830000px;}
.x0_c02196{left:0.000000px;}
.x1_c02196{left:127.620000px;}
.x3_c02196{left:135.630000px;}
.x10_c02196{left:137.520000px;}
.x12_c02196{left:141.750000px;}
.xe_c02196{left:263.430000px;}
.x13_c02196{left:284.580000px;}
.x4_c02196{left:289.440000px;}
.xf_c02196{left:297.180000px;}
.x11_c02196{left:335.160000px;}
.x2_c02196{left:433.080000px;}
.x5_c02196{left:501.390000px;}
.x6_c02196{left:542.880000px;}
.x7_c02196{left:552.240000px;}
.x8_c02196{left:595.440000px;}
.x9_c02196{left:602.460000px;}
.xd_c02196{left:605.610000px;}
.xa_c02196{left:642.150000px;}
.xb_c02196{left:690.030000px;}
.x14_c02196{left:720.988884px;}
.xc_c02196{left:731.610000px;}
@media print{
.v4_c02196{vertical-align:-20.160000pt;}
.v2_c02196{vertical-align:-4.800000pt;}
.v0_c02196{vertical-align:0.000000pt;}
.v3_c02196{vertical-align:2.880000pt;}
.v1_c02196{vertical-align:47.680000pt;}
.ls30_c02196{letter-spacing:-0.160992pt;}
.ls2d_c02196{letter-spacing:-0.160320pt;}
.ls2c_c02196{letter-spacing:-0.149632pt;}
.ls2b_c02196{letter-spacing:-0.076800pt;}
.ls1f_c02196{letter-spacing:-0.076608pt;}
.ls1d_c02196{letter-spacing:-0.052800pt;}
.ls23_c02196{letter-spacing:-0.052704pt;}
.ls20_c02196{letter-spacing:-0.034048pt;}
.ls29_c02196{letter-spacing:-0.029280pt;}
.ls27_c02196{letter-spacing:-0.012800pt;}
.ls28_c02196{letter-spacing:-0.011712pt;}
.ls21_c02196{letter-spacing:-0.009600pt;}
.ls2a_c02196{letter-spacing:-0.006400pt;}
.ls1e_c02196{letter-spacing:-0.004256pt;}
.ls1c_c02196{letter-spacing:0.000000pt;}
.ls10_c02196{letter-spacing:0.006400pt;}
.ls8_c02196{letter-spacing:0.012768pt;}
.ls1a_c02196{letter-spacing:0.012800pt;}
.ls1_c02196{letter-spacing:0.017024pt;}
.ls5_c02196{letter-spacing:0.017568pt;}
.ls18_c02196{letter-spacing:0.023424pt;}
.ls14_c02196{letter-spacing:0.025600pt;}
.lsb_c02196{letter-spacing:0.029792pt;}
.ls11_c02196{letter-spacing:0.035136pt;}
.ls0_c02196{letter-spacing:0.038304pt;}
.ls16_c02196{letter-spacing:0.040992pt;}
.ls2_c02196{letter-spacing:0.046848pt;}
.lsd_c02196{letter-spacing:0.058560pt;}
.ls6_c02196{letter-spacing:0.064416pt;}
.lse_c02196{letter-spacing:0.070272pt;}
.ls7_c02196{letter-spacing:0.076128pt;}
.lsf_c02196{letter-spacing:0.081984pt;}
.ls12_c02196{letter-spacing:0.087840pt;}
.lsa_c02196{letter-spacing:0.093696pt;}
.ls19_c02196{letter-spacing:0.117120pt;}
.ls24_c02196{letter-spacing:0.122976pt;}
.ls2e_c02196{letter-spacing:0.128256pt;}
.ls17_c02196{letter-spacing:0.128832pt;}
.ls4_c02196{letter-spacing:0.140544pt;}
.ls13_c02196{letter-spacing:0.146400pt;}
.ls22_c02196{letter-spacing:0.158112pt;}
.ls1b_c02196{letter-spacing:0.161728pt;}
.ls2f_c02196{letter-spacing:0.210816pt;}
.ls15_c02196{letter-spacing:49.120000pt;}
.ls25_c02196{letter-spacing:116.001504pt;}
.ls9_c02196{letter-spacing:152.718624pt;}
.ls26_c02196{letter-spacing:159.839520pt;}
.ls3_c02196{letter-spacing:200.081952pt;}
.lsc_c02196{letter-spacing:205.200096pt;}
.ws6_c02196{word-spacing:-130.641504pt;}
.ws8_c02196{word-spacing:-14.686848pt;}
.ws7_c02196{word-spacing:-14.610720pt;}
.ws13_c02196{word-spacing:-0.110656pt;}
.ws1a_c02196{word-spacing:-0.108800pt;}
.wsb_c02196{word-spacing:-0.102400pt;}
.ws11_c02196{word-spacing:-0.093632pt;}
.ws24_c02196{word-spacing:-0.083200pt;}
.ws17_c02196{word-spacing:-0.076800pt;}
.wsa_c02196{word-spacing:-0.044800pt;}
.ws1b_c02196{word-spacing:-0.025600pt;}
.ws23_c02196{word-spacing:-0.012800pt;}
.ws12_c02196{word-spacing:-0.011712pt;}
.wsc_c02196{word-spacing:-0.006400pt;}
.ws9_c02196{word-spacing:0.000000pt;}
.ws10_c02196{word-spacing:0.005856pt;}
.ws19_c02196{word-spacing:0.006400pt;}
.ws15_c02196{word-spacing:0.011712pt;}
.ws16_c02196{word-spacing:0.012800pt;}
.wsf_c02196{word-spacing:0.017568pt;}
.ws14_c02196{word-spacing:0.023424pt;}
.wsd_c02196{word-spacing:0.035136pt;}
.ws1c_c02196{word-spacing:0.040992pt;}
.ws22_c02196{word-spacing:0.046848pt;}
.ws20_c02196{word-spacing:0.058560pt;}
.ws1e_c02196{word-spacing:0.064416pt;}
.wse_c02196{word-spacing:0.168000pt;}
.ws29_c02196{word-spacing:0.357216pt;}
.ws2c_c02196{word-spacing:8.356512pt;}
.ws2a_c02196{word-spacing:10.605216pt;}
.ws28_c02196{word-spacing:18.329280pt;}
.ws27_c02196{word-spacing:21.801888pt;}
.ws2b_c02196{word-spacing:26.281728pt;}
.ws1d_c02196{word-spacing:39.840000pt;}
.ws21_c02196{word-spacing:43.152864pt;}
.ws25_c02196{word-spacing:43.598464pt;}
.ws1f_c02196{word-spacing:44.751552pt;}
.ws26_c02196{word-spacing:50.923776pt;}
.ws1_c02196{word-spacing:70.681920pt;}
.ws0_c02196{word-spacing:71.320224pt;}
.ws2_c02196{word-spacing:87.606880pt;}
.ws3_c02196{word-spacing:87.607520pt;}
.ws5_c02196{word-spacing:87.928960pt;}
.ws4_c02196{word-spacing:100.120032pt;}
.ws18_c02196{word-spacing:245.694336pt;}
._d_c02196{margin-left:-115.843392pt;}
._17_c02196{margin-left:-25.602432pt;}
._5_c02196{margin-left:-1.083360pt;}
._2c_c02196{width:1.059936pt;}
._22_c02196{width:5.760000pt;}
._2b_c02196{width:18.253152pt;}
._1f_c02196{width:35.120640pt;}
._1e_c02196{width:36.080640pt;}
._29_c02196{width:49.120000pt;}
._21_c02196{width:54.898688pt;}
._f_c02196{width:58.139616pt;}
._4_c02196{width:64.702496pt;}
._1_c02196{width:74.790144pt;}
._1d_c02196{width:81.396352pt;}
._11_c02196{width:86.053376pt;}
._3_c02196{width:87.616224pt;}
._13_c02196{width:90.316160pt;}
._2_c02196{width:101.977792pt;}
._12_c02196{width:103.500640pt;}
._10_c02196{width:115.679104pt;}
._7_c02196{width:130.243296pt;}
._14_c02196{width:153.292512pt;}
._b_c02196{width:159.359328pt;}
._26_c02196{width:169.777536pt;}
._a_c02196{width:181.945920pt;}
._6_c02196{width:204.421248pt;}
._16_c02196{width:235.212096pt;}
._8_c02196{width:256.428384pt;}
._c_c02196{width:282.534432pt;}
._1b_c02196{width:292.142560pt;}
._19_c02196{width:356.211200pt;}
._28_c02196{width:379.422336pt;}
._9_c02196{width:451.339488pt;}
._e_c02196{width:512.786496pt;}
._15_c02196{width:537.615936pt;}
._0_c02196{width:604.312000pt;}
._1a_c02196{width:742.835200pt;}
._23_c02196{width:762.726816pt;}
._24_c02196{width:857.670144pt;}
._27_c02196{width:939.694752pt;}
._25_c02196{width:969.191808pt;}
._20_c02196{width:996.239712pt;}
._2a_c02196{width:1289.881280pt;}
._18_c02196{width:1592.256000pt;}
._1c_c02196{width:2049.801472pt;}
.fs6_c02196{font-size:10.560000pt;}
.fs5_c02196{font-size:37.440000pt;}
.fs2_c02196{font-size:42.560000pt;}
.fs1_c02196{font-size:48.000000pt;}
.fs4_c02196{font-size:53.440000pt;}
.fs3_c02196{font-size:58.560000pt;}
.fs0_c02196{font-size:64.000000pt;}
.y0_c02196{bottom:0.000000pt;}
.y3_c02196{bottom:50.987067pt;}
.y2_c02196{bottom:69.387067pt;}
.y3f_c02196{bottom:105.147240pt;}
.y3e_c02196{bottom:108.187200pt;}
.y3c_c02196{bottom:114.668147pt;}
.y3b_c02196{bottom:131.548067pt;}
.y3a_c02196{bottom:148.427987pt;}
.y39_c02196{bottom:165.307907pt;}
.y38_c02196{bottom:182.187827pt;}
.y37_c02196{bottom:198.987227pt;}
.y36_c02196{bottom:215.867147pt;}
.y3d_c02196{bottom:232.668011pt;}
.y35_c02196{bottom:237.787067pt;}
.y34_c02196{bottom:251.387067pt;}
.y33_c02196{bottom:267.947067pt;}
.y32_c02196{bottom:285.867067pt;}
.y31_c02196{bottom:298.507067pt;}
.y30_c02196{bottom:312.907067pt;}
.y2f_c02196{bottom:330.507067pt;}
.y2e_c02196{bottom:348.027067pt;}
.y2a_c02196{bottom:365.547067pt;}
.y2c_c02196{bottom:366.187280pt;}
.y2d_c02196{bottom:382.986680pt;}
.y2b_c02196{bottom:383.067200pt;}
.y29_c02196{bottom:399.947200pt;}
.y28_c02196{bottom:417.467067pt;}
.y27_c02196{bottom:434.987200pt;}
.y26_c02196{bottom:452.507067pt;}
.y25_c02196{bottom:471.867067pt;}
.y24_c02196{bottom:488.427067pt;}
.y23_c02196{bottom:507.627067pt;}
.y22_c02196{bottom:525.067067pt;}
.y21_c02196{bottom:539.787067pt;}
.y20_c02196{bottom:556.347067pt;}
.y1f_c02196{bottom:575.387067pt;}
.y1e_c02196{bottom:594.507067pt;}
.y1d_c02196{bottom:613.547067pt;}
.y1c_c02196{bottom:632.587067pt;}
.y1b_c02196{bottom:651.547067pt;}
.y1a_c02196{bottom:668.987067pt;}
.y19_c02196{bottom:686.747067pt;}
.y18_c02196{bottom:705.147200pt;}
.y17_c02196{bottom:723.386800pt;}
.y16_c02196{bottom:737.147200pt;}
.y15_c02196{bottom:752.507067pt;}
.y14_c02196{bottom:770.667467pt;}
.y13_c02196{bottom:784.507067pt;}
.y12_c02196{bottom:799.227067pt;}
.y11_c02196{bottom:816.427067pt;}
.y10_c02196{bottom:833.307067pt;}
.yf_c02196{bottom:850.187067pt;}
.ye_c02196{bottom:867.307067pt;}
.yd_c02196{bottom:884.187067pt;}
.yc_c02196{bottom:901.067067pt;}
.yb_c02196{bottom:917.947067pt;}
.ya_c02196{bottom:934.827067pt;}
.y8_c02196{bottom:950.747067pt;}
.y7_c02196{bottom:951.067067pt;}
.y9_c02196{bottom:962.987067pt;}
.y6_c02196{bottom:976.827067pt;}
.y5_c02196{bottom:997.387067pt;}
.y4_c02196{bottom:1012.667067pt;}
.y1_c02196{bottom:1060.587067pt;}
.hf_c02196{height:9.379219pt;}
.he_c02196{height:32.851406pt;}
.h5_c02196{height:37.801094pt;}
.h3_c02196{height:42.632812pt;}
.h9_c02196{height:47.464531pt;}
.h8_c02196{height:47.530469pt;}
.h7_c02196{height:51.382969pt;}
.hd_c02196{height:51.689951pt;}
.h6_c02196{height:52.012031pt;}
.hb_c02196{height:54.249418pt;}
.hc_c02196{height:54.250485pt;}
.ha_c02196{height:54.569951pt;}
.h2_c02196{height:56.156250pt;}
.h1_c02196{height:56.843750pt;}
.h4_c02196{height:85.481094pt;}
.h0_c02196{height:1122.666667pt;}
.w1_c02196{width:793.333333pt;}
.w0_c02196{width:793.626667pt;}
.x0_c02196{left:0.000000pt;}
.x1_c02196{left:113.440000pt;}
.x3_c02196{left:120.560000pt;}
.x10_c02196{left:122.240000pt;}
.x12_c02196{left:126.000000pt;}
.xe_c02196{left:234.160000pt;}
.x13_c02196{left:252.960000pt;}
.x4_c02196{left:257.280000pt;}
.xf_c02196{left:264.160000pt;}
.x11_c02196{left:297.920000pt;}
.x2_c02196{left:384.960000pt;}
.x5_c02196{left:445.680000pt;}
.x6_c02196{left:482.560000pt;}
.x7_c02196{left:490.880000pt;}
.x8_c02196{left:529.280000pt;}
.x9_c02196{left:535.520000pt;}
.xd_c02196{left:538.320000pt;}
.xa_c02196{left:570.800000pt;}
.xb_c02196{left:613.360000pt;}
.x14_c02196{left:640.879008pt;}
.xc_c02196{left:650.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_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_a3e05905b187c2c06372c870.woff2')format("woff");}.ff1_c02197{font-family:ff1_c02197;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02197;src:url('chunks/assets/font_ba69bcf7e5316fcf95cfdbed.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02197{font-family:ff3_c02197;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;}
.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;}
.ls1a_c02197{letter-spacing:-0.270540px;}
.ls19_c02197{letter-spacing:-0.228456px;}
.ls1d_c02197{letter-spacing:-0.138276px;}
.ls1f_c02197{letter-spacing:-0.114228px;}
.ls17_c02197{letter-spacing:-0.102204px;}
.ls1e_c02197{letter-spacing:-0.084168px;}
.ls16_c02197{letter-spacing:-0.072144px;}
.ls13_c02197{letter-spacing:-0.050400px;}
.ls12_c02197{letter-spacing:-0.036000px;}
.ls14_c02197{letter-spacing:-0.021600px;}
.ls11_c02197{letter-spacing:-0.014400px;}
.ls15_c02197{letter-spacing:-0.007200px;}
.ls10_c02197{letter-spacing:0.000000px;}
.ls0_c02197{letter-spacing:0.007200px;}
.ls3_c02197{letter-spacing:0.014400px;}
.lsd_c02197{letter-spacing:0.018036px;}
.ls6_c02197{letter-spacing:0.021600px;}
.ls5_c02197{letter-spacing:0.028800px;}
.lse_c02197{letter-spacing:0.036000px;}
.lsa_c02197{letter-spacing:0.036072px;}
.ls1_c02197{letter-spacing:0.043200px;}
.ls9_c02197{letter-spacing:0.048096px;}
.lsf_c02197{letter-spacing:0.050400px;}
.ls7_c02197{letter-spacing:0.057600px;}
.ls2_c02197{letter-spacing:0.064800px;}
.ls4_c02197{letter-spacing:0.072000px;}
.ls1c_c02197{letter-spacing:0.114228px;}
.ls1b_c02197{letter-spacing:0.126252px;}
.ls8_c02197{letter-spacing:0.144288px;}
.lsb_c02197{letter-spacing:0.156312px;}
.ls18_c02197{letter-spacing:0.180360px;}
.lsc_c02197{letter-spacing:116.368272px;}
.sc__c02197{text-shadow:none;}
.sc0_c02197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02197{-webkit-text-stroke:0px transparent;}
.sc0_c02197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02197{word-spacing:-18.021600px;}
.ws20_c02197{word-spacing:-0.426852px;}
.ws1e_c02197{word-spacing:-0.384768px;}
.ws23_c02197{word-spacing:-0.288576px;}
.ws17_c02197{word-spacing:-0.223200px;}
.ws19_c02197{word-spacing:-0.198396px;}
.ws14_c02197{word-spacing:-0.144000px;}
.ws2a_c02197{word-spacing:-0.129600px;}
.ws2c_c02197{word-spacing:-0.122400px;}
.wsa_c02197{word-spacing:-0.100800px;}
.ws29_c02197{word-spacing:-0.093600px;}
.wsb_c02197{word-spacing:-0.072000px;}
.ws12_c02197{word-spacing:-0.064800px;}
.ws1b_c02197{word-spacing:-0.054108px;}
.ws2_c02197{word-spacing:-0.050400px;}
.ws1d_c02197{word-spacing:-0.036072px;}
.ws2b_c02197{word-spacing:-0.028800px;}
.ws18_c02197{word-spacing:-0.014400px;}
.ws13_c02197{word-spacing:-0.007200px;}
.ws1_c02197{word-spacing:0.000000px;}
.ws24_c02197{word-spacing:0.007200px;}
.ws3_c02197{word-spacing:0.014400px;}
.ws11_c02197{word-spacing:0.021600px;}
.wsc_c02197{word-spacing:0.036000px;}
.ws1f_c02197{word-spacing:0.054108px;}
.ws22_c02197{word-spacing:0.174348px;}
.ws1a_c02197{word-spacing:0.192384px;}
.ws28_c02197{word-spacing:0.204408px;}
.ws21_c02197{word-spacing:0.228456px;}
.ws1c_c02197{word-spacing:0.318636px;}
.ws5_c02197{word-spacing:3.160800px;}
.ws4_c02197{word-spacing:3.254400px;}
.ws7_c02197{word-spacing:4.996800px;}
.ws6_c02197{word-spacing:5.068800px;}
.ws8_c02197{word-spacing:5.601600px;}
.ws9_c02197{word-spacing:5.652000px;}
.wsf_c02197{word-spacing:7.855200px;}
.wsd_c02197{word-spacing:7.891200px;}
.wse_c02197{word-spacing:7.898400px;}
.ws10_c02197{word-spacing:7.920000px;}
.ws15_c02197{word-spacing:15.408000px;}
.ws16_c02197{word-spacing:15.530400px;}
.ws27_c02197{word-spacing:22.636800px;}
.ws26_c02197{word-spacing:22.651200px;}
.ws25_c02197{word-spacing:28.404000px;}
._0_c02197{margin-left:-1.540800px;}
._3_c02197{width:1.052100px;}
._1_c02197{width:7.920000px;}
._4_c02197{width:52.466724px;}
._5_c02197{width:68.957640px;}
._6_c02197{width:246.373488px;}
._2_c02197{width:398.686356px;}
.fc1_c02197{color:rgb(89,89,89);}
.fc0_c02197{color:rgb(0,0,0);}
.fs1_c02197{font-size:29.880000px;}
.fs3_c02197{font-size:47.880000px;}
.fs2_c02197{font-size:60.120000px;}
.fs0_c02197{font-size:72.000000px;}
.y0_c02197{bottom:0.000000px;}
.y19_c02197{bottom:3.870450px;}
.y3_c02197{bottom:57.360450px;}
.y2_c02197{bottom:78.060450px;}
.y3a_c02197{bottom:121.440450px;}
.y39_c02197{bottom:136.650450px;}
.y38_c02197{bottom:154.650450px;}
.y37_c02197{bottom:172.650450px;}
.y36_c02197{bottom:190.650450px;}
.y35_c02197{bottom:209.280600px;}
.y34_c02197{bottom:229.980450px;}
.y33_c02197{bottom:250.680450px;}
.y32_c02197{bottom:272.190450px;}
.y31_c02197{bottom:293.610450px;}
.y30_c02197{bottom:313.769811px;}
.y2f_c02197{bottom:327.540099px;}
.y2e_c02197{bottom:341.310387px;}
.y2d_c02197{bottom:355.170450px;}
.y2c_c02197{bottom:370.380450px;}
.y2b_c02197{bottom:388.380450px;}
.y2a_c02197{bottom:406.380450px;}
.y29_c02197{bottom:424.290600px;}
.y28_c02197{bottom:443.010450px;}
.y27_c02197{bottom:463.710600px;}
.y26_c02197{bottom:484.410450px;}
.y25_c02197{bottom:505.830450px;}
.y24_c02197{bottom:527.250450px;}
.y23_c02197{bottom:547.409811px;}
.y22_c02197{bottom:561.180099px;}
.y21_c02197{bottom:575.040162px;}
.y20_c02197{bottom:588.810450px;}
.y1f_c02197{bottom:604.020450px;}
.y1e_c02197{bottom:622.020450px;}
.y1d_c02197{bottom:640.020450px;}
.y1c_c02197{bottom:658.020450px;}
.y1b_c02197{bottom:676.650450px;}
.y18_c02197{bottom:693.480000px;}
.y1a_c02197{bottom:697.350450px;}
.y17_c02197{bottom:718.860450px;}
.y16_c02197{bottom:740.280450px;}
.y15_c02197{bottom:759.630846px;}
.y14_c02197{bottom:768.270648px;}
.y13_c02197{bottom:776.910450px;}
.y12_c02197{bottom:787.800450px;}
.y11_c02197{bottom:808.500450px;}
.y10_c02197{bottom:829.020450px;}
.yf_c02197{bottom:847.380450px;}
.ye_c02197{bottom:859.080450px;}
.yd_c02197{bottom:880.500600px;}
.yc_c02197{bottom:912.270450px;}
.yb_c02197{bottom:943.320450px;}
.ya_c02197{bottom:974.550450px;}
.y9_c02197{bottom:1005.600450px;}
.y8_c02197{bottom:1036.650450px;}
.y7_c02197{bottom:1067.700450px;}
.y6_c02197{bottom:1098.570450px;}
.y5_c02197{bottom:1119.450450px;}
.y4_c02197{bottom:1139.970450px;}
.y1_c02197{bottom:1193.160450px;}
.h5_c02197{height:20.340000px;}
.h4_c02197{height:26.217949px;}
.h3_c02197{height:26.538926px;}
.h8_c02197{height:42.526230px;}
.h6_c02197{height:53.397598px;}
.h7_c02197{height:54.119038px;}
.h2_c02197{height:63.175781px;}
.h1_c02197{height:63.949219px;}
.h0_c02197{height:1263.000000px;}
.w2_c02197{width:173.340000px;}
.w1_c02197{width:892.500000px;}
.w0_c02197{width:892.830000px;}
.x0_c02197{left:0.000000px;}
.x6_c02197{left:116.999901px;}
.x1_c02197{left:127.620000px;}
.x4_c02197{left:135.630000px;}
.x5_c02197{left:138.240000px;}
.x9_c02197{left:141.570000px;}
.x3_c02197{left:148.950000px;}
.x8_c02197{left:202.860000px;}
.xb_c02197{left:274.950000px;}
.xd_c02197{left:283.410000px;}
.x7_c02197{left:333.630000px;}
.xc_c02197{left:342.720000px;}
.xa_c02197{left:348.210000px;}
.x2_c02197{left:433.080000px;}
@media print{
.v0_c02197{vertical-align:0.000000pt;}
.ls1a_c02197{letter-spacing:-0.240480pt;}
.ls19_c02197{letter-spacing:-0.203072pt;}
.ls1d_c02197{letter-spacing:-0.122912pt;}
.ls1f_c02197{letter-spacing:-0.101536pt;}
.ls17_c02197{letter-spacing:-0.090848pt;}
.ls1e_c02197{letter-spacing:-0.074816pt;}
.ls16_c02197{letter-spacing:-0.064128pt;}
.ls13_c02197{letter-spacing:-0.044800pt;}
.ls12_c02197{letter-spacing:-0.032000pt;}
.ls14_c02197{letter-spacing:-0.019200pt;}
.ls11_c02197{letter-spacing:-0.012800pt;}
.ls15_c02197{letter-spacing:-0.006400pt;}
.ls10_c02197{letter-spacing:0.000000pt;}
.ls0_c02197{letter-spacing:0.006400pt;}
.ls3_c02197{letter-spacing:0.012800pt;}
.lsd_c02197{letter-spacing:0.016032pt;}
.ls6_c02197{letter-spacing:0.019200pt;}
.ls5_c02197{letter-spacing:0.025600pt;}
.lse_c02197{letter-spacing:0.032000pt;}
.lsa_c02197{letter-spacing:0.032064pt;}
.ls1_c02197{letter-spacing:0.038400pt;}
.ls9_c02197{letter-spacing:0.042752pt;}
.lsf_c02197{letter-spacing:0.044800pt;}
.ls7_c02197{letter-spacing:0.051200pt;}
.ls2_c02197{letter-spacing:0.057600pt;}
.ls4_c02197{letter-spacing:0.064000pt;}
.ls1c_c02197{letter-spacing:0.101536pt;}
.ls1b_c02197{letter-spacing:0.112224pt;}
.ls8_c02197{letter-spacing:0.128256pt;}
.lsb_c02197{letter-spacing:0.138944pt;}
.ls18_c02197{letter-spacing:0.160320pt;}
.lsc_c02197{letter-spacing:103.438464pt;}
.ws0_c02197{word-spacing:-16.019200pt;}
.ws20_c02197{word-spacing:-0.379424pt;}
.ws1e_c02197{word-spacing:-0.342016pt;}
.ws23_c02197{word-spacing:-0.256512pt;}
.ws17_c02197{word-spacing:-0.198400pt;}
.ws19_c02197{word-spacing:-0.176352pt;}
.ws14_c02197{word-spacing:-0.128000pt;}
.ws2a_c02197{word-spacing:-0.115200pt;}
.ws2c_c02197{word-spacing:-0.108800pt;}
.wsa_c02197{word-spacing:-0.089600pt;}
.ws29_c02197{word-spacing:-0.083200pt;}
.wsb_c02197{word-spacing:-0.064000pt;}
.ws12_c02197{word-spacing:-0.057600pt;}
.ws1b_c02197{word-spacing:-0.048096pt;}
.ws2_c02197{word-spacing:-0.044800pt;}
.ws1d_c02197{word-spacing:-0.032064pt;}
.ws2b_c02197{word-spacing:-0.025600pt;}
.ws18_c02197{word-spacing:-0.012800pt;}
.ws13_c02197{word-spacing:-0.006400pt;}
.ws1_c02197{word-spacing:0.000000pt;}
.ws24_c02197{word-spacing:0.006400pt;}
.ws3_c02197{word-spacing:0.012800pt;}
.ws11_c02197{word-spacing:0.019200pt;}
.wsc_c02197{word-spacing:0.032000pt;}
.ws1f_c02197{word-spacing:0.048096pt;}
.ws22_c02197{word-spacing:0.154976pt;}
.ws1a_c02197{word-spacing:0.171008pt;}
.ws28_c02197{word-spacing:0.181696pt;}
.ws21_c02197{word-spacing:0.203072pt;}
.ws1c_c02197{word-spacing:0.283232pt;}
.ws5_c02197{word-spacing:2.809600pt;}
.ws4_c02197{word-spacing:2.892800pt;}
.ws7_c02197{word-spacing:4.441600pt;}
.ws6_c02197{word-spacing:4.505600pt;}
.ws8_c02197{word-spacing:4.979200pt;}
.ws9_c02197{word-spacing:5.024000pt;}
.wsf_c02197{word-spacing:6.982400pt;}
.wsd_c02197{word-spacing:7.014400pt;}
.wse_c02197{word-spacing:7.020800pt;}
.ws10_c02197{word-spacing:7.040000pt;}
.ws15_c02197{word-spacing:13.696000pt;}
.ws16_c02197{word-spacing:13.804800pt;}
.ws27_c02197{word-spacing:20.121600pt;}
.ws26_c02197{word-spacing:20.134400pt;}
.ws25_c02197{word-spacing:25.248000pt;}
._0_c02197{margin-left:-1.369600pt;}
._3_c02197{width:0.935200pt;}
._1_c02197{width:7.040000pt;}
._4_c02197{width:46.637088pt;}
._5_c02197{width:61.295680pt;}
._6_c02197{width:218.998656pt;}
._2_c02197{width:354.387872pt;}
.fs1_c02197{font-size:26.560000pt;}
.fs3_c02197{font-size:42.560000pt;}
.fs2_c02197{font-size:53.440000pt;}
.fs0_c02197{font-size:64.000000pt;}
.y0_c02197{bottom:0.000000pt;}
.y19_c02197{bottom:3.440400pt;}
.y3_c02197{bottom:50.987067pt;}
.y2_c02197{bottom:69.387067pt;}
.y3a_c02197{bottom:107.947067pt;}
.y39_c02197{bottom:121.467067pt;}
.y38_c02197{bottom:137.467067pt;}
.y37_c02197{bottom:153.467067pt;}
.y36_c02197{bottom:169.467067pt;}
.y35_c02197{bottom:186.027200pt;}
.y34_c02197{bottom:204.427067pt;}
.y33_c02197{bottom:222.827067pt;}
.y32_c02197{bottom:241.947067pt;}
.y31_c02197{bottom:260.987067pt;}
.y30_c02197{bottom:278.906499pt;}
.y2f_c02197{bottom:291.146755pt;}
.y2e_c02197{bottom:303.387011pt;}
.y2d_c02197{bottom:315.707067pt;}
.y2c_c02197{bottom:329.227067pt;}
.y2b_c02197{bottom:345.227067pt;}
.y2a_c02197{bottom:361.227067pt;}
.y29_c02197{bottom:377.147200pt;}
.y28_c02197{bottom:393.787067pt;}
.y27_c02197{bottom:412.187200pt;}
.y26_c02197{bottom:430.587067pt;}
.y25_c02197{bottom:449.627067pt;}
.y24_c02197{bottom:468.667067pt;}
.y23_c02197{bottom:486.586499pt;}
.y22_c02197{bottom:498.826755pt;}
.y21_c02197{bottom:511.146811pt;}
.y20_c02197{bottom:523.387067pt;}
.y1f_c02197{bottom:536.907067pt;}
.y1e_c02197{bottom:552.907067pt;}
.y1d_c02197{bottom:568.907067pt;}
.y1c_c02197{bottom:584.907067pt;}
.y1b_c02197{bottom:601.467067pt;}
.y18_c02197{bottom:616.426667pt;}
.y1a_c02197{bottom:619.867067pt;}
.y17_c02197{bottom:638.987067pt;}
.y16_c02197{bottom:658.027067pt;}
.y15_c02197{bottom:675.227419pt;}
.y14_c02197{bottom:682.907243pt;}
.y13_c02197{bottom:690.587067pt;}
.y12_c02197{bottom:700.267067pt;}
.y11_c02197{bottom:718.667067pt;}
.y10_c02197{bottom:736.907067pt;}
.yf_c02197{bottom:753.227067pt;}
.ye_c02197{bottom:763.627067pt;}
.yd_c02197{bottom:782.667200pt;}
.yc_c02197{bottom:810.907067pt;}
.yb_c02197{bottom:838.507067pt;}
.ya_c02197{bottom:866.267067pt;}
.y9_c02197{bottom:893.867067pt;}
.y8_c02197{bottom:921.467067pt;}
.y7_c02197{bottom:949.067067pt;}
.y6_c02197{bottom:976.507067pt;}
.y5_c02197{bottom:995.067067pt;}
.y4_c02197{bottom:1013.307067pt;}
.y1_c02197{bottom:1060.587067pt;}
.h5_c02197{height:18.080000pt;}
.h4_c02197{height:23.304844pt;}
.h3_c02197{height:23.590156pt;}
.h8_c02197{height:37.801094pt;}
.h6_c02197{height:47.464531pt;}
.h7_c02197{height:48.105811pt;}
.h2_c02197{height:56.156250pt;}
.h1_c02197{height:56.843750pt;}
.h0_c02197{height:1122.666667pt;}
.w2_c02197{width:154.080000pt;}
.w1_c02197{width:793.333333pt;}
.w0_c02197{width:793.626667pt;}
.x0_c02197{left:0.000000pt;}
.x6_c02197{left:103.999912pt;}
.x1_c02197{left:113.440000pt;}
.x4_c02197{left:120.560000pt;}
.x5_c02197{left:122.880000pt;}
.x9_c02197{left:125.840000pt;}
.x3_c02197{left:132.400000pt;}
.x8_c02197{left:180.320000pt;}
.xb_c02197{left:244.400000pt;}
.xd_c02197{left:251.920000pt;}
.x7_c02197{left:296.560000pt;}
.xc_c02197{left:304.640000pt;}
.xa_c02197{left:309.520000pt;}
.x2_c02197{left:384.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_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_69d3fdf713213a187d1d81b6.woff2')format("woff");}.ff1_c02198{font-family:ff1_c02198;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02198;src:url('chunks/assets/font_33a5bfd4c9c8b2c1cce24c43.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02198{font-family:ff3_c02198;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;}
.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;}
.ls13_c02198{letter-spacing:-0.270540px;}
.ls12_c02198{letter-spacing:-0.228456px;}
.ls16_c02198{letter-spacing:-0.138276px;}
.ls1a_c02198{letter-spacing:-0.114228px;}
.ls10_c02198{letter-spacing:-0.102204px;}
.ls1e_c02198{letter-spacing:-0.096192px;}
.ls17_c02198{letter-spacing:-0.084168px;}
.lsf_c02198{letter-spacing:-0.072144px;}
.ls19_c02198{letter-spacing:-0.057600px;}
.ls18_c02198{letter-spacing:-0.043200px;}
.ls1d_c02198{letter-spacing:-0.036000px;}
.lse_c02198{letter-spacing:-0.028800px;}
.ls1b_c02198{letter-spacing:-0.021600px;}
.lsd_c02198{letter-spacing:-0.014400px;}
.ls1c_c02198{letter-spacing:-0.007200px;}
.lsc_c02198{letter-spacing:0.000000px;}
.ls0_c02198{letter-spacing:0.007200px;}
.ls1_c02198{letter-spacing:0.014400px;}
.ls9_c02198{letter-spacing:0.018036px;}
.ls2_c02198{letter-spacing:0.021600px;}
.lsa_c02198{letter-spacing:0.028800px;}
.ls3_c02198{letter-spacing:0.036000px;}
.ls6_c02198{letter-spacing:0.036072px;}
.ls5_c02198{letter-spacing:0.048096px;}
.lsb_c02198{letter-spacing:0.064800px;}
.ls15_c02198{letter-spacing:0.114228px;}
.ls14_c02198{letter-spacing:0.126252px;}
.ls4_c02198{letter-spacing:0.144288px;}
.ls7_c02198{letter-spacing:0.156312px;}
.ls11_c02198{letter-spacing:0.180360px;}
.ls8_c02198{letter-spacing:116.368272px;}
.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;}
}
.ws11_c02198{word-spacing:-0.426852px;}
.wsf_c02198{word-spacing:-0.384768px;}
.ws14_c02198{word-spacing:-0.288576px;}
.ws2d_c02198{word-spacing:-0.216000px;}
.wsa_c02198{word-spacing:-0.198396px;}
.ws2e_c02198{word-spacing:-0.129600px;}
.ws1f_c02198{word-spacing:-0.093600px;}
.wsc_c02198{word-spacing:-0.054108px;}
.ws1_c02198{word-spacing:-0.050400px;}
.wse_c02198{word-spacing:-0.036072px;}
.ws9_c02198{word-spacing:-0.036000px;}
.ws1c_c02198{word-spacing:-0.028800px;}
.ws3_c02198{word-spacing:-0.021600px;}
.ws2a_c02198{word-spacing:-0.014400px;}
.ws2_c02198{word-spacing:-0.007200px;}
.ws0_c02198{word-spacing:0.000000px;}
.ws26_c02198{word-spacing:0.007200px;}
.ws15_c02198{word-spacing:0.014400px;}
.ws1e_c02198{word-spacing:0.021600px;}
.ws25_c02198{word-spacing:0.028800px;}
.ws10_c02198{word-spacing:0.054108px;}
.ws13_c02198{word-spacing:0.174348px;}
.ws24_c02198{word-spacing:0.186372px;}
.wsb_c02198{word-spacing:0.192384px;}
.ws1d_c02198{word-spacing:0.204408px;}
.ws12_c02198{word-spacing:0.228456px;}
.wsd_c02198{word-spacing:0.318636px;}
.ws16_c02198{word-spacing:4.874400px;}
.ws18_c02198{word-spacing:4.917600px;}
.ws17_c02198{word-spacing:5.083200px;}
.ws7_c02198{word-spacing:9.518400px;}
.ws8_c02198{word-spacing:9.676800px;}
.ws2b_c02198{word-spacing:11.793600px;}
.ws2c_c02198{word-spacing:11.851200px;}
.ws6_c02198{word-spacing:13.212000px;}
.ws4_c02198{word-spacing:13.334400px;}
.ws5_c02198{word-spacing:13.348800px;}
.ws21_c02198{word-spacing:18.345600px;}
.ws20_c02198{word-spacing:18.403200px;}
.ws1a_c02198{word-spacing:20.354400px;}
.ws1b_c02198{word-spacing:20.534400px;}
.ws29_c02198{word-spacing:22.392000px;}
.ws28_c02198{word-spacing:22.572000px;}
.ws19_c02198{word-spacing:22.672800px;}
.ws27_c02198{word-spacing:38.152800px;}
.ws22_c02198{word-spacing:45.007200px;}
.ws23_c02198{word-spacing:45.036000px;}
._4_c02198{margin-left:-1.148292px;}
._1_c02198{width:1.052100px;}
._2_c02198{width:52.466724px;}
._3_c02198{width:68.957640px;}
._5_c02198{width:245.980980px;}
._0_c02198{width:398.686356px;}
.fc0_c02198{color:rgb(0,0,0);}
.fs2_c02198{font-size:47.880000px;}
.fs1_c02198{font-size:60.120000px;}
.fs0_c02198{font-size:72.000000px;}
.y0_c02198{bottom:0.000000px;}
.y3_c02198{bottom:57.360450px;}
.y2_c02198{bottom:78.060450px;}
.y3a_c02198{bottom:122.340450px;}
.y39_c02198{bottom:137.280450px;}
.y38_c02198{bottom:155.280450px;}
.y37_c02198{bottom:173.280450px;}
.y36_c02198{bottom:191.280450px;}
.y35_c02198{bottom:209.910450px;}
.y34_c02198{bottom:230.610450px;}
.y33_c02198{bottom:252.030450px;}
.y32_c02198{bottom:272.730450px;}
.y31_c02198{bottom:294.240450px;}
.y30_c02198{bottom:314.310387px;}
.y2f_c02198{bottom:328.170450px;}
.y2e_c02198{bottom:343.380450px;}
.y2d_c02198{bottom:361.380450px;}
.y2c_c02198{bottom:379.380450px;}
.y2b_c02198{bottom:397.380450px;}
.y2a_c02198{bottom:416.010450px;}
.y29_c02198{bottom:436.710600px;}
.y28_c02198{bottom:457.410450px;}
.y27_c02198{bottom:478.830450px;}
.y26_c02198{bottom:500.250600px;}
.y25_c02198{bottom:520.410162px;}
.y24_c02198{bottom:534.180450px;}
.y23_c02198{bottom:549.390450px;}
.y22_c02198{bottom:567.390450px;}
.y21_c02198{bottom:585.390450px;}
.y20_c02198{bottom:603.390450px;}
.y1f_c02198{bottom:622.110450px;}
.y1e_c02198{bottom:642.810450px;}
.y1d_c02198{bottom:663.510450px;}
.y1c_c02198{bottom:684.930450px;}
.y1b_c02198{bottom:706.350450px;}
.y1a_c02198{bottom:726.510162px;}
.y19_c02198{bottom:740.280450px;}
.y18_c02198{bottom:755.490450px;}
.y17_c02198{bottom:773.490450px;}
.y16_c02198{bottom:791.490450px;}
.y15_c02198{bottom:809.490450px;}
.y14_c02198{bottom:828.120450px;}
.y13_c02198{bottom:848.820450px;}
.y12_c02198{bottom:869.520450px;}
.y11_c02198{bottom:890.220450px;}
.y10_c02198{bottom:911.730450px;}
.yf_c02198{bottom:933.150450px;}
.ye_c02198{bottom:953.310162px;}
.yd_c02198{bottom:967.080450px;}
.yc_c02198{bottom:982.290600px;}
.yb_c02198{bottom:1000.290450px;}
.ya_c02198{bottom:1018.290450px;}
.y9_c02198{bottom:1036.290450px;}
.y8_c02198{bottom:1054.920450px;}
.y7_c02198{bottom:1075.620450px;}
.y6_c02198{bottom:1096.320450px;}
.y5_c02198{bottom:1117.830450px;}
.y4_c02198{bottom:1139.250450px;}
.y1_c02198{bottom:1193.160450px;}
.h6_c02198{height:42.011895px;}
.h5_c02198{height:42.526230px;}
.h3_c02198{height:53.397598px;}
.h4_c02198{height:54.119038px;}
.h2_c02198{height:63.175781px;}
.h1_c02198{height:63.949219px;}
.h0_c02198{height:1263.000000px;}
.w1_c02198{width:892.500000px;}
.w0_c02198{width:892.830000px;}
.x0_c02198{left:0.000000px;}
.x1_c02198{left:127.620000px;}
.x5_c02198{left:135.630000px;}
.x7_c02198{left:137.790000px;}
.xd_c02198{left:139.680000px;}
.xb_c02198{left:148.680000px;}
.x4_c02198{left:165.960000px;}
.x9_c02198{left:287.640000px;}
.xc_c02198{left:306.450000px;}
.xa_c02198{left:314.190000px;}
.x8_c02198{left:322.200000px;}
.x3_c02198{left:331.200000px;}
.x6_c02198{left:344.700000px;}
.xe_c02198{left:411.930000px;}
.x2_c02198{left:433.080000px;}
@media print{
.v0_c02198{vertical-align:0.000000pt;}
.ls13_c02198{letter-spacing:-0.240480pt;}
.ls12_c02198{letter-spacing:-0.203072pt;}
.ls16_c02198{letter-spacing:-0.122912pt;}
.ls1a_c02198{letter-spacing:-0.101536pt;}
.ls10_c02198{letter-spacing:-0.090848pt;}
.ls1e_c02198{letter-spacing:-0.085504pt;}
.ls17_c02198{letter-spacing:-0.074816pt;}
.lsf_c02198{letter-spacing:-0.064128pt;}
.ls19_c02198{letter-spacing:-0.051200pt;}
.ls18_c02198{letter-spacing:-0.038400pt;}
.ls1d_c02198{letter-spacing:-0.032000pt;}
.lse_c02198{letter-spacing:-0.025600pt;}
.ls1b_c02198{letter-spacing:-0.019200pt;}
.lsd_c02198{letter-spacing:-0.012800pt;}
.ls1c_c02198{letter-spacing:-0.006400pt;}
.lsc_c02198{letter-spacing:0.000000pt;}
.ls0_c02198{letter-spacing:0.006400pt;}
.ls1_c02198{letter-spacing:0.012800pt;}
.ls9_c02198{letter-spacing:0.016032pt;}
.ls2_c02198{letter-spacing:0.019200pt;}
.lsa_c02198{letter-spacing:0.025600pt;}
.ls3_c02198{letter-spacing:0.032000pt;}
.ls6_c02198{letter-spacing:0.032064pt;}
.ls5_c02198{letter-spacing:0.042752pt;}
.lsb_c02198{letter-spacing:0.057600pt;}
.ls15_c02198{letter-spacing:0.101536pt;}
.ls14_c02198{letter-spacing:0.112224pt;}
.ls4_c02198{letter-spacing:0.128256pt;}
.ls7_c02198{letter-spacing:0.138944pt;}
.ls11_c02198{letter-spacing:0.160320pt;}
.ls8_c02198{letter-spacing:103.438464pt;}
.ws11_c02198{word-spacing:-0.379424pt;}
.wsf_c02198{word-spacing:-0.342016pt;}
.ws14_c02198{word-spacing:-0.256512pt;}
.ws2d_c02198{word-spacing:-0.192000pt;}
.wsa_c02198{word-spacing:-0.176352pt;}
.ws2e_c02198{word-spacing:-0.115200pt;}
.ws1f_c02198{word-spacing:-0.083200pt;}
.wsc_c02198{word-spacing:-0.048096pt;}
.ws1_c02198{word-spacing:-0.044800pt;}
.wse_c02198{word-spacing:-0.032064pt;}
.ws9_c02198{word-spacing:-0.032000pt;}
.ws1c_c02198{word-spacing:-0.025600pt;}
.ws3_c02198{word-spacing:-0.019200pt;}
.ws2a_c02198{word-spacing:-0.012800pt;}
.ws2_c02198{word-spacing:-0.006400pt;}
.ws0_c02198{word-spacing:0.000000pt;}
.ws26_c02198{word-spacing:0.006400pt;}
.ws15_c02198{word-spacing:0.012800pt;}
.ws1e_c02198{word-spacing:0.019200pt;}
.ws25_c02198{word-spacing:0.025600pt;}
.ws10_c02198{word-spacing:0.048096pt;}
.ws13_c02198{word-spacing:0.154976pt;}
.ws24_c02198{word-spacing:0.165664pt;}
.wsb_c02198{word-spacing:0.171008pt;}
.ws1d_c02198{word-spacing:0.181696pt;}
.ws12_c02198{word-spacing:0.203072pt;}
.wsd_c02198{word-spacing:0.283232pt;}
.ws16_c02198{word-spacing:4.332800pt;}
.ws18_c02198{word-spacing:4.371200pt;}
.ws17_c02198{word-spacing:4.518400pt;}
.ws7_c02198{word-spacing:8.460800pt;}
.ws8_c02198{word-spacing:8.601600pt;}
.ws2b_c02198{word-spacing:10.483200pt;}
.ws2c_c02198{word-spacing:10.534400pt;}
.ws6_c02198{word-spacing:11.744000pt;}
.ws4_c02198{word-spacing:11.852800pt;}
.ws5_c02198{word-spacing:11.865600pt;}
.ws21_c02198{word-spacing:16.307200pt;}
.ws20_c02198{word-spacing:16.358400pt;}
.ws1a_c02198{word-spacing:18.092800pt;}
.ws1b_c02198{word-spacing:18.252800pt;}
.ws29_c02198{word-spacing:19.904000pt;}
.ws28_c02198{word-spacing:20.064000pt;}
.ws19_c02198{word-spacing:20.153600pt;}
.ws27_c02198{word-spacing:33.913600pt;}
.ws22_c02198{word-spacing:40.006400pt;}
.ws23_c02198{word-spacing:40.032000pt;}
._4_c02198{margin-left:-1.020704pt;}
._1_c02198{width:0.935200pt;}
._2_c02198{width:46.637088pt;}
._3_c02198{width:61.295680pt;}
._5_c02198{width:218.649760pt;}
._0_c02198{width:354.387872pt;}
.fs2_c02198{font-size:42.560000pt;}
.fs1_c02198{font-size:53.440000pt;}
.fs0_c02198{font-size:64.000000pt;}
.y0_c02198{bottom:0.000000pt;}
.y3_c02198{bottom:50.987067pt;}
.y2_c02198{bottom:69.387067pt;}
.y3a_c02198{bottom:108.747067pt;}
.y39_c02198{bottom:122.027067pt;}
.y38_c02198{bottom:138.027067pt;}
.y37_c02198{bottom:154.027067pt;}
.y36_c02198{bottom:170.027067pt;}
.y35_c02198{bottom:186.587067pt;}
.y34_c02198{bottom:204.987067pt;}
.y33_c02198{bottom:224.027067pt;}
.y32_c02198{bottom:242.427067pt;}
.y31_c02198{bottom:261.547067pt;}
.y30_c02198{bottom:279.387011pt;}
.y2f_c02198{bottom:291.707067pt;}
.y2e_c02198{bottom:305.227067pt;}
.y2d_c02198{bottom:321.227067pt;}
.y2c_c02198{bottom:337.227067pt;}
.y2b_c02198{bottom:353.227067pt;}
.y2a_c02198{bottom:369.787067pt;}
.y29_c02198{bottom:388.187200pt;}
.y28_c02198{bottom:406.587067pt;}
.y27_c02198{bottom:425.627067pt;}
.y26_c02198{bottom:444.667200pt;}
.y25_c02198{bottom:462.586811pt;}
.y24_c02198{bottom:474.827067pt;}
.y23_c02198{bottom:488.347067pt;}
.y22_c02198{bottom:504.347067pt;}
.y21_c02198{bottom:520.347067pt;}
.y20_c02198{bottom:536.347067pt;}
.y1f_c02198{bottom:552.987067pt;}
.y1e_c02198{bottom:571.387067pt;}
.y1d_c02198{bottom:589.787067pt;}
.y1c_c02198{bottom:608.827067pt;}
.y1b_c02198{bottom:627.867067pt;}
.y1a_c02198{bottom:645.786811pt;}
.y19_c02198{bottom:658.027067pt;}
.y18_c02198{bottom:671.547067pt;}
.y17_c02198{bottom:687.547067pt;}
.y16_c02198{bottom:703.547067pt;}
.y15_c02198{bottom:719.547067pt;}
.y14_c02198{bottom:736.107067pt;}
.y13_c02198{bottom:754.507067pt;}
.y12_c02198{bottom:772.907067pt;}
.y11_c02198{bottom:791.307067pt;}
.y10_c02198{bottom:810.427067pt;}
.yf_c02198{bottom:829.467067pt;}
.ye_c02198{bottom:847.386811pt;}
.yd_c02198{bottom:859.627067pt;}
.yc_c02198{bottom:873.147200pt;}
.yb_c02198{bottom:889.147067pt;}
.ya_c02198{bottom:905.147067pt;}
.y9_c02198{bottom:921.147067pt;}
.y8_c02198{bottom:937.707067pt;}
.y7_c02198{bottom:956.107067pt;}
.y6_c02198{bottom:974.507067pt;}
.y5_c02198{bottom:993.627067pt;}
.y4_c02198{bottom:1012.667067pt;}
.y1_c02198{bottom:1060.587067pt;}
.h6_c02198{height:37.343906pt;}
.h5_c02198{height:37.801094pt;}
.h3_c02198{height:47.464531pt;}
.h4_c02198{height:48.105811pt;}
.h2_c02198{height:56.156250pt;}
.h1_c02198{height:56.843750pt;}
.h0_c02198{height:1122.666667pt;}
.w1_c02198{width:793.333333pt;}
.w0_c02198{width:793.626667pt;}
.x0_c02198{left:0.000000pt;}
.x1_c02198{left:113.440000pt;}
.x5_c02198{left:120.560000pt;}
.x7_c02198{left:122.480000pt;}
.xd_c02198{left:124.160000pt;}
.xb_c02198{left:132.160000pt;}
.x4_c02198{left:147.520000pt;}
.x9_c02198{left:255.680000pt;}
.xc_c02198{left:272.400000pt;}
.xa_c02198{left:279.280000pt;}
.x8_c02198{left:286.400000pt;}
.x3_c02198{left:294.400000pt;}
.x6_c02198{left:306.400000pt;}
.xe_c02198{left:366.160000pt;}
.x2_c02198{left:384.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_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_0a70a14638fb2405d933e717.woff2')format("woff");}.ff1_c02199{font-family:ff1_c02199;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02199;src:url('chunks/assets/font_af699ac01749a74f516fb5a2.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_5c8de74f8571e52a382651c7.woff2')format("woff");}.ff3_c02199{font-family:ff3_c02199;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_c02199;src:url('chunks/assets/font_55acd7b2729854fc890d4aaf.woff2')format("woff");}.ff4_c02199{font-family:ff4_c02199;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_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);}
.v2_c02199{vertical-align:-9.000000px;}
.v1_c02199{vertical-align:-5.760000px;}
.v0_c02199{vertical-align:0.000000px;}
.v3_c02199{vertical-align:6.120000px;}
.ls35_c02199{letter-spacing:-0.282564px;}
.ls31_c02199{letter-spacing:-0.270540px;}
.ls36_c02199{letter-spacing:-0.246492px;}
.ls29_c02199{letter-spacing:-0.222444px;}
.ls24_c02199{letter-spacing:-0.216432px;}
.ls33_c02199{letter-spacing:-0.210420px;}
.ls26_c02199{letter-spacing:-0.204408px;}
.ls2b_c02199{letter-spacing:-0.198396px;}
.ls25_c02199{letter-spacing:-0.192384px;}
.ls2f_c02199{letter-spacing:-0.180360px;}
.ls2e_c02199{letter-spacing:-0.162324px;}
.ls2c_c02199{letter-spacing:-0.156312px;}
.ls2a_c02199{letter-spacing:-0.150300px;}
.ls2d_c02199{letter-spacing:-0.132264px;}
.ls34_c02199{letter-spacing:-0.120240px;}
.ls30_c02199{letter-spacing:-0.114228px;}
.ls23_c02199{letter-spacing:-0.108216px;}
.ls21_c02199{letter-spacing:-0.102204px;}
.ls3a_c02199{letter-spacing:-0.096192px;}
.ls32_c02199{letter-spacing:-0.090180px;}
.ls38_c02199{letter-spacing:-0.078156px;}
.ls3c_c02199{letter-spacing:-0.072000px;}
.ls27_c02199{letter-spacing:-0.066132px;}
.ls1e_c02199{letter-spacing:-0.043200px;}
.ls1b_c02199{letter-spacing:-0.036000px;}
.ls1c_c02199{letter-spacing:-0.021600px;}
.ls3b_c02199{letter-spacing:-0.014400px;}
.ls1f_c02199{letter-spacing:-0.013176px;}
.ls1d_c02199{letter-spacing:-0.007200px;}
.ls39_c02199{letter-spacing:-0.006012px;}
.ls1a_c02199{letter-spacing:0.000000px;}
.ls11_c02199{letter-spacing:0.006012px;}
.ls8_c02199{letter-spacing:0.007200px;}
.ls1_c02199{letter-spacing:0.013176px;}
.ls0_c02199{letter-spacing:0.014400px;}
.lsc_c02199{letter-spacing:0.021600px;}
.ls7_c02199{letter-spacing:0.028800px;}
.lsd_c02199{letter-spacing:0.032940px;}
.ls16_c02199{letter-spacing:0.036000px;}
.ls13_c02199{letter-spacing:0.036072px;}
.ls15_c02199{letter-spacing:0.039528px;}
.ls5_c02199{letter-spacing:0.043200px;}
.ls9_c02199{letter-spacing:0.046116px;}
.ls18_c02199{letter-spacing:0.050400px;}
.ls19_c02199{letter-spacing:0.057600px;}
.lsf_c02199{letter-spacing:0.065880px;}
.ls12_c02199{letter-spacing:0.066132px;}
.ls22_c02199{letter-spacing:0.072144px;}
.ls17_c02199{letter-spacing:0.086400px;}
.ls10_c02199{letter-spacing:0.102204px;}
.ls28_c02199{letter-spacing:0.108216px;}
.ls20_c02199{letter-spacing:0.111996px;}
.ls14_c02199{letter-spacing:0.114228px;}
.ls6_c02199{letter-spacing:0.119700px;}
.lse_c02199{letter-spacing:0.120240px;}
.ls4_c02199{letter-spacing:0.122400px;}
.ls37_c02199{letter-spacing:0.126252px;}
.ls2_c02199{letter-spacing:0.144000px;}
.ls3_c02199{letter-spacing:0.181944px;}
.lsa_c02199{letter-spacing:0.360000px;}
.lsb_c02199{letter-spacing:123.570000px;}
.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;}
}
.ws11_c02199{word-spacing:-0.390780px;}
.ws1c_c02199{word-spacing:-0.372744px;}
.ws28_c02199{word-spacing:-0.336672px;}
.ws27_c02199{word-spacing:-0.276552px;}
.ws1a_c02199{word-spacing:-0.204408px;}
.ws34_c02199{word-spacing:-0.192384px;}
.ws2b_c02199{word-spacing:-0.180360px;}
.ws36_c02199{word-spacing:-0.174348px;}
.ws25_c02199{word-spacing:-0.156312px;}
.ws1e_c02199{word-spacing:-0.120240px;}
.ws3d_c02199{word-spacing:-0.100800px;}
.ws3_c02199{word-spacing:-0.079200px;}
.ws2d_c02199{word-spacing:-0.078156px;}
.ws1f_c02199{word-spacing:-0.072144px;}
.ws2c_c02199{word-spacing:-0.060120px;}
.wsd_c02199{word-spacing:-0.057600px;}
.ws17_c02199{word-spacing:-0.054108px;}
.ws1_c02199{word-spacing:-0.050400px;}
.ws1d_c02199{word-spacing:-0.048096px;}
.ws4_c02199{word-spacing:-0.043200px;}
.ws33_c02199{word-spacing:-0.036072px;}
.ws32_c02199{word-spacing:-0.024048px;}
.wsf_c02199{word-spacing:-0.021600px;}
.ws13_c02199{word-spacing:-0.019764px;}
.ws1b_c02199{word-spacing:-0.018036px;}
.ws2_c02199{word-spacing:-0.014400px;}
.ws26_c02199{word-spacing:-0.012024px;}
.ws0_c02199{word-spacing:0.000000px;}
.ws15_c02199{word-spacing:0.018036px;}
.wse_c02199{word-spacing:0.046116px;}
.ws2a_c02199{word-spacing:0.054108px;}
.ws10_c02199{word-spacing:0.059292px;}
.ws29_c02199{word-spacing:0.084168px;}
.ws2e_c02199{word-spacing:0.090180px;}
.ws35_c02199{word-spacing:0.096192px;}
.ws14_c02199{word-spacing:0.192384px;}
.ws16_c02199{word-spacing:0.198396px;}
.ws2f_c02199{word-spacing:0.210420px;}
.ws21_c02199{word-spacing:0.222444px;}
.ws20_c02199{word-spacing:0.246492px;}
.ws22_c02199{word-spacing:0.252504px;}
.ws24_c02199{word-spacing:0.258516px;}
.ws23_c02199{word-spacing:0.270540px;}
.ws18_c02199{word-spacing:0.282564px;}
.ws19_c02199{word-spacing:0.294588px;}
.ws31_c02199{word-spacing:0.336672px;}
.ws30_c02199{word-spacing:0.372744px;}
.ws12_c02199{word-spacing:0.461160px;}
.ws3c_c02199{word-spacing:0.612000px;}
.ws3b_c02199{word-spacing:0.633600px;}
.ws7_c02199{word-spacing:3.088800px;}
.ws6_c02199{word-spacing:3.168000px;}
.ws37_c02199{word-spacing:4.269600px;}
.ws38_c02199{word-spacing:4.334400px;}
.wsa_c02199{word-spacing:9.640800px;}
.ws9_c02199{word-spacing:9.727200px;}
.ws5_c02199{word-spacing:17.301600px;}
.ws3a_c02199{word-spacing:19.641600px;}
.ws39_c02199{word-spacing:19.670400px;}
.ws8_c02199{word-spacing:22.896000px;}
.wsc_c02199{word-spacing:27.612000px;}
.wsb_c02199{word-spacing:27.691200px;}
._3_c02199{margin-left:-1.065600px;}
._6_c02199{width:1.154304px;}
._1_c02199{width:16.716240px;}
._2_c02199{width:22.476240px;}
._4_c02199{width:27.268740px;}
._5_c02199{width:145.431756px;}
._0_c02199{width:191.501640px;}
.fc0_c02199{color:rgb(0,0,0);}
.fs3_c02199{font-size:36.000000px;}
.fs2_c02199{font-size:47.880000px;}
.fs4_c02199{font-size:60.120000px;}
.fs1_c02199{font-size:65.880000px;}
.fs0_c02199{font-size:72.000000px;}
.y0_c02199{bottom:0.000000px;}
.y3_c02199{bottom:57.360450px;}
.y2_c02199{bottom:78.060450px;}
.y3d_c02199{bottom:131.250450px;}
.y3c_c02199{bottom:151.950450px;}
.y3b_c02199{bottom:172.650450px;}
.y3a_c02199{bottom:193.350450px;}
.y39_c02199{bottom:214.320450px;}
.y38_c02199{bottom:234.570450px;}
.y37_c02199{bottom:255.270450px;}
.y36_c02199{bottom:275.970450px;}
.y35_c02199{bottom:296.940450px;}
.y34_c02199{bottom:316.470450px;}
.y33_c02199{bottom:333.660450px;}
.y32_c02199{bottom:350.940450px;}
.y31_c02199{bottom:368.220450px;}
.y30_c02199{bottom:385.410450px;}
.y2f_c02199{bottom:402.690450px;}
.y2e_c02199{bottom:419.970450px;}
.y2d_c02199{bottom:437.160600px;}
.y2c_c02199{bottom:454.440600px;}
.y2b_c02199{bottom:471.720450px;}
.y2a_c02199{bottom:488.910450px;}
.y29_c02199{bottom:506.190600px;}
.y28_c02199{bottom:523.470450px;}
.y27_c02199{bottom:540.660450px;}
.y26_c02199{bottom:557.940450px;}
.y25_c02199{bottom:575.220450px;}
.y24_c02199{bottom:592.410450px;}
.y23_c02199{bottom:609.690450px;}
.y22_c02199{bottom:626.880450px;}
.y21_c02199{bottom:644.160450px;}
.y20_c02199{bottom:661.440450px;}
.y1f_c02199{bottom:678.630450px;}
.y1e_c02199{bottom:695.910450px;}
.y1d_c02199{bottom:713.190450px;}
.y1c_c02199{bottom:730.380450px;}
.y1b_c02199{bottom:747.660450px;}
.y1a_c02199{bottom:764.940450px;}
.y19_c02199{bottom:782.130450px;}
.y18_c02199{bottom:799.410450px;}
.y14_c02199{bottom:811.650450px;}
.y17_c02199{bottom:816.690450px;}
.y13_c02199{bottom:830.640450px;}
.y16_c02199{bottom:833.880450px;}
.y12_c02199{bottom:849.630450px;}
.y15_c02199{bottom:851.160450px;}
.y11_c02199{bottom:869.340450px;}
.y10_c02199{bottom:890.760450px;}
.yf_c02199{bottom:912.270450px;}
.ye_c02199{bottom:932.340600px;}
.yd_c02199{bottom:953.040450px;}
.yc_c02199{bottom:973.740450px;}
.yb_c02199{bottom:994.440450px;}
.ya_c02199{bottom:1015.140450px;}
.y9_c02199{bottom:1035.840450px;}
.y8_c02199{bottom:1056.540450px;}
.y7_c02199{bottom:1077.240450px;}
.y6_c02199{bottom:1099.290450px;}
.y5_c02199{bottom:1119.270450px;}
.y4_c02199{bottom:1139.970450px;}
.y1_c02199{bottom:1193.160450px;}
.h7_c02199{height:53.397598px;}
.h3_c02199{height:58.513535px;}
.h6_c02199{height:58.871777px;}
.h2_c02199{height:63.175781px;}
.h1_c02199{height:63.949219px;}
.h4_c02199{height:70.628906px;}
.h5_c02199{height:70.629506px;}
.h0_c02199{height:1263.000000px;}
.w1_c02199{width:892.500000px;}
.w0_c02199{width:892.830000px;}
.x0_c02199{left:0.000000px;}
.x1_c02199{left:127.620000px;}
.x3_c02199{left:135.630000px;}
.x4_c02199{left:252.630000px;}
.x2_c02199{left:433.080000px;}
@media print{
.v2_c02199{vertical-align:-8.000000pt;}
.v1_c02199{vertical-align:-5.120000pt;}
.v0_c02199{vertical-align:0.000000pt;}
.v3_c02199{vertical-align:5.440000pt;}
.ls35_c02199{letter-spacing:-0.251168pt;}
.ls31_c02199{letter-spacing:-0.240480pt;}
.ls36_c02199{letter-spacing:-0.219104pt;}
.ls29_c02199{letter-spacing:-0.197728pt;}
.ls24_c02199{letter-spacing:-0.192384pt;}
.ls33_c02199{letter-spacing:-0.187040pt;}
.ls26_c02199{letter-spacing:-0.181696pt;}
.ls2b_c02199{letter-spacing:-0.176352pt;}
.ls25_c02199{letter-spacing:-0.171008pt;}
.ls2f_c02199{letter-spacing:-0.160320pt;}
.ls2e_c02199{letter-spacing:-0.144288pt;}
.ls2c_c02199{letter-spacing:-0.138944pt;}
.ls2a_c02199{letter-spacing:-0.133600pt;}
.ls2d_c02199{letter-spacing:-0.117568pt;}
.ls34_c02199{letter-spacing:-0.106880pt;}
.ls30_c02199{letter-spacing:-0.101536pt;}
.ls23_c02199{letter-spacing:-0.096192pt;}
.ls21_c02199{letter-spacing:-0.090848pt;}
.ls3a_c02199{letter-spacing:-0.085504pt;}
.ls32_c02199{letter-spacing:-0.080160pt;}
.ls38_c02199{letter-spacing:-0.069472pt;}
.ls3c_c02199{letter-spacing:-0.064000pt;}
.ls27_c02199{letter-spacing:-0.058784pt;}
.ls1e_c02199{letter-spacing:-0.038400pt;}
.ls1b_c02199{letter-spacing:-0.032000pt;}
.ls1c_c02199{letter-spacing:-0.019200pt;}
.ls3b_c02199{letter-spacing:-0.012800pt;}
.ls1f_c02199{letter-spacing:-0.011712pt;}
.ls1d_c02199{letter-spacing:-0.006400pt;}
.ls39_c02199{letter-spacing:-0.005344pt;}
.ls1a_c02199{letter-spacing:0.000000pt;}
.ls11_c02199{letter-spacing:0.005344pt;}
.ls8_c02199{letter-spacing:0.006400pt;}
.ls1_c02199{letter-spacing:0.011712pt;}
.ls0_c02199{letter-spacing:0.012800pt;}
.lsc_c02199{letter-spacing:0.019200pt;}
.ls7_c02199{letter-spacing:0.025600pt;}
.lsd_c02199{letter-spacing:0.029280pt;}
.ls16_c02199{letter-spacing:0.032000pt;}
.ls13_c02199{letter-spacing:0.032064pt;}
.ls15_c02199{letter-spacing:0.035136pt;}
.ls5_c02199{letter-spacing:0.038400pt;}
.ls9_c02199{letter-spacing:0.040992pt;}
.ls18_c02199{letter-spacing:0.044800pt;}
.ls19_c02199{letter-spacing:0.051200pt;}
.lsf_c02199{letter-spacing:0.058560pt;}
.ls12_c02199{letter-spacing:0.058784pt;}
.ls22_c02199{letter-spacing:0.064128pt;}
.ls17_c02199{letter-spacing:0.076800pt;}
.ls10_c02199{letter-spacing:0.090848pt;}
.ls28_c02199{letter-spacing:0.096192pt;}
.ls20_c02199{letter-spacing:0.099552pt;}
.ls14_c02199{letter-spacing:0.101536pt;}
.ls6_c02199{letter-spacing:0.106400pt;}
.lse_c02199{letter-spacing:0.106880pt;}
.ls4_c02199{letter-spacing:0.108800pt;}
.ls37_c02199{letter-spacing:0.112224pt;}
.ls2_c02199{letter-spacing:0.128000pt;}
.ls3_c02199{letter-spacing:0.161728pt;}
.lsa_c02199{letter-spacing:0.320000pt;}
.lsb_c02199{letter-spacing:109.840000pt;}
.ws11_c02199{word-spacing:-0.347360pt;}
.ws1c_c02199{word-spacing:-0.331328pt;}
.ws28_c02199{word-spacing:-0.299264pt;}
.ws27_c02199{word-spacing:-0.245824pt;}
.ws1a_c02199{word-spacing:-0.181696pt;}
.ws34_c02199{word-spacing:-0.171008pt;}
.ws2b_c02199{word-spacing:-0.160320pt;}
.ws36_c02199{word-spacing:-0.154976pt;}
.ws25_c02199{word-spacing:-0.138944pt;}
.ws1e_c02199{word-spacing:-0.106880pt;}
.ws3d_c02199{word-spacing:-0.089600pt;}
.ws3_c02199{word-spacing:-0.070400pt;}
.ws2d_c02199{word-spacing:-0.069472pt;}
.ws1f_c02199{word-spacing:-0.064128pt;}
.ws2c_c02199{word-spacing:-0.053440pt;}
.wsd_c02199{word-spacing:-0.051200pt;}
.ws17_c02199{word-spacing:-0.048096pt;}
.ws1_c02199{word-spacing:-0.044800pt;}
.ws1d_c02199{word-spacing:-0.042752pt;}
.ws4_c02199{word-spacing:-0.038400pt;}
.ws33_c02199{word-spacing:-0.032064pt;}
.ws32_c02199{word-spacing:-0.021376pt;}
.wsf_c02199{word-spacing:-0.019200pt;}
.ws13_c02199{word-spacing:-0.017568pt;}
.ws1b_c02199{word-spacing:-0.016032pt;}
.ws2_c02199{word-spacing:-0.012800pt;}
.ws26_c02199{word-spacing:-0.010688pt;}
.ws0_c02199{word-spacing:0.000000pt;}
.ws15_c02199{word-spacing:0.016032pt;}
.wse_c02199{word-spacing:0.040992pt;}
.ws2a_c02199{word-spacing:0.048096pt;}
.ws10_c02199{word-spacing:0.052704pt;}
.ws29_c02199{word-spacing:0.074816pt;}
.ws2e_c02199{word-spacing:0.080160pt;}
.ws35_c02199{word-spacing:0.085504pt;}
.ws14_c02199{word-spacing:0.171008pt;}
.ws16_c02199{word-spacing:0.176352pt;}
.ws2f_c02199{word-spacing:0.187040pt;}
.ws21_c02199{word-spacing:0.197728pt;}
.ws20_c02199{word-spacing:0.219104pt;}
.ws22_c02199{word-spacing:0.224448pt;}
.ws24_c02199{word-spacing:0.229792pt;}
.ws23_c02199{word-spacing:0.240480pt;}
.ws18_c02199{word-spacing:0.251168pt;}
.ws19_c02199{word-spacing:0.261856pt;}
.ws31_c02199{word-spacing:0.299264pt;}
.ws30_c02199{word-spacing:0.331328pt;}
.ws12_c02199{word-spacing:0.409920pt;}
.ws3c_c02199{word-spacing:0.544000pt;}
.ws3b_c02199{word-spacing:0.563200pt;}
.ws7_c02199{word-spacing:2.745600pt;}
.ws6_c02199{word-spacing:2.816000pt;}
.ws37_c02199{word-spacing:3.795200pt;}
.ws38_c02199{word-spacing:3.852800pt;}
.wsa_c02199{word-spacing:8.569600pt;}
.ws9_c02199{word-spacing:8.646400pt;}
.ws5_c02199{word-spacing:15.379200pt;}
.ws3a_c02199{word-spacing:17.459200pt;}
.ws39_c02199{word-spacing:17.484800pt;}
.ws8_c02199{word-spacing:20.352000pt;}
.wsc_c02199{word-spacing:24.544000pt;}
.wsb_c02199{word-spacing:24.614400pt;}
._3_c02199{margin-left:-0.947200pt;}
._6_c02199{width:1.026048pt;}
._1_c02199{width:14.858880pt;}
._2_c02199{width:19.978880pt;}
._4_c02199{width:24.238880pt;}
._5_c02199{width:129.272672pt;}
._0_c02199{width:170.223680pt;}
.fs3_c02199{font-size:32.000000pt;}
.fs2_c02199{font-size:42.560000pt;}
.fs4_c02199{font-size:53.440000pt;}
.fs1_c02199{font-size:58.560000pt;}
.fs0_c02199{font-size:64.000000pt;}
.y0_c02199{bottom:0.000000pt;}
.y3_c02199{bottom:50.987067pt;}
.y2_c02199{bottom:69.387067pt;}
.y3d_c02199{bottom:116.667067pt;}
.y3c_c02199{bottom:135.067067pt;}
.y3b_c02199{bottom:153.467067pt;}
.y3a_c02199{bottom:171.867067pt;}
.y39_c02199{bottom:190.507067pt;}
.y38_c02199{bottom:208.507067pt;}
.y37_c02199{bottom:226.907067pt;}
.y36_c02199{bottom:245.307067pt;}
.y35_c02199{bottom:263.947067pt;}
.y34_c02199{bottom:281.307067pt;}
.y33_c02199{bottom:296.587067pt;}
.y32_c02199{bottom:311.947067pt;}
.y31_c02199{bottom:327.307067pt;}
.y30_c02199{bottom:342.587067pt;}
.y2f_c02199{bottom:357.947067pt;}
.y2e_c02199{bottom:373.307067pt;}
.y2d_c02199{bottom:388.587200pt;}
.y2c_c02199{bottom:403.947200pt;}
.y2b_c02199{bottom:419.307067pt;}
.y2a_c02199{bottom:434.587067pt;}
.y29_c02199{bottom:449.947200pt;}
.y28_c02199{bottom:465.307067pt;}
.y27_c02199{bottom:480.587067pt;}
.y26_c02199{bottom:495.947067pt;}
.y25_c02199{bottom:511.307067pt;}
.y24_c02199{bottom:526.587067pt;}
.y23_c02199{bottom:541.947067pt;}
.y22_c02199{bottom:557.227067pt;}
.y21_c02199{bottom:572.587067pt;}
.y20_c02199{bottom:587.947067pt;}
.y1f_c02199{bottom:603.227067pt;}
.y1e_c02199{bottom:618.587067pt;}
.y1d_c02199{bottom:633.947067pt;}
.y1c_c02199{bottom:649.227067pt;}
.y1b_c02199{bottom:664.587067pt;}
.y1a_c02199{bottom:679.947067pt;}
.y19_c02199{bottom:695.227067pt;}
.y18_c02199{bottom:710.587067pt;}
.y14_c02199{bottom:721.467067pt;}
.y17_c02199{bottom:725.947067pt;}
.y13_c02199{bottom:738.347067pt;}
.y16_c02199{bottom:741.227067pt;}
.y12_c02199{bottom:755.227067pt;}
.y15_c02199{bottom:756.587067pt;}
.y11_c02199{bottom:772.747067pt;}
.y10_c02199{bottom:791.787067pt;}
.yf_c02199{bottom:810.907067pt;}
.ye_c02199{bottom:828.747200pt;}
.yd_c02199{bottom:847.147067pt;}
.yc_c02199{bottom:865.547067pt;}
.yb_c02199{bottom:883.947067pt;}
.ya_c02199{bottom:902.347067pt;}
.y9_c02199{bottom:920.747067pt;}
.y8_c02199{bottom:939.147067pt;}
.y7_c02199{bottom:957.547067pt;}
.y6_c02199{bottom:977.147067pt;}
.y5_c02199{bottom:994.907067pt;}
.y4_c02199{bottom:1013.307067pt;}
.y1_c02199{bottom:1060.587067pt;}
.h7_c02199{height:47.464531pt;}
.h3_c02199{height:52.012031pt;}
.h6_c02199{height:52.330469pt;}
.h2_c02199{height:56.156250pt;}
.h1_c02199{height:56.843750pt;}
.h4_c02199{height:62.781250pt;}
.h5_c02199{height:62.781783pt;}
.h0_c02199{height:1122.666667pt;}
.w1_c02199{width:793.333333pt;}
.w0_c02199{width:793.626667pt;}
.x0_c02199{left:0.000000pt;}
.x1_c02199{left:113.440000pt;}
.x3_c02199{left:120.560000pt;}
.x4_c02199{left:224.560000pt;}
.x2_c02199{left:384.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_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_2f528d71bf263501f2898df2.woff2')format("woff");}.ff1_c02200{font-family:ff1_c02200;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02200;src:url('chunks/assets/font_531264f95cf4af21f7a9463c.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;}
.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;}
.lsa_c02200{letter-spacing:-0.014400px;}
.ls9_c02200{letter-spacing:-0.007200px;}
.ls8_c02200{letter-spacing:0.000000px;}
.ls6_c02200{letter-spacing:0.007200px;}
.ls2_c02200{letter-spacing:0.014400px;}
.ls0_c02200{letter-spacing:0.021600px;}
.ls5_c02200{letter-spacing:0.028800px;}
.lsb_c02200{letter-spacing:0.039528px;}
.ls7_c02200{letter-spacing:0.050400px;}
.lsc_c02200{letter-spacing:0.052704px;}
.ls3_c02200{letter-spacing:0.057600px;}
.ls1_c02200{letter-spacing:0.064800px;}
.ls4_c02200{letter-spacing:0.065880px;}
.sc__c02200{text-shadow:none;}
.sc0_c02200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02200{-webkit-text-stroke:0px transparent;}
.sc0_c02200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02200{word-spacing:-17.992800px;}
.wsc_c02200{word-spacing:-0.424800px;}
.ws15_c02200{word-spacing:-0.288000px;}
.ws5_c02200{word-spacing:-0.180000px;}
.ws8_c02200{word-spacing:-0.165600px;}
.ws16_c02200{word-spacing:-0.100800px;}
.ws13_c02200{word-spacing:-0.072000px;}
.wsa_c02200{word-spacing:-0.057600px;}
.ws2_c02200{word-spacing:-0.050400px;}
.ws4_c02200{word-spacing:-0.021600px;}
.wsb_c02200{word-spacing:-0.014400px;}
.ws1_c02200{word-spacing:0.000000px;}
.wsd_c02200{word-spacing:0.026352px;}
.ws3_c02200{word-spacing:0.028800px;}
.ws14_c02200{word-spacing:0.039528px;}
.ws9_c02200{word-spacing:0.052704px;}
.ws10_c02200{word-spacing:3.780000px;}
.wse_c02200{word-spacing:3.888000px;}
.wsf_c02200{word-spacing:4.039200px;}
.ws6_c02200{word-spacing:9.597600px;}
.ws7_c02200{word-spacing:9.727200px;}
.ws12_c02200{word-spacing:23.666400px;}
.ws11_c02200{word-spacing:23.688000px;}
._0_c02200{margin-left:-1.036800px;}
.fc0_c02200{color:rgb(0,0,0);}
.fs1_c02200{font-size:65.880000px;}
.fs0_c02200{font-size:72.000000px;}
.y0_c02200{bottom:0.000000px;}
.y3_c02200{bottom:57.360450px;}
.y2_c02200{bottom:78.060450px;}
.y35_c02200{bottom:124.950450px;}
.y34_c02200{bottom:145.650450px;}
.y33_c02200{bottom:166.350450px;}
.y32_c02200{bottom:187.050450px;}
.y31_c02200{bottom:207.750450px;}
.y30_c02200{bottom:228.450450px;}
.y2f_c02200{bottom:249.150450px;}
.y2e_c02200{bottom:269.850450px;}
.y2d_c02200{bottom:290.550450px;}
.y2c_c02200{bottom:311.250450px;}
.y2b_c02200{bottom:331.950450px;}
.y2a_c02200{bottom:352.650450px;}
.y29_c02200{bottom:373.350450px;}
.y28_c02200{bottom:394.050450px;}
.y27_c02200{bottom:414.750450px;}
.y26_c02200{bottom:435.450450px;}
.y25_c02200{bottom:456.150450px;}
.y24_c02200{bottom:476.850450px;}
.y23_c02200{bottom:497.550450px;}
.y22_c02200{bottom:518.250450px;}
.y21_c02200{bottom:538.950450px;}
.y20_c02200{bottom:559.650450px;}
.y1f_c02200{bottom:580.350450px;}
.y1e_c02200{bottom:601.050450px;}
.y1d_c02200{bottom:621.660450px;}
.y1c_c02200{bottom:642.360450px;}
.y1b_c02200{bottom:663.060450px;}
.y1a_c02200{bottom:683.760450px;}
.y19_c02200{bottom:704.460450px;}
.y18_c02200{bottom:725.160450px;}
.y17_c02200{bottom:745.860450px;}
.y16_c02200{bottom:766.560450px;}
.y15_c02200{bottom:787.260450px;}
.y14_c02200{bottom:807.960450px;}
.y13_c02200{bottom:828.660450px;}
.y12_c02200{bottom:850.350450px;}
.y11_c02200{bottom:871.320450px;}
.y10_c02200{bottom:891.480450px;}
.yf_c02200{bottom:912.180450px;}
.ye_c02200{bottom:932.880450px;}
.yd_c02200{bottom:953.580450px;}
.yc_c02200{bottom:974.280450px;}
.yb_c02200{bottom:994.980450px;}
.ya_c02200{bottom:1015.950450px;}
.y9_c02200{bottom:1036.110450px;}
.y8_c02200{bottom:1057.170450px;}
.y7_c02200{bottom:1077.330450px;}
.y6_c02200{bottom:1098.030450px;}
.y5_c02200{bottom:1118.730450px;}
.y4_c02200{bottom:1139.430450px;}
.y1_c02200{bottom:1193.160450px;}
.h3_c02200{height:58.513535px;}
.h2_c02200{height:63.175781px;}
.h1_c02200{height:63.949219px;}
.h0_c02200{height:1263.000000px;}
.w1_c02200{width:892.500000px;}
.w0_c02200{width:892.830000px;}
.x0_c02200{left:0.000000px;}
.x1_c02200{left:127.620000px;}
.x3_c02200{left:135.630000px;}
.x2_c02200{left:433.080000px;}
@media print{
.v0_c02200{vertical-align:0.000000pt;}
.lsa_c02200{letter-spacing:-0.012800pt;}
.ls9_c02200{letter-spacing:-0.006400pt;}
.ls8_c02200{letter-spacing:0.000000pt;}
.ls6_c02200{letter-spacing:0.006400pt;}
.ls2_c02200{letter-spacing:0.012800pt;}
.ls0_c02200{letter-spacing:0.019200pt;}
.ls5_c02200{letter-spacing:0.025600pt;}
.lsb_c02200{letter-spacing:0.035136pt;}
.ls7_c02200{letter-spacing:0.044800pt;}
.lsc_c02200{letter-spacing:0.046848pt;}
.ls3_c02200{letter-spacing:0.051200pt;}
.ls1_c02200{letter-spacing:0.057600pt;}
.ls4_c02200{letter-spacing:0.058560pt;}
.ws0_c02200{word-spacing:-15.993600pt;}
.wsc_c02200{word-spacing:-0.377600pt;}
.ws15_c02200{word-spacing:-0.256000pt;}
.ws5_c02200{word-spacing:-0.160000pt;}
.ws8_c02200{word-spacing:-0.147200pt;}
.ws16_c02200{word-spacing:-0.089600pt;}
.ws13_c02200{word-spacing:-0.064000pt;}
.wsa_c02200{word-spacing:-0.051200pt;}
.ws2_c02200{word-spacing:-0.044800pt;}
.ws4_c02200{word-spacing:-0.019200pt;}
.wsb_c02200{word-spacing:-0.012800pt;}
.ws1_c02200{word-spacing:0.000000pt;}
.wsd_c02200{word-spacing:0.023424pt;}
.ws3_c02200{word-spacing:0.025600pt;}
.ws14_c02200{word-spacing:0.035136pt;}
.ws9_c02200{word-spacing:0.046848pt;}
.ws10_c02200{word-spacing:3.360000pt;}
.wse_c02200{word-spacing:3.456000pt;}
.wsf_c02200{word-spacing:3.590400pt;}
.ws6_c02200{word-spacing:8.531200pt;}
.ws7_c02200{word-spacing:8.646400pt;}
.ws12_c02200{word-spacing:21.036800pt;}
.ws11_c02200{word-spacing:21.056000pt;}
._0_c02200{margin-left:-0.921600pt;}
.fs1_c02200{font-size:58.560000pt;}
.fs0_c02200{font-size:64.000000pt;}
.y0_c02200{bottom:0.000000pt;}
.y3_c02200{bottom:50.987067pt;}
.y2_c02200{bottom:69.387067pt;}
.y35_c02200{bottom:111.067067pt;}
.y34_c02200{bottom:129.467067pt;}
.y33_c02200{bottom:147.867067pt;}
.y32_c02200{bottom:166.267067pt;}
.y31_c02200{bottom:184.667067pt;}
.y30_c02200{bottom:203.067067pt;}
.y2f_c02200{bottom:221.467067pt;}
.y2e_c02200{bottom:239.867067pt;}
.y2d_c02200{bottom:258.267067pt;}
.y2c_c02200{bottom:276.667067pt;}
.y2b_c02200{bottom:295.067067pt;}
.y2a_c02200{bottom:313.467067pt;}
.y29_c02200{bottom:331.867067pt;}
.y28_c02200{bottom:350.267067pt;}
.y27_c02200{bottom:368.667067pt;}
.y26_c02200{bottom:387.067067pt;}
.y25_c02200{bottom:405.467067pt;}
.y24_c02200{bottom:423.867067pt;}
.y23_c02200{bottom:442.267067pt;}
.y22_c02200{bottom:460.667067pt;}
.y21_c02200{bottom:479.067067pt;}
.y20_c02200{bottom:497.467067pt;}
.y1f_c02200{bottom:515.867067pt;}
.y1e_c02200{bottom:534.267067pt;}
.y1d_c02200{bottom:552.587067pt;}
.y1c_c02200{bottom:570.987067pt;}
.y1b_c02200{bottom:589.387067pt;}
.y1a_c02200{bottom:607.787067pt;}
.y19_c02200{bottom:626.187067pt;}
.y18_c02200{bottom:644.587067pt;}
.y17_c02200{bottom:662.987067pt;}
.y16_c02200{bottom:681.387067pt;}
.y15_c02200{bottom:699.787067pt;}
.y14_c02200{bottom:718.187067pt;}
.y13_c02200{bottom:736.587067pt;}
.y12_c02200{bottom:755.867067pt;}
.y11_c02200{bottom:774.507067pt;}
.y10_c02200{bottom:792.427067pt;}
.yf_c02200{bottom:810.827067pt;}
.ye_c02200{bottom:829.227067pt;}
.yd_c02200{bottom:847.627067pt;}
.yc_c02200{bottom:866.027067pt;}
.yb_c02200{bottom:884.427067pt;}
.ya_c02200{bottom:903.067067pt;}
.y9_c02200{bottom:920.987067pt;}
.y8_c02200{bottom:939.707067pt;}
.y7_c02200{bottom:957.627067pt;}
.y6_c02200{bottom:976.027067pt;}
.y5_c02200{bottom:994.427067pt;}
.y4_c02200{bottom:1012.827067pt;}
.y1_c02200{bottom:1060.587067pt;}
.h3_c02200{height:52.012031pt;}
.h2_c02200{height:56.156250pt;}
.h1_c02200{height:56.843750pt;}
.h0_c02200{height:1122.666667pt;}
.w1_c02200{width:793.333333pt;}
.w0_c02200{width:793.626667pt;}
.x0_c02200{left:0.000000pt;}
.x1_c02200{left:113.440000pt;}
.x3_c02200{left:120.560000pt;}
.x2_c02200{left:384.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_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_eb18183c25b386566d42bbfd.woff2')format("woff");}.ff1_c02201{font-family:ff1_c02201;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02201;src:url('chunks/assets/font_c7aacd79ed141b298a258cb0.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;}
.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:11.160000px;}
.ls18_c02201{letter-spacing:-0.007200px;}
.ls1b_c02201{letter-spacing:-0.006012px;}
.ls15_c02201{letter-spacing:0.000000px;}
.ls16_c02201{letter-spacing:0.007200px;}
.ls17_c02201{letter-spacing:0.014400px;}
.ls1_c02201{letter-spacing:0.021600px;}
.ls1a_c02201{letter-spacing:0.032940px;}
.ls3_c02201{letter-spacing:0.039528px;}
.ls0_c02201{letter-spacing:0.043200px;}
.ls19_c02201{letter-spacing:0.046116px;}
.lsb_c02201{letter-spacing:0.059292px;}
.ls10_c02201{letter-spacing:0.072468px;}
.ls4_c02201{letter-spacing:0.076608px;}
.ls9_c02201{letter-spacing:0.079056px;}
.ls1d_c02201{letter-spacing:0.092232px;}
.ls5_c02201{letter-spacing:0.105408px;}
.lse_c02201{letter-spacing:0.111996px;}
.lsf_c02201{letter-spacing:0.125172px;}
.ls8_c02201{letter-spacing:0.138348px;}
.ls13_c02201{letter-spacing:0.144288px;}
.ls11_c02201{letter-spacing:0.144936px;}
.ls6_c02201{letter-spacing:0.151524px;}
.ls2_c02201{letter-spacing:0.158112px;}
.lsa_c02201{letter-spacing:0.164700px;}
.lsc_c02201{letter-spacing:0.171288px;}
.lsd_c02201{letter-spacing:0.177876px;}
.ls1f_c02201{letter-spacing:152.459496px;}
.ls7_c02201{letter-spacing:172.620000px;}
.ls1c_c02201{letter-spacing:185.577372px;}
.ls1e_c02201{letter-spacing:238.413132px;}
.ls12_c02201{letter-spacing:375.928056px;}
.ls14_c02201{letter-spacing:375.930000px;}
.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;}
}
.ws35_c02201{word-spacing:-44.007840px;}
.ws2a_c02201{word-spacing:-10.889964px;}
.ws1e_c02201{word-spacing:-0.428220px;}
.ws18_c02201{word-spacing:-0.172800px;}
.ws21_c02201{word-spacing:-0.167580px;}
.ws1c_c02201{word-spacing:-0.165600px;}
.ws19_c02201{word-spacing:-0.129600px;}
.ws1a_c02201{word-spacing:-0.079200px;}
.ws30_c02201{word-spacing:-0.079056px;}
.ws32_c02201{word-spacing:-0.054108px;}
.ws16_c02201{word-spacing:-0.050400px;}
.ws1b_c02201{word-spacing:-0.043200px;}
.ws17_c02201{word-spacing:-0.014400px;}
.ws22_c02201{word-spacing:-0.013176px;}
.ws1d_c02201{word-spacing:-0.007200px;}
.ws15_c02201{word-spacing:0.000000px;}
.ws24_c02201{word-spacing:0.013176px;}
.ws26_c02201{word-spacing:0.032940px;}
.ws31_c02201{word-spacing:0.046116px;}
.ws1f_c02201{word-spacing:0.052704px;}
.ws20_c02201{word-spacing:0.059292px;}
.ws10_c02201{word-spacing:58.639788px;}
.wsf_c02201{word-spacing:58.659552px;}
.ws11_c02201{word-spacing:67.252032px;}
.wsa_c02201{word-spacing:73.762380px;}
.ws7_c02201{word-spacing:75.202020px;}
.ws2c_c02201{word-spacing:75.511656px;}
.ws33_c02201{word-spacing:80.577828px;}
.ws2e_c02201{word-spacing:80.604180px;}
.wsd_c02201{word-spacing:87.409440px;}
.ws2b_c02201{word-spacing:89.913024px;}
.ws28_c02201{word-spacing:106.119504px;}
.ws5_c02201{word-spacing:106.522380px;}
.wse_c02201{word-spacing:107.053020px;}
.ws6_c02201{word-spacing:108.319896px;}
.ws8_c02201{word-spacing:108.346248px;}
.ws34_c02201{word-spacing:113.708880px;}
.ws4_c02201{word-spacing:122.316372px;}
.ws9_c02201{word-spacing:122.318496px;}
.ws27_c02201{word-spacing:122.681736px;}
.ws25_c02201{word-spacing:122.688324px;}
.ws23_c02201{word-spacing:122.694912px;}
.ws3_c02201{word-spacing:129.921084px;}
.wsc_c02201{word-spacing:138.878496px;}
.ws2f_c02201{word-spacing:138.927744px;}
.ws1_c02201{word-spacing:139.666608px;}
.ws2_c02201{word-spacing:141.108372px;}
.ws0_c02201{word-spacing:162.681084px;}
.ws29_c02201{word-spacing:188.950428px;}
.ws14_c02201{word-spacing:218.430000px;}
.ws12_c02201{word-spacing:218.431728px;}
.wsb_c02201{word-spacing:222.106608px;}
.ws2d_c02201{word-spacing:261.695124px;}
.ws13_c02201{word-spacing:408.943512px;}
._b_c02201{margin-left:-185.485140px;}
._1d_c02201{margin-left:-174.297564px;}
._18_c02201{margin-left:-152.281620px;}
._13_c02201{margin-left:-26.259768px;}
._0_c02201{margin-left:-1.238400px;}
._17_c02201{width:6.884460px;}
._c_c02201{width:19.441188px;}
._1e_c02201{width:83.621304px;}
._1b_c02201{width:86.039280px;}
._20_c02201{width:87.410736px;}
._15_c02201{width:91.368972px;}
._23_c02201{width:97.686576px;}
._14_c02201{width:113.369904px;}
._5_c02201{width:115.818264px;}
._7_c02201{width:118.338264px;}
._4_c02201{width:122.130000px;}
._24_c02201{width:124.650000px;}
._6_c02201{width:135.450000px;}
._11_c02201{width:137.514924px;}
._e_c02201{width:139.035132px;}
._9_c02201{width:141.570000px;}
._26_c02201{width:146.396772px;}
._8_c02201{width:149.128704px;}
._a_c02201{width:151.346124px;}
._29_c02201{width:152.815140px;}
._28_c02201{width:155.793024px;}
._3_c02201{width:170.368704px;}
._2a_c02201{width:171.650340px;}
._1c_c02201{width:178.119756px;}
._1f_c02201{width:179.233128px;}
._21_c02201{width:197.600472px;}
._27_c02201{width:202.422888px;}
._2_c02201{width:212.449392px;}
._10_c02201{width:235.540764px;}
._1a_c02201{width:238.722768px;}
._12_c02201{width:245.205360px;}
._d_c02201{width:259.712136px;}
._16_c02201{width:274.462668px;}
._25_c02201{width:292.830012px;}
._f_c02201{width:303.950556px;}
._19_c02201{width:307.461960px;}
._22_c02201{width:651.652488px;}
._1_c02201{width:2511.000000px;}
.fc0_c02201{color:rgb(0,0,0);}
.fs1_c02201{font-size:11.880000px;}
.fs2_c02201{font-size:24.120000px;}
.fs5_c02201{font-size:47.880000px;}
.fs4_c02201{font-size:60.120000px;}
.fs3_c02201{font-size:65.880000px;}
.fs0_c02201{font-size:72.000000px;}
.y0_c02201{bottom:0.000000px;}
.y3_c02201{bottom:57.360450px;}
.y2_c02201{bottom:78.060450px;}
.y2c_c02201{bottom:121.440450px;}
.y2b_c02201{bottom:140.430450px;}
.y2a_c02201{bottom:159.420450px;}
.y29_c02201{bottom:159.420909px;}
.y28_c02201{bottom:178.769955px;}
.y26_c02201{bottom:197.759955px;}
.y27_c02201{bottom:197.850450px;}
.y25_c02201{bottom:216.751125px;}
.y24_c02201{bottom:235.650540px;}
.y23_c02201{bottom:254.640540px;}
.y22_c02201{bottom:273.630540px;}
.y21_c02201{bottom:292.620450px;}
.y20_c02201{bottom:311.250450px;}
.y1f_c02201{bottom:328.800450px;}
.y1e_c02201{bottom:347.790600px;}
.y1d_c02201{bottom:367.500600px;}
.y1c_c02201{bottom:386.490450px;}
.y1b_c02201{bottom:405.480450px;}
.y1a_c02201{bottom:424.830450px;}
.y18_c02201{bottom:443.820450px;}
.y19_c02201{bottom:443.910450px;}
.y17_c02201{bottom:462.810450px;}
.y16_c02201{bottom:481.710600px;}
.y15_c02201{bottom:500.700600px;}
.y14_c02201{bottom:519.690600px;}
.y13_c02201{bottom:538.680450px;}
.y12_c02201{bottom:557.310450px;}
.y11_c02201{bottom:574.860450px;}
.y10_c02201{bottom:593.850450px;}
.yf_c02201{bottom:613.110450px;}
.ye_c02201{bottom:632.820450px;}
.yd_c02201{bottom:639.480450px;}
.yc_c02201{bottom:656.940369px;}
.yb_c02201{bottom:662.070450px;}
.ya_c02201{bottom:664.860450px;}
.y9_c02201{bottom:1044.300450px;}
.y8_c02201{bottom:1064.280450px;}
.y7_c02201{bottom:1095.330450px;}
.y6_c02201{bottom:1115.850450px;}
.y5_c02201{bottom:1133.220450px;}
.y4_c02201{bottom:1139.970450px;}
.y1_c02201{bottom:1193.160450px;}
.h5_c02201{height:10.424004px;}
.h3_c02201{height:10.551621px;}
.h4_c02201{height:21.422988px;}
.h7_c02201{height:53.686230px;}
.h8_c02201{height:57.805840px;}
.h6_c02201{height:58.513535px;}
.h2_c02201{height:63.175781px;}
.h1_c02201{height:63.949219px;}
.h0_c02201{height:1263.000000px;}
.w1_c02201{width:892.500000px;}
.w0_c02201{width:892.830000px;}
.x0_c02201{left:0.000000px;}
.x1_c02201{left:127.620000px;}
.x4_c02201{left:135.630000px;}
.xb_c02201{left:162.360000px;}
.x6_c02201{left:271.980000px;}
.xe_c02201{left:276.750000px;}
.x5_c02201{left:278.820000px;}
.xf_c02201{left:281.610000px;}
.x14_c02201{left:305.100000px;}
.xc_c02201{left:367.020324px;}
.x3_c02201{left:373.140000px;}
.x2_c02201{left:433.080000px;}
.xd_c02201{left:440.820000px;}
.x8_c02201{left:444.510000px;}
.x7_c02201{left:450.900000px;}
.x10_c02201{left:454.230000px;}
.x11_c02201{left:457.470000px;}
.xa_c02201{left:619.470000px;}
.x9_c02201{left:626.310000px;}
.x12_c02201{left:629.730000px;}
.x13_c02201{left:632.520000px;}
@media print{
.v0_c02201{vertical-align:0.000000pt;}
.v1_c02201{vertical-align:9.920000pt;}
.ls18_c02201{letter-spacing:-0.006400pt;}
.ls1b_c02201{letter-spacing:-0.005344pt;}
.ls15_c02201{letter-spacing:0.000000pt;}
.ls16_c02201{letter-spacing:0.006400pt;}
.ls17_c02201{letter-spacing:0.012800pt;}
.ls1_c02201{letter-spacing:0.019200pt;}
.ls1a_c02201{letter-spacing:0.029280pt;}
.ls3_c02201{letter-spacing:0.035136pt;}
.ls0_c02201{letter-spacing:0.038400pt;}
.ls19_c02201{letter-spacing:0.040992pt;}
.lsb_c02201{letter-spacing:0.052704pt;}
.ls10_c02201{letter-spacing:0.064416pt;}
.ls4_c02201{letter-spacing:0.068096pt;}
.ls9_c02201{letter-spacing:0.070272pt;}
.ls1d_c02201{letter-spacing:0.081984pt;}
.ls5_c02201{letter-spacing:0.093696pt;}
.lse_c02201{letter-spacing:0.099552pt;}
.lsf_c02201{letter-spacing:0.111264pt;}
.ls8_c02201{letter-spacing:0.122976pt;}
.ls13_c02201{letter-spacing:0.128256pt;}
.ls11_c02201{letter-spacing:0.128832pt;}
.ls6_c02201{letter-spacing:0.134688pt;}
.ls2_c02201{letter-spacing:0.140544pt;}
.lsa_c02201{letter-spacing:0.146400pt;}
.lsc_c02201{letter-spacing:0.152256pt;}
.lsd_c02201{letter-spacing:0.158112pt;}
.ls1f_c02201{letter-spacing:135.519552pt;}
.ls7_c02201{letter-spacing:153.440000pt;}
.ls1c_c02201{letter-spacing:164.957664pt;}
.ls1e_c02201{letter-spacing:211.922784pt;}
.ls12_c02201{letter-spacing:334.158272pt;}
.ls14_c02201{letter-spacing:334.160000pt;}
.ws35_c02201{word-spacing:-39.118080pt;}
.ws2a_c02201{word-spacing:-9.679968pt;}
.ws1e_c02201{word-spacing:-0.380640pt;}
.ws18_c02201{word-spacing:-0.153600pt;}
.ws21_c02201{word-spacing:-0.148960pt;}
.ws1c_c02201{word-spacing:-0.147200pt;}
.ws19_c02201{word-spacing:-0.115200pt;}
.ws1a_c02201{word-spacing:-0.070400pt;}
.ws30_c02201{word-spacing:-0.070272pt;}
.ws32_c02201{word-spacing:-0.048096pt;}
.ws16_c02201{word-spacing:-0.044800pt;}
.ws1b_c02201{word-spacing:-0.038400pt;}
.ws17_c02201{word-spacing:-0.012800pt;}
.ws22_c02201{word-spacing:-0.011712pt;}
.ws1d_c02201{word-spacing:-0.006400pt;}
.ws15_c02201{word-spacing:0.000000pt;}
.ws24_c02201{word-spacing:0.011712pt;}
.ws26_c02201{word-spacing:0.029280pt;}
.ws31_c02201{word-spacing:0.040992pt;}
.ws1f_c02201{word-spacing:0.046848pt;}
.ws20_c02201{word-spacing:0.052704pt;}
.ws10_c02201{word-spacing:52.124256pt;}
.wsf_c02201{word-spacing:52.141824pt;}
.ws11_c02201{word-spacing:59.779584pt;}
.wsa_c02201{word-spacing:65.566560pt;}
.ws7_c02201{word-spacing:66.846240pt;}
.ws2c_c02201{word-spacing:67.121472pt;}
.ws33_c02201{word-spacing:71.624736pt;}
.ws2e_c02201{word-spacing:71.648160pt;}
.wsd_c02201{word-spacing:77.697280pt;}
.ws2b_c02201{word-spacing:79.922688pt;}
.ws28_c02201{word-spacing:94.328448pt;}
.ws5_c02201{word-spacing:94.686560pt;}
.wse_c02201{word-spacing:95.158240pt;}
.ws6_c02201{word-spacing:96.284352pt;}
.ws8_c02201{word-spacing:96.307776pt;}
.ws34_c02201{word-spacing:101.074560pt;}
.ws4_c02201{word-spacing:108.725664pt;}
.ws9_c02201{word-spacing:108.727552pt;}
.ws27_c02201{word-spacing:109.050432pt;}
.ws25_c02201{word-spacing:109.056288pt;}
.ws23_c02201{word-spacing:109.062144pt;}
.ws3_c02201{word-spacing:115.485408pt;}
.wsc_c02201{word-spacing:123.447552pt;}
.ws2f_c02201{word-spacing:123.491328pt;}
.ws1_c02201{word-spacing:124.148096pt;}
.ws2_c02201{word-spacing:125.429664pt;}
.ws0_c02201{word-spacing:144.605408pt;}
.ws29_c02201{word-spacing:167.955936pt;}
.ws14_c02201{word-spacing:194.160000pt;}
.ws12_c02201{word-spacing:194.161536pt;}
.wsb_c02201{word-spacing:197.428096pt;}
.ws2d_c02201{word-spacing:232.617888pt;}
.ws13_c02201{word-spacing:363.505344pt;}
._b_c02201{margin-left:-164.875680pt;}
._1d_c02201{margin-left:-154.931168pt;}
._18_c02201{margin-left:-135.361440pt;}
._13_c02201{margin-left:-23.342016pt;}
._0_c02201{margin-left:-1.100800pt;}
._17_c02201{width:6.119520pt;}
._c_c02201{width:17.281056pt;}
._1e_c02201{width:74.330048pt;}
._1b_c02201{width:76.479360pt;}
._20_c02201{width:77.698432pt;}
._15_c02201{width:81.216864pt;}
._23_c02201{width:86.832512pt;}
._14_c02201{width:100.773248pt;}
._5_c02201{width:102.949568pt;}
._7_c02201{width:105.189568pt;}
._4_c02201{width:108.560000pt;}
._24_c02201{width:110.800000pt;}
._6_c02201{width:120.400000pt;}
._11_c02201{width:122.235488pt;}
._e_c02201{width:123.586784pt;}
._9_c02201{width:125.840000pt;}
._26_c02201{width:130.130464pt;}
._8_c02201{width:132.558848pt;}
._a_c02201{width:134.529888pt;}
._29_c02201{width:135.835680pt;}
._28_c02201{width:138.482688pt;}
._3_c02201{width:151.438848pt;}
._2a_c02201{width:152.578080pt;}
._1c_c02201{width:158.328672pt;}
._1f_c02201{width:159.318336pt;}
._21_c02201{width:175.644864pt;}
._27_c02201{width:179.931456pt;}
._2_c02201{width:188.843904pt;}
._10_c02201{width:209.369568pt;}
._1a_c02201{width:212.198016pt;}
._12_c02201{width:217.960320pt;}
._d_c02201{width:230.855232pt;}
._16_c02201{width:243.966816pt;}
._25_c02201{width:260.293344pt;}
._f_c02201{width:270.178272pt;}
._19_c02201{width:273.299520pt;}
._22_c02201{width:579.246656pt;}
._1_c02201{width:2232.000000pt;}
.fs1_c02201{font-size:10.560000pt;}
.fs2_c02201{font-size:21.440000pt;}
.fs5_c02201{font-size:42.560000pt;}
.fs4_c02201{font-size:53.440000pt;}
.fs3_c02201{font-size:58.560000pt;}
.fs0_c02201{font-size:64.000000pt;}
.y0_c02201{bottom:0.000000pt;}
.y3_c02201{bottom:50.987067pt;}
.y2_c02201{bottom:69.387067pt;}
.y2c_c02201{bottom:107.947067pt;}
.y2b_c02201{bottom:124.827067pt;}
.y2a_c02201{bottom:141.707067pt;}
.y29_c02201{bottom:141.707475pt;}
.y28_c02201{bottom:158.906627pt;}
.y26_c02201{bottom:175.786627pt;}
.y27_c02201{bottom:175.867067pt;}
.y25_c02201{bottom:192.667667pt;}
.y24_c02201{bottom:209.467147pt;}
.y23_c02201{bottom:226.347147pt;}
.y22_c02201{bottom:243.227147pt;}
.y21_c02201{bottom:260.107067pt;}
.y20_c02201{bottom:276.667067pt;}
.y1f_c02201{bottom:292.267067pt;}
.y1e_c02201{bottom:309.147200pt;}
.y1d_c02201{bottom:326.667200pt;}
.y1c_c02201{bottom:343.547067pt;}
.y1b_c02201{bottom:360.427067pt;}
.y1a_c02201{bottom:377.627067pt;}
.y18_c02201{bottom:394.507067pt;}
.y19_c02201{bottom:394.587067pt;}
.y17_c02201{bottom:411.387067pt;}
.y16_c02201{bottom:428.187200pt;}
.y15_c02201{bottom:445.067200pt;}
.y14_c02201{bottom:461.947200pt;}
.y13_c02201{bottom:478.827067pt;}
.y12_c02201{bottom:495.387067pt;}
.y11_c02201{bottom:510.987067pt;}
.y10_c02201{bottom:527.867067pt;}
.yf_c02201{bottom:544.987067pt;}
.ye_c02201{bottom:562.507067pt;}
.yd_c02201{bottom:568.427067pt;}
.yc_c02201{bottom:583.946995pt;}
.yb_c02201{bottom:588.507067pt;}
.ya_c02201{bottom:590.987067pt;}
.y9_c02201{bottom:928.267067pt;}
.y8_c02201{bottom:946.027067pt;}
.y7_c02201{bottom:973.627067pt;}
.y6_c02201{bottom:991.867067pt;}
.y5_c02201{bottom:1007.307067pt;}
.y4_c02201{bottom:1013.307067pt;}
.y1_c02201{bottom:1060.587067pt;}
.h5_c02201{height:9.265781pt;}
.h3_c02201{height:9.379219pt;}
.h4_c02201{height:19.042656pt;}
.h7_c02201{height:47.721094pt;}
.h8_c02201{height:51.382969pt;}
.h6_c02201{height:52.012031pt;}
.h2_c02201{height:56.156250pt;}
.h1_c02201{height:56.843750pt;}
.h0_c02201{height:1122.666667pt;}
.w1_c02201{width:793.333333pt;}
.w0_c02201{width:793.626667pt;}
.x0_c02201{left:0.000000pt;}
.x1_c02201{left:113.440000pt;}
.x4_c02201{left:120.560000pt;}
.xb_c02201{left:144.320000pt;}
.x6_c02201{left:241.760000pt;}
.xe_c02201{left:246.000000pt;}
.x5_c02201{left:247.840000pt;}
.xf_c02201{left:250.320000pt;}
.x14_c02201{left:271.200000pt;}
.xc_c02201{left:326.240288pt;}
.x3_c02201{left:331.680000pt;}
.x2_c02201{left:384.960000pt;}
.xd_c02201{left:391.840000pt;}
.x8_c02201{left:395.120000pt;}
.x7_c02201{left:400.800000pt;}
.x10_c02201{left:403.760000pt;}
.x11_c02201{left:406.640000pt;}
.xa_c02201{left:550.640000pt;}
.x9_c02201{left:556.720000pt;}
.x12_c02201{left:559.760000pt;}
.x13_c02201{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_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_438668354b173a62f2dbd579.woff2')format("woff");}.ff1_c02202{font-family:ff1_c02202;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02202;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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:11.160000px;}
.ls25_c02202{letter-spacing:-0.086184px;}
.ls26_c02202{letter-spacing:-0.046116px;}
.ls20_c02202{letter-spacing:-0.006012px;}
.ls1d_c02202{letter-spacing:0.000000px;}
.ls1e_c02202{letter-spacing:0.007200px;}
.ls2_c02202{letter-spacing:0.026352px;}
.ls3_c02202{letter-spacing:0.032940px;}
.ls12_c02202{letter-spacing:0.039528px;}
.ls1f_c02202{letter-spacing:0.046116px;}
.lsa_c02202{letter-spacing:0.059292px;}
.ls15_c02202{letter-spacing:0.062244px;}
.ls1c_c02202{letter-spacing:0.067032px;}
.ls10_c02202{letter-spacing:0.072468px;}
.ls4_c02202{letter-spacing:0.076608px;}
.ls8_c02202{letter-spacing:0.079056px;}
.ls19_c02202{letter-spacing:0.085644px;}
.ls22_c02202{letter-spacing:0.092232px;}
.ls6_c02202{letter-spacing:0.105408px;}
.lse_c02202{letter-spacing:0.111996px;}
.lsf_c02202{letter-spacing:0.125172px;}
.lsb_c02202{letter-spacing:0.138348px;}
.ls5_c02202{letter-spacing:0.144288px;}
.ls11_c02202{letter-spacing:0.144936px;}
.ls7_c02202{letter-spacing:0.151524px;}
.ls0_c02202{letter-spacing:0.158112px;}
.ls9_c02202{letter-spacing:0.164700px;}
.ls1_c02202{letter-spacing:0.171288px;}
.lsc_c02202{letter-spacing:0.177876px;}
.ls18_c02202{letter-spacing:94.410000px;}
.ls17_c02202{letter-spacing:96.930000px;}
.ls16_c02202{letter-spacing:160.290000px;}
.ls24_c02202{letter-spacing:172.618776px;}
.lsd_c02202{letter-spacing:172.620000px;}
.ls14_c02202{letter-spacing:205.740000px;}
.ls21_c02202{letter-spacing:205.743240px;}
.ls23_c02202{letter-spacing:238.413132px;}
.ls13_c02202{letter-spacing:375.928056px;}
.ls1a_c02202{letter-spacing:376.290000px;}
.ls1b_c02202{letter-spacing:696.060000px;}
.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;}
}
.ws3c_c02202{word-spacing:-42.571656px;}
.ws21_c02202{word-spacing:-16.647876px;}
.ws2f_c02202{word-spacing:-0.428220px;}
.ws31_c02202{word-spacing:-0.167580px;}
.ws32_c02202{word-spacing:-0.054108px;}
.ws2d_c02202{word-spacing:-0.050400px;}
.ws33_c02202{word-spacing:-0.013176px;}
.ws2c_c02202{word-spacing:0.000000px;}
.ws44_c02202{word-spacing:0.006588px;}
.ws35_c02202{word-spacing:0.013176px;}
.ws37_c02202{word-spacing:0.032940px;}
.ws42_c02202{word-spacing:0.052704px;}
.ws30_c02202{word-spacing:0.059292px;}
.ws2e_c02202{word-spacing:0.065880px;}
.ws27_c02202{word-spacing:77.362380px;}
.ws24_c02202{word-spacing:79.882380px;}
.ws2b_c02202{word-spacing:79.906608px;}
.ws16_c02202{word-spacing:80.241840px;}
.wsd_c02202{word-spacing:80.261604px;}
.ws40_c02202{word-spacing:80.604180px;}
.ws41_c02202{word-spacing:80.966520px;}
.ws20_c02202{word-spacing:83.842380px;}
.wsb_c02202{word-spacing:87.409440px;}
.ws17_c02202{word-spacing:87.409980px;}
.wsf_c02202{word-spacing:87.469272px;}
.wsa_c02202{word-spacing:89.558496px;}
.ws8_c02202{word-spacing:89.962380px;}
.ws29_c02202{word-spacing:96.398496px;}
.ws1f_c02202{word-spacing:96.400728px;}
.ws3e_c02202{word-spacing:97.113708px;}
.ws3a_c02202{word-spacing:97.476048px;}
.ws25_c02202{word-spacing:102.529440px;}
.ws23_c02202{word-spacing:104.678496px;}
.wse_c02202{word-spacing:113.359716px;}
.ws43_c02202{word-spacing:113.735232px;}
.ws1a_c02202{word-spacing:116.602380px;}
.ws26_c02202{word-spacing:117.133020px;}
.ws1_c02202{word-spacing:122.316372px;}
.ws7_c02202{word-spacing:122.318496px;}
.ws39_c02202{word-spacing:122.681736px;}
.ws36_c02202{word-spacing:122.688324px;}
.ws34_c02202{word-spacing:122.694912px;}
.ws2_c02202{word-spacing:122.722380px;}
.wsc_c02202{word-spacing:123.253020px;}
.ws1c_c02202{word-spacing:127.042380px;}
.ws1e_c02202{word-spacing:127.163304px;}
.ws18_c02202{word-spacing:129.562380px;}
.ws28_c02202{word-spacing:129.586608px;}
.ws0_c02202{word-spacing:129.921084px;}
.ws5_c02202{word-spacing:129.921948px;}
.ws4_c02202{word-spacing:129.923856px;}
.ws11_c02202{word-spacing:129.947436px;}
.ws6_c02202{word-spacing:129.950208px;}
.ws13_c02202{word-spacing:130.040532px;}
.ws19_c02202{word-spacing:137.436372px;}
.ws15_c02202{word-spacing:138.878496px;}
.ws3d_c02202{word-spacing:139.230792px;}
.ws14_c02202{word-spacing:139.282380px;}
.ws38_c02202{word-spacing:155.812788px;}
.ws1b_c02202{word-spacing:159.802380px;}
.ws3_c02202{word-spacing:162.684072px;}
.ws2a_c02202{word-spacing:162.990000px;}
.ws1d_c02202{word-spacing:182.963304px;}
.ws3b_c02202{word-spacing:188.950428px;}
.ws12_c02202{word-spacing:189.083304px;}
.ws22_c02202{word-spacing:232.186608px;}
.ws9_c02202{word-spacing:238.306608px;}
.ws10_c02202{word-spacing:238.591008px;}
.ws3f_c02202{word-spacing:261.695124px;}
._9_c02202{margin-left:-205.651008px;}
._26_c02202{margin-left:-174.297564px;}
._22_c02202{margin-left:-172.440900px;}
._11_c02202{margin-left:-26.259768px;}
._0_c02202{margin-left:-1.139724px;}
._14_c02202{width:6.884460px;}
._15_c02202{width:33.210108px;}
._34_c02202{width:48.089664px;}
._17_c02202{width:56.169288px;}
._c_c02202{width:80.591004px;}
._3e_c02202{width:83.106756px;}
._3b_c02202{width:84.518496px;}
._3d_c02202{width:86.689440px;}
._1c_c02202{width:88.355160px;}
._1d_c02202{width:96.914160px;}
._43_c02202{width:97.934868px;}
._1a_c02202{width:99.004464px;}
._1b_c02202{width:103.779252px;}
._25_c02202{width:106.650900px;}
._36_c02202{width:110.080620px;}
._12_c02202{width:113.372244px;}
._40_c02202{width:114.439788px;}
._4_c02202{width:115.818264px;}
._6_c02202{width:117.354564px;}
._5_c02202{width:118.530000px;}
._2a_c02202{width:119.778264px;}
._44_c02202{width:121.000500px;}
._3_c02202{width:122.130000px;}
._21_c02202{width:126.810000px;}
._2f_c02202{width:128.430000px;}
._29_c02202{width:131.310000px;}
._2d_c02202{width:135.978264px;}
._24_c02202{width:137.514924px;}
._b_c02202{width:138.980448px;}
._8_c02202{width:151.346124px;}
._35_c02202{width:153.638388px;}
._19_c02202{width:155.522916px;}
._2c_c02202{width:157.230000px;}
._37_c02202{width:162.471060px;}
._41_c02202{width:163.671660px;}
._2_c02202{width:170.368704px;}
._7_c02202{width:178.288704px;}
._2e_c02202{width:179.987688px;}
._42_c02202{width:183.874248px;}
._38_c02202{width:187.740000px;}
._28_c02202{width:189.707688px;}
._2b_c02202{width:190.787688px;}
._39_c02202{width:195.594132px;}
._1e_c02202{width:197.600472px;}
._1_c02202{width:212.350716px;}
._33_c02202{width:220.860000px;}
._3f_c02202{width:233.016372px;}
._e_c02202{width:235.540764px;}
._31_c02202{width:236.971188px;}
._1f_c02202{width:238.235256px;}
._10_c02202{width:245.205360px;}
._3a_c02202{width:248.794740px;}
._18_c02202{width:254.440620px;}
._a_c02202{width:259.712136px;}
._3c_c02202{width:260.890776px;}
._13_c02202{width:274.462668px;}
._23_c02202{width:292.830012px;}
._30_c02202{width:303.231744px;}
._16_c02202{width:307.461960px;}
._d_c02202{width:336.712680px;}
._27_c02202{width:347.997816px;}
._32_c02202{width:376.290000px;}
._20_c02202{width:689.940000px;}
._f_c02202{width:827.637696px;}
.fc0_c02202{color:rgb(0,0,0);}
.fs3_c02202{font-size:47.880000px;}
.fs4_c02202{font-size:54.000000px;}
.fs2_c02202{font-size:60.120000px;}
.fs1_c02202{font-size:65.880000px;}
.fs0_c02202{font-size:72.000000px;}
.y0_c02202{bottom:0.000000px;}
.y3_c02202{bottom:57.360450px;}
.y2_c02202{bottom:78.060450px;}
.y3f_c02202{bottom:129.450450px;}
.y3e_c02202{bottom:148.440450px;}
.y3d_c02202{bottom:167.430450px;}
.y3c_c02202{bottom:186.780450px;}
.y3b_c02202{bottom:205.770450px;}
.y3a_c02202{bottom:224.670450px;}
.y39_c02202{bottom:243.660450px;}
.y38_c02202{bottom:262.650450px;}
.y37_c02202{bottom:281.640450px;}
.y36_c02202{bottom:300.630450px;}
.y35_c02202{bottom:318.540450px;}
.y34_c02202{bottom:333.390450px;}
.y33_c02202{bottom:352.380450px;}
.y32_c02202{bottom:372.090450px;}
.y31_c02202{bottom:391.080450px;}
.y30_c02202{bottom:409.980450px;}
.y2f_c02202{bottom:429.330450px;}
.y2e_c02202{bottom:448.320450px;}
.y2d_c02202{bottom:467.310450px;}
.y2c_c02202{bottom:486.300450px;}
.y2b_c02202{bottom:505.290600px;}
.y2a_c02202{bottom:524.190600px;}
.y29_c02202{bottom:543.180450px;}
.y28_c02202{bottom:561.180450px;}
.y27_c02202{bottom:575.940450px;}
.y26_c02202{bottom:594.930450px;}
.y25_c02202{bottom:614.190450px;}
.y24_c02202{bottom:636.240000px;}
.y23_c02202{bottom:651.720450px;}
.y22_c02202{bottom:668.280450px;}
.y21_c02202{bottom:687.270450px;}
.y20_c02202{bottom:706.260450px;}
.y1e_c02202{bottom:725.610450px;}
.y1f_c02202{bottom:725.700450px;}
.y1c_c02202{bottom:744.600450px;}
.y1d_c02202{bottom:744.690450px;}
.y1b_c02202{bottom:763.500450px;}
.y1a_c02202{bottom:782.490450px;}
.y19_c02202{bottom:801.480450px;}
.y18_c02202{bottom:820.470450px;}
.y17_c02202{bottom:839.460450px;}
.y16_c02202{bottom:858.000600px;}
.y15_c02202{bottom:875.640450px;}
.y14_c02202{bottom:894.630450px;}
.y13_c02202{bottom:914.340450px;}
.y12_c02202{bottom:933.330450px;}
.y11_c02202{bottom:952.320450px;}
.y10_c02202{bottom:952.320909px;}
.ye_c02202{bottom:971.670540px;}
.yf_c02202{bottom:971.760450px;}
.yc_c02202{bottom:990.569955px;}
.yd_c02202{bottom:990.660450px;}
.yb_c02202{bottom:1009.559955px;}
.ya_c02202{bottom:1028.550540px;}
.y9_c02202{bottom:1047.540540px;}
.y8_c02202{bottom:1066.530540px;}
.y7_c02202{bottom:1085.520450px;}
.y6_c02202{bottom:1104.060450px;}
.y5_c02202{bottom:1121.700450px;}
.y4_c02202{bottom:1140.690450px;}
.y1_c02202{bottom:1193.160450px;}
.h7_c02202{height:42.526230px;}
.h6_c02202{height:47.961914px;}
.h4_c02202{height:53.686230px;}
.h5_c02202{height:57.805840px;}
.h3_c02202{height:58.513535px;}
.h2_c02202{height:63.175781px;}
.h1_c02202{height:63.949219px;}
.h0_c02202{height:1263.000000px;}
.w1_c02202{width:892.500000px;}
.w0_c02202{width:892.830000px;}
.x0_c02202{left:0.000000px;}
.x1_c02202{left:127.620000px;}
.x3_c02202{left:135.630000px;}
.xa_c02202{left:162.360000px;}
.x15_c02202{left:238.500000px;}
.x11_c02202{left:270.180000px;}
.x5_c02202{left:276.570000px;}
.x4_c02202{left:278.820000px;}
.x10_c02202{left:305.100000px;}
.xb_c02202{left:367.020324px;}
.xd_c02202{left:375.299100px;}
.x16_c02202{left:411.930000px;}
.xf_c02202{left:424.350000px;}
.x2_c02202{left:433.080000px;}
.xe_c02202{left:440.820000px;}
.x12_c02202{left:443.970000px;}
.x7_c02202{left:452.430000px;}
.x6_c02202{left:454.230000px;}
.x17_c02202{left:594.720000px;}
.x13_c02202{left:621.090000px;}
.x9_c02202{left:627.480000px;}
.x8_c02202{left:629.730000px;}
.x14_c02202{left:726.210567px;}
.xc_c02202{left:734.490036px;}
@media print{
.v0_c02202{vertical-align:0.000000pt;}
.v1_c02202{vertical-align:9.920000pt;}
.ls25_c02202{letter-spacing:-0.076608pt;}
.ls26_c02202{letter-spacing:-0.040992pt;}
.ls20_c02202{letter-spacing:-0.005344pt;}
.ls1d_c02202{letter-spacing:0.000000pt;}
.ls1e_c02202{letter-spacing:0.006400pt;}
.ls2_c02202{letter-spacing:0.023424pt;}
.ls3_c02202{letter-spacing:0.029280pt;}
.ls12_c02202{letter-spacing:0.035136pt;}
.ls1f_c02202{letter-spacing:0.040992pt;}
.lsa_c02202{letter-spacing:0.052704pt;}
.ls15_c02202{letter-spacing:0.055328pt;}
.ls1c_c02202{letter-spacing:0.059584pt;}
.ls10_c02202{letter-spacing:0.064416pt;}
.ls4_c02202{letter-spacing:0.068096pt;}
.ls8_c02202{letter-spacing:0.070272pt;}
.ls19_c02202{letter-spacing:0.076128pt;}
.ls22_c02202{letter-spacing:0.081984pt;}
.ls6_c02202{letter-spacing:0.093696pt;}
.lse_c02202{letter-spacing:0.099552pt;}
.lsf_c02202{letter-spacing:0.111264pt;}
.lsb_c02202{letter-spacing:0.122976pt;}
.ls5_c02202{letter-spacing:0.128256pt;}
.ls11_c02202{letter-spacing:0.128832pt;}
.ls7_c02202{letter-spacing:0.134688pt;}
.ls0_c02202{letter-spacing:0.140544pt;}
.ls9_c02202{letter-spacing:0.146400pt;}
.ls1_c02202{letter-spacing:0.152256pt;}
.lsc_c02202{letter-spacing:0.158112pt;}
.ls18_c02202{letter-spacing:83.920000pt;}
.ls17_c02202{letter-spacing:86.160000pt;}
.ls16_c02202{letter-spacing:142.480000pt;}
.ls24_c02202{letter-spacing:153.438912pt;}
.lsd_c02202{letter-spacing:153.440000pt;}
.ls14_c02202{letter-spacing:182.880000pt;}
.ls21_c02202{letter-spacing:182.882880pt;}
.ls23_c02202{letter-spacing:211.922784pt;}
.ls13_c02202{letter-spacing:334.158272pt;}
.ls1a_c02202{letter-spacing:334.480000pt;}
.ls1b_c02202{letter-spacing:618.720000pt;}
.ws3c_c02202{word-spacing:-37.841472pt;}
.ws21_c02202{word-spacing:-14.798112pt;}
.ws2f_c02202{word-spacing:-0.380640pt;}
.ws31_c02202{word-spacing:-0.148960pt;}
.ws32_c02202{word-spacing:-0.048096pt;}
.ws2d_c02202{word-spacing:-0.044800pt;}
.ws33_c02202{word-spacing:-0.011712pt;}
.ws2c_c02202{word-spacing:0.000000pt;}
.ws44_c02202{word-spacing:0.005856pt;}
.ws35_c02202{word-spacing:0.011712pt;}
.ws37_c02202{word-spacing:0.029280pt;}
.ws42_c02202{word-spacing:0.046848pt;}
.ws30_c02202{word-spacing:0.052704pt;}
.ws2e_c02202{word-spacing:0.058560pt;}
.ws27_c02202{word-spacing:68.766560pt;}
.ws24_c02202{word-spacing:71.006560pt;}
.ws2b_c02202{word-spacing:71.028096pt;}
.ws16_c02202{word-spacing:71.326080pt;}
.wsd_c02202{word-spacing:71.343648pt;}
.ws40_c02202{word-spacing:71.648160pt;}
.ws41_c02202{word-spacing:71.970240pt;}
.ws20_c02202{word-spacing:74.526560pt;}
.wsb_c02202{word-spacing:77.697280pt;}
.ws17_c02202{word-spacing:77.697760pt;}
.wsf_c02202{word-spacing:77.750464pt;}
.wsa_c02202{word-spacing:79.607552pt;}
.ws8_c02202{word-spacing:79.966560pt;}
.ws29_c02202{word-spacing:85.687552pt;}
.ws1f_c02202{word-spacing:85.689536pt;}
.ws3e_c02202{word-spacing:86.323296pt;}
.ws3a_c02202{word-spacing:86.645376pt;}
.ws25_c02202{word-spacing:91.137280pt;}
.ws23_c02202{word-spacing:93.047552pt;}
.wse_c02202{word-spacing:100.764192pt;}
.ws43_c02202{word-spacing:101.097984pt;}
.ws1a_c02202{word-spacing:103.646560pt;}
.ws26_c02202{word-spacing:104.118240pt;}
.ws1_c02202{word-spacing:108.725664pt;}
.ws7_c02202{word-spacing:108.727552pt;}
.ws39_c02202{word-spacing:109.050432pt;}
.ws36_c02202{word-spacing:109.056288pt;}
.ws34_c02202{word-spacing:109.062144pt;}
.ws2_c02202{word-spacing:109.086560pt;}
.wsc_c02202{word-spacing:109.558240pt;}
.ws1c_c02202{word-spacing:112.926560pt;}
.ws1e_c02202{word-spacing:113.034048pt;}
.ws18_c02202{word-spacing:115.166560pt;}
.ws28_c02202{word-spacing:115.188096pt;}
.ws0_c02202{word-spacing:115.485408pt;}
.ws5_c02202{word-spacing:115.486176pt;}
.ws4_c02202{word-spacing:115.487872pt;}
.ws11_c02202{word-spacing:115.508832pt;}
.ws6_c02202{word-spacing:115.511296pt;}
.ws13_c02202{word-spacing:115.591584pt;}
.ws19_c02202{word-spacing:122.165664pt;}
.ws15_c02202{word-spacing:123.447552pt;}
.ws3d_c02202{word-spacing:123.760704pt;}
.ws14_c02202{word-spacing:123.806560pt;}
.ws38_c02202{word-spacing:138.500256pt;}
.ws1b_c02202{word-spacing:142.046560pt;}
.ws3_c02202{word-spacing:144.608064pt;}
.ws2a_c02202{word-spacing:144.880000pt;}
.ws1d_c02202{word-spacing:162.634048pt;}
.ws3b_c02202{word-spacing:167.955936pt;}
.ws12_c02202{word-spacing:168.074048pt;}
.ws22_c02202{word-spacing:206.388096pt;}
.ws9_c02202{word-spacing:211.828096pt;}
.ws10_c02202{word-spacing:212.080896pt;}
.ws3f_c02202{word-spacing:232.617888pt;}
._9_c02202{margin-left:-182.800896pt;}
._26_c02202{margin-left:-154.931168pt;}
._22_c02202{margin-left:-153.280800pt;}
._11_c02202{margin-left:-23.342016pt;}
._0_c02202{margin-left:-1.013088pt;}
._14_c02202{width:6.119520pt;}
._15_c02202{width:29.520096pt;}
._34_c02202{width:42.746368pt;}
._17_c02202{width:49.928256pt;}
._c_c02202{width:71.636448pt;}
._3e_c02202{width:73.872672pt;}
._3b_c02202{width:75.127552pt;}
._3d_c02202{width:77.057280pt;}
._1c_c02202{width:78.537920pt;}
._1d_c02202{width:86.145920pt;}
._43_c02202{width:87.053216pt;}
._1a_c02202{width:88.003968pt;}
._1b_c02202{width:92.248224pt;}
._25_c02202{width:94.800800pt;}
._36_c02202{width:97.849440pt;}
._12_c02202{width:100.775328pt;}
._40_c02202{width:101.724256pt;}
._4_c02202{width:102.949568pt;}
._6_c02202{width:104.315168pt;}
._5_c02202{width:105.360000pt;}
._2a_c02202{width:106.469568pt;}
._44_c02202{width:107.556000pt;}
._3_c02202{width:108.560000pt;}
._21_c02202{width:112.720000pt;}
._2f_c02202{width:114.160000pt;}
._29_c02202{width:116.720000pt;}
._2d_c02202{width:120.869568pt;}
._24_c02202{width:122.235488pt;}
._b_c02202{width:123.538176pt;}
._8_c02202{width:134.529888pt;}
._35_c02202{width:136.567456pt;}
._19_c02202{width:138.242592pt;}
._2c_c02202{width:139.760000pt;}
._37_c02202{width:144.418720pt;}
._41_c02202{width:145.485920pt;}
._2_c02202{width:151.438848pt;}
._7_c02202{width:158.478848pt;}
._2e_c02202{width:159.989056pt;}
._42_c02202{width:163.443776pt;}
._38_c02202{width:166.880000pt;}
._28_c02202{width:168.629056pt;}
._2b_c02202{width:169.589056pt;}
._39_c02202{width:173.861451pt;}
._1e_c02202{width:175.644864pt;}
._1_c02202{width:188.756192pt;}
._33_c02202{width:196.320000pt;}
._3f_c02202{width:207.125664pt;}
._e_c02202{width:209.369568pt;}
._31_c02202{width:210.641056pt;}
._1f_c02202{width:211.764672pt;}
._10_c02202{width:217.960320pt;}
._3a_c02202{width:221.150880pt;}
._18_c02202{width:226.169440pt;}
._a_c02202{width:230.855232pt;}
._3c_c02202{width:231.902912pt;}
._13_c02202{width:243.966816pt;}
._23_c02202{width:260.293344pt;}
._30_c02202{width:269.539328pt;}
._16_c02202{width:273.299520pt;}
._d_c02202{width:299.300160pt;}
._27_c02202{width:309.331392pt;}
._32_c02202{width:334.480000pt;}
._20_c02202{width:613.280000pt;}
._f_c02202{width:735.677952pt;}
.fs3_c02202{font-size:42.560000pt;}
.fs4_c02202{font-size:48.000000pt;}
.fs2_c02202{font-size:53.440000pt;}
.fs1_c02202{font-size:58.560000pt;}
.fs0_c02202{font-size:64.000000pt;}
.y0_c02202{bottom:0.000000pt;}
.y3_c02202{bottom:50.987067pt;}
.y2_c02202{bottom:69.387067pt;}
.y3f_c02202{bottom:115.067067pt;}
.y3e_c02202{bottom:131.947067pt;}
.y3d_c02202{bottom:148.827067pt;}
.y3c_c02202{bottom:166.027067pt;}
.y3b_c02202{bottom:182.907067pt;}
.y3a_c02202{bottom:199.707067pt;}
.y39_c02202{bottom:216.587067pt;}
.y38_c02202{bottom:233.467067pt;}
.y37_c02202{bottom:250.347067pt;}
.y36_c02202{bottom:267.227067pt;}
.y35_c02202{bottom:283.147067pt;}
.y34_c02202{bottom:296.347067pt;}
.y33_c02202{bottom:313.227067pt;}
.y32_c02202{bottom:330.747067pt;}
.y31_c02202{bottom:347.627067pt;}
.y30_c02202{bottom:364.427067pt;}
.y2f_c02202{bottom:381.627067pt;}
.y2e_c02202{bottom:398.507067pt;}
.y2d_c02202{bottom:415.387067pt;}
.y2c_c02202{bottom:432.267067pt;}
.y2b_c02202{bottom:449.147200pt;}
.y2a_c02202{bottom:465.947200pt;}
.y29_c02202{bottom:482.827067pt;}
.y28_c02202{bottom:498.827067pt;}
.y27_c02202{bottom:511.947067pt;}
.y26_c02202{bottom:528.827067pt;}
.y25_c02202{bottom:545.947067pt;}
.y24_c02202{bottom:565.546667pt;}
.y23_c02202{bottom:579.307067pt;}
.y22_c02202{bottom:594.027067pt;}
.y21_c02202{bottom:610.907067pt;}
.y20_c02202{bottom:627.787067pt;}
.y1e_c02202{bottom:644.987067pt;}
.y1f_c02202{bottom:645.067067pt;}
.y1c_c02202{bottom:661.867067pt;}
.y1d_c02202{bottom:661.947067pt;}
.y1b_c02202{bottom:678.667067pt;}
.y1a_c02202{bottom:695.547067pt;}
.y19_c02202{bottom:712.427067pt;}
.y18_c02202{bottom:729.307067pt;}
.y17_c02202{bottom:746.187067pt;}
.y16_c02202{bottom:762.667200pt;}
.y15_c02202{bottom:778.347067pt;}
.y14_c02202{bottom:795.227067pt;}
.y13_c02202{bottom:812.747067pt;}
.y12_c02202{bottom:829.627067pt;}
.y11_c02202{bottom:846.507067pt;}
.y10_c02202{bottom:846.507475pt;}
.ye_c02202{bottom:863.707147pt;}
.yf_c02202{bottom:863.787067pt;}
.yc_c02202{bottom:880.506627pt;}
.yd_c02202{bottom:880.587067pt;}
.yb_c02202{bottom:897.386627pt;}
.ya_c02202{bottom:914.267147pt;}
.y9_c02202{bottom:931.147147pt;}
.y8_c02202{bottom:948.027147pt;}
.y7_c02202{bottom:964.907067pt;}
.y6_c02202{bottom:981.387067pt;}
.y5_c02202{bottom:997.067067pt;}
.y4_c02202{bottom:1013.947067pt;}
.y1_c02202{bottom:1060.587067pt;}
.h7_c02202{height:37.801094pt;}
.h6_c02202{height:42.632812pt;}
.h4_c02202{height:47.721094pt;}
.h5_c02202{height:51.382969pt;}
.h3_c02202{height:52.012031pt;}
.h2_c02202{height:56.156250pt;}
.h1_c02202{height:56.843750pt;}
.h0_c02202{height:1122.666667pt;}
.w1_c02202{width:793.333333pt;}
.w0_c02202{width:793.626667pt;}
.x0_c02202{left:0.000000pt;}
.x1_c02202{left:113.440000pt;}
.x3_c02202{left:120.560000pt;}
.xa_c02202{left:144.320000pt;}
.x15_c02202{left:212.000000pt;}
.x11_c02202{left:240.160000pt;}
.x5_c02202{left:245.840000pt;}
.x4_c02202{left:247.840000pt;}
.x10_c02202{left:271.200000pt;}
.xb_c02202{left:326.240288pt;}
.xd_c02202{left:333.599200pt;}
.x16_c02202{left:366.160000pt;}
.xf_c02202{left:377.200000pt;}
.x2_c02202{left:384.960000pt;}
.xe_c02202{left:391.840000pt;}
.x12_c02202{left:394.640000pt;}
.x7_c02202{left:402.160000pt;}
.x6_c02202{left:403.760000pt;}
.x17_c02202{left:528.640000pt;}
.x13_c02202{left:552.080000pt;}
.x9_c02202{left:557.760000pt;}
.x8_c02202{left:559.760000pt;}
.x14_c02202{left:645.520504pt;}
.xc_c02202{left:652.880032pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_baba9777ff80f5f126e9fc6f.woff2')format("woff");}.ff1_c02203{font-family:ff1_c02203;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02203;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v3_c02203{vertical-align:-3.960000px;}
.v2_c02203{vertical-align:-2.520000px;}
.v1_c02203{vertical-align:-1.440000px;}
.v0_c02203{vertical-align:0.000000px;}
.v6_c02203{vertical-align:1.080000px;}
.v4_c02203{vertical-align:2.520000px;}
.v5_c02203{vertical-align:3.960000px;}
.ls25_c02203{letter-spacing:-0.086184px;}
.ls26_c02203{letter-spacing:-0.046116px;}
.ls2a_c02203{letter-spacing:-0.043200px;}
.ls2c_c02203{letter-spacing:-0.019152px;}
.ls2b_c02203{letter-spacing:-0.010800px;}
.ls2f_c02203{letter-spacing:-0.009576px;}
.ls30_c02203{letter-spacing:-0.004788px;}
.ls23_c02203{letter-spacing:0.000000px;}
.ls13_c02203{letter-spacing:0.007200px;}
.ls14_c02203{letter-spacing:0.010800px;}
.ls17_c02203{letter-spacing:0.012636px;}
.ls31_c02203{letter-spacing:0.014400px;}
.ls21_c02203{letter-spacing:0.019152px;}
.ls16_c02203{letter-spacing:0.028728px;}
.ls12_c02203{letter-spacing:0.028800px;}
.ls18_c02203{letter-spacing:0.032400px;}
.ls28_c02203{letter-spacing:0.032940px;}
.ls1b_c02203{letter-spacing:0.037800px;}
.lsd_c02203{letter-spacing:0.039528px;}
.ls15_c02203{letter-spacing:0.043092px;}
.ls1a_c02203{letter-spacing:0.043200px;}
.ls24_c02203{letter-spacing:0.046116px;}
.ls7_c02203{letter-spacing:0.059292px;}
.ls1_c02203{letter-spacing:0.067032px;}
.lsc_c02203{letter-spacing:0.072468px;}
.ls2_c02203{letter-spacing:0.076608px;}
.ls6_c02203{letter-spacing:0.079056px;}
.ls1e_c02203{letter-spacing:0.081396px;}
.lsb_c02203{letter-spacing:0.085644px;}
.ls27_c02203{letter-spacing:0.092232px;}
.ls3_c02203{letter-spacing:0.105408px;}
.ls1f_c02203{letter-spacing:0.124488px;}
.ls20_c02203{letter-spacing:0.134064px;}
.ls5_c02203{letter-spacing:0.138348px;}
.ls29_c02203{letter-spacing:0.151200px;}
.ls4_c02203{letter-spacing:0.151524px;}
.ls0_c02203{letter-spacing:0.158112px;}
.ls1d_c02203{letter-spacing:0.162792px;}
.ls2d_c02203{letter-spacing:0.167580px;}
.ls9_c02203{letter-spacing:0.177876px;}
.ls19_c02203{letter-spacing:0.181944px;}
.lsa_c02203{letter-spacing:94.410000px;}
.ls11_c02203{letter-spacing:96.930000px;}
.ls32_c02203{letter-spacing:142.738200px;}
.ls2e_c02203{letter-spacing:152.458200px;}
.ls10_c02203{letter-spacing:160.290000px;}
.ls8_c02203{letter-spacing:187.740000px;}
.ls1c_c02203{letter-spacing:194.670000px;}
.ls22_c02203{letter-spacing:195.030000px;}
.lse_c02203{letter-spacing:376.290000px;}
.lsf_c02203{letter-spacing:696.060000px;}
.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;}
}
.ws15_c02203{word-spacing:-16.647876px;}
.ws1b_c02203{word-spacing:-0.428220px;}
.ws26_c02203{word-spacing:-0.272916px;}
.ws28_c02203{word-spacing:-0.253764px;}
.ws2b_c02203{word-spacing:-0.225036px;}
.ws2a_c02203{word-spacing:-0.215460px;}
.ws2c_c02203{word-spacing:-0.172368px;}
.ws1e_c02203{word-spacing:-0.167580px;}
.ws2e_c02203{word-spacing:-0.119700px;}
.ws23_c02203{word-spacing:-0.115200px;}
.ws2d_c02203{word-spacing:-0.110124px;}
.ws25_c02203{word-spacing:-0.101088px;}
.ws2f_c02203{word-spacing:-0.100800px;}
.ws29_c02203{word-spacing:-0.081396px;}
.ws1a_c02203{word-spacing:-0.050400px;}
.ws1f_c02203{word-spacing:-0.013176px;}
.ws24_c02203{word-spacing:-0.007200px;}
.ws19_c02203{word-spacing:0.000000px;}
.ws20_c02203{word-spacing:0.013176px;}
.ws21_c02203{word-spacing:0.032940px;}
.ws1d_c02203{word-spacing:0.046116px;}
.ws1c_c02203{word-spacing:0.052704px;}
.ws22_c02203{word-spacing:0.059292px;}
.ws18_c02203{word-spacing:58.969440px;}
.ws10_c02203{word-spacing:77.362380px;}
.wsd_c02203{word-spacing:79.882380px;}
.wsa_c02203{word-spacing:83.842380px;}
.ws14_c02203{word-spacing:96.400728px;}
.wse_c02203{word-spacing:102.529440px;}
.ws17_c02203{word-spacing:104.678496px;}
.ws5_c02203{word-spacing:116.602380px;}
.wsf_c02203{word-spacing:117.133020px;}
.ws6_c02203{word-spacing:127.042380px;}
.ws8_c02203{word-spacing:127.066608px;}
.ws13_c02203{word-spacing:127.163304px;}
.ws0_c02203{word-spacing:129.562380px;}
.ws4_c02203{word-spacing:137.436372px;}
.ws9_c02203{word-spacing:137.438496px;}
.ws2_c02203{word-spacing:149.746608px;}
.ws11_c02203{word-spacing:159.802380px;}
.ws3_c02203{word-spacing:159.826608px;}
.ws7_c02203{word-spacing:162.443304px;}
.ws1_c02203{word-spacing:170.556372px;}
.ws12_c02203{word-spacing:182.963304px;}
.wsb_c02203{word-spacing:192.880728px;}
.ws27_c02203{word-spacing:199.216800px;}
.ws16_c02203{word-spacing:232.186608px;}
.wsc_c02203{word-spacing:232.283304px;}
._42_c02203{margin-left:-43.780104px;}
._3a_c02203{margin-left:-42.638580px;}
._2c_c02203{margin-left:-1.294776px;}
._43_c02203{width:1.149084px;}
._1c_c02203{width:47.712744px;}
._34_c02203{width:51.673068px;}
._36_c02203{width:62.531640px;}
._3e_c02203{width:67.304808px;}
._31_c02203{width:72.604440px;}
._38_c02203{width:75.420000px;}
._32_c02203{width:77.310180px;}
._b_c02203{width:80.962380px;}
._22_c02203{width:82.735380px;}
._1f_c02203{width:84.518496px;}
._21_c02203{width:86.689440px;}
._1b_c02203{width:88.717788px;}
._2d_c02203{width:91.461600px;}
._3d_c02203{width:98.082072px;}
._33_c02203{width:101.187360px;}
._3f_c02203{width:104.238036px;}
._28_c02203{width:110.080620px;}
._1d_c02203{width:112.600620px;}
._c_c02203{width:113.873544px;}
._e_c02203{width:117.276372px;}
._3_c02203{width:119.778264px;}
._a_c02203{width:121.596372px;}
._2f_c02203{width:123.216120px;}
._30_c02203{width:127.033092px;}
._8_c02203{width:128.430000px;}
._37_c02203{width:129.607020px;}
._2_c02203{width:131.310000px;}
._41_c02203{width:132.915600px;}
._39_c02203{width:134.074296px;}
._6_c02203{width:135.978264px;}
._2e_c02203{width:140.097132px;}
._12_c02203{width:147.738348px;}
._40_c02203{width:149.146920px;}
._9_c02203{width:150.627312px;}
._3c_c02203{width:152.460000px;}
._27_c02203{width:154.130148px;}
._5_c02203{width:157.230000px;}
._2a_c02203{width:162.988812px;}
._3b_c02203{width:171.066384px;}
._23_c02203{width:178.514424px;}
._7_c02203{width:179.987688px;}
._2b_c02203{width:183.420000px;}
._11_c02203{width:188.194248px;}
._1_c02203{width:189.707688px;}
._4_c02203{width:190.787688px;}
._1a_c02203{width:193.410000px;}
._24_c02203{width:196.879536px;}
._10_c02203{width:201.701952px;}
._19_c02203{width:220.860000px;}
._35_c02203{width:226.094112px;}
._16_c02203{width:232.922016px;}
._25_c02203{width:234.821952px;}
._14_c02203{width:237.690000px;}
._26_c02203{width:244.484424px;}
._1e_c02203{width:248.050620px;}
._20_c02203{width:260.890776px;}
._29_c02203{width:273.741732px;}
._d_c02203{width:292.111200px;}
._f_c02203{width:303.231744px;}
._17_c02203{width:306.861732px;}
._15_c02203{width:310.410000px;}
._13_c02203{width:343.484424px;}
._0_c02203{width:347.969088px;}
._18_c02203{width:376.290000px;}
.fc0_c02203{color:rgb(0,0,0);}
.fs5_c02203{font-size:11.880000px;}
.fs4_c02203{font-size:42.120000px;}
.fs2_c02203{font-size:47.880000px;}
.fs3_c02203{font-size:54.000000px;}
.fs1_c02203{font-size:65.880000px;}
.fs0_c02203{font-size:72.000000px;}
.y0_c02203{bottom:0.000000px;}
.y3_c02203{bottom:57.360450px;}
.y2_c02203{bottom:78.060450px;}
.y47_c02203{bottom:118.650450px;}
.y46_c02203{bottom:127.470450px;}
.y45_c02203{bottom:127.830000px;}
.y44_c02203{bottom:146.460600px;}
.y43_c02203{bottom:146.820000px;}
.y42_c02203{bottom:165.360450px;}
.y41_c02203{bottom:165.810450px;}
.y40_c02203{bottom:185.430450px;}
.y3f_c02203{bottom:203.700600px;}
.y3e_c02203{bottom:221.070450px;}
.y3d_c02203{bottom:243.751395px;}
.y3c_c02203{bottom:262.741305px;}
.y3b_c02203{bottom:281.731215px;}
.y3a_c02203{bottom:300.630540px;}
.y39_c02203{bottom:319.620450px;}
.y38_c02203{bottom:337.980450px;}
.y37_c02203{bottom:338.340000px;}
.y36_c02203{bottom:356.970450px;}
.y35_c02203{bottom:357.330000px;}
.y34_c02203{bottom:375.870450px;}
.y33_c02203{bottom:376.320450px;}
.y32_c02203{bottom:394.860600px;}
.y31_c02203{bottom:395.220000px;}
.y30_c02203{bottom:413.850450px;}
.y2f_c02203{bottom:414.210600px;}
.y2e_c02203{bottom:433.200600px;}
.y2d_c02203{bottom:451.830450px;}
.y2c_c02203{bottom:452.190600px;}
.y2b_c02203{bottom:471.180600px;}
.y2a_c02203{bottom:489.720450px;}
.y29_c02203{bottom:490.080150px;}
.y28_c02203{bottom:508.710600px;}
.y27_c02203{bottom:509.070000px;}
.y26_c02203{bottom:527.700450px;}
.y25_c02203{bottom:528.060450px;}
.y24_c02203{bottom:547.680450px;}
.y23_c02203{bottom:566.040450px;}
.y22_c02203{bottom:583.410450px;}
.y21_c02203{bottom:605.370450px;}
.y20_c02203{bottom:622.560450px;}
.y1f_c02203{bottom:643.080900px;}
.y1e_c02203{bottom:658.650450px;}
.y1d_c02203{bottom:675.210450px;}
.y1c_c02203{bottom:694.200450px;}
.y1b_c02203{bottom:713.100450px;}
.y1a_c02203{bottom:732.450450px;}
.y19_c02203{bottom:751.440450px;}
.y18_c02203{bottom:770.430450px;}
.y17_c02203{bottom:789.420450px;}
.y16_c02203{bottom:808.410450px;}
.y15_c02203{bottom:827.310450px;}
.y14_c02203{bottom:846.300450px;}
.y13_c02203{bottom:864.300450px;}
.y12_c02203{bottom:879.060450px;}
.y11_c02203{bottom:898.050450px;}
.y10_c02203{bottom:917.760450px;}
.yf_c02203{bottom:936.750450px;}
.ye_c02203{bottom:955.740450px;}
.yd_c02203{bottom:975.090450px;}
.yc_c02203{bottom:994.080450px;}
.yb_c02203{bottom:1013.070450px;}
.ya_c02203{bottom:1031.970450px;}
.y9_c02203{bottom:1050.960450px;}
.y8_c02203{bottom:1069.950450px;}
.y7_c02203{bottom:1088.940450px;}
.y6_c02203{bottom:1106.850450px;}
.y5_c02203{bottom:1121.700450px;}
.y4_c02203{bottom:1140.690450px;}
.y1_c02203{bottom:1193.160450px;}
.hc_c02203{height:10.551621px;}
.h4_c02203{height:42.526230px;}
.h5_c02203{height:47.961914px;}
.h3_c02203{height:58.513535px;}
.h8_c02203{height:61.032935px;}
.hb_c02203{height:62.472935px;}
.h6_c02203{height:62.473535px;}
.h9_c02203{height:62.474135px;}
.ha_c02203{height:62.832935px;}
.h7_c02203{height:62.833535px;}
.h2_c02203{height:63.175781px;}
.h1_c02203{height:63.949219px;}
.h0_c02203{height:1263.000000px;}
.w1_c02203{width:892.500000px;}
.w0_c02203{width:892.830000px;}
.x0_c02203{left:0.000000px;}
.x1_c02203{left:127.620000px;}
.x3_c02203{left:135.630000px;}
.xb_c02203{left:137.970000px;}
.x7_c02203{left:143.640000px;}
.xa_c02203{left:144.810000px;}
.x8_c02203{left:164.520000px;}
.xc_c02203{left:166.860000px;}
.x9_c02203{left:222.210000px;}
.x4_c02203{left:238.500000px;}
.x5_c02203{left:411.930000px;}
.x2_c02203{left:433.080000px;}
.x6_c02203{left:594.720000px;}
@media print{
.v3_c02203{vertical-align:-3.520000pt;}
.v2_c02203{vertical-align:-2.240000pt;}
.v1_c02203{vertical-align:-1.280000pt;}
.v0_c02203{vertical-align:0.000000pt;}
.v6_c02203{vertical-align:0.960000pt;}
.v4_c02203{vertical-align:2.240000pt;}
.v5_c02203{vertical-align:3.520000pt;}
.ls25_c02203{letter-spacing:-0.076608pt;}
.ls26_c02203{letter-spacing:-0.040992pt;}
.ls2a_c02203{letter-spacing:-0.038400pt;}
.ls2c_c02203{letter-spacing:-0.017024pt;}
.ls2b_c02203{letter-spacing:-0.009600pt;}
.ls2f_c02203{letter-spacing:-0.008512pt;}
.ls30_c02203{letter-spacing:-0.004256pt;}
.ls23_c02203{letter-spacing:0.000000pt;}
.ls13_c02203{letter-spacing:0.006400pt;}
.ls14_c02203{letter-spacing:0.009600pt;}
.ls17_c02203{letter-spacing:0.011232pt;}
.ls31_c02203{letter-spacing:0.012800pt;}
.ls21_c02203{letter-spacing:0.017024pt;}
.ls16_c02203{letter-spacing:0.025536pt;}
.ls12_c02203{letter-spacing:0.025600pt;}
.ls18_c02203{letter-spacing:0.028800pt;}
.ls28_c02203{letter-spacing:0.029280pt;}
.ls1b_c02203{letter-spacing:0.033600pt;}
.lsd_c02203{letter-spacing:0.035136pt;}
.ls15_c02203{letter-spacing:0.038304pt;}
.ls1a_c02203{letter-spacing:0.038400pt;}
.ls24_c02203{letter-spacing:0.040992pt;}
.ls7_c02203{letter-spacing:0.052704pt;}
.ls1_c02203{letter-spacing:0.059584pt;}
.lsc_c02203{letter-spacing:0.064416pt;}
.ls2_c02203{letter-spacing:0.068096pt;}
.ls6_c02203{letter-spacing:0.070272pt;}
.ls1e_c02203{letter-spacing:0.072352pt;}
.lsb_c02203{letter-spacing:0.076128pt;}
.ls27_c02203{letter-spacing:0.081984pt;}
.ls3_c02203{letter-spacing:0.093696pt;}
.ls1f_c02203{letter-spacing:0.110656pt;}
.ls20_c02203{letter-spacing:0.119168pt;}
.ls5_c02203{letter-spacing:0.122976pt;}
.ls29_c02203{letter-spacing:0.134400pt;}
.ls4_c02203{letter-spacing:0.134688pt;}
.ls0_c02203{letter-spacing:0.140544pt;}
.ls1d_c02203{letter-spacing:0.144704pt;}
.ls2d_c02203{letter-spacing:0.148960pt;}
.ls9_c02203{letter-spacing:0.158112pt;}
.ls19_c02203{letter-spacing:0.161728pt;}
.lsa_c02203{letter-spacing:83.920000pt;}
.ls11_c02203{letter-spacing:86.160000pt;}
.ls32_c02203{letter-spacing:126.878400pt;}
.ls2e_c02203{letter-spacing:135.518400pt;}
.ls10_c02203{letter-spacing:142.480000pt;}
.ls8_c02203{letter-spacing:166.880000pt;}
.ls1c_c02203{letter-spacing:173.040000pt;}
.ls22_c02203{letter-spacing:173.360000pt;}
.lse_c02203{letter-spacing:334.480000pt;}
.lsf_c02203{letter-spacing:618.720000pt;}
.ws15_c02203{word-spacing:-14.798112pt;}
.ws1b_c02203{word-spacing:-0.380640pt;}
.ws26_c02203{word-spacing:-0.242592pt;}
.ws28_c02203{word-spacing:-0.225568pt;}
.ws2b_c02203{word-spacing:-0.200032pt;}
.ws2a_c02203{word-spacing:-0.191520pt;}
.ws2c_c02203{word-spacing:-0.153216pt;}
.ws1e_c02203{word-spacing:-0.148960pt;}
.ws2e_c02203{word-spacing:-0.106400pt;}
.ws23_c02203{word-spacing:-0.102400pt;}
.ws2d_c02203{word-spacing:-0.097888pt;}
.ws25_c02203{word-spacing:-0.089856pt;}
.ws2f_c02203{word-spacing:-0.089600pt;}
.ws29_c02203{word-spacing:-0.072352pt;}
.ws1a_c02203{word-spacing:-0.044800pt;}
.ws1f_c02203{word-spacing:-0.011712pt;}
.ws24_c02203{word-spacing:-0.006400pt;}
.ws19_c02203{word-spacing:0.000000pt;}
.ws20_c02203{word-spacing:0.011712pt;}
.ws21_c02203{word-spacing:0.029280pt;}
.ws1d_c02203{word-spacing:0.040992pt;}
.ws1c_c02203{word-spacing:0.046848pt;}
.ws22_c02203{word-spacing:0.052704pt;}
.ws18_c02203{word-spacing:52.417280pt;}
.ws10_c02203{word-spacing:68.766560pt;}
.wsd_c02203{word-spacing:71.006560pt;}
.wsa_c02203{word-spacing:74.526560pt;}
.ws14_c02203{word-spacing:85.689536pt;}
.wse_c02203{word-spacing:91.137280pt;}
.ws17_c02203{word-spacing:93.047552pt;}
.ws5_c02203{word-spacing:103.646560pt;}
.wsf_c02203{word-spacing:104.118240pt;}
.ws6_c02203{word-spacing:112.926560pt;}
.ws8_c02203{word-spacing:112.948096pt;}
.ws13_c02203{word-spacing:113.034048pt;}
.ws0_c02203{word-spacing:115.166560pt;}
.ws4_c02203{word-spacing:122.165664pt;}
.ws9_c02203{word-spacing:122.167552pt;}
.ws2_c02203{word-spacing:133.108096pt;}
.ws11_c02203{word-spacing:142.046560pt;}
.ws3_c02203{word-spacing:142.068096pt;}
.ws7_c02203{word-spacing:144.394048pt;}
.ws1_c02203{word-spacing:151.605664pt;}
.ws12_c02203{word-spacing:162.634048pt;}
.wsb_c02203{word-spacing:171.449536pt;}
.ws27_c02203{word-spacing:177.081600pt;}
.ws16_c02203{word-spacing:206.388096pt;}
.wsc_c02203{word-spacing:206.474048pt;}
._42_c02203{margin-left:-38.915648pt;}
._3a_c02203{margin-left:-37.900960pt;}
._2c_c02203{margin-left:-1.150912pt;}
._43_c02203{width:1.021408pt;}
._1c_c02203{width:42.411328pt;}
._34_c02203{width:45.931616pt;}
._36_c02203{width:55.583680pt;}
._3e_c02203{width:59.826496pt;}
._31_c02203{width:64.537280pt;}
._38_c02203{width:67.040000pt;}
._32_c02203{width:68.720160pt;}
._b_c02203{width:71.966560pt;}
._22_c02203{width:73.542560pt;}
._1f_c02203{width:75.127552pt;}
._21_c02203{width:77.057280pt;}
._1b_c02203{width:78.860256pt;}
._2d_c02203{width:81.299200pt;}
._3d_c02203{width:87.184064pt;}
._33_c02203{width:89.944320pt;}
._3f_c02203{width:92.656032pt;}
._28_c02203{width:97.849440pt;}
._1d_c02203{width:100.089440pt;}
._c_c02203{width:101.220928pt;}
._e_c02203{width:104.245664pt;}
._3_c02203{width:106.469568pt;}
._a_c02203{width:108.085664pt;}
._2f_c02203{width:109.525440pt;}
._30_c02203{width:112.918304pt;}
._8_c02203{width:114.160000pt;}
._37_c02203{width:115.206240pt;}
._2_c02203{width:116.720000pt;}
._41_c02203{width:118.147200pt;}
._39_c02203{width:119.177152pt;}
._6_c02203{width:120.869568pt;}
._2e_c02203{width:124.530784pt;}
._12_c02203{width:131.322976pt;}
._40_c02203{width:132.575040pt;}
._9_c02203{width:133.890944pt;}
._3c_c02203{width:135.520000pt;}
._27_c02203{width:137.004576pt;}
._5_c02203{width:139.760000pt;}
._2a_c02203{width:144.878944pt;}
._3b_c02203{width:152.059008pt;}
._23_c02203{width:158.679488pt;}
._7_c02203{width:159.989056pt;}
._2b_c02203{width:163.040000pt;}
._11_c02203{width:167.283776pt;}
._1_c02203{width:168.629056pt;}
._4_c02203{width:169.589056pt;}
._1a_c02203{width:171.920000pt;}
._24_c02203{width:175.004032pt;}
._10_c02203{width:179.290624pt;}
._19_c02203{width:196.320000pt;}
._35_c02203{width:200.972544pt;}
._16_c02203{width:207.041792pt;}
._25_c02203{width:208.730624pt;}
._14_c02203{width:211.280000pt;}
._26_c02203{width:217.319488pt;}
._1e_c02203{width:220.489440pt;}
._20_c02203{width:231.902912pt;}
._29_c02203{width:243.325984pt;}
._d_c02203{width:259.654400pt;}
._f_c02203{width:269.539328pt;}
._17_c02203{width:272.765984pt;}
._15_c02203{width:275.920000pt;}
._13_c02203{width:305.319488pt;}
._0_c02203{width:309.305856pt;}
._18_c02203{width:334.480000pt;}
.fs5_c02203{font-size:10.560000pt;}
.fs4_c02203{font-size:37.440000pt;}
.fs2_c02203{font-size:42.560000pt;}
.fs3_c02203{font-size:48.000000pt;}
.fs1_c02203{font-size:58.560000pt;}
.fs0_c02203{font-size:64.000000pt;}
.y0_c02203{bottom:0.000000pt;}
.y3_c02203{bottom:50.987067pt;}
.y2_c02203{bottom:69.387067pt;}
.y47_c02203{bottom:105.467067pt;}
.y46_c02203{bottom:113.307067pt;}
.y45_c02203{bottom:113.626667pt;}
.y44_c02203{bottom:130.187200pt;}
.y43_c02203{bottom:130.506667pt;}
.y42_c02203{bottom:146.987067pt;}
.y41_c02203{bottom:147.387067pt;}
.y40_c02203{bottom:164.827067pt;}
.y3f_c02203{bottom:181.067200pt;}
.y3e_c02203{bottom:196.507067pt;}
.y3d_c02203{bottom:216.667907pt;}
.y3c_c02203{bottom:233.547827pt;}
.y3b_c02203{bottom:250.427747pt;}
.y3a_c02203{bottom:267.227147pt;}
.y39_c02203{bottom:284.107067pt;}
.y38_c02203{bottom:300.427067pt;}
.y37_c02203{bottom:300.746667pt;}
.y36_c02203{bottom:317.307067pt;}
.y35_c02203{bottom:317.626667pt;}
.y34_c02203{bottom:334.107067pt;}
.y33_c02203{bottom:334.507067pt;}
.y32_c02203{bottom:350.987200pt;}
.y31_c02203{bottom:351.306667pt;}
.y30_c02203{bottom:367.867067pt;}
.y2f_c02203{bottom:368.187200pt;}
.y2e_c02203{bottom:385.067200pt;}
.y2d_c02203{bottom:401.627067pt;}
.y2c_c02203{bottom:401.947200pt;}
.y2b_c02203{bottom:418.827200pt;}
.y2a_c02203{bottom:435.307067pt;}
.y29_c02203{bottom:435.626800pt;}
.y28_c02203{bottom:452.187200pt;}
.y27_c02203{bottom:452.506667pt;}
.y26_c02203{bottom:469.067067pt;}
.y25_c02203{bottom:469.387067pt;}
.y24_c02203{bottom:486.827067pt;}
.y23_c02203{bottom:503.147067pt;}
.y22_c02203{bottom:518.587067pt;}
.y21_c02203{bottom:538.107067pt;}
.y20_c02203{bottom:553.387067pt;}
.y1f_c02203{bottom:571.627467pt;}
.y1e_c02203{bottom:585.467067pt;}
.y1d_c02203{bottom:600.187067pt;}
.y1c_c02203{bottom:617.067067pt;}
.y1b_c02203{bottom:633.867067pt;}
.y1a_c02203{bottom:651.067067pt;}
.y19_c02203{bottom:667.947067pt;}
.y18_c02203{bottom:684.827067pt;}
.y17_c02203{bottom:701.707067pt;}
.y16_c02203{bottom:718.587067pt;}
.y15_c02203{bottom:735.387067pt;}
.y14_c02203{bottom:752.267067pt;}
.y13_c02203{bottom:768.267067pt;}
.y12_c02203{bottom:781.387067pt;}
.y11_c02203{bottom:798.267067pt;}
.y10_c02203{bottom:815.787067pt;}
.yf_c02203{bottom:832.667067pt;}
.ye_c02203{bottom:849.547067pt;}
.yd_c02203{bottom:866.747067pt;}
.yc_c02203{bottom:883.627067pt;}
.yb_c02203{bottom:900.507067pt;}
.ya_c02203{bottom:917.307067pt;}
.y9_c02203{bottom:934.187067pt;}
.y8_c02203{bottom:951.067067pt;}
.y7_c02203{bottom:967.947067pt;}
.y6_c02203{bottom:983.867067pt;}
.y5_c02203{bottom:997.067067pt;}
.y4_c02203{bottom:1013.947067pt;}
.y1_c02203{bottom:1060.587067pt;}
.hc_c02203{height:9.379219pt;}
.h4_c02203{height:37.801094pt;}
.h5_c02203{height:42.632812pt;}
.h3_c02203{height:52.012031pt;}
.h8_c02203{height:54.251498pt;}
.hb_c02203{height:55.531498pt;}
.h6_c02203{height:55.532031pt;}
.h9_c02203{height:55.532565pt;}
.ha_c02203{height:55.851498pt;}
.h7_c02203{height:55.852031pt;}
.h2_c02203{height:56.156250pt;}
.h1_c02203{height:56.843750pt;}
.h0_c02203{height:1122.666667pt;}
.w1_c02203{width:793.333333pt;}
.w0_c02203{width:793.626667pt;}
.x0_c02203{left:0.000000pt;}
.x1_c02203{left:113.440000pt;}
.x3_c02203{left:120.560000pt;}
.xb_c02203{left:122.640000pt;}
.x7_c02203{left:127.680000pt;}
.xa_c02203{left:128.720000pt;}
.x8_c02203{left:146.240000pt;}
.xc_c02203{left:148.320000pt;}
.x9_c02203{left:197.520000pt;}
.x4_c02203{left:212.000000pt;}
.x5_c02203{left:366.160000pt;}
.x2_c02203{left:384.960000pt;}
.x6_c02203{left:528.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_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_71bf833da745ab37542e7a21.woff2')format("woff");}.ff1_c02204{font-family:ff1_c02204;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02204;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v9_c02204{vertical-align:-15.480600px;}
.va_c02204{vertical-align:-12.600600px;}
.vb_c02204{vertical-align:-11.160000px;}
.v3_c02204{vertical-align:-3.960000px;}
.v2_c02204{vertical-align:-2.520000px;}
.v1_c02204{vertical-align:-1.440000px;}
.v0_c02204{vertical-align:0.000000px;}
.v7_c02204{vertical-align:1.080000px;}
.v4_c02204{vertical-align:2.520000px;}
.v5_c02204{vertical-align:4.320000px;}
.v6_c02204{vertical-align:5.400000px;}
.v8_c02204{vertical-align:11.160000px;}
.ls22_c02204{letter-spacing:-0.086184px;}
.ls1e_c02204{letter-spacing:-0.043200px;}
.ls20_c02204{letter-spacing:-0.019152px;}
.ls1f_c02204{letter-spacing:-0.010800px;}
.ls25_c02204{letter-spacing:-0.009576px;}
.ls28_c02204{letter-spacing:-0.007200px;}
.ls23_c02204{letter-spacing:-0.004788px;}
.ls1a_c02204{letter-spacing:0.000000px;}
.ls1b_c02204{letter-spacing:0.007200px;}
.ls0_c02204{letter-spacing:0.010800px;}
.ls3_c02204{letter-spacing:0.012636px;}
.ls1c_c02204{letter-spacing:0.014400px;}
.lsb_c02204{letter-spacing:0.019152px;}
.ls2_c02204{letter-spacing:0.028728px;}
.ls4_c02204{letter-spacing:0.032400px;}
.ls8_c02204{letter-spacing:0.037800px;}
.ls1_c02204{letter-spacing:0.043092px;}
.ls7_c02204{letter-spacing:0.043200px;}
.lse_c02204{letter-spacing:0.052668px;}
.ls14_c02204{letter-spacing:0.059400px;}
.ls18_c02204{letter-spacing:0.076608px;}
.lsc_c02204{letter-spacing:0.081396px;}
.ls13_c02204{letter-spacing:0.092232px;}
.ls15_c02204{letter-spacing:0.110124px;}
.ls10_c02204{letter-spacing:0.114912px;}
.ls6_c02204{letter-spacing:0.124488px;}
.lsa_c02204{letter-spacing:0.134064px;}
.ls12_c02204{letter-spacing:0.138348px;}
.ls11_c02204{letter-spacing:0.138852px;}
.ls1d_c02204{letter-spacing:0.151200px;}
.ls5_c02204{letter-spacing:0.158112px;}
.ls19_c02204{letter-spacing:0.162792px;}
.ls21_c02204{letter-spacing:0.167580px;}
.ls27_c02204{letter-spacing:0.177876px;}
.lsd_c02204{letter-spacing:0.181944px;}
.ls17_c02204{letter-spacing:0.205884px;}
.ls24_c02204{letter-spacing:136.981800px;}
.ls26_c02204{letter-spacing:137.338200px;}
.ls2a_c02204{letter-spacing:143.818200px;}
.ls29_c02204{letter-spacing:156.421800px;}
.lsf_c02204{letter-spacing:194.670000px;}
.ls9_c02204{letter-spacing:195.030000px;}
.ls16_c02204{letter-spacing:200.790000px;}
.sc__c02204{text-shadow:none;}
.sc0_c02204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02204{-webkit-text-stroke:0px transparent;}
.sc0_c02204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02204{word-spacing:-16.608348px;}
.ws13_c02204{word-spacing:-0.296856px;}
.wsa_c02204{word-spacing:-0.272916px;}
.ws15_c02204{word-spacing:-0.253764px;}
.wsf_c02204{word-spacing:-0.229824px;}
.ws7_c02204{word-spacing:-0.225036px;}
.ws6_c02204{word-spacing:-0.215460px;}
.wse_c02204{word-spacing:-0.205884px;}
.ws9_c02204{word-spacing:-0.172368px;}
.ws4_c02204{word-spacing:-0.129600px;}
.wsc_c02204{word-spacing:-0.119700px;}
.wsb_c02204{word-spacing:-0.110124px;}
.ws5_c02204{word-spacing:-0.101088px;}
.wsd_c02204{word-spacing:-0.081396px;}
.ws3_c02204{word-spacing:-0.050400px;}
.ws10_c02204{word-spacing:-0.007200px;}
.ws2_c02204{word-spacing:0.000000px;}
.ws11_c02204{word-spacing:0.007200px;}
.ws12_c02204{word-spacing:0.118800px;}
.ws0_c02204{word-spacing:58.969440px;}
.ws14_c02204{word-spacing:172.935000px;}
.ws8_c02204{word-spacing:199.216800px;}
._16_c02204{margin-left:-43.681608px;}
._13_c02204{margin-left:-42.559272px;}
._25_c02204{margin-left:-27.666396px;}
._27_c02204{margin-left:-16.200000px;}
._1f_c02204{margin-left:-1.125000px;}
._17_c02204{width:1.331280px;}
._2c_c02204{width:26.924724px;}
._c_c02204{width:50.940000px;}
._f_c02204{width:61.243200px;}
._26_c02204{width:63.363600px;}
._24_c02204{width:66.124440px;}
._8_c02204{width:72.604440px;}
._2a_c02204{width:75.105504px;}
._10_c02204{width:76.363200px;}
._1_c02204{width:77.994000px;}
._e_c02204{width:82.296072px;}
._11_c02204{width:84.060000px;}
._9_c02204{width:86.594580px;}
._19_c02204{width:88.225380px;}
._0_c02204{width:91.101600px;}
._1a_c02204{width:98.815140px;}
._a_c02204{width:100.958400px;}
._21_c02204{width:104.075892px;}
._1d_c02204{width:105.419988px;}
._b_c02204{width:106.489440px;}
._23_c02204{width:108.347688px;}
._d_c02204{width:113.945220px;}
._1e_c02204{width:115.918200px;}
._22_c02204{width:118.089504px;}
._2_c02204{width:119.340000px;}
._20_c02204{width:121.065300px;}
._5_c02204{width:123.216120px;}
._7_c02204{width:126.707688px;}
._3_c02204{width:127.980000px;}
._1b_c02204{width:129.311424px;}
._6_c02204{width:131.635404px;}
._15_c02204{width:132.915600px;}
._2b_c02204{width:134.074296px;}
._14_c02204{width:136.200168px;}
._4_c02204{width:139.258944px;}
._12_c02204{width:149.146920px;}
._1c_c02204{width:152.642160px;}
._28_c02204{width:156.420000px;}
._18_c02204{width:157.727016px;}
._2d_c02204{width:171.066384px;}
._29_c02204{width:224.915868px;}
.fc0_c02204{color:rgb(0,0,0);}
.fs5_c02204{font-size:11.880000px;}
.fs6_c02204{font-size:36.000000px;}
.fs3_c02204{font-size:42.120000px;}
.fs2_c02204{font-size:47.880000px;}
.fs1_c02204{font-size:54.000000px;}
.fs4_c02204{font-size:65.880000px;}
.fs0_c02204{font-size:72.000000px;}
.y0_c02204{bottom:0.000000px;}
.y3_c02204{bottom:57.360450px;}
.y2_c02204{bottom:78.060450px;}
.y51_c02204{bottom:123.690450px;}
.y50_c02204{bottom:141.960600px;}
.y4f_c02204{bottom:142.320000px;}
.y4e_c02204{bottom:160.950600px;}
.y4d_c02204{bottom:161.310450px;}
.y4c_c02204{bottom:180.930450px;}
.y4b_c02204{bottom:200.190450px;}
.y4a_c02204{bottom:216.660450px;}
.y49_c02204{bottom:237.450600px;}
.y48_c02204{bottom:246.270450px;}
.y47_c02204{bottom:250.050450px;}
.y46_c02204{bottom:266.250450px;}
.y45_c02204{bottom:285.420450px;}
.y44_c02204{bottom:301.890450px;}
.y43_c02204{bottom:322.680450px;}
.y42_c02204{bottom:331.500600px;}
.y41_c02204{bottom:335.280900px;}
.y40_c02204{bottom:350.490450px;}
.y3f_c02204{bottom:354.270900px;}
.y3e_c02204{bottom:369.480450px;}
.y3d_c02204{bottom:373.260450px;}
.y3c_c02204{bottom:392.250600px;}
.y3b_c02204{bottom:407.370600px;}
.y3a_c02204{bottom:411.240450px;}
.y39_c02204{bottom:427.440450px;}
.y38_c02204{bottom:446.610600px;}
.y37_c02204{bottom:463.080450px;}
.y36_c02204{bottom:485.130450px;}
.y35_c02204{bottom:499.710600px;}
.y34_c02204{bottom:510.960600px;}
.y33_c02204{bottom:511.320000px;}
.y32_c02204{bottom:529.950450px;}
.y31_c02204{bottom:530.310450px;}
.y30_c02204{bottom:549.300450px;}
.y2f_c02204{bottom:567.840450px;}
.y2e_c02204{bottom:568.290450px;}
.y2d_c02204{bottom:587.910450px;}
.y2c_c02204{bottom:606.180450px;}
.y2b_c02204{bottom:623.550450px;}
.y2a_c02204{bottom:644.340450px;}
.y29_c02204{bottom:653.160450px;}
.y28_c02204{bottom:653.520000px;}
.y27_c02204{bottom:672.150450px;}
.y26_c02204{bottom:672.510450px;}
.y25_c02204{bottom:691.500450px;}
.y24_c02204{bottom:710.040450px;}
.y23_c02204{bottom:710.490450px;}
.y22_c02204{bottom:730.110450px;}
.y21_c02204{bottom:748.380450px;}
.y20_c02204{bottom:765.750450px;}
.y1f_c02204{bottom:788.430450px;}
.y1e_c02204{bottom:806.700450px;}
.y1d_c02204{bottom:807.150450px;}
.y1c_c02204{bottom:825.690450px;}
.y1b_c02204{bottom:826.050450px;}
.y1a_c02204{bottom:845.760450px;}
.y19_c02204{bottom:864.030450px;}
.y18_c02204{bottom:881.400450px;}
.y17_c02204{bottom:904.080450px;}
.y16_c02204{bottom:922.350450px;}
.y15_c02204{bottom:922.800450px;}
.y14_c02204{bottom:942.420450px;}
.y13_c02204{bottom:961.590450px;}
.y12_c02204{bottom:978.060450px;}
.y11_c02204{bottom:998.850450px;}
.y10_c02204{bottom:1007.670450px;}
.yf_c02204{bottom:1008.030000px;}
.ye_c02204{bottom:1026.660450px;}
.yd_c02204{bottom:1027.020000px;}
.yc_c02204{bottom:1045.560450px;}
.yb_c02204{bottom:1046.010450px;}
.ya_c02204{bottom:1064.550450px;}
.y9_c02204{bottom:1064.910000px;}
.y8_c02204{bottom:1083.540450px;}
.y7_c02204{bottom:1083.900450px;}
.y6_c02204{bottom:1103.520450px;}
.y5_c02204{bottom:1121.880450px;}
.y4_c02204{bottom:1139.250450px;}
.y1_c02204{bottom:1193.160450px;}
.h7_c02204{height:10.551621px;}
.hc_c02204{height:31.974609px;}
.h3_c02204{height:47.961914px;}
.h8_c02204{height:48.570293px;}
.h4_c02204{height:58.513535px;}
.ha_c02204{height:58.873535px;}
.hd_c02204{height:59.121914px;}
.h9_c02204{height:61.033535px;}
.hb_c02204{height:61.393535px;}
.he_c02204{height:62.472935px;}
.h6_c02204{height:62.473535px;}
.hf_c02204{height:62.832935px;}
.h5_c02204{height:62.833535px;}
.h2_c02204{height:63.175781px;}
.h1_c02204{height:63.949219px;}
.h0_c02204{height:1263.000000px;}
.w1_c02204{width:892.500000px;}
.w0_c02204{width:892.830000px;}
.x0_c02204{left:0.000000px;}
.x1_c02204{left:127.620000px;}
.x3_c02204{left:135.630000px;}
.x5_c02204{left:139.500000px;}
.x8_c02204{left:143.910000px;}
.x4_c02204{left:145.620000px;}
.x9_c02204{left:150.300000px;}
.xb_c02204{left:165.060000px;}
.x6_c02204{left:168.390000px;}
.xa_c02204{left:220.680000px;}
.x7_c02204{left:222.120000px;}
.x2_c02204{left:433.080000px;}
@media print{
.v9_c02204{vertical-align:-13.760533pt;}
.va_c02204{vertical-align:-11.200533pt;}
.vb_c02204{vertical-align:-9.920000pt;}
.v3_c02204{vertical-align:-3.520000pt;}
.v2_c02204{vertical-align:-2.240000pt;}
.v1_c02204{vertical-align:-1.280000pt;}
.v0_c02204{vertical-align:0.000000pt;}
.v7_c02204{vertical-align:0.960000pt;}
.v4_c02204{vertical-align:2.240000pt;}
.v5_c02204{vertical-align:3.840000pt;}
.v6_c02204{vertical-align:4.800000pt;}
.v8_c02204{vertical-align:9.920000pt;}
.ls22_c02204{letter-spacing:-0.076608pt;}
.ls1e_c02204{letter-spacing:-0.038400pt;}
.ls20_c02204{letter-spacing:-0.017024pt;}
.ls1f_c02204{letter-spacing:-0.009600pt;}
.ls25_c02204{letter-spacing:-0.008512pt;}
.ls28_c02204{letter-spacing:-0.006400pt;}
.ls23_c02204{letter-spacing:-0.004256pt;}
.ls1a_c02204{letter-spacing:0.000000pt;}
.ls1b_c02204{letter-spacing:0.006400pt;}
.ls0_c02204{letter-spacing:0.009600pt;}
.ls3_c02204{letter-spacing:0.011232pt;}
.ls1c_c02204{letter-spacing:0.012800pt;}
.lsb_c02204{letter-spacing:0.017024pt;}
.ls2_c02204{letter-spacing:0.025536pt;}
.ls4_c02204{letter-spacing:0.028800pt;}
.ls8_c02204{letter-spacing:0.033600pt;}
.ls1_c02204{letter-spacing:0.038304pt;}
.ls7_c02204{letter-spacing:0.038400pt;}
.lse_c02204{letter-spacing:0.046816pt;}
.ls14_c02204{letter-spacing:0.052800pt;}
.ls18_c02204{letter-spacing:0.068096pt;}
.lsc_c02204{letter-spacing:0.072352pt;}
.ls13_c02204{letter-spacing:0.081984pt;}
.ls15_c02204{letter-spacing:0.097888pt;}
.ls10_c02204{letter-spacing:0.102144pt;}
.ls6_c02204{letter-spacing:0.110656pt;}
.lsa_c02204{letter-spacing:0.119168pt;}
.ls12_c02204{letter-spacing:0.122976pt;}
.ls11_c02204{letter-spacing:0.123424pt;}
.ls1d_c02204{letter-spacing:0.134400pt;}
.ls5_c02204{letter-spacing:0.140544pt;}
.ls19_c02204{letter-spacing:0.144704pt;}
.ls21_c02204{letter-spacing:0.148960pt;}
.ls27_c02204{letter-spacing:0.158112pt;}
.lsd_c02204{letter-spacing:0.161728pt;}
.ls17_c02204{letter-spacing:0.183008pt;}
.ls24_c02204{letter-spacing:121.761600pt;}
.ls26_c02204{letter-spacing:122.078400pt;}
.ls2a_c02204{letter-spacing:127.838400pt;}
.ls29_c02204{letter-spacing:139.041600pt;}
.lsf_c02204{letter-spacing:173.040000pt;}
.ls9_c02204{letter-spacing:173.360000pt;}
.ls16_c02204{letter-spacing:178.480000pt;}
.ws1_c02204{word-spacing:-14.762976pt;}
.ws13_c02204{word-spacing:-0.263872pt;}
.wsa_c02204{word-spacing:-0.242592pt;}
.ws15_c02204{word-spacing:-0.225568pt;}
.wsf_c02204{word-spacing:-0.204288pt;}
.ws7_c02204{word-spacing:-0.200032pt;}
.ws6_c02204{word-spacing:-0.191520pt;}
.wse_c02204{word-spacing:-0.183008pt;}
.ws9_c02204{word-spacing:-0.153216pt;}
.ws4_c02204{word-spacing:-0.115200pt;}
.wsc_c02204{word-spacing:-0.106400pt;}
.wsb_c02204{word-spacing:-0.097888pt;}
.ws5_c02204{word-spacing:-0.089856pt;}
.wsd_c02204{word-spacing:-0.072352pt;}
.ws3_c02204{word-spacing:-0.044800pt;}
.ws10_c02204{word-spacing:-0.006400pt;}
.ws2_c02204{word-spacing:0.000000pt;}
.ws11_c02204{word-spacing:0.006400pt;}
.ws12_c02204{word-spacing:0.105600pt;}
.ws0_c02204{word-spacing:52.417280pt;}
.ws14_c02204{word-spacing:153.720000pt;}
.ws8_c02204{word-spacing:177.081600pt;}
._16_c02204{margin-left:-38.828096pt;}
._13_c02204{margin-left:-37.830464pt;}
._25_c02204{margin-left:-24.592352pt;}
._27_c02204{margin-left:-14.400000pt;}
._1f_c02204{margin-left:-1.000000pt;}
._17_c02204{width:1.183360pt;}
._2c_c02204{width:23.933088pt;}
._c_c02204{width:45.280000pt;}
._f_c02204{width:54.438400pt;}
._26_c02204{width:56.323200pt;}
._24_c02204{width:58.777280pt;}
._8_c02204{width:64.537280pt;}
._2a_c02204{width:66.760448pt;}
._10_c02204{width:67.878400pt;}
._1_c02204{width:69.328000pt;}
._e_c02204{width:73.152064pt;}
._11_c02204{width:74.720000pt;}
._9_c02204{width:76.972960pt;}
._19_c02204{width:78.422560pt;}
._0_c02204{width:80.979200pt;}
._1a_c02204{width:87.835680pt;}
._a_c02204{width:89.740800pt;}
._21_c02204{width:92.511904pt;}
._1d_c02204{width:93.706656pt;}
._b_c02204{width:94.657280pt;}
._23_c02204{width:96.309056pt;}
._d_c02204{width:101.284640pt;}
._1e_c02204{width:103.038400pt;}
._22_c02204{width:104.968448pt;}
._2_c02204{width:106.080000pt;}
._20_c02204{width:107.613600pt;}
._5_c02204{width:109.525440pt;}
._7_c02204{width:112.629056pt;}
._3_c02204{width:113.760000pt;}
._1b_c02204{width:114.943488pt;}
._6_c02204{width:117.009248pt;}
._15_c02204{width:118.147200pt;}
._2b_c02204{width:119.177152pt;}
._14_c02204{width:121.066816pt;}
._4_c02204{width:123.785728pt;}
._12_c02204{width:132.575040pt;}
._1c_c02204{width:135.681920pt;}
._28_c02204{width:139.040000pt;}
._18_c02204{width:140.201792pt;}
._2d_c02204{width:152.059008pt;}
._29_c02204{width:199.925216pt;}
.fs5_c02204{font-size:10.560000pt;}
.fs6_c02204{font-size:32.000000pt;}
.fs3_c02204{font-size:37.440000pt;}
.fs2_c02204{font-size:42.560000pt;}
.fs1_c02204{font-size:48.000000pt;}
.fs4_c02204{font-size:58.560000pt;}
.fs0_c02204{font-size:64.000000pt;}
.y0_c02204{bottom:0.000000pt;}
.y3_c02204{bottom:50.987067pt;}
.y2_c02204{bottom:69.387067pt;}
.y51_c02204{bottom:109.947067pt;}
.y50_c02204{bottom:126.187200pt;}
.y4f_c02204{bottom:126.506667pt;}
.y4e_c02204{bottom:143.067200pt;}
.y4d_c02204{bottom:143.387067pt;}
.y4c_c02204{bottom:160.827067pt;}
.y4b_c02204{bottom:177.947067pt;}
.y4a_c02204{bottom:192.587067pt;}
.y49_c02204{bottom:211.067200pt;}
.y48_c02204{bottom:218.907067pt;}
.y47_c02204{bottom:222.267067pt;}
.y46_c02204{bottom:236.667067pt;}
.y45_c02204{bottom:253.707067pt;}
.y44_c02204{bottom:268.347067pt;}
.y43_c02204{bottom:286.827067pt;}
.y42_c02204{bottom:294.667200pt;}
.y41_c02204{bottom:298.027467pt;}
.y40_c02204{bottom:311.547067pt;}
.y3f_c02204{bottom:314.907467pt;}
.y3e_c02204{bottom:328.427067pt;}
.y3d_c02204{bottom:331.787067pt;}
.y3c_c02204{bottom:348.667200pt;}
.y3b_c02204{bottom:362.107200pt;}
.y3a_c02204{bottom:365.547067pt;}
.y39_c02204{bottom:379.947067pt;}
.y38_c02204{bottom:396.987200pt;}
.y37_c02204{bottom:411.627067pt;}
.y36_c02204{bottom:431.227067pt;}
.y35_c02204{bottom:444.187200pt;}
.y34_c02204{bottom:454.187200pt;}
.y33_c02204{bottom:454.506667pt;}
.y32_c02204{bottom:471.067067pt;}
.y31_c02204{bottom:471.387067pt;}
.y30_c02204{bottom:488.267067pt;}
.y2f_c02204{bottom:504.747067pt;}
.y2e_c02204{bottom:505.147067pt;}
.y2d_c02204{bottom:522.587067pt;}
.y2c_c02204{bottom:538.827067pt;}
.y2b_c02204{bottom:554.267067pt;}
.y2a_c02204{bottom:572.747067pt;}
.y29_c02204{bottom:580.587067pt;}
.y28_c02204{bottom:580.906667pt;}
.y27_c02204{bottom:597.467067pt;}
.y26_c02204{bottom:597.787067pt;}
.y25_c02204{bottom:614.667067pt;}
.y24_c02204{bottom:631.147067pt;}
.y23_c02204{bottom:631.547067pt;}
.y22_c02204{bottom:648.987067pt;}
.y21_c02204{bottom:665.227067pt;}
.y20_c02204{bottom:680.667067pt;}
.y1f_c02204{bottom:700.827067pt;}
.y1e_c02204{bottom:717.067067pt;}
.y1d_c02204{bottom:717.467067pt;}
.y1c_c02204{bottom:733.947067pt;}
.y1b_c02204{bottom:734.267067pt;}
.y1a_c02204{bottom:751.787067pt;}
.y19_c02204{bottom:768.027067pt;}
.y18_c02204{bottom:783.467067pt;}
.y17_c02204{bottom:803.627067pt;}
.y16_c02204{bottom:819.867067pt;}
.y15_c02204{bottom:820.267067pt;}
.y14_c02204{bottom:837.707067pt;}
.y13_c02204{bottom:854.747067pt;}
.y12_c02204{bottom:869.387067pt;}
.y11_c02204{bottom:887.867067pt;}
.y10_c02204{bottom:895.707067pt;}
.yf_c02204{bottom:896.026667pt;}
.ye_c02204{bottom:912.587067pt;}
.yd_c02204{bottom:912.906667pt;}
.yc_c02204{bottom:929.387067pt;}
.yb_c02204{bottom:929.787067pt;}
.ya_c02204{bottom:946.267067pt;}
.y9_c02204{bottom:946.586667pt;}
.y8_c02204{bottom:963.147067pt;}
.y7_c02204{bottom:963.467067pt;}
.y6_c02204{bottom:980.907067pt;}
.y5_c02204{bottom:997.227067pt;}
.y4_c02204{bottom:1012.667067pt;}
.y1_c02204{bottom:1060.587067pt;}
.h7_c02204{height:9.379219pt;}
.hc_c02204{height:28.421875pt;}
.h3_c02204{height:42.632812pt;}
.h8_c02204{height:43.173594pt;}
.h4_c02204{height:52.012031pt;}
.ha_c02204{height:52.332031pt;}
.hd_c02204{height:52.552813pt;}
.h9_c02204{height:54.252031pt;}
.hb_c02204{height:54.572031pt;}
.he_c02204{height:55.531498pt;}
.h6_c02204{height:55.532031pt;}
.hf_c02204{height:55.851498pt;}
.h5_c02204{height:55.852031pt;}
.h2_c02204{height:56.156250pt;}
.h1_c02204{height:56.843750pt;}
.h0_c02204{height:1122.666667pt;}
.w1_c02204{width:793.333333pt;}
.w0_c02204{width:793.626667pt;}
.x0_c02204{left:0.000000pt;}
.x1_c02204{left:113.440000pt;}
.x3_c02204{left:120.560000pt;}
.x5_c02204{left:124.000000pt;}
.x8_c02204{left:127.920000pt;}
.x4_c02204{left:129.440000pt;}
.x9_c02204{left:133.600000pt;}
.xb_c02204{left:146.720000pt;}
.x6_c02204{left:149.680000pt;}
.xa_c02204{left:196.160000pt;}
.x7_c02204{left:197.440000pt;}
.x2_c02204{left:384.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_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_0802a37d4e022fc796d78f35.woff2')format("woff");}.ff1_c02205{font-family:ff1_c02205;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02205;src:url('chunks/assets/font_c392bc264f5d8ebda9c57787.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;}
.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);}
.v8_c02205{vertical-align:-15.120000px;}
.vf_c02205{vertical-align:-13.680000px;}
.vd_c02205{vertical-align:-12.600000px;}
.ve_c02205{vertical-align:-11.160000px;}
.v9_c02205{vertical-align:-9.360000px;}
.va_c02205{vertical-align:-6.840000px;}
.vb_c02205{vertical-align:-5.400000px;}
.v1_c02205{vertical-align:-3.600000px;}
.v3_c02205{vertical-align:-2.520000px;}
.v4_c02205{vertical-align:-1.440000px;}
.v0_c02205{vertical-align:0.000000px;}
.v7_c02205{vertical-align:1.080000px;}
.v5_c02205{vertical-align:2.520600px;}
.v6_c02205{vertical-align:3.960000px;}
.v2_c02205{vertical-align:5.400000px;}
.vc_c02205{vertical-align:11.160600px;}
.ls2c_c02205{letter-spacing:-0.086184px;}
.ls29_c02205{letter-spacing:-0.043200px;}
.ls33_c02205{letter-spacing:-0.037908px;}
.ls31_c02205{letter-spacing:-0.024048px;}
.ls24_c02205{letter-spacing:-0.019152px;}
.ls2a_c02205{letter-spacing:-0.010800px;}
.ls26_c02205{letter-spacing:-0.009576px;}
.ls27_c02205{letter-spacing:-0.007200px;}
.ls2f_c02205{letter-spacing:-0.004788px;}
.ls22_c02205{letter-spacing:0.000000px;}
.ls1_c02205{letter-spacing:0.006588px;}
.ls23_c02205{letter-spacing:0.007200px;}
.ls10_c02205{letter-spacing:0.010800px;}
.ls12_c02205{letter-spacing:0.012636px;}
.ls1d_c02205{letter-spacing:0.019152px;}
.ls11_c02205{letter-spacing:0.028728px;}
.ls13_c02205{letter-spacing:0.032400px;}
.ls16_c02205{letter-spacing:0.037800px;}
.lsd_c02205{letter-spacing:0.043092px;}
.ls15_c02205{letter-spacing:0.043200px;}
.ls1f_c02205{letter-spacing:0.059400px;}
.ls6_c02205{letter-spacing:0.065880px;}
.lsb_c02205{letter-spacing:0.067032px;}
.lse_c02205{letter-spacing:0.076608px;}
.ls19_c02205{letter-spacing:0.081396px;}
.lsa_c02205{letter-spacing:0.086184px;}
.ls0_c02205{letter-spacing:0.092232px;}
.ls2_c02205{letter-spacing:0.095760px;}
.ls4_c02205{letter-spacing:0.098820px;}
.ls14_c02205{letter-spacing:0.110124px;}
.lsc_c02205{letter-spacing:0.114912px;}
.lsf_c02205{letter-spacing:0.119700px;}
.ls1b_c02205{letter-spacing:0.124488px;}
.ls9_c02205{letter-spacing:0.125172px;}
.ls7_c02205{letter-spacing:0.131760px;}
.ls1c_c02205{letter-spacing:0.134064px;}
.ls28_c02205{letter-spacing:0.151200px;}
.ls5_c02205{letter-spacing:0.158112px;}
.ls21_c02205{letter-spacing:0.162792px;}
.ls2b_c02205{letter-spacing:0.167580px;}
.ls25_c02205{letter-spacing:0.177876px;}
.ls30_c02205{letter-spacing:0.180360px;}
.ls3_c02205{letter-spacing:0.181944px;}
.ls18_c02205{letter-spacing:0.205884px;}
.ls1e_c02205{letter-spacing:132.030000px;}
.ls2d_c02205{letter-spacing:141.301800px;}
.ls2e_c02205{letter-spacing:154.887156px;}
.ls32_c02205{letter-spacing:155.341800px;}
.ls34_c02205{letter-spacing:156.421800px;}
.ls1a_c02205{letter-spacing:156.778200px;}
.ls20_c02205{letter-spacing:162.270000px;}
.ls8_c02205{letter-spacing:191.970000px;}
.ls17_c02205{letter-spacing:204.030000px;}
.sc__c02205{text-shadow:none;}
.sc0_c02205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02205{-webkit-text-stroke:0px transparent;}
.sc0_c02205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02205{word-spacing:-16.476588px;}
.ws4_c02205{word-spacing:-10.492092px;}
.ws14_c02205{word-spacing:-0.296856px;}
.ws13_c02205{word-spacing:-0.272916px;}
.ws1e_c02205{word-spacing:-0.253764px;}
.ws18_c02205{word-spacing:-0.225036px;}
.ws17_c02205{word-spacing:-0.215460px;}
.ws10_c02205{word-spacing:-0.210672px;}
.ws7_c02205{word-spacing:-0.186732px;}
.ws19_c02205{word-spacing:-0.172368px;}
.ws1b_c02205{word-spacing:-0.119700px;}
.ws1a_c02205{word-spacing:-0.110124px;}
.ws12_c02205{word-spacing:-0.101088px;}
.ws16_c02205{word-spacing:-0.081396px;}
.ws6_c02205{word-spacing:-0.050400px;}
.wsa_c02205{word-spacing:-0.039528px;}
.ws8_c02205{word-spacing:-0.006588px;}
.ws5_c02205{word-spacing:0.000000px;}
.ws11_c02205{word-spacing:0.007200px;}
.ws9_c02205{word-spacing:0.026352px;}
.ws1c_c02205{word-spacing:0.118800px;}
.wsd_c02205{word-spacing:1.235304px;}
.wsf_c02205{word-spacing:1.273608px;}
.wse_c02205{word-spacing:1.307124px;}
.wsb_c02205{word-spacing:5.941908px;}
.wsc_c02205{word-spacing:5.961060px;}
.ws3_c02205{word-spacing:58.969440px;}
.ws15_c02205{word-spacing:156.378600px;}
.ws1d_c02205{word-spacing:172.935000px;}
.ws2_c02205{word-spacing:191.449440px;}
.ws1_c02205{word-spacing:307.009440px;}
._39_c02205{margin-left:-41.040000px;}
._37_c02205{margin-left:-27.761400px;}
._38_c02205{margin-left:-15.485220px;}
._0_c02205{margin-left:-1.100196px;}
._2b_c02205{width:1.041192px;}
._1c_c02205{width:42.433200px;}
._2a_c02205{width:43.648200px;}
._23_c02205{width:49.518036px;}
._14_c02205{width:51.300000px;}
._3b_c02205{width:53.261424px;}
._18_c02205{width:62.287020px;}
._22_c02205{width:63.864000px;}
._2f_c02205{width:65.394000px;}
._10_c02205{width:71.692128px;}
._32_c02205{width:73.475748px;}
._1a_c02205{width:75.420000px;}
._11_c02205{width:76.950180px;}
._17_c02205{width:83.340000px;}
._b_c02205{width:85.194000px;}
._a_c02205{width:86.781600px;}
._2e_c02205{width:88.221600px;}
._2c_c02205{width:93.550212px;}
._28_c02205{width:96.300000px;}
._2d_c02205{width:98.550180px;}
._33_c02205{width:100.216800px;}
._12_c02205{width:101.455200px;}
._29_c02205{width:104.544000px;}
._15_c02205{width:107.719380px;}
._35_c02205{width:108.799236px;}
._13_c02205{width:110.809440px;}
._3a_c02205{width:113.329440px;}
._1b_c02205{width:114.969276px;}
._31_c02205{width:117.450036px;}
._1e_c02205{width:118.780056px;}
._c_c02205{width:123.660000px;}
._d_c02205{width:127.620000px;}
._19_c02205{width:129.607020px;}
._f_c02205{width:131.191524px;}
._16_c02205{width:132.555600px;}
._25_c02205{width:135.840168px;}
._21_c02205{width:138.600432px;}
._e_c02205{width:139.618944px;}
._1d_c02205{width:141.300000px;}
._30_c02205{width:147.420000px;}
._24_c02205{width:148.786920px;}
._1f_c02205{width:152.282160px;}
._36_c02205{width:154.209276px;}
._27_c02205{width:155.340000px;}
._26_c02205{width:157.367016px;}
._34_c02205{width:171.689904px;}
._3d_c02205{width:172.954296px;}
._9_c02205{width:175.315536px;}
._4_c02205{width:191.436372px;}
._20_c02205{width:198.864000px;}
._3e_c02205{width:209.946384px;}
._3c_c02205{width:264.324168px;}
._5_c02205{width:280.872072px;}
._6_c02205{width:284.690988px;}
._2_c02205{width:287.726112px;}
._7_c02205{width:307.354248px;}
._3_c02205{width:361.278612px;}
._1_c02205{width:400.645440px;}
._8_c02205{width:583.070220px;}
.fc0_c02205{color:rgb(0,0,0);}
.fs4_c02205{font-size:11.880000px;}
.fs3_c02205{font-size:29.880000px;}
.fs6_c02205{font-size:42.120000px;}
.fs2_c02205{font-size:47.880000px;}
.fs5_c02205{font-size:54.000000px;}
.fs7_c02205{font-size:60.120000px;}
.fs1_c02205{font-size:65.880000px;}
.fs0_c02205{font-size:72.000000px;}
.y0_c02205{bottom:0.000000px;}
.y3_c02205{bottom:57.360450px;}
.y2_c02205{bottom:78.060450px;}
.y57_c02205{bottom:110.820450px;}
.y56_c02205{bottom:119.640450px;}
.y55_c02205{bottom:123.510000px;}
.y54_c02205{bottom:138.630450px;}
.y53_c02205{bottom:142.410900px;}
.y52_c02205{bottom:157.620600px;}
.y51_c02205{bottom:161.400450px;}
.y50_c02205{bottom:180.390450px;}
.y4f_c02205{bottom:195.510450px;}
.y4e_c02205{bottom:199.380450px;}
.y4d_c02205{bottom:215.580450px;}
.y4c_c02205{bottom:234.750450px;}
.y4b_c02205{bottom:251.220450px;}
.y4a_c02205{bottom:272.010450px;}
.y49_c02205{bottom:280.830450px;}
.y48_c02205{bottom:284.610450px;}
.y47_c02205{bottom:302.160450px;}
.y46_c02205{bottom:320.070450px;}
.y45_c02205{bottom:336.540450px;}
.y44_c02205{bottom:357.240450px;}
.y43_c02205{bottom:366.060450px;}
.y42_c02205{bottom:366.420150px;}
.y41_c02205{bottom:385.050450px;}
.y40_c02205{bottom:385.410000px;}
.y3f_c02205{bottom:404.040600px;}
.y3e_c02205{bottom:404.400150px;}
.y3d_c02205{bottom:423.030450px;}
.y3c_c02205{bottom:423.390000px;}
.y3b_c02205{bottom:441.930600px;}
.y3a_c02205{bottom:442.380450px;}
.y39_c02205{bottom:462.000450px;}
.y38_c02205{bottom:481.170450px;}
.y37_c02205{bottom:497.640450px;}
.y36_c02205{bottom:518.430600px;}
.y35_c02205{bottom:527.250450px;}
.y34_c02205{bottom:531.030900px;}
.y33_c02205{bottom:546.240450px;}
.y32_c02205{bottom:550.020900px;}
.y31_c02205{bottom:565.140450px;}
.y30_c02205{bottom:569.010000px;}
.y2f_c02205{bottom:584.130450px;}
.y2e_c02205{bottom:588.000000px;}
.y2d_c02205{bottom:603.120450px;}
.y2c_c02205{bottom:606.990450px;}
.y2b_c02205{bottom:625.890450px;}
.y2a_c02205{bottom:641.100450px;}
.y29_c02205{bottom:644.880450px;}
.y28_c02205{bottom:661.080450px;}
.y27_c02205{bottom:680.340450px;}
.y26_c02205{bottom:696.810450px;}
.y25_c02205{bottom:717.510450px;}
.y24_c02205{bottom:726.330450px;}
.y23_c02205{bottom:726.690000px;}
.y22_c02205{bottom:745.320450px;}
.y21_c02205{bottom:745.680000px;}
.y20_c02205{bottom:764.310450px;}
.y1f_c02205{bottom:764.670000px;}
.y1e_c02205{bottom:783.300450px;}
.y1d_c02205{bottom:783.660000px;}
.y1c_c02205{bottom:802.200450px;}
.y1b_c02205{bottom:802.650450px;}
.y1a_c02205{bottom:821.550450px;}
.y19_c02205{bottom:840.180600px;}
.y18_c02205{bottom:840.540600px;}
.y17_c02205{bottom:859.530450px;}
.y16_c02205{bottom:878.160450px;}
.y15_c02205{bottom:878.520450px;}
.y14_c02205{bottom:898.140450px;}
.y13_c02205{bottom:917.400450px;}
.y12_c02205{bottom:933.870450px;}
.y11_c02205{bottom:953.490450px;}
.y10_c02205{bottom:958.170450px;}
.yf_c02205{bottom:967.800099px;}
.ye_c02205{bottom:981.570387px;}
.yd_c02205{bottom:995.430450px;}
.yc_c02205{bottom:1012.260450px;}
.yb_c02205{bottom:1031.250450px;}
.ya_c02205{bottom:1050.240450px;}
.y9_c02205{bottom:1069.230450px;}
.y8_c02205{bottom:1088.220450px;}
.y7_c02205{bottom:1108.560450px;}
.y5_c02205{bottom:1109.460450px;}
.y6_c02205{bottom:1124.580450px;}
.y4_c02205{bottom:1141.500450px;}
.y1_c02205{bottom:1193.160450px;}
.h7_c02205{height:10.551621px;}
.h6_c02205{height:26.217949px;}
.h5_c02205{height:42.011895px;}
.h9_c02205{height:47.961914px;}
.h8_c02205{height:48.570293px;}
.h10_c02205{height:48.570893px;}
.h12_c02205{height:53.721914px;}
.h4_c02205{height:57.805840px;}
.h3_c02205{height:58.513535px;}
.h13_c02205{height:59.122514px;}
.hb_c02205{height:61.033535px;}
.hd_c02205{height:61.393535px;}
.h11_c02205{height:62.472935px;}
.ha_c02205{height:62.473535px;}
.hf_c02205{height:62.474135px;}
.hc_c02205{height:62.832935px;}
.he_c02205{height:62.833535px;}
.h2_c02205{height:63.175781px;}
.h1_c02205{height:63.949219px;}
.h0_c02205{height:1263.000000px;}
.w1_c02205{width:892.500000px;}
.w0_c02205{width:892.830000px;}
.x0_c02205{left:0.000000px;}
.x1_c02205{left:127.620000px;}
.x3_c02205{left:134.550000px;}
.x6_c02205{left:135.630000px;}
.xb_c02205{left:138.780000px;}
.x7_c02205{left:143.910000px;}
.xa_c02205{left:150.300000px;}
.x8_c02205{left:165.060000px;}
.x9_c02205{left:219.960000px;}
.x4_c02205{left:332.100000px;}
.x5_c02205{left:355.140000px;}
.x2_c02205{left:433.080000px;}
@media print{
.v8_c02205{vertical-align:-13.440000pt;}
.vf_c02205{vertical-align:-12.160000pt;}
.vd_c02205{vertical-align:-11.200000pt;}
.ve_c02205{vertical-align:-9.920000pt;}
.v9_c02205{vertical-align:-8.320000pt;}
.va_c02205{vertical-align:-6.080000pt;}
.vb_c02205{vertical-align:-4.800000pt;}
.v1_c02205{vertical-align:-3.200000pt;}
.v3_c02205{vertical-align:-2.240000pt;}
.v4_c02205{vertical-align:-1.280000pt;}
.v0_c02205{vertical-align:0.000000pt;}
.v7_c02205{vertical-align:0.960000pt;}
.v5_c02205{vertical-align:2.240533pt;}
.v6_c02205{vertical-align:3.520000pt;}
.v2_c02205{vertical-align:4.800000pt;}
.vc_c02205{vertical-align:9.920533pt;}
.ls2c_c02205{letter-spacing:-0.076608pt;}
.ls29_c02205{letter-spacing:-0.038400pt;}
.ls33_c02205{letter-spacing:-0.033696pt;}
.ls31_c02205{letter-spacing:-0.021376pt;}
.ls24_c02205{letter-spacing:-0.017024pt;}
.ls2a_c02205{letter-spacing:-0.009600pt;}
.ls26_c02205{letter-spacing:-0.008512pt;}
.ls27_c02205{letter-spacing:-0.006400pt;}
.ls2f_c02205{letter-spacing:-0.004256pt;}
.ls22_c02205{letter-spacing:0.000000pt;}
.ls1_c02205{letter-spacing:0.005856pt;}
.ls23_c02205{letter-spacing:0.006400pt;}
.ls10_c02205{letter-spacing:0.009600pt;}
.ls12_c02205{letter-spacing:0.011232pt;}
.ls1d_c02205{letter-spacing:0.017024pt;}
.ls11_c02205{letter-spacing:0.025536pt;}
.ls13_c02205{letter-spacing:0.028800pt;}
.ls16_c02205{letter-spacing:0.033600pt;}
.lsd_c02205{letter-spacing:0.038304pt;}
.ls15_c02205{letter-spacing:0.038400pt;}
.ls1f_c02205{letter-spacing:0.052800pt;}
.ls6_c02205{letter-spacing:0.058560pt;}
.lsb_c02205{letter-spacing:0.059584pt;}
.lse_c02205{letter-spacing:0.068096pt;}
.ls19_c02205{letter-spacing:0.072352pt;}
.lsa_c02205{letter-spacing:0.076608pt;}
.ls0_c02205{letter-spacing:0.081984pt;}
.ls2_c02205{letter-spacing:0.085120pt;}
.ls4_c02205{letter-spacing:0.087840pt;}
.ls14_c02205{letter-spacing:0.097888pt;}
.lsc_c02205{letter-spacing:0.102144pt;}
.lsf_c02205{letter-spacing:0.106400pt;}
.ls1b_c02205{letter-spacing:0.110656pt;}
.ls9_c02205{letter-spacing:0.111264pt;}
.ls7_c02205{letter-spacing:0.117120pt;}
.ls1c_c02205{letter-spacing:0.119168pt;}
.ls28_c02205{letter-spacing:0.134400pt;}
.ls5_c02205{letter-spacing:0.140544pt;}
.ls21_c02205{letter-spacing:0.144704pt;}
.ls2b_c02205{letter-spacing:0.148960pt;}
.ls25_c02205{letter-spacing:0.158112pt;}
.ls30_c02205{letter-spacing:0.160320pt;}
.ls3_c02205{letter-spacing:0.161728pt;}
.ls18_c02205{letter-spacing:0.183008pt;}
.ls1e_c02205{letter-spacing:117.360000pt;}
.ls2d_c02205{letter-spacing:125.601600pt;}
.ls2e_c02205{letter-spacing:137.677472pt;}
.ls32_c02205{letter-spacing:138.081600pt;}
.ls34_c02205{letter-spacing:139.041600pt;}
.ls1a_c02205{letter-spacing:139.358400pt;}
.ls20_c02205{letter-spacing:144.240000pt;}
.ls8_c02205{letter-spacing:170.640000pt;}
.ls17_c02205{letter-spacing:181.360000pt;}
.ws0_c02205{word-spacing:-14.645856pt;}
.ws4_c02205{word-spacing:-9.326304pt;}
.ws14_c02205{word-spacing:-0.263872pt;}
.ws13_c02205{word-spacing:-0.242592pt;}
.ws1e_c02205{word-spacing:-0.225568pt;}
.ws18_c02205{word-spacing:-0.200032pt;}
.ws17_c02205{word-spacing:-0.191520pt;}
.ws10_c02205{word-spacing:-0.187264pt;}
.ws7_c02205{word-spacing:-0.165984pt;}
.ws19_c02205{word-spacing:-0.153216pt;}
.ws1b_c02205{word-spacing:-0.106400pt;}
.ws1a_c02205{word-spacing:-0.097888pt;}
.ws12_c02205{word-spacing:-0.089856pt;}
.ws16_c02205{word-spacing:-0.072352pt;}
.ws6_c02205{word-spacing:-0.044800pt;}
.wsa_c02205{word-spacing:-0.035136pt;}
.ws8_c02205{word-spacing:-0.005856pt;}
.ws5_c02205{word-spacing:0.000000pt;}
.ws11_c02205{word-spacing:0.006400pt;}
.ws9_c02205{word-spacing:0.023424pt;}
.ws1c_c02205{word-spacing:0.105600pt;}
.wsd_c02205{word-spacing:1.098048pt;}
.wsf_c02205{word-spacing:1.132096pt;}
.wse_c02205{word-spacing:1.161888pt;}
.wsb_c02205{word-spacing:5.281696pt;}
.wsc_c02205{word-spacing:5.298720pt;}
.ws3_c02205{word-spacing:52.417280pt;}
.ws15_c02205{word-spacing:139.003200pt;}
.ws1d_c02205{word-spacing:153.720000pt;}
.ws2_c02205{word-spacing:170.177280pt;}
.ws1_c02205{word-spacing:272.897280pt;}
._39_c02205{margin-left:-36.480000pt;}
._37_c02205{margin-left:-24.676800pt;}
._38_c02205{margin-left:-13.764640pt;}
._0_c02205{margin-left:-0.977952pt;}
._2b_c02205{width:0.925504pt;}
._1c_c02205{width:37.718400pt;}
._2a_c02205{width:38.798400pt;}
._23_c02205{width:44.016032pt;}
._14_c02205{width:45.600000pt;}
._3b_c02205{width:47.343488pt;}
._18_c02205{width:55.366240pt;}
._22_c02205{width:56.768000pt;}
._2f_c02205{width:58.128000pt;}
._10_c02205{width:63.726336pt;}
._32_c02205{width:65.311776pt;}
._1a_c02205{width:67.040000pt;}
._11_c02205{width:68.400160pt;}
._17_c02205{width:74.080000pt;}
._b_c02205{width:75.728000pt;}
._a_c02205{width:77.139200pt;}
._2e_c02205{width:78.419200pt;}
._2c_c02205{width:83.155744pt;}
._28_c02205{width:85.600000pt;}
._2d_c02205{width:87.600160pt;}
._33_c02205{width:89.081600pt;}
._12_c02205{width:90.182400pt;}
._29_c02205{width:92.928000pt;}
._15_c02205{width:95.750560pt;}
._35_c02205{width:96.710432pt;}
._13_c02205{width:98.497280pt;}
._3a_c02205{width:100.737280pt;}
._1b_c02205{width:102.194912pt;}
._31_c02205{width:104.400032pt;}
._1e_c02205{width:105.582272pt;}
._c_c02205{width:109.920000pt;}
._d_c02205{width:113.440000pt;}
._19_c02205{width:115.206240pt;}
._f_c02205{width:116.614688pt;}
._16_c02205{width:117.827200pt;}
._25_c02205{width:120.746816pt;}
._21_c02205{width:123.200384pt;}
._e_c02205{width:124.105728pt;}
._1d_c02205{width:125.600000pt;}
._30_c02205{width:131.040000pt;}
._24_c02205{width:132.255040pt;}
._1f_c02205{width:135.361920pt;}
._36_c02205{width:137.074912pt;}
._27_c02205{width:138.080000pt;}
._26_c02205{width:139.881792pt;}
._34_c02205{width:152.613248pt;}
._3d_c02205{width:153.737152pt;}
._9_c02205{width:155.836032pt;}
._4_c02205{width:170.165664pt;}
._20_c02205{width:176.768000pt;}
._3e_c02205{width:186.619008pt;}
._3c_c02205{width:234.954816pt;}
._5_c02205{width:249.664064pt;}
._6_c02205{width:253.058656pt;}
._2_c02205{width:255.756544pt;}
._7_c02205{width:273.203776pt;}
._3_c02205{width:321.136544pt;}
._1_c02205{width:356.129280pt;}
._8_c02205{width:518.284640pt;}
.fs4_c02205{font-size:10.560000pt;}
.fs3_c02205{font-size:26.560000pt;}
.fs6_c02205{font-size:37.440000pt;}
.fs2_c02205{font-size:42.560000pt;}
.fs5_c02205{font-size:48.000000pt;}
.fs7_c02205{font-size:53.440000pt;}
.fs1_c02205{font-size:58.560000pt;}
.fs0_c02205{font-size:64.000000pt;}
.y0_c02205{bottom:0.000000pt;}
.y3_c02205{bottom:50.987067pt;}
.y2_c02205{bottom:69.387067pt;}
.y57_c02205{bottom:98.507067pt;}
.y56_c02205{bottom:106.347067pt;}
.y55_c02205{bottom:109.786667pt;}
.y54_c02205{bottom:123.227067pt;}
.y53_c02205{bottom:126.587467pt;}
.y52_c02205{bottom:140.107200pt;}
.y51_c02205{bottom:143.467067pt;}
.y50_c02205{bottom:160.347067pt;}
.y4f_c02205{bottom:173.787067pt;}
.y4e_c02205{bottom:177.227067pt;}
.y4d_c02205{bottom:191.627067pt;}
.y4c_c02205{bottom:208.667067pt;}
.y4b_c02205{bottom:223.307067pt;}
.y4a_c02205{bottom:241.787067pt;}
.y49_c02205{bottom:249.627067pt;}
.y48_c02205{bottom:252.987067pt;}
.y47_c02205{bottom:268.587067pt;}
.y46_c02205{bottom:284.507067pt;}
.y45_c02205{bottom:299.147067pt;}
.y44_c02205{bottom:317.547067pt;}
.y43_c02205{bottom:325.387067pt;}
.y42_c02205{bottom:325.706800pt;}
.y41_c02205{bottom:342.267067pt;}
.y40_c02205{bottom:342.586667pt;}
.y3f_c02205{bottom:359.147200pt;}
.y3e_c02205{bottom:359.466800pt;}
.y3d_c02205{bottom:376.027067pt;}
.y3c_c02205{bottom:376.346667pt;}
.y3b_c02205{bottom:392.827200pt;}
.y3a_c02205{bottom:393.227067pt;}
.y39_c02205{bottom:410.667067pt;}
.y38_c02205{bottom:427.707067pt;}
.y37_c02205{bottom:442.347067pt;}
.y36_c02205{bottom:460.827200pt;}
.y35_c02205{bottom:468.667067pt;}
.y34_c02205{bottom:472.027467pt;}
.y33_c02205{bottom:485.547067pt;}
.y32_c02205{bottom:488.907467pt;}
.y31_c02205{bottom:502.347067pt;}
.y30_c02205{bottom:505.786667pt;}
.y2f_c02205{bottom:519.227067pt;}
.y2e_c02205{bottom:522.666667pt;}
.y2d_c02205{bottom:536.107067pt;}
.y2c_c02205{bottom:539.547067pt;}
.y2b_c02205{bottom:556.347067pt;}
.y2a_c02205{bottom:569.867067pt;}
.y29_c02205{bottom:573.227067pt;}
.y28_c02205{bottom:587.627067pt;}
.y27_c02205{bottom:604.747067pt;}
.y26_c02205{bottom:619.387067pt;}
.y25_c02205{bottom:637.787067pt;}
.y24_c02205{bottom:645.627067pt;}
.y23_c02205{bottom:645.946667pt;}
.y22_c02205{bottom:662.507067pt;}
.y21_c02205{bottom:662.826667pt;}
.y20_c02205{bottom:679.387067pt;}
.y1f_c02205{bottom:679.706667pt;}
.y1e_c02205{bottom:696.267067pt;}
.y1d_c02205{bottom:696.586667pt;}
.y1c_c02205{bottom:713.067067pt;}
.y1b_c02205{bottom:713.467067pt;}
.y1a_c02205{bottom:730.267067pt;}
.y19_c02205{bottom:746.827200pt;}
.y18_c02205{bottom:747.147200pt;}
.y17_c02205{bottom:764.027067pt;}
.y16_c02205{bottom:780.587067pt;}
.y15_c02205{bottom:780.907067pt;}
.y14_c02205{bottom:798.347067pt;}
.y13_c02205{bottom:815.467067pt;}
.y12_c02205{bottom:830.107067pt;}
.y11_c02205{bottom:847.547067pt;}
.y10_c02205{bottom:851.707067pt;}
.yf_c02205{bottom:860.266755pt;}
.ye_c02205{bottom:872.507011pt;}
.yd_c02205{bottom:884.827067pt;}
.yc_c02205{bottom:899.787067pt;}
.yb_c02205{bottom:916.667067pt;}
.ya_c02205{bottom:933.547067pt;}
.y9_c02205{bottom:950.427067pt;}
.y8_c02205{bottom:967.307067pt;}
.y7_c02205{bottom:985.387067pt;}
.y5_c02205{bottom:986.187067pt;}
.y6_c02205{bottom:999.627067pt;}
.y4_c02205{bottom:1014.667067pt;}
.y1_c02205{bottom:1060.587067pt;}
.h7_c02205{height:9.379219pt;}
.h6_c02205{height:23.304844pt;}
.h5_c02205{height:37.343906pt;}
.h9_c02205{height:42.632812pt;}
.h8_c02205{height:43.173594pt;}
.h10_c02205{height:43.174127pt;}
.h12_c02205{height:47.752812pt;}
.h4_c02205{height:51.382969pt;}
.h3_c02205{height:52.012031pt;}
.h13_c02205{height:52.553346pt;}
.hb_c02205{height:54.252031pt;}
.hd_c02205{height:54.572031pt;}
.h11_c02205{height:55.531498pt;}
.ha_c02205{height:55.532031pt;}
.hf_c02205{height:55.532565pt;}
.hc_c02205{height:55.851498pt;}
.he_c02205{height:55.852031pt;}
.h2_c02205{height:56.156250pt;}
.h1_c02205{height:56.843750pt;}
.h0_c02205{height:1122.666667pt;}
.w1_c02205{width:793.333333pt;}
.w0_c02205{width:793.626667pt;}
.x0_c02205{left:0.000000pt;}
.x1_c02205{left:113.440000pt;}
.x3_c02205{left:119.600000pt;}
.x6_c02205{left:120.560000pt;}
.xb_c02205{left:123.360000pt;}
.x7_c02205{left:127.920000pt;}
.xa_c02205{left:133.600000pt;}
.x8_c02205{left:146.720000pt;}
.x9_c02205{left:195.520000pt;}
.x4_c02205{left:295.200000pt;}
.x5_c02205{left:315.680000pt;}
.x2_c02205{left:384.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_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_4372555e7f4b7ed6b5152318.woff2')format("woff");}.ff1_c02206{font-family:ff1_c02206;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02206;src:url('chunks/assets/font_cc56d1f0ee458f740be3d706.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;}
.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);}
.v3_c02206{vertical-align:-16.560000px;}
.va_c02206{vertical-align:-15.120000px;}
.v4_c02206{vertical-align:-14.040000px;}
.v5_c02206{vertical-align:-12.240000px;}
.vb_c02206{vertical-align:-11.160000px;}
.vc_c02206{vertical-align:-6.838344px;}
.ve_c02206{vertical-align:-5.760600px;}
.v9_c02206{vertical-align:-4.680000px;}
.v2_c02206{vertical-align:-1.080000px;}
.v0_c02206{vertical-align:0.000000px;}
.vd_c02206{vertical-align:1.080000px;}
.v6_c02206{vertical-align:2.160000px;}
.v7_c02206{vertical-align:4.320000px;}
.v1_c02206{vertical-align:5.400000px;}
.v8_c02206{vertical-align:10.800000px;}
.ls30_c02206{letter-spacing:-0.090972px;}
.ls2c_c02206{letter-spacing:-0.086184px;}
.ls29_c02206{letter-spacing:-0.043200px;}
.ls35_c02206{letter-spacing:-0.028728px;}
.ls36_c02206{letter-spacing:-0.019764px;}
.ls2b_c02206{letter-spacing:-0.019152px;}
.ls32_c02206{letter-spacing:-0.018036px;}
.ls2a_c02206{letter-spacing:-0.010800px;}
.ls2f_c02206{letter-spacing:-0.009576px;}
.ls34_c02206{letter-spacing:-0.007200px;}
.ls2e_c02206{letter-spacing:-0.004788px;}
.ls27_c02206{letter-spacing:0.000000px;}
.ls17_c02206{letter-spacing:0.004788px;}
.ls13_c02206{letter-spacing:0.007200px;}
.ls16_c02206{letter-spacing:0.009576px;}
.ls0_c02206{letter-spacing:0.010800px;}
.ls18_c02206{letter-spacing:0.014364px;}
.ls24_c02206{letter-spacing:0.014400px;}
.lse_c02206{letter-spacing:0.019152px;}
.ls25_c02206{letter-spacing:0.021600px;}
.ls2_c02206{letter-spacing:0.028728px;}
.ls4_c02206{letter-spacing:0.032400px;}
.ls9_c02206{letter-spacing:0.037800px;}
.ls23_c02206{letter-spacing:0.039528px;}
.ls1_c02206{letter-spacing:0.043092px;}
.ls5_c02206{letter-spacing:0.043200px;}
.ls20_c02206{letter-spacing:0.059292px;}
.ls3_c02206{letter-spacing:0.059400px;}
.ls1f_c02206{letter-spacing:0.062244px;}
.ls22_c02206{letter-spacing:0.065880px;}
.ls15_c02206{letter-spacing:0.067032px;}
.ls1d_c02206{letter-spacing:0.072468px;}
.ls11_c02206{letter-spacing:0.081396px;}
.ls21_c02206{letter-spacing:0.098820px;}
.ls1a_c02206{letter-spacing:0.105408px;}
.ls7_c02206{letter-spacing:0.110124px;}
.ls1c_c02206{letter-spacing:0.111996px;}
.lsc_c02206{letter-spacing:0.124488px;}
.lsd_c02206{letter-spacing:0.134064px;}
.ls31_c02206{letter-spacing:0.138348px;}
.ls28_c02206{letter-spacing:0.151200px;}
.ls1b_c02206{letter-spacing:0.151524px;}
.ls8_c02206{letter-spacing:0.158112px;}
.ls19_c02206{letter-spacing:0.167580px;}
.ls33_c02206{letter-spacing:0.177876px;}
.ls12_c02206{letter-spacing:0.181944px;}
.lsb_c02206{letter-spacing:0.205884px;}
.lsf_c02206{letter-spacing:113.849892px;}
.ls6_c02206{letter-spacing:116.818200px;}
.ls2d_c02206{letter-spacing:156.421800px;}
.lsa_c02206{letter-spacing:162.270000px;}
.ls10_c02206{letter-spacing:204.390000px;}
.ls14_c02206{letter-spacing:358.740000px;}
.ls26_c02206{letter-spacing:401.580000px;}
.ls1e_c02206{letter-spacing:441.900000px;}
.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;}
}
.ws2_c02206{word-spacing:-16.628112px;}
.ws0_c02206{word-spacing:-13.543200px;}
.wsb_c02206{word-spacing:-0.296856px;}
.wsa_c02206{word-spacing:-0.272916px;}
.ws10_c02206{word-spacing:-0.225036px;}
.wse_c02206{word-spacing:-0.215460px;}
.ws11_c02206{word-spacing:-0.172368px;}
.ws1f_c02206{word-spacing:-0.153216px;}
.ws13_c02206{word-spacing:-0.119700px;}
.ws12_c02206{word-spacing:-0.110124px;}
.ws26_c02206{word-spacing:-0.108000px;}
.ws15_c02206{word-spacing:-0.081396px;}
.ws8_c02206{word-spacing:-0.050400px;}
.ws1d_c02206{word-spacing:-0.043200px;}
.ws16_c02206{word-spacing:-0.036000px;}
.ws19_c02206{word-spacing:-0.019764px;}
.ws25_c02206{word-spacing:-0.014400px;}
.ws17_c02206{word-spacing:-0.013176px;}
.ws14_c02206{word-spacing:-0.007200px;}
.ws7_c02206{word-spacing:0.000000px;}
.ws1a_c02206{word-spacing:0.019764px;}
.ws22_c02206{word-spacing:0.026352px;}
.ws20_c02206{word-spacing:0.032940px;}
.ws23_c02206{word-spacing:0.052704px;}
.ws1e_c02206{word-spacing:0.108216px;}
.ws9_c02206{word-spacing:0.118800px;}
.ws1_c02206{word-spacing:58.969440px;}
.wsf_c02206{word-spacing:78.629400px;}
.ws1b_c02206{word-spacing:79.560000px;}
.ws29_c02206{word-spacing:80.215488px;}
.ws18_c02206{word-spacing:91.368972px;}
.ws5_c02206{word-spacing:106.200000px;}
.wsd_c02206{word-spacing:109.215000px;}
.ws1c_c02206{word-spacing:110.880000px;}
.ws3_c02206{word-spacing:117.646380px;}
.ws28_c02206{word-spacing:123.050664px;}
.ws4_c02206{word-spacing:150.087816px;}
.wsc_c02206{word-spacing:172.935000px;}
.ws24_c02206{word-spacing:188.280000px;}
.ws6_c02206{word-spacing:193.990248px;}
.ws21_c02206{word-spacing:194.754456px;}
.ws27_c02206{word-spacing:359.573040px;}
._44_c02206{margin-left:-237.404448px;}
._13_c02206{margin-left:-41.040000px;}
._10_c02206{margin-left:-27.761400px;}
._12_c02206{margin-left:-15.838200px;}
._1e_c02206{margin-left:-1.002636px;}
._2b_c02206{width:1.124424px;}
._26_c02206{width:25.974000px;}
._17_c02206{width:29.865600px;}
._16_c02206{width:34.857000px;}
._a_c02206{width:50.949000px;}
._2d_c02206{width:55.232820px;}
._2a_c02206{width:59.057352px;}
._2c_c02206{width:60.337080px;}
._11_c02206{width:62.640000px;}
._32_c02206{width:63.900000px;}
._1_c02206{width:65.394000px;}
._36_c02206{width:71.719920px;}
._7_c02206{width:72.847440px;}
._8_c02206{width:75.038400px;}
._1f_c02206{width:76.085388px;}
._41_c02206{width:79.876296px;}
._14_c02206{width:81.185220px;}
._c_c02206{width:83.340000px;}
._24_c02206{width:84.441600px;}
._1b_c02206{width:86.634000px;}
._0_c02206{width:88.221600px;}
._3e_c02206{width:92.285208px;}
._22_c02206{width:97.740000px;}
._9_c02206{width:100.598400px;}
._1d_c02206{width:101.602800px;}
._34_c02206{width:103.085208px;}
._35_c02206{width:104.463324px;}
._6_c02206{width:108.347688px;}
._20_c02206{width:112.089276px;}
._d_c02206{width:114.163200px;}
._23_c02206{width:115.631748px;}
._5_c02206{width:117.871524px;}
._3d_c02206{width:120.616848px;}
._43_c02206{width:122.329440px;}
._2_c02206{width:123.660000px;}
._1c_c02206{width:126.180000px;}
._e_c02206{width:129.733200px;}
._33_c02206{width:131.438448px;}
._29_c02206{width:132.960168px;}
._27_c02206{width:134.980236px;}
._4_c02206{width:138.178944px;}
._40_c02206{width:139.508172px;}
._28_c02206{width:145.906920px;}
._3_c02206{width:147.420000px;}
._25_c02206{width:149.402160px;}
._31_c02206{width:150.480000px;}
._f_c02206{width:154.209276px;}
._21_c02206{width:156.420000px;}
._30_c02206{width:157.623408px;}
._2f_c02206{width:159.663744px;}
._2e_c02206{width:161.173908px;}
._b_c02206{width:172.360980px;}
._19_c02206{width:175.080168px;}
._15_c02206{width:177.455016px;}
._18_c02206{width:188.026920px;}
._38_c02206{width:194.857452px;}
._1a_c02206{width:196.607016px;}
._3b_c02206{width:200.660256px;}
._3c_c02206{width:206.547480px;}
._39_c02206{width:211.484088px;}
._37_c02206{width:337.681116px;}
._3a_c02206{width:341.278164px;}
._42_c02206{width:356.500296px;}
._3f_c02206{width:392.558544px;}
.fc0_c02206{color:rgb(0,0,0);}
.fs4_c02206{font-size:11.880000px;}
.fs2_c02206{font-size:47.880000px;}
.fs1_c02206{font-size:54.000000px;}
.fs5_c02206{font-size:60.120000px;}
.fs3_c02206{font-size:65.880000px;}
.fs0_c02206{font-size:72.000000px;}
.y0_c02206{bottom:0.000000px;}
.y3_c02206{bottom:57.360450px;}
.y2_c02206{bottom:78.060450px;}
.y4d_c02206{bottom:123.960600px;}
.y4c_c02206{bottom:130.800450px;}
.y4b_c02206{bottom:149.790600px;}
.y4a_c02206{bottom:168.780450px;}
.y48_c02206{bottom:186.690450px;}
.y47_c02206{bottom:199.110450px;}
.y49_c02206{bottom:200.460600px;}
.y46_c02206{bottom:215.940450px;}
.y45_c02206{bottom:239.070450px;}
.y44_c02206{bottom:254.640000px;}
.y43_c02206{bottom:270.120450px;}
.y42_c02206{bottom:288.480450px;}
.y41_c02206{bottom:308.190450px;}
.y40_c02206{bottom:327.180450px;}
.y3f_c02206{bottom:346.080450px;}
.y3e_c02206{bottom:369.030450px;}
.y3d_c02206{bottom:385.320450px;}
.y3c_c02206{bottom:403.050450px;}
.y3b_c02206{bottom:426.180450px;}
.y3a_c02206{bottom:441.750000px;}
.y39_c02206{bottom:457.230450px;}
.y38_c02206{bottom:475.590600px;}
.y37_c02206{bottom:497.010450px;}
.y36_c02206{bottom:517.710600px;}
.y35_c02206{bottom:538.410450px;}
.y33_c02206{bottom:556.320450px;}
.y32_c02206{bottom:568.740450px;}
.y34_c02206{bottom:570.090450px;}
.y31_c02206{bottom:585.660450px;}
.y30_c02206{bottom:608.790000px;}
.y2f_c02206{bottom:624.270450px;}
.y2e_c02206{bottom:639.840450px;}
.y2d_c02206{bottom:643.620900px;}
.y2c_c02206{bottom:658.740450px;}
.y2b_c02206{bottom:662.610000px;}
.y2a_c02206{bottom:677.730450px;}
.y29_c02206{bottom:681.600000px;}
.y28_c02206{bottom:696.720450px;}
.y27_c02206{bottom:700.590000px;}
.y26_c02206{bottom:715.710450px;}
.y25_c02206{bottom:719.490450px;}
.y24_c02206{bottom:738.480450px;}
.y23_c02206{bottom:753.600450px;}
.y22_c02206{bottom:757.470450px;}
.y21_c02206{bottom:773.670450px;}
.y20_c02206{bottom:792.840450px;}
.y1f_c02206{bottom:809.310450px;}
.y1e_c02206{bottom:830.100450px;}
.y1d_c02206{bottom:838.920450px;}
.y1c_c02206{bottom:842.700450px;}
.y1b_c02206{bottom:861.690450px;}
.y1a_c02206{bottom:876.900450px;}
.y19_c02206{bottom:880.680600px;}
.y18_c02206{bottom:896.970450px;}
.y17_c02206{bottom:916.050450px;}
.y16_c02206{bottom:932.520450px;}
.y15_c02206{bottom:954.570450px;}
.y14_c02206{bottom:970.050450px;}
.y13_c02206{bottom:973.920000px;}
.y12_c02206{bottom:989.040600px;}
.y11_c02206{bottom:992.910000px;}
.y10_c02206{bottom:1008.030450px;}
.yf_c02206{bottom:1011.810900px;}
.ye_c02206{bottom:1027.020450px;}
.yd_c02206{bottom:1030.800900px;}
.yc_c02206{bottom:1046.010450px;}
.yb_c02206{bottom:1049.790450px;}
.ya_c02206{bottom:1064.910450px;}
.y9_c02206{bottom:1068.780000px;}
.y8_c02206{bottom:1083.900450px;}
.y7_c02206{bottom:1087.770450px;}
.y6_c02206{bottom:1107.030450px;}
.y5_c02206{bottom:1123.140450px;}
.y4_c02206{bottom:1139.610450px;}
.y1_c02206{bottom:1193.160450px;}
.h8_c02206{height:10.551621px;}
.ha_c02206{height:42.526230px;}
.h3_c02206{height:47.961914px;}
.hb_c02206{height:58.513535px;}
.h7_c02206{height:58.761914px;}
.h9_c02206{height:59.121914px;}
.h5_c02206{height:62.473535px;}
.h6_c02206{height:62.832935px;}
.h4_c02206{height:62.833535px;}
.h2_c02206{height:63.175781px;}
.h1_c02206{height:63.949219px;}
.h0_c02206{height:1263.000000px;}
.w1_c02206{width:892.500000px;}
.w0_c02206{width:892.830000px;}
.x0_c02206{left:0.000000px;}
.x1_c02206{left:127.620000px;}
.x3_c02206{left:135.630000px;}
.x8_c02206{left:138.509550px;}
.x5_c02206{left:141.480000px;}
.x4_c02206{left:143.910000px;}
.x6_c02206{left:150.300000px;}
.x7_c02206{left:220.590000px;}
.x2_c02206{left:433.080000px;}
.xc_c02206{left:486.540000px;}
.xd_c02206{left:539.730000px;}
.x9_c02206{left:657.990000px;}
.xe_c02206{left:667.260000px;}
.xb_c02206{left:711.900000px;}
.xf_c02206{left:720.450000px;}
.xa_c02206{left:726.390000px;}
@media print{
.v3_c02206{vertical-align:-14.720000pt;}
.va_c02206{vertical-align:-13.440000pt;}
.v4_c02206{vertical-align:-12.480000pt;}
.v5_c02206{vertical-align:-10.880000pt;}
.vb_c02206{vertical-align:-9.920000pt;}
.vc_c02206{vertical-align:-6.078528pt;}
.ve_c02206{vertical-align:-5.120533pt;}
.v9_c02206{vertical-align:-4.160000pt;}
.v2_c02206{vertical-align:-0.960000pt;}
.v0_c02206{vertical-align:0.000000pt;}
.vd_c02206{vertical-align:0.960000pt;}
.v6_c02206{vertical-align:1.920000pt;}
.v7_c02206{vertical-align:3.840000pt;}
.v1_c02206{vertical-align:4.800000pt;}
.v8_c02206{vertical-align:9.600000pt;}
.ls30_c02206{letter-spacing:-0.080864pt;}
.ls2c_c02206{letter-spacing:-0.076608pt;}
.ls29_c02206{letter-spacing:-0.038400pt;}
.ls35_c02206{letter-spacing:-0.025536pt;}
.ls36_c02206{letter-spacing:-0.017568pt;}
.ls2b_c02206{letter-spacing:-0.017024pt;}
.ls32_c02206{letter-spacing:-0.016032pt;}
.ls2a_c02206{letter-spacing:-0.009600pt;}
.ls2f_c02206{letter-spacing:-0.008512pt;}
.ls34_c02206{letter-spacing:-0.006400pt;}
.ls2e_c02206{letter-spacing:-0.004256pt;}
.ls27_c02206{letter-spacing:0.000000pt;}
.ls17_c02206{letter-spacing:0.004256pt;}
.ls13_c02206{letter-spacing:0.006400pt;}
.ls16_c02206{letter-spacing:0.008512pt;}
.ls0_c02206{letter-spacing:0.009600pt;}
.ls18_c02206{letter-spacing:0.012768pt;}
.ls24_c02206{letter-spacing:0.012800pt;}
.lse_c02206{letter-spacing:0.017024pt;}
.ls25_c02206{letter-spacing:0.019200pt;}
.ls2_c02206{letter-spacing:0.025536pt;}
.ls4_c02206{letter-spacing:0.028800pt;}
.ls9_c02206{letter-spacing:0.033600pt;}
.ls23_c02206{letter-spacing:0.035136pt;}
.ls1_c02206{letter-spacing:0.038304pt;}
.ls5_c02206{letter-spacing:0.038400pt;}
.ls20_c02206{letter-spacing:0.052704pt;}
.ls3_c02206{letter-spacing:0.052800pt;}
.ls1f_c02206{letter-spacing:0.055328pt;}
.ls22_c02206{letter-spacing:0.058560pt;}
.ls15_c02206{letter-spacing:0.059584pt;}
.ls1d_c02206{letter-spacing:0.064416pt;}
.ls11_c02206{letter-spacing:0.072352pt;}
.ls21_c02206{letter-spacing:0.087840pt;}
.ls1a_c02206{letter-spacing:0.093696pt;}
.ls7_c02206{letter-spacing:0.097888pt;}
.ls1c_c02206{letter-spacing:0.099552pt;}
.lsc_c02206{letter-spacing:0.110656pt;}
.lsd_c02206{letter-spacing:0.119168pt;}
.ls31_c02206{letter-spacing:0.122976pt;}
.ls28_c02206{letter-spacing:0.134400pt;}
.ls1b_c02206{letter-spacing:0.134688pt;}
.ls8_c02206{letter-spacing:0.140544pt;}
.ls19_c02206{letter-spacing:0.148960pt;}
.ls33_c02206{letter-spacing:0.158112pt;}
.ls12_c02206{letter-spacing:0.161728pt;}
.lsb_c02206{letter-spacing:0.183008pt;}
.lsf_c02206{letter-spacing:101.199904pt;}
.ls6_c02206{letter-spacing:103.838400pt;}
.ls2d_c02206{letter-spacing:139.041600pt;}
.lsa_c02206{letter-spacing:144.240000pt;}
.ls10_c02206{letter-spacing:181.680000pt;}
.ls14_c02206{letter-spacing:318.880000pt;}
.ls26_c02206{letter-spacing:356.960000pt;}
.ls1e_c02206{letter-spacing:392.800000pt;}
.ws2_c02206{word-spacing:-14.780544pt;}
.ws0_c02206{word-spacing:-12.038400pt;}
.wsb_c02206{word-spacing:-0.263872pt;}
.wsa_c02206{word-spacing:-0.242592pt;}
.ws10_c02206{word-spacing:-0.200032pt;}
.wse_c02206{word-spacing:-0.191520pt;}
.ws11_c02206{word-spacing:-0.153216pt;}
.ws1f_c02206{word-spacing:-0.136192pt;}
.ws13_c02206{word-spacing:-0.106400pt;}
.ws12_c02206{word-spacing:-0.097888pt;}
.ws26_c02206{word-spacing:-0.096000pt;}
.ws15_c02206{word-spacing:-0.072352pt;}
.ws8_c02206{word-spacing:-0.044800pt;}
.ws1d_c02206{word-spacing:-0.038400pt;}
.ws16_c02206{word-spacing:-0.032000pt;}
.ws19_c02206{word-spacing:-0.017568pt;}
.ws25_c02206{word-spacing:-0.012800pt;}
.ws17_c02206{word-spacing:-0.011712pt;}
.ws14_c02206{word-spacing:-0.006400pt;}
.ws7_c02206{word-spacing:0.000000pt;}
.ws1a_c02206{word-spacing:0.017568pt;}
.ws22_c02206{word-spacing:0.023424pt;}
.ws20_c02206{word-spacing:0.029280pt;}
.ws23_c02206{word-spacing:0.046848pt;}
.ws1e_c02206{word-spacing:0.096192pt;}
.ws9_c02206{word-spacing:0.105600pt;}
.ws1_c02206{word-spacing:52.417280pt;}
.wsf_c02206{word-spacing:69.892800pt;}
.ws1b_c02206{word-spacing:70.720000pt;}
.ws29_c02206{word-spacing:71.302656pt;}
.ws18_c02206{word-spacing:81.216864pt;}
.ws5_c02206{word-spacing:94.400000pt;}
.wsd_c02206{word-spacing:97.080000pt;}
.ws1c_c02206{word-spacing:98.560000pt;}
.ws3_c02206{word-spacing:104.574560pt;}
.ws28_c02206{word-spacing:109.378368pt;}
.ws4_c02206{word-spacing:133.411392pt;}
.wsc_c02206{word-spacing:153.720000pt;}
.ws24_c02206{word-spacing:167.360000pt;}
.ws6_c02206{word-spacing:172.435776pt;}
.ws21_c02206{word-spacing:173.115072pt;}
.ws27_c02206{word-spacing:319.620480pt;}
._44_c02206{margin-left:-211.026176pt;}
._13_c02206{margin-left:-36.480000pt;}
._10_c02206{margin-left:-24.676800pt;}
._12_c02206{margin-left:-14.078400pt;}
._1e_c02206{margin-left:-0.891232pt;}
._2b_c02206{width:0.999488pt;}
._26_c02206{width:23.088000pt;}
._17_c02206{width:26.547200pt;}
._16_c02206{width:30.984000pt;}
._a_c02206{width:45.288000pt;}
._2d_c02206{width:49.095840pt;}
._2a_c02206{width:52.495424pt;}
._2c_c02206{width:53.632960pt;}
._11_c02206{width:55.680000pt;}
._32_c02206{width:56.800000pt;}
._1_c02206{width:58.128000pt;}
._36_c02206{width:63.751040pt;}
._7_c02206{width:64.753280pt;}
._8_c02206{width:66.700800pt;}
._1f_c02206{width:67.631456pt;}
._41_c02206{width:71.001152pt;}
._14_c02206{width:72.164640pt;}
._c_c02206{width:74.080000pt;}
._24_c02206{width:75.059200pt;}
._1b_c02206{width:77.008000pt;}
._0_c02206{width:78.419200pt;}
._3e_c02206{width:82.031296pt;}
._22_c02206{width:86.880000pt;}
._9_c02206{width:89.420800pt;}
._1d_c02206{width:90.313600pt;}
._34_c02206{width:91.631296pt;}
._35_c02206{width:92.856288pt;}
._6_c02206{width:96.309056pt;}
._20_c02206{width:99.634912pt;}
._d_c02206{width:101.478400pt;}
._23_c02206{width:102.783776pt;}
._5_c02206{width:104.774688pt;}
._3d_c02206{width:107.214976pt;}
._43_c02206{width:108.737280pt;}
._2_c02206{width:109.920000pt;}
._1c_c02206{width:112.160000pt;}
._e_c02206{width:115.318400pt;}
._33_c02206{width:116.834176pt;}
._29_c02206{width:118.186816pt;}
._27_c02206{width:119.982432pt;}
._4_c02206{width:122.825728pt;}
._40_c02206{width:124.007264pt;}
._28_c02206{width:129.695040pt;}
._3_c02206{width:131.040000pt;}
._25_c02206{width:132.801920pt;}
._31_c02206{width:133.760000pt;}
._f_c02206{width:137.074912pt;}
._21_c02206{width:139.040000pt;}
._30_c02206{width:140.109696pt;}
._2f_c02206{width:141.923328pt;}
._2e_c02206{width:143.265696pt;}
._b_c02206{width:153.209760pt;}
._19_c02206{width:155.626816pt;}
._15_c02206{width:157.737792pt;}
._18_c02206{width:167.135040pt;}
._38_c02206{width:173.206624pt;}
._1a_c02206{width:174.761792pt;}
._3b_c02206{width:178.364672pt;}
._3c_c02206{width:183.597760pt;}
._39_c02206{width:187.985856pt;}
._37_c02206{width:300.160992pt;}
._3a_c02206{width:303.358368pt;}
._42_c02206{width:316.889152pt;}
._3f_c02206{width:348.940928pt;}
.fs4_c02206{font-size:10.560000pt;}
.fs2_c02206{font-size:42.560000pt;}
.fs1_c02206{font-size:48.000000pt;}
.fs5_c02206{font-size:53.440000pt;}
.fs3_c02206{font-size:58.560000pt;}
.fs0_c02206{font-size:64.000000pt;}
.y0_c02206{bottom:0.000000pt;}
.y3_c02206{bottom:50.987067pt;}
.y2_c02206{bottom:69.387067pt;}
.y4d_c02206{bottom:110.187200pt;}
.y4c_c02206{bottom:116.267067pt;}
.y4b_c02206{bottom:133.147200pt;}
.y4a_c02206{bottom:150.027067pt;}
.y48_c02206{bottom:165.947067pt;}
.y47_c02206{bottom:176.987067pt;}
.y49_c02206{bottom:178.187200pt;}
.y46_c02206{bottom:191.947067pt;}
.y45_c02206{bottom:212.507067pt;}
.y44_c02206{bottom:226.346667pt;}
.y43_c02206{bottom:240.107067pt;}
.y42_c02206{bottom:256.427067pt;}
.y41_c02206{bottom:273.947067pt;}
.y40_c02206{bottom:290.827067pt;}
.y3f_c02206{bottom:307.627067pt;}
.y3e_c02206{bottom:328.027067pt;}
.y3d_c02206{bottom:342.507067pt;}
.y3c_c02206{bottom:358.267067pt;}
.y3b_c02206{bottom:378.827067pt;}
.y3a_c02206{bottom:392.666667pt;}
.y39_c02206{bottom:406.427067pt;}
.y38_c02206{bottom:422.747200pt;}
.y37_c02206{bottom:441.787067pt;}
.y36_c02206{bottom:460.187200pt;}
.y35_c02206{bottom:478.587067pt;}
.y33_c02206{bottom:494.507067pt;}
.y32_c02206{bottom:505.547067pt;}
.y34_c02206{bottom:506.747067pt;}
.y31_c02206{bottom:520.587067pt;}
.y30_c02206{bottom:541.146667pt;}
.y2f_c02206{bottom:554.907067pt;}
.y2e_c02206{bottom:568.747067pt;}
.y2d_c02206{bottom:572.107467pt;}
.y2c_c02206{bottom:585.547067pt;}
.y2b_c02206{bottom:588.986667pt;}
.y2a_c02206{bottom:602.427067pt;}
.y29_c02206{bottom:605.866667pt;}
.y28_c02206{bottom:619.307067pt;}
.y27_c02206{bottom:622.746667pt;}
.y26_c02206{bottom:636.187067pt;}
.y25_c02206{bottom:639.547067pt;}
.y24_c02206{bottom:656.427067pt;}
.y23_c02206{bottom:669.867067pt;}
.y22_c02206{bottom:673.307067pt;}
.y21_c02206{bottom:687.707067pt;}
.y20_c02206{bottom:704.747067pt;}
.y1f_c02206{bottom:719.387067pt;}
.y1e_c02206{bottom:737.867067pt;}
.y1d_c02206{bottom:745.707067pt;}
.y1c_c02206{bottom:749.067067pt;}
.y1b_c02206{bottom:765.947067pt;}
.y1a_c02206{bottom:779.467067pt;}
.y19_c02206{bottom:782.827200pt;}
.y18_c02206{bottom:797.307067pt;}
.y17_c02206{bottom:814.267067pt;}
.y16_c02206{bottom:828.907067pt;}
.y15_c02206{bottom:848.507067pt;}
.y14_c02206{bottom:862.267067pt;}
.y13_c02206{bottom:865.706667pt;}
.y12_c02206{bottom:879.147200pt;}
.y11_c02206{bottom:882.586667pt;}
.y10_c02206{bottom:896.027067pt;}
.yf_c02206{bottom:899.387467pt;}
.ye_c02206{bottom:912.907067pt;}
.yd_c02206{bottom:916.267467pt;}
.yc_c02206{bottom:929.787067pt;}
.yb_c02206{bottom:933.147067pt;}
.ya_c02206{bottom:946.587067pt;}
.y9_c02206{bottom:950.026667pt;}
.y8_c02206{bottom:963.467067pt;}
.y7_c02206{bottom:966.907067pt;}
.y6_c02206{bottom:984.027067pt;}
.y5_c02206{bottom:998.347067pt;}
.y4_c02206{bottom:1012.987067pt;}
.y1_c02206{bottom:1060.587067pt;}
.h8_c02206{height:9.379219pt;}
.ha_c02206{height:37.801094pt;}
.h3_c02206{height:42.632812pt;}
.hb_c02206{height:52.012031pt;}
.h7_c02206{height:52.232813pt;}
.h9_c02206{height:52.552812pt;}
.h5_c02206{height:55.532031pt;}
.h6_c02206{height:55.851498pt;}
.h4_c02206{height:55.852031pt;}
.h2_c02206{height:56.156250pt;}
.h1_c02206{height:56.843750pt;}
.h0_c02206{height:1122.666667pt;}
.w1_c02206{width:793.333333pt;}
.w0_c02206{width:793.626667pt;}
.x0_c02206{left:0.000000pt;}
.x1_c02206{left:113.440000pt;}
.x3_c02206{left:120.560000pt;}
.x8_c02206{left:123.119600pt;}
.x5_c02206{left:125.760000pt;}
.x4_c02206{left:127.920000pt;}
.x6_c02206{left:133.600000pt;}
.x7_c02206{left:196.080000pt;}
.x2_c02206{left:384.960000pt;}
.xc_c02206{left:432.480000pt;}
.xd_c02206{left:479.760000pt;}
.x9_c02206{left:584.880000pt;}
.xe_c02206{left:593.120000pt;}
.xb_c02206{left:632.800000pt;}
.xf_c02206{left:640.400000pt;}
.xa_c02206{left:645.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_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_168e20c9b5412c7fa19450aa.woff2')format("woff");}.ff1_c02207{font-family:ff1_c02207;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02207;src:url('chunks/assets/font_f678956287d948aaed7eeed4.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;}
.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);}
.v2_c02207{vertical-align:-22.319400px;}
.v1_c02207{vertical-align:-16.920000px;}
.v3_c02207{vertical-align:-5.400000px;}
.v0_c02207{vertical-align:0.000000px;}
.ls1d_c02207{letter-spacing:-0.181116px;}
.ls1c_c02207{letter-spacing:-0.180360px;}
.ls1b_c02207{letter-spacing:-0.176904px;}
.ls1a_c02207{letter-spacing:-0.086400px;}
.ls18_c02207{letter-spacing:-0.032940px;}
.ls16_c02207{letter-spacing:-0.014400px;}
.ls17_c02207{letter-spacing:-0.013176px;}
.ls19_c02207{letter-spacing:-0.007200px;}
.ls15_c02207{letter-spacing:0.000000px;}
.lsc_c02207{letter-spacing:0.006588px;}
.ls6_c02207{letter-spacing:0.007200px;}
.ls11_c02207{letter-spacing:0.013176px;}
.ls0_c02207{letter-spacing:0.014400px;}
.ls4_c02207{letter-spacing:0.019764px;}
.ls9_c02207{letter-spacing:0.026352px;}
.ls10_c02207{letter-spacing:0.032940px;}
.ls2_c02207{letter-spacing:0.039528px;}
.ls7_c02207{letter-spacing:0.050400px;}
.lsa_c02207{letter-spacing:0.052704px;}
.lsb_c02207{letter-spacing:0.059292px;}
.ls12_c02207{letter-spacing:0.065880px;}
.ls1_c02207{letter-spacing:0.072468px;}
.lsf_c02207{letter-spacing:0.079056px;}
.lse_c02207{letter-spacing:0.085644px;}
.ls13_c02207{letter-spacing:0.092232px;}
.ls3_c02207{letter-spacing:0.098820px;}
.ls14_c02207{letter-spacing:0.111996px;}
.lsd_c02207{letter-spacing:0.131760px;}
.ls5_c02207{letter-spacing:0.164700px;}
.ls8_c02207{letter-spacing:0.181944px;}
.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;}
}
.ws8_c02207{word-spacing:-0.093600px;}
.ws1_c02207{word-spacing:-0.050400px;}
.ws3_c02207{word-spacing:-0.014400px;}
.ws7_c02207{word-spacing:-0.007200px;}
.ws0_c02207{word-spacing:0.000000px;}
.ws6_c02207{word-spacing:0.007200px;}
.ws2_c02207{word-spacing:0.014400px;}
.ws4_c02207{word-spacing:0.019764px;}
.ws12_c02207{word-spacing:0.032940px;}
.wsc_c02207{word-spacing:0.039528px;}
.ws2a_c02207{word-spacing:0.059292px;}
.ws26_c02207{word-spacing:0.072468px;}
.wsf_c02207{word-spacing:0.085644px;}
.ws1f_c02207{word-spacing:0.770796px;}
.ws20_c02207{word-spacing:2.233332px;}
.ws25_c02207{word-spacing:3.939624px;}
.ws24_c02207{word-spacing:3.992328px;}
.ws23_c02207{word-spacing:5.092524px;}
.ws22_c02207{word-spacing:6.838344px;}
.ws19_c02207{word-spacing:6.858108px;}
.ws1c_c02207{word-spacing:7.582788px;}
.wsa_c02207{word-spacing:7.609140px;}
.ws15_c02207{word-spacing:8.663220px;}
.wsd_c02207{word-spacing:8.669808px;}
.ws1d_c02207{word-spacing:9.737064px;}
.ws1e_c02207{word-spacing:9.809532px;}
.ws29_c02207{word-spacing:10.514448px;}
.ws18_c02207{word-spacing:11.225952px;}
.ws14_c02207{word-spacing:12.260268px;}
.ws27_c02207{word-spacing:14.757120px;}
.ws10_c02207{word-spacing:14.763708px;}
.ws11_c02207{word-spacing:14.796648px;}
.ws28_c02207{word-spacing:15.211692px;}
.ws13_c02207{word-spacing:15.850728px;}
.ws1a_c02207{word-spacing:16.239420px;}
.ws21_c02207{word-spacing:17.352792px;}
.wsb_c02207{word-spacing:24.184548px;}
.ws17_c02207{word-spacing:26.286120px;}
.ws16_c02207{word-spacing:26.338824px;}
.ws1b_c02207{word-spacing:31.398408px;}
.wse_c02207{word-spacing:35.700372px;}
.ws9_c02207{word-spacing:53.367048px;}
.ws5_c02207{word-spacing:276.406128px;}
._9_c02207{margin-left:-61.545096px;}
._13_c02207{margin-left:-11.879028px;}
._12_c02207{margin-left:-1.077300px;}
._14_c02207{width:1.284660px;}
._f_c02207{width:39.510720px;}
._e_c02207{width:40.590720px;}
._11_c02207{width:55.534464px;}
._0_c02207{width:65.407068px;}
._d_c02207{width:74.210472px;}
._3_c02207{width:96.810048px;}
._5_c02207{width:101.605680px;}
._1_c02207{width:115.338168px;}
._4_c02207{width:116.438220px;}
._2_c02207{width:129.525840px;}
._6_c02207{width:172.454076px;}
._8_c02207{width:264.271032px;}
._b_c02207{width:472.931400px;}
._7_c02207{width:572.055804px;}
._10_c02207{width:1467.740880px;}
._a_c02207{width:1791.288000px;}
._c_c02207{width:2236.521000px;}
.fc0_c02207{color:rgb(0,0,0);}
.fs1_c02207{font-size:29.880000px;}
.fs3_c02207{font-size:42.120000px;}
.fs5_c02207{font-size:47.880000px;}
.fs4_c02207{font-size:60.120000px;}
.fs2_c02207{font-size:65.880000px;}
.fs0_c02207{font-size:72.000000px;}
.y0_c02207{bottom:0.000000px;}
.y3_c02207{bottom:57.360450px;}
.y2_c02207{bottom:78.060450px;}
.y48_c02207{bottom:125.130450px;}
.y47_c02207{bottom:144.121215px;}
.y46_c02207{bottom:163.111125px;}
.y49_c02207{bottom:181.920450px;}
.y45_c02207{bottom:182.010450px;}
.y44_c02207{bottom:187.680450px;}
.y42_c02207{bottom:201.810450px;}
.y41_c02207{bottom:220.710600px;}
.y40_c02207{bottom:239.700630px;}
.y3f_c02207{bottom:258.690540px;}
.y43_c02207{bottom:277.590567px;}
.y3e_c02207{bottom:277.680450px;}
.y3d_c02207{bottom:283.350450px;}
.y3b_c02207{bottom:297.390450px;}
.y3a_c02207{bottom:316.380450px;}
.y39_c02207{bottom:335.370450px;}
.y38_c02207{bottom:354.270450px;}
.y37_c02207{bottom:372.450450px;}
.y36_c02207{bottom:387.121395px;}
.y35_c02207{bottom:406.020720px;}
.y34_c02207{bottom:425.010630px;}
.y33_c02207{bottom:444.000540px;}
.y3c_c02207{bottom:462.900774px;}
.y32_c02207{bottom:462.990450px;}
.y31_c02207{bottom:468.660450px;}
.y2f_c02207{bottom:482.700780px;}
.y2e_c02207{bottom:501.690690px;}
.y2d_c02207{bottom:520.680600px;}
.y2c_c02207{bottom:539.580450px;}
.y2b_c02207{bottom:558.570450px;}
.y2a_c02207{bottom:577.560450px;}
.y29_c02207{bottom:596.550450px;}
.y28_c02207{bottom:615.541125px;}
.y30_c02207{bottom:634.349952px;}
.y27_c02207{bottom:634.440450px;}
.y26_c02207{bottom:640.110450px;}
.y24_c02207{bottom:653.340450px;}
.y23_c02207{bottom:668.010540px;}
.y25_c02207{bottom:686.910450px;}
.y22_c02207{bottom:687.000450px;}
.y21_c02207{bottom:692.670450px;}
.y1f_c02207{bottom:705.810450px;}
.y1e_c02207{bottom:720.480630px;}
.y1d_c02207{bottom:739.470540px;}
.y20_c02207{bottom:758.370450px;}
.y1c_c02207{bottom:758.460450px;}
.y1b_c02207{bottom:764.130450px;}
.y18_c02207{bottom:777.360600px;}
.y17_c02207{bottom:791.940630px;}
.y1a_c02207{bottom:810.840540px;}
.y16_c02207{bottom:810.930540px;}
.y19_c02207{bottom:829.830450px;}
.y15_c02207{bottom:829.920450px;}
.y14_c02207{bottom:835.590450px;}
.y13_c02207{bottom:855.120450px;}
.y12_c02207{bottom:869.520450px;}
.y11_c02207{bottom:891.030450px;}
.y10_c02207{bottom:911.730450px;}
.yf_c02207{bottom:933.150450px;}
.ye_c02207{bottom:954.570450px;}
.yd_c02207{bottom:976.080450px;}
.yc_c02207{bottom:997.500450px;}
.yb_c02207{bottom:1018.740450px;}
.ya_c02207{bottom:1038.360450px;}
.y9_c02207{bottom:1058.430450px;}
.y8_c02207{bottom:1079.130450px;}
.y7_c02207{bottom:1100.550450px;}
.y6_c02207{bottom:1119.180648px;}
.y5_c02207{bottom:1127.820450px;}
.y4_c02207{bottom:1139.250450px;}
.y1_c02207{bottom:1193.160450px;}
.h3_c02207{height:26.217949px;}
.h7_c02207{height:36.957832px;}
.h6_c02207{height:37.410293px;}
.h8_c02207{height:42.011895px;}
.h5_c02207{height:57.805840px;}
.h4_c02207{height:58.513535px;}
.h2_c02207{height:63.175781px;}
.h1_c02207{height:63.949219px;}
.h0_c02207{height:1263.000000px;}
.w1_c02207{width:892.500000px;}
.w0_c02207{width:892.830000px;}
.x0_c02207{left:0.000000px;}
.x8_c02207{left:117.000000px;}
.x1_c02207{left:127.620000px;}
.x3_c02207{left:135.630000px;}
.x6_c02207{left:137.520000px;}
.x4_c02207{left:246.960000px;}
.x5_c02207{left:249.930000px;}
.x9_c02207{left:274.140000px;}
.x7_c02207{left:335.160000px;}
.x2_c02207{left:433.080000px;}
.xa_c02207{left:721.980000px;}
.xb_c02207{left:739.800540px;}
@media print{
.v2_c02207{vertical-align:-19.839467pt;}
.v1_c02207{vertical-align:-15.040000pt;}
.v3_c02207{vertical-align:-4.800000pt;}
.v0_c02207{vertical-align:0.000000pt;}
.ls1d_c02207{letter-spacing:-0.160992pt;}
.ls1c_c02207{letter-spacing:-0.160320pt;}
.ls1b_c02207{letter-spacing:-0.157248pt;}
.ls1a_c02207{letter-spacing:-0.076800pt;}
.ls18_c02207{letter-spacing:-0.029280pt;}
.ls16_c02207{letter-spacing:-0.012800pt;}
.ls17_c02207{letter-spacing:-0.011712pt;}
.ls19_c02207{letter-spacing:-0.006400pt;}
.ls15_c02207{letter-spacing:0.000000pt;}
.lsc_c02207{letter-spacing:0.005856pt;}
.ls6_c02207{letter-spacing:0.006400pt;}
.ls11_c02207{letter-spacing:0.011712pt;}
.ls0_c02207{letter-spacing:0.012800pt;}
.ls4_c02207{letter-spacing:0.017568pt;}
.ls9_c02207{letter-spacing:0.023424pt;}
.ls10_c02207{letter-spacing:0.029280pt;}
.ls2_c02207{letter-spacing:0.035136pt;}
.ls7_c02207{letter-spacing:0.044800pt;}
.lsa_c02207{letter-spacing:0.046848pt;}
.lsb_c02207{letter-spacing:0.052704pt;}
.ls12_c02207{letter-spacing:0.058560pt;}
.ls1_c02207{letter-spacing:0.064416pt;}
.lsf_c02207{letter-spacing:0.070272pt;}
.lse_c02207{letter-spacing:0.076128pt;}
.ls13_c02207{letter-spacing:0.081984pt;}
.ls3_c02207{letter-spacing:0.087840pt;}
.ls14_c02207{letter-spacing:0.099552pt;}
.lsd_c02207{letter-spacing:0.117120pt;}
.ls5_c02207{letter-spacing:0.146400pt;}
.ls8_c02207{letter-spacing:0.161728pt;}
.ws8_c02207{word-spacing:-0.083200pt;}
.ws1_c02207{word-spacing:-0.044800pt;}
.ws3_c02207{word-spacing:-0.012800pt;}
.ws7_c02207{word-spacing:-0.006400pt;}
.ws0_c02207{word-spacing:0.000000pt;}
.ws6_c02207{word-spacing:0.006400pt;}
.ws2_c02207{word-spacing:0.012800pt;}
.ws4_c02207{word-spacing:0.017568pt;}
.ws12_c02207{word-spacing:0.029280pt;}
.wsc_c02207{word-spacing:0.035136pt;}
.ws2a_c02207{word-spacing:0.052704pt;}
.ws26_c02207{word-spacing:0.064416pt;}
.wsf_c02207{word-spacing:0.076128pt;}
.ws1f_c02207{word-spacing:0.685152pt;}
.ws20_c02207{word-spacing:1.985184pt;}
.ws25_c02207{word-spacing:3.501888pt;}
.ws24_c02207{word-spacing:3.548736pt;}
.ws23_c02207{word-spacing:4.526688pt;}
.ws22_c02207{word-spacing:6.078528pt;}
.ws19_c02207{word-spacing:6.096096pt;}
.ws1c_c02207{word-spacing:6.740256pt;}
.wsa_c02207{word-spacing:6.763680pt;}
.ws15_c02207{word-spacing:7.700640pt;}
.wsd_c02207{word-spacing:7.706496pt;}
.ws1d_c02207{word-spacing:8.655168pt;}
.ws1e_c02207{word-spacing:8.719584pt;}
.ws29_c02207{word-spacing:9.346176pt;}
.ws18_c02207{word-spacing:9.978624pt;}
.ws14_c02207{word-spacing:10.898016pt;}
.ws27_c02207{word-spacing:13.117440pt;}
.ws10_c02207{word-spacing:13.123296pt;}
.ws11_c02207{word-spacing:13.152576pt;}
.ws28_c02207{word-spacing:13.521504pt;}
.ws13_c02207{word-spacing:14.089536pt;}
.ws1a_c02207{word-spacing:14.435040pt;}
.ws21_c02207{word-spacing:15.424704pt;}
.wsb_c02207{word-spacing:21.497376pt;}
.ws17_c02207{word-spacing:23.365440pt;}
.ws16_c02207{word-spacing:23.412288pt;}
.ws1b_c02207{word-spacing:27.909696pt;}
.wse_c02207{word-spacing:31.733664pt;}
.ws9_c02207{word-spacing:47.437376pt;}
.ws5_c02207{word-spacing:245.694336pt;}
._9_c02207{margin-left:-54.706752pt;}
._13_c02207{margin-left:-10.559136pt;}
._12_c02207{margin-left:-0.957600pt;}
._14_c02207{width:1.141920pt;}
._f_c02207{width:35.120640pt;}
._e_c02207{width:36.080640pt;}
._11_c02207{width:49.363968pt;}
._0_c02207{width:58.139616pt;}
._d_c02207{width:65.964864pt;}
._3_c02207{width:86.053376pt;}
._5_c02207{width:90.316160pt;}
._1_c02207{width:102.522816pt;}
._4_c02207{width:103.500640pt;}
._2_c02207{width:115.134080pt;}
._6_c02207{width:153.292512pt;}
._8_c02207{width:234.907584pt;}
._b_c02207{width:420.383467pt;}
._7_c02207{width:508.494048pt;}
._10_c02207{width:1304.658560pt;}
._a_c02207{width:1592.256000pt;}
._c_c02207{width:1988.018667pt;}
.fs1_c02207{font-size:26.560000pt;}
.fs3_c02207{font-size:37.440000pt;}
.fs5_c02207{font-size:42.560000pt;}
.fs4_c02207{font-size:53.440000pt;}
.fs2_c02207{font-size:58.560000pt;}
.fs0_c02207{font-size:64.000000pt;}
.y0_c02207{bottom:0.000000pt;}
.y3_c02207{bottom:50.987067pt;}
.y2_c02207{bottom:69.387067pt;}
.y48_c02207{bottom:111.227067pt;}
.y47_c02207{bottom:128.107747pt;}
.y46_c02207{bottom:144.987667pt;}
.y49_c02207{bottom:161.707067pt;}
.y45_c02207{bottom:161.787067pt;}
.y44_c02207{bottom:166.827067pt;}
.y42_c02207{bottom:179.387067pt;}
.y41_c02207{bottom:196.187200pt;}
.y40_c02207{bottom:213.067227pt;}
.y3f_c02207{bottom:229.947147pt;}
.y43_c02207{bottom:246.747171pt;}
.y3e_c02207{bottom:246.827067pt;}
.y3d_c02207{bottom:251.867067pt;}
.y3b_c02207{bottom:264.347067pt;}
.y3a_c02207{bottom:281.227067pt;}
.y39_c02207{bottom:298.107067pt;}
.y38_c02207{bottom:314.907067pt;}
.y37_c02207{bottom:331.067067pt;}
.y36_c02207{bottom:344.107907pt;}
.y35_c02207{bottom:360.907307pt;}
.y34_c02207{bottom:377.787227pt;}
.y33_c02207{bottom:394.667147pt;}
.y3c_c02207{bottom:411.467355pt;}
.y32_c02207{bottom:411.547067pt;}
.y31_c02207{bottom:416.587067pt;}
.y2f_c02207{bottom:429.067360pt;}
.y2e_c02207{bottom:445.947280pt;}
.y2d_c02207{bottom:462.827200pt;}
.y2c_c02207{bottom:479.627067pt;}
.y2b_c02207{bottom:496.507067pt;}
.y2a_c02207{bottom:513.387067pt;}
.y29_c02207{bottom:530.267067pt;}
.y28_c02207{bottom:547.147667pt;}
.y30_c02207{bottom:563.866624pt;}
.y27_c02207{bottom:563.947067pt;}
.y26_c02207{bottom:568.987067pt;}
.y24_c02207{bottom:580.747067pt;}
.y23_c02207{bottom:593.787147pt;}
.y25_c02207{bottom:610.587067pt;}
.y22_c02207{bottom:610.667067pt;}
.y21_c02207{bottom:615.707067pt;}
.y1f_c02207{bottom:627.387067pt;}
.y1e_c02207{bottom:640.427227pt;}
.y1d_c02207{bottom:657.307147pt;}
.y20_c02207{bottom:674.107067pt;}
.y1c_c02207{bottom:674.187067pt;}
.y1b_c02207{bottom:679.227067pt;}
.y18_c02207{bottom:690.987200pt;}
.y17_c02207{bottom:703.947227pt;}
.y1a_c02207{bottom:720.747147pt;}
.y16_c02207{bottom:720.827147pt;}
.y19_c02207{bottom:737.627067pt;}
.y15_c02207{bottom:737.707067pt;}
.y14_c02207{bottom:742.747067pt;}
.y13_c02207{bottom:760.107067pt;}
.y12_c02207{bottom:772.907067pt;}
.y11_c02207{bottom:792.027067pt;}
.y10_c02207{bottom:810.427067pt;}
.yf_c02207{bottom:829.467067pt;}
.ye_c02207{bottom:848.507067pt;}
.yd_c02207{bottom:867.627067pt;}
.yc_c02207{bottom:886.667067pt;}
.yb_c02207{bottom:905.547067pt;}
.ya_c02207{bottom:922.987067pt;}
.y9_c02207{bottom:940.827067pt;}
.y8_c02207{bottom:959.227067pt;}
.y7_c02207{bottom:978.267067pt;}
.y6_c02207{bottom:994.827243pt;}
.y5_c02207{bottom:1002.507067pt;}
.y4_c02207{bottom:1012.667067pt;}
.y1_c02207{bottom:1060.587067pt;}
.h3_c02207{height:23.304844pt;}
.h7_c02207{height:32.851406pt;}
.h6_c02207{height:33.253594pt;}
.h8_c02207{height:37.343906pt;}
.h5_c02207{height:51.382969pt;}
.h4_c02207{height:52.012031pt;}
.h2_c02207{height:56.156250pt;}
.h1_c02207{height:56.843750pt;}
.h0_c02207{height:1122.666667pt;}
.w1_c02207{width:793.333333pt;}
.w0_c02207{width:793.626667pt;}
.x0_c02207{left:0.000000pt;}
.x8_c02207{left:104.000000pt;}
.x1_c02207{left:113.440000pt;}
.x3_c02207{left:120.560000pt;}
.x6_c02207{left:122.240000pt;}
.x4_c02207{left:219.520000pt;}
.x5_c02207{left:222.160000pt;}
.x9_c02207{left:243.680000pt;}
.x7_c02207{left:297.920000pt;}
.x2_c02207{left:384.960000pt;}
.xa_c02207{left:641.760000pt;}
.xb_c02207{left:657.600480pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2649f567b5b39f73b59e3432.woff2')format("woff");}.ff1_c02208{font-family:ff1_c02208;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02208;src:url('chunks/assets/font_ed469d72166b6da3a52f5281.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;}
.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);}
.v2_c02208{vertical-align:-22.320000px;}
.v1_c02208{vertical-align:-16.919400px;}
.v3_c02208{vertical-align:-5.400000px;}
.v0_c02208{vertical-align:0.000000px;}
.ls12_c02208{letter-spacing:-0.181116px;}
.ls10_c02208{letter-spacing:-0.180360px;}
.lsf_c02208{letter-spacing:-0.176904px;}
.ls11_c02208{letter-spacing:-0.032940px;}
.lsd_c02208{letter-spacing:0.000000px;}
.lse_c02208{letter-spacing:0.007200px;}
.ls2_c02208{letter-spacing:0.013176px;}
.ls8_c02208{letter-spacing:0.026352px;}
.lsc_c02208{letter-spacing:0.032940px;}
.ls9_c02208{letter-spacing:0.039528px;}
.ls3_c02208{letter-spacing:0.046116px;}
.ls4_c02208{letter-spacing:0.052704px;}
.ls7_c02208{letter-spacing:0.059292px;}
.ls6_c02208{letter-spacing:0.065880px;}
.ls0_c02208{letter-spacing:0.072468px;}
.lsa_c02208{letter-spacing:0.079056px;}
.ls13_c02208{letter-spacing:0.085644px;}
.lsb_c02208{letter-spacing:0.105408px;}
.ls5_c02208{letter-spacing:0.131760px;}
.ls1_c02208{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02208{word-spacing:-0.050400px;}
.ws0_c02208{word-spacing:0.000000px;}
.ws1e_c02208{word-spacing:0.013176px;}
.ws7_c02208{word-spacing:0.019764px;}
.ws1f_c02208{word-spacing:0.032940px;}
.ws1a_c02208{word-spacing:0.039528px;}
.wse_c02208{word-spacing:0.046116px;}
.wsc_c02208{word-spacing:0.052704px;}
.ws6_c02208{word-spacing:2.556144px;}
.wsd_c02208{word-spacing:2.595672px;}
.ws10_c02208{word-spacing:3.649752px;}
.ws5_c02208{word-spacing:4.717008px;}
.ws14_c02208{word-spacing:5.059584px;}
.ws1c_c02208{word-spacing:6.489180px;}
.ws1d_c02208{word-spacing:6.522120px;}
.ws2c_c02208{word-spacing:6.528708px;}
.ws16_c02208{word-spacing:7.569612px;}
.ws17_c02208{word-spacing:7.582788px;}
.ws27_c02208{word-spacing:8.696160px;}
.ws29_c02208{word-spacing:9.025560px;}
.ws20_c02208{word-spacing:10.488096px;}
.ws15_c02208{word-spacing:11.561940px;}
.ws26_c02208{word-spacing:11.930868px;}
.wsa_c02208{word-spacing:13.380228px;}
.ws12_c02208{word-spacing:15.462036px;}
.ws11_c02208{word-spacing:15.494976px;}
.ws23_c02208{word-spacing:16.608348px;}
.ws24_c02208{word-spacing:16.931160px;}
.ws13_c02208{word-spacing:17.662428px;}
.wsf_c02208{word-spacing:19.092024px;}
.ws19_c02208{word-spacing:22.326732px;}
.ws18_c02208{word-spacing:22.366260px;}
.ws28_c02208{word-spacing:25.264980px;}
.ws2b_c02208{word-spacing:25.620732px;}
.ws1b_c02208{word-spacing:28.822500px;}
.ws21_c02208{word-spacing:28.855440px;}
.wsb_c02208{word-spacing:29.237544px;}
.ws4_c02208{word-spacing:33.526332px;}
.ws3_c02208{word-spacing:33.559272px;}
.ws22_c02208{word-spacing:34.244424px;}
.ws25_c02208{word-spacing:34.962516px;}
.ws2a_c02208{word-spacing:42.163200px;}
.ws2_c02208{word-spacing:53.367048px;}
.ws8_c02208{word-spacing:56.907144px;}
.ws9_c02208{word-spacing:56.913732px;}
._6_c02208{margin-left:-11.879028px;}
._5_c02208{margin-left:-1.077300px;}
._7_c02208{width:1.146312px;}
._2_c02208{width:39.510720px;}
._1_c02208{width:40.590720px;}
._4_c02208{width:55.534464px;}
._0_c02208{width:74.210472px;}
._3_c02208{width:1467.740880px;}
.fc0_c02208{color:rgb(0,0,0);}
.fs1_c02208{font-size:42.120000px;}
.fs4_c02208{font-size:47.880000px;}
.fs5_c02208{font-size:54.000000px;}
.fs2_c02208{font-size:60.120000px;}
.fs3_c02208{font-size:65.880000px;}
.fs0_c02208{font-size:72.000000px;}
.y0_c02208{bottom:0.000000px;}
.y3_c02208{bottom:57.360450px;}
.y2_c02208{bottom:78.060450px;}
.y43_c02208{bottom:124.140450px;}
.y42_c02208{bottom:144.840450px;}
.y41_c02208{bottom:165.540450px;}
.y40_c02208{bottom:186.240450px;}
.y3f_c02208{bottom:206.940450px;}
.y3e_c02208{bottom:226.560450px;}
.y3d_c02208{bottom:243.030600px;}
.y3b_c02208{bottom:264.273555px;}
.y3a_c02208{bottom:283.172880px;}
.y39_c02208{bottom:302.162790px;}
.y38_c02208{bottom:321.152700px;}
.y37_c02208{bottom:340.142610px;}
.y36_c02208{bottom:359.132520px;}
.y35_c02208{bottom:378.122430px;}
.y34_c02208{bottom:397.021755px;}
.y33_c02208{bottom:416.011665px;}
.y32_c02208{bottom:435.001575px;}
.y31_c02208{bottom:453.991485px;}
.y30_c02208{bottom:472.981395px;}
.y2f_c02208{bottom:491.880720px;}
.y2e_c02208{bottom:510.870630px;}
.y2d_c02208{bottom:529.860540px;}
.y3c_c02208{bottom:548.763159px;}
.y2c_c02208{bottom:548.850450px;}
.y2b_c02208{bottom:554.520450px;}
.y29_c02208{bottom:568.561305px;}
.y28_c02208{bottom:587.551215px;}
.y27_c02208{bottom:606.541125px;}
.y2a_c02208{bottom:625.351512px;}
.y26_c02208{bottom:625.440450px;}
.y25_c02208{bottom:631.110450px;}
.y23_c02208{bottom:645.241305px;}
.y22_c02208{bottom:664.140630px;}
.y21_c02208{bottom:683.130540px;}
.y20_c02208{bottom:702.120450px;}
.y1f_c02208{bottom:721.110450px;}
.y1e_c02208{bottom:740.101305px;}
.y1d_c02208{bottom:759.091215px;}
.y1c_c02208{bottom:777.990540px;}
.y24_c02208{bottom:796.892124px;}
.y1b_c02208{bottom:796.980450px;}
.y1a_c02208{bottom:802.650450px;}
.y18_c02208{bottom:816.692610px;}
.y17_c02208{bottom:835.682520px;}
.y16_c02208{bottom:854.672430px;}
.y15_c02208{bottom:873.662340px;}
.y14_c02208{bottom:892.652250px;}
.y13_c02208{bottom:911.551575px;}
.y12_c02208{bottom:930.541485px;}
.y11_c02208{bottom:949.531395px;}
.y10_c02208{bottom:968.521305px;}
.yf_c02208{bottom:987.511215px;}
.ye_c02208{bottom:1006.410540px;}
.y19_c02208{bottom:1025.313159px;}
.yd_c02208{bottom:1025.400450px;}
.yc_c02208{bottom:1031.070450px;}
.ya_c02208{bottom:1045.110540px;}
.y9_c02208{bottom:1064.100450px;}
.y8_c02208{bottom:1083.090450px;}
.y7_c02208{bottom:1102.080540px;}
.yb_c02208{bottom:1120.981242px;}
.y6_c02208{bottom:1121.070450px;}
.y5_c02208{bottom:1126.740450px;}
.y4_c02208{bottom:1146.270450px;}
.y1_c02208{bottom:1193.160450px;}
.h4_c02208{height:36.957832px;}
.h3_c02208{height:37.410293px;}
.h7_c02208{height:47.961914px;}
.h5_c02208{height:57.805840px;}
.h6_c02208{height:58.513535px;}
.h2_c02208{height:63.175781px;}
.h1_c02208{height:63.949219px;}
.h0_c02208{height:1263.000000px;}
.w1_c02208{width:892.500000px;}
.w0_c02208{width:892.830000px;}
.x0_c02208{left:0.000000px;}
.x6_c02208{left:117.000000px;}
.x1_c02208{left:127.620000px;}
.x3_c02208{left:135.630000px;}
.x4_c02208{left:274.140000px;}
.x2_c02208{left:433.080000px;}
.x5_c02208{left:721.980711px;}
@media print{
.v2_c02208{vertical-align:-19.840000pt;}
.v1_c02208{vertical-align:-15.039467pt;}
.v3_c02208{vertical-align:-4.800000pt;}
.v0_c02208{vertical-align:0.000000pt;}
.ls12_c02208{letter-spacing:-0.160992pt;}
.ls10_c02208{letter-spacing:-0.160320pt;}
.lsf_c02208{letter-spacing:-0.157248pt;}
.ls11_c02208{letter-spacing:-0.029280pt;}
.lsd_c02208{letter-spacing:0.000000pt;}
.lse_c02208{letter-spacing:0.006400pt;}
.ls2_c02208{letter-spacing:0.011712pt;}
.ls8_c02208{letter-spacing:0.023424pt;}
.lsc_c02208{letter-spacing:0.029280pt;}
.ls9_c02208{letter-spacing:0.035136pt;}
.ls3_c02208{letter-spacing:0.040992pt;}
.ls4_c02208{letter-spacing:0.046848pt;}
.ls7_c02208{letter-spacing:0.052704pt;}
.ls6_c02208{letter-spacing:0.058560pt;}
.ls0_c02208{letter-spacing:0.064416pt;}
.lsa_c02208{letter-spacing:0.070272pt;}
.ls13_c02208{letter-spacing:0.076128pt;}
.lsb_c02208{letter-spacing:0.093696pt;}
.ls5_c02208{letter-spacing:0.117120pt;}
.ls1_c02208{letter-spacing:0.161728pt;}
.ws1_c02208{word-spacing:-0.044800pt;}
.ws0_c02208{word-spacing:0.000000pt;}
.ws1e_c02208{word-spacing:0.011712pt;}
.ws7_c02208{word-spacing:0.017568pt;}
.ws1f_c02208{word-spacing:0.029280pt;}
.ws1a_c02208{word-spacing:0.035136pt;}
.wse_c02208{word-spacing:0.040992pt;}
.wsc_c02208{word-spacing:0.046848pt;}
.ws6_c02208{word-spacing:2.272128pt;}
.wsd_c02208{word-spacing:2.307264pt;}
.ws10_c02208{word-spacing:3.244224pt;}
.ws5_c02208{word-spacing:4.192896pt;}
.ws14_c02208{word-spacing:4.497408pt;}
.ws1c_c02208{word-spacing:5.768160pt;}
.ws1d_c02208{word-spacing:5.797440pt;}
.ws2c_c02208{word-spacing:5.803296pt;}
.ws16_c02208{word-spacing:6.728544pt;}
.ws17_c02208{word-spacing:6.740256pt;}
.ws27_c02208{word-spacing:7.729920pt;}
.ws29_c02208{word-spacing:8.022720pt;}
.ws20_c02208{word-spacing:9.322752pt;}
.ws15_c02208{word-spacing:10.277280pt;}
.ws26_c02208{word-spacing:10.605216pt;}
.wsa_c02208{word-spacing:11.893536pt;}
.ws12_c02208{word-spacing:13.744032pt;}
.ws11_c02208{word-spacing:13.773312pt;}
.ws23_c02208{word-spacing:14.762976pt;}
.ws24_c02208{word-spacing:15.049920pt;}
.ws13_c02208{word-spacing:15.699936pt;}
.wsf_c02208{word-spacing:16.970688pt;}
.ws19_c02208{word-spacing:19.845984pt;}
.ws18_c02208{word-spacing:19.881120pt;}
.ws28_c02208{word-spacing:22.457760pt;}
.ws2b_c02208{word-spacing:22.773984pt;}
.ws1b_c02208{word-spacing:25.620000pt;}
.ws21_c02208{word-spacing:25.649280pt;}
.wsb_c02208{word-spacing:25.988928pt;}
.ws4_c02208{word-spacing:29.801184pt;}
.ws3_c02208{word-spacing:29.830464pt;}
.ws22_c02208{word-spacing:30.439488pt;}
.ws25_c02208{word-spacing:31.077792pt;}
.ws2a_c02208{word-spacing:37.478400pt;}
.ws2_c02208{word-spacing:47.437376pt;}
.ws8_c02208{word-spacing:50.584128pt;}
.ws9_c02208{word-spacing:50.589984pt;}
._6_c02208{margin-left:-10.559136pt;}
._5_c02208{margin-left:-0.957600pt;}
._7_c02208{width:1.018944pt;}
._2_c02208{width:35.120640pt;}
._1_c02208{width:36.080640pt;}
._4_c02208{width:49.363968pt;}
._0_c02208{width:65.964864pt;}
._3_c02208{width:1304.658560pt;}
.fs1_c02208{font-size:37.440000pt;}
.fs4_c02208{font-size:42.560000pt;}
.fs5_c02208{font-size:48.000000pt;}
.fs2_c02208{font-size:53.440000pt;}
.fs3_c02208{font-size:58.560000pt;}
.fs0_c02208{font-size:64.000000pt;}
.y0_c02208{bottom:0.000000pt;}
.y3_c02208{bottom:50.987067pt;}
.y2_c02208{bottom:69.387067pt;}
.y43_c02208{bottom:110.347067pt;}
.y42_c02208{bottom:128.747067pt;}
.y41_c02208{bottom:147.147067pt;}
.y40_c02208{bottom:165.547067pt;}
.y3f_c02208{bottom:183.947067pt;}
.y3e_c02208{bottom:201.387067pt;}
.y3d_c02208{bottom:216.027200pt;}
.y3b_c02208{bottom:234.909827pt;}
.y3a_c02208{bottom:251.709227pt;}
.y39_c02208{bottom:268.589147pt;}
.y38_c02208{bottom:285.469067pt;}
.y37_c02208{bottom:302.348987pt;}
.y36_c02208{bottom:319.228907pt;}
.y35_c02208{bottom:336.108827pt;}
.y34_c02208{bottom:352.908227pt;}
.y33_c02208{bottom:369.788147pt;}
.y32_c02208{bottom:386.668067pt;}
.y31_c02208{bottom:403.547987pt;}
.y30_c02208{bottom:420.427907pt;}
.y2f_c02208{bottom:437.227307pt;}
.y2e_c02208{bottom:454.107227pt;}
.y2d_c02208{bottom:470.987147pt;}
.y3c_c02208{bottom:487.789475pt;}
.y2c_c02208{bottom:487.867067pt;}
.y2b_c02208{bottom:492.907067pt;}
.y29_c02208{bottom:505.387827pt;}
.y28_c02208{bottom:522.267747pt;}
.y27_c02208{bottom:539.147667pt;}
.y2a_c02208{bottom:555.868011pt;}
.y26_c02208{bottom:555.947067pt;}
.y25_c02208{bottom:560.987067pt;}
.y23_c02208{bottom:573.547827pt;}
.y22_c02208{bottom:590.347227pt;}
.y21_c02208{bottom:607.227147pt;}
.y20_c02208{bottom:624.107067pt;}
.y1f_c02208{bottom:640.987067pt;}
.y1e_c02208{bottom:657.867827pt;}
.y1d_c02208{bottom:674.747747pt;}
.y1c_c02208{bottom:691.547147pt;}
.y24_c02208{bottom:708.348555pt;}
.y1b_c02208{bottom:708.427067pt;}
.y1a_c02208{bottom:713.467067pt;}
.y18_c02208{bottom:725.948987pt;}
.y17_c02208{bottom:742.828907pt;}
.y16_c02208{bottom:759.708827pt;}
.y15_c02208{bottom:776.588747pt;}
.y14_c02208{bottom:793.468667pt;}
.y13_c02208{bottom:810.268067pt;}
.y12_c02208{bottom:827.147987pt;}
.y11_c02208{bottom:844.027907pt;}
.y10_c02208{bottom:860.907827pt;}
.yf_c02208{bottom:877.787747pt;}
.ye_c02208{bottom:894.587147pt;}
.y19_c02208{bottom:911.389475pt;}
.yd_c02208{bottom:911.467067pt;}
.yc_c02208{bottom:916.507067pt;}
.ya_c02208{bottom:928.987147pt;}
.y9_c02208{bottom:945.867067pt;}
.y8_c02208{bottom:962.747067pt;}
.y7_c02208{bottom:979.627147pt;}
.yb_c02208{bottom:996.427771pt;}
.y6_c02208{bottom:996.507067pt;}
.y5_c02208{bottom:1001.547067pt;}
.y4_c02208{bottom:1018.907067pt;}
.y1_c02208{bottom:1060.587067pt;}
.h4_c02208{height:32.851406pt;}
.h3_c02208{height:33.253594pt;}
.h7_c02208{height:42.632812pt;}
.h5_c02208{height:51.382969pt;}
.h6_c02208{height:52.012031pt;}
.h2_c02208{height:56.156250pt;}
.h1_c02208{height:56.843750pt;}
.h0_c02208{height:1122.666667pt;}
.w1_c02208{width:793.333333pt;}
.w0_c02208{width:793.626667pt;}
.x0_c02208{left:0.000000pt;}
.x6_c02208{left:104.000000pt;}
.x1_c02208{left:113.440000pt;}
.x3_c02208{left:120.560000pt;}
.x4_c02208{left:243.680000pt;}
.x2_c02208{left:384.960000pt;}
.x5_c02208{left:641.760632pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77436f80f2a0cdabf96194c7.woff2')format("woff");}.ff1_c02209{font-family:ff1_c02209;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02209;src:url('chunks/assets/font_974a9920b9001fbc80f74744.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02209{font-family:ff3_c02209;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_c02209;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02209{font-family:ff4_c02209;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:ff5_c02209;src:url('chunks/assets/font_fccbbd0c52f55fe0af990ba3.woff2')format("woff");}.ff5_c02209{font-family:ff5_c02209;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_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;}
.v2_c02209{vertical-align:1.080000px;}
.v1_c02209{vertical-align:16.560000px;}
.ls1f_c02209{letter-spacing:-0.090972px;}
.ls18_c02209{letter-spacing:-0.050400px;}
.ls17_c02209{letter-spacing:-0.036000px;}
.ls19_c02209{letter-spacing:-0.021600px;}
.ls15_c02209{letter-spacing:-0.014400px;}
.ls1b_c02209{letter-spacing:-0.014364px;}
.ls16_c02209{letter-spacing:-0.007200px;}
.ls21_c02209{letter-spacing:-0.006588px;}
.ls1c_c02209{letter-spacing:-0.004788px;}
.ls13_c02209{letter-spacing:0.000000px;}
.ls9_c02209{letter-spacing:0.006588px;}
.ls14_c02209{letter-spacing:0.007200px;}
.ls6_c02209{letter-spacing:0.014400px;}
.ls4_c02209{letter-spacing:0.021600px;}
.ls11_c02209{letter-spacing:0.026352px;}
.ls1_c02209{letter-spacing:0.028800px;}
.ls10_c02209{letter-spacing:0.032940px;}
.ls0_c02209{letter-spacing:0.036000px;}
.lsf_c02209{letter-spacing:0.046116px;}
.ls3_c02209{letter-spacing:0.050400px;}
.lse_c02209{letter-spacing:0.052704px;}
.ls5_c02209{letter-spacing:0.057600px;}
.ls2_c02209{letter-spacing:0.064800px;}
.ls8_c02209{letter-spacing:0.065880px;}
.ls7_c02209{letter-spacing:0.079056px;}
.ls20_c02209{letter-spacing:0.092232px;}
.ls1a_c02209{letter-spacing:0.115200px;}
.lsa_c02209{letter-spacing:0.129276px;}
.ls1d_c02209{letter-spacing:0.177876px;}
.lsb_c02209{letter-spacing:0.181944px;}
.lsd_c02209{letter-spacing:0.239400px;}
.ls1e_c02209{letter-spacing:0.447984px;}
.lsc_c02209{letter-spacing:166.596264px;}
.ls12_c02209{letter-spacing:314.731332px;}
.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;}
}
.ws2_c02209{word-spacing:-47.880000px;}
.ws1_c02209{word-spacing:-18.115200px;}
.ws0_c02209{word-spacing:-18.000000px;}
.ws19_c02209{word-spacing:-0.272916px;}
.ws18_c02209{word-spacing:-0.220248px;}
.ws4_c02209{word-spacing:-0.050400px;}
.ws5_c02209{word-spacing:-0.007200px;}
.ws3_c02209{word-spacing:0.000000px;}
.ws6_c02209{word-spacing:0.014400px;}
.ws16_c02209{word-spacing:0.026352px;}
.ws10_c02209{word-spacing:0.036000px;}
.ws1a_c02209{word-spacing:0.039528px;}
.ws1b_c02209{word-spacing:0.046116px;}
.ws1c_c02209{word-spacing:0.059292px;}
.ws1d_c02209{word-spacing:0.065880px;}
.ws17_c02209{word-spacing:0.085644px;}
.ws1f_c02209{word-spacing:0.098820px;}
.ws1e_c02209{word-spacing:0.447984px;}
.wsd_c02209{word-spacing:2.095200px;}
.wsc_c02209{word-spacing:2.181600px;}
.wse_c02209{word-spacing:5.644800px;}
.ws15_c02209{word-spacing:5.745600px;}
.wsf_c02209{word-spacing:5.767200px;}
.ws11_c02209{word-spacing:7.538400px;}
.ws12_c02209{word-spacing:7.545600px;}
.wsb_c02209{word-spacing:10.764000px;}
.wsa_c02209{word-spacing:13.593600px;}
.ws7_c02209{word-spacing:13.644000px;}
.ws9_c02209{word-spacing:13.651200px;}
.ws8_c02209{word-spacing:13.680000px;}
.ws13_c02209{word-spacing:24.782400px;}
.ws14_c02209{word-spacing:24.861600px;}
._0_c02209{margin-left:-1.281600px;}
._2_c02209{width:1.245132px;}
._d_c02209{width:53.405136px;}
._4_c02209{width:87.036372px;}
._3_c02209{width:119.683692px;}
._c_c02209{width:251.440416px;}
._9_c02209{width:357.731208px;}
._a_c02209{width:428.644440px;}
._7_c02209{width:448.487496px;}
._1_c02209{width:551.547072px;}
._6_c02209{width:644.612256px;}
._8_c02209{width:674.192376px;}
._5_c02209{width:976.370760px;}
._b_c02209{width:1147.513824px;}
.fc1_c02209{color:rgb(0,0,255);}
.fc0_c02209{color:rgb(0,0,0);}
.fs3_c02209{font-size:2.880000px;}
.fs1_c02209{font-size:47.880000px;}
.fs2_c02209{font-size:65.880000px;}
.fs0_c02209{font-size:72.000000px;}
.y0_c02209{bottom:0.000000px;}
.y3_c02209{bottom:57.360450px;}
.y2_c02209{bottom:78.060450px;}
.y35_c02209{bottom:117.750450px;}
.y34_c02209{bottom:138.450450px;}
.y33_c02209{bottom:159.150450px;}
.y32_c02209{bottom:179.850450px;}
.y31_c02209{bottom:200.550450px;}
.y30_c02209{bottom:221.250450px;}
.y2f_c02209{bottom:241.950450px;}
.y2e_c02209{bottom:262.650450px;}
.y2d_c02209{bottom:283.350450px;}
.y2c_c02209{bottom:304.050450px;}
.y2b_c02209{bottom:324.750450px;}
.y2a_c02209{bottom:345.450450px;}
.y29_c02209{bottom:366.150450px;}
.y28_c02209{bottom:386.850450px;}
.y27_c02209{bottom:407.550450px;}
.y26_c02209{bottom:424.470450px;}
.y25_c02209{bottom:428.880450px;}
.y24_c02209{bottom:448.590600px;}
.y23_c02209{bottom:468.390450px;}
.y22_c02209{bottom:488.100450px;}
.y21_c02209{bottom:507.810450px;}
.y20_c02209{bottom:527.520450px;}
.y1f_c02209{bottom:547.230450px;}
.y1e_c02209{bottom:566.940450px;}
.y1d_c02209{bottom:586.740450px;}
.y1c_c02209{bottom:606.450450px;}
.y18_c02209{bottom:626.160450px;}
.y1b_c02209{bottom:640.650450px;}
.y17_c02209{bottom:645.150450px;}
.y1a_c02209{bottom:654.420450px;}
.y16_c02209{bottom:664.050450px;}
.y19_c02209{bottom:668.190450px;}
.y15_c02209{bottom:683.940450px;}
.y14_c02209{bottom:703.290450px;}
.y13_c02209{bottom:723.990450px;}
.y12_c02209{bottom:744.690450px;}
.y11_c02209{bottom:765.390450px;}
.y10_c02209{bottom:786.630450px;}
.yf_c02209{bottom:808.050450px;}
.ye_c02209{bottom:839.820450px;}
.yd_c02209{bottom:871.050450px;}
.yc_c02209{bottom:902.100450px;}
.yb_c02209{bottom:933.150450px;}
.ya_c02209{bottom:964.200450px;}
.y9_c02209{bottom:995.250450px;}
.y8_c02209{bottom:1026.300450px;}
.y7_c02209{bottom:1057.350450px;}
.y6_c02209{bottom:1088.220450px;}
.y5_c02209{bottom:1114.590450px;}
.y4_c02209{bottom:1139.970450px;}
.y1_c02209{bottom:1193.160450px;}
.ha_c02209{height:2.557969px;}
.h3_c02209{height:42.526230px;}
.h4_c02209{height:57.805840px;}
.h5_c02209{height:58.513535px;}
.h8_c02209{height:59.651295px;}
.h6_c02209{height:59.651895px;}
.h9_c02209{height:59.652495px;}
.h2_c02209{height:63.175781px;}
.h1_c02209{height:63.949219px;}
.h7_c02209{height:64.625449px;}
.h0_c02209{height:1263.000000px;}
.w1_c02209{width:892.500000px;}
.w0_c02209{width:892.830000px;}
.x0_c02209{left:0.000000px;}
.x1_c02209{left:127.620000px;}
.x4_c02209{left:135.630000px;}
.x5_c02209{left:146.250000px;}
.x3_c02209{left:148.950000px;}
.x6_c02209{left:154.440000px;}
.x7_c02209{left:196.920000px;}
.x2_c02209{left:433.080000px;}
.x8_c02209{left:591.570000px;}
.xa_c02209{left:711.990000px;}
.x9_c02209{left:725.310000px;}
@media print{
.v0_c02209{vertical-align:0.000000pt;}
.v2_c02209{vertical-align:0.960000pt;}
.v1_c02209{vertical-align:14.720000pt;}
.ls1f_c02209{letter-spacing:-0.080864pt;}
.ls18_c02209{letter-spacing:-0.044800pt;}
.ls17_c02209{letter-spacing:-0.032000pt;}
.ls19_c02209{letter-spacing:-0.019200pt;}
.ls15_c02209{letter-spacing:-0.012800pt;}
.ls1b_c02209{letter-spacing:-0.012768pt;}
.ls16_c02209{letter-spacing:-0.006400pt;}
.ls21_c02209{letter-spacing:-0.005856pt;}
.ls1c_c02209{letter-spacing:-0.004256pt;}
.ls13_c02209{letter-spacing:0.000000pt;}
.ls9_c02209{letter-spacing:0.005856pt;}
.ls14_c02209{letter-spacing:0.006400pt;}
.ls6_c02209{letter-spacing:0.012800pt;}
.ls4_c02209{letter-spacing:0.019200pt;}
.ls11_c02209{letter-spacing:0.023424pt;}
.ls1_c02209{letter-spacing:0.025600pt;}
.ls10_c02209{letter-spacing:0.029280pt;}
.ls0_c02209{letter-spacing:0.032000pt;}
.lsf_c02209{letter-spacing:0.040992pt;}
.ls3_c02209{letter-spacing:0.044800pt;}
.lse_c02209{letter-spacing:0.046848pt;}
.ls5_c02209{letter-spacing:0.051200pt;}
.ls2_c02209{letter-spacing:0.057600pt;}
.ls8_c02209{letter-spacing:0.058560pt;}
.ls7_c02209{letter-spacing:0.070272pt;}
.ls20_c02209{letter-spacing:0.081984pt;}
.ls1a_c02209{letter-spacing:0.102400pt;}
.lsa_c02209{letter-spacing:0.114912pt;}
.ls1d_c02209{letter-spacing:0.158112pt;}
.lsb_c02209{letter-spacing:0.161728pt;}
.lsd_c02209{letter-spacing:0.212800pt;}
.ls1e_c02209{letter-spacing:0.398208pt;}
.lsc_c02209{letter-spacing:148.085568pt;}
.ls12_c02209{letter-spacing:279.761184pt;}
.ws2_c02209{word-spacing:-42.560000pt;}
.ws1_c02209{word-spacing:-16.102400pt;}
.ws0_c02209{word-spacing:-16.000000pt;}
.ws19_c02209{word-spacing:-0.242592pt;}
.ws18_c02209{word-spacing:-0.195776pt;}
.ws4_c02209{word-spacing:-0.044800pt;}
.ws5_c02209{word-spacing:-0.006400pt;}
.ws3_c02209{word-spacing:0.000000pt;}
.ws6_c02209{word-spacing:0.012800pt;}
.ws16_c02209{word-spacing:0.023424pt;}
.ws10_c02209{word-spacing:0.032000pt;}
.ws1a_c02209{word-spacing:0.035136pt;}
.ws1b_c02209{word-spacing:0.040992pt;}
.ws1c_c02209{word-spacing:0.052704pt;}
.ws1d_c02209{word-spacing:0.058560pt;}
.ws17_c02209{word-spacing:0.076128pt;}
.ws1f_c02209{word-spacing:0.087840pt;}
.ws1e_c02209{word-spacing:0.398208pt;}
.wsd_c02209{word-spacing:1.862400pt;}
.wsc_c02209{word-spacing:1.939200pt;}
.wse_c02209{word-spacing:5.017600pt;}
.ws15_c02209{word-spacing:5.107200pt;}
.wsf_c02209{word-spacing:5.126400pt;}
.ws11_c02209{word-spacing:6.700800pt;}
.ws12_c02209{word-spacing:6.707200pt;}
.wsb_c02209{word-spacing:9.568000pt;}
.wsa_c02209{word-spacing:12.083200pt;}
.ws7_c02209{word-spacing:12.128000pt;}
.ws9_c02209{word-spacing:12.134400pt;}
.ws8_c02209{word-spacing:12.160000pt;}
.ws13_c02209{word-spacing:22.028800pt;}
.ws14_c02209{word-spacing:22.099200pt;}
._0_c02209{margin-left:-1.139200pt;}
._2_c02209{width:1.106784pt;}
._d_c02209{width:47.471232pt;}
._4_c02209{width:77.365664pt;}
._3_c02209{width:106.385504pt;}
._c_c02209{width:223.502592pt;}
._9_c02209{width:317.983296pt;}
._a_c02209{width:381.017280pt;}
._7_c02209{width:398.655552pt;}
._1_c02209{width:490.264064pt;}
._6_c02209{width:572.988672pt;}
._8_c02209{width:599.282112pt;}
._5_c02209{width:867.885120pt;}
._b_c02209{width:1020.012288pt;}
.fs3_c02209{font-size:2.560000pt;}
.fs1_c02209{font-size:42.560000pt;}
.fs2_c02209{font-size:58.560000pt;}
.fs0_c02209{font-size:64.000000pt;}
.y0_c02209{bottom:0.000000pt;}
.y3_c02209{bottom:50.987067pt;}
.y2_c02209{bottom:69.387067pt;}
.y35_c02209{bottom:104.667067pt;}
.y34_c02209{bottom:123.067067pt;}
.y33_c02209{bottom:141.467067pt;}
.y32_c02209{bottom:159.867067pt;}
.y31_c02209{bottom:178.267067pt;}
.y30_c02209{bottom:196.667067pt;}
.y2f_c02209{bottom:215.067067pt;}
.y2e_c02209{bottom:233.467067pt;}
.y2d_c02209{bottom:251.867067pt;}
.y2c_c02209{bottom:270.267067pt;}
.y2b_c02209{bottom:288.667067pt;}
.y2a_c02209{bottom:307.067067pt;}
.y29_c02209{bottom:325.467067pt;}
.y28_c02209{bottom:343.867067pt;}
.y27_c02209{bottom:362.267067pt;}
.y26_c02209{bottom:377.307067pt;}
.y25_c02209{bottom:381.227067pt;}
.y24_c02209{bottom:398.747200pt;}
.y23_c02209{bottom:416.347067pt;}
.y22_c02209{bottom:433.867067pt;}
.y21_c02209{bottom:451.387067pt;}
.y20_c02209{bottom:468.907067pt;}
.y1f_c02209{bottom:486.427067pt;}
.y1e_c02209{bottom:503.947067pt;}
.y1d_c02209{bottom:521.547067pt;}
.y1c_c02209{bottom:539.067067pt;}
.y18_c02209{bottom:556.587067pt;}
.y1b_c02209{bottom:569.467067pt;}
.y17_c02209{bottom:573.467067pt;}
.y1a_c02209{bottom:581.707067pt;}
.y16_c02209{bottom:590.267067pt;}
.y19_c02209{bottom:593.947067pt;}
.y15_c02209{bottom:607.947067pt;}
.y14_c02209{bottom:625.147067pt;}
.y13_c02209{bottom:643.547067pt;}
.y12_c02209{bottom:661.947067pt;}
.y11_c02209{bottom:680.347067pt;}
.y10_c02209{bottom:699.227067pt;}
.yf_c02209{bottom:718.267067pt;}
.ye_c02209{bottom:746.507067pt;}
.yd_c02209{bottom:774.267067pt;}
.yc_c02209{bottom:801.867067pt;}
.yb_c02209{bottom:829.467067pt;}
.ya_c02209{bottom:857.067067pt;}
.y9_c02209{bottom:884.667067pt;}
.y8_c02209{bottom:912.267067pt;}
.y7_c02209{bottom:939.867067pt;}
.y6_c02209{bottom:967.307067pt;}
.y5_c02209{bottom:990.747067pt;}
.y4_c02209{bottom:1013.307067pt;}
.y1_c02209{bottom:1060.587067pt;}
.ha_c02209{height:2.273750pt;}
.h3_c02209{height:37.801094pt;}
.h4_c02209{height:51.382969pt;}
.h5_c02209{height:52.012031pt;}
.h8_c02209{height:53.023373pt;}
.h6_c02209{height:53.023906pt;}
.h9_c02209{height:53.024440pt;}
.h2_c02209{height:56.156250pt;}
.h1_c02209{height:56.843750pt;}
.h7_c02209{height:57.444844pt;}
.h0_c02209{height:1122.666667pt;}
.w1_c02209{width:793.333333pt;}
.w0_c02209{width:793.626667pt;}
.x0_c02209{left:0.000000pt;}
.x1_c02209{left:113.440000pt;}
.x4_c02209{left:120.560000pt;}
.x5_c02209{left:130.000000pt;}
.x3_c02209{left:132.400000pt;}
.x6_c02209{left:137.280000pt;}
.x7_c02209{left:175.040000pt;}
.x2_c02209{left:384.960000pt;}
.x8_c02209{left:525.840000pt;}
.xa_c02209{left:632.880000pt;}
.x9_c02209{left:644.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_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_92743ac2074a39da67655bcd.woff2')format("woff");}.ff1_c02210{font-family:ff1_c02210;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02210;src:url('chunks/assets/font_46bfeec1325822252c6e47a8.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_7a1edb1d5a0cfa7e458998b2.woff2')format("woff");}.ff3_c02210{font-family:ff3_c02210;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_c02210;src:url('chunks/assets/font_2f3e16c00855ad79e4f3d0c2.woff2')format("woff");}.ff4_c02210{font-family:ff4_c02210;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_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);}
.v2_c02210{vertical-align:-9.000000px;}
.v1_c02210{vertical-align:-5.400000px;}
.v0_c02210{vertical-align:0.000000px;}
.v3_c02210{vertical-align:5.400000px;}
.ls1d_c02210{letter-spacing:-0.294588px;}
.ls16_c02210{letter-spacing:-0.162324px;}
.ls1e_c02210{letter-spacing:-0.144288px;}
.ls1b_c02210{letter-spacing:-0.138276px;}
.ls1a_c02210{letter-spacing:-0.102204px;}
.ls15_c02210{letter-spacing:-0.096192px;}
.ls1c_c02210{letter-spacing:-0.090180px;}
.ls19_c02210{letter-spacing:-0.054108px;}
.ls18_c02210{letter-spacing:-0.042084px;}
.ls1f_c02210{letter-spacing:-0.036072px;}
.ls17_c02210{letter-spacing:-0.030060px;}
.ls20_c02210{letter-spacing:-0.018036px;}
.ls21_c02210{letter-spacing:-0.007200px;}
.ls14_c02210{letter-spacing:-0.006012px;}
.ls13_c02210{letter-spacing:0.000000px;}
.ls7_c02210{letter-spacing:0.007200px;}
.lsa_c02210{letter-spacing:0.012024px;}
.ls0_c02210{letter-spacing:0.013176px;}
.lsd_c02210{letter-spacing:0.014400px;}
.ls8_c02210{letter-spacing:0.019764px;}
.lse_c02210{letter-spacing:0.021600px;}
.lsf_c02210{letter-spacing:0.028800px;}
.ls9_c02210{letter-spacing:0.030060px;}
.ls6_c02210{letter-spacing:0.032940px;}
.lsc_c02210{letter-spacing:0.036000px;}
.lsb_c02210{letter-spacing:0.039528px;}
.ls12_c02210{letter-spacing:0.043200px;}
.ls5_c02210{letter-spacing:0.046116px;}
.ls3_c02210{letter-spacing:0.050400px;}
.ls22_c02210{letter-spacing:0.052704px;}
.ls4_c02210{letter-spacing:0.057600px;}
.ls10_c02210{letter-spacing:0.064800px;}
.ls11_c02210{letter-spacing:0.065880px;}
.ls1_c02210{letter-spacing:0.144000px;}
.ls2_c02210{letter-spacing:0.181944px;}
.sc__c02210{text-shadow:none;}
.sc0_c02210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02210{-webkit-text-stroke:0px transparent;}
.sc0_c02210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02210{word-spacing:-17.992800px;}
.wsa_c02210{word-spacing:-0.300600px;}
.ws26_c02210{word-spacing:-0.216000px;}
.ws1a_c02210{word-spacing:-0.194400px;}
.ws23_c02210{word-spacing:-0.187200px;}
.ws1e_c02210{word-spacing:-0.180000px;}
.ws11_c02210{word-spacing:-0.168336px;}
.ws3_c02210{word-spacing:-0.100800px;}
.ws1b_c02210{word-spacing:-0.093600px;}
.ws27_c02210{word-spacing:-0.086400px;}
.ws20_c02210{word-spacing:-0.057600px;}
.ws2_c02210{word-spacing:-0.050400px;}
.ws22_c02210{word-spacing:-0.043200px;}
.ws19_c02210{word-spacing:-0.036000px;}
.ws24_c02210{word-spacing:-0.028800px;}
.ws1c_c02210{word-spacing:-0.021600px;}
.ws5_c02210{word-spacing:-0.014400px;}
.ws9_c02210{word-spacing:-0.007200px;}
.ws1_c02210{word-spacing:0.000000px;}
.ws21_c02210{word-spacing:0.026352px;}
.ws1d_c02210{word-spacing:0.028800px;}
.ws25_c02210{word-spacing:0.039528px;}
.ws7_c02210{word-spacing:0.046116px;}
.ws1f_c02210{word-spacing:0.052704px;}
.ws8_c02210{word-spacing:0.059292px;}
.ws18_c02210{word-spacing:0.078156px;}
.wsb_c02210{word-spacing:0.096192px;}
.ws17_c02210{word-spacing:0.108216px;}
.wse_c02210{word-spacing:0.120240px;}
.ws16_c02210{word-spacing:0.126252px;}
.wsf_c02210{word-spacing:0.132264px;}
.ws10_c02210{word-spacing:0.144288px;}
.ws13_c02210{word-spacing:0.180360px;}
.wsc_c02210{word-spacing:0.186372px;}
.ws12_c02210{word-spacing:0.228456px;}
.ws15_c02210{word-spacing:0.234468px;}
.wsd_c02210{word-spacing:0.252504px;}
.ws14_c02210{word-spacing:0.384768px;}
.ws6_c02210{word-spacing:17.186400px;}
.ws4_c02210{word-spacing:23.032800px;}
._2_c02210{margin-left:-1.224000px;}
._7_c02210{width:1.028052px;}
._3_c02210{width:16.716240px;}
._1_c02210{width:22.836240px;}
._4_c02210{width:141.689772px;}
._5_c02210{width:145.431756px;}
._0_c02210{width:191.501640px;}
._6_c02210{width:1057.649976px;}
.fc0_c02210{color:rgb(0,0,0);}
.fs2_c02210{font-size:47.880000px;}
.fs3_c02210{font-size:60.120000px;}
.fs1_c02210{font-size:65.880000px;}
.fs0_c02210{font-size:72.000000px;}
.y0_c02210{bottom:0.000000px;}
.y3_c02210{bottom:57.360450px;}
.y2_c02210{bottom:78.060450px;}
.y37_c02210{bottom:123.330450px;}
.y36_c02210{bottom:144.030450px;}
.y35_c02210{bottom:164.730450px;}
.y34_c02210{bottom:185.430450px;}
.y33_c02210{bottom:206.130450px;}
.y32_c02210{bottom:226.830450px;}
.y31_c02210{bottom:247.530450px;}
.y30_c02210{bottom:268.230450px;}
.y2f_c02210{bottom:288.930450px;}
.y2e_c02210{bottom:309.630450px;}
.y2d_c02210{bottom:330.330450px;}
.y2c_c02210{bottom:351.030450px;}
.y2b_c02210{bottom:371.730450px;}
.y2a_c02210{bottom:392.430450px;}
.y29_c02210{bottom:413.130450px;}
.y28_c02210{bottom:433.830450px;}
.y27_c02210{bottom:455.250450px;}
.y26_c02210{bottom:476.220450px;}
.y25_c02210{bottom:496.380450px;}
.y24_c02210{bottom:517.080450px;}
.y23_c02210{bottom:538.140450px;}
.y22_c02210{bottom:558.300450px;}
.y21_c02210{bottom:579.000450px;}
.y20_c02210{bottom:599.970450px;}
.y1f_c02210{bottom:620.130450px;}
.y1e_c02210{bottom:640.830450px;}
.y1d_c02210{bottom:661.530450px;}
.y1c_c02210{bottom:682.230450px;}
.y1b_c02210{bottom:702.930450px;}
.y1a_c02210{bottom:723.900450px;}
.y19_c02210{bottom:744.150450px;}
.y18_c02210{bottom:765.120450px;}
.y17_c02210{bottom:784.471260px;}
.y16_c02210{bottom:801.661071px;}
.y15_c02210{bottom:818.941062px;}
.y14_c02210{bottom:836.221053px;}
.y13_c02210{bottom:853.410864px;}
.y12_c02210{bottom:870.690855px;}
.y11_c02210{bottom:887.970846px;}
.y10_c02210{bottom:905.160657px;}
.yf_c02210{bottom:922.440648px;}
.ye_c02210{bottom:939.720639px;}
.yd_c02210{bottom:956.910450px;}
.yc_c02210{bottom:972.840450px;}
.yb_c02210{bottom:994.260450px;}
.ya_c02210{bottom:1015.770450px;}
.y9_c02210{bottom:1035.840450px;}
.y8_c02210{bottom:1056.540450px;}
.y7_c02210{bottom:1077.240450px;}
.y6_c02210{bottom:1099.290450px;}
.y5_c02210{bottom:1119.450450px;}
.y4_c02210{bottom:1139.970450px;}
.y1_c02210{bottom:1193.160450px;}
.h7_c02210{height:53.397598px;}
.h5_c02210{height:58.513535px;}
.h6_c02210{height:58.797598px;}
.h8_c02210{height:58.975137px;}
.h2_c02210{height:63.175781px;}
.h9_c02210{height:63.945979px;}
.h1_c02210{height:63.949219px;}
.h3_c02210{height:65.228906px;}
.h4_c02210{height:70.628906px;}
.h0_c02210{height:1263.000000px;}
.w1_c02210{width:892.500000px;}
.w0_c02210{width:892.830000px;}
.x0_c02210{left:0.000000px;}
.x1_c02210{left:127.620000px;}
.x3_c02210{left:135.630000px;}
.x4_c02210{left:252.630000px;}
.x2_c02210{left:433.080000px;}
@media print{
.v2_c02210{vertical-align:-8.000000pt;}
.v1_c02210{vertical-align:-4.800000pt;}
.v0_c02210{vertical-align:0.000000pt;}
.v3_c02210{vertical-align:4.800000pt;}
.ls1d_c02210{letter-spacing:-0.261856pt;}
.ls16_c02210{letter-spacing:-0.144288pt;}
.ls1e_c02210{letter-spacing:-0.128256pt;}
.ls1b_c02210{letter-spacing:-0.122912pt;}
.ls1a_c02210{letter-spacing:-0.090848pt;}
.ls15_c02210{letter-spacing:-0.085504pt;}
.ls1c_c02210{letter-spacing:-0.080160pt;}
.ls19_c02210{letter-spacing:-0.048096pt;}
.ls18_c02210{letter-spacing:-0.037408pt;}
.ls1f_c02210{letter-spacing:-0.032064pt;}
.ls17_c02210{letter-spacing:-0.026720pt;}
.ls20_c02210{letter-spacing:-0.016032pt;}
.ls21_c02210{letter-spacing:-0.006400pt;}
.ls14_c02210{letter-spacing:-0.005344pt;}
.ls13_c02210{letter-spacing:0.000000pt;}
.ls7_c02210{letter-spacing:0.006400pt;}
.lsa_c02210{letter-spacing:0.010688pt;}
.ls0_c02210{letter-spacing:0.011712pt;}
.lsd_c02210{letter-spacing:0.012800pt;}
.ls8_c02210{letter-spacing:0.017568pt;}
.lse_c02210{letter-spacing:0.019200pt;}
.lsf_c02210{letter-spacing:0.025600pt;}
.ls9_c02210{letter-spacing:0.026720pt;}
.ls6_c02210{letter-spacing:0.029280pt;}
.lsc_c02210{letter-spacing:0.032000pt;}
.lsb_c02210{letter-spacing:0.035136pt;}
.ls12_c02210{letter-spacing:0.038400pt;}
.ls5_c02210{letter-spacing:0.040992pt;}
.ls3_c02210{letter-spacing:0.044800pt;}
.ls22_c02210{letter-spacing:0.046848pt;}
.ls4_c02210{letter-spacing:0.051200pt;}
.ls10_c02210{letter-spacing:0.057600pt;}
.ls11_c02210{letter-spacing:0.058560pt;}
.ls1_c02210{letter-spacing:0.128000pt;}
.ls2_c02210{letter-spacing:0.161728pt;}
.ws0_c02210{word-spacing:-15.993600pt;}
.wsa_c02210{word-spacing:-0.267200pt;}
.ws26_c02210{word-spacing:-0.192000pt;}
.ws1a_c02210{word-spacing:-0.172800pt;}
.ws23_c02210{word-spacing:-0.166400pt;}
.ws1e_c02210{word-spacing:-0.160000pt;}
.ws11_c02210{word-spacing:-0.149632pt;}
.ws3_c02210{word-spacing:-0.089600pt;}
.ws1b_c02210{word-spacing:-0.083200pt;}
.ws27_c02210{word-spacing:-0.076800pt;}
.ws20_c02210{word-spacing:-0.051200pt;}
.ws2_c02210{word-spacing:-0.044800pt;}
.ws22_c02210{word-spacing:-0.038400pt;}
.ws19_c02210{word-spacing:-0.032000pt;}
.ws24_c02210{word-spacing:-0.025600pt;}
.ws1c_c02210{word-spacing:-0.019200pt;}
.ws5_c02210{word-spacing:-0.012800pt;}
.ws9_c02210{word-spacing:-0.006400pt;}
.ws1_c02210{word-spacing:0.000000pt;}
.ws21_c02210{word-spacing:0.023424pt;}
.ws1d_c02210{word-spacing:0.025600pt;}
.ws25_c02210{word-spacing:0.035136pt;}
.ws7_c02210{word-spacing:0.040992pt;}
.ws1f_c02210{word-spacing:0.046848pt;}
.ws8_c02210{word-spacing:0.052704pt;}
.ws18_c02210{word-spacing:0.069472pt;}
.wsb_c02210{word-spacing:0.085504pt;}
.ws17_c02210{word-spacing:0.096192pt;}
.wse_c02210{word-spacing:0.106880pt;}
.ws16_c02210{word-spacing:0.112224pt;}
.wsf_c02210{word-spacing:0.117568pt;}
.ws10_c02210{word-spacing:0.128256pt;}
.ws13_c02210{word-spacing:0.160320pt;}
.wsc_c02210{word-spacing:0.165664pt;}
.ws12_c02210{word-spacing:0.203072pt;}
.ws15_c02210{word-spacing:0.208416pt;}
.wsd_c02210{word-spacing:0.224448pt;}
.ws14_c02210{word-spacing:0.342016pt;}
.ws6_c02210{word-spacing:15.276800pt;}
.ws4_c02210{word-spacing:20.473600pt;}
._2_c02210{margin-left:-1.088000pt;}
._7_c02210{width:0.913824pt;}
._3_c02210{width:14.858880pt;}
._1_c02210{width:20.298880pt;}
._4_c02210{width:125.946464pt;}
._5_c02210{width:129.272672pt;}
._0_c02210{width:170.223680pt;}
._6_c02210{width:940.133312pt;}
.fs2_c02210{font-size:42.560000pt;}
.fs3_c02210{font-size:53.440000pt;}
.fs1_c02210{font-size:58.560000pt;}
.fs0_c02210{font-size:64.000000pt;}
.y0_c02210{bottom:0.000000pt;}
.y3_c02210{bottom:50.987067pt;}
.y2_c02210{bottom:69.387067pt;}
.y37_c02210{bottom:109.627067pt;}
.y36_c02210{bottom:128.027067pt;}
.y35_c02210{bottom:146.427067pt;}
.y34_c02210{bottom:164.827067pt;}
.y33_c02210{bottom:183.227067pt;}
.y32_c02210{bottom:201.627067pt;}
.y31_c02210{bottom:220.027067pt;}
.y30_c02210{bottom:238.427067pt;}
.y2f_c02210{bottom:256.827067pt;}
.y2e_c02210{bottom:275.227067pt;}
.y2d_c02210{bottom:293.627067pt;}
.y2c_c02210{bottom:312.027067pt;}
.y2b_c02210{bottom:330.427067pt;}
.y2a_c02210{bottom:348.827067pt;}
.y29_c02210{bottom:367.227067pt;}
.y28_c02210{bottom:385.627067pt;}
.y27_c02210{bottom:404.667067pt;}
.y26_c02210{bottom:423.307067pt;}
.y25_c02210{bottom:441.227067pt;}
.y24_c02210{bottom:459.627067pt;}
.y23_c02210{bottom:478.347067pt;}
.y22_c02210{bottom:496.267067pt;}
.y21_c02210{bottom:514.667067pt;}
.y20_c02210{bottom:533.307067pt;}
.y1f_c02210{bottom:551.227067pt;}
.y1e_c02210{bottom:569.627067pt;}
.y1d_c02210{bottom:588.027067pt;}
.y1c_c02210{bottom:606.427067pt;}
.y1b_c02210{bottom:624.827067pt;}
.y1a_c02210{bottom:643.467067pt;}
.y19_c02210{bottom:661.467067pt;}
.y18_c02210{bottom:680.107067pt;}
.y17_c02210{bottom:697.307787pt;}
.y16_c02210{bottom:712.587619pt;}
.y15_c02210{bottom:727.947611pt;}
.y14_c02210{bottom:743.307603pt;}
.y13_c02210{bottom:758.587435pt;}
.y12_c02210{bottom:773.947427pt;}
.y11_c02210{bottom:789.307419pt;}
.y10_c02210{bottom:804.587251pt;}
.yf_c02210{bottom:819.947243pt;}
.ye_c02210{bottom:835.307235pt;}
.yd_c02210{bottom:850.587067pt;}
.yc_c02210{bottom:864.747067pt;}
.yb_c02210{bottom:883.787067pt;}
.ya_c02210{bottom:902.907067pt;}
.y9_c02210{bottom:920.747067pt;}
.y8_c02210{bottom:939.147067pt;}
.y7_c02210{bottom:957.547067pt;}
.y6_c02210{bottom:977.147067pt;}
.y5_c02210{bottom:995.067067pt;}
.y4_c02210{bottom:1013.307067pt;}
.y1_c02210{bottom:1060.587067pt;}
.h7_c02210{height:47.464531pt;}
.h5_c02210{height:52.012031pt;}
.h6_c02210{height:52.264531pt;}
.h8_c02210{height:52.422344pt;}
.h2_c02210{height:56.156250pt;}
.h9_c02210{height:56.840870pt;}
.h1_c02210{height:56.843750pt;}
.h3_c02210{height:57.981250pt;}
.h4_c02210{height:62.781250pt;}
.h0_c02210{height:1122.666667pt;}
.w1_c02210{width:793.333333pt;}
.w0_c02210{width:793.626667pt;}
.x0_c02210{left:0.000000pt;}
.x1_c02210{left:113.440000pt;}
.x3_c02210{left:120.560000pt;}
.x4_c02210{left:224.560000pt;}
.x2_c02210{left:384.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_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_3cce471f2e87aeaf871f5ec1.woff2')format("woff");}.ff1_c02211{font-family:ff1_c02211;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02211;src:url('chunks/assets/font_74f8600c12499e88e58e6fd8.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;}
.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;}
.ls8_c02211{letter-spacing:-0.007200px;}
.ls6_c02211{letter-spacing:0.000000px;}
.ls7_c02211{letter-spacing:0.007200px;}
.ls2_c02211{letter-spacing:0.014400px;}
.ls0_c02211{letter-spacing:0.021600px;}
.ls4_c02211{letter-spacing:0.036000px;}
.ls1_c02211{letter-spacing:0.086400px;}
.ls3_c02211{letter-spacing:0.093600px;}
.ls5_c02211{letter-spacing:0.178200px;}
.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;}
}
.ws5_c02211{word-spacing:-0.172800px;}
.ws3_c02211{word-spacing:-0.108000px;}
.ws7_c02211{word-spacing:-0.086400px;}
.ws6_c02211{word-spacing:-0.072000px;}
.ws1_c02211{word-spacing:-0.050400px;}
.ws2_c02211{word-spacing:-0.014400px;}
.ws0_c02211{word-spacing:0.000000px;}
.ws4_c02211{word-spacing:20.138400px;}
._0_c02211{margin-left:-1.310400px;}
._1_c02211{width:2497.680000px;}
.fc0_c02211{color:rgb(0,0,0);}
.fs1_c02211{font-size:47.880000px;}
.fs2_c02211{font-size:54.000000px;}
.fs0_c02211{font-size:72.000000px;}
.y0_c02211{bottom:0.000000px;}
.y3_c02211{bottom:57.360450px;}
.y2_c02211{bottom:78.060450px;}
.y10_c02211{bottom:116.669550px;}
.yf_c02211{bottom:132.150000px;}
.ye_c02211{bottom:144.660450px;}
.yd_c02211{bottom:533.550450px;}
.yc_c02211{bottom:560.550450px;}
.yb_c02211{bottom:591.420450px;}
.ya_c02211{bottom:611.220450px;}
.y9_c02211{bottom:623.730450px;}
.y8_c02211{bottom:1021.710450px;}
.y7_c02211{bottom:1047.000450px;}
.y6_c02211{bottom:1078.050450px;}
.y5_c02211{bottom:1108.920450px;}
.y4_c02211{bottom:1139.970450px;}
.y1_c02211{bottom:1193.160450px;}
.h3_c02211{height:42.011895px;}
.h4_c02211{height:47.961914px;}
.h2_c02211{height:63.175781px;}
.h1_c02211{height:63.949219px;}
.h0_c02211{height:1263.000000px;}
.w1_c02211{width:892.500000px;}
.w0_c02211{width:892.830000px;}
.x0_c02211{left:0.000000px;}
.x1_c02211{left:127.620000px;}
.x4_c02211{left:148.950000px;}
.x5_c02211{left:285.660000px;}
.x3_c02211{left:356.580000px;}
.x2_c02211{left:433.080000px;}
.x6_c02211{left:764.370000px;}
@media print{
.v0_c02211{vertical-align:0.000000pt;}
.ls8_c02211{letter-spacing:-0.006400pt;}
.ls6_c02211{letter-spacing:0.000000pt;}
.ls7_c02211{letter-spacing:0.006400pt;}
.ls2_c02211{letter-spacing:0.012800pt;}
.ls0_c02211{letter-spacing:0.019200pt;}
.ls4_c02211{letter-spacing:0.032000pt;}
.ls1_c02211{letter-spacing:0.076800pt;}
.ls3_c02211{letter-spacing:0.083200pt;}
.ls5_c02211{letter-spacing:0.158400pt;}
.ws5_c02211{word-spacing:-0.153600pt;}
.ws3_c02211{word-spacing:-0.096000pt;}
.ws7_c02211{word-spacing:-0.076800pt;}
.ws6_c02211{word-spacing:-0.064000pt;}
.ws1_c02211{word-spacing:-0.044800pt;}
.ws2_c02211{word-spacing:-0.012800pt;}
.ws0_c02211{word-spacing:0.000000pt;}
.ws4_c02211{word-spacing:17.900800pt;}
._0_c02211{margin-left:-1.164800pt;}
._1_c02211{width:2220.160000pt;}
.fs1_c02211{font-size:42.560000pt;}
.fs2_c02211{font-size:48.000000pt;}
.fs0_c02211{font-size:64.000000pt;}
.y0_c02211{bottom:0.000000pt;}
.y3_c02211{bottom:50.987067pt;}
.y2_c02211{bottom:69.387067pt;}
.y10_c02211{bottom:103.706267pt;}
.yf_c02211{bottom:117.466667pt;}
.ye_c02211{bottom:128.587067pt;}
.yd_c02211{bottom:474.267067pt;}
.yc_c02211{bottom:498.267067pt;}
.yb_c02211{bottom:525.707067pt;}
.ya_c02211{bottom:543.307067pt;}
.y9_c02211{bottom:554.427067pt;}
.y8_c02211{bottom:908.187067pt;}
.y7_c02211{bottom:930.667067pt;}
.y6_c02211{bottom:958.267067pt;}
.y5_c02211{bottom:985.707067pt;}
.y4_c02211{bottom:1013.307067pt;}
.y1_c02211{bottom:1060.587067pt;}
.h3_c02211{height:37.343906pt;}
.h4_c02211{height:42.632812pt;}
.h2_c02211{height:56.156250pt;}
.h1_c02211{height:56.843750pt;}
.h0_c02211{height:1122.666667pt;}
.w1_c02211{width:793.333333pt;}
.w0_c02211{width:793.626667pt;}
.x0_c02211{left:0.000000pt;}
.x1_c02211{left:113.440000pt;}
.x4_c02211{left:132.400000pt;}
.x5_c02211{left:253.920000pt;}
.x3_c02211{left:316.960000pt;}
.x2_c02211{left:384.960000pt;}
.x6_c02211{left:679.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_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_73463bf7b661186f7d89427e.woff2')format("woff");}.ff1_c02212{font-family:ff1_c02212;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02212;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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;}
.ls1c_c02212{letter-spacing:-0.086184px;}
.ls1b_c02212{letter-spacing:-0.026352px;}
.ls1d_c02212{letter-spacing:-0.023940px;}
.ls21_c02212{letter-spacing:-0.006588px;}
.ls19_c02212{letter-spacing:0.000000px;}
.ls13_c02212{letter-spacing:0.006588px;}
.ls1a_c02212{letter-spacing:0.007200px;}
.ls14_c02212{letter-spacing:0.013176px;}
.ls1_c02212{letter-spacing:0.026352px;}
.ls24_c02212{letter-spacing:0.032940px;}
.ls11_c02212{letter-spacing:0.039528px;}
.ls23_c02212{letter-spacing:0.052704px;}
.ls2_c02212{letter-spacing:0.059292px;}
.ls8_c02212{letter-spacing:0.065880px;}
.ls3_c02212{letter-spacing:0.067032px;}
.lsf_c02212{letter-spacing:0.072468px;}
.ls4_c02212{letter-spacing:0.076608px;}
.lsc_c02212{letter-spacing:0.079056px;}
.ls22_c02212{letter-spacing:0.085644px;}
.ls1e_c02212{letter-spacing:0.092232px;}
.ls5_c02212{letter-spacing:0.105408px;}
.lse_c02212{letter-spacing:0.111996px;}
.ls9_c02212{letter-spacing:0.125172px;}
.lsa_c02212{letter-spacing:0.138348px;}
.ls10_c02212{letter-spacing:0.144936px;}
.ls0_c02212{letter-spacing:0.151524px;}
.ls6_c02212{letter-spacing:0.158112px;}
.lsb_c02212{letter-spacing:0.171288px;}
.lsd_c02212{letter-spacing:0.177876px;}
.ls1f_c02212{letter-spacing:152.821836px;}
.ls17_c02212{letter-spacing:172.620000px;}
.ls25_c02212{letter-spacing:172.981116px;}
.ls15_c02212{letter-spacing:185.939712px;}
.ls7_c02212{letter-spacing:205.740000px;}
.ls27_c02212{letter-spacing:206.098992px;}
.ls20_c02212{letter-spacing:235.257480px;}
.ls26_c02212{letter-spacing:238.413132px;}
.ls28_c02212{letter-spacing:255.416760px;}
.ls16_c02212{letter-spacing:355.410000px;}
.ls12_c02212{letter-spacing:651.780000px;}
.ls18_c02212{letter-spacing:689.580000px;}
.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;}
}
.ws41_c02212{word-spacing:-0.810324px;}
.ws27_c02212{word-spacing:-0.167580px;}
.ws22_c02212{word-spacing:-0.050400px;}
.ws2b_c02212{word-spacing:-0.032940px;}
.ws28_c02212{word-spacing:-0.013176px;}
.ws23_c02212{word-spacing:-0.007200px;}
.ws21_c02212{word-spacing:0.000000px;}
.ws2a_c02212{word-spacing:0.026352px;}
.ws25_c02212{word-spacing:0.032940px;}
.ws26_c02212{word-spacing:0.052704px;}
.ws3f_c02212{word-spacing:0.059292px;}
.ws24_c02212{word-spacing:0.065880px;}
.ws3a_c02212{word-spacing:0.079056px;}
.ws38_c02212{word-spacing:0.085644px;}
.ws39_c02212{word-spacing:0.092232px;}
.ws36_c02212{word-spacing:0.098820px;}
.wse_c02212{word-spacing:67.608252px;}
.wsc_c02212{word-spacing:67.654368px;}
.ws3c_c02212{word-spacing:68.673312px;}
.ws5_c02212{word-spacing:80.242380px;}
.ws32_c02212{word-spacing:80.604180px;}
.wsb_c02212{word-spacing:80.773020px;}
.ws42_c02212{word-spacing:80.966520px;}
.wsd_c02212{word-spacing:84.563568px;}
.wsa_c02212{word-spacing:87.409440px;}
.ws20_c02212{word-spacing:87.766308px;}
.ws1e_c02212{word-spacing:87.819012px;}
.ws14_c02212{word-spacing:89.558496px;}
.ws3d_c02212{word-spacing:89.913024px;}
.ws9_c02212{word-spacing:96.758496px;}
.ws1c_c02212{word-spacing:96.802380px;}
.ws40_c02212{word-spacing:97.476048px;}
.ws3b_c02212{word-spacing:106.119504px;}
.ws12_c02212{word-spacing:113.386608px;}
.ws4_c02212{word-spacing:122.316372px;}
.ws1b_c02212{word-spacing:122.318496px;}
.ws1f_c02212{word-spacing:122.365512px;}
.ws2d_c02212{word-spacing:122.681736px;}
.ws29_c02212{word-spacing:122.694912px;}
.ws18_c02212{word-spacing:129.915720px;}
.wsf_c02212{word-spacing:129.917844px;}
.ws3_c02212{word-spacing:129.921084px;}
.ws1a_c02212{word-spacing:129.924432px;}
.ws8_c02212{word-spacing:129.947436px;}
.ws10_c02212{word-spacing:130.036428px;}
.ws7_c02212{word-spacing:134.243676px;}
.ws34_c02212{word-spacing:138.927744px;}
.ws2f_c02212{word-spacing:139.230792px;}
.ws1_c02212{word-spacing:146.603304px;}
.ws30_c02212{word-spacing:155.430684px;}
.ws11_c02212{word-spacing:155.436372px;}
.ws2c_c02212{word-spacing:155.812788px;}
.ws0_c02212{word-spacing:162.681084px;}
.ws16_c02212{word-spacing:162.707436px;}
.ws6_c02212{word-spacing:166.999212px;}
.ws13_c02212{word-spacing:167.025564px;}
.ws2_c02212{word-spacing:167.124384px;}
.ws19_c02212{word-spacing:172.039032px;}
.ws33_c02212{word-spacing:172.058796px;}
.ws2e_c02212{word-spacing:188.950428px;}
.ws1d_c02212{word-spacing:195.923304px;}
.ws17_c02212{word-spacing:204.827508px;}
.ws15_c02212{word-spacing:218.353572px;}
.ws35_c02212{word-spacing:238.235256px;}
.ws37_c02212{word-spacing:238.274784px;}
.ws3e_c02212{word-spacing:254.435148px;}
.ws31_c02212{word-spacing:261.695124px;}
._37_c02212{margin-left:-206.427060px;}
._27_c02212{margin-left:-185.847480px;}
._1a_c02212{margin-left:-174.297564px;}
._31_c02212{margin-left:-172.803240px;}
._9_c02212{margin-left:-152.643960px;}
._10_c02212{margin-left:-26.259768px;}
._38_c02212{margin-left:-8.486676px;}
._28_c02212{margin-left:-1.159488px;}
._13_c02212{width:6.884460px;}
._a_c02212{width:18.900972px;}
._16_c02212{width:56.169288px;}
._36_c02212{width:71.638272px;}
._34_c02212{width:80.591004px;}
._3_c02212{width:81.618264px;}
._5_c02212{width:83.778264px;}
._1c_c02212{width:87.377796px;}
._1b_c02212{width:100.873548px;}
._3a_c02212{width:106.560900px;}
._29_c02212{width:112.918284px;}
._32_c02212{width:114.499440px;}
._18_c02212{width:117.720972px;}
._d_c02212{width:119.183508px;}
._2_c02212{width:131.310000px;}
._19_c02212{width:135.719388px;}
._6_c02212{width:138.052800px;}
._33_c02212{width:139.342788px;}
._2e_c02212{width:140.658264px;}
._4_c02212{width:145.612800px;}
._7_c02212{width:150.750000px;}
._22_c02212{width:152.301384px;}
._17_c02212{width:155.526372px;}
._23_c02212{width:171.650340px;}
._c_c02212{width:179.266068px;}
._1_c02212{width:183.227688px;}
._8_c02212{width:191.809620px;}
._2f_c02212{width:204.827688px;}
._2d_c02212{width:208.789704px;}
._39_c02212{width:211.488120px;}
._1d_c02212{width:223.030152px;}
._30_c02212{width:224.571744px;}
._e_c02212{width:226.673316px;}
._20_c02212{width:234.993960px;}
._2a_c02212{width:238.233312px;}
._1e_c02212{width:241.549020px;}
._f_c02212{width:245.205360px;}
._3c_c02212{width:255.153240px;}
._24_c02212{width:259.435440px;}
._12_c02212{width:274.462668px;}
._b_c02212{width:289.285668px;}
._15_c02212{width:307.461960px;}
._21_c02212{width:317.369088px;}
._35_c02212{width:344.203236px;}
._0_c02212{width:355.529088px;}
._2b_c02212{width:375.930000px;}
._1f_c02212{width:630.275400px;}
._2c_c02212{width:651.780000px;}
._26_c02212{width:658.793412px;}
._3b_c02212{width:668.075400px;}
._25_c02212{width:798.091128px;}
._14_c02212{width:926.993232px;}
._11_c02212{width:1132.169904px;}
.fc0_c02212{color:rgb(0,0,0);}
.fs3_c02212{font-size:47.880000px;}
.fs1_c02212{font-size:54.000000px;}
.fs2_c02212{font-size:65.880000px;}
.fs0_c02212{font-size:72.000000px;}
.y0_c02212{bottom:0.000000px;}
.y3_c02212{bottom:57.360450px;}
.y2_c02212{bottom:78.060450px;}
.y40_c02212{bottom:115.860450px;}
.y3f_c02212{bottom:131.340900px;}
.y3e_c02212{bottom:146.910450px;}
.y3d_c02212{bottom:163.470450px;}
.y3c_c02212{bottom:182.370600px;}
.y3b_c02212{bottom:201.360450px;}
.y3a_c02212{bottom:220.350450px;}
.y39_c02212{bottom:220.351059px;}
.y38_c02212{bottom:239.699955px;}
.y37_c02212{bottom:258.689955px;}
.y36_c02212{bottom:277.681125px;}
.y35_c02212{bottom:296.580540px;}
.y34_c02212{bottom:315.570540px;}
.y33_c02212{bottom:334.560540px;}
.y32_c02212{bottom:353.550450px;}
.y31_c02212{bottom:371.460600px;}
.y2f_c02212{bottom:386.310450px;}
.y30_c02212{bottom:386.400450px;}
.y2d_c02212{bottom:405.300450px;}
.y2e_c02212{bottom:424.290600px;}
.y2c_c02212{bottom:444.810600px;}
.y2b_c02212{bottom:460.380150px;}
.y2a_c02212{bottom:475.860600px;}
.y29_c02212{bottom:492.420450px;}
.y28_c02212{bottom:511.410450px;}
.y27_c02212{bottom:530.400450px;}
.y26_c02212{bottom:549.390450px;}
.y25_c02212{bottom:549.390909px;}
.y24_c02212{bottom:568.740540px;}
.y23_c02212{bottom:587.639955px;}
.y22_c02212{bottom:606.630540px;}
.y21_c02212{bottom:625.620540px;}
.y20_c02212{bottom:644.610540px;}
.y1f_c02212{bottom:663.601125px;}
.y1e_c02212{bottom:682.500450px;}
.y1d_c02212{bottom:700.500450px;}
.y1c_c02212{bottom:715.350450px;}
.y1a_c02212{bottom:734.250450px;}
.y1b_c02212{bottom:753.240450px;}
.y19_c02212{bottom:773.850450px;}
.y18_c02212{bottom:789.330900px;}
.y17_c02212{bottom:804.900450px;}
.y16_c02212{bottom:821.460450px;}
.y15_c02212{bottom:840.360600px;}
.y14_c02212{bottom:859.350450px;}
.y13_c02212{bottom:878.340450px;}
.y11_c02212{bottom:897.690450px;}
.y12_c02212{bottom:897.780450px;}
.y10_c02212{bottom:916.680450px;}
.yf_c02212{bottom:935.670450px;}
.ye_c02212{bottom:954.660450px;}
.yd_c02212{bottom:973.560450px;}
.yc_c02212{bottom:992.550450px;}
.yb_c02212{bottom:1011.540450px;}
.ya_c02212{bottom:1029.450450px;}
.y9_c02212{bottom:1044.300450px;}
.y7_c02212{bottom:1063.290450px;}
.y8_c02212{bottom:1082.280450px;}
.y6_c02212{bottom:1101.540450px;}
.y5_c02212{bottom:1123.500450px;}
.y4_c02212{bottom:1139.970450px;}
.y1_c02212{bottom:1193.160450px;}
.h5_c02212{height:42.526230px;}
.h3_c02212{height:47.961914px;}
.h6_c02212{height:57.805840px;}
.h4_c02212{height:58.513535px;}
.h2_c02212{height:63.175781px;}
.h1_c02212{height:63.949219px;}
.h0_c02212{height:1263.000000px;}
.w1_c02212{width:892.500000px;}
.w0_c02212{width:892.830000px;}
.x0_c02212{left:0.000000px;}
.x1_c02212{left:127.620000px;}
.x3_c02212{left:135.630000px;}
.xf_c02212{left:243.360000px;}
.x5_c02212{left:252.450000px;}
.x14_c02212{left:270.360000px;}
.x4_c02212{left:293.310000px;}
.x13_c02212{left:305.100000px;}
.xc_c02212{left:367.020324px;}
.xd_c02212{left:375.299793px;}
.x12_c02212{left:383.581719px;}
.xe_c02212{left:424.350000px;}
.x7_c02212{left:427.860000px;}
.x2_c02212{left:433.080000px;}
.x10_c02212{left:436.410000px;}
.x8_c02212{left:442.350000px;}
.x6_c02212{left:463.410000px;}
.x15_c02212{left:489.060000px;}
.xa_c02212{left:586.350000px;}
.x11_c02212{left:588.600000px;}
.x16_c02212{left:594.090000px;}
.xb_c02212{left:608.130000px;}
.x17_c02212{left:615.870000px;}
.x9_c02212{left:638.820000px;}
.x18_c02212{left:726.210954px;}
@media print{
.v0_c02212{vertical-align:0.000000pt;}
.ls1c_c02212{letter-spacing:-0.076608pt;}
.ls1b_c02212{letter-spacing:-0.023424pt;}
.ls1d_c02212{letter-spacing:-0.021280pt;}
.ls21_c02212{letter-spacing:-0.005856pt;}
.ls19_c02212{letter-spacing:0.000000pt;}
.ls13_c02212{letter-spacing:0.005856pt;}
.ls1a_c02212{letter-spacing:0.006400pt;}
.ls14_c02212{letter-spacing:0.011712pt;}
.ls1_c02212{letter-spacing:0.023424pt;}
.ls24_c02212{letter-spacing:0.029280pt;}
.ls11_c02212{letter-spacing:0.035136pt;}
.ls23_c02212{letter-spacing:0.046848pt;}
.ls2_c02212{letter-spacing:0.052704pt;}
.ls8_c02212{letter-spacing:0.058560pt;}
.ls3_c02212{letter-spacing:0.059584pt;}
.lsf_c02212{letter-spacing:0.064416pt;}
.ls4_c02212{letter-spacing:0.068096pt;}
.lsc_c02212{letter-spacing:0.070272pt;}
.ls22_c02212{letter-spacing:0.076128pt;}
.ls1e_c02212{letter-spacing:0.081984pt;}
.ls5_c02212{letter-spacing:0.093696pt;}
.lse_c02212{letter-spacing:0.099552pt;}
.ls9_c02212{letter-spacing:0.111264pt;}
.lsa_c02212{letter-spacing:0.122976pt;}
.ls10_c02212{letter-spacing:0.128832pt;}
.ls0_c02212{letter-spacing:0.134688pt;}
.ls6_c02212{letter-spacing:0.140544pt;}
.lsb_c02212{letter-spacing:0.152256pt;}
.lsd_c02212{letter-spacing:0.158112pt;}
.ls1f_c02212{letter-spacing:135.841632pt;}
.ls17_c02212{letter-spacing:153.440000pt;}
.ls25_c02212{letter-spacing:153.760992pt;}
.ls15_c02212{letter-spacing:165.279744pt;}
.ls7_c02212{letter-spacing:182.880000pt;}
.ls27_c02212{letter-spacing:183.199104pt;}
.ls20_c02212{letter-spacing:209.117760pt;}
.ls26_c02212{letter-spacing:211.922784pt;}
.ls28_c02212{letter-spacing:227.037120pt;}
.ls16_c02212{letter-spacing:315.920000pt;}
.ls12_c02212{letter-spacing:579.360000pt;}
.ls18_c02212{letter-spacing:612.960000pt;}
.ws41_c02212{word-spacing:-0.720288pt;}
.ws27_c02212{word-spacing:-0.148960pt;}
.ws22_c02212{word-spacing:-0.044800pt;}
.ws2b_c02212{word-spacing:-0.029280pt;}
.ws28_c02212{word-spacing:-0.011712pt;}
.ws23_c02212{word-spacing:-0.006400pt;}
.ws21_c02212{word-spacing:0.000000pt;}
.ws2a_c02212{word-spacing:0.023424pt;}
.ws25_c02212{word-spacing:0.029280pt;}
.ws26_c02212{word-spacing:0.046848pt;}
.ws3f_c02212{word-spacing:0.052704pt;}
.ws24_c02212{word-spacing:0.058560pt;}
.ws3a_c02212{word-spacing:0.070272pt;}
.ws38_c02212{word-spacing:0.076128pt;}
.ws39_c02212{word-spacing:0.081984pt;}
.ws36_c02212{word-spacing:0.087840pt;}
.wse_c02212{word-spacing:60.096224pt;}
.wsc_c02212{word-spacing:60.137216pt;}
.ws3c_c02212{word-spacing:61.042944pt;}
.ws5_c02212{word-spacing:71.326560pt;}
.ws32_c02212{word-spacing:71.648160pt;}
.wsb_c02212{word-spacing:71.798240pt;}
.ws42_c02212{word-spacing:71.970240pt;}
.wsd_c02212{word-spacing:75.167616pt;}
.wsa_c02212{word-spacing:77.697280pt;}
.ws20_c02212{word-spacing:78.014496pt;}
.ws1e_c02212{word-spacing:78.061344pt;}
.ws14_c02212{word-spacing:79.607552pt;}
.ws3d_c02212{word-spacing:79.922688pt;}
.ws9_c02212{word-spacing:86.007552pt;}
.ws1c_c02212{word-spacing:86.046560pt;}
.ws40_c02212{word-spacing:86.645376pt;}
.ws3b_c02212{word-spacing:94.328448pt;}
.ws12_c02212{word-spacing:100.788096pt;}
.ws4_c02212{word-spacing:108.725664pt;}
.ws1b_c02212{word-spacing:108.727552pt;}
.ws1f_c02212{word-spacing:108.769344pt;}
.ws2d_c02212{word-spacing:109.050432pt;}
.ws29_c02212{word-spacing:109.062144pt;}
.ws18_c02212{word-spacing:115.480640pt;}
.wsf_c02212{word-spacing:115.482528pt;}
.ws3_c02212{word-spacing:115.485408pt;}
.ws1a_c02212{word-spacing:115.488384pt;}
.ws8_c02212{word-spacing:115.508832pt;}
.ws10_c02212{word-spacing:115.587936pt;}
.ws7_c02212{word-spacing:119.327712pt;}
.ws34_c02212{word-spacing:123.491328pt;}
.ws2f_c02212{word-spacing:123.760704pt;}
.ws1_c02212{word-spacing:130.314048pt;}
.ws30_c02212{word-spacing:138.160608pt;}
.ws11_c02212{word-spacing:138.165664pt;}
.ws2c_c02212{word-spacing:138.500256pt;}
.ws0_c02212{word-spacing:144.605408pt;}
.ws16_c02212{word-spacing:144.628832pt;}
.ws6_c02212{word-spacing:148.443744pt;}
.ws13_c02212{word-spacing:148.467168pt;}
.ws2_c02212{word-spacing:148.555008pt;}
.ws19_c02212{word-spacing:152.923584pt;}
.ws33_c02212{word-spacing:152.941152pt;}
.ws2e_c02212{word-spacing:167.955936pt;}
.ws1d_c02212{word-spacing:174.154048pt;}
.ws17_c02212{word-spacing:182.068896pt;}
.ws15_c02212{word-spacing:194.092064pt;}
.ws35_c02212{word-spacing:211.764672pt;}
.ws37_c02212{word-spacing:211.799808pt;}
.ws3e_c02212{word-spacing:226.164576pt;}
.ws31_c02212{word-spacing:232.617888pt;}
._37_c02212{margin-left:-183.490720pt;}
._27_c02212{margin-left:-165.197760pt;}
._1a_c02212{margin-left:-154.931168pt;}
._31_c02212{margin-left:-153.602880pt;}
._9_c02212{margin-left:-135.683520pt;}
._10_c02212{margin-left:-23.342016pt;}
._38_c02212{margin-left:-7.543712pt;}
._28_c02212{margin-left:-1.030656pt;}
._13_c02212{width:6.119520pt;}
._a_c02212{width:16.800864pt;}
._16_c02212{width:49.928256pt;}
._36_c02212{width:63.678464pt;}
._34_c02212{width:71.636448pt;}
._3_c02212{width:72.549568pt;}
._5_c02212{width:74.469568pt;}
._1c_c02212{width:77.669152pt;}
._1b_c02212{width:89.665376pt;}
._3a_c02212{width:94.720800pt;}
._29_c02212{width:100.371808pt;}
._32_c02212{width:101.777280pt;}
._18_c02212{width:104.640864pt;}
._d_c02212{width:105.940896pt;}
._2_c02212{width:116.720000pt;}
._19_c02212{width:120.639456pt;}
._6_c02212{width:122.713600pt;}
._33_c02212{width:123.860256pt;}
._2e_c02212{width:125.029568pt;}
._4_c02212{width:129.433600pt;}
._7_c02212{width:134.000000pt;}
._22_c02212{width:135.379008pt;}
._17_c02212{width:138.245664pt;}
._23_c02212{width:152.578080pt;}
._c_c02212{width:159.347616pt;}
._1_c02212{width:162.869056pt;}
._8_c02212{width:170.497440pt;}
._2f_c02212{width:182.069056pt;}
._2d_c02212{width:185.590848pt;}
._39_c02212{width:187.989440pt;}
._1d_c02212{width:198.249024pt;}
._30_c02212{width:199.619328pt;}
._e_c02212{width:201.487392pt;}
._20_c02212{width:208.883520pt;}
._2a_c02212{width:211.762944pt;}
._1e_c02212{width:214.710240pt;}
._f_c02212{width:217.960320pt;}
._3c_c02212{width:226.802880pt;}
._24_c02212{width:230.609280pt;}
._12_c02212{width:243.966816pt;}
._b_c02212{width:257.142816pt;}
._15_c02212{width:273.299520pt;}
._21_c02212{width:282.105856pt;}
._35_c02212{width:305.958432pt;}
._0_c02212{width:316.025856pt;}
._2b_c02212{width:334.160000pt;}
._1f_c02212{width:560.244800pt;}
._2c_c02212{width:579.360000pt;}
._26_c02212{width:585.594144pt;}
._3b_c02212{width:593.844800pt;}
._25_c02212{width:709.414336pt;}
._14_c02212{width:823.993984pt;}
._11_c02212{width:1006.373248pt;}
.fs3_c02212{font-size:42.560000pt;}
.fs1_c02212{font-size:48.000000pt;}
.fs2_c02212{font-size:58.560000pt;}
.fs0_c02212{font-size:64.000000pt;}
.y0_c02212{bottom:0.000000pt;}
.y3_c02212{bottom:50.987067pt;}
.y2_c02212{bottom:69.387067pt;}
.y40_c02212{bottom:102.987067pt;}
.y3f_c02212{bottom:116.747467pt;}
.y3e_c02212{bottom:130.587067pt;}
.y3d_c02212{bottom:145.307067pt;}
.y3c_c02212{bottom:162.107200pt;}
.y3b_c02212{bottom:178.987067pt;}
.y3a_c02212{bottom:195.867067pt;}
.y39_c02212{bottom:195.867608pt;}
.y38_c02212{bottom:213.066627pt;}
.y37_c02212{bottom:229.946627pt;}
.y36_c02212{bottom:246.827667pt;}
.y35_c02212{bottom:263.627147pt;}
.y34_c02212{bottom:280.507147pt;}
.y33_c02212{bottom:297.387147pt;}
.y32_c02212{bottom:314.267067pt;}
.y31_c02212{bottom:330.187200pt;}
.y2f_c02212{bottom:343.387067pt;}
.y30_c02212{bottom:343.467067pt;}
.y2d_c02212{bottom:360.267067pt;}
.y2e_c02212{bottom:377.147200pt;}
.y2c_c02212{bottom:395.387200pt;}
.y2b_c02212{bottom:409.226800pt;}
.y2a_c02212{bottom:422.987200pt;}
.y29_c02212{bottom:437.707067pt;}
.y28_c02212{bottom:454.587067pt;}
.y27_c02212{bottom:471.467067pt;}
.y26_c02212{bottom:488.347067pt;}
.y25_c02212{bottom:488.347475pt;}
.y24_c02212{bottom:505.547147pt;}
.y23_c02212{bottom:522.346627pt;}
.y22_c02212{bottom:539.227147pt;}
.y21_c02212{bottom:556.107147pt;}
.y20_c02212{bottom:572.987147pt;}
.y1f_c02212{bottom:589.867667pt;}
.y1e_c02212{bottom:606.667067pt;}
.y1d_c02212{bottom:622.667067pt;}
.y1c_c02212{bottom:635.867067pt;}
.y1a_c02212{bottom:652.667067pt;}
.y1b_c02212{bottom:669.547067pt;}
.y19_c02212{bottom:687.867067pt;}
.y18_c02212{bottom:701.627467pt;}
.y17_c02212{bottom:715.467067pt;}
.y16_c02212{bottom:730.187067pt;}
.y15_c02212{bottom:746.987200pt;}
.y14_c02212{bottom:763.867067pt;}
.y13_c02212{bottom:780.747067pt;}
.y11_c02212{bottom:797.947067pt;}
.y12_c02212{bottom:798.027067pt;}
.y10_c02212{bottom:814.827067pt;}
.yf_c02212{bottom:831.707067pt;}
.ye_c02212{bottom:848.587067pt;}
.yd_c02212{bottom:865.387067pt;}
.yc_c02212{bottom:882.267067pt;}
.yb_c02212{bottom:899.147067pt;}
.ya_c02212{bottom:915.067067pt;}
.y9_c02212{bottom:928.267067pt;}
.y7_c02212{bottom:945.147067pt;}
.y8_c02212{bottom:962.027067pt;}
.y6_c02212{bottom:979.147067pt;}
.y5_c02212{bottom:998.667067pt;}
.y4_c02212{bottom:1013.307067pt;}
.y1_c02212{bottom:1060.587067pt;}
.h5_c02212{height:37.801094pt;}
.h3_c02212{height:42.632812pt;}
.h6_c02212{height:51.382969pt;}
.h4_c02212{height:52.012031pt;}
.h2_c02212{height:56.156250pt;}
.h1_c02212{height:56.843750pt;}
.h0_c02212{height:1122.666667pt;}
.w1_c02212{width:793.333333pt;}
.w0_c02212{width:793.626667pt;}
.x0_c02212{left:0.000000pt;}
.x1_c02212{left:113.440000pt;}
.x3_c02212{left:120.560000pt;}
.xf_c02212{left:216.320000pt;}
.x5_c02212{left:224.400000pt;}
.x14_c02212{left:240.320000pt;}
.x4_c02212{left:260.720000pt;}
.x13_c02212{left:271.200000pt;}
.xc_c02212{left:326.240288pt;}
.xd_c02212{left:333.599816pt;}
.x12_c02212{left:340.961528pt;}
.xe_c02212{left:377.200000pt;}
.x7_c02212{left:380.320000pt;}
.x2_c02212{left:384.960000pt;}
.x10_c02212{left:387.920000pt;}
.x8_c02212{left:393.200000pt;}
.x6_c02212{left:411.920000pt;}
.x15_c02212{left:434.720000pt;}
.xa_c02212{left:521.200000pt;}
.x11_c02212{left:523.200000pt;}
.x16_c02212{left:528.080000pt;}
.xb_c02212{left:540.560000pt;}
.x17_c02212{left:547.440000pt;}
.x9_c02212{left:567.840000pt;}
.x18_c02212{left:645.520848pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe67c46b5c4433d91512528d.woff2')format("woff");}.ff1_c02213{font-family:ff1_c02213;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02213;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.va_c02213{vertical-align:-6.841800px;}
.v4_c02213{vertical-align:-3.960000px;}
.v3_c02213{vertical-align:-2.520000px;}
.v5_c02213{vertical-align:-1.440000px;}
.v0_c02213{vertical-align:0.000000px;}
.vc_c02213{vertical-align:1.441800px;}
.v7_c02213{vertical-align:2.520000px;}
.v8_c02213{vertical-align:3.960000px;}
.v1_c02213{vertical-align:5.400000px;}
.v6_c02213{vertical-align:6.840000px;}
.vb_c02213{vertical-align:7.920600px;}
.v9_c02213{vertical-align:9.720000px;}
.v2_c02213{vertical-align:37.080000px;}
.ls2c_c02213{letter-spacing:-0.086184px;}
.ls2d_c02213{letter-spacing:-0.063180px;}
.ls28_c02213{letter-spacing:-0.043200px;}
.ls20_c02213{letter-spacing:-0.026352px;}
.ls23_c02213{letter-spacing:-0.023940px;}
.ls2a_c02213{letter-spacing:-0.019152px;}
.ls29_c02213{letter-spacing:-0.010800px;}
.ls2f_c02213{letter-spacing:-0.009576px;}
.ls30_c02213{letter-spacing:-0.007200px;}
.ls26_c02213{letter-spacing:-0.006588px;}
.ls31_c02213{letter-spacing:-0.004788px;}
.ls1f_c02213{letter-spacing:0.000000px;}
.ls21_c02213{letter-spacing:0.006588px;}
.lsd_c02213{letter-spacing:0.007200px;}
.lse_c02213{letter-spacing:0.010800px;}
.ls18_c02213{letter-spacing:0.012636px;}
.ls1e_c02213{letter-spacing:0.019152px;}
.ls10_c02213{letter-spacing:0.028728px;}
.lsc_c02213{letter-spacing:0.028800px;}
.ls12_c02213{letter-spacing:0.032400px;}
.ls15_c02213{letter-spacing:0.037800px;}
.lsb_c02213{letter-spacing:0.039528px;}
.lsf_c02213{letter-spacing:0.043092px;}
.ls14_c02213{letter-spacing:0.043200px;}
.ls22_c02213{letter-spacing:0.052704px;}
.ls6_c02213{letter-spacing:0.059292px;}
.ls5_c02213{letter-spacing:0.065880px;}
.ls1_c02213{letter-spacing:0.067032px;}
.ls2_c02213{letter-spacing:0.076608px;}
.ls8_c02213{letter-spacing:0.079056px;}
.ls19_c02213{letter-spacing:0.081396px;}
.ls11_c02213{letter-spacing:0.092664px;}
.ls3_c02213{letter-spacing:0.105408px;}
.ls13_c02213{letter-spacing:0.110124px;}
.lsa_c02213{letter-spacing:0.111996px;}
.ls1c_c02213{letter-spacing:0.124488px;}
.ls7_c02213{letter-spacing:0.125172px;}
.ls1d_c02213{letter-spacing:0.134064px;}
.ls24_c02213{letter-spacing:0.138348px;}
.ls27_c02213{letter-spacing:0.151200px;}
.ls0_c02213{letter-spacing:0.151524px;}
.ls4_c02213{letter-spacing:0.158112px;}
.ls2b_c02213{letter-spacing:0.167580px;}
.ls9_c02213{letter-spacing:0.177876px;}
.ls1a_c02213{letter-spacing:0.181944px;}
.ls17_c02213{letter-spacing:0.205884px;}
.ls2e_c02213{letter-spacing:143.818200px;}
.ls1b_c02213{letter-spacing:156.421800px;}
.ls16_c02213{letter-spacing:200.790000px;}
.ls25_c02213{letter-spacing:238.413132px;}
.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;}
}
.ws18_c02213{word-spacing:-0.296856px;}
.ws17_c02213{word-spacing:-0.272916px;}
.ws1f_c02213{word-spacing:-0.225036px;}
.ws1e_c02213{word-spacing:-0.215460px;}
.ws20_c02213{word-spacing:-0.172368px;}
.ws6_c02213{word-spacing:-0.167580px;}
.ws22_c02213{word-spacing:-0.119700px;}
.ws14_c02213{word-spacing:-0.115200px;}
.ws21_c02213{word-spacing:-0.110124px;}
.ws1b_c02213{word-spacing:-0.101088px;}
.ws1c_c02213{word-spacing:-0.081396px;}
.ws1a_c02213{word-spacing:-0.079200px;}
.ws3_c02213{word-spacing:-0.050400px;}
.wsc_c02213{word-spacing:-0.032940px;}
.ws16_c02213{word-spacing:-0.025272px;}
.ws7_c02213{word-spacing:-0.013176px;}
.ws15_c02213{word-spacing:-0.007200px;}
.ws2_c02213{word-spacing:0.000000px;}
.ws1d_c02213{word-spacing:0.007200px;}
.ws9_c02213{word-spacing:0.026352px;}
.wsb_c02213{word-spacing:0.032940px;}
.ws5_c02213{word-spacing:0.039528px;}
.ws10_c02213{word-spacing:0.052704px;}
.ws4_c02213{word-spacing:0.085644px;}
.ws12_c02213{word-spacing:0.098820px;}
.ws1_c02213{word-spacing:48.169440px;}
.ws0_c02213{word-spacing:75.169440px;}
.wsf_c02213{word-spacing:80.604180px;}
.wsa_c02213{word-spacing:122.694912px;}
.wsd_c02213{word-spacing:139.230792px;}
.ws8_c02213{word-spacing:155.812788px;}
.ws23_c02213{word-spacing:156.378600px;}
.ws19_c02213{word-spacing:183.016800px;}
.ws11_c02213{word-spacing:238.235256px;}
.ws13_c02213{word-spacing:238.274784px;}
.wse_c02213{word-spacing:261.695124px;}
._a_c02213{margin-left:-174.297564px;}
._9_c02213{margin-left:-42.947172px;}
._21_c02213{margin-left:-27.043200px;}
._22_c02213{margin-left:-10.081800px;}
._e_c02213{margin-left:-1.296000px;}
._23_c02213{width:17.015400px;}
._30_c02213{width:26.233200px;}
._29_c02213{width:42.838200px;}
._2e_c02213{width:44.192592px;}
._18_c02213{width:51.660000px;}
._1c_c02213{width:61.344000px;}
._24_c02213{width:72.604440px;}
._1e_c02213{width:75.420000px;}
._25_c02213{width:77.310180px;}
._1b_c02213{width:82.980000px;}
._1f_c02213{width:84.060000px;}
._f_c02213{width:85.677804px;}
._b_c02213{width:87.377796px;}
._31_c02213{width:88.426080px;}
._16_c02213{width:100.238400px;}
._19_c02213{width:104.479380px;}
._15_c02213{width:106.821360px;}
._14_c02213{width:108.964440px;}
._17_c02213{width:113.329440px;}
._20_c02213{width:115.329276px;}
._2a_c02213{width:116.424000px;}
._13_c02213{width:118.939212px;}
._10_c02213{width:122.220000px;}
._11_c02213{width:127.980000px;}
._26_c02213{width:130.157064px;}
._2_c02213{width:131.310000px;}
._1a_c02213{width:132.915600px;}
._2d_c02213{width:136.200168px;}
._12_c02213{width:139.258944px;}
._2b_c02213{width:143.820000px;}
._1_c02213{width:145.612800px;}
._2c_c02213{width:149.146920px;}
._27_c02213{width:152.642160px;}
._1d_c02213{width:155.606400px;}
._2f_c02213{width:157.727016px;}
._5_c02213{width:179.266068px;}
._28_c02213{width:182.665800px;}
._c_c02213{width:223.030152px;}
._3_c02213{width:224.571744px;}
._6_c02213{width:226.673316px;}
._d_c02213{width:241.549020px;}
._4_c02213{width:289.285668px;}
._8_c02213{width:307.580544px;}
._0_c02213{width:317.369088px;}
._7_c02213{width:344.203236px;}
.fc0_c02213{color:rgb(0,0,0);}
.fs5_c02213{font-size:11.880000px;}
.fs4_c02213{font-size:42.120000px;}
.fs3_c02213{font-size:47.880000px;}
.fs1_c02213{font-size:54.000000px;}
.fs2_c02213{font-size:65.880000px;}
.fs0_c02213{font-size:72.000000px;}
.y0_c02213{bottom:0.000000px;}
.y3_c02213{bottom:57.360450px;}
.y2_c02213{bottom:78.060450px;}
.y4b_c02213{bottom:124.230450px;}
.y4a_c02213{bottom:140.430450px;}
.y49_c02213{bottom:158.700600px;}
.y48_c02213{bottom:174.270450px;}
.y47_c02213{bottom:174.629550px;}
.y46_c02213{bottom:193.170450px;}
.y45_c02213{bottom:193.620900px;}
.y44_c02213{bottom:212.160450px;}
.y43_c02213{bottom:212.519550px;}
.y42_c02213{bottom:231.150450px;}
.y41_c02213{bottom:231.509550px;}
.y40_c02213{bottom:250.140450px;}
.y3f_c02213{bottom:250.500450px;}
.y3e_c02213{bottom:269.490450px;}
.y3d_c02213{bottom:288.120450px;}
.y3c_c02213{bottom:288.480450px;}
.y3b_c02213{bottom:308.100450px;}
.y3a_c02213{bottom:327.270450px;}
.y39_c02213{bottom:343.740450px;}
.y38_c02213{bottom:364.530450px;}
.y37_c02213{bottom:373.350450px;}
.y36_c02213{bottom:373.709700px;}
.y35_c02213{bottom:392.340600px;}
.y34_c02213{bottom:392.699550px;}
.y33_c02213{bottom:411.330450px;}
.y32_c02213{bottom:411.689700px;}
.y31_c02213{bottom:430.230450px;}
.y30_c02213{bottom:430.680900px;}
.y2f_c02213{bottom:449.220450px;}
.y2e_c02213{bottom:449.580450px;}
.y2d_c02213{bottom:468.570450px;}
.y2c_c02213{bottom:487.200600px;}
.y2b_c02213{bottom:487.560450px;}
.y2a_c02213{bottom:506.550450px;}
.y29_c02213{bottom:526.440450px;}
.y28_c02213{bottom:542.910450px;}
.y27_c02213{bottom:563.700450px;}
.y26_c02213{bottom:572.430450px;}
.y25_c02213{bottom:572.880450px;}
.y24_c02213{bottom:592.500450px;}
.y23_c02213{bottom:611.670450px;}
.y22_c02213{bottom:628.140450px;}
.y21_c02213{bottom:648.930450px;}
.y20_c02213{bottom:657.750450px;}
.y1f_c02213{bottom:658.110450px;}
.y1e_c02213{bottom:677.730450px;}
.y1d_c02213{bottom:695.370450px;}
.y1c_c02213{bottom:704.640450px;}
.y1b_c02213{bottom:721.110450px;}
.y1a_c02213{bottom:741.270900px;}
.y19_c02213{bottom:756.840450px;}
.y18_c02213{bottom:773.490450px;}
.y17_c02213{bottom:794.730450px;}
.y16_c02213{bottom:815.250450px;}
.y15_c02213{bottom:830.730900px;}
.y14_c02213{bottom:846.300450px;}
.y13_c02213{bottom:862.860600px;}
.y12_c02213{bottom:881.760450px;}
.y11_c02213{bottom:900.750450px;}
.y10_c02213{bottom:919.740450px;}
.yf_c02213{bottom:939.090450px;}
.ye_c02213{bottom:958.080450px;}
.yd_c02213{bottom:977.070450px;}
.yc_c02213{bottom:995.970450px;}
.yb_c02213{bottom:1014.960450px;}
.ya_c02213{bottom:1033.950450px;}
.y9_c02213{bottom:1052.940450px;}
.y8_c02213{bottom:1070.850450px;}
.y7_c02213{bottom:1085.700450px;}
.y5_c02213{bottom:1104.690450px;}
.y6_c02213{bottom:1123.680450px;}
.y4_c02213{bottom:1144.200450px;}
.y1_c02213{bottom:1193.160450px;}
.h9_c02213{height:10.551621px;}
.h5_c02213{height:42.526230px;}
.h3_c02213{height:47.961914px;}
.h6_c02213{height:48.570293px;}
.h4_c02213{height:58.513535px;}
.he_c02213{height:61.033535px;}
.hb_c02213{height:61.034135px;}
.hc_c02213{height:61.394135px;}
.hd_c02213{height:62.472935px;}
.h8_c02213{height:62.473535px;}
.ha_c02213{height:62.833535px;}
.h2_c02213{height:63.175781px;}
.h1_c02213{height:63.949219px;}
.h7_c02213{height:85.041914px;}
.h0_c02213{height:1263.000000px;}
.w1_c02213{width:892.500000px;}
.w0_c02213{width:892.830000px;}
.x0_c02213{left:0.000000px;}
.x1_c02213{left:127.620000px;}
.x3_c02213{left:135.630000px;}
.xd_c02213{left:141.480000px;}
.x9_c02213{left:143.910000px;}
.xb_c02213{left:165.060000px;}
.xc_c02213{left:220.680000px;}
.x5_c02213{left:242.460000px;}
.x6_c02213{left:267.120000px;}
.x4_c02213{left:293.310000px;}
.x8_c02213{left:367.020324px;}
.x7_c02213{left:375.299793px;}
.x2_c02213{left:433.080000px;}
.xa_c02213{left:576.900000px;}
@media print{
.va_c02213{vertical-align:-6.081600pt;}
.v4_c02213{vertical-align:-3.520000pt;}
.v3_c02213{vertical-align:-2.240000pt;}
.v5_c02213{vertical-align:-1.280000pt;}
.v0_c02213{vertical-align:0.000000pt;}
.vc_c02213{vertical-align:1.281600pt;}
.v7_c02213{vertical-align:2.240000pt;}
.v8_c02213{vertical-align:3.520000pt;}
.v1_c02213{vertical-align:4.800000pt;}
.v6_c02213{vertical-align:6.080000pt;}
.vb_c02213{vertical-align:7.040533pt;}
.v9_c02213{vertical-align:8.640000pt;}
.v2_c02213{vertical-align:32.960000pt;}
.ls2c_c02213{letter-spacing:-0.076608pt;}
.ls2d_c02213{letter-spacing:-0.056160pt;}
.ls28_c02213{letter-spacing:-0.038400pt;}
.ls20_c02213{letter-spacing:-0.023424pt;}
.ls23_c02213{letter-spacing:-0.021280pt;}
.ls2a_c02213{letter-spacing:-0.017024pt;}
.ls29_c02213{letter-spacing:-0.009600pt;}
.ls2f_c02213{letter-spacing:-0.008512pt;}
.ls30_c02213{letter-spacing:-0.006400pt;}
.ls26_c02213{letter-spacing:-0.005856pt;}
.ls31_c02213{letter-spacing:-0.004256pt;}
.ls1f_c02213{letter-spacing:0.000000pt;}
.ls21_c02213{letter-spacing:0.005856pt;}
.lsd_c02213{letter-spacing:0.006400pt;}
.lse_c02213{letter-spacing:0.009600pt;}
.ls18_c02213{letter-spacing:0.011232pt;}
.ls1e_c02213{letter-spacing:0.017024pt;}
.ls10_c02213{letter-spacing:0.025536pt;}
.lsc_c02213{letter-spacing:0.025600pt;}
.ls12_c02213{letter-spacing:0.028800pt;}
.ls15_c02213{letter-spacing:0.033600pt;}
.lsb_c02213{letter-spacing:0.035136pt;}
.lsf_c02213{letter-spacing:0.038304pt;}
.ls14_c02213{letter-spacing:0.038400pt;}
.ls22_c02213{letter-spacing:0.046848pt;}
.ls6_c02213{letter-spacing:0.052704pt;}
.ls5_c02213{letter-spacing:0.058560pt;}
.ls1_c02213{letter-spacing:0.059584pt;}
.ls2_c02213{letter-spacing:0.068096pt;}
.ls8_c02213{letter-spacing:0.070272pt;}
.ls19_c02213{letter-spacing:0.072352pt;}
.ls11_c02213{letter-spacing:0.082368pt;}
.ls3_c02213{letter-spacing:0.093696pt;}
.ls13_c02213{letter-spacing:0.097888pt;}
.lsa_c02213{letter-spacing:0.099552pt;}
.ls1c_c02213{letter-spacing:0.110656pt;}
.ls7_c02213{letter-spacing:0.111264pt;}
.ls1d_c02213{letter-spacing:0.119168pt;}
.ls24_c02213{letter-spacing:0.122976pt;}
.ls27_c02213{letter-spacing:0.134400pt;}
.ls0_c02213{letter-spacing:0.134688pt;}
.ls4_c02213{letter-spacing:0.140544pt;}
.ls2b_c02213{letter-spacing:0.148960pt;}
.ls9_c02213{letter-spacing:0.158112pt;}
.ls1a_c02213{letter-spacing:0.161728pt;}
.ls17_c02213{letter-spacing:0.183008pt;}
.ls2e_c02213{letter-spacing:127.838400pt;}
.ls1b_c02213{letter-spacing:139.041600pt;}
.ls16_c02213{letter-spacing:178.480000pt;}
.ls25_c02213{letter-spacing:211.922784pt;}
.ws18_c02213{word-spacing:-0.263872pt;}
.ws17_c02213{word-spacing:-0.242592pt;}
.ws1f_c02213{word-spacing:-0.200032pt;}
.ws1e_c02213{word-spacing:-0.191520pt;}
.ws20_c02213{word-spacing:-0.153216pt;}
.ws6_c02213{word-spacing:-0.148960pt;}
.ws22_c02213{word-spacing:-0.106400pt;}
.ws14_c02213{word-spacing:-0.102400pt;}
.ws21_c02213{word-spacing:-0.097888pt;}
.ws1b_c02213{word-spacing:-0.089856pt;}
.ws1c_c02213{word-spacing:-0.072352pt;}
.ws1a_c02213{word-spacing:-0.070400pt;}
.ws3_c02213{word-spacing:-0.044800pt;}
.wsc_c02213{word-spacing:-0.029280pt;}
.ws16_c02213{word-spacing:-0.022464pt;}
.ws7_c02213{word-spacing:-0.011712pt;}
.ws15_c02213{word-spacing:-0.006400pt;}
.ws2_c02213{word-spacing:0.000000pt;}
.ws1d_c02213{word-spacing:0.006400pt;}
.ws9_c02213{word-spacing:0.023424pt;}
.wsb_c02213{word-spacing:0.029280pt;}
.ws5_c02213{word-spacing:0.035136pt;}
.ws10_c02213{word-spacing:0.046848pt;}
.ws4_c02213{word-spacing:0.076128pt;}
.ws12_c02213{word-spacing:0.087840pt;}
.ws1_c02213{word-spacing:42.817280pt;}
.ws0_c02213{word-spacing:66.817280pt;}
.wsf_c02213{word-spacing:71.648160pt;}
.wsa_c02213{word-spacing:109.062144pt;}
.wsd_c02213{word-spacing:123.760704pt;}
.ws8_c02213{word-spacing:138.500256pt;}
.ws23_c02213{word-spacing:139.003200pt;}
.ws19_c02213{word-spacing:162.681600pt;}
.ws11_c02213{word-spacing:211.764672pt;}
.ws13_c02213{word-spacing:211.799808pt;}
.wse_c02213{word-spacing:232.617888pt;}
._a_c02213{margin-left:-154.931168pt;}
._9_c02213{margin-left:-38.175264pt;}
._21_c02213{margin-left:-24.038400pt;}
._22_c02213{margin-left:-8.961600pt;}
._e_c02213{margin-left:-1.152000pt;}
._23_c02213{width:15.124800pt;}
._30_c02213{width:23.318400pt;}
._29_c02213{width:38.078400pt;}
._2e_c02213{width:39.282304pt;}
._18_c02213{width:45.920000pt;}
._1c_c02213{width:54.528000pt;}
._24_c02213{width:64.537280pt;}
._1e_c02213{width:67.040000pt;}
._25_c02213{width:68.720160pt;}
._1b_c02213{width:73.760000pt;}
._1f_c02213{width:74.720000pt;}
._f_c02213{width:76.158048pt;}
._b_c02213{width:77.669152pt;}
._31_c02213{width:78.600960pt;}
._16_c02213{width:89.100800pt;}
._19_c02213{width:92.870560pt;}
._15_c02213{width:94.952320pt;}
._14_c02213{width:96.857280pt;}
._17_c02213{width:100.737280pt;}
._20_c02213{width:102.514912pt;}
._2a_c02213{width:103.488000pt;}
._13_c02213{width:105.723744pt;}
._10_c02213{width:108.640000pt;}
._11_c02213{width:113.760000pt;}
._26_c02213{width:115.695168pt;}
._2_c02213{width:116.720000pt;}
._1a_c02213{width:118.147200pt;}
._2d_c02213{width:121.066816pt;}
._12_c02213{width:123.785728pt;}
._2b_c02213{width:127.840000pt;}
._1_c02213{width:129.433600pt;}
._2c_c02213{width:132.575040pt;}
._27_c02213{width:135.681920pt;}
._1d_c02213{width:138.316800pt;}
._2f_c02213{width:140.201792pt;}
._5_c02213{width:159.347616pt;}
._28_c02213{width:162.369600pt;}
._c_c02213{width:198.249024pt;}
._3_c02213{width:199.619328pt;}
._6_c02213{width:201.487392pt;}
._d_c02213{width:214.710240pt;}
._4_c02213{width:257.142816pt;}
._8_c02213{width:273.404928pt;}
._0_c02213{width:282.105856pt;}
._7_c02213{width:305.958432pt;}
.fs5_c02213{font-size:10.560000pt;}
.fs4_c02213{font-size:37.440000pt;}
.fs3_c02213{font-size:42.560000pt;}
.fs1_c02213{font-size:48.000000pt;}
.fs2_c02213{font-size:58.560000pt;}
.fs0_c02213{font-size:64.000000pt;}
.y0_c02213{bottom:0.000000pt;}
.y3_c02213{bottom:50.987067pt;}
.y2_c02213{bottom:69.387067pt;}
.y4b_c02213{bottom:110.427067pt;}
.y4a_c02213{bottom:124.827067pt;}
.y49_c02213{bottom:141.067200pt;}
.y48_c02213{bottom:154.907067pt;}
.y47_c02213{bottom:155.226267pt;}
.y46_c02213{bottom:171.707067pt;}
.y45_c02213{bottom:172.107467pt;}
.y44_c02213{bottom:188.587067pt;}
.y43_c02213{bottom:188.906267pt;}
.y42_c02213{bottom:205.467067pt;}
.y41_c02213{bottom:205.786267pt;}
.y40_c02213{bottom:222.347067pt;}
.y3f_c02213{bottom:222.667067pt;}
.y3e_c02213{bottom:239.547067pt;}
.y3d_c02213{bottom:256.107067pt;}
.y3c_c02213{bottom:256.427067pt;}
.y3b_c02213{bottom:273.867067pt;}
.y3a_c02213{bottom:290.907067pt;}
.y39_c02213{bottom:305.547067pt;}
.y38_c02213{bottom:324.027067pt;}
.y37_c02213{bottom:331.867067pt;}
.y36_c02213{bottom:332.186400pt;}
.y35_c02213{bottom:348.747200pt;}
.y34_c02213{bottom:349.066267pt;}
.y33_c02213{bottom:365.627067pt;}
.y32_c02213{bottom:365.946400pt;}
.y31_c02213{bottom:382.427067pt;}
.y30_c02213{bottom:382.827467pt;}
.y2f_c02213{bottom:399.307067pt;}
.y2e_c02213{bottom:399.627067pt;}
.y2d_c02213{bottom:416.507067pt;}
.y2c_c02213{bottom:433.067200pt;}
.y2b_c02213{bottom:433.387067pt;}
.y2a_c02213{bottom:450.267067pt;}
.y29_c02213{bottom:467.947067pt;}
.y28_c02213{bottom:482.587067pt;}
.y27_c02213{bottom:501.067067pt;}
.y26_c02213{bottom:508.827067pt;}
.y25_c02213{bottom:509.227067pt;}
.y24_c02213{bottom:526.667067pt;}
.y23_c02213{bottom:543.707067pt;}
.y22_c02213{bottom:558.347067pt;}
.y21_c02213{bottom:576.827067pt;}
.y20_c02213{bottom:584.667067pt;}
.y1f_c02213{bottom:584.987067pt;}
.y1e_c02213{bottom:602.427067pt;}
.y1d_c02213{bottom:618.107067pt;}
.y1c_c02213{bottom:626.347067pt;}
.y1b_c02213{bottom:640.987067pt;}
.y1a_c02213{bottom:658.907467pt;}
.y19_c02213{bottom:672.747067pt;}
.y18_c02213{bottom:687.547067pt;}
.y17_c02213{bottom:706.427067pt;}
.y16_c02213{bottom:724.667067pt;}
.y15_c02213{bottom:738.427467pt;}
.y14_c02213{bottom:752.267067pt;}
.y13_c02213{bottom:766.987200pt;}
.y12_c02213{bottom:783.787067pt;}
.y11_c02213{bottom:800.667067pt;}
.y10_c02213{bottom:817.547067pt;}
.yf_c02213{bottom:834.747067pt;}
.ye_c02213{bottom:851.627067pt;}
.yd_c02213{bottom:868.507067pt;}
.yc_c02213{bottom:885.307067pt;}
.yb_c02213{bottom:902.187067pt;}
.ya_c02213{bottom:919.067067pt;}
.y9_c02213{bottom:935.947067pt;}
.y8_c02213{bottom:951.867067pt;}
.y7_c02213{bottom:965.067067pt;}
.y5_c02213{bottom:981.947067pt;}
.y6_c02213{bottom:998.827067pt;}
.y4_c02213{bottom:1017.067067pt;}
.y1_c02213{bottom:1060.587067pt;}
.h9_c02213{height:9.379219pt;}
.h5_c02213{height:37.801094pt;}
.h3_c02213{height:42.632812pt;}
.h6_c02213{height:43.173594pt;}
.h4_c02213{height:52.012031pt;}
.he_c02213{height:54.252031pt;}
.hb_c02213{height:54.252565pt;}
.hc_c02213{height:54.572565pt;}
.hd_c02213{height:55.531498pt;}
.h8_c02213{height:55.532031pt;}
.ha_c02213{height:55.852031pt;}
.h2_c02213{height:56.156250pt;}
.h1_c02213{height:56.843750pt;}
.h7_c02213{height:75.592813pt;}
.h0_c02213{height:1122.666667pt;}
.w1_c02213{width:793.333333pt;}
.w0_c02213{width:793.626667pt;}
.x0_c02213{left:0.000000pt;}
.x1_c02213{left:113.440000pt;}
.x3_c02213{left:120.560000pt;}
.xd_c02213{left:125.760000pt;}
.x9_c02213{left:127.920000pt;}
.xb_c02213{left:146.720000pt;}
.xc_c02213{left:196.160000pt;}
.x5_c02213{left:215.520000pt;}
.x6_c02213{left:237.440000pt;}
.x4_c02213{left:260.720000pt;}
.x8_c02213{left:326.240288pt;}
.x7_c02213{left:333.599816pt;}
.x2_c02213{left:384.960000pt;}
.xa_c02213{left:512.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_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_4b065d0c07f92238827ec4f1.woff2')format("woff");}.ff1_c02214{font-family:ff1_c02214;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02214;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v2_c02214{vertical-align:-57.960600px;}
.v1_c02214{vertical-align:-5.400000px;}
.v0_c02214{vertical-align:0.000000px;}
.v4_c02214{vertical-align:5.760600px;}
.v3_c02214{vertical-align:29.879400px;}
.v5_c02214{vertical-align:42.479400px;}
.ls20_c02214{letter-spacing:-0.388800px;}
.ls24_c02214{letter-spacing:-0.086184px;}
.ls1e_c02214{letter-spacing:-0.078156px;}
.ls26_c02214{letter-spacing:-0.063180px;}
.ls1f_c02214{letter-spacing:-0.059400px;}
.ls27_c02214{letter-spacing:-0.059292px;}
.ls23_c02214{letter-spacing:-0.043092px;}
.ls21_c02214{letter-spacing:-0.028800px;}
.ls1b_c02214{letter-spacing:-0.023940px;}
.ls25_c02214{letter-spacing:-0.008424px;}
.ls1d_c02214{letter-spacing:-0.006012px;}
.ls22_c02214{letter-spacing:-0.004788px;}
.ls1a_c02214{letter-spacing:0.000000px;}
.ls1c_c02214{letter-spacing:0.004788px;}
.lsc_c02214{letter-spacing:0.007200px;}
.ls7_c02214{letter-spacing:0.013176px;}
.ls12_c02214{letter-spacing:0.019152px;}
.ls15_c02214{letter-spacing:0.019764px;}
.ls16_c02214{letter-spacing:0.021600px;}
.ls18_c02214{letter-spacing:0.026352px;}
.ls14_c02214{letter-spacing:0.032940px;}
.ls0_c02214{letter-spacing:0.036000px;}
.ls4_c02214{letter-spacing:0.039528px;}
.ls11_c02214{letter-spacing:0.043092px;}
.ls2_c02214{letter-spacing:0.046116px;}
.lse_c02214{letter-spacing:0.052704px;}
.ls8_c02214{letter-spacing:0.059292px;}
.ls5_c02214{letter-spacing:0.065880px;}
.lsf_c02214{letter-spacing:0.072468px;}
.lsa_c02214{letter-spacing:0.079056px;}
.ls6_c02214{letter-spacing:0.118584px;}
.ls9_c02214{letter-spacing:0.138348px;}
.lsd_c02214{letter-spacing:0.151524px;}
.ls3_c02214{letter-spacing:0.158112px;}
.lsb_c02214{letter-spacing:0.177876px;}
.ls13_c02214{letter-spacing:0.181944px;}
.ls1_c02214{letter-spacing:129.150000px;}
.ls10_c02214{letter-spacing:130.500000px;}
.ls19_c02214{letter-spacing:158.219172px;}
.ls17_c02214{letter-spacing:158.221008px;}
.sc__c02214{text-shadow:none;}
.sc0_c02214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02214{-webkit-text-stroke:0px transparent;}
.sc0_c02214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02214{word-spacing:-18.036000px;}
.wsb_c02214{word-spacing:-12.151944px;}
.ws20_c02214{word-spacing:-0.272916px;}
.ws1e_c02214{word-spacing:-0.115200px;}
.ws11_c02214{word-spacing:-0.086400px;}
.ws1a_c02214{word-spacing:-0.064800px;}
.ws10_c02214{word-spacing:-0.050400px;}
.ws1f_c02214{word-spacing:-0.007200px;}
.wsf_c02214{word-spacing:0.000000px;}
.ws1c_c02214{word-spacing:0.019764px;}
.ws15_c02214{word-spacing:0.026352px;}
.ws1d_c02214{word-spacing:0.032940px;}
.ws1b_c02214{word-spacing:0.039528px;}
.ws12_c02214{word-spacing:0.046116px;}
.ws14_c02214{word-spacing:0.052704px;}
.ws21_c02214{word-spacing:0.059292px;}
.ws23_c02214{word-spacing:0.065880px;}
.ws17_c02214{word-spacing:0.079056px;}
.ws22_c02214{word-spacing:0.156600px;}
.ws7_c02214{word-spacing:79.872912px;}
.wse_c02214{word-spacing:79.879500px;}
.ws1_c02214{word-spacing:80.196372px;}
.wsd_c02214{word-spacing:107.983548px;}
.ws4_c02214{word-spacing:113.316372px;}
.ws19_c02214{word-spacing:132.754788px;}
.ws8_c02214{word-spacing:141.037668px;}
.wsc_c02214{word-spacing:141.039504px;}
.ws9_c02214{word-spacing:141.083316px;}
.ws6_c02214{word-spacing:141.083784px;}
.wsa_c02214{word-spacing:162.315144px;}
.ws13_c02214{word-spacing:165.530088px;}
.ws3_c02214{word-spacing:172.066608px;}
.ws18_c02214{word-spacing:198.674316px;}
.ws2_c02214{word-spacing:204.802380px;}
.ws5_c02214{word-spacing:204.826608px;}
.ws16_c02214{word-spacing:231.811956px;}
._17_c02214{width:1.695600px;}
._1a_c02214{width:63.334620px;}
._2a_c02214{width:65.448036px;}
._1e_c02214{width:72.790308px;}
._19_c02214{width:90.258912px;}
._1c_c02214{width:96.507612px;}
._1d_c02214{width:98.572500px;}
._a_c02214{width:105.757164px;}
._18_c02214{width:109.821600px;}
._23_c02214{width:124.085412px;}
._29_c02214{width:129.902184px;}
._2_c02214{width:139.006800px;}
._b_c02214{width:144.835200px;}
._21_c02214{width:146.214072px;}
._c_c02214{width:149.488704px;}
._8_c02214{width:172.164204px;}
._26_c02214{width:178.831260px;}
._0_c02214{width:187.840800px;}
._1f_c02214{width:189.965412px;}
._5_c02214{width:205.618068px;}
._16_c02214{width:215.693676px;}
._1_c02214{width:244.401624px;}
._6_c02214{width:253.848816px;}
._f_c02214{width:281.883312px;}
._1b_c02214{width:315.447048px;}
._4_c02214{width:330.085152px;}
._24_c02214{width:350.988336px;}
._3_c02214{width:352.464588px;}
._7_c02214{width:369.138816px;}
._22_c02214{width:377.165952px;}
._15_c02214{width:406.620504px;}
._25_c02214{width:417.329496px;}
._9_c02214{width:434.900232px;}
._13_c02214{width:446.932476px;}
._28_c02214{width:481.570056px;}
._e_c02214{width:494.359488px;}
._11_c02214{width:513.069408px;}
._12_c02214{width:525.619548px;}
._10_c02214{width:556.053984px;}
._27_c02214{width:751.210308px;}
._d_c02214{width:843.220440px;}
._20_c02214{width:905.290452px;}
._14_c02214{width:996.878952px;}
.fc0_c02214{color:rgb(0,0,0);}
.fs5_c02214{font-size:36.000000px;}
.fs6_c02214{font-size:42.120000px;}
.fs2_c02214{font-size:47.880000px;}
.fs1_c02214{font-size:54.000000px;}
.fs4_c02214{font-size:60.120000px;}
.fs3_c02214{font-size:65.880000px;}
.fs0_c02214{font-size:72.000000px;}
.y0_c02214{bottom:0.000000px;}
.y3_c02214{bottom:57.360450px;}
.y2_c02214{bottom:78.060450px;}
.y44_c02214{bottom:123.240450px;}
.y43_c02214{bottom:138.810000px;}
.y42_c02214{bottom:154.290450px;}
.y41_c02214{bottom:169.860000px;}
.y40_c02214{bottom:185.340450px;}
.y3f_c02214{bottom:200.910000px;}
.y3e_c02214{bottom:216.390450px;}
.y3d_c02214{bottom:231.960000px;}
.y3c_c02214{bottom:247.440450px;}
.y3b_c02214{bottom:264.090450px;}
.y3a_c02214{bottom:284.700450px;}
.y39_c02214{bottom:303.690450px;}
.y38_c02214{bottom:322.680450px;}
.y37_c02214{bottom:341.580450px;}
.y36_c02214{bottom:360.570450px;}
.y35_c02214{bottom:379.560450px;}
.y34_c02214{bottom:398.550450px;}
.y33_c02214{bottom:417.540600px;}
.y32_c02214{bottom:436.440450px;}
.y31_c02214{bottom:455.430600px;}
.y2e_c02214{bottom:473.790600px;}
.y2b_c02214{bottom:474.150450px;}
.y30_c02214{bottom:476.940600px;}
.y2d_c02214{bottom:480.090600px;}
.y2f_c02214{bottom:487.560450px;}
.y2c_c02214{bottom:490.440600px;}
.y2a_c02214{bottom:502.680600px;}
.y29_c02214{bottom:524.730000px;}
.y28_c02214{bottom:540.210450px;}
.y27_c02214{bottom:557.400450px;}
.y26_c02214{bottom:577.920450px;}
.y25_c02214{bottom:593.490000px;}
.y24_c02214{bottom:608.970450px;}
.y23_c02214{bottom:624.540000px;}
.y22_c02214{bottom:640.020450px;}
.y21_c02214{bottom:656.580450px;}
.y20_c02214{bottom:675.570450px;}
.y1f_c02214{bottom:694.560450px;}
.y1e_c02214{bottom:713.550450px;}
.y1d_c02214{bottom:732.450450px;}
.y1c_c02214{bottom:751.440450px;}
.y1b_c02214{bottom:770.430450px;}
.y1a_c02214{bottom:789.420450px;}
.y19_c02214{bottom:808.410450px;}
.y18_c02214{bottom:827.310450px;}
.y17_c02214{bottom:846.300450px;}
.y15_c02214{bottom:860.790600px;}
.y16_c02214{bottom:863.580450px;}
.y14_c02214{bottom:883.920450px;}
.y13_c02214{bottom:899.400900px;}
.y12_c02214{bottom:914.970450px;}
.y11_c02214{bottom:932.610450px;}
.y10_c02214{bottom:951.600450px;}
.yf_c02214{bottom:970.590450px;}
.ye_c02214{bottom:989.580450px;}
.yd_c02214{bottom:1008.570450px;}
.yc_c02214{bottom:1027.470450px;}
.yb_c02214{bottom:1046.910450px;}
.y9_c02214{bottom:1048.260450px;}
.ya_c02214{bottom:1060.770450px;}
.y8_c02214{bottom:1068.960450px;}
.y7_c02214{bottom:1091.010000px;}
.y6_c02214{bottom:1106.490450px;}
.y5_c02214{bottom:1123.680450px;}
.y4_c02214{bottom:1144.200450px;}
.y1_c02214{bottom:1193.160450px;}
.h7_c02214{height:31.974609px;}
.h4_c02214{height:42.526230px;}
.h9_c02214{height:43.170893px;}
.h3_c02214{height:47.961914px;}
.h6_c02214{height:53.397598px;}
.h5_c02214{height:58.513535px;}
.h2_c02214{height:63.175781px;}
.h1_c02214{height:63.949219px;}
.h8_c02214{height:72.405630px;}
.ha_c02214{height:85.005630px;}
.h0_c02214{height:1263.000000px;}
.w1_c02214{width:892.500000px;}
.w0_c02214{width:892.830000px;}
.x0_c02214{left:0.000000px;}
.x1_c02214{left:127.620000px;}
.x3_c02214{left:135.630000px;}
.x8_c02214{left:289.440000px;}
.x5_c02214{left:409.590000px;}
.x4_c02214{left:419.310000px;}
.x2_c02214{left:433.080000px;}
.x9_c02214{left:488.160000px;}
.xa_c02214{left:496.980000px;}
.xb_c02214{left:541.530000px;}
.xc_c02214{left:584.010000px;}
.xd_c02214{left:597.060000px;}
.x6_c02214{left:627.660000px;}
.x7_c02214{left:632.070000px;}
.xe_c02214{left:642.150000px;}
.xf_c02214{left:690.120000px;}
@media print{
.v2_c02214{vertical-align:-51.520533pt;}
.v1_c02214{vertical-align:-4.800000pt;}
.v0_c02214{vertical-align:0.000000pt;}
.v4_c02214{vertical-align:5.120533pt;}
.v3_c02214{vertical-align:26.559467pt;}
.v5_c02214{vertical-align:37.759467pt;}
.ls20_c02214{letter-spacing:-0.345600pt;}
.ls24_c02214{letter-spacing:-0.076608pt;}
.ls1e_c02214{letter-spacing:-0.069472pt;}
.ls26_c02214{letter-spacing:-0.056160pt;}
.ls1f_c02214{letter-spacing:-0.052800pt;}
.ls27_c02214{letter-spacing:-0.052704pt;}
.ls23_c02214{letter-spacing:-0.038304pt;}
.ls21_c02214{letter-spacing:-0.025600pt;}
.ls1b_c02214{letter-spacing:-0.021280pt;}
.ls25_c02214{letter-spacing:-0.007488pt;}
.ls1d_c02214{letter-spacing:-0.005344pt;}
.ls22_c02214{letter-spacing:-0.004256pt;}
.ls1a_c02214{letter-spacing:0.000000pt;}
.ls1c_c02214{letter-spacing:0.004256pt;}
.lsc_c02214{letter-spacing:0.006400pt;}
.ls7_c02214{letter-spacing:0.011712pt;}
.ls12_c02214{letter-spacing:0.017024pt;}
.ls15_c02214{letter-spacing:0.017568pt;}
.ls16_c02214{letter-spacing:0.019200pt;}
.ls18_c02214{letter-spacing:0.023424pt;}
.ls14_c02214{letter-spacing:0.029280pt;}
.ls0_c02214{letter-spacing:0.032000pt;}
.ls4_c02214{letter-spacing:0.035136pt;}
.ls11_c02214{letter-spacing:0.038304pt;}
.ls2_c02214{letter-spacing:0.040992pt;}
.lse_c02214{letter-spacing:0.046848pt;}
.ls8_c02214{letter-spacing:0.052704pt;}
.ls5_c02214{letter-spacing:0.058560pt;}
.lsf_c02214{letter-spacing:0.064416pt;}
.lsa_c02214{letter-spacing:0.070272pt;}
.ls6_c02214{letter-spacing:0.105408pt;}
.ls9_c02214{letter-spacing:0.122976pt;}
.lsd_c02214{letter-spacing:0.134688pt;}
.ls3_c02214{letter-spacing:0.140544pt;}
.lsb_c02214{letter-spacing:0.158112pt;}
.ls13_c02214{letter-spacing:0.161728pt;}
.ls1_c02214{letter-spacing:114.800000pt;}
.ls10_c02214{letter-spacing:116.000000pt;}
.ls19_c02214{letter-spacing:140.639264pt;}
.ls17_c02214{letter-spacing:140.640896pt;}
.ws0_c02214{word-spacing:-16.032000pt;}
.wsb_c02214{word-spacing:-10.801728pt;}
.ws20_c02214{word-spacing:-0.242592pt;}
.ws1e_c02214{word-spacing:-0.102400pt;}
.ws11_c02214{word-spacing:-0.076800pt;}
.ws1a_c02214{word-spacing:-0.057600pt;}
.ws10_c02214{word-spacing:-0.044800pt;}
.ws1f_c02214{word-spacing:-0.006400pt;}
.wsf_c02214{word-spacing:0.000000pt;}
.ws1c_c02214{word-spacing:0.017568pt;}
.ws15_c02214{word-spacing:0.023424pt;}
.ws1d_c02214{word-spacing:0.029280pt;}
.ws1b_c02214{word-spacing:0.035136pt;}
.ws12_c02214{word-spacing:0.040992pt;}
.ws14_c02214{word-spacing:0.046848pt;}
.ws21_c02214{word-spacing:0.052704pt;}
.ws23_c02214{word-spacing:0.058560pt;}
.ws17_c02214{word-spacing:0.070272pt;}
.ws22_c02214{word-spacing:0.139200pt;}
.ws7_c02214{word-spacing:70.998144pt;}
.wse_c02214{word-spacing:71.004000pt;}
.ws1_c02214{word-spacing:71.285664pt;}
.wsd_c02214{word-spacing:95.985376pt;}
.ws4_c02214{word-spacing:100.725664pt;}
.ws19_c02214{word-spacing:118.004256pt;}
.ws8_c02214{word-spacing:125.366816pt;}
.wsc_c02214{word-spacing:125.368448pt;}
.ws9_c02214{word-spacing:125.407392pt;}
.ws6_c02214{word-spacing:125.407808pt;}
.wsa_c02214{word-spacing:144.280128pt;}
.ws13_c02214{word-spacing:147.137856pt;}
.ws3_c02214{word-spacing:152.948096pt;}
.ws18_c02214{word-spacing:176.599392pt;}
.ws2_c02214{word-spacing:182.046560pt;}
.ws5_c02214{word-spacing:182.068096pt;}
.ws16_c02214{word-spacing:206.055072pt;}
._17_c02214{width:1.507200pt;}
._1a_c02214{width:56.297440pt;}
._2a_c02214{width:58.176032pt;}
._1e_c02214{width:64.702496pt;}
._19_c02214{width:80.230144pt;}
._1c_c02214{width:85.784544pt;}
._1d_c02214{width:87.620000pt;}
._a_c02214{width:94.006368pt;}
._18_c02214{width:97.619200pt;}
._23_c02214{width:110.298144pt;}
._29_c02214{width:115.468608pt;}
._2_c02214{width:123.561600pt;}
._b_c02214{width:128.742400pt;}
._21_c02214{width:129.968064pt;}
._c_c02214{width:132.878848pt;}
._8_c02214{width:153.034848pt;}
._26_c02214{width:158.961120pt;}
._0_c02214{width:166.969600pt;}
._1f_c02214{width:168.858144pt;}
._5_c02214{width:182.771616pt;}
._16_c02214{width:191.727712pt;}
._1_c02214{width:217.245888pt;}
._6_c02214{width:225.643392pt;}
._f_c02214{width:250.562944pt;}
._1b_c02214{width:280.397376pt;}
._4_c02214{width:293.409024pt;}
._24_c02214{width:311.989632pt;}
._3_c02214{width:313.301856pt;}
._7_c02214{width:328.123392pt;}
._22_c02214{width:335.258624pt;}
._15_c02214{width:361.440448pt;}
._25_c02214{width:370.959552pt;}
._9_c02214{width:386.577984pt;}
._13_c02214{width:397.273312pt;}
._28_c02214{width:428.062272pt;}
._e_c02214{width:439.430656pt;}
._11_c02214{width:456.061696pt;}
._12_c02214{width:467.217376pt;}
._10_c02214{width:494.270208pt;}
._27_c02214{width:667.742496pt;}
._d_c02214{width:749.529280pt;}
._20_c02214{width:804.702624pt;}
._14_c02214{width:886.114624pt;}
.fs5_c02214{font-size:32.000000pt;}
.fs6_c02214{font-size:37.440000pt;}
.fs2_c02214{font-size:42.560000pt;}
.fs1_c02214{font-size:48.000000pt;}
.fs4_c02214{font-size:53.440000pt;}
.fs3_c02214{font-size:58.560000pt;}
.fs0_c02214{font-size:64.000000pt;}
.y0_c02214{bottom:0.000000pt;}
.y3_c02214{bottom:50.987067pt;}
.y2_c02214{bottom:69.387067pt;}
.y44_c02214{bottom:109.547067pt;}
.y43_c02214{bottom:123.386667pt;}
.y42_c02214{bottom:137.147067pt;}
.y41_c02214{bottom:150.986667pt;}
.y40_c02214{bottom:164.747067pt;}
.y3f_c02214{bottom:178.586667pt;}
.y3e_c02214{bottom:192.347067pt;}
.y3d_c02214{bottom:206.186667pt;}
.y3c_c02214{bottom:219.947067pt;}
.y3b_c02214{bottom:234.747067pt;}
.y3a_c02214{bottom:253.067067pt;}
.y39_c02214{bottom:269.947067pt;}
.y38_c02214{bottom:286.827067pt;}
.y37_c02214{bottom:303.627067pt;}
.y36_c02214{bottom:320.507067pt;}
.y35_c02214{bottom:337.387067pt;}
.y34_c02214{bottom:354.267067pt;}
.y33_c02214{bottom:371.147200pt;}
.y32_c02214{bottom:387.947067pt;}
.y31_c02214{bottom:404.827200pt;}
.y2e_c02214{bottom:421.147200pt;}
.y2b_c02214{bottom:421.467067pt;}
.y30_c02214{bottom:423.947200pt;}
.y2d_c02214{bottom:426.747200pt;}
.y2f_c02214{bottom:433.387067pt;}
.y2c_c02214{bottom:435.947200pt;}
.y2a_c02214{bottom:446.827200pt;}
.y29_c02214{bottom:466.426667pt;}
.y28_c02214{bottom:480.187067pt;}
.y27_c02214{bottom:495.467067pt;}
.y26_c02214{bottom:513.707067pt;}
.y25_c02214{bottom:527.546667pt;}
.y24_c02214{bottom:541.307067pt;}
.y23_c02214{bottom:555.146667pt;}
.y22_c02214{bottom:568.907067pt;}
.y21_c02214{bottom:583.627067pt;}
.y20_c02214{bottom:600.507067pt;}
.y1f_c02214{bottom:617.387067pt;}
.y1e_c02214{bottom:634.267067pt;}
.y1d_c02214{bottom:651.067067pt;}
.y1c_c02214{bottom:667.947067pt;}
.y1b_c02214{bottom:684.827067pt;}
.y1a_c02214{bottom:701.707067pt;}
.y19_c02214{bottom:718.587067pt;}
.y18_c02214{bottom:735.387067pt;}
.y17_c02214{bottom:752.267067pt;}
.y15_c02214{bottom:765.147200pt;}
.y16_c02214{bottom:767.627067pt;}
.y14_c02214{bottom:785.707067pt;}
.y13_c02214{bottom:799.467467pt;}
.y12_c02214{bottom:813.307067pt;}
.y11_c02214{bottom:828.987067pt;}
.y10_c02214{bottom:845.867067pt;}
.yf_c02214{bottom:862.747067pt;}
.ye_c02214{bottom:879.627067pt;}
.yd_c02214{bottom:896.507067pt;}
.yc_c02214{bottom:913.307067pt;}
.yb_c02214{bottom:930.587067pt;}
.y9_c02214{bottom:931.787067pt;}
.ya_c02214{bottom:942.907067pt;}
.y8_c02214{bottom:950.187067pt;}
.y7_c02214{bottom:969.786667pt;}
.y6_c02214{bottom:983.547067pt;}
.y5_c02214{bottom:998.827067pt;}
.y4_c02214{bottom:1017.067067pt;}
.y1_c02214{bottom:1060.587067pt;}
.h7_c02214{height:28.421875pt;}
.h4_c02214{height:37.801094pt;}
.h9_c02214{height:38.374127pt;}
.h3_c02214{height:42.632812pt;}
.h6_c02214{height:47.464531pt;}
.h5_c02214{height:52.012031pt;}
.h2_c02214{height:56.156250pt;}
.h1_c02214{height:56.843750pt;}
.h8_c02214{height:64.360560pt;}
.ha_c02214{height:75.560560pt;}
.h0_c02214{height:1122.666667pt;}
.w1_c02214{width:793.333333pt;}
.w0_c02214{width:793.626667pt;}
.x0_c02214{left:0.000000pt;}
.x1_c02214{left:113.440000pt;}
.x3_c02214{left:120.560000pt;}
.x8_c02214{left:257.280000pt;}
.x5_c02214{left:364.080000pt;}
.x4_c02214{left:372.720000pt;}
.x2_c02214{left:384.960000pt;}
.x9_c02214{left:433.920000pt;}
.xa_c02214{left:441.760000pt;}
.xb_c02214{left:481.360000pt;}
.xc_c02214{left:519.120000pt;}
.xd_c02214{left:530.720000pt;}
.x6_c02214{left:557.920000pt;}
.x7_c02214{left:561.840000pt;}
.xe_c02214{left:570.800000pt;}
.xf_c02214{left:613.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_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_dfb5bbac203b6e64985f7abe.woff2')format("woff");}.ff1_c02215{font-family:ff1_c02215;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02215;src:url('chunks/assets/font_7b173cf000b90baf541dba70.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;}
.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);}
.v2_c02215{vertical-align:-22.320600px;}
.v1_c02215{vertical-align:-16.920600px;}
.v3_c02215{vertical-align:-4.680000px;}
.v0_c02215{vertical-align:0.000000px;}
.ls1e_c02215{letter-spacing:-0.181116px;}
.ls1d_c02215{letter-spacing:-0.180360px;}
.ls1c_c02215{letter-spacing:-0.176904px;}
.ls1b_c02215{letter-spacing:-0.086400px;}
.ls19_c02215{letter-spacing:-0.032940px;}
.ls17_c02215{letter-spacing:-0.014400px;}
.ls18_c02215{letter-spacing:-0.013176px;}
.ls1a_c02215{letter-spacing:-0.007200px;}
.ls16_c02215{letter-spacing:0.000000px;}
.ls13_c02215{letter-spacing:0.006588px;}
.ls6_c02215{letter-spacing:0.007200px;}
.ls14_c02215{letter-spacing:0.013176px;}
.ls0_c02215{letter-spacing:0.014400px;}
.ls4_c02215{letter-spacing:0.019764px;}
.lsa_c02215{letter-spacing:0.026352px;}
.lsf_c02215{letter-spacing:0.032940px;}
.ls2_c02215{letter-spacing:0.039528px;}
.lsc_c02215{letter-spacing:0.046116px;}
.ls7_c02215{letter-spacing:0.050400px;}
.lsb_c02215{letter-spacing:0.052704px;}
.lsd_c02215{letter-spacing:0.059292px;}
.ls15_c02215{letter-spacing:0.065880px;}
.ls1_c02215{letter-spacing:0.072468px;}
.ls9_c02215{letter-spacing:0.079056px;}
.ls12_c02215{letter-spacing:0.085644px;}
.ls11_c02215{letter-spacing:0.092232px;}
.ls3_c02215{letter-spacing:0.098820px;}
.ls10_c02215{letter-spacing:0.118584px;}
.ls5_c02215{letter-spacing:0.125172px;}
.lse_c02215{letter-spacing:0.131760px;}
.ls8_c02215{letter-spacing:0.181944px;}
.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;}
}
.ws1e_c02215{word-spacing:-0.316224px;}
.ws8_c02215{word-spacing:-0.093600px;}
.ws1_c02215{word-spacing:-0.050400px;}
.ws3_c02215{word-spacing:-0.014400px;}
.ws4_c02215{word-spacing:-0.007200px;}
.ws0_c02215{word-spacing:0.000000px;}
.ws7_c02215{word-spacing:0.007200px;}
.ws2_c02215{word-spacing:0.014400px;}
.ws5_c02215{word-spacing:0.019764px;}
.wsf_c02215{word-spacing:0.032940px;}
.wsc_c02215{word-spacing:0.039528px;}
.ws13_c02215{word-spacing:0.046116px;}
.ws22_c02215{word-spacing:0.059292px;}
.ws19_c02215{word-spacing:0.395280px;}
.ws1a_c02215{word-spacing:1.442772px;}
.wse_c02215{word-spacing:1.482300px;}
.ws1b_c02215{word-spacing:1.488888px;}
.ws12_c02215{word-spacing:3.287412px;}
.ws11_c02215{word-spacing:4.374432px;}
.wsa_c02215{word-spacing:7.213860px;}
.ws26_c02215{word-spacing:7.286328px;}
.ws14_c02215{word-spacing:8.267940px;}
.ws21_c02215{word-spacing:10.158696px;}
.ws1c_c02215{word-spacing:11.917692px;}
.ws24_c02215{word-spacing:13.031064px;}
.ws10_c02215{word-spacing:14.098320px;}
.ws1f_c02215{word-spacing:14.757120px;}
.ws20_c02215{word-spacing:14.842764px;}
.wsd_c02215{word-spacing:20.198808px;}
.ws1d_c02215{word-spacing:21.312180px;}
.wsb_c02215{word-spacing:23.822208px;}
.ws25_c02215{word-spacing:28.875204px;}
.ws18_c02215{word-spacing:34.916400px;}
.ws17_c02215{word-spacing:34.969104px;}
.ws15_c02215{word-spacing:37.050912px;}
.ws16_c02215{word-spacing:37.090440px;}
.ws9_c02215{word-spacing:48.689172px;}
.ws23_c02215{word-spacing:56.544804px;}
.ws6_c02215{word-spacing:276.445656px;}
._9_c02215{margin-left:-28.802736px;}
._13_c02215{margin-left:-1.212192px;}
._12_c02215{width:1.001376px;}
._e_c02215{width:39.870720px;}
._f_c02215{width:40.950720px;}
._11_c02215{width:55.174464px;}
._0_c02215{width:65.407068px;}
._d_c02215{width:73.850472px;}
._3_c02215{width:96.810048px;}
._5_c02215{width:101.605680px;}
._1_c02215{width:115.338168px;}
._4_c02215{width:116.438220px;}
._2_c02215{width:129.525840px;}
._6_c02215{width:183.653676px;}
._8_c02215{width:264.653136px;}
._b_c02215{width:312.559200px;}
._7_c02215{width:604.857456px;}
._10_c02215{width:1465.940880px;}
._a_c02215{width:1791.288000px;}
._c_c02215{width:2268.561600px;}
.fc0_c02215{color:rgb(0,0,0);}
.fs2_c02215{font-size:11.880000px;}
.fs3_c02215{font-size:42.120000px;}
.fs5_c02215{font-size:47.880000px;}
.fs4_c02215{font-size:60.120000px;}
.fs1_c02215{font-size:65.880000px;}
.fs0_c02215{font-size:72.000000px;}
.y0_c02215{bottom:0.000000px;}
.y3_c02215{bottom:57.360450px;}
.y2_c02215{bottom:78.060450px;}
.y43_c02215{bottom:126.751050px;}
.y42_c02215{bottom:145.831545px;}
.y41_c02215{bottom:164.821455px;}
.y40_c02215{bottom:183.811365px;}
.y45_c02215{bottom:202.621752px;}
.y3f_c02215{bottom:202.710690px;}
.y44_c02215{bottom:221.611662px;}
.y3e_c02215{bottom:227.190450px;}
.y3b_c02215{bottom:241.410810px;}
.y3a_c02215{bottom:260.400720px;}
.y39_c02215{bottom:279.390630px;}
.y3d_c02215{bottom:298.291602px;}
.y38_c02215{bottom:298.380540px;}
.y3c_c02215{bottom:317.281512px;}
.y37_c02215{bottom:322.860450px;}
.y34_c02215{bottom:337.081545px;}
.y33_c02215{bottom:356.071455px;}
.y32_c02215{bottom:374.970780px;}
.y36_c02215{bottom:393.871752px;}
.y31_c02215{bottom:393.960690px;}
.y35_c02215{bottom:412.861662px;}
.y30_c02215{bottom:418.440450px;}
.y2d_c02215{bottom:432.661485px;}
.y2c_c02215{bottom:451.651395px;}
.y2b_c02215{bottom:470.641305px;}
.y2a_c02215{bottom:489.631215px;}
.y2f_c02215{bottom:508.441602px;}
.y29_c02215{bottom:508.530540px;}
.y2e_c02215{bottom:527.431512px;}
.y28_c02215{bottom:533.010450px;}
.y25_c02215{bottom:547.230630px;}
.y27_c02215{bottom:566.129955px;}
.y24_c02215{bottom:566.220540px;}
.y26_c02215{bottom:585.119865px;}
.y23_c02215{bottom:590.700450px;}
.y20_c02215{bottom:604.920720px;}
.y1f_c02215{bottom:623.910630px;}
.y22_c02215{bottom:642.809955px;}
.y1e_c02215{bottom:642.900540px;}
.y21_c02215{bottom:661.799865px;}
.y1d_c02215{bottom:667.560450px;}
.y1b_c02215{bottom:681.602340px;}
.y1a_c02215{bottom:700.592250px;}
.y19_c02215{bottom:719.491575px;}
.y18_c02215{bottom:738.481485px;}
.y17_c02215{bottom:757.471395px;}
.y16_c02215{bottom:776.461305px;}
.y15_c02215{bottom:795.451215px;}
.y14_c02215{bottom:814.350540px;}
.y1c_c02215{bottom:833.251512px;}
.y13_c02215{bottom:838.830450px;}
.y12_c02215{bottom:858.540600px;}
.y11_c02215{bottom:873.030450px;}
.y10_c02215{bottom:904.800450px;}
.yf_c02215{bottom:922.260450px;}
.ye_c02215{bottom:929.730450px;}
.yd_c02215{bottom:951.150450px;}
.yc_c02215{bottom:972.570450px;}
.yb_c02215{bottom:994.080450px;}
.ya_c02215{bottom:1015.320450px;}
.y9_c02215{bottom:1034.940450px;}
.y8_c02215{bottom:1054.920450px;}
.y7_c02215{bottom:1075.620450px;}
.y6_c02215{bottom:1097.310450px;}
.y5_c02215{bottom:1118.010450px;}
.y4_c02215{bottom:1139.250450px;}
.y1_c02215{bottom:1193.160450px;}
.h5_c02215{height:10.424004px;}
.h7_c02215{height:36.957832px;}
.h6_c02215{height:37.410293px;}
.h4_c02215{height:57.805840px;}
.h3_c02215{height:58.513535px;}
.h2_c02215{height:63.175781px;}
.h1_c02215{height:63.949219px;}
.h0_c02215{height:1263.000000px;}
.w1_c02215{width:892.500000px;}
.w0_c02215{width:892.830000px;}
.x0_c02215{left:0.000000px;}
.x1_c02215{left:127.620000px;}
.x3_c02215{left:135.630000px;}
.x6_c02215{left:137.520000px;}
.x4_c02215{left:246.960000px;}
.x8_c02215{left:273.870000px;}
.x5_c02215{left:322.470000px;}
.x7_c02215{left:335.160000px;}
.x2_c02215{left:433.080000px;}
.x9_c02215{left:720.989325px;}
.xa_c02215{left:738.898803px;}
@media print{
.v2_c02215{vertical-align:-19.840533pt;}
.v1_c02215{vertical-align:-15.040533pt;}
.v3_c02215{vertical-align:-4.160000pt;}
.v0_c02215{vertical-align:0.000000pt;}
.ls1e_c02215{letter-spacing:-0.160992pt;}
.ls1d_c02215{letter-spacing:-0.160320pt;}
.ls1c_c02215{letter-spacing:-0.157248pt;}
.ls1b_c02215{letter-spacing:-0.076800pt;}
.ls19_c02215{letter-spacing:-0.029280pt;}
.ls17_c02215{letter-spacing:-0.012800pt;}
.ls18_c02215{letter-spacing:-0.011712pt;}
.ls1a_c02215{letter-spacing:-0.006400pt;}
.ls16_c02215{letter-spacing:0.000000pt;}
.ls13_c02215{letter-spacing:0.005856pt;}
.ls6_c02215{letter-spacing:0.006400pt;}
.ls14_c02215{letter-spacing:0.011712pt;}
.ls0_c02215{letter-spacing:0.012800pt;}
.ls4_c02215{letter-spacing:0.017568pt;}
.lsa_c02215{letter-spacing:0.023424pt;}
.lsf_c02215{letter-spacing:0.029280pt;}
.ls2_c02215{letter-spacing:0.035136pt;}
.lsc_c02215{letter-spacing:0.040992pt;}
.ls7_c02215{letter-spacing:0.044800pt;}
.lsb_c02215{letter-spacing:0.046848pt;}
.lsd_c02215{letter-spacing:0.052704pt;}
.ls15_c02215{letter-spacing:0.058560pt;}
.ls1_c02215{letter-spacing:0.064416pt;}
.ls9_c02215{letter-spacing:0.070272pt;}
.ls12_c02215{letter-spacing:0.076128pt;}
.ls11_c02215{letter-spacing:0.081984pt;}
.ls3_c02215{letter-spacing:0.087840pt;}
.ls10_c02215{letter-spacing:0.105408pt;}
.ls5_c02215{letter-spacing:0.111264pt;}
.lse_c02215{letter-spacing:0.117120pt;}
.ls8_c02215{letter-spacing:0.161728pt;}
.ws1e_c02215{word-spacing:-0.281088pt;}
.ws8_c02215{word-spacing:-0.083200pt;}
.ws1_c02215{word-spacing:-0.044800pt;}
.ws3_c02215{word-spacing:-0.012800pt;}
.ws4_c02215{word-spacing:-0.006400pt;}
.ws0_c02215{word-spacing:0.000000pt;}
.ws7_c02215{word-spacing:0.006400pt;}
.ws2_c02215{word-spacing:0.012800pt;}
.ws5_c02215{word-spacing:0.017568pt;}
.wsf_c02215{word-spacing:0.029280pt;}
.wsc_c02215{word-spacing:0.035136pt;}
.ws13_c02215{word-spacing:0.040992pt;}
.ws22_c02215{word-spacing:0.052704pt;}
.ws19_c02215{word-spacing:0.351360pt;}
.ws1a_c02215{word-spacing:1.282464pt;}
.wse_c02215{word-spacing:1.317600pt;}
.ws1b_c02215{word-spacing:1.323456pt;}
.ws12_c02215{word-spacing:2.922144pt;}
.ws11_c02215{word-spacing:3.888384pt;}
.wsa_c02215{word-spacing:6.412320pt;}
.ws26_c02215{word-spacing:6.476736pt;}
.ws14_c02215{word-spacing:7.349280pt;}
.ws21_c02215{word-spacing:9.029952pt;}
.ws1c_c02215{word-spacing:10.593504pt;}
.ws24_c02215{word-spacing:11.583168pt;}
.ws10_c02215{word-spacing:12.531840pt;}
.ws1f_c02215{word-spacing:13.117440pt;}
.ws20_c02215{word-spacing:13.193568pt;}
.wsd_c02215{word-spacing:17.954496pt;}
.ws1d_c02215{word-spacing:18.944160pt;}
.wsb_c02215{word-spacing:21.175296pt;}
.ws25_c02215{word-spacing:25.666848pt;}
.ws18_c02215{word-spacing:31.036800pt;}
.ws17_c02215{word-spacing:31.083648pt;}
.ws15_c02215{word-spacing:32.934144pt;}
.ws16_c02215{word-spacing:32.969280pt;}
.ws9_c02215{word-spacing:43.279264pt;}
.ws23_c02215{word-spacing:50.262048pt;}
.ws6_c02215{word-spacing:245.729472pt;}
._9_c02215{margin-left:-25.602432pt;}
._13_c02215{margin-left:-1.077504pt;}
._12_c02215{width:0.890112pt;}
._e_c02215{width:35.440640pt;}
._f_c02215{width:36.400640pt;}
._11_c02215{width:49.043968pt;}
._0_c02215{width:58.139616pt;}
._d_c02215{width:65.644864pt;}
._3_c02215{width:86.053376pt;}
._5_c02215{width:90.316160pt;}
._1_c02215{width:102.522816pt;}
._4_c02215{width:103.500640pt;}
._2_c02215{width:115.134080pt;}
._6_c02215{width:163.247712pt;}
._8_c02215{width:235.247232pt;}
._b_c02215{width:277.830400pt;}
._7_c02215{width:537.651072pt;}
._10_c02215{width:1303.058560pt;}
._a_c02215{width:1592.256000pt;}
._c_c02215{width:2016.499200pt;}
.fs2_c02215{font-size:10.560000pt;}
.fs3_c02215{font-size:37.440000pt;}
.fs5_c02215{font-size:42.560000pt;}
.fs4_c02215{font-size:53.440000pt;}
.fs1_c02215{font-size:58.560000pt;}
.fs0_c02215{font-size:64.000000pt;}
.y0_c02215{bottom:0.000000pt;}
.y3_c02215{bottom:50.987067pt;}
.y2_c02215{bottom:69.387067pt;}
.y43_c02215{bottom:112.667600pt;}
.y42_c02215{bottom:129.628040pt;}
.y41_c02215{bottom:146.507960pt;}
.y40_c02215{bottom:163.387880pt;}
.y45_c02215{bottom:180.108224pt;}
.y3f_c02215{bottom:180.187280pt;}
.y44_c02215{bottom:196.988144pt;}
.y3e_c02215{bottom:201.947067pt;}
.y3b_c02215{bottom:214.587387pt;}
.y3a_c02215{bottom:231.467307pt;}
.y39_c02215{bottom:248.347227pt;}
.y3d_c02215{bottom:265.148091pt;}
.y38_c02215{bottom:265.227147pt;}
.y3c_c02215{bottom:282.028011pt;}
.y37_c02215{bottom:286.987067pt;}
.y34_c02215{bottom:299.628040pt;}
.y33_c02215{bottom:316.507960pt;}
.y32_c02215{bottom:333.307360pt;}
.y36_c02215{bottom:350.108224pt;}
.y31_c02215{bottom:350.187280pt;}
.y35_c02215{bottom:366.988144pt;}
.y30_c02215{bottom:371.947067pt;}
.y2d_c02215{bottom:384.587987pt;}
.y2c_c02215{bottom:401.467907pt;}
.y2b_c02215{bottom:418.347827pt;}
.y2a_c02215{bottom:435.227747pt;}
.y2f_c02215{bottom:451.948091pt;}
.y29_c02215{bottom:452.027147pt;}
.y2e_c02215{bottom:468.828011pt;}
.y28_c02215{bottom:473.787067pt;}
.y25_c02215{bottom:486.427227pt;}
.y27_c02215{bottom:503.226627pt;}
.y24_c02215{bottom:503.307147pt;}
.y26_c02215{bottom:520.106547pt;}
.y23_c02215{bottom:525.067067pt;}
.y20_c02215{bottom:537.707307pt;}
.y1f_c02215{bottom:554.587227pt;}
.y22_c02215{bottom:571.386627pt;}
.y1e_c02215{bottom:571.467147pt;}
.y21_c02215{bottom:588.266547pt;}
.y1d_c02215{bottom:593.387067pt;}
.y1b_c02215{bottom:605.868747pt;}
.y1a_c02215{bottom:622.748667pt;}
.y19_c02215{bottom:639.548067pt;}
.y18_c02215{bottom:656.427987pt;}
.y17_c02215{bottom:673.307907pt;}
.y16_c02215{bottom:690.187827pt;}
.y15_c02215{bottom:707.067747pt;}
.y14_c02215{bottom:723.867147pt;}
.y1c_c02215{bottom:740.668011pt;}
.y13_c02215{bottom:745.627067pt;}
.y12_c02215{bottom:763.147200pt;}
.y11_c02215{bottom:776.027067pt;}
.y10_c02215{bottom:804.267067pt;}
.yf_c02215{bottom:819.787067pt;}
.ye_c02215{bottom:826.427067pt;}
.yd_c02215{bottom:845.467067pt;}
.yc_c02215{bottom:864.507067pt;}
.yb_c02215{bottom:883.627067pt;}
.ya_c02215{bottom:902.507067pt;}
.y9_c02215{bottom:919.947067pt;}
.y8_c02215{bottom:937.707067pt;}
.y7_c02215{bottom:956.107067pt;}
.y6_c02215{bottom:975.387067pt;}
.y5_c02215{bottom:993.787067pt;}
.y4_c02215{bottom:1012.667067pt;}
.y1_c02215{bottom:1060.587067pt;}
.h5_c02215{height:9.265781pt;}
.h7_c02215{height:32.851406pt;}
.h6_c02215{height:33.253594pt;}
.h4_c02215{height:51.382969pt;}
.h3_c02215{height:52.012031pt;}
.h2_c02215{height:56.156250pt;}
.h1_c02215{height:56.843750pt;}
.h0_c02215{height:1122.666667pt;}
.w1_c02215{width:793.333333pt;}
.w0_c02215{width:793.626667pt;}
.x0_c02215{left:0.000000pt;}
.x1_c02215{left:113.440000pt;}
.x3_c02215{left:120.560000pt;}
.x6_c02215{left:122.240000pt;}
.x4_c02215{left:219.520000pt;}
.x8_c02215{left:243.440000pt;}
.x5_c02215{left:286.640000pt;}
.x7_c02215{left:297.920000pt;}
.x2_c02215{left:384.960000pt;}
.x9_c02215{left:640.879400pt;}
.xa_c02215{left:656.798936pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a9167aceb3ee06d12aa6cab.woff2')format("woff");}.ff1_c02216{font-family:ff1_c02216;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02216;src:url('chunks/assets/font_2fc7443a8cae4500927e3a3a.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;}
.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);}
.v2_c02216{vertical-align:-22.320000px;}
.v1_c02216{vertical-align:-16.919400px;}
.v3_c02216{vertical-align:-4.680000px;}
.v0_c02216{vertical-align:0.000000px;}
.lsf_c02216{letter-spacing:-0.181116px;}
.lsd_c02216{letter-spacing:-0.180360px;}
.lsc_c02216{letter-spacing:-0.176904px;}
.lse_c02216{letter-spacing:-0.032940px;}
.lsa_c02216{letter-spacing:0.000000px;}
.lsb_c02216{letter-spacing:0.007200px;}
.ls7_c02216{letter-spacing:0.013176px;}
.ls9_c02216{letter-spacing:0.019764px;}
.ls8_c02216{letter-spacing:0.032940px;}
.ls5_c02216{letter-spacing:0.039528px;}
.ls6_c02216{letter-spacing:0.046116px;}
.ls2_c02216{letter-spacing:0.052704px;}
.ls4_c02216{letter-spacing:0.059292px;}
.ls3_c02216{letter-spacing:0.065880px;}
.ls0_c02216{letter-spacing:0.072468px;}
.ls10_c02216{letter-spacing:0.098820px;}
.ls11_c02216{letter-spacing:0.131760px;}
.ls1_c02216{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02216{word-spacing:-0.050400px;}
.ws0_c02216{word-spacing:0.000000px;}
.ws15_c02216{word-spacing:0.019764px;}
.ws6_c02216{word-spacing:0.032940px;}
.ws14_c02216{word-spacing:6.541884px;}
.wsf_c02216{word-spacing:8.314056px;}
.ws11_c02216{word-spacing:8.669808px;}
.ws7_c02216{word-spacing:10.488096px;}
.wse_c02216{word-spacing:11.561940px;}
.wsb_c02216{word-spacing:16.575408px;}
.wsa_c02216{word-spacing:16.595172px;}
.ws5_c02216{word-spacing:17.991828px;}
.ws4_c02216{word-spacing:18.024768px;}
.ws10_c02216{word-spacing:24.896052px;}
.ws13_c02216{word-spacing:25.271568px;}
.ws8_c02216{word-spacing:28.473336px;}
.ws3_c02216{word-spacing:28.835676px;}
.ws9_c02216{word-spacing:33.526332px;}
.wsd_c02216{word-spacing:34.600176px;}
.wsc_c02216{word-spacing:34.639704px;}
.ws12_c02216{word-spacing:41.418756px;}
.ws2_c02216{word-spacing:48.689172px;}
._5_c02216{margin-left:-1.106784px;}
._6_c02216{width:1.350540px;}
._1_c02216{width:39.870720px;}
._2_c02216{width:40.950720px;}
._4_c02216{width:55.174464px;}
._0_c02216{width:73.850472px;}
._3_c02216{width:1465.940880px;}
.fc0_c02216{color:rgb(0,0,0);}
.fs1_c02216{font-size:42.120000px;}
.fs4_c02216{font-size:47.880000px;}
.fs2_c02216{font-size:60.120000px;}
.fs3_c02216{font-size:65.880000px;}
.fs0_c02216{font-size:72.000000px;}
.y0_c02216{bottom:0.000000px;}
.y3_c02216{bottom:57.360450px;}
.y2_c02216{bottom:78.060450px;}
.y31_c02216{bottom:117.570450px;}
.y30_c02216{bottom:148.620450px;}
.y2f_c02216{bottom:179.670450px;}
.y2e_c02216{bottom:210.720450px;}
.y2d_c02216{bottom:241.770450px;}
.y2c_c02216{bottom:272.820450px;}
.y2b_c02216{bottom:303.870450px;}
.y2a_c02216{bottom:334.920450px;}
.y29_c02216{bottom:365.970450px;}
.y28_c02216{bottom:397.020450px;}
.y27_c02216{bottom:428.070450px;}
.y26_c02216{bottom:459.120450px;}
.y25_c02216{bottom:490.170450px;}
.y24_c02216{bottom:521.220450px;}
.y23_c02216{bottom:552.270450px;}
.y22_c02216{bottom:583.320450px;}
.y21_c02216{bottom:614.370450px;}
.y20_c02216{bottom:645.420450px;}
.y1f_c02216{bottom:676.470450px;}
.y1e_c02216{bottom:707.520450px;}
.y1d_c02216{bottom:738.570450px;}
.y1a_c02216{bottom:759.813555px;}
.y19_c02216{bottom:778.803465px;}
.y18_c02216{bottom:797.702790px;}
.y17_c02216{bottom:816.692700px;}
.y16_c02216{bottom:835.682610px;}
.y15_c02216{bottom:854.672520px;}
.y14_c02216{bottom:873.662430px;}
.y13_c02216{bottom:892.652340px;}
.y12_c02216{bottom:911.551665px;}
.y11_c02216{bottom:930.541575px;}
.y10_c02216{bottom:949.531485px;}
.yf_c02216{bottom:968.521395px;}
.ye_c02216{bottom:987.511305px;}
.yd_c02216{bottom:1006.410630px;}
.y1c_c02216{bottom:1025.313249px;}
.yc_c02216{bottom:1025.400540px;}
.y1b_c02216{bottom:1044.303159px;}
.yb_c02216{bottom:1049.880450px;}
.y8_c02216{bottom:1064.100720px;}
.y7_c02216{bottom:1083.090630px;}
.ya_c02216{bottom:1101.991602px;}
.y6_c02216{bottom:1102.080540px;}
.y9_c02216{bottom:1120.981512px;}
.y5_c02216{bottom:1126.560450px;}
.y4_c02216{bottom:1146.270450px;}
.y1_c02216{bottom:1193.160450px;}
.h3_c02216{height:37.410293px;}
.h4_c02216{height:57.805840px;}
.h5_c02216{height:58.513535px;}
.h2_c02216{height:63.175781px;}
.h1_c02216{height:63.949219px;}
.h0_c02216{height:1263.000000px;}
.w1_c02216{width:892.500000px;}
.w0_c02216{width:892.830000px;}
.x0_c02216{left:0.000000px;}
.x1_c02216{left:127.620000px;}
.x3_c02216{left:135.630000px;}
.x4_c02216{left:273.870000px;}
.x2_c02216{left:433.080000px;}
.x5_c02216{left:720.989325px;}
.x6_c02216{left:738.898803px;}
@media print{
.v2_c02216{vertical-align:-19.840000pt;}
.v1_c02216{vertical-align:-15.039467pt;}
.v3_c02216{vertical-align:-4.160000pt;}
.v0_c02216{vertical-align:0.000000pt;}
.lsf_c02216{letter-spacing:-0.160992pt;}
.lsd_c02216{letter-spacing:-0.160320pt;}
.lsc_c02216{letter-spacing:-0.157248pt;}
.lse_c02216{letter-spacing:-0.029280pt;}
.lsa_c02216{letter-spacing:0.000000pt;}
.lsb_c02216{letter-spacing:0.006400pt;}
.ls7_c02216{letter-spacing:0.011712pt;}
.ls9_c02216{letter-spacing:0.017568pt;}
.ls8_c02216{letter-spacing:0.029280pt;}
.ls5_c02216{letter-spacing:0.035136pt;}
.ls6_c02216{letter-spacing:0.040992pt;}
.ls2_c02216{letter-spacing:0.046848pt;}
.ls4_c02216{letter-spacing:0.052704pt;}
.ls3_c02216{letter-spacing:0.058560pt;}
.ls0_c02216{letter-spacing:0.064416pt;}
.ls10_c02216{letter-spacing:0.087840pt;}
.ls11_c02216{letter-spacing:0.117120pt;}
.ls1_c02216{letter-spacing:0.161728pt;}
.ws1_c02216{word-spacing:-0.044800pt;}
.ws0_c02216{word-spacing:0.000000pt;}
.ws15_c02216{word-spacing:0.017568pt;}
.ws6_c02216{word-spacing:0.029280pt;}
.ws14_c02216{word-spacing:5.815008pt;}
.wsf_c02216{word-spacing:7.390272pt;}
.ws11_c02216{word-spacing:7.706496pt;}
.ws7_c02216{word-spacing:9.322752pt;}
.wse_c02216{word-spacing:10.277280pt;}
.wsb_c02216{word-spacing:14.733696pt;}
.wsa_c02216{word-spacing:14.751264pt;}
.ws5_c02216{word-spacing:15.992736pt;}
.ws4_c02216{word-spacing:16.022016pt;}
.ws10_c02216{word-spacing:22.129824pt;}
.ws13_c02216{word-spacing:22.463616pt;}
.ws8_c02216{word-spacing:25.309632pt;}
.ws3_c02216{word-spacing:25.631712pt;}
.ws9_c02216{word-spacing:29.801184pt;}
.wsd_c02216{word-spacing:30.755712pt;}
.wsc_c02216{word-spacing:30.790848pt;}
.ws12_c02216{word-spacing:36.816672pt;}
.ws2_c02216{word-spacing:43.279264pt;}
._5_c02216{margin-left:-0.983808pt;}
._6_c02216{width:1.200480pt;}
._1_c02216{width:35.440640pt;}
._2_c02216{width:36.400640pt;}
._4_c02216{width:49.043968pt;}
._0_c02216{width:65.644864pt;}
._3_c02216{width:1303.058560pt;}
.fs1_c02216{font-size:37.440000pt;}
.fs4_c02216{font-size:42.560000pt;}
.fs2_c02216{font-size:53.440000pt;}
.fs3_c02216{font-size:58.560000pt;}
.fs0_c02216{font-size:64.000000pt;}
.y0_c02216{bottom:0.000000pt;}
.y3_c02216{bottom:50.987067pt;}
.y2_c02216{bottom:69.387067pt;}
.y31_c02216{bottom:104.507067pt;}
.y30_c02216{bottom:132.107067pt;}
.y2f_c02216{bottom:159.707067pt;}
.y2e_c02216{bottom:187.307067pt;}
.y2d_c02216{bottom:214.907067pt;}
.y2c_c02216{bottom:242.507067pt;}
.y2b_c02216{bottom:270.107067pt;}
.y2a_c02216{bottom:297.707067pt;}
.y29_c02216{bottom:325.307067pt;}
.y28_c02216{bottom:352.907067pt;}
.y27_c02216{bottom:380.507067pt;}
.y26_c02216{bottom:408.107067pt;}
.y25_c02216{bottom:435.707067pt;}
.y24_c02216{bottom:463.307067pt;}
.y23_c02216{bottom:490.907067pt;}
.y22_c02216{bottom:518.507067pt;}
.y21_c02216{bottom:546.107067pt;}
.y20_c02216{bottom:573.707067pt;}
.y1f_c02216{bottom:601.307067pt;}
.y1e_c02216{bottom:628.907067pt;}
.y1d_c02216{bottom:656.507067pt;}
.y1a_c02216{bottom:675.389827pt;}
.y19_c02216{bottom:692.269747pt;}
.y18_c02216{bottom:709.069147pt;}
.y17_c02216{bottom:725.949067pt;}
.y16_c02216{bottom:742.828987pt;}
.y15_c02216{bottom:759.708907pt;}
.y14_c02216{bottom:776.588827pt;}
.y13_c02216{bottom:793.468747pt;}
.y12_c02216{bottom:810.268147pt;}
.y11_c02216{bottom:827.148067pt;}
.y10_c02216{bottom:844.027987pt;}
.yf_c02216{bottom:860.907907pt;}
.ye_c02216{bottom:877.787827pt;}
.yd_c02216{bottom:894.587227pt;}
.y1c_c02216{bottom:911.389555pt;}
.yc_c02216{bottom:911.467147pt;}
.y1b_c02216{bottom:928.269475pt;}
.yb_c02216{bottom:933.227067pt;}
.y8_c02216{bottom:945.867307pt;}
.y7_c02216{bottom:962.747227pt;}
.ya_c02216{bottom:979.548091pt;}
.y6_c02216{bottom:979.627147pt;}
.y9_c02216{bottom:996.428011pt;}
.y5_c02216{bottom:1001.387067pt;}
.y4_c02216{bottom:1018.907067pt;}
.y1_c02216{bottom:1060.587067pt;}
.h3_c02216{height:33.253594pt;}
.h4_c02216{height:51.382969pt;}
.h5_c02216{height:52.012031pt;}
.h2_c02216{height:56.156250pt;}
.h1_c02216{height:56.843750pt;}
.h0_c02216{height:1122.666667pt;}
.w1_c02216{width:793.333333pt;}
.w0_c02216{width:793.626667pt;}
.x0_c02216{left:0.000000pt;}
.x1_c02216{left:113.440000pt;}
.x3_c02216{left:120.560000pt;}
.x4_c02216{left:243.440000pt;}
.x2_c02216{left:384.960000pt;}
.x5_c02216{left:640.879400pt;}
.x6_c02216{left:656.798936pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ae98f819afbab8fa14c3276.woff2')format("woff");}.ff1_c02217{font-family:ff1_c02217;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02217;src:url('chunks/assets/font_2647fd9e9e4b4d1d7379243c.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02217{font-family:ff3_c02217;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;}
.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;}
.ls1c_c02217{letter-spacing:-0.270108px;}
.ls1b_c02217{letter-spacing:-0.050400px;}
.ls18_c02217{letter-spacing:-0.043200px;}
.ls1a_c02217{letter-spacing:-0.036000px;}
.ls17_c02217{letter-spacing:-0.028800px;}
.ls19_c02217{letter-spacing:-0.021600px;}
.ls16_c02217{letter-spacing:-0.014400px;}
.ls15_c02217{letter-spacing:0.000000px;}
.lsb_c02217{letter-spacing:0.006588px;}
.ls6_c02217{letter-spacing:0.007200px;}
.ls4_c02217{letter-spacing:0.014400px;}
.ls0_c02217{letter-spacing:0.021600px;}
.ls2_c02217{letter-spacing:0.028800px;}
.ls9_c02217{letter-spacing:0.032940px;}
.ls1_c02217{letter-spacing:0.036000px;}
.ls3_c02217{letter-spacing:0.043200px;}
.lsc_c02217{letter-spacing:0.046116px;}
.lse_c02217{letter-spacing:0.052704px;}
.ls7_c02217{letter-spacing:0.057600px;}
.ls14_c02217{letter-spacing:0.059292px;}
.ls5_c02217{letter-spacing:0.064800px;}
.lsf_c02217{letter-spacing:0.065880px;}
.ls13_c02217{letter-spacing:0.072468px;}
.lsd_c02217{letter-spacing:0.079056px;}
.lsa_c02217{letter-spacing:0.098820px;}
.ls11_c02217{letter-spacing:0.125172px;}
.ls12_c02217{letter-spacing:0.138348px;}
.ls10_c02217{letter-spacing:0.171288px;}
.ls8_c02217{letter-spacing:0.177876px;}
.sc__c02217{text-shadow:none;}
.sc0_c02217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02217{-webkit-text-stroke:0px transparent;}
.sc0_c02217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02217{word-spacing:-16.647876px;}
.ws14_c02217{word-spacing:-0.129600px;}
.ws2_c02217{word-spacing:-0.050400px;}
.ws1e_c02217{word-spacing:-0.046116px;}
.ws1d_c02217{word-spacing:-0.032940px;}
.ws16_c02217{word-spacing:-0.007200px;}
.ws1_c02217{word-spacing:0.000000px;}
.ws21_c02217{word-spacing:0.013176px;}
.ws3_c02217{word-spacing:0.014400px;}
.ws1f_c02217{word-spacing:0.019764px;}
.ws1c_c02217{word-spacing:0.026352px;}
.ws20_c02217{word-spacing:0.032940px;}
.ws15_c02217{word-spacing:0.036000px;}
.ws1b_c02217{word-spacing:0.039528px;}
.ws1a_c02217{word-spacing:0.764208px;}
.ws10_c02217{word-spacing:1.317600px;}
.wsf_c02217{word-spacing:1.396800px;}
.ws4_c02217{word-spacing:1.598400px;}
.ws6_c02217{word-spacing:1.620000px;}
.ws5_c02217{word-spacing:1.684800px;}
.ws8_c02217{word-spacing:4.881600px;}
.ws7_c02217{word-spacing:5.011200px;}
.ws9_c02217{word-spacing:5.083200px;}
.wsc_c02217{word-spacing:10.389600px;}
.wse_c02217{word-spacing:10.425600px;}
.wsd_c02217{word-spacing:10.468800px;}
.ws18_c02217{word-spacing:14.032440px;}
.ws17_c02217{word-spacing:14.098320px;}
.ws19_c02217{word-spacing:14.124672px;}
.ws12_c02217{word-spacing:16.783200px;}
.ws13_c02217{word-spacing:16.790400px;}
.ws11_c02217{word-spacing:16.934400px;}
.wsa_c02217{word-spacing:17.532000px;}
.wsb_c02217{word-spacing:17.539200px;}
._0_c02217{margin-left:-1.065600px;}
._1_c02217{width:1.119960px;}
._2_c02217{width:83.907072px;}
._4_c02217{width:87.036372px;}
._a_c02217{width:141.585732px;}
._3_c02217{width:245.985768px;}
._5_c02217{width:364.385304px;}
._7_c02217{width:434.837376px;}
._6_c02217{width:450.510228px;}
._9_c02217{width:531.219816px;}
._8_c02217{width:1212.465132px;}
.fc0_c02217{color:rgb(0,0,0);}
.fs3_c02217{font-size:2.880000px;}
.fs1_c02217{font-size:47.880000px;}
.fs2_c02217{font-size:65.880000px;}
.fs0_c02217{font-size:72.000000px;}
.y0_c02217{bottom:0.000000px;}
.y3_c02217{bottom:57.360450px;}
.y2_c02217{bottom:78.060450px;}
.y31_c02217{bottom:124.590600px;}
.y30_c02217{bottom:145.290600px;}
.y2f_c02217{bottom:165.900600px;}
.y2e_c02217{bottom:186.600600px;}
.y2d_c02217{bottom:207.300600px;}
.y2c_c02217{bottom:228.000600px;}
.y2b_c02217{bottom:248.700600px;}
.y2a_c02217{bottom:269.400600px;}
.y29_c02217{bottom:290.100600px;}
.y28_c02217{bottom:310.800600px;}
.y27_c02217{bottom:331.500600px;}
.y26_c02217{bottom:352.200600px;}
.y25_c02217{bottom:372.900600px;}
.y24_c02217{bottom:393.600600px;}
.y23_c02217{bottom:414.300600px;}
.y22_c02217{bottom:435.000600px;}
.y21_c02217{bottom:455.700600px;}
.y20_c02217{bottom:487.110600px;}
.y1f_c02217{bottom:491.520600px;}
.y1e_c02217{bottom:511.230450px;}
.y1d_c02217{bottom:530.940450px;}
.y1c_c02217{bottom:550.740450px;}
.y1b_c02217{bottom:570.450450px;}
.y1a_c02217{bottom:590.160450px;}
.y19_c02217{bottom:609.870450px;}
.y18_c02217{bottom:629.580450px;}
.y17_c02217{bottom:649.381395px;}
.y16_c02217{bottom:668.371305px;}
.y15_c02217{bottom:687.361215px;}
.y14_c02217{bottom:706.351125px;}
.y13_c02217{bottom:725.250450px;}
.y12_c02217{bottom:745.230450px;}
.y11_c02217{bottom:766.650450px;}
.y10_c02217{bottom:798.420450px;}
.yf_c02217{bottom:825.060450px;}
.ye_c02217{bottom:840.000450px;}
.yd_c02217{bottom:871.050450px;}
.yc_c02217{bottom:902.100450px;}
.yb_c02217{bottom:933.150450px;}
.ya_c02217{bottom:964.200450px;}
.y9_c02217{bottom:995.250450px;}
.y8_c02217{bottom:1026.300450px;}
.y7_c02217{bottom:1057.350450px;}
.y6_c02217{bottom:1088.220450px;}
.y5_c02217{bottom:1114.860450px;}
.y4_c02217{bottom:1139.970450px;}
.y1_c02217{bottom:1193.160450px;}
.h6_c02217{height:2.527031px;}
.h3_c02217{height:42.011895px;}
.h5_c02217{height:57.805840px;}
.h4_c02217{height:58.513535px;}
.h2_c02217{height:63.175781px;}
.h1_c02217{height:63.949219px;}
.h0_c02217{height:1263.000000px;}
.w1_c02217{width:892.500000px;}
.w0_c02217{width:892.830000px;}
.x0_c02217{left:0.000000px;}
.x1_c02217{left:127.620000px;}
.x4_c02217{left:135.630000px;}
.x5_c02217{left:146.250000px;}
.x3_c02217{left:148.950000px;}
.x6_c02217{left:154.440000px;}
.x2_c02217{left:433.080000px;}
@media print{
.v0_c02217{vertical-align:0.000000pt;}
.ls1c_c02217{letter-spacing:-0.240096pt;}
.ls1b_c02217{letter-spacing:-0.044800pt;}
.ls18_c02217{letter-spacing:-0.038400pt;}
.ls1a_c02217{letter-spacing:-0.032000pt;}
.ls17_c02217{letter-spacing:-0.025600pt;}
.ls19_c02217{letter-spacing:-0.019200pt;}
.ls16_c02217{letter-spacing:-0.012800pt;}
.ls15_c02217{letter-spacing:0.000000pt;}
.lsb_c02217{letter-spacing:0.005856pt;}
.ls6_c02217{letter-spacing:0.006400pt;}
.ls4_c02217{letter-spacing:0.012800pt;}
.ls0_c02217{letter-spacing:0.019200pt;}
.ls2_c02217{letter-spacing:0.025600pt;}
.ls9_c02217{letter-spacing:0.029280pt;}
.ls1_c02217{letter-spacing:0.032000pt;}
.ls3_c02217{letter-spacing:0.038400pt;}
.lsc_c02217{letter-spacing:0.040992pt;}
.lse_c02217{letter-spacing:0.046848pt;}
.ls7_c02217{letter-spacing:0.051200pt;}
.ls14_c02217{letter-spacing:0.052704pt;}
.ls5_c02217{letter-spacing:0.057600pt;}
.lsf_c02217{letter-spacing:0.058560pt;}
.ls13_c02217{letter-spacing:0.064416pt;}
.lsd_c02217{letter-spacing:0.070272pt;}
.lsa_c02217{letter-spacing:0.087840pt;}
.ls11_c02217{letter-spacing:0.111264pt;}
.ls12_c02217{letter-spacing:0.122976pt;}
.ls10_c02217{letter-spacing:0.152256pt;}
.ls8_c02217{letter-spacing:0.158112pt;}
.ws0_c02217{word-spacing:-14.798112pt;}
.ws14_c02217{word-spacing:-0.115200pt;}
.ws2_c02217{word-spacing:-0.044800pt;}
.ws1e_c02217{word-spacing:-0.040992pt;}
.ws1d_c02217{word-spacing:-0.029280pt;}
.ws16_c02217{word-spacing:-0.006400pt;}
.ws1_c02217{word-spacing:0.000000pt;}
.ws21_c02217{word-spacing:0.011712pt;}
.ws3_c02217{word-spacing:0.012800pt;}
.ws1f_c02217{word-spacing:0.017568pt;}
.ws1c_c02217{word-spacing:0.023424pt;}
.ws20_c02217{word-spacing:0.029280pt;}
.ws15_c02217{word-spacing:0.032000pt;}
.ws1b_c02217{word-spacing:0.035136pt;}
.ws1a_c02217{word-spacing:0.679296pt;}
.ws10_c02217{word-spacing:1.171200pt;}
.wsf_c02217{word-spacing:1.241600pt;}
.ws4_c02217{word-spacing:1.420800pt;}
.ws6_c02217{word-spacing:1.440000pt;}
.ws5_c02217{word-spacing:1.497600pt;}
.ws8_c02217{word-spacing:4.339200pt;}
.ws7_c02217{word-spacing:4.454400pt;}
.ws9_c02217{word-spacing:4.518400pt;}
.wsc_c02217{word-spacing:9.235200pt;}
.wse_c02217{word-spacing:9.267200pt;}
.wsd_c02217{word-spacing:9.305600pt;}
.ws18_c02217{word-spacing:12.473280pt;}
.ws17_c02217{word-spacing:12.531840pt;}
.ws19_c02217{word-spacing:12.555264pt;}
.ws12_c02217{word-spacing:14.918400pt;}
.ws13_c02217{word-spacing:14.924800pt;}
.ws11_c02217{word-spacing:15.052800pt;}
.wsa_c02217{word-spacing:15.584000pt;}
.wsb_c02217{word-spacing:15.590400pt;}
._0_c02217{margin-left:-0.947200pt;}
._1_c02217{width:0.995520pt;}
._2_c02217{width:74.584064pt;}
._4_c02217{width:77.365664pt;}
._a_c02217{width:125.853984pt;}
._3_c02217{width:218.654016pt;}
._5_c02217{width:323.898048pt;}
._7_c02217{width:386.522112pt;}
._6_c02217{width:400.453536pt;}
._9_c02217{width:472.195392pt;}
._8_c02217{width:1077.746784pt;}
.fs3_c02217{font-size:2.560000pt;}
.fs1_c02217{font-size:42.560000pt;}
.fs2_c02217{font-size:58.560000pt;}
.fs0_c02217{font-size:64.000000pt;}
.y0_c02217{bottom:0.000000pt;}
.y3_c02217{bottom:50.987067pt;}
.y2_c02217{bottom:69.387067pt;}
.y31_c02217{bottom:110.747200pt;}
.y30_c02217{bottom:129.147200pt;}
.y2f_c02217{bottom:147.467200pt;}
.y2e_c02217{bottom:165.867200pt;}
.y2d_c02217{bottom:184.267200pt;}
.y2c_c02217{bottom:202.667200pt;}
.y2b_c02217{bottom:221.067200pt;}
.y2a_c02217{bottom:239.467200pt;}
.y29_c02217{bottom:257.867200pt;}
.y28_c02217{bottom:276.267200pt;}
.y27_c02217{bottom:294.667200pt;}
.y26_c02217{bottom:313.067200pt;}
.y25_c02217{bottom:331.467200pt;}
.y24_c02217{bottom:349.867200pt;}
.y23_c02217{bottom:368.267200pt;}
.y22_c02217{bottom:386.667200pt;}
.y21_c02217{bottom:405.067200pt;}
.y20_c02217{bottom:432.987200pt;}
.y1f_c02217{bottom:436.907200pt;}
.y1e_c02217{bottom:454.427067pt;}
.y1d_c02217{bottom:471.947067pt;}
.y1c_c02217{bottom:489.547067pt;}
.y1b_c02217{bottom:507.067067pt;}
.y1a_c02217{bottom:524.587067pt;}
.y19_c02217{bottom:542.107067pt;}
.y18_c02217{bottom:559.627067pt;}
.y17_c02217{bottom:577.227907pt;}
.y16_c02217{bottom:594.107827pt;}
.y15_c02217{bottom:610.987747pt;}
.y14_c02217{bottom:627.867667pt;}
.y13_c02217{bottom:644.667067pt;}
.y12_c02217{bottom:662.427067pt;}
.y11_c02217{bottom:681.467067pt;}
.y10_c02217{bottom:709.707067pt;}
.yf_c02217{bottom:733.387067pt;}
.ye_c02217{bottom:746.667067pt;}
.yd_c02217{bottom:774.267067pt;}
.yc_c02217{bottom:801.867067pt;}
.yb_c02217{bottom:829.467067pt;}
.ya_c02217{bottom:857.067067pt;}
.y9_c02217{bottom:884.667067pt;}
.y8_c02217{bottom:912.267067pt;}
.y7_c02217{bottom:939.867067pt;}
.y6_c02217{bottom:967.307067pt;}
.y5_c02217{bottom:990.987067pt;}
.y4_c02217{bottom:1013.307067pt;}
.y1_c02217{bottom:1060.587067pt;}
.h6_c02217{height:2.246250pt;}
.h3_c02217{height:37.343906pt;}
.h5_c02217{height:51.382969pt;}
.h4_c02217{height:52.012031pt;}
.h2_c02217{height:56.156250pt;}
.h1_c02217{height:56.843750pt;}
.h0_c02217{height:1122.666667pt;}
.w1_c02217{width:793.333333pt;}
.w0_c02217{width:793.626667pt;}
.x0_c02217{left:0.000000pt;}
.x1_c02217{left:113.440000pt;}
.x4_c02217{left:120.560000pt;}
.x5_c02217{left:130.000000pt;}
.x3_c02217{left:132.400000pt;}
.x6_c02217{left:137.280000pt;}
.x2_c02217{left:384.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_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_fe49d5928a75056d412934ab.woff2')format("woff");}.ff1_c02218{font-family:ff1_c02218;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02218;src:url('chunks/assets/font_f44522f31683265173daafb0.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_d5972482415539924bb4a59b.woff2')format("woff");}.ff3_c02218{font-family:ff3_c02218;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_c02218;src:url('chunks/assets/font_4f6e5e02ae0686907f4de617.woff2')format("woff");}.ff4_c02218{font-family:ff4_c02218;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_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);}
.v2_c02218{vertical-align:-9.000000px;}
.v1_c02218{vertical-align:-5.400000px;}
.v0_c02218{vertical-align:0.000000px;}
.ls14_c02218{letter-spacing:-0.021600px;}
.ls15_c02218{letter-spacing:-0.014400px;}
.ls13_c02218{letter-spacing:-0.007200px;}
.ls12_c02218{letter-spacing:0.000000px;}
.ls6_c02218{letter-spacing:0.007200px;}
.ls0_c02218{letter-spacing:0.013176px;}
.ls4_c02218{letter-spacing:0.014400px;}
.lsa_c02218{letter-spacing:0.019764px;}
.ls8_c02218{letter-spacing:0.021600px;}
.ls3_c02218{letter-spacing:0.028800px;}
.ls9_c02218{letter-spacing:0.032940px;}
.lsc_c02218{letter-spacing:0.036000px;}
.lsb_c02218{letter-spacing:0.039528px;}
.ls5_c02218{letter-spacing:0.043200px;}
.ls7_c02218{letter-spacing:0.046116px;}
.lsd_c02218{letter-spacing:0.050400px;}
.ls16_c02218{letter-spacing:0.052704px;}
.ls10_c02218{letter-spacing:0.057600px;}
.lsf_c02218{letter-spacing:0.064800px;}
.ls11_c02218{letter-spacing:0.065880px;}
.lse_c02218{letter-spacing:0.079200px;}
.ls1_c02218{letter-spacing:0.144000px;}
.ls2_c02218{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02218{word-spacing:-17.992800px;}
.ws0_c02218{word-spacing:-12.151944px;}
.ws17_c02218{word-spacing:-0.230400px;}
.ws1a_c02218{word-spacing:-0.223200px;}
.ws24_c02218{word-spacing:-0.216000px;}
.ws21_c02218{word-spacing:-0.187200px;}
.ws1d_c02218{word-spacing:-0.180000px;}
.ws1b_c02218{word-spacing:-0.100800px;}
.ws8_c02218{word-spacing:-0.093600px;}
.wsc_c02218{word-spacing:-0.086400px;}
.ws13_c02218{word-spacing:-0.079200px;}
.wsd_c02218{word-spacing:-0.072000px;}
.ws14_c02218{word-spacing:-0.057600px;}
.ws3_c02218{word-spacing:-0.050400px;}
.ws11_c02218{word-spacing:-0.043200px;}
.ws22_c02218{word-spacing:-0.028800px;}
.wsf_c02218{word-spacing:-0.021600px;}
.ws9_c02218{word-spacing:-0.014400px;}
.ws12_c02218{word-spacing:-0.007200px;}
.ws2_c02218{word-spacing:0.000000px;}
.ws4_c02218{word-spacing:0.007200px;}
.ws1f_c02218{word-spacing:0.014400px;}
.ws20_c02218{word-spacing:0.026352px;}
.ws1c_c02218{word-spacing:0.028800px;}
.ws23_c02218{word-spacing:0.039528px;}
.wse_c02218{word-spacing:0.046116px;}
.ws1e_c02218{word-spacing:0.052704px;}
.ws10_c02218{word-spacing:0.059292px;}
.ws5_c02218{word-spacing:1.987200px;}
.ws6_c02218{word-spacing:2.023200px;}
.ws15_c02218{word-spacing:2.124000px;}
.ws16_c02218{word-spacing:2.160000px;}
.ws18_c02218{word-spacing:7.185600px;}
.ws19_c02218{word-spacing:7.200000px;}
.ws7_c02218{word-spacing:18.993600px;}
.wsa_c02218{word-spacing:26.913600px;}
.wsb_c02218{word-spacing:26.928000px;}
._1_c02218{margin-left:-1.119816px;}
._2_c02218{width:141.689772px;}
._3_c02218{width:145.431756px;}
._0_c02218{width:191.501640px;}
._4_c02218{width:294.089976px;}
.fc0_c02218{color:rgb(0,0,0);}
.fs2_c02218{font-size:47.880000px;}
.fs1_c02218{font-size:65.880000px;}
.fs0_c02218{font-size:72.000000px;}
.y0_c02218{bottom:0.000000px;}
.y3_c02218{bottom:57.360450px;}
.y2_c02218{bottom:78.060450px;}
.y35_c02218{bottom:123.150450px;}
.y34_c02218{bottom:143.850450px;}
.y33_c02218{bottom:164.550450px;}
.y32_c02218{bottom:185.250450px;}
.y31_c02218{bottom:205.950450px;}
.y30_c02218{bottom:226.650450px;}
.y2f_c02218{bottom:247.350450px;}
.y2e_c02218{bottom:268.050450px;}
.y2d_c02218{bottom:288.750450px;}
.y2c_c02218{bottom:309.450450px;}
.y2b_c02218{bottom:330.150450px;}
.y2a_c02218{bottom:350.850450px;}
.y29_c02218{bottom:371.550450px;}
.y28_c02218{bottom:392.250450px;}
.y27_c02218{bottom:412.950450px;}
.y26_c02218{bottom:433.650450px;}
.y25_c02218{bottom:455.250450px;}
.y24_c02218{bottom:476.220450px;}
.y23_c02218{bottom:496.380450px;}
.y22_c02218{bottom:517.080450px;}
.y21_c02218{bottom:538.140450px;}
.y20_c02218{bottom:558.300450px;}
.y1f_c02218{bottom:579.270450px;}
.y1e_c02218{bottom:599.430450px;}
.y1d_c02218{bottom:620.130450px;}
.y1c_c02218{bottom:640.830450px;}
.y1b_c02218{bottom:661.530450px;}
.y1a_c02218{bottom:682.230450px;}
.y19_c02218{bottom:702.930450px;}
.y18_c02218{bottom:723.900450px;}
.y17_c02218{bottom:744.150450px;}
.y16_c02218{bottom:764.850450px;}
.y15_c02218{bottom:785.820450px;}
.y14_c02218{bottom:805.800450px;}
.y13_c02218{bottom:826.500450px;}
.y12_c02218{bottom:847.200450px;}
.y11_c02218{bottom:867.900450px;}
.y10_c02218{bottom:888.600450px;}
.yf_c02218{bottom:909.300450px;}
.ye_c02218{bottom:930.000450px;}
.yd_c02218{bottom:952.140450px;}
.yc_c02218{bottom:973.560450px;}
.yb_c02218{bottom:995.070450px;}
.ya_c02218{bottom:1015.140450px;}
.y9_c02218{bottom:1035.840450px;}
.y8_c02218{bottom:1056.540450px;}
.y7_c02218{bottom:1077.240450px;}
.y6_c02218{bottom:1099.290450px;}
.y5_c02218{bottom:1119.270450px;}
.y4_c02218{bottom:1139.970450px;}
.y1_c02218{bottom:1193.160450px;}
.h5_c02218{height:58.513535px;}
.h2_c02218{height:63.175781px;}
.h1_c02218{height:63.949219px;}
.h3_c02218{height:65.228906px;}
.h4_c02218{height:70.628906px;}
.h0_c02218{height:1263.000000px;}
.w1_c02218{width:892.500000px;}
.w0_c02218{width:892.830000px;}
.x0_c02218{left:0.000000px;}
.x1_c02218{left:127.620000px;}
.x3_c02218{left:135.630000px;}
.x4_c02218{left:252.630000px;}
.x2_c02218{left:433.080000px;}
@media print{
.v2_c02218{vertical-align:-8.000000pt;}
.v1_c02218{vertical-align:-4.800000pt;}
.v0_c02218{vertical-align:0.000000pt;}
.ls14_c02218{letter-spacing:-0.019200pt;}
.ls15_c02218{letter-spacing:-0.012800pt;}
.ls13_c02218{letter-spacing:-0.006400pt;}
.ls12_c02218{letter-spacing:0.000000pt;}
.ls6_c02218{letter-spacing:0.006400pt;}
.ls0_c02218{letter-spacing:0.011712pt;}
.ls4_c02218{letter-spacing:0.012800pt;}
.lsa_c02218{letter-spacing:0.017568pt;}
.ls8_c02218{letter-spacing:0.019200pt;}
.ls3_c02218{letter-spacing:0.025600pt;}
.ls9_c02218{letter-spacing:0.029280pt;}
.lsc_c02218{letter-spacing:0.032000pt;}
.lsb_c02218{letter-spacing:0.035136pt;}
.ls5_c02218{letter-spacing:0.038400pt;}
.ls7_c02218{letter-spacing:0.040992pt;}
.lsd_c02218{letter-spacing:0.044800pt;}
.ls16_c02218{letter-spacing:0.046848pt;}
.ls10_c02218{letter-spacing:0.051200pt;}
.lsf_c02218{letter-spacing:0.057600pt;}
.ls11_c02218{letter-spacing:0.058560pt;}
.lse_c02218{letter-spacing:0.070400pt;}
.ls1_c02218{letter-spacing:0.128000pt;}
.ls2_c02218{letter-spacing:0.161728pt;}
.ws1_c02218{word-spacing:-15.993600pt;}
.ws0_c02218{word-spacing:-10.801728pt;}
.ws17_c02218{word-spacing:-0.204800pt;}
.ws1a_c02218{word-spacing:-0.198400pt;}
.ws24_c02218{word-spacing:-0.192000pt;}
.ws21_c02218{word-spacing:-0.166400pt;}
.ws1d_c02218{word-spacing:-0.160000pt;}
.ws1b_c02218{word-spacing:-0.089600pt;}
.ws8_c02218{word-spacing:-0.083200pt;}
.wsc_c02218{word-spacing:-0.076800pt;}
.ws13_c02218{word-spacing:-0.070400pt;}
.wsd_c02218{word-spacing:-0.064000pt;}
.ws14_c02218{word-spacing:-0.051200pt;}
.ws3_c02218{word-spacing:-0.044800pt;}
.ws11_c02218{word-spacing:-0.038400pt;}
.ws22_c02218{word-spacing:-0.025600pt;}
.wsf_c02218{word-spacing:-0.019200pt;}
.ws9_c02218{word-spacing:-0.012800pt;}
.ws12_c02218{word-spacing:-0.006400pt;}
.ws2_c02218{word-spacing:0.000000pt;}
.ws4_c02218{word-spacing:0.006400pt;}
.ws1f_c02218{word-spacing:0.012800pt;}
.ws20_c02218{word-spacing:0.023424pt;}
.ws1c_c02218{word-spacing:0.025600pt;}
.ws23_c02218{word-spacing:0.035136pt;}
.wse_c02218{word-spacing:0.040992pt;}
.ws1e_c02218{word-spacing:0.046848pt;}
.ws10_c02218{word-spacing:0.052704pt;}
.ws5_c02218{word-spacing:1.766400pt;}
.ws6_c02218{word-spacing:1.798400pt;}
.ws15_c02218{word-spacing:1.888000pt;}
.ws16_c02218{word-spacing:1.920000pt;}
.ws18_c02218{word-spacing:6.387200pt;}
.ws19_c02218{word-spacing:6.400000pt;}
.ws7_c02218{word-spacing:16.883200pt;}
.wsa_c02218{word-spacing:23.923200pt;}
.wsb_c02218{word-spacing:23.936000pt;}
._1_c02218{margin-left:-0.995392pt;}
._2_c02218{width:125.946464pt;}
._3_c02218{width:129.272672pt;}
._0_c02218{width:170.223680pt;}
._4_c02218{width:261.413312pt;}
.fs2_c02218{font-size:42.560000pt;}
.fs1_c02218{font-size:58.560000pt;}
.fs0_c02218{font-size:64.000000pt;}
.y0_c02218{bottom:0.000000pt;}
.y3_c02218{bottom:50.987067pt;}
.y2_c02218{bottom:69.387067pt;}
.y35_c02218{bottom:109.467067pt;}
.y34_c02218{bottom:127.867067pt;}
.y33_c02218{bottom:146.267067pt;}
.y32_c02218{bottom:164.667067pt;}
.y31_c02218{bottom:183.067067pt;}
.y30_c02218{bottom:201.467067pt;}
.y2f_c02218{bottom:219.867067pt;}
.y2e_c02218{bottom:238.267067pt;}
.y2d_c02218{bottom:256.667067pt;}
.y2c_c02218{bottom:275.067067pt;}
.y2b_c02218{bottom:293.467067pt;}
.y2a_c02218{bottom:311.867067pt;}
.y29_c02218{bottom:330.267067pt;}
.y28_c02218{bottom:348.667067pt;}
.y27_c02218{bottom:367.067067pt;}
.y26_c02218{bottom:385.467067pt;}
.y25_c02218{bottom:404.667067pt;}
.y24_c02218{bottom:423.307067pt;}
.y23_c02218{bottom:441.227067pt;}
.y22_c02218{bottom:459.627067pt;}
.y21_c02218{bottom:478.347067pt;}
.y20_c02218{bottom:496.267067pt;}
.y1f_c02218{bottom:514.907067pt;}
.y1e_c02218{bottom:532.827067pt;}
.y1d_c02218{bottom:551.227067pt;}
.y1c_c02218{bottom:569.627067pt;}
.y1b_c02218{bottom:588.027067pt;}
.y1a_c02218{bottom:606.427067pt;}
.y19_c02218{bottom:624.827067pt;}
.y18_c02218{bottom:643.467067pt;}
.y17_c02218{bottom:661.467067pt;}
.y16_c02218{bottom:679.867067pt;}
.y15_c02218{bottom:698.507067pt;}
.y14_c02218{bottom:716.267067pt;}
.y13_c02218{bottom:734.667067pt;}
.y12_c02218{bottom:753.067067pt;}
.y11_c02218{bottom:771.467067pt;}
.y10_c02218{bottom:789.867067pt;}
.yf_c02218{bottom:808.267067pt;}
.ye_c02218{bottom:826.667067pt;}
.yd_c02218{bottom:846.347067pt;}
.yc_c02218{bottom:865.387067pt;}
.yb_c02218{bottom:884.507067pt;}
.ya_c02218{bottom:902.347067pt;}
.y9_c02218{bottom:920.747067pt;}
.y8_c02218{bottom:939.147067pt;}
.y7_c02218{bottom:957.547067pt;}
.y6_c02218{bottom:977.147067pt;}
.y5_c02218{bottom:994.907067pt;}
.y4_c02218{bottom:1013.307067pt;}
.y1_c02218{bottom:1060.587067pt;}
.h5_c02218{height:52.012031pt;}
.h2_c02218{height:56.156250pt;}
.h1_c02218{height:56.843750pt;}
.h3_c02218{height:57.981250pt;}
.h4_c02218{height:62.781250pt;}
.h0_c02218{height:1122.666667pt;}
.w1_c02218{width:793.333333pt;}
.w0_c02218{width:793.626667pt;}
.x0_c02218{left:0.000000pt;}
.x1_c02218{left:113.440000pt;}
.x3_c02218{left:120.560000pt;}
.x4_c02218{left:224.560000pt;}
.x2_c02218{left:384.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_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_fd5cec045bf96a5bc5450418.woff2')format("woff");}.ff1_c02219{font-family:ff1_c02219;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02219;src:url('chunks/assets/font_3f25e3b1804d2ac6c2bb7ef5.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c02219{font-family:ff3_c02219;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_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:61.920000px;}
.ls1c_c02219{letter-spacing:-0.113400px;}
.ls1b_c02219{letter-spacing:-0.086400px;}
.ls1a_c02219{letter-spacing:-0.070200px;}
.ls19_c02219{letter-spacing:-0.014400px;}
.ls18_c02219{letter-spacing:-0.007200px;}
.ls1e_c02219{letter-spacing:-0.006588px;}
.ls1d_c02219{letter-spacing:-0.006012px;}
.ls15_c02219{letter-spacing:0.000000px;}
.ls16_c02219{letter-spacing:0.007200px;}
.ls17_c02219{letter-spacing:0.014400px;}
.ls14_c02219{letter-spacing:0.019764px;}
.ls3_c02219{letter-spacing:0.021600px;}
.ls2_c02219{letter-spacing:0.036000px;}
.ls12_c02219{letter-spacing:0.039528px;}
.ls13_c02219{letter-spacing:0.046116px;}
.ls0_c02219{letter-spacing:0.050400px;}
.lsa_c02219{letter-spacing:0.059292px;}
.ls1_c02219{letter-spacing:0.064800px;}
.ls9_c02219{letter-spacing:0.065880px;}
.lse_c02219{letter-spacing:0.079056px;}
.ls10_c02219{letter-spacing:0.085644px;}
.ls4_c02219{letter-spacing:0.097200px;}
.ls6_c02219{letter-spacing:0.105408px;}
.lsb_c02219{letter-spacing:0.118584px;}
.ls8_c02219{letter-spacing:0.138348px;}
.ls5_c02219{letter-spacing:0.144288px;}
.ls7_c02219{letter-spacing:0.151524px;}
.ls11_c02219{letter-spacing:0.158112px;}
.lsc_c02219{letter-spacing:0.177876px;}
.lsf_c02219{letter-spacing:167.130000px;}
.lsd_c02219{letter-spacing:199.890000px;}
.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;}
}
.ws3_c02219{word-spacing:-0.172800px;}
.ws8_c02219{word-spacing:-0.122400px;}
.ws9_c02219{word-spacing:-0.108000px;}
.wsd_c02219{word-spacing:-0.054108px;}
.ws1_c02219{word-spacing:-0.050400px;}
.ws11_c02219{word-spacing:-0.026352px;}
.ws2_c02219{word-spacing:-0.014400px;}
.wse_c02219{word-spacing:-0.013176px;}
.ws7_c02219{word-spacing:-0.007200px;}
.ws0_c02219{word-spacing:0.000000px;}
.wsf_c02219{word-spacing:0.026352px;}
.ws10_c02219{word-spacing:0.032940px;}
.ws13_c02219{word-spacing:0.046116px;}
.ws12_c02219{word-spacing:0.052704px;}
.wsc_c02219{word-spacing:0.081000px;}
.ws14_c02219{word-spacing:0.098820px;}
.wsa_c02219{word-spacing:0.248400px;}
.wsb_c02219{word-spacing:0.291600px;}
.ws6_c02219{word-spacing:0.597600px;}
.ws5_c02219{word-spacing:8.978400px;}
.ws4_c02219{word-spacing:9.151200px;}
._0_c02219{margin-left:-1.339200px;}
._3_c02219{width:1.112400px;}
._19_c02219{width:82.369440px;}
._13_c02219{width:83.842380px;}
._14_c02219{width:91.992744px;}
._a_c02219{width:100.402380px;}
._6_c02219{width:104.490000px;}
._12_c02219{width:108.278496px;}
._7_c02219{width:116.114040px;}
._9_c02219{width:124.836372px;}
._d_c02219{width:133.546608px;}
._f_c02219{width:136.787256px;}
._b_c02219{width:141.848388px;}
._8_c02219{width:143.651952px;}
._c_c02219{width:158.314248px;}
._1a_c02219{width:161.594424px;}
._5_c02219{width:169.288704px;}
._16_c02219{width:174.586608px;}
._10_c02219{width:178.166592px;}
._1e_c02219{width:188.710308px;}
._1f_c02219{width:190.077768px;}
._1d_c02219{width:192.229704px;}
._1b_c02219{width:198.997848px;}
._1c_c02219{width:200.182608px;}
._15_c02219{width:215.421732px;}
._4_c02219{width:216.870192px;}
._11_c02219{width:219.284424px;}
._18_c02219{width:243.970776px;}
._e_c02219{width:246.806856px;}
._17_c02219{width:281.541024px;}
._2_c02219{width:475.905600px;}
._1_c02219{width:2475.000000px;}
.fc0_c02219{color:rgb(0,0,0);}
.fs1_c02219{font-size:29.880000px;}
.fs2_c02219{font-size:54.000000px;}
.fs3_c02219{font-size:60.120000px;}
.fs4_c02219{font-size:65.880000px;}
.fs0_c02219{font-size:72.000000px;}
.y0_c02219{bottom:0.000000px;}
.y3_c02219{bottom:57.360450px;}
.y2_c02219{bottom:78.060450px;}
.y2b_c02219{bottom:127.201476px;}
.y2a_c02219{bottom:135.841278px;}
.y29_c02219{bottom:144.481080px;}
.y28_c02219{bottom:153.120882px;}
.y27_c02219{bottom:161.760684px;}
.y26_c02219{bottom:170.400486px;}
.y25_c02219{bottom:178.950648px;}
.y24_c02219{bottom:187.590450px;}
.y23_c02219{bottom:198.570450px;}
.y22_c02219{bottom:217.560450px;}
.y21_c02219{bottom:236.550450px;}
.y20_c02219{bottom:255.540450px;}
.y1f_c02219{bottom:274.890450px;}
.y1e_c02219{bottom:293.790450px;}
.y1d_c02219{bottom:312.780450px;}
.y1c_c02219{bottom:331.770450px;}
.y1b_c02219{bottom:350.760450px;}
.y1a_c02219{bottom:369.750600px;}
.y19_c02219{bottom:388.740450px;}
.y18_c02219{bottom:407.280450px;}
.y16_c02219{bottom:424.290600px;}
.y15_c02219{bottom:439.770600px;}
.y14_c02219{bottom:440.760450px;}
.y17_c02219{bottom:456.240450px;}
.y13_c02219{bottom:476.940600px;}
.y12_c02219{bottom:502.950450px;}
.y11_c02219{bottom:526.710450px;}
.y10_c02219{bottom:547.500450px;}
.yf_c02219{bottom:568.200450px;}
.ye_c02219{bottom:588.900450px;}
.yd_c02219{bottom:609.780450px;}
.yc_c02219{bottom:626.340450px;}
.yb_c02219{bottom:953.130450px;}
.ya_c02219{bottom:974.550450px;}
.y9_c02219{bottom:1005.600450px;}
.y8_c02219{bottom:1036.650450px;}
.y7_c02219{bottom:1067.700450px;}
.y6_c02219{bottom:1098.570450px;}
.y5_c02219{bottom:1119.270450px;}
.y4_c02219{bottom:1139.970450px;}
.y1_c02219{bottom:1193.160450px;}
.h3_c02219{height:26.538926px;}
.h6_c02219{height:47.961914px;}
.h7_c02219{height:53.397598px;}
.h8_c02219{height:58.513535px;}
.h2_c02219{height:63.175781px;}
.h1_c02219{height:63.949219px;}
.h4_c02219{height:75.093750px;}
.h5_c02219{height:125.869219px;}
.h0_c02219{height:1263.000000px;}
.w1_c02219{width:892.500000px;}
.w0_c02219{width:892.830000px;}
.x0_c02219{left:0.000000px;}
.x1_c02219{left:127.620000px;}
.x6_c02219{left:135.630000px;}
.x4_c02219{left:148.950000px;}
.xe_c02219{left:160.920000px;}
.x7_c02219{left:246.420000px;}
.x8_c02219{left:285.660000px;}
.x3_c02219{left:373.140000px;}
.xa_c02219{left:421.470000px;}
.x5_c02219{left:430.560000px;}
.x2_c02219{left:433.080000px;}
.xb_c02219{left:460.260000px;}
.x9_c02219{left:462.690000px;}
.xd_c02219{left:600.660000px;}
.xc_c02219{left:637.290000px;}
@media print{
.v0_c02219{vertical-align:0.000000pt;}
.v1_c02219{vertical-align:55.040000pt;}
.ls1c_c02219{letter-spacing:-0.100800pt;}
.ls1b_c02219{letter-spacing:-0.076800pt;}
.ls1a_c02219{letter-spacing:-0.062400pt;}
.ls19_c02219{letter-spacing:-0.012800pt;}
.ls18_c02219{letter-spacing:-0.006400pt;}
.ls1e_c02219{letter-spacing:-0.005856pt;}
.ls1d_c02219{letter-spacing:-0.005344pt;}
.ls15_c02219{letter-spacing:0.000000pt;}
.ls16_c02219{letter-spacing:0.006400pt;}
.ls17_c02219{letter-spacing:0.012800pt;}
.ls14_c02219{letter-spacing:0.017568pt;}
.ls3_c02219{letter-spacing:0.019200pt;}
.ls2_c02219{letter-spacing:0.032000pt;}
.ls12_c02219{letter-spacing:0.035136pt;}
.ls13_c02219{letter-spacing:0.040992pt;}
.ls0_c02219{letter-spacing:0.044800pt;}
.lsa_c02219{letter-spacing:0.052704pt;}
.ls1_c02219{letter-spacing:0.057600pt;}
.ls9_c02219{letter-spacing:0.058560pt;}
.lse_c02219{letter-spacing:0.070272pt;}
.ls10_c02219{letter-spacing:0.076128pt;}
.ls4_c02219{letter-spacing:0.086400pt;}
.ls6_c02219{letter-spacing:0.093696pt;}
.lsb_c02219{letter-spacing:0.105408pt;}
.ls8_c02219{letter-spacing:0.122976pt;}
.ls5_c02219{letter-spacing:0.128256pt;}
.ls7_c02219{letter-spacing:0.134688pt;}
.ls11_c02219{letter-spacing:0.140544pt;}
.lsc_c02219{letter-spacing:0.158112pt;}
.lsf_c02219{letter-spacing:148.560000pt;}
.lsd_c02219{letter-spacing:177.680000pt;}
.ws3_c02219{word-spacing:-0.153600pt;}
.ws8_c02219{word-spacing:-0.108800pt;}
.ws9_c02219{word-spacing:-0.096000pt;}
.wsd_c02219{word-spacing:-0.048096pt;}
.ws1_c02219{word-spacing:-0.044800pt;}
.ws11_c02219{word-spacing:-0.023424pt;}
.ws2_c02219{word-spacing:-0.012800pt;}
.wse_c02219{word-spacing:-0.011712pt;}
.ws7_c02219{word-spacing:-0.006400pt;}
.ws0_c02219{word-spacing:0.000000pt;}
.wsf_c02219{word-spacing:0.023424pt;}
.ws10_c02219{word-spacing:0.029280pt;}
.ws13_c02219{word-spacing:0.040992pt;}
.ws12_c02219{word-spacing:0.046848pt;}
.wsc_c02219{word-spacing:0.072000pt;}
.ws14_c02219{word-spacing:0.087840pt;}
.wsa_c02219{word-spacing:0.220800pt;}
.wsb_c02219{word-spacing:0.259200pt;}
.ws6_c02219{word-spacing:0.531200pt;}
.ws5_c02219{word-spacing:7.980800pt;}
.ws4_c02219{word-spacing:8.134400pt;}
._0_c02219{margin-left:-1.190400pt;}
._3_c02219{width:0.988800pt;}
._19_c02219{width:73.217280pt;}
._13_c02219{width:74.526560pt;}
._14_c02219{width:81.771328pt;}
._a_c02219{width:89.246560pt;}
._6_c02219{width:92.880000pt;}
._12_c02219{width:96.247552pt;}
._7_c02219{width:103.212480pt;}
._9_c02219{width:110.965664pt;}
._d_c02219{width:118.708096pt;}
._f_c02219{width:121.588672pt;}
._b_c02219{width:126.087456pt;}
._8_c02219{width:127.690624pt;}
._c_c02219{width:140.723776pt;}
._1a_c02219{width:143.639488pt;}
._5_c02219{width:150.478848pt;}
._16_c02219{width:155.188096pt;}
._10_c02219{width:158.370304pt;}
._1e_c02219{width:167.742496pt;}
._1f_c02219{width:168.958016pt;}
._1d_c02219{width:170.870848pt;}
._1b_c02219{width:176.886976pt;}
._1c_c02219{width:177.940096pt;}
._15_c02219{width:191.485984pt;}
._4_c02219{width:192.773504pt;}
._11_c02219{width:194.919488pt;}
._18_c02219{width:216.862912pt;}
._e_c02219{width:219.383872pt;}
._17_c02219{width:250.258688pt;}
._2_c02219{width:423.027200pt;}
._1_c02219{width:2200.000000pt;}
.fs1_c02219{font-size:26.560000pt;}
.fs2_c02219{font-size:48.000000pt;}
.fs3_c02219{font-size:53.440000pt;}
.fs4_c02219{font-size:58.560000pt;}
.fs0_c02219{font-size:64.000000pt;}
.y0_c02219{bottom:0.000000pt;}
.y3_c02219{bottom:50.987067pt;}
.y2_c02219{bottom:69.387067pt;}
.y2b_c02219{bottom:113.067979pt;}
.y2a_c02219{bottom:120.747803pt;}
.y29_c02219{bottom:128.427627pt;}
.y28_c02219{bottom:136.107451pt;}
.y27_c02219{bottom:143.787275pt;}
.y26_c02219{bottom:151.467099pt;}
.y25_c02219{bottom:159.067243pt;}
.y24_c02219{bottom:166.747067pt;}
.y23_c02219{bottom:176.507067pt;}
.y22_c02219{bottom:193.387067pt;}
.y21_c02219{bottom:210.267067pt;}
.y20_c02219{bottom:227.147067pt;}
.y1f_c02219{bottom:244.347067pt;}
.y1e_c02219{bottom:261.147067pt;}
.y1d_c02219{bottom:278.027067pt;}
.y1c_c02219{bottom:294.907067pt;}
.y1b_c02219{bottom:311.787067pt;}
.y1a_c02219{bottom:328.667200pt;}
.y19_c02219{bottom:345.547067pt;}
.y18_c02219{bottom:362.027067pt;}
.y16_c02219{bottom:377.147200pt;}
.y15_c02219{bottom:390.907200pt;}
.y14_c02219{bottom:391.787067pt;}
.y17_c02219{bottom:405.547067pt;}
.y13_c02219{bottom:423.947200pt;}
.y12_c02219{bottom:447.067067pt;}
.y11_c02219{bottom:468.187067pt;}
.y10_c02219{bottom:486.667067pt;}
.yf_c02219{bottom:505.067067pt;}
.ye_c02219{bottom:523.467067pt;}
.yd_c02219{bottom:542.027067pt;}
.yc_c02219{bottom:556.747067pt;}
.yb_c02219{bottom:847.227067pt;}
.ya_c02219{bottom:866.267067pt;}
.y9_c02219{bottom:893.867067pt;}
.y8_c02219{bottom:921.467067pt;}
.y7_c02219{bottom:949.067067pt;}
.y6_c02219{bottom:976.507067pt;}
.y5_c02219{bottom:994.907067pt;}
.y4_c02219{bottom:1013.307067pt;}
.y1_c02219{bottom:1060.587067pt;}
.h3_c02219{height:23.590156pt;}
.h6_c02219{height:42.632812pt;}
.h7_c02219{height:47.464531pt;}
.h8_c02219{height:52.012031pt;}
.h2_c02219{height:56.156250pt;}
.h1_c02219{height:56.843750pt;}
.h4_c02219{height:66.750000pt;}
.h5_c02219{height:111.883750pt;}
.h0_c02219{height:1122.666667pt;}
.w1_c02219{width:793.333333pt;}
.w0_c02219{width:793.626667pt;}
.x0_c02219{left:0.000000pt;}
.x1_c02219{left:113.440000pt;}
.x6_c02219{left:120.560000pt;}
.x4_c02219{left:132.400000pt;}
.xe_c02219{left:143.040000pt;}
.x7_c02219{left:219.040000pt;}
.x8_c02219{left:253.920000pt;}
.x3_c02219{left:331.680000pt;}
.xa_c02219{left:374.640000pt;}
.x5_c02219{left:382.720000pt;}
.x2_c02219{left:384.960000pt;}
.xb_c02219{left:409.120000pt;}
.x9_c02219{left:411.280000pt;}
.xd_c02219{left:533.920000pt;}
.xc_c02219{left:566.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_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_8321badab6a799e71eeaa8cd.woff2')format("woff");}.ff1_c02220{font-family:ff1_c02220;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02220;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v7_c02220{vertical-align:-6.841800px;}
.v4_c02220{vertical-align:-3.960000px;}
.v3_c02220{vertical-align:-2.519400px;}
.v0_c02220{vertical-align:0.000000px;}
.v8_c02220{vertical-align:1.438200px;}
.v6_c02220{vertical-align:3.960000px;}
.v2_c02220{vertical-align:5.399400px;}
.v5_c02220{vertical-align:9.360000px;}
.v1_c02220{vertical-align:78.120000px;}
.ls2d_c02220{letter-spacing:-0.086184px;}
.ls26_c02220{letter-spacing:-0.046116px;}
.ls29_c02220{letter-spacing:-0.043200px;}
.ls2b_c02220{letter-spacing:-0.019152px;}
.ls23_c02220{letter-spacing:-0.014400px;}
.ls2a_c02220{letter-spacing:-0.010800px;}
.ls27_c02220{letter-spacing:-0.006588px;}
.ls24_c02220{letter-spacing:-0.006012px;}
.ls2e_c02220{letter-spacing:-0.004788px;}
.ls22_c02220{letter-spacing:0.000000px;}
.ls15_c02220{letter-spacing:0.007200px;}
.ls17_c02220{letter-spacing:0.010800px;}
.ls16_c02220{letter-spacing:0.014400px;}
.ls21_c02220{letter-spacing:0.019152px;}
.ls12_c02220{letter-spacing:0.019764px;}
.ls19_c02220{letter-spacing:0.028728px;}
.ls14_c02220{letter-spacing:0.028800px;}
.ls1b_c02220{letter-spacing:0.032400px;}
.ls1e_c02220{letter-spacing:0.037800px;}
.ls10_c02220{letter-spacing:0.039528px;}
.ls18_c02220{letter-spacing:0.043092px;}
.ls1d_c02220{letter-spacing:0.043200px;}
.ls11_c02220{letter-spacing:0.046116px;}
.ls9_c02220{letter-spacing:0.059292px;}
.ls1a_c02220{letter-spacing:0.059400px;}
.ls7_c02220{letter-spacing:0.065880px;}
.lsf_c02220{letter-spacing:0.072468px;}
.ls1_c02220{letter-spacing:0.079056px;}
.ls31_c02220{letter-spacing:0.081396px;}
.lsd_c02220{letter-spacing:0.085644px;}
.ls25_c02220{letter-spacing:0.092232px;}
.ls2_c02220{letter-spacing:0.098820px;}
.ls4_c02220{letter-spacing:0.105408px;}
.lsa_c02220{letter-spacing:0.118584px;}
.ls1c_c02220{letter-spacing:0.124488px;}
.ls20_c02220{letter-spacing:0.134064px;}
.ls5_c02220{letter-spacing:0.138348px;}
.ls3_c02220{letter-spacing:0.144288px;}
.ls28_c02220{letter-spacing:0.151200px;}
.ls8_c02220{letter-spacing:0.151524px;}
.lse_c02220{letter-spacing:0.158112px;}
.ls0_c02220{letter-spacing:0.164700px;}
.ls2c_c02220{letter-spacing:0.167580px;}
.lsb_c02220{letter-spacing:0.177876px;}
.ls32_c02220{letter-spacing:0.181944px;}
.lsc_c02220{letter-spacing:117.450000px;}
.ls2f_c02220{letter-spacing:143.818200px;}
.ls30_c02220{letter-spacing:145.621800px;}
.ls6_c02220{letter-spacing:183.420000px;}
.ls1f_c02220{letter-spacing:200.790000px;}
.ls13_c02220{letter-spacing:394.650000px;}
.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;}
}
.ws9_c02220{word-spacing:-16.647876px;}
.ws24_c02220{word-spacing:-0.272916px;}
.ws22_c02220{word-spacing:-0.225036px;}
.ws21_c02220{word-spacing:-0.215460px;}
.ws23_c02220{word-spacing:-0.172368px;}
.ws26_c02220{word-spacing:-0.119700px;}
.ws1d_c02220{word-spacing:-0.115200px;}
.ws25_c02220{word-spacing:-0.110124px;}
.ws15_c02220{word-spacing:-0.054108px;}
.ws11_c02220{word-spacing:-0.050400px;}
.ws19_c02220{word-spacing:-0.026352px;}
.ws1f_c02220{word-spacing:-0.014400px;}
.ws16_c02220{word-spacing:-0.013176px;}
.ws1e_c02220{word-spacing:-0.007200px;}
.ws13_c02220{word-spacing:-0.006588px;}
.ws10_c02220{word-spacing:0.000000px;}
.ws12_c02220{word-spacing:0.013176px;}
.ws14_c02220{word-spacing:0.019764px;}
.ws17_c02220{word-spacing:0.026352px;}
.ws18_c02220{word-spacing:0.032940px;}
.ws1b_c02220{word-spacing:0.046116px;}
.ws1a_c02220{word-spacing:0.052704px;}
.ws1c_c02220{word-spacing:0.098820px;}
.ws20_c02220{word-spacing:0.118800px;}
.wsf_c02220{word-spacing:58.969440px;}
.wsc_c02220{word-spacing:65.089440px;}
.wsb_c02220{word-spacing:67.238496px;}
.ws8_c02220{word-spacing:67.642380px;}
.ws4_c02220{word-spacing:99.996372px;}
.ws7_c02220{word-spacing:99.998496px;}
.ws5_c02220{word-spacing:100.402380px;}
.wsd_c02220{word-spacing:100.933020px;}
.ws3_c02220{word-spacing:150.082380px;}
.ws6_c02220{word-spacing:150.106608px;}
.ws1_c02220{word-spacing:166.763304px;}
.ws0_c02220{word-spacing:182.866608px;}
.wse_c02220{word-spacing:215.595972px;}
.wsa_c02220{word-spacing:215.986608px;}
.ws2_c02220{word-spacing:448.643304px;}
._1_c02220{margin-left:-1.148292px;}
._40_c02220{width:11.156400px;}
._39_c02220{width:50.497200px;}
._37_c02220{width:51.660000px;}
._41_c02220{width:53.638200px;}
._16_c02220{width:65.089440px;}
._34_c02220{width:66.124440px;}
._e_c02220{width:67.644504px;}
._35_c02220{width:72.477000px;}
._3c_c02220{width:75.420000px;}
._38_c02220{width:82.786140px;}
._14_c02220{width:83.886372px;}
._2f_c02220{width:85.646160px;}
._2c_c02220{width:87.409440px;}
._27_c02220{width:89.322336px;}
._3f_c02220{width:90.720000px;}
._9_c02220{width:99.996372px;}
._a_c02220{width:101.168388px;}
._4_c02220{width:104.490000px;}
._33_c02220{width:108.347688px;}
._36_c02220{width:113.329440px;}
._3a_c02220{width:114.624000px;}
._5_c02220{width:115.923132px;}
._32_c02220{width:119.215152px;}
._24_c02220{width:122.316372px;}
._20_c02220{width:126.810000px;}
._30_c02220{width:127.883628px;}
._3b_c02220{width:129.373200px;}
._7_c02220{width:133.116372px;}
._42_c02220{width:136.200168px;}
._31_c02220{width:139.258944px;}
._3d_c02220{width:149.146920px;}
._11_c02220{width:150.300000px;}
._22_c02220{width:155.794248px;}
._43_c02220{width:157.727016px;}
._3_c02220{width:169.288704px;}
._3e_c02220{width:172.777860px;}
._1f_c02220{width:176.128704px;}
._25_c02220{width:179.267256px;}
._10_c02220{width:182.995200px;}
._b_c02220{width:187.907256px;}
._6_c02220{width:194.771952px;}
._26_c02220{width:204.446592px;}
._1e_c02220{width:212.359284px;}
._2_c02220{width:216.679284px;}
._21_c02220{width:218.891952px;}
._13_c02220{width:231.656364px;}
._1a_c02220{width:232.740000px;}
._29_c02220{width:238.306608px;}
._2e_c02220{width:240.469704px;}
._c_c02220{width:245.846592px;}
._1b_c02220{width:249.109704px;}
._d_c02220{width:253.844424px;}
._2d_c02220{width:258.037848px;}
._2b_c02220{width:261.610776px;}
._17_c02220{width:266.677848px;}
._15_c02220{width:270.250776px;}
._28_c02220{width:274.461732px;}
._f_c02220{width:283.101732px;}
._23_c02220{width:289.286856px;}
._8_c02220{width:297.926856px;}
._2a_c02220{width:307.461024px;}
._12_c02220{width:316.101024px;}
._18_c02220{width:415.484964px;}
._0_c02220{width:485.985600px;}
._1d_c02220{width:503.985600px;}
._1c_c02220{width:642.754872px;}
._19_c02220{width:665.460000px;}
.fc0_c02220{color:rgb(0,0,0);}
.fs6_c02220{font-size:11.880000px;}
.fs3_c02220{font-size:29.880000px;}
.fs5_c02220{font-size:47.880000px;}
.fs4_c02220{font-size:54.000000px;}
.fs2_c02220{font-size:60.120000px;}
.fs1_c02220{font-size:65.880000px;}
.fs0_c02220{font-size:72.000000px;}
.y0_c02220{bottom:0.000000px;}
.y3_c02220{bottom:57.360450px;}
.y2_c02220{bottom:78.060450px;}
.y4a_c02220{bottom:118.380450px;}
.y49_c02220{bottom:118.739700px;}
.y48_c02220{bottom:137.370600px;}
.y47_c02220{bottom:137.729700px;}
.y46_c02220{bottom:156.360450px;}
.y45_c02220{bottom:156.719550px;}
.y44_c02220{bottom:175.260450px;}
.y43_c02220{bottom:175.710900px;}
.y42_c02220{bottom:194.250450px;}
.y41_c02220{bottom:194.610450px;}
.y40_c02220{bottom:214.230450px;}
.y3f_c02220{bottom:233.490450px;}
.y3e_c02220{bottom:249.960450px;}
.y3d_c02220{bottom:270.750450px;}
.y3c_c02220{bottom:279.570450px;}
.y3b_c02220{bottom:279.929550px;}
.y3a_c02220{bottom:298.470450px;}
.y39_c02220{bottom:298.920900px;}
.y38_c02220{bottom:317.460600px;}
.y37_c02220{bottom:317.819550px;}
.y36_c02220{bottom:336.450450px;}
.y35_c02220{bottom:336.809550px;}
.y34_c02220{bottom:355.440450px;}
.y33_c02220{bottom:355.800450px;}
.y32_c02220{bottom:375.420450px;}
.y31_c02220{bottom:394.680600px;}
.y30_c02220{bottom:411.150450px;}
.y2f_c02220{bottom:431.130162px;}
.y2e_c02220{bottom:444.900450px;}
.y2d_c02220{bottom:460.560450px;}
.y2c_c02220{bottom:481.080450px;}
.y2b_c02220{bottom:496.560900px;}
.y2a_c02220{bottom:512.130450px;}
.y29_c02220{bottom:528.690450px;}
.y28_c02220{bottom:547.590450px;}
.y27_c02220{bottom:566.580450px;}
.y26_c02220{bottom:585.570450px;}
.y25_c02220{bottom:604.920450px;}
.y24_c02220{bottom:623.910450px;}
.y23_c02220{bottom:642.900450px;}
.y22_c02220{bottom:661.800450px;}
.y21_c02220{bottom:680.790450px;}
.y20_c02220{bottom:699.780450px;}
.y1f_c02220{bottom:718.770450px;}
.y1e_c02220{bottom:737.400450px;}
.y1d_c02220{bottom:754.950450px;}
.y1b_c02220{bottom:773.400450px;}
.y1c_c02220{bottom:773.940450px;}
.y1a_c02220{bottom:812.191278px;}
.y19_c02220{bottom:820.831080px;}
.y18_c02220{bottom:829.381242px;}
.y17_c02220{bottom:838.021044px;}
.y16_c02220{bottom:846.660846px;}
.y15_c02220{bottom:855.300648px;}
.y14_c02220{bottom:863.940450px;}
.y13_c02220{bottom:874.920450px;}
.y12_c02220{bottom:893.910450px;}
.y11_c02220{bottom:912.810450px;}
.y10_c02220{bottom:931.800450px;}
.yf_c02220{bottom:951.150450px;}
.ye_c02220{bottom:970.140450px;}
.yd_c02220{bottom:989.130450px;}
.yc_c02220{bottom:1008.120450px;}
.yb_c02220{bottom:1027.020450px;}
.ya_c02220{bottom:1046.010450px;}
.y9_c02220{bottom:1065.000450px;}
.y8_c02220{bottom:1083.630450px;}
.y7_c02220{bottom:1101.270450px;}
.y4_c02220{bottom:1119.630450px;}
.y5_c02220{bottom:1120.170450px;}
.y6_c02220{bottom:1139.160450px;}
.y1_c02220{bottom:1193.160450px;}
.hc_c02220{height:10.551621px;}
.h6_c02220{height:26.538926px;}
.h8_c02220{height:42.011895px;}
.h7_c02220{height:47.961914px;}
.h5_c02220{height:53.397598px;}
.h4_c02220{height:58.513535px;}
.hd_c02220{height:62.472935px;}
.h9_c02220{height:62.473535px;}
.he_c02220{height:62.474135px;}
.hb_c02220{height:62.832935px;}
.ha_c02220{height:62.833535px;}
.h2_c02220{height:63.175781px;}
.h1_c02220{height:63.949219px;}
.h3_c02220{height:136.633535px;}
.h0_c02220{height:1263.000000px;}
.w1_c02220{width:892.500000px;}
.w0_c02220{width:892.830000px;}
.x0_c02220{left:0.000000px;}
.x1_c02220{left:127.620000px;}
.x3_c02220{left:135.630000px;}
.xd_c02220{left:143.910000px;}
.xa_c02220{left:160.920000px;}
.xe_c02220{left:165.060000px;}
.xf_c02220{left:220.680000px;}
.xb_c02220{left:252.990000px;}
.xc_c02220{left:266.760000px;}
.x4_c02220{left:275.220000px;}
.x6_c02220{left:418.410000px;}
.x2_c02220{left:433.080000px;}
.x5_c02220{left:465.210000px;}
.x9_c02220{left:597.870000px;}
.x8_c02220{left:626.490000px;}
.x7_c02220{left:639.810000px;}
@media print{
.v7_c02220{vertical-align:-6.081600pt;}
.v4_c02220{vertical-align:-3.520000pt;}
.v3_c02220{vertical-align:-2.239467pt;}
.v0_c02220{vertical-align:0.000000pt;}
.v8_c02220{vertical-align:1.278400pt;}
.v6_c02220{vertical-align:3.520000pt;}
.v2_c02220{vertical-align:4.799467pt;}
.v5_c02220{vertical-align:8.320000pt;}
.v1_c02220{vertical-align:69.440000pt;}
.ls2d_c02220{letter-spacing:-0.076608pt;}
.ls26_c02220{letter-spacing:-0.040992pt;}
.ls29_c02220{letter-spacing:-0.038400pt;}
.ls2b_c02220{letter-spacing:-0.017024pt;}
.ls23_c02220{letter-spacing:-0.012800pt;}
.ls2a_c02220{letter-spacing:-0.009600pt;}
.ls27_c02220{letter-spacing:-0.005856pt;}
.ls24_c02220{letter-spacing:-0.005344pt;}
.ls2e_c02220{letter-spacing:-0.004256pt;}
.ls22_c02220{letter-spacing:0.000000pt;}
.ls15_c02220{letter-spacing:0.006400pt;}
.ls17_c02220{letter-spacing:0.009600pt;}
.ls16_c02220{letter-spacing:0.012800pt;}
.ls21_c02220{letter-spacing:0.017024pt;}
.ls12_c02220{letter-spacing:0.017568pt;}
.ls19_c02220{letter-spacing:0.025536pt;}
.ls14_c02220{letter-spacing:0.025600pt;}
.ls1b_c02220{letter-spacing:0.028800pt;}
.ls1e_c02220{letter-spacing:0.033600pt;}
.ls10_c02220{letter-spacing:0.035136pt;}
.ls18_c02220{letter-spacing:0.038304pt;}
.ls1d_c02220{letter-spacing:0.038400pt;}
.ls11_c02220{letter-spacing:0.040992pt;}
.ls9_c02220{letter-spacing:0.052704pt;}
.ls1a_c02220{letter-spacing:0.052800pt;}
.ls7_c02220{letter-spacing:0.058560pt;}
.lsf_c02220{letter-spacing:0.064416pt;}
.ls1_c02220{letter-spacing:0.070272pt;}
.ls31_c02220{letter-spacing:0.072352pt;}
.lsd_c02220{letter-spacing:0.076128pt;}
.ls25_c02220{letter-spacing:0.081984pt;}
.ls2_c02220{letter-spacing:0.087840pt;}
.ls4_c02220{letter-spacing:0.093696pt;}
.lsa_c02220{letter-spacing:0.105408pt;}
.ls1c_c02220{letter-spacing:0.110656pt;}
.ls20_c02220{letter-spacing:0.119168pt;}
.ls5_c02220{letter-spacing:0.122976pt;}
.ls3_c02220{letter-spacing:0.128256pt;}
.ls28_c02220{letter-spacing:0.134400pt;}
.ls8_c02220{letter-spacing:0.134688pt;}
.lse_c02220{letter-spacing:0.140544pt;}
.ls0_c02220{letter-spacing:0.146400pt;}
.ls2c_c02220{letter-spacing:0.148960pt;}
.lsb_c02220{letter-spacing:0.158112pt;}
.ls32_c02220{letter-spacing:0.161728pt;}
.lsc_c02220{letter-spacing:104.400000pt;}
.ls2f_c02220{letter-spacing:127.838400pt;}
.ls30_c02220{letter-spacing:129.441600pt;}
.ls6_c02220{letter-spacing:163.040000pt;}
.ls1f_c02220{letter-spacing:178.480000pt;}
.ls13_c02220{letter-spacing:350.800000pt;}
.ws9_c02220{word-spacing:-14.798112pt;}
.ws24_c02220{word-spacing:-0.242592pt;}
.ws22_c02220{word-spacing:-0.200032pt;}
.ws21_c02220{word-spacing:-0.191520pt;}
.ws23_c02220{word-spacing:-0.153216pt;}
.ws26_c02220{word-spacing:-0.106400pt;}
.ws1d_c02220{word-spacing:-0.102400pt;}
.ws25_c02220{word-spacing:-0.097888pt;}
.ws15_c02220{word-spacing:-0.048096pt;}
.ws11_c02220{word-spacing:-0.044800pt;}
.ws19_c02220{word-spacing:-0.023424pt;}
.ws1f_c02220{word-spacing:-0.012800pt;}
.ws16_c02220{word-spacing:-0.011712pt;}
.ws1e_c02220{word-spacing:-0.006400pt;}
.ws13_c02220{word-spacing:-0.005856pt;}
.ws10_c02220{word-spacing:0.000000pt;}
.ws12_c02220{word-spacing:0.011712pt;}
.ws14_c02220{word-spacing:0.017568pt;}
.ws17_c02220{word-spacing:0.023424pt;}
.ws18_c02220{word-spacing:0.029280pt;}
.ws1b_c02220{word-spacing:0.040992pt;}
.ws1a_c02220{word-spacing:0.046848pt;}
.ws1c_c02220{word-spacing:0.087840pt;}
.ws20_c02220{word-spacing:0.105600pt;}
.wsf_c02220{word-spacing:52.417280pt;}
.wsc_c02220{word-spacing:57.857280pt;}
.wsb_c02220{word-spacing:59.767552pt;}
.ws8_c02220{word-spacing:60.126560pt;}
.ws4_c02220{word-spacing:88.885664pt;}
.ws7_c02220{word-spacing:88.887552pt;}
.ws5_c02220{word-spacing:89.246560pt;}
.wsd_c02220{word-spacing:89.718240pt;}
.ws3_c02220{word-spacing:133.406560pt;}
.ws6_c02220{word-spacing:133.428096pt;}
.ws1_c02220{word-spacing:148.234048pt;}
.ws0_c02220{word-spacing:162.548096pt;}
.wse_c02220{word-spacing:191.640864pt;}
.wsa_c02220{word-spacing:191.988096pt;}
.ws2_c02220{word-spacing:398.794048pt;}
._1_c02220{margin-left:-1.020704pt;}
._40_c02220{width:9.916800pt;}
._39_c02220{width:44.886400pt;}
._37_c02220{width:45.920000pt;}
._41_c02220{width:47.678400pt;}
._16_c02220{width:57.857280pt;}
._34_c02220{width:58.777280pt;}
._e_c02220{width:60.128448pt;}
._35_c02220{width:64.424000pt;}
._3c_c02220{width:67.040000pt;}
._38_c02220{width:73.587680pt;}
._14_c02220{width:74.565664pt;}
._2f_c02220{width:76.129920pt;}
._2c_c02220{width:77.697280pt;}
._27_c02220{width:79.397632pt;}
._3f_c02220{width:80.640000pt;}
._9_c02220{width:88.885664pt;}
._a_c02220{width:89.927456pt;}
._4_c02220{width:92.880000pt;}
._33_c02220{width:96.309056pt;}
._36_c02220{width:100.737280pt;}
._3a_c02220{width:101.888000pt;}
._5_c02220{width:103.042784pt;}
._32_c02220{width:105.969024pt;}
._24_c02220{width:108.725664pt;}
._20_c02220{width:112.720000pt;}
._30_c02220{width:113.674336pt;}
._3b_c02220{width:114.998400pt;}
._7_c02220{width:118.325664pt;}
._42_c02220{width:121.066816pt;}
._31_c02220{width:123.785728pt;}
._3d_c02220{width:132.575040pt;}
._11_c02220{width:133.600000pt;}
._22_c02220{width:138.483776pt;}
._43_c02220{width:140.201792pt;}
._3_c02220{width:150.478848pt;}
._3e_c02220{width:153.580320pt;}
._1f_c02220{width:156.558848pt;}
._25_c02220{width:159.348672pt;}
._10_c02220{width:162.662400pt;}
._b_c02220{width:167.028672pt;}
._6_c02220{width:173.130624pt;}
._26_c02220{width:181.730304pt;}
._1e_c02220{width:188.763808pt;}
._2_c02220{width:192.603808pt;}
._21_c02220{width:194.570624pt;}
._13_c02220{width:205.916768pt;}
._1a_c02220{width:206.880000pt;}
._29_c02220{width:211.828096pt;}
._2e_c02220{width:213.750848pt;}
._c_c02220{width:218.530304pt;}
._1b_c02220{width:221.430848pt;}
._d_c02220{width:225.639488pt;}
._2d_c02220{width:229.366976pt;}
._2b_c02220{width:232.542912pt;}
._17_c02220{width:237.046976pt;}
._15_c02220{width:240.222912pt;}
._28_c02220{width:243.965984pt;}
._f_c02220{width:251.645984pt;}
._23_c02220{width:257.143872pt;}
._8_c02220{width:264.823872pt;}
._2a_c02220{width:273.298688pt;}
._12_c02220{width:280.978688pt;}
._18_c02220{width:369.319968pt;}
._0_c02220{width:431.987200pt;}
._1d_c02220{width:447.987200pt;}
._1c_c02220{width:571.337664pt;}
._19_c02220{width:591.520000pt;}
.fs6_c02220{font-size:10.560000pt;}
.fs3_c02220{font-size:26.560000pt;}
.fs5_c02220{font-size:42.560000pt;}
.fs4_c02220{font-size:48.000000pt;}
.fs2_c02220{font-size:53.440000pt;}
.fs1_c02220{font-size:58.560000pt;}
.fs0_c02220{font-size:64.000000pt;}
.y0_c02220{bottom:0.000000pt;}
.y3_c02220{bottom:50.987067pt;}
.y2_c02220{bottom:69.387067pt;}
.y4a_c02220{bottom:105.227067pt;}
.y49_c02220{bottom:105.546400pt;}
.y48_c02220{bottom:122.107200pt;}
.y47_c02220{bottom:122.426400pt;}
.y46_c02220{bottom:138.987067pt;}
.y45_c02220{bottom:139.306267pt;}
.y44_c02220{bottom:155.787067pt;}
.y43_c02220{bottom:156.187467pt;}
.y42_c02220{bottom:172.667067pt;}
.y41_c02220{bottom:172.987067pt;}
.y40_c02220{bottom:190.427067pt;}
.y3f_c02220{bottom:207.547067pt;}
.y3e_c02220{bottom:222.187067pt;}
.y3d_c02220{bottom:240.667067pt;}
.y3c_c02220{bottom:248.507067pt;}
.y3b_c02220{bottom:248.826267pt;}
.y3a_c02220{bottom:265.307067pt;}
.y39_c02220{bottom:265.707467pt;}
.y38_c02220{bottom:282.187200pt;}
.y37_c02220{bottom:282.506267pt;}
.y36_c02220{bottom:299.067067pt;}
.y35_c02220{bottom:299.386267pt;}
.y34_c02220{bottom:315.947067pt;}
.y33_c02220{bottom:316.267067pt;}
.y32_c02220{bottom:333.707067pt;}
.y31_c02220{bottom:350.827200pt;}
.y30_c02220{bottom:365.467067pt;}
.y2f_c02220{bottom:383.226811pt;}
.y2e_c02220{bottom:395.467067pt;}
.y2d_c02220{bottom:409.387067pt;}
.y2c_c02220{bottom:427.627067pt;}
.y2b_c02220{bottom:441.387467pt;}
.y2a_c02220{bottom:455.227067pt;}
.y29_c02220{bottom:469.947067pt;}
.y28_c02220{bottom:486.747067pt;}
.y27_c02220{bottom:503.627067pt;}
.y26_c02220{bottom:520.507067pt;}
.y25_c02220{bottom:537.707067pt;}
.y24_c02220{bottom:554.587067pt;}
.y23_c02220{bottom:571.467067pt;}
.y22_c02220{bottom:588.267067pt;}
.y21_c02220{bottom:605.147067pt;}
.y20_c02220{bottom:622.027067pt;}
.y1f_c02220{bottom:638.907067pt;}
.y1e_c02220{bottom:655.467067pt;}
.y1d_c02220{bottom:671.067067pt;}
.y1b_c02220{bottom:687.467067pt;}
.y1c_c02220{bottom:687.947067pt;}
.y1a_c02220{bottom:721.947803pt;}
.y19_c02220{bottom:729.627627pt;}
.y18_c02220{bottom:737.227771pt;}
.y17_c02220{bottom:744.907595pt;}
.y16_c02220{bottom:752.587419pt;}
.y15_c02220{bottom:760.267243pt;}
.y14_c02220{bottom:767.947067pt;}
.y13_c02220{bottom:777.707067pt;}
.y12_c02220{bottom:794.587067pt;}
.y11_c02220{bottom:811.387067pt;}
.y10_c02220{bottom:828.267067pt;}
.yf_c02220{bottom:845.467067pt;}
.ye_c02220{bottom:862.347067pt;}
.yd_c02220{bottom:879.227067pt;}
.yc_c02220{bottom:896.107067pt;}
.yb_c02220{bottom:912.907067pt;}
.ya_c02220{bottom:929.787067pt;}
.y9_c02220{bottom:946.667067pt;}
.y8_c02220{bottom:963.227067pt;}
.y7_c02220{bottom:978.907067pt;}
.y4_c02220{bottom:995.227067pt;}
.y5_c02220{bottom:995.707067pt;}
.y6_c02220{bottom:1012.587067pt;}
.y1_c02220{bottom:1060.587067pt;}
.hc_c02220{height:9.379219pt;}
.h6_c02220{height:23.590156pt;}
.h8_c02220{height:37.343906pt;}
.h7_c02220{height:42.632812pt;}
.h5_c02220{height:47.464531pt;}
.h4_c02220{height:52.012031pt;}
.hd_c02220{height:55.531498pt;}
.h9_c02220{height:55.532031pt;}
.he_c02220{height:55.532565pt;}
.hb_c02220{height:55.851498pt;}
.ha_c02220{height:55.852031pt;}
.h2_c02220{height:56.156250pt;}
.h1_c02220{height:56.843750pt;}
.h3_c02220{height:121.452031pt;}
.h0_c02220{height:1122.666667pt;}
.w1_c02220{width:793.333333pt;}
.w0_c02220{width:793.626667pt;}
.x0_c02220{left:0.000000pt;}
.x1_c02220{left:113.440000pt;}
.x3_c02220{left:120.560000pt;}
.xd_c02220{left:127.920000pt;}
.xa_c02220{left:143.040000pt;}
.xe_c02220{left:146.720000pt;}
.xf_c02220{left:196.160000pt;}
.xb_c02220{left:224.880000pt;}
.xc_c02220{left:237.120000pt;}
.x4_c02220{left:244.640000pt;}
.x6_c02220{left:371.920000pt;}
.x2_c02220{left:384.960000pt;}
.x5_c02220{left:413.520000pt;}
.x9_c02220{left:531.440000pt;}
.x8_c02220{left:556.880000pt;}
.x7_c02220{left:568.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_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_2facd98852c706c9982fb627.woff2')format("woff");}.ff1_c02221{font-family:ff1_c02221;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02221;src:url('chunks/assets/font_146d1f754c3bfdc6738e3a35.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;}
.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);}
.v8_c02221{vertical-align:-14.040000px;}
.v3_c02221{vertical-align:-4.320000px;}
.v2_c02221{vertical-align:-2.880000px;}
.v4_c02221{vertical-align:-1.080000px;}
.v0_c02221{vertical-align:0.000000px;}
.v9_c02221{vertical-align:1.441800px;}
.vb_c02221{vertical-align:2.519400px;}
.v6_c02221{vertical-align:4.320000px;}
.v1_c02221{vertical-align:5.400000px;}
.v7_c02221{vertical-align:6.841800px;}
.va_c02221{vertical-align:7.919400px;}
.v5_c02221{vertical-align:9.720000px;}
.ls23_c02221{letter-spacing:-0.086184px;}
.ls1f_c02221{letter-spacing:-0.043200px;}
.ls21_c02221{letter-spacing:-0.019152px;}
.ls20_c02221{letter-spacing:-0.010800px;}
.ls27_c02221{letter-spacing:-0.009576px;}
.ls26_c02221{letter-spacing:-0.007200px;}
.ls1c_c02221{letter-spacing:0.000000px;}
.ls10_c02221{letter-spacing:0.006588px;}
.ls0_c02221{letter-spacing:0.007200px;}
.ls1_c02221{letter-spacing:0.010800px;}
.ls1d_c02221{letter-spacing:0.014400px;}
.ls3_c02221{letter-spacing:0.028728px;}
.ls5_c02221{letter-spacing:0.032400px;}
.ls9_c02221{letter-spacing:0.037800px;}
.ls2_c02221{letter-spacing:0.043092px;}
.ls8_c02221{letter-spacing:0.043200px;}
.ls4_c02221{letter-spacing:0.059400px;}
.ls12_c02221{letter-spacing:0.065880px;}
.ls18_c02221{letter-spacing:0.067032px;}
.ls1a_c02221{letter-spacing:0.076608px;}
.lsf_c02221{letter-spacing:0.079056px;}
.lsd_c02221{letter-spacing:0.081396px;}
.ls17_c02221{letter-spacing:0.086184px;}
.ls29_c02221{letter-spacing:0.092232px;}
.ls11_c02221{letter-spacing:0.095760px;}
.ls13_c02221{letter-spacing:0.098820px;}
.ls7_c02221{letter-spacing:0.110124px;}
.ls19_c02221{letter-spacing:0.114912px;}
.ls1b_c02221{letter-spacing:0.119700px;}
.ls16_c02221{letter-spacing:0.125172px;}
.ls14_c02221{letter-spacing:0.131760px;}
.ls1e_c02221{letter-spacing:0.151200px;}
.ls6_c02221{letter-spacing:0.158112px;}
.ls22_c02221{letter-spacing:0.167580px;}
.ls28_c02221{letter-spacing:0.177876px;}
.lse_c02221{letter-spacing:0.181944px;}
.lsb_c02221{letter-spacing:0.205884px;}
.ls24_c02221{letter-spacing:143.818200px;}
.ls25_c02221{letter-spacing:145.621800px;}
.lsc_c02221{letter-spacing:156.778200px;}
.ls15_c02221{letter-spacing:191.970000px;}
.lsa_c02221{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02221{word-spacing:-16.476588px;}
.wsa_c02221{word-spacing:-0.296856px;}
.ws9_c02221{word-spacing:-0.272916px;}
.ws18_c02221{word-spacing:-0.210672px;}
.wsf_c02221{word-spacing:-0.186732px;}
.ws7_c02221{word-spacing:-0.129600px;}
.wsb_c02221{word-spacing:-0.086400px;}
.wsd_c02221{word-spacing:-0.081396px;}
.ws5_c02221{word-spacing:-0.050400px;}
.ws12_c02221{word-spacing:-0.039528px;}
.ws6_c02221{word-spacing:-0.007200px;}
.ws11_c02221{word-spacing:-0.006588px;}
.ws4_c02221{word-spacing:0.000000px;}
.wsc_c02221{word-spacing:0.007200px;}
.wse_c02221{word-spacing:0.013176px;}
.ws10_c02221{word-spacing:0.026352px;}
.ws8_c02221{word-spacing:0.118800px;}
.ws15_c02221{word-spacing:1.235304px;}
.ws17_c02221{word-spacing:1.273608px;}
.ws16_c02221{word-spacing:1.307124px;}
.ws13_c02221{word-spacing:5.941908px;}
.ws14_c02221{word-spacing:5.961060px;}
.ws0_c02221{word-spacing:58.969440px;}
.ws3_c02221{word-spacing:191.449440px;}
.ws2_c02221{word-spacing:307.009440px;}
._1a_c02221{margin-left:-1.007964px;}
._16_c02221{width:42.487200px;}
._f_c02221{width:50.497200px;}
._b_c02221{width:51.660000px;}
._7_c02221{width:66.124440px;}
._8_c02221{width:72.477000px;}
._12_c02221{width:75.420000px;}
._18_c02221{width:78.092532px;}
._e_c02221{width:82.980000px;}
._1_c02221{width:84.834000px;}
._0_c02221{width:88.221600px;}
._15_c02221{width:90.714600px;}
._9_c02221{width:100.015200px;}
._c_c02221{width:104.479380px;}
._6_c02221{width:108.347688px;}
._a_c02221{width:113.329440px;}
._13_c02221{width:115.329276px;}
._5_c02221{width:119.311524px;}
._2_c02221{width:122.220000px;}
._3_c02221{width:127.980000px;}
._11_c02221{width:129.384000px;}
._d_c02221{width:132.915600px;}
._4_c02221{width:139.258944px;}
._10_c02221{width:141.624000px;}
._17_c02221{width:143.820000px;}
._19_c02221{width:152.642160px;}
._14_c02221{width:172.584000px;}
._23_c02221{width:175.315536px;}
._1e_c02221{width:191.436372px;}
._1d_c02221{width:280.872072px;}
._20_c02221{width:284.598756px;}
._1c_c02221{width:287.726112px;}
._21_c02221{width:307.354248px;}
._1f_c02221{width:361.278612px;}
._1b_c02221{width:385.954200px;}
._22_c02221{width:583.070220px;}
.fc0_c02221{color:rgb(0,0,0);}
.fs4_c02221{font-size:11.880000px;}
.fs2_c02221{font-size:47.880000px;}
.fs1_c02221{font-size:54.000000px;}
.fs3_c02221{font-size:65.880000px;}
.fs0_c02221{font-size:72.000000px;}
.y0_c02221{bottom:0.000000px;}
.y3_c02221{bottom:57.360450px;}
.y2_c02221{bottom:78.060450px;}
.y4a_c02221{bottom:130.070415px;}
.y49_c02221{bottom:143.750928px;}
.y48_c02221{bottom:157.521216px;}
.y47_c02221{bottom:171.381279px;}
.y46_c02221{bottom:185.151567px;}
.y45_c02221{bottom:198.921855px;}
.y44_c02221{bottom:212.781918px;}
.y43_c02221{bottom:226.552206px;}
.y42_c02221{bottom:240.322494px;}
.y41_c02221{bottom:254.182557px;}
.y40_c02221{bottom:267.952845px;}
.y3f_c02221{bottom:281.723133px;}
.y3e_c02221{bottom:295.583196px;}
.y3d_c02221{bottom:309.353484px;}
.y3c_c02221{bottom:323.123772px;}
.y3b_c02221{bottom:336.894060px;}
.y3a_c02221{bottom:350.754123px;}
.y39_c02221{bottom:364.524411px;}
.y38_c02221{bottom:378.294699px;}
.y37_c02221{bottom:392.154762px;}
.y36_c02221{bottom:405.925050px;}
.y35_c02221{bottom:419.695338px;}
.y34_c02221{bottom:433.555401px;}
.y33_c02221{bottom:447.325689px;}
.y32_c02221{bottom:461.095977px;}
.y31_c02221{bottom:474.956040px;}
.y30_c02221{bottom:488.726328px;}
.y2f_c02221{bottom:502.496616px;}
.y2e_c02221{bottom:516.356679px;}
.y2d_c02221{bottom:530.126967px;}
.y2c_c02221{bottom:543.897255px;}
.y2b_c02221{bottom:557.757318px;}
.y2a_c02221{bottom:571.527606px;}
.y29_c02221{bottom:585.297894px;}
.y28_c02221{bottom:599.157957px;}
.y27_c02221{bottom:612.928245px;}
.y26_c02221{bottom:626.698533px;}
.y25_c02221{bottom:640.558596px;}
.y24_c02221{bottom:654.328884px;}
.y23_c02221{bottom:668.099172px;}
.y22_c02221{bottom:681.869460px;}
.y21_c02221{bottom:695.729523px;}
.y20_c02221{bottom:709.499811px;}
.y1f_c02221{bottom:723.270099px;}
.y1e_c02221{bottom:737.130162px;}
.y1d_c02221{bottom:750.900450px;}
.y1c_c02221{bottom:769.350450px;}
.y1b_c02221{bottom:789.780450px;}
.y1a_c02221{bottom:810.300450px;}
.y19_c02221{bottom:830.730450px;}
.y18_c02221{bottom:851.250600px;}
.y17_c02221{bottom:871.590450px;}
.y15_c02221{bottom:872.310450px;}
.y16_c02221{bottom:887.610600px;}
.y14_c02221{bottom:904.531215px;}
.y13_c02221{bottom:923.430540px;}
.y12_c02221{bottom:942.420450px;}
.y11_c02221{bottom:960.690450px;}
.y10_c02221{bottom:961.050450px;}
.yf_c02221{bottom:980.040600px;}
.ye_c02221{bottom:998.670450px;}
.yd_c02221{bottom:999.030450px;}
.yc_c02221{bottom:1018.650450px;}
.yb_c02221{bottom:1037.910450px;}
.ya_c02221{bottom:1054.380450px;}
.y9_c02221{bottom:1075.080450px;}
.y8_c02221{bottom:1083.900450px;}
.y7_c02221{bottom:1084.260450px;}
.y6_c02221{bottom:1103.970450px;}
.y5_c02221{bottom:1123.140450px;}
.y4_c02221{bottom:1139.610450px;}
.y1_c02221{bottom:1193.160450px;}
.h6_c02221{height:10.551621px;}
.ha_c02221{height:42.011895px;}
.h3_c02221{height:47.961914px;}
.hb_c02221{height:57.805840px;}
.h4_c02221{height:58.513535px;}
.h8_c02221{height:61.032935px;}
.h2_c02221{height:63.175781px;}
.h7_c02221{height:63.583636px;}
.h9_c02221{height:63.940036px;}
.h5_c02221{height:63.943636px;}
.h1_c02221{height:63.949219px;}
.h0_c02221{height:1263.000000px;}
.w1_c02221{width:892.500000px;}
.w0_c02221{width:892.830000px;}
.x0_c02221{left:0.000000px;}
.x1_c02221{left:127.620000px;}
.x7_c02221{left:134.550000px;}
.x3_c02221{left:135.630000px;}
.x4_c02221{left:143.910000px;}
.x5_c02221{left:165.060000px;}
.x6_c02221{left:220.680000px;}
.x8_c02221{left:332.100000px;}
.x9_c02221{left:355.140000px;}
.x2_c02221{left:433.080000px;}
@media print{
.v8_c02221{vertical-align:-12.480000pt;}
.v3_c02221{vertical-align:-3.840000pt;}
.v2_c02221{vertical-align:-2.560000pt;}
.v4_c02221{vertical-align:-0.960000pt;}
.v0_c02221{vertical-align:0.000000pt;}
.v9_c02221{vertical-align:1.281600pt;}
.vb_c02221{vertical-align:2.239467pt;}
.v6_c02221{vertical-align:3.840000pt;}
.v1_c02221{vertical-align:4.800000pt;}
.v7_c02221{vertical-align:6.081600pt;}
.va_c02221{vertical-align:7.039467pt;}
.v5_c02221{vertical-align:8.640000pt;}
.ls23_c02221{letter-spacing:-0.076608pt;}
.ls1f_c02221{letter-spacing:-0.038400pt;}
.ls21_c02221{letter-spacing:-0.017024pt;}
.ls20_c02221{letter-spacing:-0.009600pt;}
.ls27_c02221{letter-spacing:-0.008512pt;}
.ls26_c02221{letter-spacing:-0.006400pt;}
.ls1c_c02221{letter-spacing:0.000000pt;}
.ls10_c02221{letter-spacing:0.005856pt;}
.ls0_c02221{letter-spacing:0.006400pt;}
.ls1_c02221{letter-spacing:0.009600pt;}
.ls1d_c02221{letter-spacing:0.012800pt;}
.ls3_c02221{letter-spacing:0.025536pt;}
.ls5_c02221{letter-spacing:0.028800pt;}
.ls9_c02221{letter-spacing:0.033600pt;}
.ls2_c02221{letter-spacing:0.038304pt;}
.ls8_c02221{letter-spacing:0.038400pt;}
.ls4_c02221{letter-spacing:0.052800pt;}
.ls12_c02221{letter-spacing:0.058560pt;}
.ls18_c02221{letter-spacing:0.059584pt;}
.ls1a_c02221{letter-spacing:0.068096pt;}
.lsf_c02221{letter-spacing:0.070272pt;}
.lsd_c02221{letter-spacing:0.072352pt;}
.ls17_c02221{letter-spacing:0.076608pt;}
.ls29_c02221{letter-spacing:0.081984pt;}
.ls11_c02221{letter-spacing:0.085120pt;}
.ls13_c02221{letter-spacing:0.087840pt;}
.ls7_c02221{letter-spacing:0.097888pt;}
.ls19_c02221{letter-spacing:0.102144pt;}
.ls1b_c02221{letter-spacing:0.106400pt;}
.ls16_c02221{letter-spacing:0.111264pt;}
.ls14_c02221{letter-spacing:0.117120pt;}
.ls1e_c02221{letter-spacing:0.134400pt;}
.ls6_c02221{letter-spacing:0.140544pt;}
.ls22_c02221{letter-spacing:0.148960pt;}
.ls28_c02221{letter-spacing:0.158112pt;}
.lse_c02221{letter-spacing:0.161728pt;}
.lsb_c02221{letter-spacing:0.183008pt;}
.ls24_c02221{letter-spacing:127.838400pt;}
.ls25_c02221{letter-spacing:129.441600pt;}
.lsc_c02221{letter-spacing:139.358400pt;}
.ls15_c02221{letter-spacing:170.640000pt;}
.lsa_c02221{letter-spacing:178.480000pt;}
.ws1_c02221{word-spacing:-14.645856pt;}
.wsa_c02221{word-spacing:-0.263872pt;}
.ws9_c02221{word-spacing:-0.242592pt;}
.ws18_c02221{word-spacing:-0.187264pt;}
.wsf_c02221{word-spacing:-0.165984pt;}
.ws7_c02221{word-spacing:-0.115200pt;}
.wsb_c02221{word-spacing:-0.076800pt;}
.wsd_c02221{word-spacing:-0.072352pt;}
.ws5_c02221{word-spacing:-0.044800pt;}
.ws12_c02221{word-spacing:-0.035136pt;}
.ws6_c02221{word-spacing:-0.006400pt;}
.ws11_c02221{word-spacing:-0.005856pt;}
.ws4_c02221{word-spacing:0.000000pt;}
.wsc_c02221{word-spacing:0.006400pt;}
.wse_c02221{word-spacing:0.011712pt;}
.ws10_c02221{word-spacing:0.023424pt;}
.ws8_c02221{word-spacing:0.105600pt;}
.ws15_c02221{word-spacing:1.098048pt;}
.ws17_c02221{word-spacing:1.132096pt;}
.ws16_c02221{word-spacing:1.161888pt;}
.ws13_c02221{word-spacing:5.281696pt;}
.ws14_c02221{word-spacing:5.298720pt;}
.ws0_c02221{word-spacing:52.417280pt;}
.ws3_c02221{word-spacing:170.177280pt;}
.ws2_c02221{word-spacing:272.897280pt;}
._1a_c02221{margin-left:-0.895968pt;}
._16_c02221{width:37.766400pt;}
._f_c02221{width:44.886400pt;}
._b_c02221{width:45.920000pt;}
._7_c02221{width:58.777280pt;}
._8_c02221{width:64.424000pt;}
._12_c02221{width:67.040000pt;}
._18_c02221{width:69.415584pt;}
._e_c02221{width:73.760000pt;}
._1_c02221{width:75.408000pt;}
._0_c02221{width:78.419200pt;}
._15_c02221{width:80.635200pt;}
._9_c02221{width:88.902400pt;}
._c_c02221{width:92.870560pt;}
._6_c02221{width:96.309056pt;}
._a_c02221{width:100.737280pt;}
._13_c02221{width:102.514912pt;}
._5_c02221{width:106.054688pt;}
._2_c02221{width:108.640000pt;}
._3_c02221{width:113.760000pt;}
._11_c02221{width:115.008000pt;}
._d_c02221{width:118.147200pt;}
._4_c02221{width:123.785728pt;}
._10_c02221{width:125.888000pt;}
._17_c02221{width:127.840000pt;}
._19_c02221{width:135.681920pt;}
._14_c02221{width:153.408000pt;}
._23_c02221{width:155.836032pt;}
._1e_c02221{width:170.165664pt;}
._1d_c02221{width:249.664064pt;}
._20_c02221{width:252.976672pt;}
._1c_c02221{width:255.756544pt;}
._21_c02221{width:273.203776pt;}
._1f_c02221{width:321.136544pt;}
._1b_c02221{width:343.070400pt;}
._22_c02221{width:518.284640pt;}
.fs4_c02221{font-size:10.560000pt;}
.fs2_c02221{font-size:42.560000pt;}
.fs1_c02221{font-size:48.000000pt;}
.fs3_c02221{font-size:58.560000pt;}
.fs0_c02221{font-size:64.000000pt;}
.y0_c02221{bottom:0.000000pt;}
.y3_c02221{bottom:50.987067pt;}
.y2_c02221{bottom:69.387067pt;}
.y4a_c02221{bottom:115.618147pt;}
.y49_c02221{bottom:127.778603pt;}
.y48_c02221{bottom:140.018859pt;}
.y47_c02221{bottom:152.338915pt;}
.y46_c02221{bottom:164.579171pt;}
.y45_c02221{bottom:176.819427pt;}
.y44_c02221{bottom:189.139483pt;}
.y43_c02221{bottom:201.379739pt;}
.y42_c02221{bottom:213.619995pt;}
.y41_c02221{bottom:225.940051pt;}
.y40_c02221{bottom:238.180307pt;}
.y3f_c02221{bottom:250.420563pt;}
.y3e_c02221{bottom:262.740619pt;}
.y3d_c02221{bottom:274.980875pt;}
.y3c_c02221{bottom:287.221131pt;}
.y3b_c02221{bottom:299.461387pt;}
.y3a_c02221{bottom:311.781443pt;}
.y39_c02221{bottom:324.021699pt;}
.y38_c02221{bottom:336.261955pt;}
.y37_c02221{bottom:348.582011pt;}
.y36_c02221{bottom:360.822267pt;}
.y35_c02221{bottom:373.062523pt;}
.y34_c02221{bottom:385.382579pt;}
.y33_c02221{bottom:397.622835pt;}
.y32_c02221{bottom:409.863091pt;}
.y31_c02221{bottom:422.183147pt;}
.y30_c02221{bottom:434.423403pt;}
.y2f_c02221{bottom:446.663659pt;}
.y2e_c02221{bottom:458.983715pt;}
.y2d_c02221{bottom:471.223971pt;}
.y2c_c02221{bottom:483.464227pt;}
.y2b_c02221{bottom:495.784283pt;}
.y2a_c02221{bottom:508.024539pt;}
.y29_c02221{bottom:520.264795pt;}
.y28_c02221{bottom:532.584851pt;}
.y27_c02221{bottom:544.825107pt;}
.y26_c02221{bottom:557.065363pt;}
.y25_c02221{bottom:569.385419pt;}
.y24_c02221{bottom:581.625675pt;}
.y23_c02221{bottom:593.865931pt;}
.y22_c02221{bottom:606.106187pt;}
.y21_c02221{bottom:618.426243pt;}
.y20_c02221{bottom:630.666499pt;}
.y1f_c02221{bottom:642.906755pt;}
.y1e_c02221{bottom:655.226811pt;}
.y1d_c02221{bottom:667.467067pt;}
.y1c_c02221{bottom:683.867067pt;}
.y1b_c02221{bottom:702.027067pt;}
.y1a_c02221{bottom:720.267067pt;}
.y19_c02221{bottom:738.427067pt;}
.y18_c02221{bottom:756.667200pt;}
.y17_c02221{bottom:774.747067pt;}
.y15_c02221{bottom:775.387067pt;}
.y16_c02221{bottom:788.987200pt;}
.y14_c02221{bottom:804.027747pt;}
.y13_c02221{bottom:820.827147pt;}
.y12_c02221{bottom:837.707067pt;}
.y11_c02221{bottom:853.947067pt;}
.y10_c02221{bottom:854.267067pt;}
.yf_c02221{bottom:871.147200pt;}
.ye_c02221{bottom:887.707067pt;}
.yd_c02221{bottom:888.027067pt;}
.yc_c02221{bottom:905.467067pt;}
.yb_c02221{bottom:922.587067pt;}
.ya_c02221{bottom:937.227067pt;}
.y9_c02221{bottom:955.627067pt;}
.y8_c02221{bottom:963.467067pt;}
.y7_c02221{bottom:963.787067pt;}
.y6_c02221{bottom:981.307067pt;}
.y5_c02221{bottom:998.347067pt;}
.y4_c02221{bottom:1012.987067pt;}
.y1_c02221{bottom:1060.587067pt;}
.h6_c02221{height:9.379219pt;}
.ha_c02221{height:37.343906pt;}
.h3_c02221{height:42.632812pt;}
.hb_c02221{height:51.382969pt;}
.h4_c02221{height:52.012031pt;}
.h8_c02221{height:54.251498pt;}
.h2_c02221{height:56.156250pt;}
.h7_c02221{height:56.518787pt;}
.h9_c02221{height:56.835587pt;}
.h5_c02221{height:56.838788pt;}
.h1_c02221{height:56.843750pt;}
.h0_c02221{height:1122.666667pt;}
.w1_c02221{width:793.333333pt;}
.w0_c02221{width:793.626667pt;}
.x0_c02221{left:0.000000pt;}
.x1_c02221{left:113.440000pt;}
.x7_c02221{left:119.600000pt;}
.x3_c02221{left:120.560000pt;}
.x4_c02221{left:127.920000pt;}
.x5_c02221{left:146.720000pt;}
.x6_c02221{left:196.160000pt;}
.x8_c02221{left:295.200000pt;}
.x9_c02221{left:315.680000pt;}
.x2_c02221{left:384.960000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c02222 {
      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_c02222 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c02222 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c02222 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_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_7c0a2246430fc6503ebc3d18.woff2')format("woff");}.ff1_c02223{font-family:ff1_c02223;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02223;src:url('chunks/assets/font_5f9b9d9e89341fc21869c978.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_2097af563ebec28e34c58fff.woff2')format("woff");}.ff3_c02223{font-family:ff3_c02223;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_c02223;src:url('chunks/assets/font_3cb400d0b3f1b201b30f4212.woff2')format("woff");}.ff4_c02223{font-family:ff4_c02223;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_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);}
.v2_c02223{vertical-align:-9.000000px;}
.v1_c02223{vertical-align:-5.400000px;}
.v0_c02223{vertical-align:0.000000px;}
.v3_c02223{vertical-align:5.399400px;}
.ls1e_c02223{letter-spacing:-0.300600px;}
.ls1c_c02223{letter-spacing:-0.288576px;}
.ls22_c02223{letter-spacing:-0.138276px;}
.ls1a_c02223{letter-spacing:-0.126252px;}
.ls17_c02223{letter-spacing:-0.057600px;}
.ls1d_c02223{letter-spacing:-0.036072px;}
.ls1b_c02223{letter-spacing:-0.030060px;}
.ls16_c02223{letter-spacing:-0.028800px;}
.ls1f_c02223{letter-spacing:-0.024048px;}
.ls21_c02223{letter-spacing:-0.018036px;}
.ls19_c02223{letter-spacing:-0.014400px;}
.ls20_c02223{letter-spacing:-0.012024px;}
.ls18_c02223{letter-spacing:-0.007200px;}
.ls15_c02223{letter-spacing:0.000000px;}
.lsa_c02223{letter-spacing:0.006012px;}
.lsd_c02223{letter-spacing:0.007200px;}
.ls8_c02223{letter-spacing:0.012024px;}
.ls1_c02223{letter-spacing:0.013176px;}
.ls0_c02223{letter-spacing:0.014400px;}
.ls7_c02223{letter-spacing:0.019764px;}
.ls10_c02223{letter-spacing:0.021600px;}
.ls4_c02223{letter-spacing:0.028800px;}
.ls6_c02223{letter-spacing:0.032940px;}
.lse_c02223{letter-spacing:0.036000px;}
.lsb_c02223{letter-spacing:0.039528px;}
.lsc_c02223{letter-spacing:0.043200px;}
.ls5_c02223{letter-spacing:0.046116px;}
.ls14_c02223{letter-spacing:0.050400px;}
.ls23_c02223{letter-spacing:0.052704px;}
.ls12_c02223{letter-spacing:0.057600px;}
.ls11_c02223{letter-spacing:0.064800px;}
.ls13_c02223{letter-spacing:0.065880px;}
.ls9_c02223{letter-spacing:0.084168px;}
.lsf_c02223{letter-spacing:0.086400px;}
.ls2_c02223{letter-spacing:0.144000px;}
.ls3_c02223{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02223{word-spacing:-17.992800px;}
.ws0_c02223{word-spacing:-12.151944px;}
.ws28_c02223{word-spacing:-0.288000px;}
.wsd_c02223{word-spacing:-0.282564px;}
.ws1b_c02223{word-spacing:-0.223200px;}
.ws1c_c02223{word-spacing:-0.201600px;}
.ws24_c02223{word-spacing:-0.187200px;}
.ws20_c02223{word-spacing:-0.180000px;}
.ws16_c02223{word-spacing:-0.132264px;}
.ws26_c02223{word-spacing:-0.129600px;}
.ws1e_c02223{word-spacing:-0.100800px;}
.ws22_c02223{word-spacing:-0.086400px;}
.ws18_c02223{word-spacing:-0.064800px;}
.ws21_c02223{word-spacing:-0.057600px;}
.ws3_c02223{word-spacing:-0.050400px;}
.ws17_c02223{word-spacing:-0.043200px;}
.ws25_c02223{word-spacing:-0.028800px;}
.ws1d_c02223{word-spacing:-0.021600px;}
.ws4_c02223{word-spacing:-0.014400px;}
.ws2_c02223{word-spacing:0.000000px;}
.wse_c02223{word-spacing:0.006012px;}
.ws9_c02223{word-spacing:0.007200px;}
.wsb_c02223{word-spacing:0.014400px;}
.ws23_c02223{word-spacing:0.026352px;}
.ws1f_c02223{word-spacing:0.028800px;}
.ws27_c02223{word-spacing:0.039528px;}
.ws8_c02223{word-spacing:0.046116px;}
.wsa_c02223{word-spacing:0.059292px;}
.ws15_c02223{word-spacing:0.084168px;}
.ws14_c02223{word-spacing:0.102204px;}
.ws13_c02223{word-spacing:0.114228px;}
.wsf_c02223{word-spacing:0.120240px;}
.ws11_c02223{word-spacing:0.126252px;}
.wsc_c02223{word-spacing:0.216432px;}
.ws10_c02223{word-spacing:0.378756px;}
.ws12_c02223{word-spacing:0.390780px;}
.ws19_c02223{word-spacing:6.444000px;}
.ws1a_c02223{word-spacing:6.480000px;}
.ws7_c02223{word-spacing:18.252000px;}
.ws6_c02223{word-spacing:24.444000px;}
.ws5_c02223{word-spacing:24.508800px;}
._5_c02223{margin-left:-1.406808px;}
._4_c02223{width:1.082160px;}
._1_c02223{width:141.689772px;}
._2_c02223{width:145.431756px;}
._0_c02223{width:191.501640px;}
._3_c02223{width:294.089976px;}
.fc0_c02223{color:rgb(0,0,0);}
.fs2_c02223{font-size:47.880000px;}
.fs3_c02223{font-size:60.120000px;}
.fs1_c02223{font-size:65.880000px;}
.fs0_c02223{font-size:72.000000px;}
.y0_c02223{bottom:0.000000px;}
.y3_c02223{bottom:57.360450px;}
.y2_c02223{bottom:78.060450px;}
.y37_c02223{bottom:130.260600px;}
.y36_c02223{bottom:150.960600px;}
.y35_c02223{bottom:171.660600px;}
.y34_c02223{bottom:192.360600px;}
.y33_c02223{bottom:213.060600px;}
.y32_c02223{bottom:233.760600px;}
.y31_c02223{bottom:254.370600px;}
.y30_c02223{bottom:275.070600px;}
.y2f_c02223{bottom:295.770600px;}
.y2e_c02223{bottom:316.470600px;}
.y2d_c02223{bottom:337.170600px;}
.y2c_c02223{bottom:357.870600px;}
.y2b_c02223{bottom:378.570600px;}
.y2a_c02223{bottom:399.270600px;}
.y29_c02223{bottom:419.790600px;}
.y28_c02223{bottom:441.480450px;}
.y27_c02223{bottom:462.450600px;}
.y26_c02223{bottom:482.610600px;}
.y25_c02223{bottom:503.310450px;}
.y24_c02223{bottom:524.280600px;}
.y23_c02223{bottom:544.530450px;}
.y22_c02223{bottom:565.500450px;}
.y21_c02223{bottom:585.660450px;}
.y20_c02223{bottom:606.360450px;}
.y1f_c02223{bottom:627.060450px;}
.y1e_c02223{bottom:647.760450px;}
.y1d_c02223{bottom:668.460450px;}
.y1c_c02223{bottom:689.160450px;}
.y1b_c02223{bottom:710.130450px;}
.y1a_c02223{bottom:730.290450px;}
.y19_c02223{bottom:751.350450px;}
.y18_c02223{bottom:770.701467px;}
.y17_c02223{bottom:787.891278px;}
.y16_c02223{bottom:805.171269px;}
.y15_c02223{bottom:822.361080px;}
.y14_c02223{bottom:839.641071px;}
.y13_c02223{bottom:856.921062px;}
.y12_c02223{bottom:874.110873px;}
.y11_c02223{bottom:891.390864px;}
.y10_c02223{bottom:908.670855px;}
.yf_c02223{bottom:925.860666px;}
.ye_c02223{bottom:943.140657px;}
.yd_c02223{bottom:960.420648px;}
.yc_c02223{bottom:977.610459px;}
.yb_c02223{bottom:993.540600px;}
.ya_c02223{bottom:1014.960450px;}
.y9_c02223{bottom:1036.470450px;}
.y8_c02223{bottom:1056.540450px;}
.y7_c02223{bottom:1077.240450px;}
.y6_c02223{bottom:1099.290450px;}
.y5_c02223{bottom:1119.270450px;}
.y4_c02223{bottom:1139.970450px;}
.y1_c02223{bottom:1193.160450px;}
.h7_c02223{height:53.397598px;}
.h5_c02223{height:58.513535px;}
.h6_c02223{height:58.796998px;}
.h2_c02223{height:63.175781px;}
.h8_c02223{height:63.945151px;}
.h1_c02223{height:63.949219px;}
.h3_c02223{height:65.228906px;}
.h4_c02223{height:70.628906px;}
.h0_c02223{height:1263.000000px;}
.w1_c02223{width:892.500000px;}
.w0_c02223{width:892.830000px;}
.x0_c02223{left:0.000000px;}
.x1_c02223{left:127.620000px;}
.x3_c02223{left:135.630000px;}
.x4_c02223{left:252.630000px;}
.x2_c02223{left:433.080000px;}
@media print{
.v2_c02223{vertical-align:-8.000000pt;}
.v1_c02223{vertical-align:-4.800000pt;}
.v0_c02223{vertical-align:0.000000pt;}
.v3_c02223{vertical-align:4.799467pt;}
.ls1e_c02223{letter-spacing:-0.267200pt;}
.ls1c_c02223{letter-spacing:-0.256512pt;}
.ls22_c02223{letter-spacing:-0.122912pt;}
.ls1a_c02223{letter-spacing:-0.112224pt;}
.ls17_c02223{letter-spacing:-0.051200pt;}
.ls1d_c02223{letter-spacing:-0.032064pt;}
.ls1b_c02223{letter-spacing:-0.026720pt;}
.ls16_c02223{letter-spacing:-0.025600pt;}
.ls1f_c02223{letter-spacing:-0.021376pt;}
.ls21_c02223{letter-spacing:-0.016032pt;}
.ls19_c02223{letter-spacing:-0.012800pt;}
.ls20_c02223{letter-spacing:-0.010688pt;}
.ls18_c02223{letter-spacing:-0.006400pt;}
.ls15_c02223{letter-spacing:0.000000pt;}
.lsa_c02223{letter-spacing:0.005344pt;}
.lsd_c02223{letter-spacing:0.006400pt;}
.ls8_c02223{letter-spacing:0.010688pt;}
.ls1_c02223{letter-spacing:0.011712pt;}
.ls0_c02223{letter-spacing:0.012800pt;}
.ls7_c02223{letter-spacing:0.017568pt;}
.ls10_c02223{letter-spacing:0.019200pt;}
.ls4_c02223{letter-spacing:0.025600pt;}
.ls6_c02223{letter-spacing:0.029280pt;}
.lse_c02223{letter-spacing:0.032000pt;}
.lsb_c02223{letter-spacing:0.035136pt;}
.lsc_c02223{letter-spacing:0.038400pt;}
.ls5_c02223{letter-spacing:0.040992pt;}
.ls14_c02223{letter-spacing:0.044800pt;}
.ls23_c02223{letter-spacing:0.046848pt;}
.ls12_c02223{letter-spacing:0.051200pt;}
.ls11_c02223{letter-spacing:0.057600pt;}
.ls13_c02223{letter-spacing:0.058560pt;}
.ls9_c02223{letter-spacing:0.074816pt;}
.lsf_c02223{letter-spacing:0.076800pt;}
.ls2_c02223{letter-spacing:0.128000pt;}
.ls3_c02223{letter-spacing:0.161728pt;}
.ws1_c02223{word-spacing:-15.993600pt;}
.ws0_c02223{word-spacing:-10.801728pt;}
.ws28_c02223{word-spacing:-0.256000pt;}
.wsd_c02223{word-spacing:-0.251168pt;}
.ws1b_c02223{word-spacing:-0.198400pt;}
.ws1c_c02223{word-spacing:-0.179200pt;}
.ws24_c02223{word-spacing:-0.166400pt;}
.ws20_c02223{word-spacing:-0.160000pt;}
.ws16_c02223{word-spacing:-0.117568pt;}
.ws26_c02223{word-spacing:-0.115200pt;}
.ws1e_c02223{word-spacing:-0.089600pt;}
.ws22_c02223{word-spacing:-0.076800pt;}
.ws18_c02223{word-spacing:-0.057600pt;}
.ws21_c02223{word-spacing:-0.051200pt;}
.ws3_c02223{word-spacing:-0.044800pt;}
.ws17_c02223{word-spacing:-0.038400pt;}
.ws25_c02223{word-spacing:-0.025600pt;}
.ws1d_c02223{word-spacing:-0.019200pt;}
.ws4_c02223{word-spacing:-0.012800pt;}
.ws2_c02223{word-spacing:0.000000pt;}
.wse_c02223{word-spacing:0.005344pt;}
.ws9_c02223{word-spacing:0.006400pt;}
.wsb_c02223{word-spacing:0.012800pt;}
.ws23_c02223{word-spacing:0.023424pt;}
.ws1f_c02223{word-spacing:0.025600pt;}
.ws27_c02223{word-spacing:0.035136pt;}
.ws8_c02223{word-spacing:0.040992pt;}
.wsa_c02223{word-spacing:0.052704pt;}
.ws15_c02223{word-spacing:0.074816pt;}
.ws14_c02223{word-spacing:0.090848pt;}
.ws13_c02223{word-spacing:0.101536pt;}
.wsf_c02223{word-spacing:0.106880pt;}
.ws11_c02223{word-spacing:0.112224pt;}
.wsc_c02223{word-spacing:0.192384pt;}
.ws10_c02223{word-spacing:0.336672pt;}
.ws12_c02223{word-spacing:0.347360pt;}
.ws19_c02223{word-spacing:5.728000pt;}
.ws1a_c02223{word-spacing:5.760000pt;}
.ws7_c02223{word-spacing:16.224000pt;}
.ws6_c02223{word-spacing:21.728000pt;}
.ws5_c02223{word-spacing:21.785600pt;}
._5_c02223{margin-left:-1.250496pt;}
._4_c02223{width:0.961920pt;}
._1_c02223{width:125.946464pt;}
._2_c02223{width:129.272672pt;}
._0_c02223{width:170.223680pt;}
._3_c02223{width:261.413312pt;}
.fs2_c02223{font-size:42.560000pt;}
.fs3_c02223{font-size:53.440000pt;}
.fs1_c02223{font-size:58.560000pt;}
.fs0_c02223{font-size:64.000000pt;}
.y0_c02223{bottom:0.000000pt;}
.y3_c02223{bottom:50.987067pt;}
.y2_c02223{bottom:69.387067pt;}
.y37_c02223{bottom:115.787200pt;}
.y36_c02223{bottom:134.187200pt;}
.y35_c02223{bottom:152.587200pt;}
.y34_c02223{bottom:170.987200pt;}
.y33_c02223{bottom:189.387200pt;}
.y32_c02223{bottom:207.787200pt;}
.y31_c02223{bottom:226.107200pt;}
.y30_c02223{bottom:244.507200pt;}
.y2f_c02223{bottom:262.907200pt;}
.y2e_c02223{bottom:281.307200pt;}
.y2d_c02223{bottom:299.707200pt;}
.y2c_c02223{bottom:318.107200pt;}
.y2b_c02223{bottom:336.507200pt;}
.y2a_c02223{bottom:354.907200pt;}
.y29_c02223{bottom:373.147200pt;}
.y28_c02223{bottom:392.427067pt;}
.y27_c02223{bottom:411.067200pt;}
.y26_c02223{bottom:428.987200pt;}
.y25_c02223{bottom:447.387067pt;}
.y24_c02223{bottom:466.027200pt;}
.y23_c02223{bottom:484.027067pt;}
.y22_c02223{bottom:502.667067pt;}
.y21_c02223{bottom:520.587067pt;}
.y20_c02223{bottom:538.987067pt;}
.y1f_c02223{bottom:557.387067pt;}
.y1e_c02223{bottom:575.787067pt;}
.y1d_c02223{bottom:594.187067pt;}
.y1c_c02223{bottom:612.587067pt;}
.y1b_c02223{bottom:631.227067pt;}
.y1a_c02223{bottom:649.147067pt;}
.y19_c02223{bottom:667.867067pt;}
.y18_c02223{bottom:685.067971pt;}
.y17_c02223{bottom:700.347803pt;}
.y16_c02223{bottom:715.707795pt;}
.y15_c02223{bottom:730.987627pt;}
.y14_c02223{bottom:746.347619pt;}
.y13_c02223{bottom:761.707611pt;}
.y12_c02223{bottom:776.987443pt;}
.y11_c02223{bottom:792.347435pt;}
.y10_c02223{bottom:807.707427pt;}
.yf_c02223{bottom:822.987259pt;}
.ye_c02223{bottom:838.347251pt;}
.yd_c02223{bottom:853.707243pt;}
.yc_c02223{bottom:868.987075pt;}
.yb_c02223{bottom:883.147200pt;}
.ya_c02223{bottom:902.187067pt;}
.y9_c02223{bottom:921.307067pt;}
.y8_c02223{bottom:939.147067pt;}
.y7_c02223{bottom:957.547067pt;}
.y6_c02223{bottom:977.147067pt;}
.y5_c02223{bottom:994.907067pt;}
.y4_c02223{bottom:1013.307067pt;}
.y1_c02223{bottom:1060.587067pt;}
.h7_c02223{height:47.464531pt;}
.h5_c02223{height:52.012031pt;}
.h6_c02223{height:52.263998pt;}
.h2_c02223{height:56.156250pt;}
.h8_c02223{height:56.840134pt;}
.h1_c02223{height:56.843750pt;}
.h3_c02223{height:57.981250pt;}
.h4_c02223{height:62.781250pt;}
.h0_c02223{height:1122.666667pt;}
.w1_c02223{width:793.333333pt;}
.w0_c02223{width:793.626667pt;}
.x0_c02223{left:0.000000pt;}
.x1_c02223{left:113.440000pt;}
.x3_c02223{left:120.560000pt;}
.x4_c02223{left:224.560000pt;}
.x2_c02223{left:384.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_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_0cd0a98e057bf4fc1235fe8e.woff2')format("woff");}.ff1_c02224{font-family:ff1_c02224;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02224;src:url('chunks/assets/font_126140293bcf5679a74b9a47.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;}
.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;}
.ls7_c02224{letter-spacing:-0.007200px;}
.ls6_c02224{letter-spacing:0.000000px;}
.ls1_c02224{letter-spacing:0.007200px;}
.ls3_c02224{letter-spacing:0.014400px;}
.ls0_c02224{letter-spacing:0.021600px;}
.ls2_c02224{letter-spacing:0.050400px;}
.ls4_c02224{letter-spacing:0.072000px;}
.ls5_c02224{letter-spacing:0.079200px;}
.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;}
}
.ws3_c02224{word-spacing:-0.108000px;}
.ws6_c02224{word-spacing:-0.086400px;}
.wsa_c02224{word-spacing:-0.072000px;}
.ws1_c02224{word-spacing:-0.050400px;}
.ws2_c02224{word-spacing:-0.014400px;}
.ws0_c02224{word-spacing:0.000000px;}
.ws8_c02224{word-spacing:10.670400px;}
.ws9_c02224{word-spacing:10.720800px;}
.ws7_c02224{word-spacing:10.728000px;}
.ws4_c02224{word-spacing:10.994400px;}
.ws5_c02224{word-spacing:11.152800px;}
._0_c02224{margin-left:-1.065600px;}
._1_c02224{width:2479.680000px;}
.fc0_c02224{color:rgb(0,0,0);}
.fs3_c02224{font-size:11.880000px;}
.fs1_c02224{font-size:29.880000px;}
.fs2_c02224{font-size:47.880000px;}
.fs0_c02224{font-size:72.000000px;}
.y0_c02224{bottom:0.000000px;}
.y3_c02224{bottom:57.360450px;}
.y2_c02224{bottom:78.060450px;}
.y10_c02224{bottom:109.020504px;}
.yf_c02224{bottom:112.530450px;}
.ye_c02224{bottom:115.320450px;}
.yd_c02224{bottom:559.560450px;}
.yc_c02224{bottom:590.610450px;}
.yb_c02224{bottom:621.480450px;}
.ya_c02224{bottom:641.100450px;}
.y9_c02224{bottom:651.990450px;}
.y8_c02224{bottom:1046.460450px;}
.y7_c02224{bottom:1067.700450px;}
.y6_c02224{bottom:1098.750450px;}
.y5_c02224{bottom:1119.270450px;}
.y4_c02224{bottom:1139.970450px;}
.y1_c02224{bottom:1193.160450px;}
.h5_c02224{height:10.551621px;}
.h3_c02224{height:26.217949px;}
.h4_c02224{height:42.011895px;}
.h2_c02224{height:63.175781px;}
.h1_c02224{height:63.949219px;}
.h0_c02224{height:1263.000000px;}
.w1_c02224{width:892.500000px;}
.w0_c02224{width:892.830000px;}
.x0_c02224{left:0.000000px;}
.x1_c02224{left:127.620000px;}
.x4_c02224{left:138.240000px;}
.x6_c02224{left:148.950000px;}
.x3_c02224{left:340.650000px;}
.x5_c02224{left:430.560000px;}
.x2_c02224{left:433.080000px;}
@media print{
.v0_c02224{vertical-align:0.000000pt;}
.ls7_c02224{letter-spacing:-0.006400pt;}
.ls6_c02224{letter-spacing:0.000000pt;}
.ls1_c02224{letter-spacing:0.006400pt;}
.ls3_c02224{letter-spacing:0.012800pt;}
.ls0_c02224{letter-spacing:0.019200pt;}
.ls2_c02224{letter-spacing:0.044800pt;}
.ls4_c02224{letter-spacing:0.064000pt;}
.ls5_c02224{letter-spacing:0.070400pt;}
.ws3_c02224{word-spacing:-0.096000pt;}
.ws6_c02224{word-spacing:-0.076800pt;}
.wsa_c02224{word-spacing:-0.064000pt;}
.ws1_c02224{word-spacing:-0.044800pt;}
.ws2_c02224{word-spacing:-0.012800pt;}
.ws0_c02224{word-spacing:0.000000pt;}
.ws8_c02224{word-spacing:9.484800pt;}
.ws9_c02224{word-spacing:9.529600pt;}
.ws7_c02224{word-spacing:9.536000pt;}
.ws4_c02224{word-spacing:9.772800pt;}
.ws5_c02224{word-spacing:9.913600pt;}
._0_c02224{margin-left:-0.947200pt;}
._1_c02224{width:2204.160000pt;}
.fs3_c02224{font-size:10.560000pt;}
.fs1_c02224{font-size:26.560000pt;}
.fs2_c02224{font-size:42.560000pt;}
.fs0_c02224{font-size:64.000000pt;}
.y0_c02224{bottom:0.000000pt;}
.y3_c02224{bottom:50.987067pt;}
.y2_c02224{bottom:69.387067pt;}
.y10_c02224{bottom:96.907115pt;}
.yf_c02224{bottom:100.027067pt;}
.ye_c02224{bottom:102.507067pt;}
.yd_c02224{bottom:497.387067pt;}
.yc_c02224{bottom:524.987067pt;}
.yb_c02224{bottom:552.427067pt;}
.ya_c02224{bottom:569.867067pt;}
.y9_c02224{bottom:579.547067pt;}
.y8_c02224{bottom:930.187067pt;}
.y7_c02224{bottom:949.067067pt;}
.y6_c02224{bottom:976.667067pt;}
.y5_c02224{bottom:994.907067pt;}
.y4_c02224{bottom:1013.307067pt;}
.y1_c02224{bottom:1060.587067pt;}
.h5_c02224{height:9.379219pt;}
.h3_c02224{height:23.304844pt;}
.h4_c02224{height:37.343906pt;}
.h2_c02224{height:56.156250pt;}
.h1_c02224{height:56.843750pt;}
.h0_c02224{height:1122.666667pt;}
.w1_c02224{width:793.333333pt;}
.w0_c02224{width:793.626667pt;}
.x0_c02224{left:0.000000pt;}
.x1_c02224{left:113.440000pt;}
.x4_c02224{left:122.880000pt;}
.x6_c02224{left:132.400000pt;}
.x3_c02224{left:302.800000pt;}
.x5_c02224{left:382.720000pt;}
.x2_c02224{left:384.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_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_15eeb62d2648759fe27f27ba.woff2')format("woff");}.ff1_c02225{font-family:ff1_c02225;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02225;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v1_c02225{vertical-align:-1.440000px;}
.v0_c02225{vertical-align:0.000000px;}
.ls1d_c02225{letter-spacing:-0.086184px;}
.ls20_c02225{letter-spacing:-0.039528px;}
.ls1a_c02225{letter-spacing:-0.028800px;}
.ls1c_c02225{letter-spacing:-0.027000px;}
.ls19_c02225{letter-spacing:-0.007200px;}
.ls18_c02225{letter-spacing:0.000000px;}
.ls0_c02225{letter-spacing:0.007200px;}
.ls4_c02225{letter-spacing:0.013176px;}
.ls17_c02225{letter-spacing:0.032940px;}
.ls5_c02225{letter-spacing:0.039528px;}
.ls1f_c02225{letter-spacing:0.046116px;}
.ls1b_c02225{letter-spacing:0.052704px;}
.lsc_c02225{letter-spacing:0.059292px;}
.lsb_c02225{letter-spacing:0.065880px;}
.ls13_c02225{letter-spacing:0.072468px;}
.ls6_c02225{letter-spacing:0.076608px;}
.ls11_c02225{letter-spacing:0.079056px;}
.ls2_c02225{letter-spacing:0.092232px;}
.ls7_c02225{letter-spacing:0.105408px;}
.ls12_c02225{letter-spacing:0.111996px;}
.lsd_c02225{letter-spacing:0.125172px;}
.ls9_c02225{letter-spacing:0.138348px;}
.ls14_c02225{letter-spacing:0.144936px;}
.ls3_c02225{letter-spacing:0.151524px;}
.ls8_c02225{letter-spacing:0.158112px;}
.ls1_c02225{letter-spacing:0.164700px;}
.lse_c02225{letter-spacing:0.171288px;}
.lsf_c02225{letter-spacing:0.177876px;}
.ls1e_c02225{letter-spacing:152.821836px;}
.ls10_c02225{letter-spacing:172.620000px;}
.ls21_c02225{letter-spacing:172.981116px;}
.lsa_c02225{letter-spacing:205.740000px;}
.ls15_c02225{letter-spacing:375.928056px;}
.ls16_c02225{letter-spacing:375.930000px;}
.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;}
}
.ws3c_c02225{word-spacing:-58.771548px;}
.ws0_c02225{word-spacing:-17.971200px;}
.ws29_c02225{word-spacing:-0.167580px;}
.ws23_c02225{word-spacing:-0.050400px;}
.ws2f_c02225{word-spacing:-0.032940px;}
.ws2a_c02225{word-spacing:-0.013176px;}
.ws24_c02225{word-spacing:-0.007200px;}
.ws22_c02225{word-spacing:0.000000px;}
.ws25_c02225{word-spacing:0.007200px;}
.ws2c_c02225{word-spacing:0.026352px;}
.ws2d_c02225{word-spacing:0.032940px;}
.ws26_c02225{word-spacing:0.039528px;}
.ws38_c02225{word-spacing:0.046116px;}
.ws28_c02225{word-spacing:0.052704px;}
.ws3b_c02225{word-spacing:0.059292px;}
.ws27_c02225{word-spacing:0.079056px;}
.ws39_c02225{word-spacing:0.092232px;}
.ws32_c02225{word-spacing:14.671476px;}
.ws3f_c02225{word-spacing:23.670684px;}
.ws11_c02225{word-spacing:67.608252px;}
.wsf_c02225{word-spacing:67.654368px;}
.ws6_c02225{word-spacing:80.242380px;}
.ws36_c02225{word-spacing:80.604180px;}
.wse_c02225{word-spacing:80.773020px;}
.ws3d_c02225{word-spacing:80.933580px;}
.ws42_c02225{word-spacing:80.966520px;}
.ws10_c02225{word-spacing:84.563568px;}
.wsd_c02225{word-spacing:87.409440px;}
.ws20_c02225{word-spacing:87.766308px;}
.ws1e_c02225{word-spacing:87.819012px;}
.wsc_c02225{word-spacing:89.558496px;}
.ws33_c02225{word-spacing:89.913024px;}
.wsa_c02225{word-spacing:96.802380px;}
.ws3e_c02225{word-spacing:97.476048px;}
.ws34_c02225{word-spacing:101.435436px;}
.ws14_c02225{word-spacing:113.386608px;}
.ws41_c02225{word-spacing:114.097572px;}
.ws5_c02225{word-spacing:122.316372px;}
.ws9_c02225{word-spacing:122.318496px;}
.ws1f_c02225{word-spacing:122.365512px;}
.ws30_c02225{word-spacing:122.681736px;}
.ws2e_c02225{word-spacing:122.694912px;}
.ws8_c02225{word-spacing:129.921084px;}
.ws4_c02225{word-spacing:129.947436px;}
.ws7_c02225{word-spacing:134.243676px;}
.ws37_c02225{word-spacing:138.927744px;}
.ws2_c02225{word-spacing:146.603304px;}
.ws31_c02225{word-spacing:155.437272px;}
.ws2b_c02225{word-spacing:155.812788px;}
.ws1b_c02225{word-spacing:162.681084px;}
.ws1_c02225{word-spacing:162.707436px;}
.ws13_c02225{word-spacing:162.799668px;}
.ws15_c02225{word-spacing:167.025564px;}
.ws3_c02225{word-spacing:167.124384px;}
.ws1a_c02225{word-spacing:172.039032px;}
.ws1c_c02225{word-spacing:172.065384px;}
.ws3a_c02225{word-spacing:188.950428px;}
.wsb_c02225{word-spacing:195.826608px;}
.ws40_c02225{word-spacing:196.473924px;}
.ws19_c02225{word-spacing:204.801156px;}
.ws12_c02225{word-spacing:218.787480px;}
.ws17_c02225{word-spacing:218.790000px;}
.ws21_c02225{word-spacing:238.946760px;}
.ws35_c02225{word-spacing:261.695124px;}
.ws16_c02225{word-spacing:379.786608px;}
.ws1d_c02225{word-spacing:417.586608px;}
.ws18_c02225{word-spacing:493.184268px;}
._19_c02225{margin-left:-174.297564px;}
._24_c02225{margin-left:-172.803240px;}
._8_c02225{margin-left:-152.643960px;}
._f_c02225{margin-left:-26.259768px;}
._7_c02225{margin-left:-1.250244px;}
._14_c02225{width:7.171344px;}
._9_c02225{width:18.900972px;}
._13_c02225{width:39.982572px;}
._15_c02225{width:86.678316px;}
._1a_c02225{width:100.873548px;}
._1e_c02225{width:105.967728px;}
._22_c02225{width:110.430000px;}
._10_c02225{width:113.369904px;}
._11_c02225{width:117.727560px;}
._3_c02225{width:119.778264px;}
._4_c02225{width:121.938264px;}
._2_c02225{width:131.310000px;}
._b_c02225{width:137.957472px;}
._25_c02225{width:139.342788px;}
._21_c02225{width:140.658264px;}
._6_c02225{width:150.750000px;}
._18_c02225{width:153.169524px;}
._26_c02225{width:155.529504px;}
._20_c02225{width:173.286000px;}
._5_c02225{width:175.667688px;}
._c_c02225{width:179.266068px;}
._1_c02225{width:183.227688px;}
._23_c02225{width:205.110000px;}
._d_c02225{width:210.111084px;}
._17_c02225{width:211.721976px;}
._27_c02225{width:219.594816px;}
._1b_c02225{width:223.030152px;}
._0_c02225{width:225.486000px;}
._1c_c02225{width:238.235256px;}
._e_c02225{width:245.205360px;}
._12_c02225{width:274.462668px;}
._a_c02225{width:289.285668px;}
._16_c02225{width:307.461960px;}
._1f_c02225{width:330.040620px;}
._28_c02225{width:368.300304px;}
._1d_c02225{width:651.780000px;}
._29_c02225{width:689.580000px;}
.fc0_c02225{color:rgb(0,0,0);}
.fs3_c02225{font-size:47.880000px;}
.fs1_c02225{font-size:54.000000px;}
.fs2_c02225{font-size:65.880000px;}
.fs0_c02225{font-size:72.000000px;}
.y0_c02225{bottom:0.000000px;}
.y3_c02225{bottom:57.360450px;}
.y2_c02225{bottom:78.060450px;}
.y3f_c02225{bottom:120.990450px;}
.y3e_c02225{bottom:136.560000px;}
.y3d_c02225{bottom:152.040450px;}
.y3c_c02225{bottom:167.610000px;}
.y3b_c02225{bottom:183.090450px;}
.y3a_c02225{bottom:199.650450px;}
.y39_c02225{bottom:218.640450px;}
.y38_c02225{bottom:237.630450px;}
.y37_c02225{bottom:256.980450px;}
.y36_c02225{bottom:275.880450px;}
.y35_c02225{bottom:294.870450px;}
.y34_c02225{bottom:313.860450px;}
.y33_c02225{bottom:332.850450px;}
.y32_c02225{bottom:351.840450px;}
.y31_c02225{bottom:370.830600px;}
.y30_c02225{bottom:389.100450px;}
.y2f_c02225{bottom:405.300450px;}
.y2c_c02225{bottom:423.660600px;}
.y2e_c02225{bottom:424.290600px;}
.y2d_c02225{bottom:443.190600px;}
.y2b_c02225{bottom:463.800450px;}
.y2a_c02225{bottom:479.280900px;}
.y29_c02225{bottom:494.850450px;}
.y28_c02225{bottom:511.410450px;}
.y27_c02225{bottom:530.400450px;}
.y26_c02225{bottom:549.390450px;}
.y25_c02225{bottom:568.740450px;}
.y24_c02225{bottom:587.640450px;}
.y23_c02225{bottom:606.630450px;}
.y22_c02225{bottom:625.620450px;}
.y21_c02225{bottom:644.610450px;}
.y20_c02225{bottom:663.600450px;}
.y1f_c02225{bottom:682.500450px;}
.y1e_c02225{bottom:700.860450px;}
.y1d_c02225{bottom:717.060450px;}
.y1a_c02225{bottom:735.420450px;}
.y1c_c02225{bottom:736.050450px;}
.y1b_c02225{bottom:754.950450px;}
.y19_c02225{bottom:775.560600px;}
.y18_c02225{bottom:791.041050px;}
.y17_c02225{bottom:806.610600px;}
.y16_c02225{bottom:823.170450px;}
.y15_c02225{bottom:842.160450px;}
.y14_c02225{bottom:861.060450px;}
.y13_c02225{bottom:880.410450px;}
.y12_c02225{bottom:899.400450px;}
.y11_c02225{bottom:918.390450px;}
.y10_c02225{bottom:937.380450px;}
.yf_c02225{bottom:956.370450px;}
.ye_c02225{bottom:975.270450px;}
.yd_c02225{bottom:994.260450px;}
.yc_c02225{bottom:1012.620450px;}
.yb_c02225{bottom:1028.820450px;}
.y8_c02225{bottom:1047.180450px;}
.ya_c02225{bottom:1047.720450px;}
.y9_c02225{bottom:1066.710450px;}
.y7_c02225{bottom:1085.970450px;}
.y6_c02225{bottom:1108.020000px;}
.y5_c02225{bottom:1123.500450px;}
.y4_c02225{bottom:1139.970450px;}
.y1_c02225{bottom:1193.160450px;}
.h3_c02225{height:47.961914px;}
.h4_c02225{height:58.513535px;}
.h2_c02225{height:63.175781px;}
.h1_c02225{height:63.949219px;}
.h0_c02225{height:1263.000000px;}
.w1_c02225{width:892.500000px;}
.w0_c02225{width:892.830000px;}
.x0_c02225{left:0.000000px;}
.x1_c02225{left:127.620000px;}
.x3_c02225{left:135.630000px;}
.xc_c02225{left:164.160000px;}
.x16_c02225{left:246.060000px;}
.x5_c02225{left:251.100000px;}
.x10_c02225{left:256.410000px;}
.xf_c02225{left:259.560000px;}
.x6_c02225{left:271.530000px;}
.x4_c02225{left:291.240000px;}
.xe_c02225{left:367.020324px;}
.xd_c02225{left:375.299793px;}
.x15_c02225{left:383.580909px;}
.x17_c02225{left:416.160000px;}
.x8_c02225{left:424.170000px;}
.x18_c02225{left:431.280000px;}
.x2_c02225{left:433.080000px;}
.x11_c02225{left:437.940000px;}
.x12_c02225{left:446.400000px;}
.x9_c02225{left:451.440000px;}
.x7_c02225{left:461.250000px;}
.x13_c02225{left:584.460000px;}
.xb_c02225{left:585.630000px;}
.x19_c02225{left:599.670000px;}
.xa_c02225{left:636.750000px;}
.x14_c02225{left:642.420000px;}
@media print{
.v1_c02225{vertical-align:-1.280000pt;}
.v0_c02225{vertical-align:0.000000pt;}
.ls1d_c02225{letter-spacing:-0.076608pt;}
.ls20_c02225{letter-spacing:-0.035136pt;}
.ls1a_c02225{letter-spacing:-0.025600pt;}
.ls1c_c02225{letter-spacing:-0.024000pt;}
.ls19_c02225{letter-spacing:-0.006400pt;}
.ls18_c02225{letter-spacing:0.000000pt;}
.ls0_c02225{letter-spacing:0.006400pt;}
.ls4_c02225{letter-spacing:0.011712pt;}
.ls17_c02225{letter-spacing:0.029280pt;}
.ls5_c02225{letter-spacing:0.035136pt;}
.ls1f_c02225{letter-spacing:0.040992pt;}
.ls1b_c02225{letter-spacing:0.046848pt;}
.lsc_c02225{letter-spacing:0.052704pt;}
.lsb_c02225{letter-spacing:0.058560pt;}
.ls13_c02225{letter-spacing:0.064416pt;}
.ls6_c02225{letter-spacing:0.068096pt;}
.ls11_c02225{letter-spacing:0.070272pt;}
.ls2_c02225{letter-spacing:0.081984pt;}
.ls7_c02225{letter-spacing:0.093696pt;}
.ls12_c02225{letter-spacing:0.099552pt;}
.lsd_c02225{letter-spacing:0.111264pt;}
.ls9_c02225{letter-spacing:0.122976pt;}
.ls14_c02225{letter-spacing:0.128832pt;}
.ls3_c02225{letter-spacing:0.134688pt;}
.ls8_c02225{letter-spacing:0.140544pt;}
.ls1_c02225{letter-spacing:0.146400pt;}
.lse_c02225{letter-spacing:0.152256pt;}
.lsf_c02225{letter-spacing:0.158112pt;}
.ls1e_c02225{letter-spacing:135.841632pt;}
.ls10_c02225{letter-spacing:153.440000pt;}
.ls21_c02225{letter-spacing:153.760992pt;}
.lsa_c02225{letter-spacing:182.880000pt;}
.ls15_c02225{letter-spacing:334.158272pt;}
.ls16_c02225{letter-spacing:334.160000pt;}
.ws3c_c02225{word-spacing:-52.241376pt;}
.ws0_c02225{word-spacing:-15.974400pt;}
.ws29_c02225{word-spacing:-0.148960pt;}
.ws23_c02225{word-spacing:-0.044800pt;}
.ws2f_c02225{word-spacing:-0.029280pt;}
.ws2a_c02225{word-spacing:-0.011712pt;}
.ws24_c02225{word-spacing:-0.006400pt;}
.ws22_c02225{word-spacing:0.000000pt;}
.ws25_c02225{word-spacing:0.006400pt;}
.ws2c_c02225{word-spacing:0.023424pt;}
.ws2d_c02225{word-spacing:0.029280pt;}
.ws26_c02225{word-spacing:0.035136pt;}
.ws38_c02225{word-spacing:0.040992pt;}
.ws28_c02225{word-spacing:0.046848pt;}
.ws3b_c02225{word-spacing:0.052704pt;}
.ws27_c02225{word-spacing:0.070272pt;}
.ws39_c02225{word-spacing:0.081984pt;}
.ws32_c02225{word-spacing:13.041312pt;}
.ws3f_c02225{word-spacing:21.040608pt;}
.ws11_c02225{word-spacing:60.096224pt;}
.wsf_c02225{word-spacing:60.137216pt;}
.ws6_c02225{word-spacing:71.326560pt;}
.ws36_c02225{word-spacing:71.648160pt;}
.wse_c02225{word-spacing:71.798240pt;}
.ws3d_c02225{word-spacing:71.940960pt;}
.ws42_c02225{word-spacing:71.970240pt;}
.ws10_c02225{word-spacing:75.167616pt;}
.wsd_c02225{word-spacing:77.697280pt;}
.ws20_c02225{word-spacing:78.014496pt;}
.ws1e_c02225{word-spacing:78.061344pt;}
.wsc_c02225{word-spacing:79.607552pt;}
.ws33_c02225{word-spacing:79.922688pt;}
.wsa_c02225{word-spacing:86.046560pt;}
.ws3e_c02225{word-spacing:86.645376pt;}
.ws34_c02225{word-spacing:90.164832pt;}
.ws14_c02225{word-spacing:100.788096pt;}
.ws41_c02225{word-spacing:101.420064pt;}
.ws5_c02225{word-spacing:108.725664pt;}
.ws9_c02225{word-spacing:108.727552pt;}
.ws1f_c02225{word-spacing:108.769344pt;}
.ws30_c02225{word-spacing:109.050432pt;}
.ws2e_c02225{word-spacing:109.062144pt;}
.ws8_c02225{word-spacing:115.485408pt;}
.ws4_c02225{word-spacing:115.508832pt;}
.ws7_c02225{word-spacing:119.327712pt;}
.ws37_c02225{word-spacing:123.491328pt;}
.ws2_c02225{word-spacing:130.314048pt;}
.ws31_c02225{word-spacing:138.166464pt;}
.ws2b_c02225{word-spacing:138.500256pt;}
.ws1b_c02225{word-spacing:144.605408pt;}
.ws1_c02225{word-spacing:144.628832pt;}
.ws13_c02225{word-spacing:144.710816pt;}
.ws15_c02225{word-spacing:148.467168pt;}
.ws3_c02225{word-spacing:148.555008pt;}
.ws1a_c02225{word-spacing:152.923584pt;}
.ws1c_c02225{word-spacing:152.947008pt;}
.ws3a_c02225{word-spacing:167.955936pt;}
.wsb_c02225{word-spacing:174.068096pt;}
.ws40_c02225{word-spacing:174.643488pt;}
.ws19_c02225{word-spacing:182.045472pt;}
.ws12_c02225{word-spacing:194.477760pt;}
.ws17_c02225{word-spacing:194.480000pt;}
.ws21_c02225{word-spacing:212.397120pt;}
.ws35_c02225{word-spacing:232.617888pt;}
.ws16_c02225{word-spacing:337.588096pt;}
.ws1d_c02225{word-spacing:371.188096pt;}
.ws18_c02225{word-spacing:438.386016pt;}
._19_c02225{margin-left:-154.931168pt;}
._24_c02225{margin-left:-153.602880pt;}
._8_c02225{margin-left:-135.683520pt;}
._f_c02225{margin-left:-23.342016pt;}
._7_c02225{margin-left:-1.111328pt;}
._14_c02225{width:6.374528pt;}
._9_c02225{width:16.800864pt;}
._13_c02225{width:35.540064pt;}
._15_c02225{width:77.047392pt;}
._1a_c02225{width:89.665376pt;}
._1e_c02225{width:94.193536pt;}
._22_c02225{width:98.160000pt;}
._10_c02225{width:100.773248pt;}
._11_c02225{width:104.646720pt;}
._3_c02225{width:106.469568pt;}
._4_c02225{width:108.389568pt;}
._2_c02225{width:116.720000pt;}
._b_c02225{width:122.628864pt;}
._25_c02225{width:123.860256pt;}
._21_c02225{width:125.029568pt;}
._6_c02225{width:134.000000pt;}
._18_c02225{width:136.150688pt;}
._26_c02225{width:138.248448pt;}
._20_c02225{width:154.032000pt;}
._5_c02225{width:156.149056pt;}
._c_c02225{width:159.347616pt;}
._1_c02225{width:162.869056pt;}
._23_c02225{width:182.320000pt;}
._d_c02225{width:186.765408pt;}
._17_c02225{width:188.197312pt;}
._27_c02225{width:195.195392pt;}
._1b_c02225{width:198.249024pt;}
._0_c02225{width:200.432000pt;}
._1c_c02225{width:211.764672pt;}
._e_c02225{width:217.960320pt;}
._12_c02225{width:243.966816pt;}
._a_c02225{width:257.142816pt;}
._16_c02225{width:273.299520pt;}
._1f_c02225{width:293.369440pt;}
._28_c02225{width:327.378048pt;}
._1d_c02225{width:579.360000pt;}
._29_c02225{width:612.960000pt;}
.fs3_c02225{font-size:42.560000pt;}
.fs1_c02225{font-size:48.000000pt;}
.fs2_c02225{font-size:58.560000pt;}
.fs0_c02225{font-size:64.000000pt;}
.y0_c02225{bottom:0.000000pt;}
.y3_c02225{bottom:50.987067pt;}
.y2_c02225{bottom:69.387067pt;}
.y3f_c02225{bottom:107.547067pt;}
.y3e_c02225{bottom:121.386667pt;}
.y3d_c02225{bottom:135.147067pt;}
.y3c_c02225{bottom:148.986667pt;}
.y3b_c02225{bottom:162.747067pt;}
.y3a_c02225{bottom:177.467067pt;}
.y39_c02225{bottom:194.347067pt;}
.y38_c02225{bottom:211.227067pt;}
.y37_c02225{bottom:228.427067pt;}
.y36_c02225{bottom:245.227067pt;}
.y35_c02225{bottom:262.107067pt;}
.y34_c02225{bottom:278.987067pt;}
.y33_c02225{bottom:295.867067pt;}
.y32_c02225{bottom:312.747067pt;}
.y31_c02225{bottom:329.627200pt;}
.y30_c02225{bottom:345.867067pt;}
.y2f_c02225{bottom:360.267067pt;}
.y2c_c02225{bottom:376.587200pt;}
.y2e_c02225{bottom:377.147200pt;}
.y2d_c02225{bottom:393.947200pt;}
.y2b_c02225{bottom:412.267067pt;}
.y2a_c02225{bottom:426.027467pt;}
.y29_c02225{bottom:439.867067pt;}
.y28_c02225{bottom:454.587067pt;}
.y27_c02225{bottom:471.467067pt;}
.y26_c02225{bottom:488.347067pt;}
.y25_c02225{bottom:505.547067pt;}
.y24_c02225{bottom:522.347067pt;}
.y23_c02225{bottom:539.227067pt;}
.y22_c02225{bottom:556.107067pt;}
.y21_c02225{bottom:572.987067pt;}
.y20_c02225{bottom:589.867067pt;}
.y1f_c02225{bottom:606.667067pt;}
.y1e_c02225{bottom:622.987067pt;}
.y1d_c02225{bottom:637.387067pt;}
.y1a_c02225{bottom:653.707067pt;}
.y1c_c02225{bottom:654.267067pt;}
.y1b_c02225{bottom:671.067067pt;}
.y19_c02225{bottom:689.387200pt;}
.y18_c02225{bottom:703.147600pt;}
.y17_c02225{bottom:716.987200pt;}
.y16_c02225{bottom:731.707067pt;}
.y15_c02225{bottom:748.587067pt;}
.y14_c02225{bottom:765.387067pt;}
.y13_c02225{bottom:782.587067pt;}
.y12_c02225{bottom:799.467067pt;}
.y11_c02225{bottom:816.347067pt;}
.y10_c02225{bottom:833.227067pt;}
.yf_c02225{bottom:850.107067pt;}
.ye_c02225{bottom:866.907067pt;}
.yd_c02225{bottom:883.787067pt;}
.yc_c02225{bottom:900.107067pt;}
.yb_c02225{bottom:914.507067pt;}
.y8_c02225{bottom:930.827067pt;}
.ya_c02225{bottom:931.307067pt;}
.y9_c02225{bottom:948.187067pt;}
.y7_c02225{bottom:965.307067pt;}
.y6_c02225{bottom:984.906667pt;}
.y5_c02225{bottom:998.667067pt;}
.y4_c02225{bottom:1013.307067pt;}
.y1_c02225{bottom:1060.587067pt;}
.h3_c02225{height:42.632812pt;}
.h4_c02225{height:52.012031pt;}
.h2_c02225{height:56.156250pt;}
.h1_c02225{height:56.843750pt;}
.h0_c02225{height:1122.666667pt;}
.w1_c02225{width:793.333333pt;}
.w0_c02225{width:793.626667pt;}
.x0_c02225{left:0.000000pt;}
.x1_c02225{left:113.440000pt;}
.x3_c02225{left:120.560000pt;}
.xc_c02225{left:145.920000pt;}
.x16_c02225{left:218.720000pt;}
.x5_c02225{left:223.200000pt;}
.x10_c02225{left:227.920000pt;}
.xf_c02225{left:230.720000pt;}
.x6_c02225{left:241.360000pt;}
.x4_c02225{left:258.880000pt;}
.xe_c02225{left:326.240288pt;}
.xd_c02225{left:333.599816pt;}
.x15_c02225{left:340.960808pt;}
.x17_c02225{left:369.920000pt;}
.x8_c02225{left:377.040000pt;}
.x18_c02225{left:383.360000pt;}
.x2_c02225{left:384.960000pt;}
.x11_c02225{left:389.280000pt;}
.x12_c02225{left:396.800000pt;}
.x9_c02225{left:401.280000pt;}
.x7_c02225{left:410.000000pt;}
.x13_c02225{left:519.520000pt;}
.xb_c02225{left:520.560000pt;}
.x19_c02225{left:533.040000pt;}
.xa_c02225{left:566.000000pt;}
.x14_c02225{left:571.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_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_c29ec36b3053bd2d6b564fff.woff2')format("woff");}.ff1_c02226{font-family:ff1_c02226;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02226;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.vb_c02226{vertical-align:-14.758200px;}
.vd_c02226{vertical-align:-13.681800px;}
.vc_c02226{vertical-align:-12.240000px;}
.v7_c02226{vertical-align:-6.841800px;}
.ve_c02226{vertical-align:-5.399400px;}
.v4_c02226{vertical-align:-3.960600px;}
.v3_c02226{vertical-align:-2.520600px;}
.v1_c02226{vertical-align:-1.440000px;}
.v0_c02226{vertical-align:0.000000px;}
.va_c02226{vertical-align:1.800000px;}
.v9_c02226{vertical-align:2.880000px;}
.v6_c02226{vertical-align:3.960000px;}
.v2_c02226{vertical-align:5.400000px;}
.v8_c02226{vertical-align:7.200000px;}
.v5_c02226{vertical-align:9.360000px;}
.ls25_c02226{letter-spacing:-0.180360px;}
.ls2a_c02226{letter-spacing:-0.086184px;}
.ls2f_c02226{letter-spacing:-0.043200px;}
.ls27_c02226{letter-spacing:-0.036072px;}
.ls24_c02226{letter-spacing:-0.028800px;}
.ls29_c02226{letter-spacing:-0.027000px;}
.ls28_c02226{letter-spacing:-0.024048px;}
.ls31_c02226{letter-spacing:-0.019152px;}
.ls30_c02226{letter-spacing:-0.010800px;}
.ls34_c02226{letter-spacing:-0.009576px;}
.ls2d_c02226{letter-spacing:-0.006588px;}
.ls26_c02226{letter-spacing:-0.006012px;}
.ls23_c02226{letter-spacing:0.000000px;}
.ls14_c02226{letter-spacing:0.007200px;}
.ls15_c02226{letter-spacing:0.010800px;}
.ls0_c02226{letter-spacing:0.012024px;}
.ls18_c02226{letter-spacing:0.012636px;}
.ls1f_c02226{letter-spacing:0.014400px;}
.ls1_c02226{letter-spacing:0.018036px;}
.ls17_c02226{letter-spacing:0.028728px;}
.ls13_c02226{letter-spacing:0.028800px;}
.ls19_c02226{letter-spacing:0.032400px;}
.ls1d_c02226{letter-spacing:0.037800px;}
.ls10_c02226{letter-spacing:0.039528px;}
.ls16_c02226{letter-spacing:0.043092px;}
.ls1c_c02226{letter-spacing:0.043200px;}
.ls7_c02226{letter-spacing:0.059292px;}
.ls5_c02226{letter-spacing:0.065880px;}
.lsf_c02226{letter-spacing:0.072468px;}
.ls2_c02226{letter-spacing:0.076608px;}
.lsd_c02226{letter-spacing:0.079056px;}
.ls1a_c02226{letter-spacing:0.081396px;}
.ls2b_c02226{letter-spacing:0.092232px;}
.ls12_c02226{letter-spacing:0.098820px;}
.ls3_c02226{letter-spacing:0.105408px;}
.lse_c02226{letter-spacing:0.111996px;}
.ls9_c02226{letter-spacing:0.125172px;}
.ls4_c02226{letter-spacing:0.138348px;}
.ls2e_c02226{letter-spacing:0.151200px;}
.ls8_c02226{letter-spacing:0.151524px;}
.ls6_c02226{letter-spacing:0.158112px;}
.ls22_c02226{letter-spacing:0.162792px;}
.ls32_c02226{letter-spacing:0.167580px;}
.lsa_c02226{letter-spacing:0.171288px;}
.lsb_c02226{letter-spacing:0.177876px;}
.ls1b_c02226{letter-spacing:0.181944px;}
.ls21_c02226{letter-spacing:51.298200px;}
.ls33_c02226{letter-spacing:143.100000px;}
.ls36_c02226{letter-spacing:144.450324px;}
.ls35_c02226{letter-spacing:145.978200px;}
.ls37_c02226{letter-spacing:154.980000px;}
.lsc_c02226{letter-spacing:172.620000px;}
.ls2c_c02226{letter-spacing:172.981116px;}
.ls1e_c02226{letter-spacing:196.830000px;}
.ls20_c02226{letter-spacing:261.181800px;}
.ls11_c02226{letter-spacing:375.928056px;}
.sc__c02226{text-shadow:none;}
.sc0_c02226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02226{-webkit-text-stroke:0px transparent;}
.sc0_c02226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02226{word-spacing:-17.971200px;}
.ws35_c02226{word-spacing:-0.272916px;}
.ws38_c02226{word-spacing:-0.253764px;}
.ws1e_c02226{word-spacing:-0.167580px;}
.ws32_c02226{word-spacing:-0.115200px;}
.ws34_c02226{word-spacing:-0.101088px;}
.ws36_c02226{word-spacing:-0.081396px;}
.ws18_c02226{word-spacing:-0.050400px;}
.ws25_c02226{word-spacing:-0.032940px;}
.ws37_c02226{word-spacing:-0.014400px;}
.ws1f_c02226{word-spacing:-0.013176px;}
.ws33_c02226{word-spacing:-0.007200px;}
.ws31_c02226{word-spacing:-0.006588px;}
.ws17_c02226{word-spacing:0.000000px;}
.ws21_c02226{word-spacing:0.026352px;}
.ws23_c02226{word-spacing:0.032940px;}
.ws2e_c02226{word-spacing:0.052704px;}
.ws1c_c02226{word-spacing:0.072144px;}
.ws1a_c02226{word-spacing:0.078156px;}
.ws19_c02226{word-spacing:0.096192px;}
.ws30_c02226{word-spacing:0.098820px;}
.ws1d_c02226{word-spacing:0.114228px;}
.ws1b_c02226{word-spacing:0.126252px;}
.ws28_c02226{word-spacing:32.307552px;}
.ws16_c02226{word-spacing:48.169440px;}
.ws15_c02226{word-spacing:75.169440px;}
.ws8_c02226{word-spacing:80.242380px;}
.ws2f_c02226{word-spacing:80.604180px;}
.ws11_c02226{word-spacing:80.773020px;}
.ws2d_c02226{word-spacing:80.966520px;}
.wse_c02226{word-spacing:87.409440px;}
.ws13_c02226{word-spacing:87.766308px;}
.ws10_c02226{word-spacing:87.823476px;}
.wsd_c02226{word-spacing:89.558496px;}
.ws29_c02226{word-spacing:89.913024px;}
.wsb_c02226{word-spacing:96.802380px;}
.ws27_c02226{word-spacing:97.476048px;}
.ws4_c02226{word-spacing:113.386608px;}
.ws2c_c02226{word-spacing:113.735232px;}
.wsf_c02226{word-spacing:113.893020px;}
.ws7_c02226{word-spacing:122.316372px;}
.wsa_c02226{word-spacing:122.318496px;}
.ws12_c02226{word-spacing:122.365512px;}
.ws26_c02226{word-spacing:122.681736px;}
.ws24_c02226{word-spacing:122.694912px;}
.ws6_c02226{word-spacing:129.921084px;}
.ws2_c02226{word-spacing:129.947436px;}
.ws2a_c02226{word-spacing:139.230792px;}
.ws3_c02226{word-spacing:155.436372px;}
.ws22_c02226{word-spacing:155.812788px;}
.ws9_c02226{word-spacing:172.039032px;}
.ws5_c02226{word-spacing:172.065384px;}
.ws20_c02226{word-spacing:188.950428px;}
.wsc_c02226{word-spacing:195.826608px;}
.ws14_c02226{word-spacing:238.946760px;}
.ws2b_c02226{word-spacing:261.695124px;}
.ws1_c02226{word-spacing:885.319668px;}
._19_c02226{margin-left:-174.297564px;}
._7_c02226{margin-left:-172.803240px;}
._e_c02226{margin-left:-26.259768px;}
._32_c02226{margin-left:-25.239060px;}
._14_c02226{margin-left:-9.078264px;}
._0_c02226{margin-left:-1.094184px;}
._40_c02226{width:1.176048px;}
._13_c02226{width:7.171344px;}
._3d_c02226{width:9.001800px;}
._33_c02226{width:10.800000px;}
._12_c02226{width:39.982572px;}
._38_c02226{width:50.689440px;}
._2a_c02226{width:51.714036px;}
._37_c02226{width:54.313092px;}
._18_c02226{width:56.439396px;}
._2c_c02226{width:65.056392px;}
._3c_c02226{width:71.539704px;}
._21_c02226{width:72.764460px;}
._36_c02226{width:74.700000px;}
._2f_c02226{width:75.780000px;}
._a_c02226{width:80.591004px;}
._22_c02226{width:82.797804px;}
._28_c02226{width:85.928148px;}
._1b_c02226{width:87.377796px;}
._3a_c02226{width:91.082196px;}
._2e_c02226{width:94.093200px;}
._2d_c02226{width:95.803164px;}
._1a_c02226{width:96.914160px;}
._2b_c02226{width:100.615140px;}
._29_c02226{width:105.548652px;}
._17_c02226{width:106.560900px;}
._3f_c02226{width:108.134856px;}
._27_c02226{width:112.195404px;}
._f_c02226{width:113.369904px;}
._23_c02226{width:115.740000px;}
._4_c02226{width:119.778264px;}
._24_c02226{width:122.220000px;}
._30_c02226{width:126.540000px;}
._35_c02226{width:127.573200px;}
._26_c02226{width:129.696120px;}
._3_c02226{width:131.310000px;}
._34_c02226{width:133.075404px;}
._25_c02226{width:136.378944px;}
._9_c02226{width:139.342788px;}
._5_c02226{width:140.658264px;}
._3e_c02226{width:143.100000px;}
._10_c02226{width:155.529504px;}
._3b_c02226{width:159.546384px;}
._b_c02226{width:179.266068px;}
._2_c02226{width:183.227688px;}
._31_c02226{width:185.878692px;}
._6_c02226{width:204.827688px;}
._c_c02226{width:210.111084px;}
._16_c02226{width:211.565916px;}
._39_c02226{width:213.874812px;}
._1c_c02226{width:223.030152px;}
._1_c02226{width:225.486000px;}
._1d_c02226{width:238.235256px;}
._20_c02226{width:241.700544px;}
._d_c02226{width:245.205360px;}
._11_c02226{width:274.462668px;}
._8_c02226{width:289.285668px;}
._15_c02226{width:307.461960px;}
._1f_c02226{width:322.047792px;}
._1e_c02226{width:689.580000px;}
.fc0_c02226{color:rgb(0,0,0);}
.fs6_c02226{font-size:11.880000px;}
.fs5_c02226{font-size:42.120000px;}
.fs4_c02226{font-size:47.880000px;}
.fs3_c02226{font-size:54.000000px;}
.fs2_c02226{font-size:60.120000px;}
.fs1_c02226{font-size:65.880000px;}
.fs0_c02226{font-size:72.000000px;}
.y0_c02226{bottom:0.000000px;}
.y3_c02226{bottom:57.360450px;}
.y2_c02226{bottom:78.060450px;}
.y43_c02226{bottom:111.360450px;}
.y42_c02226{bottom:129.720450px;}
.y41_c02226{bottom:130.080450px;}
.y40_c02226{bottom:149.070450px;}
.y3f_c02226{bottom:171.750450px;}
.y3e_c02226{bottom:190.739550px;}
.y3d_c02226{bottom:209.640450px;}
.y3c_c02226{bottom:225.660450px;}
.y3b_c02226{bottom:244.830450px;}
.y3a_c02226{bottom:261.300450px;}
.y39_c02226{bottom:282.090450px;}
.y38_c02226{bottom:290.820450px;}
.y37_c02226{bottom:291.270450px;}
.y36_c02226{bottom:310.890450px;}
.y35_c02226{bottom:330.060450px;}
.y34_c02226{bottom:346.530450px;}
.y33_c02226{bottom:367.320450px;}
.y32_c02226{bottom:376.140450px;}
.y31_c02226{bottom:376.500600px;}
.y30_c02226{bottom:396.120600px;}
.y2f_c02226{bottom:415.380450px;}
.y2e_c02226{bottom:431.850450px;}
.y2d_c02226{bottom:451.920900px;}
.y2c_c02226{bottom:467.490450px;}
.y2b_c02226{bottom:484.140450px;}
.y2a_c02226{bottom:505.380450px;}
.y29_c02226{bottom:525.900000px;}
.y28_c02226{bottom:541.380450px;}
.y27_c02226{bottom:556.950000px;}
.y26_c02226{bottom:572.430450px;}
.y25_c02226{bottom:588.990450px;}
.y24_c02226{bottom:607.980450px;}
.y23_c02226{bottom:626.970450px;}
.y22_c02226{bottom:646.320450px;}
.y21_c02226{bottom:665.310450px;}
.y20_c02226{bottom:684.300450px;}
.y1f_c02226{bottom:703.200450px;}
.y1e_c02226{bottom:722.190450px;}
.y1d_c02226{bottom:741.180450px;}
.y1c_c02226{bottom:760.170450px;}
.y1b_c02226{bottom:778.440450px;}
.y1a_c02226{bottom:794.640450px;}
.y17_c02226{bottom:813.090450px;}
.y19_c02226{bottom:813.630450px;}
.y18_c02226{bottom:832.620450px;}
.y16_c02226{bottom:853.140450px;}
.y15_c02226{bottom:868.710000px;}
.y14_c02226{bottom:884.190450px;}
.y13_c02226{bottom:900.750450px;}
.y12_c02226{bottom:919.740450px;}
.y11_c02226{bottom:938.730450px;}
.y10_c02226{bottom:958.080450px;}
.yf_c02226{bottom:977.070450px;}
.ye_c02226{bottom:995.970450px;}
.yd_c02226{bottom:1014.960450px;}
.yc_c02226{bottom:1033.950450px;}
.yb_c02226{bottom:1052.940450px;}
.ya_c02226{bottom:1071.929865px;}
.y9_c02226{bottom:1071.930450px;}
.y8_c02226{bottom:1090.200450px;}
.y7_c02226{bottom:1106.040450px;}
.y4_c02226{bottom:1122.240450px;}
.y6_c02226{bottom:1123.320450px;}
.y5_c02226{bottom:1140.510450px;}
.y1_c02226{bottom:1193.160450px;}
.h8_c02226{height:10.551621px;}
.hb_c02226{height:47.381836px;}
.h4_c02226{height:47.961914px;}
.h6_c02226{height:48.570293px;}
.h3_c02226{height:53.397598px;}
.ha_c02226{height:58.153535px;}
.h5_c02226{height:58.513535px;}
.hc_c02226{height:61.034135px;}
.h7_c02226{height:62.473535px;}
.hd_c02226{height:62.474135px;}
.h9_c02226{height:62.485840px;}
.h2_c02226{height:63.175781px;}
.h1_c02226{height:63.949219px;}
.h0_c02226{height:1263.000000px;}
.w1_c02226{width:892.500000px;}
.w0_c02226{width:892.830000px;}
.x0_c02226{left:0.000000px;}
.x1_c02226{left:127.620000px;}
.x3_c02226{left:135.630000px;}
.x15_c02226{left:144.000000px;}
.xd_c02226{left:164.160000px;}
.x16_c02226{left:220.500000px;}
.x14_c02226{left:244.710000px;}
.x13_c02226{left:248.850000px;}
.x5_c02226{left:252.720000px;}
.x6_c02226{left:275.400000px;}
.x12_c02226{left:286.650000px;}
.x4_c02226{left:293.760000px;}
.x11_c02226{left:367.020324px;}
.x10_c02226{left:375.299793px;}
.xe_c02226{left:383.580909px;}
.x8_c02226{left:422.820000px;}
.x9_c02226{left:425.700000px;}
.x2_c02226{left:433.080000px;}
.x7_c02226{left:463.860000px;}
.xb_c02226{left:598.230000px;}
.xc_c02226{left:617.760000px;}
.xa_c02226{left:639.270000px;}
.xf_c02226{left:726.210729px;}
@media print{
.vb_c02226{vertical-align:-13.118400pt;}
.vd_c02226{vertical-align:-12.161600pt;}
.vc_c02226{vertical-align:-10.880000pt;}
.v7_c02226{vertical-align:-6.081600pt;}
.ve_c02226{vertical-align:-4.799467pt;}
.v4_c02226{vertical-align:-3.520533pt;}
.v3_c02226{vertical-align:-2.240533pt;}
.v1_c02226{vertical-align:-1.280000pt;}
.v0_c02226{vertical-align:0.000000pt;}
.va_c02226{vertical-align:1.600000pt;}
.v9_c02226{vertical-align:2.560000pt;}
.v6_c02226{vertical-align:3.520000pt;}
.v2_c02226{vertical-align:4.800000pt;}
.v8_c02226{vertical-align:6.400000pt;}
.v5_c02226{vertical-align:8.320000pt;}
.ls25_c02226{letter-spacing:-0.160320pt;}
.ls2a_c02226{letter-spacing:-0.076608pt;}
.ls2f_c02226{letter-spacing:-0.038400pt;}
.ls27_c02226{letter-spacing:-0.032064pt;}
.ls24_c02226{letter-spacing:-0.025600pt;}
.ls29_c02226{letter-spacing:-0.024000pt;}
.ls28_c02226{letter-spacing:-0.021376pt;}
.ls31_c02226{letter-spacing:-0.017024pt;}
.ls30_c02226{letter-spacing:-0.009600pt;}
.ls34_c02226{letter-spacing:-0.008512pt;}
.ls2d_c02226{letter-spacing:-0.005856pt;}
.ls26_c02226{letter-spacing:-0.005344pt;}
.ls23_c02226{letter-spacing:0.000000pt;}
.ls14_c02226{letter-spacing:0.006400pt;}
.ls15_c02226{letter-spacing:0.009600pt;}
.ls0_c02226{letter-spacing:0.010688pt;}
.ls18_c02226{letter-spacing:0.011232pt;}
.ls1f_c02226{letter-spacing:0.012800pt;}
.ls1_c02226{letter-spacing:0.016032pt;}
.ls17_c02226{letter-spacing:0.025536pt;}
.ls13_c02226{letter-spacing:0.025600pt;}
.ls19_c02226{letter-spacing:0.028800pt;}
.ls1d_c02226{letter-spacing:0.033600pt;}
.ls10_c02226{letter-spacing:0.035136pt;}
.ls16_c02226{letter-spacing:0.038304pt;}
.ls1c_c02226{letter-spacing:0.038400pt;}
.ls7_c02226{letter-spacing:0.052704pt;}
.ls5_c02226{letter-spacing:0.058560pt;}
.lsf_c02226{letter-spacing:0.064416pt;}
.ls2_c02226{letter-spacing:0.068096pt;}
.lsd_c02226{letter-spacing:0.070272pt;}
.ls1a_c02226{letter-spacing:0.072352pt;}
.ls2b_c02226{letter-spacing:0.081984pt;}
.ls12_c02226{letter-spacing:0.087840pt;}
.ls3_c02226{letter-spacing:0.093696pt;}
.lse_c02226{letter-spacing:0.099552pt;}
.ls9_c02226{letter-spacing:0.111264pt;}
.ls4_c02226{letter-spacing:0.122976pt;}
.ls2e_c02226{letter-spacing:0.134400pt;}
.ls8_c02226{letter-spacing:0.134688pt;}
.ls6_c02226{letter-spacing:0.140544pt;}
.ls22_c02226{letter-spacing:0.144704pt;}
.ls32_c02226{letter-spacing:0.148960pt;}
.lsa_c02226{letter-spacing:0.152256pt;}
.lsb_c02226{letter-spacing:0.158112pt;}
.ls1b_c02226{letter-spacing:0.161728pt;}
.ls21_c02226{letter-spacing:45.598400pt;}
.ls33_c02226{letter-spacing:127.200000pt;}
.ls36_c02226{letter-spacing:128.400288pt;}
.ls35_c02226{letter-spacing:129.758400pt;}
.ls37_c02226{letter-spacing:137.760000pt;}
.lsc_c02226{letter-spacing:153.440000pt;}
.ls2c_c02226{letter-spacing:153.760992pt;}
.ls1e_c02226{letter-spacing:174.960000pt;}
.ls20_c02226{letter-spacing:232.161600pt;}
.ls11_c02226{letter-spacing:334.158272pt;}
.ws0_c02226{word-spacing:-15.974400pt;}
.ws35_c02226{word-spacing:-0.242592pt;}
.ws38_c02226{word-spacing:-0.225568pt;}
.ws1e_c02226{word-spacing:-0.148960pt;}
.ws32_c02226{word-spacing:-0.102400pt;}
.ws34_c02226{word-spacing:-0.089856pt;}
.ws36_c02226{word-spacing:-0.072352pt;}
.ws18_c02226{word-spacing:-0.044800pt;}
.ws25_c02226{word-spacing:-0.029280pt;}
.ws37_c02226{word-spacing:-0.012800pt;}
.ws1f_c02226{word-spacing:-0.011712pt;}
.ws33_c02226{word-spacing:-0.006400pt;}
.ws31_c02226{word-spacing:-0.005856pt;}
.ws17_c02226{word-spacing:0.000000pt;}
.ws21_c02226{word-spacing:0.023424pt;}
.ws23_c02226{word-spacing:0.029280pt;}
.ws2e_c02226{word-spacing:0.046848pt;}
.ws1c_c02226{word-spacing:0.064128pt;}
.ws1a_c02226{word-spacing:0.069472pt;}
.ws19_c02226{word-spacing:0.085504pt;}
.ws30_c02226{word-spacing:0.087840pt;}
.ws1d_c02226{word-spacing:0.101536pt;}
.ws1b_c02226{word-spacing:0.112224pt;}
.ws28_c02226{word-spacing:28.717824pt;}
.ws16_c02226{word-spacing:42.817280pt;}
.ws15_c02226{word-spacing:66.817280pt;}
.ws8_c02226{word-spacing:71.326560pt;}
.ws2f_c02226{word-spacing:71.648160pt;}
.ws11_c02226{word-spacing:71.798240pt;}
.ws2d_c02226{word-spacing:71.970240pt;}
.wse_c02226{word-spacing:77.697280pt;}
.ws13_c02226{word-spacing:78.014496pt;}
.ws10_c02226{word-spacing:78.065312pt;}
.wsd_c02226{word-spacing:79.607552pt;}
.ws29_c02226{word-spacing:79.922688pt;}
.wsb_c02226{word-spacing:86.046560pt;}
.ws27_c02226{word-spacing:86.645376pt;}
.ws4_c02226{word-spacing:100.788096pt;}
.ws2c_c02226{word-spacing:101.097984pt;}
.wsf_c02226{word-spacing:101.238240pt;}
.ws7_c02226{word-spacing:108.725664pt;}
.wsa_c02226{word-spacing:108.727552pt;}
.ws12_c02226{word-spacing:108.769344pt;}
.ws26_c02226{word-spacing:109.050432pt;}
.ws24_c02226{word-spacing:109.062144pt;}
.ws6_c02226{word-spacing:115.485408pt;}
.ws2_c02226{word-spacing:115.508832pt;}
.ws2a_c02226{word-spacing:123.760704pt;}
.ws3_c02226{word-spacing:138.165664pt;}
.ws22_c02226{word-spacing:138.500256pt;}
.ws9_c02226{word-spacing:152.923584pt;}
.ws5_c02226{word-spacing:152.947008pt;}
.ws20_c02226{word-spacing:167.955936pt;}
.wsc_c02226{word-spacing:174.068096pt;}
.ws14_c02226{word-spacing:212.397120pt;}
.ws2b_c02226{word-spacing:232.617888pt;}
.ws1_c02226{word-spacing:786.950816pt;}
._19_c02226{margin-left:-154.931168pt;}
._7_c02226{margin-left:-153.602880pt;}
._e_c02226{margin-left:-23.342016pt;}
._32_c02226{margin-left:-22.434720pt;}
._14_c02226{margin-left:-8.069568pt;}
._0_c02226{margin-left:-0.972608pt;}
._40_c02226{width:1.045376pt;}
._13_c02226{width:6.374528pt;}
._3d_c02226{width:8.001600pt;}
._33_c02226{width:9.600000pt;}
._12_c02226{width:35.540064pt;}
._38_c02226{width:45.057280pt;}
._2a_c02226{width:45.968032pt;}
._37_c02226{width:48.278304pt;}
._18_c02226{width:50.168352pt;}
._2c_c02226{width:57.827904pt;}
._3c_c02226{width:63.590848pt;}
._21_c02226{width:64.679520pt;}
._36_c02226{width:66.400000pt;}
._2f_c02226{width:67.360000pt;}
._a_c02226{width:71.636448pt;}
._22_c02226{width:73.598048pt;}
._28_c02226{width:76.380576pt;}
._1b_c02226{width:77.669152pt;}
._3a_c02226{width:80.961952pt;}
._2e_c02226{width:83.638400pt;}
._2d_c02226{width:85.158368pt;}
._1a_c02226{width:86.145920pt;}
._2b_c02226{width:89.435680pt;}
._29_c02226{width:93.821024pt;}
._17_c02226{width:94.720800pt;}
._3f_c02226{width:96.119872pt;}
._27_c02226{width:99.729248pt;}
._f_c02226{width:100.773248pt;}
._23_c02226{width:102.880000pt;}
._4_c02226{width:106.469568pt;}
._24_c02226{width:108.640000pt;}
._30_c02226{width:112.480000pt;}
._35_c02226{width:113.398400pt;}
._26_c02226{width:115.285440pt;}
._3_c02226{width:116.720000pt;}
._34_c02226{width:118.289248pt;}
._25_c02226{width:121.225728pt;}
._9_c02226{width:123.860256pt;}
._5_c02226{width:125.029568pt;}
._3e_c02226{width:127.200000pt;}
._10_c02226{width:138.248448pt;}
._3b_c02226{width:141.819008pt;}
._b_c02226{width:159.347616pt;}
._2_c02226{width:162.869056pt;}
._31_c02226{width:165.225504pt;}
._6_c02226{width:182.069056pt;}
._c_c02226{width:186.765408pt;}
._16_c02226{width:188.058592pt;}
._39_c02226{width:190.110944pt;}
._1c_c02226{width:198.249024pt;}
._1_c02226{width:200.432000pt;}
._1d_c02226{width:211.764672pt;}
._20_c02226{width:214.844928pt;}
._d_c02226{width:217.960320pt;}
._11_c02226{width:243.966816pt;}
._8_c02226{width:257.142816pt;}
._15_c02226{width:273.299520pt;}
._1f_c02226{width:286.264704pt;}
._1e_c02226{width:612.960000pt;}
.fs6_c02226{font-size:10.560000pt;}
.fs5_c02226{font-size:37.440000pt;}
.fs4_c02226{font-size:42.560000pt;}
.fs3_c02226{font-size:48.000000pt;}
.fs2_c02226{font-size:53.440000pt;}
.fs1_c02226{font-size:58.560000pt;}
.fs0_c02226{font-size:64.000000pt;}
.y0_c02226{bottom:0.000000pt;}
.y3_c02226{bottom:50.987067pt;}
.y2_c02226{bottom:69.387067pt;}
.y43_c02226{bottom:98.987067pt;}
.y42_c02226{bottom:115.307067pt;}
.y41_c02226{bottom:115.627067pt;}
.y40_c02226{bottom:132.507067pt;}
.y3f_c02226{bottom:152.667067pt;}
.y3e_c02226{bottom:169.546267pt;}
.y3d_c02226{bottom:186.347067pt;}
.y3c_c02226{bottom:200.587067pt;}
.y3b_c02226{bottom:217.627067pt;}
.y3a_c02226{bottom:232.267067pt;}
.y39_c02226{bottom:250.747067pt;}
.y38_c02226{bottom:258.507067pt;}
.y37_c02226{bottom:258.907067pt;}
.y36_c02226{bottom:276.347067pt;}
.y35_c02226{bottom:293.387067pt;}
.y34_c02226{bottom:308.027067pt;}
.y33_c02226{bottom:326.507067pt;}
.y32_c02226{bottom:334.347067pt;}
.y31_c02226{bottom:334.667200pt;}
.y30_c02226{bottom:352.107200pt;}
.y2f_c02226{bottom:369.227067pt;}
.y2e_c02226{bottom:383.867067pt;}
.y2d_c02226{bottom:401.707467pt;}
.y2c_c02226{bottom:415.547067pt;}
.y2b_c02226{bottom:430.347067pt;}
.y2a_c02226{bottom:449.227067pt;}
.y29_c02226{bottom:467.466667pt;}
.y28_c02226{bottom:481.227067pt;}
.y27_c02226{bottom:495.066667pt;}
.y26_c02226{bottom:508.827067pt;}
.y25_c02226{bottom:523.547067pt;}
.y24_c02226{bottom:540.427067pt;}
.y23_c02226{bottom:557.307067pt;}
.y22_c02226{bottom:574.507067pt;}
.y21_c02226{bottom:591.387067pt;}
.y20_c02226{bottom:608.267067pt;}
.y1f_c02226{bottom:625.067067pt;}
.y1e_c02226{bottom:641.947067pt;}
.y1d_c02226{bottom:658.827067pt;}
.y1c_c02226{bottom:675.707067pt;}
.y1b_c02226{bottom:691.947067pt;}
.y1a_c02226{bottom:706.347067pt;}
.y17_c02226{bottom:722.747067pt;}
.y19_c02226{bottom:723.227067pt;}
.y18_c02226{bottom:740.107067pt;}
.y16_c02226{bottom:758.347067pt;}
.y15_c02226{bottom:772.186667pt;}
.y14_c02226{bottom:785.947067pt;}
.y13_c02226{bottom:800.667067pt;}
.y12_c02226{bottom:817.547067pt;}
.y11_c02226{bottom:834.427067pt;}
.y10_c02226{bottom:851.627067pt;}
.yf_c02226{bottom:868.507067pt;}
.ye_c02226{bottom:885.307067pt;}
.yd_c02226{bottom:902.187067pt;}
.yc_c02226{bottom:919.067067pt;}
.yb_c02226{bottom:935.947067pt;}
.ya_c02226{bottom:952.826547pt;}
.y9_c02226{bottom:952.827067pt;}
.y8_c02226{bottom:969.067067pt;}
.y7_c02226{bottom:983.147067pt;}
.y4_c02226{bottom:997.547067pt;}
.y6_c02226{bottom:998.507067pt;}
.y5_c02226{bottom:1013.787067pt;}
.y1_c02226{bottom:1060.587067pt;}
.h8_c02226{height:9.379219pt;}
.hb_c02226{height:42.117188pt;}
.h4_c02226{height:42.632812pt;}
.h6_c02226{height:43.173594pt;}
.h3_c02226{height:47.464531pt;}
.ha_c02226{height:51.692031pt;}
.h5_c02226{height:52.012031pt;}
.hc_c02226{height:54.252565pt;}
.h7_c02226{height:55.532031pt;}
.hd_c02226{height:55.532565pt;}
.h9_c02226{height:55.542969pt;}
.h2_c02226{height:56.156250pt;}
.h1_c02226{height:56.843750pt;}
.h0_c02226{height:1122.666667pt;}
.w1_c02226{width:793.333333pt;}
.w0_c02226{width:793.626667pt;}
.x0_c02226{left:0.000000pt;}
.x1_c02226{left:113.440000pt;}
.x3_c02226{left:120.560000pt;}
.x15_c02226{left:128.000000pt;}
.xd_c02226{left:145.920000pt;}
.x16_c02226{left:196.000000pt;}
.x14_c02226{left:217.520000pt;}
.x13_c02226{left:221.200000pt;}
.x5_c02226{left:224.640000pt;}
.x6_c02226{left:244.800000pt;}
.x12_c02226{left:254.800000pt;}
.x4_c02226{left:261.120000pt;}
.x11_c02226{left:326.240288pt;}
.x10_c02226{left:333.599816pt;}
.xe_c02226{left:340.960808pt;}
.x8_c02226{left:375.840000pt;}
.x9_c02226{left:378.400000pt;}
.x2_c02226{left:384.960000pt;}
.x7_c02226{left:412.320000pt;}
.xb_c02226{left:531.760000pt;}
.xc_c02226{left:549.120000pt;}
.xa_c02226{left:568.240000pt;}
.xf_c02226{left:645.520648pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_908e27a1244ca424848f0b37.woff2')format("woff");}.ff1_c02227{font-family:ff1_c02227;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02227;src:url('chunks/assets/font_513206d0cd3e8fd6a044498b.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;}
.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);}
.ve_c02227{vertical-align:-9.000000px;}
.va_c02227{vertical-align:-7.920000px;}
.v7_c02227{vertical-align:-6.841800px;}
.v2_c02227{vertical-align:-5.760000px;}
.v1_c02227{vertical-align:-3.960000px;}
.v4_c02227{vertical-align:-2.520000px;}
.vb_c02227{vertical-align:-1.440000px;}
.v0_c02227{vertical-align:0.000000px;}
.vc_c02227{vertical-align:1.441800px;}
.v9_c02227{vertical-align:2.520000px;}
.v6_c02227{vertical-align:3.960600px;}
.v3_c02227{vertical-align:5.400000px;}
.v8_c02227{vertical-align:7.920000px;}
.v5_c02227{vertical-align:9.360000px;}
.vd_c02227{vertical-align:53.640000px;}
.ls2c_c02227{letter-spacing:-0.086184px;}
.ls29_c02227{letter-spacing:-0.043200px;}
.ls21_c02227{letter-spacing:-0.019152px;}
.ls2a_c02227{letter-spacing:-0.010800px;}
.ls26_c02227{letter-spacing:-0.009576px;}
.ls27_c02227{letter-spacing:-0.007200px;}
.ls2e_c02227{letter-spacing:-0.004788px;}
.ls1f_c02227{letter-spacing:0.000000px;}
.ls1_c02227{letter-spacing:0.006588px;}
.ls20_c02227{letter-spacing:0.007200px;}
.lse_c02227{letter-spacing:0.010800px;}
.ls10_c02227{letter-spacing:0.012636px;}
.ls2_c02227{letter-spacing:0.013176px;}
.ls1b_c02227{letter-spacing:0.019152px;}
.ls1e_c02227{letter-spacing:0.019764px;}
.lsf_c02227{letter-spacing:0.028728px;}
.ls11_c02227{letter-spacing:0.032400px;}
.ls12_c02227{letter-spacing:0.037800px;}
.lsb_c02227{letter-spacing:0.043092px;}
.ls13_c02227{letter-spacing:0.043200px;}
.ls1d_c02227{letter-spacing:0.046116px;}
.ls17_c02227{letter-spacing:0.052668px;}
.ls22_c02227{letter-spacing:0.060120px;}
.ls1c_c02227{letter-spacing:0.065880px;}
.ls7_c02227{letter-spacing:0.066132px;}
.ls9_c02227{letter-spacing:0.067032px;}
.lsc_c02227{letter-spacing:0.076608px;}
.ls25_c02227{letter-spacing:0.078156px;}
.ls0_c02227{letter-spacing:0.079056px;}
.ls2f_c02227{letter-spacing:0.081396px;}
.ls8_c02227{letter-spacing:0.086184px;}
.ls3_c02227{letter-spacing:0.095760px;}
.ls24_c02227{letter-spacing:0.096192px;}
.lsa_c02227{letter-spacing:0.114912px;}
.lsd_c02227{letter-spacing:0.119700px;}
.ls19_c02227{letter-spacing:0.124488px;}
.ls1a_c02227{letter-spacing:0.134064px;}
.ls18_c02227{letter-spacing:0.138852px;}
.ls28_c02227{letter-spacing:0.151200px;}
.ls5_c02227{letter-spacing:0.158112px;}
.ls16_c02227{letter-spacing:0.162792px;}
.ls2b_c02227{letter-spacing:0.167580px;}
.ls23_c02227{letter-spacing:0.177876px;}
.ls4_c02227{letter-spacing:0.181944px;}
.ls2d_c02227{letter-spacing:144.180000px;}
.ls15_c02227{letter-spacing:156.778200px;}
.ls6_c02227{letter-spacing:191.970000px;}
.ls14_c02227{letter-spacing:200.790000px;}
.sc__c02227{text-shadow:none;}
.sc0_c02227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02227{-webkit-text-stroke:0px transparent;}
.sc0_c02227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02227{word-spacing:-16.476588px;}
.wsc_c02227{word-spacing:-0.366732px;}
.ws16_c02227{word-spacing:-0.272916px;}
.ws17_c02227{word-spacing:-0.253764px;}
.ws1a_c02227{word-spacing:-0.229824px;}
.ws1c_c02227{word-spacing:-0.225036px;}
.ws1b_c02227{word-spacing:-0.215460px;}
.ws13_c02227{word-spacing:-0.210672px;}
.ws19_c02227{word-spacing:-0.205884px;}
.wsa_c02227{word-spacing:-0.186732px;}
.ws1d_c02227{word-spacing:-0.172368px;}
.ws18_c02227{word-spacing:-0.119700px;}
.ws1e_c02227{word-spacing:-0.110124px;}
.ws15_c02227{word-spacing:-0.101088px;}
.ws8_c02227{word-spacing:-0.050400px;}
.ws7_c02227{word-spacing:0.000000px;}
.ws14_c02227{word-spacing:0.007200px;}
.wsd_c02227{word-spacing:0.012024px;}
.ws9_c02227{word-spacing:0.013176px;}
.ws1f_c02227{word-spacing:0.026352px;}
.wsb_c02227{word-spacing:0.030060px;}
.ws20_c02227{word-spacing:0.046116px;}
.ws21_c02227{word-spacing:0.072468px;}
.ws10_c02227{word-spacing:1.235304px;}
.ws12_c02227{word-spacing:1.273608px;}
.ws11_c02227{word-spacing:1.307124px;}
.wse_c02227{word-spacing:5.941908px;}
.wsf_c02227{word-spacing:5.961060px;}
.ws5_c02227{word-spacing:48.169440px;}
.ws6_c02227{word-spacing:75.169440px;}
.ws1_c02227{word-spacing:191.436372px;}
.ws3_c02227{word-spacing:191.449440px;}
.ws4_c02227{word-spacing:306.996372px;}
.ws2_c02227{word-spacing:307.009440px;}
._0_c02227{margin-left:-1.014552px;}
._1d_c02227{width:42.481800px;}
._13_c02227{width:51.300000px;}
._17_c02227{width:60.973200px;}
._18_c02227{width:62.053200px;}
._e_c02227{width:72.604440px;}
._1a_c02227{width:75.420000px;}
._f_c02227{width:77.310180px;}
._24_c02227{width:78.426072px;}
._16_c02227{width:83.340000px;}
._8_c02227{width:84.474000px;}
._10_c02227{width:87.278400px;}
._7_c02227{width:88.581600px;}
._14_c02227{width:91.288440px;}
._11_c02227{width:100.598400px;}
._21_c02227{width:104.788080px;}
._20_c02227{width:106.059420px;}
._12_c02227{width:113.689440px;}
._22_c02227{width:115.918200px;}
._d_c02227{width:119.286972px;}
._23_c02227{width:121.065300px;}
._9_c02227{width:122.220000px;}
._29_c02227{width:125.578944px;}
._a_c02227{width:127.980000px;}
._19_c02227{width:129.607020px;}
._c_c02227{width:131.136120px;}
._27_c02227{width:132.915600px;}
._1b_c02227{width:134.074296px;}
._26_c02227{width:136.200168px;}
._b_c02227{width:139.618944px;}
._3_c02227{width:141.573276px;}
._1f_c02227{width:144.180000px;}
._25_c02227{width:149.146920px;}
._28_c02227{width:157.727016px;}
._1e_c02227{width:171.066384px;}
._1c_c02227{width:182.304000px;}
._2a_c02227{width:222.566112px;}
._15_c02227{width:225.444168px;}
._4_c02227{width:265.548204px;}
._5_c02227{width:274.145364px;}
._2_c02227{width:287.726112px;}
._1_c02227{width:506.339208px;}
._6_c02227{width:835.489260px;}
.fc0_c02227{color:rgb(0,0,0);}
.fs6_c02227{font-size:29.880000px;}
.fs5_c02227{font-size:42.120000px;}
.fs2_c02227{font-size:47.880000px;}
.fs4_c02227{font-size:54.000000px;}
.fs3_c02227{font-size:60.120000px;}
.fs1_c02227{font-size:65.880000px;}
.fs0_c02227{font-size:72.000000px;}
.y0_c02227{bottom:0.000000px;}
.y3_c02227{bottom:57.360450px;}
.y2_c02227{bottom:78.060450px;}
.y4b_c02227{bottom:126.660720px;}
.y4a_c02227{bottom:145.650630px;}
.y49_c02227{bottom:164.640540px;}
.y48_c02227{bottom:183.630450px;}
.y47_c02227{bottom:201.810099px;}
.y46_c02227{bottom:215.580387px;}
.y45_c02227{bottom:229.440450px;}
.y44_c02227{bottom:249.240450px;}
.y43_c02227{bottom:268.230450px;}
.y42_c02227{bottom:287.220450px;}
.y41_c02227{bottom:307.650450px;}
.y40_c02227{bottom:326.550450px;}
.y3e_c02227{bottom:327.360450px;}
.y3f_c02227{bottom:340.770450px;}
.y3d_c02227{bottom:362.280450px;}
.y3c_c02227{bottom:379.201242px;}
.y3b_c02227{bottom:387.841044px;}
.y3a_c02227{bottom:396.480846px;}
.y39_c02227{bottom:405.120648px;}
.y38_c02227{bottom:413.760450px;}
.y37_c02227{bottom:423.570249px;}
.y36_c02227{bottom:437.340537px;}
.y35_c02227{bottom:451.200600px;}
.y34_c02227{bottom:471.000600px;}
.y33_c02227{bottom:491.520600px;}
.y32_c02227{bottom:511.950600px;}
.y31_c02227{bottom:532.470450px;}
.y30_c02227{bottom:551.460450px;}
.y2f_c02227{bottom:552.180450px;}
.y2e_c02227{bottom:582.511890px;}
.y2d_c02227{bottom:601.411215px;}
.y2c_c02227{bottom:620.401125px;}
.y2b_c02227{bottom:639.300450px;}
.y2a_c02227{bottom:657.660450px;}
.y29_c02227{bottom:658.019550px;}
.y28_c02227{bottom:676.650450px;}
.y27_c02227{bottom:677.009550px;}
.y26_c02227{bottom:695.640450px;}
.y25_c02227{bottom:695.999550px;}
.y24_c02227{bottom:714.540450px;}
.y23_c02227{bottom:714.990900px;}
.y22_c02227{bottom:733.530450px;}
.y21_c02227{bottom:733.890450px;}
.y20_c02227{bottom:752.880450px;}
.y1f_c02227{bottom:771.510450px;}
.y1e_c02227{bottom:771.869550px;}
.y1d_c02227{bottom:790.500450px;}
.y1c_c02227{bottom:790.860600px;}
.y1b_c02227{bottom:809.850450px;}
.y1a_c02227{bottom:828.390450px;}
.y19_c02227{bottom:828.749550px;}
.y18_c02227{bottom:847.380450px;}
.y17_c02227{bottom:847.739550px;}
.y16_c02227{bottom:866.370450px;}
.y15_c02227{bottom:866.730450px;}
.y14_c02227{bottom:886.350450px;}
.y13_c02227{bottom:905.610450px;}
.y12_c02227{bottom:922.080450px;}
.y11_c02227{bottom:942.150450px;}
.y10_c02227{bottom:957.720000px;}
.yf_c02227{bottom:973.200450px;}
.ye_c02227{bottom:988.679874px;}
.yd_c02227{bottom:1002.450162px;}
.yc_c02227{bottom:1016.220450px;}
.yb_c02227{bottom:1034.580450px;}
.ya_c02227{bottom:1053.570450px;}
.y9_c02227{bottom:1072.560450px;}
.y8_c02227{bottom:1091.550450px;}
.y7_c02227{bottom:1110.450450px;}
.y5_c02227{bottom:1111.170450px;}
.y6_c02227{bottom:1124.580450px;}
.y4_c02227{bottom:1141.500450px;}
.y1_c02227{bottom:1193.160450px;}
.he_c02227{height:26.538926px;}
.h4_c02227{height:42.011895px;}
.h6_c02227{height:47.961914px;}
.h7_c02227{height:48.570293px;}
.h5_c02227{height:52.751777px;}
.h3_c02227{height:58.513535px;}
.ha_c02227{height:61.033535px;}
.hc_c02227{height:61.393535px;}
.hb_c02227{height:62.473535px;}
.h8_c02227{height:62.474135px;}
.h9_c02227{height:62.833535px;}
.h2_c02227{height:63.175781px;}
.h1_c02227{height:63.949219px;}
.hd_c02227{height:95.651895px;}
.h0_c02227{height:1263.000000px;}
.w1_c02227{width:892.500000px;}
.w0_c02227{width:892.830000px;}
.x0_c02227{left:0.000000px;}
.x1_c02227{left:127.620000px;}
.x3_c02227{left:134.550000px;}
.x6_c02227{left:135.630000px;}
.x7_c02227{left:143.910000px;}
.x8_c02227{left:165.060000px;}
.x9_c02227{left:220.680000px;}
.xa_c02227{left:350.820000px;}
.x4_c02227{left:392.490000px;}
.x5_c02227{left:415.530000px;}
.x2_c02227{left:433.080000px;}
@media print{
.ve_c02227{vertical-align:-8.000000pt;}
.va_c02227{vertical-align:-7.040000pt;}
.v7_c02227{vertical-align:-6.081600pt;}
.v2_c02227{vertical-align:-5.120000pt;}
.v1_c02227{vertical-align:-3.520000pt;}
.v4_c02227{vertical-align:-2.240000pt;}
.vb_c02227{vertical-align:-1.280000pt;}
.v0_c02227{vertical-align:0.000000pt;}
.vc_c02227{vertical-align:1.281600pt;}
.v9_c02227{vertical-align:2.240000pt;}
.v6_c02227{vertical-align:3.520533pt;}
.v3_c02227{vertical-align:4.800000pt;}
.v8_c02227{vertical-align:7.040000pt;}
.v5_c02227{vertical-align:8.320000pt;}
.vd_c02227{vertical-align:47.680000pt;}
.ls2c_c02227{letter-spacing:-0.076608pt;}
.ls29_c02227{letter-spacing:-0.038400pt;}
.ls21_c02227{letter-spacing:-0.017024pt;}
.ls2a_c02227{letter-spacing:-0.009600pt;}
.ls26_c02227{letter-spacing:-0.008512pt;}
.ls27_c02227{letter-spacing:-0.006400pt;}
.ls2e_c02227{letter-spacing:-0.004256pt;}
.ls1f_c02227{letter-spacing:0.000000pt;}
.ls1_c02227{letter-spacing:0.005856pt;}
.ls20_c02227{letter-spacing:0.006400pt;}
.lse_c02227{letter-spacing:0.009600pt;}
.ls10_c02227{letter-spacing:0.011232pt;}
.ls2_c02227{letter-spacing:0.011712pt;}
.ls1b_c02227{letter-spacing:0.017024pt;}
.ls1e_c02227{letter-spacing:0.017568pt;}
.lsf_c02227{letter-spacing:0.025536pt;}
.ls11_c02227{letter-spacing:0.028800pt;}
.ls12_c02227{letter-spacing:0.033600pt;}
.lsb_c02227{letter-spacing:0.038304pt;}
.ls13_c02227{letter-spacing:0.038400pt;}
.ls1d_c02227{letter-spacing:0.040992pt;}
.ls17_c02227{letter-spacing:0.046816pt;}
.ls22_c02227{letter-spacing:0.053440pt;}
.ls1c_c02227{letter-spacing:0.058560pt;}
.ls7_c02227{letter-spacing:0.058784pt;}
.ls9_c02227{letter-spacing:0.059584pt;}
.lsc_c02227{letter-spacing:0.068096pt;}
.ls25_c02227{letter-spacing:0.069472pt;}
.ls0_c02227{letter-spacing:0.070272pt;}
.ls2f_c02227{letter-spacing:0.072352pt;}
.ls8_c02227{letter-spacing:0.076608pt;}
.ls3_c02227{letter-spacing:0.085120pt;}
.ls24_c02227{letter-spacing:0.085504pt;}
.lsa_c02227{letter-spacing:0.102144pt;}
.lsd_c02227{letter-spacing:0.106400pt;}
.ls19_c02227{letter-spacing:0.110656pt;}
.ls1a_c02227{letter-spacing:0.119168pt;}
.ls18_c02227{letter-spacing:0.123424pt;}
.ls28_c02227{letter-spacing:0.134400pt;}
.ls5_c02227{letter-spacing:0.140544pt;}
.ls16_c02227{letter-spacing:0.144704pt;}
.ls2b_c02227{letter-spacing:0.148960pt;}
.ls23_c02227{letter-spacing:0.158112pt;}
.ls4_c02227{letter-spacing:0.161728pt;}
.ls2d_c02227{letter-spacing:128.160000pt;}
.ls15_c02227{letter-spacing:139.358400pt;}
.ls6_c02227{letter-spacing:170.640000pt;}
.ls14_c02227{letter-spacing:178.480000pt;}
.ws0_c02227{word-spacing:-14.645856pt;}
.wsc_c02227{word-spacing:-0.325984pt;}
.ws16_c02227{word-spacing:-0.242592pt;}
.ws17_c02227{word-spacing:-0.225568pt;}
.ws1a_c02227{word-spacing:-0.204288pt;}
.ws1c_c02227{word-spacing:-0.200032pt;}
.ws1b_c02227{word-spacing:-0.191520pt;}
.ws13_c02227{word-spacing:-0.187264pt;}
.ws19_c02227{word-spacing:-0.183008pt;}
.wsa_c02227{word-spacing:-0.165984pt;}
.ws1d_c02227{word-spacing:-0.153216pt;}
.ws18_c02227{word-spacing:-0.106400pt;}
.ws1e_c02227{word-spacing:-0.097888pt;}
.ws15_c02227{word-spacing:-0.089856pt;}
.ws8_c02227{word-spacing:-0.044800pt;}
.ws7_c02227{word-spacing:0.000000pt;}
.ws14_c02227{word-spacing:0.006400pt;}
.wsd_c02227{word-spacing:0.010688pt;}
.ws9_c02227{word-spacing:0.011712pt;}
.ws1f_c02227{word-spacing:0.023424pt;}
.wsb_c02227{word-spacing:0.026720pt;}
.ws20_c02227{word-spacing:0.040992pt;}
.ws21_c02227{word-spacing:0.064416pt;}
.ws10_c02227{word-spacing:1.098048pt;}
.ws12_c02227{word-spacing:1.132096pt;}
.ws11_c02227{word-spacing:1.161888pt;}
.wse_c02227{word-spacing:5.281696pt;}
.wsf_c02227{word-spacing:5.298720pt;}
.ws5_c02227{word-spacing:42.817280pt;}
.ws6_c02227{word-spacing:66.817280pt;}
.ws1_c02227{word-spacing:170.165664pt;}
.ws3_c02227{word-spacing:170.177280pt;}
.ws4_c02227{word-spacing:272.885664pt;}
.ws2_c02227{word-spacing:272.897280pt;}
._0_c02227{margin-left:-0.901824pt;}
._1d_c02227{width:37.761600pt;}
._13_c02227{width:45.600000pt;}
._17_c02227{width:54.198400pt;}
._18_c02227{width:55.158400pt;}
._e_c02227{width:64.537280pt;}
._1a_c02227{width:67.040000pt;}
._f_c02227{width:68.720160pt;}
._24_c02227{width:69.712064pt;}
._16_c02227{width:74.080000pt;}
._8_c02227{width:75.088000pt;}
._10_c02227{width:77.580800pt;}
._7_c02227{width:78.739200pt;}
._14_c02227{width:81.145280pt;}
._11_c02227{width:89.420800pt;}
._21_c02227{width:93.144960pt;}
._20_c02227{width:94.275040pt;}
._12_c02227{width:101.057280pt;}
._22_c02227{width:103.038400pt;}
._d_c02227{width:106.032864pt;}
._23_c02227{width:107.613600pt;}
._9_c02227{width:108.640000pt;}
._29_c02227{width:111.625728pt;}
._a_c02227{width:113.760000pt;}
._19_c02227{width:115.206240pt;}
._c_c02227{width:116.565440pt;}
._27_c02227{width:118.147200pt;}
._1b_c02227{width:119.177152pt;}
._26_c02227{width:121.066816pt;}
._b_c02227{width:124.105728pt;}
._3_c02227{width:125.842912pt;}
._1f_c02227{width:128.160000pt;}
._25_c02227{width:132.575040pt;}
._28_c02227{width:140.201792pt;}
._1e_c02227{width:152.059008pt;}
._1c_c02227{width:162.048000pt;}
._2a_c02227{width:197.836544pt;}
._15_c02227{width:200.394816pt;}
._4_c02227{width:236.042848pt;}
._5_c02227{width:243.684768pt;}
._2_c02227{width:255.756544pt;}
._1_c02227{width:450.079296pt;}
._6_c02227{width:742.657120pt;}
.fs6_c02227{font-size:26.560000pt;}
.fs5_c02227{font-size:37.440000pt;}
.fs2_c02227{font-size:42.560000pt;}
.fs4_c02227{font-size:48.000000pt;}
.fs3_c02227{font-size:53.440000pt;}
.fs1_c02227{font-size:58.560000pt;}
.fs0_c02227{font-size:64.000000pt;}
.y0_c02227{bottom:0.000000pt;}
.y3_c02227{bottom:50.987067pt;}
.y2_c02227{bottom:69.387067pt;}
.y4b_c02227{bottom:112.587307pt;}
.y4a_c02227{bottom:129.467227pt;}
.y49_c02227{bottom:146.347147pt;}
.y48_c02227{bottom:163.227067pt;}
.y47_c02227{bottom:179.386755pt;}
.y46_c02227{bottom:191.627011pt;}
.y45_c02227{bottom:203.947067pt;}
.y44_c02227{bottom:221.547067pt;}
.y43_c02227{bottom:238.427067pt;}
.y42_c02227{bottom:255.307067pt;}
.y41_c02227{bottom:273.467067pt;}
.y40_c02227{bottom:290.267067pt;}
.y3e_c02227{bottom:290.987067pt;}
.y3f_c02227{bottom:302.907067pt;}
.y3d_c02227{bottom:322.027067pt;}
.y3c_c02227{bottom:337.067771pt;}
.y3b_c02227{bottom:344.747595pt;}
.y3a_c02227{bottom:352.427419pt;}
.y39_c02227{bottom:360.107243pt;}
.y38_c02227{bottom:367.787067pt;}
.y37_c02227{bottom:376.506888pt;}
.y36_c02227{bottom:388.747144pt;}
.y35_c02227{bottom:401.067200pt;}
.y34_c02227{bottom:418.667200pt;}
.y33_c02227{bottom:436.907200pt;}
.y32_c02227{bottom:455.067200pt;}
.y31_c02227{bottom:473.307067pt;}
.y30_c02227{bottom:490.187067pt;}
.y2f_c02227{bottom:490.827067pt;}
.y2e_c02227{bottom:517.788347pt;}
.y2d_c02227{bottom:534.587747pt;}
.y2c_c02227{bottom:551.467667pt;}
.y2b_c02227{bottom:568.267067pt;}
.y2a_c02227{bottom:584.587067pt;}
.y29_c02227{bottom:584.906267pt;}
.y28_c02227{bottom:601.467067pt;}
.y27_c02227{bottom:601.786267pt;}
.y26_c02227{bottom:618.347067pt;}
.y25_c02227{bottom:618.666267pt;}
.y24_c02227{bottom:635.147067pt;}
.y23_c02227{bottom:635.547467pt;}
.y22_c02227{bottom:652.027067pt;}
.y21_c02227{bottom:652.347067pt;}
.y20_c02227{bottom:669.227067pt;}
.y1f_c02227{bottom:685.787067pt;}
.y1e_c02227{bottom:686.106267pt;}
.y1d_c02227{bottom:702.667067pt;}
.y1c_c02227{bottom:702.987200pt;}
.y1b_c02227{bottom:719.867067pt;}
.y1a_c02227{bottom:736.347067pt;}
.y19_c02227{bottom:736.666267pt;}
.y18_c02227{bottom:753.227067pt;}
.y17_c02227{bottom:753.546267pt;}
.y16_c02227{bottom:770.107067pt;}
.y15_c02227{bottom:770.427067pt;}
.y14_c02227{bottom:787.867067pt;}
.y13_c02227{bottom:804.987067pt;}
.y12_c02227{bottom:819.627067pt;}
.y11_c02227{bottom:837.467067pt;}
.y10_c02227{bottom:851.306667pt;}
.yf_c02227{bottom:865.067067pt;}
.ye_c02227{bottom:878.826555pt;}
.yd_c02227{bottom:891.066811pt;}
.yc_c02227{bottom:903.307067pt;}
.yb_c02227{bottom:919.627067pt;}
.ya_c02227{bottom:936.507067pt;}
.y9_c02227{bottom:953.387067pt;}
.y8_c02227{bottom:970.267067pt;}
.y7_c02227{bottom:987.067067pt;}
.y5_c02227{bottom:987.707067pt;}
.y6_c02227{bottom:999.627067pt;}
.y4_c02227{bottom:1014.667067pt;}
.y1_c02227{bottom:1060.587067pt;}
.he_c02227{height:23.590156pt;}
.h4_c02227{height:37.343906pt;}
.h6_c02227{height:42.632812pt;}
.h7_c02227{height:43.173594pt;}
.h5_c02227{height:46.890469pt;}
.h3_c02227{height:52.012031pt;}
.ha_c02227{height:54.252031pt;}
.hc_c02227{height:54.572031pt;}
.hb_c02227{height:55.532031pt;}
.h8_c02227{height:55.532565pt;}
.h9_c02227{height:55.852031pt;}
.h2_c02227{height:56.156250pt;}
.h1_c02227{height:56.843750pt;}
.hd_c02227{height:85.023906pt;}
.h0_c02227{height:1122.666667pt;}
.w1_c02227{width:793.333333pt;}
.w0_c02227{width:793.626667pt;}
.x0_c02227{left:0.000000pt;}
.x1_c02227{left:113.440000pt;}
.x3_c02227{left:119.600000pt;}
.x6_c02227{left:120.560000pt;}
.x7_c02227{left:127.920000pt;}
.x8_c02227{left:146.720000pt;}
.x9_c02227{left:196.160000pt;}
.xa_c02227{left:311.840000pt;}
.x4_c02227{left:348.880000pt;}
.x5_c02227{left:369.360000pt;}
.x2_c02227{left:384.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_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_d2cc4130682812919f0e7bdd.woff2')format("woff");}.ff1_c02228{font-family:ff1_c02228;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02228;src:url('chunks/assets/font_513206d0cd3e8fd6a044498b.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;}
.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);}
.va_c02228{vertical-align:-6.841800px;}
.v2_c02228{vertical-align:-5.760000px;}
.v8_c02228{vertical-align:-4.320000px;}
.v1_c02228{vertical-align:-3.240000px;}
.v4_c02228{vertical-align:-1.440000px;}
.v0_c02228{vertical-align:0.000000px;}
.vb_c02228{vertical-align:1.438200px;}
.v6_c02228{vertical-align:2.520000px;}
.v7_c02228{vertical-align:3.960600px;}
.v3_c02228{vertical-align:5.400000px;}
.v5_c02228{vertical-align:7.921800px;}
.v9_c02228{vertical-align:9.360000px;}
.ls2f_c02228{letter-spacing:-0.086184px;}
.ls2c_c02228{letter-spacing:-0.043200px;}
.ls35_c02228{letter-spacing:-0.024048px;}
.ls24_c02228{letter-spacing:-0.019152px;}
.ls2d_c02228{letter-spacing:-0.010800px;}
.ls29_c02228{letter-spacing:-0.009576px;}
.ls2a_c02228{letter-spacing:-0.007200px;}
.ls36_c02228{letter-spacing:-0.004788px;}
.ls22_c02228{letter-spacing:0.000000px;}
.ls19_c02228{letter-spacing:0.006588px;}
.ls23_c02228{letter-spacing:0.007200px;}
.ls32_c02228{letter-spacing:0.009576px;}
.lse_c02228{letter-spacing:0.010800px;}
.ls15_c02228{letter-spacing:0.016200px;}
.ls21_c02228{letter-spacing:0.019152px;}
.ls1_c02228{letter-spacing:0.019764px;}
.lsf_c02228{letter-spacing:0.028728px;}
.ls11_c02228{letter-spacing:0.032400px;}
.ls2_c02228{letter-spacing:0.032940px;}
.ls13_c02228{letter-spacing:0.037800px;}
.lsb_c02228{letter-spacing:0.043092px;}
.ls14_c02228{letter-spacing:0.043200px;}
.ls1b_c02228{letter-spacing:0.047880px;}
.ls12_c02228{letter-spacing:0.052668px;}
.ls28_c02228{letter-spacing:0.054108px;}
.ls18_c02228{letter-spacing:0.059292px;}
.ls10_c02228{letter-spacing:0.059400px;}
.ls31_c02228{letter-spacing:0.060120px;}
.ls0_c02228{letter-spacing:0.065880px;}
.ls7_c02228{letter-spacing:0.066132px;}
.ls9_c02228{letter-spacing:0.067032px;}
.lsc_c02228{letter-spacing:0.076608px;}
.ls25_c02228{letter-spacing:0.078156px;}
.ls38_c02228{letter-spacing:0.081396px;}
.ls8_c02228{letter-spacing:0.086184px;}
.ls3_c02228{letter-spacing:0.095760px;}
.ls27_c02228{letter-spacing:0.096192px;}
.ls1d_c02228{letter-spacing:0.110124px;}
.lsa_c02228{letter-spacing:0.114912px;}
.lsd_c02228{letter-spacing:0.119700px;}
.ls1f_c02228{letter-spacing:0.124488px;}
.ls20_c02228{letter-spacing:0.134064px;}
.ls17_c02228{letter-spacing:0.138852px;}
.ls2b_c02228{letter-spacing:0.151200px;}
.ls5_c02228{letter-spacing:0.158112px;}
.ls1c_c02228{letter-spacing:0.162792px;}
.ls2e_c02228{letter-spacing:0.167580px;}
.ls26_c02228{letter-spacing:0.177876px;}
.ls4_c02228{letter-spacing:0.181944px;}
.ls1e_c02228{letter-spacing:0.205884px;}
.ls34_c02228{letter-spacing:113.578200px;}
.ls33_c02228{letter-spacing:143.818200px;}
.ls30_c02228{letter-spacing:144.180000px;}
.ls37_c02228{letter-spacing:156.778200px;}
.ls1a_c02228{letter-spacing:159.210000px;}
.ls6_c02228{letter-spacing:191.970000px;}
.ls16_c02228{letter-spacing:200.790000px;}
.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;}
}
.ws5_c02228{word-spacing:-16.476588px;}
.ws8_c02228{word-spacing:-12.151944px;}
.ws10_c02228{word-spacing:-0.366732px;}
.ws27_c02228{word-spacing:-0.352800px;}
.ws29_c02228{word-spacing:-0.296856px;}
.ws23_c02228{word-spacing:-0.272916px;}
.ws26_c02228{word-spacing:-0.253764px;}
.ws1f_c02228{word-spacing:-0.229824px;}
.ws2c_c02228{word-spacing:-0.225036px;}
.ws2b_c02228{word-spacing:-0.215460px;}
.ws17_c02228{word-spacing:-0.210672px;}
.ws1d_c02228{word-spacing:-0.205884px;}
.wse_c02228{word-spacing:-0.186732px;}
.ws2d_c02228{word-spacing:-0.172368px;}
.ws22_c02228{word-spacing:-0.138852px;}
.ws1a_c02228{word-spacing:-0.119700px;}
.ws2e_c02228{word-spacing:-0.110124px;}
.wsb_c02228{word-spacing:-0.050400px;}
.wsa_c02228{word-spacing:0.000000px;}
.ws18_c02228{word-spacing:0.007200px;}
.wsf_c02228{word-spacing:0.012024px;}
.wsc_c02228{word-spacing:0.026352px;}
.ws21_c02228{word-spacing:0.030060px;}
.ws20_c02228{word-spacing:0.032940px;}
.ws11_c02228{word-spacing:0.036072px;}
.wsd_c02228{word-spacing:0.072468px;}
.ws19_c02228{word-spacing:0.118800px;}
.ws14_c02228{word-spacing:1.235304px;}
.ws16_c02228{word-spacing:1.273608px;}
.ws15_c02228{word-spacing:1.307124px;}
.ws12_c02228{word-spacing:5.941908px;}
.ws13_c02228{word-spacing:5.961060px;}
.ws7_c02228{word-spacing:48.169440px;}
.ws1b_c02228{word-spacing:51.624000px;}
.ws4_c02228{word-spacing:58.969440px;}
.ws24_c02228{word-spacing:61.700400px;}
.ws9_c02228{word-spacing:75.169440px;}
.ws25_c02228{word-spacing:120.765600px;}
.ws28_c02228{word-spacing:129.762000px;}
.ws1c_c02228{word-spacing:130.123800px;}
.ws2a_c02228{word-spacing:156.735000px;}
.ws6_c02228{word-spacing:158.687316px;}
.ws1e_c02228{word-spacing:172.935000px;}
.ws0_c02228{word-spacing:191.436372px;}
.ws2_c02228{word-spacing:191.449440px;}
.ws3_c02228{word-spacing:306.996372px;}
.ws1_c02228{word-spacing:307.009440px;}
._16_c02228{margin-left:-54.412776px;}
._25_c02228{margin-left:-45.360000px;}
._18_c02228{margin-left:-26.980128px;}
._1a_c02228{margin-left:-15.838200px;}
._23_c02228{margin-left:-10.097928px;}
._0_c02228{margin-left:-1.172664px;}
._24_c02228{width:8.461512px;}
._1b_c02228{width:25.612200px;}
._28_c02228{width:43.740000px;}
._13_c02228{width:51.300000px;}
._2f_c02228{width:61.597440px;}
._19_c02228{width:63.001800px;}
._e_c02228{width:65.764440px;}
._f_c02228{width:72.837000px;}
._2a_c02228{width:74.379888px;}
._2b_c02228{width:79.032312px;}
._15_c02228{width:82.558728px;}
._8_c02228{width:84.474000px;}
._1f_c02228{width:85.777200px;}
._10_c02228{width:87.278400px;}
._7_c02228{width:88.581600px;}
._21_c02228{width:91.288440px;}
._11_c02228{width:100.598400px;}
._2c_c02228{width:104.479380px;}
._14_c02228{width:106.059420px;}
._d_c02228{width:108.347688px;}
._12_c02228{width:113.689440px;}
._17_c02228{width:115.918200px;}
._c_c02228{width:119.311524px;}
._1c_c02228{width:121.065300px;}
._9_c02228{width:122.220000px;}
._a_c02228{width:127.980000px;}
._20_c02228{width:130.776120px;}
._2d_c02228{width:132.915600px;}
._26_c02228{width:134.074296px;}
._31_c02228{width:136.200168px;}
._b_c02228{width:139.618944px;}
._1e_c02228{width:142.047612px;}
._2e_c02228{width:143.820000px;}
._30_c02228{width:149.146920px;}
._32_c02228{width:157.727016px;}
._29_c02228{width:171.066384px;}
._27_c02228{width:183.087072px;}
._22_c02228{width:225.444168px;}
._4_c02228{width:264.691764px;}
._5_c02228{width:266.549796px;}
._3_c02228{width:274.461588px;}
._2_c02228{width:287.726112px;}
._1_c02228{width:463.011840px;}
._1d_c02228{width:528.171840px;}
._6_c02228{width:835.489260px;}
.fc0_c02228{color:rgb(0,0,0);}
.fs5_c02228{font-size:11.880000px;}
.fs2_c02228{font-size:47.880000px;}
.fs4_c02228{font-size:54.000000px;}
.fs3_c02228{font-size:60.120000px;}
.fs1_c02228{font-size:65.880000px;}
.fs0_c02228{font-size:72.000000px;}
.y0_c02228{bottom:0.000000px;}
.y3_c02228{bottom:57.360450px;}
.y2_c02228{bottom:78.060450px;}
.y4f_c02228{bottom:114.600450px;}
.y4e_c02228{bottom:130.170000px;}
.y4d_c02228{bottom:145.650450px;}
.y4c_c02228{bottom:161.220000px;}
.y4b_c02228{bottom:176.700450px;}
.y4a_c02228{bottom:192.270000px;}
.y49_c02228{bottom:207.750450px;}
.y48_c02228{bottom:223.320000px;}
.y47_c02228{bottom:238.800450px;}
.y46_c02228{bottom:254.370450px;}
.y45_c02228{bottom:254.729550px;}
.y44_c02228{bottom:273.270450px;}
.y43_c02228{bottom:273.720900px;}
.y42_c02228{bottom:292.260450px;}
.y41_c02228{bottom:292.619550px;}
.y40_c02228{bottom:311.250450px;}
.y3f_c02228{bottom:311.609550px;}
.y3e_c02228{bottom:330.240450px;}
.y3d_c02228{bottom:330.600450px;}
.y3c_c02228{bottom:349.590450px;}
.y3b_c02228{bottom:368.130450px;}
.y3a_c02228{bottom:368.580600px;}
.y38_c02228{bottom:388.200600px;}
.y39_c02228{bottom:388.830450px;}
.y37_c02228{bottom:407.370600px;}
.y36_c02228{bottom:423.840600px;}
.y35_c02228{bottom:444.630450px;}
.y34_c02228{bottom:453.450600px;}
.y33_c02228{bottom:453.809700px;}
.y32_c02228{bottom:472.440600px;}
.y31_c02228{bottom:472.799700px;}
.y30_c02228{bottom:491.430600px;}
.y2f_c02228{bottom:491.790600px;}
.y2e_c02228{bottom:511.410450px;}
.y2c_c02228{bottom:529.320450px;}
.y2b_c02228{bottom:541.830450px;}
.y2d_c02228{bottom:543.180450px;}
.y2a_c02228{bottom:558.300450px;}
.y29_c02228{bottom:578.370450px;}
.y28_c02228{bottom:594.210000px;}
.y27_c02228{bottom:609.690450px;}
.y26_c02228{bottom:624.810099px;}
.y25_c02228{bottom:638.670162px;}
.y24_c02228{bottom:652.440450px;}
.y23_c02228{bottom:670.800450px;}
.y22_c02228{bottom:689.790450px;}
.y21_c02228{bottom:708.780450px;}
.y20_c02228{bottom:727.680450px;}
.y1f_c02228{bottom:746.670450px;}
.y1d_c02228{bottom:747.480450px;}
.y1e_c02228{bottom:760.800450px;}
.y1c_c02228{bottom:777.720450px;}
.y1b_c02228{bottom:796.170450px;}
.y1a_c02228{bottom:811.740000px;}
.y19_c02228{bottom:827.220450px;}
.y18_c02228{bottom:842.520450px;}
.y17_c02228{bottom:842.880000px;}
.y16_c02228{bottom:861.510450px;}
.y15_c02228{bottom:861.870450px;}
.y14_c02228{bottom:881.490450px;}
.y13_c02228{bottom:900.750450px;}
.y12_c02228{bottom:917.220450px;}
.y11_c02228{bottom:937.290450px;}
.y10_c02228{bottom:952.860000px;}
.yf_c02228{bottom:968.340450px;}
.ye_c02228{bottom:983.730099px;}
.yd_c02228{bottom:997.590162px;}
.yc_c02228{bottom:1011.360450px;}
.yb_c02228{bottom:1029.720450px;}
.ya_c02228{bottom:1048.710450px;}
.y9_c02228{bottom:1067.700450px;}
.y8_c02228{bottom:1086.600450px;}
.y7_c02228{bottom:1105.590450px;}
.y5_c02228{bottom:1106.400450px;}
.y6_c02228{bottom:1121.610450px;}
.y4_c02228{bottom:1141.500450px;}
.y1_c02228{bottom:1193.160450px;}
.he_c02228{height:10.551621px;}
.h5_c02228{height:42.011895px;}
.hb_c02228{height:42.526230px;}
.hc_c02228{height:42.561914px;}
.ha_c02228{height:47.381836px;}
.h7_c02228{height:47.961914px;}
.h6_c02228{height:52.751777px;}
.h4_c02228{height:57.805840px;}
.h3_c02228{height:58.513535px;}
.h10_c02228{height:61.033535px;}
.hd_c02228{height:62.472935px;}
.h9_c02228{height:62.473535px;}
.h8_c02228{height:62.474135px;}
.h11_c02228{height:62.833535px;}
.hf_c02228{height:62.834135px;}
.h2_c02228{height:63.175781px;}
.h1_c02228{height:63.949219px;}
.h0_c02228{height:1263.000000px;}
.w1_c02228{width:892.500000px;}
.w0_c02228{width:892.830000px;}
.x0_c02228{left:0.000000px;}
.x1_c02228{left:127.620000px;}
.x3_c02228{left:134.550000px;}
.x6_c02228{left:135.630000px;}
.x7_c02228{left:143.910000px;}
.x9_c02228{left:165.060000px;}
.xa_c02228{left:220.680000px;}
.x4_c02228{left:392.490000px;}
.x5_c02228{left:415.530000px;}
.x2_c02228{left:433.080000px;}
.xb_c02228{left:532.260000px;}
.xc_c02228{left:565.020000px;}
.x8_c02228{left:717.930000px;}
.xd_c02228{left:720.450000px;}
@media print{
.va_c02228{vertical-align:-6.081600pt;}
.v2_c02228{vertical-align:-5.120000pt;}
.v8_c02228{vertical-align:-3.840000pt;}
.v1_c02228{vertical-align:-2.880000pt;}
.v4_c02228{vertical-align:-1.280000pt;}
.v0_c02228{vertical-align:0.000000pt;}
.vb_c02228{vertical-align:1.278400pt;}
.v6_c02228{vertical-align:2.240000pt;}
.v7_c02228{vertical-align:3.520533pt;}
.v3_c02228{vertical-align:4.800000pt;}
.v5_c02228{vertical-align:7.041600pt;}
.v9_c02228{vertical-align:8.320000pt;}
.ls2f_c02228{letter-spacing:-0.076608pt;}
.ls2c_c02228{letter-spacing:-0.038400pt;}
.ls35_c02228{letter-spacing:-0.021376pt;}
.ls24_c02228{letter-spacing:-0.017024pt;}
.ls2d_c02228{letter-spacing:-0.009600pt;}
.ls29_c02228{letter-spacing:-0.008512pt;}
.ls2a_c02228{letter-spacing:-0.006400pt;}
.ls36_c02228{letter-spacing:-0.004256pt;}
.ls22_c02228{letter-spacing:0.000000pt;}
.ls19_c02228{letter-spacing:0.005856pt;}
.ls23_c02228{letter-spacing:0.006400pt;}
.ls32_c02228{letter-spacing:0.008512pt;}
.lse_c02228{letter-spacing:0.009600pt;}
.ls15_c02228{letter-spacing:0.014400pt;}
.ls21_c02228{letter-spacing:0.017024pt;}
.ls1_c02228{letter-spacing:0.017568pt;}
.lsf_c02228{letter-spacing:0.025536pt;}
.ls11_c02228{letter-spacing:0.028800pt;}
.ls2_c02228{letter-spacing:0.029280pt;}
.ls13_c02228{letter-spacing:0.033600pt;}
.lsb_c02228{letter-spacing:0.038304pt;}
.ls14_c02228{letter-spacing:0.038400pt;}
.ls1b_c02228{letter-spacing:0.042560pt;}
.ls12_c02228{letter-spacing:0.046816pt;}
.ls28_c02228{letter-spacing:0.048096pt;}
.ls18_c02228{letter-spacing:0.052704pt;}
.ls10_c02228{letter-spacing:0.052800pt;}
.ls31_c02228{letter-spacing:0.053440pt;}
.ls0_c02228{letter-spacing:0.058560pt;}
.ls7_c02228{letter-spacing:0.058784pt;}
.ls9_c02228{letter-spacing:0.059584pt;}
.lsc_c02228{letter-spacing:0.068096pt;}
.ls25_c02228{letter-spacing:0.069472pt;}
.ls38_c02228{letter-spacing:0.072352pt;}
.ls8_c02228{letter-spacing:0.076608pt;}
.ls3_c02228{letter-spacing:0.085120pt;}
.ls27_c02228{letter-spacing:0.085504pt;}
.ls1d_c02228{letter-spacing:0.097888pt;}
.lsa_c02228{letter-spacing:0.102144pt;}
.lsd_c02228{letter-spacing:0.106400pt;}
.ls1f_c02228{letter-spacing:0.110656pt;}
.ls20_c02228{letter-spacing:0.119168pt;}
.ls17_c02228{letter-spacing:0.123424pt;}
.ls2b_c02228{letter-spacing:0.134400pt;}
.ls5_c02228{letter-spacing:0.140544pt;}
.ls1c_c02228{letter-spacing:0.144704pt;}
.ls2e_c02228{letter-spacing:0.148960pt;}
.ls26_c02228{letter-spacing:0.158112pt;}
.ls4_c02228{letter-spacing:0.161728pt;}
.ls1e_c02228{letter-spacing:0.183008pt;}
.ls34_c02228{letter-spacing:100.958400pt;}
.ls33_c02228{letter-spacing:127.838400pt;}
.ls30_c02228{letter-spacing:128.160000pt;}
.ls37_c02228{letter-spacing:139.358400pt;}
.ls1a_c02228{letter-spacing:141.520000pt;}
.ls6_c02228{letter-spacing:170.640000pt;}
.ls16_c02228{letter-spacing:178.480000pt;}
.ws5_c02228{word-spacing:-14.645856pt;}
.ws8_c02228{word-spacing:-10.801728pt;}
.ws10_c02228{word-spacing:-0.325984pt;}
.ws27_c02228{word-spacing:-0.313600pt;}
.ws29_c02228{word-spacing:-0.263872pt;}
.ws23_c02228{word-spacing:-0.242592pt;}
.ws26_c02228{word-spacing:-0.225568pt;}
.ws1f_c02228{word-spacing:-0.204288pt;}
.ws2c_c02228{word-spacing:-0.200032pt;}
.ws2b_c02228{word-spacing:-0.191520pt;}
.ws17_c02228{word-spacing:-0.187264pt;}
.ws1d_c02228{word-spacing:-0.183008pt;}
.wse_c02228{word-spacing:-0.165984pt;}
.ws2d_c02228{word-spacing:-0.153216pt;}
.ws22_c02228{word-spacing:-0.123424pt;}
.ws1a_c02228{word-spacing:-0.106400pt;}
.ws2e_c02228{word-spacing:-0.097888pt;}
.wsb_c02228{word-spacing:-0.044800pt;}
.wsa_c02228{word-spacing:0.000000pt;}
.ws18_c02228{word-spacing:0.006400pt;}
.wsf_c02228{word-spacing:0.010688pt;}
.wsc_c02228{word-spacing:0.023424pt;}
.ws21_c02228{word-spacing:0.026720pt;}
.ws20_c02228{word-spacing:0.029280pt;}
.ws11_c02228{word-spacing:0.032064pt;}
.wsd_c02228{word-spacing:0.064416pt;}
.ws19_c02228{word-spacing:0.105600pt;}
.ws14_c02228{word-spacing:1.098048pt;}
.ws16_c02228{word-spacing:1.132096pt;}
.ws15_c02228{word-spacing:1.161888pt;}
.ws12_c02228{word-spacing:5.281696pt;}
.ws13_c02228{word-spacing:5.298720pt;}
.ws7_c02228{word-spacing:42.817280pt;}
.ws1b_c02228{word-spacing:45.888000pt;}
.ws4_c02228{word-spacing:52.417280pt;}
.ws24_c02228{word-spacing:54.844800pt;}
.ws9_c02228{word-spacing:66.817280pt;}
.ws25_c02228{word-spacing:107.347200pt;}
.ws28_c02228{word-spacing:115.344000pt;}
.ws1c_c02228{word-spacing:115.665600pt;}
.ws2a_c02228{word-spacing:139.320000pt;}
.ws6_c02228{word-spacing:141.055392pt;}
.ws1e_c02228{word-spacing:153.720000pt;}
.ws0_c02228{word-spacing:170.165664pt;}
.ws2_c02228{word-spacing:170.177280pt;}
.ws3_c02228{word-spacing:272.885664pt;}
.ws1_c02228{word-spacing:272.897280pt;}
._16_c02228{margin-left:-48.366912pt;}
._25_c02228{margin-left:-40.320000pt;}
._18_c02228{margin-left:-23.982336pt;}
._1a_c02228{margin-left:-14.078400pt;}
._23_c02228{margin-left:-8.975936pt;}
._0_c02228{margin-left:-1.042368pt;}
._24_c02228{width:7.521344pt;}
._1b_c02228{width:22.766400pt;}
._28_c02228{width:38.880000pt;}
._13_c02228{width:45.600000pt;}
._2f_c02228{width:54.753280pt;}
._19_c02228{width:56.001600pt;}
._e_c02228{width:58.457280pt;}
._f_c02228{width:64.744000pt;}
._2a_c02228{width:66.115456pt;}
._2b_c02228{width:70.250944pt;}
._15_c02228{width:73.385536pt;}
._8_c02228{width:75.088000pt;}
._1f_c02228{width:76.246400pt;}
._10_c02228{width:77.580800pt;}
._7_c02228{width:78.739200pt;}
._21_c02228{width:81.145280pt;}
._11_c02228{width:89.420800pt;}
._2c_c02228{width:92.870560pt;}
._14_c02228{width:94.275040pt;}
._d_c02228{width:96.309056pt;}
._12_c02228{width:101.057280pt;}
._17_c02228{width:103.038400pt;}
._c_c02228{width:106.054688pt;}
._1c_c02228{width:107.613600pt;}
._9_c02228{width:108.640000pt;}
._a_c02228{width:113.760000pt;}
._20_c02228{width:116.245440pt;}
._2d_c02228{width:118.147200pt;}
._26_c02228{width:119.177152pt;}
._31_c02228{width:121.066816pt;}
._b_c02228{width:124.105728pt;}
._1e_c02228{width:126.264544pt;}
._2e_c02228{width:127.840000pt;}
._30_c02228{width:132.575040pt;}
._32_c02228{width:140.201792pt;}
._29_c02228{width:152.059008pt;}
._27_c02228{width:162.744064pt;}
._22_c02228{width:200.394816pt;}
._4_c02228{width:235.281568pt;}
._5_c02228{width:236.933152pt;}
._3_c02228{width:243.965856pt;}
._2_c02228{width:255.756544pt;}
._1_c02228{width:411.566080pt;}
._1d_c02228{width:469.486080pt;}
._6_c02228{width:742.657120pt;}
.fs5_c02228{font-size:10.560000pt;}
.fs2_c02228{font-size:42.560000pt;}
.fs4_c02228{font-size:48.000000pt;}
.fs3_c02228{font-size:53.440000pt;}
.fs1_c02228{font-size:58.560000pt;}
.fs0_c02228{font-size:64.000000pt;}
.y0_c02228{bottom:0.000000pt;}
.y3_c02228{bottom:50.987067pt;}
.y2_c02228{bottom:69.387067pt;}
.y4f_c02228{bottom:101.867067pt;}
.y4e_c02228{bottom:115.706667pt;}
.y4d_c02228{bottom:129.467067pt;}
.y4c_c02228{bottom:143.306667pt;}
.y4b_c02228{bottom:157.067067pt;}
.y4a_c02228{bottom:170.906667pt;}
.y49_c02228{bottom:184.667067pt;}
.y48_c02228{bottom:198.506667pt;}
.y47_c02228{bottom:212.267067pt;}
.y46_c02228{bottom:226.107067pt;}
.y45_c02228{bottom:226.426267pt;}
.y44_c02228{bottom:242.907067pt;}
.y43_c02228{bottom:243.307467pt;}
.y42_c02228{bottom:259.787067pt;}
.y41_c02228{bottom:260.106267pt;}
.y40_c02228{bottom:276.667067pt;}
.y3f_c02228{bottom:276.986267pt;}
.y3e_c02228{bottom:293.547067pt;}
.y3d_c02228{bottom:293.867067pt;}
.y3c_c02228{bottom:310.747067pt;}
.y3b_c02228{bottom:327.227067pt;}
.y3a_c02228{bottom:327.627200pt;}
.y38_c02228{bottom:345.067200pt;}
.y39_c02228{bottom:345.627067pt;}
.y37_c02228{bottom:362.107200pt;}
.y36_c02228{bottom:376.747200pt;}
.y35_c02228{bottom:395.227067pt;}
.y34_c02228{bottom:403.067200pt;}
.y33_c02228{bottom:403.386400pt;}
.y32_c02228{bottom:419.947200pt;}
.y31_c02228{bottom:420.266400pt;}
.y30_c02228{bottom:436.827200pt;}
.y2f_c02228{bottom:437.147200pt;}
.y2e_c02228{bottom:454.587067pt;}
.y2c_c02228{bottom:470.507067pt;}
.y2b_c02228{bottom:481.627067pt;}
.y2d_c02228{bottom:482.827067pt;}
.y2a_c02228{bottom:496.267067pt;}
.y29_c02228{bottom:514.107067pt;}
.y28_c02228{bottom:528.186667pt;}
.y27_c02228{bottom:541.947067pt;}
.y26_c02228{bottom:555.386755pt;}
.y25_c02228{bottom:567.706811pt;}
.y24_c02228{bottom:579.947067pt;}
.y23_c02228{bottom:596.267067pt;}
.y22_c02228{bottom:613.147067pt;}
.y21_c02228{bottom:630.027067pt;}
.y20_c02228{bottom:646.827067pt;}
.y1f_c02228{bottom:663.707067pt;}
.y1d_c02228{bottom:664.427067pt;}
.y1e_c02228{bottom:676.267067pt;}
.y1c_c02228{bottom:691.307067pt;}
.y1b_c02228{bottom:707.707067pt;}
.y1a_c02228{bottom:721.546667pt;}
.y19_c02228{bottom:735.307067pt;}
.y18_c02228{bottom:748.907067pt;}
.y17_c02228{bottom:749.226667pt;}
.y16_c02228{bottom:765.787067pt;}
.y15_c02228{bottom:766.107067pt;}
.y14_c02228{bottom:783.547067pt;}
.y13_c02228{bottom:800.667067pt;}
.y12_c02228{bottom:815.307067pt;}
.y11_c02228{bottom:833.147067pt;}
.y10_c02228{bottom:846.986667pt;}
.yf_c02228{bottom:860.747067pt;}
.ye_c02228{bottom:874.426755pt;}
.yd_c02228{bottom:886.746811pt;}
.yc_c02228{bottom:898.987067pt;}
.yb_c02228{bottom:915.307067pt;}
.ya_c02228{bottom:932.187067pt;}
.y9_c02228{bottom:949.067067pt;}
.y8_c02228{bottom:965.867067pt;}
.y7_c02228{bottom:982.747067pt;}
.y5_c02228{bottom:983.467067pt;}
.y6_c02228{bottom:996.987067pt;}
.y4_c02228{bottom:1014.667067pt;}
.y1_c02228{bottom:1060.587067pt;}
.he_c02228{height:9.379219pt;}
.h5_c02228{height:37.343906pt;}
.hb_c02228{height:37.801094pt;}
.hc_c02228{height:37.832812pt;}
.ha_c02228{height:42.117188pt;}
.h7_c02228{height:42.632812pt;}
.h6_c02228{height:46.890469pt;}
.h4_c02228{height:51.382969pt;}
.h3_c02228{height:52.012031pt;}
.h10_c02228{height:54.252031pt;}
.hd_c02228{height:55.531498pt;}
.h9_c02228{height:55.532031pt;}
.h8_c02228{height:55.532565pt;}
.h11_c02228{height:55.852031pt;}
.hf_c02228{height:55.852565pt;}
.h2_c02228{height:56.156250pt;}
.h1_c02228{height:56.843750pt;}
.h0_c02228{height:1122.666667pt;}
.w1_c02228{width:793.333333pt;}
.w0_c02228{width:793.626667pt;}
.x0_c02228{left:0.000000pt;}
.x1_c02228{left:113.440000pt;}
.x3_c02228{left:119.600000pt;}
.x6_c02228{left:120.560000pt;}
.x7_c02228{left:127.920000pt;}
.x9_c02228{left:146.720000pt;}
.xa_c02228{left:196.160000pt;}
.x4_c02228{left:348.880000pt;}
.x5_c02228{left:369.360000pt;}
.x2_c02228{left:384.960000pt;}
.xb_c02228{left:473.120000pt;}
.xc_c02228{left:502.240000pt;}
.x8_c02228{left:638.160000pt;}
.xd_c02228{left:640.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_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_ba28065cf2abca8f09538ec2.woff2')format("woff");}.ff1_c02229{font-family:ff1_c02229;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02229;src:url('chunks/assets/font_513206d0cd3e8fd6a044498b.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;}
.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);}
.va_c02229{vertical-align:-8.640000px;}
.vd_c02229{vertical-align:-6.841800px;}
.vb_c02229{vertical-align:-5.760000px;}
.v4_c02229{vertical-align:-4.320000px;}
.v1_c02229{vertical-align:-3.240000px;}
.v5_c02229{vertical-align:-1.799400px;}
.v0_c02229{vertical-align:0.000000px;}
.v9_c02229{vertical-align:1.080000px;}
.v7_c02229{vertical-align:2.520000px;}
.v8_c02229{vertical-align:4.320000px;}
.v3_c02229{vertical-align:5.400000px;}
.v6_c02229{vertical-align:6.839400px;}
.vc_c02229{vertical-align:9.360000px;}
.v2_c02229{vertical-align:38.160000px;}
.ls27_c02229{letter-spacing:-0.092232px;}
.ls2f_c02229{letter-spacing:-0.086184px;}
.ls2c_c02229{letter-spacing:-0.043200px;}
.ls25_c02229{letter-spacing:-0.019152px;}
.ls2a_c02229{letter-spacing:-0.014400px;}
.ls2d_c02229{letter-spacing:-0.010800px;}
.ls29_c02229{letter-spacing:-0.007200px;}
.ls28_c02229{letter-spacing:-0.005400px;}
.ls23_c02229{letter-spacing:0.000000px;}
.lse_c02229{letter-spacing:0.005400px;}
.ls1d_c02229{letter-spacing:0.006588px;}
.ls24_c02229{letter-spacing:0.007200px;}
.lsb_c02229{letter-spacing:0.010800px;}
.ls20_c02229{letter-spacing:0.014400px;}
.lsc_c02229{letter-spacing:0.016200px;}
.ls5_c02229{letter-spacing:0.026352px;}
.ls10_c02229{letter-spacing:0.028728px;}
.ls1f_c02229{letter-spacing:0.028800px;}
.ls12_c02229{letter-spacing:0.032400px;}
.ls2_c02229{letter-spacing:0.032940px;}
.ls15_c02229{letter-spacing:0.037800px;}
.lsf_c02229{letter-spacing:0.043092px;}
.ls14_c02229{letter-spacing:0.043200px;}
.ls1a_c02229{letter-spacing:0.052668px;}
.ls0_c02229{letter-spacing:0.052704px;}
.ls1_c02229{letter-spacing:0.059292px;}
.ls11_c02229{letter-spacing:0.059400px;}
.ls32_c02229{letter-spacing:0.060120px;}
.ls1e_c02229{letter-spacing:0.066132px;}
.ls8_c02229{letter-spacing:0.072468px;}
.ls21_c02229{letter-spacing:0.076608px;}
.ls31_c02229{letter-spacing:0.078156px;}
.ls7_c02229{letter-spacing:0.079056px;}
.ls3_c02229{letter-spacing:0.095760px;}
.ls33_c02229{letter-spacing:0.096192px;}
.ls13_c02229{letter-spacing:0.110124px;}
.lsd_c02229{letter-spacing:0.113400px;}
.ls1b_c02229{letter-spacing:0.114912px;}
.lsa_c02229{letter-spacing:0.125172px;}
.ls1c_c02229{letter-spacing:0.138852px;}
.ls2b_c02229{letter-spacing:0.151200px;}
.ls6_c02229{letter-spacing:0.158112px;}
.ls22_c02229{letter-spacing:0.162792px;}
.ls2e_c02229{letter-spacing:0.167580px;}
.ls26_c02229{letter-spacing:0.177876px;}
.ls4_c02229{letter-spacing:0.181944px;}
.ls17_c02229{letter-spacing:0.205884px;}
.ls34_c02229{letter-spacing:143.461800px;}
.ls30_c02229{letter-spacing:144.180000px;}
.ls35_c02229{letter-spacing:145.621800px;}
.ls19_c02229{letter-spacing:157.140000px;}
.ls9_c02229{letter-spacing:191.970000px;}
.ls16_c02229{letter-spacing:200.790000px;}
.ls18_c02229{letter-spacing:235.980000px;}
.sc__c02229{text-shadow:none;}
.sc0_c02229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02229{-webkit-text-stroke:0px transparent;}
.sc0_c02229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02229{word-spacing:-16.529292px;}
.ws6_c02229{word-spacing:-16.476588px;}
.ws21_c02229{word-spacing:-0.366732px;}
.ws16_c02229{word-spacing:-0.345600px;}
.ws19_c02229{word-spacing:-0.296856px;}
.ws18_c02229{word-spacing:-0.272916px;}
.ws24_c02229{word-spacing:-0.253764px;}
.ws1d_c02229{word-spacing:-0.229824px;}
.ws1c_c02229{word-spacing:-0.205884px;}
.wsa_c02229{word-spacing:-0.186732px;}
.ws23_c02229{word-spacing:-0.129600px;}
.ws1b_c02229{word-spacing:-0.119700px;}
.ws22_c02229{word-spacing:-0.100800px;}
.ws8_c02229{word-spacing:-0.050400px;}
.ws7_c02229{word-spacing:0.000000px;}
.ws15_c02229{word-spacing:0.007200px;}
.ws1f_c02229{word-spacing:0.012024px;}
.wsc_c02229{word-spacing:0.013176px;}
.wsd_c02229{word-spacing:0.019764px;}
.ws20_c02229{word-spacing:0.030060px;}
.ws1e_c02229{word-spacing:0.032940px;}
.ws9_c02229{word-spacing:0.039528px;}
.wsb_c02229{word-spacing:0.065880px;}
.ws17_c02229{word-spacing:0.118800px;}
.ws14_c02229{word-spacing:0.172800px;}
.ws13_c02229{word-spacing:0.178200px;}
.ws11_c02229{word-spacing:1.868400px;}
.ws10_c02229{word-spacing:1.965600px;}
.ws12_c02229{word-spacing:1.987200px;}
.wsf_c02229{word-spacing:4.482000px;}
.wse_c02229{word-spacing:4.487400px;}
.ws5_c02229{word-spacing:58.969440px;}
.ws1a_c02229{word-spacing:172.935000px;}
.ws1_c02229{word-spacing:191.436372px;}
.ws3_c02229{word-spacing:191.449440px;}
.ws4_c02229{word-spacing:306.996372px;}
.ws2_c02229{word-spacing:307.009440px;}
._1d_c02229{margin-left:-27.172476px;}
._21_c02229{margin-left:-17.145324px;}
._1f_c02229{margin-left:-15.838200px;}
._6_c02229{margin-left:-1.236600px;}
._2b_c02229{width:11.307960px;}
._13_c02229{width:51.300000px;}
._2c_c02229{width:53.124840px;}
._1e_c02229{width:63.001800px;}
._e_c02229{width:65.764440px;}
._f_c02229{width:72.837000px;}
._19_c02229{width:75.420000px;}
._16_c02229{width:83.340000px;}
._8_c02229{width:84.474000px;}
._10_c02229{width:87.278400px;}
._7_c02229{width:88.581600px;}
._27_c02229{width:90.568440px;}
._11_c02229{width:100.598400px;}
._14_c02229{width:104.479380px;}
._1c_c02229{width:106.059420px;}
._d_c02229{width:108.347688px;}
._12_c02229{width:113.689440px;}
._1a_c02229{width:115.329276px;}
._c_c02229{width:119.311524px;}
._20_c02229{width:121.065300px;}
._9_c02229{width:122.220000px;}
._26_c02229{width:123.932340px;}
._a_c02229{width:127.980000px;}
._18_c02229{width:129.744000px;}
._15_c02229{width:132.915600px;}
._29_c02229{width:134.074296px;}
._b_c02229{width:139.618944px;}
._17_c02229{width:140.821200px;}
._23_c02229{width:142.239420px;}
._1b_c02229{width:144.180000px;}
._2d_c02229{width:171.066384px;}
._2a_c02229{width:172.584000px;}
._4_c02229{width:203.151240px;}
._2_c02229{width:215.075520px;}
._28_c02229{width:225.444168px;}
._24_c02229{width:264.755700px;}
._22_c02229{width:274.589460px;}
._1_c02229{width:287.726112px;}
._0_c02229{width:528.171840px;}
._3_c02229{width:736.120440px;}
._5_c02229{width:824.630220px;}
._25_c02229{width:835.489260px;}
.fc0_c02229{color:rgb(0,0,0);}
.fs2_c02229{font-size:47.880000px;}
.fs3_c02229{font-size:54.000000px;}
.fs4_c02229{font-size:60.120000px;}
.fs1_c02229{font-size:65.880000px;}
.fs0_c02229{font-size:72.000000px;}
.y0_c02229{bottom:0.000000px;}
.y3_c02229{bottom:57.360450px;}
.y2_c02229{bottom:78.060450px;}
.y47_c02229{bottom:127.380450px;}
.y46_c02229{bottom:142.860900px;}
.y45_c02229{bottom:158.430450px;}
.y44_c02229{bottom:173.910900px;}
.y43_c02229{bottom:189.480450px;}
.y42_c02229{bottom:204.960900px;}
.y41_c02229{bottom:220.530450px;}
.y40_c02229{bottom:236.010900px;}
.y3f_c02229{bottom:251.580450px;}
.y3e_c02229{bottom:267.060900px;}
.y3d_c02229{bottom:282.630450px;}
.y3c_c02229{bottom:298.110900px;}
.y3b_c02229{bottom:313.680450px;}
.y3a_c02229{bottom:329.160900px;}
.y39_c02229{bottom:344.730450px;}
.y38_c02229{bottom:360.210900px;}
.y37_c02229{bottom:375.780450px;}
.y36_c02229{bottom:391.260900px;}
.y35_c02229{bottom:406.830450px;}
.y34_c02229{bottom:422.310900px;}
.y33_c02229{bottom:437.880450px;}
.y32_c02229{bottom:453.360600px;}
.y31_c02229{bottom:453.719700px;}
.y30_c02229{bottom:472.350450px;}
.y2f_c02229{bottom:472.709700px;}
.y2e_c02229{bottom:491.340600px;}
.y2d_c02229{bottom:491.700600px;}
.y2c_c02229{bottom:511.320450px;}
.y2b_c02229{bottom:530.490450px;}
.y2a_c02229{bottom:546.960450px;}
.y29_c02229{bottom:567.120450px;}
.y28_c02229{bottom:582.690000px;}
.y27_c02229{bottom:598.440450px;}
.y26_c02229{bottom:614.010000px;}
.y25_c02229{bottom:629.490450px;}
.y24_c02229{bottom:650.730450px;}
.y23_c02229{bottom:671.160450px;}
.y22_c02229{bottom:690.150450px;}
.y21_c02229{bottom:710.580450px;}
.y20_c02229{bottom:729.570450px;}
.y1e_c02229{bottom:730.380450px;}
.y1f_c02229{bottom:743.700450px;}
.y1d_c02229{bottom:760.621125px;}
.y1c_c02229{bottom:779.520450px;}
.y1b_c02229{bottom:797.790600px;}
.y1a_c02229{bottom:813.360600px;}
.y19_c02229{bottom:813.720000px;}
.y18_c02229{bottom:832.350450px;}
.y17_c02229{bottom:832.710450px;}
.y16_c02229{bottom:851.700450px;}
.y15_c02229{bottom:870.240450px;}
.y14_c02229{bottom:870.600450px;}
.y13_c02229{bottom:890.310450px;}
.y12_c02229{bottom:909.480450px;}
.y11_c02229{bottom:925.950450px;}
.y10_c02229{bottom:946.110000px;}
.yf_c02229{bottom:961.860450px;}
.ye_c02229{bottom:977.430000px;}
.yd_c02229{bottom:992.910450px;}
.yc_c02229{bottom:1011.180450px;}
.yb_c02229{bottom:1031.610450px;}
.ya_c02229{bottom:1050.600450px;}
.y9_c02229{bottom:1069.590450px;}
.y8_c02229{bottom:1090.110450px;}
.y7_c02229{bottom:1110.450450px;}
.y5_c02229{bottom:1111.260450px;}
.y6_c02229{bottom:1124.580450px;}
.y4_c02229{bottom:1141.500450px;}
.y1_c02229{bottom:1193.160450px;}
.h5_c02229{height:42.011895px;}
.h7_c02229{height:47.381836px;}
.h8_c02229{height:47.961914px;}
.ha_c02229{height:48.461836px;}
.he_c02229{height:52.751777px;}
.h4_c02229{height:57.805840px;}
.h3_c02229{height:58.513535px;}
.hb_c02229{height:61.033535px;}
.hd_c02229{height:62.472935px;}
.hc_c02229{height:62.473535px;}
.hf_c02229{height:62.474135px;}
.h9_c02229{height:62.833535px;}
.h2_c02229{height:63.175781px;}
.h1_c02229{height:63.949219px;}
.h6_c02229{height:95.965840px;}
.h0_c02229{height:1263.000000px;}
.w1_c02229{width:892.500000px;}
.w0_c02229{width:892.830000px;}
.x0_c02229{left:0.000000px;}
.x1_c02229{left:127.620000px;}
.x3_c02229{left:134.550000px;}
.x6_c02229{left:135.630000px;}
.xb_c02229{left:140.040000px;}
.x7_c02229{left:143.910000px;}
.x8_c02229{left:165.060000px;}
.x9_c02229{left:220.680000px;}
.x4_c02229{left:392.490000px;}
.x5_c02229{left:415.530000px;}
.x2_c02229{left:433.080000px;}
.xa_c02229{left:546.120450px;}
@media print{
.va_c02229{vertical-align:-7.680000pt;}
.vd_c02229{vertical-align:-6.081600pt;}
.vb_c02229{vertical-align:-5.120000pt;}
.v4_c02229{vertical-align:-3.840000pt;}
.v1_c02229{vertical-align:-2.880000pt;}
.v5_c02229{vertical-align:-1.599467pt;}
.v0_c02229{vertical-align:0.000000pt;}
.v9_c02229{vertical-align:0.960000pt;}
.v7_c02229{vertical-align:2.240000pt;}
.v8_c02229{vertical-align:3.840000pt;}
.v3_c02229{vertical-align:4.800000pt;}
.v6_c02229{vertical-align:6.079467pt;}
.vc_c02229{vertical-align:8.320000pt;}
.v2_c02229{vertical-align:33.920000pt;}
.ls27_c02229{letter-spacing:-0.081984pt;}
.ls2f_c02229{letter-spacing:-0.076608pt;}
.ls2c_c02229{letter-spacing:-0.038400pt;}
.ls25_c02229{letter-spacing:-0.017024pt;}
.ls2a_c02229{letter-spacing:-0.012800pt;}
.ls2d_c02229{letter-spacing:-0.009600pt;}
.ls29_c02229{letter-spacing:-0.006400pt;}
.ls28_c02229{letter-spacing:-0.004800pt;}
.ls23_c02229{letter-spacing:0.000000pt;}
.lse_c02229{letter-spacing:0.004800pt;}
.ls1d_c02229{letter-spacing:0.005856pt;}
.ls24_c02229{letter-spacing:0.006400pt;}
.lsb_c02229{letter-spacing:0.009600pt;}
.ls20_c02229{letter-spacing:0.012800pt;}
.lsc_c02229{letter-spacing:0.014400pt;}
.ls5_c02229{letter-spacing:0.023424pt;}
.ls10_c02229{letter-spacing:0.025536pt;}
.ls1f_c02229{letter-spacing:0.025600pt;}
.ls12_c02229{letter-spacing:0.028800pt;}
.ls2_c02229{letter-spacing:0.029280pt;}
.ls15_c02229{letter-spacing:0.033600pt;}
.lsf_c02229{letter-spacing:0.038304pt;}
.ls14_c02229{letter-spacing:0.038400pt;}
.ls1a_c02229{letter-spacing:0.046816pt;}
.ls0_c02229{letter-spacing:0.046848pt;}
.ls1_c02229{letter-spacing:0.052704pt;}
.ls11_c02229{letter-spacing:0.052800pt;}
.ls32_c02229{letter-spacing:0.053440pt;}
.ls1e_c02229{letter-spacing:0.058784pt;}
.ls8_c02229{letter-spacing:0.064416pt;}
.ls21_c02229{letter-spacing:0.068096pt;}
.ls31_c02229{letter-spacing:0.069472pt;}
.ls7_c02229{letter-spacing:0.070272pt;}
.ls3_c02229{letter-spacing:0.085120pt;}
.ls33_c02229{letter-spacing:0.085504pt;}
.ls13_c02229{letter-spacing:0.097888pt;}
.lsd_c02229{letter-spacing:0.100800pt;}
.ls1b_c02229{letter-spacing:0.102144pt;}
.lsa_c02229{letter-spacing:0.111264pt;}
.ls1c_c02229{letter-spacing:0.123424pt;}
.ls2b_c02229{letter-spacing:0.134400pt;}
.ls6_c02229{letter-spacing:0.140544pt;}
.ls22_c02229{letter-spacing:0.144704pt;}
.ls2e_c02229{letter-spacing:0.148960pt;}
.ls26_c02229{letter-spacing:0.158112pt;}
.ls4_c02229{letter-spacing:0.161728pt;}
.ls17_c02229{letter-spacing:0.183008pt;}
.ls34_c02229{letter-spacing:127.521600pt;}
.ls30_c02229{letter-spacing:128.160000pt;}
.ls35_c02229{letter-spacing:129.441600pt;}
.ls19_c02229{letter-spacing:139.680000pt;}
.ls9_c02229{letter-spacing:170.640000pt;}
.ls16_c02229{letter-spacing:178.480000pt;}
.ls18_c02229{letter-spacing:209.760000pt;}
.ws0_c02229{word-spacing:-14.692704pt;}
.ws6_c02229{word-spacing:-14.645856pt;}
.ws21_c02229{word-spacing:-0.325984pt;}
.ws16_c02229{word-spacing:-0.307200pt;}
.ws19_c02229{word-spacing:-0.263872pt;}
.ws18_c02229{word-spacing:-0.242592pt;}
.ws24_c02229{word-spacing:-0.225568pt;}
.ws1d_c02229{word-spacing:-0.204288pt;}
.ws1c_c02229{word-spacing:-0.183008pt;}
.wsa_c02229{word-spacing:-0.165984pt;}
.ws23_c02229{word-spacing:-0.115200pt;}
.ws1b_c02229{word-spacing:-0.106400pt;}
.ws22_c02229{word-spacing:-0.089600pt;}
.ws8_c02229{word-spacing:-0.044800pt;}
.ws7_c02229{word-spacing:0.000000pt;}
.ws15_c02229{word-spacing:0.006400pt;}
.ws1f_c02229{word-spacing:0.010688pt;}
.wsc_c02229{word-spacing:0.011712pt;}
.wsd_c02229{word-spacing:0.017568pt;}
.ws20_c02229{word-spacing:0.026720pt;}
.ws1e_c02229{word-spacing:0.029280pt;}
.ws9_c02229{word-spacing:0.035136pt;}
.wsb_c02229{word-spacing:0.058560pt;}
.ws17_c02229{word-spacing:0.105600pt;}
.ws14_c02229{word-spacing:0.153600pt;}
.ws13_c02229{word-spacing:0.158400pt;}
.ws11_c02229{word-spacing:1.660800pt;}
.ws10_c02229{word-spacing:1.747200pt;}
.ws12_c02229{word-spacing:1.766400pt;}
.wsf_c02229{word-spacing:3.984000pt;}
.wse_c02229{word-spacing:3.988800pt;}
.ws5_c02229{word-spacing:52.417280pt;}
.ws1a_c02229{word-spacing:153.720000pt;}
.ws1_c02229{word-spacing:170.165664pt;}
.ws3_c02229{word-spacing:170.177280pt;}
.ws4_c02229{word-spacing:272.885664pt;}
.ws2_c02229{word-spacing:272.897280pt;}
._1d_c02229{margin-left:-24.153312pt;}
._21_c02229{margin-left:-15.240288pt;}
._1f_c02229{margin-left:-14.078400pt;}
._6_c02229{margin-left:-1.099200pt;}
._2b_c02229{width:10.051520pt;}
._13_c02229{width:45.600000pt;}
._2c_c02229{width:47.222080pt;}
._1e_c02229{width:56.001600pt;}
._e_c02229{width:58.457280pt;}
._f_c02229{width:64.744000pt;}
._19_c02229{width:67.040000pt;}
._16_c02229{width:74.080000pt;}
._8_c02229{width:75.088000pt;}
._10_c02229{width:77.580800pt;}
._7_c02229{width:78.739200pt;}
._27_c02229{width:80.505280pt;}
._11_c02229{width:89.420800pt;}
._14_c02229{width:92.870560pt;}
._1c_c02229{width:94.275040pt;}
._d_c02229{width:96.309056pt;}
._12_c02229{width:101.057280pt;}
._1a_c02229{width:102.514912pt;}
._c_c02229{width:106.054688pt;}
._20_c02229{width:107.613600pt;}
._9_c02229{width:108.640000pt;}
._26_c02229{width:110.162080pt;}
._a_c02229{width:113.760000pt;}
._18_c02229{width:115.328000pt;}
._15_c02229{width:118.147200pt;}
._29_c02229{width:119.177152pt;}
._b_c02229{width:124.105728pt;}
._17_c02229{width:125.174400pt;}
._23_c02229{width:126.435040pt;}
._1b_c02229{width:128.160000pt;}
._2d_c02229{width:152.059008pt;}
._2a_c02229{width:153.408000pt;}
._4_c02229{width:180.578880pt;}
._2_c02229{width:191.178240pt;}
._28_c02229{width:200.394816pt;}
._24_c02229{width:235.338400pt;}
._22_c02229{width:244.079520pt;}
._1_c02229{width:255.756544pt;}
._0_c02229{width:469.486080pt;}
._3_c02229{width:654.329280pt;}
._5_c02229{width:733.004640pt;}
._25_c02229{width:742.657120pt;}
.fs2_c02229{font-size:42.560000pt;}
.fs3_c02229{font-size:48.000000pt;}
.fs4_c02229{font-size:53.440000pt;}
.fs1_c02229{font-size:58.560000pt;}
.fs0_c02229{font-size:64.000000pt;}
.y0_c02229{bottom:0.000000pt;}
.y3_c02229{bottom:50.987067pt;}
.y2_c02229{bottom:69.387067pt;}
.y47_c02229{bottom:113.227067pt;}
.y46_c02229{bottom:126.987467pt;}
.y45_c02229{bottom:140.827067pt;}
.y44_c02229{bottom:154.587467pt;}
.y43_c02229{bottom:168.427067pt;}
.y42_c02229{bottom:182.187467pt;}
.y41_c02229{bottom:196.027067pt;}
.y40_c02229{bottom:209.787467pt;}
.y3f_c02229{bottom:223.627067pt;}
.y3e_c02229{bottom:237.387467pt;}
.y3d_c02229{bottom:251.227067pt;}
.y3c_c02229{bottom:264.987467pt;}
.y3b_c02229{bottom:278.827067pt;}
.y3a_c02229{bottom:292.587467pt;}
.y39_c02229{bottom:306.427067pt;}
.y38_c02229{bottom:320.187467pt;}
.y37_c02229{bottom:334.027067pt;}
.y36_c02229{bottom:347.787467pt;}
.y35_c02229{bottom:361.627067pt;}
.y34_c02229{bottom:375.387467pt;}
.y33_c02229{bottom:389.227067pt;}
.y32_c02229{bottom:402.987200pt;}
.y31_c02229{bottom:403.306400pt;}
.y30_c02229{bottom:419.867067pt;}
.y2f_c02229{bottom:420.186400pt;}
.y2e_c02229{bottom:436.747200pt;}
.y2d_c02229{bottom:437.067200pt;}
.y2c_c02229{bottom:454.507067pt;}
.y2b_c02229{bottom:471.547067pt;}
.y2a_c02229{bottom:486.187067pt;}
.y29_c02229{bottom:504.107067pt;}
.y28_c02229{bottom:517.946667pt;}
.y27_c02229{bottom:531.947067pt;}
.y26_c02229{bottom:545.786667pt;}
.y25_c02229{bottom:559.547067pt;}
.y24_c02229{bottom:578.427067pt;}
.y23_c02229{bottom:596.587067pt;}
.y22_c02229{bottom:613.467067pt;}
.y21_c02229{bottom:631.627067pt;}
.y20_c02229{bottom:648.507067pt;}
.y1e_c02229{bottom:649.227067pt;}
.y1f_c02229{bottom:661.067067pt;}
.y1d_c02229{bottom:676.107667pt;}
.y1c_c02229{bottom:692.907067pt;}
.y1b_c02229{bottom:709.147200pt;}
.y1a_c02229{bottom:722.987200pt;}
.y19_c02229{bottom:723.306667pt;}
.y18_c02229{bottom:739.867067pt;}
.y17_c02229{bottom:740.187067pt;}
.y16_c02229{bottom:757.067067pt;}
.y15_c02229{bottom:773.547067pt;}
.y14_c02229{bottom:773.867067pt;}
.y13_c02229{bottom:791.387067pt;}
.y12_c02229{bottom:808.427067pt;}
.y11_c02229{bottom:823.067067pt;}
.y10_c02229{bottom:840.986667pt;}
.yf_c02229{bottom:854.987067pt;}
.ye_c02229{bottom:868.826667pt;}
.yd_c02229{bottom:882.587067pt;}
.yc_c02229{bottom:898.827067pt;}
.yb_c02229{bottom:916.987067pt;}
.ya_c02229{bottom:933.867067pt;}
.y9_c02229{bottom:950.747067pt;}
.y8_c02229{bottom:968.987067pt;}
.y7_c02229{bottom:987.067067pt;}
.y5_c02229{bottom:987.787067pt;}
.y6_c02229{bottom:999.627067pt;}
.y4_c02229{bottom:1014.667067pt;}
.y1_c02229{bottom:1060.587067pt;}
.h5_c02229{height:37.343906pt;}
.h7_c02229{height:42.117188pt;}
.h8_c02229{height:42.632812pt;}
.ha_c02229{height:43.077187pt;}
.he_c02229{height:46.890469pt;}
.h4_c02229{height:51.382969pt;}
.h3_c02229{height:52.012031pt;}
.hb_c02229{height:54.252031pt;}
.hd_c02229{height:55.531498pt;}
.hc_c02229{height:55.532031pt;}
.hf_c02229{height:55.532565pt;}
.h9_c02229{height:55.852031pt;}
.h2_c02229{height:56.156250pt;}
.h1_c02229{height:56.843750pt;}
.h6_c02229{height:85.302969pt;}
.h0_c02229{height:1122.666667pt;}
.w1_c02229{width:793.333333pt;}
.w0_c02229{width:793.626667pt;}
.x0_c02229{left:0.000000pt;}
.x1_c02229{left:113.440000pt;}
.x3_c02229{left:119.600000pt;}
.x6_c02229{left:120.560000pt;}
.xb_c02229{left:124.480000pt;}
.x7_c02229{left:127.920000pt;}
.x8_c02229{left:146.720000pt;}
.x9_c02229{left:196.160000pt;}
.x4_c02229{left:348.880000pt;}
.x5_c02229{left:369.360000pt;}
.x2_c02229{left:384.960000pt;}
.xa_c02229{left:485.440400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_572bc352ba63e31b3521ee0d.woff2')format("woff");}.ff1_c02230{font-family:ff1_c02230;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02230;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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:53.640000px;}
.ls19_c02230{letter-spacing:-0.192384px;}
.ls1e_c02230{letter-spacing:-0.086184px;}
.ls18_c02230{letter-spacing:-0.078156px;}
.ls1c_c02230{letter-spacing:-0.059400px;}
.ls20_c02230{letter-spacing:-0.059292px;}
.ls1f_c02230{letter-spacing:-0.038304px;}
.ls1b_c02230{letter-spacing:-0.007200px;}
.ls1a_c02230{letter-spacing:-0.006012px;}
.ls1d_c02230{letter-spacing:-0.004788px;}
.ls17_c02230{letter-spacing:0.000000px;}
.ls2_c02230{letter-spacing:0.006012px;}
.ls10_c02230{letter-spacing:0.007200px;}
.ls5_c02230{letter-spacing:0.013176px;}
.ls0_c02230{letter-spacing:0.014400px;}
.ls12_c02230{letter-spacing:0.019152px;}
.ls14_c02230{letter-spacing:0.019764px;}
.ls15_c02230{letter-spacing:0.032940px;}
.ls11_c02230{letter-spacing:0.043092px;}
.lsf_c02230{letter-spacing:0.046116px;}
.ls13_c02230{letter-spacing:0.052704px;}
.ls9_c02230{letter-spacing:0.059292px;}
.ls1_c02230{letter-spacing:0.060120px;}
.ls3_c02230{letter-spacing:0.065880px;}
.lsb_c02230{letter-spacing:0.072468px;}
.ls4_c02230{letter-spacing:0.079056px;}
.ls7_c02230{letter-spacing:0.085644px;}
.ls16_c02230{letter-spacing:0.092232px;}
.lse_c02230{letter-spacing:0.138348px;}
.lsc_c02230{letter-spacing:0.151524px;}
.ls6_c02230{letter-spacing:0.158112px;}
.ls8_c02230{letter-spacing:0.171288px;}
.lsa_c02230{letter-spacing:0.177876px;}
.ls22_c02230{letter-spacing:113.221368px;}
.ls21_c02230{letter-spacing:162.539136px;}
.lsd_c02230{letter-spacing:172.260000px;}
.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;}
}
.ws6_c02230{word-spacing:-118.536408px;}
.ws9_c02230{word-spacing:-0.086400px;}
.ws13_c02230{word-spacing:-0.079200px;}
.ws8_c02230{word-spacing:-0.050400px;}
.wsa_c02230{word-spacing:-0.014400px;}
.ws19_c02230{word-spacing:-0.007200px;}
.ws7_c02230{word-spacing:0.000000px;}
.ws10_c02230{word-spacing:0.006588px;}
.ws18_c02230{word-spacing:0.007200px;}
.ws15_c02230{word-spacing:0.013176px;}
.ws14_c02230{word-spacing:0.019764px;}
.wsc_c02230{word-spacing:0.026352px;}
.wsb_c02230{word-spacing:0.030060px;}
.ws16_c02230{word-spacing:0.032940px;}
.ws1a_c02230{word-spacing:0.039528px;}
.ws17_c02230{word-spacing:0.046116px;}
.ws1b_c02230{word-spacing:0.059292px;}
.wse_c02230{word-spacing:0.079056px;}
.ws1_c02230{word-spacing:62.954928px;}
.ws4_c02230{word-spacing:79.872912px;}
.ws5_c02230{word-spacing:79.879500px;}
.ws3_c02230{word-spacing:112.595508px;}
.ws2_c02230{word-spacing:112.997376px;}
.ws0_c02230{word-spacing:121.956372px;}
.ws12_c02230{word-spacing:132.754788px;}
.ws11_c02230{word-spacing:165.516912px;}
.wsf_c02230{word-spacing:165.530088px;}
.wsd_c02230{word-spacing:231.851484px;}
._26_c02230{margin-left:-113.043492px;}
._6_c02230{margin-left:-33.098112px;}
._0_c02230{margin-left:-1.298592px;}
._2a_c02230{width:56.847204px;}
._28_c02230{width:65.362392px;}
._1e_c02230{width:72.790308px;}
._2b_c02230{width:81.739728px;}
._1a_c02230{width:84.138912px;}
._5_c02230{width:92.185884px;}
._1d_c02230{width:98.625204px;}
._1b_c02230{width:105.447528px;}
._1_c02230{width:111.124656px;}
._8_c02230{width:115.250472px;}
._4_c02230{width:126.048204px;}
._2_c02230{width:144.475776px;}
._b_c02230{width:148.768704px;}
._1c_c02230{width:157.338216px;}
._3_c02230{width:202.284540px;}
._29_c02230{width:206.106336px;}
._24_c02230{width:214.301052px;}
._1f_c02230{width:215.519832px;}
._7_c02230{width:241.344792px;}
._16_c02230{width:249.337368px;}
._f_c02230{width:253.745496px;}
._21_c02230{width:267.552612px;}
._25_c02230{width:294.029028px;}
._9_c02230{width:307.099620px;}
._22_c02230{width:315.696960px;}
._11_c02230{width:349.289136px;}
._2c_c02230{width:368.987292px;}
._15_c02230{width:396.131184px;}
._27_c02230{width:401.723064px;}
._10_c02230{width:411.264576px;}
._17_c02230{width:429.102000px;}
._14_c02230{width:430.533720px;}
._12_c02230{width:464.020524px;}
._18_c02230{width:488.343420px;}
._20_c02230{width:525.623580px;}
._23_c02230{width:575.627256px;}
._13_c02230{width:584.789616px;}
._19_c02230{width:667.251000px;}
._c_c02230{width:675.792540px;}
._d_c02230{width:809.960868px;}
._e_c02230{width:983.867184px;}
._a_c02230{width:1704.727368px;}
.fc1_c02230{color:rgb(255,0,0);}
.fc0_c02230{color:rgb(0,0,0);}
.fs4_c02230{font-size:47.880000px;}
.fs1_c02230{font-size:54.000000px;}
.fs2_c02230{font-size:60.120000px;}
.fs3_c02230{font-size:65.880000px;}
.fs0_c02230{font-size:72.000000px;}
.y0_c02230{bottom:0.000000px;}
.y3_c02230{bottom:57.360450px;}
.y2_c02230{bottom:78.060450px;}
.y3c_c02230{bottom:118.650450px;}
.y3b_c02230{bottom:139.350450px;}
.y3a_c02230{bottom:160.050450px;}
.y39_c02230{bottom:180.660450px;}
.y38_c02230{bottom:199.650450px;}
.y37_c02230{bottom:218.640450px;}
.y36_c02230{bottom:237.630450px;}
.y35_c02230{bottom:256.530450px;}
.y34_c02230{bottom:275.520450px;}
.y33_c02230{bottom:294.870450px;}
.y32_c02230{bottom:313.860450px;}
.y31_c02230{bottom:332.850450px;}
.y30_c02230{bottom:352.200450px;}
.y2f_c02230{bottom:371.190450px;}
.y2e_c02230{bottom:390.180600px;}
.y2d_c02230{bottom:409.080450px;}
.y2b_c02230{bottom:427.080450px;}
.y2a_c02230{bottom:427.440450px;}
.y2c_c02230{bottom:440.850450px;}
.y29_c02230{bottom:456.690600px;}
.y28_c02230{bottom:479.820900px;}
.y27_c02230{bottom:495.390450px;}
.y26_c02230{bottom:512.580450px;}
.y25_c02230{bottom:533.100000px;}
.y24_c02230{bottom:548.580450px;}
.y23_c02230{bottom:564.150000px;}
.y22_c02230{bottom:579.630450px;}
.y21_c02230{bottom:596.190450px;}
.y20_c02230{bottom:615.180450px;}
.y1f_c02230{bottom:634.170450px;}
.y1e_c02230{bottom:653.160450px;}
.y1d_c02230{bottom:672.150450px;}
.y1c_c02230{bottom:691.050450px;}
.y1b_c02230{bottom:710.040450px;}
.y1a_c02230{bottom:729.030450px;}
.y19_c02230{bottom:748.020450px;}
.y18_c02230{bottom:767.010450px;}
.y17_c02230{bottom:785.910450px;}
.y16_c02230{bottom:804.900450px;}
.y15_c02230{bottom:823.890450px;}
.y14_c02230{bottom:842.520450px;}
.y13_c02230{bottom:860.790600px;}
.y12_c02230{bottom:883.920450px;}
.y11_c02230{bottom:899.400900px;}
.y10_c02230{bottom:914.970450px;}
.yf_c02230{bottom:932.610450px;}
.ye_c02230{bottom:951.600450px;}
.yd_c02230{bottom:970.590450px;}
.yc_c02230{bottom:989.580450px;}
.yb_c02230{bottom:1008.570450px;}
.ya_c02230{bottom:1027.110450px;}
.y9_c02230{bottom:1044.390450px;}
.y8_c02230{bottom:1062.660450px;}
.y7_c02230{bottom:1086.960450px;}
.y6_c02230{bottom:1106.760900px;}
.y5_c02230{bottom:1122.060450px;}
.y4_c02230{bottom:1139.250450px;}
.y1_c02230{bottom:1193.160450px;}
.h8_c02230{height:42.526230px;}
.h4_c02230{height:47.381836px;}
.h3_c02230{height:47.961914px;}
.h5_c02230{height:53.397598px;}
.h6_c02230{height:58.513535px;}
.h2_c02230{height:63.175781px;}
.h1_c02230{height:63.949219px;}
.h7_c02230{height:96.166230px;}
.h0_c02230{height:1263.000000px;}
.w1_c02230{width:892.500000px;}
.w0_c02230{width:892.830000px;}
.x0_c02230{left:0.000000px;}
.x1_c02230{left:127.620000px;}
.x3_c02230{left:135.630000px;}
.x6_c02230{left:289.440000px;}
.x5_c02230{left:379.080000px;}
.x4_c02230{left:391.140000px;}
.x2_c02230{left:433.080000px;}
.x7_c02230{left:498.240000px;}
.x8_c02230{left:534.420000px;}
.x9_c02230{left:543.780000px;}
.xa_c02230{left:590.040000px;}
.xb_c02230{left:597.060000px;}
.xc_c02230{left:642.150000px;}
.xd_c02230{left:690.030000px;}
.xe_c02230{left:731.610000px;}
@media print{
.v0_c02230{vertical-align:0.000000pt;}
.v1_c02230{vertical-align:47.680000pt;}
.ls19_c02230{letter-spacing:-0.171008pt;}
.ls1e_c02230{letter-spacing:-0.076608pt;}
.ls18_c02230{letter-spacing:-0.069472pt;}
.ls1c_c02230{letter-spacing:-0.052800pt;}
.ls20_c02230{letter-spacing:-0.052704pt;}
.ls1f_c02230{letter-spacing:-0.034048pt;}
.ls1b_c02230{letter-spacing:-0.006400pt;}
.ls1a_c02230{letter-spacing:-0.005344pt;}
.ls1d_c02230{letter-spacing:-0.004256pt;}
.ls17_c02230{letter-spacing:0.000000pt;}
.ls2_c02230{letter-spacing:0.005344pt;}
.ls10_c02230{letter-spacing:0.006400pt;}
.ls5_c02230{letter-spacing:0.011712pt;}
.ls0_c02230{letter-spacing:0.012800pt;}
.ls12_c02230{letter-spacing:0.017024pt;}
.ls14_c02230{letter-spacing:0.017568pt;}
.ls15_c02230{letter-spacing:0.029280pt;}
.ls11_c02230{letter-spacing:0.038304pt;}
.lsf_c02230{letter-spacing:0.040992pt;}
.ls13_c02230{letter-spacing:0.046848pt;}
.ls9_c02230{letter-spacing:0.052704pt;}
.ls1_c02230{letter-spacing:0.053440pt;}
.ls3_c02230{letter-spacing:0.058560pt;}
.lsb_c02230{letter-spacing:0.064416pt;}
.ls4_c02230{letter-spacing:0.070272pt;}
.ls7_c02230{letter-spacing:0.076128pt;}
.ls16_c02230{letter-spacing:0.081984pt;}
.lse_c02230{letter-spacing:0.122976pt;}
.lsc_c02230{letter-spacing:0.134688pt;}
.ls6_c02230{letter-spacing:0.140544pt;}
.ls8_c02230{letter-spacing:0.152256pt;}
.lsa_c02230{letter-spacing:0.158112pt;}
.ls22_c02230{letter-spacing:100.641216pt;}
.ls21_c02230{letter-spacing:144.479232pt;}
.lsd_c02230{letter-spacing:153.120000pt;}
.ws6_c02230{word-spacing:-105.365696pt;}
.ws9_c02230{word-spacing:-0.076800pt;}
.ws13_c02230{word-spacing:-0.070400pt;}
.ws8_c02230{word-spacing:-0.044800pt;}
.wsa_c02230{word-spacing:-0.012800pt;}
.ws19_c02230{word-spacing:-0.006400pt;}
.ws7_c02230{word-spacing:0.000000pt;}
.ws10_c02230{word-spacing:0.005856pt;}
.ws18_c02230{word-spacing:0.006400pt;}
.ws15_c02230{word-spacing:0.011712pt;}
.ws14_c02230{word-spacing:0.017568pt;}
.wsc_c02230{word-spacing:0.023424pt;}
.wsb_c02230{word-spacing:0.026720pt;}
.ws16_c02230{word-spacing:0.029280pt;}
.ws1a_c02230{word-spacing:0.035136pt;}
.ws17_c02230{word-spacing:0.040992pt;}
.ws1b_c02230{word-spacing:0.052704pt;}
.wse_c02230{word-spacing:0.070272pt;}
.ws1_c02230{word-spacing:55.959936pt;}
.ws4_c02230{word-spacing:70.998144pt;}
.ws5_c02230{word-spacing:71.004000pt;}
.ws3_c02230{word-spacing:100.084896pt;}
.ws2_c02230{word-spacing:100.442112pt;}
.ws0_c02230{word-spacing:108.405664pt;}
.ws12_c02230{word-spacing:118.004256pt;}
.ws11_c02230{word-spacing:147.126144pt;}
.wsf_c02230{word-spacing:147.137856pt;}
.wsd_c02230{word-spacing:206.090208pt;}
._26_c02230{margin-left:-100.483104pt;}
._6_c02230{margin-left:-29.420544pt;}
._0_c02230{margin-left:-1.154304pt;}
._2a_c02230{width:50.530848pt;}
._28_c02230{width:58.099904pt;}
._1e_c02230{width:64.702496pt;}
._2b_c02230{width:72.657536pt;}
._1a_c02230{width:74.790144pt;}
._5_c02230{width:81.943008pt;}
._1d_c02230{width:87.666848pt;}
._1b_c02230{width:93.731136pt;}
._1_c02230{width:98.777472pt;}
._8_c02230{width:102.444864pt;}
._4_c02230{width:112.042848pt;}
._2_c02230{width:128.422912pt;}
._b_c02230{width:132.238848pt;}
._1c_c02230{width:139.856192pt;}
._3_c02230{width:179.808480pt;}
._29_c02230{width:183.205632pt;}
._24_c02230{width:190.489824pt;}
._1f_c02230{width:191.573184pt;}
._7_c02230{width:214.528704pt;}
._16_c02230{width:221.633216pt;}
._f_c02230{width:225.551552pt;}
._21_c02230{width:237.824544pt;}
._25_c02230{width:261.359136pt;}
._9_c02230{width:272.977440pt;}
._22_c02230{width:280.619520pt;}
._11_c02230{width:310.479232pt;}
._2c_c02230{width:327.988704pt;}
._15_c02230{width:352.116608pt;}
._27_c02230{width:357.087168pt;}
._10_c02230{width:365.568512pt;}
._17_c02230{width:381.424000pt;}
._14_c02230{width:382.696640pt;}
._12_c02230{width:412.462688pt;}
._18_c02230{width:434.083040pt;}
._20_c02230{width:467.220960pt;}
._23_c02230{width:511.668672pt;}
._13_c02230{width:519.812992pt;}
._19_c02230{width:593.112000pt;}
._c_c02230{width:600.704480pt;}
._d_c02230{width:719.965216pt;}
._e_c02230{width:874.548608pt;}
._a_c02230{width:1515.313216pt;}
.fs4_c02230{font-size:42.560000pt;}
.fs1_c02230{font-size:48.000000pt;}
.fs2_c02230{font-size:53.440000pt;}
.fs3_c02230{font-size:58.560000pt;}
.fs0_c02230{font-size:64.000000pt;}
.y0_c02230{bottom:0.000000pt;}
.y3_c02230{bottom:50.987067pt;}
.y2_c02230{bottom:69.387067pt;}
.y3c_c02230{bottom:105.467067pt;}
.y3b_c02230{bottom:123.867067pt;}
.y3a_c02230{bottom:142.267067pt;}
.y39_c02230{bottom:160.587067pt;}
.y38_c02230{bottom:177.467067pt;}
.y37_c02230{bottom:194.347067pt;}
.y36_c02230{bottom:211.227067pt;}
.y35_c02230{bottom:228.027067pt;}
.y34_c02230{bottom:244.907067pt;}
.y33_c02230{bottom:262.107067pt;}
.y32_c02230{bottom:278.987067pt;}
.y31_c02230{bottom:295.867067pt;}
.y30_c02230{bottom:313.067067pt;}
.y2f_c02230{bottom:329.947067pt;}
.y2e_c02230{bottom:346.827200pt;}
.y2d_c02230{bottom:363.627067pt;}
.y2b_c02230{bottom:379.627067pt;}
.y2a_c02230{bottom:379.947067pt;}
.y2c_c02230{bottom:391.867067pt;}
.y29_c02230{bottom:405.947200pt;}
.y28_c02230{bottom:426.507467pt;}
.y27_c02230{bottom:440.347067pt;}
.y26_c02230{bottom:455.627067pt;}
.y25_c02230{bottom:473.866667pt;}
.y24_c02230{bottom:487.627067pt;}
.y23_c02230{bottom:501.466667pt;}
.y22_c02230{bottom:515.227067pt;}
.y21_c02230{bottom:529.947067pt;}
.y20_c02230{bottom:546.827067pt;}
.y1f_c02230{bottom:563.707067pt;}
.y1e_c02230{bottom:580.587067pt;}
.y1d_c02230{bottom:597.467067pt;}
.y1c_c02230{bottom:614.267067pt;}
.y1b_c02230{bottom:631.147067pt;}
.y1a_c02230{bottom:648.027067pt;}
.y19_c02230{bottom:664.907067pt;}
.y18_c02230{bottom:681.787067pt;}
.y17_c02230{bottom:698.587067pt;}
.y16_c02230{bottom:715.467067pt;}
.y15_c02230{bottom:732.347067pt;}
.y14_c02230{bottom:748.907067pt;}
.y13_c02230{bottom:765.147200pt;}
.y12_c02230{bottom:785.707067pt;}
.y11_c02230{bottom:799.467467pt;}
.y10_c02230{bottom:813.307067pt;}
.yf_c02230{bottom:828.987067pt;}
.ye_c02230{bottom:845.867067pt;}
.yd_c02230{bottom:862.747067pt;}
.yc_c02230{bottom:879.627067pt;}
.yb_c02230{bottom:896.507067pt;}
.ya_c02230{bottom:912.987067pt;}
.y9_c02230{bottom:928.347067pt;}
.y8_c02230{bottom:944.587067pt;}
.y7_c02230{bottom:966.187067pt;}
.y6_c02230{bottom:983.787467pt;}
.y5_c02230{bottom:997.387067pt;}
.y4_c02230{bottom:1012.667067pt;}
.y1_c02230{bottom:1060.587067pt;}
.h8_c02230{height:37.801094pt;}
.h4_c02230{height:42.117188pt;}
.h3_c02230{height:42.632812pt;}
.h5_c02230{height:47.464531pt;}
.h6_c02230{height:52.012031pt;}
.h2_c02230{height:56.156250pt;}
.h1_c02230{height:56.843750pt;}
.h7_c02230{height:85.481094pt;}
.h0_c02230{height:1122.666667pt;}
.w1_c02230{width:793.333333pt;}
.w0_c02230{width:793.626667pt;}
.x0_c02230{left:0.000000pt;}
.x1_c02230{left:113.440000pt;}
.x3_c02230{left:120.560000pt;}
.x6_c02230{left:257.280000pt;}
.x5_c02230{left:336.960000pt;}
.x4_c02230{left:347.680000pt;}
.x2_c02230{left:384.960000pt;}
.x7_c02230{left:442.880000pt;}
.x8_c02230{left:475.040000pt;}
.x9_c02230{left:483.360000pt;}
.xa_c02230{left:524.480000pt;}
.xb_c02230{left:530.720000pt;}
.xc_c02230{left:570.800000pt;}
.xd_c02230{left:613.360000pt;}
.xe_c02230{left:650.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_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_fb725172daeee30b4e9139c1.woff2')format("woff");}.ff1_c02231{font-family:ff1_c02231;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02231;src:url('chunks/assets/font_ef5d34074ba7e33bc9964bac.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;}
.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);}
.v2_c02231{vertical-align:-22.320000px;}
.v1_c02231{vertical-align:-16.920000px;}
.v4_c02231{vertical-align:-5.400000px;}
.v0_c02231{vertical-align:0.000000px;}
.v3_c02231{vertical-align:1.440000px;}
.ls1e_c02231{letter-spacing:-0.181116px;}
.ls1d_c02231{letter-spacing:-0.180360px;}
.ls1c_c02231{letter-spacing:-0.176904px;}
.ls1b_c02231{letter-spacing:-0.086400px;}
.ls18_c02231{letter-spacing:-0.032940px;}
.ls16_c02231{letter-spacing:-0.014400px;}
.ls17_c02231{letter-spacing:-0.013176px;}
.ls1a_c02231{letter-spacing:-0.007200px;}
.ls22_c02231{letter-spacing:-0.006588px;}
.ls15_c02231{letter-spacing:0.000000px;}
.ls14_c02231{letter-spacing:0.006588px;}
.ls0_c02231{letter-spacing:0.007200px;}
.ls12_c02231{letter-spacing:0.013176px;}
.ls6_c02231{letter-spacing:0.014400px;}
.ls4_c02231{letter-spacing:0.019764px;}
.ls5_c02231{letter-spacing:0.021600px;}
.lsf_c02231{letter-spacing:0.026352px;}
.ls7_c02231{letter-spacing:0.028800px;}
.ls11_c02231{letter-spacing:0.032940px;}
.ls2_c02231{letter-spacing:0.039528px;}
.ls1f_c02231{letter-spacing:0.046116px;}
.ls8_c02231{letter-spacing:0.050400px;}
.lsc_c02231{letter-spacing:0.052704px;}
.lse_c02231{letter-spacing:0.059292px;}
.ls20_c02231{letter-spacing:0.065880px;}
.ls1_c02231{letter-spacing:0.072468px;}
.lsb_c02231{letter-spacing:0.079056px;}
.ls21_c02231{letter-spacing:0.092232px;}
.ls3_c02231{letter-spacing:0.098820px;}
.lsd_c02231{letter-spacing:0.131760px;}
.ls13_c02231{letter-spacing:0.151524px;}
.ls10_c02231{letter-spacing:0.158112px;}
.ls19_c02231{letter-spacing:0.164700px;}
.lsa_c02231{letter-spacing:0.181944px;}
.ls9_c02231{letter-spacing:34.065360px;}
.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:-0.144000px;}
.ws8_c02231{word-spacing:-0.136800px;}
.wsc_c02231{word-spacing:-0.115200px;}
.ws7_c02231{word-spacing:-0.100800px;}
.ws1a_c02231{word-spacing:-0.093600px;}
.wsd_c02231{word-spacing:-0.086400px;}
.ws1_c02231{word-spacing:-0.050400px;}
.wsa_c02231{word-spacing:-0.021600px;}
.ws9_c02231{word-spacing:-0.014400px;}
.ws3_c02231{word-spacing:-0.007200px;}
.ws0_c02231{word-spacing:0.000000px;}
.ws6_c02231{word-spacing:0.007200px;}
.ws2_c02231{word-spacing:0.014400px;}
.ws4_c02231{word-spacing:0.019764px;}
.ws12_c02231{word-spacing:0.032940px;}
.ws10_c02231{word-spacing:0.039528px;}
.ws16_c02231{word-spacing:0.052704px;}
.ws1b_c02231{word-spacing:0.059292px;}
.ws22_c02231{word-spacing:0.065880px;}
.ws1e_c02231{word-spacing:0.098820px;}
.ws21_c02231{word-spacing:0.415044px;}
.ws1d_c02231{word-spacing:1.857816px;}
.ws17_c02231{word-spacing:6.877872px;}
.ws20_c02231{word-spacing:8.333820px;}
.ws14_c02231{word-spacing:8.340408px;}
.ws15_c02231{word-spacing:8.696160px;}
.ws1f_c02231{word-spacing:10.883376px;}
.ws19_c02231{word-spacing:11.555352px;}
.ws13_c02231{word-spacing:11.950632px;}
.ws1c_c02231{word-spacing:15.527916px;}
.ws18_c02231{word-spacing:30.317976px;}
.ws11_c02231{word-spacing:31.708044px;}
.wsf_c02231{word-spacing:37.090440px;}
.wse_c02231{word-spacing:48.689172px;}
.ws5_c02231{word-spacing:449.202780px;}
._a_c02231{margin-left:-234.684324px;}
._6_c02231{margin-left:-205.901352px;}
._7_c02231{margin-left:-173.139228px;}
._1c_c02231{margin-left:-1.119960px;}
._1e_c02231{width:1.040904px;}
._18_c02231{width:39.870720px;}
._19_c02231{width:40.950720px;}
._1d_c02231{width:42.750720px;}
._1f_c02231{width:44.550720px;}
._20_c02231{width:48.150720px;}
._1b_c02231{width:55.174464px;}
._0_c02231{width:65.407068px;}
._17_c02231{width:73.850472px;}
._3_c02231{width:96.810048px;}
._5_c02231{width:101.605680px;}
._1_c02231{width:115.338168px;}
._4_c02231{width:116.438220px;}
._2_c02231{width:129.525840px;}
._9_c02231{width:231.508908px;}
._22_c02231{width:389.302560px;}
._d_c02231{width:538.084800px;}
._15_c02231{width:566.337600px;}
._8_c02231{width:572.055804px;}
._14_c02231{width:632.383200px;}
._12_c02231{width:650.577600px;}
._c_c02231{width:1045.800000px;}
._13_c02231{width:1213.005600px;}
._f_c02231{width:1274.212800px;}
._1a_c02231{width:1380.620880px;}
._10_c02231{width:1450.324800px;}
._21_c02231{width:1465.940880px;}
._11_c02231{width:1470.765600px;}
._e_c02231{width:1702.800000px;}
._b_c02231{width:1791.288000px;}
._16_c02231{width:2232.561600px;}
.fc0_c02231{color:rgb(0,0,0);}
.fs2_c02231{font-size:42.120000px;}
.fs4_c02231{font-size:47.880000px;}
.fs3_c02231{font-size:60.120000px;}
.fs1_c02231{font-size:65.880000px;}
.fs0_c02231{font-size:72.000000px;}
.y0_c02231{bottom:0.000000px;}
.y3_c02231{bottom:57.360450px;}
.y2_c02231{bottom:78.060450px;}
.y47_c02231{bottom:112.171305px;}
.y4a_c02231{bottom:131.072277px;}
.y46_c02231{bottom:131.161215px;}
.y49_c02231{bottom:149.971602px;}
.y45_c02231{bottom:150.060540px;}
.y48_c02231{bottom:168.961512px;}
.y44_c02231{bottom:174.720450px;}
.y41_c02231{bottom:187.950600px;}
.y40_c02231{bottom:202.621215px;}
.y43_c02231{bottom:221.521125px;}
.y3f_c02231{bottom:221.611125px;}
.y42_c02231{bottom:240.420450px;}
.y3e_c02231{bottom:246.180450px;}
.y3d_c02231{bottom:265.890450px;}
.y3c_c02231{bottom:285.510450px;}
.y3b_c02231{bottom:299.910450px;}
.y3a_c02231{bottom:321.510450px;}
.y39_c02231{bottom:342.210450px;}
.y38_c02231{bottom:362.910450px;}
.y34_c02231{bottom:382.800450px;}
.y36_c02231{bottom:383.970690px;}
.y35_c02231{bottom:402.960600px;}
.y37_c02231{bottom:404.220450px;}
.y2f_c02231{bottom:421.500600px;}
.y32_c02231{bottom:422.670630px;}
.y31_c02231{bottom:441.660540px;}
.y30_c02231{bottom:460.650450px;}
.y33_c02231{bottom:461.910450px;}
.y2b_c02231{bottom:479.100450px;}
.y2d_c02231{bottom:480.360540px;}
.y2c_c02231{bottom:499.350450px;}
.y2e_c02231{bottom:500.610600px;}
.y27_c02231{bottom:517.800450px;}
.y29_c02231{bottom:519.060540px;}
.y28_c02231{bottom:538.050450px;}
.y2a_c02231{bottom:539.310450px;}
.y23_c02231{bottom:556.500450px;}
.y25_c02231{bottom:557.760540px;}
.y24_c02231{bottom:576.750450px;}
.y26_c02231{bottom:578.010450px;}
.y1f_c02231{bottom:595.200450px;}
.y21_c02231{bottom:596.460540px;}
.y20_c02231{bottom:615.450450px;}
.y22_c02231{bottom:616.710450px;}
.y1b_c02231{bottom:633.900450px;}
.y1d_c02231{bottom:635.160540px;}
.y1c_c02231{bottom:654.150450px;}
.y1e_c02231{bottom:655.410450px;}
.y1a_c02231{bottom:679.350450px;}
.y19_c02231{bottom:693.750450px;}
.y18_c02231{bottom:715.440450px;}
.y17_c02231{bottom:736.140450px;}
.y16_c02231{bottom:757.380450px;}
.y15_c02231{bottom:778.800450px;}
.y14_c02231{bottom:800.220450px;}
.y13_c02231{bottom:821.730450px;}
.y12_c02231{bottom:843.150450px;}
.y11_c02231{bottom:864.570450px;}
.y10_c02231{bottom:886.080450px;}
.yf_c02231{bottom:907.500450px;}
.ye_c02231{bottom:928.920450px;}
.yd_c02231{bottom:950.430450px;}
.yc_c02231{bottom:971.850450px;}
.yb_c02231{bottom:993.270450px;}
.ya_c02231{bottom:1014.780450px;}
.y9_c02231{bottom:1036.020450px;}
.y8_c02231{bottom:1055.640450px;}
.y7_c02231{bottom:1075.620450px;}
.y6_c02231{bottom:1096.320450px;}
.y5_c02231{bottom:1118.010450px;}
.y4_c02231{bottom:1139.250450px;}
.y1_c02231{bottom:1193.160450px;}
.ha_c02231{height:36.957832px;}
.h5_c02231{height:37.410293px;}
.hb_c02231{height:42.011895px;}
.h6_c02231{height:43.451895px;}
.h8_c02231{height:43.811895px;}
.h9_c02231{height:43.812495px;}
.h7_c02231{height:53.397598px;}
.h4_c02231{height:57.805840px;}
.h3_c02231{height:58.513535px;}
.h2_c02231{height:63.175781px;}
.h1_c02231{height:63.949219px;}
.h0_c02231{height:1263.000000px;}
.w1_c02231{width:892.500000px;}
.w0_c02231{width:892.830000px;}
.x0_c02231{left:0.000000px;}
.x1_c02231{left:127.620000px;}
.x3_c02231{left:135.630000px;}
.x6_c02231{left:137.520000px;}
.x4_c02231{left:263.430000px;}
.x8_c02231{left:273.870000px;}
.x5_c02231{left:284.670000px;}
.x7_c02231{left:335.160000px;}
.x2_c02231{left:433.080000px;}
.x9_c02231{left:699.120000px;}
.xa_c02231{left:720.990000px;}
.xb_c02231{left:722.790171px;}
@media print{
.v2_c02231{vertical-align:-19.840000pt;}
.v1_c02231{vertical-align:-15.040000pt;}
.v4_c02231{vertical-align:-4.800000pt;}
.v0_c02231{vertical-align:0.000000pt;}
.v3_c02231{vertical-align:1.280000pt;}
.ls1e_c02231{letter-spacing:-0.160992pt;}
.ls1d_c02231{letter-spacing:-0.160320pt;}
.ls1c_c02231{letter-spacing:-0.157248pt;}
.ls1b_c02231{letter-spacing:-0.076800pt;}
.ls18_c02231{letter-spacing:-0.029280pt;}
.ls16_c02231{letter-spacing:-0.012800pt;}
.ls17_c02231{letter-spacing:-0.011712pt;}
.ls1a_c02231{letter-spacing:-0.006400pt;}
.ls22_c02231{letter-spacing:-0.005856pt;}
.ls15_c02231{letter-spacing:0.000000pt;}
.ls14_c02231{letter-spacing:0.005856pt;}
.ls0_c02231{letter-spacing:0.006400pt;}
.ls12_c02231{letter-spacing:0.011712pt;}
.ls6_c02231{letter-spacing:0.012800pt;}
.ls4_c02231{letter-spacing:0.017568pt;}
.ls5_c02231{letter-spacing:0.019200pt;}
.lsf_c02231{letter-spacing:0.023424pt;}
.ls7_c02231{letter-spacing:0.025600pt;}
.ls11_c02231{letter-spacing:0.029280pt;}
.ls2_c02231{letter-spacing:0.035136pt;}
.ls1f_c02231{letter-spacing:0.040992pt;}
.ls8_c02231{letter-spacing:0.044800pt;}
.lsc_c02231{letter-spacing:0.046848pt;}
.lse_c02231{letter-spacing:0.052704pt;}
.ls20_c02231{letter-spacing:0.058560pt;}
.ls1_c02231{letter-spacing:0.064416pt;}
.lsb_c02231{letter-spacing:0.070272pt;}
.ls21_c02231{letter-spacing:0.081984pt;}
.ls3_c02231{letter-spacing:0.087840pt;}
.lsd_c02231{letter-spacing:0.117120pt;}
.ls13_c02231{letter-spacing:0.134688pt;}
.ls10_c02231{letter-spacing:0.140544pt;}
.ls19_c02231{letter-spacing:0.146400pt;}
.lsa_c02231{letter-spacing:0.161728pt;}
.ls9_c02231{letter-spacing:30.280320pt;}
.wsb_c02231{word-spacing:-0.128000pt;}
.ws8_c02231{word-spacing:-0.121600pt;}
.wsc_c02231{word-spacing:-0.102400pt;}
.ws7_c02231{word-spacing:-0.089600pt;}
.ws1a_c02231{word-spacing:-0.083200pt;}
.wsd_c02231{word-spacing:-0.076800pt;}
.ws1_c02231{word-spacing:-0.044800pt;}
.wsa_c02231{word-spacing:-0.019200pt;}
.ws9_c02231{word-spacing:-0.012800pt;}
.ws3_c02231{word-spacing:-0.006400pt;}
.ws0_c02231{word-spacing:0.000000pt;}
.ws6_c02231{word-spacing:0.006400pt;}
.ws2_c02231{word-spacing:0.012800pt;}
.ws4_c02231{word-spacing:0.017568pt;}
.ws12_c02231{word-spacing:0.029280pt;}
.ws10_c02231{word-spacing:0.035136pt;}
.ws16_c02231{word-spacing:0.046848pt;}
.ws1b_c02231{word-spacing:0.052704pt;}
.ws22_c02231{word-spacing:0.058560pt;}
.ws1e_c02231{word-spacing:0.087840pt;}
.ws21_c02231{word-spacing:0.368928pt;}
.ws1d_c02231{word-spacing:1.651392pt;}
.ws17_c02231{word-spacing:6.113664pt;}
.ws20_c02231{word-spacing:7.407840pt;}
.ws14_c02231{word-spacing:7.413696pt;}
.ws15_c02231{word-spacing:7.729920pt;}
.ws1f_c02231{word-spacing:9.674112pt;}
.ws19_c02231{word-spacing:10.271424pt;}
.ws13_c02231{word-spacing:10.622784pt;}
.ws1c_c02231{word-spacing:13.802592pt;}
.ws18_c02231{word-spacing:26.949312pt;}
.ws11_c02231{word-spacing:28.184928pt;}
.wsf_c02231{word-spacing:32.969280pt;}
.wse_c02231{word-spacing:43.279264pt;}
.ws5_c02231{word-spacing:399.291360pt;}
._a_c02231{margin-left:-208.608288pt;}
._6_c02231{margin-left:-183.023424pt;}
._7_c02231{margin-left:-153.901536pt;}
._1c_c02231{margin-left:-0.995520pt;}
._1e_c02231{width:0.925248pt;}
._18_c02231{width:35.440640pt;}
._19_c02231{width:36.400640pt;}
._1d_c02231{width:38.000640pt;}
._1f_c02231{width:39.600640pt;}
._20_c02231{width:42.800640pt;}
._1b_c02231{width:49.043968pt;}
._0_c02231{width:58.139616pt;}
._17_c02231{width:65.644864pt;}
._3_c02231{width:86.053376pt;}
._5_c02231{width:90.316160pt;}
._1_c02231{width:102.522816pt;}
._4_c02231{width:103.500640pt;}
._2_c02231{width:115.134080pt;}
._9_c02231{width:205.785696pt;}
._22_c02231{width:346.046720pt;}
._d_c02231{width:478.297600pt;}
._15_c02231{width:503.411200pt;}
._8_c02231{width:508.494048pt;}
._14_c02231{width:562.118400pt;}
._12_c02231{width:578.291200pt;}
._c_c02231{width:929.600000pt;}
._13_c02231{width:1078.227200pt;}
._f_c02231{width:1132.633600pt;}
._1a_c02231{width:1227.218560pt;}
._10_c02231{width:1289.177600pt;}
._21_c02231{width:1303.058560pt;}
._11_c02231{width:1307.347200pt;}
._e_c02231{width:1513.600000pt;}
._b_c02231{width:1592.256000pt;}
._16_c02231{width:1984.499200pt;}
.fs2_c02231{font-size:37.440000pt;}
.fs4_c02231{font-size:42.560000pt;}
.fs3_c02231{font-size:53.440000pt;}
.fs1_c02231{font-size:58.560000pt;}
.fs0_c02231{font-size:64.000000pt;}
.y0_c02231{bottom:0.000000pt;}
.y3_c02231{bottom:50.987067pt;}
.y2_c02231{bottom:69.387067pt;}
.y47_c02231{bottom:99.707827pt;}
.y4a_c02231{bottom:116.508691pt;}
.y46_c02231{bottom:116.587747pt;}
.y49_c02231{bottom:133.308091pt;}
.y45_c02231{bottom:133.387147pt;}
.y48_c02231{bottom:150.188011pt;}
.y44_c02231{bottom:155.307067pt;}
.y41_c02231{bottom:167.067200pt;}
.y40_c02231{bottom:180.107747pt;}
.y43_c02231{bottom:196.907667pt;}
.y3f_c02231{bottom:196.987667pt;}
.y42_c02231{bottom:213.707067pt;}
.y3e_c02231{bottom:218.827067pt;}
.y3d_c02231{bottom:236.347067pt;}
.y3c_c02231{bottom:253.787067pt;}
.y3b_c02231{bottom:266.587067pt;}
.y3a_c02231{bottom:285.787067pt;}
.y39_c02231{bottom:304.187067pt;}
.y38_c02231{bottom:322.587067pt;}
.y34_c02231{bottom:340.267067pt;}
.y36_c02231{bottom:341.307280pt;}
.y35_c02231{bottom:358.187200pt;}
.y37_c02231{bottom:359.307067pt;}
.y2f_c02231{bottom:374.667200pt;}
.y32_c02231{bottom:375.707227pt;}
.y31_c02231{bottom:392.587147pt;}
.y30_c02231{bottom:409.467067pt;}
.y33_c02231{bottom:410.587067pt;}
.y2b_c02231{bottom:425.867067pt;}
.y2d_c02231{bottom:426.987147pt;}
.y2c_c02231{bottom:443.867067pt;}
.y2e_c02231{bottom:444.987200pt;}
.y27_c02231{bottom:460.267067pt;}
.y29_c02231{bottom:461.387147pt;}
.y28_c02231{bottom:478.267067pt;}
.y2a_c02231{bottom:479.387067pt;}
.y23_c02231{bottom:494.667067pt;}
.y25_c02231{bottom:495.787147pt;}
.y24_c02231{bottom:512.667067pt;}
.y26_c02231{bottom:513.787067pt;}
.y1f_c02231{bottom:529.067067pt;}
.y21_c02231{bottom:530.187147pt;}
.y20_c02231{bottom:547.067067pt;}
.y22_c02231{bottom:548.187067pt;}
.y1b_c02231{bottom:563.467067pt;}
.y1d_c02231{bottom:564.587147pt;}
.y1c_c02231{bottom:581.467067pt;}
.y1e_c02231{bottom:582.587067pt;}
.y1a_c02231{bottom:603.867067pt;}
.y19_c02231{bottom:616.667067pt;}
.y18_c02231{bottom:635.947067pt;}
.y17_c02231{bottom:654.347067pt;}
.y16_c02231{bottom:673.227067pt;}
.y15_c02231{bottom:692.267067pt;}
.y14_c02231{bottom:711.307067pt;}
.y13_c02231{bottom:730.427067pt;}
.y12_c02231{bottom:749.467067pt;}
.y11_c02231{bottom:768.507067pt;}
.y10_c02231{bottom:787.627067pt;}
.yf_c02231{bottom:806.667067pt;}
.ye_c02231{bottom:825.707067pt;}
.yd_c02231{bottom:844.827067pt;}
.yc_c02231{bottom:863.867067pt;}
.yb_c02231{bottom:882.907067pt;}
.ya_c02231{bottom:902.027067pt;}
.y9_c02231{bottom:920.907067pt;}
.y8_c02231{bottom:938.347067pt;}
.y7_c02231{bottom:956.107067pt;}
.y6_c02231{bottom:974.507067pt;}
.y5_c02231{bottom:993.787067pt;}
.y4_c02231{bottom:1012.667067pt;}
.y1_c02231{bottom:1060.587067pt;}
.ha_c02231{height:32.851406pt;}
.h5_c02231{height:33.253594pt;}
.hb_c02231{height:37.343906pt;}
.h6_c02231{height:38.623906pt;}
.h8_c02231{height:38.943906pt;}
.h9_c02231{height:38.944440pt;}
.h7_c02231{height:47.464531pt;}
.h4_c02231{height:51.382969pt;}
.h3_c02231{height:52.012031pt;}
.h2_c02231{height:56.156250pt;}
.h1_c02231{height:56.843750pt;}
.h0_c02231{height:1122.666667pt;}
.w1_c02231{width:793.333333pt;}
.w0_c02231{width:793.626667pt;}
.x0_c02231{left:0.000000pt;}
.x1_c02231{left:113.440000pt;}
.x3_c02231{left:120.560000pt;}
.x6_c02231{left:122.240000pt;}
.x4_c02231{left:234.160000pt;}
.x8_c02231{left:243.440000pt;}
.x5_c02231{left:253.040000pt;}
.x7_c02231{left:297.920000pt;}
.x2_c02231{left:384.960000pt;}
.x9_c02231{left:621.440000pt;}
.xa_c02231{left:640.880000pt;}
.xb_c02231{left:642.480152pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f15c15c5f508c2e011002040.woff2')format("woff");}.ff1_c02232{font-family:ff1_c02232;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02232;src:url('chunks/assets/font_f31e86120395fad765f78c7f.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;}
.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);}
.v2_c02232{vertical-align:-22.320000px;}
.v1_c02232{vertical-align:-16.919400px;}
.v3_c02232{vertical-align:-4.680000px;}
.v0_c02232{vertical-align:0.000000px;}
.ls1b_c02232{letter-spacing:-0.181116px;}
.ls19_c02232{letter-spacing:-0.180360px;}
.ls18_c02232{letter-spacing:-0.176904px;}
.ls1d_c02232{letter-spacing:-0.039528px;}
.ls1a_c02232{letter-spacing:-0.032940px;}
.ls1c_c02232{letter-spacing:-0.014400px;}
.ls16_c02232{letter-spacing:0.000000px;}
.lsb_c02232{letter-spacing:0.006588px;}
.ls17_c02232{letter-spacing:0.007200px;}
.lsd_c02232{letter-spacing:0.013176px;}
.ls8_c02232{letter-spacing:0.014400px;}
.ls7_c02232{letter-spacing:0.021600px;}
.lsa_c02232{letter-spacing:0.026352px;}
.ls5_c02232{letter-spacing:0.028800px;}
.ls11_c02232{letter-spacing:0.032940px;}
.lsc_c02232{letter-spacing:0.036000px;}
.lse_c02232{letter-spacing:0.039528px;}
.ls6_c02232{letter-spacing:0.050400px;}
.ls10_c02232{letter-spacing:0.052704px;}
.ls12_c02232{letter-spacing:0.059292px;}
.ls3_c02232{letter-spacing:0.064800px;}
.lsf_c02232{letter-spacing:0.065880px;}
.ls2_c02232{letter-spacing:0.072000px;}
.ls0_c02232{letter-spacing:0.072468px;}
.ls15_c02232{letter-spacing:0.079056px;}
.ls14_c02232{letter-spacing:0.092232px;}
.ls1e_c02232{letter-spacing:0.098820px;}
.ls1f_c02232{letter-spacing:0.105408px;}
.ls9_c02232{letter-spacing:0.115200px;}
.ls13_c02232{letter-spacing:0.125172px;}
.ls4_c02232{letter-spacing:0.131760px;}
.ls1_c02232{letter-spacing:0.181944px;}
.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;}
}
.ws4_c02232{word-spacing:-0.244800px;}
.wsd_c02232{word-spacing:-0.086400px;}
.ws3_c02232{word-spacing:-0.072000px;}
.ws1_c02232{word-spacing:-0.050400px;}
.ws13_c02232{word-spacing:-0.014400px;}
.ws0_c02232{word-spacing:0.000000px;}
.ws22_c02232{word-spacing:0.026352px;}
.ws26_c02232{word-spacing:0.032940px;}
.ws32_c02232{word-spacing:0.039528px;}
.ws1b_c02232{word-spacing:0.059292px;}
.ws1f_c02232{word-spacing:0.079056px;}
.ws16_c02232{word-spacing:0.085644px;}
.ws11_c02232{word-spacing:0.131760px;}
.ws19_c02232{word-spacing:0.408456px;}
.ws24_c02232{word-spacing:0.783972px;}
.ws27_c02232{word-spacing:3.261060px;}
.ws2c_c02232{word-spacing:4.703832px;}
.ws1e_c02232{word-spacing:4.756536px;}
.ws1c_c02232{word-spacing:5.421924px;}
.ws10_c02232{word-spacing:5.461452px;}
.ws7_c02232{word-spacing:5.637600px;}
.ws8_c02232{word-spacing:5.774400px;}
.ws17_c02232{word-spacing:5.810616px;}
.ws2e_c02232{word-spacing:7.213860px;}
.ws2f_c02232{word-spacing:7.227036px;}
.wse_c02232{word-spacing:7.622316px;}
.ws14_c02232{word-spacing:9.796356px;}
.ws15_c02232{word-spacing:10.850436px;}
.ws2d_c02232{word-spacing:11.199600px;}
.wsc_c02232{word-spacing:12.549600px;}
.wsf_c02232{word-spacing:13.399992px;}
.ws23_c02232{word-spacing:14.098320px;}
.ws20_c02232{word-spacing:14.434308px;}
.ws2b_c02232{word-spacing:15.119460px;}
.ws2a_c02232{word-spacing:15.139224px;}
.wsb_c02232{word-spacing:15.811200px;}
.ws29_c02232{word-spacing:16.977276px;}
.ws1d_c02232{word-spacing:17.333028px;}
.ws18_c02232{word-spacing:18.406872px;}
.ws12_c02232{word-spacing:19.044000px;}
.ws31_c02232{word-spacing:21.990744px;}
.ws30_c02232{word-spacing:21.997332px;}
.ws5_c02232{word-spacing:22.168800px;}
.ws6_c02232{word-spacing:22.269600px;}
.wsa_c02232{word-spacing:24.732000px;}
.ws9_c02232{word-spacing:24.818400px;}
.ws25_c02232{word-spacing:25.969896px;}
.ws28_c02232{word-spacing:25.976484px;}
.ws1a_c02232{word-spacing:28.493100px;}
.ws21_c02232{word-spacing:30.647376px;}
.ws2_c02232{word-spacing:48.689172px;}
._5_c02232{margin-left:-1.368900px;}
._6_c02232{width:1.150776px;}
._1_c02232{width:39.870720px;}
._2_c02232{width:40.950720px;}
._4_c02232{width:55.174464px;}
._0_c02232{width:73.850472px;}
._3_c02232{width:1465.940880px;}
.fc0_c02232{color:rgb(0,0,0);}
.fs5_c02232{font-size:36.000000px;}
.fs1_c02232{font-size:42.120000px;}
.fs4_c02232{font-size:47.880000px;}
.fs2_c02232{font-size:60.120000px;}
.fs3_c02232{font-size:65.880000px;}
.fs0_c02232{font-size:72.000000px;}
.y0_c02232{bottom:0.000000px;}
.y3_c02232{bottom:57.360450px;}
.y2_c02232{bottom:78.060450px;}
.y4b_c02232{bottom:122.521215px;}
.y4a_c02232{bottom:141.511125px;}
.y49_c02232{bottom:160.410450px;}
.y48_c02232{bottom:179.400450px;}
.y47_c02232{bottom:198.390450px;}
.y46_c02232{bottom:217.380450px;}
.y4d_c02232{bottom:236.281152px;}
.y45_c02232{bottom:236.371125px;}
.y4c_c02232{bottom:255.180477px;}
.y44_c02232{bottom:260.940450px;}
.y42_c02232{bottom:273.540450px;}
.y41_c02232{bottom:285.421305px;}
.y40_c02232{bottom:304.320630px;}
.y3f_c02232{bottom:323.310540px;}
.y43_c02232{bottom:342.210600px;}
.y3e_c02232{bottom:347.970450px;}
.y3a_c02232{bottom:361.200450px;}
.y39_c02232{bottom:375.872160px;}
.y38_c02232{bottom:394.771485px;}
.y37_c02232{bottom:413.761395px;}
.y36_c02232{bottom:432.751305px;}
.y35_c02232{bottom:451.741215px;}
.y34_c02232{bottom:470.731125px;}
.y33_c02232{bottom:489.630450px;}
.y32_c02232{bottom:507.810450px;}
.y31_c02232{bottom:522.480450px;}
.y3d_c02232{bottom:541.290630px;}
.y30_c02232{bottom:541.380450px;}
.y3c_c02232{bottom:560.280540px;}
.y2f_c02232{bottom:560.370450px;}
.y3b_c02232{bottom:579.270450px;}
.y2e_c02232{bottom:585.030450px;}
.y2b_c02232{bottom:598.260450px;}
.y2a_c02232{bottom:612.840810px;}
.y29_c02232{bottom:631.830720px;}
.y28_c02232{bottom:650.820630px;}
.y2d_c02232{bottom:669.720540px;}
.y27_c02232{bottom:669.810540px;}
.y2c_c02232{bottom:688.710450px;}
.y26_c02232{bottom:694.470450px;}
.y23_c02232{bottom:707.610450px;}
.y22_c02232{bottom:722.280630px;}
.y25_c02232{bottom:741.180540px;}
.y21_c02232{bottom:741.270540px;}
.y24_c02232{bottom:760.170450px;}
.y20_c02232{bottom:765.930450px;}
.y1e_c02232{bottom:779.160450px;}
.y1d_c02232{bottom:794.100450px;}
.y1f_c02232{bottom:816.060450px;}
.y1c_c02232{bottom:821.640450px;}
.y18_c02232{bottom:835.951395px;}
.y17_c02232{bottom:854.850720px;}
.y1b_c02232{bottom:873.751692px;}
.y16_c02232{bottom:873.840630px;}
.y1a_c02232{bottom:892.741602px;}
.y15_c02232{bottom:892.830540px;}
.y19_c02232{bottom:911.731512px;}
.y14_c02232{bottom:917.310450px;}
.y11_c02232{bottom:930.720450px;}
.y10_c02232{bottom:945.750450px;}
.yf_c02232{bottom:966.360450px;}
.y13_c02232{bottom:969.421125px;}
.y12_c02232{bottom:988.320450px;}
.ye_c02232{bottom:993.900450px;}
.yc_c02232{bottom:1007.310450px;}
.yb_c02232{bottom:1022.340450px;}
.ya_c02232{bottom:1043.040450px;}
.y9_c02232{bottom:1063.740450px;}
.yd_c02232{bottom:1085.700450px;}
.y8_c02232{bottom:1091.280450px;}
.y6_c02232{bottom:1104.690450px;}
.y7_c02232{bottom:1120.980450px;}
.y5_c02232{bottom:1126.560450px;}
.y4_c02232{bottom:1146.270450px;}
.y1_c02232{bottom:1193.160450px;}
.h8_c02232{height:31.587891px;}
.h7_c02232{height:36.957832px;}
.h3_c02232{height:37.410293px;}
.h4_c02232{height:42.011895px;}
.h6_c02232{height:57.805840px;}
.h5_c02232{height:58.513535px;}
.h2_c02232{height:63.175781px;}
.h1_c02232{height:63.949219px;}
.h0_c02232{height:1263.000000px;}
.w1_c02232{width:892.500000px;}
.w0_c02232{width:892.830000px;}
.x0_c02232{left:0.000000px;}
.x1_c02232{left:127.620000px;}
.x3_c02232{left:135.630000px;}
.x4_c02232{left:273.870000px;}
.x2_c02232{left:433.080000px;}
.x5_c02232{left:720.990000px;}
.x7_c02232{left:722.790000px;}
.x6_c02232{left:738.898803px;}
@media print{
.v2_c02232{vertical-align:-19.840000pt;}
.v1_c02232{vertical-align:-15.039467pt;}
.v3_c02232{vertical-align:-4.160000pt;}
.v0_c02232{vertical-align:0.000000pt;}
.ls1b_c02232{letter-spacing:-0.160992pt;}
.ls19_c02232{letter-spacing:-0.160320pt;}
.ls18_c02232{letter-spacing:-0.157248pt;}
.ls1d_c02232{letter-spacing:-0.035136pt;}
.ls1a_c02232{letter-spacing:-0.029280pt;}
.ls1c_c02232{letter-spacing:-0.012800pt;}
.ls16_c02232{letter-spacing:0.000000pt;}
.lsb_c02232{letter-spacing:0.005856pt;}
.ls17_c02232{letter-spacing:0.006400pt;}
.lsd_c02232{letter-spacing:0.011712pt;}
.ls8_c02232{letter-spacing:0.012800pt;}
.ls7_c02232{letter-spacing:0.019200pt;}
.lsa_c02232{letter-spacing:0.023424pt;}
.ls5_c02232{letter-spacing:0.025600pt;}
.ls11_c02232{letter-spacing:0.029280pt;}
.lsc_c02232{letter-spacing:0.032000pt;}
.lse_c02232{letter-spacing:0.035136pt;}
.ls6_c02232{letter-spacing:0.044800pt;}
.ls10_c02232{letter-spacing:0.046848pt;}
.ls12_c02232{letter-spacing:0.052704pt;}
.ls3_c02232{letter-spacing:0.057600pt;}
.lsf_c02232{letter-spacing:0.058560pt;}
.ls2_c02232{letter-spacing:0.064000pt;}
.ls0_c02232{letter-spacing:0.064416pt;}
.ls15_c02232{letter-spacing:0.070272pt;}
.ls14_c02232{letter-spacing:0.081984pt;}
.ls1e_c02232{letter-spacing:0.087840pt;}
.ls1f_c02232{letter-spacing:0.093696pt;}
.ls9_c02232{letter-spacing:0.102400pt;}
.ls13_c02232{letter-spacing:0.111264pt;}
.ls4_c02232{letter-spacing:0.117120pt;}
.ls1_c02232{letter-spacing:0.161728pt;}
.ws4_c02232{word-spacing:-0.217600pt;}
.wsd_c02232{word-spacing:-0.076800pt;}
.ws3_c02232{word-spacing:-0.064000pt;}
.ws1_c02232{word-spacing:-0.044800pt;}
.ws13_c02232{word-spacing:-0.012800pt;}
.ws0_c02232{word-spacing:0.000000pt;}
.ws22_c02232{word-spacing:0.023424pt;}
.ws26_c02232{word-spacing:0.029280pt;}
.ws32_c02232{word-spacing:0.035136pt;}
.ws1b_c02232{word-spacing:0.052704pt;}
.ws1f_c02232{word-spacing:0.070272pt;}
.ws16_c02232{word-spacing:0.076128pt;}
.ws11_c02232{word-spacing:0.117120pt;}
.ws19_c02232{word-spacing:0.363072pt;}
.ws24_c02232{word-spacing:0.696864pt;}
.ws27_c02232{word-spacing:2.898720pt;}
.ws2c_c02232{word-spacing:4.181184pt;}
.ws1e_c02232{word-spacing:4.228032pt;}
.ws1c_c02232{word-spacing:4.819488pt;}
.ws10_c02232{word-spacing:4.854624pt;}
.ws7_c02232{word-spacing:5.011200pt;}
.ws8_c02232{word-spacing:5.132800pt;}
.ws17_c02232{word-spacing:5.164992pt;}
.ws2e_c02232{word-spacing:6.412320pt;}
.ws2f_c02232{word-spacing:6.424032pt;}
.wse_c02232{word-spacing:6.775392pt;}
.ws14_c02232{word-spacing:8.707872pt;}
.ws15_c02232{word-spacing:9.644832pt;}
.ws2d_c02232{word-spacing:9.955200pt;}
.wsc_c02232{word-spacing:11.155200pt;}
.wsf_c02232{word-spacing:11.911104pt;}
.ws23_c02232{word-spacing:12.531840pt;}
.ws20_c02232{word-spacing:12.830496pt;}
.ws2b_c02232{word-spacing:13.439520pt;}
.ws2a_c02232{word-spacing:13.457088pt;}
.wsb_c02232{word-spacing:14.054400pt;}
.ws29_c02232{word-spacing:15.090912pt;}
.ws1d_c02232{word-spacing:15.407136pt;}
.ws18_c02232{word-spacing:16.361664pt;}
.ws12_c02232{word-spacing:16.928000pt;}
.ws31_c02232{word-spacing:19.547328pt;}
.ws30_c02232{word-spacing:19.553184pt;}
.ws5_c02232{word-spacing:19.705600pt;}
.ws6_c02232{word-spacing:19.795200pt;}
.wsa_c02232{word-spacing:21.984000pt;}
.ws9_c02232{word-spacing:22.060800pt;}
.ws25_c02232{word-spacing:23.084352pt;}
.ws28_c02232{word-spacing:23.090208pt;}
.ws1a_c02232{word-spacing:25.327200pt;}
.ws21_c02232{word-spacing:27.242112pt;}
.ws2_c02232{word-spacing:43.279264pt;}
._5_c02232{margin-left:-1.216800pt;}
._6_c02232{width:1.022912pt;}
._1_c02232{width:35.440640pt;}
._2_c02232{width:36.400640pt;}
._4_c02232{width:49.043968pt;}
._0_c02232{width:65.644864pt;}
._3_c02232{width:1303.058560pt;}
.fs5_c02232{font-size:32.000000pt;}
.fs1_c02232{font-size:37.440000pt;}
.fs4_c02232{font-size:42.560000pt;}
.fs2_c02232{font-size:53.440000pt;}
.fs3_c02232{font-size:58.560000pt;}
.fs0_c02232{font-size:64.000000pt;}
.y0_c02232{bottom:0.000000pt;}
.y3_c02232{bottom:50.987067pt;}
.y2_c02232{bottom:69.387067pt;}
.y4b_c02232{bottom:108.907747pt;}
.y4a_c02232{bottom:125.787667pt;}
.y49_c02232{bottom:142.587067pt;}
.y48_c02232{bottom:159.467067pt;}
.y47_c02232{bottom:176.347067pt;}
.y46_c02232{bottom:193.227067pt;}
.y4d_c02232{bottom:210.027691pt;}
.y45_c02232{bottom:210.107667pt;}
.y4c_c02232{bottom:226.827091pt;}
.y44_c02232{bottom:231.947067pt;}
.y42_c02232{bottom:243.147067pt;}
.y41_c02232{bottom:253.707827pt;}
.y40_c02232{bottom:270.507227pt;}
.y3f_c02232{bottom:287.387147pt;}
.y43_c02232{bottom:304.187200pt;}
.y3e_c02232{bottom:309.307067pt;}
.y3a_c02232{bottom:321.067067pt;}
.y39_c02232{bottom:334.108587pt;}
.y38_c02232{bottom:350.907987pt;}
.y37_c02232{bottom:367.787907pt;}
.y36_c02232{bottom:384.667827pt;}
.y35_c02232{bottom:401.547747pt;}
.y34_c02232{bottom:418.427667pt;}
.y33_c02232{bottom:435.227067pt;}
.y32_c02232{bottom:451.387067pt;}
.y31_c02232{bottom:464.427067pt;}
.y3d_c02232{bottom:481.147227pt;}
.y30_c02232{bottom:481.227067pt;}
.y3c_c02232{bottom:498.027147pt;}
.y2f_c02232{bottom:498.107067pt;}
.y3b_c02232{bottom:514.907067pt;}
.y2e_c02232{bottom:520.027067pt;}
.y2b_c02232{bottom:531.787067pt;}
.y2a_c02232{bottom:544.747387pt;}
.y29_c02232{bottom:561.627307pt;}
.y28_c02232{bottom:578.507227pt;}
.y2d_c02232{bottom:595.307147pt;}
.y27_c02232{bottom:595.387147pt;}
.y2c_c02232{bottom:612.187067pt;}
.y26_c02232{bottom:617.307067pt;}
.y23_c02232{bottom:628.987067pt;}
.y22_c02232{bottom:642.027227pt;}
.y25_c02232{bottom:658.827147pt;}
.y21_c02232{bottom:658.907147pt;}
.y24_c02232{bottom:675.707067pt;}
.y20_c02232{bottom:680.827067pt;}
.y1e_c02232{bottom:692.587067pt;}
.y1d_c02232{bottom:705.867067pt;}
.y1f_c02232{bottom:725.387067pt;}
.y1c_c02232{bottom:730.347067pt;}
.y18_c02232{bottom:743.067907pt;}
.y17_c02232{bottom:759.867307pt;}
.y1b_c02232{bottom:776.668171pt;}
.y16_c02232{bottom:776.747227pt;}
.y1a_c02232{bottom:793.548091pt;}
.y15_c02232{bottom:793.627147pt;}
.y19_c02232{bottom:810.428011pt;}
.y14_c02232{bottom:815.387067pt;}
.y11_c02232{bottom:827.307067pt;}
.y10_c02232{bottom:840.667067pt;}
.yf_c02232{bottom:858.987067pt;}
.y13_c02232{bottom:861.707667pt;}
.y12_c02232{bottom:878.507067pt;}
.ye_c02232{bottom:883.467067pt;}
.yc_c02232{bottom:895.387067pt;}
.yb_c02232{bottom:908.747067pt;}
.ya_c02232{bottom:927.147067pt;}
.y9_c02232{bottom:945.547067pt;}
.yd_c02232{bottom:965.067067pt;}
.y8_c02232{bottom:970.027067pt;}
.y6_c02232{bottom:981.947067pt;}
.y7_c02232{bottom:996.427067pt;}
.y5_c02232{bottom:1001.387067pt;}
.y4_c02232{bottom:1018.907067pt;}
.y1_c02232{bottom:1060.587067pt;}
.h8_c02232{height:28.078125pt;}
.h7_c02232{height:32.851406pt;}
.h3_c02232{height:33.253594pt;}
.h4_c02232{height:37.343906pt;}
.h6_c02232{height:51.382969pt;}
.h5_c02232{height:52.012031pt;}
.h2_c02232{height:56.156250pt;}
.h1_c02232{height:56.843750pt;}
.h0_c02232{height:1122.666667pt;}
.w1_c02232{width:793.333333pt;}
.w0_c02232{width:793.626667pt;}
.x0_c02232{left:0.000000pt;}
.x1_c02232{left:113.440000pt;}
.x3_c02232{left:120.560000pt;}
.x4_c02232{left:243.440000pt;}
.x2_c02232{left:384.960000pt;}
.x5_c02232{left:640.880000pt;}
.x7_c02232{left:642.480000pt;}
.x6_c02232{left:656.798936pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c554d7db4567e98b6a209286.woff2')format("woff");}.ff1_c02233{font-family:ff1_c02233;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02233;src:url('chunks/assets/font_ee5d94178c43fd3247514f9f.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;}
.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);}
.v2_c02233{vertical-align:-22.320000px;}
.v1_c02233{vertical-align:-16.919400px;}
.v3_c02233{vertical-align:-5.400000px;}
.v0_c02233{vertical-align:0.000000px;}
.lsd_c02233{letter-spacing:-0.181116px;}
.lsb_c02233{letter-spacing:-0.180360px;}
.lsa_c02233{letter-spacing:-0.176904px;}
.lsc_c02233{letter-spacing:-0.032940px;}
.ls8_c02233{letter-spacing:0.000000px;}
.ls4_c02233{letter-spacing:0.006588px;}
.ls9_c02233{letter-spacing:0.007200px;}
.ls2_c02233{letter-spacing:0.019764px;}
.ls3_c02233{letter-spacing:0.032940px;}
.ls7_c02233{letter-spacing:0.046116px;}
.ls6_c02233{letter-spacing:0.065880px;}
.ls0_c02233{letter-spacing:0.072468px;}
.lse_c02233{letter-spacing:0.098820px;}
.lsf_c02233{letter-spacing:0.105408px;}
.ls5_c02233{letter-spacing:0.131760px;}
.ls1_c02233{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02233{word-spacing:-0.050400px;}
.ws0_c02233{word-spacing:0.000000px;}
.wsb_c02233{word-spacing:0.046116px;}
.wsa_c02233{word-spacing:0.072468px;}
.ws9_c02233{word-spacing:0.744444px;}
.ws8_c02233{word-spacing:4.374432px;}
.ws7_c02233{word-spacing:6.864696px;}
.ws4_c02233{word-spacing:13.670100px;}
.ws3_c02233{word-spacing:13.749156px;}
.ws5_c02233{word-spacing:20.574324px;}
.ws6_c02233{word-spacing:20.600676px;}
.ws2_c02233{word-spacing:48.689172px;}
._5_c02233{width:1.131012px;}
._1_c02233{width:39.870720px;}
._2_c02233{width:40.950720px;}
._4_c02233{width:55.174464px;}
._0_c02233{width:73.850472px;}
._3_c02233{width:1465.940880px;}
.fc0_c02233{color:rgb(0,0,0);}
.fs1_c02233{font-size:42.120000px;}
.fs4_c02233{font-size:47.880000px;}
.fs2_c02233{font-size:60.120000px;}
.fs3_c02233{font-size:65.880000px;}
.fs0_c02233{font-size:72.000000px;}
.y0_c02233{bottom:0.000000px;}
.y3_c02233{bottom:57.360450px;}
.y2_c02233{bottom:78.060450px;}
.y2e_c02233{bottom:121.080600px;}
.y2d_c02233{bottom:152.130600px;}
.y2c_c02233{bottom:183.180600px;}
.y2b_c02233{bottom:214.230600px;}
.y2a_c02233{bottom:245.280600px;}
.y29_c02233{bottom:276.240600px;}
.y28_c02233{bottom:307.290600px;}
.y27_c02233{bottom:338.340600px;}
.y26_c02233{bottom:369.390600px;}
.y25_c02233{bottom:400.440600px;}
.y24_c02233{bottom:431.490600px;}
.y23_c02233{bottom:462.540600px;}
.y22_c02233{bottom:493.590600px;}
.y21_c02233{bottom:524.640600px;}
.y20_c02233{bottom:555.690600px;}
.y1f_c02233{bottom:586.740600px;}
.y1e_c02233{bottom:617.790600px;}
.y1d_c02233{bottom:648.840600px;}
.y1c_c02233{bottom:679.890600px;}
.y1b_c02233{bottom:710.940600px;}
.y1a_c02233{bottom:741.990600px;}
.y19_c02233{bottom:773.040600px;}
.y18_c02233{bottom:804.090600px;}
.y17_c02233{bottom:835.140600px;}
.y16_c02233{bottom:866.190600px;}
.y15_c02233{bottom:897.240600px;}
.y14_c02233{bottom:928.290600px;}
.y10_c02233{bottom:949.531305px;}
.yf_c02233{bottom:968.521215px;}
.ye_c02233{bottom:987.511125px;}
.y13_c02233{bottom:1006.321512px;}
.yd_c02233{bottom:1006.410450px;}
.y12_c02233{bottom:1025.311422px;}
.yc_c02233{bottom:1025.400450px;}
.y11_c02233{bottom:1044.301332px;}
.yb_c02233{bottom:1050.060450px;}
.y8_c02233{bottom:1064.100720px;}
.y7_c02233{bottom:1083.090630px;}
.ya_c02233{bottom:1101.991602px;}
.y6_c02233{bottom:1102.080540px;}
.y9_c02233{bottom:1120.981512px;}
.y5_c02233{bottom:1126.740450px;}
.y4_c02233{bottom:1146.270450px;}
.y1_c02233{bottom:1193.160450px;}
.h4_c02233{height:36.957832px;}
.h3_c02233{height:37.410293px;}
.h5_c02233{height:57.805840px;}
.h6_c02233{height:58.513535px;}
.h2_c02233{height:63.175781px;}
.h1_c02233{height:63.949219px;}
.h0_c02233{height:1263.000000px;}
.w1_c02233{width:892.500000px;}
.w0_c02233{width:892.830000px;}
.x0_c02233{left:0.000000px;}
.x1_c02233{left:127.620000px;}
.x3_c02233{left:135.630000px;}
.x4_c02233{left:273.870000px;}
.x2_c02233{left:433.080000px;}
.x5_c02233{left:720.539694px;}
.x6_c02233{left:738.898803px;}
@media print{
.v2_c02233{vertical-align:-19.840000pt;}
.v1_c02233{vertical-align:-15.039467pt;}
.v3_c02233{vertical-align:-4.800000pt;}
.v0_c02233{vertical-align:0.000000pt;}
.lsd_c02233{letter-spacing:-0.160992pt;}
.lsb_c02233{letter-spacing:-0.160320pt;}
.lsa_c02233{letter-spacing:-0.157248pt;}
.lsc_c02233{letter-spacing:-0.029280pt;}
.ls8_c02233{letter-spacing:0.000000pt;}
.ls4_c02233{letter-spacing:0.005856pt;}
.ls9_c02233{letter-spacing:0.006400pt;}
.ls2_c02233{letter-spacing:0.017568pt;}
.ls3_c02233{letter-spacing:0.029280pt;}
.ls7_c02233{letter-spacing:0.040992pt;}
.ls6_c02233{letter-spacing:0.058560pt;}
.ls0_c02233{letter-spacing:0.064416pt;}
.lse_c02233{letter-spacing:0.087840pt;}
.lsf_c02233{letter-spacing:0.093696pt;}
.ls5_c02233{letter-spacing:0.117120pt;}
.ls1_c02233{letter-spacing:0.161728pt;}
.ws1_c02233{word-spacing:-0.044800pt;}
.ws0_c02233{word-spacing:0.000000pt;}
.wsb_c02233{word-spacing:0.040992pt;}
.wsa_c02233{word-spacing:0.064416pt;}
.ws9_c02233{word-spacing:0.661728pt;}
.ws8_c02233{word-spacing:3.888384pt;}
.ws7_c02233{word-spacing:6.101952pt;}
.ws4_c02233{word-spacing:12.151200pt;}
.ws3_c02233{word-spacing:12.221472pt;}
.ws5_c02233{word-spacing:18.288288pt;}
.ws6_c02233{word-spacing:18.311712pt;}
.ws2_c02233{word-spacing:43.279264pt;}
._5_c02233{width:1.005344pt;}
._1_c02233{width:35.440640pt;}
._2_c02233{width:36.400640pt;}
._4_c02233{width:49.043968pt;}
._0_c02233{width:65.644864pt;}
._3_c02233{width:1303.058560pt;}
.fs1_c02233{font-size:37.440000pt;}
.fs4_c02233{font-size:42.560000pt;}
.fs2_c02233{font-size:53.440000pt;}
.fs3_c02233{font-size:58.560000pt;}
.fs0_c02233{font-size:64.000000pt;}
.y0_c02233{bottom:0.000000pt;}
.y3_c02233{bottom:50.987067pt;}
.y2_c02233{bottom:69.387067pt;}
.y2e_c02233{bottom:107.627200pt;}
.y2d_c02233{bottom:135.227200pt;}
.y2c_c02233{bottom:162.827200pt;}
.y2b_c02233{bottom:190.427200pt;}
.y2a_c02233{bottom:218.027200pt;}
.y29_c02233{bottom:245.547200pt;}
.y28_c02233{bottom:273.147200pt;}
.y27_c02233{bottom:300.747200pt;}
.y26_c02233{bottom:328.347200pt;}
.y25_c02233{bottom:355.947200pt;}
.y24_c02233{bottom:383.547200pt;}
.y23_c02233{bottom:411.147200pt;}
.y22_c02233{bottom:438.747200pt;}
.y21_c02233{bottom:466.347200pt;}
.y20_c02233{bottom:493.947200pt;}
.y1f_c02233{bottom:521.547200pt;}
.y1e_c02233{bottom:549.147200pt;}
.y1d_c02233{bottom:576.747200pt;}
.y1c_c02233{bottom:604.347200pt;}
.y1b_c02233{bottom:631.947200pt;}
.y1a_c02233{bottom:659.547200pt;}
.y19_c02233{bottom:687.147200pt;}
.y18_c02233{bottom:714.747200pt;}
.y17_c02233{bottom:742.347200pt;}
.y16_c02233{bottom:769.947200pt;}
.y15_c02233{bottom:797.547200pt;}
.y14_c02233{bottom:825.147200pt;}
.y10_c02233{bottom:844.027827pt;}
.yf_c02233{bottom:860.907747pt;}
.ye_c02233{bottom:877.787667pt;}
.y13_c02233{bottom:894.508011pt;}
.yd_c02233{bottom:894.587067pt;}
.y12_c02233{bottom:911.387931pt;}
.yc_c02233{bottom:911.467067pt;}
.y11_c02233{bottom:928.267851pt;}
.yb_c02233{bottom:933.387067pt;}
.y8_c02233{bottom:945.867307pt;}
.y7_c02233{bottom:962.747227pt;}
.ya_c02233{bottom:979.548091pt;}
.y6_c02233{bottom:979.627147pt;}
.y9_c02233{bottom:996.428011pt;}
.y5_c02233{bottom:1001.547067pt;}
.y4_c02233{bottom:1018.907067pt;}
.y1_c02233{bottom:1060.587067pt;}
.h4_c02233{height:32.851406pt;}
.h3_c02233{height:33.253594pt;}
.h5_c02233{height:51.382969pt;}
.h6_c02233{height:52.012031pt;}
.h2_c02233{height:56.156250pt;}
.h1_c02233{height:56.843750pt;}
.h0_c02233{height:1122.666667pt;}
.w1_c02233{width:793.333333pt;}
.w0_c02233{width:793.626667pt;}
.x0_c02233{left:0.000000pt;}
.x1_c02233{left:113.440000pt;}
.x3_c02233{left:120.560000pt;}
.x4_c02233{left:243.440000pt;}
.x2_c02233{left:384.960000pt;}
.x5_c02233{left:640.479728pt;}
.x6_c02233{left:656.798936pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c69bb52ea5c5ba074ccfda8.woff2')format("woff");}.ff1_c02234{font-family:ff1_c02234;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02234;src:url('chunks/assets/font_cf93312c69ab5b39d855d569.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02234{font-family:ff3_c02234;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;}
.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;}
.ls15_c02234{letter-spacing:-0.050400px;}
.ls13_c02234{letter-spacing:-0.036000px;}
.ls16_c02234{letter-spacing:-0.021600px;}
.ls12_c02234{letter-spacing:-0.014400px;}
.ls14_c02234{letter-spacing:-0.007200px;}
.ls11_c02234{letter-spacing:0.000000px;}
.ls5_c02234{letter-spacing:0.007200px;}
.lsc_c02234{letter-spacing:0.013176px;}
.ls2_c02234{letter-spacing:0.014400px;}
.lsf_c02234{letter-spacing:0.019764px;}
.ls0_c02234{letter-spacing:0.021600px;}
.ls3_c02234{letter-spacing:0.028800px;}
.ls4_c02234{letter-spacing:0.036000px;}
.ls1_c02234{letter-spacing:0.043200px;}
.ls8_c02234{letter-spacing:0.050400px;}
.lsd_c02234{letter-spacing:0.059292px;}
.ls9_c02234{letter-spacing:0.064800px;}
.lsa_c02234{letter-spacing:0.072000px;}
.lse_c02234{letter-spacing:0.085644px;}
.ls7_c02234{letter-spacing:0.093600px;}
.ls10_c02234{letter-spacing:0.098820px;}
.ls6_c02234{letter-spacing:0.100800px;}
.lsb_c02234{letter-spacing:0.171288px;}
.sc__c02234{text-shadow:none;}
.sc0_c02234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02234{-webkit-text-stroke:0px transparent;}
.sc0_c02234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02234{word-spacing:-18.000000px;}
.ws1_c02234{word-spacing:-17.978400px;}
.ws3_c02234{word-spacing:-0.050400px;}
.ws1c_c02234{word-spacing:-0.007200px;}
.ws21_c02234{word-spacing:-0.006588px;}
.ws2_c02234{word-spacing:0.000000px;}
.ws1f_c02234{word-spacing:0.006588px;}
.ws10_c02234{word-spacing:0.007200px;}
.ws4_c02234{word-spacing:0.014400px;}
.ws1e_c02234{word-spacing:0.032940px;}
.wsf_c02234{word-spacing:0.036000px;}
.ws20_c02234{word-spacing:0.072468px;}
.ws1d_c02234{word-spacing:0.079056px;}
.ws17_c02234{word-spacing:1.015200px;}
.ws1a_c02234{word-spacing:1.303200px;}
.ws1b_c02234{word-spacing:1.324800px;}
.wsc_c02234{word-spacing:2.412000px;}
.wsb_c02234{word-spacing:2.491200px;}
.ws9_c02234{word-spacing:2.505600px;}
.wsa_c02234{word-spacing:2.541600px;}
.ws7_c02234{word-spacing:3.823200px;}
.ws8_c02234{word-spacing:3.945600px;}
.wse_c02234{word-spacing:7.552800px;}
.wsd_c02234{word-spacing:7.581600px;}
.ws12_c02234{word-spacing:9.525600px;}
.ws11_c02234{word-spacing:9.720000px;}
.ws6_c02234{word-spacing:16.833600px;}
.ws5_c02234{word-spacing:16.898400px;}
.ws16_c02234{word-spacing:34.855200px;}
.ws19_c02234{word-spacing:46.224000px;}
.ws18_c02234{word-spacing:46.411200px;}
.ws14_c02234{word-spacing:55.944000px;}
.ws15_c02234{word-spacing:56.109600px;}
.ws13_c02234{word-spacing:56.174400px;}
._0_c02234{margin-left:-1.108800px;}
._1_c02234{width:178.910316px;}
.fc0_c02234{color:rgb(0,0,0);}
.fs1_c02234{font-size:47.880000px;}
.fs2_c02234{font-size:65.880000px;}
.fs0_c02234{font-size:72.000000px;}
.y0_c02234{bottom:0.000000px;}
.y3_c02234{bottom:57.360450px;}
.y2_c02234{bottom:78.060450px;}
.y2e_c02234{bottom:126.930450px;}
.y2d_c02234{bottom:147.630450px;}
.y2c_c02234{bottom:168.330450px;}
.y2b_c02234{bottom:189.030450px;}
.y2a_c02234{bottom:209.730450px;}
.y29_c02234{bottom:230.430450px;}
.y28_c02234{bottom:251.130450px;}
.y27_c02234{bottom:271.830450px;}
.y26_c02234{bottom:292.530450px;}
.y25_c02234{bottom:313.230450px;}
.y24_c02234{bottom:333.930450px;}
.y23_c02234{bottom:354.630450px;}
.y22_c02234{bottom:375.330450px;}
.y21_c02234{bottom:396.030450px;}
.y20_c02234{bottom:416.730450px;}
.y1f_c02234{bottom:437.430450px;}
.y1e_c02234{bottom:458.130450px;}
.y1d_c02234{bottom:477.750600px;}
.y1c_c02234{bottom:544.080450px;}
.y1b_c02234{bottom:563.070450px;}
.y1a_c02234{bottom:582.060450px;}
.y19_c02234{bottom:601.050450px;}
.y18_c02234{bottom:620.310450px;}
.y17_c02234{bottom:641.010450px;}
.y16_c02234{bottom:661.890450px;}
.y15_c02234{bottom:682.590450px;}
.y14_c02234{bottom:703.290450px;}
.y13_c02234{bottom:723.990450px;}
.y12_c02234{bottom:744.690450px;}
.y11_c02234{bottom:765.390450px;}
.y10_c02234{bottom:786.630450px;}
.yf_c02234{bottom:808.050450px;}
.ye_c02234{bottom:839.820450px;}
.yd_c02234{bottom:871.050450px;}
.yc_c02234{bottom:902.100450px;}
.yb_c02234{bottom:933.150450px;}
.ya_c02234{bottom:964.200450px;}
.y9_c02234{bottom:995.250450px;}
.y8_c02234{bottom:1026.300450px;}
.y7_c02234{bottom:1057.350450px;}
.y6_c02234{bottom:1088.220450px;}
.y5_c02234{bottom:1114.590450px;}
.y4_c02234{bottom:1139.970450px;}
.y1_c02234{bottom:1193.160450px;}
.h5_c02234{height:42.011895px;}
.h3_c02234{height:42.526230px;}
.h4_c02234{height:58.513535px;}
.h2_c02234{height:63.175781px;}
.h1_c02234{height:63.949219px;}
.h0_c02234{height:1263.000000px;}
.w1_c02234{width:892.500000px;}
.w0_c02234{width:892.830000px;}
.x0_c02234{left:0.000000px;}
.x6_c02234{left:117.000000px;}
.x1_c02234{left:127.620000px;}
.x4_c02234{left:135.630000px;}
.x3_c02234{left:148.950000px;}
.x5_c02234{left:188.820000px;}
.x2_c02234{left:433.080000px;}
@media print{
.v0_c02234{vertical-align:0.000000pt;}
.ls15_c02234{letter-spacing:-0.044800pt;}
.ls13_c02234{letter-spacing:-0.032000pt;}
.ls16_c02234{letter-spacing:-0.019200pt;}
.ls12_c02234{letter-spacing:-0.012800pt;}
.ls14_c02234{letter-spacing:-0.006400pt;}
.ls11_c02234{letter-spacing:0.000000pt;}
.ls5_c02234{letter-spacing:0.006400pt;}
.lsc_c02234{letter-spacing:0.011712pt;}
.ls2_c02234{letter-spacing:0.012800pt;}
.lsf_c02234{letter-spacing:0.017568pt;}
.ls0_c02234{letter-spacing:0.019200pt;}
.ls3_c02234{letter-spacing:0.025600pt;}
.ls4_c02234{letter-spacing:0.032000pt;}
.ls1_c02234{letter-spacing:0.038400pt;}
.ls8_c02234{letter-spacing:0.044800pt;}
.lsd_c02234{letter-spacing:0.052704pt;}
.ls9_c02234{letter-spacing:0.057600pt;}
.lsa_c02234{letter-spacing:0.064000pt;}
.lse_c02234{letter-spacing:0.076128pt;}
.ls7_c02234{letter-spacing:0.083200pt;}
.ls10_c02234{letter-spacing:0.087840pt;}
.ls6_c02234{letter-spacing:0.089600pt;}
.lsb_c02234{letter-spacing:0.152256pt;}
.ws0_c02234{word-spacing:-16.000000pt;}
.ws1_c02234{word-spacing:-15.980800pt;}
.ws3_c02234{word-spacing:-0.044800pt;}
.ws1c_c02234{word-spacing:-0.006400pt;}
.ws21_c02234{word-spacing:-0.005856pt;}
.ws2_c02234{word-spacing:0.000000pt;}
.ws1f_c02234{word-spacing:0.005856pt;}
.ws10_c02234{word-spacing:0.006400pt;}
.ws4_c02234{word-spacing:0.012800pt;}
.ws1e_c02234{word-spacing:0.029280pt;}
.wsf_c02234{word-spacing:0.032000pt;}
.ws20_c02234{word-spacing:0.064416pt;}
.ws1d_c02234{word-spacing:0.070272pt;}
.ws17_c02234{word-spacing:0.902400pt;}
.ws1a_c02234{word-spacing:1.158400pt;}
.ws1b_c02234{word-spacing:1.177600pt;}
.wsc_c02234{word-spacing:2.144000pt;}
.wsb_c02234{word-spacing:2.214400pt;}
.ws9_c02234{word-spacing:2.227200pt;}
.wsa_c02234{word-spacing:2.259200pt;}
.ws7_c02234{word-spacing:3.398400pt;}
.ws8_c02234{word-spacing:3.507200pt;}
.wse_c02234{word-spacing:6.713600pt;}
.wsd_c02234{word-spacing:6.739200pt;}
.ws12_c02234{word-spacing:8.467200pt;}
.ws11_c02234{word-spacing:8.640000pt;}
.ws6_c02234{word-spacing:14.963200pt;}
.ws5_c02234{word-spacing:15.020800pt;}
.ws16_c02234{word-spacing:30.982400pt;}
.ws19_c02234{word-spacing:41.088000pt;}
.ws18_c02234{word-spacing:41.254400pt;}
.ws14_c02234{word-spacing:49.728000pt;}
.ws15_c02234{word-spacing:49.875200pt;}
.ws13_c02234{word-spacing:49.932800pt;}
._0_c02234{margin-left:-0.985600pt;}
._1_c02234{width:159.031392pt;}
.fs1_c02234{font-size:42.560000pt;}
.fs2_c02234{font-size:58.560000pt;}
.fs0_c02234{font-size:64.000000pt;}
.y0_c02234{bottom:0.000000pt;}
.y3_c02234{bottom:50.987067pt;}
.y2_c02234{bottom:69.387067pt;}
.y2e_c02234{bottom:112.827067pt;}
.y2d_c02234{bottom:131.227067pt;}
.y2c_c02234{bottom:149.627067pt;}
.y2b_c02234{bottom:168.027067pt;}
.y2a_c02234{bottom:186.427067pt;}
.y29_c02234{bottom:204.827067pt;}
.y28_c02234{bottom:223.227067pt;}
.y27_c02234{bottom:241.627067pt;}
.y26_c02234{bottom:260.027067pt;}
.y25_c02234{bottom:278.427067pt;}
.y24_c02234{bottom:296.827067pt;}
.y23_c02234{bottom:315.227067pt;}
.y22_c02234{bottom:333.627067pt;}
.y21_c02234{bottom:352.027067pt;}
.y20_c02234{bottom:370.427067pt;}
.y1f_c02234{bottom:388.827067pt;}
.y1e_c02234{bottom:407.227067pt;}
.y1d_c02234{bottom:424.667200pt;}
.y1c_c02234{bottom:483.627067pt;}
.y1b_c02234{bottom:500.507067pt;}
.y1a_c02234{bottom:517.387067pt;}
.y19_c02234{bottom:534.267067pt;}
.y18_c02234{bottom:551.387067pt;}
.y17_c02234{bottom:569.787067pt;}
.y16_c02234{bottom:588.347067pt;}
.y15_c02234{bottom:606.747067pt;}
.y14_c02234{bottom:625.147067pt;}
.y13_c02234{bottom:643.547067pt;}
.y12_c02234{bottom:661.947067pt;}
.y11_c02234{bottom:680.347067pt;}
.y10_c02234{bottom:699.227067pt;}
.yf_c02234{bottom:718.267067pt;}
.ye_c02234{bottom:746.507067pt;}
.yd_c02234{bottom:774.267067pt;}
.yc_c02234{bottom:801.867067pt;}
.yb_c02234{bottom:829.467067pt;}
.ya_c02234{bottom:857.067067pt;}
.y9_c02234{bottom:884.667067pt;}
.y8_c02234{bottom:912.267067pt;}
.y7_c02234{bottom:939.867067pt;}
.y6_c02234{bottom:967.307067pt;}
.y5_c02234{bottom:990.747067pt;}
.y4_c02234{bottom:1013.307067pt;}
.y1_c02234{bottom:1060.587067pt;}
.h5_c02234{height:37.343906pt;}
.h3_c02234{height:37.801094pt;}
.h4_c02234{height:52.012031pt;}
.h2_c02234{height:56.156250pt;}
.h1_c02234{height:56.843750pt;}
.h0_c02234{height:1122.666667pt;}
.w1_c02234{width:793.333333pt;}
.w0_c02234{width:793.626667pt;}
.x0_c02234{left:0.000000pt;}
.x6_c02234{left:104.000000pt;}
.x1_c02234{left:113.440000pt;}
.x4_c02234{left:120.560000pt;}
.x3_c02234{left:132.400000pt;}
.x5_c02234{left:167.840000pt;}
.x2_c02234{left:384.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_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_34f35ce02ddc465a73845aa1.woff2')format("woff");}.ff1_c02235{font-family:ff1_c02235;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02235;src:url('chunks/assets/font_62d956e6a22b5b60e13a4d37.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_a27142bc2b169ad72285282b.woff2')format("woff");}.ff3_c02235{font-family:ff3_c02235;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_c02235;src:url('chunks/assets/font_fc4e14ccc12ebbdded17ea51.woff2')format("woff");}.ff4_c02235{font-family:ff4_c02235;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_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);}
.v2_c02235{vertical-align:-9.000000px;}
.v1_c02235{vertical-align:-5.400000px;}
.v0_c02235{vertical-align:0.000000px;}
.ls15_c02235{letter-spacing:-0.028800px;}
.ls14_c02235{letter-spacing:-0.021600px;}
.ls12_c02235{letter-spacing:-0.014400px;}
.ls13_c02235{letter-spacing:-0.007200px;}
.ls11_c02235{letter-spacing:0.000000px;}
.ls4_c02235{letter-spacing:0.007200px;}
.ls0_c02235{letter-spacing:0.013176px;}
.lsa_c02235{letter-spacing:0.014400px;}
.ls7_c02235{letter-spacing:0.019764px;}
.ls3_c02235{letter-spacing:0.021600px;}
.lsb_c02235{letter-spacing:0.028800px;}
.ls6_c02235{letter-spacing:0.032940px;}
.ls10_c02235{letter-spacing:0.036000px;}
.ls8_c02235{letter-spacing:0.039528px;}
.ls9_c02235{letter-spacing:0.043200px;}
.ls5_c02235{letter-spacing:0.046116px;}
.ls16_c02235{letter-spacing:0.052704px;}
.lsc_c02235{letter-spacing:0.064800px;}
.lsf_c02235{letter-spacing:0.065880px;}
.lsd_c02235{letter-spacing:0.072000px;}
.lse_c02235{letter-spacing:0.122400px;}
.ls1_c02235{letter-spacing:0.144000px;}
.ls2_c02235{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02235{word-spacing:-18.122400px;}
.ws0_c02235{word-spacing:-12.151944px;}
.ws1d_c02235{word-spacing:-0.216000px;}
.ws12_c02235{word-spacing:-0.180000px;}
.wsb_c02235{word-spacing:-0.100800px;}
.ws1e_c02235{word-spacing:-0.086400px;}
.ws3_c02235{word-spacing:-0.050400px;}
.ws1b_c02235{word-spacing:-0.028800px;}
.ws7_c02235{word-spacing:-0.021600px;}
.ws10_c02235{word-spacing:-0.014400px;}
.ws2_c02235{word-spacing:0.000000px;}
.ws9_c02235{word-spacing:0.007200px;}
.wsc_c02235{word-spacing:0.021600px;}
.ws1a_c02235{word-spacing:0.026352px;}
.ws11_c02235{word-spacing:0.028800px;}
.ws1c_c02235{word-spacing:0.039528px;}
.ws8_c02235{word-spacing:0.046116px;}
.ws13_c02235{word-spacing:0.052704px;}
.wsa_c02235{word-spacing:0.059292px;}
.wsf_c02235{word-spacing:0.086400px;}
.ws14_c02235{word-spacing:1.713600px;}
.ws15_c02235{word-spacing:1.800000px;}
.ws5_c02235{word-spacing:2.872800px;}
.ws6_c02235{word-spacing:2.894400px;}
.ws17_c02235{word-spacing:3.736800px;}
.ws16_c02235{word-spacing:3.902400px;}
.ws4_c02235{word-spacing:10.058400px;}
.wsd_c02235{word-spacing:14.623200px;}
.wse_c02235{word-spacing:14.788800px;}
.ws18_c02235{word-spacing:17.942400px;}
.ws19_c02235{word-spacing:18.021600px;}
._1_c02235{margin-left:-1.377072px;}
._5_c02235{width:1.045872px;}
._2_c02235{width:141.689772px;}
._3_c02235{width:145.431756px;}
._0_c02235{width:191.501640px;}
._4_c02235{width:294.089976px;}
.fc0_c02235{color:rgb(0,0,0);}
.fs2_c02235{font-size:47.880000px;}
.fs1_c02235{font-size:65.880000px;}
.fs0_c02235{font-size:72.000000px;}
.y0_c02235{bottom:0.000000px;}
.y3_c02235{bottom:57.360450px;}
.y2_c02235{bottom:78.060450px;}
.y35_c02235{bottom:129.096588px;}
.y34_c02235{bottom:149.796309px;}
.y33_c02235{bottom:170.496030px;}
.y32_c02235{bottom:191.195751px;}
.y31_c02235{bottom:211.895472px;}
.y30_c02235{bottom:232.595193px;}
.y2f_c02235{bottom:253.294914px;}
.y2e_c02235{bottom:273.994635px;}
.y2d_c02235{bottom:294.694356px;}
.y2c_c02235{bottom:315.394077px;}
.y2b_c02235{bottom:336.093798px;}
.y2a_c02235{bottom:356.793519px;}
.y29_c02235{bottom:377.493240px;}
.y28_c02235{bottom:398.192961px;}
.y27_c02235{bottom:418.892682px;}
.y26_c02235{bottom:439.592403px;}
.y25_c02235{bottom:460.292124px;}
.y24_c02235{bottom:480.991845px;}
.y23_c02235{bottom:501.691566px;}
.y22_c02235{bottom:522.391287px;}
.y21_c02235{bottom:543.091008px;}
.y20_c02235{bottom:563.790729px;}
.y1f_c02235{bottom:584.490450px;}
.y1e_c02235{bottom:599.160450px;}
.y1d_c02235{bottom:620.850450px;}
.y1c_c02235{bottom:641.820450px;}
.y1b_c02235{bottom:661.980450px;}
.y1a_c02235{bottom:682.950450px;}
.y19_c02235{bottom:703.200450px;}
.y18_c02235{bottom:723.900450px;}
.y17_c02235{bottom:744.600450px;}
.y16_c02235{bottom:765.300450px;}
.y15_c02235{bottom:786.270450px;}
.y14_c02235{bottom:806.430450px;}
.y13_c02235{bottom:827.130450px;}
.y12_c02235{bottom:847.830450px;}
.y11_c02235{bottom:868.530450px;}
.y10_c02235{bottom:889.230450px;}
.yf_c02235{bottom:909.930450px;}
.ye_c02235{bottom:930.900450px;}
.yd_c02235{bottom:951.150450px;}
.yc_c02235{bottom:972.120450px;}
.yb_c02235{bottom:993.540600px;}
.ya_c02235{bottom:1014.960450px;}
.y9_c02235{bottom:1036.470450px;}
.y8_c02235{bottom:1056.540450px;}
.y7_c02235{bottom:1077.240450px;}
.y6_c02235{bottom:1099.290450px;}
.y5_c02235{bottom:1119.270450px;}
.y4_c02235{bottom:1139.970450px;}
.y1_c02235{bottom:1193.160450px;}
.h6_c02235{height:42.011895px;}
.h5_c02235{height:58.513535px;}
.h2_c02235{height:63.175781px;}
.h1_c02235{height:63.949219px;}
.h3_c02235{height:65.228906px;}
.h4_c02235{height:70.628906px;}
.h0_c02235{height:1263.000000px;}
.w1_c02235{width:892.500000px;}
.w0_c02235{width:892.830000px;}
.x0_c02235{left:0.000000px;}
.x1_c02235{left:127.620000px;}
.x3_c02235{left:135.630000px;}
.x4_c02235{left:252.630000px;}
.x2_c02235{left:433.080000px;}
@media print{
.v2_c02235{vertical-align:-8.000000pt;}
.v1_c02235{vertical-align:-4.800000pt;}
.v0_c02235{vertical-align:0.000000pt;}
.ls15_c02235{letter-spacing:-0.025600pt;}
.ls14_c02235{letter-spacing:-0.019200pt;}
.ls12_c02235{letter-spacing:-0.012800pt;}
.ls13_c02235{letter-spacing:-0.006400pt;}
.ls11_c02235{letter-spacing:0.000000pt;}
.ls4_c02235{letter-spacing:0.006400pt;}
.ls0_c02235{letter-spacing:0.011712pt;}
.lsa_c02235{letter-spacing:0.012800pt;}
.ls7_c02235{letter-spacing:0.017568pt;}
.ls3_c02235{letter-spacing:0.019200pt;}
.lsb_c02235{letter-spacing:0.025600pt;}
.ls6_c02235{letter-spacing:0.029280pt;}
.ls10_c02235{letter-spacing:0.032000pt;}
.ls8_c02235{letter-spacing:0.035136pt;}
.ls9_c02235{letter-spacing:0.038400pt;}
.ls5_c02235{letter-spacing:0.040992pt;}
.ls16_c02235{letter-spacing:0.046848pt;}
.lsc_c02235{letter-spacing:0.057600pt;}
.lsf_c02235{letter-spacing:0.058560pt;}
.lsd_c02235{letter-spacing:0.064000pt;}
.lse_c02235{letter-spacing:0.108800pt;}
.ls1_c02235{letter-spacing:0.128000pt;}
.ls2_c02235{letter-spacing:0.161728pt;}
.ws1_c02235{word-spacing:-16.108800pt;}
.ws0_c02235{word-spacing:-10.801728pt;}
.ws1d_c02235{word-spacing:-0.192000pt;}
.ws12_c02235{word-spacing:-0.160000pt;}
.wsb_c02235{word-spacing:-0.089600pt;}
.ws1e_c02235{word-spacing:-0.076800pt;}
.ws3_c02235{word-spacing:-0.044800pt;}
.ws1b_c02235{word-spacing:-0.025600pt;}
.ws7_c02235{word-spacing:-0.019200pt;}
.ws10_c02235{word-spacing:-0.012800pt;}
.ws2_c02235{word-spacing:0.000000pt;}
.ws9_c02235{word-spacing:0.006400pt;}
.wsc_c02235{word-spacing:0.019200pt;}
.ws1a_c02235{word-spacing:0.023424pt;}
.ws11_c02235{word-spacing:0.025600pt;}
.ws1c_c02235{word-spacing:0.035136pt;}
.ws8_c02235{word-spacing:0.040992pt;}
.ws13_c02235{word-spacing:0.046848pt;}
.wsa_c02235{word-spacing:0.052704pt;}
.wsf_c02235{word-spacing:0.076800pt;}
.ws14_c02235{word-spacing:1.523200pt;}
.ws15_c02235{word-spacing:1.600000pt;}
.ws5_c02235{word-spacing:2.553600pt;}
.ws6_c02235{word-spacing:2.572800pt;}
.ws17_c02235{word-spacing:3.321600pt;}
.ws16_c02235{word-spacing:3.468800pt;}
.ws4_c02235{word-spacing:8.940800pt;}
.wsd_c02235{word-spacing:12.998400pt;}
.wse_c02235{word-spacing:13.145600pt;}
.ws18_c02235{word-spacing:15.948800pt;}
.ws19_c02235{word-spacing:16.019200pt;}
._1_c02235{margin-left:-1.224064pt;}
._5_c02235{width:0.929664pt;}
._2_c02235{width:125.946464pt;}
._3_c02235{width:129.272672pt;}
._0_c02235{width:170.223680pt;}
._4_c02235{width:261.413312pt;}
.fs2_c02235{font-size:42.560000pt;}
.fs1_c02235{font-size:58.560000pt;}
.fs0_c02235{font-size:64.000000pt;}
.y0_c02235{bottom:0.000000pt;}
.y3_c02235{bottom:50.987067pt;}
.y2_c02235{bottom:69.387067pt;}
.y35_c02235{bottom:114.752523pt;}
.y34_c02235{bottom:133.152275pt;}
.y33_c02235{bottom:151.552027pt;}
.y32_c02235{bottom:169.951779pt;}
.y31_c02235{bottom:188.351531pt;}
.y30_c02235{bottom:206.751283pt;}
.y2f_c02235{bottom:225.151035pt;}
.y2e_c02235{bottom:243.550787pt;}
.y2d_c02235{bottom:261.950539pt;}
.y2c_c02235{bottom:280.350291pt;}
.y2b_c02235{bottom:298.750043pt;}
.y2a_c02235{bottom:317.149795pt;}
.y29_c02235{bottom:335.549547pt;}
.y28_c02235{bottom:353.949299pt;}
.y27_c02235{bottom:372.349051pt;}
.y26_c02235{bottom:390.748803pt;}
.y25_c02235{bottom:409.148555pt;}
.y24_c02235{bottom:427.548307pt;}
.y23_c02235{bottom:445.948059pt;}
.y22_c02235{bottom:464.347811pt;}
.y21_c02235{bottom:482.747563pt;}
.y20_c02235{bottom:501.147315pt;}
.y1f_c02235{bottom:519.547067pt;}
.y1e_c02235{bottom:532.587067pt;}
.y1d_c02235{bottom:551.867067pt;}
.y1c_c02235{bottom:570.507067pt;}
.y1b_c02235{bottom:588.427067pt;}
.y1a_c02235{bottom:607.067067pt;}
.y19_c02235{bottom:625.067067pt;}
.y18_c02235{bottom:643.467067pt;}
.y17_c02235{bottom:661.867067pt;}
.y16_c02235{bottom:680.267067pt;}
.y15_c02235{bottom:698.907067pt;}
.y14_c02235{bottom:716.827067pt;}
.y13_c02235{bottom:735.227067pt;}
.y12_c02235{bottom:753.627067pt;}
.y11_c02235{bottom:772.027067pt;}
.y10_c02235{bottom:790.427067pt;}
.yf_c02235{bottom:808.827067pt;}
.ye_c02235{bottom:827.467067pt;}
.yd_c02235{bottom:845.467067pt;}
.yc_c02235{bottom:864.107067pt;}
.yb_c02235{bottom:883.147200pt;}
.ya_c02235{bottom:902.187067pt;}
.y9_c02235{bottom:921.307067pt;}
.y8_c02235{bottom:939.147067pt;}
.y7_c02235{bottom:957.547067pt;}
.y6_c02235{bottom:977.147067pt;}
.y5_c02235{bottom:994.907067pt;}
.y4_c02235{bottom:1013.307067pt;}
.y1_c02235{bottom:1060.587067pt;}
.h6_c02235{height:37.343906pt;}
.h5_c02235{height:52.012031pt;}
.h2_c02235{height:56.156250pt;}
.h1_c02235{height:56.843750pt;}
.h3_c02235{height:57.981250pt;}
.h4_c02235{height:62.781250pt;}
.h0_c02235{height:1122.666667pt;}
.w1_c02235{width:793.333333pt;}
.w0_c02235{width:793.626667pt;}
.x0_c02235{left:0.000000pt;}
.x1_c02235{left:113.440000pt;}
.x3_c02235{left:120.560000pt;}
.x4_c02235{left:224.560000pt;}
.x2_c02235{left:384.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_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_cf70dd334ecfa71b848b531b.woff2')format("woff");}.ff1_c02236{font-family:ff1_c02236;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02236;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v6_c02236{vertical-align:-6.841800px;}
.v3_c02236{vertical-align:-5.400000px;}
.v2_c02236{vertical-align:-4.320000px;}
.v7_c02236{vertical-align:-1.440000px;}
.v0_c02236{vertical-align:0.000000px;}
.va_c02236{vertical-align:1.438200px;}
.v9_c02236{vertical-align:2.520000px;}
.v5_c02236{vertical-align:4.320000px;}
.v1_c02236{vertical-align:5.400000px;}
.v8_c02236{vertical-align:7.920000px;}
.v4_c02236{vertical-align:9.720000px;}
.ls25_c02236{letter-spacing:-0.086184px;}
.ls21_c02236{letter-spacing:-0.043200px;}
.ls23_c02236{letter-spacing:-0.019152px;}
.ls22_c02236{letter-spacing:-0.010800px;}
.ls1f_c02236{letter-spacing:-0.006012px;}
.ls1d_c02236{letter-spacing:0.000000px;}
.lsf_c02236{letter-spacing:0.007200px;}
.ls10_c02236{letter-spacing:0.010800px;}
.ls0_c02236{letter-spacing:0.014400px;}
.ls12_c02236{letter-spacing:0.028728px;}
.lse_c02236{letter-spacing:0.028800px;}
.ls14_c02236{letter-spacing:0.032400px;}
.ls17_c02236{letter-spacing:0.037800px;}
.lsd_c02236{letter-spacing:0.039528px;}
.ls11_c02236{letter-spacing:0.043092px;}
.ls16_c02236{letter-spacing:0.043200px;}
.ls2_c02236{letter-spacing:0.052704px;}
.ls8_c02236{letter-spacing:0.059292px;}
.ls13_c02236{letter-spacing:0.059400px;}
.lsc_c02236{letter-spacing:0.072468px;}
.ls1a_c02236{letter-spacing:0.076608px;}
.ls5_c02236{letter-spacing:0.079056px;}
.lsa_c02236{letter-spacing:0.085644px;}
.ls7_c02236{letter-spacing:0.092232px;}
.ls4_c02236{letter-spacing:0.098820px;}
.ls15_c02236{letter-spacing:0.110124px;}
.ls3_c02236{letter-spacing:0.138348px;}
.ls1e_c02236{letter-spacing:0.144288px;}
.ls20_c02236{letter-spacing:0.151200px;}
.ls6_c02236{letter-spacing:0.151524px;}
.lsb_c02236{letter-spacing:0.158112px;}
.ls1c_c02236{letter-spacing:0.162792px;}
.ls24_c02236{letter-spacing:0.167580px;}
.ls9_c02236{letter-spacing:0.177876px;}
.ls1_c02236{letter-spacing:0.180360px;}
.ls1b_c02236{letter-spacing:0.181944px;}
.ls19_c02236{letter-spacing:0.205884px;}
.ls26_c02236{letter-spacing:144.180000px;}
.ls27_c02236{letter-spacing:145.621800px;}
.ls18_c02236{letter-spacing:200.790000px;}
.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;}
}
.ws3_c02236{word-spacing:-16.647876px;}
.ws14_c02236{word-spacing:-0.296856px;}
.ws13_c02236{word-spacing:-0.272916px;}
.ws15_c02236{word-spacing:-0.253764px;}
.ws11_c02236{word-spacing:-0.115200px;}
.wsc_c02236{word-spacing:-0.090180px;}
.wsa_c02236{word-spacing:-0.086400px;}
.ws9_c02236{word-spacing:-0.050400px;}
.wsb_c02236{word-spacing:-0.007200px;}
.wse_c02236{word-spacing:-0.006588px;}
.ws8_c02236{word-spacing:0.000000px;}
.wsf_c02236{word-spacing:0.013176px;}
.wsd_c02236{word-spacing:0.039528px;}
.ws10_c02236{word-spacing:0.052704px;}
.ws12_c02236{word-spacing:0.118800px;}
.ws7_c02236{word-spacing:58.969440px;}
.ws2_c02236{word-spacing:132.802380px;}
.ws1_c02236{word-spacing:165.562380px;}
.ws6_c02236{word-spacing:166.093020px;}
.ws0_c02236{word-spacing:198.706608px;}
.ws5_c02236{word-spacing:199.213020px;}
.ws4_c02236{word-spacing:281.122380px;}
._0_c02236{margin-left:-1.148292px;}
._29_c02236{width:9.906048px;}
._24_c02236{width:11.518200px;}
._10_c02236{width:47.809440px;}
._d_c02236{width:49.958496px;}
._1f_c02236{width:51.887628px;}
._1a_c02236{width:65.764440px;}
._1b_c02236{width:72.837000px;}
._21_c02236{width:75.420000px;}
._8_c02236{width:82.716372px;}
._14_c02236{width:84.474000px;}
._1c_c02236{width:87.278400px;}
._13_c02236{width:88.581600px;}
._2a_c02236{width:89.975880px;}
._23_c02236{width:91.252152px;}
._3_c02236{width:95.850000px;}
._1d_c02236{width:104.045940px;}
._19_c02236{width:108.347688px;}
._5_c02236{width:116.194248px;}
._18_c02236{width:119.311524px;}
._15_c02236{width:122.220000px;}
._22_c02236{width:125.820000px;}
._16_c02236{width:127.980000px;}
._20_c02236{width:129.885948px;}
._1e_c02236{width:132.915600px;}
._27_c02236{width:134.074296px;}
._17_c02236{width:139.618944px;}
._25_c02236{width:144.180000px;}
._2_c02236{width:171.448704px;}
._28_c02236{width:173.207628px;}
._26_c02236{width:224.892828px;}
._9_c02236{width:290.502504px;}
._e_c02236{width:297.280620px;}
._6_c02236{width:337.887864px;}
._1_c02236{width:339.799284px;}
._4_c02236{width:351.498672px;}
._7_c02236{width:367.819272px;}
._11_c02236{width:434.114424px;}
._12_c02236{width:452.479536px;}
._b_c02236{width:496.581732px;}
._a_c02236{width:500.084424px;}
._f_c02236{width:516.490776px;}
._c_c02236{width:562.341024px;}
.fc0_c02236{color:rgb(0,0,0);}
.fs4_c02236{font-size:47.880000px;}
.fs1_c02236{font-size:54.000000px;}
.fs2_c02236{font-size:60.120000px;}
.fs3_c02236{font-size:65.880000px;}
.fs0_c02236{font-size:72.000000px;}
.y0_c02236{bottom:0.000000px;}
.y3_c02236{bottom:57.360450px;}
.y2_c02236{bottom:78.060450px;}
.y2f_c02236{bottom:130.440450px;}
.y2e_c02236{bottom:145.920900px;}
.y2d_c02236{bottom:161.490450px;}
.y2c_c02236{bottom:176.970900px;}
.y2b_c02236{bottom:192.540450px;}
.y2a_c02236{bottom:208.020900px;}
.y29_c02236{bottom:223.590450px;}
.y28_c02236{bottom:239.070450px;}
.y27_c02236{bottom:239.429550px;}
.y26_c02236{bottom:258.060450px;}
.y25_c02236{bottom:258.419550px;}
.y24_c02236{bottom:277.050450px;}
.y23_c02236{bottom:277.410450px;}
.y22_c02236{bottom:296.400450px;}
.y21_c02236{bottom:314.940450px;}
.y20_c02236{bottom:315.390450px;}
.y1f_c02236{bottom:335.010450px;}
.y1e_c02236{bottom:354.180450px;}
.y1d_c02236{bottom:370.650450px;}
.y1c_c02236{bottom:391.890450px;}
.y1b_c02236{bottom:413.220450px;}
.y1a_c02236{bottom:433.740450px;}
.y19_c02236{bottom:451.380450px;}
.y18_c02236{bottom:470.370600px;}
.y17_c02236{bottom:489.360600px;}
.y16_c02236{bottom:509.070450px;}
.y15_c02236{bottom:528.060450px;}
.y14_c02236{bottom:546.960450px;}
.y13_c02236{bottom:565.950450px;}
.y12_c02236{bottom:584.940450px;}
.y11_c02236{bottom:603.930450px;}
.y10_c02236{bottom:622.920450px;}
.yf_c02236{bottom:641.460450px;}
.ye_c02236{bottom:659.370450px;}
.yd_c02236{bottom:682.500450px;}
.yc_c02236{bottom:698.970450px;}
.yb_c02236{bottom:719.670450px;}
.ya_c02236{bottom:740.370450px;}
.y9_c02236{bottom:761.070450px;}
.y8_c02236{bottom:781.770450px;}
.y7_c02236{bottom:802.650450px;}
.y6_c02236{bottom:819.210450px;}
.y5_c02236{bottom:1108.920450px;}
.y4_c02236{bottom:1139.970450px;}
.y1_c02236{bottom:1193.160450px;}
.h3_c02236{height:47.961914px;}
.h4_c02236{height:53.397598px;}
.h5_c02236{height:58.513535px;}
.h7_c02236{height:61.033535px;}
.h8_c02236{height:62.473535px;}
.h6_c02236{height:62.833535px;}
.h2_c02236{height:63.175781px;}
.h1_c02236{height:63.949219px;}
.h0_c02236{height:1263.000000px;}
.w1_c02236{width:892.500000px;}
.w0_c02236{width:892.830000px;}
.x0_c02236{left:0.000000px;}
.x1_c02236{left:127.620000px;}
.x5_c02236{left:135.630000px;}
.x7_c02236{left:143.910000px;}
.x8_c02236{left:165.060000px;}
.x6_c02236{left:189.000000px;}
.x9_c02236{left:220.680000px;}
.x2_c02236{left:433.080000px;}
.x4_c02236{left:446.580000px;}
.x3_c02236{left:717.120000px;}
@media print{
.v6_c02236{vertical-align:-6.081600pt;}
.v3_c02236{vertical-align:-4.800000pt;}
.v2_c02236{vertical-align:-3.840000pt;}
.v7_c02236{vertical-align:-1.280000pt;}
.v0_c02236{vertical-align:0.000000pt;}
.va_c02236{vertical-align:1.278400pt;}
.v9_c02236{vertical-align:2.240000pt;}
.v5_c02236{vertical-align:3.840000pt;}
.v1_c02236{vertical-align:4.800000pt;}
.v8_c02236{vertical-align:7.040000pt;}
.v4_c02236{vertical-align:8.640000pt;}
.ls25_c02236{letter-spacing:-0.076608pt;}
.ls21_c02236{letter-spacing:-0.038400pt;}
.ls23_c02236{letter-spacing:-0.017024pt;}
.ls22_c02236{letter-spacing:-0.009600pt;}
.ls1f_c02236{letter-spacing:-0.005344pt;}
.ls1d_c02236{letter-spacing:0.000000pt;}
.lsf_c02236{letter-spacing:0.006400pt;}
.ls10_c02236{letter-spacing:0.009600pt;}
.ls0_c02236{letter-spacing:0.012800pt;}
.ls12_c02236{letter-spacing:0.025536pt;}
.lse_c02236{letter-spacing:0.025600pt;}
.ls14_c02236{letter-spacing:0.028800pt;}
.ls17_c02236{letter-spacing:0.033600pt;}
.lsd_c02236{letter-spacing:0.035136pt;}
.ls11_c02236{letter-spacing:0.038304pt;}
.ls16_c02236{letter-spacing:0.038400pt;}
.ls2_c02236{letter-spacing:0.046848pt;}
.ls8_c02236{letter-spacing:0.052704pt;}
.ls13_c02236{letter-spacing:0.052800pt;}
.lsc_c02236{letter-spacing:0.064416pt;}
.ls1a_c02236{letter-spacing:0.068096pt;}
.ls5_c02236{letter-spacing:0.070272pt;}
.lsa_c02236{letter-spacing:0.076128pt;}
.ls7_c02236{letter-spacing:0.081984pt;}
.ls4_c02236{letter-spacing:0.087840pt;}
.ls15_c02236{letter-spacing:0.097888pt;}
.ls3_c02236{letter-spacing:0.122976pt;}
.ls1e_c02236{letter-spacing:0.128256pt;}
.ls20_c02236{letter-spacing:0.134400pt;}
.ls6_c02236{letter-spacing:0.134688pt;}
.lsb_c02236{letter-spacing:0.140544pt;}
.ls1c_c02236{letter-spacing:0.144704pt;}
.ls24_c02236{letter-spacing:0.148960pt;}
.ls9_c02236{letter-spacing:0.158112pt;}
.ls1_c02236{letter-spacing:0.160320pt;}
.ls1b_c02236{letter-spacing:0.161728pt;}
.ls19_c02236{letter-spacing:0.183008pt;}
.ls26_c02236{letter-spacing:128.160000pt;}
.ls27_c02236{letter-spacing:129.441600pt;}
.ls18_c02236{letter-spacing:178.480000pt;}
.ws3_c02236{word-spacing:-14.798112pt;}
.ws14_c02236{word-spacing:-0.263872pt;}
.ws13_c02236{word-spacing:-0.242592pt;}
.ws15_c02236{word-spacing:-0.225568pt;}
.ws11_c02236{word-spacing:-0.102400pt;}
.wsc_c02236{word-spacing:-0.080160pt;}
.wsa_c02236{word-spacing:-0.076800pt;}
.ws9_c02236{word-spacing:-0.044800pt;}
.wsb_c02236{word-spacing:-0.006400pt;}
.wse_c02236{word-spacing:-0.005856pt;}
.ws8_c02236{word-spacing:0.000000pt;}
.wsf_c02236{word-spacing:0.011712pt;}
.wsd_c02236{word-spacing:0.035136pt;}
.ws10_c02236{word-spacing:0.046848pt;}
.ws12_c02236{word-spacing:0.105600pt;}
.ws7_c02236{word-spacing:52.417280pt;}
.ws2_c02236{word-spacing:118.046560pt;}
.ws1_c02236{word-spacing:147.166560pt;}
.ws6_c02236{word-spacing:147.638240pt;}
.ws0_c02236{word-spacing:176.628096pt;}
.ws5_c02236{word-spacing:177.078240pt;}
.ws4_c02236{word-spacing:249.886560pt;}
._0_c02236{margin-left:-1.020704pt;}
._29_c02236{width:8.805376pt;}
._24_c02236{width:10.238400pt;}
._10_c02236{width:42.497280pt;}
._d_c02236{width:44.407552pt;}
._1f_c02236{width:46.122336pt;}
._1a_c02236{width:58.457280pt;}
._1b_c02236{width:64.744000pt;}
._21_c02236{width:67.040000pt;}
._8_c02236{width:73.525664pt;}
._14_c02236{width:75.088000pt;}
._1c_c02236{width:77.580800pt;}
._13_c02236{width:78.739200pt;}
._2a_c02236{width:79.978560pt;}
._23_c02236{width:81.113024pt;}
._3_c02236{width:85.200000pt;}
._1d_c02236{width:92.485280pt;}
._19_c02236{width:96.309056pt;}
._5_c02236{width:103.283776pt;}
._18_c02236{width:106.054688pt;}
._15_c02236{width:108.640000pt;}
._22_c02236{width:111.840000pt;}
._16_c02236{width:113.760000pt;}
._20_c02236{width:115.454176pt;}
._1e_c02236{width:118.147200pt;}
._27_c02236{width:119.177152pt;}
._17_c02236{width:124.105728pt;}
._25_c02236{width:128.160000pt;}
._2_c02236{width:152.398848pt;}
._28_c02236{width:153.962336pt;}
._26_c02236{width:199.904736pt;}
._9_c02236{width:258.224448pt;}
._e_c02236{width:264.249440pt;}
._6_c02236{width:300.344768pt;}
._1_c02236{width:302.043808pt;}
._4_c02236{width:312.443264pt;}
._7_c02236{width:326.950464pt;}
._11_c02236{width:385.879488pt;}
._12_c02236{width:402.204032pt;}
._b_c02236{width:441.405984pt;}
._a_c02236{width:444.519488pt;}
._f_c02236{width:459.102912pt;}
._c_c02236{width:499.858688pt;}
.fs4_c02236{font-size:42.560000pt;}
.fs1_c02236{font-size:48.000000pt;}
.fs2_c02236{font-size:53.440000pt;}
.fs3_c02236{font-size:58.560000pt;}
.fs0_c02236{font-size:64.000000pt;}
.y0_c02236{bottom:0.000000pt;}
.y3_c02236{bottom:50.987067pt;}
.y2_c02236{bottom:69.387067pt;}
.y2f_c02236{bottom:115.947067pt;}
.y2e_c02236{bottom:129.707467pt;}
.y2d_c02236{bottom:143.547067pt;}
.y2c_c02236{bottom:157.307467pt;}
.y2b_c02236{bottom:171.147067pt;}
.y2a_c02236{bottom:184.907467pt;}
.y29_c02236{bottom:198.747067pt;}
.y28_c02236{bottom:212.507067pt;}
.y27_c02236{bottom:212.826267pt;}
.y26_c02236{bottom:229.387067pt;}
.y25_c02236{bottom:229.706267pt;}
.y24_c02236{bottom:246.267067pt;}
.y23_c02236{bottom:246.587067pt;}
.y22_c02236{bottom:263.467067pt;}
.y21_c02236{bottom:279.947067pt;}
.y20_c02236{bottom:280.347067pt;}
.y1f_c02236{bottom:297.787067pt;}
.y1e_c02236{bottom:314.827067pt;}
.y1d_c02236{bottom:329.467067pt;}
.y1c_c02236{bottom:348.347067pt;}
.y1b_c02236{bottom:367.307067pt;}
.y1a_c02236{bottom:385.547067pt;}
.y19_c02236{bottom:401.227067pt;}
.y18_c02236{bottom:418.107200pt;}
.y17_c02236{bottom:434.987200pt;}
.y16_c02236{bottom:452.507067pt;}
.y15_c02236{bottom:469.387067pt;}
.y14_c02236{bottom:486.187067pt;}
.y13_c02236{bottom:503.067067pt;}
.y12_c02236{bottom:519.947067pt;}
.y11_c02236{bottom:536.827067pt;}
.y10_c02236{bottom:553.707067pt;}
.yf_c02236{bottom:570.187067pt;}
.ye_c02236{bottom:586.107067pt;}
.yd_c02236{bottom:606.667067pt;}
.yc_c02236{bottom:621.307067pt;}
.yb_c02236{bottom:639.707067pt;}
.ya_c02236{bottom:658.107067pt;}
.y9_c02236{bottom:676.507067pt;}
.y8_c02236{bottom:694.907067pt;}
.y7_c02236{bottom:713.467067pt;}
.y6_c02236{bottom:728.187067pt;}
.y5_c02236{bottom:985.707067pt;}
.y4_c02236{bottom:1013.307067pt;}
.y1_c02236{bottom:1060.587067pt;}
.h3_c02236{height:42.632812pt;}
.h4_c02236{height:47.464531pt;}
.h5_c02236{height:52.012031pt;}
.h7_c02236{height:54.252031pt;}
.h8_c02236{height:55.532031pt;}
.h6_c02236{height:55.852031pt;}
.h2_c02236{height:56.156250pt;}
.h1_c02236{height:56.843750pt;}
.h0_c02236{height:1122.666667pt;}
.w1_c02236{width:793.333333pt;}
.w0_c02236{width:793.626667pt;}
.x0_c02236{left:0.000000pt;}
.x1_c02236{left:113.440000pt;}
.x5_c02236{left:120.560000pt;}
.x7_c02236{left:127.920000pt;}
.x8_c02236{left:146.720000pt;}
.x6_c02236{left:168.000000pt;}
.x9_c02236{left:196.160000pt;}
.x2_c02236{left:384.960000pt;}
.x4_c02236{left:396.960000pt;}
.x3_c02236{left:637.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_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_c098e0e118c602e7d051dd68.woff2')format("woff");}.ff1_c02237{font-family:ff1_c02237;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02237;src:url('chunks/assets/font_350749ae858a1d83bd315b76.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;}
.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;}
.ls10_c02237{letter-spacing:-0.086400px;}
.lsd_c02237{letter-spacing:-0.032940px;}
.lsb_c02237{letter-spacing:-0.014400px;}
.lsc_c02237{letter-spacing:-0.013176px;}
.lsf_c02237{letter-spacing:-0.007200px;}
.ls9_c02237{letter-spacing:0.000000px;}
.lsa_c02237{letter-spacing:0.007200px;}
.ls0_c02237{letter-spacing:0.014400px;}
.ls4_c02237{letter-spacing:0.019764px;}
.ls6_c02237{letter-spacing:0.021600px;}
.ls5_c02237{letter-spacing:0.028800px;}
.ls7_c02237{letter-spacing:0.036000px;}
.ls2_c02237{letter-spacing:0.039528px;}
.ls8_c02237{letter-spacing:0.050400px;}
.ls1_c02237{letter-spacing:0.072468px;}
.ls3_c02237{letter-spacing:0.098820px;}
.lse_c02237{letter-spacing:0.125172px;}
.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;}
}
.wsb_c02237{word-spacing:-0.180000px;}
.ws8_c02237{word-spacing:-0.144000px;}
.ws9_c02237{word-spacing:-0.072000px;}
.ws1_c02237{word-spacing:-0.050400px;}
.ws7_c02237{word-spacing:-0.028800px;}
.wsa_c02237{word-spacing:-0.021600px;}
.ws3_c02237{word-spacing:-0.014400px;}
.ws0_c02237{word-spacing:0.000000px;}
.ws6_c02237{word-spacing:0.007200px;}
.ws2_c02237{word-spacing:0.014400px;}
.ws4_c02237{word-spacing:0.019764px;}
.ws5_c02237{word-spacing:460.402380px;}
._a_c02237{margin-left:-245.462292px;}
._6_c02237{margin-left:-217.021896px;}
._7_c02237{margin-left:-184.259772px;}
._d_c02237{margin-left:-1.152000px;}
._0_c02237{width:65.407068px;}
._3_c02237{width:96.810048px;}
._5_c02237{width:101.605680px;}
._1_c02237{width:115.338168px;}
._4_c02237{width:116.438220px;}
._2_c02237{width:129.525840px;}
._12_c02237{width:188.035200px;}
._9_c02237{width:264.350088px;}
._c_c02237{width:431.244000px;}
._8_c02237{width:572.095332px;}
._11_c02237{width:714.225600px;}
._e_c02237{width:751.248000px;}
._f_c02237{width:849.333600px;}
._10_c02237{width:1247.731200px;}
._b_c02237{width:1791.288000px;}
._13_c02237{width:2232.561600px;}
.fc0_c02237{color:rgb(0,0,0);}
.fs1_c02237{font-size:54.000000px;}
.fs2_c02237{font-size:65.880000px;}
.fs0_c02237{font-size:72.000000px;}
.y0_c02237{bottom:0.000000px;}
.y3_c02237{bottom:57.360450px;}
.y2_c02237{bottom:78.060450px;}
.y2a_c02237{bottom:128.280450px;}
.y29_c02237{bottom:159.330450px;}
.y28_c02237{bottom:190.380450px;}
.y27_c02237{bottom:221.430450px;}
.y26_c02237{bottom:252.480450px;}
.y25_c02237{bottom:283.530450px;}
.y24_c02237{bottom:314.580450px;}
.y23_c02237{bottom:345.630450px;}
.y22_c02237{bottom:376.680450px;}
.y21_c02237{bottom:407.730450px;}
.y20_c02237{bottom:438.780450px;}
.y1f_c02237{bottom:469.830450px;}
.y1e_c02237{bottom:500.880450px;}
.y1d_c02237{bottom:531.930450px;}
.y1c_c02237{bottom:562.980450px;}
.y1b_c02237{bottom:594.030450px;}
.y1a_c02237{bottom:625.080450px;}
.y19_c02237{bottom:656.130450px;}
.y18_c02237{bottom:687.180450px;}
.y17_c02237{bottom:718.230450px;}
.y16_c02237{bottom:749.280450px;}
.y15_c02237{bottom:780.330450px;}
.y14_c02237{bottom:811.380450px;}
.y13_c02237{bottom:832.800450px;}
.y12_c02237{bottom:854.220450px;}
.y11_c02237{bottom:875.730450px;}
.y10_c02237{bottom:897.150450px;}
.yf_c02237{bottom:918.570450px;}
.ye_c02237{bottom:940.080450px;}
.yd_c02237{bottom:961.500450px;}
.yc_c02237{bottom:982.920450px;}
.yb_c02237{bottom:1004.430450px;}
.ya_c02237{bottom:1025.670450px;}
.y9_c02237{bottom:1045.290450px;}
.y8_c02237{bottom:1065.270450px;}
.y7_c02237{bottom:1085.970450px;}
.y6_c02237{bottom:1106.490900px;}
.y5_c02237{bottom:1122.060450px;}
.y4_c02237{bottom:1139.250450px;}
.y1_c02237{bottom:1193.160450px;}
.h3_c02237{height:47.961914px;}
.h5_c02237{height:57.805840px;}
.h4_c02237{height:58.513535px;}
.h2_c02237{height:63.175781px;}
.h1_c02237{height:63.949219px;}
.h0_c02237{height:1263.000000px;}
.w1_c02237{width:892.500000px;}
.w0_c02237{width:892.830000px;}
.x0_c02237{left:0.000000px;}
.x1_c02237{left:127.620000px;}
.x3_c02237{left:135.630000px;}
.x6_c02237{left:137.520000px;}
.x4_c02237{left:246.960000px;}
.x5_c02237{left:266.220000px;}
.x7_c02237{left:335.160000px;}
.x2_c02237{left:433.080000px;}
@media print{
.v0_c02237{vertical-align:0.000000pt;}
.ls10_c02237{letter-spacing:-0.076800pt;}
.lsd_c02237{letter-spacing:-0.029280pt;}
.lsb_c02237{letter-spacing:-0.012800pt;}
.lsc_c02237{letter-spacing:-0.011712pt;}
.lsf_c02237{letter-spacing:-0.006400pt;}
.ls9_c02237{letter-spacing:0.000000pt;}
.lsa_c02237{letter-spacing:0.006400pt;}
.ls0_c02237{letter-spacing:0.012800pt;}
.ls4_c02237{letter-spacing:0.017568pt;}
.ls6_c02237{letter-spacing:0.019200pt;}
.ls5_c02237{letter-spacing:0.025600pt;}
.ls7_c02237{letter-spacing:0.032000pt;}
.ls2_c02237{letter-spacing:0.035136pt;}
.ls8_c02237{letter-spacing:0.044800pt;}
.ls1_c02237{letter-spacing:0.064416pt;}
.ls3_c02237{letter-spacing:0.087840pt;}
.lse_c02237{letter-spacing:0.111264pt;}
.wsb_c02237{word-spacing:-0.160000pt;}
.ws8_c02237{word-spacing:-0.128000pt;}
.ws9_c02237{word-spacing:-0.064000pt;}
.ws1_c02237{word-spacing:-0.044800pt;}
.ws7_c02237{word-spacing:-0.025600pt;}
.wsa_c02237{word-spacing:-0.019200pt;}
.ws3_c02237{word-spacing:-0.012800pt;}
.ws0_c02237{word-spacing:0.000000pt;}
.ws6_c02237{word-spacing:0.006400pt;}
.ws2_c02237{word-spacing:0.012800pt;}
.ws4_c02237{word-spacing:0.017568pt;}
.ws5_c02237{word-spacing:409.246560pt;}
._a_c02237{margin-left:-218.188704pt;}
._6_c02237{margin-left:-192.908352pt;}
._7_c02237{margin-left:-163.786464pt;}
._d_c02237{margin-left:-1.024000pt;}
._0_c02237{width:58.139616pt;}
._3_c02237{width:86.053376pt;}
._5_c02237{width:90.316160pt;}
._1_c02237{width:102.522816pt;}
._4_c02237{width:103.500640pt;}
._2_c02237{width:115.134080pt;}
._12_c02237{width:167.142400pt;}
._9_c02237{width:234.977856pt;}
._c_c02237{width:383.328000pt;}
._8_c02237{width:508.529184pt;}
._11_c02237{width:634.867200pt;}
._e_c02237{width:667.776000pt;}
._f_c02237{width:754.963200pt;}
._10_c02237{width:1109.094400pt;}
._b_c02237{width:1592.256000pt;}
._13_c02237{width:1984.499200pt;}
.fs1_c02237{font-size:48.000000pt;}
.fs2_c02237{font-size:58.560000pt;}
.fs0_c02237{font-size:64.000000pt;}
.y0_c02237{bottom:0.000000pt;}
.y3_c02237{bottom:50.987067pt;}
.y2_c02237{bottom:69.387067pt;}
.y2a_c02237{bottom:114.027067pt;}
.y29_c02237{bottom:141.627067pt;}
.y28_c02237{bottom:169.227067pt;}
.y27_c02237{bottom:196.827067pt;}
.y26_c02237{bottom:224.427067pt;}
.y25_c02237{bottom:252.027067pt;}
.y24_c02237{bottom:279.627067pt;}
.y23_c02237{bottom:307.227067pt;}
.y22_c02237{bottom:334.827067pt;}
.y21_c02237{bottom:362.427067pt;}
.y20_c02237{bottom:390.027067pt;}
.y1f_c02237{bottom:417.627067pt;}
.y1e_c02237{bottom:445.227067pt;}
.y1d_c02237{bottom:472.827067pt;}
.y1c_c02237{bottom:500.427067pt;}
.y1b_c02237{bottom:528.027067pt;}
.y1a_c02237{bottom:555.627067pt;}
.y19_c02237{bottom:583.227067pt;}
.y18_c02237{bottom:610.827067pt;}
.y17_c02237{bottom:638.427067pt;}
.y16_c02237{bottom:666.027067pt;}
.y15_c02237{bottom:693.627067pt;}
.y14_c02237{bottom:721.227067pt;}
.y13_c02237{bottom:740.267067pt;}
.y12_c02237{bottom:759.307067pt;}
.y11_c02237{bottom:778.427067pt;}
.y10_c02237{bottom:797.467067pt;}
.yf_c02237{bottom:816.507067pt;}
.ye_c02237{bottom:835.627067pt;}
.yd_c02237{bottom:854.667067pt;}
.yc_c02237{bottom:873.707067pt;}
.yb_c02237{bottom:892.827067pt;}
.ya_c02237{bottom:911.707067pt;}
.y9_c02237{bottom:929.147067pt;}
.y8_c02237{bottom:946.907067pt;}
.y7_c02237{bottom:965.307067pt;}
.y6_c02237{bottom:983.547467pt;}
.y5_c02237{bottom:997.387067pt;}
.y4_c02237{bottom:1012.667067pt;}
.y1_c02237{bottom:1060.587067pt;}
.h3_c02237{height:42.632812pt;}
.h5_c02237{height:51.382969pt;}
.h4_c02237{height:52.012031pt;}
.h2_c02237{height:56.156250pt;}
.h1_c02237{height:56.843750pt;}
.h0_c02237{height:1122.666667pt;}
.w1_c02237{width:793.333333pt;}
.w0_c02237{width:793.626667pt;}
.x0_c02237{left:0.000000pt;}
.x1_c02237{left:113.440000pt;}
.x3_c02237{left:120.560000pt;}
.x6_c02237{left:122.240000pt;}
.x4_c02237{left:219.520000pt;}
.x5_c02237{left:236.640000pt;}
.x7_c02237{left:297.920000pt;}
.x2_c02237{left:384.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_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_b087068b35ab3b912206e129.woff2')format("woff");}.ff1_c02238{font-family:ff1_c02238;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02238;src:url('chunks/assets/font_2b89608337039f7e9cbb3643.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;}
.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);}
.v4_c02238{vertical-align:-22.680000px;}
.v1_c02238{vertical-align:-16.920000px;}
.v3_c02238{vertical-align:-5.400000px;}
.v0_c02238{vertical-align:0.000000px;}
.v2_c02238{vertical-align:11.160000px;}
.ls15_c02238{letter-spacing:-0.181116px;}
.ls13_c02238{letter-spacing:-0.180360px;}
.ls12_c02238{letter-spacing:-0.176904px;}
.ls11_c02238{letter-spacing:0.000000px;}
.lsb_c02238{letter-spacing:0.006588px;}
.ls1_c02238{letter-spacing:0.007200px;}
.lsf_c02238{letter-spacing:0.013176px;}
.ls0_c02238{letter-spacing:0.014400px;}
.ls4_c02238{letter-spacing:0.019764px;}
.lsc_c02238{letter-spacing:0.026352px;}
.ls6_c02238{letter-spacing:0.032940px;}
.lsa_c02238{letter-spacing:0.039528px;}
.ls7_c02238{letter-spacing:0.046116px;}
.ls5_c02238{letter-spacing:0.052704px;}
.ls3_c02238{letter-spacing:0.059292px;}
.ls14_c02238{letter-spacing:0.062244px;}
.lse_c02238{letter-spacing:0.065880px;}
.ls10_c02238{letter-spacing:0.072468px;}
.ls8_c02238{letter-spacing:0.092232px;}
.ls9_c02238{letter-spacing:0.098820px;}
.lsd_c02238{letter-spacing:0.131760px;}
.ls2_c02238{letter-spacing:0.181944px;}
.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;}
}
.ws3_c02238{word-spacing:-0.093600px;}
.ws1_c02238{word-spacing:-0.050400px;}
.ws2_c02238{word-spacing:-0.014400px;}
.ws0_c02238{word-spacing:0.000000px;}
.ws2f_c02238{word-spacing:0.019764px;}
.ws20_c02238{word-spacing:0.026352px;}
.wsd_c02238{word-spacing:0.032940px;}
.ws7_c02238{word-spacing:0.039528px;}
.wsc_c02238{word-spacing:0.046116px;}
.ws10_c02238{word-spacing:0.052704px;}
.ws19_c02238{word-spacing:0.059292px;}
.ws14_c02238{word-spacing:0.065880px;}
.ws24_c02238{word-spacing:0.079056px;}
.ws17_c02238{word-spacing:0.408456px;}
.ws28_c02238{word-spacing:0.783972px;}
.wsf_c02238{word-spacing:2.918484px;}
.wse_c02238{word-spacing:3.287412px;}
.wsb_c02238{word-spacing:4.005504px;}
.ws23_c02238{word-spacing:4.756536px;}
.ws2b_c02238{word-spacing:5.059584px;}
.ws12_c02238{word-spacing:5.099112px;}
.ws21_c02238{word-spacing:5.421924px;}
.ws11_c02238{word-spacing:5.435100px;}
.ws15_c02238{word-spacing:5.810616px;}
.ws2c_c02238{word-spacing:5.836968px;}
.ws2d_c02238{word-spacing:6.192720px;}
.ws2a_c02238{word-spacing:7.233624px;}
.ws1f_c02238{word-spacing:8.696160px;}
.ws1e_c02238{word-spacing:9.756828px;}
.ws1d_c02238{word-spacing:10.435392px;}
.ws2e_c02238{word-spacing:10.494684px;}
.ws1c_c02238{word-spacing:10.850436px;}
.ws5_c02238{word-spacing:11.193012px;}
.ws6_c02238{word-spacing:11.232540px;}
.ws27_c02238{word-spacing:14.098320px;}
.ws25_c02238{word-spacing:14.434308px;}
.ws22_c02238{word-spacing:17.333028px;}
.ws1a_c02238{word-spacing:18.070884px;}
.ws16_c02238{word-spacing:18.406872px;}
.ws29_c02238{word-spacing:25.969896px;}
.ws9_c02238{word-spacing:27.406080px;}
.ws18_c02238{word-spacing:28.493100px;}
.ws26_c02238{word-spacing:30.647376px;}
.ws13_c02238{word-spacing:32.485428px;}
.ws8_c02238{word-spacing:37.854648px;}
.ws1b_c02238{word-spacing:42.538716px;}
.wsa_c02238{word-spacing:43.553268px;}
.ws4_c02238{word-spacing:48.689172px;}
._5_c02238{margin-left:-1.016676px;}
._6_c02238{width:1.014552px;}
._1_c02238{width:39.870720px;}
._2_c02238{width:40.950720px;}
._4_c02238{width:55.174464px;}
._0_c02238{width:73.850472px;}
._3_c02238{width:1494.676440px;}
.fc0_c02238{color:rgb(0,0,0);}
.fs1_c02238{font-size:42.120000px;}
.fs3_c02238{font-size:47.880000px;}
.fs2_c02238{font-size:60.120000px;}
.fs4_c02238{font-size:65.880000px;}
.fs0_c02238{font-size:72.000000px;}
.y0_c02238{bottom:0.000000px;}
.y3_c02238{bottom:57.360450px;}
.y2_c02238{bottom:78.060450px;}
.y47_c02238{bottom:112.891485px;}
.y46_c02238{bottom:131.881395px;}
.y45_c02238{bottom:150.871305px;}
.y44_c02238{bottom:169.861215px;}
.y43_c02238{bottom:188.760540px;}
.y42_c02238{bottom:207.750450px;}
.y41_c02238{bottom:225.930450px;}
.y40_c02238{bottom:240.510540px;}
.y48_c02238{bottom:259.411899px;}
.y3f_c02238{bottom:265.170450px;}
.y3d_c02238{bottom:278.400450px;}
.y3c_c02238{bottom:293.071575px;}
.y3b_c02238{bottom:311.970900px;}
.y3a_c02238{bottom:330.960810px;}
.y39_c02238{bottom:349.950720px;}
.y38_c02238{bottom:368.940630px;}
.y37_c02238{bottom:387.930540px;}
.y36_c02238{bottom:406.920450px;}
.y35_c02238{bottom:425.010450px;}
.y34_c02238{bottom:439.682430px;}
.y33_c02238{bottom:458.581755px;}
.y32_c02238{bottom:477.571665px;}
.y31_c02238{bottom:496.561575px;}
.y30_c02238{bottom:515.551485px;}
.y2f_c02238{bottom:534.541395px;}
.y2e_c02238{bottom:553.531305px;}
.y2d_c02238{bottom:572.430630px;}
.y2c_c02238{bottom:591.420540px;}
.y3e_c02238{bottom:610.320450px;}
.y2b_c02238{bottom:616.080450px;}
.y29_c02238{bottom:629.310450px;}
.y28_c02238{bottom:643.890810px;}
.y27_c02238{bottom:662.880720px;}
.y26_c02238{bottom:681.870630px;}
.y25_c02238{bottom:700.860540px;}
.y2a_c02238{bottom:719.760450px;}
.y24_c02238{bottom:725.520450px;}
.y22_c02238{bottom:739.561575px;}
.y21_c02238{bottom:758.551485px;}
.y20_c02238{bottom:777.541395px;}
.y1f_c02238{bottom:796.440720px;}
.y1e_c02238{bottom:815.430630px;}
.y1d_c02238{bottom:834.420540px;}
.y23_c02238{bottom:853.321512px;}
.y1c_c02238{bottom:859.080450px;}
.y19_c02238{bottom:872.220450px;}
.y1b_c02238{bottom:886.800690px;}
.y18_c02238{bottom:886.890540px;}
.y1a_c02238{bottom:905.790600px;}
.y17_c02238{bottom:911.550450px;}
.y14_c02238{bottom:924.780450px;}
.y13_c02238{bottom:939.451215px;}
.y16_c02238{bottom:958.260540px;}
.y12_c02238{bottom:958.350540px;}
.y15_c02238{bottom:977.250450px;}
.y11_c02238{bottom:983.010450px;}
.ye_c02238{bottom:996.240450px;}
.yd_c02238{bottom:1010.911215px;}
.y10_c02238{bottom:1029.720540px;}
.yc_c02238{bottom:1029.810540px;}
.yf_c02238{bottom:1048.710450px;}
.yb_c02238{bottom:1054.470450px;}
.y8_c02238{bottom:1067.700450px;}
.ya_c02238{bottom:1082.280540px;}
.y7_c02238{bottom:1082.370540px;}
.y9_c02238{bottom:1101.270450px;}
.y6_c02238{bottom:1107.030450px;}
.y5_c02238{bottom:1124.850450px;}
.y4_c02238{bottom:1139.250450px;}
.y1_c02238{bottom:1193.160450px;}
.h4_c02238{height:36.957832px;}
.h3_c02238{height:37.410293px;}
.h6_c02238{height:42.011895px;}
.h5_c02238{height:57.805840px;}
.h7_c02238{height:58.513535px;}
.h2_c02238{height:63.175781px;}
.h1_c02238{height:63.949219px;}
.h0_c02238{height:1263.000000px;}
.w1_c02238{width:892.500000px;}
.w0_c02238{width:892.830000px;}
.x0_c02238{left:0.000000px;}
.x1_c02238{left:127.620000px;}
.x3_c02238{left:135.630000px;}
.x4_c02238{left:273.870000px;}
.x2_c02238{left:433.080000px;}
.x5_c02238{left:720.990000px;}
@media print{
.v4_c02238{vertical-align:-20.160000pt;}
.v1_c02238{vertical-align:-15.040000pt;}
.v3_c02238{vertical-align:-4.800000pt;}
.v0_c02238{vertical-align:0.000000pt;}
.v2_c02238{vertical-align:9.920000pt;}
.ls15_c02238{letter-spacing:-0.160992pt;}
.ls13_c02238{letter-spacing:-0.160320pt;}
.ls12_c02238{letter-spacing:-0.157248pt;}
.ls11_c02238{letter-spacing:0.000000pt;}
.lsb_c02238{letter-spacing:0.005856pt;}
.ls1_c02238{letter-spacing:0.006400pt;}
.lsf_c02238{letter-spacing:0.011712pt;}
.ls0_c02238{letter-spacing:0.012800pt;}
.ls4_c02238{letter-spacing:0.017568pt;}
.lsc_c02238{letter-spacing:0.023424pt;}
.ls6_c02238{letter-spacing:0.029280pt;}
.lsa_c02238{letter-spacing:0.035136pt;}
.ls7_c02238{letter-spacing:0.040992pt;}
.ls5_c02238{letter-spacing:0.046848pt;}
.ls3_c02238{letter-spacing:0.052704pt;}
.ls14_c02238{letter-spacing:0.055328pt;}
.lse_c02238{letter-spacing:0.058560pt;}
.ls10_c02238{letter-spacing:0.064416pt;}
.ls8_c02238{letter-spacing:0.081984pt;}
.ls9_c02238{letter-spacing:0.087840pt;}
.lsd_c02238{letter-spacing:0.117120pt;}
.ls2_c02238{letter-spacing:0.161728pt;}
.ws3_c02238{word-spacing:-0.083200pt;}
.ws1_c02238{word-spacing:-0.044800pt;}
.ws2_c02238{word-spacing:-0.012800pt;}
.ws0_c02238{word-spacing:0.000000pt;}
.ws2f_c02238{word-spacing:0.017568pt;}
.ws20_c02238{word-spacing:0.023424pt;}
.wsd_c02238{word-spacing:0.029280pt;}
.ws7_c02238{word-spacing:0.035136pt;}
.wsc_c02238{word-spacing:0.040992pt;}
.ws10_c02238{word-spacing:0.046848pt;}
.ws19_c02238{word-spacing:0.052704pt;}
.ws14_c02238{word-spacing:0.058560pt;}
.ws24_c02238{word-spacing:0.070272pt;}
.ws17_c02238{word-spacing:0.363072pt;}
.ws28_c02238{word-spacing:0.696864pt;}
.wsf_c02238{word-spacing:2.594208pt;}
.wse_c02238{word-spacing:2.922144pt;}
.wsb_c02238{word-spacing:3.560448pt;}
.ws23_c02238{word-spacing:4.228032pt;}
.ws2b_c02238{word-spacing:4.497408pt;}
.ws12_c02238{word-spacing:4.532544pt;}
.ws21_c02238{word-spacing:4.819488pt;}
.ws11_c02238{word-spacing:4.831200pt;}
.ws15_c02238{word-spacing:5.164992pt;}
.ws2c_c02238{word-spacing:5.188416pt;}
.ws2d_c02238{word-spacing:5.504640pt;}
.ws2a_c02238{word-spacing:6.429888pt;}
.ws1f_c02238{word-spacing:7.729920pt;}
.ws1e_c02238{word-spacing:8.672736pt;}
.ws1d_c02238{word-spacing:9.275904pt;}
.ws2e_c02238{word-spacing:9.328608pt;}
.ws1c_c02238{word-spacing:9.644832pt;}
.ws5_c02238{word-spacing:9.949344pt;}
.ws6_c02238{word-spacing:9.984480pt;}
.ws27_c02238{word-spacing:12.531840pt;}
.ws25_c02238{word-spacing:12.830496pt;}
.ws22_c02238{word-spacing:15.407136pt;}
.ws1a_c02238{word-spacing:16.063008pt;}
.ws16_c02238{word-spacing:16.361664pt;}
.ws29_c02238{word-spacing:23.084352pt;}
.ws9_c02238{word-spacing:24.360960pt;}
.ws18_c02238{word-spacing:25.327200pt;}
.ws26_c02238{word-spacing:27.242112pt;}
.ws13_c02238{word-spacing:28.875936pt;}
.ws8_c02238{word-spacing:33.648576pt;}
.ws1b_c02238{word-spacing:37.812192pt;}
.wsa_c02238{word-spacing:38.714016pt;}
.ws4_c02238{word-spacing:43.279264pt;}
._5_c02238{margin-left:-0.903712pt;}
._6_c02238{width:0.901824pt;}
._1_c02238{width:35.440640pt;}
._2_c02238{width:36.400640pt;}
._4_c02238{width:49.043968pt;}
._0_c02238{width:65.644864pt;}
._3_c02238{width:1328.601280pt;}
.fs1_c02238{font-size:37.440000pt;}
.fs3_c02238{font-size:42.560000pt;}
.fs2_c02238{font-size:53.440000pt;}
.fs4_c02238{font-size:58.560000pt;}
.fs0_c02238{font-size:64.000000pt;}
.y0_c02238{bottom:0.000000pt;}
.y3_c02238{bottom:50.987067pt;}
.y2_c02238{bottom:69.387067pt;}
.y47_c02238{bottom:100.347987pt;}
.y46_c02238{bottom:117.227907pt;}
.y45_c02238{bottom:134.107827pt;}
.y44_c02238{bottom:150.987747pt;}
.y43_c02238{bottom:167.787147pt;}
.y42_c02238{bottom:184.667067pt;}
.y41_c02238{bottom:200.827067pt;}
.y40_c02238{bottom:213.787147pt;}
.y48_c02238{bottom:230.588355pt;}
.y3f_c02238{bottom:235.707067pt;}
.y3d_c02238{bottom:247.467067pt;}
.y3c_c02238{bottom:260.508067pt;}
.y3b_c02238{bottom:277.307467pt;}
.y3a_c02238{bottom:294.187387pt;}
.y39_c02238{bottom:311.067307pt;}
.y38_c02238{bottom:327.947227pt;}
.y37_c02238{bottom:344.827147pt;}
.y36_c02238{bottom:361.707067pt;}
.y35_c02238{bottom:377.787067pt;}
.y34_c02238{bottom:390.828827pt;}
.y33_c02238{bottom:407.628227pt;}
.y32_c02238{bottom:424.508147pt;}
.y31_c02238{bottom:441.388067pt;}
.y30_c02238{bottom:458.267987pt;}
.y2f_c02238{bottom:475.147907pt;}
.y2e_c02238{bottom:492.027827pt;}
.y2d_c02238{bottom:508.827227pt;}
.y2c_c02238{bottom:525.707147pt;}
.y3e_c02238{bottom:542.507067pt;}
.y2b_c02238{bottom:547.627067pt;}
.y29_c02238{bottom:559.387067pt;}
.y28_c02238{bottom:572.347387pt;}
.y27_c02238{bottom:589.227307pt;}
.y26_c02238{bottom:606.107227pt;}
.y25_c02238{bottom:622.987147pt;}
.y2a_c02238{bottom:639.787067pt;}
.y24_c02238{bottom:644.907067pt;}
.y22_c02238{bottom:657.388067pt;}
.y21_c02238{bottom:674.267987pt;}
.y20_c02238{bottom:691.147907pt;}
.y1f_c02238{bottom:707.947307pt;}
.y1e_c02238{bottom:724.827227pt;}
.y1d_c02238{bottom:741.707147pt;}
.y23_c02238{bottom:758.508011pt;}
.y1c_c02238{bottom:763.627067pt;}
.y19_c02238{bottom:775.307067pt;}
.y1b_c02238{bottom:788.267280pt;}
.y18_c02238{bottom:788.347147pt;}
.y1a_c02238{bottom:805.147200pt;}
.y17_c02238{bottom:810.267067pt;}
.y14_c02238{bottom:822.027067pt;}
.y13_c02238{bottom:835.067747pt;}
.y16_c02238{bottom:851.787147pt;}
.y12_c02238{bottom:851.867147pt;}
.y15_c02238{bottom:868.667067pt;}
.y11_c02238{bottom:873.787067pt;}
.ye_c02238{bottom:885.547067pt;}
.yd_c02238{bottom:898.587747pt;}
.y10_c02238{bottom:915.307147pt;}
.yc_c02238{bottom:915.387147pt;}
.yf_c02238{bottom:932.187067pt;}
.yb_c02238{bottom:937.307067pt;}
.y8_c02238{bottom:949.067067pt;}
.ya_c02238{bottom:962.027147pt;}
.y7_c02238{bottom:962.107147pt;}
.y9_c02238{bottom:978.907067pt;}
.y6_c02238{bottom:984.027067pt;}
.y5_c02238{bottom:999.867067pt;}
.y4_c02238{bottom:1012.667067pt;}
.y1_c02238{bottom:1060.587067pt;}
.h4_c02238{height:32.851406pt;}
.h3_c02238{height:33.253594pt;}
.h6_c02238{height:37.343906pt;}
.h5_c02238{height:51.382969pt;}
.h7_c02238{height:52.012031pt;}
.h2_c02238{height:56.156250pt;}
.h1_c02238{height:56.843750pt;}
.h0_c02238{height:1122.666667pt;}
.w1_c02238{width:793.333333pt;}
.w0_c02238{width:793.626667pt;}
.x0_c02238{left:0.000000pt;}
.x1_c02238{left:113.440000pt;}
.x3_c02238{left:120.560000pt;}
.x4_c02238{left:243.440000pt;}
.x2_c02238{left:384.960000pt;}
.x5_c02238{left:640.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_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_2649f567b5b39f73b59e3432.woff2')format("woff");}.ff1_c02239{font-family:ff1_c02239;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02239;src:url('chunks/assets/font_b55b47573009a847b1067c2b.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;}
.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);}
.v4_c02239{vertical-align:-22.680000px;}
.v1_c02239{vertical-align:-16.919400px;}
.v3_c02239{vertical-align:-5.400000px;}
.v0_c02239{vertical-align:0.000000px;}
.v2_c02239{vertical-align:11.159400px;}
.ls11_c02239{letter-spacing:-0.181116px;}
.lsf_c02239{letter-spacing:-0.180360px;}
.lse_c02239{letter-spacing:-0.176904px;}
.ls13_c02239{letter-spacing:-0.026352px;}
.ls12_c02239{letter-spacing:-0.013176px;}
.ls14_c02239{letter-spacing:-0.006588px;}
.lsc_c02239{letter-spacing:0.000000px;}
.lsd_c02239{letter-spacing:0.007200px;}
.ls5_c02239{letter-spacing:0.019764px;}
.ls9_c02239{letter-spacing:0.026352px;}
.ls2_c02239{letter-spacing:0.032940px;}
.ls3_c02239{letter-spacing:0.039528px;}
.ls8_c02239{letter-spacing:0.046116px;}
.ls6_c02239{letter-spacing:0.052704px;}
.ls1_c02239{letter-spacing:0.059292px;}
.ls10_c02239{letter-spacing:0.062244px;}
.lsb_c02239{letter-spacing:0.065880px;}
.ls7_c02239{letter-spacing:0.072468px;}
.lsa_c02239{letter-spacing:0.079056px;}
.ls15_c02239{letter-spacing:0.092232px;}
.ls4_c02239{letter-spacing:0.131760px;}
.ls0_c02239{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02239{word-spacing:-0.050400px;}
.ws0_c02239{word-spacing:0.000000px;}
.ws18_c02239{word-spacing:0.013176px;}
.ws12_c02239{word-spacing:0.019764px;}
.ws3_c02239{word-spacing:0.032940px;}
.wse_c02239{word-spacing:0.039528px;}
.wsc_c02239{word-spacing:0.052704px;}
.ws1e_c02239{word-spacing:0.092232px;}
.ws23_c02239{word-spacing:0.098820px;}
.ws1a_c02239{word-spacing:0.415044px;}
.ws17_c02239{word-spacing:1.449360px;}
.ws16_c02239{word-spacing:1.502064px;}
.ws10_c02239{word-spacing:1.508652px;}
.ws14_c02239{word-spacing:1.851228px;}
.ws1d_c02239{word-spacing:2.213568px;}
.ws15_c02239{word-spacing:3.643164px;}
.ws4_c02239{word-spacing:3.656340px;}
.ws11_c02239{word-spacing:4.723596px;}
.ws13_c02239{word-spacing:5.072760px;}
.wsd_c02239{word-spacing:6.581412px;}
.ws9_c02239{word-spacing:10.112580px;}
.ws8_c02239{word-spacing:10.132344px;}
.wsf_c02239{word-spacing:10.474920px;}
.ws20_c02239{word-spacing:14.803236px;}
.ws24_c02239{word-spacing:16.246008px;}
.wsb_c02239{word-spacing:18.090648px;}
.wsa_c02239{word-spacing:19.098612px;}
.ws1f_c02239{word-spacing:19.843056px;}
.ws19_c02239{word-spacing:24.863112px;}
.ws5_c02239{word-spacing:27.050328px;}
.ws7_c02239{word-spacing:27.755244px;}
.ws1b_c02239{word-spacing:28.117584px;}
.ws1c_c02239{word-spacing:34.257600px;}
.ws6_c02239{word-spacing:34.988868px;}
.ws22_c02239{word-spacing:46.827504px;}
.ws21_c02239{word-spacing:46.847268px;}
.ws2_c02239{word-spacing:48.689172px;}
._7_c02239{margin-left:-16.215192px;}
._6_c02239{margin-left:-1.264896px;}
._5_c02239{width:1.203480px;}
._1_c02239{width:39.870720px;}
._2_c02239{width:40.950720px;}
._4_c02239{width:55.174464px;}
._0_c02239{width:73.850472px;}
._3_c02239{width:1494.676440px;}
.fc0_c02239{color:rgb(0,0,0);}
.fs1_c02239{font-size:42.120000px;}
.fs3_c02239{font-size:47.880000px;}
.fs2_c02239{font-size:60.120000px;}
.fs4_c02239{font-size:65.880000px;}
.fs0_c02239{font-size:72.000000px;}
.y0_c02239{bottom:0.000000px;}
.y3_c02239{bottom:57.360450px;}
.y2_c02239{bottom:78.060450px;}
.y42_c02239{bottom:280.560450px;}
.y40_c02239{bottom:300.810450px;}
.y3f_c02239{bottom:315.480540px;}
.y41_c02239{bottom:334.380450px;}
.y3e_c02239{bottom:340.140450px;}
.y3a_c02239{bottom:353.280450px;}
.y39_c02239{bottom:367.951485px;}
.y38_c02239{bottom:386.941395px;}
.y37_c02239{bottom:405.931305px;}
.y3d_c02239{bottom:424.831215px;}
.y36_c02239{bottom:424.921215px;}
.y3c_c02239{bottom:443.730540px;}
.y35_c02239{bottom:443.820540px;}
.y3b_c02239{bottom:462.720450px;}
.y34_c02239{bottom:468.480450px;}
.y32_c02239{bottom:481.710600px;}
.y31_c02239{bottom:496.381275px;}
.y30_c02239{bottom:515.280600px;}
.y2f_c02239{bottom:534.270450px;}
.y33_c02239{bottom:553.170450px;}
.y2e_c02239{bottom:558.930450px;}
.y2b_c02239{bottom:572.160450px;}
.y2a_c02239{bottom:586.831215px;}
.y2d_c02239{bottom:605.640540px;}
.y29_c02239{bottom:605.730540px;}
.y2c_c02239{bottom:624.630450px;}
.y28_c02239{bottom:630.390450px;}
.y25_c02239{bottom:643.620450px;}
.y24_c02239{bottom:658.291395px;}
.y23_c02239{bottom:677.190720px;}
.y22_c02239{bottom:696.180630px;}
.y27_c02239{bottom:715.080540px;}
.y21_c02239{bottom:715.170540px;}
.y26_c02239{bottom:734.070450px;}
.y20_c02239{bottom:739.830450px;}
.y1d_c02239{bottom:753.059586px;}
.y1c_c02239{bottom:766.829874px;}
.y1b_c02239{bottom:780.600162px;}
.y1a_c02239{bottom:794.370450px;}
.y19_c02239{bottom:809.040600px;}
.y18_c02239{bottom:828.030450px;}
.y17_c02239{bottom:847.020450px;}
.y16_c02239{bottom:866.011215px;}
.y1f_c02239{bottom:884.911125px;}
.y15_c02239{bottom:885.001125px;}
.y1e_c02239{bottom:903.810450px;}
.y14_c02239{bottom:909.570450px;}
.y11_c02239{bottom:922.800450px;}
.y10_c02239{bottom:937.471215px;}
.yf_c02239{bottom:956.461125px;}
.ye_c02239{bottom:975.360450px;}
.yd_c02239{bottom:994.350450px;}
.y13_c02239{bottom:1013.250540px;}
.yc_c02239{bottom:1013.340450px;}
.y12_c02239{bottom:1032.240450px;}
.yb_c02239{bottom:1038.000450px;}
.y9_c02239{bottom:1051.230450px;}
.y8_c02239{bottom:1065.810720px;}
.y7_c02239{bottom:1084.800630px;}
.y6_c02239{bottom:1103.790540px;}
.ya_c02239{bottom:1122.690450px;}
.y5_c02239{bottom:1128.450450px;}
.y4_c02239{bottom:1146.270450px;}
.y1_c02239{bottom:1193.160450px;}
.h4_c02239{height:36.957832px;}
.h3_c02239{height:37.410293px;}
.h6_c02239{height:42.011895px;}
.h5_c02239{height:57.805840px;}
.h7_c02239{height:58.513535px;}
.h2_c02239{height:63.175781px;}
.h1_c02239{height:63.949219px;}
.h0_c02239{height:1263.000000px;}
.w1_c02239{width:892.500000px;}
.w0_c02239{width:892.830000px;}
.x0_c02239{left:0.000000px;}
.x1_c02239{left:127.620000px;}
.x3_c02239{left:135.630000px;}
.x4_c02239{left:273.870000px;}
.x2_c02239{left:433.080000px;}
.x5_c02239{left:720.990000px;}
.x6_c02239{left:722.340540px;}
@media print{
.v4_c02239{vertical-align:-20.160000pt;}
.v1_c02239{vertical-align:-15.039467pt;}
.v3_c02239{vertical-align:-4.800000pt;}
.v0_c02239{vertical-align:0.000000pt;}
.v2_c02239{vertical-align:9.919467pt;}
.ls11_c02239{letter-spacing:-0.160992pt;}
.lsf_c02239{letter-spacing:-0.160320pt;}
.lse_c02239{letter-spacing:-0.157248pt;}
.ls13_c02239{letter-spacing:-0.023424pt;}
.ls12_c02239{letter-spacing:-0.011712pt;}
.ls14_c02239{letter-spacing:-0.005856pt;}
.lsc_c02239{letter-spacing:0.000000pt;}
.lsd_c02239{letter-spacing:0.006400pt;}
.ls5_c02239{letter-spacing:0.017568pt;}
.ls9_c02239{letter-spacing:0.023424pt;}
.ls2_c02239{letter-spacing:0.029280pt;}
.ls3_c02239{letter-spacing:0.035136pt;}
.ls8_c02239{letter-spacing:0.040992pt;}
.ls6_c02239{letter-spacing:0.046848pt;}
.ls1_c02239{letter-spacing:0.052704pt;}
.ls10_c02239{letter-spacing:0.055328pt;}
.lsb_c02239{letter-spacing:0.058560pt;}
.ls7_c02239{letter-spacing:0.064416pt;}
.lsa_c02239{letter-spacing:0.070272pt;}
.ls15_c02239{letter-spacing:0.081984pt;}
.ls4_c02239{letter-spacing:0.117120pt;}
.ls0_c02239{letter-spacing:0.161728pt;}
.ws1_c02239{word-spacing:-0.044800pt;}
.ws0_c02239{word-spacing:0.000000pt;}
.ws18_c02239{word-spacing:0.011712pt;}
.ws12_c02239{word-spacing:0.017568pt;}
.ws3_c02239{word-spacing:0.029280pt;}
.wse_c02239{word-spacing:0.035136pt;}
.wsc_c02239{word-spacing:0.046848pt;}
.ws1e_c02239{word-spacing:0.081984pt;}
.ws23_c02239{word-spacing:0.087840pt;}
.ws1a_c02239{word-spacing:0.368928pt;}
.ws17_c02239{word-spacing:1.288320pt;}
.ws16_c02239{word-spacing:1.335168pt;}
.ws10_c02239{word-spacing:1.341024pt;}
.ws14_c02239{word-spacing:1.645536pt;}
.ws1d_c02239{word-spacing:1.967616pt;}
.ws15_c02239{word-spacing:3.238368pt;}
.ws4_c02239{word-spacing:3.250080pt;}
.ws11_c02239{word-spacing:4.198752pt;}
.ws13_c02239{word-spacing:4.509120pt;}
.wsd_c02239{word-spacing:5.850144pt;}
.ws9_c02239{word-spacing:8.988960pt;}
.ws8_c02239{word-spacing:9.006528pt;}
.wsf_c02239{word-spacing:9.311040pt;}
.ws20_c02239{word-spacing:13.158432pt;}
.ws24_c02239{word-spacing:14.440896pt;}
.wsb_c02239{word-spacing:16.080576pt;}
.wsa_c02239{word-spacing:16.976544pt;}
.ws1f_c02239{word-spacing:17.638272pt;}
.ws19_c02239{word-spacing:22.100544pt;}
.ws5_c02239{word-spacing:24.044736pt;}
.ws7_c02239{word-spacing:24.671328pt;}
.ws1b_c02239{word-spacing:24.993408pt;}
.ws1c_c02239{word-spacing:30.451200pt;}
.ws6_c02239{word-spacing:31.101216pt;}
.ws22_c02239{word-spacing:41.624448pt;}
.ws21_c02239{word-spacing:41.642016pt;}
.ws2_c02239{word-spacing:43.279264pt;}
._7_c02239{margin-left:-14.413504pt;}
._6_c02239{margin-left:-1.124352pt;}
._5_c02239{width:1.069760pt;}
._1_c02239{width:35.440640pt;}
._2_c02239{width:36.400640pt;}
._4_c02239{width:49.043968pt;}
._0_c02239{width:65.644864pt;}
._3_c02239{width:1328.601280pt;}
.fs1_c02239{font-size:37.440000pt;}
.fs3_c02239{font-size:42.560000pt;}
.fs2_c02239{font-size:53.440000pt;}
.fs4_c02239{font-size:58.560000pt;}
.fs0_c02239{font-size:64.000000pt;}
.y0_c02239{bottom:0.000000pt;}
.y3_c02239{bottom:50.987067pt;}
.y2_c02239{bottom:69.387067pt;}
.y42_c02239{bottom:249.387067pt;}
.y40_c02239{bottom:267.387067pt;}
.y3f_c02239{bottom:280.427147pt;}
.y41_c02239{bottom:297.227067pt;}
.y3e_c02239{bottom:302.347067pt;}
.y3a_c02239{bottom:314.027067pt;}
.y39_c02239{bottom:327.067987pt;}
.y38_c02239{bottom:343.947907pt;}
.y37_c02239{bottom:360.827827pt;}
.y3d_c02239{bottom:377.627747pt;}
.y36_c02239{bottom:377.707747pt;}
.y3c_c02239{bottom:394.427147pt;}
.y35_c02239{bottom:394.507147pt;}
.y3b_c02239{bottom:411.307067pt;}
.y34_c02239{bottom:416.427067pt;}
.y32_c02239{bottom:428.187200pt;}
.y31_c02239{bottom:441.227800pt;}
.y30_c02239{bottom:458.027200pt;}
.y2f_c02239{bottom:474.907067pt;}
.y33_c02239{bottom:491.707067pt;}
.y2e_c02239{bottom:496.827067pt;}
.y2b_c02239{bottom:508.587067pt;}
.y2a_c02239{bottom:521.627747pt;}
.y2d_c02239{bottom:538.347147pt;}
.y29_c02239{bottom:538.427147pt;}
.y2c_c02239{bottom:555.227067pt;}
.y28_c02239{bottom:560.347067pt;}
.y25_c02239{bottom:572.107067pt;}
.y24_c02239{bottom:585.147907pt;}
.y23_c02239{bottom:601.947307pt;}
.y22_c02239{bottom:618.827227pt;}
.y27_c02239{bottom:635.627147pt;}
.y21_c02239{bottom:635.707147pt;}
.y26_c02239{bottom:652.507067pt;}
.y20_c02239{bottom:657.627067pt;}
.y1d_c02239{bottom:669.386299pt;}
.y1c_c02239{bottom:681.626555pt;}
.y1b_c02239{bottom:693.866811pt;}
.y1a_c02239{bottom:706.107067pt;}
.y19_c02239{bottom:719.147200pt;}
.y18_c02239{bottom:736.027067pt;}
.y17_c02239{bottom:752.907067pt;}
.y16_c02239{bottom:769.787747pt;}
.y1f_c02239{bottom:786.587667pt;}
.y15_c02239{bottom:786.667667pt;}
.y1e_c02239{bottom:803.387067pt;}
.y14_c02239{bottom:808.507067pt;}
.y11_c02239{bottom:820.267067pt;}
.y10_c02239{bottom:833.307747pt;}
.yf_c02239{bottom:850.187667pt;}
.ye_c02239{bottom:866.987067pt;}
.yd_c02239{bottom:883.867067pt;}
.y13_c02239{bottom:900.667147pt;}
.yc_c02239{bottom:900.747067pt;}
.y12_c02239{bottom:917.547067pt;}
.yb_c02239{bottom:922.667067pt;}
.y9_c02239{bottom:934.427067pt;}
.y8_c02239{bottom:947.387307pt;}
.y7_c02239{bottom:964.267227pt;}
.y6_c02239{bottom:981.147147pt;}
.ya_c02239{bottom:997.947067pt;}
.y5_c02239{bottom:1003.067067pt;}
.y4_c02239{bottom:1018.907067pt;}
.y1_c02239{bottom:1060.587067pt;}
.h4_c02239{height:32.851406pt;}
.h3_c02239{height:33.253594pt;}
.h6_c02239{height:37.343906pt;}
.h5_c02239{height:51.382969pt;}
.h7_c02239{height:52.012031pt;}
.h2_c02239{height:56.156250pt;}
.h1_c02239{height:56.843750pt;}
.h0_c02239{height:1122.666667pt;}
.w1_c02239{width:793.333333pt;}
.w0_c02239{width:793.626667pt;}
.x0_c02239{left:0.000000pt;}
.x1_c02239{left:113.440000pt;}
.x3_c02239{left:120.560000pt;}
.x4_c02239{left:243.440000pt;}
.x2_c02239{left:384.960000pt;}
.x5_c02239{left:640.880000pt;}
.x6_c02239{left:642.080480pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b175116e1f298936c668922f.woff2')format("woff");}.ff1_c02240{font-family:ff1_c02240;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02240;src:url('chunks/assets/font_923e39f2c37eaa119108e77f.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;}
.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;}
.ls19_c02240{letter-spacing:-0.201600px;}
.ls16_c02240{letter-spacing:-0.036000px;}
.ls15_c02240{letter-spacing:-0.014400px;}
.ls18_c02240{letter-spacing:-0.013176px;}
.ls14_c02240{letter-spacing:0.000000px;}
.ls12_c02240{letter-spacing:0.006588px;}
.ls1b_c02240{letter-spacing:0.007200px;}
.lsa_c02240{letter-spacing:0.013176px;}
.ls17_c02240{letter-spacing:0.014400px;}
.lsf_c02240{letter-spacing:0.019764px;}
.ls1_c02240{letter-spacing:0.021600px;}
.ls7_c02240{letter-spacing:0.026352px;}
.ls0_c02240{letter-spacing:0.028800px;}
.ls4_c02240{letter-spacing:0.032940px;}
.ls13_c02240{letter-spacing:0.036000px;}
.ls5_c02240{letter-spacing:0.039528px;}
.ls3_c02240{letter-spacing:0.043200px;}
.ls8_c02240{letter-spacing:0.046116px;}
.lsd_c02240{letter-spacing:0.052704px;}
.ls2_c02240{letter-spacing:0.057600px;}
.ls9_c02240{letter-spacing:0.065880px;}
.lsb_c02240{letter-spacing:0.072468px;}
.lsc_c02240{letter-spacing:0.079056px;}
.ls6_c02240{letter-spacing:0.079200px;}
.lse_c02240{letter-spacing:0.085644px;}
.ls10_c02240{letter-spacing:0.086400px;}
.ls11_c02240{letter-spacing:0.111996px;}
.ls1a_c02240{letter-spacing:0.118584px;}
.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;}
}
.ws1_c02240{word-spacing:-16.555644px;}
.ws0_c02240{word-spacing:-16.542468px;}
.ws1b_c02240{word-spacing:-0.316224px;}
.ws9_c02240{word-spacing:-0.165600px;}
.ws6_c02240{word-spacing:-0.093600px;}
.ws3_c02240{word-spacing:-0.086400px;}
.wse_c02240{word-spacing:-0.079200px;}
.ws20_c02240{word-spacing:-0.028800px;}
.ws5_c02240{word-spacing:-0.021600px;}
.ws14_c02240{word-spacing:-0.014400px;}
.ws2_c02240{word-spacing:0.000000px;}
.ws4_c02240{word-spacing:0.014400px;}
.wsa_c02240{word-spacing:0.036000px;}
.ws17_c02240{word-spacing:0.046116px;}
.wsd_c02240{word-spacing:0.059292px;}
.ws2d_c02240{word-spacing:0.065880px;}
.ws13_c02240{word-spacing:0.079056px;}
.ws1e_c02240{word-spacing:0.092232px;}
.ws1f_c02240{word-spacing:0.093600px;}
.ws1d_c02240{word-spacing:0.105408px;}
.ws23_c02240{word-spacing:0.273600px;}
.ws10_c02240{word-spacing:2.562732px;}
.wsb_c02240{word-spacing:2.575908px;}
.wsf_c02240{word-spacing:2.582496px;}
.ws2f_c02240{word-spacing:3.160800px;}
.ws30_c02240{word-spacing:3.232800px;}
.ws22_c02240{word-spacing:3.556800px;}
.ws21_c02240{word-spacing:3.571200px;}
.ws2e_c02240{word-spacing:4.291200px;}
.ws2c_c02240{word-spacing:5.079348px;}
.ws2b_c02240{word-spacing:5.125464px;}
.ws16_c02240{word-spacing:5.408748px;}
.ws15_c02240{word-spacing:5.448276px;}
.ws28_c02240{word-spacing:5.731560px;}
.ws27_c02240{word-spacing:5.823792px;}
.ws26_c02240{word-spacing:5.830380px;}
.ws31_c02240{word-spacing:8.164800px;}
.ws1c_c02240{word-spacing:8.346996px;}
.wsc_c02240{word-spacing:10.132344px;}
.ws1a_c02240{word-spacing:11.206188px;}
.ws19_c02240{word-spacing:11.212776px;}
.ws25_c02240{word-spacing:12.916800px;}
.ws24_c02240{word-spacing:12.938400px;}
.ws7_c02240{word-spacing:20.764800px;}
.ws8_c02240{word-spacing:20.836800px;}
.ws12_c02240{word-spacing:20.903724px;}
.ws11_c02240{word-spacing:20.930076px;}
.ws29_c02240{word-spacing:24.896052px;}
.ws2a_c02240{word-spacing:24.942168px;}
.ws32_c02240{word-spacing:25.452000px;}
.ws33_c02240{word-spacing:25.502400px;}
.ws18_c02240{word-spacing:31.734396px;}
._3_c02240{margin-left:-4.226400px;}
._0_c02240{margin-left:-1.224000px;}
._1_c02240{width:1.205604px;}
._2_c02240{width:5.738148px;}
.fc0_c02240{color:rgb(0,0,0);}
.fs2_c02240{font-size:24.120000px;}
.fs1_c02240{font-size:47.880000px;}
.fs3_c02240{font-size:65.880000px;}
.fs0_c02240{font-size:72.000000px;}
.y0_c02240{bottom:0.000000px;}
.y4_c02240{bottom:57.360450px;}
.y3_c02240{bottom:78.060450px;}
.y37_c02240{bottom:119.010450px;}
.y36_c02240{bottom:150.060450px;}
.y35_c02240{bottom:181.110450px;}
.y34_c02240{bottom:212.160450px;}
.y33_c02240{bottom:238.620600px;}
.y32_c02240{bottom:253.020450px;}
.y31_c02240{bottom:267.690450px;}
.y30_c02240{bottom:286.680450px;}
.y2f_c02240{bottom:305.670450px;}
.y2e_c02240{bottom:324.570450px;}
.y2d_c02240{bottom:342.480450px;}
.y2c_c02240{bottom:357.600450px;}
.y2b_c02240{bottom:380.010450px;}
.y2a_c02240{bottom:399.900600px;}
.y29_c02240{bottom:430.950600px;}
.y28_c02240{bottom:462.000600px;}
.y27_c02240{bottom:493.050600px;}
.y26_c02240{bottom:524.100600px;}
.y25_c02240{bottom:543.270450px;}
.y24_c02240{bottom:558.120450px;}
.y23_c02240{bottom:572.790450px;}
.y22_c02240{bottom:591.780450px;}
.y21_c02240{bottom:610.680450px;}
.y20_c02240{bottom:629.670450px;}
.y1f_c02240{bottom:648.660450px;}
.y1e_c02240{bottom:667.650450px;}
.y1d_c02240{bottom:686.640450px;}
.y1c_c02240{bottom:705.540450px;}
.y1b_c02240{bottom:724.530450px;}
.y1a_c02240{bottom:742.440450px;}
.y19_c02240{bottom:757.560450px;}
.y18_c02240{bottom:777.900450px;}
.y17_c02240{bottom:792.570450px;}
.y16_c02240{bottom:811.560450px;}
.y15_c02240{bottom:830.550450px;}
.y14_c02240{bottom:848.370450px;}
.y13_c02240{bottom:863.490450px;}
.y12_c02240{bottom:883.920450px;}
.y11_c02240{bottom:898.500450px;}
.y10_c02240{bottom:917.490450px;}
.yf_c02240{bottom:936.480450px;}
.ye_c02240{bottom:954.300450px;}
.yd_c02240{bottom:969.420450px;}
.yc_c02240{bottom:990.930450px;}
.yb_c02240{bottom:1013.340450px;}
.ya_c02240{bottom:1033.230450px;}
.y9_c02240{bottom:1064.280450px;}
.y8_c02240{bottom:1083.450450px;}
.y7_c02240{bottom:1098.570450px;}
.y6_c02240{bottom:1119.270450px;}
.y5_c02240{bottom:1139.970450px;}
.y2_c02240{bottom:1172.640450px;}
.y1_c02240{bottom:1193.160450px;}
.h4_c02240{height:21.163887px;}
.h6_c02240{height:42.011895px;}
.h3_c02240{height:42.526230px;}
.h5_c02240{height:57.805840px;}
.h7_c02240{height:58.513535px;}
.h2_c02240{height:63.175781px;}
.h1_c02240{height:63.949219px;}
.h0_c02240{height:1263.000000px;}
.w1_c02240{width:892.500000px;}
.w0_c02240{width:892.830000px;}
.x0_c02240{left:0.000000px;}
.x1_c02240{left:127.620000px;}
.x6_c02240{left:148.950000px;}
.x5_c02240{left:210.330000px;}
.x3_c02240{left:406.260000px;}
.x2_c02240{left:432.990000px;}
.x4_c02240{left:446.490000px;}
@media print{
.v0_c02240{vertical-align:0.000000pt;}
.ls19_c02240{letter-spacing:-0.179200pt;}
.ls16_c02240{letter-spacing:-0.032000pt;}
.ls15_c02240{letter-spacing:-0.012800pt;}
.ls18_c02240{letter-spacing:-0.011712pt;}
.ls14_c02240{letter-spacing:0.000000pt;}
.ls12_c02240{letter-spacing:0.005856pt;}
.ls1b_c02240{letter-spacing:0.006400pt;}
.lsa_c02240{letter-spacing:0.011712pt;}
.ls17_c02240{letter-spacing:0.012800pt;}
.lsf_c02240{letter-spacing:0.017568pt;}
.ls1_c02240{letter-spacing:0.019200pt;}
.ls7_c02240{letter-spacing:0.023424pt;}
.ls0_c02240{letter-spacing:0.025600pt;}
.ls4_c02240{letter-spacing:0.029280pt;}
.ls13_c02240{letter-spacing:0.032000pt;}
.ls5_c02240{letter-spacing:0.035136pt;}
.ls3_c02240{letter-spacing:0.038400pt;}
.ls8_c02240{letter-spacing:0.040992pt;}
.lsd_c02240{letter-spacing:0.046848pt;}
.ls2_c02240{letter-spacing:0.051200pt;}
.ls9_c02240{letter-spacing:0.058560pt;}
.lsb_c02240{letter-spacing:0.064416pt;}
.lsc_c02240{letter-spacing:0.070272pt;}
.ls6_c02240{letter-spacing:0.070400pt;}
.lse_c02240{letter-spacing:0.076128pt;}
.ls10_c02240{letter-spacing:0.076800pt;}
.ls11_c02240{letter-spacing:0.099552pt;}
.ls1a_c02240{letter-spacing:0.105408pt;}
.ws1_c02240{word-spacing:-14.716128pt;}
.ws0_c02240{word-spacing:-14.704416pt;}
.ws1b_c02240{word-spacing:-0.281088pt;}
.ws9_c02240{word-spacing:-0.147200pt;}
.ws6_c02240{word-spacing:-0.083200pt;}
.ws3_c02240{word-spacing:-0.076800pt;}
.wse_c02240{word-spacing:-0.070400pt;}
.ws20_c02240{word-spacing:-0.025600pt;}
.ws5_c02240{word-spacing:-0.019200pt;}
.ws14_c02240{word-spacing:-0.012800pt;}
.ws2_c02240{word-spacing:0.000000pt;}
.ws4_c02240{word-spacing:0.012800pt;}
.wsa_c02240{word-spacing:0.032000pt;}
.ws17_c02240{word-spacing:0.040992pt;}
.wsd_c02240{word-spacing:0.052704pt;}
.ws2d_c02240{word-spacing:0.058560pt;}
.ws13_c02240{word-spacing:0.070272pt;}
.ws1e_c02240{word-spacing:0.081984pt;}
.ws1f_c02240{word-spacing:0.083200pt;}
.ws1d_c02240{word-spacing:0.093696pt;}
.ws23_c02240{word-spacing:0.243200pt;}
.ws10_c02240{word-spacing:2.277984pt;}
.wsb_c02240{word-spacing:2.289696pt;}
.wsf_c02240{word-spacing:2.295552pt;}
.ws2f_c02240{word-spacing:2.809600pt;}
.ws30_c02240{word-spacing:2.873600pt;}
.ws22_c02240{word-spacing:3.161600pt;}
.ws21_c02240{word-spacing:3.174400pt;}
.ws2e_c02240{word-spacing:3.814400pt;}
.ws2c_c02240{word-spacing:4.514976pt;}
.ws2b_c02240{word-spacing:4.555968pt;}
.ws16_c02240{word-spacing:4.807776pt;}
.ws15_c02240{word-spacing:4.842912pt;}
.ws28_c02240{word-spacing:5.094720pt;}
.ws27_c02240{word-spacing:5.176704pt;}
.ws26_c02240{word-spacing:5.182560pt;}
.ws31_c02240{word-spacing:7.257600pt;}
.ws1c_c02240{word-spacing:7.419552pt;}
.wsc_c02240{word-spacing:9.006528pt;}
.ws1a_c02240{word-spacing:9.961056pt;}
.ws19_c02240{word-spacing:9.966912pt;}
.ws25_c02240{word-spacing:11.481600pt;}
.ws24_c02240{word-spacing:11.500800pt;}
.ws7_c02240{word-spacing:18.457600pt;}
.ws8_c02240{word-spacing:18.521600pt;}
.ws12_c02240{word-spacing:18.581088pt;}
.ws11_c02240{word-spacing:18.604512pt;}
.ws29_c02240{word-spacing:22.129824pt;}
.ws2a_c02240{word-spacing:22.170816pt;}
.ws32_c02240{word-spacing:22.624000pt;}
.ws33_c02240{word-spacing:22.668800pt;}
.ws18_c02240{word-spacing:28.208352pt;}
._3_c02240{margin-left:-3.756800pt;}
._0_c02240{margin-left:-1.088000pt;}
._1_c02240{width:1.071648pt;}
._2_c02240{width:5.100576pt;}
.fs2_c02240{font-size:21.440000pt;}
.fs1_c02240{font-size:42.560000pt;}
.fs3_c02240{font-size:58.560000pt;}
.fs0_c02240{font-size:64.000000pt;}
.y0_c02240{bottom:0.000000pt;}
.y4_c02240{bottom:50.987067pt;}
.y3_c02240{bottom:69.387067pt;}
.y37_c02240{bottom:105.787067pt;}
.y36_c02240{bottom:133.387067pt;}
.y35_c02240{bottom:160.987067pt;}
.y34_c02240{bottom:188.587067pt;}
.y33_c02240{bottom:212.107200pt;}
.y32_c02240{bottom:224.907067pt;}
.y31_c02240{bottom:237.947067pt;}
.y30_c02240{bottom:254.827067pt;}
.y2f_c02240{bottom:271.707067pt;}
.y2e_c02240{bottom:288.507067pt;}
.y2d_c02240{bottom:304.427067pt;}
.y2c_c02240{bottom:317.867067pt;}
.y2b_c02240{bottom:337.787067pt;}
.y2a_c02240{bottom:355.467200pt;}
.y29_c02240{bottom:383.067200pt;}
.y28_c02240{bottom:410.667200pt;}
.y27_c02240{bottom:438.267200pt;}
.y26_c02240{bottom:465.867200pt;}
.y25_c02240{bottom:482.907067pt;}
.y24_c02240{bottom:496.107067pt;}
.y23_c02240{bottom:509.147067pt;}
.y22_c02240{bottom:526.027067pt;}
.y21_c02240{bottom:542.827067pt;}
.y20_c02240{bottom:559.707067pt;}
.y1f_c02240{bottom:576.587067pt;}
.y1e_c02240{bottom:593.467067pt;}
.y1d_c02240{bottom:610.347067pt;}
.y1c_c02240{bottom:627.147067pt;}
.y1b_c02240{bottom:644.027067pt;}
.y1a_c02240{bottom:659.947067pt;}
.y19_c02240{bottom:673.387067pt;}
.y18_c02240{bottom:691.467067pt;}
.y17_c02240{bottom:704.507067pt;}
.y16_c02240{bottom:721.387067pt;}
.y15_c02240{bottom:738.267067pt;}
.y14_c02240{bottom:754.107067pt;}
.y13_c02240{bottom:767.547067pt;}
.y12_c02240{bottom:785.707067pt;}
.y11_c02240{bottom:798.667067pt;}
.y10_c02240{bottom:815.547067pt;}
.yf_c02240{bottom:832.427067pt;}
.ye_c02240{bottom:848.267067pt;}
.yd_c02240{bottom:861.707067pt;}
.yc_c02240{bottom:880.827067pt;}
.yb_c02240{bottom:900.747067pt;}
.ya_c02240{bottom:918.427067pt;}
.y9_c02240{bottom:946.027067pt;}
.y8_c02240{bottom:963.067067pt;}
.y7_c02240{bottom:976.507067pt;}
.y6_c02240{bottom:994.907067pt;}
.y5_c02240{bottom:1013.307067pt;}
.y2_c02240{bottom:1042.347067pt;}
.y1_c02240{bottom:1060.587067pt;}
.h4_c02240{height:18.812344pt;}
.h6_c02240{height:37.343906pt;}
.h3_c02240{height:37.801094pt;}
.h5_c02240{height:51.382969pt;}
.h7_c02240{height:52.012031pt;}
.h2_c02240{height:56.156250pt;}
.h1_c02240{height:56.843750pt;}
.h0_c02240{height:1122.666667pt;}
.w1_c02240{width:793.333333pt;}
.w0_c02240{width:793.626667pt;}
.x0_c02240{left:0.000000pt;}
.x1_c02240{left:113.440000pt;}
.x6_c02240{left:132.400000pt;}
.x5_c02240{left:186.960000pt;}
.x3_c02240{left:361.120000pt;}
.x2_c02240{left:384.880000pt;}
.x4_c02240{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_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_d40cdc0187da892e735d3d4c.woff2')format("woff");}.ff1_c02241{font-family:ff1_c02241;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02241;src:url('chunks/assets/font_059b7f1bba0fa81c8d9d7ee9.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;}
.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;}
.ls1a_c02241{letter-spacing:-0.028800px;}
.ls16_c02241{letter-spacing:-0.014400px;}
.ls18_c02241{letter-spacing:-0.013176px;}
.ls15_c02241{letter-spacing:-0.007200px;}
.ls19_c02241{letter-spacing:-0.006588px;}
.ls14_c02241{letter-spacing:0.000000px;}
.ls1_c02241{letter-spacing:0.007200px;}
.ls8_c02241{letter-spacing:0.013176px;}
.lsd_c02241{letter-spacing:0.014400px;}
.lse_c02241{letter-spacing:0.019764px;}
.ls17_c02241{letter-spacing:0.021600px;}
.ls10_c02241{letter-spacing:0.026352px;}
.ls0_c02241{letter-spacing:0.028800px;}
.ls9_c02241{letter-spacing:0.032940px;}
.ls2_c02241{letter-spacing:0.036000px;}
.ls5_c02241{letter-spacing:0.039528px;}
.ls11_c02241{letter-spacing:0.043200px;}
.lsf_c02241{letter-spacing:0.046116px;}
.lsa_c02241{letter-spacing:0.052704px;}
.ls4_c02241{letter-spacing:0.059292px;}
.ls12_c02241{letter-spacing:0.064800px;}
.ls7_c02241{letter-spacing:0.065880px;}
.lsb_c02241{letter-spacing:0.072468px;}
.ls6_c02241{letter-spacing:0.092232px;}
.lsc_c02241{letter-spacing:0.098820px;}
.ls3_c02241{letter-spacing:0.111996px;}
.ls13_c02241{letter-spacing:0.131760px;}
.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;}
}
.ws21_c02241{word-spacing:-0.381600px;}
.ws7_c02241{word-spacing:-0.093600px;}
.ws1_c02241{word-spacing:-0.086400px;}
.ws6_c02241{word-spacing:-0.036000px;}
.ws15_c02241{word-spacing:-0.014400px;}
.ws29_c02241{word-spacing:-0.007200px;}
.ws0_c02241{word-spacing:0.000000px;}
.wse_c02241{word-spacing:0.007200px;}
.ws30_c02241{word-spacing:0.014400px;}
.ws13_c02241{word-spacing:0.032940px;}
.ws14_c02241{word-spacing:0.039528px;}
.ws17_c02241{word-spacing:0.046116px;}
.ws2b_c02241{word-spacing:0.059292px;}
.ws1a_c02241{word-spacing:0.065880px;}
.ws25_c02241{word-spacing:0.079056px;}
.ws2c_c02241{word-spacing:0.098820px;}
.ws24_c02241{word-spacing:0.421632px;}
.ws3_c02241{word-spacing:1.166400px;}
.ws2_c02241{word-spacing:1.432800px;}
.ws12_c02241{word-spacing:2.496852px;}
.ws11_c02241{word-spacing:2.510028px;}
.ws10_c02241{word-spacing:2.536380px;}
.ws19_c02241{word-spacing:2.898720px;}
.ws18_c02241{word-spacing:2.905308px;}
.ws1f_c02241{word-spacing:4.183200px;}
.ws20_c02241{word-spacing:4.240800px;}
.ws28_c02241{word-spacing:4.749948px;}
.ws27_c02241{word-spacing:4.756536px;}
.wsa_c02241{word-spacing:5.757912px;}
.wsb_c02241{word-spacing:5.790852px;}
.wsf_c02241{word-spacing:6.877872px;}
.ws22_c02241{word-spacing:7.582788px;}
.ws23_c02241{word-spacing:7.622316px;}
.ws26_c02241{word-spacing:8.689572px;}
.ws2f_c02241{word-spacing:9.964800px;}
.ws2e_c02241{word-spacing:10.008000px;}
.ws2d_c02241{word-spacing:10.044000px;}
.ws8_c02241{word-spacing:11.548764px;}
.ws9_c02241{word-spacing:11.568528px;}
.ws16_c02241{word-spacing:11.950632px;}
.wsc_c02241{word-spacing:12.266856px;}
.wsd_c02241{word-spacing:12.319560px;}
.ws1d_c02241{word-spacing:15.768000px;}
.ws2a_c02241{word-spacing:20.211984px;}
.ws1c_c02241{word-spacing:27.540000px;}
.ws1b_c02241{word-spacing:27.734400px;}
.ws1e_c02241{word-spacing:28.015200px;}
.ws5_c02241{word-spacing:31.644000px;}
.ws4_c02241{word-spacing:31.680000px;}
._0_c02241{margin-left:-1.137600px;}
._2_c02241{width:1.007964px;}
._3_c02241{width:6.818580px;}
._4_c02241{width:8.590752px;}
._1_c02241{width:11.496060px;}
._5_c02241{width:20.139516px;}
.fc0_c02241{color:rgb(0,0,0);}
.fs1_c02241{font-size:24.120000px;}
.fs2_c02241{font-size:47.880000px;}
.fs3_c02241{font-size:65.880000px;}
.fs0_c02241{font-size:72.000000px;}
.y0_c02241{bottom:0.000000px;}
.y4_c02241{bottom:57.360450px;}
.y3_c02241{bottom:78.060450px;}
.y39_c02241{bottom:114.600450px;}
.y38_c02241{bottom:145.830450px;}
.y37_c02241{bottom:176.880450px;}
.y36_c02241{bottom:198.390450px;}
.y35_c02241{bottom:206.400450px;}
.y34_c02241{bottom:220.980450px;}
.y33_c02241{bottom:235.920450px;}
.y32_c02241{bottom:254.820450px;}
.y31_c02241{bottom:272.730450px;}
.y30_c02241{bottom:287.850450px;}
.y2f_c02241{bottom:307.920450px;}
.y2e_c02241{bottom:322.860450px;}
.y2d_c02241{bottom:341.850450px;}
.y2c_c02241{bottom:360.840450px;}
.y2b_c02241{bottom:378.660450px;}
.y2a_c02241{bottom:393.780450px;}
.y29_c02241{bottom:414.210600px;}
.y28_c02241{bottom:428.880450px;}
.y27_c02241{bottom:447.780600px;}
.y26_c02241{bottom:466.770600px;}
.y25_c02241{bottom:484.680600px;}
.y24_c02241{bottom:499.800450px;}
.y23_c02241{bottom:522.210600px;}
.y22_c02241{bottom:542.100450px;}
.y21_c02241{bottom:573.150450px;}
.y20_c02241{bottom:604.200450px;}
.y1f_c02241{bottom:635.250450px;}
.y1e_c02241{bottom:666.300450px;}
.y1d_c02241{bottom:685.740450px;}
.y1c_c02241{bottom:700.320450px;}
.y1b_c02241{bottom:714.990450px;}
.y1a_c02241{bottom:733.890450px;}
.y19_c02241{bottom:752.880450px;}
.y18_c02241{bottom:771.870450px;}
.y17_c02241{bottom:789.690450px;}
.y16_c02241{bottom:804.810450px;}
.y15_c02241{bottom:825.240450px;}
.y14_c02241{bottom:839.910450px;}
.y13_c02241{bottom:858.900450px;}
.y12_c02241{bottom:877.800450px;}
.y11_c02241{bottom:895.710450px;}
.y10_c02241{bottom:910.830450px;}
.yf_c02241{bottom:931.170450px;}
.ye_c02241{bottom:945.840450px;}
.yd_c02241{bottom:964.830450px;}
.yc_c02241{bottom:983.820450px;}
.yb_c02241{bottom:1002.810450px;}
.ya_c02241{bottom:1020.630450px;}
.y9_c02241{bottom:1035.750450px;}
.y8_c02241{bottom:1058.160450px;}
.y7_c02241{bottom:1078.050450px;}
.y6_c02241{bottom:1109.100450px;}
.y5_c02241{bottom:1140.150450px;}
.y2_c02241{bottom:1172.640450px;}
.y1_c02241{bottom:1193.160450px;}
.h3_c02241{height:21.163887px;}
.h7_c02241{height:42.011895px;}
.h4_c02241{height:42.526230px;}
.h6_c02241{height:57.805840px;}
.h5_c02241{height:58.513535px;}
.h2_c02241{height:63.175781px;}
.h1_c02241{height:63.949219px;}
.h0_c02241{height:1263.000000px;}
.w1_c02241{width:892.500000px;}
.w0_c02241{width:892.830000px;}
.x0_c02241{left:0.000000px;}
.x1_c02241{left:127.620000px;}
.x4_c02241{left:135.630000px;}
.x3_c02241{left:148.950000px;}
.x2_c02241{left:432.990000px;}
.x5_c02241{left:446.490000px;}
@media print{
.v0_c02241{vertical-align:0.000000pt;}
.ls1a_c02241{letter-spacing:-0.025600pt;}
.ls16_c02241{letter-spacing:-0.012800pt;}
.ls18_c02241{letter-spacing:-0.011712pt;}
.ls15_c02241{letter-spacing:-0.006400pt;}
.ls19_c02241{letter-spacing:-0.005856pt;}
.ls14_c02241{letter-spacing:0.000000pt;}
.ls1_c02241{letter-spacing:0.006400pt;}
.ls8_c02241{letter-spacing:0.011712pt;}
.lsd_c02241{letter-spacing:0.012800pt;}
.lse_c02241{letter-spacing:0.017568pt;}
.ls17_c02241{letter-spacing:0.019200pt;}
.ls10_c02241{letter-spacing:0.023424pt;}
.ls0_c02241{letter-spacing:0.025600pt;}
.ls9_c02241{letter-spacing:0.029280pt;}
.ls2_c02241{letter-spacing:0.032000pt;}
.ls5_c02241{letter-spacing:0.035136pt;}
.ls11_c02241{letter-spacing:0.038400pt;}
.lsf_c02241{letter-spacing:0.040992pt;}
.lsa_c02241{letter-spacing:0.046848pt;}
.ls4_c02241{letter-spacing:0.052704pt;}
.ls12_c02241{letter-spacing:0.057600pt;}
.ls7_c02241{letter-spacing:0.058560pt;}
.lsb_c02241{letter-spacing:0.064416pt;}
.ls6_c02241{letter-spacing:0.081984pt;}
.lsc_c02241{letter-spacing:0.087840pt;}
.ls3_c02241{letter-spacing:0.099552pt;}
.ls13_c02241{letter-spacing:0.117120pt;}
.ws21_c02241{word-spacing:-0.339200pt;}
.ws7_c02241{word-spacing:-0.083200pt;}
.ws1_c02241{word-spacing:-0.076800pt;}
.ws6_c02241{word-spacing:-0.032000pt;}
.ws15_c02241{word-spacing:-0.012800pt;}
.ws29_c02241{word-spacing:-0.006400pt;}
.ws0_c02241{word-spacing:0.000000pt;}
.wse_c02241{word-spacing:0.006400pt;}
.ws30_c02241{word-spacing:0.012800pt;}
.ws13_c02241{word-spacing:0.029280pt;}
.ws14_c02241{word-spacing:0.035136pt;}
.ws17_c02241{word-spacing:0.040992pt;}
.ws2b_c02241{word-spacing:0.052704pt;}
.ws1a_c02241{word-spacing:0.058560pt;}
.ws25_c02241{word-spacing:0.070272pt;}
.ws2c_c02241{word-spacing:0.087840pt;}
.ws24_c02241{word-spacing:0.374784pt;}
.ws3_c02241{word-spacing:1.036800pt;}
.ws2_c02241{word-spacing:1.273600pt;}
.ws12_c02241{word-spacing:2.219424pt;}
.ws11_c02241{word-spacing:2.231136pt;}
.ws10_c02241{word-spacing:2.254560pt;}
.ws19_c02241{word-spacing:2.576640pt;}
.ws18_c02241{word-spacing:2.582496pt;}
.ws1f_c02241{word-spacing:3.718400pt;}
.ws20_c02241{word-spacing:3.769600pt;}
.ws28_c02241{word-spacing:4.222176pt;}
.ws27_c02241{word-spacing:4.228032pt;}
.wsa_c02241{word-spacing:5.118144pt;}
.wsb_c02241{word-spacing:5.147424pt;}
.wsf_c02241{word-spacing:6.113664pt;}
.ws22_c02241{word-spacing:6.740256pt;}
.ws23_c02241{word-spacing:6.775392pt;}
.ws26_c02241{word-spacing:7.724064pt;}
.ws2f_c02241{word-spacing:8.857600pt;}
.ws2e_c02241{word-spacing:8.896000pt;}
.ws2d_c02241{word-spacing:8.928000pt;}
.ws8_c02241{word-spacing:10.265568pt;}
.ws9_c02241{word-spacing:10.283136pt;}
.ws16_c02241{word-spacing:10.622784pt;}
.wsc_c02241{word-spacing:10.903872pt;}
.wsd_c02241{word-spacing:10.950720pt;}
.ws1d_c02241{word-spacing:14.016000pt;}
.ws2a_c02241{word-spacing:17.966208pt;}
.ws1c_c02241{word-spacing:24.480000pt;}
.ws1b_c02241{word-spacing:24.652800pt;}
.ws1e_c02241{word-spacing:24.902400pt;}
.ws5_c02241{word-spacing:28.128000pt;}
.ws4_c02241{word-spacing:28.160000pt;}
._0_c02241{margin-left:-1.011200pt;}
._2_c02241{width:0.895968pt;}
._3_c02241{width:6.060960pt;}
._4_c02241{width:7.636224pt;}
._1_c02241{width:10.218720pt;}
._5_c02241{width:17.901792pt;}
.fs1_c02241{font-size:21.440000pt;}
.fs2_c02241{font-size:42.560000pt;}
.fs3_c02241{font-size:58.560000pt;}
.fs0_c02241{font-size:64.000000pt;}
.y0_c02241{bottom:0.000000pt;}
.y4_c02241{bottom:50.987067pt;}
.y3_c02241{bottom:69.387067pt;}
.y39_c02241{bottom:101.867067pt;}
.y38_c02241{bottom:129.627067pt;}
.y37_c02241{bottom:157.227067pt;}
.y36_c02241{bottom:176.347067pt;}
.y35_c02241{bottom:183.467067pt;}
.y34_c02241{bottom:196.427067pt;}
.y33_c02241{bottom:209.707067pt;}
.y32_c02241{bottom:226.507067pt;}
.y31_c02241{bottom:242.427067pt;}
.y30_c02241{bottom:255.867067pt;}
.y2f_c02241{bottom:273.707067pt;}
.y2e_c02241{bottom:286.987067pt;}
.y2d_c02241{bottom:303.867067pt;}
.y2c_c02241{bottom:320.747067pt;}
.y2b_c02241{bottom:336.587067pt;}
.y2a_c02241{bottom:350.027067pt;}
.y29_c02241{bottom:368.187200pt;}
.y28_c02241{bottom:381.227067pt;}
.y27_c02241{bottom:398.027200pt;}
.y26_c02241{bottom:414.907200pt;}
.y25_c02241{bottom:430.827200pt;}
.y24_c02241{bottom:444.267067pt;}
.y23_c02241{bottom:464.187200pt;}
.y22_c02241{bottom:481.867067pt;}
.y21_c02241{bottom:509.467067pt;}
.y20_c02241{bottom:537.067067pt;}
.y1f_c02241{bottom:564.667067pt;}
.y1e_c02241{bottom:592.267067pt;}
.y1d_c02241{bottom:609.547067pt;}
.y1c_c02241{bottom:622.507067pt;}
.y1b_c02241{bottom:635.547067pt;}
.y1a_c02241{bottom:652.347067pt;}
.y19_c02241{bottom:669.227067pt;}
.y18_c02241{bottom:686.107067pt;}
.y17_c02241{bottom:701.947067pt;}
.y16_c02241{bottom:715.387067pt;}
.y15_c02241{bottom:733.547067pt;}
.y14_c02241{bottom:746.587067pt;}
.y13_c02241{bottom:763.467067pt;}
.y12_c02241{bottom:780.267067pt;}
.y11_c02241{bottom:796.187067pt;}
.y10_c02241{bottom:809.627067pt;}
.yf_c02241{bottom:827.707067pt;}
.ye_c02241{bottom:840.747067pt;}
.yd_c02241{bottom:857.627067pt;}
.yc_c02241{bottom:874.507067pt;}
.yb_c02241{bottom:891.387067pt;}
.ya_c02241{bottom:907.227067pt;}
.y9_c02241{bottom:920.667067pt;}
.y8_c02241{bottom:940.587067pt;}
.y7_c02241{bottom:958.267067pt;}
.y6_c02241{bottom:985.867067pt;}
.y5_c02241{bottom:1013.467067pt;}
.y2_c02241{bottom:1042.347067pt;}
.y1_c02241{bottom:1060.587067pt;}
.h3_c02241{height:18.812344pt;}
.h7_c02241{height:37.343906pt;}
.h4_c02241{height:37.801094pt;}
.h6_c02241{height:51.382969pt;}
.h5_c02241{height:52.012031pt;}
.h2_c02241{height:56.156250pt;}
.h1_c02241{height:56.843750pt;}
.h0_c02241{height:1122.666667pt;}
.w1_c02241{width:793.333333pt;}
.w0_c02241{width:793.626667pt;}
.x0_c02241{left:0.000000pt;}
.x1_c02241{left:113.440000pt;}
.x4_c02241{left:120.560000pt;}
.x3_c02241{left:132.400000pt;}
.x2_c02241{left:384.880000pt;}
.x5_c02241{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_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_bb589ef01c1b85c64f5ebb5f.woff2')format("woff");}.ff1_c02242{font-family:ff1_c02242;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02242;src:url('chunks/assets/font_4fbe3132431b9c08b987886e.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02242{font-family:ff3_c02242;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;}
.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:11.160600px;}
.ls2d_c02242{letter-spacing:-0.222444px;}
.ls23_c02242{letter-spacing:-0.120240px;}
.ls2e_c02242{letter-spacing:-0.108216px;}
.ls2b_c02242{letter-spacing:-0.096192px;}
.ls21_c02242{letter-spacing:-0.090972px;}
.ls20_c02242{letter-spacing:-0.090180px;}
.ls1a_c02242{letter-spacing:-0.072144px;}
.ls2c_c02242{letter-spacing:-0.066132px;}
.ls2a_c02242{letter-spacing:-0.060120px;}
.ls24_c02242{letter-spacing:-0.054108px;}
.ls17_c02242{letter-spacing:-0.050400px;}
.ls1c_c02242{letter-spacing:-0.048096px;}
.ls1b_c02242{letter-spacing:-0.042084px;}
.ls19_c02242{letter-spacing:-0.036072px;}
.ls16_c02242{letter-spacing:-0.036000px;}
.ls1d_c02242{letter-spacing:-0.030060px;}
.ls27_c02242{letter-spacing:-0.024048px;}
.ls15_c02242{letter-spacing:-0.021600px;}
.ls26_c02242{letter-spacing:-0.018036px;}
.ls13_c02242{letter-spacing:-0.014400px;}
.ls14_c02242{letter-spacing:-0.007200px;}
.ls12_c02242{letter-spacing:0.000000px;}
.lsb_c02242{letter-spacing:0.006012px;}
.ls2_c02242{letter-spacing:0.007200px;}
.lsa_c02242{letter-spacing:0.012024px;}
.ls1_c02242{letter-spacing:0.014400px;}
.lsf_c02242{letter-spacing:0.018036px;}
.ls6_c02242{letter-spacing:0.021600px;}
.ls18_c02242{letter-spacing:0.024048px;}
.ls0_c02242{letter-spacing:0.028800px;}
.lsd_c02242{letter-spacing:0.030060px;}
.ls3_c02242{letter-spacing:0.036000px;}
.ls10_c02242{letter-spacing:0.036072px;}
.ls7_c02242{letter-spacing:0.043200px;}
.ls9_c02242{letter-spacing:0.048096px;}
.ls4_c02242{letter-spacing:0.050400px;}
.ls25_c02242{letter-spacing:0.054108px;}
.ls11_c02242{letter-spacing:0.066132px;}
.ls22_c02242{letter-spacing:0.072144px;}
.ls28_c02242{letter-spacing:0.078156px;}
.ls29_c02242{letter-spacing:0.090180px;}
.ls8_c02242{letter-spacing:0.093600px;}
.ls5_c02242{letter-spacing:0.100800px;}
.lsc_c02242{letter-spacing:0.120240px;}
.ls1e_c02242{letter-spacing:0.144288px;}
.ls1f_c02242{letter-spacing:0.180360px;}
.lse_c02242{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02242{word-spacing:-47.880000px;}
.ws0_c02242{word-spacing:-18.000000px;}
.ws29_c02242{word-spacing:-0.342684px;}
.ws38_c02242{word-spacing:-0.336672px;}
.ws2d_c02242{word-spacing:-0.324648px;}
.ws1f_c02242{word-spacing:-0.282564px;}
.ws28_c02242{word-spacing:-0.272916px;}
.ws1e_c02242{word-spacing:-0.234468px;}
.ws37_c02242{word-spacing:-0.210420px;}
.ws36_c02242{word-spacing:-0.204408px;}
.ws3_c02242{word-spacing:-0.086400px;}
.ws2_c02242{word-spacing:0.000000px;}
.ws31_c02242{word-spacing:0.012024px;}
.ws4_c02242{word-spacing:0.014400px;}
.ws13_c02242{word-spacing:0.036000px;}
.ws22_c02242{word-spacing:0.042084px;}
.ws32_c02242{word-spacing:0.054108px;}
.ws1d_c02242{word-spacing:0.066132px;}
.ws2a_c02242{word-spacing:0.072144px;}
.ws2e_c02242{word-spacing:0.078156px;}
.ws26_c02242{word-spacing:0.084168px;}
.ws24_c02242{word-spacing:0.090180px;}
.ws2f_c02242{word-spacing:0.108216px;}
.ws30_c02242{word-spacing:0.114228px;}
.ws25_c02242{word-spacing:0.120240px;}
.ws35_c02242{word-spacing:0.126252px;}
.ws21_c02242{word-spacing:0.132264px;}
.ws23_c02242{word-spacing:0.138276px;}
.ws2c_c02242{word-spacing:0.144288px;}
.ws33_c02242{word-spacing:0.150300px;}
.ws20_c02242{word-spacing:0.162324px;}
.ws27_c02242{word-spacing:0.180360px;}
.ws34_c02242{word-spacing:0.186372px;}
.ws39_c02242{word-spacing:0.198396px;}
.ws2b_c02242{word-spacing:0.210420px;}
.wsd_c02242{word-spacing:0.511200px;}
.wsc_c02242{word-spacing:0.612000px;}
.ws1c_c02242{word-spacing:2.412000px;}
.ws8_c02242{word-spacing:2.440800px;}
.ws7_c02242{word-spacing:2.491200px;}
.ws1b_c02242{word-spacing:2.498400px;}
.ws19_c02242{word-spacing:3.088800px;}
.ws17_c02242{word-spacing:3.232800px;}
.ws18_c02242{word-spacing:3.276000px;}
.wsb_c02242{word-spacing:9.324000px;}
.ws9_c02242{word-spacing:13.298400px;}
.wsa_c02242{word-spacing:13.312800px;}
.ws12_c02242{word-spacing:16.041600px;}
.ws10_c02242{word-spacing:16.171200px;}
.ws11_c02242{word-spacing:16.192800px;}
.ws15_c02242{word-spacing:20.347200px;}
.ws14_c02242{word-spacing:20.412000px;}
.ws16_c02242{word-spacing:20.556000px;}
.wse_c02242{word-spacing:21.578400px;}
.wsf_c02242{word-spacing:21.607200px;}
.ws5_c02242{word-spacing:23.745600px;}
.ws6_c02242{word-spacing:23.760000px;}
.ws1a_c02242{word-spacing:27.266400px;}
._0_c02242{margin-left:-1.281600px;}
._5_c02242{width:1.230516px;}
._1_c02242{width:58.810896px;}
._3_c02242{width:61.828920px;}
._9_c02242{width:278.211816px;}
._10_c02242{width:436.583844px;}
._e_c02242{width:542.096532px;}
._7_c02242{width:598.307688px;}
._17_c02242{width:657.874584px;}
._f_c02242{width:666.410580px;}
._1a_c02242{width:706.047696px;}
._6_c02242{width:726.984612px;}
._8_c02242{width:799.084440px;}
._a_c02242{width:801.291888px;}
._2_c02242{width:860.317704px;}
._18_c02242{width:950.947560px;}
._14_c02242{width:985.126824px;}
._4_c02242{width:1013.723820px;}
._19_c02242{width:1154.502756px;}
._b_c02242{width:1172.218176px;}
._13_c02242{width:1225.616760px;}
._11_c02242{width:1264.598568px;}
._c_c02242{width:1317.132468px;}
._d_c02242{width:1340.183520px;}
._12_c02242{width:1345.766580px;}
._15_c02242{width:1507.575492px;}
._16_c02242{width:1553.571360px;}
.fc0_c02242{color:rgb(0,0,0);}
.fs5_c02242{font-size:2.880000px;}
.fs1_c02242{font-size:11.880000px;}
.fs2_c02242{font-size:29.880000px;}
.fs4_c02242{font-size:47.880000px;}
.fs3_c02242{font-size:60.120000px;}
.fs0_c02242{font-size:72.000000px;}
.y0_c02242{bottom:0.000000px;}
.y1e_c02242{bottom:3.240450px;}
.y4_c02242{bottom:57.360450px;}
.y3_c02242{bottom:78.060450px;}
.y3a_c02242{bottom:120.000450px;}
.y39_c02242{bottom:124.050450px;}
.y38_c02242{bottom:142.050450px;}
.y37_c02242{bottom:160.050450px;}
.y36_c02242{bottom:178.050450px;}
.y35_c02242{bottom:196.050450px;}
.y34_c02242{bottom:214.050450px;}
.y33_c02242{bottom:232.050450px;}
.y32_c02242{bottom:250.050450px;}
.y31_c02242{bottom:268.050450px;}
.y30_c02242{bottom:286.050450px;}
.y2f_c02242{bottom:304.050450px;}
.y2e_c02242{bottom:322.050450px;}
.y2d_c02242{bottom:340.050450px;}
.y2c_c02242{bottom:358.050450px;}
.y2b_c02242{bottom:376.050450px;}
.y2a_c02242{bottom:394.050450px;}
.y29_c02242{bottom:412.050450px;}
.y28_c02242{bottom:430.050450px;}
.y27_c02242{bottom:448.050450px;}
.y26_c02242{bottom:466.050450px;}
.y25_c02242{bottom:484.050450px;}
.y24_c02242{bottom:502.050450px;}
.y23_c02242{bottom:520.050450px;}
.y22_c02242{bottom:538.050450px;}
.y21_c02242{bottom:555.240450px;}
.y20_c02242{bottom:571.890450px;}
.y1f_c02242{bottom:582.690450px;}
.y1d_c02242{bottom:596.640000px;}
.y1c_c02242{bottom:599.880450px;}
.y1b_c02242{bottom:617.160450px;}
.y1a_c02242{bottom:634.350450px;}
.y19_c02242{bottom:651.000450px;}
.y18_c02242{bottom:661.890450px;}
.y17_c02242{bottom:682.590450px;}
.y16_c02242{bottom:703.290450px;}
.y15_c02242{bottom:723.990450px;}
.y14_c02242{bottom:744.690450px;}
.y13_c02242{bottom:765.930450px;}
.y12_c02242{bottom:787.350450px;}
.y11_c02242{bottom:819.120450px;}
.y10_c02242{bottom:838.290600px;}
.yf_c02242{bottom:855.570450px;}
.ye_c02242{bottom:886.620450px;}
.yd_c02242{bottom:917.670450px;}
.yc_c02242{bottom:948.720450px;}
.yb_c02242{bottom:979.770450px;}
.ya_c02242{bottom:1010.820450px;}
.y9_c02242{bottom:1041.870450px;}
.y8_c02242{bottom:1072.920450px;}
.y7_c02242{bottom:1103.790450px;}
.y6_c02242{bottom:1122.870450px;}
.y5_c02242{bottom:1139.970450px;}
.y2_c02242{bottom:1172.640450px;}
.y1_c02242{bottom:1193.160450px;}
.h9_c02242{height:2.527031px;}
.h3_c02242{height:10.551621px;}
.h6_c02242{height:17.010000px;}
.h4_c02242{height:26.217949px;}
.h5_c02242{height:53.397598px;}
.h8_c02242{height:53.686230px;}
.h7_c02242{height:53.686830px;}
.h2_c02242{height:63.175781px;}
.h1_c02242{height:63.949219px;}
.h0_c02242{height:1263.000000px;}
.w2_c02242{width:546.570000px;}
.w1_c02242{width:892.500000px;}
.w0_c02242{width:892.830000px;}
.x0_c02242{left:0.000000px;}
.x7_c02242{left:122.490000px;}
.x1_c02242{left:127.620000px;}
.x4_c02242{left:135.630000px;}
.x6_c02242{left:138.240000px;}
.x3_c02242{left:148.950000px;}
.x9_c02242{left:154.440000px;}
.x5_c02242{left:188.820000px;}
.x8_c02242{left:268.650000px;}
.x2_c02242{left:432.990000px;}
.xa_c02242{left:645.930000px;}
@media print{
.v0_c02242{vertical-align:0.000000pt;}
.v1_c02242{vertical-align:9.920533pt;}
.ls2d_c02242{letter-spacing:-0.197728pt;}
.ls23_c02242{letter-spacing:-0.106880pt;}
.ls2e_c02242{letter-spacing:-0.096192pt;}
.ls2b_c02242{letter-spacing:-0.085504pt;}
.ls21_c02242{letter-spacing:-0.080864pt;}
.ls20_c02242{letter-spacing:-0.080160pt;}
.ls1a_c02242{letter-spacing:-0.064128pt;}
.ls2c_c02242{letter-spacing:-0.058784pt;}
.ls2a_c02242{letter-spacing:-0.053440pt;}
.ls24_c02242{letter-spacing:-0.048096pt;}
.ls17_c02242{letter-spacing:-0.044800pt;}
.ls1c_c02242{letter-spacing:-0.042752pt;}
.ls1b_c02242{letter-spacing:-0.037408pt;}
.ls19_c02242{letter-spacing:-0.032064pt;}
.ls16_c02242{letter-spacing:-0.032000pt;}
.ls1d_c02242{letter-spacing:-0.026720pt;}
.ls27_c02242{letter-spacing:-0.021376pt;}
.ls15_c02242{letter-spacing:-0.019200pt;}
.ls26_c02242{letter-spacing:-0.016032pt;}
.ls13_c02242{letter-spacing:-0.012800pt;}
.ls14_c02242{letter-spacing:-0.006400pt;}
.ls12_c02242{letter-spacing:0.000000pt;}
.lsb_c02242{letter-spacing:0.005344pt;}
.ls2_c02242{letter-spacing:0.006400pt;}
.lsa_c02242{letter-spacing:0.010688pt;}
.ls1_c02242{letter-spacing:0.012800pt;}
.lsf_c02242{letter-spacing:0.016032pt;}
.ls6_c02242{letter-spacing:0.019200pt;}
.ls18_c02242{letter-spacing:0.021376pt;}
.ls0_c02242{letter-spacing:0.025600pt;}
.lsd_c02242{letter-spacing:0.026720pt;}
.ls3_c02242{letter-spacing:0.032000pt;}
.ls10_c02242{letter-spacing:0.032064pt;}
.ls7_c02242{letter-spacing:0.038400pt;}
.ls9_c02242{letter-spacing:0.042752pt;}
.ls4_c02242{letter-spacing:0.044800pt;}
.ls25_c02242{letter-spacing:0.048096pt;}
.ls11_c02242{letter-spacing:0.058784pt;}
.ls22_c02242{letter-spacing:0.064128pt;}
.ls28_c02242{letter-spacing:0.069472pt;}
.ls29_c02242{letter-spacing:0.080160pt;}
.ls8_c02242{letter-spacing:0.083200pt;}
.ls5_c02242{letter-spacing:0.089600pt;}
.lsc_c02242{letter-spacing:0.106880pt;}
.ls1e_c02242{letter-spacing:0.128256pt;}
.ls1f_c02242{letter-spacing:0.160320pt;}
.lse_c02242{letter-spacing:0.161728pt;}
.ws1_c02242{word-spacing:-42.560000pt;}
.ws0_c02242{word-spacing:-16.000000pt;}
.ws29_c02242{word-spacing:-0.304608pt;}
.ws38_c02242{word-spacing:-0.299264pt;}
.ws2d_c02242{word-spacing:-0.288576pt;}
.ws1f_c02242{word-spacing:-0.251168pt;}
.ws28_c02242{word-spacing:-0.242592pt;}
.ws1e_c02242{word-spacing:-0.208416pt;}
.ws37_c02242{word-spacing:-0.187040pt;}
.ws36_c02242{word-spacing:-0.181696pt;}
.ws3_c02242{word-spacing:-0.076800pt;}
.ws2_c02242{word-spacing:0.000000pt;}
.ws31_c02242{word-spacing:0.010688pt;}
.ws4_c02242{word-spacing:0.012800pt;}
.ws13_c02242{word-spacing:0.032000pt;}
.ws22_c02242{word-spacing:0.037408pt;}
.ws32_c02242{word-spacing:0.048096pt;}
.ws1d_c02242{word-spacing:0.058784pt;}
.ws2a_c02242{word-spacing:0.064128pt;}
.ws2e_c02242{word-spacing:0.069472pt;}
.ws26_c02242{word-spacing:0.074816pt;}
.ws24_c02242{word-spacing:0.080160pt;}
.ws2f_c02242{word-spacing:0.096192pt;}
.ws30_c02242{word-spacing:0.101536pt;}
.ws25_c02242{word-spacing:0.106880pt;}
.ws35_c02242{word-spacing:0.112224pt;}
.ws21_c02242{word-spacing:0.117568pt;}
.ws23_c02242{word-spacing:0.122912pt;}
.ws2c_c02242{word-spacing:0.128256pt;}
.ws33_c02242{word-spacing:0.133600pt;}
.ws20_c02242{word-spacing:0.144288pt;}
.ws27_c02242{word-spacing:0.160320pt;}
.ws34_c02242{word-spacing:0.165664pt;}
.ws39_c02242{word-spacing:0.176352pt;}
.ws2b_c02242{word-spacing:0.187040pt;}
.wsd_c02242{word-spacing:0.454400pt;}
.wsc_c02242{word-spacing:0.544000pt;}
.ws1c_c02242{word-spacing:2.144000pt;}
.ws8_c02242{word-spacing:2.169600pt;}
.ws7_c02242{word-spacing:2.214400pt;}
.ws1b_c02242{word-spacing:2.220800pt;}
.ws19_c02242{word-spacing:2.745600pt;}
.ws17_c02242{word-spacing:2.873600pt;}
.ws18_c02242{word-spacing:2.912000pt;}
.wsb_c02242{word-spacing:8.288000pt;}
.ws9_c02242{word-spacing:11.820800pt;}
.wsa_c02242{word-spacing:11.833600pt;}
.ws12_c02242{word-spacing:14.259200pt;}
.ws10_c02242{word-spacing:14.374400pt;}
.ws11_c02242{word-spacing:14.393600pt;}
.ws15_c02242{word-spacing:18.086400pt;}
.ws14_c02242{word-spacing:18.144000pt;}
.ws16_c02242{word-spacing:18.272000pt;}
.wse_c02242{word-spacing:19.180800pt;}
.wsf_c02242{word-spacing:19.206400pt;}
.ws5_c02242{word-spacing:21.107200pt;}
.ws6_c02242{word-spacing:21.120000pt;}
.ws1a_c02242{word-spacing:24.236800pt;}
._0_c02242{margin-left:-1.139200pt;}
._5_c02242{width:1.093792pt;}
._1_c02242{width:52.276352pt;}
._3_c02242{width:54.959040pt;}
._9_c02242{width:247.299392pt;}
._10_c02242{width:388.074528pt;}
._e_c02242{width:481.863584pt;}
._7_c02242{width:531.829056pt;}
._17_c02242{width:584.777408pt;}
._f_c02242{width:592.364960pt;}
._1a_c02242{width:627.597952pt;}
._6_c02242{width:646.208544pt;}
._8_c02242{width:710.297280pt;}
._a_c02242{width:712.259456pt;}
._2_c02242{width:764.726848pt;}
._18_c02242{width:845.286720pt;}
._14_c02242{width:875.668288pt;}
._4_c02242{width:901.087840pt;}
._19_c02242{width:1026.224672pt;}
._b_c02242{width:1041.971712pt;}
._13_c02242{width:1089.437120pt;}
._11_c02242{width:1124.087616pt;}
._c_c02242{width:1170.784416pt;}
._d_c02242{width:1191.274240pt;}
._12_c02242{width:1196.236960pt;}
._15_c02242{width:1340.067104pt;}
._16_c02242{width:1380.952320pt;}
.fs5_c02242{font-size:2.560000pt;}
.fs1_c02242{font-size:10.560000pt;}
.fs2_c02242{font-size:26.560000pt;}
.fs4_c02242{font-size:42.560000pt;}
.fs3_c02242{font-size:53.440000pt;}
.fs0_c02242{font-size:64.000000pt;}
.y0_c02242{bottom:0.000000pt;}
.y1e_c02242{bottom:2.880400pt;}
.y4_c02242{bottom:50.987067pt;}
.y3_c02242{bottom:69.387067pt;}
.y3a_c02242{bottom:106.667067pt;}
.y39_c02242{bottom:110.267067pt;}
.y38_c02242{bottom:126.267067pt;}
.y37_c02242{bottom:142.267067pt;}
.y36_c02242{bottom:158.267067pt;}
.y35_c02242{bottom:174.267067pt;}
.y34_c02242{bottom:190.267067pt;}
.y33_c02242{bottom:206.267067pt;}
.y32_c02242{bottom:222.267067pt;}
.y31_c02242{bottom:238.267067pt;}
.y30_c02242{bottom:254.267067pt;}
.y2f_c02242{bottom:270.267067pt;}
.y2e_c02242{bottom:286.267067pt;}
.y2d_c02242{bottom:302.267067pt;}
.y2c_c02242{bottom:318.267067pt;}
.y2b_c02242{bottom:334.267067pt;}
.y2a_c02242{bottom:350.267067pt;}
.y29_c02242{bottom:366.267067pt;}
.y28_c02242{bottom:382.267067pt;}
.y27_c02242{bottom:398.267067pt;}
.y26_c02242{bottom:414.267067pt;}
.y25_c02242{bottom:430.267067pt;}
.y24_c02242{bottom:446.267067pt;}
.y23_c02242{bottom:462.267067pt;}
.y22_c02242{bottom:478.267067pt;}
.y21_c02242{bottom:493.547067pt;}
.y20_c02242{bottom:508.347067pt;}
.y1f_c02242{bottom:517.947067pt;}
.y1d_c02242{bottom:530.346667pt;}
.y1c_c02242{bottom:533.227067pt;}
.y1b_c02242{bottom:548.587067pt;}
.y1a_c02242{bottom:563.867067pt;}
.y19_c02242{bottom:578.667067pt;}
.y18_c02242{bottom:588.347067pt;}
.y17_c02242{bottom:606.747067pt;}
.y16_c02242{bottom:625.147067pt;}
.y15_c02242{bottom:643.547067pt;}
.y14_c02242{bottom:661.947067pt;}
.y13_c02242{bottom:680.827067pt;}
.y12_c02242{bottom:699.867067pt;}
.y11_c02242{bottom:728.107067pt;}
.y10_c02242{bottom:745.147200pt;}
.yf_c02242{bottom:760.507067pt;}
.ye_c02242{bottom:788.107067pt;}
.yd_c02242{bottom:815.707067pt;}
.yc_c02242{bottom:843.307067pt;}
.yb_c02242{bottom:870.907067pt;}
.ya_c02242{bottom:898.507067pt;}
.y9_c02242{bottom:926.107067pt;}
.y8_c02242{bottom:953.707067pt;}
.y7_c02242{bottom:981.147067pt;}
.y6_c02242{bottom:998.107067pt;}
.y5_c02242{bottom:1013.307067pt;}
.y2_c02242{bottom:1042.347067pt;}
.y1_c02242{bottom:1060.587067pt;}
.h9_c02242{height:2.246250pt;}
.h3_c02242{height:9.379219pt;}
.h6_c02242{height:15.120000pt;}
.h4_c02242{height:23.304844pt;}
.h5_c02242{height:47.464531pt;}
.h8_c02242{height:47.721094pt;}
.h7_c02242{height:47.721627pt;}
.h2_c02242{height:56.156250pt;}
.h1_c02242{height:56.843750pt;}
.h0_c02242{height:1122.666667pt;}
.w2_c02242{width:485.840000pt;}
.w1_c02242{width:793.333333pt;}
.w0_c02242{width:793.626667pt;}
.x0_c02242{left:0.000000pt;}
.x7_c02242{left:108.880000pt;}
.x1_c02242{left:113.440000pt;}
.x4_c02242{left:120.560000pt;}
.x6_c02242{left:122.880000pt;}
.x3_c02242{left:132.400000pt;}
.x9_c02242{left:137.280000pt;}
.x5_c02242{left:167.840000pt;}
.x8_c02242{left:238.800000pt;}
.x2_c02242{left:384.880000pt;}
.xa_c02242{left:574.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_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_e65db24565c0055a68986971.woff2')format("woff");}.ff1_c02243{font-family:ff1_c02243;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02243;src:url('chunks/assets/font_ea00ff7b0bac1426cfbb9cbc.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_c362561ed6e24499e9284efb.woff2')format("woff");}.ff3_c02243{font-family:ff3_c02243;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_c02243;src:url('chunks/assets/font_262e562cd5a9b8524462b3b6.woff2')format("woff");}.ff4_c02243{font-family:ff4_c02243;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_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);}
.v2_c02243{vertical-align:-9.000000px;}
.v1_c02243{vertical-align:-5.400000px;}
.v0_c02243{vertical-align:0.000000px;}
.v3_c02243{vertical-align:11.160000px;}
.ls26_c02243{letter-spacing:-0.075600px;}
.ls1e_c02243{letter-spacing:-0.064800px;}
.ls22_c02243{letter-spacing:-0.059400px;}
.ls27_c02243{letter-spacing:-0.057600px;}
.ls1c_c02243{letter-spacing:-0.036000px;}
.ls24_c02243{letter-spacing:-0.027000px;}
.ls23_c02243{letter-spacing:-0.021600px;}
.ls21_c02243{letter-spacing:-0.016200px;}
.ls20_c02243{letter-spacing:-0.010800px;}
.ls1d_c02243{letter-spacing:-0.007200px;}
.ls1f_c02243{letter-spacing:-0.005400px;}
.ls1b_c02243{letter-spacing:0.000000px;}
.ls12_c02243{letter-spacing:0.005400px;}
.ls18_c02243{letter-spacing:0.006588px;}
.ls6_c02243{letter-spacing:0.007200px;}
.ls10_c02243{letter-spacing:0.010800px;}
.ls1_c02243{letter-spacing:0.013176px;}
.ls11_c02243{letter-spacing:0.016200px;}
.lsd_c02243{letter-spacing:0.019764px;}
.ls25_c02243{letter-spacing:0.021600px;}
.ls16_c02243{letter-spacing:0.026352px;}
.ls0_c02243{letter-spacing:0.028800px;}
.ls14_c02243{letter-spacing:0.032400px;}
.lsb_c02243{letter-spacing:0.032940px;}
.ls13_c02243{letter-spacing:0.037800px;}
.ls15_c02243{letter-spacing:0.039528px;}
.ls5_c02243{letter-spacing:0.043200px;}
.ls7_c02243{letter-spacing:0.046116px;}
.ls19_c02243{letter-spacing:0.052704px;}
.ls17_c02243{letter-spacing:0.059292px;}
.ls8_c02243{letter-spacing:0.065880px;}
.ls1a_c02243{letter-spacing:0.092232px;}
.lsf_c02243{letter-spacing:0.097200px;}
.ls3_c02243{letter-spacing:0.144000px;}
.ls9_c02243{letter-spacing:0.144936px;}
.ls4_c02243{letter-spacing:0.181944px;}
.lsa_c02243{letter-spacing:140.040000px;}
.lsc_c02243{letter-spacing:144.000000px;}
.ls2_c02243{letter-spacing:189.720000px;}
.lse_c02243{letter-spacing:292.320000px;}
.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;}
}
.ws3_c02243{word-spacing:-16.535880px;}
.ws4_c02243{word-spacing:-16.529292px;}
.ws5_c02243{word-spacing:-16.516116px;}
.ws2_c02243{word-spacing:-16.509528px;}
.ws1_c02243{word-spacing:-16.489764px;}
.ws0_c02243{word-spacing:-16.483176px;}
.ws24_c02243{word-spacing:-0.210600px;}
.ws18_c02243{word-spacing:-0.167400px;}
.ws7_c02243{word-spacing:-0.086400px;}
.ws11_c02243{word-spacing:-0.052704px;}
.ws8_c02243{word-spacing:-0.007200px;}
.ws6_c02243{word-spacing:0.000000px;}
.ws2c_c02243{word-spacing:0.026352px;}
.ws2b_c02243{word-spacing:0.039528px;}
.ws12_c02243{word-spacing:0.046116px;}
.ws2a_c02243{word-spacing:0.052704px;}
.ws13_c02243{word-spacing:0.059292px;}
.ws29_c02243{word-spacing:0.065880px;}
.ws28_c02243{word-spacing:0.079056px;}
.ws14_c02243{word-spacing:0.081000px;}
.ws27_c02243{word-spacing:0.085644px;}
.ws20_c02243{word-spacing:0.135000px;}
.ws1d_c02243{word-spacing:0.140400px;}
.ws23_c02243{word-spacing:0.156600px;}
.ws1a_c02243{word-spacing:0.162000px;}
.ws19_c02243{word-spacing:0.167400px;}
.ws1c_c02243{word-spacing:0.172800px;}
.ws17_c02243{word-spacing:0.178200px;}
.ws16_c02243{word-spacing:0.183600px;}
.ws1b_c02243{word-spacing:0.189000px;}
.ws1f_c02243{word-spacing:0.199800px;}
.ws21_c02243{word-spacing:0.205200px;}
.ws1e_c02243{word-spacing:0.237600px;}
.ws15_c02243{word-spacing:0.243000px;}
.ws22_c02243{word-spacing:0.253800px;}
.ws26_c02243{word-spacing:0.421632px;}
.wsc_c02243{word-spacing:2.116800px;}
.wsa_c02243{word-spacing:4.680000px;}
.wsb_c02243{word-spacing:4.716000px;}
.ws9_c02243{word-spacing:8.208000px;}
.ws25_c02243{word-spacing:9.078264px;}
.ws10_c02243{word-spacing:11.186424px;}
.wse_c02243{word-spacing:19.627200px;}
.wsd_c02243{word-spacing:19.670400px;}
.wsf_c02243{word-spacing:19.843056px;}
._2_c02243{margin-left:-1.094400px;}
._1_c02243{width:1.956240px;}
._0_c02243{width:7.981056px;}
.fc0_c02243{color:rgb(0,0,0);}
.fs2_c02243{font-size:47.880000px;}
.fs3_c02243{font-size:54.000000px;}
.fs1_c02243{font-size:65.880000px;}
.fs0_c02243{font-size:72.000000px;}
.y0_c02243{bottom:0.000000px;}
.y4_c02243{bottom:57.360450px;}
.y3_c02243{bottom:78.060450px;}
.y3e_c02243{bottom:121.620450px;}
.y3d_c02243{bottom:142.320450px;}
.y3c_c02243{bottom:163.380450px;}
.y3b_c02243{bottom:183.000450px;}
.y3a_c02243{bottom:202.800450px;}
.y39_c02243{bottom:221.790600px;}
.y38_c02243{bottom:241.410450px;}
.y37_c02243{bottom:261.210450px;}
.y36_c02243{bottom:281.190450px;}
.y35_c02243{bottom:302.430450px;}
.y34_c02243{bottom:321.420450px;}
.y33_c02243{bottom:340.320450px;}
.y32_c02243{bottom:359.310540px;}
.y31_c02243{bottom:378.300450px;}
.y30_c02243{bottom:397.920450px;}
.y2f_c02243{bottom:417.720450px;}
.y2e_c02243{bottom:436.710600px;}
.y2d_c02243{bottom:455.700600px;}
.y2c_c02243{bottom:475.320450px;}
.y2b_c02243{bottom:494.400450px;}
.y2a_c02243{bottom:509.880900px;}
.y29_c02243{bottom:525.450450px;}
.y28_c02243{bottom:540.930900px;}
.y27_c02243{bottom:556.500450px;}
.y26_c02243{bottom:571.980900px;}
.y25_c02243{bottom:587.550450px;}
.y24_c02243{bottom:603.030900px;}
.y23_c02243{bottom:618.600450px;}
.y22_c02243{bottom:634.080900px;}
.y21_c02243{bottom:649.650450px;}
.y20_c02243{bottom:665.130900px;}
.y1f_c02243{bottom:680.700450px;}
.y1e_c02243{bottom:696.180900px;}
.y1d_c02243{bottom:711.750450px;}
.y1c_c02243{bottom:727.230900px;}
.y1b_c02243{bottom:742.800450px;}
.y1a_c02243{bottom:758.280900px;}
.y19_c02243{bottom:773.850450px;}
.y18_c02243{bottom:789.330900px;}
.y17_c02243{bottom:804.900450px;}
.y16_c02243{bottom:820.380900px;}
.y15_c02243{bottom:835.950450px;}
.y14_c02243{bottom:851.430900px;}
.y13_c02243{bottom:867.000450px;}
.y12_c02243{bottom:882.480900px;}
.y11_c02243{bottom:895.260450px;}
.y10_c02243{bottom:916.680450px;}
.yf_c02243{bottom:936.390450px;}
.ye_c02243{bottom:956.099937px;}
.yd_c02243{bottom:975.089847px;}
.yc_c02243{bottom:994.440450px;}
.yb_c02243{bottom:1015.140450px;}
.ya_c02243{bottom:1035.840450px;}
.y9_c02243{bottom:1056.540450px;}
.y8_c02243{bottom:1077.240450px;}
.y7_c02243{bottom:1099.290450px;}
.y6_c02243{bottom:1119.450450px;}
.y5_c02243{bottom:1139.970450px;}
.y2_c02243{bottom:1172.640450px;}
.y1_c02243{bottom:1193.160450px;}
.h6_c02243{height:47.961914px;}
.h7_c02243{height:57.805840px;}
.h9_c02243{height:58.513535px;}
.h8_c02243{height:63.175421px;}
.h2_c02243{height:63.175781px;}
.h1_c02243{height:63.949219px;}
.h5_c02243{height:64.625449px;}
.h3_c02243{height:65.228906px;}
.h4_c02243{height:70.628906px;}
.h0_c02243{height:1263.000000px;}
.w1_c02243{width:892.500000px;}
.w0_c02243{width:892.830000px;}
.x0_c02243{left:0.000000px;}
.x1_c02243{left:127.620000px;}
.x3_c02243{left:135.630000px;}
.x4_c02243{left:252.630000px;}
.x2_c02243{left:432.990000px;}
@media print{
.v2_c02243{vertical-align:-8.000000pt;}
.v1_c02243{vertical-align:-4.800000pt;}
.v0_c02243{vertical-align:0.000000pt;}
.v3_c02243{vertical-align:9.920000pt;}
.ls26_c02243{letter-spacing:-0.067200pt;}
.ls1e_c02243{letter-spacing:-0.057600pt;}
.ls22_c02243{letter-spacing:-0.052800pt;}
.ls27_c02243{letter-spacing:-0.051200pt;}
.ls1c_c02243{letter-spacing:-0.032000pt;}
.ls24_c02243{letter-spacing:-0.024000pt;}
.ls23_c02243{letter-spacing:-0.019200pt;}
.ls21_c02243{letter-spacing:-0.014400pt;}
.ls20_c02243{letter-spacing:-0.009600pt;}
.ls1d_c02243{letter-spacing:-0.006400pt;}
.ls1f_c02243{letter-spacing:-0.004800pt;}
.ls1b_c02243{letter-spacing:0.000000pt;}
.ls12_c02243{letter-spacing:0.004800pt;}
.ls18_c02243{letter-spacing:0.005856pt;}
.ls6_c02243{letter-spacing:0.006400pt;}
.ls10_c02243{letter-spacing:0.009600pt;}
.ls1_c02243{letter-spacing:0.011712pt;}
.ls11_c02243{letter-spacing:0.014400pt;}
.lsd_c02243{letter-spacing:0.017568pt;}
.ls25_c02243{letter-spacing:0.019200pt;}
.ls16_c02243{letter-spacing:0.023424pt;}
.ls0_c02243{letter-spacing:0.025600pt;}
.ls14_c02243{letter-spacing:0.028800pt;}
.lsb_c02243{letter-spacing:0.029280pt;}
.ls13_c02243{letter-spacing:0.033600pt;}
.ls15_c02243{letter-spacing:0.035136pt;}
.ls5_c02243{letter-spacing:0.038400pt;}
.ls7_c02243{letter-spacing:0.040992pt;}
.ls19_c02243{letter-spacing:0.046848pt;}
.ls17_c02243{letter-spacing:0.052704pt;}
.ls8_c02243{letter-spacing:0.058560pt;}
.ls1a_c02243{letter-spacing:0.081984pt;}
.lsf_c02243{letter-spacing:0.086400pt;}
.ls3_c02243{letter-spacing:0.128000pt;}
.ls9_c02243{letter-spacing:0.128832pt;}
.ls4_c02243{letter-spacing:0.161728pt;}
.lsa_c02243{letter-spacing:124.480000pt;}
.lsc_c02243{letter-spacing:128.000000pt;}
.ls2_c02243{letter-spacing:168.640000pt;}
.lse_c02243{letter-spacing:259.840000pt;}
.ws3_c02243{word-spacing:-14.698560pt;}
.ws4_c02243{word-spacing:-14.692704pt;}
.ws5_c02243{word-spacing:-14.680992pt;}
.ws2_c02243{word-spacing:-14.675136pt;}
.ws1_c02243{word-spacing:-14.657568pt;}
.ws0_c02243{word-spacing:-14.651712pt;}
.ws24_c02243{word-spacing:-0.187200pt;}
.ws18_c02243{word-spacing:-0.148800pt;}
.ws7_c02243{word-spacing:-0.076800pt;}
.ws11_c02243{word-spacing:-0.046848pt;}
.ws8_c02243{word-spacing:-0.006400pt;}
.ws6_c02243{word-spacing:0.000000pt;}
.ws2c_c02243{word-spacing:0.023424pt;}
.ws2b_c02243{word-spacing:0.035136pt;}
.ws12_c02243{word-spacing:0.040992pt;}
.ws2a_c02243{word-spacing:0.046848pt;}
.ws13_c02243{word-spacing:0.052704pt;}
.ws29_c02243{word-spacing:0.058560pt;}
.ws28_c02243{word-spacing:0.070272pt;}
.ws14_c02243{word-spacing:0.072000pt;}
.ws27_c02243{word-spacing:0.076128pt;}
.ws20_c02243{word-spacing:0.120000pt;}
.ws1d_c02243{word-spacing:0.124800pt;}
.ws23_c02243{word-spacing:0.139200pt;}
.ws1a_c02243{word-spacing:0.144000pt;}
.ws19_c02243{word-spacing:0.148800pt;}
.ws1c_c02243{word-spacing:0.153600pt;}
.ws17_c02243{word-spacing:0.158400pt;}
.ws16_c02243{word-spacing:0.163200pt;}
.ws1b_c02243{word-spacing:0.168000pt;}
.ws1f_c02243{word-spacing:0.177600pt;}
.ws21_c02243{word-spacing:0.182400pt;}
.ws1e_c02243{word-spacing:0.211200pt;}
.ws15_c02243{word-spacing:0.216000pt;}
.ws22_c02243{word-spacing:0.225600pt;}
.ws26_c02243{word-spacing:0.374784pt;}
.wsc_c02243{word-spacing:1.881600pt;}
.wsa_c02243{word-spacing:4.160000pt;}
.wsb_c02243{word-spacing:4.192000pt;}
.ws9_c02243{word-spacing:7.296000pt;}
.ws25_c02243{word-spacing:8.069568pt;}
.ws10_c02243{word-spacing:9.943488pt;}
.wse_c02243{word-spacing:17.446400pt;}
.wsd_c02243{word-spacing:17.484800pt;}
.wsf_c02243{word-spacing:17.638272pt;}
._2_c02243{margin-left:-0.972800pt;}
._1_c02243{width:1.738880pt;}
._0_c02243{width:7.094272pt;}
.fs2_c02243{font-size:42.560000pt;}
.fs3_c02243{font-size:48.000000pt;}
.fs1_c02243{font-size:58.560000pt;}
.fs0_c02243{font-size:64.000000pt;}
.y0_c02243{bottom:0.000000pt;}
.y4_c02243{bottom:50.987067pt;}
.y3_c02243{bottom:69.387067pt;}
.y3e_c02243{bottom:108.107067pt;}
.y3d_c02243{bottom:126.507067pt;}
.y3c_c02243{bottom:145.227067pt;}
.y3b_c02243{bottom:162.667067pt;}
.y3a_c02243{bottom:180.267067pt;}
.y39_c02243{bottom:197.147200pt;}
.y38_c02243{bottom:214.587067pt;}
.y37_c02243{bottom:232.187067pt;}
.y36_c02243{bottom:249.947067pt;}
.y35_c02243{bottom:268.827067pt;}
.y34_c02243{bottom:285.707067pt;}
.y33_c02243{bottom:302.507067pt;}
.y32_c02243{bottom:319.387147pt;}
.y31_c02243{bottom:336.267067pt;}
.y30_c02243{bottom:353.707067pt;}
.y2f_c02243{bottom:371.307067pt;}
.y2e_c02243{bottom:388.187200pt;}
.y2d_c02243{bottom:405.067200pt;}
.y2c_c02243{bottom:422.507067pt;}
.y2b_c02243{bottom:439.467067pt;}
.y2a_c02243{bottom:453.227467pt;}
.y29_c02243{bottom:467.067067pt;}
.y28_c02243{bottom:480.827467pt;}
.y27_c02243{bottom:494.667067pt;}
.y26_c02243{bottom:508.427467pt;}
.y25_c02243{bottom:522.267067pt;}
.y24_c02243{bottom:536.027467pt;}
.y23_c02243{bottom:549.867067pt;}
.y22_c02243{bottom:563.627467pt;}
.y21_c02243{bottom:577.467067pt;}
.y20_c02243{bottom:591.227467pt;}
.y1f_c02243{bottom:605.067067pt;}
.y1e_c02243{bottom:618.827467pt;}
.y1d_c02243{bottom:632.667067pt;}
.y1c_c02243{bottom:646.427467pt;}
.y1b_c02243{bottom:660.267067pt;}
.y1a_c02243{bottom:674.027467pt;}
.y19_c02243{bottom:687.867067pt;}
.y18_c02243{bottom:701.627467pt;}
.y17_c02243{bottom:715.467067pt;}
.y16_c02243{bottom:729.227467pt;}
.y15_c02243{bottom:743.067067pt;}
.y14_c02243{bottom:756.827467pt;}
.y13_c02243{bottom:770.667067pt;}
.y12_c02243{bottom:784.427467pt;}
.y11_c02243{bottom:795.787067pt;}
.y10_c02243{bottom:814.827067pt;}
.yf_c02243{bottom:832.347067pt;}
.ye_c02243{bottom:849.866611pt;}
.yd_c02243{bottom:866.746531pt;}
.yc_c02243{bottom:883.947067pt;}
.yb_c02243{bottom:902.347067pt;}
.ya_c02243{bottom:920.747067pt;}
.y9_c02243{bottom:939.147067pt;}
.y8_c02243{bottom:957.547067pt;}
.y7_c02243{bottom:977.147067pt;}
.y6_c02243{bottom:995.067067pt;}
.y5_c02243{bottom:1013.307067pt;}
.y2_c02243{bottom:1042.347067pt;}
.y1_c02243{bottom:1060.587067pt;}
.h6_c02243{height:42.632812pt;}
.h7_c02243{height:51.382969pt;}
.h9_c02243{height:52.012031pt;}
.h8_c02243{height:56.155930pt;}
.h2_c02243{height:56.156250pt;}
.h1_c02243{height:56.843750pt;}
.h5_c02243{height:57.444844pt;}
.h3_c02243{height:57.981250pt;}
.h4_c02243{height:62.781250pt;}
.h0_c02243{height:1122.666667pt;}
.w1_c02243{width:793.333333pt;}
.w0_c02243{width:793.626667pt;}
.x0_c02243{left:0.000000pt;}
.x1_c02243{left:113.440000pt;}
.x3_c02243{left:120.560000pt;}
.x4_c02243{left:224.560000pt;}
.x2_c02243{left:384.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_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_c0ddaed6e1423d19f5adf548.woff2')format("woff");}.ff1_c02244{font-family:ff1_c02244;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02244;src:url('chunks/assets/font_aebff09cd750612ac3c7bd34.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_3325b35c3b7d73f22aaaf064.woff2')format("woff");}.ff3_c02244{font-family:ff3_c02244;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02244;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02244{font-family:ff4_c02244;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;}
.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);}
.v1_c02244{vertical-align:-1.440000px;}
.v0_c02244{vertical-align:0.000000px;}
.v2_c02244{vertical-align:1.800000px;}
.ls5e_c02244{letter-spacing:-4.596624px;}
.ls4f_c02244{letter-spacing:-0.302400px;}
.ls59_c02244{letter-spacing:-0.226800px;}
.ls5c_c02244{letter-spacing:-0.210600px;}
.ls5a_c02244{letter-spacing:-0.205200px;}
.ls4c_c02244{letter-spacing:-0.183600px;}
.ls51_c02244{letter-spacing:-0.178200px;}
.ls58_c02244{letter-spacing:-0.156600px;}
.ls4d_c02244{letter-spacing:-0.140400px;}
.ls52_c02244{letter-spacing:-0.118800px;}
.ls50_c02244{letter-spacing:-0.097200px;}
.ls53_c02244{letter-spacing:-0.086400px;}
.ls44_c02244{letter-spacing:-0.078156px;}
.ls55_c02244{letter-spacing:-0.059400px;}
.ls5f_c02244{letter-spacing:-0.058716px;}
.ls56_c02244{letter-spacing:-0.054000px;}
.ls61_c02244{letter-spacing:-0.050328px;}
.ls4a_c02244{letter-spacing:-0.032400px;}
.ls4b_c02244{letter-spacing:-0.027000px;}
.ls5d_c02244{letter-spacing:-0.025164px;}
.ls57_c02244{letter-spacing:-0.021600px;}
.ls63_c02244{letter-spacing:-0.016776px;}
.ls48_c02244{letter-spacing:-0.016200px;}
.ls43_c02244{letter-spacing:-0.014400px;}
.ls5b_c02244{letter-spacing:-0.010800px;}
.ls60_c02244{letter-spacing:-0.008388px;}
.ls41_c02244{letter-spacing:-0.007200px;}
.ls47_c02244{letter-spacing:-0.005400px;}
.ls40_c02244{letter-spacing:0.000000px;}
.ls38_c02244{letter-spacing:0.005400px;}
.ls42_c02244{letter-spacing:0.007200px;}
.ls36_c02244{letter-spacing:0.010800px;}
.ls30_c02244{letter-spacing:0.013176px;}
.ls2_c02244{letter-spacing:0.014400px;}
.ls33_c02244{letter-spacing:0.016200px;}
.ls3_c02244{letter-spacing:0.021600px;}
.ls37_c02244{letter-spacing:0.027000px;}
.ls0_c02244{letter-spacing:0.028800px;}
.ls34_c02244{letter-spacing:0.037800px;}
.ls8_c02244{letter-spacing:0.039528px;}
.ls4_c02244{letter-spacing:0.043200px;}
.lsc_c02244{letter-spacing:0.046116px;}
.ls35_c02244{letter-spacing:0.054000px;}
.ls45_c02244{letter-spacing:0.054108px;}
.ls1_c02244{letter-spacing:0.057600px;}
.ls23_c02244{letter-spacing:0.059292px;}
.ls39_c02244{letter-spacing:0.059400px;}
.ls16_c02244{letter-spacing:0.065880px;}
.ls7_c02244{letter-spacing:0.072468px;}
.ls3c_c02244{letter-spacing:0.075600px;}
.ls9_c02244{letter-spacing:0.079056px;}
.ls3d_c02244{letter-spacing:0.081000px;}
.ls3a_c02244{letter-spacing:0.086400px;}
.ls46_c02244{letter-spacing:0.090180px;}
.lsb_c02244{letter-spacing:0.092232px;}
.lsa_c02244{letter-spacing:0.098820px;}
.ls4e_c02244{letter-spacing:0.102600px;}
.ls3b_c02244{letter-spacing:0.113400px;}
.lsd_c02244{letter-spacing:0.118584px;}
.ls3f_c02244{letter-spacing:0.125820px;}
.ls13_c02244{letter-spacing:0.138348px;}
.lsf_c02244{letter-spacing:0.144288px;}
.ls19_c02244{letter-spacing:0.151524px;}
.ls2b_c02244{letter-spacing:0.158112px;}
.ls6_c02244{letter-spacing:0.164700px;}
.ls62_c02244{letter-spacing:0.176148px;}
.ls20_c02244{letter-spacing:0.177876px;}
.ls49_c02244{letter-spacing:0.178200px;}
.ls11_c02244{letter-spacing:0.180000px;}
.ls54_c02244{letter-spacing:0.183600px;}
.ls3e_c02244{letter-spacing:0.486504px;}
.ls2c_c02244{letter-spacing:64.080000px;}
.ls28_c02244{letter-spacing:66.240000px;}
.ls21_c02244{letter-spacing:66.600000px;}
.ls22_c02244{letter-spacing:66.960000px;}
.ls18_c02244{letter-spacing:99.000000px;}
.ls1a_c02244{letter-spacing:99.360000px;}
.ls1d_c02244{letter-spacing:99.720000px;}
.ls29_c02244{letter-spacing:117.450000px;}
.ls12_c02244{letter-spacing:132.120000px;}
.ls14_c02244{letter-spacing:132.480000px;}
.ls1b_c02244{letter-spacing:132.840000px;}
.ls15_c02244{letter-spacing:150.300000px;}
.lse_c02244{letter-spacing:159.480000px;}
.ls31_c02244{letter-spacing:165.960000px;}
.ls26_c02244{letter-spacing:183.330000px;}
.ls1c_c02244{letter-spacing:186.480000px;}
.ls2d_c02244{letter-spacing:204.840000px;}
.ls2e_c02244{letter-spacing:214.560000px;}
.ls25_c02244{letter-spacing:214.920000px;}
.ls27_c02244{letter-spacing:215.279400px;}
.ls1e_c02244{letter-spacing:234.360000px;}
.ls1f_c02244{letter-spacing:252.360000px;}
.ls2a_c02244{letter-spacing:268.920000px;}
.ls24_c02244{letter-spacing:281.520000px;}
.ls17_c02244{letter-spacing:296.640000px;}
.ls10_c02244{letter-spacing:314.640000px;}
.ls32_c02244{letter-spacing:361.440000px;}
.ls2f_c02244{letter-spacing:414.720000px;}
.ls5_c02244{letter-spacing:1114.020000px;}
.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;}
}
.ws2e_c02244{word-spacing:-54.000000px;}
.ws7_c02244{word-spacing:-16.647876px;}
.ws0_c02244{word-spacing:-16.634700px;}
.ws15_c02244{word-spacing:-16.628112px;}
.ws8_c02244{word-spacing:-16.621524px;}
.ws3_c02244{word-spacing:-16.608348px;}
.ws1_c02244{word-spacing:-16.588584px;}
.wsd_c02244{word-spacing:-16.568820px;}
.ws12_c02244{word-spacing:-16.562232px;}
.ws2_c02244{word-spacing:-16.549056px;}
.ws16_c02244{word-spacing:-16.542468px;}
.ws10_c02244{word-spacing:-16.529292px;}
.ws14_c02244{word-spacing:-16.509528px;}
.ws43_c02244{word-spacing:-0.260028px;}
.ws2f_c02244{word-spacing:-0.237600px;}
.ws20_c02244{word-spacing:-0.232200px;}
.ws47_c02244{word-spacing:-0.172800px;}
.ws27_c02244{word-spacing:-0.167400px;}
.ws25_c02244{word-spacing:-0.156600px;}
.ws31_c02244{word-spacing:-0.140400px;}
.ws3b_c02244{word-spacing:-0.135000px;}
.ws38_c02244{word-spacing:-0.129600px;}
.ws21_c02244{word-spacing:-0.113400px;}
.ws1c_c02244{word-spacing:-0.108000px;}
.ws4d_c02244{word-spacing:-0.100800px;}
.ws3d_c02244{word-spacing:-0.097200px;}
.ws30_c02244{word-spacing:-0.091800px;}
.ws45_c02244{word-spacing:-0.086400px;}
.ws2c_c02244{word-spacing:-0.081000px;}
.ws32_c02244{word-spacing:-0.075600px;}
.ws41_c02244{word-spacing:-0.075492px;}
.ws1b_c02244{word-spacing:-0.070200px;}
.ws44_c02244{word-spacing:-0.067104px;}
.ws29_c02244{word-spacing:-0.064800px;}
.ws33_c02244{word-spacing:-0.059400px;}
.ws3e_c02244{word-spacing:-0.058716px;}
.ws4f_c02244{word-spacing:-0.057600px;}
.ws55_c02244{word-spacing:-0.054108px;}
.ws1e_c02244{word-spacing:-0.054000px;}
.ws1d_c02244{word-spacing:-0.048600px;}
.ws1f_c02244{word-spacing:-0.037800px;}
.ws42_c02244{word-spacing:-0.033552px;}
.ws36_c02244{word-spacing:-0.032400px;}
.ws22_c02244{word-spacing:-0.027000px;}
.ws40_c02244{word-spacing:-0.025164px;}
.ws46_c02244{word-spacing:-0.014400px;}
.ws4e_c02244{word-spacing:-0.007200px;}
.ws53_c02244{word-spacing:-0.006588px;}
.ws35_c02244{word-spacing:0.000000px;}
.ws34_c02244{word-spacing:0.005400px;}
.ws52_c02244{word-spacing:0.013176px;}
.ws50_c02244{word-spacing:0.019764px;}
.ws56_c02244{word-spacing:0.026352px;}
.ws2d_c02244{word-spacing:0.032400px;}
.ws28_c02244{word-spacing:0.043200px;}
.ws54_c02244{word-spacing:0.046116px;}
.ws51_c02244{word-spacing:0.052704px;}
.ws2b_c02244{word-spacing:0.064800px;}
.ws57_c02244{word-spacing:0.079056px;}
.ws24_c02244{word-spacing:0.086400px;}
.ws37_c02244{word-spacing:0.102600px;}
.ws2a_c02244{word-spacing:0.124200px;}
.ws23_c02244{word-spacing:0.129600px;}
.ws3a_c02244{word-spacing:0.151200px;}
.ws3c_c02244{word-spacing:0.156600px;}
.ws39_c02244{word-spacing:0.172800px;}
.ws26_c02244{word-spacing:0.248400px;}
.ws3f_c02244{word-spacing:4.512744px;}
.ws4c_c02244{word-spacing:7.444800px;}
.ws4b_c02244{word-spacing:7.516800px;}
.ws4a_c02244{word-spacing:8.985600px;}
.ws48_c02244{word-spacing:13.262400px;}
.ws49_c02244{word-spacing:13.298400px;}
.ws17_c02244{word-spacing:65.089440px;}
.ws13_c02244{word-spacing:67.238496px;}
.wsf_c02244{word-spacing:67.642380px;}
.wsa_c02244{word-spacing:99.996372px;}
.wse_c02244{word-spacing:99.998496px;}
.wsb_c02244{word-spacing:100.402380px;}
.ws18_c02244{word-spacing:100.933020px;}
.ws5_c02244{word-spacing:133.546608px;}
.ws9_c02244{word-spacing:150.082380px;}
.wsc_c02244{word-spacing:182.842380px;}
.ws4_c02244{word-spacing:182.866608px;}
.ws1a_c02244{word-spacing:215.833572px;}
.ws11_c02244{word-spacing:215.986608px;}
.ws19_c02244{word-spacing:216.270000px;}
.ws6_c02244{word-spacing:448.546608px;}
._a_c02244{margin-left:-2.422692px;}
._0_c02244{margin-left:-1.008000px;}
._8_c02244{width:1.107000px;}
._9_c02244{width:4.537908px;}
._3_c02244{width:68.622840px;}
._2_c02244{width:104.490000px;}
._1_c02244{width:121.669776px;}
._4_c02244{width:133.175916px;}
._5_c02244{width:231.919812px;}
._7_c02244{width:644.528844px;}
._6_c02244{width:665.158248px;}
.fc0_c02244{color:rgb(0,0,0);}
.fs4_c02244{font-size:18.000000px;}
.fs1_c02244{font-size:54.000000px;}
.fs3_c02244{font-size:60.120000px;}
.fs2_c02244{font-size:65.880000px;}
.fs0_c02244{font-size:72.000000px;}
.fs5_c02244{font-size:83.880000px;}
.y0_c02244{bottom:0.000000px;}
.y4_c02244{bottom:57.360450px;}
.y3_c02244{bottom:78.060450px;}
.y22_c02244{bottom:116.040600px;}
.y21_c02244{bottom:124.230450px;}
.y20_c02244{bottom:144.930450px;}
.y1f_c02244{bottom:165.630450px;}
.y1e_c02244{bottom:184.620600px;}
.y1d_c02244{bottom:203.970450px;}
.y1c_c02244{bottom:224.670450px;}
.y1b_c02244{bottom:245.370600px;}
.y1a_c02244{bottom:264.360450px;}
.y19_c02244{bottom:283.350450px;}
.y18_c02244{bottom:302.250450px;}
.y17_c02244{bottom:321.240450px;}
.y16_c02244{bottom:341.940450px;}
.y15_c02244{bottom:360.930450px;}
.y14_c02244{bottom:379.920450px;}
.y11_c02244{bottom:388.830450px;}
.y13_c02244{bottom:398.910450px;}
.y12_c02244{bottom:417.810450px;}
.y10_c02244{bottom:437.070450px;}
.yf_c02244{bottom:460.200600px;}
.ye_c02244{bottom:480.720450px;}
.yd_c02244{bottom:501.420450px;}
.yc_c02244{bottom:522.300450px;}
.yb_c02244{bottom:538.860450px;}
.y23_c02244{bottom:558.480450px;}
.y3a_c02244{bottom:559.020450px;}
.y24_c02244{bottom:575.040504px;}
.y3b_c02244{bottom:575.580900px;}
.y25_c02244{bottom:591.510378px;}
.y3c_c02244{bottom:592.141350px;}
.y26_c02244{bottom:608.070432px;}
.y3d_c02244{bottom:608.611350px;}
.y27_c02244{bottom:624.630486px;}
.y3e_c02244{bottom:625.171800px;}
.y28_c02244{bottom:641.100360px;}
.y3f_c02244{bottom:641.641800px;}
.y29_c02244{bottom:657.660414px;}
.y40_c02244{bottom:658.202250px;}
.y2a_c02244{bottom:674.220468px;}
.y41_c02244{bottom:674.762700px;}
.y2b_c02244{bottom:690.690342px;}
.y42_c02244{bottom:691.232700px;}
.y2c_c02244{bottom:707.250396px;}
.y43_c02244{bottom:707.793150px;}
.y2d_c02244{bottom:723.720270px;}
.y44_c02244{bottom:724.353600px;}
.y2e_c02244{bottom:740.280324px;}
.y45_c02244{bottom:740.820450px;}
.y2f_c02244{bottom:756.840378px;}
.y46_c02244{bottom:757.380900px;}
.y30_c02244{bottom:773.310252px;}
.y47_c02244{bottom:773.850900px;}
.y31_c02244{bottom:789.870306px;}
.y48_c02244{bottom:790.411350px;}
.y32_c02244{bottom:806.430360px;}
.y49_c02244{bottom:806.971800px;}
.y33_c02244{bottom:822.900234px;}
.y4a_c02244{bottom:823.441800px;}
.y34_c02244{bottom:839.460288px;}
.y4b_c02244{bottom:840.002250px;}
.y35_c02244{bottom:855.930162px;}
.y4c_c02244{bottom:856.562700px;}
.y36_c02244{bottom:872.490216px;}
.y4d_c02244{bottom:873.032700px;}
.y37_c02244{bottom:889.050270px;}
.y4e_c02244{bottom:889.593150px;}
.y38_c02244{bottom:905.520144px;}
.y4f_c02244{bottom:906.063150px;}
.y39_c02244{bottom:922.080198px;}
.y50_c02244{bottom:922.623600px;}
.y51_c02244{bottom:959.880450px;}
.ya_c02244{bottom:1005.600450px;}
.y9_c02244{bottom:1036.650450px;}
.y8_c02244{bottom:1067.520450px;}
.y7_c02244{bottom:1098.750450px;}
.y6_c02244{bottom:1119.270450px;}
.y5_c02244{bottom:1139.970450px;}
.y2_c02244{bottom:1172.640450px;}
.y1_c02244{bottom:1193.160450px;}
.h5_c02244{height:15.987305px;}
.h7_c02244{height:39.208008px;}
.h6_c02244{height:43.651582px;}
.h3_c02244{height:58.513535px;}
.h8_c02244{height:60.903105px;}
.h2_c02244{height:63.175781px;}
.h1_c02244{height:63.949219px;}
.h4_c02244{height:64.975781px;}
.h0_c02244{height:1263.000000px;}
.w1_c02244{width:892.500000px;}
.w0_c02244{width:892.830000px;}
.x0_c02244{left:0.000000px;}
.x1_c02244{left:127.620000px;}
.x26_c02244{left:129.695400px;}
.x6_c02244{left:135.630000px;}
.x34_c02244{left:136.646550px;}
.x4_c02244{left:148.950000px;}
.x24_c02244{left:157.230000px;}
.x12_c02244{left:159.030000px;}
.x2f_c02244{left:160.656300px;}
.x2b_c02244{left:161.747100px;}
.x33_c02244{left:168.228450px;}
.x28_c02244{left:175.060800px;}
.x30_c02244{left:195.580800px;}
.x2d_c02244{left:199.350000px;}
.x2a_c02244{left:208.724400px;}
.x35_c02244{left:236.250000px;}
.x2e_c02244{left:239.852700px;}
.x8_c02244{left:241.740000px;}
.x32_c02244{left:253.277100px;}
.x2c_c02244{left:263.180700px;}
.x29_c02244{left:271.903050px;}
.x25_c02244{left:279.993600px;}
.x9_c02244{left:286.920000px;}
.x7_c02244{left:290.610000px;}
.x31_c02244{left:317.712600px;}
.x27_c02244{left:328.418100px;}
.x3_c02244{left:373.050000px;}
.x2_c02244{left:432.990000px;}
.xc_c02244{left:441.360000px;}
.xb_c02244{left:444.600000px;}
.xd_c02244{left:447.570000px;}
.xa_c02244{left:465.210000px;}
.xf_c02244{left:594.180000px;}
.x10_c02244{left:599.940000px;}
.x23_c02244{left:616.771674px;}
.x22_c02244{left:635.401359px;}
.xe_c02244{left:639.810000px;}
.x21_c02244{left:642.061152px;}
.x11_c02244{left:645.570000px;}
.x20_c02244{left:647.281071px;}
.x1f_c02244{left:651.061116px;}
.x1e_c02244{left:655.470918px;}
.x1d_c02244{left:664.470882px;}
.x1c_c02244{left:666.630693px;}
.x1b_c02244{left:671.130675px;}
.x1a_c02244{left:672.660729px;}
.x19_c02244{left:683.100567px;}
.x18_c02244{left:685.260378px;}
.x17_c02244{left:688.320486px;}
.x16_c02244{left:692.010351px;}
.x15_c02244{left:705.420117px;}
.x14_c02244{left:709.109982px;}
.x13_c02244{left:719.640000px;}
.x5_c02244{left:758.250000px;}
@media print{
.v1_c02244{vertical-align:-1.280000pt;}
.v0_c02244{vertical-align:0.000000pt;}
.v2_c02244{vertical-align:1.600000pt;}
.ls5e_c02244{letter-spacing:-4.085888pt;}
.ls4f_c02244{letter-spacing:-0.268800pt;}
.ls59_c02244{letter-spacing:-0.201600pt;}
.ls5c_c02244{letter-spacing:-0.187200pt;}
.ls5a_c02244{letter-spacing:-0.182400pt;}
.ls4c_c02244{letter-spacing:-0.163200pt;}
.ls51_c02244{letter-spacing:-0.158400pt;}
.ls58_c02244{letter-spacing:-0.139200pt;}
.ls4d_c02244{letter-spacing:-0.124800pt;}
.ls52_c02244{letter-spacing:-0.105600pt;}
.ls50_c02244{letter-spacing:-0.086400pt;}
.ls53_c02244{letter-spacing:-0.076800pt;}
.ls44_c02244{letter-spacing:-0.069472pt;}
.ls55_c02244{letter-spacing:-0.052800pt;}
.ls5f_c02244{letter-spacing:-0.052192pt;}
.ls56_c02244{letter-spacing:-0.048000pt;}
.ls61_c02244{letter-spacing:-0.044736pt;}
.ls4a_c02244{letter-spacing:-0.028800pt;}
.ls4b_c02244{letter-spacing:-0.024000pt;}
.ls5d_c02244{letter-spacing:-0.022368pt;}
.ls57_c02244{letter-spacing:-0.019200pt;}
.ls63_c02244{letter-spacing:-0.014912pt;}
.ls48_c02244{letter-spacing:-0.014400pt;}
.ls43_c02244{letter-spacing:-0.012800pt;}
.ls5b_c02244{letter-spacing:-0.009600pt;}
.ls60_c02244{letter-spacing:-0.007456pt;}
.ls41_c02244{letter-spacing:-0.006400pt;}
.ls47_c02244{letter-spacing:-0.004800pt;}
.ls40_c02244{letter-spacing:0.000000pt;}
.ls38_c02244{letter-spacing:0.004800pt;}
.ls42_c02244{letter-spacing:0.006400pt;}
.ls36_c02244{letter-spacing:0.009600pt;}
.ls30_c02244{letter-spacing:0.011712pt;}
.ls2_c02244{letter-spacing:0.012800pt;}
.ls33_c02244{letter-spacing:0.014400pt;}
.ls3_c02244{letter-spacing:0.019200pt;}
.ls37_c02244{letter-spacing:0.024000pt;}
.ls0_c02244{letter-spacing:0.025600pt;}
.ls34_c02244{letter-spacing:0.033600pt;}
.ls8_c02244{letter-spacing:0.035136pt;}
.ls4_c02244{letter-spacing:0.038400pt;}
.lsc_c02244{letter-spacing:0.040992pt;}
.ls35_c02244{letter-spacing:0.048000pt;}
.ls45_c02244{letter-spacing:0.048096pt;}
.ls1_c02244{letter-spacing:0.051200pt;}
.ls23_c02244{letter-spacing:0.052704pt;}
.ls39_c02244{letter-spacing:0.052800pt;}
.ls16_c02244{letter-spacing:0.058560pt;}
.ls7_c02244{letter-spacing:0.064416pt;}
.ls3c_c02244{letter-spacing:0.067200pt;}
.ls9_c02244{letter-spacing:0.070272pt;}
.ls3d_c02244{letter-spacing:0.072000pt;}
.ls3a_c02244{letter-spacing:0.076800pt;}
.ls46_c02244{letter-spacing:0.080160pt;}
.lsb_c02244{letter-spacing:0.081984pt;}
.lsa_c02244{letter-spacing:0.087840pt;}
.ls4e_c02244{letter-spacing:0.091200pt;}
.ls3b_c02244{letter-spacing:0.100800pt;}
.lsd_c02244{letter-spacing:0.105408pt;}
.ls3f_c02244{letter-spacing:0.111840pt;}
.ls13_c02244{letter-spacing:0.122976pt;}
.lsf_c02244{letter-spacing:0.128256pt;}
.ls19_c02244{letter-spacing:0.134688pt;}
.ls2b_c02244{letter-spacing:0.140544pt;}
.ls6_c02244{letter-spacing:0.146400pt;}
.ls62_c02244{letter-spacing:0.156576pt;}
.ls20_c02244{letter-spacing:0.158112pt;}
.ls49_c02244{letter-spacing:0.158400pt;}
.ls11_c02244{letter-spacing:0.160000pt;}
.ls54_c02244{letter-spacing:0.163200pt;}
.ls3e_c02244{letter-spacing:0.432448pt;}
.ls2c_c02244{letter-spacing:56.960000pt;}
.ls28_c02244{letter-spacing:58.880000pt;}
.ls21_c02244{letter-spacing:59.200000pt;}
.ls22_c02244{letter-spacing:59.520000pt;}
.ls18_c02244{letter-spacing:88.000000pt;}
.ls1a_c02244{letter-spacing:88.320000pt;}
.ls1d_c02244{letter-spacing:88.640000pt;}
.ls29_c02244{letter-spacing:104.400000pt;}
.ls12_c02244{letter-spacing:117.440000pt;}
.ls14_c02244{letter-spacing:117.760000pt;}
.ls1b_c02244{letter-spacing:118.080000pt;}
.ls15_c02244{letter-spacing:133.600000pt;}
.lse_c02244{letter-spacing:141.760000pt;}
.ls31_c02244{letter-spacing:147.520000pt;}
.ls26_c02244{letter-spacing:162.960000pt;}
.ls1c_c02244{letter-spacing:165.760000pt;}
.ls2d_c02244{letter-spacing:182.080000pt;}
.ls2e_c02244{letter-spacing:190.720000pt;}
.ls25_c02244{letter-spacing:191.040000pt;}
.ls27_c02244{letter-spacing:191.359467pt;}
.ls1e_c02244{letter-spacing:208.320000pt;}
.ls1f_c02244{letter-spacing:224.320000pt;}
.ls2a_c02244{letter-spacing:239.040000pt;}
.ls24_c02244{letter-spacing:250.240000pt;}
.ls17_c02244{letter-spacing:263.680000pt;}
.ls10_c02244{letter-spacing:279.680000pt;}
.ls32_c02244{letter-spacing:321.280000pt;}
.ls2f_c02244{letter-spacing:368.640000pt;}
.ls5_c02244{letter-spacing:990.240000pt;}
.ws2e_c02244{word-spacing:-48.000000pt;}
.ws7_c02244{word-spacing:-14.798112pt;}
.ws0_c02244{word-spacing:-14.786400pt;}
.ws15_c02244{word-spacing:-14.780544pt;}
.ws8_c02244{word-spacing:-14.774688pt;}
.ws3_c02244{word-spacing:-14.762976pt;}
.ws1_c02244{word-spacing:-14.745408pt;}
.wsd_c02244{word-spacing:-14.727840pt;}
.ws12_c02244{word-spacing:-14.721984pt;}
.ws2_c02244{word-spacing:-14.710272pt;}
.ws16_c02244{word-spacing:-14.704416pt;}
.ws10_c02244{word-spacing:-14.692704pt;}
.ws14_c02244{word-spacing:-14.675136pt;}
.ws43_c02244{word-spacing:-0.231136pt;}
.ws2f_c02244{word-spacing:-0.211200pt;}
.ws20_c02244{word-spacing:-0.206400pt;}
.ws47_c02244{word-spacing:-0.153600pt;}
.ws27_c02244{word-spacing:-0.148800pt;}
.ws25_c02244{word-spacing:-0.139200pt;}
.ws31_c02244{word-spacing:-0.124800pt;}
.ws3b_c02244{word-spacing:-0.120000pt;}
.ws38_c02244{word-spacing:-0.115200pt;}
.ws21_c02244{word-spacing:-0.100800pt;}
.ws1c_c02244{word-spacing:-0.096000pt;}
.ws4d_c02244{word-spacing:-0.089600pt;}
.ws3d_c02244{word-spacing:-0.086400pt;}
.ws30_c02244{word-spacing:-0.081600pt;}
.ws45_c02244{word-spacing:-0.076800pt;}
.ws2c_c02244{word-spacing:-0.072000pt;}
.ws32_c02244{word-spacing:-0.067200pt;}
.ws41_c02244{word-spacing:-0.067104pt;}
.ws1b_c02244{word-spacing:-0.062400pt;}
.ws44_c02244{word-spacing:-0.059648pt;}
.ws29_c02244{word-spacing:-0.057600pt;}
.ws33_c02244{word-spacing:-0.052800pt;}
.ws3e_c02244{word-spacing:-0.052192pt;}
.ws4f_c02244{word-spacing:-0.051200pt;}
.ws55_c02244{word-spacing:-0.048096pt;}
.ws1e_c02244{word-spacing:-0.048000pt;}
.ws1d_c02244{word-spacing:-0.043200pt;}
.ws1f_c02244{word-spacing:-0.033600pt;}
.ws42_c02244{word-spacing:-0.029824pt;}
.ws36_c02244{word-spacing:-0.028800pt;}
.ws22_c02244{word-spacing:-0.024000pt;}
.ws40_c02244{word-spacing:-0.022368pt;}
.ws46_c02244{word-spacing:-0.012800pt;}
.ws4e_c02244{word-spacing:-0.006400pt;}
.ws53_c02244{word-spacing:-0.005856pt;}
.ws35_c02244{word-spacing:0.000000pt;}
.ws34_c02244{word-spacing:0.004800pt;}
.ws52_c02244{word-spacing:0.011712pt;}
.ws50_c02244{word-spacing:0.017568pt;}
.ws56_c02244{word-spacing:0.023424pt;}
.ws2d_c02244{word-spacing:0.028800pt;}
.ws28_c02244{word-spacing:0.038400pt;}
.ws54_c02244{word-spacing:0.040992pt;}
.ws51_c02244{word-spacing:0.046848pt;}
.ws2b_c02244{word-spacing:0.057600pt;}
.ws57_c02244{word-spacing:0.070272pt;}
.ws24_c02244{word-spacing:0.076800pt;}
.ws37_c02244{word-spacing:0.091200pt;}
.ws2a_c02244{word-spacing:0.110400pt;}
.ws23_c02244{word-spacing:0.115200pt;}
.ws3a_c02244{word-spacing:0.134400pt;}
.ws3c_c02244{word-spacing:0.139200pt;}
.ws39_c02244{word-spacing:0.153600pt;}
.ws26_c02244{word-spacing:0.220800pt;}
.ws3f_c02244{word-spacing:4.011328pt;}
.ws4c_c02244{word-spacing:6.617600pt;}
.ws4b_c02244{word-spacing:6.681600pt;}
.ws4a_c02244{word-spacing:7.987200pt;}
.ws48_c02244{word-spacing:11.788800pt;}
.ws49_c02244{word-spacing:11.820800pt;}
.ws17_c02244{word-spacing:57.857280pt;}
.ws13_c02244{word-spacing:59.767552pt;}
.wsf_c02244{word-spacing:60.126560pt;}
.wsa_c02244{word-spacing:88.885664pt;}
.wse_c02244{word-spacing:88.887552pt;}
.wsb_c02244{word-spacing:89.246560pt;}
.ws18_c02244{word-spacing:89.718240pt;}
.ws5_c02244{word-spacing:118.708096pt;}
.ws9_c02244{word-spacing:133.406560pt;}
.wsc_c02244{word-spacing:162.526560pt;}
.ws4_c02244{word-spacing:162.548096pt;}
.ws1a_c02244{word-spacing:191.852064pt;}
.ws11_c02244{word-spacing:191.988096pt;}
.ws19_c02244{word-spacing:192.240000pt;}
.ws6_c02244{word-spacing:398.708096pt;}
._a_c02244{margin-left:-2.153504pt;}
._0_c02244{margin-left:-0.896000pt;}
._8_c02244{width:0.984000pt;}
._9_c02244{width:4.033696pt;}
._3_c02244{width:60.998080pt;}
._2_c02244{width:92.880000pt;}
._1_c02244{width:108.150912pt;}
._4_c02244{width:118.378592pt;}
._5_c02244{width:206.150944pt;}
._7_c02244{width:572.914528pt;}
._6_c02244{width:591.251776pt;}
.fs4_c02244{font-size:16.000000pt;}
.fs1_c02244{font-size:48.000000pt;}
.fs3_c02244{font-size:53.440000pt;}
.fs2_c02244{font-size:58.560000pt;}
.fs0_c02244{font-size:64.000000pt;}
.fs5_c02244{font-size:74.560000pt;}
.y0_c02244{bottom:0.000000pt;}
.y4_c02244{bottom:50.987067pt;}
.y3_c02244{bottom:69.387067pt;}
.y22_c02244{bottom:103.147200pt;}
.y21_c02244{bottom:110.427067pt;}
.y20_c02244{bottom:128.827067pt;}
.y1f_c02244{bottom:147.227067pt;}
.y1e_c02244{bottom:164.107200pt;}
.y1d_c02244{bottom:181.307067pt;}
.y1c_c02244{bottom:199.707067pt;}
.y1b_c02244{bottom:218.107200pt;}
.y1a_c02244{bottom:234.987067pt;}
.y19_c02244{bottom:251.867067pt;}
.y18_c02244{bottom:268.667067pt;}
.y17_c02244{bottom:285.547067pt;}
.y16_c02244{bottom:303.947067pt;}
.y15_c02244{bottom:320.827067pt;}
.y14_c02244{bottom:337.707067pt;}
.y11_c02244{bottom:345.627067pt;}
.y13_c02244{bottom:354.587067pt;}
.y12_c02244{bottom:371.387067pt;}
.y10_c02244{bottom:388.507067pt;}
.yf_c02244{bottom:409.067200pt;}
.ye_c02244{bottom:427.307067pt;}
.yd_c02244{bottom:445.707067pt;}
.yc_c02244{bottom:464.267067pt;}
.yb_c02244{bottom:478.987067pt;}
.y23_c02244{bottom:496.427067pt;}
.y3a_c02244{bottom:496.907067pt;}
.y24_c02244{bottom:511.147115pt;}
.y3b_c02244{bottom:511.627467pt;}
.y25_c02244{bottom:525.787003pt;}
.y3c_c02244{bottom:526.347867pt;}
.y26_c02244{bottom:540.507051pt;}
.y3d_c02244{bottom:540.987867pt;}
.y27_c02244{bottom:555.227099pt;}
.y3e_c02244{bottom:555.708267pt;}
.y28_c02244{bottom:569.866987pt;}
.y3f_c02244{bottom:570.348267pt;}
.y29_c02244{bottom:584.587035pt;}
.y40_c02244{bottom:585.068667pt;}
.y2a_c02244{bottom:599.307083pt;}
.y41_c02244{bottom:599.789067pt;}
.y2b_c02244{bottom:613.946971pt;}
.y42_c02244{bottom:614.429067pt;}
.y2c_c02244{bottom:628.667019pt;}
.y43_c02244{bottom:629.149467pt;}
.y2d_c02244{bottom:643.306907pt;}
.y44_c02244{bottom:643.869867pt;}
.y2e_c02244{bottom:658.026955pt;}
.y45_c02244{bottom:658.507067pt;}
.y2f_c02244{bottom:672.747003pt;}
.y46_c02244{bottom:673.227467pt;}
.y30_c02244{bottom:687.386891pt;}
.y47_c02244{bottom:687.867467pt;}
.y31_c02244{bottom:702.106939pt;}
.y48_c02244{bottom:702.587867pt;}
.y32_c02244{bottom:716.826987pt;}
.y49_c02244{bottom:717.308267pt;}
.y33_c02244{bottom:731.466875pt;}
.y4a_c02244{bottom:731.948267pt;}
.y34_c02244{bottom:746.186923pt;}
.y4b_c02244{bottom:746.668667pt;}
.y35_c02244{bottom:760.826811pt;}
.y4c_c02244{bottom:761.389067pt;}
.y36_c02244{bottom:775.546859pt;}
.y4d_c02244{bottom:776.029067pt;}
.y37_c02244{bottom:790.266907pt;}
.y4e_c02244{bottom:790.749467pt;}
.y38_c02244{bottom:804.906795pt;}
.y4f_c02244{bottom:805.389467pt;}
.y39_c02244{bottom:819.626843pt;}
.y50_c02244{bottom:820.109867pt;}
.y51_c02244{bottom:853.227067pt;}
.ya_c02244{bottom:893.867067pt;}
.y9_c02244{bottom:921.467067pt;}
.y8_c02244{bottom:948.907067pt;}
.y7_c02244{bottom:976.667067pt;}
.y6_c02244{bottom:994.907067pt;}
.y5_c02244{bottom:1013.307067pt;}
.y2_c02244{bottom:1042.347067pt;}
.y1_c02244{bottom:1060.587067pt;}
.h5_c02244{height:14.210938pt;}
.h7_c02244{height:34.851562pt;}
.h6_c02244{height:38.801406pt;}
.h3_c02244{height:52.012031pt;}
.h8_c02244{height:54.136094pt;}
.h2_c02244{height:56.156250pt;}
.h1_c02244{height:56.843750pt;}
.h4_c02244{height:57.756250pt;}
.h0_c02244{height:1122.666667pt;}
.w1_c02244{width:793.333333pt;}
.w0_c02244{width:793.626667pt;}
.x0_c02244{left:0.000000pt;}
.x1_c02244{left:113.440000pt;}
.x26_c02244{left:115.284800pt;}
.x6_c02244{left:120.560000pt;}
.x34_c02244{left:121.463600pt;}
.x4_c02244{left:132.400000pt;}
.x24_c02244{left:139.760000pt;}
.x12_c02244{left:141.360000pt;}
.x2f_c02244{left:142.805600pt;}
.x2b_c02244{left:143.775200pt;}
.x33_c02244{left:149.536400pt;}
.x28_c02244{left:155.609600pt;}
.x30_c02244{left:173.849600pt;}
.x2d_c02244{left:177.200000pt;}
.x2a_c02244{left:185.532800pt;}
.x35_c02244{left:210.000000pt;}
.x2e_c02244{left:213.202400pt;}
.x8_c02244{left:214.880000pt;}
.x32_c02244{left:225.135200pt;}
.x2c_c02244{left:233.938400pt;}
.x29_c02244{left:241.691600pt;}
.x25_c02244{left:248.883200pt;}
.x9_c02244{left:255.040000pt;}
.x7_c02244{left:258.320000pt;}
.x31_c02244{left:282.411200pt;}
.x27_c02244{left:291.927200pt;}
.x3_c02244{left:331.600000pt;}
.x2_c02244{left:384.880000pt;}
.xc_c02244{left:392.320000pt;}
.xb_c02244{left:395.200000pt;}
.xd_c02244{left:397.840000pt;}
.xa_c02244{left:413.520000pt;}
.xf_c02244{left:528.160000pt;}
.x10_c02244{left:533.280000pt;}
.x23_c02244{left:548.241488pt;}
.x22_c02244{left:564.801208pt;}
.xe_c02244{left:568.720000pt;}
.x21_c02244{left:570.721024pt;}
.x11_c02244{left:573.840000pt;}
.x20_c02244{left:575.360952pt;}
.x1f_c02244{left:578.720992pt;}
.x1e_c02244{left:582.640816pt;}
.x1d_c02244{left:590.640784pt;}
.x1c_c02244{left:592.560616pt;}
.x1b_c02244{left:596.560600pt;}
.x1a_c02244{left:597.920648pt;}
.x19_c02244{left:607.200504pt;}
.x18_c02244{left:609.120336pt;}
.x17_c02244{left:611.840432pt;}
.x16_c02244{left:615.120312pt;}
.x15_c02244{left:627.040104pt;}
.x14_c02244{left:630.319984pt;}
.x13_c02244{left:639.680000pt;}
.x5_c02244{left:674.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_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_0dbf455155081cdbbeab390c.woff2')format("woff");}.ff1_c02245{font-family:ff1_c02245;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02245;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v4_c02245{vertical-align:-1.440000px;}
.v0_c02245{vertical-align:0.000000px;}
.v1_c02245{vertical-align:1.080000px;}
.v5_c02245{vertical-align:2.160000px;}
.v3_c02245{vertical-align:75.960000px;}
.v2_c02245{vertical-align:78.120000px;}
.ls38_c02245{letter-spacing:-0.078156px;}
.ls37_c02245{letter-spacing:-0.027000px;}
.ls39_c02245{letter-spacing:-0.023940px;}
.ls36_c02245{letter-spacing:-0.014400px;}
.ls35_c02245{letter-spacing:0.000000px;}
.ls3_c02245{letter-spacing:0.006588px;}
.ls2d_c02245{letter-spacing:0.013176px;}
.ls2_c02245{letter-spacing:0.019764px;}
.ls0_c02245{letter-spacing:0.028800px;}
.ls30_c02245{letter-spacing:0.032940px;}
.ls25_c02245{letter-spacing:0.039528px;}
.ls5_c02245{letter-spacing:0.046116px;}
.ls4_c02245{letter-spacing:0.052704px;}
.ls1d_c02245{letter-spacing:0.059292px;}
.ls6_c02245{letter-spacing:0.065880px;}
.ls29_c02245{letter-spacing:0.072468px;}
.ls32_c02245{letter-spacing:0.076608px;}
.ls16_c02245{letter-spacing:0.079056px;}
.ls8_c02245{letter-spacing:0.092232px;}
.ls18_c02245{letter-spacing:0.098820px;}
.lsc_c02245{letter-spacing:0.138348px;}
.ls7_c02245{letter-spacing:0.144288px;}
.ls12_c02245{letter-spacing:0.151524px;}
.ls27_c02245{letter-spacing:0.158112px;}
.ls1_c02245{letter-spacing:0.164700px;}
.ls1a_c02245{letter-spacing:0.177876px;}
.lsa_c02245{letter-spacing:0.180000px;}
.ls28_c02245{letter-spacing:64.080000px;}
.ls23_c02245{letter-spacing:66.240000px;}
.ls1b_c02245{letter-spacing:66.600000px;}
.ls1c_c02245{letter-spacing:66.960000px;}
.ls11_c02245{letter-spacing:99.000000px;}
.ls13_c02245{letter-spacing:99.360000px;}
.ls14_c02245{letter-spacing:99.720000px;}
.ls24_c02245{letter-spacing:117.450000px;}
.lsb_c02245{letter-spacing:132.120000px;}
.lsd_c02245{letter-spacing:132.480000px;}
.ls33_c02245{letter-spacing:132.840000px;}
.ls2e_c02245{letter-spacing:133.200000px;}
.ls21_c02245{letter-spacing:150.300000px;}
.lsf_c02245{letter-spacing:165.960000px;}
.ls20_c02245{letter-spacing:183.330000px;}
.lse_c02245{letter-spacing:183.420000px;}
.ls15_c02245{letter-spacing:186.480000px;}
.ls2a_c02245{letter-spacing:204.840000px;}
.ls2b_c02245{letter-spacing:214.560000px;}
.ls1f_c02245{letter-spacing:214.920000px;}
.ls22_c02245{letter-spacing:215.279400px;}
.ls17_c02245{letter-spacing:234.360000px;}
.ls19_c02245{letter-spacing:252.360000px;}
.ls26_c02245{letter-spacing:268.920000px;}
.ls1e_c02245{letter-spacing:281.520000px;}
.ls31_c02245{letter-spacing:296.280000px;}
.ls10_c02245{letter-spacing:296.640000px;}
.ls9_c02245{letter-spacing:314.640000px;}
.ls2f_c02245{letter-spacing:361.440000px;}
.ls34_c02245{letter-spacing:394.200000px;}
.ls2c_c02245{letter-spacing:414.720000px;}
.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;}
}
.ws7_c02245{word-spacing:-16.647876px;}
.ws0_c02245{word-spacing:-16.634700px;}
.ws13_c02245{word-spacing:-16.628112px;}
.ws8_c02245{word-spacing:-16.621524px;}
.ws1_c02245{word-spacing:-16.608348px;}
.wsc_c02245{word-spacing:-16.568820px;}
.ws6_c02245{word-spacing:-16.562232px;}
.ws14_c02245{word-spacing:-16.542468px;}
.wsf_c02245{word-spacing:-16.529292px;}
.ws12_c02245{word-spacing:-16.509528px;}
.ws19_c02245{word-spacing:-16.502940px;}
.ws1b_c02245{word-spacing:-16.489764px;}
.ws2a_c02245{word-spacing:-0.167580px;}
.ws1e_c02245{word-spacing:-0.086400px;}
.ws24_c02245{word-spacing:-0.054108px;}
.ws1d_c02245{word-spacing:0.000000px;}
.ws25_c02245{word-spacing:0.013176px;}
.ws1f_c02245{word-spacing:0.019764px;}
.ws23_c02245{word-spacing:0.026352px;}
.ws2c_c02245{word-spacing:0.032940px;}
.ws22_c02245{word-spacing:0.039528px;}
.ws29_c02245{word-spacing:0.046116px;}
.ws26_c02245{word-spacing:0.052704px;}
.ws28_c02245{word-spacing:0.059292px;}
.ws20_c02245{word-spacing:0.072468px;}
.ws27_c02245{word-spacing:0.079056px;}
.ws21_c02245{word-spacing:0.085644px;}
.ws2b_c02245{word-spacing:0.092232px;}
.ws15_c02245{word-spacing:65.089440px;}
.ws11_c02245{word-spacing:67.238496px;}
.wse_c02245{word-spacing:67.642380px;}
.wsa_c02245{word-spacing:99.996372px;}
.wsd_c02245{word-spacing:99.998496px;}
.wsb_c02245{word-spacing:100.402380px;}
.ws16_c02245{word-spacing:100.933020px;}
.ws3_c02245{word-spacing:133.116372px;}
.ws4_c02245{word-spacing:133.546608px;}
.ws9_c02245{word-spacing:150.082380px;}
.ws2_c02245{word-spacing:150.106608px;}
.ws5_c02245{word-spacing:182.866608px;}
.ws18_c02245{word-spacing:215.833572px;}
.ws10_c02245{word-spacing:215.986608px;}
.ws17_c02245{word-spacing:216.270000px;}
.ws1c_c02245{word-spacing:448.546608px;}
.ws1a_c02245{word-spacing:623.353572px;}
._3_c02245{margin-left:-1.154304px;}
._4_c02245{width:68.769144px;}
._d_c02245{width:101.778264px;}
._2_c02245{width:104.490000px;}
._1_c02245{width:121.795776px;}
._c_c02245{width:130.230000px;}
._5_c02245{width:133.322220px;}
._b_c02245{width:144.532800px;}
._e_c02245{width:169.525296px;}
._0_c02245{width:178.686000px;}
._a_c02245{width:191.646000px;}
._6_c02245{width:232.066116px;}
._9_c02245{width:485.985600px;}
._8_c02245{width:644.170968px;}
._7_c02245{width:665.158248px;}
.fc0_c02245{color:rgb(0,0,0);}
.fs4_c02245{font-size:47.880000px;}
.fs2_c02245{font-size:54.000000px;}
.fs3_c02245{font-size:60.120000px;}
.fs1_c02245{font-size:65.880000px;}
.fs0_c02245{font-size:72.000000px;}
.y0_c02245{bottom:0.000000px;}
.y4_c02245{bottom:57.360450px;}
.y3_c02245{bottom:78.060450px;}
.y3e_c02245{bottom:119.280000px;}
.y3d_c02245{bottom:134.760450px;}
.y3c_c02245{bottom:151.320450px;}
.y3b_c02245{bottom:172.020450px;}
.y3a_c02245{bottom:192.720450px;}
.y39_c02245{bottom:211.710600px;}
.y38_c02245{bottom:231.060450px;}
.y37_c02245{bottom:251.760450px;}
.y36_c02245{bottom:272.460450px;}
.y35_c02245{bottom:291.450450px;}
.y34_c02245{bottom:310.440450px;}
.y33_c02245{bottom:329.430450px;}
.y32_c02245{bottom:348.330450px;}
.y31_c02245{bottom:368.670450px;}
.y30_c02245{bottom:386.310450px;}
.y2f_c02245{bottom:405.300450px;}
.y2c_c02245{bottom:414.210600px;}
.y2e_c02245{bottom:424.290600px;}
.y2d_c02245{bottom:443.190600px;}
.y2b_c02245{bottom:463.800150px;}
.y2a_c02245{bottom:479.280600px;}
.y29_c02245{bottom:494.850450px;}
.y28_c02245{bottom:511.410450px;}
.y27_c02245{bottom:532.110450px;}
.y26_c02245{bottom:552.810450px;}
.y25_c02245{bottom:571.800450px;}
.y24_c02245{bottom:591.150450px;}
.y23_c02245{bottom:611.850450px;}
.y22_c02245{bottom:632.550450px;}
.y21_c02245{bottom:651.450450px;}
.y20_c02245{bottom:670.440450px;}
.y1f_c02245{bottom:689.430450px;}
.y1e_c02245{bottom:708.420450px;}
.y1d_c02245{bottom:726.690450px;}
.y1b_c02245{bottom:742.890450px;}
.y19_c02245{bottom:761.340450px;}
.y1a_c02245{bottom:761.880450px;}
.y1c_c02245{bottom:780.870450px;}
.y18_c02245{bottom:801.390450px;}
.y17_c02245{bottom:816.960000px;}
.y16_c02245{bottom:832.440450px;}
.y15_c02245{bottom:849.000450px;}
.y14_c02245{bottom:869.700450px;}
.y13_c02245{bottom:890.400450px;}
.y12_c02245{bottom:909.390450px;}
.y11_c02245{bottom:928.740450px;}
.y10_c02245{bottom:949.440450px;}
.yf_c02245{bottom:970.140450px;}
.ye_c02245{bottom:989.130450px;}
.yd_c02245{bottom:1008.120450px;}
.yc_c02245{bottom:1027.020450px;}
.yb_c02245{bottom:1046.010450px;}
.ya_c02245{bottom:1064.370450px;}
.y9_c02245{bottom:1082.280450px;}
.y8_c02245{bottom:1101.270450px;}
.y5_c02245{bottom:1110.180450px;}
.y7_c02245{bottom:1120.170450px;}
.y6_c02245{bottom:1139.160450px;}
.y2_c02245{bottom:1172.640450px;}
.y1_c02245{bottom:1193.160450px;}
.h6_c02245{height:47.961914px;}
.ha_c02245{height:53.397598px;}
.h4_c02245{height:54.477598px;}
.h3_c02245{height:58.513535px;}
.h2_c02245{height:63.175781px;}
.h1_c02245{height:63.949219px;}
.h5_c02245{height:64.975781px;}
.h9_c02245{height:64.976381px;}
.hb_c02245{height:65.335781px;}
.h8_c02245{height:139.909219px;}
.h7_c02245{height:142.069219px;}
.h0_c02245{height:1263.000000px;}
.w1_c02245{width:892.500000px;}
.w0_c02245{width:892.830000px;}
.x0_c02245{left:0.000000px;}
.x1_c02245{left:127.620000px;}
.x3_c02245{left:135.630000px;}
.x1b_c02245{left:160.920000px;}
.xe_c02245{left:162.720000px;}
.x13_c02245{left:176.040000px;}
.x14_c02245{left:241.920000px;}
.x5_c02245{left:243.540000px;}
.x6_c02245{left:255.780000px;}
.x16_c02245{left:263.790000px;}
.xf_c02245{left:269.550000px;}
.x15_c02245{left:278.730000px;}
.x10_c02245{left:281.160000px;}
.x4_c02245{left:290.610000px;}
.x18_c02245{left:414.270000px;}
.x9_c02245{left:419.400000px;}
.xa_c02245{left:422.100000px;}
.x11_c02245{left:424.620000px;}
.x8_c02245{left:430.380000px;}
.x2_c02245{left:432.990000px;}
.x17_c02245{left:442.440000px;}
.x7_c02245{left:465.210000px;}
.xc_c02245{left:592.380000px;}
.x12_c02245{left:602.460000px;}
.xd_c02245{left:605.700000px;}
.x1a_c02245{left:613.440000px;}
.x19_c02245{left:632.340000px;}
.xb_c02245{left:639.810000px;}
@media print{
.v4_c02245{vertical-align:-1.280000pt;}
.v0_c02245{vertical-align:0.000000pt;}
.v1_c02245{vertical-align:0.960000pt;}
.v5_c02245{vertical-align:1.920000pt;}
.v3_c02245{vertical-align:67.520000pt;}
.v2_c02245{vertical-align:69.440000pt;}
.ls38_c02245{letter-spacing:-0.069472pt;}
.ls37_c02245{letter-spacing:-0.024000pt;}
.ls39_c02245{letter-spacing:-0.021280pt;}
.ls36_c02245{letter-spacing:-0.012800pt;}
.ls35_c02245{letter-spacing:0.000000pt;}
.ls3_c02245{letter-spacing:0.005856pt;}
.ls2d_c02245{letter-spacing:0.011712pt;}
.ls2_c02245{letter-spacing:0.017568pt;}
.ls0_c02245{letter-spacing:0.025600pt;}
.ls30_c02245{letter-spacing:0.029280pt;}
.ls25_c02245{letter-spacing:0.035136pt;}
.ls5_c02245{letter-spacing:0.040992pt;}
.ls4_c02245{letter-spacing:0.046848pt;}
.ls1d_c02245{letter-spacing:0.052704pt;}
.ls6_c02245{letter-spacing:0.058560pt;}
.ls29_c02245{letter-spacing:0.064416pt;}
.ls32_c02245{letter-spacing:0.068096pt;}
.ls16_c02245{letter-spacing:0.070272pt;}
.ls8_c02245{letter-spacing:0.081984pt;}
.ls18_c02245{letter-spacing:0.087840pt;}
.lsc_c02245{letter-spacing:0.122976pt;}
.ls7_c02245{letter-spacing:0.128256pt;}
.ls12_c02245{letter-spacing:0.134688pt;}
.ls27_c02245{letter-spacing:0.140544pt;}
.ls1_c02245{letter-spacing:0.146400pt;}
.ls1a_c02245{letter-spacing:0.158112pt;}
.lsa_c02245{letter-spacing:0.160000pt;}
.ls28_c02245{letter-spacing:56.960000pt;}
.ls23_c02245{letter-spacing:58.880000pt;}
.ls1b_c02245{letter-spacing:59.200000pt;}
.ls1c_c02245{letter-spacing:59.520000pt;}
.ls11_c02245{letter-spacing:88.000000pt;}
.ls13_c02245{letter-spacing:88.320000pt;}
.ls14_c02245{letter-spacing:88.640000pt;}
.ls24_c02245{letter-spacing:104.400000pt;}
.lsb_c02245{letter-spacing:117.440000pt;}
.lsd_c02245{letter-spacing:117.760000pt;}
.ls33_c02245{letter-spacing:118.080000pt;}
.ls2e_c02245{letter-spacing:118.400000pt;}
.ls21_c02245{letter-spacing:133.600000pt;}
.lsf_c02245{letter-spacing:147.520000pt;}
.ls20_c02245{letter-spacing:162.960000pt;}
.lse_c02245{letter-spacing:163.040000pt;}
.ls15_c02245{letter-spacing:165.760000pt;}
.ls2a_c02245{letter-spacing:182.080000pt;}
.ls2b_c02245{letter-spacing:190.720000pt;}
.ls1f_c02245{letter-spacing:191.040000pt;}
.ls22_c02245{letter-spacing:191.359467pt;}
.ls17_c02245{letter-spacing:208.320000pt;}
.ls19_c02245{letter-spacing:224.320000pt;}
.ls26_c02245{letter-spacing:239.040000pt;}
.ls1e_c02245{letter-spacing:250.240000pt;}
.ls31_c02245{letter-spacing:263.360000pt;}
.ls10_c02245{letter-spacing:263.680000pt;}
.ls9_c02245{letter-spacing:279.680000pt;}
.ls2f_c02245{letter-spacing:321.280000pt;}
.ls34_c02245{letter-spacing:350.400000pt;}
.ls2c_c02245{letter-spacing:368.640000pt;}
.ws7_c02245{word-spacing:-14.798112pt;}
.ws0_c02245{word-spacing:-14.786400pt;}
.ws13_c02245{word-spacing:-14.780544pt;}
.ws8_c02245{word-spacing:-14.774688pt;}
.ws1_c02245{word-spacing:-14.762976pt;}
.wsc_c02245{word-spacing:-14.727840pt;}
.ws6_c02245{word-spacing:-14.721984pt;}
.ws14_c02245{word-spacing:-14.704416pt;}
.wsf_c02245{word-spacing:-14.692704pt;}
.ws12_c02245{word-spacing:-14.675136pt;}
.ws19_c02245{word-spacing:-14.669280pt;}
.ws1b_c02245{word-spacing:-14.657568pt;}
.ws2a_c02245{word-spacing:-0.148960pt;}
.ws1e_c02245{word-spacing:-0.076800pt;}
.ws24_c02245{word-spacing:-0.048096pt;}
.ws1d_c02245{word-spacing:0.000000pt;}
.ws25_c02245{word-spacing:0.011712pt;}
.ws1f_c02245{word-spacing:0.017568pt;}
.ws23_c02245{word-spacing:0.023424pt;}
.ws2c_c02245{word-spacing:0.029280pt;}
.ws22_c02245{word-spacing:0.035136pt;}
.ws29_c02245{word-spacing:0.040992pt;}
.ws26_c02245{word-spacing:0.046848pt;}
.ws28_c02245{word-spacing:0.052704pt;}
.ws20_c02245{word-spacing:0.064416pt;}
.ws27_c02245{word-spacing:0.070272pt;}
.ws21_c02245{word-spacing:0.076128pt;}
.ws2b_c02245{word-spacing:0.081984pt;}
.ws15_c02245{word-spacing:57.857280pt;}
.ws11_c02245{word-spacing:59.767552pt;}
.wse_c02245{word-spacing:60.126560pt;}
.wsa_c02245{word-spacing:88.885664pt;}
.wsd_c02245{word-spacing:88.887552pt;}
.wsb_c02245{word-spacing:89.246560pt;}
.ws16_c02245{word-spacing:89.718240pt;}
.ws3_c02245{word-spacing:118.325664pt;}
.ws4_c02245{word-spacing:118.708096pt;}
.ws9_c02245{word-spacing:133.406560pt;}
.ws2_c02245{word-spacing:133.428096pt;}
.ws5_c02245{word-spacing:162.548096pt;}
.ws18_c02245{word-spacing:191.852064pt;}
.ws10_c02245{word-spacing:191.988096pt;}
.ws17_c02245{word-spacing:192.240000pt;}
.ws1c_c02245{word-spacing:398.708096pt;}
.ws1a_c02245{word-spacing:554.092064pt;}
._3_c02245{margin-left:-1.026048pt;}
._4_c02245{width:61.128128pt;}
._d_c02245{width:90.469568pt;}
._2_c02245{width:92.880000pt;}
._1_c02245{width:108.262912pt;}
._c_c02245{width:115.760000pt;}
._5_c02245{width:118.508640pt;}
._b_c02245{width:128.473600pt;}
._e_c02245{width:150.689152pt;}
._0_c02245{width:158.832000pt;}
._a_c02245{width:170.352000pt;}
._6_c02245{width:206.280992pt;}
._9_c02245{width:431.987200pt;}
._8_c02245{width:572.596416pt;}
._7_c02245{width:591.251776pt;}
.fs4_c02245{font-size:42.560000pt;}
.fs2_c02245{font-size:48.000000pt;}
.fs3_c02245{font-size:53.440000pt;}
.fs1_c02245{font-size:58.560000pt;}
.fs0_c02245{font-size:64.000000pt;}
.y0_c02245{bottom:0.000000pt;}
.y4_c02245{bottom:50.987067pt;}
.y3_c02245{bottom:69.387067pt;}
.y3e_c02245{bottom:106.026667pt;}
.y3d_c02245{bottom:119.787067pt;}
.y3c_c02245{bottom:134.507067pt;}
.y3b_c02245{bottom:152.907067pt;}
.y3a_c02245{bottom:171.307067pt;}
.y39_c02245{bottom:188.187200pt;}
.y38_c02245{bottom:205.387067pt;}
.y37_c02245{bottom:223.787067pt;}
.y36_c02245{bottom:242.187067pt;}
.y35_c02245{bottom:259.067067pt;}
.y34_c02245{bottom:275.947067pt;}
.y33_c02245{bottom:292.827067pt;}
.y32_c02245{bottom:309.627067pt;}
.y31_c02245{bottom:327.707067pt;}
.y30_c02245{bottom:343.387067pt;}
.y2f_c02245{bottom:360.267067pt;}
.y2c_c02245{bottom:368.187200pt;}
.y2e_c02245{bottom:377.147200pt;}
.y2d_c02245{bottom:393.947200pt;}
.y2b_c02245{bottom:412.266800pt;}
.y2a_c02245{bottom:426.027200pt;}
.y29_c02245{bottom:439.867067pt;}
.y28_c02245{bottom:454.587067pt;}
.y27_c02245{bottom:472.987067pt;}
.y26_c02245{bottom:491.387067pt;}
.y25_c02245{bottom:508.267067pt;}
.y24_c02245{bottom:525.467067pt;}
.y23_c02245{bottom:543.867067pt;}
.y22_c02245{bottom:562.267067pt;}
.y21_c02245{bottom:579.067067pt;}
.y20_c02245{bottom:595.947067pt;}
.y1f_c02245{bottom:612.827067pt;}
.y1e_c02245{bottom:629.707067pt;}
.y1d_c02245{bottom:645.947067pt;}
.y1b_c02245{bottom:660.347067pt;}
.y19_c02245{bottom:676.747067pt;}
.y1a_c02245{bottom:677.227067pt;}
.y1c_c02245{bottom:694.107067pt;}
.y18_c02245{bottom:712.347067pt;}
.y17_c02245{bottom:726.186667pt;}
.y16_c02245{bottom:739.947067pt;}
.y15_c02245{bottom:754.667067pt;}
.y14_c02245{bottom:773.067067pt;}
.y13_c02245{bottom:791.467067pt;}
.y12_c02245{bottom:808.347067pt;}
.y11_c02245{bottom:825.547067pt;}
.y10_c02245{bottom:843.947067pt;}
.yf_c02245{bottom:862.347067pt;}
.ye_c02245{bottom:879.227067pt;}
.yd_c02245{bottom:896.107067pt;}
.yc_c02245{bottom:912.907067pt;}
.yb_c02245{bottom:929.787067pt;}
.ya_c02245{bottom:946.107067pt;}
.y9_c02245{bottom:962.027067pt;}
.y8_c02245{bottom:978.907067pt;}
.y5_c02245{bottom:986.827067pt;}
.y7_c02245{bottom:995.707067pt;}
.y6_c02245{bottom:1012.587067pt;}
.y2_c02245{bottom:1042.347067pt;}
.y1_c02245{bottom:1060.587067pt;}
.h6_c02245{height:42.632812pt;}
.ha_c02245{height:47.464531pt;}
.h4_c02245{height:48.424531pt;}
.h3_c02245{height:52.012031pt;}
.h2_c02245{height:56.156250pt;}
.h1_c02245{height:56.843750pt;}
.h5_c02245{height:57.756250pt;}
.h9_c02245{height:57.756783pt;}
.hb_c02245{height:58.076250pt;}
.h8_c02245{height:124.363750pt;}
.h7_c02245{height:126.283750pt;}
.h0_c02245{height:1122.666667pt;}
.w1_c02245{width:793.333333pt;}
.w0_c02245{width:793.626667pt;}
.x0_c02245{left:0.000000pt;}
.x1_c02245{left:113.440000pt;}
.x3_c02245{left:120.560000pt;}
.x1b_c02245{left:143.040000pt;}
.xe_c02245{left:144.640000pt;}
.x13_c02245{left:156.480000pt;}
.x14_c02245{left:215.040000pt;}
.x5_c02245{left:216.480000pt;}
.x6_c02245{left:227.360000pt;}
.x16_c02245{left:234.480000pt;}
.xf_c02245{left:239.600000pt;}
.x15_c02245{left:247.760000pt;}
.x10_c02245{left:249.920000pt;}
.x4_c02245{left:258.320000pt;}
.x18_c02245{left:368.240000pt;}
.x9_c02245{left:372.800000pt;}
.xa_c02245{left:375.200000pt;}
.x11_c02245{left:377.440000pt;}
.x8_c02245{left:382.560000pt;}
.x2_c02245{left:384.880000pt;}
.x17_c02245{left:393.280000pt;}
.x7_c02245{left:413.520000pt;}
.xc_c02245{left:526.560000pt;}
.x12_c02245{left:535.520000pt;}
.xd_c02245{left:538.400000pt;}
.x1a_c02245{left:545.280000pt;}
.x19_c02245{left:562.080000pt;}
.xb_c02245{left:568.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_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_a8a12e2ccfe3b48d13d820cf.woff2')format("woff");}.ff1_c02246{font-family:ff1_c02246;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02246;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v3_c02246{vertical-align:-6.840000px;}
.v0_c02246{vertical-align:0.000000px;}
.v1_c02246{vertical-align:1.440000px;}
.v4_c02246{vertical-align:75.600000px;}
.v2_c02246{vertical-align:78.120000px;}
.ls36_c02246{letter-spacing:-0.078156px;}
.ls37_c02246{letter-spacing:-0.019764px;}
.ls34_c02246{letter-spacing:-0.014400px;}
.ls35_c02246{letter-spacing:-0.006588px;}
.ls33_c02246{letter-spacing:0.000000px;}
.ls2d_c02246{letter-spacing:0.006588px;}
.ls2a_c02246{letter-spacing:0.013176px;}
.ls2_c02246{letter-spacing:0.026352px;}
.ls0_c02246{letter-spacing:0.028800px;}
.ls4_c02246{letter-spacing:0.032940px;}
.ls22_c02246{letter-spacing:0.039528px;}
.ls38_c02246{letter-spacing:0.046116px;}
.ls2f_c02246{letter-spacing:0.052704px;}
.ls1b_c02246{letter-spacing:0.059292px;}
.lse_c02246{letter-spacing:0.065880px;}
.ls26_c02246{letter-spacing:0.072468px;}
.ls3_c02246{letter-spacing:0.079056px;}
.ls6_c02246{letter-spacing:0.092232px;}
.ls16_c02246{letter-spacing:0.098820px;}
.ls2e_c02246{letter-spacing:0.118584px;}
.lsa_c02246{letter-spacing:0.138348px;}
.ls5_c02246{letter-spacing:0.144288px;}
.ls11_c02246{letter-spacing:0.151524px;}
.ls24_c02246{letter-spacing:0.158112px;}
.ls1_c02246{letter-spacing:0.164700px;}
.ls18_c02246{letter-spacing:0.177876px;}
.ls8_c02246{letter-spacing:0.180000px;}
.ls25_c02246{letter-spacing:64.080000px;}
.ls20_c02246{letter-spacing:66.240000px;}
.ls19_c02246{letter-spacing:66.600000px;}
.ls1a_c02246{letter-spacing:66.960000px;}
.ls10_c02246{letter-spacing:99.000000px;}
.ls12_c02246{letter-spacing:99.360000px;}
.ls13_c02246{letter-spacing:99.720000px;}
.ls21_c02246{letter-spacing:117.450000px;}
.ls9_c02246{letter-spacing:132.120000px;}
.lsb_c02246{letter-spacing:132.480000px;}
.lsd_c02246{letter-spacing:132.840000px;}
.ls2b_c02246{letter-spacing:133.200000px;}
.lsc_c02246{letter-spacing:150.300000px;}
.ls32_c02246{letter-spacing:165.960000px;}
.ls1e_c02246{letter-spacing:183.330000px;}
.ls14_c02246{letter-spacing:186.480000px;}
.ls27_c02246{letter-spacing:204.840000px;}
.ls28_c02246{letter-spacing:214.560000px;}
.ls1d_c02246{letter-spacing:214.920000px;}
.ls1f_c02246{letter-spacing:215.279400px;}
.ls15_c02246{letter-spacing:234.360000px;}
.ls17_c02246{letter-spacing:252.360000px;}
.ls23_c02246{letter-spacing:268.920000px;}
.ls1c_c02246{letter-spacing:281.520000px;}
.ls30_c02246{letter-spacing:281.880000px;}
.lsf_c02246{letter-spacing:296.640000px;}
.ls7_c02246{letter-spacing:314.640000px;}
.ls2c_c02246{letter-spacing:361.440000px;}
.ls29_c02246{letter-spacing:414.720000px;}
.ls31_c02246{letter-spacing:426.600000px;}
.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;}
}
.ws6_c02246{word-spacing:-16.647876px;}
.ws0_c02246{word-spacing:-16.634700px;}
.ws14_c02246{word-spacing:-16.628112px;}
.ws7_c02246{word-spacing:-16.621524px;}
.ws2_c02246{word-spacing:-16.608348px;}
.ws1a_c02246{word-spacing:-16.588584px;}
.wsc_c02246{word-spacing:-16.568820px;}
.ws11_c02246{word-spacing:-16.562232px;}
.ws15_c02246{word-spacing:-16.542468px;}
.wsf_c02246{word-spacing:-16.529292px;}
.ws1b_c02246{word-spacing:-16.522704px;}
.ws13_c02246{word-spacing:-16.509528px;}
.ws1_c02246{word-spacing:-16.502940px;}
.ws1e_c02246{word-spacing:-16.496352px;}
.ws1d_c02246{word-spacing:-16.463412px;}
.ws1c_c02246{word-spacing:-16.450236px;}
.ws2a_c02246{word-spacing:-0.349164px;}
.ws21_c02246{word-spacing:-0.086400px;}
.ws26_c02246{word-spacing:-0.054108px;}
.ws20_c02246{word-spacing:0.000000px;}
.ws23_c02246{word-spacing:0.013176px;}
.ws2c_c02246{word-spacing:0.019764px;}
.ws27_c02246{word-spacing:0.026352px;}
.ws2b_c02246{word-spacing:0.046116px;}
.ws28_c02246{word-spacing:0.052704px;}
.ws22_c02246{word-spacing:0.065880px;}
.ws29_c02246{word-spacing:0.079056px;}
.ws24_c02246{word-spacing:0.092232px;}
.ws25_c02246{word-spacing:0.098820px;}
.ws16_c02246{word-spacing:65.089440px;}
.ws12_c02246{word-spacing:67.238496px;}
.wse_c02246{word-spacing:67.642380px;}
.ws9_c02246{word-spacing:99.996372px;}
.wsd_c02246{word-spacing:99.998496px;}
.wsa_c02246{word-spacing:100.402380px;}
.ws17_c02246{word-spacing:100.933020px;}
.ws5_c02246{word-spacing:133.116372px;}
.ws4_c02246{word-spacing:133.546608px;}
.ws8_c02246{word-spacing:150.082380px;}
.wsb_c02246{word-spacing:150.106608px;}
.ws1f_c02246{word-spacing:182.842380px;}
.ws3_c02246{word-spacing:182.866608px;}
.ws19_c02246{word-spacing:215.831448px;}
.ws10_c02246{word-spacing:215.986608px;}
.ws18_c02246{word-spacing:216.270000px;}
._0_c02246{margin-left:-1.148292px;}
._4_c02246{width:68.763132px;}
._3_c02246{width:104.490000px;}
._2_c02246{width:121.795776px;}
._6_c02246{width:133.316208px;}
._5_c02246{width:166.149648px;}
._1_c02246{width:169.519284px;}
._7_c02246{width:232.060104px;}
._a_c02246{width:485.985600px;}
._9_c02246{width:611.410968px;}
._8_c02246{width:665.158248px;}
.fc0_c02246{color:rgb(0,0,0);}
.fs3_c02246{font-size:54.000000px;}
.fs2_c02246{font-size:60.120000px;}
.fs1_c02246{font-size:65.880000px;}
.fs0_c02246{font-size:72.000000px;}
.y0_c02246{bottom:0.000000px;}
.y4_c02246{bottom:57.360450px;}
.y3_c02246{bottom:78.060450px;}
.y3f_c02246{bottom:119.280000px;}
.y3e_c02246{bottom:134.760450px;}
.y3d_c02246{bottom:151.320450px;}
.y3c_c02246{bottom:172.020450px;}
.y3b_c02246{bottom:192.720450px;}
.y3a_c02246{bottom:211.710600px;}
.y39_c02246{bottom:231.060450px;}
.y38_c02246{bottom:251.760450px;}
.y37_c02246{bottom:272.460450px;}
.y36_c02246{bottom:291.450450px;}
.y35_c02246{bottom:310.440450px;}
.y34_c02246{bottom:329.430450px;}
.y33_c02246{bottom:348.330450px;}
.y32_c02246{bottom:366.960600px;}
.y31_c02246{bottom:384.600450px;}
.y30_c02246{bottom:403.590600px;}
.y2d_c02246{bottom:412.500600px;}
.y2f_c02246{bottom:422.580450px;}
.y2e_c02246{bottom:441.480450px;}
.y2c_c02246{bottom:462.090450px;}
.y2b_c02246{bottom:477.570900px;}
.y2a_c02246{bottom:493.140450px;}
.y29_c02246{bottom:511.410450px;}
.y28_c02246{bottom:532.110450px;}
.y27_c02246{bottom:551.100450px;}
.y26_c02246{bottom:570.090450px;}
.y25_c02246{bottom:591.150450px;}
.y24_c02246{bottom:611.850450px;}
.y23_c02246{bottom:630.750450px;}
.y22_c02246{bottom:649.740450px;}
.y21_c02246{bottom:668.730450px;}
.y20_c02246{bottom:687.720450px;}
.y1f_c02246{bottom:706.710450px;}
.y1e_c02246{bottom:725.250450px;}
.y1c_c02246{bottom:742.890450px;}
.y1a_c02246{bottom:761.340450px;}
.y1b_c02246{bottom:761.880450px;}
.y1d_c02246{bottom:780.870450px;}
.y19_c02246{bottom:801.390450px;}
.y18_c02246{bottom:816.960000px;}
.y17_c02246{bottom:832.710450px;}
.y16_c02246{bottom:849.000450px;}
.y15_c02246{bottom:869.700450px;}
.y14_c02246{bottom:890.400450px;}
.y13_c02246{bottom:909.390450px;}
.y12_c02246{bottom:928.740450px;}
.y11_c02246{bottom:949.440450px;}
.y10_c02246{bottom:970.140450px;}
.yf_c02246{bottom:989.130450px;}
.ye_c02246{bottom:1008.120450px;}
.yd_c02246{bottom:1027.020450px;}
.yc_c02246{bottom:1046.010450px;}
.yb_c02246{bottom:1064.640450px;}
.y9_c02246{bottom:1082.280450px;}
.ya_c02246{bottom:1099.830450px;}
.y8_c02246{bottom:1101.270450px;}
.y5_c02246{bottom:1110.180450px;}
.y7_c02246{bottom:1120.170450px;}
.y6_c02246{bottom:1139.160450px;}
.y2_c02246{bottom:1172.640450px;}
.y1_c02246{bottom:1193.160450px;}
.h6_c02246{height:47.381836px;}
.h7_c02246{height:47.961914px;}
.h4_c02246{height:53.397598px;}
.h3_c02246{height:58.513535px;}
.h2_c02246{height:63.175781px;}
.h1_c02246{height:63.949219px;}
.h5_c02246{height:64.975781px;}
.ha_c02246{height:65.335781px;}
.h9_c02246{height:134.113535px;}
.h8_c02246{height:142.069219px;}
.h0_c02246{height:1263.000000px;}
.w1_c02246{width:892.500000px;}
.w0_c02246{width:892.830000px;}
.x0_c02246{left:0.000000px;}
.x1_c02246{left:127.620000px;}
.x3_c02246{left:135.630000px;}
.xe_c02246{left:160.920000px;}
.x5_c02246{left:247.230000px;}
.x7_c02246{left:255.960000px;}
.x6_c02246{left:266.490000px;}
.xf_c02246{left:274.860000px;}
.x10_c02246{left:283.050000px;}
.x4_c02246{left:290.610000px;}
.x9_c02246{left:417.510000px;}
.x11_c02246{left:419.580000px;}
.x2_c02246{left:432.990000px;}
.x14_c02246{left:437.940000px;}
.x15_c02246{left:452.610000px;}
.x12_c02246{left:454.410000px;}
.x8_c02246{left:465.210000px;}
.xa_c02246{left:492.930000px;}
.x16_c02246{left:598.860000px;}
.xc_c02246{left:603.180000px;}
.x17_c02246{left:619.920000px;}
.x13_c02246{left:625.410000px;}
.xb_c02246{left:639.810000px;}
.xd_c02246{left:667.530000px;}
@media print{
.v3_c02246{vertical-align:-6.080000pt;}
.v0_c02246{vertical-align:0.000000pt;}
.v1_c02246{vertical-align:1.280000pt;}
.v4_c02246{vertical-align:67.200000pt;}
.v2_c02246{vertical-align:69.440000pt;}
.ls36_c02246{letter-spacing:-0.069472pt;}
.ls37_c02246{letter-spacing:-0.017568pt;}
.ls34_c02246{letter-spacing:-0.012800pt;}
.ls35_c02246{letter-spacing:-0.005856pt;}
.ls33_c02246{letter-spacing:0.000000pt;}
.ls2d_c02246{letter-spacing:0.005856pt;}
.ls2a_c02246{letter-spacing:0.011712pt;}
.ls2_c02246{letter-spacing:0.023424pt;}
.ls0_c02246{letter-spacing:0.025600pt;}
.ls4_c02246{letter-spacing:0.029280pt;}
.ls22_c02246{letter-spacing:0.035136pt;}
.ls38_c02246{letter-spacing:0.040992pt;}
.ls2f_c02246{letter-spacing:0.046848pt;}
.ls1b_c02246{letter-spacing:0.052704pt;}
.lse_c02246{letter-spacing:0.058560pt;}
.ls26_c02246{letter-spacing:0.064416pt;}
.ls3_c02246{letter-spacing:0.070272pt;}
.ls6_c02246{letter-spacing:0.081984pt;}
.ls16_c02246{letter-spacing:0.087840pt;}
.ls2e_c02246{letter-spacing:0.105408pt;}
.lsa_c02246{letter-spacing:0.122976pt;}
.ls5_c02246{letter-spacing:0.128256pt;}
.ls11_c02246{letter-spacing:0.134688pt;}
.ls24_c02246{letter-spacing:0.140544pt;}
.ls1_c02246{letter-spacing:0.146400pt;}
.ls18_c02246{letter-spacing:0.158112pt;}
.ls8_c02246{letter-spacing:0.160000pt;}
.ls25_c02246{letter-spacing:56.960000pt;}
.ls20_c02246{letter-spacing:58.880000pt;}
.ls19_c02246{letter-spacing:59.200000pt;}
.ls1a_c02246{letter-spacing:59.520000pt;}
.ls10_c02246{letter-spacing:88.000000pt;}
.ls12_c02246{letter-spacing:88.320000pt;}
.ls13_c02246{letter-spacing:88.640000pt;}
.ls21_c02246{letter-spacing:104.400000pt;}
.ls9_c02246{letter-spacing:117.440000pt;}
.lsb_c02246{letter-spacing:117.760000pt;}
.lsd_c02246{letter-spacing:118.080000pt;}
.ls2b_c02246{letter-spacing:118.400000pt;}
.lsc_c02246{letter-spacing:133.600000pt;}
.ls32_c02246{letter-spacing:147.520000pt;}
.ls1e_c02246{letter-spacing:162.960000pt;}
.ls14_c02246{letter-spacing:165.760000pt;}
.ls27_c02246{letter-spacing:182.080000pt;}
.ls28_c02246{letter-spacing:190.720000pt;}
.ls1d_c02246{letter-spacing:191.040000pt;}
.ls1f_c02246{letter-spacing:191.359467pt;}
.ls15_c02246{letter-spacing:208.320000pt;}
.ls17_c02246{letter-spacing:224.320000pt;}
.ls23_c02246{letter-spacing:239.040000pt;}
.ls1c_c02246{letter-spacing:250.240000pt;}
.ls30_c02246{letter-spacing:250.560000pt;}
.lsf_c02246{letter-spacing:263.680000pt;}
.ls7_c02246{letter-spacing:279.680000pt;}
.ls2c_c02246{letter-spacing:321.280000pt;}
.ls29_c02246{letter-spacing:368.640000pt;}
.ls31_c02246{letter-spacing:379.200000pt;}
.ws6_c02246{word-spacing:-14.798112pt;}
.ws0_c02246{word-spacing:-14.786400pt;}
.ws14_c02246{word-spacing:-14.780544pt;}
.ws7_c02246{word-spacing:-14.774688pt;}
.ws2_c02246{word-spacing:-14.762976pt;}
.ws1a_c02246{word-spacing:-14.745408pt;}
.wsc_c02246{word-spacing:-14.727840pt;}
.ws11_c02246{word-spacing:-14.721984pt;}
.ws15_c02246{word-spacing:-14.704416pt;}
.wsf_c02246{word-spacing:-14.692704pt;}
.ws1b_c02246{word-spacing:-14.686848pt;}
.ws13_c02246{word-spacing:-14.675136pt;}
.ws1_c02246{word-spacing:-14.669280pt;}
.ws1e_c02246{word-spacing:-14.663424pt;}
.ws1d_c02246{word-spacing:-14.634144pt;}
.ws1c_c02246{word-spacing:-14.622432pt;}
.ws2a_c02246{word-spacing:-0.310368pt;}
.ws21_c02246{word-spacing:-0.076800pt;}
.ws26_c02246{word-spacing:-0.048096pt;}
.ws20_c02246{word-spacing:0.000000pt;}
.ws23_c02246{word-spacing:0.011712pt;}
.ws2c_c02246{word-spacing:0.017568pt;}
.ws27_c02246{word-spacing:0.023424pt;}
.ws2b_c02246{word-spacing:0.040992pt;}
.ws28_c02246{word-spacing:0.046848pt;}
.ws22_c02246{word-spacing:0.058560pt;}
.ws29_c02246{word-spacing:0.070272pt;}
.ws24_c02246{word-spacing:0.081984pt;}
.ws25_c02246{word-spacing:0.087840pt;}
.ws16_c02246{word-spacing:57.857280pt;}
.ws12_c02246{word-spacing:59.767552pt;}
.wse_c02246{word-spacing:60.126560pt;}
.ws9_c02246{word-spacing:88.885664pt;}
.wsd_c02246{word-spacing:88.887552pt;}
.wsa_c02246{word-spacing:89.246560pt;}
.ws17_c02246{word-spacing:89.718240pt;}
.ws5_c02246{word-spacing:118.325664pt;}
.ws4_c02246{word-spacing:118.708096pt;}
.ws8_c02246{word-spacing:133.406560pt;}
.wsb_c02246{word-spacing:133.428096pt;}
.ws1f_c02246{word-spacing:162.526560pt;}
.ws3_c02246{word-spacing:162.548096pt;}
.ws19_c02246{word-spacing:191.850176pt;}
.ws10_c02246{word-spacing:191.988096pt;}
.ws18_c02246{word-spacing:192.240000pt;}
._0_c02246{margin-left:-1.020704pt;}
._4_c02246{width:61.122784pt;}
._3_c02246{width:92.880000pt;}
._2_c02246{width:108.262912pt;}
._6_c02246{width:118.503296pt;}
._5_c02246{width:147.688576pt;}
._1_c02246{width:150.683808pt;}
._7_c02246{width:206.275648pt;}
._a_c02246{width:431.987200pt;}
._9_c02246{width:543.476416pt;}
._8_c02246{width:591.251776pt;}
.fs3_c02246{font-size:48.000000pt;}
.fs2_c02246{font-size:53.440000pt;}
.fs1_c02246{font-size:58.560000pt;}
.fs0_c02246{font-size:64.000000pt;}
.y0_c02246{bottom:0.000000pt;}
.y4_c02246{bottom:50.987067pt;}
.y3_c02246{bottom:69.387067pt;}
.y3f_c02246{bottom:106.026667pt;}
.y3e_c02246{bottom:119.787067pt;}
.y3d_c02246{bottom:134.507067pt;}
.y3c_c02246{bottom:152.907067pt;}
.y3b_c02246{bottom:171.307067pt;}
.y3a_c02246{bottom:188.187200pt;}
.y39_c02246{bottom:205.387067pt;}
.y38_c02246{bottom:223.787067pt;}
.y37_c02246{bottom:242.187067pt;}
.y36_c02246{bottom:259.067067pt;}
.y35_c02246{bottom:275.947067pt;}
.y34_c02246{bottom:292.827067pt;}
.y33_c02246{bottom:309.627067pt;}
.y32_c02246{bottom:326.187200pt;}
.y31_c02246{bottom:341.867067pt;}
.y30_c02246{bottom:358.747200pt;}
.y2d_c02246{bottom:366.667200pt;}
.y2f_c02246{bottom:375.627067pt;}
.y2e_c02246{bottom:392.427067pt;}
.y2c_c02246{bottom:410.747067pt;}
.y2b_c02246{bottom:424.507467pt;}
.y2a_c02246{bottom:438.347067pt;}
.y29_c02246{bottom:454.587067pt;}
.y28_c02246{bottom:472.987067pt;}
.y27_c02246{bottom:489.867067pt;}
.y26_c02246{bottom:506.747067pt;}
.y25_c02246{bottom:525.467067pt;}
.y24_c02246{bottom:543.867067pt;}
.y23_c02246{bottom:560.667067pt;}
.y22_c02246{bottom:577.547067pt;}
.y21_c02246{bottom:594.427067pt;}
.y20_c02246{bottom:611.307067pt;}
.y1f_c02246{bottom:628.187067pt;}
.y1e_c02246{bottom:644.667067pt;}
.y1c_c02246{bottom:660.347067pt;}
.y1a_c02246{bottom:676.747067pt;}
.y1b_c02246{bottom:677.227067pt;}
.y1d_c02246{bottom:694.107067pt;}
.y19_c02246{bottom:712.347067pt;}
.y18_c02246{bottom:726.186667pt;}
.y17_c02246{bottom:740.187067pt;}
.y16_c02246{bottom:754.667067pt;}
.y15_c02246{bottom:773.067067pt;}
.y14_c02246{bottom:791.467067pt;}
.y13_c02246{bottom:808.347067pt;}
.y12_c02246{bottom:825.547067pt;}
.y11_c02246{bottom:843.947067pt;}
.y10_c02246{bottom:862.347067pt;}
.yf_c02246{bottom:879.227067pt;}
.ye_c02246{bottom:896.107067pt;}
.yd_c02246{bottom:912.907067pt;}
.yc_c02246{bottom:929.787067pt;}
.yb_c02246{bottom:946.347067pt;}
.y9_c02246{bottom:962.027067pt;}
.ya_c02246{bottom:977.627067pt;}
.y8_c02246{bottom:978.907067pt;}
.y5_c02246{bottom:986.827067pt;}
.y7_c02246{bottom:995.707067pt;}
.y6_c02246{bottom:1012.587067pt;}
.y2_c02246{bottom:1042.347067pt;}
.y1_c02246{bottom:1060.587067pt;}
.h6_c02246{height:42.117188pt;}
.h7_c02246{height:42.632812pt;}
.h4_c02246{height:47.464531pt;}
.h3_c02246{height:52.012031pt;}
.h2_c02246{height:56.156250pt;}
.h1_c02246{height:56.843750pt;}
.h5_c02246{height:57.756250pt;}
.ha_c02246{height:58.076250pt;}
.h9_c02246{height:119.212031pt;}
.h8_c02246{height:126.283750pt;}
.h0_c02246{height:1122.666667pt;}
.w1_c02246{width:793.333333pt;}
.w0_c02246{width:793.626667pt;}
.x0_c02246{left:0.000000pt;}
.x1_c02246{left:113.440000pt;}
.x3_c02246{left:120.560000pt;}
.xe_c02246{left:143.040000pt;}
.x5_c02246{left:219.760000pt;}
.x7_c02246{left:227.520000pt;}
.x6_c02246{left:236.880000pt;}
.xf_c02246{left:244.320000pt;}
.x10_c02246{left:251.600000pt;}
.x4_c02246{left:258.320000pt;}
.x9_c02246{left:371.120000pt;}
.x11_c02246{left:372.960000pt;}
.x2_c02246{left:384.880000pt;}
.x14_c02246{left:389.280000pt;}
.x15_c02246{left:402.320000pt;}
.x12_c02246{left:403.920000pt;}
.x8_c02246{left:413.520000pt;}
.xa_c02246{left:438.160000pt;}
.x16_c02246{left:532.320000pt;}
.xc_c02246{left:536.160000pt;}
.x17_c02246{left:551.040000pt;}
.x13_c02246{left:555.920000pt;}
.xb_c02246{left:568.720000pt;}
.xd_c02246{left:593.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9547b2147ab6131cc5b1e06.woff2')format("woff");}.ff1_c02247{font-family:ff1_c02247;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02247;src:url('chunks/assets/font_4b13c6cb03d1979e81b56c63.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;}
.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);}
.v7_c02247{vertical-align:-9.000000px;}
.v2_c02247{vertical-align:-3.960000px;}
.v3_c02247{vertical-align:-2.520000px;}
.v6_c02247{vertical-align:-1.080000px;}
.v0_c02247{vertical-align:0.000000px;}
.v1_c02247{vertical-align:1.440000px;}
.v4_c02247{vertical-align:2.520000px;}
.v5_c02247{vertical-align:3.960000px;}
.v8_c02247{vertical-align:18.720600px;}
.ls4a_c02247{letter-spacing:-0.222444px;}
.ls4d_c02247{letter-spacing:-0.216432px;}
.ls59_c02247{letter-spacing:-0.178200px;}
.ls55_c02247{letter-spacing:-0.118800px;}
.ls4c_c02247{letter-spacing:-0.108216px;}
.ls58_c02247{letter-spacing:-0.102600px;}
.ls56_c02247{letter-spacing:-0.086400px;}
.ls49_c02247{letter-spacing:-0.078156px;}
.ls4b_c02247{letter-spacing:-0.066132px;}
.ls47_c02247{letter-spacing:-0.032940px;}
.ls57_c02247{letter-spacing:-0.016200px;}
.ls46_c02247{letter-spacing:-0.014400px;}
.ls5a_c02247{letter-spacing:-0.009576px;}
.ls4e_c02247{letter-spacing:-0.006012px;}
.ls53_c02247{letter-spacing:-0.004788px;}
.ls45_c02247{letter-spacing:0.000000px;}
.ls3a_c02247{letter-spacing:0.005400px;}
.ls2a_c02247{letter-spacing:0.006012px;}
.ls39_c02247{letter-spacing:0.006588px;}
.ls27_c02247{letter-spacing:0.007200px;}
.ls3e_c02247{letter-spacing:0.010800px;}
.ls2c_c02247{letter-spacing:0.012636px;}
.ls24_c02247{letter-spacing:0.013176px;}
.ls28_c02247{letter-spacing:0.014400px;}
.ls3d_c02247{letter-spacing:0.016200px;}
.ls37_c02247{letter-spacing:0.019152px;}
.ls3c_c02247{letter-spacing:0.027000px;}
.ls38_c02247{letter-spacing:0.028728px;}
.ls0_c02247{letter-spacing:0.028800px;}
.ls31_c02247{letter-spacing:0.032400px;}
.ls30_c02247{letter-spacing:0.037800px;}
.ls1c_c02247{letter-spacing:0.039528px;}
.ls42_c02247{letter-spacing:0.043092px;}
.ls2f_c02247{letter-spacing:0.043200px;}
.ls48_c02247{letter-spacing:0.052704px;}
.ls16_c02247{letter-spacing:0.059292px;}
.lsb_c02247{letter-spacing:0.065880px;}
.ls2b_c02247{letter-spacing:0.066132px;}
.ls40_c02247{letter-spacing:0.067032px;}
.ls29_c02247{letter-spacing:0.072144px;}
.ls20_c02247{letter-spacing:0.072468px;}
.ls43_c02247{letter-spacing:0.076608px;}
.ls2_c02247{letter-spacing:0.079056px;}
.ls54_c02247{letter-spacing:0.081396px;}
.ls3f_c02247{letter-spacing:0.086184px;}
.ls3_c02247{letter-spacing:0.092232px;}
.ls3b_c02247{letter-spacing:0.095760px;}
.ls12_c02247{letter-spacing:0.098820px;}
.ls2e_c02247{letter-spacing:0.110124px;}
.ls41_c02247{letter-spacing:0.114912px;}
.ls44_c02247{letter-spacing:0.119700px;}
.ls35_c02247{letter-spacing:0.124488px;}
.ls36_c02247{letter-spacing:0.134064px;}
.ls8_c02247{letter-spacing:0.138348px;}
.ls4_c02247{letter-spacing:0.144288px;}
.lsa_c02247{letter-spacing:0.151524px;}
.ls1e_c02247{letter-spacing:0.158112px;}
.ls1_c02247{letter-spacing:0.164700px;}
.ls14_c02247{letter-spacing:0.177876px;}
.ls6_c02247{letter-spacing:0.180000px;}
.ls4f_c02247{letter-spacing:0.180360px;}
.ls50_c02247{letter-spacing:0.181944px;}
.ls33_c02247{letter-spacing:0.205884px;}
.ls1f_c02247{letter-spacing:64.080000px;}
.ls1a_c02247{letter-spacing:66.240000px;}
.ls15_c02247{letter-spacing:66.600000px;}
.lsd_c02247{letter-spacing:99.000000px;}
.lse_c02247{letter-spacing:99.360000px;}
.ls2d_c02247{letter-spacing:115.200000px;}
.ls1b_c02247{letter-spacing:117.450000px;}
.ls7_c02247{letter-spacing:132.120000px;}
.ls9_c02247{letter-spacing:132.480000px;}
.ls25_c02247{letter-spacing:133.200000px;}
.ls51_c02247{letter-spacing:146.701800px;}
.ls11_c02247{letter-spacing:150.300000px;}
.ls34_c02247{letter-spacing:155.698200px;}
.ls52_c02247{letter-spacing:157.951332px;}
.ls19_c02247{letter-spacing:183.330000px;}
.lsf_c02247{letter-spacing:186.480000px;}
.ls32_c02247{letter-spacing:200.430000px;}
.ls21_c02247{letter-spacing:204.840000px;}
.ls22_c02247{letter-spacing:214.560000px;}
.ls18_c02247{letter-spacing:214.920000px;}
.ls10_c02247{letter-spacing:234.360000px;}
.ls13_c02247{letter-spacing:252.360000px;}
.ls1d_c02247{letter-spacing:268.920000px;}
.ls17_c02247{letter-spacing:281.520000px;}
.lsc_c02247{letter-spacing:296.640000px;}
.ls5_c02247{letter-spacing:314.640000px;}
.ls26_c02247{letter-spacing:361.440000px;}
.ls23_c02247{letter-spacing:414.720000px;}
.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;}
}
.ws6_c02247{word-spacing:-16.647876px;}
.ws0_c02247{word-spacing:-16.634700px;}
.ws12_c02247{word-spacing:-16.628112px;}
.ws7_c02247{word-spacing:-16.621524px;}
.ws2_c02247{word-spacing:-16.608348px;}
.wsb_c02247{word-spacing:-16.568820px;}
.ws1_c02247{word-spacing:-16.562232px;}
.ws13_c02247{word-spacing:-16.542468px;}
.wse_c02247{word-spacing:-16.529292px;}
.ws11_c02247{word-spacing:-16.509528px;}
.ws17_c02247{word-spacing:-16.476588px;}
.ws1a_c02247{word-spacing:-0.349164px;}
.ws26_c02247{word-spacing:-0.296856px;}
.ws25_c02247{word-spacing:-0.272916px;}
.ws28_c02247{word-spacing:-0.225036px;}
.ws27_c02247{word-spacing:-0.215460px;}
.ws3a_c02247{word-spacing:-0.210672px;}
.ws33_c02247{word-spacing:-0.189000px;}
.ws2d_c02247{word-spacing:-0.186732px;}
.ws2a_c02247{word-spacing:-0.172368px;}
.ws2c_c02247{word-spacing:-0.119700px;}
.ws21_c02247{word-spacing:-0.115200px;}
.ws2b_c02247{word-spacing:-0.110124px;}
.ws24_c02247{word-spacing:-0.101088px;}
.ws19_c02247{word-spacing:-0.086400px;}
.ws1c_c02247{word-spacing:-0.054108px;}
.ws23_c02247{word-spacing:-0.014400px;}
.ws22_c02247{word-spacing:-0.007200px;}
.ws18_c02247{word-spacing:0.000000px;}
.ws1e_c02247{word-spacing:0.013176px;}
.ws1b_c02247{word-spacing:0.019764px;}
.ws1d_c02247{word-spacing:0.026352px;}
.ws1f_c02247{word-spacing:0.052704px;}
.ws20_c02247{word-spacing:0.079056px;}
.ws30_c02247{word-spacing:0.145800px;}
.ws2e_c02247{word-spacing:0.151200px;}
.ws31_c02247{word-spacing:0.162000px;}
.ws32_c02247{word-spacing:0.194400px;}
.ws2f_c02247{word-spacing:0.264600px;}
.ws34_c02247{word-spacing:0.280800px;}
.ws37_c02247{word-spacing:1.235304px;}
.ws39_c02247{word-spacing:1.273608px;}
.ws38_c02247{word-spacing:1.307124px;}
.ws35_c02247{word-spacing:5.941908px;}
.ws36_c02247{word-spacing:5.961060px;}
.ws14_c02247{word-spacing:65.089440px;}
.ws10_c02247{word-spacing:67.238496px;}
.wsd_c02247{word-spacing:67.642380px;}
.ws4_c02247{word-spacing:99.996372px;}
.wsc_c02247{word-spacing:99.998496px;}
.ws5_c02247{word-spacing:100.402380px;}
.ws16_c02247{word-spacing:100.729440px;}
.ws15_c02247{word-spacing:100.933020px;}
.wsa_c02247{word-spacing:133.546608px;}
.ws8_c02247{word-spacing:150.082380px;}
.ws3_c02247{word-spacing:150.106608px;}
.ws9_c02247{word-spacing:182.842380px;}
.ws29_c02247{word-spacing:199.578600px;}
.wsf_c02247{word-spacing:215.986608px;}
._1f_c02247{margin-left:-44.106048px;}
._1b_c02247{margin-left:-43.066152px;}
._21_c02247{margin-left:-41.961672px;}
._0_c02247{margin-left:-1.148292px;}
._17_c02247{width:1.080000px;}
._16_c02247{width:43.557336px;}
._10_c02247{width:50.937552px;}
._12_c02247{width:52.092864px;}
._d_c02247{width:60.693984px;}
._1a_c02247{width:62.168832px;}
._4_c02247{width:68.763132px;}
._14_c02247{width:70.329276px;}
._8_c02247{width:73.759320px;}
._13_c02247{width:76.105368px;}
._e_c02247{width:78.074352px;}
._7_c02247{width:80.941608px;}
._11_c02247{width:83.178072px;}
._1e_c02247{width:84.358512px;}
._1d_c02247{width:87.915600px;}
._f_c02247{width:89.575200px;}
._1c_c02247{width:91.200168px;}
._a_c02247{width:93.810960px;}
._3_c02247{width:104.490000px;}
._9_c02247{width:109.603980px;}
._20_c02247{width:112.727016px;}
._19_c02247{width:119.707668px;}
._2_c02247{width:121.795776px;}
._b_c02247{width:127.967832px;}
._5_c02247{width:133.316208px;}
._c_c02247{width:137.605284px;}
._18_c02247{width:146.700000px;}
._1_c02247{width:169.519284px;}
._15_c02247{width:200.105928px;}
._2d_c02247{width:203.036400px;}
._25_c02247{width:216.180000px;}
._6_c02247{width:232.060104px;}
._23_c02247{width:283.500000px;}
._24_c02247{width:303.170400px;}
._26_c02247{width:310.104000px;}
._28_c02247{width:324.775800px;}
._29_c02247{width:382.210200px;}
._2b_c02247{width:451.729800px;}
._2a_c02247{width:482.234400px;}
._27_c02247{width:483.924600px;}
._22_c02247{width:560.692800px;}
._2c_c02247{width:799.695000px;}
.fc0_c02247{color:rgb(0,0,0);}
.fs4_c02247{font-size:42.120000px;}
.fs5_c02247{font-size:47.880000px;}
.fs3_c02247{font-size:54.000000px;}
.fs2_c02247{font-size:60.120000px;}
.fs1_c02247{font-size:65.880000px;}
.fs0_c02247{font-size:72.000000px;}
.y0_c02247{bottom:0.000000px;}
.y4_c02247{bottom:57.360450px;}
.y3_c02247{bottom:78.060450px;}
.y45_c02247{bottom:120.540900px;}
.y44_c02247{bottom:136.110450px;}
.y43_c02247{bottom:151.590900px;}
.y42_c02247{bottom:167.160450px;}
.y41_c02247{bottom:182.640900px;}
.y40_c02247{bottom:198.210450px;}
.y3f_c02247{bottom:213.690900px;}
.y3e_c02247{bottom:229.260450px;}
.y3d_c02247{bottom:244.380099px;}
.y3c_c02247{bottom:258.240162px;}
.y3b_c02247{bottom:272.010450px;}
.y3a_c02247{bottom:293.070450px;}
.y39_c02247{bottom:313.590450px;}
.y38_c02247{bottom:335.820450px;}
.y37_c02247{bottom:351.390450px;}
.y36_c02247{bottom:371.820450px;}
.y35_c02247{bottom:392.340600px;}
.y34_c02247{bottom:412.770600px;}
.y33_c02247{bottom:433.290600px;}
.y30_c02247{bottom:451.020600px;}
.y32_c02247{bottom:451.290600px;}
.y31_c02247{bottom:468.750600px;}
.y2f_c02247{bottom:485.580450px;}
.y2e_c02247{bottom:503.850000px;}
.y2d_c02247{bottom:519.330450px;}
.y2c_c02247{bottom:534.900450px;}
.y2b_c02247{bottom:535.260000px;}
.y2a_c02247{bottom:553.890450px;}
.y29_c02247{bottom:554.250000px;}
.y28_c02247{bottom:572.880450px;}
.y27_c02247{bottom:573.240000px;}
.y26_c02247{bottom:591.780450px;}
.y25_c02247{bottom:592.230450px;}
.y24_c02247{bottom:610.770450px;}
.y23_c02247{bottom:611.130450px;}
.y22_c02247{bottom:630.120450px;}
.y21_c02247{bottom:648.750450px;}
.y20_c02247{bottom:649.110450px;}
.y1f_c02247{bottom:670.440450px;}
.y1e_c02247{bottom:689.070450px;}
.y1d_c02247{bottom:706.980450px;}
.y1c_c02247{bottom:727.500450px;}
.y1b_c02247{bottom:744.150450px;}
.y1a_c02247{bottom:765.390450px;}
.y19_c02247{bottom:785.910000px;}
.y18_c02247{bottom:801.390450px;}
.y17_c02247{bottom:816.960000px;}
.y16_c02247{bottom:832.440450px;}
.y15_c02247{bottom:849.000450px;}
.y14_c02247{bottom:869.700450px;}
.y13_c02247{bottom:890.400450px;}
.y12_c02247{bottom:909.390450px;}
.y11_c02247{bottom:928.740450px;}
.y10_c02247{bottom:949.440450px;}
.yf_c02247{bottom:970.140450px;}
.ye_c02247{bottom:989.130450px;}
.yd_c02247{bottom:1008.120450px;}
.yc_c02247{bottom:1027.020450px;}
.yb_c02247{bottom:1046.010450px;}
.ya_c02247{bottom:1064.640450px;}
.y9_c02247{bottom:1082.280450px;}
.y8_c02247{bottom:1101.270450px;}
.y5_c02247{bottom:1110.180450px;}
.y7_c02247{bottom:1120.170450px;}
.y6_c02247{bottom:1139.160450px;}
.y2_c02247{bottom:1172.640450px;}
.y1_c02247{bottom:1193.160450px;}
.ha_c02247{height:42.011895px;}
.hb_c02247{height:47.381836px;}
.h6_c02247{height:47.961914px;}
.h4_c02247{height:53.397598px;}
.h3_c02247{height:58.513535px;}
.h8_c02247{height:61.033535px;}
.h7_c02247{height:62.473535px;}
.h9_c02247{height:62.833535px;}
.h2_c02247{height:63.175781px;}
.h1_c02247{height:63.949219px;}
.h5_c02247{height:64.975781px;}
.hc_c02247{height:66.102436px;}
.h0_c02247{height:1263.000000px;}
.w1_c02247{width:892.500000px;}
.w0_c02247{width:892.830000px;}
.x0_c02247{left:0.000000px;}
.x1_c02247{left:127.620000px;}
.xe_c02247{left:134.550000px;}
.x3_c02247{left:135.630000px;}
.xb_c02247{left:143.280000px;}
.xa_c02247{left:160.920000px;}
.xc_c02247{left:165.060000px;}
.xd_c02247{left:221.310000px;}
.x5_c02247{left:255.510000px;}
.x4_c02247{left:290.610000px;}
.x6_c02247{left:292.680000px;}
.xf_c02247{left:380.700000px;}
.x10_c02247{left:403.380000px;}
.x8_c02247{left:428.940000px;}
.x2_c02247{left:432.990000px;}
.x7_c02247{left:465.210000px;}
.x9_c02247{left:472.320000px;}
@media print{
.v7_c02247{vertical-align:-8.000000pt;}
.v2_c02247{vertical-align:-3.520000pt;}
.v3_c02247{vertical-align:-2.240000pt;}
.v6_c02247{vertical-align:-0.960000pt;}
.v0_c02247{vertical-align:0.000000pt;}
.v1_c02247{vertical-align:1.280000pt;}
.v4_c02247{vertical-align:2.240000pt;}
.v5_c02247{vertical-align:3.520000pt;}
.v8_c02247{vertical-align:16.640533pt;}
.ls4a_c02247{letter-spacing:-0.197728pt;}
.ls4d_c02247{letter-spacing:-0.192384pt;}
.ls59_c02247{letter-spacing:-0.158400pt;}
.ls55_c02247{letter-spacing:-0.105600pt;}
.ls4c_c02247{letter-spacing:-0.096192pt;}
.ls58_c02247{letter-spacing:-0.091200pt;}
.ls56_c02247{letter-spacing:-0.076800pt;}
.ls49_c02247{letter-spacing:-0.069472pt;}
.ls4b_c02247{letter-spacing:-0.058784pt;}
.ls47_c02247{letter-spacing:-0.029280pt;}
.ls57_c02247{letter-spacing:-0.014400pt;}
.ls46_c02247{letter-spacing:-0.012800pt;}
.ls5a_c02247{letter-spacing:-0.008512pt;}
.ls4e_c02247{letter-spacing:-0.005344pt;}
.ls53_c02247{letter-spacing:-0.004256pt;}
.ls45_c02247{letter-spacing:0.000000pt;}
.ls3a_c02247{letter-spacing:0.004800pt;}
.ls2a_c02247{letter-spacing:0.005344pt;}
.ls39_c02247{letter-spacing:0.005856pt;}
.ls27_c02247{letter-spacing:0.006400pt;}
.ls3e_c02247{letter-spacing:0.009600pt;}
.ls2c_c02247{letter-spacing:0.011232pt;}
.ls24_c02247{letter-spacing:0.011712pt;}
.ls28_c02247{letter-spacing:0.012800pt;}
.ls3d_c02247{letter-spacing:0.014400pt;}
.ls37_c02247{letter-spacing:0.017024pt;}
.ls3c_c02247{letter-spacing:0.024000pt;}
.ls38_c02247{letter-spacing:0.025536pt;}
.ls0_c02247{letter-spacing:0.025600pt;}
.ls31_c02247{letter-spacing:0.028800pt;}
.ls30_c02247{letter-spacing:0.033600pt;}
.ls1c_c02247{letter-spacing:0.035136pt;}
.ls42_c02247{letter-spacing:0.038304pt;}
.ls2f_c02247{letter-spacing:0.038400pt;}
.ls48_c02247{letter-spacing:0.046848pt;}
.ls16_c02247{letter-spacing:0.052704pt;}
.lsb_c02247{letter-spacing:0.058560pt;}
.ls2b_c02247{letter-spacing:0.058784pt;}
.ls40_c02247{letter-spacing:0.059584pt;}
.ls29_c02247{letter-spacing:0.064128pt;}
.ls20_c02247{letter-spacing:0.064416pt;}
.ls43_c02247{letter-spacing:0.068096pt;}
.ls2_c02247{letter-spacing:0.070272pt;}
.ls54_c02247{letter-spacing:0.072352pt;}
.ls3f_c02247{letter-spacing:0.076608pt;}
.ls3_c02247{letter-spacing:0.081984pt;}
.ls3b_c02247{letter-spacing:0.085120pt;}
.ls12_c02247{letter-spacing:0.087840pt;}
.ls2e_c02247{letter-spacing:0.097888pt;}
.ls41_c02247{letter-spacing:0.102144pt;}
.ls44_c02247{letter-spacing:0.106400pt;}
.ls35_c02247{letter-spacing:0.110656pt;}
.ls36_c02247{letter-spacing:0.119168pt;}
.ls8_c02247{letter-spacing:0.122976pt;}
.ls4_c02247{letter-spacing:0.128256pt;}
.lsa_c02247{letter-spacing:0.134688pt;}
.ls1e_c02247{letter-spacing:0.140544pt;}
.ls1_c02247{letter-spacing:0.146400pt;}
.ls14_c02247{letter-spacing:0.158112pt;}
.ls6_c02247{letter-spacing:0.160000pt;}
.ls4f_c02247{letter-spacing:0.160320pt;}
.ls50_c02247{letter-spacing:0.161728pt;}
.ls33_c02247{letter-spacing:0.183008pt;}
.ls1f_c02247{letter-spacing:56.960000pt;}
.ls1a_c02247{letter-spacing:58.880000pt;}
.ls15_c02247{letter-spacing:59.200000pt;}
.lsd_c02247{letter-spacing:88.000000pt;}
.lse_c02247{letter-spacing:88.320000pt;}
.ls2d_c02247{letter-spacing:102.400000pt;}
.ls1b_c02247{letter-spacing:104.400000pt;}
.ls7_c02247{letter-spacing:117.440000pt;}
.ls9_c02247{letter-spacing:117.760000pt;}
.ls25_c02247{letter-spacing:118.400000pt;}
.ls51_c02247{letter-spacing:130.401600pt;}
.ls11_c02247{letter-spacing:133.600000pt;}
.ls34_c02247{letter-spacing:138.398400pt;}
.ls52_c02247{letter-spacing:140.401184pt;}
.ls19_c02247{letter-spacing:162.960000pt;}
.lsf_c02247{letter-spacing:165.760000pt;}
.ls32_c02247{letter-spacing:178.160000pt;}
.ls21_c02247{letter-spacing:182.080000pt;}
.ls22_c02247{letter-spacing:190.720000pt;}
.ls18_c02247{letter-spacing:191.040000pt;}
.ls10_c02247{letter-spacing:208.320000pt;}
.ls13_c02247{letter-spacing:224.320000pt;}
.ls1d_c02247{letter-spacing:239.040000pt;}
.ls17_c02247{letter-spacing:250.240000pt;}
.lsc_c02247{letter-spacing:263.680000pt;}
.ls5_c02247{letter-spacing:279.680000pt;}
.ls26_c02247{letter-spacing:321.280000pt;}
.ls23_c02247{letter-spacing:368.640000pt;}
.ws6_c02247{word-spacing:-14.798112pt;}
.ws0_c02247{word-spacing:-14.786400pt;}
.ws12_c02247{word-spacing:-14.780544pt;}
.ws7_c02247{word-spacing:-14.774688pt;}
.ws2_c02247{word-spacing:-14.762976pt;}
.wsb_c02247{word-spacing:-14.727840pt;}
.ws1_c02247{word-spacing:-14.721984pt;}
.ws13_c02247{word-spacing:-14.704416pt;}
.wse_c02247{word-spacing:-14.692704pt;}
.ws11_c02247{word-spacing:-14.675136pt;}
.ws17_c02247{word-spacing:-14.645856pt;}
.ws1a_c02247{word-spacing:-0.310368pt;}
.ws26_c02247{word-spacing:-0.263872pt;}
.ws25_c02247{word-spacing:-0.242592pt;}
.ws28_c02247{word-spacing:-0.200032pt;}
.ws27_c02247{word-spacing:-0.191520pt;}
.ws3a_c02247{word-spacing:-0.187264pt;}
.ws33_c02247{word-spacing:-0.168000pt;}
.ws2d_c02247{word-spacing:-0.165984pt;}
.ws2a_c02247{word-spacing:-0.153216pt;}
.ws2c_c02247{word-spacing:-0.106400pt;}
.ws21_c02247{word-spacing:-0.102400pt;}
.ws2b_c02247{word-spacing:-0.097888pt;}
.ws24_c02247{word-spacing:-0.089856pt;}
.ws19_c02247{word-spacing:-0.076800pt;}
.ws1c_c02247{word-spacing:-0.048096pt;}
.ws23_c02247{word-spacing:-0.012800pt;}
.ws22_c02247{word-spacing:-0.006400pt;}
.ws18_c02247{word-spacing:0.000000pt;}
.ws1e_c02247{word-spacing:0.011712pt;}
.ws1b_c02247{word-spacing:0.017568pt;}
.ws1d_c02247{word-spacing:0.023424pt;}
.ws1f_c02247{word-spacing:0.046848pt;}
.ws20_c02247{word-spacing:0.070272pt;}
.ws30_c02247{word-spacing:0.129600pt;}
.ws2e_c02247{word-spacing:0.134400pt;}
.ws31_c02247{word-spacing:0.144000pt;}
.ws32_c02247{word-spacing:0.172800pt;}
.ws2f_c02247{word-spacing:0.235200pt;}
.ws34_c02247{word-spacing:0.249600pt;}
.ws37_c02247{word-spacing:1.098048pt;}
.ws39_c02247{word-spacing:1.132096pt;}
.ws38_c02247{word-spacing:1.161888pt;}
.ws35_c02247{word-spacing:5.281696pt;}
.ws36_c02247{word-spacing:5.298720pt;}
.ws14_c02247{word-spacing:57.857280pt;}
.ws10_c02247{word-spacing:59.767552pt;}
.wsd_c02247{word-spacing:60.126560pt;}
.ws4_c02247{word-spacing:88.885664pt;}
.wsc_c02247{word-spacing:88.887552pt;}
.ws5_c02247{word-spacing:89.246560pt;}
.ws16_c02247{word-spacing:89.537280pt;}
.ws15_c02247{word-spacing:89.718240pt;}
.wsa_c02247{word-spacing:118.708096pt;}
.ws8_c02247{word-spacing:133.406560pt;}
.ws3_c02247{word-spacing:133.428096pt;}
.ws9_c02247{word-spacing:162.526560pt;}
.ws29_c02247{word-spacing:177.403200pt;}
.wsf_c02247{word-spacing:191.988096pt;}
._1f_c02247{margin-left:-39.205376pt;}
._1b_c02247{margin-left:-38.281024pt;}
._21_c02247{margin-left:-37.299264pt;}
._0_c02247{margin-left:-1.020704pt;}
._17_c02247{width:0.960000pt;}
._16_c02247{width:38.717632pt;}
._10_c02247{width:45.277824pt;}
._12_c02247{width:46.304768pt;}
._d_c02247{width:53.950208pt;}
._1a_c02247{width:55.261184pt;}
._4_c02247{width:61.122784pt;}
._14_c02247{width:62.514912pt;}
._8_c02247{width:65.563840pt;}
._13_c02247{width:67.649216pt;}
._e_c02247{width:69.399424pt;}
._7_c02247{width:71.948096pt;}
._11_c02247{width:73.936064pt;}
._1e_c02247{width:74.985344pt;}
._1d_c02247{width:78.147200pt;}
._f_c02247{width:79.622400pt;}
._1c_c02247{width:81.066816pt;}
._a_c02247{width:83.387520pt;}
._3_c02247{width:92.880000pt;}
._9_c02247{width:97.425760pt;}
._20_c02247{width:100.201792pt;}
._19_c02247{width:106.406816pt;}
._2_c02247{width:108.262912pt;}
._b_c02247{width:113.749184pt;}
._5_c02247{width:118.503296pt;}
._c_c02247{width:122.315808pt;}
._18_c02247{width:130.400000pt;}
._1_c02247{width:150.683808pt;}
._15_c02247{width:177.871936pt;}
._2d_c02247{width:180.476800pt;}
._25_c02247{width:192.160000pt;}
._6_c02247{width:206.275648pt;}
._23_c02247{width:252.000000pt;}
._24_c02247{width:269.484800pt;}
._26_c02247{width:275.648000pt;}
._28_c02247{width:288.689600pt;}
._29_c02247{width:339.742400pt;}
._2b_c02247{width:401.537600pt;}
._2a_c02247{width:428.652800pt;}
._27_c02247{width:430.155200pt;}
._22_c02247{width:498.393600pt;}
._2c_c02247{width:710.840000pt;}
.fs4_c02247{font-size:37.440000pt;}
.fs5_c02247{font-size:42.560000pt;}
.fs3_c02247{font-size:48.000000pt;}
.fs2_c02247{font-size:53.440000pt;}
.fs1_c02247{font-size:58.560000pt;}
.fs0_c02247{font-size:64.000000pt;}
.y0_c02247{bottom:0.000000pt;}
.y4_c02247{bottom:50.987067pt;}
.y3_c02247{bottom:69.387067pt;}
.y45_c02247{bottom:107.147467pt;}
.y44_c02247{bottom:120.987067pt;}
.y43_c02247{bottom:134.747467pt;}
.y42_c02247{bottom:148.587067pt;}
.y41_c02247{bottom:162.347467pt;}
.y40_c02247{bottom:176.187067pt;}
.y3f_c02247{bottom:189.947467pt;}
.y3e_c02247{bottom:203.787067pt;}
.y3d_c02247{bottom:217.226755pt;}
.y3c_c02247{bottom:229.546811pt;}
.y3b_c02247{bottom:241.787067pt;}
.y3a_c02247{bottom:260.507067pt;}
.y39_c02247{bottom:278.747067pt;}
.y38_c02247{bottom:298.507067pt;}
.y37_c02247{bottom:312.347067pt;}
.y36_c02247{bottom:330.507067pt;}
.y35_c02247{bottom:348.747200pt;}
.y34_c02247{bottom:366.907200pt;}
.y33_c02247{bottom:385.147200pt;}
.y30_c02247{bottom:400.907200pt;}
.y32_c02247{bottom:401.147200pt;}
.y31_c02247{bottom:416.667200pt;}
.y2f_c02247{bottom:431.627067pt;}
.y2e_c02247{bottom:447.866667pt;}
.y2d_c02247{bottom:461.627067pt;}
.y2c_c02247{bottom:475.467067pt;}
.y2b_c02247{bottom:475.786667pt;}
.y2a_c02247{bottom:492.347067pt;}
.y29_c02247{bottom:492.666667pt;}
.y28_c02247{bottom:509.227067pt;}
.y27_c02247{bottom:509.546667pt;}
.y26_c02247{bottom:526.027067pt;}
.y25_c02247{bottom:526.427067pt;}
.y24_c02247{bottom:542.907067pt;}
.y23_c02247{bottom:543.227067pt;}
.y22_c02247{bottom:560.107067pt;}
.y21_c02247{bottom:576.667067pt;}
.y20_c02247{bottom:576.987067pt;}
.y1f_c02247{bottom:595.947067pt;}
.y1e_c02247{bottom:612.507067pt;}
.y1d_c02247{bottom:628.427067pt;}
.y1c_c02247{bottom:646.667067pt;}
.y1b_c02247{bottom:661.467067pt;}
.y1a_c02247{bottom:680.347067pt;}
.y19_c02247{bottom:698.586667pt;}
.y18_c02247{bottom:712.347067pt;}
.y17_c02247{bottom:726.186667pt;}
.y16_c02247{bottom:739.947067pt;}
.y15_c02247{bottom:754.667067pt;}
.y14_c02247{bottom:773.067067pt;}
.y13_c02247{bottom:791.467067pt;}
.y12_c02247{bottom:808.347067pt;}
.y11_c02247{bottom:825.547067pt;}
.y10_c02247{bottom:843.947067pt;}
.yf_c02247{bottom:862.347067pt;}
.ye_c02247{bottom:879.227067pt;}
.yd_c02247{bottom:896.107067pt;}
.yc_c02247{bottom:912.907067pt;}
.yb_c02247{bottom:929.787067pt;}
.ya_c02247{bottom:946.347067pt;}
.y9_c02247{bottom:962.027067pt;}
.y8_c02247{bottom:978.907067pt;}
.y5_c02247{bottom:986.827067pt;}
.y7_c02247{bottom:995.707067pt;}
.y6_c02247{bottom:1012.587067pt;}
.y2_c02247{bottom:1042.347067pt;}
.y1_c02247{bottom:1060.587067pt;}
.ha_c02247{height:37.343906pt;}
.hb_c02247{height:42.117188pt;}
.h6_c02247{height:42.632812pt;}
.h4_c02247{height:47.464531pt;}
.h3_c02247{height:52.012031pt;}
.h8_c02247{height:54.252031pt;}
.h7_c02247{height:55.532031pt;}
.h9_c02247{height:55.852031pt;}
.h2_c02247{height:56.156250pt;}
.h1_c02247{height:56.843750pt;}
.h5_c02247{height:57.756250pt;}
.hc_c02247{height:58.757721pt;}
.h0_c02247{height:1122.666667pt;}
.w1_c02247{width:793.333333pt;}
.w0_c02247{width:793.626667pt;}
.x0_c02247{left:0.000000pt;}
.x1_c02247{left:113.440000pt;}
.xe_c02247{left:119.600000pt;}
.x3_c02247{left:120.560000pt;}
.xb_c02247{left:127.360000pt;}
.xa_c02247{left:143.040000pt;}
.xc_c02247{left:146.720000pt;}
.xd_c02247{left:196.720000pt;}
.x5_c02247{left:227.120000pt;}
.x4_c02247{left:258.320000pt;}
.x6_c02247{left:260.160000pt;}
.xf_c02247{left:338.400000pt;}
.x10_c02247{left:358.560000pt;}
.x8_c02247{left:381.280000pt;}
.x2_c02247{left:384.880000pt;}
.x7_c02247{left:413.520000pt;}
.x9_c02247{left:419.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_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_50f7862df7a3c0952e42358e.woff2')format("woff");}.ff1_c02248{font-family:ff1_c02248;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02248;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v3_c02248{vertical-align:-3.960000px;}
.v2_c02248{vertical-align:-2.520000px;}
.v1_c02248{vertical-align:-1.440000px;}
.v0_c02248{vertical-align:0.000000px;}
.v5_c02248{vertical-align:1.080000px;}
.v7_c02248{vertical-align:2.160000px;}
.v4_c02248{vertical-align:3.240000px;}
.v6_c02248{vertical-align:4.320000px;}
.ls22_c02248{letter-spacing:-0.086184px;}
.ls1e_c02248{letter-spacing:-0.043200px;}
.ls20_c02248{letter-spacing:-0.019152px;}
.ls28_c02248{letter-spacing:-0.014400px;}
.ls1f_c02248{letter-spacing:-0.010800px;}
.ls24_c02248{letter-spacing:-0.009576px;}
.ls25_c02248{letter-spacing:-0.004788px;}
.ls1c_c02248{letter-spacing:0.000000px;}
.ls26_c02248{letter-spacing:0.007200px;}
.ls1_c02248{letter-spacing:0.010800px;}
.ls4_c02248{letter-spacing:0.012636px;}
.ls17_c02248{letter-spacing:0.016200px;}
.ls12_c02248{letter-spacing:0.019152px;}
.ls29_c02248{letter-spacing:0.021600px;}
.ls3_c02248{letter-spacing:0.028728px;}
.ls0_c02248{letter-spacing:0.028800px;}
.ls5_c02248{letter-spacing:0.032400px;}
.lsb_c02248{letter-spacing:0.037800px;}
.ls2_c02248{letter-spacing:0.043092px;}
.lsa_c02248{letter-spacing:0.043200px;}
.ls18_c02248{letter-spacing:0.059292px;}
.ls13_c02248{letter-spacing:0.076608px;}
.ls8_c02248{letter-spacing:0.081396px;}
.ls15_c02248{letter-spacing:0.092232px;}
.ls16_c02248{letter-spacing:0.110124px;}
.ls10_c02248{letter-spacing:0.124488px;}
.ls11_c02248{letter-spacing:0.134064px;}
.ls1d_c02248{letter-spacing:0.151200px;}
.ls6_c02248{letter-spacing:0.158112px;}
.ls14_c02248{letter-spacing:0.162792px;}
.ls21_c02248{letter-spacing:0.167580px;}
.ls27_c02248{letter-spacing:0.177876px;}
.ls9_c02248{letter-spacing:0.181944px;}
.ls1b_c02248{letter-spacing:0.205884px;}
.ls19_c02248{letter-spacing:111.240000px;}
.ls2a_c02248{letter-spacing:142.738200px;}
.lsf_c02248{letter-spacing:156.778200px;}
.lsd_c02248{letter-spacing:157.228344px;}
.ls1a_c02248{letter-spacing:159.390000px;}
.lsc_c02248{letter-spacing:162.270000px;}
.ls7_c02248{letter-spacing:162.720000px;}
.ls23_c02248{letter-spacing:194.221800px;}
.lse_c02248{letter-spacing:200.791656px;}
.sc__c02248{text-shadow:none;}
.sc0_c02248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02248{-webkit-text-stroke:0px transparent;}
.sc0_c02248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02248{word-spacing:-16.628112px;}
.ws15_c02248{word-spacing:-0.296856px;}
.ws7_c02248{word-spacing:-0.272916px;}
.wsf_c02248{word-spacing:-0.253764px;}
.wsa_c02248{word-spacing:-0.225036px;}
.ws9_c02248{word-spacing:-0.215460px;}
.ws13_c02248{word-spacing:-0.201600px;}
.wsb_c02248{word-spacing:-0.172368px;}
.wsd_c02248{word-spacing:-0.119700px;}
.wsc_c02248{word-spacing:-0.110124px;}
.ws6_c02248{word-spacing:-0.101088px;}
.ws4_c02248{word-spacing:-0.086400px;}
.ws8_c02248{word-spacing:-0.081396px;}
.ws5_c02248{word-spacing:-0.072000px;}
.wse_c02248{word-spacing:-0.007200px;}
.ws3_c02248{word-spacing:0.000000px;}
.ws12_c02248{word-spacing:0.014400px;}
.ws14_c02248{word-spacing:0.032940px;}
.ws10_c02248{word-spacing:78.624000px;}
.ws2_c02248{word-spacing:84.169440px;}
.ws1_c02248{word-spacing:114.769440px;}
.ws11_c02248{word-spacing:129.762000px;}
._24_c02248{margin-left:-54.500580px;}
._1b_c02248{width:42.487200px;}
._1a_c02248{width:43.563312px;}
._c_c02248{width:50.937552px;}
._1e_c02248{width:51.941592px;}
._10_c02248{width:60.973200px;}
._2c_c02248{width:63.097200px;}
._d_c02248{width:66.055140px;}
._8_c02248{width:72.244440px;}
._14_c02248{width:73.620000px;}
._13_c02248{width:75.420000px;}
._9_c02248{width:77.310180px;}
._f_c02248{width:78.626448px;}
._18_c02248{width:81.547668px;}
._28_c02248{width:83.495016px;}
._e_c02248{width:84.844296px;}
._a_c02248{width:87.278400px;}
._2_c02248{width:88.740000px;}
._1_c02248{width:90.594000px;}
._2a_c02248{width:94.066920px;}
._1d_c02248{width:98.715600px;}
._21_c02248{width:99.874296px;}
._b_c02248{width:100.958400px;}
._1c_c02248{width:102.000168px;}
._11_c02248{width:104.544000px;}
._23_c02248{width:105.988896px;}
._29_c02248{width:108.799560px;}
._3_c02248{width:110.700000px;}
._0_c02248{width:112.701600px;}
._19_c02248{width:114.946920px;}
._15_c02248{width:118.442160px;}
._4_c02248{width:120.538944px;}
._1f_c02248{width:123.527016px;}
._7_c02248{width:126.707688px;}
._12_c02248{width:129.384000px;}
._25_c02248{width:130.801824px;}
._2d_c02248{width:132.177780px;}
._5_c02248{width:135.096120px;}
._22_c02248{width:136.866384px;}
._26_c02248{width:141.827688px;}
._6_c02248{width:160.075404px;}
._27_c02248{width:166.824000px;}
._20_c02248{width:192.071016px;}
._17_c02248{width:194.220000px;}
._16_c02248{width:199.946448px;}
._2b_c02248{width:230.119560px;}
.fc0_c02248{color:rgb(0,0,0);}
.fs5_c02248{font-size:11.880000px;}
.fs3_c02248{font-size:42.120000px;}
.fs2_c02248{font-size:47.880000px;}
.fs1_c02248{font-size:54.000000px;}
.fs4_c02248{font-size:65.880000px;}
.fs0_c02248{font-size:72.000000px;}
.y0_c02248{bottom:0.000000px;}
.y4_c02248{bottom:57.360450px;}
.y3_c02248{bottom:78.060450px;}
.y59_c02248{bottom:126.390900px;}
.y58_c02248{bottom:141.960450px;}
.y57_c02248{bottom:157.440900px;}
.y56_c02248{bottom:173.010450px;}
.y55_c02248{bottom:188.220450px;}
.y54_c02248{bottom:188.670450px;}
.y53_c02248{bottom:208.290600px;}
.y52_c02248{bottom:226.560450px;}
.y51_c02248{bottom:243.660450px;}
.y50_c02248{bottom:263.010450px;}
.y4f_c02248{bottom:271.830450px;}
.y4e_c02248{bottom:272.190000px;}
.y4d_c02248{bottom:290.820450px;}
.y4c_c02248{bottom:291.180450px;}
.y4b_c02248{bottom:309.720450px;}
.y4a_c02248{bottom:310.080000px;}
.y49_c02248{bottom:328.710600px;}
.y48_c02248{bottom:329.070000px;}
.y47_c02248{bottom:347.700450px;}
.y46_c02248{bottom:348.060450px;}
.y45_c02248{bottom:367.680450px;}
.y44_c02248{bottom:386.040600px;}
.y43_c02248{bottom:403.410450px;}
.y42_c02248{bottom:424.200600px;}
.y41_c02248{bottom:432.930600px;}
.y40_c02248{bottom:433.380450px;}
.y3f_c02248{bottom:451.920450px;}
.y3e_c02248{bottom:452.280150px;}
.y3d_c02248{bottom:470.910450px;}
.y3c_c02248{bottom:471.270150px;}
.y3b_c02248{bottom:489.900450px;}
.y3a_c02248{bottom:490.260150px;}
.y39_c02248{bottom:508.890450px;}
.y38_c02248{bottom:509.250600px;}
.y37_c02248{bottom:528.240450px;}
.y36_c02248{bottom:547.140450px;}
.y35_c02248{bottom:567.750450px;}
.y34_c02248{bottom:588.540450px;}
.y33_c02248{bottom:597.360450px;}
.y32_c02248{bottom:597.720450px;}
.y31_c02248{bottom:616.710450px;}
.y30_c02248{bottom:617.340450px;}
.y2f_c02248{bottom:635.700450px;}
.y2e_c02248{bottom:653.070450px;}
.y2d_c02248{bottom:673.860450px;}
.y2c_c02248{bottom:682.590450px;}
.y2b_c02248{bottom:683.040450px;}
.y2a_c02248{bottom:701.580450px;}
.y29_c02248{bottom:701.940000px;}
.y28_c02248{bottom:720.570450px;}
.y27_c02248{bottom:720.930000px;}
.y26_c02248{bottom:739.560450px;}
.y25_c02248{bottom:739.920000px;}
.y24_c02248{bottom:758.550450px;}
.y23_c02248{bottom:758.910450px;}
.y22_c02248{bottom:777.900450px;}
.y21_c02248{bottom:796.440450px;}
.y20_c02248{bottom:796.800450px;}
.y1f_c02248{bottom:817.500450px;}
.y1e_c02248{bottom:836.130450px;}
.y1d_c02248{bottom:836.490900px;}
.y1c_c02248{bottom:856.830450px;}
.y1b_c02248{bottom:857.190900px;}
.y1a_c02248{bottom:877.530450px;}
.y19_c02248{bottom:877.890450px;}
.y18_c02248{bottom:899.310450px;}
.y17_c02248{bottom:917.580450px;}
.y16_c02248{bottom:934.950450px;}
.y15_c02248{bottom:955.740450px;}
.y14_c02248{bottom:964.560450px;}
.y13_c02248{bottom:964.920000px;}
.y12_c02248{bottom:983.460450px;}
.y11_c02248{bottom:983.910450px;}
.y10_c02248{bottom:1002.450450px;}
.yf_c02248{bottom:1002.810000px;}
.ye_c02248{bottom:1021.440450px;}
.yd_c02248{bottom:1021.800000px;}
.yc_c02248{bottom:1040.430450px;}
.yb_c02248{bottom:1040.790450px;}
.ya_c02248{bottom:1059.780450px;}
.y9_c02248{bottom:1080.120450px;}
.y8_c02248{bottom:1080.480450px;}
.y7_c02248{bottom:1101.810450px;}
.y6_c02248{bottom:1121.880450px;}
.y5_c02248{bottom:1139.250450px;}
.y2_c02248{bottom:1172.640450px;}
.y1_c02248{bottom:1193.160450px;}
.h9_c02248{height:10.551621px;}
.hf_c02248{height:47.381836px;}
.h3_c02248{height:47.961914px;}
.hc_c02248{height:48.461836px;}
.hd_c02248{height:58.513535px;}
.hb_c02248{height:61.033535px;}
.ha_c02248{height:61.753535px;}
.h5_c02248{height:62.473535px;}
.he_c02248{height:62.832935px;}
.h7_c02248{height:62.833535px;}
.h8_c02248{height:62.834135px;}
.h2_c02248{height:63.175781px;}
.h1_c02248{height:63.949219px;}
.h4_c02248{height:64.975781px;}
.h6_c02248{height:67.495781px;}
.h0_c02248{height:1263.000000px;}
.w1_c02248{width:892.500000px;}
.w0_c02248{width:892.830000px;}
.x0_c02248{left:0.000000px;}
.x1_c02248{left:127.620000px;}
.x3_c02248{left:135.630000px;}
.x9_c02248{left:141.120000px;}
.x4_c02248{left:143.730000px;}
.x5_c02248{left:164.700000px;}
.xa_c02248{left:219.960000px;}
.x6_c02248{left:232.830000px;}
.x2_c02248{left:432.990000px;}
.x7_c02248{left:531.720450px;}
.x8_c02248{left:717.930000px;}
@media print{
.v3_c02248{vertical-align:-3.520000pt;}
.v2_c02248{vertical-align:-2.240000pt;}
.v1_c02248{vertical-align:-1.280000pt;}
.v0_c02248{vertical-align:0.000000pt;}
.v5_c02248{vertical-align:0.960000pt;}
.v7_c02248{vertical-align:1.920000pt;}
.v4_c02248{vertical-align:2.880000pt;}
.v6_c02248{vertical-align:3.840000pt;}
.ls22_c02248{letter-spacing:-0.076608pt;}
.ls1e_c02248{letter-spacing:-0.038400pt;}
.ls20_c02248{letter-spacing:-0.017024pt;}
.ls28_c02248{letter-spacing:-0.012800pt;}
.ls1f_c02248{letter-spacing:-0.009600pt;}
.ls24_c02248{letter-spacing:-0.008512pt;}
.ls25_c02248{letter-spacing:-0.004256pt;}
.ls1c_c02248{letter-spacing:0.000000pt;}
.ls26_c02248{letter-spacing:0.006400pt;}
.ls1_c02248{letter-spacing:0.009600pt;}
.ls4_c02248{letter-spacing:0.011232pt;}
.ls17_c02248{letter-spacing:0.014400pt;}
.ls12_c02248{letter-spacing:0.017024pt;}
.ls29_c02248{letter-spacing:0.019200pt;}
.ls3_c02248{letter-spacing:0.025536pt;}
.ls0_c02248{letter-spacing:0.025600pt;}
.ls5_c02248{letter-spacing:0.028800pt;}
.lsb_c02248{letter-spacing:0.033600pt;}
.ls2_c02248{letter-spacing:0.038304pt;}
.lsa_c02248{letter-spacing:0.038400pt;}
.ls18_c02248{letter-spacing:0.052704pt;}
.ls13_c02248{letter-spacing:0.068096pt;}
.ls8_c02248{letter-spacing:0.072352pt;}
.ls15_c02248{letter-spacing:0.081984pt;}
.ls16_c02248{letter-spacing:0.097888pt;}
.ls10_c02248{letter-spacing:0.110656pt;}
.ls11_c02248{letter-spacing:0.119168pt;}
.ls1d_c02248{letter-spacing:0.134400pt;}
.ls6_c02248{letter-spacing:0.140544pt;}
.ls14_c02248{letter-spacing:0.144704pt;}
.ls21_c02248{letter-spacing:0.148960pt;}
.ls27_c02248{letter-spacing:0.158112pt;}
.ls9_c02248{letter-spacing:0.161728pt;}
.ls1b_c02248{letter-spacing:0.183008pt;}
.ls19_c02248{letter-spacing:98.880000pt;}
.ls2a_c02248{letter-spacing:126.878400pt;}
.lsf_c02248{letter-spacing:139.358400pt;}
.lsd_c02248{letter-spacing:139.758528pt;}
.ls1a_c02248{letter-spacing:141.680000pt;}
.lsc_c02248{letter-spacing:144.240000pt;}
.ls7_c02248{letter-spacing:144.640000pt;}
.ls23_c02248{letter-spacing:172.641600pt;}
.lse_c02248{letter-spacing:178.481472pt;}
.ws0_c02248{word-spacing:-14.780544pt;}
.ws15_c02248{word-spacing:-0.263872pt;}
.ws7_c02248{word-spacing:-0.242592pt;}
.wsf_c02248{word-spacing:-0.225568pt;}
.wsa_c02248{word-spacing:-0.200032pt;}
.ws9_c02248{word-spacing:-0.191520pt;}
.ws13_c02248{word-spacing:-0.179200pt;}
.wsb_c02248{word-spacing:-0.153216pt;}
.wsd_c02248{word-spacing:-0.106400pt;}
.wsc_c02248{word-spacing:-0.097888pt;}
.ws6_c02248{word-spacing:-0.089856pt;}
.ws4_c02248{word-spacing:-0.076800pt;}
.ws8_c02248{word-spacing:-0.072352pt;}
.ws5_c02248{word-spacing:-0.064000pt;}
.wse_c02248{word-spacing:-0.006400pt;}
.ws3_c02248{word-spacing:0.000000pt;}
.ws12_c02248{word-spacing:0.012800pt;}
.ws14_c02248{word-spacing:0.029280pt;}
.ws10_c02248{word-spacing:69.888000pt;}
.ws2_c02248{word-spacing:74.817280pt;}
.ws1_c02248{word-spacing:102.017280pt;}
.ws11_c02248{word-spacing:115.344000pt;}
._24_c02248{margin-left:-48.444960pt;}
._1b_c02248{width:37.766400pt;}
._1a_c02248{width:38.722944pt;}
._c_c02248{width:45.277824pt;}
._1e_c02248{width:46.170304pt;}
._10_c02248{width:54.198400pt;}
._2c_c02248{width:56.086400pt;}
._d_c02248{width:58.715680pt;}
._8_c02248{width:64.217280pt;}
._14_c02248{width:65.440000pt;}
._13_c02248{width:67.040000pt;}
._9_c02248{width:68.720160pt;}
._f_c02248{width:69.890176pt;}
._18_c02248{width:72.486816pt;}
._28_c02248{width:74.217792pt;}
._e_c02248{width:75.417152pt;}
._a_c02248{width:77.580800pt;}
._2_c02248{width:78.880000pt;}
._1_c02248{width:80.528000pt;}
._2a_c02248{width:83.615040pt;}
._1d_c02248{width:87.747200pt;}
._21_c02248{width:88.777152pt;}
._b_c02248{width:89.740800pt;}
._1c_c02248{width:90.666816pt;}
._11_c02248{width:92.928000pt;}
._23_c02248{width:94.212352pt;}
._29_c02248{width:96.710720pt;}
._3_c02248{width:98.400000pt;}
._0_c02248{width:100.179200pt;}
._19_c02248{width:102.175040pt;}
._15_c02248{width:105.281920pt;}
._4_c02248{width:107.145728pt;}
._1f_c02248{width:109.801792pt;}
._7_c02248{width:112.629056pt;}
._12_c02248{width:115.008000pt;}
._25_c02248{width:116.268288pt;}
._2d_c02248{width:117.491360pt;}
._5_c02248{width:120.085440pt;}
._22_c02248{width:121.659008pt;}
._26_c02248{width:126.069056pt;}
._6_c02248{width:142.289248pt;}
._27_c02248{width:148.288000pt;}
._20_c02248{width:170.729792pt;}
._17_c02248{width:172.640000pt;}
._16_c02248{width:177.730176pt;}
._2b_c02248{width:204.550720pt;}
.fs5_c02248{font-size:10.560000pt;}
.fs3_c02248{font-size:37.440000pt;}
.fs2_c02248{font-size:42.560000pt;}
.fs1_c02248{font-size:48.000000pt;}
.fs4_c02248{font-size:58.560000pt;}
.fs0_c02248{font-size:64.000000pt;}
.y0_c02248{bottom:0.000000pt;}
.y4_c02248{bottom:50.987067pt;}
.y3_c02248{bottom:69.387067pt;}
.y59_c02248{bottom:112.347467pt;}
.y58_c02248{bottom:126.187067pt;}
.y57_c02248{bottom:139.947467pt;}
.y56_c02248{bottom:153.787067pt;}
.y55_c02248{bottom:167.307067pt;}
.y54_c02248{bottom:167.707067pt;}
.y53_c02248{bottom:185.147200pt;}
.y52_c02248{bottom:201.387067pt;}
.y51_c02248{bottom:216.587067pt;}
.y50_c02248{bottom:233.787067pt;}
.y4f_c02248{bottom:241.627067pt;}
.y4e_c02248{bottom:241.946667pt;}
.y4d_c02248{bottom:258.507067pt;}
.y4c_c02248{bottom:258.827067pt;}
.y4b_c02248{bottom:275.307067pt;}
.y4a_c02248{bottom:275.626667pt;}
.y49_c02248{bottom:292.187200pt;}
.y48_c02248{bottom:292.506667pt;}
.y47_c02248{bottom:309.067067pt;}
.y46_c02248{bottom:309.387067pt;}
.y45_c02248{bottom:326.827067pt;}
.y44_c02248{bottom:343.147200pt;}
.y43_c02248{bottom:358.587067pt;}
.y42_c02248{bottom:377.067200pt;}
.y41_c02248{bottom:384.827200pt;}
.y40_c02248{bottom:385.227067pt;}
.y3f_c02248{bottom:401.707067pt;}
.y3e_c02248{bottom:402.026800pt;}
.y3d_c02248{bottom:418.587067pt;}
.y3c_c02248{bottom:418.906800pt;}
.y3b_c02248{bottom:435.467067pt;}
.y3a_c02248{bottom:435.786800pt;}
.y39_c02248{bottom:452.347067pt;}
.y38_c02248{bottom:452.667200pt;}
.y37_c02248{bottom:469.547067pt;}
.y36_c02248{bottom:486.347067pt;}
.y35_c02248{bottom:504.667067pt;}
.y34_c02248{bottom:523.147067pt;}
.y33_c02248{bottom:530.987067pt;}
.y32_c02248{bottom:531.307067pt;}
.y31_c02248{bottom:548.187067pt;}
.y30_c02248{bottom:548.747067pt;}
.y2f_c02248{bottom:565.067067pt;}
.y2e_c02248{bottom:580.507067pt;}
.y2d_c02248{bottom:598.987067pt;}
.y2c_c02248{bottom:606.747067pt;}
.y2b_c02248{bottom:607.147067pt;}
.y2a_c02248{bottom:623.627067pt;}
.y29_c02248{bottom:623.946667pt;}
.y28_c02248{bottom:640.507067pt;}
.y27_c02248{bottom:640.826667pt;}
.y26_c02248{bottom:657.387067pt;}
.y25_c02248{bottom:657.706667pt;}
.y24_c02248{bottom:674.267067pt;}
.y23_c02248{bottom:674.587067pt;}
.y22_c02248{bottom:691.467067pt;}
.y21_c02248{bottom:707.947067pt;}
.y20_c02248{bottom:708.267067pt;}
.y1f_c02248{bottom:726.667067pt;}
.y1e_c02248{bottom:743.227067pt;}
.y1d_c02248{bottom:743.547467pt;}
.y1c_c02248{bottom:761.627067pt;}
.y1b_c02248{bottom:761.947467pt;}
.y1a_c02248{bottom:780.027067pt;}
.y19_c02248{bottom:780.347067pt;}
.y18_c02248{bottom:799.387067pt;}
.y17_c02248{bottom:815.627067pt;}
.y16_c02248{bottom:831.067067pt;}
.y15_c02248{bottom:849.547067pt;}
.y14_c02248{bottom:857.387067pt;}
.y13_c02248{bottom:857.706667pt;}
.y12_c02248{bottom:874.187067pt;}
.y11_c02248{bottom:874.587067pt;}
.y10_c02248{bottom:891.067067pt;}
.yf_c02248{bottom:891.386667pt;}
.ye_c02248{bottom:907.947067pt;}
.yd_c02248{bottom:908.266667pt;}
.yc_c02248{bottom:924.827067pt;}
.yb_c02248{bottom:925.147067pt;}
.ya_c02248{bottom:942.027067pt;}
.y9_c02248{bottom:960.107067pt;}
.y8_c02248{bottom:960.427067pt;}
.y7_c02248{bottom:979.387067pt;}
.y6_c02248{bottom:997.227067pt;}
.y5_c02248{bottom:1012.667067pt;}
.y2_c02248{bottom:1042.347067pt;}
.y1_c02248{bottom:1060.587067pt;}
.h9_c02248{height:9.379219pt;}
.hf_c02248{height:42.117188pt;}
.h3_c02248{height:42.632812pt;}
.hc_c02248{height:43.077187pt;}
.hd_c02248{height:52.012031pt;}
.hb_c02248{height:54.252031pt;}
.ha_c02248{height:54.892031pt;}
.h5_c02248{height:55.532031pt;}
.he_c02248{height:55.851498pt;}
.h7_c02248{height:55.852031pt;}
.h8_c02248{height:55.852565pt;}
.h2_c02248{height:56.156250pt;}
.h1_c02248{height:56.843750pt;}
.h4_c02248{height:57.756250pt;}
.h6_c02248{height:59.996250pt;}
.h0_c02248{height:1122.666667pt;}
.w1_c02248{width:793.333333pt;}
.w0_c02248{width:793.626667pt;}
.x0_c02248{left:0.000000pt;}
.x1_c02248{left:113.440000pt;}
.x3_c02248{left:120.560000pt;}
.x9_c02248{left:125.440000pt;}
.x4_c02248{left:127.760000pt;}
.x5_c02248{left:146.400000pt;}
.xa_c02248{left:195.520000pt;}
.x6_c02248{left:206.960000pt;}
.x2_c02248{left:384.880000pt;}
.x7_c02248{left:472.640400pt;}
.x8_c02248{left:638.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_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_ac4a945fc2912771513a2a61.woff2')format("woff");}.ff1_c02249{font-family:ff1_c02249;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02249;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v9_c02249{vertical-align:-7.198200px;}
.v3_c02249{vertical-align:-4.320000px;}
.v2_c02249{vertical-align:-2.880000px;}
.v1_c02249{vertical-align:-1.440000px;}
.v0_c02249{vertical-align:0.000000px;}
.v6_c02249{vertical-align:1.080000px;}
.v4_c02249{vertical-align:2.880000px;}
.v5_c02249{vertical-align:4.320000px;}
.v7_c02249{vertical-align:5.400000px;}
.v8_c02249{vertical-align:9.720000px;}
.ls38_c02249{letter-spacing:-0.178200px;}
.ls33_c02249{letter-spacing:-0.086184px;}
.ls37_c02249{letter-spacing:-0.046332px;}
.ls2f_c02249{letter-spacing:-0.043200px;}
.ls31_c02249{letter-spacing:-0.019152px;}
.ls30_c02249{letter-spacing:-0.010800px;}
.ls36_c02249{letter-spacing:-0.007200px;}
.ls39_c02249{letter-spacing:-0.004788px;}
.ls2d_c02249{letter-spacing:0.000000px;}
.ls19_c02249{letter-spacing:0.007200px;}
.ls2_c02249{letter-spacing:0.010800px;}
.ls5_c02249{letter-spacing:0.012636px;}
.ls10_c02249{letter-spacing:0.014400px;}
.ls1b_c02249{letter-spacing:0.018036px;}
.ls14_c02249{letter-spacing:0.019152px;}
.ls4_c02249{letter-spacing:0.028728px;}
.ls0_c02249{letter-spacing:0.028800px;}
.ls6_c02249{letter-spacing:0.032400px;}
.lsc_c02249{letter-spacing:0.037800px;}
.ls3_c02249{letter-spacing:0.043092px;}
.lsb_c02249{letter-spacing:0.043200px;}
.ls20_c02249{letter-spacing:0.046116px;}
.ls15_c02249{letter-spacing:0.052668px;}
.ls1c_c02249{letter-spacing:0.059292px;}
.ls24_c02249{letter-spacing:0.065880px;}
.ls22_c02249{letter-spacing:0.072468px;}
.ls9_c02249{letter-spacing:0.076608px;}
.ls27_c02249{letter-spacing:0.079056px;}
.ls3a_c02249{letter-spacing:0.081396px;}
.ls1_c02249{letter-spacing:0.085644px;}
.ls29_c02249{letter-spacing:0.092232px;}
.ls28_c02249{letter-spacing:0.098820px;}
.ls21_c02249{letter-spacing:0.105408px;}
.ls17_c02249{letter-spacing:0.114912px;}
.ls11_c02249{letter-spacing:0.124488px;}
.ls13_c02249{letter-spacing:0.134064px;}
.ls1d_c02249{letter-spacing:0.138348px;}
.ls18_c02249{letter-spacing:0.138852px;}
.ls2e_c02249{letter-spacing:0.151200px;}
.ls7_c02249{letter-spacing:0.158112px;}
.lsf_c02249{letter-spacing:0.162792px;}
.ls32_c02249{letter-spacing:0.167580px;}
.ls3b_c02249{letter-spacing:0.177876px;}
.lsa_c02249{letter-spacing:0.181944px;}
.ls8_c02249{letter-spacing:112.680000px;}
.ls34_c02249{letter-spacing:144.180000px;}
.ls26_c02249{letter-spacing:149.400000px;}
.lse_c02249{letter-spacing:156.421800px;}
.ls35_c02249{letter-spacing:158.310432px;}
.ls16_c02249{letter-spacing:159.030000px;}
.ls1e_c02249{letter-spacing:182.520000px;}
.ls12_c02249{letter-spacing:199.350000px;}
.lsd_c02249{letter-spacing:213.390000px;}
.ls1a_c02249{letter-spacing:465.210000px;}
.ls2c_c02249{letter-spacing:1202.040000px;}
.ls25_c02249{letter-spacing:1246.680000px;}
.ls23_c02249{letter-spacing:1303.200000px;}
.ls1f_c02249{letter-spacing:1328.400000px;}
.ls2b_c02249{letter-spacing:1334.160000px;}
.ls2a_c02249{letter-spacing:1512.000000px;}
.sc__c02249{text-shadow:none;}
.sc0_c02249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02249{-webkit-text-stroke:0px transparent;}
.sc0_c02249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02249{word-spacing:-16.628112px;}
.ws3_c02249{word-spacing:-16.608348px;}
.ws8_c02249{word-spacing:-0.272916px;}
.ws9_c02249{word-spacing:-0.253764px;}
.ws14_c02249{word-spacing:-0.229824px;}
.wse_c02249{word-spacing:-0.225036px;}
.wsd_c02249{word-spacing:-0.215460px;}
.ws12_c02249{word-spacing:-0.205884px;}
.wsf_c02249{word-spacing:-0.172368px;}
.wsa_c02249{word-spacing:-0.129600px;}
.ws11_c02249{word-spacing:-0.119700px;}
.ws15_c02249{word-spacing:-0.115200px;}
.ws10_c02249{word-spacing:-0.110124px;}
.ws7_c02249{word-spacing:-0.101088px;}
.ws5_c02249{word-spacing:-0.086400px;}
.wsc_c02249{word-spacing:-0.042120px;}
.ws19_c02249{word-spacing:-0.013176px;}
.ws16_c02249{word-spacing:-0.007200px;}
.ws1d_c02249{word-spacing:-0.006588px;}
.ws4_c02249{word-spacing:0.000000px;}
.ws6_c02249{word-spacing:0.006588px;}
.wsb_c02249{word-spacing:0.007200px;}
.ws1c_c02249{word-spacing:0.013176px;}
.ws1a_c02249{word-spacing:0.019764px;}
.ws1b_c02249{word-spacing:0.026352px;}
.ws17_c02249{word-spacing:0.032940px;}
.ws18_c02249{word-spacing:0.046116px;}
.ws1_c02249{word-spacing:83.809440px;}
.ws2_c02249{word-spacing:93.169440px;}
.ws13_c02249{word-spacing:156.378600px;}
._0_c02249{margin-left:-1.021140px;}
._15_c02249{width:41.759136px;}
._16_c02249{width:42.832800px;}
._c_c02249{width:50.937552px;}
._25_c02249{width:51.941592px;}
._10_c02249{width:62.053200px;}
._27_c02249{width:63.954000px;}
._1b_c02249{width:70.425108px;}
._9_c02249{width:72.244440px;}
._1c_c02249{width:73.385604px;}
._12_c02249{width:75.420000px;}
._a_c02249{width:76.950180px;}
._1f_c02249{width:81.146448px;}
._13_c02249{width:83.700000px;}
._1_c02249{width:87.861600px;}
._2_c02249{width:91.314000px;}
._4_c02249{width:92.340000px;}
._29_c02249{width:98.638200px;}
._b_c02249{width:99.655200px;}
._d_c02249{width:103.888440px;}
._20_c02249{width:104.940000px;}
._f_c02249{width:108.662400px;}
._28_c02249{width:110.264148px;}
._3_c02249{width:113.940000px;}
._1d_c02249{width:118.265220px;}
._5_c02249{width:120.538944px;}
._18_c02249{width:123.058944px;}
._19_c02249{width:124.296120px;}
._17_c02249{width:127.195056px;}
._11_c02249{width:128.887020px;}
._24_c02249{width:130.395600px;}
._23_c02249{width:133.680168px;}
._1e_c02249{width:136.055016px;}
._6_c02249{width:137.976120px;}
._8_c02249{width:142.547688px;}
._21_c02249{width:146.626920px;}
._1a_c02249{width:150.355404px;}
._e_c02249{width:153.804168px;}
._26_c02249{width:155.207016px;}
._7_c02249{width:159.355404px;}
._22_c02249{width:202.468248px;}
._14_c02249{width:230.363496px;}
._2a_c02249{width:563.272740px;}
._39_c02249{width:596.467548px;}
._2b_c02249{width:605.974032px;}
._3a_c02249{width:647.643132px;}
._31_c02249{width:671.254524px;}
._38_c02249{width:679.199652px;}
._34_c02249{width:752.827140px;}
._30_c02249{width:754.447788px;}
._37_c02249{width:782.585136px;}
._2e_c02249{width:803.818260px;}
._36_c02249{width:818.456796px;}
._35_c02249{width:919.371780px;}
._32_c02249{width:955.006272px;}
._2f_c02249{width:986.174100px;}
._33_c02249{width:1142.632512px;}
._2d_c02249{width:1162.699560px;}
._2c_c02249{width:1581.531660px;}
.fc0_c02249{color:rgb(0,0,0);}
.fs5_c02249{font-size:11.880000px;}
.fs4_c02249{font-size:42.120000px;}
.fs3_c02249{font-size:47.880000px;}
.fs2_c02249{font-size:54.000000px;}
.fs6_c02249{font-size:60.120000px;}
.fs1_c02249{font-size:65.880000px;}
.fs0_c02249{font-size:72.000000px;}
.y0_c02249{bottom:0.000000px;}
.y4_c02249{bottom:57.360450px;}
.y3_c02249{bottom:78.060450px;}
.y2c_c02249{bottom:121.890450px;}
.y2b_c02249{bottom:142.590450px;}
.y2a_c02249{bottom:163.290450px;}
.y47_c02249{bottom:185.250450px;}
.y46_c02249{bottom:204.150450px;}
.y45_c02249{bottom:223.140450px;}
.y44_c02249{bottom:242.130450px;}
.y43_c02249{bottom:261.120450px;}
.y42_c02249{bottom:280.110450px;}
.y41_c02249{bottom:299.010450px;}
.y40_c02249{bottom:318.000450px;}
.y3f_c02249{bottom:337.710600px;}
.y3e_c02249{bottom:356.700450px;}
.y3d_c02249{bottom:375.690450px;}
.y3c_c02249{bottom:394.680600px;}
.y3b_c02249{bottom:413.670450px;}
.y3a_c02249{bottom:432.660600px;}
.y39_c02249{bottom:452.370600px;}
.y38_c02249{bottom:471.270600px;}
.y37_c02249{bottom:490.260450px;}
.y36_c02249{bottom:509.250600px;}
.y35_c02249{bottom:528.240450px;}
.y34_c02249{bottom:547.230450px;}
.y33_c02249{bottom:566.940450px;}
.y32_c02249{bottom:585.930450px;}
.y31_c02249{bottom:604.920450px;}
.y30_c02249{bottom:623.460450px;}
.y2e_c02249{bottom:624.180450px;}
.y2f_c02249{bottom:640.740450px;}
.y2d_c02249{bottom:644.880450px;}
.y29_c02249{bottom:668.100450px;}
.y28_c02249{bottom:688.800450px;}
.y27_c02249{bottom:710.040450px;}
.y26_c02249{bottom:730.560000px;}
.y25_c02249{bottom:746.040450px;}
.y24_c02249{bottom:762.690450px;}
.y23_c02249{bottom:782.310450px;}
.y22_c02249{bottom:782.670000px;}
.y21_c02249{bottom:801.300450px;}
.y20_c02249{bottom:801.660450px;}
.y1f_c02249{bottom:821.280450px;}
.y1e_c02249{bottom:839.550450px;}
.y1d_c02249{bottom:856.920450px;}
.y1c_c02249{bottom:877.710450px;}
.y1b_c02249{bottom:886.530450px;}
.y1a_c02249{bottom:886.889550px;}
.y19_c02249{bottom:905.520450px;}
.y18_c02249{bottom:905.879550px;}
.y17_c02249{bottom:924.510450px;}
.y16_c02249{bottom:924.869550px;}
.y15_c02249{bottom:943.410450px;}
.y14_c02249{bottom:943.860900px;}
.y13_c02249{bottom:962.400450px;}
.y12_c02249{bottom:962.760900px;}
.y11_c02249{bottom:982.470450px;}
.y10_c02249{bottom:1001.640450px;}
.yf_c02249{bottom:1018.110450px;}
.ye_c02249{bottom:1038.900450px;}
.yd_c02249{bottom:1047.720450px;}
.yc_c02249{bottom:1048.080000px;}
.yb_c02249{bottom:1066.710450px;}
.ya_c02249{bottom:1067.070000px;}
.y9_c02249{bottom:1085.610450px;}
.y8_c02249{bottom:1086.060450px;}
.y7_c02249{bottom:1105.680450px;}
.y6_c02249{bottom:1123.950450px;}
.y5_c02249{bottom:1141.050450px;}
.y2_c02249{bottom:1172.640450px;}
.y1_c02249{bottom:1193.160450px;}
.h6_c02249{height:10.551621px;}
.h3_c02249{height:47.961914px;}
.h9_c02249{height:53.397598px;}
.h5_c02249{height:62.473535px;}
.h8_c02249{height:62.474135px;}
.h4_c02249{height:62.833535px;}
.h7_c02249{height:62.834135px;}
.h2_c02249{height:63.175781px;}
.h1_c02249{height:63.949219px;}
.h0_c02249{height:1263.000000px;}
.w1_c02249{width:892.500000px;}
.w0_c02249{width:892.830000px;}
.x0_c02249{left:0.000000px;}
.x1_c02249{left:127.620000px;}
.x3_c02249{left:135.630000px;}
.x4_c02249{left:143.820000px;}
.x5_c02249{left:164.880000px;}
.x6_c02249{left:220.500000px;}
.x8_c02249{left:236.250000px;}
.x7_c02249{left:259.650000px;}
.x2_c02249{left:432.990000px;}
.xa_c02249{left:710.460000px;}
.x9_c02249{left:715.680000px;}
@media print{
.v9_c02249{vertical-align:-6.398400pt;}
.v3_c02249{vertical-align:-3.840000pt;}
.v2_c02249{vertical-align:-2.560000pt;}
.v1_c02249{vertical-align:-1.280000pt;}
.v0_c02249{vertical-align:0.000000pt;}
.v6_c02249{vertical-align:0.960000pt;}
.v4_c02249{vertical-align:2.560000pt;}
.v5_c02249{vertical-align:3.840000pt;}
.v7_c02249{vertical-align:4.800000pt;}
.v8_c02249{vertical-align:8.640000pt;}
.ls38_c02249{letter-spacing:-0.158400pt;}
.ls33_c02249{letter-spacing:-0.076608pt;}
.ls37_c02249{letter-spacing:-0.041184pt;}
.ls2f_c02249{letter-spacing:-0.038400pt;}
.ls31_c02249{letter-spacing:-0.017024pt;}
.ls30_c02249{letter-spacing:-0.009600pt;}
.ls36_c02249{letter-spacing:-0.006400pt;}
.ls39_c02249{letter-spacing:-0.004256pt;}
.ls2d_c02249{letter-spacing:0.000000pt;}
.ls19_c02249{letter-spacing:0.006400pt;}
.ls2_c02249{letter-spacing:0.009600pt;}
.ls5_c02249{letter-spacing:0.011232pt;}
.ls10_c02249{letter-spacing:0.012800pt;}
.ls1b_c02249{letter-spacing:0.016032pt;}
.ls14_c02249{letter-spacing:0.017024pt;}
.ls4_c02249{letter-spacing:0.025536pt;}
.ls0_c02249{letter-spacing:0.025600pt;}
.ls6_c02249{letter-spacing:0.028800pt;}
.lsc_c02249{letter-spacing:0.033600pt;}
.ls3_c02249{letter-spacing:0.038304pt;}
.lsb_c02249{letter-spacing:0.038400pt;}
.ls20_c02249{letter-spacing:0.040992pt;}
.ls15_c02249{letter-spacing:0.046816pt;}
.ls1c_c02249{letter-spacing:0.052704pt;}
.ls24_c02249{letter-spacing:0.058560pt;}
.ls22_c02249{letter-spacing:0.064416pt;}
.ls9_c02249{letter-spacing:0.068096pt;}
.ls27_c02249{letter-spacing:0.070272pt;}
.ls3a_c02249{letter-spacing:0.072352pt;}
.ls1_c02249{letter-spacing:0.076128pt;}
.ls29_c02249{letter-spacing:0.081984pt;}
.ls28_c02249{letter-spacing:0.087840pt;}
.ls21_c02249{letter-spacing:0.093696pt;}
.ls17_c02249{letter-spacing:0.102144pt;}
.ls11_c02249{letter-spacing:0.110656pt;}
.ls13_c02249{letter-spacing:0.119168pt;}
.ls1d_c02249{letter-spacing:0.122976pt;}
.ls18_c02249{letter-spacing:0.123424pt;}
.ls2e_c02249{letter-spacing:0.134400pt;}
.ls7_c02249{letter-spacing:0.140544pt;}
.lsf_c02249{letter-spacing:0.144704pt;}
.ls32_c02249{letter-spacing:0.148960pt;}
.ls3b_c02249{letter-spacing:0.158112pt;}
.lsa_c02249{letter-spacing:0.161728pt;}
.ls8_c02249{letter-spacing:100.160000pt;}
.ls34_c02249{letter-spacing:128.160000pt;}
.ls26_c02249{letter-spacing:132.800000pt;}
.lse_c02249{letter-spacing:139.041600pt;}
.ls35_c02249{letter-spacing:140.720384pt;}
.ls16_c02249{letter-spacing:141.360000pt;}
.ls1e_c02249{letter-spacing:162.240000pt;}
.ls12_c02249{letter-spacing:177.200000pt;}
.lsd_c02249{letter-spacing:189.680000pt;}
.ls1a_c02249{letter-spacing:413.520000pt;}
.ls2c_c02249{letter-spacing:1068.480000pt;}
.ls25_c02249{letter-spacing:1108.160000pt;}
.ls23_c02249{letter-spacing:1158.400000pt;}
.ls1f_c02249{letter-spacing:1180.800000pt;}
.ls2b_c02249{letter-spacing:1185.920000pt;}
.ls2a_c02249{letter-spacing:1344.000000pt;}
.ws0_c02249{word-spacing:-14.780544pt;}
.ws3_c02249{word-spacing:-14.762976pt;}
.ws8_c02249{word-spacing:-0.242592pt;}
.ws9_c02249{word-spacing:-0.225568pt;}
.ws14_c02249{word-spacing:-0.204288pt;}
.wse_c02249{word-spacing:-0.200032pt;}
.wsd_c02249{word-spacing:-0.191520pt;}
.ws12_c02249{word-spacing:-0.183008pt;}
.wsf_c02249{word-spacing:-0.153216pt;}
.wsa_c02249{word-spacing:-0.115200pt;}
.ws11_c02249{word-spacing:-0.106400pt;}
.ws15_c02249{word-spacing:-0.102400pt;}
.ws10_c02249{word-spacing:-0.097888pt;}
.ws7_c02249{word-spacing:-0.089856pt;}
.ws5_c02249{word-spacing:-0.076800pt;}
.wsc_c02249{word-spacing:-0.037440pt;}
.ws19_c02249{word-spacing:-0.011712pt;}
.ws16_c02249{word-spacing:-0.006400pt;}
.ws1d_c02249{word-spacing:-0.005856pt;}
.ws4_c02249{word-spacing:0.000000pt;}
.ws6_c02249{word-spacing:0.005856pt;}
.wsb_c02249{word-spacing:0.006400pt;}
.ws1c_c02249{word-spacing:0.011712pt;}
.ws1a_c02249{word-spacing:0.017568pt;}
.ws1b_c02249{word-spacing:0.023424pt;}
.ws17_c02249{word-spacing:0.029280pt;}
.ws18_c02249{word-spacing:0.040992pt;}
.ws1_c02249{word-spacing:74.497280pt;}
.ws2_c02249{word-spacing:82.817280pt;}
.ws13_c02249{word-spacing:139.003200pt;}
._0_c02249{margin-left:-0.907680pt;}
._15_c02249{width:37.119232pt;}
._16_c02249{width:38.073600pt;}
._c_c02249{width:45.277824pt;}
._25_c02249{width:46.170304pt;}
._10_c02249{width:55.158400pt;}
._27_c02249{width:56.848000pt;}
._1b_c02249{width:62.600096pt;}
._9_c02249{width:64.217280pt;}
._1c_c02249{width:65.231648pt;}
._12_c02249{width:67.040000pt;}
._a_c02249{width:68.400160pt;}
._1f_c02249{width:72.130176pt;}
._13_c02249{width:74.400000pt;}
._1_c02249{width:78.099200pt;}
._2_c02249{width:81.168000pt;}
._4_c02249{width:82.080000pt;}
._29_c02249{width:87.678400pt;}
._b_c02249{width:88.582400pt;}
._d_c02249{width:92.345280pt;}
._20_c02249{width:93.280000pt;}
._f_c02249{width:96.588800pt;}
._28_c02249{width:98.012576pt;}
._3_c02249{width:101.280000pt;}
._1d_c02249{width:105.124640pt;}
._5_c02249{width:107.145728pt;}
._18_c02249{width:109.385728pt;}
._19_c02249{width:110.485440pt;}
._17_c02249{width:113.062272pt;}
._11_c02249{width:114.566240pt;}
._24_c02249{width:115.907200pt;}
._23_c02249{width:118.826816pt;}
._1e_c02249{width:120.937792pt;}
._6_c02249{width:122.645440pt;}
._8_c02249{width:126.709056pt;}
._21_c02249{width:130.335040pt;}
._1a_c02249{width:133.649248pt;}
._e_c02249{width:136.714816pt;}
._26_c02249{width:137.961792pt;}
._7_c02249{width:141.649248pt;}
._22_c02249{width:179.971776pt;}
._14_c02249{width:204.767552pt;}
._2a_c02249{width:500.686880pt;}
._39_c02249{width:530.193376pt;}
._2b_c02249{width:538.643584pt;}
._3a_c02249{width:575.682784pt;}
._31_c02249{width:596.670688pt;}
._38_c02249{width:603.733024pt;}
._34_c02249{width:669.179680pt;}
._30_c02249{width:670.620256pt;}
._37_c02249{width:695.631232pt;}
._2e_c02249{width:714.505120pt;}
._36_c02249{width:727.517152pt;}
._35_c02249{width:817.219360pt;}
._32_c02249{width:848.894464pt;}
._2f_c02249{width:876.599200pt;}
._33_c02249{width:1015.673344pt;}
._2d_c02249{width:1033.510720pt;}
._2c_c02249{width:1405.805920pt;}
.fs5_c02249{font-size:10.560000pt;}
.fs4_c02249{font-size:37.440000pt;}
.fs3_c02249{font-size:42.560000pt;}
.fs2_c02249{font-size:48.000000pt;}
.fs6_c02249{font-size:53.440000pt;}
.fs1_c02249{font-size:58.560000pt;}
.fs0_c02249{font-size:64.000000pt;}
.y0_c02249{bottom:0.000000pt;}
.y4_c02249{bottom:50.987067pt;}
.y3_c02249{bottom:69.387067pt;}
.y2c_c02249{bottom:108.347067pt;}
.y2b_c02249{bottom:126.747067pt;}
.y2a_c02249{bottom:145.147067pt;}
.y47_c02249{bottom:164.667067pt;}
.y46_c02249{bottom:181.467067pt;}
.y45_c02249{bottom:198.347067pt;}
.y44_c02249{bottom:215.227067pt;}
.y43_c02249{bottom:232.107067pt;}
.y42_c02249{bottom:248.987067pt;}
.y41_c02249{bottom:265.787067pt;}
.y40_c02249{bottom:282.667067pt;}
.y3f_c02249{bottom:300.187200pt;}
.y3e_c02249{bottom:317.067067pt;}
.y3d_c02249{bottom:333.947067pt;}
.y3c_c02249{bottom:350.827200pt;}
.y3b_c02249{bottom:367.707067pt;}
.y3a_c02249{bottom:384.587200pt;}
.y39_c02249{bottom:402.107200pt;}
.y38_c02249{bottom:418.907200pt;}
.y37_c02249{bottom:435.787067pt;}
.y36_c02249{bottom:452.667200pt;}
.y35_c02249{bottom:469.547067pt;}
.y34_c02249{bottom:486.427067pt;}
.y33_c02249{bottom:503.947067pt;}
.y32_c02249{bottom:520.827067pt;}
.y31_c02249{bottom:537.707067pt;}
.y30_c02249{bottom:554.187067pt;}
.y2e_c02249{bottom:554.827067pt;}
.y2f_c02249{bottom:569.547067pt;}
.y2d_c02249{bottom:573.227067pt;}
.y29_c02249{bottom:593.867067pt;}
.y28_c02249{bottom:612.267067pt;}
.y27_c02249{bottom:631.147067pt;}
.y26_c02249{bottom:649.386667pt;}
.y25_c02249{bottom:663.147067pt;}
.y24_c02249{bottom:677.947067pt;}
.y23_c02249{bottom:695.387067pt;}
.y22_c02249{bottom:695.706667pt;}
.y21_c02249{bottom:712.267067pt;}
.y20_c02249{bottom:712.587067pt;}
.y1f_c02249{bottom:730.027067pt;}
.y1e_c02249{bottom:746.267067pt;}
.y1d_c02249{bottom:761.707067pt;}
.y1c_c02249{bottom:780.187067pt;}
.y1b_c02249{bottom:788.027067pt;}
.y1a_c02249{bottom:788.346267pt;}
.y19_c02249{bottom:804.907067pt;}
.y18_c02249{bottom:805.226267pt;}
.y17_c02249{bottom:821.787067pt;}
.y16_c02249{bottom:822.106267pt;}
.y15_c02249{bottom:838.587067pt;}
.y14_c02249{bottom:838.987467pt;}
.y13_c02249{bottom:855.467067pt;}
.y12_c02249{bottom:855.787467pt;}
.y11_c02249{bottom:873.307067pt;}
.y10_c02249{bottom:890.347067pt;}
.yf_c02249{bottom:904.987067pt;}
.ye_c02249{bottom:923.467067pt;}
.yd_c02249{bottom:931.307067pt;}
.yc_c02249{bottom:931.626667pt;}
.yb_c02249{bottom:948.187067pt;}
.ya_c02249{bottom:948.506667pt;}
.y9_c02249{bottom:964.987067pt;}
.y8_c02249{bottom:965.387067pt;}
.y7_c02249{bottom:982.827067pt;}
.y6_c02249{bottom:999.067067pt;}
.y5_c02249{bottom:1014.267067pt;}
.y2_c02249{bottom:1042.347067pt;}
.y1_c02249{bottom:1060.587067pt;}
.h6_c02249{height:9.379219pt;}
.h3_c02249{height:42.632812pt;}
.h9_c02249{height:47.464531pt;}
.h5_c02249{height:55.532031pt;}
.h8_c02249{height:55.532565pt;}
.h4_c02249{height:55.852031pt;}
.h7_c02249{height:55.852565pt;}
.h2_c02249{height:56.156250pt;}
.h1_c02249{height:56.843750pt;}
.h0_c02249{height:1122.666667pt;}
.w1_c02249{width:793.333333pt;}
.w0_c02249{width:793.626667pt;}
.x0_c02249{left:0.000000pt;}
.x1_c02249{left:113.440000pt;}
.x3_c02249{left:120.560000pt;}
.x4_c02249{left:127.840000pt;}
.x5_c02249{left:146.560000pt;}
.x6_c02249{left:196.000000pt;}
.x8_c02249{left:210.000000pt;}
.x7_c02249{left:230.800000pt;}
.x2_c02249{left:384.880000pt;}
.xa_c02249{left:631.520000pt;}
.x9_c02249{left:636.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_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_5eb5c89215737987b0ac10b3.woff2')format("woff");}.ff1_c02250{font-family:ff1_c02250;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02250;src:url('chunks/assets/font_eadb746c2ea3c423c9f67371.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02250{font-family:ff3_c02250;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_c02250;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02250{font-family:ff4_c02250;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;}
.m0_c02250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02250{vertical-align:-16.560000px;}
.v2_c02250{vertical-align:-11.160000px;}
.v3_c02250{vertical-align:-5.400000px;}
.v0_c02250{vertical-align:0.000000px;}
.ls24_c02250{letter-spacing:-0.125172px;}
.ls28_c02250{letter-spacing:-0.090180px;}
.ls22_c02250{letter-spacing:-0.050400px;}
.ls27_c02250{letter-spacing:-0.030060px;}
.ls21_c02250{letter-spacing:-0.028800px;}
.ls25_c02250{letter-spacing:-0.024048px;}
.ls1f_c02250{letter-spacing:-0.021600px;}
.ls1d_c02250{letter-spacing:0.000000px;}
.lsb_c02250{letter-spacing:0.006588px;}
.ls20_c02250{letter-spacing:0.007200px;}
.lsd_c02250{letter-spacing:0.009576px;}
.lsc_c02250{letter-spacing:0.013176px;}
.ls1_c02250{letter-spacing:0.014400px;}
.ls1e_c02250{letter-spacing:0.021600px;}
.ls16_c02250{letter-spacing:0.026352px;}
.ls0_c02250{letter-spacing:0.028800px;}
.ls7_c02250{letter-spacing:0.032940px;}
.ls2_c02250{letter-spacing:0.036000px;}
.lsf_c02250{letter-spacing:0.039528px;}
.ls3_c02250{letter-spacing:0.043200px;}
.lse_c02250{letter-spacing:0.046116px;}
.ls10_c02250{letter-spacing:0.048096px;}
.lsa_c02250{letter-spacing:0.052704px;}
.ls4_c02250{letter-spacing:0.057600px;}
.ls9_c02250{letter-spacing:0.059292px;}
.ls5_c02250{letter-spacing:0.065880px;}
.ls8_c02250{letter-spacing:0.079056px;}
.ls6_c02250{letter-spacing:0.085644px;}
.ls12_c02250{letter-spacing:0.090180px;}
.ls23_c02250{letter-spacing:0.177876px;}
.ls26_c02250{letter-spacing:0.180360px;}
.ls11_c02250{letter-spacing:80.369496px;}
.ls1c_c02250{letter-spacing:819.720000px;}
.ls15_c02250{letter-spacing:832.680000px;}
.ls14_c02250{letter-spacing:843.840000px;}
.ls18_c02250{letter-spacing:920.880000px;}
.ls1b_c02250{letter-spacing:1001.520000px;}
.ls19_c02250{letter-spacing:1023.480000px;}
.ls17_c02250{letter-spacing:1025.280000px;}
.ls1a_c02250{letter-spacing:1096.560000px;}
.ls13_c02250{letter-spacing:1208.520000px;}
.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;}
}
.ws2_c02250{word-spacing:-60.120000px;}
.ws0_c02250{word-spacing:-16.647876px;}
.ws3_c02250{word-spacing:-16.509528px;}
.ws1_c02250{word-spacing:-16.476588px;}
.ws21_c02250{word-spacing:-0.450900px;}
.ws5_c02250{word-spacing:-0.086400px;}
.ws13_c02250{word-spacing:-0.036000px;}
.ws6_c02250{word-spacing:-0.014400px;}
.ws4_c02250{word-spacing:0.000000px;}
.ws26_c02250{word-spacing:0.006588px;}
.ws22_c02250{word-spacing:0.026352px;}
.ws25_c02250{word-spacing:0.032940px;}
.ws1d_c02250{word-spacing:0.046116px;}
.ws1e_c02250{word-spacing:0.052704px;}
.ws20_c02250{word-spacing:0.059292px;}
.ws23_c02250{word-spacing:0.065880px;}
.ws1c_c02250{word-spacing:0.079056px;}
.ws24_c02250{word-spacing:0.085644px;}
.ws1f_c02250{word-spacing:0.180360px;}
.ws11_c02250{word-spacing:1.382400px;}
.ws12_c02250{word-spacing:1.468800px;}
.ws9_c02250{word-spacing:2.124000px;}
.wse_c02250{word-spacing:2.772000px;}
.wsf_c02250{word-spacing:2.836800px;}
.ws8_c02250{word-spacing:3.873600px;}
.ws7_c02250{word-spacing:3.945600px;}
.ws15_c02250{word-spacing:5.764500px;}
.ws14_c02250{word-spacing:5.784264px;}
.ws16_c02250{word-spacing:5.817204px;}
.ws10_c02250{word-spacing:12.902400px;}
.wsb_c02250{word-spacing:13.543200px;}
.wsa_c02250{word-spacing:13.701600px;}
.ws19_c02250{word-spacing:21.608640px;}
.ws1a_c02250{word-spacing:21.634992px;}
.ws1b_c02250{word-spacing:21.812868px;}
.ws17_c02250{word-spacing:22.333320px;}
.ws18_c02250{word-spacing:22.353084px;}
.wsc_c02250{word-spacing:41.536800px;}
.wsd_c02250{word-spacing:41.752800px;}
._1_c02250{margin-left:-1.483200px;}
._0_c02250{width:1.116000px;}
._7_c02250{width:37.440360px;}
._4_c02250{width:51.748920px;}
._5_c02250{width:124.880328px;}
._a_c02250{width:162.234288px;}
._6_c02250{width:189.284616px;}
._2_c02250{width:301.231512px;}
._3_c02250{width:368.129556px;}
._8_c02250{width:655.886304px;}
._9_c02250{width:724.375152px;}
.fc0_c02250{color:rgb(0,0,0);}
.fs4_c02250{font-size:2.880000px;}
.fs1_c02250{font-size:47.880000px;}
.fs5_c02250{font-size:54.000000px;}
.fs3_c02250{font-size:60.120000px;}
.fs2_c02250{font-size:65.880000px;}
.fs0_c02250{font-size:72.000000px;}
.y0_c02250{bottom:0.000000px;}
.y4_c02250{bottom:57.360450px;}
.y3_c02250{bottom:78.060450px;}
.y32_c02250{bottom:115.950450px;}
.y31_c02250{bottom:136.650450px;}
.y30_c02250{bottom:157.350450px;}
.y2f_c02250{bottom:178.050450px;}
.y2e_c02250{bottom:197.850450px;}
.y2d_c02250{bottom:237.180450px;}
.y2c_c02250{bottom:242.940450px;}
.y2b_c02250{bottom:262.650450px;}
.y2a_c02250{bottom:282.360450px;}
.y29_c02250{bottom:302.070450px;}
.y28_c02250{bottom:321.780450px;}
.y27_c02250{bottom:341.580450px;}
.y26_c02250{bottom:361.290600px;}
.y25_c02250{bottom:381.000600px;}
.y24_c02250{bottom:400.710600px;}
.y23_c02250{bottom:420.420450px;}
.y22_c02250{bottom:440.130450px;}
.y21_c02250{bottom:459.840600px;}
.y20_c02250{bottom:479.640450px;}
.y1f_c02250{bottom:499.350450px;}
.y1e_c02250{bottom:519.060450px;}
.y1d_c02250{bottom:538.770450px;}
.y1c_c02250{bottom:556.770450px;}
.y1b_c02250{bottom:574.050450px;}
.y1a_c02250{bottom:594.030450px;}
.y19_c02250{bottom:609.420450px;}
.y18_c02250{bottom:626.970720px;}
.y17_c02250{bottom:645.960630px;}
.y16_c02250{bottom:664.950540px;}
.y15_c02250{bottom:683.940450px;}
.y14_c02250{bottom:703.110450px;}
.y13_c02250{bottom:724.530450px;}
.y12_c02250{bottom:745.950450px;}
.y11_c02250{bottom:777.810450px;}
.y10_c02250{bottom:808.950450px;}
.yf_c02250{bottom:840.000450px;}
.ye_c02250{bottom:871.050450px;}
.yd_c02250{bottom:902.100450px;}
.yc_c02250{bottom:933.150450px;}
.yb_c02250{bottom:964.200450px;}
.ya_c02250{bottom:995.250450px;}
.y9_c02250{bottom:1026.300450px;}
.y8_c02250{bottom:1057.350450px;}
.y7_c02250{bottom:1088.220450px;}
.y6_c02250{bottom:1114.590450px;}
.y5_c02250{bottom:1139.970450px;}
.y2_c02250{bottom:1172.640450px;}
.y1_c02250{bottom:1193.160450px;}
.hf_c02250{height:2.527031px;}
.h3_c02250{height:42.526230px;}
.h10_c02250{height:47.961914px;}
.h7_c02250{height:52.751777px;}
.h8_c02250{height:53.397598px;}
.hc_c02250{height:53.471177px;}
.h9_c02250{height:53.471777px;}
.he_c02250{height:53.472377px;}
.h5_c02250{height:57.805840px;}
.h4_c02250{height:58.513535px;}
.hd_c02250{height:58.548619px;}
.hb_c02250{height:58.549219px;}
.ha_c02250{height:58.549819px;}
.h6_c02250{height:63.174701px;}
.h2_c02250{height:63.175781px;}
.h1_c02250{height:63.949219px;}
.h0_c02250{height:1263.000000px;}
.w1_c02250{width:892.500000px;}
.w0_c02250{width:892.830000px;}
.x0_c02250{left:0.000000px;}
.x1_c02250{left:127.620000px;}
.x4_c02250{left:135.630000px;}
.x5_c02250{left:146.250000px;}
.x3_c02250{left:148.950000px;}
.x2_c02250{left:432.990000px;}
.x7_c02250{left:691.920000px;}
.x6_c02250{left:708.480000px;}
@media print{
.v1_c02250{vertical-align:-14.720000pt;}
.v2_c02250{vertical-align:-9.920000pt;}
.v3_c02250{vertical-align:-4.800000pt;}
.v0_c02250{vertical-align:0.000000pt;}
.ls24_c02250{letter-spacing:-0.111264pt;}
.ls28_c02250{letter-spacing:-0.080160pt;}
.ls22_c02250{letter-spacing:-0.044800pt;}
.ls27_c02250{letter-spacing:-0.026720pt;}
.ls21_c02250{letter-spacing:-0.025600pt;}
.ls25_c02250{letter-spacing:-0.021376pt;}
.ls1f_c02250{letter-spacing:-0.019200pt;}
.ls1d_c02250{letter-spacing:0.000000pt;}
.lsb_c02250{letter-spacing:0.005856pt;}
.ls20_c02250{letter-spacing:0.006400pt;}
.lsd_c02250{letter-spacing:0.008512pt;}
.lsc_c02250{letter-spacing:0.011712pt;}
.ls1_c02250{letter-spacing:0.012800pt;}
.ls1e_c02250{letter-spacing:0.019200pt;}
.ls16_c02250{letter-spacing:0.023424pt;}
.ls0_c02250{letter-spacing:0.025600pt;}
.ls7_c02250{letter-spacing:0.029280pt;}
.ls2_c02250{letter-spacing:0.032000pt;}
.lsf_c02250{letter-spacing:0.035136pt;}
.ls3_c02250{letter-spacing:0.038400pt;}
.lse_c02250{letter-spacing:0.040992pt;}
.ls10_c02250{letter-spacing:0.042752pt;}
.lsa_c02250{letter-spacing:0.046848pt;}
.ls4_c02250{letter-spacing:0.051200pt;}
.ls9_c02250{letter-spacing:0.052704pt;}
.ls5_c02250{letter-spacing:0.058560pt;}
.ls8_c02250{letter-spacing:0.070272pt;}
.ls6_c02250{letter-spacing:0.076128pt;}
.ls12_c02250{letter-spacing:0.080160pt;}
.ls23_c02250{letter-spacing:0.158112pt;}
.ls26_c02250{letter-spacing:0.160320pt;}
.ls11_c02250{letter-spacing:71.439552pt;}
.ls1c_c02250{letter-spacing:728.640000pt;}
.ls15_c02250{letter-spacing:740.160000pt;}
.ls14_c02250{letter-spacing:750.080000pt;}
.ls18_c02250{letter-spacing:818.560000pt;}
.ls1b_c02250{letter-spacing:890.240000pt;}
.ls19_c02250{letter-spacing:909.760000pt;}
.ls17_c02250{letter-spacing:911.360000pt;}
.ls1a_c02250{letter-spacing:974.720000pt;}
.ls13_c02250{letter-spacing:1074.240000pt;}
.ws2_c02250{word-spacing:-53.440000pt;}
.ws0_c02250{word-spacing:-14.798112pt;}
.ws3_c02250{word-spacing:-14.675136pt;}
.ws1_c02250{word-spacing:-14.645856pt;}
.ws21_c02250{word-spacing:-0.400800pt;}
.ws5_c02250{word-spacing:-0.076800pt;}
.ws13_c02250{word-spacing:-0.032000pt;}
.ws6_c02250{word-spacing:-0.012800pt;}
.ws4_c02250{word-spacing:0.000000pt;}
.ws26_c02250{word-spacing:0.005856pt;}
.ws22_c02250{word-spacing:0.023424pt;}
.ws25_c02250{word-spacing:0.029280pt;}
.ws1d_c02250{word-spacing:0.040992pt;}
.ws1e_c02250{word-spacing:0.046848pt;}
.ws20_c02250{word-spacing:0.052704pt;}
.ws23_c02250{word-spacing:0.058560pt;}
.ws1c_c02250{word-spacing:0.070272pt;}
.ws24_c02250{word-spacing:0.076128pt;}
.ws1f_c02250{word-spacing:0.160320pt;}
.ws11_c02250{word-spacing:1.228800pt;}
.ws12_c02250{word-spacing:1.305600pt;}
.ws9_c02250{word-spacing:1.888000pt;}
.wse_c02250{word-spacing:2.464000pt;}
.wsf_c02250{word-spacing:2.521600pt;}
.ws8_c02250{word-spacing:3.443200pt;}
.ws7_c02250{word-spacing:3.507200pt;}
.ws15_c02250{word-spacing:5.124000pt;}
.ws14_c02250{word-spacing:5.141568pt;}
.ws16_c02250{word-spacing:5.170848pt;}
.ws10_c02250{word-spacing:11.468800pt;}
.wsb_c02250{word-spacing:12.038400pt;}
.wsa_c02250{word-spacing:12.179200pt;}
.ws19_c02250{word-spacing:19.207680pt;}
.ws1a_c02250{word-spacing:19.231104pt;}
.ws1b_c02250{word-spacing:19.389216pt;}
.ws17_c02250{word-spacing:19.851840pt;}
.ws18_c02250{word-spacing:19.869408pt;}
.wsc_c02250{word-spacing:36.921600pt;}
.wsd_c02250{word-spacing:37.113600pt;}
._1_c02250{margin-left:-1.318400pt;}
._0_c02250{width:0.992000pt;}
._7_c02250{width:33.280320pt;}
._4_c02250{width:45.999040pt;}
._5_c02250{width:111.004736pt;}
._a_c02250{width:144.208256pt;}
._6_c02250{width:168.252992pt;}
._2_c02250{width:267.761344pt;}
._3_c02250{width:327.226272pt;}
._8_c02250{width:583.010048pt;}
._9_c02250{width:643.889024pt;}
.fs4_c02250{font-size:2.560000pt;}
.fs1_c02250{font-size:42.560000pt;}
.fs5_c02250{font-size:48.000000pt;}
.fs3_c02250{font-size:53.440000pt;}
.fs2_c02250{font-size:58.560000pt;}
.fs0_c02250{font-size:64.000000pt;}
.y0_c02250{bottom:0.000000pt;}
.y4_c02250{bottom:50.987067pt;}
.y3_c02250{bottom:69.387067pt;}
.y32_c02250{bottom:103.067067pt;}
.y31_c02250{bottom:121.467067pt;}
.y30_c02250{bottom:139.867067pt;}
.y2f_c02250{bottom:158.267067pt;}
.y2e_c02250{bottom:175.867067pt;}
.y2d_c02250{bottom:210.827067pt;}
.y2c_c02250{bottom:215.947067pt;}
.y2b_c02250{bottom:233.467067pt;}
.y2a_c02250{bottom:250.987067pt;}
.y29_c02250{bottom:268.507067pt;}
.y28_c02250{bottom:286.027067pt;}
.y27_c02250{bottom:303.627067pt;}
.y26_c02250{bottom:321.147200pt;}
.y25_c02250{bottom:338.667200pt;}
.y24_c02250{bottom:356.187200pt;}
.y23_c02250{bottom:373.707067pt;}
.y22_c02250{bottom:391.227067pt;}
.y21_c02250{bottom:408.747200pt;}
.y20_c02250{bottom:426.347067pt;}
.y1f_c02250{bottom:443.867067pt;}
.y1e_c02250{bottom:461.387067pt;}
.y1d_c02250{bottom:478.907067pt;}
.y1c_c02250{bottom:494.907067pt;}
.y1b_c02250{bottom:510.267067pt;}
.y1a_c02250{bottom:528.027067pt;}
.y19_c02250{bottom:541.707067pt;}
.y18_c02250{bottom:557.307307pt;}
.y17_c02250{bottom:574.187227pt;}
.y16_c02250{bottom:591.067147pt;}
.y15_c02250{bottom:607.947067pt;}
.y14_c02250{bottom:624.987067pt;}
.y13_c02250{bottom:644.027067pt;}
.y12_c02250{bottom:663.067067pt;}
.y11_c02250{bottom:691.387067pt;}
.y10_c02250{bottom:719.067067pt;}
.yf_c02250{bottom:746.667067pt;}
.ye_c02250{bottom:774.267067pt;}
.yd_c02250{bottom:801.867067pt;}
.yc_c02250{bottom:829.467067pt;}
.yb_c02250{bottom:857.067067pt;}
.ya_c02250{bottom:884.667067pt;}
.y9_c02250{bottom:912.267067pt;}
.y8_c02250{bottom:939.867067pt;}
.y7_c02250{bottom:967.307067pt;}
.y6_c02250{bottom:990.747067pt;}
.y5_c02250{bottom:1013.307067pt;}
.y2_c02250{bottom:1042.347067pt;}
.y1_c02250{bottom:1060.587067pt;}
.hf_c02250{height:2.246250pt;}
.h3_c02250{height:37.801094pt;}
.h10_c02250{height:42.632812pt;}
.h7_c02250{height:46.890469pt;}
.h8_c02250{height:47.464531pt;}
.hc_c02250{height:47.529935pt;}
.h9_c02250{height:47.530469pt;}
.he_c02250{height:47.531002pt;}
.h5_c02250{height:51.382969pt;}
.h4_c02250{height:52.012031pt;}
.hd_c02250{height:52.043217pt;}
.hb_c02250{height:52.043750pt;}
.ha_c02250{height:52.044283pt;}
.h6_c02250{height:56.155290pt;}
.h2_c02250{height:56.156250pt;}
.h1_c02250{height:56.843750pt;}
.h0_c02250{height:1122.666667pt;}
.w1_c02250{width:793.333333pt;}
.w0_c02250{width:793.626667pt;}
.x0_c02250{left:0.000000pt;}
.x1_c02250{left:113.440000pt;}
.x4_c02250{left:120.560000pt;}
.x5_c02250{left:130.000000pt;}
.x3_c02250{left:132.400000pt;}
.x2_c02250{left:384.880000pt;}
.x7_c02250{left:615.040000pt;}
.x6_c02250{left:629.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_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_e4413e7a7e47c26c1e7909b1.woff2')format("woff");}.ff1_c02251{font-family:ff1_c02251;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02251;src:url('chunks/assets/font_3c5549783e409e35073298cc.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_f2c5ab9f26ffe08cfa1ede41.woff2')format("woff");}.ff3_c02251{font-family:ff3_c02251;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_c02251;src:url('chunks/assets/font_7333ae06c5b2aeafe6ab09e4.woff2')format("woff");}.ff4_c02251{font-family:ff4_c02251;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_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);}
.v2_c02251{vertical-align:-9.000000px;}
.v1_c02251{vertical-align:-5.400000px;}
.v0_c02251{vertical-align:0.000000px;}
.ls1d_c02251{letter-spacing:-0.021600px;}
.ls1b_c02251{letter-spacing:-0.014400px;}
.ls1c_c02251{letter-spacing:-0.007200px;}
.ls1a_c02251{letter-spacing:0.000000px;}
.ls7_c02251{letter-spacing:0.007200px;}
.ls1_c02251{letter-spacing:0.013176px;}
.ls6_c02251{letter-spacing:0.014400px;}
.lse_c02251{letter-spacing:0.019764px;}
.ls18_c02251{letter-spacing:0.021600px;}
.ls13_c02251{letter-spacing:0.026352px;}
.ls0_c02251{letter-spacing:0.028800px;}
.ls17_c02251{letter-spacing:0.032940px;}
.ls10_c02251{letter-spacing:0.039528px;}
.ls5_c02251{letter-spacing:0.043200px;}
.lsb_c02251{letter-spacing:0.046116px;}
.ls9_c02251{letter-spacing:0.052704px;}
.ls8_c02251{letter-spacing:0.057600px;}
.ls14_c02251{letter-spacing:0.059292px;}
.ls19_c02251{letter-spacing:0.064800px;}
.ls11_c02251{letter-spacing:0.065880px;}
.ls15_c02251{letter-spacing:0.072468px;}
.ls12_c02251{letter-spacing:0.079056px;}
.ls16_c02251{letter-spacing:0.085644px;}
.ls1e_c02251{letter-spacing:0.092232px;}
.lsa_c02251{letter-spacing:0.118584px;}
.ls3_c02251{letter-spacing:0.144000px;}
.ls4_c02251{letter-spacing:0.181944px;}
.lsc_c02251{letter-spacing:140.040000px;}
.lsd_c02251{letter-spacing:144.000000px;}
.ls2_c02251{letter-spacing:189.720000px;}
.lsf_c02251{letter-spacing:292.320000px;}
.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;}
}
.ws3_c02251{word-spacing:-16.529292px;}
.ws4_c02251{word-spacing:-16.516116px;}
.ws2_c02251{word-spacing:-16.509528px;}
.ws1_c02251{word-spacing:-16.489764px;}
.ws0_c02251{word-spacing:-16.483176px;}
.ws1d_c02251{word-spacing:-0.180000px;}
.ws17_c02251{word-spacing:-0.100800px;}
.ws1a_c02251{word-spacing:-0.093600px;}
.ws6_c02251{word-spacing:-0.086400px;}
.ws19_c02251{word-spacing:-0.079200px;}
.ws9_c02251{word-spacing:-0.072000px;}
.ws1b_c02251{word-spacing:-0.050400px;}
.ws12_c02251{word-spacing:-0.026352px;}
.ws27_c02251{word-spacing:-0.021600px;}
.ws1e_c02251{word-spacing:-0.014400px;}
.ws16_c02251{word-spacing:-0.007200px;}
.ws5_c02251{word-spacing:0.000000px;}
.ws1c_c02251{word-spacing:0.007200px;}
.ws14_c02251{word-spacing:0.014400px;}
.ws2c_c02251{word-spacing:0.019764px;}
.ws18_c02251{word-spacing:0.021600px;}
.ws2b_c02251{word-spacing:0.026352px;}
.ws28_c02251{word-spacing:0.028800px;}
.ws2a_c02251{word-spacing:0.032940px;}
.ws22_c02251{word-spacing:0.039528px;}
.ws13_c02251{word-spacing:0.046116px;}
.ws29_c02251{word-spacing:0.052704px;}
.ws26_c02251{word-spacing:0.059292px;}
.ws23_c02251{word-spacing:0.065880px;}
.ws15_c02251{word-spacing:0.086400px;}
.wsf_c02251{word-spacing:1.742400px;}
.ws8_c02251{word-spacing:1.756800px;}
.wse_c02251{word-spacing:1.792800px;}
.ws21_c02251{word-spacing:6.476004px;}
.ws20_c02251{word-spacing:6.489180px;}
.ws1f_c02251{word-spacing:6.502356px;}
.wsd_c02251{word-spacing:6.674400px;}
.ws25_c02251{word-spacing:10.804320px;}
.ws24_c02251{word-spacing:10.817496px;}
.wsa_c02251{word-spacing:14.068800px;}
.wsb_c02251{word-spacing:14.392800px;}
.ws10_c02251{word-spacing:14.407200px;}
.wsc_c02251{word-spacing:14.414400px;}
.ws11_c02251{word-spacing:14.434308px;}
.ws7_c02251{word-spacing:20.433600px;}
._1_c02251{margin-left:-1.036800px;}
._2_c02251{width:13.836240px;}
._0_c02251{width:20.581056px;}
.fc0_c02251{color:rgb(0,0,0);}
.fs3_c02251{font-size:24.120000px;}
.fs2_c02251{font-size:47.880000px;}
.fs4_c02251{font-size:54.000000px;}
.fs1_c02251{font-size:65.880000px;}
.fs0_c02251{font-size:72.000000px;}
.y0_c02251{bottom:0.000000px;}
.y4_c02251{bottom:57.360450px;}
.y3_c02251{bottom:78.060450px;}
.y38_c02251{bottom:116.220450px;}
.y37_c02251{bottom:136.920450px;}
.y36_c02251{bottom:157.620450px;}
.y35_c02251{bottom:178.320450px;}
.y34_c02251{bottom:198.120600px;}
.y33_c02251{bottom:215.130450px;}
.y32_c02251{bottom:234.750450px;}
.y31_c02251{bottom:254.550450px;}
.y30_c02251{bottom:273.540450px;}
.y2f_c02251{bottom:293.160450px;}
.y2e_c02251{bottom:312.960600px;}
.y2d_c02251{bottom:332.580450px;}
.y2c_c02251{bottom:352.830600px;}
.y2b_c02251{bottom:373.530600px;}
.y2a_c02251{bottom:394.230600px;}
.y29_c02251{bottom:414.930600px;}
.y28_c02251{bottom:435.180540px;}
.y27_c02251{bottom:454.170450px;}
.y26_c02251{bottom:473.790600px;}
.y25_c02251{bottom:493.680600px;}
.y24_c02251{bottom:512.580450px;}
.y23_c02251{bottom:532.290450px;}
.y22_c02251{bottom:552.270450px;}
.y21_c02251{bottom:572.970450px;}
.y20_c02251{bottom:593.670450px;}
.y1f_c02251{bottom:614.370450px;}
.y1e_c02251{bottom:635.070450px;}
.y1d_c02251{bottom:655.770450px;}
.y1c_c02251{bottom:676.470450px;}
.y1b_c02251{bottom:697.170450px;}
.y1a_c02251{bottom:717.870450px;}
.y19_c02251{bottom:738.570450px;}
.y18_c02251{bottom:759.270450px;}
.y17_c02251{bottom:779.970450px;}
.y16_c02251{bottom:800.670450px;}
.y15_c02251{bottom:821.370450px;}
.y14_c02251{bottom:842.070450px;}
.y13_c02251{bottom:862.770450px;}
.y12_c02251{bottom:884.910450px;}
.y11_c02251{bottom:906.330450px;}
.y10_c02251{bottom:927.750450px;}
.yf_c02251{bottom:947.459847px;}
.ye_c02251{bottom:966.810450px;}
.yd_c02251{bottom:987.510450px;}
.yc_c02251{bottom:1008.210450px;}
.yb_c02251{bottom:1028.910450px;}
.ya_c02251{bottom:1047.090450px;}
.y9_c02251{bottom:1056.540450px;}
.y8_c02251{bottom:1077.240450px;}
.y7_c02251{bottom:1099.290450px;}
.y6_c02251{bottom:1119.270450px;}
.y5_c02251{bottom:1139.970450px;}
.y2_c02251{bottom:1172.640450px;}
.y1_c02251{bottom:1193.160450px;}
.h5_c02251{height:23.660684px;}
.ha_c02251{height:47.961914px;}
.h7_c02251{height:57.805840px;}
.h9_c02251{height:58.513535px;}
.h2_c02251{height:63.175781px;}
.h8_c02251{height:63.176021px;}
.h1_c02251{height:63.949219px;}
.h6_c02251{height:64.625449px;}
.h3_c02251{height:65.228906px;}
.h4_c02251{height:70.628906px;}
.h0_c02251{height:1263.000000px;}
.w1_c02251{width:892.500000px;}
.w0_c02251{width:892.830000px;}
.x0_c02251{left:0.000000px;}
.x1_c02251{left:127.620000px;}
.x3_c02251{left:135.630000px;}
.x4_c02251{left:252.630000px;}
.x2_c02251{left:432.990000px;}
@media print{
.v2_c02251{vertical-align:-8.000000pt;}
.v1_c02251{vertical-align:-4.800000pt;}
.v0_c02251{vertical-align:0.000000pt;}
.ls1d_c02251{letter-spacing:-0.019200pt;}
.ls1b_c02251{letter-spacing:-0.012800pt;}
.ls1c_c02251{letter-spacing:-0.006400pt;}
.ls1a_c02251{letter-spacing:0.000000pt;}
.ls7_c02251{letter-spacing:0.006400pt;}
.ls1_c02251{letter-spacing:0.011712pt;}
.ls6_c02251{letter-spacing:0.012800pt;}
.lse_c02251{letter-spacing:0.017568pt;}
.ls18_c02251{letter-spacing:0.019200pt;}
.ls13_c02251{letter-spacing:0.023424pt;}
.ls0_c02251{letter-spacing:0.025600pt;}
.ls17_c02251{letter-spacing:0.029280pt;}
.ls10_c02251{letter-spacing:0.035136pt;}
.ls5_c02251{letter-spacing:0.038400pt;}
.lsb_c02251{letter-spacing:0.040992pt;}
.ls9_c02251{letter-spacing:0.046848pt;}
.ls8_c02251{letter-spacing:0.051200pt;}
.ls14_c02251{letter-spacing:0.052704pt;}
.ls19_c02251{letter-spacing:0.057600pt;}
.ls11_c02251{letter-spacing:0.058560pt;}
.ls15_c02251{letter-spacing:0.064416pt;}
.ls12_c02251{letter-spacing:0.070272pt;}
.ls16_c02251{letter-spacing:0.076128pt;}
.ls1e_c02251{letter-spacing:0.081984pt;}
.lsa_c02251{letter-spacing:0.105408pt;}
.ls3_c02251{letter-spacing:0.128000pt;}
.ls4_c02251{letter-spacing:0.161728pt;}
.lsc_c02251{letter-spacing:124.480000pt;}
.lsd_c02251{letter-spacing:128.000000pt;}
.ls2_c02251{letter-spacing:168.640000pt;}
.lsf_c02251{letter-spacing:259.840000pt;}
.ws3_c02251{word-spacing:-14.692704pt;}
.ws4_c02251{word-spacing:-14.680992pt;}
.ws2_c02251{word-spacing:-14.675136pt;}
.ws1_c02251{word-spacing:-14.657568pt;}
.ws0_c02251{word-spacing:-14.651712pt;}
.ws1d_c02251{word-spacing:-0.160000pt;}
.ws17_c02251{word-spacing:-0.089600pt;}
.ws1a_c02251{word-spacing:-0.083200pt;}
.ws6_c02251{word-spacing:-0.076800pt;}
.ws19_c02251{word-spacing:-0.070400pt;}
.ws9_c02251{word-spacing:-0.064000pt;}
.ws1b_c02251{word-spacing:-0.044800pt;}
.ws12_c02251{word-spacing:-0.023424pt;}
.ws27_c02251{word-spacing:-0.019200pt;}
.ws1e_c02251{word-spacing:-0.012800pt;}
.ws16_c02251{word-spacing:-0.006400pt;}
.ws5_c02251{word-spacing:0.000000pt;}
.ws1c_c02251{word-spacing:0.006400pt;}
.ws14_c02251{word-spacing:0.012800pt;}
.ws2c_c02251{word-spacing:0.017568pt;}
.ws18_c02251{word-spacing:0.019200pt;}
.ws2b_c02251{word-spacing:0.023424pt;}
.ws28_c02251{word-spacing:0.025600pt;}
.ws2a_c02251{word-spacing:0.029280pt;}
.ws22_c02251{word-spacing:0.035136pt;}
.ws13_c02251{word-spacing:0.040992pt;}
.ws29_c02251{word-spacing:0.046848pt;}
.ws26_c02251{word-spacing:0.052704pt;}
.ws23_c02251{word-spacing:0.058560pt;}
.ws15_c02251{word-spacing:0.076800pt;}
.wsf_c02251{word-spacing:1.548800pt;}
.ws8_c02251{word-spacing:1.561600pt;}
.wse_c02251{word-spacing:1.593600pt;}
.ws21_c02251{word-spacing:5.756448pt;}
.ws20_c02251{word-spacing:5.768160pt;}
.ws1f_c02251{word-spacing:5.779872pt;}
.wsd_c02251{word-spacing:5.932800pt;}
.ws25_c02251{word-spacing:9.603840pt;}
.ws24_c02251{word-spacing:9.615552pt;}
.wsa_c02251{word-spacing:12.505600pt;}
.wsb_c02251{word-spacing:12.793600pt;}
.ws10_c02251{word-spacing:12.806400pt;}
.wsc_c02251{word-spacing:12.812800pt;}
.ws11_c02251{word-spacing:12.830496pt;}
.ws7_c02251{word-spacing:18.163200pt;}
._1_c02251{margin-left:-0.921600pt;}
._2_c02251{width:12.298880pt;}
._0_c02251{width:18.294272pt;}
.fs3_c02251{font-size:21.440000pt;}
.fs2_c02251{font-size:42.560000pt;}
.fs4_c02251{font-size:48.000000pt;}
.fs1_c02251{font-size:58.560000pt;}
.fs0_c02251{font-size:64.000000pt;}
.y0_c02251{bottom:0.000000pt;}
.y4_c02251{bottom:50.987067pt;}
.y3_c02251{bottom:69.387067pt;}
.y38_c02251{bottom:103.307067pt;}
.y37_c02251{bottom:121.707067pt;}
.y36_c02251{bottom:140.107067pt;}
.y35_c02251{bottom:158.507067pt;}
.y34_c02251{bottom:176.107200pt;}
.y33_c02251{bottom:191.227067pt;}
.y32_c02251{bottom:208.667067pt;}
.y31_c02251{bottom:226.267067pt;}
.y30_c02251{bottom:243.147067pt;}
.y2f_c02251{bottom:260.587067pt;}
.y2e_c02251{bottom:278.187200pt;}
.y2d_c02251{bottom:295.627067pt;}
.y2c_c02251{bottom:313.627200pt;}
.y2b_c02251{bottom:332.027200pt;}
.y2a_c02251{bottom:350.427200pt;}
.y29_c02251{bottom:368.827200pt;}
.y28_c02251{bottom:386.827147pt;}
.y27_c02251{bottom:403.707067pt;}
.y26_c02251{bottom:421.147200pt;}
.y25_c02251{bottom:438.827200pt;}
.y24_c02251{bottom:455.627067pt;}
.y23_c02251{bottom:473.147067pt;}
.y22_c02251{bottom:490.907067pt;}
.y21_c02251{bottom:509.307067pt;}
.y20_c02251{bottom:527.707067pt;}
.y1f_c02251{bottom:546.107067pt;}
.y1e_c02251{bottom:564.507067pt;}
.y1d_c02251{bottom:582.907067pt;}
.y1c_c02251{bottom:601.307067pt;}
.y1b_c02251{bottom:619.707067pt;}
.y1a_c02251{bottom:638.107067pt;}
.y19_c02251{bottom:656.507067pt;}
.y18_c02251{bottom:674.907067pt;}
.y17_c02251{bottom:693.307067pt;}
.y16_c02251{bottom:711.707067pt;}
.y15_c02251{bottom:730.107067pt;}
.y14_c02251{bottom:748.507067pt;}
.y13_c02251{bottom:766.907067pt;}
.y12_c02251{bottom:786.587067pt;}
.y11_c02251{bottom:805.627067pt;}
.y10_c02251{bottom:824.667067pt;}
.yf_c02251{bottom:842.186531pt;}
.ye_c02251{bottom:859.387067pt;}
.yd_c02251{bottom:877.787067pt;}
.yc_c02251{bottom:896.187067pt;}
.yb_c02251{bottom:914.587067pt;}
.ya_c02251{bottom:930.747067pt;}
.y9_c02251{bottom:939.147067pt;}
.y8_c02251{bottom:957.547067pt;}
.y7_c02251{bottom:977.147067pt;}
.y6_c02251{bottom:994.907067pt;}
.y5_c02251{bottom:1013.307067pt;}
.y2_c02251{bottom:1042.347067pt;}
.y1_c02251{bottom:1060.587067pt;}
.h5_c02251{height:21.031719pt;}
.ha_c02251{height:42.632812pt;}
.h7_c02251{height:51.382969pt;}
.h9_c02251{height:52.012031pt;}
.h2_c02251{height:56.156250pt;}
.h8_c02251{height:56.156463pt;}
.h1_c02251{height:56.843750pt;}
.h6_c02251{height:57.444844pt;}
.h3_c02251{height:57.981250pt;}
.h4_c02251{height:62.781250pt;}
.h0_c02251{height:1122.666667pt;}
.w1_c02251{width:793.333333pt;}
.w0_c02251{width:793.626667pt;}
.x0_c02251{left:0.000000pt;}
.x1_c02251{left:113.440000pt;}
.x3_c02251{left:120.560000pt;}
.x4_c02251{left:224.560000pt;}
.x2_c02251{left:384.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_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_e6781b5729413f6528e76c94.woff2')format("woff");}.ff1_c02252{font-family:ff1_c02252;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02252;src:url('chunks/assets/font_ac58f01947e34a18cda88a5d.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_dc4b4493109987c6c372f640.woff2')format("woff");}.ff3_c02252{font-family:ff3_c02252;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02252;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02252{font-family:ff4_c02252;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;}
.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;}
.ls1f_c02252{letter-spacing:-0.246492px;}
.ls25_c02252{letter-spacing:-0.222444px;}
.ls20_c02252{letter-spacing:-0.204408px;}
.ls2e_c02252{letter-spacing:-0.165600px;}
.ls32_c02252{letter-spacing:-0.158400px;}
.ls2b_c02252{letter-spacing:-0.136800px;}
.ls23_c02252{letter-spacing:-0.126252px;}
.ls2d_c02252{letter-spacing:-0.115200px;}
.ls19_c02252{letter-spacing:-0.096192px;}
.ls1c_c02252{letter-spacing:-0.090180px;}
.ls31_c02252{letter-spacing:-0.079200px;}
.ls1b_c02252{letter-spacing:-0.078156px;}
.ls28_c02252{letter-spacing:-0.072144px;}
.ls24_c02252{letter-spacing:-0.066132px;}
.ls2c_c02252{letter-spacing:-0.064800px;}
.ls1d_c02252{letter-spacing:-0.060120px;}
.ls26_c02252{letter-spacing:-0.054108px;}
.ls2a_c02252{letter-spacing:-0.048096px;}
.ls18_c02252{letter-spacing:-0.036072px;}
.ls2f_c02252{letter-spacing:-0.036000px;}
.ls27_c02252{letter-spacing:-0.030060px;}
.ls22_c02252{letter-spacing:-0.024048px;}
.ls15_c02252{letter-spacing:-0.021600px;}
.ls16_c02252{letter-spacing:-0.014400px;}
.ls29_c02252{letter-spacing:-0.012024px;}
.ls14_c02252{letter-spacing:-0.007200px;}
.ls21_c02252{letter-spacing:-0.006012px;}
.ls13_c02252{letter-spacing:0.000000px;}
.lsb_c02252{letter-spacing:0.006012px;}
.ls1a_c02252{letter-spacing:0.012024px;}
.ls1_c02252{letter-spacing:0.014400px;}
.ls7_c02252{letter-spacing:0.018036px;}
.ls4_c02252{letter-spacing:0.021600px;}
.lse_c02252{letter-spacing:0.024048px;}
.ls0_c02252{letter-spacing:0.028800px;}
.lsc_c02252{letter-spacing:0.030060px;}
.ls3_c02252{letter-spacing:0.036000px;}
.lsd_c02252{letter-spacing:0.036072px;}
.ls5_c02252{letter-spacing:0.043200px;}
.lsa_c02252{letter-spacing:0.048096px;}
.ls17_c02252{letter-spacing:0.054108px;}
.ls8_c02252{letter-spacing:0.060120px;}
.ls2_c02252{letter-spacing:0.064800px;}
.ls12_c02252{letter-spacing:0.065772px;}
.ls11_c02252{letter-spacing:0.072000px;}
.ls9_c02252{letter-spacing:0.078156px;}
.ls6_c02252{letter-spacing:0.090180px;}
.ls30_c02252{letter-spacing:0.126252px;}
.ls1e_c02252{letter-spacing:0.138276px;}
.ls10_c02252{letter-spacing:0.288000px;}
.lsf_c02252{letter-spacing:0.648000px;}
.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;}
}
.ws1e_c02252{word-spacing:-72.000000px;}
.ws25_c02252{word-spacing:-71.920800px;}
.ws2_c02252{word-spacing:-60.120000px;}
.ws7_c02252{word-spacing:-0.198396px;}
.ws11_c02252{word-spacing:-0.150300px;}
.ws12_c02252{word-spacing:-0.138276px;}
.ws21_c02252{word-spacing:-0.136800px;}
.ws2c_c02252{word-spacing:-0.122400px;}
.ws8_c02252{word-spacing:-0.120240px;}
.ws13_c02252{word-spacing:-0.108216px;}
.ws29_c02252{word-spacing:-0.108000px;}
.ws1f_c02252{word-spacing:-0.100800px;}
.ws19_c02252{word-spacing:-0.096192px;}
.ws15_c02252{word-spacing:-0.090180px;}
.ws27_c02252{word-spacing:-0.086400px;}
.ws1b_c02252{word-spacing:-0.084168px;}
.ws4_c02252{word-spacing:-0.078156px;}
.ws14_c02252{word-spacing:-0.066132px;}
.wsb_c02252{word-spacing:-0.054108px;}
.ws24_c02252{word-spacing:-0.050400px;}
.ws18_c02252{word-spacing:-0.048096px;}
.wsc_c02252{word-spacing:-0.036072px;}
.ws23_c02252{word-spacing:-0.036000px;}
.ws16_c02252{word-spacing:-0.030060px;}
.ws0_c02252{word-spacing:-0.024048px;}
.ws28_c02252{word-spacing:-0.014400px;}
.ws1a_c02252{word-spacing:-0.012024px;}
.ws1d_c02252{word-spacing:-0.007200px;}
.ws10_c02252{word-spacing:-0.006012px;}
.ws5_c02252{word-spacing:0.000000px;}
.wse_c02252{word-spacing:0.006012px;}
.ws17_c02252{word-spacing:0.012024px;}
.ws2d_c02252{word-spacing:0.014400px;}
.ws3_c02252{word-spacing:0.018036px;}
.ws6_c02252{word-spacing:0.030060px;}
.ws1_c02252{word-spacing:0.036072px;}
.ws20_c02252{word-spacing:0.043200px;}
.ws1c_c02252{word-spacing:0.064800px;}
.wsd_c02252{word-spacing:0.066132px;}
.ws26_c02252{word-spacing:0.086400px;}
.ws22_c02252{word-spacing:0.093600px;}
.wsa_c02252{word-spacing:0.144288px;}
.wsf_c02252{word-spacing:0.162324px;}
.ws9_c02252{word-spacing:0.186372px;}
.ws2a_c02252{word-spacing:3.535200px;}
.ws2b_c02252{word-spacing:3.621600px;}
.ws2f_c02252{word-spacing:11.440800px;}
.ws2e_c02252{word-spacing:11.476800px;}
.ws30_c02252{word-spacing:13.615200px;}
.ws31_c02252{word-spacing:13.665600px;}
.ws32_c02252{word-spacing:13.687200px;}
._1_c02252{margin-left:-2.455200px;}
._0_c02252{margin-left:-1.166400px;}
._2_c02252{width:1.015200px;}
.fc0_c02252{color:rgb(0,0,0);}
.fs1_c02252{font-size:47.880000px;}
.fs2_c02252{font-size:54.000000px;}
.fs3_c02252{font-size:60.120000px;}
.fs0_c02252{font-size:72.000000px;}
.y0_c02252{bottom:0.000000px;}
.y4_c02252{bottom:57.360450px;}
.y3_c02252{bottom:78.060450px;}
.y11_c02252{bottom:119.730450px;}
.y34_c02252{bottom:136.110450px;}
.y44_c02252{bottom:136.916058px;}
.y35_c02252{bottom:156.180009px;}
.y45_c02252{bottom:157.075797px;}
.y36_c02252{bottom:176.339748px;}
.y46_c02252{bottom:177.145356px;}
.y37_c02252{bottom:196.499487px;}
.y47_c02252{bottom:197.305095px;}
.y38_c02252{bottom:216.569046px;}
.y48_c02252{bottom:217.374654px;}
.y39_c02252{bottom:236.728785px;}
.y49_c02252{bottom:237.534393px;}
.y3a_c02252{bottom:256.798344px;}
.y4a_c02252{bottom:257.694132px;}
.y3b_c02252{bottom:276.958083px;}
.y4b_c02252{bottom:277.763691px;}
.y3c_c02252{bottom:297.117822px;}
.y4c_c02252{bottom:297.923430px;}
.y3d_c02252{bottom:317.187381px;}
.y4d_c02252{bottom:317.992989px;}
.y3e_c02252{bottom:337.347120px;}
.y4e_c02252{bottom:338.152728px;}
.y3f_c02252{bottom:357.416679px;}
.y4f_c02252{bottom:358.312467px;}
.y40_c02252{bottom:377.576418px;}
.y50_c02252{bottom:378.382026px;}
.y41_c02252{bottom:397.736157px;}
.y51_c02252{bottom:398.541765px;}
.y42_c02252{bottom:417.805716px;}
.y52_c02252{bottom:418.620009px;}
.y43_c02252{bottom:437.965455px;}
.y53_c02252{bottom:438.779748px;}
.y55_c02252{bottom:467.760450px;}
.y54_c02252{bottom:494.130450px;}
.y10_c02252{bottom:525.090600px;}
.yf_c02252{bottom:540.390450px;}
.ye_c02252{bottom:561.090450px;}
.yd_c02252{bottom:581.790450px;}
.yc_c02252{bottom:602.310450px;}
.yb_c02252{bottom:621.661197px;}
.ya_c02252{bottom:632.910603px;}
.y12_c02252{bottom:652.080450px;}
.y22_c02252{bottom:652.895076px;}
.y13_c02252{bottom:671.790792px;}
.y23_c02252{bottom:672.605418px;}
.y14_c02252{bottom:691.501134px;}
.y24_c02252{bottom:692.315760px;}
.y15_c02252{bottom:711.211476px;}
.y25_c02252{bottom:712.026102px;}
.y16_c02252{bottom:730.921818px;}
.y26_c02252{bottom:731.736444px;}
.y17_c02252{bottom:750.632160px;}
.y27_c02252{bottom:751.446786px;}
.y18_c02252{bottom:770.342502px;}
.y28_c02252{bottom:771.157128px;}
.y19_c02252{bottom:790.052844px;}
.y29_c02252{bottom:790.867470px;}
.y1a_c02252{bottom:809.763186px;}
.y2a_c02252{bottom:810.577812px;}
.y1b_c02252{bottom:829.473528px;}
.y2b_c02252{bottom:830.288154px;}
.y1c_c02252{bottom:849.183870px;}
.y2c_c02252{bottom:849.998496px;}
.y1d_c02252{bottom:868.894212px;}
.y2d_c02252{bottom:869.708838px;}
.y1e_c02252{bottom:888.604554px;}
.y2e_c02252{bottom:889.419180px;}
.y1f_c02252{bottom:908.314896px;}
.y2f_c02252{bottom:909.129522px;}
.y20_c02252{bottom:928.025238px;}
.y30_c02252{bottom:928.830792px;}
.y21_c02252{bottom:947.735580px;}
.y31_c02252{bottom:948.541134px;}
.y33_c02252{bottom:994.440450px;}
.y32_c02252{bottom:1021.440450px;}
.y9_c02252{bottom:1052.400450px;}
.y8_c02252{bottom:1067.700450px;}
.y7_c02252{bottom:1088.400450px;}
.y6_c02252{bottom:1119.270450px;}
.y5_c02252{bottom:1139.970450px;}
.y2_c02252{bottom:1172.640450px;}
.y1_c02252{bottom:1193.160450px;}
.h3_c02252{height:42.526230px;}
.h5_c02252{height:43.651582px;}
.h7_c02252{height:43.686322px;}
.h4_c02252{height:47.961914px;}
.h6_c02252{height:52.277344px;}
.h2_c02252{height:63.175781px;}
.h1_c02252{height:63.949219px;}
.h0_c02252{height:1263.000000px;}
.w1_c02252{width:892.500000px;}
.w0_c02252{width:892.830000px;}
.x0_c02252{left:0.000000px;}
.x1_c02252{left:127.620000px;}
.x1f_c02252{left:144.901269px;}
.x4_c02252{left:148.950000px;}
.x3b_c02252{left:156.429675px;}
.x22_c02252{left:158.129505px;}
.x3f_c02252{left:169.746255px;}
.x21_c02252{left:177.032403px;}
.x3c_c02252{left:188.652492px;}
.x1d_c02252{left:193.415103px;}
.x1c_c02252{left:201.873987px;}
.x3d_c02252{left:205.029180px;}
.x24_c02252{left:211.590000px;}
.x38_c02252{left:213.397884px;}
.x1e_c02252{left:216.184050px;}
.x20_c02252{left:221.943546px;}
.x23_c02252{left:226.616706px;}
.x3e_c02252{left:227.798127px;}
.x40_c02252{left:233.547012px;}
.x41_c02252{left:238.225851px;}
.x17_c02252{left:241.201485px;}
.x35_c02252{left:252.815562px;}
.x18_c02252{left:260.282070px;}
.x1a_c02252{left:263.702898px;}
.x16_c02252{left:265.320126px;}
.x6_c02252{left:269.640000px;}
.x37_c02252{left:271.897650px;}
.x39_c02252{left:275.228298px;}
.x34_c02252{left:276.934203px;}
.x15_c02252{left:282.329577px;}
.x33_c02252{left:293.853474px;}
.x19_c02252{left:306.723267px;}
.x36_c02252{left:318.247164px;}
.x3_c02252{left:340.560000px;}
.x1b_c02252{left:351.724590px;}
.x3a_c02252{left:363.340170px;}
.x2_c02252{left:432.990000px;}
.x32_c02252{left:458.822754px;}
.x31_c02252{left:460.892385px;}
.x30_c02252{left:471.061683px;}
.x2f_c02252{left:473.131314px;}
.x42_c02252{left:480.420000px;}
.x25_c02252{left:482.220000px;}
.x2e_c02252{left:487.261017px;}
.x2d_c02252{left:489.420828px;}
.x2c_c02252{left:497.700855px;}
.x2b_c02252{left:536.221242px;}
.x14_c02252{left:560.159127px;}
.x2a_c02252{left:569.070810px;}
.x13_c02252{left:584.459631px;}
.x12_c02252{left:590.038767px;}
.x29_c02252{left:599.670387px;}
.x11_c02252{left:607.138398px;}
.x10_c02252{left:610.469046px;}
.xf_c02252{left:611.638380px;}
.xe_c02252{left:618.207993px;}
.x28_c02252{left:620.190846px;}
.xd_c02252{left:621.538641px;}
.xc_c02252{left:630.988002px;}
.xb_c02252{left:638.728452px;}
.x27_c02252{left:644.670207px;}
.xa_c02252{left:651.418281px;}
.x9_c02252{left:653.128695px;}
.x8_c02252{left:654.209352px;}
.x7_c02252{left:657.540000px;}
.x26_c02252{left:681.390000px;}
.x5_c02252{left:766.620495px;}
@media print{
.v0_c02252{vertical-align:0.000000pt;}
.ls1f_c02252{letter-spacing:-0.219104pt;}
.ls25_c02252{letter-spacing:-0.197728pt;}
.ls20_c02252{letter-spacing:-0.181696pt;}
.ls2e_c02252{letter-spacing:-0.147200pt;}
.ls32_c02252{letter-spacing:-0.140800pt;}
.ls2b_c02252{letter-spacing:-0.121600pt;}
.ls23_c02252{letter-spacing:-0.112224pt;}
.ls2d_c02252{letter-spacing:-0.102400pt;}
.ls19_c02252{letter-spacing:-0.085504pt;}
.ls1c_c02252{letter-spacing:-0.080160pt;}
.ls31_c02252{letter-spacing:-0.070400pt;}
.ls1b_c02252{letter-spacing:-0.069472pt;}
.ls28_c02252{letter-spacing:-0.064128pt;}
.ls24_c02252{letter-spacing:-0.058784pt;}
.ls2c_c02252{letter-spacing:-0.057600pt;}
.ls1d_c02252{letter-spacing:-0.053440pt;}
.ls26_c02252{letter-spacing:-0.048096pt;}
.ls2a_c02252{letter-spacing:-0.042752pt;}
.ls18_c02252{letter-spacing:-0.032064pt;}
.ls2f_c02252{letter-spacing:-0.032000pt;}
.ls27_c02252{letter-spacing:-0.026720pt;}
.ls22_c02252{letter-spacing:-0.021376pt;}
.ls15_c02252{letter-spacing:-0.019200pt;}
.ls16_c02252{letter-spacing:-0.012800pt;}
.ls29_c02252{letter-spacing:-0.010688pt;}
.ls14_c02252{letter-spacing:-0.006400pt;}
.ls21_c02252{letter-spacing:-0.005344pt;}
.ls13_c02252{letter-spacing:0.000000pt;}
.lsb_c02252{letter-spacing:0.005344pt;}
.ls1a_c02252{letter-spacing:0.010688pt;}
.ls1_c02252{letter-spacing:0.012800pt;}
.ls7_c02252{letter-spacing:0.016032pt;}
.ls4_c02252{letter-spacing:0.019200pt;}
.lse_c02252{letter-spacing:0.021376pt;}
.ls0_c02252{letter-spacing:0.025600pt;}
.lsc_c02252{letter-spacing:0.026720pt;}
.ls3_c02252{letter-spacing:0.032000pt;}
.lsd_c02252{letter-spacing:0.032064pt;}
.ls5_c02252{letter-spacing:0.038400pt;}
.lsa_c02252{letter-spacing:0.042752pt;}
.ls17_c02252{letter-spacing:0.048096pt;}
.ls8_c02252{letter-spacing:0.053440pt;}
.ls2_c02252{letter-spacing:0.057600pt;}
.ls12_c02252{letter-spacing:0.058464pt;}
.ls11_c02252{letter-spacing:0.064000pt;}
.ls9_c02252{letter-spacing:0.069472pt;}
.ls6_c02252{letter-spacing:0.080160pt;}
.ls30_c02252{letter-spacing:0.112224pt;}
.ls1e_c02252{letter-spacing:0.122912pt;}
.ls10_c02252{letter-spacing:0.256000pt;}
.lsf_c02252{letter-spacing:0.576000pt;}
.ws1e_c02252{word-spacing:-64.000000pt;}
.ws25_c02252{word-spacing:-63.929600pt;}
.ws2_c02252{word-spacing:-53.440000pt;}
.ws7_c02252{word-spacing:-0.176352pt;}
.ws11_c02252{word-spacing:-0.133600pt;}
.ws12_c02252{word-spacing:-0.122912pt;}
.ws21_c02252{word-spacing:-0.121600pt;}
.ws2c_c02252{word-spacing:-0.108800pt;}
.ws8_c02252{word-spacing:-0.106880pt;}
.ws13_c02252{word-spacing:-0.096192pt;}
.ws29_c02252{word-spacing:-0.096000pt;}
.ws1f_c02252{word-spacing:-0.089600pt;}
.ws19_c02252{word-spacing:-0.085504pt;}
.ws15_c02252{word-spacing:-0.080160pt;}
.ws27_c02252{word-spacing:-0.076800pt;}
.ws1b_c02252{word-spacing:-0.074816pt;}
.ws4_c02252{word-spacing:-0.069472pt;}
.ws14_c02252{word-spacing:-0.058784pt;}
.wsb_c02252{word-spacing:-0.048096pt;}
.ws24_c02252{word-spacing:-0.044800pt;}
.ws18_c02252{word-spacing:-0.042752pt;}
.wsc_c02252{word-spacing:-0.032064pt;}
.ws23_c02252{word-spacing:-0.032000pt;}
.ws16_c02252{word-spacing:-0.026720pt;}
.ws0_c02252{word-spacing:-0.021376pt;}
.ws28_c02252{word-spacing:-0.012800pt;}
.ws1a_c02252{word-spacing:-0.010688pt;}
.ws1d_c02252{word-spacing:-0.006400pt;}
.ws10_c02252{word-spacing:-0.005344pt;}
.ws5_c02252{word-spacing:0.000000pt;}
.wse_c02252{word-spacing:0.005344pt;}
.ws17_c02252{word-spacing:0.010688pt;}
.ws2d_c02252{word-spacing:0.012800pt;}
.ws3_c02252{word-spacing:0.016032pt;}
.ws6_c02252{word-spacing:0.026720pt;}
.ws1_c02252{word-spacing:0.032064pt;}
.ws20_c02252{word-spacing:0.038400pt;}
.ws1c_c02252{word-spacing:0.057600pt;}
.wsd_c02252{word-spacing:0.058784pt;}
.ws26_c02252{word-spacing:0.076800pt;}
.ws22_c02252{word-spacing:0.083200pt;}
.wsa_c02252{word-spacing:0.128256pt;}
.wsf_c02252{word-spacing:0.144288pt;}
.ws9_c02252{word-spacing:0.165664pt;}
.ws2a_c02252{word-spacing:3.142400pt;}
.ws2b_c02252{word-spacing:3.219200pt;}
.ws2f_c02252{word-spacing:10.169600pt;}
.ws2e_c02252{word-spacing:10.201600pt;}
.ws30_c02252{word-spacing:12.102400pt;}
.ws31_c02252{word-spacing:12.147200pt;}
.ws32_c02252{word-spacing:12.166400pt;}
._1_c02252{margin-left:-2.182400pt;}
._0_c02252{margin-left:-1.036800pt;}
._2_c02252{width:0.902400pt;}
.fs1_c02252{font-size:42.560000pt;}
.fs2_c02252{font-size:48.000000pt;}
.fs3_c02252{font-size:53.440000pt;}
.fs0_c02252{font-size:64.000000pt;}
.y0_c02252{bottom:0.000000pt;}
.y4_c02252{bottom:50.987067pt;}
.y3_c02252{bottom:69.387067pt;}
.y11_c02252{bottom:106.427067pt;}
.y34_c02252{bottom:120.987067pt;}
.y44_c02252{bottom:121.703163pt;}
.y35_c02252{bottom:138.826675pt;}
.y45_c02252{bottom:139.622931pt;}
.y36_c02252{bottom:156.746443pt;}
.y46_c02252{bottom:157.462539pt;}
.y37_c02252{bottom:174.666211pt;}
.y47_c02252{bottom:175.382307pt;}
.y38_c02252{bottom:192.505819pt;}
.y48_c02252{bottom:193.221915pt;}
.y39_c02252{bottom:210.425587pt;}
.y49_c02252{bottom:211.141683pt;}
.y3a_c02252{bottom:228.265195pt;}
.y4a_c02252{bottom:229.061451pt;}
.y3b_c02252{bottom:246.184963pt;}
.y4b_c02252{bottom:246.901059pt;}
.y3c_c02252{bottom:264.104731pt;}
.y4c_c02252{bottom:264.820827pt;}
.y3d_c02252{bottom:281.944339pt;}
.y4d_c02252{bottom:282.660435pt;}
.y3e_c02252{bottom:299.864107pt;}
.y4e_c02252{bottom:300.580203pt;}
.y3f_c02252{bottom:317.703715pt;}
.y4f_c02252{bottom:318.499971pt;}
.y40_c02252{bottom:335.623483pt;}
.y50_c02252{bottom:336.339579pt;}
.y41_c02252{bottom:353.543251pt;}
.y51_c02252{bottom:354.259347pt;}
.y42_c02252{bottom:371.382859pt;}
.y52_c02252{bottom:372.106675pt;}
.y43_c02252{bottom:389.302627pt;}
.y53_c02252{bottom:390.026443pt;}
.y55_c02252{bottom:415.787067pt;}
.y54_c02252{bottom:439.227067pt;}
.y10_c02252{bottom:466.747200pt;}
.yf_c02252{bottom:480.347067pt;}
.ye_c02252{bottom:498.747067pt;}
.yd_c02252{bottom:517.147067pt;}
.yc_c02252{bottom:535.387067pt;}
.yb_c02252{bottom:552.587731pt;}
.ya_c02252{bottom:562.587203pt;}
.y12_c02252{bottom:579.627067pt;}
.y22_c02252{bottom:580.351179pt;}
.y13_c02252{bottom:597.147371pt;}
.y23_c02252{bottom:597.871483pt;}
.y14_c02252{bottom:614.667675pt;}
.y24_c02252{bottom:615.391787pt;}
.y15_c02252{bottom:632.187979pt;}
.y25_c02252{bottom:632.912091pt;}
.y16_c02252{bottom:649.708283pt;}
.y26_c02252{bottom:650.432395pt;}
.y17_c02252{bottom:667.228587pt;}
.y27_c02252{bottom:667.952699pt;}
.y18_c02252{bottom:684.748891pt;}
.y28_c02252{bottom:685.473003pt;}
.y19_c02252{bottom:702.269195pt;}
.y29_c02252{bottom:702.993307pt;}
.y1a_c02252{bottom:719.789499pt;}
.y2a_c02252{bottom:720.513611pt;}
.y1b_c02252{bottom:737.309803pt;}
.y2b_c02252{bottom:738.033915pt;}
.y1c_c02252{bottom:754.830107pt;}
.y2c_c02252{bottom:755.554219pt;}
.y1d_c02252{bottom:772.350411pt;}
.y2d_c02252{bottom:773.074523pt;}
.y1e_c02252{bottom:789.870715pt;}
.y2e_c02252{bottom:790.594827pt;}
.y1f_c02252{bottom:807.391019pt;}
.y2f_c02252{bottom:808.115131pt;}
.y20_c02252{bottom:824.911323pt;}
.y30_c02252{bottom:825.627371pt;}
.y21_c02252{bottom:842.431627pt;}
.y31_c02252{bottom:843.147675pt;}
.y33_c02252{bottom:883.947067pt;}
.y32_c02252{bottom:907.947067pt;}
.y9_c02252{bottom:935.467067pt;}
.y8_c02252{bottom:949.067067pt;}
.y7_c02252{bottom:967.467067pt;}
.y6_c02252{bottom:994.907067pt;}
.y5_c02252{bottom:1013.307067pt;}
.y2_c02252{bottom:1042.347067pt;}
.y1_c02252{bottom:1060.587067pt;}
.h3_c02252{height:37.801094pt;}
.h5_c02252{height:38.801406pt;}
.h7_c02252{height:38.832286pt;}
.h4_c02252{height:42.632812pt;}
.h6_c02252{height:46.468750pt;}
.h2_c02252{height:56.156250pt;}
.h1_c02252{height:56.843750pt;}
.h0_c02252{height:1122.666667pt;}
.w1_c02252{width:793.333333pt;}
.w0_c02252{width:793.626667pt;}
.x0_c02252{left:0.000000pt;}
.x1_c02252{left:113.440000pt;}
.x1f_c02252{left:128.801128pt;}
.x4_c02252{left:132.400000pt;}
.x3b_c02252{left:139.048600pt;}
.x22_c02252{left:140.559560pt;}
.x3f_c02252{left:150.885560pt;}
.x21_c02252{left:157.362136pt;}
.x3c_c02252{left:167.691104pt;}
.x1d_c02252{left:171.924536pt;}
.x1c_c02252{left:179.443544pt;}
.x3d_c02252{left:182.248160pt;}
.x24_c02252{left:188.080000pt;}
.x38_c02252{left:189.687008pt;}
.x1e_c02252{left:192.163600pt;}
.x20_c02252{left:197.283152pt;}
.x23_c02252{left:201.437072pt;}
.x3e_c02252{left:202.487224pt;}
.x40_c02252{left:207.597344pt;}
.x41_c02252{left:211.756312pt;}
.x17_c02252{left:214.401320pt;}
.x35_c02252{left:224.724944pt;}
.x18_c02252{left:231.361840pt;}
.x1a_c02252{left:234.402576pt;}
.x16_c02252{left:235.840112pt;}
.x6_c02252{left:239.680000pt;}
.x37_c02252{left:241.686800pt;}
.x39_c02252{left:244.647376pt;}
.x34_c02252{left:246.163736pt;}
.x15_c02252{left:250.959624pt;}
.x33_c02252{left:261.203088pt;}
.x19_c02252{left:272.642904pt;}
.x36_c02252{left:282.886368pt;}
.x3_c02252{left:302.720000pt;}
.x1b_c02252{left:312.644080pt;}
.x3a_c02252{left:322.969040pt;}
.x2_c02252{left:384.880000pt;}
.x32_c02252{left:407.842448pt;}
.x31_c02252{left:409.682120pt;}
.x30_c02252{left:418.721496pt;}
.x2f_c02252{left:420.561168pt;}
.x42_c02252{left:427.040000pt;}
.x25_c02252{left:428.640000pt;}
.x2e_c02252{left:433.120904pt;}
.x2d_c02252{left:435.040736pt;}
.x2c_c02252{left:442.400760pt;}
.x2b_c02252{left:476.641104pt;}
.x14_c02252{left:497.919224pt;}
.x2a_c02252{left:505.840720pt;}
.x13_c02252{left:519.519672pt;}
.x12_c02252{left:524.478904pt;}
.x29_c02252{left:533.040344pt;}
.x11_c02252{left:539.678576pt;}
.x10_c02252{left:542.639152pt;}
.xf_c02252{left:543.678560pt;}
.xe_c02252{left:549.518216pt;}
.x28_c02252{left:551.280752pt;}
.xd_c02252{left:552.478792pt;}
.xc_c02252{left:560.878224pt;}
.xb_c02252{left:567.758624pt;}
.x27_c02252{left:573.040184pt;}
.xa_c02252{left:579.038472pt;}
.x9_c02252{left:580.558840pt;}
.x8_c02252{left:581.519424pt;}
.x7_c02252{left:584.480000pt;}
.x26_c02252{left:605.680000pt;}
.x5_c02252{left:681.440440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d18d792ef8d38dc97bf5a345.woff2')format("woff");}.ff1_c02253{font-family:ff1_c02253;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02253;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v3_c02253{vertical-align:-6.480000px;}
.v5_c02253{vertical-align:-5.040600px;}
.v0_c02253{vertical-align:0.000000px;}
.v4_c02253{vertical-align:1.440000px;}
.v2_c02253{vertical-align:75.960000px;}
.v1_c02253{vertical-align:78.120000px;}
.ls39_c02253{letter-spacing:-0.014400px;}
.ls3a_c02253{letter-spacing:-0.006012px;}
.ls37_c02253{letter-spacing:0.000000px;}
.ls38_c02253{letter-spacing:0.007200px;}
.ls2b_c02253{letter-spacing:0.013176px;}
.ls2_c02253{letter-spacing:0.026352px;}
.ls0_c02253{letter-spacing:0.028800px;}
.ls5_c02253{letter-spacing:0.039528px;}
.ls3_c02253{letter-spacing:0.046116px;}
.ls3b_c02253{letter-spacing:0.052704px;}
.ls1d_c02253{letter-spacing:0.059292px;}
.lse_c02253{letter-spacing:0.065880px;}
.ls27_c02253{letter-spacing:0.072468px;}
.ls16_c02253{letter-spacing:0.079056px;}
.ls7_c02253{letter-spacing:0.092232px;}
.ls18_c02253{letter-spacing:0.098820px;}
.lsb_c02253{letter-spacing:0.138348px;}
.ls6_c02253{letter-spacing:0.144288px;}
.ls11_c02253{letter-spacing:0.151524px;}
.ls25_c02253{letter-spacing:0.158112px;}
.ls1_c02253{letter-spacing:0.164700px;}
.ls1a_c02253{letter-spacing:0.177876px;}
.ls9_c02253{letter-spacing:0.180000px;}
.ls26_c02253{letter-spacing:64.080000px;}
.ls22_c02253{letter-spacing:66.240000px;}
.ls1b_c02253{letter-spacing:66.600000px;}
.ls1c_c02253{letter-spacing:66.960000px;}
.ls10_c02253{letter-spacing:99.000000px;}
.ls12_c02253{letter-spacing:99.360000px;}
.ls15_c02253{letter-spacing:99.720000px;}
.ls23_c02253{letter-spacing:117.450000px;}
.lsa_c02253{letter-spacing:132.120000px;}
.lsc_c02253{letter-spacing:132.480000px;}
.ls13_c02253{letter-spacing:132.840000px;}
.ls32_c02253{letter-spacing:133.200000px;}
.lsd_c02253{letter-spacing:150.300000px;}
.ls30_c02253{letter-spacing:165.240000px;}
.ls31_c02253{letter-spacing:165.600000px;}
.ls2c_c02253{letter-spacing:165.960000px;}
.ls20_c02253{letter-spacing:183.330000px;}
.ls14_c02253{letter-spacing:186.480000px;}
.ls36_c02253{letter-spacing:201.240000px;}
.ls29_c02253{letter-spacing:214.560000px;}
.ls1f_c02253{letter-spacing:214.920000px;}
.ls21_c02253{letter-spacing:215.279400px;}
.ls28_c02253{letter-spacing:230.400000px;}
.ls17_c02253{letter-spacing:234.360000px;}
.ls19_c02253{letter-spacing:252.360000px;}
.ls2f_c02253{letter-spacing:267.120000px;}
.ls24_c02253{letter-spacing:268.920000px;}
.ls1e_c02253{letter-spacing:281.520000px;}
.ls2e_c02253{letter-spacing:281.880000px;}
.lsf_c02253{letter-spacing:296.640000px;}
.ls8_c02253{letter-spacing:314.640000px;}
.ls35_c02253{letter-spacing:329.400000px;}
.ls4_c02253{letter-spacing:333.000000px;}
.ls34_c02253{letter-spacing:347.760000px;}
.ls2d_c02253{letter-spacing:361.440000px;}
.ls2a_c02253{letter-spacing:414.720000px;}
.ls33_c02253{letter-spacing:417.600000px;}
.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;}
}
.ws7_c02253{word-spacing:-16.647876px;}
.ws0_c02253{word-spacing:-16.634700px;}
.ws14_c02253{word-spacing:-16.628112px;}
.ws8_c02253{word-spacing:-16.621524px;}
.ws3_c02253{word-spacing:-16.608348px;}
.wsd_c02253{word-spacing:-16.568820px;}
.ws12_c02253{word-spacing:-16.562232px;}
.ws15_c02253{word-spacing:-16.542468px;}
.ws10_c02253{word-spacing:-16.529292px;}
.ws2_c02253{word-spacing:-16.509528px;}
.ws1_c02253{word-spacing:-16.496352px;}
.ws1a_c02253{word-spacing:-16.483176px;}
.ws20_c02253{word-spacing:-0.086400px;}
.ws22_c02253{word-spacing:-0.057600px;}
.ws25_c02253{word-spacing:-0.054108px;}
.ws21_c02253{word-spacing:-0.007200px;}
.ws1f_c02253{word-spacing:0.000000px;}
.ws26_c02253{word-spacing:0.013176px;}
.ws23_c02253{word-spacing:0.026352px;}
.ws2a_c02253{word-spacing:0.039528px;}
.ws24_c02253{word-spacing:0.046116px;}
.ws27_c02253{word-spacing:0.052704px;}
.ws28_c02253{word-spacing:0.079056px;}
.ws29_c02253{word-spacing:0.375516px;}
.ws16_c02253{word-spacing:65.089440px;}
.ws13_c02253{word-spacing:67.238496px;}
.wsf_c02253{word-spacing:67.642380px;}
.wsa_c02253{word-spacing:99.996372px;}
.wse_c02253{word-spacing:99.998496px;}
.wsb_c02253{word-spacing:100.402380px;}
.ws1e_c02253{word-spacing:100.426608px;}
.ws17_c02253{word-spacing:100.933020px;}
.wsc_c02253{word-spacing:133.116372px;}
.ws5_c02253{word-spacing:133.546608px;}
.ws9_c02253{word-spacing:150.082380px;}
.ws1d_c02253{word-spacing:150.106608px;}
.ws1b_c02253{word-spacing:150.203304px;}
.ws4_c02253{word-spacing:182.866608px;}
.ws1c_c02253{word-spacing:215.831448px;}
.ws19_c02253{word-spacing:215.833572px;}
.ws11_c02253{word-spacing:215.986608px;}
.ws18_c02253{word-spacing:216.270000px;}
.ws6_c02253{word-spacing:448.546608px;}
._1_c02253{margin-left:-1.148292px;}
._4_c02253{width:104.490000px;}
._5_c02253{width:115.923132px;}
._6_c02253{width:133.316208px;}
._3_c02253{width:169.288704px;}
._b_c02253{width:214.319736px;}
._2_c02253{width:216.679284px;}
._7_c02253{width:232.060104px;}
._c_c02253{width:414.720000px;}
._0_c02253{width:485.985600px;}
._a_c02253{width:611.410968px;}
._9_c02253{width:644.528844px;}
._8_c02253{width:665.528616px;}
.fc0_c02253{color:rgb(0,0,0);}
.fs1_c02253{font-size:24.120000px;}
.fs4_c02253{font-size:54.000000px;}
.fs3_c02253{font-size:60.120000px;}
.fs2_c02253{font-size:65.880000px;}
.fs0_c02253{font-size:72.000000px;}
.y0_c02253{bottom:0.000000px;}
.y4_c02253{bottom:57.360450px;}
.y3_c02253{bottom:78.060450px;}
.y3d_c02253{bottom:125.490450px;}
.y3c_c02253{bottom:146.190450px;}
.y3b_c02253{bottom:165.180450px;}
.y3a_c02253{bottom:184.170450px;}
.y39_c02253{bottom:205.230450px;}
.y38_c02253{bottom:225.930450px;}
.y37_c02253{bottom:244.920450px;}
.y36_c02253{bottom:263.820450px;}
.y35_c02253{bottom:282.810450px;}
.y34_c02253{bottom:301.800450px;}
.y33_c02253{bottom:322.500600px;}
.y32_c02253{bottom:341.130450px;}
.y30_c02253{bottom:358.680450px;}
.y2e_c02253{bottom:377.130450px;}
.y2f_c02253{bottom:377.670450px;}
.y31_c02253{bottom:396.660450px;}
.y2d_c02253{bottom:417.269550px;}
.y2c_c02253{bottom:432.750000px;}
.y2b_c02253{bottom:448.230450px;}
.y2a_c02253{bottom:466.590600px;}
.y29_c02253{bottom:487.290600px;}
.y28_c02253{bottom:506.190600px;}
.y27_c02253{bottom:525.180600px;}
.y26_c02253{bottom:546.240450px;}
.y25_c02253{bottom:566.940450px;}
.y24_c02253{bottom:585.930450px;}
.y23_c02253{bottom:604.920450px;}
.y22_c02253{bottom:623.910450px;}
.y21_c02253{bottom:642.900450px;}
.y20_c02253{bottom:661.800450px;}
.y1f_c02253{bottom:680.430450px;}
.y1e_c02253{bottom:698.070450px;}
.y1b_c02253{bottom:716.430450px;}
.y1d_c02253{bottom:717.060450px;}
.y1c_c02253{bottom:736.050450px;}
.y1a_c02253{bottom:756.570450px;}
.y19_c02253{bottom:772.140000px;}
.y18_c02253{bottom:787.620450px;}
.y17_c02253{bottom:805.890450px;}
.y16_c02253{bottom:826.590450px;}
.y15_c02253{bottom:845.580450px;}
.y14_c02253{bottom:864.570450px;}
.y13_c02253{bottom:885.630450px;}
.y12_c02253{bottom:906.330450px;}
.y11_c02253{bottom:925.320450px;}
.y10_c02253{bottom:944.310450px;}
.yf_c02253{bottom:963.210450px;}
.ye_c02253{bottom:982.200450px;}
.yd_c02253{bottom:1002.900450px;}
.yc_c02253{bottom:1021.530450px;}
.ya_c02253{bottom:1039.170450px;}
.y8_c02253{bottom:1057.530450px;}
.y9_c02253{bottom:1058.070450px;}
.yb_c02253{bottom:1077.060450px;}
.y7_c02253{bottom:1096.320450px;}
.y6_c02253{bottom:1120.170450px;}
.y5_c02253{bottom:1139.970450px;}
.y2_c02253{bottom:1172.640450px;}
.y1_c02253{bottom:1193.160450px;}
.h3_c02253{height:21.422988px;}
.h8_c02253{height:47.961914px;}
.h7_c02253{height:53.397598px;}
.h5_c02253{height:58.513535px;}
.h2_c02253{height:63.175781px;}
.h1_c02253{height:63.949219px;}
.h9_c02253{height:134.473535px;}
.h6_c02253{height:139.909219px;}
.h4_c02253{height:142.069219px;}
.h0_c02253{height:1263.000000px;}
.w1_c02253{width:892.500000px;}
.w0_c02253{width:892.830000px;}
.x0_c02253{left:0.000000px;}
.x1_c02253{left:127.620000px;}
.x3_c02253{left:135.630000px;}
.x8_c02253{left:160.920000px;}
.x5_c02253{left:269.730000px;}
.x4_c02253{left:272.430000px;}
.xf_c02253{left:280.260000px;}
.xa_c02253{left:284.400000px;}
.x9_c02253{left:290.610000px;}
.xb_c02253{left:417.780000px;}
.x2_c02253{left:432.990000px;}
.xc_c02253{left:460.800000px;}
.x6_c02253{left:465.210000px;}
.x10_c02253{left:468.630000px;}
.x12_c02253{left:599.220000px;}
.xe_c02253{left:612.540000px;}
.x11_c02253{left:618.480000px;}
.x7_c02253{left:629.550000px;}
.xd_c02253{left:639.810000px;}
@media print{
.v3_c02253{vertical-align:-5.760000pt;}
.v5_c02253{vertical-align:-4.480533pt;}
.v0_c02253{vertical-align:0.000000pt;}
.v4_c02253{vertical-align:1.280000pt;}
.v2_c02253{vertical-align:67.520000pt;}
.v1_c02253{vertical-align:69.440000pt;}
.ls39_c02253{letter-spacing:-0.012800pt;}
.ls3a_c02253{letter-spacing:-0.005344pt;}
.ls37_c02253{letter-spacing:0.000000pt;}
.ls38_c02253{letter-spacing:0.006400pt;}
.ls2b_c02253{letter-spacing:0.011712pt;}
.ls2_c02253{letter-spacing:0.023424pt;}
.ls0_c02253{letter-spacing:0.025600pt;}
.ls5_c02253{letter-spacing:0.035136pt;}
.ls3_c02253{letter-spacing:0.040992pt;}
.ls3b_c02253{letter-spacing:0.046848pt;}
.ls1d_c02253{letter-spacing:0.052704pt;}
.lse_c02253{letter-spacing:0.058560pt;}
.ls27_c02253{letter-spacing:0.064416pt;}
.ls16_c02253{letter-spacing:0.070272pt;}
.ls7_c02253{letter-spacing:0.081984pt;}
.ls18_c02253{letter-spacing:0.087840pt;}
.lsb_c02253{letter-spacing:0.122976pt;}
.ls6_c02253{letter-spacing:0.128256pt;}
.ls11_c02253{letter-spacing:0.134688pt;}
.ls25_c02253{letter-spacing:0.140544pt;}
.ls1_c02253{letter-spacing:0.146400pt;}
.ls1a_c02253{letter-spacing:0.158112pt;}
.ls9_c02253{letter-spacing:0.160000pt;}
.ls26_c02253{letter-spacing:56.960000pt;}
.ls22_c02253{letter-spacing:58.880000pt;}
.ls1b_c02253{letter-spacing:59.200000pt;}
.ls1c_c02253{letter-spacing:59.520000pt;}
.ls10_c02253{letter-spacing:88.000000pt;}
.ls12_c02253{letter-spacing:88.320000pt;}
.ls15_c02253{letter-spacing:88.640000pt;}
.ls23_c02253{letter-spacing:104.400000pt;}
.lsa_c02253{letter-spacing:117.440000pt;}
.lsc_c02253{letter-spacing:117.760000pt;}
.ls13_c02253{letter-spacing:118.080000pt;}
.ls32_c02253{letter-spacing:118.400000pt;}
.lsd_c02253{letter-spacing:133.600000pt;}
.ls30_c02253{letter-spacing:146.880000pt;}
.ls31_c02253{letter-spacing:147.200000pt;}
.ls2c_c02253{letter-spacing:147.520000pt;}
.ls20_c02253{letter-spacing:162.960000pt;}
.ls14_c02253{letter-spacing:165.760000pt;}
.ls36_c02253{letter-spacing:178.880000pt;}
.ls29_c02253{letter-spacing:190.720000pt;}
.ls1f_c02253{letter-spacing:191.040000pt;}
.ls21_c02253{letter-spacing:191.359467pt;}
.ls28_c02253{letter-spacing:204.800000pt;}
.ls17_c02253{letter-spacing:208.320000pt;}
.ls19_c02253{letter-spacing:224.320000pt;}
.ls2f_c02253{letter-spacing:237.440000pt;}
.ls24_c02253{letter-spacing:239.040000pt;}
.ls1e_c02253{letter-spacing:250.240000pt;}
.ls2e_c02253{letter-spacing:250.560000pt;}
.lsf_c02253{letter-spacing:263.680000pt;}
.ls8_c02253{letter-spacing:279.680000pt;}
.ls35_c02253{letter-spacing:292.800000pt;}
.ls4_c02253{letter-spacing:296.000000pt;}
.ls34_c02253{letter-spacing:309.120000pt;}
.ls2d_c02253{letter-spacing:321.280000pt;}
.ls2a_c02253{letter-spacing:368.640000pt;}
.ls33_c02253{letter-spacing:371.200000pt;}
.ws7_c02253{word-spacing:-14.798112pt;}
.ws0_c02253{word-spacing:-14.786400pt;}
.ws14_c02253{word-spacing:-14.780544pt;}
.ws8_c02253{word-spacing:-14.774688pt;}
.ws3_c02253{word-spacing:-14.762976pt;}
.wsd_c02253{word-spacing:-14.727840pt;}
.ws12_c02253{word-spacing:-14.721984pt;}
.ws15_c02253{word-spacing:-14.704416pt;}
.ws10_c02253{word-spacing:-14.692704pt;}
.ws2_c02253{word-spacing:-14.675136pt;}
.ws1_c02253{word-spacing:-14.663424pt;}
.ws1a_c02253{word-spacing:-14.651712pt;}
.ws20_c02253{word-spacing:-0.076800pt;}
.ws22_c02253{word-spacing:-0.051200pt;}
.ws25_c02253{word-spacing:-0.048096pt;}
.ws21_c02253{word-spacing:-0.006400pt;}
.ws1f_c02253{word-spacing:0.000000pt;}
.ws26_c02253{word-spacing:0.011712pt;}
.ws23_c02253{word-spacing:0.023424pt;}
.ws2a_c02253{word-spacing:0.035136pt;}
.ws24_c02253{word-spacing:0.040992pt;}
.ws27_c02253{word-spacing:0.046848pt;}
.ws28_c02253{word-spacing:0.070272pt;}
.ws29_c02253{word-spacing:0.333792pt;}
.ws16_c02253{word-spacing:57.857280pt;}
.ws13_c02253{word-spacing:59.767552pt;}
.wsf_c02253{word-spacing:60.126560pt;}
.wsa_c02253{word-spacing:88.885664pt;}
.wse_c02253{word-spacing:88.887552pt;}
.wsb_c02253{word-spacing:89.246560pt;}
.ws1e_c02253{word-spacing:89.268096pt;}
.ws17_c02253{word-spacing:89.718240pt;}
.wsc_c02253{word-spacing:118.325664pt;}
.ws5_c02253{word-spacing:118.708096pt;}
.ws9_c02253{word-spacing:133.406560pt;}
.ws1d_c02253{word-spacing:133.428096pt;}
.ws1b_c02253{word-spacing:133.514048pt;}
.ws4_c02253{word-spacing:162.548096pt;}
.ws1c_c02253{word-spacing:191.850176pt;}
.ws19_c02253{word-spacing:191.852064pt;}
.ws11_c02253{word-spacing:191.988096pt;}
.ws18_c02253{word-spacing:192.240000pt;}
.ws6_c02253{word-spacing:398.708096pt;}
._1_c02253{margin-left:-1.020704pt;}
._4_c02253{width:92.880000pt;}
._5_c02253{width:103.042784pt;}
._6_c02253{width:118.503296pt;}
._3_c02253{width:150.478848pt;}
._b_c02253{width:190.506432pt;}
._2_c02253{width:192.603808pt;}
._7_c02253{width:206.275648pt;}
._c_c02253{width:368.640000pt;}
._0_c02253{width:431.987200pt;}
._a_c02253{width:543.476416pt;}
._9_c02253{width:572.914528pt;}
._8_c02253{width:591.580992pt;}
.fs1_c02253{font-size:21.440000pt;}
.fs4_c02253{font-size:48.000000pt;}
.fs3_c02253{font-size:53.440000pt;}
.fs2_c02253{font-size:58.560000pt;}
.fs0_c02253{font-size:64.000000pt;}
.y0_c02253{bottom:0.000000pt;}
.y4_c02253{bottom:50.987067pt;}
.y3_c02253{bottom:69.387067pt;}
.y3d_c02253{bottom:111.547067pt;}
.y3c_c02253{bottom:129.947067pt;}
.y3b_c02253{bottom:146.827067pt;}
.y3a_c02253{bottom:163.707067pt;}
.y39_c02253{bottom:182.427067pt;}
.y38_c02253{bottom:200.827067pt;}
.y37_c02253{bottom:217.707067pt;}
.y36_c02253{bottom:234.507067pt;}
.y35_c02253{bottom:251.387067pt;}
.y34_c02253{bottom:268.267067pt;}
.y33_c02253{bottom:286.667200pt;}
.y32_c02253{bottom:303.227067pt;}
.y30_c02253{bottom:318.827067pt;}
.y2e_c02253{bottom:335.227067pt;}
.y2f_c02253{bottom:335.707067pt;}
.y31_c02253{bottom:352.587067pt;}
.y2d_c02253{bottom:370.906267pt;}
.y2c_c02253{bottom:384.666667pt;}
.y2b_c02253{bottom:398.427067pt;}
.y2a_c02253{bottom:414.747200pt;}
.y29_c02253{bottom:433.147200pt;}
.y28_c02253{bottom:449.947200pt;}
.y27_c02253{bottom:466.827200pt;}
.y26_c02253{bottom:485.547067pt;}
.y25_c02253{bottom:503.947067pt;}
.y24_c02253{bottom:520.827067pt;}
.y23_c02253{bottom:537.707067pt;}
.y22_c02253{bottom:554.587067pt;}
.y21_c02253{bottom:571.467067pt;}
.y20_c02253{bottom:588.267067pt;}
.y1f_c02253{bottom:604.827067pt;}
.y1e_c02253{bottom:620.507067pt;}
.y1b_c02253{bottom:636.827067pt;}
.y1d_c02253{bottom:637.387067pt;}
.y1c_c02253{bottom:654.267067pt;}
.y1a_c02253{bottom:672.507067pt;}
.y19_c02253{bottom:686.346667pt;}
.y18_c02253{bottom:700.107067pt;}
.y17_c02253{bottom:716.347067pt;}
.y16_c02253{bottom:734.747067pt;}
.y15_c02253{bottom:751.627067pt;}
.y14_c02253{bottom:768.507067pt;}
.y13_c02253{bottom:787.227067pt;}
.y12_c02253{bottom:805.627067pt;}
.y11_c02253{bottom:822.507067pt;}
.y10_c02253{bottom:839.387067pt;}
.yf_c02253{bottom:856.187067pt;}
.ye_c02253{bottom:873.067067pt;}
.yd_c02253{bottom:891.467067pt;}
.yc_c02253{bottom:908.027067pt;}
.ya_c02253{bottom:923.707067pt;}
.y8_c02253{bottom:940.027067pt;}
.y9_c02253{bottom:940.507067pt;}
.yb_c02253{bottom:957.387067pt;}
.y7_c02253{bottom:974.507067pt;}
.y6_c02253{bottom:995.707067pt;}
.y5_c02253{bottom:1013.307067pt;}
.y2_c02253{bottom:1042.347067pt;}
.y1_c02253{bottom:1060.587067pt;}
.h3_c02253{height:19.042656pt;}
.h8_c02253{height:42.632812pt;}
.h7_c02253{height:47.464531pt;}
.h5_c02253{height:52.012031pt;}
.h2_c02253{height:56.156250pt;}
.h1_c02253{height:56.843750pt;}
.h9_c02253{height:119.532031pt;}
.h6_c02253{height:124.363750pt;}
.h4_c02253{height:126.283750pt;}
.h0_c02253{height:1122.666667pt;}
.w1_c02253{width:793.333333pt;}
.w0_c02253{width:793.626667pt;}
.x0_c02253{left:0.000000pt;}
.x1_c02253{left:113.440000pt;}
.x3_c02253{left:120.560000pt;}
.x8_c02253{left:143.040000pt;}
.x5_c02253{left:239.760000pt;}
.x4_c02253{left:242.160000pt;}
.xf_c02253{left:249.120000pt;}
.xa_c02253{left:252.800000pt;}
.x9_c02253{left:258.320000pt;}
.xb_c02253{left:371.360000pt;}
.x2_c02253{left:384.880000pt;}
.xc_c02253{left:409.600000pt;}
.x6_c02253{left:413.520000pt;}
.x10_c02253{left:416.560000pt;}
.x12_c02253{left:532.640000pt;}
.xe_c02253{left:544.480000pt;}
.x11_c02253{left:549.760000pt;}
.x7_c02253{left:559.600000pt;}
.xd_c02253{left:568.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_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_5a3b624fa468ecdfc6121282.woff2')format("woff");}.ff1_c02254{font-family:ff1_c02254;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02254;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v3_c02254{vertical-align:-6.480000px;}
.v2_c02254{vertical-align:-5.040000px;}
.v0_c02254{vertical-align:0.000000px;}
.v4_c02254{vertical-align:1.440000px;}
.v1_c02254{vertical-align:40.320000px;}
.ls38_c02254{letter-spacing:-0.052704px;}
.ls35_c02254{letter-spacing:-0.014400px;}
.ls36_c02254{letter-spacing:-0.006012px;}
.ls34_c02254{letter-spacing:0.000000px;}
.ls2_c02254{letter-spacing:0.006588px;}
.ls3_c02254{letter-spacing:0.013176px;}
.ls37_c02254{letter-spacing:0.026352px;}
.ls0_c02254{letter-spacing:0.028800px;}
.ls22_c02254{letter-spacing:0.039528px;}
.ls18_c02254{letter-spacing:0.059292px;}
.ls7_c02254{letter-spacing:0.065880px;}
.ls26_c02254{letter-spacing:0.072468px;}
.ls11_c02254{letter-spacing:0.079056px;}
.ls2c_c02254{letter-spacing:0.085644px;}
.ls5_c02254{letter-spacing:0.092232px;}
.ls14_c02254{letter-spacing:0.098820px;}
.lsd_c02254{letter-spacing:0.138348px;}
.ls4_c02254{letter-spacing:0.144288px;}
.lsa_c02254{letter-spacing:0.151524px;}
.ls24_c02254{letter-spacing:0.158112px;}
.ls1_c02254{letter-spacing:0.164700px;}
.ls13_c02254{letter-spacing:0.177876px;}
.ls1a_c02254{letter-spacing:0.180000px;}
.ls25_c02254{letter-spacing:64.080000px;}
.ls20_c02254{letter-spacing:66.240000px;}
.ls16_c02254{letter-spacing:66.600000px;}
.ls17_c02254{letter-spacing:66.960000px;}
.ls9_c02254{letter-spacing:99.000000px;}
.lsb_c02254{letter-spacing:99.360000px;}
.ls10_c02254{letter-spacing:99.720000px;}
.ls31_c02254{letter-spacing:115.920000px;}
.ls21_c02254{letter-spacing:117.450000px;}
.ls30_c02254{letter-spacing:117.540000px;}
.ls1b_c02254{letter-spacing:132.120000px;}
.lse_c02254{letter-spacing:132.840000px;}
.lsc_c02254{letter-spacing:150.300000px;}
.ls32_c02254{letter-spacing:165.240000px;}
.ls33_c02254{letter-spacing:165.600000px;}
.ls2a_c02254{letter-spacing:165.960000px;}
.ls2f_c02254{letter-spacing:181.800000px;}
.ls1d_c02254{letter-spacing:183.330000px;}
.lsf_c02254{letter-spacing:186.480000px;}
.ls2e_c02254{letter-spacing:201.240000px;}
.ls28_c02254{letter-spacing:214.560000px;}
.ls1c_c02254{letter-spacing:214.920000px;}
.ls1e_c02254{letter-spacing:215.279400px;}
.ls27_c02254{letter-spacing:230.400000px;}
.ls12_c02254{letter-spacing:234.360000px;}
.ls15_c02254{letter-spacing:252.360000px;}
.ls23_c02254{letter-spacing:268.920000px;}
.ls19_c02254{letter-spacing:281.520000px;}
.ls8_c02254{letter-spacing:296.640000px;}
.ls1f_c02254{letter-spacing:314.640000px;}
.ls6_c02254{letter-spacing:347.760000px;}
.ls2d_c02254{letter-spacing:362.520000px;}
.ls2b_c02254{letter-spacing:394.200000px;}
.ls29_c02254{letter-spacing:414.720000px;}
.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;}
}
.ws1_c02254{word-spacing:-16.647876px;}
.ws0_c02254{word-spacing:-16.634700px;}
.ws13_c02254{word-spacing:-16.628112px;}
.ws2_c02254{word-spacing:-16.621524px;}
.ws6_c02254{word-spacing:-16.608348px;}
.wsc_c02254{word-spacing:-16.568820px;}
.ws10_c02254{word-spacing:-16.562232px;}
.ws14_c02254{word-spacing:-16.542468px;}
.wse_c02254{word-spacing:-16.529292px;}
.ws12_c02254{word-spacing:-16.509528px;}
.ws1e_c02254{word-spacing:-16.417296px;}
.ws20_c02254{word-spacing:-0.086400px;}
.ws24_c02254{word-spacing:-0.054108px;}
.ws1f_c02254{word-spacing:0.000000px;}
.ws28_c02254{word-spacing:0.006588px;}
.ws25_c02254{word-spacing:0.013176px;}
.ws21_c02254{word-spacing:0.026352px;}
.ws27_c02254{word-spacing:0.032940px;}
.ws26_c02254{word-spacing:0.052704px;}
.ws29_c02254{word-spacing:0.065880px;}
.ws23_c02254{word-spacing:0.079056px;}
.ws22_c02254{word-spacing:0.085644px;}
.ws15_c02254{word-spacing:65.089440px;}
.ws11_c02254{word-spacing:67.238496px;}
.wsd_c02254{word-spacing:67.642380px;}
.ws8_c02254{word-spacing:99.996372px;}
.wsb_c02254{word-spacing:99.998496px;}
.ws1c_c02254{word-spacing:100.358496px;}
.ws9_c02254{word-spacing:100.402380px;}
.ws17_c02254{word-spacing:100.426608px;}
.ws18_c02254{word-spacing:100.933020px;}
.wsa_c02254{word-spacing:116.962380px;}
.ws4_c02254{word-spacing:133.546608px;}
.ws16_c02254{word-spacing:134.053020px;}
.ws7_c02254{word-spacing:150.082380px;}
.ws1b_c02254{word-spacing:150.106608px;}
.ws3_c02254{word-spacing:182.842380px;}
.ws5_c02254{word-spacing:182.866608px;}
.ws1d_c02254{word-spacing:215.831448px;}
.ws1a_c02254{word-spacing:215.833572px;}
.wsf_c02254{word-spacing:215.986608px;}
.ws19_c02254{word-spacing:216.270000px;}
._1_c02254{margin-left:-1.148292px;}
._4_c02254{width:104.490000px;}
._5_c02254{width:115.923132px;}
._8_c02254{width:133.316208px;}
._3_c02254{width:169.288704px;}
._6_c02254{width:214.319736px;}
._2_c02254{width:216.679284px;}
._9_c02254{width:232.060104px;}
._c_c02254{width:414.809352px;}
._0_c02254{width:485.985600px;}
._d_c02254{width:612.126720px;}
._b_c02254{width:644.886720px;}
._a_c02254{width:665.528616px;}
._7_c02254{width:1378.800000px;}
.fc0_c02254{color:rgb(0,0,0);}
.fs1_c02254{font-size:54.000000px;}
.fs3_c02254{font-size:60.120000px;}
.fs2_c02254{font-size:65.880000px;}
.fs0_c02254{font-size:72.000000px;}
.y0_c02254{bottom:0.000000px;}
.y4_c02254{bottom:57.360450px;}
.y3_c02254{bottom:78.060450px;}
.y3e_c02254{bottom:115.860600px;}
.y3d_c02254{bottom:131.341050px;}
.y3c_c02254{bottom:146.910600px;}
.y3b_c02254{bottom:162.391050px;}
.y3a_c02254{bottom:177.960600px;}
.y39_c02254{bottom:196.230450px;}
.y38_c02254{bottom:216.930450px;}
.y37_c02254{bottom:235.920450px;}
.y36_c02254{bottom:254.820450px;}
.y35_c02254{bottom:275.880450px;}
.y34_c02254{bottom:296.580450px;}
.y33_c02254{bottom:315.570450px;}
.y32_c02254{bottom:334.560450px;}
.y31_c02254{bottom:353.550450px;}
.y30_c02254{bottom:372.540600px;}
.y2f_c02254{bottom:391.530450px;}
.y2e_c02254{bottom:410.070450px;}
.y2d_c02254{bottom:427.710600px;}
.y2c_c02254{bottom:436.620600px;}
.y2b_c02254{bottom:467.221050px;}
.y2a_c02254{bottom:482.790600px;}
.y29_c02254{bottom:498.271050px;}
.y28_c02254{bottom:513.840600px;}
.y27_c02254{bottom:532.110450px;}
.y26_c02254{bottom:552.810450px;}
.y25_c02254{bottom:571.800450px;}
.y24_c02254{bottom:590.790450px;}
.y23_c02254{bottom:611.850450px;}
.y22_c02254{bottom:632.550450px;}
.y21_c02254{bottom:651.450450px;}
.y20_c02254{bottom:670.440450px;}
.y1f_c02254{bottom:689.430450px;}
.y1e_c02254{bottom:710.130450px;}
.y1d_c02254{bottom:730.830450px;}
.y1c_c02254{bottom:749.460450px;}
.y1a_c02254{bottom:767.100450px;}
.y19_c02254{bottom:776.010450px;}
.y1b_c02254{bottom:786.000450px;}
.y18_c02254{bottom:806.610000px;}
.y17_c02254{bottom:822.090450px;}
.y16_c02254{bottom:837.660000px;}
.y15_c02254{bottom:853.140450px;}
.y14_c02254{bottom:871.410450px;}
.y13_c02254{bottom:892.110600px;}
.y12_c02254{bottom:911.100450px;}
.y11_c02254{bottom:930.090450px;}
.y10_c02254{bottom:951.150450px;}
.yf_c02254{bottom:971.850450px;}
.ye_c02254{bottom:990.840450px;}
.yd_c02254{bottom:1009.830450px;}
.yc_c02254{bottom:1028.820450px;}
.yb_c02254{bottom:1047.720450px;}
.ya_c02254{bottom:1068.420450px;}
.y9_c02254{bottom:1087.050450px;}
.y7_c02254{bottom:1104.690450px;}
.y6_c02254{bottom:1113.600450px;}
.y8_c02254{bottom:1123.680450px;}
.y5_c02254{bottom:1144.200450px;}
.y2_c02254{bottom:1172.640450px;}
.y1_c02254{bottom:1193.160450px;}
.h3_c02254{height:47.961914px;}
.h6_c02254{height:53.397598px;}
.h5_c02254{height:58.513535px;}
.h2_c02254{height:63.175781px;}
.h1_c02254{height:63.949219px;}
.h7_c02254{height:103.909219px;}
.h4_c02254{height:104.269219px;}
.h0_c02254{height:1263.000000px;}
.w1_c02254{width:892.500000px;}
.w0_c02254{width:892.830000px;}
.x0_c02254{left:0.000000px;}
.x1_c02254{left:127.620000px;}
.x3_c02254{left:135.630000px;}
.x9_c02254{left:160.920000px;}
.x4_c02254{left:257.400000px;}
.xa_c02254{left:266.310000px;}
.xd_c02254{left:303.660000px;}
.x6_c02254{left:418.950000px;}
.xb_c02254{left:429.030000px;}
.x2_c02254{left:432.990000px;}
.x5_c02254{left:465.210000px;}
.xc_c02254{left:597.690000px;}
.x8_c02254{left:606.420000px;}
.x7_c02254{left:639.810000px;}
@media print{
.v3_c02254{vertical-align:-5.760000pt;}
.v2_c02254{vertical-align:-4.480000pt;}
.v0_c02254{vertical-align:0.000000pt;}
.v4_c02254{vertical-align:1.280000pt;}
.v1_c02254{vertical-align:35.840000pt;}
.ls38_c02254{letter-spacing:-0.046848pt;}
.ls35_c02254{letter-spacing:-0.012800pt;}
.ls36_c02254{letter-spacing:-0.005344pt;}
.ls34_c02254{letter-spacing:0.000000pt;}
.ls2_c02254{letter-spacing:0.005856pt;}
.ls3_c02254{letter-spacing:0.011712pt;}
.ls37_c02254{letter-spacing:0.023424pt;}
.ls0_c02254{letter-spacing:0.025600pt;}
.ls22_c02254{letter-spacing:0.035136pt;}
.ls18_c02254{letter-spacing:0.052704pt;}
.ls7_c02254{letter-spacing:0.058560pt;}
.ls26_c02254{letter-spacing:0.064416pt;}
.ls11_c02254{letter-spacing:0.070272pt;}
.ls2c_c02254{letter-spacing:0.076128pt;}
.ls5_c02254{letter-spacing:0.081984pt;}
.ls14_c02254{letter-spacing:0.087840pt;}
.lsd_c02254{letter-spacing:0.122976pt;}
.ls4_c02254{letter-spacing:0.128256pt;}
.lsa_c02254{letter-spacing:0.134688pt;}
.ls24_c02254{letter-spacing:0.140544pt;}
.ls1_c02254{letter-spacing:0.146400pt;}
.ls13_c02254{letter-spacing:0.158112pt;}
.ls1a_c02254{letter-spacing:0.160000pt;}
.ls25_c02254{letter-spacing:56.960000pt;}
.ls20_c02254{letter-spacing:58.880000pt;}
.ls16_c02254{letter-spacing:59.200000pt;}
.ls17_c02254{letter-spacing:59.520000pt;}
.ls9_c02254{letter-spacing:88.000000pt;}
.lsb_c02254{letter-spacing:88.320000pt;}
.ls10_c02254{letter-spacing:88.640000pt;}
.ls31_c02254{letter-spacing:103.040000pt;}
.ls21_c02254{letter-spacing:104.400000pt;}
.ls30_c02254{letter-spacing:104.480000pt;}
.ls1b_c02254{letter-spacing:117.440000pt;}
.lse_c02254{letter-spacing:118.080000pt;}
.lsc_c02254{letter-spacing:133.600000pt;}
.ls32_c02254{letter-spacing:146.880000pt;}
.ls33_c02254{letter-spacing:147.200000pt;}
.ls2a_c02254{letter-spacing:147.520000pt;}
.ls2f_c02254{letter-spacing:161.600000pt;}
.ls1d_c02254{letter-spacing:162.960000pt;}
.lsf_c02254{letter-spacing:165.760000pt;}
.ls2e_c02254{letter-spacing:178.880000pt;}
.ls28_c02254{letter-spacing:190.720000pt;}
.ls1c_c02254{letter-spacing:191.040000pt;}
.ls1e_c02254{letter-spacing:191.359467pt;}
.ls27_c02254{letter-spacing:204.800000pt;}
.ls12_c02254{letter-spacing:208.320000pt;}
.ls15_c02254{letter-spacing:224.320000pt;}
.ls23_c02254{letter-spacing:239.040000pt;}
.ls19_c02254{letter-spacing:250.240000pt;}
.ls8_c02254{letter-spacing:263.680000pt;}
.ls1f_c02254{letter-spacing:279.680000pt;}
.ls6_c02254{letter-spacing:309.120000pt;}
.ls2d_c02254{letter-spacing:322.240000pt;}
.ls2b_c02254{letter-spacing:350.400000pt;}
.ls29_c02254{letter-spacing:368.640000pt;}
.ws1_c02254{word-spacing:-14.798112pt;}
.ws0_c02254{word-spacing:-14.786400pt;}
.ws13_c02254{word-spacing:-14.780544pt;}
.ws2_c02254{word-spacing:-14.774688pt;}
.ws6_c02254{word-spacing:-14.762976pt;}
.wsc_c02254{word-spacing:-14.727840pt;}
.ws10_c02254{word-spacing:-14.721984pt;}
.ws14_c02254{word-spacing:-14.704416pt;}
.wse_c02254{word-spacing:-14.692704pt;}
.ws12_c02254{word-spacing:-14.675136pt;}
.ws1e_c02254{word-spacing:-14.593152pt;}
.ws20_c02254{word-spacing:-0.076800pt;}
.ws24_c02254{word-spacing:-0.048096pt;}
.ws1f_c02254{word-spacing:0.000000pt;}
.ws28_c02254{word-spacing:0.005856pt;}
.ws25_c02254{word-spacing:0.011712pt;}
.ws21_c02254{word-spacing:0.023424pt;}
.ws27_c02254{word-spacing:0.029280pt;}
.ws26_c02254{word-spacing:0.046848pt;}
.ws29_c02254{word-spacing:0.058560pt;}
.ws23_c02254{word-spacing:0.070272pt;}
.ws22_c02254{word-spacing:0.076128pt;}
.ws15_c02254{word-spacing:57.857280pt;}
.ws11_c02254{word-spacing:59.767552pt;}
.wsd_c02254{word-spacing:60.126560pt;}
.ws8_c02254{word-spacing:88.885664pt;}
.wsb_c02254{word-spacing:88.887552pt;}
.ws1c_c02254{word-spacing:89.207552pt;}
.ws9_c02254{word-spacing:89.246560pt;}
.ws17_c02254{word-spacing:89.268096pt;}
.ws18_c02254{word-spacing:89.718240pt;}
.wsa_c02254{word-spacing:103.966560pt;}
.ws4_c02254{word-spacing:118.708096pt;}
.ws16_c02254{word-spacing:119.158240pt;}
.ws7_c02254{word-spacing:133.406560pt;}
.ws1b_c02254{word-spacing:133.428096pt;}
.ws3_c02254{word-spacing:162.526560pt;}
.ws5_c02254{word-spacing:162.548096pt;}
.ws1d_c02254{word-spacing:191.850176pt;}
.ws1a_c02254{word-spacing:191.852064pt;}
.wsf_c02254{word-spacing:191.988096pt;}
.ws19_c02254{word-spacing:192.240000pt;}
._1_c02254{margin-left:-1.020704pt;}
._4_c02254{width:92.880000pt;}
._5_c02254{width:103.042784pt;}
._8_c02254{width:118.503296pt;}
._3_c02254{width:150.478848pt;}
._6_c02254{width:190.506432pt;}
._2_c02254{width:192.603808pt;}
._9_c02254{width:206.275648pt;}
._c_c02254{width:368.719424pt;}
._0_c02254{width:431.987200pt;}
._d_c02254{width:544.112640pt;}
._b_c02254{width:573.232640pt;}
._a_c02254{width:591.580992pt;}
._7_c02254{width:1225.600000pt;}
.fs1_c02254{font-size:48.000000pt;}
.fs3_c02254{font-size:53.440000pt;}
.fs2_c02254{font-size:58.560000pt;}
.fs0_c02254{font-size:64.000000pt;}
.y0_c02254{bottom:0.000000pt;}
.y4_c02254{bottom:50.987067pt;}
.y3_c02254{bottom:69.387067pt;}
.y3e_c02254{bottom:102.987200pt;}
.y3d_c02254{bottom:116.747600pt;}
.y3c_c02254{bottom:130.587200pt;}
.y3b_c02254{bottom:144.347600pt;}
.y3a_c02254{bottom:158.187200pt;}
.y39_c02254{bottom:174.427067pt;}
.y38_c02254{bottom:192.827067pt;}
.y37_c02254{bottom:209.707067pt;}
.y36_c02254{bottom:226.507067pt;}
.y35_c02254{bottom:245.227067pt;}
.y34_c02254{bottom:263.627067pt;}
.y33_c02254{bottom:280.507067pt;}
.y32_c02254{bottom:297.387067pt;}
.y31_c02254{bottom:314.267067pt;}
.y30_c02254{bottom:331.147200pt;}
.y2f_c02254{bottom:348.027067pt;}
.y2e_c02254{bottom:364.507067pt;}
.y2d_c02254{bottom:380.187200pt;}
.y2c_c02254{bottom:388.107200pt;}
.y2b_c02254{bottom:415.307600pt;}
.y2a_c02254{bottom:429.147200pt;}
.y29_c02254{bottom:442.907600pt;}
.y28_c02254{bottom:456.747200pt;}
.y27_c02254{bottom:472.987067pt;}
.y26_c02254{bottom:491.387067pt;}
.y25_c02254{bottom:508.267067pt;}
.y24_c02254{bottom:525.147067pt;}
.y23_c02254{bottom:543.867067pt;}
.y22_c02254{bottom:562.267067pt;}
.y21_c02254{bottom:579.067067pt;}
.y20_c02254{bottom:595.947067pt;}
.y1f_c02254{bottom:612.827067pt;}
.y1e_c02254{bottom:631.227067pt;}
.y1d_c02254{bottom:649.627067pt;}
.y1c_c02254{bottom:666.187067pt;}
.y1a_c02254{bottom:681.867067pt;}
.y19_c02254{bottom:689.787067pt;}
.y1b_c02254{bottom:698.667067pt;}
.y18_c02254{bottom:716.986667pt;}
.y17_c02254{bottom:730.747067pt;}
.y16_c02254{bottom:744.586667pt;}
.y15_c02254{bottom:758.347067pt;}
.y14_c02254{bottom:774.587067pt;}
.y13_c02254{bottom:792.987200pt;}
.y12_c02254{bottom:809.867067pt;}
.y11_c02254{bottom:826.747067pt;}
.y10_c02254{bottom:845.467067pt;}
.yf_c02254{bottom:863.867067pt;}
.ye_c02254{bottom:880.747067pt;}
.yd_c02254{bottom:897.627067pt;}
.yc_c02254{bottom:914.507067pt;}
.yb_c02254{bottom:931.307067pt;}
.ya_c02254{bottom:949.707067pt;}
.y9_c02254{bottom:966.267067pt;}
.y7_c02254{bottom:981.947067pt;}
.y6_c02254{bottom:989.867067pt;}
.y8_c02254{bottom:998.827067pt;}
.y5_c02254{bottom:1017.067067pt;}
.y2_c02254{bottom:1042.347067pt;}
.y1_c02254{bottom:1060.587067pt;}
.h3_c02254{height:42.632812pt;}
.h6_c02254{height:47.464531pt;}
.h5_c02254{height:52.012031pt;}
.h2_c02254{height:56.156250pt;}
.h1_c02254{height:56.843750pt;}
.h7_c02254{height:92.363750pt;}
.h4_c02254{height:92.683750pt;}
.h0_c02254{height:1122.666667pt;}
.w1_c02254{width:793.333333pt;}
.w0_c02254{width:793.626667pt;}
.x0_c02254{left:0.000000pt;}
.x1_c02254{left:113.440000pt;}
.x3_c02254{left:120.560000pt;}
.x9_c02254{left:143.040000pt;}
.x4_c02254{left:228.800000pt;}
.xa_c02254{left:236.720000pt;}
.xd_c02254{left:269.920000pt;}
.x6_c02254{left:372.400000pt;}
.xb_c02254{left:381.360000pt;}
.x2_c02254{left:384.880000pt;}
.x5_c02254{left:413.520000pt;}
.xc_c02254{left:531.280000pt;}
.x8_c02254{left:539.040000pt;}
.x7_c02254{left:568.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_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_bdcb7e5fafc9b4150bc5add5.woff2')format("woff");}.ff1_c02255{font-family:ff1_c02255;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02255;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.vd_c02255{vertical-align:-19.440000px;}
.v10_c02255{vertical-align:-10.440000px;}
.v12_c02255{vertical-align:-7.920000px;}
.v8_c02255{vertical-align:-6.840000px;}
.v11_c02255{vertical-align:-5.040000px;}
.v3_c02255{vertical-align:-3.960000px;}
.v2_c02255{vertical-align:-2.520000px;}
.v4_c02255{vertical-align:-1.080000px;}
.v0_c02255{vertical-align:0.000000px;}
.v7_c02255{vertical-align:1.080000px;}
.ve_c02255{vertical-align:2.520000px;}
.v6_c02255{vertical-align:4.320000px;}
.v1_c02255{vertical-align:5.400000px;}
.vf_c02255{vertical-align:6.840000px;}
.va_c02255{vertical-align:7.920000px;}
.v5_c02255{vertical-align:9.360000px;}
.vb_c02255{vertical-align:10.438200px;}
.v9_c02255{vertical-align:12.960000px;}
.vc_c02255{vertical-align:22.318200px;}
.ls33_c02255{letter-spacing:-0.178200px;}
.ls32_c02255{letter-spacing:-0.118800px;}
.ls2a_c02255{letter-spacing:-0.086184px;}
.ls26_c02255{letter-spacing:-0.043200px;}
.ls31_c02255{letter-spacing:-0.024048px;}
.ls2e_c02255{letter-spacing:-0.021600px;}
.ls28_c02255{letter-spacing:-0.019152px;}
.ls27_c02255{letter-spacing:-0.010800px;}
.ls2c_c02255{letter-spacing:-0.009576px;}
.ls2f_c02255{letter-spacing:-0.004788px;}
.ls24_c02255{letter-spacing:0.000000px;}
.ls19_c02255{letter-spacing:0.006588px;}
.ls1_c02255{letter-spacing:0.007200px;}
.ls2_c02255{letter-spacing:0.010800px;}
.ls5_c02255{letter-spacing:0.012636px;}
.ls17_c02255{letter-spacing:0.019152px;}
.ls23_c02255{letter-spacing:0.026352px;}
.ls4_c02255{letter-spacing:0.028728px;}
.ls0_c02255{letter-spacing:0.028800px;}
.ls6_c02255{letter-spacing:0.032400px;}
.ls1a_c02255{letter-spacing:0.033696px;}
.lsc_c02255{letter-spacing:0.037800px;}
.ls3_c02255{letter-spacing:0.043092px;}
.lsb_c02255{letter-spacing:0.043200px;}
.ls1d_c02255{letter-spacing:0.048600px;}
.ls1c_c02255{letter-spacing:0.054000px;}
.ls1f_c02255{letter-spacing:0.067032px;}
.ls1b_c02255{letter-spacing:0.070200px;}
.ls13_c02255{letter-spacing:0.076608px;}
.ls22_c02255{letter-spacing:0.079056px;}
.ls9_c02255{letter-spacing:0.081396px;}
.ls1e_c02255{letter-spacing:0.086184px;}
.ls18_c02255{letter-spacing:0.098820px;}
.lse_c02255{letter-spacing:0.110124px;}
.ls20_c02255{letter-spacing:0.114912px;}
.ls21_c02255{letter-spacing:0.119700px;}
.ls15_c02255{letter-spacing:0.124488px;}
.ls16_c02255{letter-spacing:0.134064px;}
.ls25_c02255{letter-spacing:0.151200px;}
.ls7_c02255{letter-spacing:0.158112px;}
.ls14_c02255{letter-spacing:0.162792px;}
.ls29_c02255{letter-spacing:0.167580px;}
.ls30_c02255{letter-spacing:0.180360px;}
.lsa_c02255{letter-spacing:0.181944px;}
.lsf_c02255{letter-spacing:0.205884px;}
.ls8_c02255{letter-spacing:112.320000px;}
.ls2b_c02255{letter-spacing:143.818200px;}
.ls2d_c02255{letter-spacing:154.887156px;}
.ls10_c02255{letter-spacing:156.421800px;}
.ls12_c02255{letter-spacing:156.778200px;}
.ls11_c02255{letter-spacing:199.260000px;}
.lsd_c02255{letter-spacing:200.790000px;}
.sc__c02255{text-shadow:none;}
.sc0_c02255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02255{-webkit-text-stroke:0px transparent;}
.sc0_c02255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02255{word-spacing:-16.628112px;}
.ws2_c02255{word-spacing:-16.476588px;}
.wsb_c02255{word-spacing:-0.296856px;}
.ws8_c02255{word-spacing:-0.272916px;}
.wsc_c02255{word-spacing:-0.253764px;}
.wse_c02255{word-spacing:-0.225036px;}
.wsd_c02255{word-spacing:-0.215460px;}
.ws1c_c02255{word-spacing:-0.210672px;}
.wsf_c02255{word-spacing:-0.172368px;}
.ws13_c02255{word-spacing:-0.122148px;}
.ws11_c02255{word-spacing:-0.119700px;}
.ws5_c02255{word-spacing:-0.115200px;}
.ws10_c02255{word-spacing:-0.110124px;}
.ws7_c02255{word-spacing:-0.101088px;}
.ws4_c02255{word-spacing:-0.086400px;}
.ws9_c02255{word-spacing:-0.081396px;}
.ws6_c02255{word-spacing:-0.007200px;}
.ws12_c02255{word-spacing:-0.006588px;}
.ws3_c02255{word-spacing:0.000000px;}
.ws1d_c02255{word-spacing:0.013176px;}
.wsa_c02255{word-spacing:0.021600px;}
.ws14_c02255{word-spacing:0.108000px;}
.ws15_c02255{word-spacing:0.124200px;}
.ws16_c02255{word-spacing:0.129600px;}
.ws19_c02255{word-spacing:1.235304px;}
.ws1b_c02255{word-spacing:1.273608px;}
.ws1a_c02255{word-spacing:1.307124px;}
.ws17_c02255{word-spacing:5.941908px;}
.ws18_c02255{word-spacing:5.961060px;}
.ws1_c02255{word-spacing:101.089440px;}
._0_c02255{margin-left:-1.296000px;}
._15_c02255{width:42.845688px;}
._1f_c02255{width:49.713840px;}
._c_c02255{width:51.297552px;}
._10_c02255{width:61.927020px;}
._1e_c02255{width:63.864000px;}
._f_c02255{width:65.340000px;}
._9_c02255{width:72.604440px;}
._12_c02255{width:75.420000px;}
._a_c02255{width:77.310180px;}
._2_c02255{width:84.834000px;}
._1_c02255{width:88.221600px;}
._17_c02255{width:90.849276px;}
._e_c02255{width:94.564296px;}
._b_c02255{width:100.015200px;}
._d_c02255{width:104.575140px;}
._16_c02255{width:108.339840px;}
._1a_c02255{width:109.594296px;}
._21_c02255{width:111.720168px;}
._1d_c02255{width:114.095016px;}
._4_c02255{width:115.740000px;}
._5_c02255{width:118.378944px;}
._1c_c02255{width:120.067668px;}
._3_c02255{width:122.220000px;}
._20_c02255{width:124.666920px;}
._8_c02255{width:126.707688px;}
._13_c02255{width:128.162160px;}
._11_c02255{width:129.607020px;}
._22_c02255{width:133.247016px;}
._6_c02255{width:135.096120px;}
._18_c02255{width:143.820000px;}
._1b_c02255{width:146.586384px;}
._7_c02255{width:152.875404px;}
._14_c02255{width:198.864000px;}
._19_c02255{width:201.765780px;}
._2b_c02255{width:203.036400px;}
._26_c02255{width:216.180000px;}
._24_c02255{width:283.500000px;}
._27_c02255{width:310.104000px;}
._25_c02255{width:347.693400px;}
._29_c02255{width:353.833200px;}
._23_c02255{width:414.180000px;}
._28_c02255{width:419.929200px;}
._2a_c02255{width:605.295000px;}
.fc0_c02255{color:rgb(0,0,0);}
.fs6_c02255{font-size:11.880000px;}
.fs3_c02255{font-size:42.120000px;}
.fs2_c02255{font-size:47.880000px;}
.fs1_c02255{font-size:54.000000px;}
.fs5_c02255{font-size:60.120000px;}
.fs4_c02255{font-size:65.880000px;}
.fs0_c02255{font-size:72.000000px;}
.y0_c02255{bottom:0.000000px;}
.y4_c02255{bottom:57.360450px;}
.y3_c02255{bottom:78.060450px;}
.y4d_c02255{bottom:129.180000px;}
.y4c_c02255{bottom:144.660450px;}
.y4b_c02255{bottom:160.230000px;}
.y4a_c02255{bottom:175.710450px;}
.y49_c02255{bottom:191.280000px;}
.y48_c02255{bottom:206.760450px;}
.y47_c02255{bottom:222.330000px;}
.y46_c02255{bottom:237.810450px;}
.y45_c02255{bottom:253.289874px;}
.y44_c02255{bottom:267.060162px;}
.y43_c02255{bottom:280.830450px;}
.y42_c02255{bottom:297.030450px;}
.y41_c02255{bottom:312.510450px;}
.y40_c02255{bottom:328.080450px;}
.y3f_c02255{bottom:344.550450px;}
.y3e_c02255{bottom:360.030450px;}
.y3b_c02255{bottom:377.850450px;}
.y3d_c02255{bottom:378.120450px;}
.y3c_c02255{bottom:394.950600px;}
.y3a_c02255{bottom:410.700600px;}
.y39_c02255{bottom:429.150600px;}
.y38_c02255{bottom:444.720150px;}
.y37_c02255{bottom:460.200600px;}
.y36_c02255{bottom:475.410024px;}
.y35_c02255{bottom:489.180312px;}
.y34_c02255{bottom:502.950600px;}
.y33_c02255{bottom:519.150450px;}
.y32_c02255{bottom:534.630450px;}
.y31_c02255{bottom:550.200450px;}
.y30_c02255{bottom:565.680450px;}
.y2f_c02255{bottom:581.250450px;}
.y2c_c02255{bottom:598.980450px;}
.y2e_c02255{bottom:599.250450px;}
.y2d_c02255{bottom:617.790450px;}
.y2b_c02255{bottom:639.120450px;}
.y2a_c02255{bottom:657.390450px;}
.y29_c02255{bottom:672.870900px;}
.y28_c02255{bottom:688.440450px;}
.y27_c02255{bottom:703.920450px;}
.y26_c02255{bottom:704.280000px;}
.y25_c02255{bottom:722.910450px;}
.y24_c02255{bottom:723.270000px;}
.y23_c02255{bottom:741.900450px;}
.y22_c02255{bottom:742.260000px;}
.y21_c02255{bottom:760.800450px;}
.y20_c02255{bottom:761.250450px;}
.y1f_c02255{bottom:779.790600px;}
.y1e_c02255{bottom:780.150450px;}
.y1d_c02255{bottom:799.140450px;}
.y1c_c02255{bottom:817.770450px;}
.y1b_c02255{bottom:818.130450px;}
.y1a_c02255{bottom:838.830450px;}
.y19_c02255{bottom:857.460450px;}
.y18_c02255{bottom:857.821050px;}
.y17_c02255{bottom:878.160450px;}
.y16_c02255{bottom:878.520900px;}
.y15_c02255{bottom:898.860450px;}
.y14_c02255{bottom:899.220450px;}
.y13_c02255{bottom:919.920450px;}
.y12_c02255{bottom:938.460450px;}
.y11_c02255{bottom:938.910450px;}
.y10_c02255{bottom:960.240450px;}
.yf_c02255{bottom:979.410450px;}
.ye_c02255{bottom:995.880450px;}
.yd_c02255{bottom:1016.670450px;}
.yc_c02255{bottom:1025.490450px;}
.yb_c02255{bottom:1025.850450px;}
.ya_c02255{bottom:1045.470450px;}
.y9_c02255{bottom:1064.730450px;}
.y8_c02255{bottom:1081.200450px;}
.y7_c02255{bottom:1101.360450px;}
.y6_c02255{bottom:1118.010450px;}
.y5_c02255{bottom:1139.250450px;}
.y2_c02255{bottom:1172.640450px;}
.y1_c02255{bottom:1193.160450px;}
.h6_c02255{height:10.551621px;}
.hf_c02255{height:37.410293px;}
.h12_c02255{height:42.011895px;}
.h10_c02255{height:47.381836px;}
.h3_c02255{height:47.961914px;}
.h11_c02255{height:48.461836px;}
.h4_c02255{height:48.570293px;}
.he_c02255{height:58.513535px;}
.h8_c02255{height:61.033535px;}
.hb_c02255{height:61.751777px;}
.hd_c02255{height:62.831777px;}
.h2_c02255{height:63.175781px;}
.hc_c02255{height:63.191177px;}
.h5_c02255{height:63.191777px;}
.h1_c02255{height:63.949219px;}
.h9_c02255{height:69.671777px;}
.ha_c02255{height:70.031777px;}
.h7_c02255{height:70.780036px;}
.h0_c02255{height:1263.000000px;}
.w1_c02255{width:892.500000px;}
.w0_c02255{width:892.830000px;}
.x0_c02255{left:0.000000px;}
.x1_c02255{left:127.620000px;}
.x7_c02255{left:134.550000px;}
.x3_c02255{left:135.630000px;}
.x4_c02255{left:143.910000px;}
.x5_c02255{left:165.060000px;}
.x6_c02255{left:220.680000px;}
.x8_c02255{left:336.240000px;}
.x9_c02255{left:354.780000px;}
.x2_c02255{left:432.990000px;}
@media print{
.vd_c02255{vertical-align:-17.280000pt;}
.v10_c02255{vertical-align:-9.280000pt;}
.v12_c02255{vertical-align:-7.040000pt;}
.v8_c02255{vertical-align:-6.080000pt;}
.v11_c02255{vertical-align:-4.480000pt;}
.v3_c02255{vertical-align:-3.520000pt;}
.v2_c02255{vertical-align:-2.240000pt;}
.v4_c02255{vertical-align:-0.960000pt;}
.v0_c02255{vertical-align:0.000000pt;}
.v7_c02255{vertical-align:0.960000pt;}
.ve_c02255{vertical-align:2.240000pt;}
.v6_c02255{vertical-align:3.840000pt;}
.v1_c02255{vertical-align:4.800000pt;}
.vf_c02255{vertical-align:6.080000pt;}
.va_c02255{vertical-align:7.040000pt;}
.v5_c02255{vertical-align:8.320000pt;}
.vb_c02255{vertical-align:9.278400pt;}
.v9_c02255{vertical-align:11.520000pt;}
.vc_c02255{vertical-align:19.838400pt;}
.ls33_c02255{letter-spacing:-0.158400pt;}
.ls32_c02255{letter-spacing:-0.105600pt;}
.ls2a_c02255{letter-spacing:-0.076608pt;}
.ls26_c02255{letter-spacing:-0.038400pt;}
.ls31_c02255{letter-spacing:-0.021376pt;}
.ls2e_c02255{letter-spacing:-0.019200pt;}
.ls28_c02255{letter-spacing:-0.017024pt;}
.ls27_c02255{letter-spacing:-0.009600pt;}
.ls2c_c02255{letter-spacing:-0.008512pt;}
.ls2f_c02255{letter-spacing:-0.004256pt;}
.ls24_c02255{letter-spacing:0.000000pt;}
.ls19_c02255{letter-spacing:0.005856pt;}
.ls1_c02255{letter-spacing:0.006400pt;}
.ls2_c02255{letter-spacing:0.009600pt;}
.ls5_c02255{letter-spacing:0.011232pt;}
.ls17_c02255{letter-spacing:0.017024pt;}
.ls23_c02255{letter-spacing:0.023424pt;}
.ls4_c02255{letter-spacing:0.025536pt;}
.ls0_c02255{letter-spacing:0.025600pt;}
.ls6_c02255{letter-spacing:0.028800pt;}
.ls1a_c02255{letter-spacing:0.029952pt;}
.lsc_c02255{letter-spacing:0.033600pt;}
.ls3_c02255{letter-spacing:0.038304pt;}
.lsb_c02255{letter-spacing:0.038400pt;}
.ls1d_c02255{letter-spacing:0.043200pt;}
.ls1c_c02255{letter-spacing:0.048000pt;}
.ls1f_c02255{letter-spacing:0.059584pt;}
.ls1b_c02255{letter-spacing:0.062400pt;}
.ls13_c02255{letter-spacing:0.068096pt;}
.ls22_c02255{letter-spacing:0.070272pt;}
.ls9_c02255{letter-spacing:0.072352pt;}
.ls1e_c02255{letter-spacing:0.076608pt;}
.ls18_c02255{letter-spacing:0.087840pt;}
.lse_c02255{letter-spacing:0.097888pt;}
.ls20_c02255{letter-spacing:0.102144pt;}
.ls21_c02255{letter-spacing:0.106400pt;}
.ls15_c02255{letter-spacing:0.110656pt;}
.ls16_c02255{letter-spacing:0.119168pt;}
.ls25_c02255{letter-spacing:0.134400pt;}
.ls7_c02255{letter-spacing:0.140544pt;}
.ls14_c02255{letter-spacing:0.144704pt;}
.ls29_c02255{letter-spacing:0.148960pt;}
.ls30_c02255{letter-spacing:0.160320pt;}
.lsa_c02255{letter-spacing:0.161728pt;}
.lsf_c02255{letter-spacing:0.183008pt;}
.ls8_c02255{letter-spacing:99.840000pt;}
.ls2b_c02255{letter-spacing:127.838400pt;}
.ls2d_c02255{letter-spacing:137.677472pt;}
.ls10_c02255{letter-spacing:139.041600pt;}
.ls12_c02255{letter-spacing:139.358400pt;}
.ls11_c02255{letter-spacing:177.120000pt;}
.lsd_c02255{letter-spacing:178.480000pt;}
.ws0_c02255{word-spacing:-14.780544pt;}
.ws2_c02255{word-spacing:-14.645856pt;}
.wsb_c02255{word-spacing:-0.263872pt;}
.ws8_c02255{word-spacing:-0.242592pt;}
.wsc_c02255{word-spacing:-0.225568pt;}
.wse_c02255{word-spacing:-0.200032pt;}
.wsd_c02255{word-spacing:-0.191520pt;}
.ws1c_c02255{word-spacing:-0.187264pt;}
.wsf_c02255{word-spacing:-0.153216pt;}
.ws13_c02255{word-spacing:-0.108576pt;}
.ws11_c02255{word-spacing:-0.106400pt;}
.ws5_c02255{word-spacing:-0.102400pt;}
.ws10_c02255{word-spacing:-0.097888pt;}
.ws7_c02255{word-spacing:-0.089856pt;}
.ws4_c02255{word-spacing:-0.076800pt;}
.ws9_c02255{word-spacing:-0.072352pt;}
.ws6_c02255{word-spacing:-0.006400pt;}
.ws12_c02255{word-spacing:-0.005856pt;}
.ws3_c02255{word-spacing:0.000000pt;}
.ws1d_c02255{word-spacing:0.011712pt;}
.wsa_c02255{word-spacing:0.019200pt;}
.ws14_c02255{word-spacing:0.096000pt;}
.ws15_c02255{word-spacing:0.110400pt;}
.ws16_c02255{word-spacing:0.115200pt;}
.ws19_c02255{word-spacing:1.098048pt;}
.ws1b_c02255{word-spacing:1.132096pt;}
.ws1a_c02255{word-spacing:1.161888pt;}
.ws17_c02255{word-spacing:5.281696pt;}
.ws18_c02255{word-spacing:5.298720pt;}
.ws1_c02255{word-spacing:89.857280pt;}
._0_c02255{margin-left:-1.152000pt;}
._15_c02255{width:38.085056pt;}
._1f_c02255{width:44.190080pt;}
._c_c02255{width:45.597824pt;}
._10_c02255{width:55.046240pt;}
._1e_c02255{width:56.768000pt;}
._f_c02255{width:58.080000pt;}
._9_c02255{width:64.537280pt;}
._12_c02255{width:67.040000pt;}
._a_c02255{width:68.720160pt;}
._2_c02255{width:75.408000pt;}
._1_c02255{width:78.419200pt;}
._17_c02255{width:80.754912pt;}
._e_c02255{width:84.057152pt;}
._b_c02255{width:88.902400pt;}
._d_c02255{width:92.955680pt;}
._16_c02255{width:96.302080pt;}
._1a_c02255{width:97.417152pt;}
._21_c02255{width:99.306816pt;}
._1d_c02255{width:101.417792pt;}
._4_c02255{width:102.880000pt;}
._5_c02255{width:105.225728pt;}
._1c_c02255{width:106.726816pt;}
._3_c02255{width:108.640000pt;}
._20_c02255{width:110.815040pt;}
._8_c02255{width:112.629056pt;}
._13_c02255{width:113.921920pt;}
._11_c02255{width:115.206240pt;}
._22_c02255{width:118.441792pt;}
._6_c02255{width:120.085440pt;}
._18_c02255{width:127.840000pt;}
._1b_c02255{width:130.299008pt;}
._7_c02255{width:135.889248pt;}
._14_c02255{width:176.768000pt;}
._19_c02255{width:179.347360pt;}
._2b_c02255{width:180.476800pt;}
._26_c02255{width:192.160000pt;}
._24_c02255{width:252.000000pt;}
._27_c02255{width:275.648000pt;}
._25_c02255{width:309.060800pt;}
._29_c02255{width:314.518400pt;}
._23_c02255{width:368.160000pt;}
._28_c02255{width:373.270400pt;}
._2a_c02255{width:538.040000pt;}
.fs6_c02255{font-size:10.560000pt;}
.fs3_c02255{font-size:37.440000pt;}
.fs2_c02255{font-size:42.560000pt;}
.fs1_c02255{font-size:48.000000pt;}
.fs5_c02255{font-size:53.440000pt;}
.fs4_c02255{font-size:58.560000pt;}
.fs0_c02255{font-size:64.000000pt;}
.y0_c02255{bottom:0.000000pt;}
.y4_c02255{bottom:50.987067pt;}
.y3_c02255{bottom:69.387067pt;}
.y4d_c02255{bottom:114.826667pt;}
.y4c_c02255{bottom:128.587067pt;}
.y4b_c02255{bottom:142.426667pt;}
.y4a_c02255{bottom:156.187067pt;}
.y49_c02255{bottom:170.026667pt;}
.y48_c02255{bottom:183.787067pt;}
.y47_c02255{bottom:197.626667pt;}
.y46_c02255{bottom:211.387067pt;}
.y45_c02255{bottom:225.146555pt;}
.y44_c02255{bottom:237.386811pt;}
.y43_c02255{bottom:249.627067pt;}
.y42_c02255{bottom:264.027067pt;}
.y41_c02255{bottom:277.787067pt;}
.y40_c02255{bottom:291.627067pt;}
.y3f_c02255{bottom:306.267067pt;}
.y3e_c02255{bottom:320.027067pt;}
.y3b_c02255{bottom:335.867067pt;}
.y3d_c02255{bottom:336.107067pt;}
.y3c_c02255{bottom:351.067200pt;}
.y3a_c02255{bottom:365.067200pt;}
.y39_c02255{bottom:381.467200pt;}
.y38_c02255{bottom:395.306800pt;}
.y37_c02255{bottom:409.067200pt;}
.y36_c02255{bottom:422.586688pt;}
.y35_c02255{bottom:434.826944pt;}
.y34_c02255{bottom:447.067200pt;}
.y33_c02255{bottom:461.467067pt;}
.y32_c02255{bottom:475.227067pt;}
.y31_c02255{bottom:489.067067pt;}
.y30_c02255{bottom:502.827067pt;}
.y2f_c02255{bottom:516.667067pt;}
.y2c_c02255{bottom:532.427067pt;}
.y2e_c02255{bottom:532.667067pt;}
.y2d_c02255{bottom:549.147067pt;}
.y2b_c02255{bottom:568.107067pt;}
.y2a_c02255{bottom:584.347067pt;}
.y29_c02255{bottom:598.107467pt;}
.y28_c02255{bottom:611.947067pt;}
.y27_c02255{bottom:625.707067pt;}
.y26_c02255{bottom:626.026667pt;}
.y25_c02255{bottom:642.587067pt;}
.y24_c02255{bottom:642.906667pt;}
.y23_c02255{bottom:659.467067pt;}
.y22_c02255{bottom:659.786667pt;}
.y21_c02255{bottom:676.267067pt;}
.y20_c02255{bottom:676.667067pt;}
.y1f_c02255{bottom:693.147200pt;}
.y1e_c02255{bottom:693.467067pt;}
.y1d_c02255{bottom:710.347067pt;}
.y1c_c02255{bottom:726.907067pt;}
.y1b_c02255{bottom:727.227067pt;}
.y1a_c02255{bottom:745.627067pt;}
.y19_c02255{bottom:762.187067pt;}
.y18_c02255{bottom:762.507600pt;}
.y17_c02255{bottom:780.587067pt;}
.y16_c02255{bottom:780.907467pt;}
.y15_c02255{bottom:798.987067pt;}
.y14_c02255{bottom:799.307067pt;}
.y13_c02255{bottom:817.707067pt;}
.y12_c02255{bottom:834.187067pt;}
.y11_c02255{bottom:834.587067pt;}
.y10_c02255{bottom:853.547067pt;}
.yf_c02255{bottom:870.587067pt;}
.ye_c02255{bottom:885.227067pt;}
.yd_c02255{bottom:903.707067pt;}
.yc_c02255{bottom:911.547067pt;}
.yb_c02255{bottom:911.867067pt;}
.ya_c02255{bottom:929.307067pt;}
.y9_c02255{bottom:946.427067pt;}
.y8_c02255{bottom:961.067067pt;}
.y7_c02255{bottom:978.987067pt;}
.y6_c02255{bottom:993.787067pt;}
.y5_c02255{bottom:1012.667067pt;}
.y2_c02255{bottom:1042.347067pt;}
.y1_c02255{bottom:1060.587067pt;}
.h6_c02255{height:9.379219pt;}
.hf_c02255{height:33.253594pt;}
.h12_c02255{height:37.343906pt;}
.h10_c02255{height:42.117188pt;}
.h3_c02255{height:42.632812pt;}
.h11_c02255{height:43.077187pt;}
.h4_c02255{height:43.173594pt;}
.he_c02255{height:52.012031pt;}
.h8_c02255{height:54.252031pt;}
.hb_c02255{height:54.890469pt;}
.hd_c02255{height:55.850469pt;}
.h2_c02255{height:56.156250pt;}
.hc_c02255{height:56.169935pt;}
.h5_c02255{height:56.170469pt;}
.h1_c02255{height:56.843750pt;}
.h9_c02255{height:61.930469pt;}
.ha_c02255{height:62.250469pt;}
.h7_c02255{height:62.915588pt;}
.h0_c02255{height:1122.666667pt;}
.w1_c02255{width:793.333333pt;}
.w0_c02255{width:793.626667pt;}
.x0_c02255{left:0.000000pt;}
.x1_c02255{left:113.440000pt;}
.x7_c02255{left:119.600000pt;}
.x3_c02255{left:120.560000pt;}
.x4_c02255{left:127.920000pt;}
.x5_c02255{left:146.720000pt;}
.x6_c02255{left:196.160000pt;}
.x8_c02255{left:298.880000pt;}
.x9_c02255{left:315.360000pt;}
.x2_c02255{left:384.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_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_489a58cae09b7dac244981b7.woff2')format("woff");}.ff1_c02256{font-family:ff1_c02256;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02256;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.vd_c02256{vertical-align:-48.238200px;}
.v13_c02256{vertical-align:-24.121800px;}
.v10_c02256{vertical-align:-20.520000px;}
.v9_c02256{vertical-align:-13.678200px;}
.v11_c02256{vertical-align:-10.438200px;}
.v12_c02256{vertical-align:-6.840000px;}
.v3_c02256{vertical-align:-4.320000px;}
.v1_c02256{vertical-align:-2.520000px;}
.v2_c02256{vertical-align:-1.440000px;}
.v0_c02256{vertical-align:0.000000px;}
.v4_c02256{vertical-align:1.800000px;}
.v6_c02256{vertical-align:2.880000px;}
.v5_c02256{vertical-align:4.320000px;}
.v8_c02256{vertical-align:6.841800px;}
.ve_c02256{vertical-align:7.920000px;}
.v7_c02256{vertical-align:9.360000px;}
.vf_c02256{vertical-align:12.960000px;}
.vb_c02256{vertical-align:21.600000px;}
.vc_c02256{vertical-align:24.121800px;}
.va_c02256{vertical-align:27.000000px;}
.ls27_c02256{letter-spacing:-0.086184px;}
.ls23_c02256{letter-spacing:-0.084240px;}
.ls2b_c02256{letter-spacing:-0.052668px;}
.ls25_c02256{letter-spacing:-0.019152px;}
.ls24_c02256{letter-spacing:-0.010800px;}
.ls31_c02256{letter-spacing:-0.009576px;}
.ls2d_c02256{letter-spacing:-0.007200px;}
.ls29_c02256{letter-spacing:-0.004788px;}
.ls21_c02256{letter-spacing:0.000000px;}
.ls1_c02256{letter-spacing:0.010800px;}
.ls4_c02256{letter-spacing:0.012636px;}
.ls12_c02256{letter-spacing:0.019152px;}
.ls2a_c02256{letter-spacing:0.021600px;}
.ls3_c02256{letter-spacing:0.028728px;}
.ls0_c02256{letter-spacing:0.028800px;}
.ls5_c02256{letter-spacing:0.032400px;}
.lsa_c02256{letter-spacing:0.037800px;}
.ls2_c02256{letter-spacing:0.043092px;}
.ls9_c02256{letter-spacing:0.043200px;}
.ls1e_c02256{letter-spacing:0.052668px;}
.ls19_c02256{letter-spacing:0.076608px;}
.lsd_c02256{letter-spacing:0.080028px;}
.ls1d_c02256{letter-spacing:0.081396px;}
.ls1f_c02256{letter-spacing:0.090972px;}
.ls8_c02256{letter-spacing:0.110124px;}
.ls10_c02256{letter-spacing:0.124488px;}
.ls11_c02256{letter-spacing:0.134064px;}
.ls20_c02256{letter-spacing:0.138852px;}
.ls22_c02256{letter-spacing:0.151200px;}
.ls6_c02256{letter-spacing:0.158112px;}
.lsf_c02256{letter-spacing:0.162792px;}
.ls26_c02256{letter-spacing:0.167580px;}
.lse_c02256{letter-spacing:0.181944px;}
.lsc_c02256{letter-spacing:0.205884px;}
.ls2f_c02256{letter-spacing:0.220248px;}
.ls1a_c02256{letter-spacing:76.680000px;}
.ls7_c02256{letter-spacing:82.080000px;}
.ls2e_c02256{letter-spacing:108.178200px;}
.ls28_c02256{letter-spacing:113.578200px;}
.ls1b_c02256{letter-spacing:120.781800px;}
.ls13_c02256{letter-spacing:124.920000px;}
.ls14_c02256{letter-spacing:156.150000px;}
.ls2c_c02256{letter-spacing:156.421800px;}
.ls18_c02256{letter-spacing:156.778200px;}
.ls30_c02256{letter-spacing:181.261800px;}
.ls16_c02256{letter-spacing:184.230000px;}
.ls1c_c02256{letter-spacing:189.630000px;}
.ls15_c02256{letter-spacing:199.260000px;}
.lsb_c02256{letter-spacing:200.790000px;}
.ls17_c02256{letter-spacing:203.580000px;}
.sc__c02256{text-shadow:none;}
.sc0_c02256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02256{-webkit-text-stroke:0px transparent;}
.sc0_c02256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02256{word-spacing:-16.628112px;}
.ws8_c02256{word-spacing:-0.296856px;}
.ws7_c02256{word-spacing:-0.272916px;}
.wsa_c02256{word-spacing:-0.253764px;}
.ws14_c02256{word-spacing:-0.229824px;}
.wsc_c02256{word-spacing:-0.225036px;}
.wsb_c02256{word-spacing:-0.215460px;}
.wsd_c02256{word-spacing:-0.172368px;}
.wsf_c02256{word-spacing:-0.119700px;}
.wse_c02256{word-spacing:-0.110124px;}
.ws6_c02256{word-spacing:-0.101088px;}
.ws10_c02256{word-spacing:-0.093600px;}
.ws5_c02256{word-spacing:-0.086400px;}
.ws13_c02256{word-spacing:-0.081396px;}
.ws4_c02256{word-spacing:0.000000px;}
.ws11_c02256{word-spacing:0.007200px;}
.ws2_c02256{word-spacing:58.969440px;}
.ws3_c02256{word-spacing:92.449440px;}
.ws1_c02256{word-spacing:101.089440px;}
.ws12_c02256{word-spacing:192.736800px;}
.ws9_c02256{word-spacing:199.216800px;}
.ws15_c02256{word-spacing:209.298600px;}
._46_c02256{margin-left:-88.560000px;}
._41_c02256{margin-left:-61.291188px;}
._3f_c02256{margin-left:-59.697000px;}
._47_c02256{margin-left:-52.920000px;}
._14_c02256{margin-left:-45.518364px;}
._16_c02256{margin-left:-42.481800px;}
._2f_c02256{margin-left:-36.001800px;}
._30_c02256{margin-left:-34.560000px;}
._44_c02256{margin-left:-28.818468px;}
._40_c02256{margin-left:-24.840000px;}
._f_c02256{margin-left:-1.245780px;}
._15_c02256{width:2.160000px;}
._2c_c02256{width:5.351112px;}
._34_c02256{width:7.800120px;}
._36_c02256{width:9.903708px;}
._2e_c02256{width:11.062404px;}
._43_c02256{width:18.034056px;}
._45_c02256{width:32.400000px;}
._3e_c02256{width:34.915572px;}
._3a_c02256{width:36.181800px;}
._24_c02256{width:42.487200px;}
._b_c02256{width:51.297552px;}
._11_c02256{width:52.704000px;}
._10_c02256{width:59.932800px;}
._29_c02256{width:62.018964px;}
._3c_c02256{width:63.216000px;}
._2a_c02256{width:71.064000px;}
._8_c02256{width:72.604440px;}
._13_c02256{width:75.420000px;}
._2b_c02256{width:77.306400px;}
._9_c02256{width:78.390180px;}
._1d_c02256{width:79.704000px;}
._32_c02256{width:81.816120px;}
._e_c02256{width:83.700000px;}
._38_c02256{width:84.736008px;}
._3d_c02256{width:86.416200px;}
._1_c02256{width:87.741000px;}
._28_c02256{width:88.811352px;}
._d_c02256{width:90.075600px;}
._19_c02256{width:91.234296px;}
._1e_c02256{width:93.360168px;}
._1c_c02256{width:95.735016px;}
._35_c02256{width:98.760168px;}
._a_c02256{width:100.495800px;}
._42_c02256{width:101.502684px;}
._0_c02256{width:102.621600px;}
._c_c02256{width:104.479380px;}
._3_c02256{width:106.740000px;}
._3b_c02256{width:108.180000px;}
._26_c02256{width:109.260000px;}
._33_c02256{width:111.706920px;}
._17_c02256{width:113.580000px;}
._1f_c02256{width:114.887016px;}
._25_c02256{width:116.928000px;}
._4_c02256{width:118.018944px;}
._1b_c02256{width:120.067668px;}
._2_c02256{width:122.220000px;}
._20_c02256{width:123.341220px;}
._7_c02256{width:125.627688px;}
._1a_c02256{width:128.226384px;}
._12_c02256{width:129.373200px;}
._21_c02256{width:130.915404px;}
._31_c02256{width:133.626384px;}
._5_c02256{width:144.456120px;}
._27_c02256{width:145.757268px;}
._22_c02256{width:148.307688px;}
._6_c02256{width:152.875404px;}
._37_c02256{width:154.413396px;}
._18_c02256{width:182.064996px;}
._2d_c02256{width:187.675056px;}
._23_c02256{width:198.027036px;}
._39_c02256{width:209.102580px;}
.fc0_c02256{color:rgb(0,0,0);}
.fs5_c02256{font-size:11.880000px;}
.fs6_c02256{font-size:36.000000px;}
.fs2_c02256{font-size:42.120000px;}
.fs3_c02256{font-size:47.880000px;}
.fs1_c02256{font-size:54.000000px;}
.fs4_c02256{font-size:65.880000px;}
.fs0_c02256{font-size:72.000000px;}
.y0_c02256{bottom:0.000000px;}
.y4_c02256{bottom:57.360450px;}
.y3_c02256{bottom:78.060450px;}
.y5c_c02256{bottom:113.160450px;}
.y5b_c02256{bottom:128.730450px;}
.y5a_c02256{bottom:129.090450px;}
.y59_c02256{bottom:144.210600px;}
.y58_c02256{bottom:144.660900px;}
.y57_c02256{bottom:163.200600px;}
.y56_c02256{bottom:163.559550px;}
.y55_c02256{bottom:182.190450px;}
.y54_c02256{bottom:182.549550px;}
.y53_c02256{bottom:201.180450px;}
.y52_c02256{bottom:201.540600px;}
.y51_c02256{bottom:220.530600px;}
.y50_c02256{bottom:239.070450px;}
.y4f_c02256{bottom:239.520450px;}
.y4d_c02256{bottom:259.770450px;}
.y4c_c02256{bottom:260.220450px;}
.y4e_c02256{bottom:273.630450px;}
.y4b_c02256{bottom:287.760450px;}
.y4a_c02256{bottom:306.390450px;}
.y49_c02256{bottom:306.750450px;}
.y48_c02256{bottom:327.450450px;}
.y47_c02256{bottom:346.080450px;}
.y46_c02256{bottom:346.441350px;}
.y45_c02256{bottom:366.780450px;}
.y44_c02256{bottom:367.141350px;}
.y43_c02256{bottom:387.480450px;}
.y42_c02256{bottom:387.840600px;}
.y41_c02256{bottom:408.540600px;}
.y3f_c02256{bottom:427.080450px;}
.y3e_c02256{bottom:427.530450px;}
.y40_c02256{bottom:440.940600px;}
.y3d_c02256{bottom:455.790600px;}
.y3c_c02256{bottom:474.060450px;}
.y3b_c02256{bottom:491.430600px;}
.y3a_c02256{bottom:512.220450px;}
.y39_c02256{bottom:521.040600px;}
.y38_c02256{bottom:521.400000px;}
.y37_c02256{bottom:540.030450px;}
.y36_c02256{bottom:540.390000px;}
.y35_c02256{bottom:558.930450px;}
.y34_c02256{bottom:559.380450px;}
.y33_c02256{bottom:577.920450px;}
.y32_c02256{bottom:578.280000px;}
.y31_c02256{bottom:596.910450px;}
.y30_c02256{bottom:597.270450px;}
.y2f_c02256{bottom:616.260450px;}
.y2e_c02256{bottom:634.890450px;}
.y2d_c02256{bottom:635.250900px;}
.y2c_c02256{bottom:655.590450px;}
.y2b_c02256{bottom:655.950900px;}
.y2a_c02256{bottom:676.290450px;}
.y29_c02256{bottom:676.650450px;}
.y28_c02256{bottom:697.350450px;}
.y27_c02256{bottom:715.890450px;}
.y26_c02256{bottom:716.340450px;}
.y25_c02256{bottom:737.670450px;}
.y24_c02256{bottom:755.940450px;}
.y23_c02256{bottom:772.410450px;}
.y22_c02256{bottom:793.200450px;}
.y21_c02256{bottom:802.020450px;}
.y20_c02256{bottom:802.380450px;}
.y1f_c02256{bottom:822.000450px;}
.y1e_c02256{bottom:840.360600px;}
.y1d_c02256{bottom:857.730450px;}
.y1c_c02256{bottom:878.520450px;}
.y1b_c02256{bottom:887.250600px;}
.y1a_c02256{bottom:887.700450px;}
.y19_c02256{bottom:906.240450px;}
.y18_c02256{bottom:906.600000px;}
.y17_c02256{bottom:925.230450px;}
.y16_c02256{bottom:925.590000px;}
.y15_c02256{bottom:944.220450px;}
.y14_c02256{bottom:944.580000px;}
.y13_c02256{bottom:963.210450px;}
.y12_c02256{bottom:963.570450px;}
.y11_c02256{bottom:982.560450px;}
.y10_c02256{bottom:1001.100450px;}
.yf_c02256{bottom:1001.460900px;}
.ye_c02256{bottom:1021.800450px;}
.yd_c02256{bottom:1022.160900px;}
.yc_c02256{bottom:1042.500450px;}
.yb_c02256{bottom:1042.860450px;}
.ya_c02256{bottom:1063.560450px;}
.y9_c02256{bottom:1082.190450px;}
.y8_c02256{bottom:1082.550450px;}
.y7_c02256{bottom:1103.970450px;}
.y6_c02256{bottom:1122.240450px;}
.y5_c02256{bottom:1139.610450px;}
.y2_c02256{bottom:1172.640450px;}
.y1_c02256{bottom:1193.160450px;}
.h9_c02256{height:10.551621px;}
.hb_c02256{height:42.526230px;}
.h3_c02256{height:47.961914px;}
.h13_c02256{height:49.901836px;}
.h12_c02256{height:61.032935px;}
.h6_c02256{height:61.033535px;}
.h5_c02256{height:61.393535px;}
.hd_c02256{height:62.141236px;}
.h7_c02256{height:62.473535px;}
.h8_c02256{height:62.832935px;}
.h4_c02256{height:62.833535px;}
.h2_c02256{height:63.175781px;}
.ha_c02256{height:63.584236px;}
.h1_c02256{height:63.949219px;}
.hf_c02256{height:66.073535px;}
.h11_c02256{height:66.433535px;}
.he_c02256{height:70.423636px;}
.h10_c02256{height:80.113535px;}
.hc_c02256{height:98.503636px;}
.h0_c02256{height:1263.000000px;}
.w1_c02256{width:892.500000px;}
.w0_c02256{width:892.830000px;}
.x0_c02256{left:0.000000px;}
.x1_c02256{left:127.620000px;}
.x3_c02256{left:135.630000px;}
.x5_c02256{left:143.730000px;}
.x4_c02256{left:147.690000px;}
.x6_c02256{left:172.620000px;}
.x9_c02256{left:219.330000px;}
.x7_c02256{left:220.680000px;}
.x8_c02256{left:231.300000px;}
.xa_c02256{left:269.730000px;}
.x2_c02256{left:432.990000px;}
.xb_c02256{left:746.820000px;}
@media print{
.vd_c02256{vertical-align:-42.878400pt;}
.v13_c02256{vertical-align:-21.441600pt;}
.v10_c02256{vertical-align:-18.240000pt;}
.v9_c02256{vertical-align:-12.158400pt;}
.v11_c02256{vertical-align:-9.278400pt;}
.v12_c02256{vertical-align:-6.080000pt;}
.v3_c02256{vertical-align:-3.840000pt;}
.v1_c02256{vertical-align:-2.240000pt;}
.v2_c02256{vertical-align:-1.280000pt;}
.v0_c02256{vertical-align:0.000000pt;}
.v4_c02256{vertical-align:1.600000pt;}
.v6_c02256{vertical-align:2.560000pt;}
.v5_c02256{vertical-align:3.840000pt;}
.v8_c02256{vertical-align:6.081600pt;}
.ve_c02256{vertical-align:7.040000pt;}
.v7_c02256{vertical-align:8.320000pt;}
.vf_c02256{vertical-align:11.520000pt;}
.vb_c02256{vertical-align:19.200000pt;}
.vc_c02256{vertical-align:21.441600pt;}
.va_c02256{vertical-align:24.000000pt;}
.ls27_c02256{letter-spacing:-0.076608pt;}
.ls23_c02256{letter-spacing:-0.074880pt;}
.ls2b_c02256{letter-spacing:-0.046816pt;}
.ls25_c02256{letter-spacing:-0.017024pt;}
.ls24_c02256{letter-spacing:-0.009600pt;}
.ls31_c02256{letter-spacing:-0.008512pt;}
.ls2d_c02256{letter-spacing:-0.006400pt;}
.ls29_c02256{letter-spacing:-0.004256pt;}
.ls21_c02256{letter-spacing:0.000000pt;}
.ls1_c02256{letter-spacing:0.009600pt;}
.ls4_c02256{letter-spacing:0.011232pt;}
.ls12_c02256{letter-spacing:0.017024pt;}
.ls2a_c02256{letter-spacing:0.019200pt;}
.ls3_c02256{letter-spacing:0.025536pt;}
.ls0_c02256{letter-spacing:0.025600pt;}
.ls5_c02256{letter-spacing:0.028800pt;}
.lsa_c02256{letter-spacing:0.033600pt;}
.ls2_c02256{letter-spacing:0.038304pt;}
.ls9_c02256{letter-spacing:0.038400pt;}
.ls1e_c02256{letter-spacing:0.046816pt;}
.ls19_c02256{letter-spacing:0.068096pt;}
.lsd_c02256{letter-spacing:0.071136pt;}
.ls1d_c02256{letter-spacing:0.072352pt;}
.ls1f_c02256{letter-spacing:0.080864pt;}
.ls8_c02256{letter-spacing:0.097888pt;}
.ls10_c02256{letter-spacing:0.110656pt;}
.ls11_c02256{letter-spacing:0.119168pt;}
.ls20_c02256{letter-spacing:0.123424pt;}
.ls22_c02256{letter-spacing:0.134400pt;}
.ls6_c02256{letter-spacing:0.140544pt;}
.lsf_c02256{letter-spacing:0.144704pt;}
.ls26_c02256{letter-spacing:0.148960pt;}
.lse_c02256{letter-spacing:0.161728pt;}
.lsc_c02256{letter-spacing:0.183008pt;}
.ls2f_c02256{letter-spacing:0.195776pt;}
.ls1a_c02256{letter-spacing:68.160000pt;}
.ls7_c02256{letter-spacing:72.960000pt;}
.ls2e_c02256{letter-spacing:96.158400pt;}
.ls28_c02256{letter-spacing:100.958400pt;}
.ls1b_c02256{letter-spacing:107.361600pt;}
.ls13_c02256{letter-spacing:111.040000pt;}
.ls14_c02256{letter-spacing:138.800000pt;}
.ls2c_c02256{letter-spacing:139.041600pt;}
.ls18_c02256{letter-spacing:139.358400pt;}
.ls30_c02256{letter-spacing:161.121600pt;}
.ls16_c02256{letter-spacing:163.760000pt;}
.ls1c_c02256{letter-spacing:168.560000pt;}
.ls15_c02256{letter-spacing:177.120000pt;}
.lsb_c02256{letter-spacing:178.480000pt;}
.ls17_c02256{letter-spacing:180.960000pt;}
.ws0_c02256{word-spacing:-14.780544pt;}
.ws8_c02256{word-spacing:-0.263872pt;}
.ws7_c02256{word-spacing:-0.242592pt;}
.wsa_c02256{word-spacing:-0.225568pt;}
.ws14_c02256{word-spacing:-0.204288pt;}
.wsc_c02256{word-spacing:-0.200032pt;}
.wsb_c02256{word-spacing:-0.191520pt;}
.wsd_c02256{word-spacing:-0.153216pt;}
.wsf_c02256{word-spacing:-0.106400pt;}
.wse_c02256{word-spacing:-0.097888pt;}
.ws6_c02256{word-spacing:-0.089856pt;}
.ws10_c02256{word-spacing:-0.083200pt;}
.ws5_c02256{word-spacing:-0.076800pt;}
.ws13_c02256{word-spacing:-0.072352pt;}
.ws4_c02256{word-spacing:0.000000pt;}
.ws11_c02256{word-spacing:0.006400pt;}
.ws2_c02256{word-spacing:52.417280pt;}
.ws3_c02256{word-spacing:82.177280pt;}
.ws1_c02256{word-spacing:89.857280pt;}
.ws12_c02256{word-spacing:171.321600pt;}
.ws9_c02256{word-spacing:177.081600pt;}
.ws15_c02256{word-spacing:186.043200pt;}
._46_c02256{margin-left:-78.720000pt;}
._41_c02256{margin-left:-54.481056pt;}
._3f_c02256{margin-left:-53.064000pt;}
._47_c02256{margin-left:-47.040000pt;}
._14_c02256{margin-left:-40.460768pt;}
._16_c02256{margin-left:-37.761600pt;}
._2f_c02256{margin-left:-32.001600pt;}
._30_c02256{margin-left:-30.720000pt;}
._44_c02256{margin-left:-25.616416pt;}
._40_c02256{margin-left:-22.080000pt;}
._f_c02256{margin-left:-1.107360pt;}
._15_c02256{width:1.920000pt;}
._2c_c02256{width:4.756544pt;}
._34_c02256{width:6.933440pt;}
._36_c02256{width:8.803296pt;}
._2e_c02256{width:9.833248pt;}
._43_c02256{width:16.030272pt;}
._45_c02256{width:28.800000pt;}
._3e_c02256{width:31.036064pt;}
._3a_c02256{width:32.161600pt;}
._24_c02256{width:37.766400pt;}
._b_c02256{width:45.597824pt;}
._11_c02256{width:46.848000pt;}
._10_c02256{width:53.273600pt;}
._29_c02256{width:55.127968pt;}
._3c_c02256{width:56.192000pt;}
._2a_c02256{width:63.168000pt;}
._8_c02256{width:64.537280pt;}
._13_c02256{width:67.040000pt;}
._2b_c02256{width:68.716800pt;}
._9_c02256{width:69.680160pt;}
._1d_c02256{width:70.848000pt;}
._32_c02256{width:72.725440pt;}
._e_c02256{width:74.400000pt;}
._38_c02256{width:75.320896pt;}
._3d_c02256{width:76.814400pt;}
._1_c02256{width:77.992000pt;}
._28_c02256{width:78.943424pt;}
._d_c02256{width:80.067200pt;}
._19_c02256{width:81.097152pt;}
._1e_c02256{width:82.986816pt;}
._1c_c02256{width:85.097792pt;}
._35_c02256{width:87.786816pt;}
._a_c02256{width:89.329600pt;}
._42_c02256{width:90.224608pt;}
._0_c02256{width:91.219200pt;}
._c_c02256{width:92.870560pt;}
._3_c02256{width:94.880000pt;}
._3b_c02256{width:96.160000pt;}
._26_c02256{width:97.120000pt;}
._33_c02256{width:99.295040pt;}
._17_c02256{width:100.960000pt;}
._1f_c02256{width:102.121792pt;}
._25_c02256{width:103.936000pt;}
._4_c02256{width:104.905728pt;}
._1b_c02256{width:106.726816pt;}
._2_c02256{width:108.640000pt;}
._20_c02256{width:109.636640pt;}
._7_c02256{width:111.669056pt;}
._1a_c02256{width:113.979008pt;}
._12_c02256{width:114.998400pt;}
._21_c02256{width:116.369248pt;}
._31_c02256{width:118.779008pt;}
._5_c02256{width:128.405440pt;}
._27_c02256{width:129.562016pt;}
._22_c02256{width:131.829056pt;}
._6_c02256{width:135.889248pt;}
._37_c02256{width:137.256352pt;}
._18_c02256{width:161.835552pt;}
._2d_c02256{width:166.822272pt;}
._23_c02256{width:176.024032pt;}
._39_c02256{width:185.868960pt;}
.fs5_c02256{font-size:10.560000pt;}
.fs6_c02256{font-size:32.000000pt;}
.fs2_c02256{font-size:37.440000pt;}
.fs3_c02256{font-size:42.560000pt;}
.fs1_c02256{font-size:48.000000pt;}
.fs4_c02256{font-size:58.560000pt;}
.fs0_c02256{font-size:64.000000pt;}
.y0_c02256{bottom:0.000000pt;}
.y4_c02256{bottom:50.987067pt;}
.y3_c02256{bottom:69.387067pt;}
.y5c_c02256{bottom:100.587067pt;}
.y5b_c02256{bottom:114.427067pt;}
.y5a_c02256{bottom:114.747067pt;}
.y59_c02256{bottom:128.187200pt;}
.y58_c02256{bottom:128.587467pt;}
.y57_c02256{bottom:145.067200pt;}
.y56_c02256{bottom:145.386267pt;}
.y55_c02256{bottom:161.947067pt;}
.y54_c02256{bottom:162.266267pt;}
.y53_c02256{bottom:178.827067pt;}
.y52_c02256{bottom:179.147200pt;}
.y51_c02256{bottom:196.027200pt;}
.y50_c02256{bottom:212.507067pt;}
.y4f_c02256{bottom:212.907067pt;}
.y4d_c02256{bottom:230.907067pt;}
.y4c_c02256{bottom:231.307067pt;}
.y4e_c02256{bottom:243.227067pt;}
.y4b_c02256{bottom:255.787067pt;}
.y4a_c02256{bottom:272.347067pt;}
.y49_c02256{bottom:272.667067pt;}
.y48_c02256{bottom:291.067067pt;}
.y47_c02256{bottom:307.627067pt;}
.y46_c02256{bottom:307.947867pt;}
.y45_c02256{bottom:326.027067pt;}
.y44_c02256{bottom:326.347867pt;}
.y43_c02256{bottom:344.427067pt;}
.y42_c02256{bottom:344.747200pt;}
.y41_c02256{bottom:363.147200pt;}
.y3f_c02256{bottom:379.627067pt;}
.y3e_c02256{bottom:380.027067pt;}
.y40_c02256{bottom:391.947200pt;}
.y3d_c02256{bottom:405.147200pt;}
.y3c_c02256{bottom:421.387067pt;}
.y3b_c02256{bottom:436.827200pt;}
.y3a_c02256{bottom:455.307067pt;}
.y39_c02256{bottom:463.147200pt;}
.y38_c02256{bottom:463.466667pt;}
.y37_c02256{bottom:480.027067pt;}
.y36_c02256{bottom:480.346667pt;}
.y35_c02256{bottom:496.827067pt;}
.y34_c02256{bottom:497.227067pt;}
.y33_c02256{bottom:513.707067pt;}
.y32_c02256{bottom:514.026667pt;}
.y31_c02256{bottom:530.587067pt;}
.y30_c02256{bottom:530.907067pt;}
.y2f_c02256{bottom:547.787067pt;}
.y2e_c02256{bottom:564.347067pt;}
.y2d_c02256{bottom:564.667467pt;}
.y2c_c02256{bottom:582.747067pt;}
.y2b_c02256{bottom:583.067467pt;}
.y2a_c02256{bottom:601.147067pt;}
.y29_c02256{bottom:601.467067pt;}
.y28_c02256{bottom:619.867067pt;}
.y27_c02256{bottom:636.347067pt;}
.y26_c02256{bottom:636.747067pt;}
.y25_c02256{bottom:655.707067pt;}
.y24_c02256{bottom:671.947067pt;}
.y23_c02256{bottom:686.587067pt;}
.y22_c02256{bottom:705.067067pt;}
.y21_c02256{bottom:712.907067pt;}
.y20_c02256{bottom:713.227067pt;}
.y1f_c02256{bottom:730.667067pt;}
.y1e_c02256{bottom:746.987200pt;}
.y1d_c02256{bottom:762.427067pt;}
.y1c_c02256{bottom:780.907067pt;}
.y1b_c02256{bottom:788.667200pt;}
.y1a_c02256{bottom:789.067067pt;}
.y19_c02256{bottom:805.547067pt;}
.y18_c02256{bottom:805.866667pt;}
.y17_c02256{bottom:822.427067pt;}
.y16_c02256{bottom:822.746667pt;}
.y15_c02256{bottom:839.307067pt;}
.y14_c02256{bottom:839.626667pt;}
.y13_c02256{bottom:856.187067pt;}
.y12_c02256{bottom:856.507067pt;}
.y11_c02256{bottom:873.387067pt;}
.y10_c02256{bottom:889.867067pt;}
.yf_c02256{bottom:890.187467pt;}
.ye_c02256{bottom:908.267067pt;}
.yd_c02256{bottom:908.587467pt;}
.yc_c02256{bottom:926.667067pt;}
.yb_c02256{bottom:926.987067pt;}
.ya_c02256{bottom:945.387067pt;}
.y9_c02256{bottom:961.947067pt;}
.y8_c02256{bottom:962.267067pt;}
.y7_c02256{bottom:981.307067pt;}
.y6_c02256{bottom:997.547067pt;}
.y5_c02256{bottom:1012.987067pt;}
.y2_c02256{bottom:1042.347067pt;}
.y1_c02256{bottom:1060.587067pt;}
.h9_c02256{height:9.379219pt;}
.hb_c02256{height:37.801094pt;}
.h3_c02256{height:42.632812pt;}
.h13_c02256{height:44.357188pt;}
.h12_c02256{height:54.251498pt;}
.h6_c02256{height:54.252031pt;}
.h5_c02256{height:54.572031pt;}
.hd_c02256{height:55.236654pt;}
.h7_c02256{height:55.532031pt;}
.h8_c02256{height:55.851498pt;}
.h4_c02256{height:55.852031pt;}
.h2_c02256{height:56.156250pt;}
.ha_c02256{height:56.519321pt;}
.h1_c02256{height:56.843750pt;}
.hf_c02256{height:58.732031pt;}
.h11_c02256{height:59.052031pt;}
.he_c02256{height:62.598787pt;}
.h10_c02256{height:71.212031pt;}
.hc_c02256{height:87.558787pt;}
.h0_c02256{height:1122.666667pt;}
.w1_c02256{width:793.333333pt;}
.w0_c02256{width:793.626667pt;}
.x0_c02256{left:0.000000pt;}
.x1_c02256{left:113.440000pt;}
.x3_c02256{left:120.560000pt;}
.x5_c02256{left:127.760000pt;}
.x4_c02256{left:131.280000pt;}
.x6_c02256{left:153.440000pt;}
.x9_c02256{left:194.960000pt;}
.x7_c02256{left:196.160000pt;}
.x8_c02256{left:205.600000pt;}
.xa_c02256{left:239.760000pt;}
.x2_c02256{left:384.880000pt;}
.xb_c02256{left:663.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_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_316859c2ea1ac01cb933ed8e.woff2')format("woff");}.ff1_c02257{font-family:ff1_c02257;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02257;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v2_c02257{vertical-align:-9.000000px;}
.v5_c02257{vertical-align:-4.319400px;}
.v4_c02257{vertical-align:-2.520000px;}
.v6_c02257{vertical-align:-1.440000px;}
.v0_c02257{vertical-align:0.000000px;}
.v1_c02257{vertical-align:1.080000px;}
.v7_c02257{vertical-align:2.880000px;}
.v8_c02257{vertical-align:4.320000px;}
.v3_c02257{vertical-align:5.400000px;}
.ls23_c02257{letter-spacing:-0.178200px;}
.ls2a_c02257{letter-spacing:-0.086184px;}
.ls27_c02257{letter-spacing:-0.043200px;}
.ls22_c02257{letter-spacing:-0.019152px;}
.ls28_c02257{letter-spacing:-0.010800px;}
.ls24_c02257{letter-spacing:-0.009576px;}
.ls25_c02257{letter-spacing:-0.007200px;}
.ls2c_c02257{letter-spacing:-0.004788px;}
.ls21_c02257{letter-spacing:0.000000px;}
.ls2_c02257{letter-spacing:0.006588px;}
.ls2e_c02257{letter-spacing:0.007200px;}
.ls10_c02257{letter-spacing:0.010800px;}
.ls12_c02257{letter-spacing:0.012636px;}
.ls1e_c02257{letter-spacing:0.019152px;}
.ls11_c02257{letter-spacing:0.028728px;}
.ls0_c02257{letter-spacing:0.028800px;}
.ls13_c02257{letter-spacing:0.032400px;}
.ls4_c02257{letter-spacing:0.033696px;}
.lsa_c02257{letter-spacing:0.037800px;}
.lse_c02257{letter-spacing:0.043092px;}
.ls7_c02257{letter-spacing:0.043200px;}
.ls9_c02257{letter-spacing:0.048600px;}
.ls1a_c02257{letter-spacing:0.052668px;}
.ls8_c02257{letter-spacing:0.054000px;}
.lsc_c02257{letter-spacing:0.067032px;}
.ls6_c02257{letter-spacing:0.070200px;}
.ls1_c02257{letter-spacing:0.072468px;}
.ls3_c02257{letter-spacing:0.076608px;}
.ls2d_c02257{letter-spacing:0.081396px;}
.lsb_c02257{letter-spacing:0.086184px;}
.ls16_c02257{letter-spacing:0.110124px;}
.lsd_c02257{letter-spacing:0.114912px;}
.lsf_c02257{letter-spacing:0.119700px;}
.ls1c_c02257{letter-spacing:0.124488px;}
.ls1d_c02257{letter-spacing:0.134064px;}
.ls1b_c02257{letter-spacing:0.138852px;}
.ls26_c02257{letter-spacing:0.151200px;}
.ls14_c02257{letter-spacing:0.158112px;}
.ls19_c02257{letter-spacing:0.162792px;}
.ls29_c02257{letter-spacing:0.167580px;}
.ls1f_c02257{letter-spacing:0.177876px;}
.ls5_c02257{letter-spacing:0.181944px;}
.ls18_c02257{letter-spacing:0.205884px;}
.ls20_c02257{letter-spacing:79.560000px;}
.ls15_c02257{letter-spacing:112.320000px;}
.ls2b_c02257{letter-spacing:143.818200px;}
.ls17_c02257{letter-spacing:200.790000px;}
.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;}
}
.ws3_c02257{word-spacing:-16.647876px;}
.ws1_c02257{word-spacing:-16.628112px;}
.ws0_c02257{word-spacing:-16.476588px;}
.ws14_c02257{word-spacing:-0.296856px;}
.ws13_c02257{word-spacing:-0.272916px;}
.ws16_c02257{word-spacing:-0.253764px;}
.ws19_c02257{word-spacing:-0.229824px;}
.ws1b_c02257{word-spacing:-0.225036px;}
.ws1a_c02257{word-spacing:-0.215460px;}
.ws10_c02257{word-spacing:-0.210672px;}
.ws18_c02257{word-spacing:-0.205884px;}
.ws1c_c02257{word-spacing:-0.172368px;}
.ws7_c02257{word-spacing:-0.122148px;}
.ws17_c02257{word-spacing:-0.119700px;}
.ws1d_c02257{word-spacing:-0.110124px;}
.ws12_c02257{word-spacing:-0.101088px;}
.ws5_c02257{word-spacing:-0.086400px;}
.ws1e_c02257{word-spacing:-0.007200px;}
.ws4_c02257{word-spacing:0.000000px;}
.ws11_c02257{word-spacing:0.007200px;}
.ws6_c02257{word-spacing:0.019764px;}
.ws8_c02257{word-spacing:0.108000px;}
.ws9_c02257{word-spacing:0.124200px;}
.wsa_c02257{word-spacing:0.129600px;}
.wsd_c02257{word-spacing:1.235304px;}
.wsf_c02257{word-spacing:1.273608px;}
.wse_c02257{word-spacing:1.307124px;}
.wsb_c02257{word-spacing:5.941908px;}
.wsc_c02257{word-spacing:5.961060px;}
.ws2_c02257{word-spacing:101.089440px;}
.ws15_c02257{word-spacing:156.378600px;}
.ws1f_c02257{word-spacing:199.216800px;}
._26_c02257{margin-left:-43.718364px;}
._27_c02257{margin-left:-42.481800px;}
._1_c02257{margin-left:-1.162512px;}
._28_c02257{width:1.193364px;}
._1d_c02257{width:41.958036px;}
._1e_c02257{width:43.556400px;}
._16_c02257{width:51.297552px;}
._25_c02257{width:57.420000px;}
._1a_c02257{width:61.927020px;}
._12_c02257{width:72.964440px;}
._1c_c02257{width:75.420000px;}
._13_c02257{width:77.310180px;}
._19_c02257{width:83.700000px;}
._b_c02257{width:84.834000px;}
._14_c02257{width:86.918400px;}
._a_c02257{width:88.221600px;}
._18_c02257{width:90.075600px;}
._20_c02257{width:91.234296px;}
._23_c02257{width:93.360168px;}
._22_c02257{width:95.735016px;}
._15_c02257{width:100.958400px;}
._17_c02257{width:104.479380px;}
._d_c02257{width:106.740000px;}
._24_c02257{width:114.887016px;}
._e_c02257{width:118.018944px;}
._21_c02257{width:119.431548px;}
._c_c02257{width:122.220000px;}
._11_c02257{width:126.707688px;}
._1b_c02257{width:128.619648px;}
._f_c02257{width:144.456120px;}
._10_c02257{width:152.875404px;}
._1f_c02257{width:183.543336px;}
._9_c02257{width:203.036400px;}
._4_c02257{width:216.180000px;}
._2_c02257{width:287.726112px;}
._5_c02257{width:310.104000px;}
._3_c02257{width:347.693400px;}
._7_c02257{width:353.833200px;}
._6_c02257{width:419.929200px;}
._0_c02257{width:431.488440px;}
._8_c02257{width:605.295000px;}
.fc0_c02257{color:rgb(0,0,0);}
.fs5_c02257{font-size:11.880000px;}
.fs3_c02257{font-size:42.120000px;}
.fs2_c02257{font-size:47.880000px;}
.fs4_c02257{font-size:54.000000px;}
.fs1_c02257{font-size:65.880000px;}
.fs0_c02257{font-size:72.000000px;}
.y0_c02257{bottom:0.000000px;}
.y4_c02257{bottom:57.360450px;}
.y3_c02257{bottom:78.060450px;}
.y5b_c02257{bottom:116.040000px;}
.y5a_c02257{bottom:131.609550px;}
.y59_c02257{bottom:147.090000px;}
.y58_c02257{bottom:162.659550px;}
.y57_c02257{bottom:178.140000px;}
.y56_c02257{bottom:193.620450px;}
.y55_c02257{bottom:209.190000px;}
.y54_c02257{bottom:224.670450px;}
.y53_c02257{bottom:240.240000px;}
.y52_c02257{bottom:255.720450px;}
.y51_c02257{bottom:271.290450px;}
.y50_c02257{bottom:271.650000px;}
.y4f_c02257{bottom:290.280450px;}
.y4e_c02257{bottom:290.640000px;}
.y4d_c02257{bottom:309.270450px;}
.y4c_c02257{bottom:309.630000px;}
.y4b_c02257{bottom:328.170450px;}
.y4a_c02257{bottom:328.620600px;}
.y49_c02257{bottom:347.160450px;}
.y48_c02257{bottom:347.520450px;}
.y47_c02257{bottom:366.510450px;}
.y45_c02257{bottom:385.140450px;}
.y44_c02257{bottom:385.500600px;}
.y46_c02257{bottom:386.580450px;}
.y42_c02257{bottom:405.840600px;}
.y41_c02257{bottom:406.200600px;}
.y43_c02257{bottom:407.280450px;}
.y40_c02257{bottom:426.900450px;}
.y3e_c02257{bottom:445.530600px;}
.y3d_c02257{bottom:445.890450px;}
.y3f_c02257{bottom:446.970450px;}
.y3b_c02257{bottom:466.230450px;}
.y3a_c02257{bottom:466.590600px;}
.y3c_c02257{bottom:467.670450px;}
.y38_c02257{bottom:486.930600px;}
.y37_c02257{bottom:487.290600px;}
.y39_c02257{bottom:488.370600px;}
.y36_c02257{bottom:507.990450px;}
.y34_c02257{bottom:526.530450px;}
.y33_c02257{bottom:526.980450px;}
.y35_c02257{bottom:528.060450px;}
.y32_c02257{bottom:548.310450px;}
.y31_c02257{bottom:566.580450px;}
.y30_c02257{bottom:583.950450px;}
.y2f_c02257{bottom:604.740450px;}
.y2e_c02257{bottom:613.560450px;}
.y2d_c02257{bottom:613.920000px;}
.y2c_c02257{bottom:632.550450px;}
.y2b_c02257{bottom:632.910000px;}
.y2a_c02257{bottom:651.540450px;}
.y29_c02257{bottom:651.900000px;}
.y28_c02257{bottom:670.440450px;}
.y27_c02257{bottom:670.890450px;}
.y26_c02257{bottom:689.430450px;}
.y25_c02257{bottom:689.790450px;}
.y24_c02257{bottom:708.780450px;}
.y23_c02257{bottom:727.410450px;}
.y22_c02257{bottom:727.770900px;}
.y21_c02257{bottom:748.110450px;}
.y20_c02257{bottom:748.470450px;}
.y1f_c02257{bottom:769.170450px;}
.y1e_c02257{bottom:787.800450px;}
.y1d_c02257{bottom:788.160900px;}
.y1c_c02257{bottom:808.500450px;}
.y1b_c02257{bottom:808.860900px;}
.y1a_c02257{bottom:829.200450px;}
.y19_c02257{bottom:829.560450px;}
.y18_c02257{bottom:850.260450px;}
.y17_c02257{bottom:868.800450px;}
.y16_c02257{bottom:869.250600px;}
.y15_c02257{bottom:890.580450px;}
.y14_c02257{bottom:909.750450px;}
.y13_c02257{bottom:926.220450px;}
.y12_c02257{bottom:946.380450px;}
.y11_c02257{bottom:961.499289px;}
.y10_c02257{bottom:975.629874px;}
.yf_c02257{bottom:989.400162px;}
.ye_c02257{bottom:1003.170450px;}
.yd_c02257{bottom:1024.320450px;}
.yc_c02257{bottom:1039.800450px;}
.yb_c02257{bottom:1055.370450px;}
.ya_c02257{bottom:1070.850450px;}
.y9_c02257{bottom:1086.420450px;}
.y6_c02257{bottom:1103.790450px;}
.y8_c02257{bottom:1104.060450px;}
.y7_c02257{bottom:1119.540600px;}
.y5_c02257{bottom:1141.500450px;}
.y2_c02257{bottom:1172.640450px;}
.y1_c02257{bottom:1193.160450px;}
.hf_c02257{height:10.551621px;}
.h5_c02257{height:37.410293px;}
.h6_c02257{height:42.011895px;}
.h4_c02257{height:42.526230px;}
.h8_c02257{height:47.961914px;}
.h7_c02257{height:48.461836px;}
.h9_c02257{height:48.570893px;}
.h3_c02257{height:58.513535px;}
.hb_c02257{height:61.033535px;}
.he_c02257{height:61.393535px;}
.h11_c02257{height:62.472935px;}
.hc_c02257{height:62.473535px;}
.hd_c02257{height:62.474135px;}
.ha_c02257{height:62.833535px;}
.h13_c02257{height:62.834135px;}
.h2_c02257{height:63.175781px;}
.h1_c02257{height:63.949219px;}
.h12_c02257{height:66.055781px;}
.h10_c02257{height:66.056381px;}
.h0_c02257{height:1263.000000px;}
.w1_c02257{width:892.500000px;}
.w0_c02257{width:892.830000px;}
.x0_c02257{left:0.000000px;}
.x1_c02257{left:127.620000px;}
.x3_c02257{left:134.550000px;}
.x6_c02257{left:135.630000px;}
.x7_c02257{left:143.910000px;}
.x8_c02257{left:165.060000px;}
.x9_c02257{left:220.680000px;}
.x4_c02257{left:336.240000px;}
.x5_c02257{left:355.140000px;}
.x2_c02257{left:432.990000px;}
.xa_c02257{left:693.540000px;}
@media print{
.v2_c02257{vertical-align:-8.000000pt;}
.v5_c02257{vertical-align:-3.839467pt;}
.v4_c02257{vertical-align:-2.240000pt;}
.v6_c02257{vertical-align:-1.280000pt;}
.v0_c02257{vertical-align:0.000000pt;}
.v1_c02257{vertical-align:0.960000pt;}
.v7_c02257{vertical-align:2.560000pt;}
.v8_c02257{vertical-align:3.840000pt;}
.v3_c02257{vertical-align:4.800000pt;}
.ls23_c02257{letter-spacing:-0.158400pt;}
.ls2a_c02257{letter-spacing:-0.076608pt;}
.ls27_c02257{letter-spacing:-0.038400pt;}
.ls22_c02257{letter-spacing:-0.017024pt;}
.ls28_c02257{letter-spacing:-0.009600pt;}
.ls24_c02257{letter-spacing:-0.008512pt;}
.ls25_c02257{letter-spacing:-0.006400pt;}
.ls2c_c02257{letter-spacing:-0.004256pt;}
.ls21_c02257{letter-spacing:0.000000pt;}
.ls2_c02257{letter-spacing:0.005856pt;}
.ls2e_c02257{letter-spacing:0.006400pt;}
.ls10_c02257{letter-spacing:0.009600pt;}
.ls12_c02257{letter-spacing:0.011232pt;}
.ls1e_c02257{letter-spacing:0.017024pt;}
.ls11_c02257{letter-spacing:0.025536pt;}
.ls0_c02257{letter-spacing:0.025600pt;}
.ls13_c02257{letter-spacing:0.028800pt;}
.ls4_c02257{letter-spacing:0.029952pt;}
.lsa_c02257{letter-spacing:0.033600pt;}
.lse_c02257{letter-spacing:0.038304pt;}
.ls7_c02257{letter-spacing:0.038400pt;}
.ls9_c02257{letter-spacing:0.043200pt;}
.ls1a_c02257{letter-spacing:0.046816pt;}
.ls8_c02257{letter-spacing:0.048000pt;}
.lsc_c02257{letter-spacing:0.059584pt;}
.ls6_c02257{letter-spacing:0.062400pt;}
.ls1_c02257{letter-spacing:0.064416pt;}
.ls3_c02257{letter-spacing:0.068096pt;}
.ls2d_c02257{letter-spacing:0.072352pt;}
.lsb_c02257{letter-spacing:0.076608pt;}
.ls16_c02257{letter-spacing:0.097888pt;}
.lsd_c02257{letter-spacing:0.102144pt;}
.lsf_c02257{letter-spacing:0.106400pt;}
.ls1c_c02257{letter-spacing:0.110656pt;}
.ls1d_c02257{letter-spacing:0.119168pt;}
.ls1b_c02257{letter-spacing:0.123424pt;}
.ls26_c02257{letter-spacing:0.134400pt;}
.ls14_c02257{letter-spacing:0.140544pt;}
.ls19_c02257{letter-spacing:0.144704pt;}
.ls29_c02257{letter-spacing:0.148960pt;}
.ls1f_c02257{letter-spacing:0.158112pt;}
.ls5_c02257{letter-spacing:0.161728pt;}
.ls18_c02257{letter-spacing:0.183008pt;}
.ls20_c02257{letter-spacing:70.720000pt;}
.ls15_c02257{letter-spacing:99.840000pt;}
.ls2b_c02257{letter-spacing:127.838400pt;}
.ls17_c02257{letter-spacing:178.480000pt;}
.ws3_c02257{word-spacing:-14.798112pt;}
.ws1_c02257{word-spacing:-14.780544pt;}
.ws0_c02257{word-spacing:-14.645856pt;}
.ws14_c02257{word-spacing:-0.263872pt;}
.ws13_c02257{word-spacing:-0.242592pt;}
.ws16_c02257{word-spacing:-0.225568pt;}
.ws19_c02257{word-spacing:-0.204288pt;}
.ws1b_c02257{word-spacing:-0.200032pt;}
.ws1a_c02257{word-spacing:-0.191520pt;}
.ws10_c02257{word-spacing:-0.187264pt;}
.ws18_c02257{word-spacing:-0.183008pt;}
.ws1c_c02257{word-spacing:-0.153216pt;}
.ws7_c02257{word-spacing:-0.108576pt;}
.ws17_c02257{word-spacing:-0.106400pt;}
.ws1d_c02257{word-spacing:-0.097888pt;}
.ws12_c02257{word-spacing:-0.089856pt;}
.ws5_c02257{word-spacing:-0.076800pt;}
.ws1e_c02257{word-spacing:-0.006400pt;}
.ws4_c02257{word-spacing:0.000000pt;}
.ws11_c02257{word-spacing:0.006400pt;}
.ws6_c02257{word-spacing:0.017568pt;}
.ws8_c02257{word-spacing:0.096000pt;}
.ws9_c02257{word-spacing:0.110400pt;}
.wsa_c02257{word-spacing:0.115200pt;}
.wsd_c02257{word-spacing:1.098048pt;}
.wsf_c02257{word-spacing:1.132096pt;}
.wse_c02257{word-spacing:1.161888pt;}
.wsb_c02257{word-spacing:5.281696pt;}
.wsc_c02257{word-spacing:5.298720pt;}
.ws2_c02257{word-spacing:89.857280pt;}
.ws15_c02257{word-spacing:139.003200pt;}
.ws1f_c02257{word-spacing:177.081600pt;}
._26_c02257{margin-left:-38.860768pt;}
._27_c02257{margin-left:-37.761600pt;}
._1_c02257{margin-left:-1.033344pt;}
._28_c02257{width:1.060768pt;}
._1d_c02257{width:37.296032pt;}
._1e_c02257{width:38.716800pt;}
._16_c02257{width:45.597824pt;}
._25_c02257{width:51.040000pt;}
._1a_c02257{width:55.046240pt;}
._12_c02257{width:64.857280pt;}
._1c_c02257{width:67.040000pt;}
._13_c02257{width:68.720160pt;}
._19_c02257{width:74.400000pt;}
._b_c02257{width:75.408000pt;}
._14_c02257{width:77.260800pt;}
._a_c02257{width:78.419200pt;}
._18_c02257{width:80.067200pt;}
._20_c02257{width:81.097152pt;}
._23_c02257{width:82.986816pt;}
._22_c02257{width:85.097792pt;}
._15_c02257{width:89.740800pt;}
._17_c02257{width:92.870560pt;}
._d_c02257{width:94.880000pt;}
._24_c02257{width:102.121792pt;}
._e_c02257{width:104.905728pt;}
._21_c02257{width:106.161376pt;}
._c_c02257{width:108.640000pt;}
._11_c02257{width:112.629056pt;}
._1b_c02257{width:114.328576pt;}
._f_c02257{width:128.405440pt;}
._10_c02257{width:135.889248pt;}
._1f_c02257{width:163.149632pt;}
._9_c02257{width:180.476800pt;}
._4_c02257{width:192.160000pt;}
._2_c02257{width:255.756544pt;}
._5_c02257{width:275.648000pt;}
._3_c02257{width:309.060800pt;}
._7_c02257{width:314.518400pt;}
._6_c02257{width:373.270400pt;}
._0_c02257{width:383.545280pt;}
._8_c02257{width:538.040000pt;}
.fs5_c02257{font-size:10.560000pt;}
.fs3_c02257{font-size:37.440000pt;}
.fs2_c02257{font-size:42.560000pt;}
.fs4_c02257{font-size:48.000000pt;}
.fs1_c02257{font-size:58.560000pt;}
.fs0_c02257{font-size:64.000000pt;}
.y0_c02257{bottom:0.000000pt;}
.y4_c02257{bottom:50.987067pt;}
.y3_c02257{bottom:69.387067pt;}
.y5b_c02257{bottom:103.146667pt;}
.y5a_c02257{bottom:116.986267pt;}
.y59_c02257{bottom:130.746667pt;}
.y58_c02257{bottom:144.586267pt;}
.y57_c02257{bottom:158.346667pt;}
.y56_c02257{bottom:172.107067pt;}
.y55_c02257{bottom:185.946667pt;}
.y54_c02257{bottom:199.707067pt;}
.y53_c02257{bottom:213.546667pt;}
.y52_c02257{bottom:227.307067pt;}
.y51_c02257{bottom:241.147067pt;}
.y50_c02257{bottom:241.466667pt;}
.y4f_c02257{bottom:258.027067pt;}
.y4e_c02257{bottom:258.346667pt;}
.y4d_c02257{bottom:274.907067pt;}
.y4c_c02257{bottom:275.226667pt;}
.y4b_c02257{bottom:291.707067pt;}
.y4a_c02257{bottom:292.107200pt;}
.y49_c02257{bottom:308.587067pt;}
.y48_c02257{bottom:308.907067pt;}
.y47_c02257{bottom:325.787067pt;}
.y45_c02257{bottom:342.347067pt;}
.y44_c02257{bottom:342.667200pt;}
.y46_c02257{bottom:343.627067pt;}
.y42_c02257{bottom:360.747200pt;}
.y41_c02257{bottom:361.067200pt;}
.y43_c02257{bottom:362.027067pt;}
.y40_c02257{bottom:379.467067pt;}
.y3e_c02257{bottom:396.027200pt;}
.y3d_c02257{bottom:396.347067pt;}
.y3f_c02257{bottom:397.307067pt;}
.y3b_c02257{bottom:414.427067pt;}
.y3a_c02257{bottom:414.747200pt;}
.y3c_c02257{bottom:415.707067pt;}
.y38_c02257{bottom:432.827200pt;}
.y37_c02257{bottom:433.147200pt;}
.y39_c02257{bottom:434.107200pt;}
.y36_c02257{bottom:451.547067pt;}
.y34_c02257{bottom:468.027067pt;}
.y33_c02257{bottom:468.427067pt;}
.y35_c02257{bottom:469.387067pt;}
.y32_c02257{bottom:487.387067pt;}
.y31_c02257{bottom:503.627067pt;}
.y30_c02257{bottom:519.067067pt;}
.y2f_c02257{bottom:537.547067pt;}
.y2e_c02257{bottom:545.387067pt;}
.y2d_c02257{bottom:545.706667pt;}
.y2c_c02257{bottom:562.267067pt;}
.y2b_c02257{bottom:562.586667pt;}
.y2a_c02257{bottom:579.147067pt;}
.y29_c02257{bottom:579.466667pt;}
.y28_c02257{bottom:595.947067pt;}
.y27_c02257{bottom:596.347067pt;}
.y26_c02257{bottom:612.827067pt;}
.y25_c02257{bottom:613.147067pt;}
.y24_c02257{bottom:630.027067pt;}
.y23_c02257{bottom:646.587067pt;}
.y22_c02257{bottom:646.907467pt;}
.y21_c02257{bottom:664.987067pt;}
.y20_c02257{bottom:665.307067pt;}
.y1f_c02257{bottom:683.707067pt;}
.y1e_c02257{bottom:700.267067pt;}
.y1d_c02257{bottom:700.587467pt;}
.y1c_c02257{bottom:718.667067pt;}
.y1b_c02257{bottom:718.987467pt;}
.y1a_c02257{bottom:737.067067pt;}
.y19_c02257{bottom:737.387067pt;}
.y18_c02257{bottom:755.787067pt;}
.y17_c02257{bottom:772.267067pt;}
.y16_c02257{bottom:772.667200pt;}
.y15_c02257{bottom:791.627067pt;}
.y14_c02257{bottom:808.667067pt;}
.y13_c02257{bottom:823.307067pt;}
.y12_c02257{bottom:841.227067pt;}
.y11_c02257{bottom:854.666035pt;}
.y10_c02257{bottom:867.226555pt;}
.yf_c02257{bottom:879.466811pt;}
.ye_c02257{bottom:891.707067pt;}
.yd_c02257{bottom:910.507067pt;}
.yc_c02257{bottom:924.267067pt;}
.yb_c02257{bottom:938.107067pt;}
.ya_c02257{bottom:951.867067pt;}
.y9_c02257{bottom:965.707067pt;}
.y6_c02257{bottom:981.147067pt;}
.y8_c02257{bottom:981.387067pt;}
.y7_c02257{bottom:995.147200pt;}
.y5_c02257{bottom:1014.667067pt;}
.y2_c02257{bottom:1042.347067pt;}
.y1_c02257{bottom:1060.587067pt;}
.hf_c02257{height:9.379219pt;}
.h5_c02257{height:33.253594pt;}
.h6_c02257{height:37.343906pt;}
.h4_c02257{height:37.801094pt;}
.h8_c02257{height:42.632812pt;}
.h7_c02257{height:43.077187pt;}
.h9_c02257{height:43.174127pt;}
.h3_c02257{height:52.012031pt;}
.hb_c02257{height:54.252031pt;}
.he_c02257{height:54.572031pt;}
.h11_c02257{height:55.531498pt;}
.hc_c02257{height:55.532031pt;}
.hd_c02257{height:55.532565pt;}
.ha_c02257{height:55.852031pt;}
.h13_c02257{height:55.852565pt;}
.h2_c02257{height:56.156250pt;}
.h1_c02257{height:56.843750pt;}
.h12_c02257{height:58.716250pt;}
.h10_c02257{height:58.716783pt;}
.h0_c02257{height:1122.666667pt;}
.w1_c02257{width:793.333333pt;}
.w0_c02257{width:793.626667pt;}
.x0_c02257{left:0.000000pt;}
.x1_c02257{left:113.440000pt;}
.x3_c02257{left:119.600000pt;}
.x6_c02257{left:120.560000pt;}
.x7_c02257{left:127.920000pt;}
.x8_c02257{left:146.720000pt;}
.x9_c02257{left:196.160000pt;}
.x4_c02257{left:298.880000pt;}
.x5_c02257{left:315.680000pt;}
.x2_c02257{left:384.880000pt;}
.xa_c02257{left:616.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_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_1ba7f81ed1cbc91ab745bd85.woff2')format("woff");}.ff1_c02258{font-family:ff1_c02258;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02258;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v3_c02258{vertical-align:-4.320000px;}
.v2_c02258{vertical-align:-2.880000px;}
.v4_c02258{vertical-align:-1.800000px;}
.v0_c02258{vertical-align:0.000000px;}
.v5_c02258{vertical-align:1.800000px;}
.v7_c02258{vertical-align:2.880000px;}
.v6_c02258{vertical-align:4.320000px;}
.v1_c02258{vertical-align:5.400000px;}
.ls2d_c02258{letter-spacing:-0.178200px;}
.ls2c_c02258{letter-spacing:-0.118800px;}
.ls28_c02258{letter-spacing:-0.086184px;}
.ls24_c02258{letter-spacing:-0.043200px;}
.ls26_c02258{letter-spacing:-0.019152px;}
.ls25_c02258{letter-spacing:-0.010800px;}
.ls2e_c02258{letter-spacing:-0.009576px;}
.ls2a_c02258{letter-spacing:-0.004788px;}
.ls22_c02258{letter-spacing:0.000000px;}
.ls18_c02258{letter-spacing:0.006588px;}
.ls1_c02258{letter-spacing:0.010800px;}
.ls4_c02258{letter-spacing:0.012636px;}
.ls20_c02258{letter-spacing:0.014400px;}
.ls16_c02258{letter-spacing:0.019152px;}
.lse_c02258{letter-spacing:0.027000px;}
.ls3_c02258{letter-spacing:0.028728px;}
.ls0_c02258{letter-spacing:0.028800px;}
.ls5_c02258{letter-spacing:0.032400px;}
.ls19_c02258{letter-spacing:0.033696px;}
.ls11_c02258{letter-spacing:0.037800px;}
.ls2_c02258{letter-spacing:0.043092px;}
.ls9_c02258{letter-spacing:0.043200px;}
.ls1c_c02258{letter-spacing:0.048600px;}
.ls10_c02258{letter-spacing:0.052668px;}
.ls1b_c02258{letter-spacing:0.054000px;}
.ls1e_c02258{letter-spacing:0.067032px;}
.ls1a_c02258{letter-spacing:0.070200px;}
.lsc_c02258{letter-spacing:0.076608px;}
.ls2b_c02258{letter-spacing:0.081396px;}
.ls1d_c02258{letter-spacing:0.086184px;}
.ls17_c02258{letter-spacing:0.092232px;}
.ls8_c02258{letter-spacing:0.110124px;}
.ls12_c02258{letter-spacing:0.114912px;}
.ls1f_c02258{letter-spacing:0.119700px;}
.ls14_c02258{letter-spacing:0.124488px;}
.ls15_c02258{letter-spacing:0.134064px;}
.ls13_c02258{letter-spacing:0.138852px;}
.ls23_c02258{letter-spacing:0.151200px;}
.ls6_c02258{letter-spacing:0.158112px;}
.lsf_c02258{letter-spacing:0.162792px;}
.ls27_c02258{letter-spacing:0.167580px;}
.lsd_c02258{letter-spacing:0.181944px;}
.lsb_c02258{letter-spacing:0.205884px;}
.ls21_c02258{letter-spacing:113.040000px;}
.ls7_c02258{letter-spacing:114.120000px;}
.ls2f_c02258{letter-spacing:144.541800px;}
.ls29_c02258{letter-spacing:145.621800px;}
.lsa_c02258{letter-spacing:200.790000px;}
.sc__c02258{text-shadow:none;}
.sc0_c02258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02258{-webkit-text-stroke:0px transparent;}
.sc0_c02258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02258{word-spacing:-16.628112px;}
.ws2_c02258{word-spacing:-16.476588px;}
.ws9_c02258{word-spacing:-0.296856px;}
.ws8_c02258{word-spacing:-0.272916px;}
.wsc_c02258{word-spacing:-0.253764px;}
.wsf_c02258{word-spacing:-0.229824px;}
.ws11_c02258{word-spacing:-0.225036px;}
.ws10_c02258{word-spacing:-0.215460px;}
.ws1d_c02258{word-spacing:-0.210672px;}
.wse_c02258{word-spacing:-0.205884px;}
.ws6_c02258{word-spacing:-0.180000px;}
.ws12_c02258{word-spacing:-0.172368px;}
.ws14_c02258{word-spacing:-0.122148px;}
.wsd_c02258{word-spacing:-0.119700px;}
.ws13_c02258{word-spacing:-0.110124px;}
.ws7_c02258{word-spacing:-0.101088px;}
.ws5_c02258{word-spacing:-0.086400px;}
.ws1e_c02258{word-spacing:-0.014400px;}
.ws4_c02258{word-spacing:0.000000px;}
.ws15_c02258{word-spacing:0.108000px;}
.ws16_c02258{word-spacing:0.124200px;}
.ws17_c02258{word-spacing:0.129600px;}
.ws1a_c02258{word-spacing:1.235304px;}
.ws1c_c02258{word-spacing:1.273608px;}
.ws1b_c02258{word-spacing:1.307124px;}
.ws18_c02258{word-spacing:5.941908px;}
.ws19_c02258{word-spacing:5.961060px;}
.ws1_c02258{word-spacing:58.609440px;}
.ws3_c02258{word-spacing:58.969440px;}
.wsb_c02258{word-spacing:120.031200px;}
.wsa_c02258{word-spacing:156.735000px;}
.ws1f_c02258{word-spacing:199.216800px;}
._18_c02258{margin-left:-68.785200px;}
._17_c02258{margin-left:-58.014000px;}
._1a_c02258{margin-left:-44.280000px;}
._34_c02258{margin-left:-42.432012px;}
._e_c02258{margin-left:-1.179000px;}
._19_c02258{width:8.251200px;}
._1f_c02258{width:42.272532px;}
._14_c02258{width:43.581636px;}
._b_c02258{width:50.577552px;}
._2a_c02258{width:59.061600px;}
._10_c02258{width:62.053200px;}
._31_c02258{width:63.244440px;}
._7_c02258{width:72.964440px;}
._12_c02258{width:75.780000px;}
._8_c02258{width:76.950180px;}
._1d_c02258{width:78.225300px;}
._30_c02258{width:82.067688px;}
._13_c02258{width:83.700000px;}
._1_c02258{width:84.834000px;}
._9_c02258{width:87.278400px;}
._0_c02258{width:88.581600px;}
._d_c02258{width:90.075600px;}
._15_c02258{width:91.288440px;}
._f_c02258{width:93.069000px;}
._1e_c02258{width:95.438088px;}
._a_c02258{width:100.598400px;}
._2d_c02258{width:102.060000px;}
._33_c02258{width:103.140000px;}
._c_c02258{width:104.479380px;}
._3_c02258{width:106.740000px;}
._2b_c02258{width:110.754000px;}
._32_c02258{width:113.115600px;}
._20_c02258{width:114.887016px;}
._4_c02258{width:118.378944px;}
._1c_c02258{width:120.364596px;}
._2_c02258{width:122.220000px;}
._37_c02258{width:126.707688px;}
._11_c02258{width:128.979648px;}
._38_c02258{width:130.124916px;}
._36_c02258{width:132.631524px;}
._2c_c02258{width:133.740000px;}
._35_c02258{width:139.202496px;}
._1b_c02258{width:145.620000px;}
._6_c02258{width:148.307688px;}
._5_c02258{width:153.511524px;}
._2f_c02258{width:171.843084px;}
._2e_c02258{width:174.898944px;}
._16_c02258{width:182.604168px;}
._29_c02258{width:203.036400px;}
._24_c02258{width:216.180000px;}
._22_c02258{width:283.500000px;}
._25_c02258{width:310.104000px;}
._23_c02258{width:347.693400px;}
._27_c02258{width:353.833200px;}
._21_c02258{width:414.180000px;}
._26_c02258{width:419.929200px;}
._28_c02258{width:605.295000px;}
.fc0_c02258{color:rgb(0,0,0);}
.fs5_c02258{font-size:11.880000px;}
.fs3_c02258{font-size:42.120000px;}
.fs2_c02258{font-size:47.880000px;}
.fs1_c02258{font-size:54.000000px;}
.fs4_c02258{font-size:65.880000px;}
.fs0_c02258{font-size:72.000000px;}
.y0_c02258{bottom:0.000000px;}
.y4_c02258{bottom:57.360450px;}
.y3_c02258{bottom:78.060450px;}
.y51_c02258{bottom:117.210900px;}
.y50_c02258{bottom:132.780450px;}
.y4f_c02258{bottom:148.260900px;}
.y4e_c02258{bottom:163.830450px;}
.y4d_c02258{bottom:179.310900px;}
.y4c_c02258{bottom:194.880450px;}
.y4b_c02258{bottom:210.360900px;}
.y4a_c02258{bottom:225.930450px;}
.y49_c02258{bottom:241.410900px;}
.y48_c02258{bottom:256.980450px;}
.y47_c02258{bottom:272.460900px;}
.y46_c02258{bottom:288.030450px;}
.y45_c02258{bottom:303.510900px;}
.y44_c02258{bottom:319.080450px;}
.y43_c02258{bottom:334.560900px;}
.y42_c02258{bottom:350.130450px;}
.y41_c02258{bottom:365.610900px;}
.y40_c02258{bottom:381.180450px;}
.y3f_c02258{bottom:396.660900px;}
.y3e_c02258{bottom:412.230450px;}
.y3d_c02258{bottom:427.710600px;}
.y3c_c02258{bottom:428.070450px;}
.y3b_c02258{bottom:447.690600px;}
.y3a_c02258{bottom:466.050450px;}
.y39_c02258{bottom:483.420450px;}
.y38_c02258{bottom:504.210600px;}
.y37_c02258{bottom:513.030600px;}
.y36_c02258{bottom:513.390450px;}
.y35_c02258{bottom:533.010450px;}
.y34_c02258{bottom:551.280450px;}
.y33_c02258{bottom:568.650450px;}
.y32_c02258{bottom:588.810000px;}
.y31_c02258{bottom:604.290450px;}
.y30_c02258{bottom:619.769874px;}
.y2f_c02258{bottom:633.540162px;}
.y2e_c02258{bottom:647.310450px;}
.y2d_c02258{bottom:663.510450px;}
.y2c_c02258{bottom:678.990450px;}
.y2b_c02258{bottom:696.000450px;}
.y2a_c02258{bottom:711.480450px;}
.y29_c02258{bottom:727.050450px;}
.y26_c02258{bottom:744.780450px;}
.y28_c02258{bottom:745.050450px;}
.y27_c02258{bottom:761.880450px;}
.y25_c02258{bottom:777.630450px;}
.y24_c02258{bottom:795.900000px;}
.y23_c02258{bottom:811.380450px;}
.y22_c02258{bottom:826.950450px;}
.y21_c02258{bottom:827.310000px;}
.y20_c02258{bottom:845.850450px;}
.y1f_c02258{bottom:846.300450px;}
.y1e_c02258{bottom:864.840450px;}
.y1d_c02258{bottom:865.200000px;}
.y1c_c02258{bottom:883.830450px;}
.y1b_c02258{bottom:884.190000px;}
.y1a_c02258{bottom:902.820450px;}
.y19_c02258{bottom:903.180450px;}
.y18_c02258{bottom:922.170450px;}
.y17_c02258{bottom:940.800450px;}
.y16_c02258{bottom:941.160900px;}
.y15_c02258{bottom:961.410450px;}
.y14_c02258{bottom:961.860450px;}
.y13_c02258{bottom:982.560450px;}
.y12_c02258{bottom:1001.100450px;}
.y11_c02258{bottom:1001.460900px;}
.y10_c02258{bottom:1021.800450px;}
.yf_c02258{bottom:1022.160900px;}
.ye_c02258{bottom:1042.500450px;}
.yd_c02258{bottom:1042.860450px;}
.yb_c02258{bottom:1063.200450px;}
.ya_c02258{bottom:1063.560000px;}
.yc_c02258{bottom:1064.280450px;}
.y9_c02258{bottom:1082.190450px;}
.y8_c02258{bottom:1082.550450px;}
.y7_c02258{bottom:1103.970450px;}
.y6_c02258{bottom:1123.140450px;}
.y5_c02258{bottom:1139.610450px;}
.y2_c02258{bottom:1172.640450px;}
.y1_c02258{bottom:1193.160450px;}
.hf_c02258{height:10.551621px;}
.hb_c02258{height:37.410293px;}
.he_c02258{height:42.011895px;}
.hc_c02258{height:47.381836px;}
.h4_c02258{height:47.961914px;}
.hd_c02258{height:48.461836px;}
.h3_c02258{height:48.570293px;}
.h6_c02258{height:58.513535px;}
.h7_c02258{height:61.033535px;}
.h9_c02258{height:62.473535px;}
.h8_c02258{height:62.474135px;}
.h5_c02258{height:62.833535px;}
.ha_c02258{height:62.834135px;}
.h2_c02258{height:63.175781px;}
.h1_c02258{height:63.949219px;}
.h0_c02258{height:1263.000000px;}
.w1_c02258{width:892.500000px;}
.w0_c02258{width:892.830000px;}
.x0_c02258{left:0.000000px;}
.x1_c02258{left:127.620000px;}
.x8_c02258{left:134.550000px;}
.x3_c02258{left:135.630000px;}
.x4_c02258{left:143.820000px;}
.xb_c02258{left:152.190000px;}
.x5_c02258{left:164.790000px;}
.x6_c02258{left:220.680000px;}
.x9_c02258{left:336.240000px;}
.xa_c02258{left:354.780000px;}
.x2_c02258{left:432.990000px;}
.x7_c02258{left:717.930000px;}
@media print{
.v3_c02258{vertical-align:-3.840000pt;}
.v2_c02258{vertical-align:-2.560000pt;}
.v4_c02258{vertical-align:-1.600000pt;}
.v0_c02258{vertical-align:0.000000pt;}
.v5_c02258{vertical-align:1.600000pt;}
.v7_c02258{vertical-align:2.560000pt;}
.v6_c02258{vertical-align:3.840000pt;}
.v1_c02258{vertical-align:4.800000pt;}
.ls2d_c02258{letter-spacing:-0.158400pt;}
.ls2c_c02258{letter-spacing:-0.105600pt;}
.ls28_c02258{letter-spacing:-0.076608pt;}
.ls24_c02258{letter-spacing:-0.038400pt;}
.ls26_c02258{letter-spacing:-0.017024pt;}
.ls25_c02258{letter-spacing:-0.009600pt;}
.ls2e_c02258{letter-spacing:-0.008512pt;}
.ls2a_c02258{letter-spacing:-0.004256pt;}
.ls22_c02258{letter-spacing:0.000000pt;}
.ls18_c02258{letter-spacing:0.005856pt;}
.ls1_c02258{letter-spacing:0.009600pt;}
.ls4_c02258{letter-spacing:0.011232pt;}
.ls20_c02258{letter-spacing:0.012800pt;}
.ls16_c02258{letter-spacing:0.017024pt;}
.lse_c02258{letter-spacing:0.024000pt;}
.ls3_c02258{letter-spacing:0.025536pt;}
.ls0_c02258{letter-spacing:0.025600pt;}
.ls5_c02258{letter-spacing:0.028800pt;}
.ls19_c02258{letter-spacing:0.029952pt;}
.ls11_c02258{letter-spacing:0.033600pt;}
.ls2_c02258{letter-spacing:0.038304pt;}
.ls9_c02258{letter-spacing:0.038400pt;}
.ls1c_c02258{letter-spacing:0.043200pt;}
.ls10_c02258{letter-spacing:0.046816pt;}
.ls1b_c02258{letter-spacing:0.048000pt;}
.ls1e_c02258{letter-spacing:0.059584pt;}
.ls1a_c02258{letter-spacing:0.062400pt;}
.lsc_c02258{letter-spacing:0.068096pt;}
.ls2b_c02258{letter-spacing:0.072352pt;}
.ls1d_c02258{letter-spacing:0.076608pt;}
.ls17_c02258{letter-spacing:0.081984pt;}
.ls8_c02258{letter-spacing:0.097888pt;}
.ls12_c02258{letter-spacing:0.102144pt;}
.ls1f_c02258{letter-spacing:0.106400pt;}
.ls14_c02258{letter-spacing:0.110656pt;}
.ls15_c02258{letter-spacing:0.119168pt;}
.ls13_c02258{letter-spacing:0.123424pt;}
.ls23_c02258{letter-spacing:0.134400pt;}
.ls6_c02258{letter-spacing:0.140544pt;}
.lsf_c02258{letter-spacing:0.144704pt;}
.ls27_c02258{letter-spacing:0.148960pt;}
.lsd_c02258{letter-spacing:0.161728pt;}
.lsb_c02258{letter-spacing:0.183008pt;}
.ls21_c02258{letter-spacing:100.480000pt;}
.ls7_c02258{letter-spacing:101.440000pt;}
.ls2f_c02258{letter-spacing:128.481600pt;}
.ls29_c02258{letter-spacing:129.441600pt;}
.lsa_c02258{letter-spacing:178.480000pt;}
.ws0_c02258{word-spacing:-14.780544pt;}
.ws2_c02258{word-spacing:-14.645856pt;}
.ws9_c02258{word-spacing:-0.263872pt;}
.ws8_c02258{word-spacing:-0.242592pt;}
.wsc_c02258{word-spacing:-0.225568pt;}
.wsf_c02258{word-spacing:-0.204288pt;}
.ws11_c02258{word-spacing:-0.200032pt;}
.ws10_c02258{word-spacing:-0.191520pt;}
.ws1d_c02258{word-spacing:-0.187264pt;}
.wse_c02258{word-spacing:-0.183008pt;}
.ws6_c02258{word-spacing:-0.160000pt;}
.ws12_c02258{word-spacing:-0.153216pt;}
.ws14_c02258{word-spacing:-0.108576pt;}
.wsd_c02258{word-spacing:-0.106400pt;}
.ws13_c02258{word-spacing:-0.097888pt;}
.ws7_c02258{word-spacing:-0.089856pt;}
.ws5_c02258{word-spacing:-0.076800pt;}
.ws1e_c02258{word-spacing:-0.012800pt;}
.ws4_c02258{word-spacing:0.000000pt;}
.ws15_c02258{word-spacing:0.096000pt;}
.ws16_c02258{word-spacing:0.110400pt;}
.ws17_c02258{word-spacing:0.115200pt;}
.ws1a_c02258{word-spacing:1.098048pt;}
.ws1c_c02258{word-spacing:1.132096pt;}
.ws1b_c02258{word-spacing:1.161888pt;}
.ws18_c02258{word-spacing:5.281696pt;}
.ws19_c02258{word-spacing:5.298720pt;}
.ws1_c02258{word-spacing:52.097280pt;}
.ws3_c02258{word-spacing:52.417280pt;}
.wsb_c02258{word-spacing:106.694400pt;}
.wsa_c02258{word-spacing:139.320000pt;}
.ws1f_c02258{word-spacing:177.081600pt;}
._18_c02258{margin-left:-61.142400pt;}
._17_c02258{margin-left:-51.568000pt;}
._1a_c02258{margin-left:-39.360000pt;}
._34_c02258{margin-left:-37.717344pt;}
._e_c02258{margin-left:-1.048000pt;}
._19_c02258{width:7.334400pt;}
._1f_c02258{width:37.575584pt;}
._14_c02258{width:38.739232pt;}
._b_c02258{width:44.957824pt;}
._2a_c02258{width:52.499200pt;}
._10_c02258{width:55.158400pt;}
._31_c02258{width:56.217280pt;}
._7_c02258{width:64.857280pt;}
._12_c02258{width:67.360000pt;}
._8_c02258{width:68.400160pt;}
._1d_c02258{width:69.533600pt;}
._30_c02258{width:72.949056pt;}
._13_c02258{width:74.400000pt;}
._1_c02258{width:75.408000pt;}
._9_c02258{width:77.580800pt;}
._0_c02258{width:78.739200pt;}
._d_c02258{width:80.067200pt;}
._15_c02258{width:81.145280pt;}
._f_c02258{width:82.728000pt;}
._1e_c02258{width:84.833856pt;}
._a_c02258{width:89.420800pt;}
._2d_c02258{width:90.720000pt;}
._33_c02258{width:91.680000pt;}
._c_c02258{width:92.870560pt;}
._3_c02258{width:94.880000pt;}
._2b_c02258{width:98.448000pt;}
._32_c02258{width:100.547200pt;}
._20_c02258{width:102.121792pt;}
._4_c02258{width:105.225728pt;}
._1c_c02258{width:106.990752pt;}
._2_c02258{width:108.640000pt;}
._37_c02258{width:112.629056pt;}
._11_c02258{width:114.648576pt;}
._38_c02258{width:115.666592pt;}
._36_c02258{width:117.894688pt;}
._2c_c02258{width:118.880000pt;}
._35_c02258{width:123.735552pt;}
._1b_c02258{width:129.440000pt;}
._6_c02258{width:131.829056pt;}
._5_c02258{width:136.454688pt;}
._2f_c02258{width:152.749408pt;}
._2e_c02258{width:155.465728pt;}
._16_c02258{width:162.314816pt;}
._29_c02258{width:180.476800pt;}
._24_c02258{width:192.160000pt;}
._22_c02258{width:252.000000pt;}
._25_c02258{width:275.648000pt;}
._23_c02258{width:309.060800pt;}
._27_c02258{width:314.518400pt;}
._21_c02258{width:368.160000pt;}
._26_c02258{width:373.270400pt;}
._28_c02258{width:538.040000pt;}
.fs5_c02258{font-size:10.560000pt;}
.fs3_c02258{font-size:37.440000pt;}
.fs2_c02258{font-size:42.560000pt;}
.fs1_c02258{font-size:48.000000pt;}
.fs4_c02258{font-size:58.560000pt;}
.fs0_c02258{font-size:64.000000pt;}
.y0_c02258{bottom:0.000000pt;}
.y4_c02258{bottom:50.987067pt;}
.y3_c02258{bottom:69.387067pt;}
.y51_c02258{bottom:104.187467pt;}
.y50_c02258{bottom:118.027067pt;}
.y4f_c02258{bottom:131.787467pt;}
.y4e_c02258{bottom:145.627067pt;}
.y4d_c02258{bottom:159.387467pt;}
.y4c_c02258{bottom:173.227067pt;}
.y4b_c02258{bottom:186.987467pt;}
.y4a_c02258{bottom:200.827067pt;}
.y49_c02258{bottom:214.587467pt;}
.y48_c02258{bottom:228.427067pt;}
.y47_c02258{bottom:242.187467pt;}
.y46_c02258{bottom:256.027067pt;}
.y45_c02258{bottom:269.787467pt;}
.y44_c02258{bottom:283.627067pt;}
.y43_c02258{bottom:297.387467pt;}
.y42_c02258{bottom:311.227067pt;}
.y41_c02258{bottom:324.987467pt;}
.y40_c02258{bottom:338.827067pt;}
.y3f_c02258{bottom:352.587467pt;}
.y3e_c02258{bottom:366.427067pt;}
.y3d_c02258{bottom:380.187200pt;}
.y3c_c02258{bottom:380.507067pt;}
.y3b_c02258{bottom:397.947200pt;}
.y3a_c02258{bottom:414.267067pt;}
.y39_c02258{bottom:429.707067pt;}
.y38_c02258{bottom:448.187200pt;}
.y37_c02258{bottom:456.027200pt;}
.y36_c02258{bottom:456.347067pt;}
.y35_c02258{bottom:473.787067pt;}
.y34_c02258{bottom:490.027067pt;}
.y33_c02258{bottom:505.467067pt;}
.y32_c02258{bottom:523.386667pt;}
.y31_c02258{bottom:537.147067pt;}
.y30_c02258{bottom:550.906555pt;}
.y2f_c02258{bottom:563.146811pt;}
.y2e_c02258{bottom:575.387067pt;}
.y2d_c02258{bottom:589.787067pt;}
.y2c_c02258{bottom:603.547067pt;}
.y2b_c02258{bottom:618.667067pt;}
.y2a_c02258{bottom:632.427067pt;}
.y29_c02258{bottom:646.267067pt;}
.y26_c02258{bottom:662.027067pt;}
.y28_c02258{bottom:662.267067pt;}
.y27_c02258{bottom:677.227067pt;}
.y25_c02258{bottom:691.227067pt;}
.y24_c02258{bottom:707.466667pt;}
.y23_c02258{bottom:721.227067pt;}
.y22_c02258{bottom:735.067067pt;}
.y21_c02258{bottom:735.386667pt;}
.y20_c02258{bottom:751.867067pt;}
.y1f_c02258{bottom:752.267067pt;}
.y1e_c02258{bottom:768.747067pt;}
.y1d_c02258{bottom:769.066667pt;}
.y1c_c02258{bottom:785.627067pt;}
.y1b_c02258{bottom:785.946667pt;}
.y1a_c02258{bottom:802.507067pt;}
.y19_c02258{bottom:802.827067pt;}
.y18_c02258{bottom:819.707067pt;}
.y17_c02258{bottom:836.267067pt;}
.y16_c02258{bottom:836.587467pt;}
.y15_c02258{bottom:854.587067pt;}
.y14_c02258{bottom:854.987067pt;}
.y13_c02258{bottom:873.387067pt;}
.y12_c02258{bottom:889.867067pt;}
.y11_c02258{bottom:890.187467pt;}
.y10_c02258{bottom:908.267067pt;}
.yf_c02258{bottom:908.587467pt;}
.ye_c02258{bottom:926.667067pt;}
.yd_c02258{bottom:926.987067pt;}
.yb_c02258{bottom:945.067067pt;}
.ya_c02258{bottom:945.386667pt;}
.yc_c02258{bottom:946.027067pt;}
.y9_c02258{bottom:961.947067pt;}
.y8_c02258{bottom:962.267067pt;}
.y7_c02258{bottom:981.307067pt;}
.y6_c02258{bottom:998.347067pt;}
.y5_c02258{bottom:1012.987067pt;}
.y2_c02258{bottom:1042.347067pt;}
.y1_c02258{bottom:1060.587067pt;}
.hf_c02258{height:9.379219pt;}
.hb_c02258{height:33.253594pt;}
.he_c02258{height:37.343906pt;}
.hc_c02258{height:42.117188pt;}
.h4_c02258{height:42.632812pt;}
.hd_c02258{height:43.077187pt;}
.h3_c02258{height:43.173594pt;}
.h6_c02258{height:52.012031pt;}
.h7_c02258{height:54.252031pt;}
.h9_c02258{height:55.532031pt;}
.h8_c02258{height:55.532565pt;}
.h5_c02258{height:55.852031pt;}
.ha_c02258{height:55.852565pt;}
.h2_c02258{height:56.156250pt;}
.h1_c02258{height:56.843750pt;}
.h0_c02258{height:1122.666667pt;}
.w1_c02258{width:793.333333pt;}
.w0_c02258{width:793.626667pt;}
.x0_c02258{left:0.000000pt;}
.x1_c02258{left:113.440000pt;}
.x8_c02258{left:119.600000pt;}
.x3_c02258{left:120.560000pt;}
.x4_c02258{left:127.840000pt;}
.xb_c02258{left:135.280000pt;}
.x5_c02258{left:146.480000pt;}
.x6_c02258{left:196.160000pt;}
.x9_c02258{left:298.880000pt;}
.xa_c02258{left:315.360000pt;}
.x2_c02258{left:384.880000pt;}
.x7_c02258{left:638.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_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_aa7c07e8783b1a98d2058f29.woff2')format("woff");}.ff1_c02259{font-family:ff1_c02259;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02259;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v3_c02259{vertical-align:-1.440000px;}
.v0_c02259{vertical-align:0.000000px;}
.v1_c02259{vertical-align:1.800000px;}
.v2_c02259{vertical-align:3.960000px;}
.v5_c02259{vertical-align:5.760600px;}
.v6_c02259{vertical-align:42.480000px;}
.v4_c02259{vertical-align:53.640000px;}
.ls36_c02259{letter-spacing:-0.097200px;}
.ls34_c02259{letter-spacing:-0.086184px;}
.ls3a_c02259{letter-spacing:-0.063180px;}
.ls3b_c02259{letter-spacing:-0.059292px;}
.ls38_c02259{letter-spacing:-0.043092px;}
.ls39_c02259{letter-spacing:-0.008424px;}
.ls37_c02259{letter-spacing:-0.004788px;}
.ls32_c02259{letter-spacing:0.000000px;}
.ls35_c02259{letter-spacing:0.007200px;}
.lse_c02259{letter-spacing:0.013176px;}
.ls1_c02259{letter-spacing:0.014400px;}
.ls29_c02259{letter-spacing:0.019152px;}
.lsc_c02259{letter-spacing:0.019764px;}
.ls0_c02259{letter-spacing:0.028800px;}
.ls1f_c02259{letter-spacing:0.039528px;}
.ls28_c02259{letter-spacing:0.043092px;}
.ls27_c02259{letter-spacing:0.043200px;}
.ls4_c02259{letter-spacing:0.059292px;}
.lsa_c02259{letter-spacing:0.065880px;}
.ls2_c02259{letter-spacing:0.067032px;}
.ls17_c02259{letter-spacing:0.072468px;}
.ls3_c02259{letter-spacing:0.076608px;}
.ls15_c02259{letter-spacing:0.079056px;}
.ls1a_c02259{letter-spacing:0.085644px;}
.ls12_c02259{letter-spacing:0.092232px;}
.ls22_c02259{letter-spacing:0.098820px;}
.ls25_c02259{letter-spacing:0.105408px;}
.ls2a_c02259{letter-spacing:0.138348px;}
.ls8_c02259{letter-spacing:0.151524px;}
.ls2d_c02259{letter-spacing:0.158112px;}
.ls6_c02259{letter-spacing:0.177876px;}
.ls14_c02259{letter-spacing:47.160000px;}
.ls2f_c02259{letter-spacing:64.440000px;}
.ls2c_c02259{letter-spacing:71.280000px;}
.ls7_c02259{letter-spacing:79.920000px;}
.ls2b_c02259{letter-spacing:97.560000px;}
.ls11_c02259{letter-spacing:113.040000px;}
.ls31_c02259{letter-spacing:125.102880px;}
.ls2e_c02259{letter-spacing:130.139352px;}
.ls16_c02259{letter-spacing:172.620000px;}
.ls30_c02259{letter-spacing:179.457120px;}
.ls1c_c02259{letter-spacing:205.740000px;}
.ls19_c02259{letter-spacing:221.940000px;}
.lsf_c02259{letter-spacing:386.640000px;}
.ls5_c02259{letter-spacing:454.320000px;}
.lsd_c02259{letter-spacing:496.800000px;}
.ls24_c02259{letter-spacing:526.680000px;}
.ls1b_c02259{letter-spacing:539.640000px;}
.ls18_c02259{letter-spacing:550.800000px;}
.ls9_c02259{letter-spacing:562.320000px;}
.lsb_c02259{letter-spacing:573.480000px;}
.ls10_c02259{letter-spacing:578.880000px;}
.ls1e_c02259{letter-spacing:595.080000px;}
.ls13_c02259{letter-spacing:644.760000px;}
.ls23_c02259{letter-spacing:675.360000px;}
.ls20_c02259{letter-spacing:697.320000px;}
.ls1d_c02259{letter-spacing:699.480000px;}
.ls21_c02259{letter-spacing:737.640000px;}
.ls26_c02259{letter-spacing:1069.560000px;}
.ls33_c02259{letter-spacing:1196.100000px;}
.sc__c02259{text-shadow:none;}
.sc0_c02259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02259{-webkit-text-stroke:0px transparent;}
.sc0_c02259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02259{word-spacing:-16.647876px;}
.wsf_c02259{word-spacing:-16.628112px;}
.wsb_c02259{word-spacing:-16.608348px;}
.ws3_c02259{word-spacing:-16.562232px;}
.ws2_c02259{word-spacing:-16.529292px;}
.ws1b_c02259{word-spacing:-0.167580px;}
.ws27_c02259{word-spacing:-0.115200px;}
.ws19_c02259{word-spacing:-0.100800px;}
.ws18_c02259{word-spacing:-0.086400px;}
.ws20_c02259{word-spacing:-0.079200px;}
.ws1a_c02259{word-spacing:-0.014400px;}
.ws26_c02259{word-spacing:-0.013176px;}
.ws25_c02259{word-spacing:-0.006588px;}
.ws17_c02259{word-spacing:0.000000px;}
.ws23_c02259{word-spacing:0.006588px;}
.ws21_c02259{word-spacing:0.013176px;}
.ws22_c02259{word-spacing:0.019764px;}
.ws1d_c02259{word-spacing:0.026352px;}
.ws1c_c02259{word-spacing:0.032940px;}
.ws24_c02259{word-spacing:0.052704px;}
.ws1e_c02259{word-spacing:0.072468px;}
.ws1f_c02259{word-spacing:0.079056px;}
.ws4_c02259{word-spacing:47.802528px;}
.wsc_c02259{word-spacing:79.833384px;}
.ws8_c02259{word-spacing:79.839972px;}
.wse_c02259{word-spacing:79.872912px;}
.ws15_c02259{word-spacing:79.879500px;}
.ws1_c02259{word-spacing:80.604180px;}
.ws14_c02259{word-spacing:107.985384px;}
.ws16_c02259{word-spacing:108.632880px;}
.ws12_c02259{word-spacing:112.957848px;}
.wsa_c02259{word-spacing:112.997376px;}
.ws5_c02259{word-spacing:122.316372px;}
.ws6_c02259{word-spacing:122.318496px;}
.ws10_c02259{word-spacing:129.513492px;}
.ws9_c02259{word-spacing:141.080904px;}
.wsd_c02259{word-spacing:141.085368px;}
.ws11_c02259{word-spacing:141.085620px;}
.ws13_c02259{word-spacing:141.105132px;}
.ws7_c02259{word-spacing:155.436372px;}
._3_c02259{margin-left:-1.305396px;}
._e_c02259{width:63.334620px;}
._d_c02259{width:90.258912px;}
._2_c02259{width:110.430000px;}
._1_c02259{width:141.467688px;}
._f_c02259{width:156.745944px;}
._5_c02259{width:161.987688px;}
._10_c02259{width:179.505000px;}
._7_c02259{width:197.466840px;}
._b_c02259{width:281.701008px;}
._9_c02259{width:362.028492px;}
._0_c02259{width:403.409088px;}
._a_c02259{width:430.220880px;}
._6_c02259{width:432.074232px;}
._c_c02259{width:597.222000px;}
._8_c02259{width:900.072576px;}
._4_c02259{width:1299.931200px;}
.fc0_c02259{color:rgb(0,0,0);}
.fs4_c02259{font-size:42.120000px;}
.fs2_c02259{font-size:47.880000px;}
.fs1_c02259{font-size:54.000000px;}
.fs3_c02259{font-size:65.880000px;}
.fs0_c02259{font-size:72.000000px;}
.y0_c02259{bottom:0.000000px;}
.y4_c02259{bottom:57.360450px;}
.y3_c02259{bottom:78.060450px;}
.y3d_c02259{bottom:127.830450px;}
.y3c_c02259{bottom:147.180450px;}
.y3b_c02259{bottom:166.170450px;}
.y3a_c02259{bottom:185.070450px;}
.y39_c02259{bottom:204.060450px;}
.y38_c02259{bottom:223.050450px;}
.y37_c02259{bottom:242.040600px;}
.y36_c02259{bottom:261.390450px;}
.y35_c02259{bottom:280.380450px;}
.y34_c02259{bottom:299.280450px;}
.y33_c02259{bottom:318.630450px;}
.y32_c02259{bottom:337.620450px;}
.y31_c02259{bottom:356.610450px;}
.y30_c02259{bottom:375.600450px;}
.y2f_c02259{bottom:394.590600px;}
.y2e_c02259{bottom:413.580450px;}
.y2b_c02259{bottom:431.490450px;}
.y2a_c02259{bottom:431.850450px;}
.y2d_c02259{bottom:434.640450px;}
.y2c_c02259{bottom:445.260450px;}
.y29_c02259{bottom:460.740450px;}
.y28_c02259{bottom:483.870600px;}
.y27_c02259{bottom:501.150450px;}
.y26_c02259{bottom:521.580900px;}
.y25_c02259{bottom:537.150450px;}
.y24_c02259{bottom:554.790450px;}
.y23_c02259{bottom:573.780450px;}
.y22_c02259{bottom:592.770450px;}
.y21_c02259{bottom:611.760450px;}
.y20_c02259{bottom:630.750450px;}
.y1f_c02259{bottom:649.650450px;}
.y1e_c02259{bottom:668.640450px;}
.y1d_c02259{bottom:687.630450px;}
.y1c_c02259{bottom:706.620450px;}
.y1b_c02259{bottom:725.610450px;}
.y1a_c02259{bottom:744.600450px;}
.y19_c02259{bottom:763.500450px;}
.y18_c02259{bottom:782.490450px;}
.y17_c02259{bottom:801.480450px;}
.y16_c02259{bottom:820.470450px;}
.y15_c02259{bottom:839.460450px;}
.y14_c02259{bottom:857.730450px;}
.y13_c02259{bottom:874.560450px;}
.y12_c02259{bottom:897.690900px;}
.y11_c02259{bottom:913.260450px;}
.y10_c02259{bottom:930.900450px;}
.yf_c02259{bottom:949.890450px;}
.ye_c02259{bottom:970.590450px;}
.yd_c02259{bottom:989.580450px;}
.yc_c02259{bottom:1008.570450px;}
.yb_c02259{bottom:1029.270450px;}
.ya_c02259{bottom:1049.970450px;}
.y9_c02259{bottom:1067.880450px;}
.y8_c02259{bottom:1083.360450px;}
.y7_c02259{bottom:1106.490900px;}
.y6_c02259{bottom:1122.060450px;}
.y5_c02259{bottom:1139.250450px;}
.y2_c02259{bottom:1172.640450px;}
.y1_c02259{bottom:1193.160450px;}
.h4_c02259{height:42.526230px;}
.h9_c02259{height:43.170893px;}
.h3_c02259{height:47.961914px;}
.h7_c02259{height:58.513535px;}
.h2_c02259{height:63.175781px;}
.h1_c02259{height:63.949219px;}
.h5_c02259{height:64.975781px;}
.h6_c02259{height:67.135781px;}
.ha_c02259{height:85.006230px;}
.h8_c02259{height:96.166230px;}
.h0_c02259{height:1263.000000px;}
.w1_c02259{width:892.500000px;}
.w0_c02259{width:892.830000px;}
.x0_c02259{left:0.000000px;}
.x1_c02259{left:127.620000px;}
.x3_c02259{left:135.630000px;}
.x4_c02259{left:213.660000px;}
.x5_c02259{left:268.920000px;}
.x2_c02259{left:432.990000px;}
.x6_c02259{left:490.770000px;}
.x7_c02259{left:532.170000px;}
.x8_c02259{left:541.530000px;}
.x9_c02259{left:584.010000px;}
.xa_c02259{left:597.060000px;}
.xb_c02259{left:642.150000px;}
.xc_c02259{left:690.120000px;}
@media print{
.v3_c02259{vertical-align:-1.280000pt;}
.v0_c02259{vertical-align:0.000000pt;}
.v1_c02259{vertical-align:1.600000pt;}
.v2_c02259{vertical-align:3.520000pt;}
.v5_c02259{vertical-align:5.120533pt;}
.v6_c02259{vertical-align:37.760000pt;}
.v4_c02259{vertical-align:47.680000pt;}
.ls36_c02259{letter-spacing:-0.086400pt;}
.ls34_c02259{letter-spacing:-0.076608pt;}
.ls3a_c02259{letter-spacing:-0.056160pt;}
.ls3b_c02259{letter-spacing:-0.052704pt;}
.ls38_c02259{letter-spacing:-0.038304pt;}
.ls39_c02259{letter-spacing:-0.007488pt;}
.ls37_c02259{letter-spacing:-0.004256pt;}
.ls32_c02259{letter-spacing:0.000000pt;}
.ls35_c02259{letter-spacing:0.006400pt;}
.lse_c02259{letter-spacing:0.011712pt;}
.ls1_c02259{letter-spacing:0.012800pt;}
.ls29_c02259{letter-spacing:0.017024pt;}
.lsc_c02259{letter-spacing:0.017568pt;}
.ls0_c02259{letter-spacing:0.025600pt;}
.ls1f_c02259{letter-spacing:0.035136pt;}
.ls28_c02259{letter-spacing:0.038304pt;}
.ls27_c02259{letter-spacing:0.038400pt;}
.ls4_c02259{letter-spacing:0.052704pt;}
.lsa_c02259{letter-spacing:0.058560pt;}
.ls2_c02259{letter-spacing:0.059584pt;}
.ls17_c02259{letter-spacing:0.064416pt;}
.ls3_c02259{letter-spacing:0.068096pt;}
.ls15_c02259{letter-spacing:0.070272pt;}
.ls1a_c02259{letter-spacing:0.076128pt;}
.ls12_c02259{letter-spacing:0.081984pt;}
.ls22_c02259{letter-spacing:0.087840pt;}
.ls25_c02259{letter-spacing:0.093696pt;}
.ls2a_c02259{letter-spacing:0.122976pt;}
.ls8_c02259{letter-spacing:0.134688pt;}
.ls2d_c02259{letter-spacing:0.140544pt;}
.ls6_c02259{letter-spacing:0.158112pt;}
.ls14_c02259{letter-spacing:41.920000pt;}
.ls2f_c02259{letter-spacing:57.280000pt;}
.ls2c_c02259{letter-spacing:63.360000pt;}
.ls7_c02259{letter-spacing:71.040000pt;}
.ls2b_c02259{letter-spacing:86.720000pt;}
.ls11_c02259{letter-spacing:100.480000pt;}
.ls31_c02259{letter-spacing:111.202560pt;}
.ls2e_c02259{letter-spacing:115.679424pt;}
.ls16_c02259{letter-spacing:153.440000pt;}
.ls30_c02259{letter-spacing:159.517440pt;}
.ls1c_c02259{letter-spacing:182.880000pt;}
.ls19_c02259{letter-spacing:197.280000pt;}
.lsf_c02259{letter-spacing:343.680000pt;}
.ls5_c02259{letter-spacing:403.840000pt;}
.lsd_c02259{letter-spacing:441.600000pt;}
.ls24_c02259{letter-spacing:468.160000pt;}
.ls1b_c02259{letter-spacing:479.680000pt;}
.ls18_c02259{letter-spacing:489.600000pt;}
.ls9_c02259{letter-spacing:499.840000pt;}
.lsb_c02259{letter-spacing:509.760000pt;}
.ls10_c02259{letter-spacing:514.560000pt;}
.ls1e_c02259{letter-spacing:528.960000pt;}
.ls13_c02259{letter-spacing:573.120000pt;}
.ls23_c02259{letter-spacing:600.320000pt;}
.ls20_c02259{letter-spacing:619.840000pt;}
.ls1d_c02259{letter-spacing:621.760000pt;}
.ls21_c02259{letter-spacing:655.680000pt;}
.ls26_c02259{letter-spacing:950.720000pt;}
.ls33_c02259{letter-spacing:1063.200000pt;}
.ws0_c02259{word-spacing:-14.798112pt;}
.wsf_c02259{word-spacing:-14.780544pt;}
.wsb_c02259{word-spacing:-14.762976pt;}
.ws3_c02259{word-spacing:-14.721984pt;}
.ws2_c02259{word-spacing:-14.692704pt;}
.ws1b_c02259{word-spacing:-0.148960pt;}
.ws27_c02259{word-spacing:-0.102400pt;}
.ws19_c02259{word-spacing:-0.089600pt;}
.ws18_c02259{word-spacing:-0.076800pt;}
.ws20_c02259{word-spacing:-0.070400pt;}
.ws1a_c02259{word-spacing:-0.012800pt;}
.ws26_c02259{word-spacing:-0.011712pt;}
.ws25_c02259{word-spacing:-0.005856pt;}
.ws17_c02259{word-spacing:0.000000pt;}
.ws23_c02259{word-spacing:0.005856pt;}
.ws21_c02259{word-spacing:0.011712pt;}
.ws22_c02259{word-spacing:0.017568pt;}
.ws1d_c02259{word-spacing:0.023424pt;}
.ws1c_c02259{word-spacing:0.029280pt;}
.ws24_c02259{word-spacing:0.046848pt;}
.ws1e_c02259{word-spacing:0.064416pt;}
.ws1f_c02259{word-spacing:0.070272pt;}
.ws4_c02259{word-spacing:42.491136pt;}
.wsc_c02259{word-spacing:70.963008pt;}
.ws8_c02259{word-spacing:70.968864pt;}
.wse_c02259{word-spacing:70.998144pt;}
.ws15_c02259{word-spacing:71.004000pt;}
.ws1_c02259{word-spacing:71.648160pt;}
.ws14_c02259{word-spacing:95.987008pt;}
.ws16_c02259{word-spacing:96.562560pt;}
.ws12_c02259{word-spacing:100.406976pt;}
.wsa_c02259{word-spacing:100.442112pt;}
.ws5_c02259{word-spacing:108.725664pt;}
.ws6_c02259{word-spacing:108.727552pt;}
.ws10_c02259{word-spacing:115.123104pt;}
.ws9_c02259{word-spacing:125.405248pt;}
.wsd_c02259{word-spacing:125.409216pt;}
.ws11_c02259{word-spacing:125.409440pt;}
.ws13_c02259{word-spacing:125.426784pt;}
.ws7_c02259{word-spacing:138.165664pt;}
._3_c02259{margin-left:-1.160352pt;}
._e_c02259{width:56.297440pt;}
._d_c02259{width:80.230144pt;}
._2_c02259{width:98.160000pt;}
._1_c02259{width:125.749056pt;}
._f_c02259{width:139.329728pt;}
._5_c02259{width:143.989056pt;}
._10_c02259{width:159.560000pt;}
._7_c02259{width:175.526080pt;}
._b_c02259{width:250.400896pt;}
._9_c02259{width:321.803104pt;}
._0_c02259{width:358.585856pt;}
._a_c02259{width:382.418560pt;}
._6_c02259{width:384.065984pt;}
._c_c02259{width:530.864000pt;}
._8_c02259{width:800.064512pt;}
._4_c02259{width:1155.494400pt;}
.fs4_c02259{font-size:37.440000pt;}
.fs2_c02259{font-size:42.560000pt;}
.fs1_c02259{font-size:48.000000pt;}
.fs3_c02259{font-size:58.560000pt;}
.fs0_c02259{font-size:64.000000pt;}
.y0_c02259{bottom:0.000000pt;}
.y4_c02259{bottom:50.987067pt;}
.y3_c02259{bottom:69.387067pt;}
.y3d_c02259{bottom:113.627067pt;}
.y3c_c02259{bottom:130.827067pt;}
.y3b_c02259{bottom:147.707067pt;}
.y3a_c02259{bottom:164.507067pt;}
.y39_c02259{bottom:181.387067pt;}
.y38_c02259{bottom:198.267067pt;}
.y37_c02259{bottom:215.147200pt;}
.y36_c02259{bottom:232.347067pt;}
.y35_c02259{bottom:249.227067pt;}
.y34_c02259{bottom:266.027067pt;}
.y33_c02259{bottom:283.227067pt;}
.y32_c02259{bottom:300.107067pt;}
.y31_c02259{bottom:316.987067pt;}
.y30_c02259{bottom:333.867067pt;}
.y2f_c02259{bottom:350.747200pt;}
.y2e_c02259{bottom:367.627067pt;}
.y2b_c02259{bottom:383.547067pt;}
.y2a_c02259{bottom:383.867067pt;}
.y2d_c02259{bottom:386.347067pt;}
.y2c_c02259{bottom:395.787067pt;}
.y29_c02259{bottom:409.547067pt;}
.y28_c02259{bottom:430.107200pt;}
.y27_c02259{bottom:445.467067pt;}
.y26_c02259{bottom:463.627467pt;}
.y25_c02259{bottom:477.467067pt;}
.y24_c02259{bottom:493.147067pt;}
.y23_c02259{bottom:510.027067pt;}
.y22_c02259{bottom:526.907067pt;}
.y21_c02259{bottom:543.787067pt;}
.y20_c02259{bottom:560.667067pt;}
.y1f_c02259{bottom:577.467067pt;}
.y1e_c02259{bottom:594.347067pt;}
.y1d_c02259{bottom:611.227067pt;}
.y1c_c02259{bottom:628.107067pt;}
.y1b_c02259{bottom:644.987067pt;}
.y1a_c02259{bottom:661.867067pt;}
.y19_c02259{bottom:678.667067pt;}
.y18_c02259{bottom:695.547067pt;}
.y17_c02259{bottom:712.427067pt;}
.y16_c02259{bottom:729.307067pt;}
.y15_c02259{bottom:746.187067pt;}
.y14_c02259{bottom:762.427067pt;}
.y13_c02259{bottom:777.387067pt;}
.y12_c02259{bottom:797.947467pt;}
.y11_c02259{bottom:811.787067pt;}
.y10_c02259{bottom:827.467067pt;}
.yf_c02259{bottom:844.347067pt;}
.ye_c02259{bottom:862.747067pt;}
.yd_c02259{bottom:879.627067pt;}
.yc_c02259{bottom:896.507067pt;}
.yb_c02259{bottom:914.907067pt;}
.ya_c02259{bottom:933.307067pt;}
.y9_c02259{bottom:949.227067pt;}
.y8_c02259{bottom:962.987067pt;}
.y7_c02259{bottom:983.547467pt;}
.y6_c02259{bottom:997.387067pt;}
.y5_c02259{bottom:1012.667067pt;}
.y2_c02259{bottom:1042.347067pt;}
.y1_c02259{bottom:1060.587067pt;}
.h4_c02259{height:37.801094pt;}
.h9_c02259{height:38.374127pt;}
.h3_c02259{height:42.632812pt;}
.h7_c02259{height:52.012031pt;}
.h2_c02259{height:56.156250pt;}
.h1_c02259{height:56.843750pt;}
.h5_c02259{height:57.756250pt;}
.h6_c02259{height:59.676250pt;}
.ha_c02259{height:75.561094pt;}
.h8_c02259{height:85.481094pt;}
.h0_c02259{height:1122.666667pt;}
.w1_c02259{width:793.333333pt;}
.w0_c02259{width:793.626667pt;}
.x0_c02259{left:0.000000pt;}
.x1_c02259{left:113.440000pt;}
.x3_c02259{left:120.560000pt;}
.x4_c02259{left:189.920000pt;}
.x5_c02259{left:239.040000pt;}
.x2_c02259{left:384.880000pt;}
.x6_c02259{left:436.240000pt;}
.x7_c02259{left:473.040000pt;}
.x8_c02259{left:481.360000pt;}
.x9_c02259{left:519.120000pt;}
.xa_c02259{left:530.720000pt;}
.xb_c02259{left:570.800000pt;}
.xc_c02259{left:613.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_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_f236d7dd2e660bdf8f6210f2.woff2')format("woff");}.ff1_c02260{font-family:ff1_c02260;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02260;src:url('chunks/assets/font_9c377d9176b74c8809dbc97f.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02260{font-family:ff3_c02260;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_c02260;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02260{font-family:ff4_c02260;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;}
.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);}
.v1_c02260{vertical-align:-5.400000px;}
.v0_c02260{vertical-align:0.000000px;}
.v4_c02260{vertical-align:1.080000px;}
.v3_c02260{vertical-align:5.040000px;}
.v2_c02260{vertical-align:11.160000px;}
.ls30_c02260{letter-spacing:-0.270000px;}
.ls2a_c02260{letter-spacing:-0.180360px;}
.ls23_c02260{letter-spacing:-0.050400px;}
.ls2d_c02260{letter-spacing:-0.046116px;}
.ls2f_c02260{letter-spacing:-0.037800px;}
.ls2c_c02260{letter-spacing:-0.026352px;}
.ls21_c02260{letter-spacing:-0.021600px;}
.ls20_c02260{letter-spacing:-0.014400px;}
.ls26_c02260{letter-spacing:-0.014364px;}
.ls2b_c02260{letter-spacing:-0.013176px;}
.ls1f_c02260{letter-spacing:-0.007200px;}
.ls2e_c02260{letter-spacing:-0.006588px;}
.ls28_c02260{letter-spacing:-0.004788px;}
.ls1e_c02260{letter-spacing:0.000000px;}
.ls22_c02260{letter-spacing:0.007200px;}
.ls1a_c02260{letter-spacing:0.013176px;}
.ls6_c02260{letter-spacing:0.014400px;}
.lsa_c02260{letter-spacing:0.019764px;}
.ls5_c02260{letter-spacing:0.021600px;}
.lsc_c02260{letter-spacing:0.026352px;}
.ls0_c02260{letter-spacing:0.028800px;}
.lsb_c02260{letter-spacing:0.032940px;}
.ls15_c02260{letter-spacing:0.039528px;}
.ls2_c02260{letter-spacing:0.043200px;}
.ls7_c02260{letter-spacing:0.046116px;}
.lsf_c02260{letter-spacing:0.048096px;}
.ls4_c02260{letter-spacing:0.050400px;}
.ls13_c02260{letter-spacing:0.052704px;}
.ls3_c02260{letter-spacing:0.057600px;}
.ls9_c02260{letter-spacing:0.059292px;}
.ls18_c02260{letter-spacing:0.065880px;}
.lsd_c02260{letter-spacing:0.072468px;}
.ls8_c02260{letter-spacing:0.079056px;}
.ls19_c02260{letter-spacing:0.085644px;}
.ls11_c02260{letter-spacing:0.090180px;}
.ls16_c02260{letter-spacing:0.092232px;}
.ls14_c02260{letter-spacing:0.098820px;}
.ls1_c02260{letter-spacing:0.105408px;}
.ls1b_c02260{letter-spacing:0.111996px;}
.lse_c02260{letter-spacing:0.118584px;}
.ls25_c02260{letter-spacing:0.144288px;}
.ls1d_c02260{letter-spacing:0.145800px;}
.ls24_c02260{letter-spacing:0.177876px;}
.ls29_c02260{letter-spacing:0.180360px;}
.ls27_c02260{letter-spacing:0.181944px;}
.ls12_c02260{letter-spacing:72.000000px;}
.ls10_c02260{letter-spacing:74.969316px;}
.ls17_c02260{letter-spacing:980.280000px;}
.ls1c_c02260{letter-spacing:1645.020000px;}
.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;}
}
.ws4_c02260{word-spacing:-60.120000px;}
.ws0_c02260{word-spacing:-17.949600px;}
.ws1_c02260{word-spacing:-16.647876px;}
.ws3_c02260{word-spacing:-16.588584px;}
.wsb_c02260{word-spacing:-16.555644px;}
.ws2_c02260{word-spacing:-16.549056px;}
.ws9_c02260{word-spacing:-16.535880px;}
.wsa_c02260{word-spacing:-16.529292px;}
.ws6_c02260{word-spacing:-16.516116px;}
.ws7_c02260{word-spacing:-16.496352px;}
.wsc_c02260{word-spacing:-16.483176px;}
.ws8_c02260{word-spacing:-16.423884px;}
.ws5_c02260{word-spacing:-15.030000px;}
.wsd_c02260{word-spacing:-13.500000px;}
.ws29_c02260{word-spacing:-0.272916px;}
.ws2c_c02260{word-spacing:-0.256932px;}
.ws12_c02260{word-spacing:-0.230400px;}
.wsf_c02260{word-spacing:-0.086400px;}
.ws11_c02260{word-spacing:-0.079200px;}
.ws13_c02260{word-spacing:-0.021600px;}
.ws20_c02260{word-spacing:-0.014400px;}
.ws10_c02260{word-spacing:-0.013176px;}
.ws23_c02260{word-spacing:-0.007200px;}
.ws2e_c02260{word-spacing:-0.006588px;}
.wse_c02260{word-spacing:0.000000px;}
.ws22_c02260{word-spacing:0.007200px;}
.ws2a_c02260{word-spacing:0.013176px;}
.ws28_c02260{word-spacing:0.019764px;}
.ws21_c02260{word-spacing:0.021600px;}
.ws31_c02260{word-spacing:0.026352px;}
.ws2d_c02260{word-spacing:0.039528px;}
.ws34_c02260{word-spacing:0.059292px;}
.ws38_c02260{word-spacing:0.065880px;}
.ws2b_c02260{word-spacing:0.072468px;}
.ws39_c02260{word-spacing:0.216000px;}
.ws3a_c02260{word-spacing:0.448200px;}
.ws1e_c02260{word-spacing:2.793600px;}
.ws1f_c02260{word-spacing:2.865600px;}
.ws1c_c02260{word-spacing:3.830400px;}
.ws1d_c02260{word-spacing:3.837600px;}
.ws18_c02260{word-spacing:3.852000px;}
.ws19_c02260{word-spacing:3.888000px;}
.ws1b_c02260{word-spacing:3.902400px;}
.ws15_c02260{word-spacing:4.514400px;}
.ws14_c02260{word-spacing:4.680000px;}
.ws1a_c02260{word-spacing:5.011200px;}
.ws24_c02260{word-spacing:6.522120px;}
.ws30_c02260{word-spacing:7.556436px;}
.ws2f_c02260{word-spacing:7.609140px;}
.ws16_c02260{word-spacing:7.797600px;}
.ws17_c02260{word-spacing:7.891200px;}
.ws25_c02260{word-spacing:11.548764px;}
.ws26_c02260{word-spacing:11.588292px;}
.ws27_c02260{word-spacing:17.339616px;}
.ws33_c02260{word-spacing:52.209900px;}
.ws32_c02260{word-spacing:52.229664px;}
.ws36_c02260{word-spacing:78.456492px;}
.ws35_c02260{word-spacing:78.502608px;}
.ws37_c02260{word-spacing:78.575076px;}
._0_c02260{margin-left:-1.195200px;}
._6_c02260{width:1.317600px;}
._b_c02260{width:7.760664px;}
._4_c02260{width:52.468920px;}
._f_c02260{width:102.420000px;}
._8_c02260{width:162.285624px;}
._a_c02260{width:229.736340px;}
._3_c02260{width:239.156640px;}
._9_c02260{width:453.910032px;}
._c_c02260{width:486.059472px;}
._5_c02260{width:507.479832px;}
._d_c02260{width:516.801852px;}
._1_c02260{width:595.930896px;}
._2_c02260{width:611.048196px;}
._7_c02260{width:810.149544px;}
._e_c02260{width:870.100344px;}
.fc1_c02260{color:rgb(255,0,0);}
.fc0_c02260{color:rgb(0,0,0);}
.fs5_c02260{font-size:2.880000px;}
.fs2_c02260{font-size:47.880000px;}
.fs4_c02260{font-size:54.000000px;}
.fs3_c02260{font-size:60.120000px;}
.fs1_c02260{font-size:65.880000px;}
.fs0_c02260{font-size:72.000000px;}
.y0_c02260{bottom:0.000000px;}
.y4_c02260{bottom:57.360450px;}
.y3_c02260{bottom:78.060450px;}
.y35_c02260{bottom:113.970450px;}
.y34_c02260{bottom:134.670450px;}
.y33_c02260{bottom:154.470450px;}
.y32_c02260{bottom:187.770450px;}
.y31_c02260{bottom:191.550450px;}
.y30_c02260{bottom:207.390450px;}
.y2f_c02260{bottom:222.240450px;}
.y2e_c02260{bottom:240.240450px;}
.y2d_c02260{bottom:255.900450px;}
.y2c_c02260{bottom:276.150450px;}
.y2b_c02260{bottom:295.860450px;}
.y2a_c02260{bottom:315.570450px;}
.y29_c02260{bottom:334.020450px;}
.y28_c02260{bottom:354.270450px;}
.y27_c02260{bottom:373.980450px;}
.y26_c02260{bottom:393.690450px;}
.y25_c02260{bottom:412.140450px;}
.y24_c02260{bottom:432.390450px;}
.y23_c02260{bottom:452.100450px;}
.y22_c02260{bottom:471.810450px;}
.y21_c02260{bottom:491.610600px;}
.y20_c02260{bottom:511.320450px;}
.y1f_c02260{bottom:531.030450px;}
.y1e_c02260{bottom:548.310450px;}
.y1d_c02260{bottom:562.170450px;}
.y1c_c02260{bottom:573.150450px;}
.y1b_c02260{bottom:591.510450px;}
.y1a_c02260{bottom:610.590450px;}
.y19_c02260{bottom:629.580450px;}
.y18_c02260{bottom:648.570450px;}
.y17_c02260{bottom:667.560450px;}
.y16_c02260{bottom:686.370450px;}
.y15_c02260{bottom:706.440450px;}
.y14_c02260{bottom:727.860450px;}
.y13_c02260{bottom:749.280450px;}
.y12_c02260{bottom:769.980450px;}
.y11_c02260{bottom:801.210450px;}
.y10_c02260{bottom:832.260450px;}
.yf_c02260{bottom:863.310450px;}
.ye_c02260{bottom:894.360450px;}
.yd_c02260{bottom:925.410450px;}
.yc_c02260{bottom:956.460450px;}
.yb_c02260{bottom:987.510450px;}
.ya_c02260{bottom:1018.560450px;}
.y9_c02260{bottom:1049.610450px;}
.y8_c02260{bottom:1070.130450px;}
.y7_c02260{bottom:1090.830450px;}
.y6_c02260{bottom:1117.200450px;}
.y5_c02260{bottom:1141.320450px;}
.y2_c02260{bottom:1172.640450px;}
.y1_c02260{bottom:1193.160450px;}
.h9_c02260{height:2.557969px;}
.h4_c02260{height:42.526230px;}
.ha_c02260{height:47.961914px;}
.h8_c02260{height:48.461836px;}
.h7_c02260{height:53.473535px;}
.h6_c02260{height:53.686230px;}
.h5_c02260{height:57.805840px;}
.h3_c02260{height:58.513535px;}
.h2_c02260{height:63.175781px;}
.h1_c02260{height:63.949219px;}
.h0_c02260{height:1263.000000px;}
.w1_c02260{width:892.500000px;}
.w0_c02260{width:892.830000px;}
.x0_c02260{left:0.000000px;}
.x1_c02260{left:127.620000px;}
.x4_c02260{left:135.630000px;}
.x5_c02260{left:138.150000px;}
.x6_c02260{left:146.340000px;}
.x3_c02260{left:148.950000px;}
.xb_c02260{left:154.440000px;}
.x9_c02260{left:178.380000px;}
.x2_c02260{left:432.990000px;}
.xa_c02260{left:614.070000px;}
.x8_c02260{left:714.060000px;}
.x7_c02260{left:727.380000px;}
@media print{
.v1_c02260{vertical-align:-4.800000pt;}
.v0_c02260{vertical-align:0.000000pt;}
.v4_c02260{vertical-align:0.960000pt;}
.v3_c02260{vertical-align:4.480000pt;}
.v2_c02260{vertical-align:9.920000pt;}
.ls30_c02260{letter-spacing:-0.240000pt;}
.ls2a_c02260{letter-spacing:-0.160320pt;}
.ls23_c02260{letter-spacing:-0.044800pt;}
.ls2d_c02260{letter-spacing:-0.040992pt;}
.ls2f_c02260{letter-spacing:-0.033600pt;}
.ls2c_c02260{letter-spacing:-0.023424pt;}
.ls21_c02260{letter-spacing:-0.019200pt;}
.ls20_c02260{letter-spacing:-0.012800pt;}
.ls26_c02260{letter-spacing:-0.012768pt;}
.ls2b_c02260{letter-spacing:-0.011712pt;}
.ls1f_c02260{letter-spacing:-0.006400pt;}
.ls2e_c02260{letter-spacing:-0.005856pt;}
.ls28_c02260{letter-spacing:-0.004256pt;}
.ls1e_c02260{letter-spacing:0.000000pt;}
.ls22_c02260{letter-spacing:0.006400pt;}
.ls1a_c02260{letter-spacing:0.011712pt;}
.ls6_c02260{letter-spacing:0.012800pt;}
.lsa_c02260{letter-spacing:0.017568pt;}
.ls5_c02260{letter-spacing:0.019200pt;}
.lsc_c02260{letter-spacing:0.023424pt;}
.ls0_c02260{letter-spacing:0.025600pt;}
.lsb_c02260{letter-spacing:0.029280pt;}
.ls15_c02260{letter-spacing:0.035136pt;}
.ls2_c02260{letter-spacing:0.038400pt;}
.ls7_c02260{letter-spacing:0.040992pt;}
.lsf_c02260{letter-spacing:0.042752pt;}
.ls4_c02260{letter-spacing:0.044800pt;}
.ls13_c02260{letter-spacing:0.046848pt;}
.ls3_c02260{letter-spacing:0.051200pt;}
.ls9_c02260{letter-spacing:0.052704pt;}
.ls18_c02260{letter-spacing:0.058560pt;}
.lsd_c02260{letter-spacing:0.064416pt;}
.ls8_c02260{letter-spacing:0.070272pt;}
.ls19_c02260{letter-spacing:0.076128pt;}
.ls11_c02260{letter-spacing:0.080160pt;}
.ls16_c02260{letter-spacing:0.081984pt;}
.ls14_c02260{letter-spacing:0.087840pt;}
.ls1_c02260{letter-spacing:0.093696pt;}
.ls1b_c02260{letter-spacing:0.099552pt;}
.lse_c02260{letter-spacing:0.105408pt;}
.ls25_c02260{letter-spacing:0.128256pt;}
.ls1d_c02260{letter-spacing:0.129600pt;}
.ls24_c02260{letter-spacing:0.158112pt;}
.ls29_c02260{letter-spacing:0.160320pt;}
.ls27_c02260{letter-spacing:0.161728pt;}
.ls12_c02260{letter-spacing:64.000000pt;}
.ls10_c02260{letter-spacing:66.639392pt;}
.ls17_c02260{letter-spacing:871.360000pt;}
.ls1c_c02260{letter-spacing:1462.240000pt;}
.ws4_c02260{word-spacing:-53.440000pt;}
.ws0_c02260{word-spacing:-15.955200pt;}
.ws1_c02260{word-spacing:-14.798112pt;}
.ws3_c02260{word-spacing:-14.745408pt;}
.wsb_c02260{word-spacing:-14.716128pt;}
.ws2_c02260{word-spacing:-14.710272pt;}
.ws9_c02260{word-spacing:-14.698560pt;}
.wsa_c02260{word-spacing:-14.692704pt;}
.ws6_c02260{word-spacing:-14.680992pt;}
.ws7_c02260{word-spacing:-14.663424pt;}
.wsc_c02260{word-spacing:-14.651712pt;}
.ws8_c02260{word-spacing:-14.599008pt;}
.ws5_c02260{word-spacing:-13.360000pt;}
.wsd_c02260{word-spacing:-12.000000pt;}
.ws29_c02260{word-spacing:-0.242592pt;}
.ws2c_c02260{word-spacing:-0.228384pt;}
.ws12_c02260{word-spacing:-0.204800pt;}
.wsf_c02260{word-spacing:-0.076800pt;}
.ws11_c02260{word-spacing:-0.070400pt;}
.ws13_c02260{word-spacing:-0.019200pt;}
.ws20_c02260{word-spacing:-0.012800pt;}
.ws10_c02260{word-spacing:-0.011712pt;}
.ws23_c02260{word-spacing:-0.006400pt;}
.ws2e_c02260{word-spacing:-0.005856pt;}
.wse_c02260{word-spacing:0.000000pt;}
.ws22_c02260{word-spacing:0.006400pt;}
.ws2a_c02260{word-spacing:0.011712pt;}
.ws28_c02260{word-spacing:0.017568pt;}
.ws21_c02260{word-spacing:0.019200pt;}
.ws31_c02260{word-spacing:0.023424pt;}
.ws2d_c02260{word-spacing:0.035136pt;}
.ws34_c02260{word-spacing:0.052704pt;}
.ws38_c02260{word-spacing:0.058560pt;}
.ws2b_c02260{word-spacing:0.064416pt;}
.ws39_c02260{word-spacing:0.192000pt;}
.ws3a_c02260{word-spacing:0.398400pt;}
.ws1e_c02260{word-spacing:2.483200pt;}
.ws1f_c02260{word-spacing:2.547200pt;}
.ws1c_c02260{word-spacing:3.404800pt;}
.ws1d_c02260{word-spacing:3.411200pt;}
.ws18_c02260{word-spacing:3.424000pt;}
.ws19_c02260{word-spacing:3.456000pt;}
.ws1b_c02260{word-spacing:3.468800pt;}
.ws15_c02260{word-spacing:4.012800pt;}
.ws14_c02260{word-spacing:4.160000pt;}
.ws1a_c02260{word-spacing:4.454400pt;}
.ws24_c02260{word-spacing:5.797440pt;}
.ws30_c02260{word-spacing:6.716832pt;}
.ws2f_c02260{word-spacing:6.763680pt;}
.ws16_c02260{word-spacing:6.931200pt;}
.ws17_c02260{word-spacing:7.014400pt;}
.ws25_c02260{word-spacing:10.265568pt;}
.ws26_c02260{word-spacing:10.300704pt;}
.ws27_c02260{word-spacing:15.412992pt;}
.ws33_c02260{word-spacing:46.408800pt;}
.ws32_c02260{word-spacing:46.426368pt;}
.ws36_c02260{word-spacing:69.739104pt;}
.ws35_c02260{word-spacing:69.780096pt;}
.ws37_c02260{word-spacing:69.844512pt;}
._0_c02260{margin-left:-1.062400pt;}
._6_c02260{width:1.171200pt;}
._b_c02260{width:6.898368pt;}
._4_c02260{width:46.639040pt;}
._f_c02260{width:91.040000pt;}
._8_c02260{width:144.253888pt;}
._a_c02260{width:204.210080pt;}
._3_c02260{width:212.583680pt;}
._9_c02260{width:403.475584pt;}
._c_c02260{width:432.052864pt;}
._5_c02260{width:451.093184pt;}
._d_c02260{width:459.379424pt;}
._1_c02260{width:529.716352pt;}
._2_c02260{width:543.153952pt;}
._7_c02260{width:720.132928pt;}
._e_c02260{width:773.422528pt;}
.fs5_c02260{font-size:2.560000pt;}
.fs2_c02260{font-size:42.560000pt;}
.fs4_c02260{font-size:48.000000pt;}
.fs3_c02260{font-size:53.440000pt;}
.fs1_c02260{font-size:58.560000pt;}
.fs0_c02260{font-size:64.000000pt;}
.y0_c02260{bottom:0.000000pt;}
.y4_c02260{bottom:50.987067pt;}
.y3_c02260{bottom:69.387067pt;}
.y35_c02260{bottom:101.307067pt;}
.y34_c02260{bottom:119.707067pt;}
.y33_c02260{bottom:137.307067pt;}
.y32_c02260{bottom:166.907067pt;}
.y31_c02260{bottom:170.267067pt;}
.y30_c02260{bottom:184.347067pt;}
.y2f_c02260{bottom:197.547067pt;}
.y2e_c02260{bottom:213.547067pt;}
.y2d_c02260{bottom:227.467067pt;}
.y2c_c02260{bottom:245.467067pt;}
.y2b_c02260{bottom:262.987067pt;}
.y2a_c02260{bottom:280.507067pt;}
.y29_c02260{bottom:296.907067pt;}
.y28_c02260{bottom:314.907067pt;}
.y27_c02260{bottom:332.427067pt;}
.y26_c02260{bottom:349.947067pt;}
.y25_c02260{bottom:366.347067pt;}
.y24_c02260{bottom:384.347067pt;}
.y23_c02260{bottom:401.867067pt;}
.y22_c02260{bottom:419.387067pt;}
.y21_c02260{bottom:436.987200pt;}
.y20_c02260{bottom:454.507067pt;}
.y1f_c02260{bottom:472.027067pt;}
.y1e_c02260{bottom:487.387067pt;}
.y1d_c02260{bottom:499.707067pt;}
.y1c_c02260{bottom:509.467067pt;}
.y1b_c02260{bottom:525.787067pt;}
.y1a_c02260{bottom:542.747067pt;}
.y19_c02260{bottom:559.627067pt;}
.y18_c02260{bottom:576.507067pt;}
.y17_c02260{bottom:593.387067pt;}
.y16_c02260{bottom:610.107067pt;}
.y15_c02260{bottom:627.947067pt;}
.y14_c02260{bottom:646.987067pt;}
.y13_c02260{bottom:666.027067pt;}
.y12_c02260{bottom:684.427067pt;}
.y11_c02260{bottom:712.187067pt;}
.y10_c02260{bottom:739.787067pt;}
.yf_c02260{bottom:767.387067pt;}
.ye_c02260{bottom:794.987067pt;}
.yd_c02260{bottom:822.587067pt;}
.yc_c02260{bottom:850.187067pt;}
.yb_c02260{bottom:877.787067pt;}
.ya_c02260{bottom:905.387067pt;}
.y9_c02260{bottom:932.987067pt;}
.y8_c02260{bottom:951.227067pt;}
.y7_c02260{bottom:969.627067pt;}
.y6_c02260{bottom:993.067067pt;}
.y5_c02260{bottom:1014.507067pt;}
.y2_c02260{bottom:1042.347067pt;}
.y1_c02260{bottom:1060.587067pt;}
.h9_c02260{height:2.273750pt;}
.h4_c02260{height:37.801094pt;}
.ha_c02260{height:42.632812pt;}
.h8_c02260{height:43.077187pt;}
.h7_c02260{height:47.532031pt;}
.h6_c02260{height:47.721094pt;}
.h5_c02260{height:51.382969pt;}
.h3_c02260{height:52.012031pt;}
.h2_c02260{height:56.156250pt;}
.h1_c02260{height:56.843750pt;}
.h0_c02260{height:1122.666667pt;}
.w1_c02260{width:793.333333pt;}
.w0_c02260{width:793.626667pt;}
.x0_c02260{left:0.000000pt;}
.x1_c02260{left:113.440000pt;}
.x4_c02260{left:120.560000pt;}
.x5_c02260{left:122.800000pt;}
.x6_c02260{left:130.080000pt;}
.x3_c02260{left:132.400000pt;}
.xb_c02260{left:137.280000pt;}
.x9_c02260{left:158.560000pt;}
.x2_c02260{left:384.880000pt;}
.xa_c02260{left:545.840000pt;}
.x8_c02260{left:634.720000pt;}
.x7_c02260{left:646.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_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_dce03162a69cd6c08149638b.woff2')format("woff");}.ff1_c02261{font-family:ff1_c02261;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02261;src:url('chunks/assets/font_c272a79fa3e1c2ebf6a2b307.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_e78abb90fad06b155adfe352.woff2')format("woff");}.ff3_c02261{font-family:ff3_c02261;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_c02261;src:url('chunks/assets/font_d2c91eb1ce8036dc178c23b1.woff2')format("woff");}.ff4_c02261{font-family:ff4_c02261;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_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);}
.v2_c02261{vertical-align:-9.000000px;}
.v1_c02261{vertical-align:-5.400000px;}
.v0_c02261{vertical-align:0.000000px;}
.ls25_c02261{letter-spacing:-0.151200px;}
.ls24_c02261{letter-spacing:-0.050400px;}
.ls26_c02261{letter-spacing:-0.021600px;}
.ls27_c02261{letter-spacing:-0.014400px;}
.ls23_c02261{letter-spacing:-0.007200px;}
.ls28_c02261{letter-spacing:-0.006588px;}
.ls22_c02261{letter-spacing:0.000000px;}
.ls6_c02261{letter-spacing:0.007200px;}
.ls1_c02261{letter-spacing:0.013176px;}
.lsb_c02261{letter-spacing:0.014400px;}
.lse_c02261{letter-spacing:0.019764px;}
.ls12_c02261{letter-spacing:0.021600px;}
.ls1f_c02261{letter-spacing:0.026352px;}
.ls0_c02261{letter-spacing:0.028800px;}
.ls9_c02261{letter-spacing:0.032940px;}
.ls10_c02261{letter-spacing:0.036000px;}
.ls18_c02261{letter-spacing:0.039528px;}
.ls14_c02261{letter-spacing:0.043200px;}
.ls8_c02261{letter-spacing:0.046116px;}
.ls5_c02261{letter-spacing:0.050400px;}
.ls20_c02261{letter-spacing:0.052704px;}
.ls13_c02261{letter-spacing:0.057600px;}
.ls1b_c02261{letter-spacing:0.059292px;}
.ls17_c02261{letter-spacing:0.064800px;}
.ls1a_c02261{letter-spacing:0.065880px;}
.ls15_c02261{letter-spacing:0.072000px;}
.ls21_c02261{letter-spacing:0.072468px;}
.ls19_c02261{letter-spacing:0.079056px;}
.ls11_c02261{letter-spacing:0.079200px;}
.ls29_c02261{letter-spacing:0.092232px;}
.ls1c_c02261{letter-spacing:0.098820px;}
.ls16_c02261{letter-spacing:0.108000px;}
.ls1e_c02261{letter-spacing:0.118584px;}
.ls1d_c02261{letter-spacing:0.125172px;}
.lsa_c02261{letter-spacing:0.131760px;}
.ls3_c02261{letter-spacing:0.144000px;}
.ls4_c02261{letter-spacing:0.181944px;}
.ls7_c02261{letter-spacing:0.270000px;}
.lsc_c02261{letter-spacing:140.040000px;}
.lsd_c02261{letter-spacing:144.000000px;}
.ls2_c02261{letter-spacing:189.720000px;}
.lsf_c02261{letter-spacing:292.320000px;}
.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;}
}
.ws6_c02261{word-spacing:-18.014400px;}
.ws5_c02261{word-spacing:-18.007200px;}
.ws4_c02261{word-spacing:-17.992800px;}
.ws2_c02261{word-spacing:-17.949600px;}
.ws3_c02261{word-spacing:-17.848800px;}
.ws8_c02261{word-spacing:-16.529292px;}
.ws9_c02261{word-spacing:-16.516116px;}
.ws7_c02261{word-spacing:-16.509528px;}
.ws1_c02261{word-spacing:-16.489764px;}
.ws0_c02261{word-spacing:-16.483176px;}
.ws28_c02261{word-spacing:-0.424800px;}
.ws23_c02261{word-spacing:-0.396000px;}
.ws25_c02261{word-spacing:-0.187200px;}
.ws21_c02261{word-spacing:-0.165600px;}
.ws24_c02261{word-spacing:-0.158400px;}
.ws1b_c02261{word-spacing:-0.151200px;}
.ws29_c02261{word-spacing:-0.144000px;}
.ws17_c02261{word-spacing:-0.129600px;}
.wse_c02261{word-spacing:-0.108000px;}
.wsf_c02261{word-spacing:-0.093600px;}
.wsb_c02261{word-spacing:-0.086400px;}
.ws20_c02261{word-spacing:-0.057600px;}
.ws1c_c02261{word-spacing:-0.050400px;}
.ws22_c02261{word-spacing:-0.043200px;}
.ws16_c02261{word-spacing:-0.039528px;}
.ws1d_c02261{word-spacing:-0.028800px;}
.ws1f_c02261{word-spacing:-0.021600px;}
.ws1a_c02261{word-spacing:-0.014400px;}
.ws26_c02261{word-spacing:-0.007200px;}
.wsa_c02261{word-spacing:0.000000px;}
.ws19_c02261{word-spacing:0.007200px;}
.ws27_c02261{word-spacing:0.014400px;}
.ws37_c02261{word-spacing:0.019764px;}
.ws1e_c02261{word-spacing:0.021600px;}
.ws2c_c02261{word-spacing:0.026352px;}
.ws36_c02261{word-spacing:0.032940px;}
.ws34_c02261{word-spacing:0.039528px;}
.ws18_c02261{word-spacing:0.046116px;}
.ws2f_c02261{word-spacing:0.052704px;}
.ws35_c02261{word-spacing:0.059292px;}
.ws30_c02261{word-spacing:0.065880px;}
.ws2e_c02261{word-spacing:0.322812px;}
.ws2d_c02261{word-spacing:0.349164px;}
.wsc_c02261{word-spacing:1.749600px;}
.ws11_c02261{word-spacing:2.109600px;}
.ws10_c02261{word-spacing:5.040000px;}
.ws2a_c02261{word-spacing:10.448568px;}
.ws2b_c02261{word-spacing:10.534212px;}
.wsd_c02261{word-spacing:14.731200px;}
.ws13_c02261{word-spacing:17.333028px;}
.ws12_c02261{word-spacing:17.589600px;}
.ws14_c02261{word-spacing:19.856232px;}
.ws15_c02261{word-spacing:19.869408px;}
.ws33_c02261{word-spacing:25.910604px;}
.ws32_c02261{word-spacing:25.950132px;}
.ws31_c02261{word-spacing:25.996248px;}
._1_c02261{margin-left:-1.173600px;}
._0_c02261{width:1.861056px;}
._2_c02261{width:4.476240px;}
.fc0_c02261{color:rgb(0,0,0);}
.fs3_c02261{font-size:47.880000px;}
.fs1_c02261{font-size:54.000000px;}
.fs2_c02261{font-size:65.880000px;}
.fs0_c02261{font-size:72.000000px;}
.y0_c02261{bottom:0.000000px;}
.y4_c02261{bottom:57.360450px;}
.y3_c02261{bottom:78.060450px;}
.y38_c02261{bottom:124.860450px;}
.y37_c02261{bottom:145.560450px;}
.y36_c02261{bottom:165.360000px;}
.y35_c02261{bottom:180.840450px;}
.y34_c02261{bottom:197.850450px;}
.y33_c02261{bottom:217.470450px;}
.y32_c02261{bottom:237.360450px;}
.y31_c02261{bottom:256.260450px;}
.y30_c02261{bottom:275.880450px;}
.y2f_c02261{bottom:295.770450px;}
.y2e_c02261{bottom:315.390450px;}
.y2d_c02261{bottom:335.190450px;}
.y2c_c02261{bottom:354.180540px;}
.y2b_c02261{bottom:373.170450px;}
.y2a_c02261{bottom:392.070450px;}
.y29_c02261{bottom:411.060540px;}
.y28_c02261{bottom:430.050450px;}
.y27_c02261{bottom:449.670450px;}
.y26_c02261{bottom:469.470450px;}
.y25_c02261{bottom:488.460600px;}
.y24_c02261{bottom:508.080450px;}
.y23_c02261{bottom:528.150450px;}
.y22_c02261{bottom:549.030450px;}
.y21_c02261{bottom:569.730450px;}
.y20_c02261{bottom:590.430450px;}
.y1f_c02261{bottom:611.040450px;}
.y1e_c02261{bottom:631.740450px;}
.y1d_c02261{bottom:652.440450px;}
.y1c_c02261{bottom:673.140450px;}
.y1b_c02261{bottom:693.840450px;}
.y1a_c02261{bottom:714.540450px;}
.y19_c02261{bottom:735.240450px;}
.y18_c02261{bottom:755.940450px;}
.y17_c02261{bottom:776.640450px;}
.y16_c02261{bottom:797.340450px;}
.y15_c02261{bottom:818.040450px;}
.y14_c02261{bottom:838.740450px;}
.y13_c02261{bottom:860.700450px;}
.y12_c02261{bottom:882.210450px;}
.y11_c02261{bottom:903.630450px;}
.y10_c02261{bottom:923.699397px;}
.yf_c02261{bottom:944.039847px;}
.ye_c02261{bottom:963.390450px;}
.yd_c02261{bottom:984.090450px;}
.yc_c02261{bottom:1004.790450px;}
.yb_c02261{bottom:1025.580450px;}
.ya_c02261{bottom:1046.190450px;}
.y9_c02261{bottom:1066.890450px;}
.y8_c02261{bottom:1088.940450px;}
.y7_c02261{bottom:1108.020000px;}
.y6_c02261{bottom:1123.500450px;}
.y5_c02261{bottom:1139.970450px;}
.y2_c02261{bottom:1172.640450px;}
.y1_c02261{bottom:1193.160450px;}
.h3_c02261{height:47.961914px;}
.h8_c02261{height:57.805840px;}
.ha_c02261{height:58.513535px;}
.h9_c02261{height:63.175421px;}
.h2_c02261{height:63.175781px;}
.h1_c02261{height:63.949219px;}
.h6_c02261{height:64.625449px;}
.h4_c02261{height:65.228906px;}
.h5_c02261{height:70.628906px;}
.h7_c02261{height:70.633118px;}
.h0_c02261{height:1263.000000px;}
.w1_c02261{width:892.500000px;}
.w0_c02261{width:892.830000px;}
.x0_c02261{left:0.000000px;}
.x3_c02261{left:116.999550px;}
.x1_c02261{left:127.620000px;}
.x4_c02261{left:135.630000px;}
.x5_c02261{left:252.630000px;}
.x2_c02261{left:432.990000px;}
@media print{
.v2_c02261{vertical-align:-8.000000pt;}
.v1_c02261{vertical-align:-4.800000pt;}
.v0_c02261{vertical-align:0.000000pt;}
.ls25_c02261{letter-spacing:-0.134400pt;}
.ls24_c02261{letter-spacing:-0.044800pt;}
.ls26_c02261{letter-spacing:-0.019200pt;}
.ls27_c02261{letter-spacing:-0.012800pt;}
.ls23_c02261{letter-spacing:-0.006400pt;}
.ls28_c02261{letter-spacing:-0.005856pt;}
.ls22_c02261{letter-spacing:0.000000pt;}
.ls6_c02261{letter-spacing:0.006400pt;}
.ls1_c02261{letter-spacing:0.011712pt;}
.lsb_c02261{letter-spacing:0.012800pt;}
.lse_c02261{letter-spacing:0.017568pt;}
.ls12_c02261{letter-spacing:0.019200pt;}
.ls1f_c02261{letter-spacing:0.023424pt;}
.ls0_c02261{letter-spacing:0.025600pt;}
.ls9_c02261{letter-spacing:0.029280pt;}
.ls10_c02261{letter-spacing:0.032000pt;}
.ls18_c02261{letter-spacing:0.035136pt;}
.ls14_c02261{letter-spacing:0.038400pt;}
.ls8_c02261{letter-spacing:0.040992pt;}
.ls5_c02261{letter-spacing:0.044800pt;}
.ls20_c02261{letter-spacing:0.046848pt;}
.ls13_c02261{letter-spacing:0.051200pt;}
.ls1b_c02261{letter-spacing:0.052704pt;}
.ls17_c02261{letter-spacing:0.057600pt;}
.ls1a_c02261{letter-spacing:0.058560pt;}
.ls15_c02261{letter-spacing:0.064000pt;}
.ls21_c02261{letter-spacing:0.064416pt;}
.ls19_c02261{letter-spacing:0.070272pt;}
.ls11_c02261{letter-spacing:0.070400pt;}
.ls29_c02261{letter-spacing:0.081984pt;}
.ls1c_c02261{letter-spacing:0.087840pt;}
.ls16_c02261{letter-spacing:0.096000pt;}
.ls1e_c02261{letter-spacing:0.105408pt;}
.ls1d_c02261{letter-spacing:0.111264pt;}
.lsa_c02261{letter-spacing:0.117120pt;}
.ls3_c02261{letter-spacing:0.128000pt;}
.ls4_c02261{letter-spacing:0.161728pt;}
.ls7_c02261{letter-spacing:0.240000pt;}
.lsc_c02261{letter-spacing:124.480000pt;}
.lsd_c02261{letter-spacing:128.000000pt;}
.ls2_c02261{letter-spacing:168.640000pt;}
.lsf_c02261{letter-spacing:259.840000pt;}
.ws6_c02261{word-spacing:-16.012800pt;}
.ws5_c02261{word-spacing:-16.006400pt;}
.ws4_c02261{word-spacing:-15.993600pt;}
.ws2_c02261{word-spacing:-15.955200pt;}
.ws3_c02261{word-spacing:-15.865600pt;}
.ws8_c02261{word-spacing:-14.692704pt;}
.ws9_c02261{word-spacing:-14.680992pt;}
.ws7_c02261{word-spacing:-14.675136pt;}
.ws1_c02261{word-spacing:-14.657568pt;}
.ws0_c02261{word-spacing:-14.651712pt;}
.ws28_c02261{word-spacing:-0.377600pt;}
.ws23_c02261{word-spacing:-0.352000pt;}
.ws25_c02261{word-spacing:-0.166400pt;}
.ws21_c02261{word-spacing:-0.147200pt;}
.ws24_c02261{word-spacing:-0.140800pt;}
.ws1b_c02261{word-spacing:-0.134400pt;}
.ws29_c02261{word-spacing:-0.128000pt;}
.ws17_c02261{word-spacing:-0.115200pt;}
.wse_c02261{word-spacing:-0.096000pt;}
.wsf_c02261{word-spacing:-0.083200pt;}
.wsb_c02261{word-spacing:-0.076800pt;}
.ws20_c02261{word-spacing:-0.051200pt;}
.ws1c_c02261{word-spacing:-0.044800pt;}
.ws22_c02261{word-spacing:-0.038400pt;}
.ws16_c02261{word-spacing:-0.035136pt;}
.ws1d_c02261{word-spacing:-0.025600pt;}
.ws1f_c02261{word-spacing:-0.019200pt;}
.ws1a_c02261{word-spacing:-0.012800pt;}
.ws26_c02261{word-spacing:-0.006400pt;}
.wsa_c02261{word-spacing:0.000000pt;}
.ws19_c02261{word-spacing:0.006400pt;}
.ws27_c02261{word-spacing:0.012800pt;}
.ws37_c02261{word-spacing:0.017568pt;}
.ws1e_c02261{word-spacing:0.019200pt;}
.ws2c_c02261{word-spacing:0.023424pt;}
.ws36_c02261{word-spacing:0.029280pt;}
.ws34_c02261{word-spacing:0.035136pt;}
.ws18_c02261{word-spacing:0.040992pt;}
.ws2f_c02261{word-spacing:0.046848pt;}
.ws35_c02261{word-spacing:0.052704pt;}
.ws30_c02261{word-spacing:0.058560pt;}
.ws2e_c02261{word-spacing:0.286944pt;}
.ws2d_c02261{word-spacing:0.310368pt;}
.wsc_c02261{word-spacing:1.555200pt;}
.ws11_c02261{word-spacing:1.875200pt;}
.ws10_c02261{word-spacing:4.480000pt;}
.ws2a_c02261{word-spacing:9.287616pt;}
.ws2b_c02261{word-spacing:9.363744pt;}
.wsd_c02261{word-spacing:13.094400pt;}
.ws13_c02261{word-spacing:15.407136pt;}
.ws12_c02261{word-spacing:15.635200pt;}
.ws14_c02261{word-spacing:17.649984pt;}
.ws15_c02261{word-spacing:17.661696pt;}
.ws33_c02261{word-spacing:23.031648pt;}
.ws32_c02261{word-spacing:23.066784pt;}
.ws31_c02261{word-spacing:23.107776pt;}
._1_c02261{margin-left:-1.043200pt;}
._0_c02261{width:1.654272pt;}
._2_c02261{width:3.978880pt;}
.fs3_c02261{font-size:42.560000pt;}
.fs1_c02261{font-size:48.000000pt;}
.fs2_c02261{font-size:58.560000pt;}
.fs0_c02261{font-size:64.000000pt;}
.y0_c02261{bottom:0.000000pt;}
.y4_c02261{bottom:50.987067pt;}
.y3_c02261{bottom:69.387067pt;}
.y38_c02261{bottom:110.987067pt;}
.y37_c02261{bottom:129.387067pt;}
.y36_c02261{bottom:146.986667pt;}
.y35_c02261{bottom:160.747067pt;}
.y34_c02261{bottom:175.867067pt;}
.y33_c02261{bottom:193.307067pt;}
.y32_c02261{bottom:210.987067pt;}
.y31_c02261{bottom:227.787067pt;}
.y30_c02261{bottom:245.227067pt;}
.y2f_c02261{bottom:262.907067pt;}
.y2e_c02261{bottom:280.347067pt;}
.y2d_c02261{bottom:297.947067pt;}
.y2c_c02261{bottom:314.827147pt;}
.y2b_c02261{bottom:331.707067pt;}
.y2a_c02261{bottom:348.507067pt;}
.y29_c02261{bottom:365.387147pt;}
.y28_c02261{bottom:382.267067pt;}
.y27_c02261{bottom:399.707067pt;}
.y26_c02261{bottom:417.307067pt;}
.y25_c02261{bottom:434.187200pt;}
.y24_c02261{bottom:451.627067pt;}
.y23_c02261{bottom:469.467067pt;}
.y22_c02261{bottom:488.027067pt;}
.y21_c02261{bottom:506.427067pt;}
.y20_c02261{bottom:524.827067pt;}
.y1f_c02261{bottom:543.147067pt;}
.y1e_c02261{bottom:561.547067pt;}
.y1d_c02261{bottom:579.947067pt;}
.y1c_c02261{bottom:598.347067pt;}
.y1b_c02261{bottom:616.747067pt;}
.y1a_c02261{bottom:635.147067pt;}
.y19_c02261{bottom:653.547067pt;}
.y18_c02261{bottom:671.947067pt;}
.y17_c02261{bottom:690.347067pt;}
.y16_c02261{bottom:708.747067pt;}
.y15_c02261{bottom:727.147067pt;}
.y14_c02261{bottom:745.547067pt;}
.y13_c02261{bottom:765.067067pt;}
.y12_c02261{bottom:784.187067pt;}
.y11_c02261{bottom:803.227067pt;}
.y10_c02261{bottom:821.066131pt;}
.yf_c02261{bottom:839.146531pt;}
.ye_c02261{bottom:856.347067pt;}
.yd_c02261{bottom:874.747067pt;}
.yc_c02261{bottom:893.147067pt;}
.yb_c02261{bottom:911.627067pt;}
.ya_c02261{bottom:929.947067pt;}
.y9_c02261{bottom:948.347067pt;}
.y8_c02261{bottom:967.947067pt;}
.y7_c02261{bottom:984.906667pt;}
.y6_c02261{bottom:998.667067pt;}
.y5_c02261{bottom:1013.307067pt;}
.y2_c02261{bottom:1042.347067pt;}
.y1_c02261{bottom:1060.587067pt;}
.h3_c02261{height:42.632812pt;}
.h8_c02261{height:51.382969pt;}
.ha_c02261{height:52.012031pt;}
.h9_c02261{height:56.155930pt;}
.h2_c02261{height:56.156250pt;}
.h1_c02261{height:56.843750pt;}
.h6_c02261{height:57.444844pt;}
.h4_c02261{height:57.981250pt;}
.h5_c02261{height:62.781250pt;}
.h7_c02261{height:62.784994pt;}
.h0_c02261{height:1122.666667pt;}
.w1_c02261{width:793.333333pt;}
.w0_c02261{width:793.626667pt;}
.x0_c02261{left:0.000000pt;}
.x3_c02261{left:103.999600pt;}
.x1_c02261{left:113.440000pt;}
.x4_c02261{left:120.560000pt;}
.x5_c02261{left:224.560000pt;}
.x2_c02261{left:384.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_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_8564698384d6955618c060b7.woff2')format("woff");}.ff1_c02262{font-family:ff1_c02262;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02262;src:url('chunks/assets/font_b097e29ff00dce9d0dcc52f1.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_3e04176a2ad2ff82c843178c.woff2')format("woff");}.ff3_c02262{font-family:ff3_c02262;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02262;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02262{font-family:ff4_c02262;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;}
.m1_c02262{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0_c02262{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2_c02262{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3_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;}
.ls2a_c02262{letter-spacing:-0.270540px;}
.ls20_c02262{letter-spacing:-0.246492px;}
.ls1f_c02262{letter-spacing:-0.222444px;}
.ls1c_c02262{letter-spacing:-0.198396px;}
.ls17_c02262{letter-spacing:-0.156312px;}
.ls24_c02262{letter-spacing:-0.136800px;}
.ls13_c02262{letter-spacing:-0.126252px;}
.ls26_c02262{letter-spacing:-0.115200px;}
.ls18_c02262{letter-spacing:-0.114228px;}
.ls21_c02262{letter-spacing:-0.102204px;}
.ls19_c02262{letter-spacing:-0.096192px;}
.ls15_c02262{letter-spacing:-0.090180px;}
.ls2b_c02262{letter-spacing:-0.086400px;}
.ls1d_c02262{letter-spacing:-0.078156px;}
.ls1e_c02262{letter-spacing:-0.066132px;}
.ls25_c02262{letter-spacing:-0.064800px;}
.ls14_c02262{letter-spacing:-0.042084px;}
.ls12_c02262{letter-spacing:-0.036072px;}
.ls1a_c02262{letter-spacing:-0.030060px;}
.ls27_c02262{letter-spacing:-0.028800px;}
.ls10_c02262{letter-spacing:-0.024048px;}
.ls28_c02262{letter-spacing:-0.014400px;}
.ls1b_c02262{letter-spacing:-0.012024px;}
.lsf_c02262{letter-spacing:-0.006012px;}
.lse_c02262{letter-spacing:0.000000px;}
.ls0_c02262{letter-spacing:0.007200px;}
.ls22_c02262{letter-spacing:0.012024px;}
.ls3_c02262{letter-spacing:0.014400px;}
.ls9_c02262{letter-spacing:0.018036px;}
.ls1_c02262{letter-spacing:0.021600px;}
.lsc_c02262{letter-spacing:0.024048px;}
.ls4_c02262{letter-spacing:0.028800px;}
.lsa_c02262{letter-spacing:0.030060px;}
.ls8_c02262{letter-spacing:0.036072px;}
.ls7_c02262{letter-spacing:0.054108px;}
.lsb_c02262{letter-spacing:0.060120px;}
.ls23_c02262{letter-spacing:0.066132px;}
.ls2_c02262{letter-spacing:0.072000px;}
.ls11_c02262{letter-spacing:0.078156px;}
.ls6_c02262{letter-spacing:0.090180px;}
.ls5_c02262{letter-spacing:0.100800px;}
.ls29_c02262{letter-spacing:0.126252px;}
.ls16_c02262{letter-spacing:0.138276px;}
.lsd_c02262{letter-spacing:0.648000px;}
.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;}
}
.ws1c_c02262{word-spacing:-72.000000px;}
.ws1_c02262{word-spacing:-60.120000px;}
.ws21_c02262{word-spacing:-59.849460px;}
.ws27_c02262{word-spacing:-0.302400px;}
.wsa_c02262{word-spacing:-0.198396px;}
.ws24_c02262{word-spacing:-0.194400px;}
.ws0_c02262{word-spacing:-0.150300px;}
.ws26_c02262{word-spacing:-0.129600px;}
.ws28_c02262{word-spacing:-0.122400px;}
.ws17_c02262{word-spacing:-0.120240px;}
.ws8_c02262{word-spacing:-0.114228px;}
.ws1d_c02262{word-spacing:-0.100800px;}
.ws15_c02262{word-spacing:-0.096192px;}
.ws29_c02262{word-spacing:-0.093600px;}
.ws18_c02262{word-spacing:-0.090180px;}
.ws19_c02262{word-spacing:-0.084168px;}
.ws2a_c02262{word-spacing:-0.079200px;}
.ws16_c02262{word-spacing:-0.078156px;}
.ws9_c02262{word-spacing:-0.060120px;}
.ws20_c02262{word-spacing:-0.057600px;}
.ws2_c02262{word-spacing:-0.054108px;}
.wsf_c02262{word-spacing:-0.048096px;}
.ws1f_c02262{word-spacing:-0.043200px;}
.ws3_c02262{word-spacing:-0.036072px;}
.wse_c02262{word-spacing:-0.030060px;}
.ws4_c02262{word-spacing:-0.024048px;}
.ws25_c02262{word-spacing:-0.021600px;}
.ws6_c02262{word-spacing:-0.018036px;}
.ws1b_c02262{word-spacing:-0.007200px;}
.ws23_c02262{word-spacing:0.000000px;}
.ws12_c02262{word-spacing:0.006012px;}
.ws2b_c02262{word-spacing:0.007200px;}
.ws22_c02262{word-spacing:0.014400px;}
.ws11_c02262{word-spacing:0.018036px;}
.ws7_c02262{word-spacing:0.030060px;}
.wsd_c02262{word-spacing:0.036072px;}
.ws1e_c02262{word-spacing:0.043200px;}
.wsc_c02262{word-spacing:0.054108px;}
.ws1a_c02262{word-spacing:0.064800px;}
.ws5_c02262{word-spacing:0.066132px;}
.wsb_c02262{word-spacing:0.096192px;}
.ws10_c02262{word-spacing:0.138276px;}
.ws13_c02262{word-spacing:0.162324px;}
.ws14_c02262{word-spacing:0.186372px;}
._0_c02262{margin-left:-1.036800px;}
.fc1_c02262{color:transparent;}
.fc0_c02262{color:rgb(0,0,0);}
.fs1_c02262{font-size:47.880000px;}
.fs3_c02262{font-size:54.000000px;}
.fs4_c02262{font-size:60.120000px;}
.fs0_c02262{font-size:72.000000px;}
.fs2_c02262{font-size:83.880000px;}
.y0_c02262{bottom:0.000000px;}
.y4_c02262{bottom:57.360450px;}
.y3_c02262{bottom:78.060450px;}
.y12_c02262{bottom:115.500450px;}
.y11_c02262{bottom:136.200450px;}
.y10_c02262{bottom:152.940000px;}
.y2d_c02262{bottom:176.880450px;}
.y39_c02262{bottom:177.693573px;}
.y2e_c02262{bottom:199.741080px;}
.y3a_c02262{bottom:200.554203px;}
.y2f_c02262{bottom:222.601710px;}
.y3b_c02262{bottom:223.414833px;}
.y30_c02262{bottom:245.551017px;}
.y3c_c02262{bottom:246.364140px;}
.y31_c02262{bottom:268.411647px;}
.y3d_c02262{bottom:269.224770px;}
.y32_c02262{bottom:291.272277px;}
.y3e_c02262{bottom:292.085400px;}
.y33_c02262{bottom:314.132907px;}
.y3f_c02262{bottom:315.034707px;}
.y34_c02262{bottom:337.082214px;}
.y40_c02262{bottom:337.895337px;}
.y35_c02262{bottom:359.942844px;}
.y41_c02262{bottom:360.755967px;}
.y36_c02262{bottom:382.803474px;}
.y42_c02262{bottom:383.705274px;}
.y37_c02262{bottom:405.752781px;}
.y43_c02262{bottom:406.561080px;}
.y38_c02262{bottom:428.613411px;}
.y44_c02262{bottom:429.421710px;}
.y46_c02262{bottom:468.570450px;}
.y45_c02262{bottom:522.840600px;}
.yf_c02262{bottom:554.250450px;}
.ye_c02262{bottom:570.810450px;}
.yd_c02262{bottom:591.330450px;}
.yc_c02262{bottom:612.660450px;}
.yb_c02262{bottom:634.890450px;}
.ya_c02262{bottom:646.140270px;}
.y13_c02262{bottom:669.990450px;}
.y1f_c02262{bottom:670.797561px;}
.y14_c02262{bottom:695.189748px;}
.y20_c02262{bottom:695.996859px;}
.y15_c02262{bottom:720.389046px;}
.y21_c02262{bottom:721.196157px;}
.y16_c02262{bottom:745.588344px;}
.y22_c02262{bottom:746.395455px;}
.y17_c02262{bottom:770.789145px;}
.y23_c02262{bottom:771.594753px;}
.y18_c02262{bottom:795.988443px;}
.y24_c02262{bottom:796.794051px;}
.y19_c02262{bottom:821.187741px;}
.y25_c02262{bottom:821.993349px;}
.y1a_c02262{bottom:846.387039px;}
.y26_c02262{bottom:847.192647px;}
.y1b_c02262{bottom:871.586337px;}
.y27_c02262{bottom:872.393448px;}
.y1c_c02262{bottom:896.787138px;}
.y28_c02262{bottom:897.592746px;}
.y1d_c02262{bottom:921.986436px;}
.y29_c02262{bottom:922.792044px;}
.y1e_c02262{bottom:947.187237px;}
.y2a_c02262{bottom:947.999748px;}
.y2c_c02262{bottom:993.900450px;}
.y2b_c02262{bottom:1028.280450px;}
.y9_c02262{bottom:1061.220450px;}
.y8_c02262{bottom:1084.980450px;}
.y7_c02262{bottom:1105.500450px;}
.y6_c02262{bottom:1124.850450px;}
.y5_c02262{bottom:1139.970450px;}
.y2_c02262{bottom:1172.640450px;}
.y1_c02262{bottom:1193.160450px;}
.h3_c02262{height:42.526230px;}
.h6_c02262{height:43.651582px;}
.h7_c02262{height:43.685206px;}
.h5_c02262{height:47.961914px;}
.h8_c02262{height:52.277344px;}
.h2_c02262{height:63.175781px;}
.h1_c02262{height:63.949219px;}
.h4_c02262{height:74.500840px;}
.h0_c02262{height:1263.000000px;}
.w1_c02262{width:892.500000px;}
.w0_c02262{width:892.830000px;}
.x0_c02262{left:0.000000px;}
.x5_c02262{left:117.000000px;}
.x1_c02262{left:127.620000px;}
.x17_c02262{left:129.513573px;}
.x2c_c02262{left:130.588524px;}
.x16_c02262{left:132.931395px;}
.x1a_c02262{left:134.825175px;}
.x2d_c02262{left:137.070963px;}
.x15_c02262{left:141.208416px;}
.x2f_c02262{left:142.382565px;}
.x4_c02262{left:148.950217px;}
.x19_c02262{left:156.964365px;}
.x1d_c02262{left:161.825067px;}
.x30_c02262{left:164.524761px;}
.x33_c02262{left:169.290594px;}
.x1e_c02262{left:182.611440px;}
.x1c_c02262{left:183.875580px;}
.x34_c02262{left:190.171773px;}
.x32_c02262{left:191.431467px;}
.x18_c02262{left:229.057263px;}
.x2e_c02262{left:236.524473px;}
.x1b_c02262{left:257.405346px;}
.x1f_c02262{left:261.630000px;}
.x31_c02262{left:264.964239px;}
.x8_c02262{left:269.640000px;}
.x3_c02262{left:356.580000px;}
.x7_c02262{left:430.560000px;}
.x2_c02262{left:432.989457px;}
.x35_c02262{left:434.700000px;}
.x2b_c02262{left:436.049226px;}
.x2a_c02262{left:442.079262px;}
.x20_c02262{left:462.060000px;}
.x29_c02262{left:463.859235px;}
.x28_c02262{left:473.939856px;}
.x27_c02262{left:493.650198px;}
.x26_c02262{left:499.680234px;}
.x25_c02262{left:503.819496px;}
.x24_c02262{left:527.759280px;}
.x23_c02262{left:537.659541px;}
.x22_c02262{left:565.469550px;}
.x14_c02262{left:629.098749px;}
.x21_c02262{left:633.330000px;}
.x13_c02262{left:652.318596px;}
.x12_c02262{left:664.378668px;}
.x11_c02262{left:666.718839px;}
.x10_c02262{left:673.198272px;}
.xf_c02262{left:677.968794px;}
.xe_c02262{left:682.019379px;}
.xd_c02262{left:692.459217px;}
.xc_c02262{left:697.229739px;}
.xb_c02262{left:709.379991px;}
.xa_c02262{left:712.530279px;}
.x9_c02262{left:722.160000px;}
.x6_c02262{left:758.250979px;}
@media print{
.v0_c02262{vertical-align:0.000000pt;}
.ls2a_c02262{letter-spacing:-0.240480pt;}
.ls20_c02262{letter-spacing:-0.219104pt;}
.ls1f_c02262{letter-spacing:-0.197728pt;}
.ls1c_c02262{letter-spacing:-0.176352pt;}
.ls17_c02262{letter-spacing:-0.138944pt;}
.ls24_c02262{letter-spacing:-0.121600pt;}
.ls13_c02262{letter-spacing:-0.112224pt;}
.ls26_c02262{letter-spacing:-0.102400pt;}
.ls18_c02262{letter-spacing:-0.101536pt;}
.ls21_c02262{letter-spacing:-0.090848pt;}
.ls19_c02262{letter-spacing:-0.085504pt;}
.ls15_c02262{letter-spacing:-0.080160pt;}
.ls2b_c02262{letter-spacing:-0.076800pt;}
.ls1d_c02262{letter-spacing:-0.069472pt;}
.ls1e_c02262{letter-spacing:-0.058784pt;}
.ls25_c02262{letter-spacing:-0.057600pt;}
.ls14_c02262{letter-spacing:-0.037408pt;}
.ls12_c02262{letter-spacing:-0.032064pt;}
.ls1a_c02262{letter-spacing:-0.026720pt;}
.ls27_c02262{letter-spacing:-0.025600pt;}
.ls10_c02262{letter-spacing:-0.021376pt;}
.ls28_c02262{letter-spacing:-0.012800pt;}
.ls1b_c02262{letter-spacing:-0.010688pt;}
.lsf_c02262{letter-spacing:-0.005344pt;}
.lse_c02262{letter-spacing:0.000000pt;}
.ls0_c02262{letter-spacing:0.006400pt;}
.ls22_c02262{letter-spacing:0.010688pt;}
.ls3_c02262{letter-spacing:0.012800pt;}
.ls9_c02262{letter-spacing:0.016032pt;}
.ls1_c02262{letter-spacing:0.019200pt;}
.lsc_c02262{letter-spacing:0.021376pt;}
.ls4_c02262{letter-spacing:0.025600pt;}
.lsa_c02262{letter-spacing:0.026720pt;}
.ls8_c02262{letter-spacing:0.032064pt;}
.ls7_c02262{letter-spacing:0.048096pt;}
.lsb_c02262{letter-spacing:0.053440pt;}
.ls23_c02262{letter-spacing:0.058784pt;}
.ls2_c02262{letter-spacing:0.064000pt;}
.ls11_c02262{letter-spacing:0.069472pt;}
.ls6_c02262{letter-spacing:0.080160pt;}
.ls5_c02262{letter-spacing:0.089600pt;}
.ls29_c02262{letter-spacing:0.112224pt;}
.ls16_c02262{letter-spacing:0.122912pt;}
.lsd_c02262{letter-spacing:0.576000pt;}
.ws1c_c02262{word-spacing:-64.000000pt;}
.ws1_c02262{word-spacing:-53.440000pt;}
.ws21_c02262{word-spacing:-53.199520pt;}
.ws27_c02262{word-spacing:-0.268800pt;}
.wsa_c02262{word-spacing:-0.176352pt;}
.ws24_c02262{word-spacing:-0.172800pt;}
.ws0_c02262{word-spacing:-0.133600pt;}
.ws26_c02262{word-spacing:-0.115200pt;}
.ws28_c02262{word-spacing:-0.108800pt;}
.ws17_c02262{word-spacing:-0.106880pt;}
.ws8_c02262{word-spacing:-0.101536pt;}
.ws1d_c02262{word-spacing:-0.089600pt;}
.ws15_c02262{word-spacing:-0.085504pt;}
.ws29_c02262{word-spacing:-0.083200pt;}
.ws18_c02262{word-spacing:-0.080160pt;}
.ws19_c02262{word-spacing:-0.074816pt;}
.ws2a_c02262{word-spacing:-0.070400pt;}
.ws16_c02262{word-spacing:-0.069472pt;}
.ws9_c02262{word-spacing:-0.053440pt;}
.ws20_c02262{word-spacing:-0.051200pt;}
.ws2_c02262{word-spacing:-0.048096pt;}
.wsf_c02262{word-spacing:-0.042752pt;}
.ws1f_c02262{word-spacing:-0.038400pt;}
.ws3_c02262{word-spacing:-0.032064pt;}
.wse_c02262{word-spacing:-0.026720pt;}
.ws4_c02262{word-spacing:-0.021376pt;}
.ws25_c02262{word-spacing:-0.019200pt;}
.ws6_c02262{word-spacing:-0.016032pt;}
.ws1b_c02262{word-spacing:-0.006400pt;}
.ws23_c02262{word-spacing:0.000000pt;}
.ws12_c02262{word-spacing:0.005344pt;}
.ws2b_c02262{word-spacing:0.006400pt;}
.ws22_c02262{word-spacing:0.012800pt;}
.ws11_c02262{word-spacing:0.016032pt;}
.ws7_c02262{word-spacing:0.026720pt;}
.wsd_c02262{word-spacing:0.032064pt;}
.ws1e_c02262{word-spacing:0.038400pt;}
.wsc_c02262{word-spacing:0.048096pt;}
.ws1a_c02262{word-spacing:0.057600pt;}
.ws5_c02262{word-spacing:0.058784pt;}
.wsb_c02262{word-spacing:0.085504pt;}
.ws10_c02262{word-spacing:0.122912pt;}
.ws13_c02262{word-spacing:0.144288pt;}
.ws14_c02262{word-spacing:0.165664pt;}
._0_c02262{margin-left:-0.921600pt;}
.fs1_c02262{font-size:42.560000pt;}
.fs3_c02262{font-size:48.000000pt;}
.fs4_c02262{font-size:53.440000pt;}
.fs0_c02262{font-size:64.000000pt;}
.fs2_c02262{font-size:74.560000pt;}
.y0_c02262{bottom:0.000000pt;}
.y4_c02262{bottom:50.987067pt;}
.y3_c02262{bottom:69.387067pt;}
.y12_c02262{bottom:102.667067pt;}
.y11_c02262{bottom:121.067067pt;}
.y10_c02262{bottom:135.946667pt;}
.y2d_c02262{bottom:157.227067pt;}
.y39_c02262{bottom:157.949843pt;}
.y2e_c02262{bottom:177.547627pt;}
.y3a_c02262{bottom:178.270403pt;}
.y2f_c02262{bottom:197.868187pt;}
.y3b_c02262{bottom:198.590963pt;}
.y30_c02262{bottom:218.267571pt;}
.y3c_c02262{bottom:218.990347pt;}
.y31_c02262{bottom:238.588131pt;}
.y3d_c02262{bottom:239.310907pt;}
.y32_c02262{bottom:258.908691pt;}
.y3e_c02262{bottom:259.631467pt;}
.y33_c02262{bottom:279.229251pt;}
.y3f_c02262{bottom:280.030851pt;}
.y34_c02262{bottom:299.628635pt;}
.y40_c02262{bottom:300.351411pt;}
.y35_c02262{bottom:319.949195pt;}
.y41_c02262{bottom:320.671971pt;}
.y36_c02262{bottom:340.269755pt;}
.y42_c02262{bottom:341.071355pt;}
.y37_c02262{bottom:360.669139pt;}
.y43_c02262{bottom:361.387627pt;}
.y38_c02262{bottom:380.989699pt;}
.y44_c02262{bottom:381.708187pt;}
.y46_c02262{bottom:416.507067pt;}
.y45_c02262{bottom:464.747200pt;}
.yf_c02262{bottom:492.667067pt;}
.ye_c02262{bottom:507.387067pt;}
.yd_c02262{bottom:525.627067pt;}
.yc_c02262{bottom:544.587067pt;}
.yb_c02262{bottom:564.347067pt;}
.ya_c02262{bottom:574.346907pt;}
.y13_c02262{bottom:595.547067pt;}
.y1f_c02262{bottom:596.264499pt;}
.y14_c02262{bottom:617.946443pt;}
.y20_c02262{bottom:618.663875pt;}
.y15_c02262{bottom:640.345819pt;}
.y21_c02262{bottom:641.063251pt;}
.y16_c02262{bottom:662.745195pt;}
.y22_c02262{bottom:663.462627pt;}
.y17_c02262{bottom:685.145907pt;}
.y23_c02262{bottom:685.862003pt;}
.y18_c02262{bottom:707.545283pt;}
.y24_c02262{bottom:708.261379pt;}
.y19_c02262{bottom:729.944659pt;}
.y25_c02262{bottom:730.660755pt;}
.y1a_c02262{bottom:752.344035pt;}
.y26_c02262{bottom:753.060131pt;}
.y1b_c02262{bottom:774.743411pt;}
.y27_c02262{bottom:775.460843pt;}
.y1c_c02262{bottom:797.144123pt;}
.y28_c02262{bottom:797.860219pt;}
.y1d_c02262{bottom:819.543499pt;}
.y29_c02262{bottom:820.259595pt;}
.y1e_c02262{bottom:841.944211pt;}
.y2a_c02262{bottom:842.666443pt;}
.y2c_c02262{bottom:883.467067pt;}
.y2b_c02262{bottom:914.027067pt;}
.y9_c02262{bottom:943.307067pt;}
.y8_c02262{bottom:964.427067pt;}
.y7_c02262{bottom:982.667067pt;}
.y6_c02262{bottom:999.867067pt;}
.y5_c02262{bottom:1013.307067pt;}
.y2_c02262{bottom:1042.347067pt;}
.y1_c02262{bottom:1060.587067pt;}
.h3_c02262{height:37.801094pt;}
.h6_c02262{height:38.801406pt;}
.h7_c02262{height:38.831294pt;}
.h5_c02262{height:42.632812pt;}
.h8_c02262{height:46.468750pt;}
.h2_c02262{height:56.156250pt;}
.h1_c02262{height:56.843750pt;}
.h4_c02262{height:66.222969pt;}
.h0_c02262{height:1122.666667pt;}
.w1_c02262{width:793.333333pt;}
.w0_c02262{width:793.626667pt;}
.x0_c02262{left:0.000000pt;}
.x5_c02262{left:104.000000pt;}
.x1_c02262{left:113.440000pt;}
.x17_c02262{left:115.123176pt;}
.x2c_c02262{left:116.078688pt;}
.x16_c02262{left:118.161240pt;}
.x1a_c02262{left:119.844600pt;}
.x2d_c02262{left:121.840856pt;}
.x15_c02262{left:125.518592pt;}
.x2f_c02262{left:126.562280pt;}
.x4_c02262{left:132.400193pt;}
.x19_c02262{left:139.523880pt;}
.x1d_c02262{left:143.844504pt;}
.x30_c02262{left:146.244232pt;}
.x33_c02262{left:150.480528pt;}
.x1e_c02262{left:162.321280pt;}
.x1c_c02262{left:163.444960pt;}
.x34_c02262{left:169.041576pt;}
.x32_c02262{left:170.161304pt;}
.x18_c02262{left:203.606456pt;}
.x2e_c02262{left:210.243976pt;}
.x1b_c02262{left:228.804752pt;}
.x1f_c02262{left:232.560000pt;}
.x31_c02262{left:235.523768pt;}
.x8_c02262{left:239.680000pt;}
.x3_c02262{left:316.960000pt;}
.x7_c02262{left:382.720000pt;}
.x2_c02262{left:384.879517pt;}
.x35_c02262{left:386.400000pt;}
.x2b_c02262{left:387.599312pt;}
.x2a_c02262{left:392.959344pt;}
.x20_c02262{left:410.720000pt;}
.x29_c02262{left:412.319320pt;}
.x28_c02262{left:421.279872pt;}
.x27_c02262{left:438.800176pt;}
.x26_c02262{left:444.160208pt;}
.x25_c02262{left:447.839552pt;}
.x24_c02262{left:469.119360pt;}
.x23_c02262{left:477.919592pt;}
.x22_c02262{left:502.639600pt;}
.x14_c02262{left:559.198888pt;}
.x21_c02262{left:562.960000pt;}
.x13_c02262{left:579.838752pt;}
.x12_c02262{left:590.558816pt;}
.x11_c02262{left:592.638968pt;}
.x10_c02262{left:598.398464pt;}
.xf_c02262{left:602.638928pt;}
.xe_c02262{left:606.239448pt;}
.xd_c02262{left:615.519304pt;}
.xc_c02262{left:619.759768pt;}
.xb_c02262{left:630.559992pt;}
.xa_c02262{left:633.360248pt;}
.x9_c02262{left:641.920000pt;}
.x6_c02262{left:674.000870pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6eff2261aebf9c2a3755d59.woff2')format("woff");}.ff1_c02263{font-family:ff1_c02263;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02263;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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;}
.v2_c02263{vertical-align:1.080000px;}
.v1_c02263{vertical-align:2.160000px;}
.v4_c02263{vertical-align:75.960000px;}
.v3_c02263{vertical-align:78.120000px;}
.ls34_c02263{letter-spacing:-0.014400px;}
.ls35_c02263{letter-spacing:-0.006012px;}
.ls33_c02263{letter-spacing:0.000000px;}
.ls29_c02263{letter-spacing:0.013176px;}
.ls2d_c02263{letter-spacing:0.019764px;}
.ls2f_c02263{letter-spacing:0.026352px;}
.ls0_c02263{letter-spacing:0.028800px;}
.ls2c_c02263{letter-spacing:0.032940px;}
.ls2_c02263{letter-spacing:0.039528px;}
.ls36_c02263{letter-spacing:0.046116px;}
.ls4_c02263{letter-spacing:0.052704px;}
.ls1b_c02263{letter-spacing:0.059292px;}
.lsc_c02263{letter-spacing:0.065880px;}
.ls25_c02263{letter-spacing:0.072468px;}
.ls3_c02263{letter-spacing:0.079056px;}
.ls6_c02263{letter-spacing:0.092232px;}
.ls17_c02263{letter-spacing:0.098820px;}
.lsa_c02263{letter-spacing:0.138348px;}
.ls5_c02263{letter-spacing:0.144288px;}
.lsf_c02263{letter-spacing:0.151524px;}
.ls23_c02263{letter-spacing:0.158112px;}
.ls1_c02263{letter-spacing:0.164700px;}
.ls16_c02263{letter-spacing:0.177876px;}
.ls8_c02263{letter-spacing:0.180000px;}
.ls24_c02263{letter-spacing:64.080000px;}
.ls20_c02263{letter-spacing:66.240000px;}
.ls19_c02263{letter-spacing:66.600000px;}
.ls1a_c02263{letter-spacing:66.960000px;}
.lse_c02263{letter-spacing:99.000000px;}
.ls10_c02263{letter-spacing:99.360000px;}
.ls14_c02263{letter-spacing:99.720000px;}
.ls21_c02263{letter-spacing:117.450000px;}
.ls9_c02263{letter-spacing:132.120000px;}
.lsb_c02263{letter-spacing:132.480000px;}
.ls12_c02263{letter-spacing:132.840000px;}
.ls32_c02263{letter-spacing:133.200000px;}
.ls11_c02263{letter-spacing:150.300000px;}
.ls31_c02263{letter-spacing:165.240000px;}
.ls2a_c02263{letter-spacing:165.960000px;}
.ls1e_c02263{letter-spacing:183.330000px;}
.ls30_c02263{letter-spacing:183.420000px;}
.ls13_c02263{letter-spacing:186.480000px;}
.ls26_c02263{letter-spacing:204.840000px;}
.ls27_c02263{letter-spacing:214.560000px;}
.ls1d_c02263{letter-spacing:214.920000px;}
.ls1f_c02263{letter-spacing:215.279400px;}
.ls15_c02263{letter-spacing:234.360000px;}
.ls18_c02263{letter-spacing:252.360000px;}
.ls22_c02263{letter-spacing:268.920000px;}
.ls1c_c02263{letter-spacing:281.520000px;}
.lsd_c02263{letter-spacing:296.640000px;}
.ls7_c02263{letter-spacing:314.640000px;}
.ls2e_c02263{letter-spacing:340.560000px;}
.ls2b_c02263{letter-spacing:394.200000px;}
.ls28_c02263{letter-spacing:414.720000px;}
.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;}
}
.ws3_c02263{word-spacing:-16.647876px;}
.ws0_c02263{word-spacing:-16.634700px;}
.ws12_c02263{word-spacing:-16.628112px;}
.ws4_c02263{word-spacing:-16.621524px;}
.ws1_c02263{word-spacing:-16.608348px;}
.wsb_c02263{word-spacing:-16.568820px;}
.wsf_c02263{word-spacing:-16.562232px;}
.ws1e_c02263{word-spacing:-16.549056px;}
.ws13_c02263{word-spacing:-16.542468px;}
.wsd_c02263{word-spacing:-16.529292px;}
.ws11_c02263{word-spacing:-16.509528px;}
.ws19_c02263{word-spacing:-16.496352px;}
.ws18_c02263{word-spacing:-16.489764px;}
.ws22_c02263{word-spacing:-0.086400px;}
.ws28_c02263{word-spacing:-0.054108px;}
.ws21_c02263{word-spacing:0.000000px;}
.ws26_c02263{word-spacing:0.013176px;}
.ws25_c02263{word-spacing:0.026352px;}
.ws27_c02263{word-spacing:0.039528px;}
.ws24_c02263{word-spacing:0.046116px;}
.ws23_c02263{word-spacing:0.052704px;}
.ws2a_c02263{word-spacing:0.059292px;}
.ws2b_c02263{word-spacing:0.065880px;}
.ws29_c02263{word-spacing:0.079056px;}
.ws14_c02263{word-spacing:65.089440px;}
.ws10_c02263{word-spacing:67.238496px;}
.wsc_c02263{word-spacing:67.642380px;}
.ws6_c02263{word-spacing:99.996372px;}
.wsa_c02263{word-spacing:99.998496px;}
.ws7_c02263{word-spacing:100.402380px;}
.ws15_c02263{word-spacing:100.933020px;}
.ws9_c02263{word-spacing:116.962380px;}
.ws1f_c02263{word-spacing:133.546608px;}
.ws5_c02263{word-spacing:150.082380px;}
.ws1b_c02263{word-spacing:166.763304px;}
.ws8_c02263{word-spacing:182.842380px;}
.ws1a_c02263{word-spacing:182.866608px;}
.ws1c_c02263{word-spacing:182.963304px;}
.ws1d_c02263{word-spacing:215.831448px;}
.ws17_c02263{word-spacing:215.833572px;}
.wse_c02263{word-spacing:215.986608px;}
.ws20_c02263{word-spacing:216.083304px;}
.ws16_c02263{word-spacing:216.270000px;}
.ws2_c02263{word-spacing:1146.946608px;}
._1_c02263{margin-left:-1.148292px;}
._4_c02263{width:104.490000px;}
._5_c02263{width:115.923132px;}
._6_c02263{width:133.316208px;}
._3_c02263{width:169.288704px;}
._2_c02263{width:216.679284px;}
._7_c02263{width:232.060104px;}
._a_c02263{width:485.985600px;}
._b_c02263{width:612.126720px;}
._9_c02263{width:644.886720px;}
._8_c02263{width:665.158248px;}
._0_c02263{width:2790.180000px;}
.fc0_c02263{color:rgb(0,0,0);}
.fs4_c02263{font-size:11.880000px;}
.fs1_c02263{font-size:54.000000px;}
.fs3_c02263{font-size:60.120000px;}
.fs2_c02263{font-size:65.880000px;}
.fs0_c02263{font-size:72.000000px;}
.y0_c02263{bottom:0.000000px;}
.y4_c02263{bottom:57.360450px;}
.y3_c02263{bottom:78.060450px;}
.y3e_c02263{bottom:123.780450px;}
.y3d_c02263{bottom:130.620600px;}
.y3c_c02263{bottom:151.320450px;}
.y3b_c02263{bottom:172.020450px;}
.y3a_c02263{bottom:191.010450px;}
.y39_c02263{bottom:210.360450px;}
.y38_c02263{bottom:231.060450px;}
.y37_c02263{bottom:251.760450px;}
.y36_c02263{bottom:270.750450px;}
.y35_c02263{bottom:289.740450px;}
.y34_c02263{bottom:308.730450px;}
.y33_c02263{bottom:327.630450px;}
.y32_c02263{bottom:346.260450px;}
.y31_c02263{bottom:363.900450px;}
.y2e_c02263{bottom:382.260450px;}
.y30_c02263{bottom:382.890450px;}
.y2f_c02263{bottom:401.880450px;}
.y2d_c02263{bottom:422.400600px;}
.y2c_c02263{bottom:437.881050px;}
.y2b_c02263{bottom:453.450600px;}
.y2a_c02263{bottom:470.010450px;}
.y29_c02263{bottom:490.710600px;}
.y28_c02263{bottom:511.410450px;}
.y27_c02263{bottom:530.400450px;}
.y26_c02263{bottom:549.750450px;}
.y25_c02263{bottom:570.450450px;}
.y24_c02263{bottom:591.150450px;}
.y23_c02263{bottom:610.050450px;}
.y22_c02263{bottom:629.040450px;}
.y21_c02263{bottom:648.030450px;}
.y20_c02263{bottom:667.020450px;}
.y1f_c02263{bottom:685.650450px;}
.y1d_c02263{bottom:703.200450px;}
.y1b_c02263{bottom:721.650450px;}
.y1c_c02263{bottom:722.190450px;}
.y1e_c02263{bottom:741.180450px;}
.y1a_c02263{bottom:761.789550px;}
.y19_c02263{bottom:777.270000px;}
.y18_c02263{bottom:792.750450px;}
.y17_c02263{bottom:809.310450px;}
.y16_c02263{bottom:830.010450px;}
.y15_c02263{bottom:850.710450px;}
.y14_c02263{bottom:869.700450px;}
.y13_c02263{bottom:889.050450px;}
.y12_c02263{bottom:909.750450px;}
.y11_c02263{bottom:930.450450px;}
.y10_c02263{bottom:949.440450px;}
.yf_c02263{bottom:968.430450px;}
.ye_c02263{bottom:987.420450px;}
.yd_c02263{bottom:1006.320450px;}
.yc_c02263{bottom:1026.660450px;}
.yb_c02263{bottom:1044.300450px;}
.y8_c02263{bottom:1062.660450px;}
.ya_c02263{bottom:1063.290450px;}
.y9_c02263{bottom:1082.280450px;}
.y7_c02263{bottom:1101.540450px;}
.y6_c02263{bottom:1123.500450px;}
.y5_c02263{bottom:1139.970450px;}
.y2_c02263{bottom:1172.640450px;}
.y1_c02263{bottom:1193.160450px;}
.hd_c02263{height:10.551621px;}
.h3_c02263{height:47.961914px;}
.h5_c02263{height:53.397598px;}
.h4_c02263{height:58.513535px;}
.h2_c02263{height:63.175781px;}
.h1_c02263{height:63.949219px;}
.ha_c02263{height:65.028619px;}
.hb_c02263{height:65.029819px;}
.h6_c02263{height:65.335781px;}
.hc_c02263{height:65.388619px;}
.h7_c02263{height:65.389219px;}
.h9_c02263{height:139.909219px;}
.h8_c02263{height:142.069219px;}
.h0_c02263{height:1263.000000px;}
.w1_c02263{width:892.500000px;}
.w0_c02263{width:892.830000px;}
.x0_c02263{left:0.000000px;}
.x1_c02263{left:127.620000px;}
.x3_c02263{left:135.630000px;}
.xc_c02263{left:160.920000px;}
.x5_c02263{left:239.940000px;}
.xd_c02263{left:246.330000px;}
.x12_c02263{left:261.720000px;}
.xe_c02263{left:266.040000px;}
.x6_c02263{left:271.800000px;}
.x13_c02263{left:281.610000px;}
.x4_c02263{left:290.610000px;}
.x14_c02263{left:427.590000px;}
.x2_c02263{left:432.990000px;}
.xf_c02263{left:435.600000px;}
.x8_c02263{left:454.410000px;}
.x7_c02263{left:465.210000px;}
.xa_c02263{left:589.590000px;}
.x16_c02263{left:595.800000px;}
.x10_c02263{left:605.250000px;}
.x15_c02263{left:616.500000px;}
.xb_c02263{left:625.140000px;}
.x11_c02263{left:635.940000px;}
.x9_c02263{left:639.810000px;}
@media print{
.v0_c02263{vertical-align:0.000000pt;}
.v2_c02263{vertical-align:0.960000pt;}
.v1_c02263{vertical-align:1.920000pt;}
.v4_c02263{vertical-align:67.520000pt;}
.v3_c02263{vertical-align:69.440000pt;}
.ls34_c02263{letter-spacing:-0.012800pt;}
.ls35_c02263{letter-spacing:-0.005344pt;}
.ls33_c02263{letter-spacing:0.000000pt;}
.ls29_c02263{letter-spacing:0.011712pt;}
.ls2d_c02263{letter-spacing:0.017568pt;}
.ls2f_c02263{letter-spacing:0.023424pt;}
.ls0_c02263{letter-spacing:0.025600pt;}
.ls2c_c02263{letter-spacing:0.029280pt;}
.ls2_c02263{letter-spacing:0.035136pt;}
.ls36_c02263{letter-spacing:0.040992pt;}
.ls4_c02263{letter-spacing:0.046848pt;}
.ls1b_c02263{letter-spacing:0.052704pt;}
.lsc_c02263{letter-spacing:0.058560pt;}
.ls25_c02263{letter-spacing:0.064416pt;}
.ls3_c02263{letter-spacing:0.070272pt;}
.ls6_c02263{letter-spacing:0.081984pt;}
.ls17_c02263{letter-spacing:0.087840pt;}
.lsa_c02263{letter-spacing:0.122976pt;}
.ls5_c02263{letter-spacing:0.128256pt;}
.lsf_c02263{letter-spacing:0.134688pt;}
.ls23_c02263{letter-spacing:0.140544pt;}
.ls1_c02263{letter-spacing:0.146400pt;}
.ls16_c02263{letter-spacing:0.158112pt;}
.ls8_c02263{letter-spacing:0.160000pt;}
.ls24_c02263{letter-spacing:56.960000pt;}
.ls20_c02263{letter-spacing:58.880000pt;}
.ls19_c02263{letter-spacing:59.200000pt;}
.ls1a_c02263{letter-spacing:59.520000pt;}
.lse_c02263{letter-spacing:88.000000pt;}
.ls10_c02263{letter-spacing:88.320000pt;}
.ls14_c02263{letter-spacing:88.640000pt;}
.ls21_c02263{letter-spacing:104.400000pt;}
.ls9_c02263{letter-spacing:117.440000pt;}
.lsb_c02263{letter-spacing:117.760000pt;}
.ls12_c02263{letter-spacing:118.080000pt;}
.ls32_c02263{letter-spacing:118.400000pt;}
.ls11_c02263{letter-spacing:133.600000pt;}
.ls31_c02263{letter-spacing:146.880000pt;}
.ls2a_c02263{letter-spacing:147.520000pt;}
.ls1e_c02263{letter-spacing:162.960000pt;}
.ls30_c02263{letter-spacing:163.040000pt;}
.ls13_c02263{letter-spacing:165.760000pt;}
.ls26_c02263{letter-spacing:182.080000pt;}
.ls27_c02263{letter-spacing:190.720000pt;}
.ls1d_c02263{letter-spacing:191.040000pt;}
.ls1f_c02263{letter-spacing:191.359467pt;}
.ls15_c02263{letter-spacing:208.320000pt;}
.ls18_c02263{letter-spacing:224.320000pt;}
.ls22_c02263{letter-spacing:239.040000pt;}
.ls1c_c02263{letter-spacing:250.240000pt;}
.lsd_c02263{letter-spacing:263.680000pt;}
.ls7_c02263{letter-spacing:279.680000pt;}
.ls2e_c02263{letter-spacing:302.720000pt;}
.ls2b_c02263{letter-spacing:350.400000pt;}
.ls28_c02263{letter-spacing:368.640000pt;}
.ws3_c02263{word-spacing:-14.798112pt;}
.ws0_c02263{word-spacing:-14.786400pt;}
.ws12_c02263{word-spacing:-14.780544pt;}
.ws4_c02263{word-spacing:-14.774688pt;}
.ws1_c02263{word-spacing:-14.762976pt;}
.wsb_c02263{word-spacing:-14.727840pt;}
.wsf_c02263{word-spacing:-14.721984pt;}
.ws1e_c02263{word-spacing:-14.710272pt;}
.ws13_c02263{word-spacing:-14.704416pt;}
.wsd_c02263{word-spacing:-14.692704pt;}
.ws11_c02263{word-spacing:-14.675136pt;}
.ws19_c02263{word-spacing:-14.663424pt;}
.ws18_c02263{word-spacing:-14.657568pt;}
.ws22_c02263{word-spacing:-0.076800pt;}
.ws28_c02263{word-spacing:-0.048096pt;}
.ws21_c02263{word-spacing:0.000000pt;}
.ws26_c02263{word-spacing:0.011712pt;}
.ws25_c02263{word-spacing:0.023424pt;}
.ws27_c02263{word-spacing:0.035136pt;}
.ws24_c02263{word-spacing:0.040992pt;}
.ws23_c02263{word-spacing:0.046848pt;}
.ws2a_c02263{word-spacing:0.052704pt;}
.ws2b_c02263{word-spacing:0.058560pt;}
.ws29_c02263{word-spacing:0.070272pt;}
.ws14_c02263{word-spacing:57.857280pt;}
.ws10_c02263{word-spacing:59.767552pt;}
.wsc_c02263{word-spacing:60.126560pt;}
.ws6_c02263{word-spacing:88.885664pt;}
.wsa_c02263{word-spacing:88.887552pt;}
.ws7_c02263{word-spacing:89.246560pt;}
.ws15_c02263{word-spacing:89.718240pt;}
.ws9_c02263{word-spacing:103.966560pt;}
.ws1f_c02263{word-spacing:118.708096pt;}
.ws5_c02263{word-spacing:133.406560pt;}
.ws1b_c02263{word-spacing:148.234048pt;}
.ws8_c02263{word-spacing:162.526560pt;}
.ws1a_c02263{word-spacing:162.548096pt;}
.ws1c_c02263{word-spacing:162.634048pt;}
.ws1d_c02263{word-spacing:191.850176pt;}
.ws17_c02263{word-spacing:191.852064pt;}
.wse_c02263{word-spacing:191.988096pt;}
.ws20_c02263{word-spacing:192.074048pt;}
.ws16_c02263{word-spacing:192.240000pt;}
.ws2_c02263{word-spacing:1019.508096pt;}
._1_c02263{margin-left:-1.020704pt;}
._4_c02263{width:92.880000pt;}
._5_c02263{width:103.042784pt;}
._6_c02263{width:118.503296pt;}
._3_c02263{width:150.478848pt;}
._2_c02263{width:192.603808pt;}
._7_c02263{width:206.275648pt;}
._a_c02263{width:431.987200pt;}
._b_c02263{width:544.112640pt;}
._9_c02263{width:573.232640pt;}
._8_c02263{width:591.251776pt;}
._0_c02263{width:2480.160000pt;}
.fs4_c02263{font-size:10.560000pt;}
.fs1_c02263{font-size:48.000000pt;}
.fs3_c02263{font-size:53.440000pt;}
.fs2_c02263{font-size:58.560000pt;}
.fs0_c02263{font-size:64.000000pt;}
.y0_c02263{bottom:0.000000pt;}
.y4_c02263{bottom:50.987067pt;}
.y3_c02263{bottom:69.387067pt;}
.y3e_c02263{bottom:110.027067pt;}
.y3d_c02263{bottom:116.107200pt;}
.y3c_c02263{bottom:134.507067pt;}
.y3b_c02263{bottom:152.907067pt;}
.y3a_c02263{bottom:169.787067pt;}
.y39_c02263{bottom:186.987067pt;}
.y38_c02263{bottom:205.387067pt;}
.y37_c02263{bottom:223.787067pt;}
.y36_c02263{bottom:240.667067pt;}
.y35_c02263{bottom:257.547067pt;}
.y34_c02263{bottom:274.427067pt;}
.y33_c02263{bottom:291.227067pt;}
.y32_c02263{bottom:307.787067pt;}
.y31_c02263{bottom:323.467067pt;}
.y2e_c02263{bottom:339.787067pt;}
.y30_c02263{bottom:340.347067pt;}
.y2f_c02263{bottom:357.227067pt;}
.y2d_c02263{bottom:375.467200pt;}
.y2c_c02263{bottom:389.227600pt;}
.y2b_c02263{bottom:403.067200pt;}
.y2a_c02263{bottom:417.787067pt;}
.y29_c02263{bottom:436.187200pt;}
.y28_c02263{bottom:454.587067pt;}
.y27_c02263{bottom:471.467067pt;}
.y26_c02263{bottom:488.667067pt;}
.y25_c02263{bottom:507.067067pt;}
.y24_c02263{bottom:525.467067pt;}
.y23_c02263{bottom:542.267067pt;}
.y22_c02263{bottom:559.147067pt;}
.y21_c02263{bottom:576.027067pt;}
.y20_c02263{bottom:592.907067pt;}
.y1f_c02263{bottom:609.467067pt;}
.y1d_c02263{bottom:625.067067pt;}
.y1b_c02263{bottom:641.467067pt;}
.y1c_c02263{bottom:641.947067pt;}
.y1e_c02263{bottom:658.827067pt;}
.y1a_c02263{bottom:677.146267pt;}
.y19_c02263{bottom:690.906667pt;}
.y18_c02263{bottom:704.667067pt;}
.y17_c02263{bottom:719.387067pt;}
.y16_c02263{bottom:737.787067pt;}
.y15_c02263{bottom:756.187067pt;}
.y14_c02263{bottom:773.067067pt;}
.y13_c02263{bottom:790.267067pt;}
.y12_c02263{bottom:808.667067pt;}
.y11_c02263{bottom:827.067067pt;}
.y10_c02263{bottom:843.947067pt;}
.yf_c02263{bottom:860.827067pt;}
.ye_c02263{bottom:877.707067pt;}
.yd_c02263{bottom:894.507067pt;}
.yc_c02263{bottom:912.587067pt;}
.yb_c02263{bottom:928.267067pt;}
.y8_c02263{bottom:944.587067pt;}
.ya_c02263{bottom:945.147067pt;}
.y9_c02263{bottom:962.027067pt;}
.y7_c02263{bottom:979.147067pt;}
.y6_c02263{bottom:998.667067pt;}
.y5_c02263{bottom:1013.307067pt;}
.y2_c02263{bottom:1042.347067pt;}
.y1_c02263{bottom:1060.587067pt;}
.hd_c02263{height:9.379219pt;}
.h3_c02263{height:42.632812pt;}
.h5_c02263{height:47.464531pt;}
.h4_c02263{height:52.012031pt;}
.h2_c02263{height:56.156250pt;}
.h1_c02263{height:56.843750pt;}
.ha_c02263{height:57.803217pt;}
.hb_c02263{height:57.804283pt;}
.h6_c02263{height:58.076250pt;}
.hc_c02263{height:58.123217pt;}
.h7_c02263{height:58.123750pt;}
.h9_c02263{height:124.363750pt;}
.h8_c02263{height:126.283750pt;}
.h0_c02263{height:1122.666667pt;}
.w1_c02263{width:793.333333pt;}
.w0_c02263{width:793.626667pt;}
.x0_c02263{left:0.000000pt;}
.x1_c02263{left:113.440000pt;}
.x3_c02263{left:120.560000pt;}
.xc_c02263{left:143.040000pt;}
.x5_c02263{left:213.280000pt;}
.xd_c02263{left:218.960000pt;}
.x12_c02263{left:232.640000pt;}
.xe_c02263{left:236.480000pt;}
.x6_c02263{left:241.600000pt;}
.x13_c02263{left:250.320000pt;}
.x4_c02263{left:258.320000pt;}
.x14_c02263{left:380.080000pt;}
.x2_c02263{left:384.880000pt;}
.xf_c02263{left:387.200000pt;}
.x8_c02263{left:403.920000pt;}
.x7_c02263{left:413.520000pt;}
.xa_c02263{left:524.080000pt;}
.x16_c02263{left:529.600000pt;}
.x10_c02263{left:538.000000pt;}
.x15_c02263{left:548.000000pt;}
.xb_c02263{left:555.680000pt;}
.x11_c02263{left:565.280000pt;}
.x9_c02263{left:568.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_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_3447c6f429c217150949be4f.woff2')format("woff");}.ff1_c02264{font-family:ff1_c02264;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02264;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v5_c02264{vertical-align:-4.320000px;}
.v4_c02264{vertical-align:-2.880000px;}
.v6_c02264{vertical-align:-1.800000px;}
.v0_c02264{vertical-align:0.000000px;}
.v2_c02264{vertical-align:1.800000px;}
.v9_c02264{vertical-align:2.880000px;}
.v8_c02264{vertical-align:4.320000px;}
.v3_c02264{vertical-align:5.400000px;}
.v7_c02264{vertical-align:7.200000px;}
.v1_c02264{vertical-align:78.120000px;}
.ls4d_c02264{letter-spacing:-0.086184px;}
.ls49_c02264{letter-spacing:-0.043200px;}
.ls51_c02264{letter-spacing:-0.024048px;}
.ls4b_c02264{letter-spacing:-0.019152px;}
.ls45_c02264{letter-spacing:-0.014400px;}
.ls4a_c02264{letter-spacing:-0.010800px;}
.ls47_c02264{letter-spacing:-0.007200px;}
.ls46_c02264{letter-spacing:-0.006012px;}
.ls52_c02264{letter-spacing:-0.004788px;}
.ls44_c02264{letter-spacing:0.000000px;}
.ls2f_c02264{letter-spacing:0.007200px;}
.ls30_c02264{letter-spacing:0.010800px;}
.ls2c_c02264{letter-spacing:0.013176px;}
.ls43_c02264{letter-spacing:0.019152px;}
.ls32_c02264{letter-spacing:0.028728px;}
.ls0_c02264{letter-spacing:0.028800px;}
.ls33_c02264{letter-spacing:0.032400px;}
.ls3_c02264{letter-spacing:0.032940px;}
.ls38_c02264{letter-spacing:0.037800px;}
.ls2_c02264{letter-spacing:0.039528px;}
.ls31_c02264{letter-spacing:0.043092px;}
.ls37_c02264{letter-spacing:0.043200px;}
.ls3c_c02264{letter-spacing:0.052668px;}
.ls4_c02264{letter-spacing:0.059292px;}
.ls8_c02264{letter-spacing:0.065880px;}
.ls28_c02264{letter-spacing:0.072468px;}
.ls35_c02264{letter-spacing:0.076608px;}
.ls15_c02264{letter-spacing:0.079056px;}
.ls53_c02264{letter-spacing:0.081396px;}
.ls6_c02264{letter-spacing:0.092232px;}
.ls17_c02264{letter-spacing:0.098820px;}
.ls3f_c02264{letter-spacing:0.110124px;}
.ls4e_c02264{letter-spacing:0.113400px;}
.ls3d_c02264{letter-spacing:0.114912px;}
.ls41_c02264{letter-spacing:0.124488px;}
.ls42_c02264{letter-spacing:0.134064px;}
.lsc_c02264{letter-spacing:0.138348px;}
.ls3e_c02264{letter-spacing:0.138852px;}
.ls5_c02264{letter-spacing:0.144288px;}
.ls48_c02264{letter-spacing:0.151200px;}
.lse_c02264{letter-spacing:0.151524px;}
.ls26_c02264{letter-spacing:0.158112px;}
.ls3b_c02264{letter-spacing:0.162792px;}
.ls1_c02264{letter-spacing:0.164700px;}
.ls4c_c02264{letter-spacing:0.167580px;}
.ls19_c02264{letter-spacing:0.177876px;}
.lsa_c02264{letter-spacing:0.180000px;}
.ls36_c02264{letter-spacing:0.181944px;}
.ls40_c02264{letter-spacing:0.205884px;}
.ls27_c02264{letter-spacing:64.080000px;}
.ls23_c02264{letter-spacing:66.240000px;}
.ls1a_c02264{letter-spacing:66.600000px;}
.ls1b_c02264{letter-spacing:66.960000px;}
.ls12_c02264{letter-spacing:99.000000px;}
.ls13_c02264{letter-spacing:99.360000px;}
.ls14_c02264{letter-spacing:99.720000px;}
.ls34_c02264{letter-spacing:112.680000px;}
.ls24_c02264{letter-spacing:117.450000px;}
.lsb_c02264{letter-spacing:132.120000px;}
.lsd_c02264{letter-spacing:132.480000px;}
.ls10_c02264{letter-spacing:132.840000px;}
.ls4f_c02264{letter-spacing:144.180000px;}
.lsf_c02264{letter-spacing:150.300000px;}
.ls50_c02264{letter-spacing:154.532448px;}
.ls3a_c02264{letter-spacing:156.060000px;}
.ls1d_c02264{letter-spacing:165.240000px;}
.ls2d_c02264{letter-spacing:165.960000px;}
.ls1f_c02264{letter-spacing:183.330000px;}
.ls20_c02264{letter-spacing:183.420000px;}
.ls11_c02264{letter-spacing:186.480000px;}
.ls39_c02264{letter-spacing:200.790000px;}
.ls29_c02264{letter-spacing:204.840000px;}
.ls2a_c02264{letter-spacing:214.560000px;}
.ls1e_c02264{letter-spacing:214.920000px;}
.ls21_c02264{letter-spacing:215.279400px;}
.ls16_c02264{letter-spacing:234.360000px;}
.ls18_c02264{letter-spacing:252.360000px;}
.ls25_c02264{letter-spacing:268.920000px;}
.ls1c_c02264{letter-spacing:281.520000px;}
.ls22_c02264{letter-spacing:314.640000px;}
.ls9_c02264{letter-spacing:329.400000px;}
.ls7_c02264{letter-spacing:347.760000px;}
.ls2e_c02264{letter-spacing:394.200000px;}
.ls2b_c02264{letter-spacing:414.720000px;}
.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;}
}
.ws7_c02264{word-spacing:-16.647876px;}
.ws0_c02264{word-spacing:-16.634700px;}
.ws11_c02264{word-spacing:-16.628112px;}
.ws8_c02264{word-spacing:-16.621524px;}
.ws2_c02264{word-spacing:-16.608348px;}
.wsa_c02264{word-spacing:-16.568820px;}
.wse_c02264{word-spacing:-16.562232px;}
.ws12_c02264{word-spacing:-16.542468px;}
.wsd_c02264{word-spacing:-16.529292px;}
.ws1_c02264{word-spacing:-16.509528px;}
.ws2b_c02264{word-spacing:-0.296856px;}
.ws26_c02264{word-spacing:-0.272916px;}
.ws27_c02264{word-spacing:-0.253764px;}
.ws2a_c02264{word-spacing:-0.229824px;}
.ws2e_c02264{word-spacing:-0.225036px;}
.ws2d_c02264{word-spacing:-0.215460px;}
.ws29_c02264{word-spacing:-0.205884px;}
.ws2f_c02264{word-spacing:-0.172368px;}
.ws28_c02264{word-spacing:-0.119700px;}
.ws22_c02264{word-spacing:-0.115200px;}
.ws30_c02264{word-spacing:-0.110124px;}
.ws1a_c02264{word-spacing:-0.086400px;}
.ws1e_c02264{word-spacing:-0.054108px;}
.ws23_c02264{word-spacing:-0.007200px;}
.ws19_c02264{word-spacing:0.000000px;}
.ws24_c02264{word-spacing:0.007200px;}
.ws20_c02264{word-spacing:0.013176px;}
.ws1f_c02264{word-spacing:0.026352px;}
.ws1b_c02264{word-spacing:0.032940px;}
.ws1d_c02264{word-spacing:0.052704px;}
.ws1c_c02264{word-spacing:0.059292px;}
.ws25_c02264{word-spacing:0.064800px;}
.ws21_c02264{word-spacing:0.079056px;}
.ws14_c02264{word-spacing:65.089440px;}
.ws10_c02264{word-spacing:67.238496px;}
.wsc_c02264{word-spacing:67.642380px;}
.ws4_c02264{word-spacing:99.996372px;}
.wsb_c02264{word-spacing:99.998496px;}
.ws5_c02264{word-spacing:100.402380px;}
.ws13_c02264{word-spacing:100.426608px;}
.ws15_c02264{word-spacing:100.933020px;}
.ws18_c02264{word-spacing:101.089440px;}
.ws9_c02264{word-spacing:150.082380px;}
.ws3_c02264{word-spacing:150.106608px;}
.ws6_c02264{word-spacing:182.842380px;}
.ws2c_c02264{word-spacing:199.935000px;}
.ws17_c02264{word-spacing:215.833572px;}
.wsf_c02264{word-spacing:216.083304px;}
.ws16_c02264{word-spacing:216.270000px;}
._28_c02264{margin-left:-79.196400px;}
._27_c02264{margin-left:-44.912124px;}
._2d_c02264{margin-left:-42.562476px;}
._29_c02264{margin-left:-8.278200px;}
._1_c02264{margin-left:-1.148292px;}
._1e_c02264{width:43.915104px;}
._21_c02264{width:49.440240px;}
._15_c02264{width:50.937552px;}
._1a_c02264{width:61.333200px;}
._23_c02264{width:73.078200px;}
._1c_c02264{width:75.420000px;}
._22_c02264{width:77.160240px;}
._19_c02264{width:78.264000px;}
._18_c02264{width:83.700000px;}
._d_c02264{width:84.834000px;}
._c_c02264{width:87.861600px;}
._24_c02264{width:90.064980px;}
._16_c02264{width:91.288440px;}
._25_c02264{width:93.373200px;}
._20_c02264{width:94.528476px;}
._2b_c02264{width:95.735016px;}
._14_c02264{width:100.015200px;}
._4_c02264{width:104.490000px;}
._f_c02264{width:106.740000px;}
._26_c02264{width:110.700000px;}
._2c_c02264{width:114.887016px;}
._5_c02264{width:115.923132px;}
._10_c02264{width:118.018944px;}
._2a_c02264{width:119.791548px;}
._e_c02264{width:122.220000px;}
._13_c02264{width:126.707688px;}
._1f_c02264{width:128.226384px;}
._1b_c02264{width:129.438000px;}
._8_c02264{width:133.316208px;}
._11_c02264{width:144.456120px;}
._12_c02264{width:153.235404px;}
._3_c02264{width:169.288704px;}
._17_c02264{width:182.604168px;}
._1d_c02264{width:199.529856px;}
._6_c02264{width:214.319736px;}
._2_c02264{width:216.679284px;}
._9_c02264{width:232.060104px;}
._0_c02264{width:485.985600px;}
._b_c02264{width:644.886720px;}
._a_c02264{width:665.158248px;}
._7_c02264{width:1378.800000px;}
.fc0_c02264{color:rgb(0,0,0);}
.fs5_c02264{font-size:11.880000px;}
.fs4_c02264{font-size:47.880000px;}
.fs3_c02264{font-size:54.000000px;}
.fs2_c02264{font-size:60.120000px;}
.fs1_c02264{font-size:65.880000px;}
.fs0_c02264{font-size:72.000000px;}
.y0_c02264{bottom:0.000000px;}
.y4_c02264{bottom:57.360450px;}
.y3_c02264{bottom:78.060450px;}
.y4e_c02264{bottom:114.690450px;}
.y4d_c02264{bottom:130.260450px;}
.y4c_c02264{bottom:130.620000px;}
.y4b_c02264{bottom:149.160450px;}
.y4a_c02264{bottom:149.610450px;}
.y49_c02264{bottom:168.510450px;}
.y48_c02264{bottom:187.140450px;}
.y47_c02264{bottom:187.500900px;}
.y46_c02264{bottom:207.840450px;}
.y45_c02264{bottom:208.200900px;}
.y44_c02264{bottom:228.540600px;}
.y43_c02264{bottom:228.900450px;}
.y42_c02264{bottom:249.600450px;}
.y41_c02264{bottom:268.230450px;}
.y40_c02264{bottom:268.590450px;}
.y3f_c02264{bottom:289.920450px;}
.y3e_c02264{bottom:308.280450px;}
.y3d_c02264{bottom:323.760450px;}
.y3c_c02264{bottom:340.230450px;}
.y3b_c02264{bottom:361.020450px;}
.y3a_c02264{bottom:369.840450px;}
.y39_c02264{bottom:370.200150px;}
.y38_c02264{bottom:388.830450px;}
.y37_c02264{bottom:389.190150px;}
.y36_c02264{bottom:407.820450px;}
.y35_c02264{bottom:408.180450px;}
.y34_c02264{bottom:426.720450px;}
.y33_c02264{bottom:427.080150px;}
.y32_c02264{bottom:445.710600px;}
.y31_c02264{bottom:446.070450px;}
.y30_c02264{bottom:465.060450px;}
.y2f_c02264{bottom:483.690600px;}
.y2e_c02264{bottom:484.050450px;}
.y2d_c02264{bottom:505.380450px;}
.y2c_c02264{bottom:523.740450px;}
.y2b_c02264{bottom:539.220450px;}
.y2a_c02264{bottom:555.690450px;}
.y29_c02264{bottom:576.480450px;}
.y28_c02264{bottom:585.300450px;}
.y27_c02264{bottom:585.660000px;}
.y26_c02264{bottom:604.290450px;}
.y25_c02264{bottom:604.650450px;}
.y24_c02264{bottom:623.640450px;}
.y23_c02264{bottom:642.180450px;}
.y22_c02264{bottom:642.540900px;}
.y21_c02264{bottom:662.880450px;}
.y20_c02264{bottom:663.240900px;}
.y1f_c02264{bottom:683.580450px;}
.y1e_c02264{bottom:683.940450px;}
.y1d_c02264{bottom:705.360450px;}
.y1c_c02264{bottom:723.630450px;}
.y1b_c02264{bottom:739.200450px;}
.y1a_c02264{bottom:755.670450px;}
.y19_c02264{bottom:775.740450px;}
.y18_c02264{bottom:792.390450px;}
.y17_c02264{bottom:813.720450px;}
.y16_c02264{bottom:834.150900px;}
.y15_c02264{bottom:849.720450px;}
.y14_c02264{bottom:866.280450px;}
.y13_c02264{bottom:886.980450px;}
.y12_c02264{bottom:907.680450px;}
.y11_c02264{bottom:926.670450px;}
.y10_c02264{bottom:946.020450px;}
.yf_c02264{bottom:966.720450px;}
.ye_c02264{bottom:987.420450px;}
.yd_c02264{bottom:1006.320450px;}
.yc_c02264{bottom:1025.310450px;}
.yb_c02264{bottom:1044.300450px;}
.ya_c02264{bottom:1063.290450px;}
.y9_c02264{bottom:1083.630450px;}
.y7_c02264{bottom:1101.270450px;}
.y5_c02264{bottom:1119.630450px;}
.y6_c02264{bottom:1120.170450px;}
.y8_c02264{bottom:1139.160450px;}
.y2_c02264{bottom:1172.640450px;}
.y1_c02264{bottom:1193.160450px;}
.hd_c02264{height:10.551621px;}
.h9_c02264{height:47.961914px;}
.h5_c02264{height:53.397598px;}
.h4_c02264{height:58.513535px;}
.hb_c02264{height:61.033535px;}
.he_c02264{height:61.034135px;}
.h10_c02264{height:61.393535px;}
.hc_c02264{height:62.473535px;}
.hf_c02264{height:62.474135px;}
.ha_c02264{height:62.833535px;}
.h2_c02264{height:63.175781px;}
.h1_c02264{height:63.949219px;}
.h6_c02264{height:64.975781px;}
.h8_c02264{height:65.029219px;}
.h7_c02264{height:65.029819px;}
.h3_c02264{height:142.069219px;}
.h0_c02264{height:1263.000000px;}
.w1_c02264{width:892.500000px;}
.w0_c02264{width:892.830000px;}
.x0_c02264{left:0.000000px;}
.x1_c02264{left:127.620000px;}
.x3_c02264{left:135.630000px;}
.xd_c02264{left:143.910000px;}
.xc_c02264{left:160.920000px;}
.x10_c02264{left:164.970000px;}
.x11_c02264{left:220.590000px;}
.x4_c02264{left:250.200000px;}
.x5_c02264{left:262.800000px;}
.x7_c02264{left:422.280000px;}
.x2_c02264{left:432.990000px;}
.x8_c02264{left:451.440000px;}
.x6_c02264{left:465.210000px;}
.xe_c02264{left:577.530000px;}
.xa_c02264{left:592.920000px;}
.xb_c02264{left:603.180000px;}
.x12_c02264{left:624.870000px;}
.xf_c02264{left:629.280000px;}
.x9_c02264{left:639.810000px;}
@media print{
.v5_c02264{vertical-align:-3.840000pt;}
.v4_c02264{vertical-align:-2.560000pt;}
.v6_c02264{vertical-align:-1.600000pt;}
.v0_c02264{vertical-align:0.000000pt;}
.v2_c02264{vertical-align:1.600000pt;}
.v9_c02264{vertical-align:2.560000pt;}
.v8_c02264{vertical-align:3.840000pt;}
.v3_c02264{vertical-align:4.800000pt;}
.v7_c02264{vertical-align:6.400000pt;}
.v1_c02264{vertical-align:69.440000pt;}
.ls4d_c02264{letter-spacing:-0.076608pt;}
.ls49_c02264{letter-spacing:-0.038400pt;}
.ls51_c02264{letter-spacing:-0.021376pt;}
.ls4b_c02264{letter-spacing:-0.017024pt;}
.ls45_c02264{letter-spacing:-0.012800pt;}
.ls4a_c02264{letter-spacing:-0.009600pt;}
.ls47_c02264{letter-spacing:-0.006400pt;}
.ls46_c02264{letter-spacing:-0.005344pt;}
.ls52_c02264{letter-spacing:-0.004256pt;}
.ls44_c02264{letter-spacing:0.000000pt;}
.ls2f_c02264{letter-spacing:0.006400pt;}
.ls30_c02264{letter-spacing:0.009600pt;}
.ls2c_c02264{letter-spacing:0.011712pt;}
.ls43_c02264{letter-spacing:0.017024pt;}
.ls32_c02264{letter-spacing:0.025536pt;}
.ls0_c02264{letter-spacing:0.025600pt;}
.ls33_c02264{letter-spacing:0.028800pt;}
.ls3_c02264{letter-spacing:0.029280pt;}
.ls38_c02264{letter-spacing:0.033600pt;}
.ls2_c02264{letter-spacing:0.035136pt;}
.ls31_c02264{letter-spacing:0.038304pt;}
.ls37_c02264{letter-spacing:0.038400pt;}
.ls3c_c02264{letter-spacing:0.046816pt;}
.ls4_c02264{letter-spacing:0.052704pt;}
.ls8_c02264{letter-spacing:0.058560pt;}
.ls28_c02264{letter-spacing:0.064416pt;}
.ls35_c02264{letter-spacing:0.068096pt;}
.ls15_c02264{letter-spacing:0.070272pt;}
.ls53_c02264{letter-spacing:0.072352pt;}
.ls6_c02264{letter-spacing:0.081984pt;}
.ls17_c02264{letter-spacing:0.087840pt;}
.ls3f_c02264{letter-spacing:0.097888pt;}
.ls4e_c02264{letter-spacing:0.100800pt;}
.ls3d_c02264{letter-spacing:0.102144pt;}
.ls41_c02264{letter-spacing:0.110656pt;}
.ls42_c02264{letter-spacing:0.119168pt;}
.lsc_c02264{letter-spacing:0.122976pt;}
.ls3e_c02264{letter-spacing:0.123424pt;}
.ls5_c02264{letter-spacing:0.128256pt;}
.ls48_c02264{letter-spacing:0.134400pt;}
.lse_c02264{letter-spacing:0.134688pt;}
.ls26_c02264{letter-spacing:0.140544pt;}
.ls3b_c02264{letter-spacing:0.144704pt;}
.ls1_c02264{letter-spacing:0.146400pt;}
.ls4c_c02264{letter-spacing:0.148960pt;}
.ls19_c02264{letter-spacing:0.158112pt;}
.lsa_c02264{letter-spacing:0.160000pt;}
.ls36_c02264{letter-spacing:0.161728pt;}
.ls40_c02264{letter-spacing:0.183008pt;}
.ls27_c02264{letter-spacing:56.960000pt;}
.ls23_c02264{letter-spacing:58.880000pt;}
.ls1a_c02264{letter-spacing:59.200000pt;}
.ls1b_c02264{letter-spacing:59.520000pt;}
.ls12_c02264{letter-spacing:88.000000pt;}
.ls13_c02264{letter-spacing:88.320000pt;}
.ls14_c02264{letter-spacing:88.640000pt;}
.ls34_c02264{letter-spacing:100.160000pt;}
.ls24_c02264{letter-spacing:104.400000pt;}
.lsb_c02264{letter-spacing:117.440000pt;}
.lsd_c02264{letter-spacing:117.760000pt;}
.ls10_c02264{letter-spacing:118.080000pt;}
.ls4f_c02264{letter-spacing:128.160000pt;}
.lsf_c02264{letter-spacing:133.600000pt;}
.ls50_c02264{letter-spacing:137.362176pt;}
.ls3a_c02264{letter-spacing:138.720000pt;}
.ls1d_c02264{letter-spacing:146.880000pt;}
.ls2d_c02264{letter-spacing:147.520000pt;}
.ls1f_c02264{letter-spacing:162.960000pt;}
.ls20_c02264{letter-spacing:163.040000pt;}
.ls11_c02264{letter-spacing:165.760000pt;}
.ls39_c02264{letter-spacing:178.480000pt;}
.ls29_c02264{letter-spacing:182.080000pt;}
.ls2a_c02264{letter-spacing:190.720000pt;}
.ls1e_c02264{letter-spacing:191.040000pt;}
.ls21_c02264{letter-spacing:191.359467pt;}
.ls16_c02264{letter-spacing:208.320000pt;}
.ls18_c02264{letter-spacing:224.320000pt;}
.ls25_c02264{letter-spacing:239.040000pt;}
.ls1c_c02264{letter-spacing:250.240000pt;}
.ls22_c02264{letter-spacing:279.680000pt;}
.ls9_c02264{letter-spacing:292.800000pt;}
.ls7_c02264{letter-spacing:309.120000pt;}
.ls2e_c02264{letter-spacing:350.400000pt;}
.ls2b_c02264{letter-spacing:368.640000pt;}
.ws7_c02264{word-spacing:-14.798112pt;}
.ws0_c02264{word-spacing:-14.786400pt;}
.ws11_c02264{word-spacing:-14.780544pt;}
.ws8_c02264{word-spacing:-14.774688pt;}
.ws2_c02264{word-spacing:-14.762976pt;}
.wsa_c02264{word-spacing:-14.727840pt;}
.wse_c02264{word-spacing:-14.721984pt;}
.ws12_c02264{word-spacing:-14.704416pt;}
.wsd_c02264{word-spacing:-14.692704pt;}
.ws1_c02264{word-spacing:-14.675136pt;}
.ws2b_c02264{word-spacing:-0.263872pt;}
.ws26_c02264{word-spacing:-0.242592pt;}
.ws27_c02264{word-spacing:-0.225568pt;}
.ws2a_c02264{word-spacing:-0.204288pt;}
.ws2e_c02264{word-spacing:-0.200032pt;}
.ws2d_c02264{word-spacing:-0.191520pt;}
.ws29_c02264{word-spacing:-0.183008pt;}
.ws2f_c02264{word-spacing:-0.153216pt;}
.ws28_c02264{word-spacing:-0.106400pt;}
.ws22_c02264{word-spacing:-0.102400pt;}
.ws30_c02264{word-spacing:-0.097888pt;}
.ws1a_c02264{word-spacing:-0.076800pt;}
.ws1e_c02264{word-spacing:-0.048096pt;}
.ws23_c02264{word-spacing:-0.006400pt;}
.ws19_c02264{word-spacing:0.000000pt;}
.ws24_c02264{word-spacing:0.006400pt;}
.ws20_c02264{word-spacing:0.011712pt;}
.ws1f_c02264{word-spacing:0.023424pt;}
.ws1b_c02264{word-spacing:0.029280pt;}
.ws1d_c02264{word-spacing:0.046848pt;}
.ws1c_c02264{word-spacing:0.052704pt;}
.ws25_c02264{word-spacing:0.057600pt;}
.ws21_c02264{word-spacing:0.070272pt;}
.ws14_c02264{word-spacing:57.857280pt;}
.ws10_c02264{word-spacing:59.767552pt;}
.wsc_c02264{word-spacing:60.126560pt;}
.ws4_c02264{word-spacing:88.885664pt;}
.wsb_c02264{word-spacing:88.887552pt;}
.ws5_c02264{word-spacing:89.246560pt;}
.ws13_c02264{word-spacing:89.268096pt;}
.ws15_c02264{word-spacing:89.718240pt;}
.ws18_c02264{word-spacing:89.857280pt;}
.ws9_c02264{word-spacing:133.406560pt;}
.ws3_c02264{word-spacing:133.428096pt;}
.ws6_c02264{word-spacing:162.526560pt;}
.ws2c_c02264{word-spacing:177.720000pt;}
.ws17_c02264{word-spacing:191.852064pt;}
.wsf_c02264{word-spacing:192.074048pt;}
.ws16_c02264{word-spacing:192.240000pt;}
._28_c02264{margin-left:-70.396800pt;}
._27_c02264{margin-left:-39.921888pt;}
._2d_c02264{margin-left:-37.833312pt;}
._29_c02264{margin-left:-7.358400pt;}
._1_c02264{margin-left:-1.020704pt;}
._1e_c02264{width:39.035648pt;}
._21_c02264{width:43.946880pt;}
._15_c02264{width:45.277824pt;}
._1a_c02264{width:54.518400pt;}
._23_c02264{width:64.958400pt;}
._1c_c02264{width:67.040000pt;}
._22_c02264{width:68.586880pt;}
._19_c02264{width:69.568000pt;}
._18_c02264{width:74.400000pt;}
._d_c02264{width:75.408000pt;}
._c_c02264{width:78.099200pt;}
._24_c02264{width:80.057760pt;}
._16_c02264{width:81.145280pt;}
._25_c02264{width:82.998400pt;}
._20_c02264{width:84.025312pt;}
._2b_c02264{width:85.097792pt;}
._14_c02264{width:88.902400pt;}
._4_c02264{width:92.880000pt;}
._f_c02264{width:94.880000pt;}
._26_c02264{width:98.400000pt;}
._2c_c02264{width:102.121792pt;}
._5_c02264{width:103.042784pt;}
._10_c02264{width:104.905728pt;}
._2a_c02264{width:106.481376pt;}
._e_c02264{width:108.640000pt;}
._13_c02264{width:112.629056pt;}
._1f_c02264{width:113.979008pt;}
._1b_c02264{width:115.056000pt;}
._8_c02264{width:118.503296pt;}
._11_c02264{width:128.405440pt;}
._12_c02264{width:136.209248pt;}
._3_c02264{width:150.478848pt;}
._17_c02264{width:162.314816pt;}
._1d_c02264{width:177.359872pt;}
._6_c02264{width:190.506432pt;}
._2_c02264{width:192.603808pt;}
._9_c02264{width:206.275648pt;}
._0_c02264{width:431.987200pt;}
._b_c02264{width:573.232640pt;}
._a_c02264{width:591.251776pt;}
._7_c02264{width:1225.600000pt;}
.fs5_c02264{font-size:10.560000pt;}
.fs4_c02264{font-size:42.560000pt;}
.fs3_c02264{font-size:48.000000pt;}
.fs2_c02264{font-size:53.440000pt;}
.fs1_c02264{font-size:58.560000pt;}
.fs0_c02264{font-size:64.000000pt;}
.y0_c02264{bottom:0.000000pt;}
.y4_c02264{bottom:50.987067pt;}
.y3_c02264{bottom:69.387067pt;}
.y4e_c02264{bottom:101.947067pt;}
.y4d_c02264{bottom:115.787067pt;}
.y4c_c02264{bottom:116.106667pt;}
.y4b_c02264{bottom:132.587067pt;}
.y4a_c02264{bottom:132.987067pt;}
.y49_c02264{bottom:149.787067pt;}
.y48_c02264{bottom:166.347067pt;}
.y47_c02264{bottom:166.667467pt;}
.y46_c02264{bottom:184.747067pt;}
.y45_c02264{bottom:185.067467pt;}
.y44_c02264{bottom:203.147200pt;}
.y43_c02264{bottom:203.467067pt;}
.y42_c02264{bottom:221.867067pt;}
.y41_c02264{bottom:238.427067pt;}
.y40_c02264{bottom:238.747067pt;}
.y3f_c02264{bottom:257.707067pt;}
.y3e_c02264{bottom:274.027067pt;}
.y3d_c02264{bottom:287.787067pt;}
.y3c_c02264{bottom:302.427067pt;}
.y3b_c02264{bottom:320.907067pt;}
.y3a_c02264{bottom:328.747067pt;}
.y39_c02264{bottom:329.066800pt;}
.y38_c02264{bottom:345.627067pt;}
.y37_c02264{bottom:345.946800pt;}
.y36_c02264{bottom:362.507067pt;}
.y35_c02264{bottom:362.827067pt;}
.y34_c02264{bottom:379.307067pt;}
.y33_c02264{bottom:379.626800pt;}
.y32_c02264{bottom:396.187200pt;}
.y31_c02264{bottom:396.507067pt;}
.y30_c02264{bottom:413.387067pt;}
.y2f_c02264{bottom:429.947200pt;}
.y2e_c02264{bottom:430.267067pt;}
.y2d_c02264{bottom:449.227067pt;}
.y2c_c02264{bottom:465.547067pt;}
.y2b_c02264{bottom:479.307067pt;}
.y2a_c02264{bottom:493.947067pt;}
.y29_c02264{bottom:512.427067pt;}
.y28_c02264{bottom:520.267067pt;}
.y27_c02264{bottom:520.586667pt;}
.y26_c02264{bottom:537.147067pt;}
.y25_c02264{bottom:537.467067pt;}
.y24_c02264{bottom:554.347067pt;}
.y23_c02264{bottom:570.827067pt;}
.y22_c02264{bottom:571.147467pt;}
.y21_c02264{bottom:589.227067pt;}
.y20_c02264{bottom:589.547467pt;}
.y1f_c02264{bottom:607.627067pt;}
.y1e_c02264{bottom:607.947067pt;}
.y1d_c02264{bottom:626.987067pt;}
.y1c_c02264{bottom:643.227067pt;}
.y1b_c02264{bottom:657.067067pt;}
.y1a_c02264{bottom:671.707067pt;}
.y19_c02264{bottom:689.547067pt;}
.y18_c02264{bottom:704.347067pt;}
.y17_c02264{bottom:723.307067pt;}
.y16_c02264{bottom:741.467467pt;}
.y15_c02264{bottom:755.307067pt;}
.y14_c02264{bottom:770.027067pt;}
.y13_c02264{bottom:788.427067pt;}
.y12_c02264{bottom:806.827067pt;}
.y11_c02264{bottom:823.707067pt;}
.y10_c02264{bottom:840.907067pt;}
.yf_c02264{bottom:859.307067pt;}
.ye_c02264{bottom:877.707067pt;}
.yd_c02264{bottom:894.507067pt;}
.yc_c02264{bottom:911.387067pt;}
.yb_c02264{bottom:928.267067pt;}
.ya_c02264{bottom:945.147067pt;}
.y9_c02264{bottom:963.227067pt;}
.y7_c02264{bottom:978.907067pt;}
.y5_c02264{bottom:995.227067pt;}
.y6_c02264{bottom:995.707067pt;}
.y8_c02264{bottom:1012.587067pt;}
.y2_c02264{bottom:1042.347067pt;}
.y1_c02264{bottom:1060.587067pt;}
.hd_c02264{height:9.379219pt;}
.h9_c02264{height:42.632812pt;}
.h5_c02264{height:47.464531pt;}
.h4_c02264{height:52.012031pt;}
.hb_c02264{height:54.252031pt;}
.he_c02264{height:54.252565pt;}
.h10_c02264{height:54.572031pt;}
.hc_c02264{height:55.532031pt;}
.hf_c02264{height:55.532565pt;}
.ha_c02264{height:55.852031pt;}
.h2_c02264{height:56.156250pt;}
.h1_c02264{height:56.843750pt;}
.h6_c02264{height:57.756250pt;}
.h8_c02264{height:57.803750pt;}
.h7_c02264{height:57.804283pt;}
.h3_c02264{height:126.283750pt;}
.h0_c02264{height:1122.666667pt;}
.w1_c02264{width:793.333333pt;}
.w0_c02264{width:793.626667pt;}
.x0_c02264{left:0.000000pt;}
.x1_c02264{left:113.440000pt;}
.x3_c02264{left:120.560000pt;}
.xd_c02264{left:127.920000pt;}
.xc_c02264{left:143.040000pt;}
.x10_c02264{left:146.640000pt;}
.x11_c02264{left:196.080000pt;}
.x4_c02264{left:222.400000pt;}
.x5_c02264{left:233.600000pt;}
.x7_c02264{left:375.360000pt;}
.x2_c02264{left:384.880000pt;}
.x8_c02264{left:401.280000pt;}
.x6_c02264{left:413.520000pt;}
.xe_c02264{left:513.360000pt;}
.xa_c02264{left:527.040000pt;}
.xb_c02264{left:536.160000pt;}
.x12_c02264{left:555.440000pt;}
.xf_c02264{left:559.360000pt;}
.x9_c02264{left:568.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_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_09a44819f9617a82be3243c1.woff2')format("woff");}.ff1_c02265{font-family:ff1_c02265;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02265;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v1_c02265{vertical-align:-9.000000px;}
.v4_c02265{vertical-align:-4.320600px;}
.v3_c02265{vertical-align:-2.520600px;}
.v2_c02265{vertical-align:-1.440000px;}
.v0_c02265{vertical-align:0.000000px;}
.v7_c02265{vertical-align:1.080000px;}
.v5_c02265{vertical-align:2.520000px;}
.v6_c02265{vertical-align:3.960000px;}
.ls27_c02265{letter-spacing:-0.178200px;}
.ls2d_c02265{letter-spacing:-0.086184px;}
.ls2a_c02265{letter-spacing:-0.043200px;}
.ls30_c02265{letter-spacing:-0.021600px;}
.ls26_c02265{letter-spacing:-0.019152px;}
.ls2b_c02265{letter-spacing:-0.010800px;}
.ls28_c02265{letter-spacing:-0.009576px;}
.ls31_c02265{letter-spacing:-0.004788px;}
.ls25_c02265{letter-spacing:0.000000px;}
.ls2_c02265{letter-spacing:0.006588px;}
.ls23_c02265{letter-spacing:0.007200px;}
.lsf_c02265{letter-spacing:0.010800px;}
.ls11_c02265{letter-spacing:0.012636px;}
.ls1a_c02265{letter-spacing:0.014400px;}
.ls24_c02265{letter-spacing:0.016200px;}
.ls20_c02265{letter-spacing:0.019152px;}
.ls1c_c02265{letter-spacing:0.021600px;}
.ls10_c02265{letter-spacing:0.028728px;}
.ls0_c02265{letter-spacing:0.028800px;}
.ls12_c02265{letter-spacing:0.032400px;}
.ls9_c02265{letter-spacing:0.037800px;}
.lsd_c02265{letter-spacing:0.043092px;}
.ls6_c02265{letter-spacing:0.043200px;}
.ls8_c02265{letter-spacing:0.048600px;}
.ls18_c02265{letter-spacing:0.052668px;}
.ls7_c02265{letter-spacing:0.054000px;}
.ls1_c02265{letter-spacing:0.065880px;}
.lsb_c02265{letter-spacing:0.067032px;}
.ls5_c02265{letter-spacing:0.070200px;}
.ls3_c02265{letter-spacing:0.076608px;}
.ls21_c02265{letter-spacing:0.081396px;}
.lsa_c02265{letter-spacing:0.086184px;}
.ls4_c02265{letter-spacing:0.095760px;}
.ls15_c02265{letter-spacing:0.110124px;}
.lsc_c02265{letter-spacing:0.114912px;}
.lse_c02265{letter-spacing:0.119700px;}
.ls1e_c02265{letter-spacing:0.124488px;}
.ls1f_c02265{letter-spacing:0.134064px;}
.ls19_c02265{letter-spacing:0.138852px;}
.ls29_c02265{letter-spacing:0.151200px;}
.ls13_c02265{letter-spacing:0.158112px;}
.ls2c_c02265{letter-spacing:0.167580px;}
.ls22_c02265{letter-spacing:0.181944px;}
.ls17_c02265{letter-spacing:0.205884px;}
.ls1b_c02265{letter-spacing:112.680000px;}
.ls14_c02265{letter-spacing:114.840000px;}
.ls2f_c02265{letter-spacing:144.180000px;}
.ls2e_c02265{letter-spacing:146.340000px;}
.ls1d_c02265{letter-spacing:157.950000px;}
.ls16_c02265{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02265{word-spacing:-16.628112px;}
.ws0_c02265{word-spacing:-16.476588px;}
.ws15_c02265{word-spacing:-0.296856px;}
.ws14_c02265{word-spacing:-0.272916px;}
.ws19_c02265{word-spacing:-0.229824px;}
.ws1e_c02265{word-spacing:-0.225036px;}
.ws1d_c02265{word-spacing:-0.215460px;}
.ws10_c02265{word-spacing:-0.210672px;}
.ws18_c02265{word-spacing:-0.205884px;}
.ws7_c02265{word-spacing:-0.186732px;}
.ws12_c02265{word-spacing:-0.180000px;}
.ws1f_c02265{word-spacing:-0.172368px;}
.ws1c_c02265{word-spacing:-0.158400px;}
.ws17_c02265{word-spacing:-0.119700px;}
.ws20_c02265{word-spacing:-0.110124px;}
.ws1b_c02265{word-spacing:-0.108000px;}
.ws13_c02265{word-spacing:-0.101088px;}
.ws5_c02265{word-spacing:-0.086400px;}
.ws22_c02265{word-spacing:-0.081396px;}
.ws11_c02265{word-spacing:-0.028800px;}
.ws1a_c02265{word-spacing:-0.014400px;}
.ws23_c02265{word-spacing:-0.007200px;}
.ws4_c02265{word-spacing:0.000000px;}
.ws21_c02265{word-spacing:0.021600px;}
.ws6_c02265{word-spacing:0.026352px;}
.ws8_c02265{word-spacing:0.108000px;}
.ws9_c02265{word-spacing:0.124200px;}
.wsa_c02265{word-spacing:0.129600px;}
.wsd_c02265{word-spacing:1.235304px;}
.wsf_c02265{word-spacing:1.273608px;}
.wse_c02265{word-spacing:1.307124px;}
.wsb_c02265{word-spacing:5.941908px;}
.wsc_c02265{word-spacing:5.961060px;}
.ws2_c02265{word-spacing:48.529440px;}
.ws3_c02265{word-spacing:58.969440px;}
.ws24_c02265{word-spacing:119.664000px;}
.ws25_c02265{word-spacing:129.762000px;}
.ws16_c02265{word-spacing:156.735000px;}
._31_c02265{margin-left:-54.500580px;}
._0_c02265{margin-left:-1.133136px;}
._1c_c02265{width:42.621048px;}
._13_c02265{width:50.937552px;}
._17_c02265{width:62.053200px;}
._23_c02265{width:63.594000px;}
._2c_c02265{width:65.436336px;}
._10_c02265{width:73.436724px;}
._19_c02265{width:75.420000px;}
._11_c02265{width:77.310180px;}
._20_c02265{width:80.745300px;}
._32_c02265{width:82.752552px;}
._1a_c02265{width:84.060000px;}
._b_c02265{width:85.914000px;}
._a_c02265{width:88.221600px;}
._30_c02265{width:90.075600px;}
._16_c02265{width:92.666448px;}
._12_c02265{width:100.015200px;}
._e_c02265{width:102.815064px;}
._14_c02265{width:104.479380px;}
._1e_c02265{width:106.421868px;}
._2f_c02265{width:107.514000px;}
._1b_c02265{width:115.329276px;}
._28_c02265{width:118.944000px;}
._1f_c02265{width:120.235176px;}
._c_c02265{width:122.220000px;}
._21_c02265{width:123.832944px;}
._d_c02265{width:127.980000px;}
._18_c02265{width:129.448620px;}
._15_c02265{width:132.915600px;}
._29_c02265{width:136.200168px;}
._2d_c02265{width:137.448684px;}
._27_c02265{width:138.492504px;}
._24_c02265{width:140.223744px;}
._26_c02265{width:144.180000px;}
._1d_c02265{width:146.340000px;}
._f_c02265{width:147.475404px;}
._22_c02265{width:148.604148px;}
._2a_c02265{width:149.788512px;}
._25_c02265{width:151.898580px;}
._2b_c02265{width:157.727016px;}
._2e_c02265{width:171.002160px;}
._9_c02265{width:203.036400px;}
._4_c02265{width:216.180000px;}
._2_c02265{width:283.500000px;}
._5_c02265{width:310.104000px;}
._3_c02265{width:347.693400px;}
._7_c02265{width:353.833200px;}
._6_c02265{width:419.929200px;}
._1_c02265{width:431.488440px;}
._8_c02265{width:605.295000px;}
.fc0_c02265{color:rgb(0,0,0);}
.fs5_c02265{font-size:11.880000px;}
.fs4_c02265{font-size:42.120000px;}
.fs2_c02265{font-size:47.880000px;}
.fs3_c02265{font-size:54.000000px;}
.fs1_c02265{font-size:65.880000px;}
.fs0_c02265{font-size:72.000000px;}
.y0_c02265{bottom:0.000000px;}
.y4_c02265{bottom:57.360450px;}
.y3_c02265{bottom:78.060450px;}
.y51_c02265{bottom:121.890450px;}
.y50_c02265{bottom:137.370600px;}
.y4f_c02265{bottom:137.820450px;}
.y4e_c02265{bottom:156.360450px;}
.y4d_c02265{bottom:156.720450px;}
.y4c_c02265{bottom:175.710600px;}
.y4b_c02265{bottom:194.340450px;}
.y4a_c02265{bottom:194.700600px;}
.y49_c02265{bottom:216.030600px;}
.y48_c02265{bottom:234.390450px;}
.y47_c02265{bottom:251.760450px;}
.y46_c02265{bottom:272.550450px;}
.y45_c02265{bottom:281.280450px;}
.y44_c02265{bottom:281.730450px;}
.y42_c02265{bottom:300.630450px;}
.y41_c02265{bottom:301.350450px;}
.y43_c02265{bottom:301.440450px;}
.y40_c02265{bottom:319.620450px;}
.y3f_c02265{bottom:336.990450px;}
.y3e_c02265{bottom:357.780450px;}
.y3d_c02265{bottom:366.600450px;}
.y3c_c02265{bottom:366.960600px;}
.y3b_c02265{bottom:385.950600px;}
.y3a_c02265{bottom:404.580450px;}
.y39_c02265{bottom:404.940450px;}
.y38_c02265{bottom:426.270600px;}
.y37_c02265{bottom:444.540600px;}
.y36_c02265{bottom:461.910450px;}
.y35_c02265{bottom:482.700600px;}
.y34_c02265{bottom:491.520600px;}
.y33_c02265{bottom:491.880000px;}
.y32_c02265{bottom:510.510450px;}
.y31_c02265{bottom:510.870000px;}
.y30_c02265{bottom:529.500450px;}
.y2f_c02265{bottom:529.860000px;}
.y2e_c02265{bottom:548.490450px;}
.y2d_c02265{bottom:548.850000px;}
.y2c_c02265{bottom:567.390450px;}
.y2b_c02265{bottom:567.840450px;}
.y2a_c02265{bottom:586.740450px;}
.y29_c02265{bottom:605.370450px;}
.y28_c02265{bottom:605.730450px;}
.y27_c02265{bottom:627.060450px;}
.y26_c02265{bottom:645.420450px;}
.y25_c02265{bottom:662.790450px;}
.y24_c02265{bottom:683.580450px;}
.y23_c02265{bottom:692.400450px;}
.y22_c02265{bottom:692.760450px;}
.y21_c02265{bottom:712.380450px;}
.y20_c02265{bottom:730.650450px;}
.y1f_c02265{bottom:748.020450px;}
.y1e_c02265{bottom:768.810450px;}
.y1d_c02265{bottom:777.630450px;}
.y1c_c02265{bottom:777.990000px;}
.y1b_c02265{bottom:796.620450px;}
.y1a_c02265{bottom:796.980450px;}
.y19_c02265{bottom:815.970450px;}
.y18_c02265{bottom:834.600450px;}
.y17_c02265{bottom:834.960450px;}
.y16_c02265{bottom:856.290600px;}
.y15_c02265{bottom:874.560450px;}
.y14_c02265{bottom:891.930600px;}
.y13_c02265{bottom:912.090450px;}
.y12_c02265{bottom:927.660000px;}
.y11_c02265{bottom:943.140450px;}
.y10_c02265{bottom:958.530099px;}
.yf_c02265{bottom:972.390162px;}
.ye_c02265{bottom:986.160450px;}
.yd_c02265{bottom:1007.310450px;}
.yc_c02265{bottom:1027.740450px;}
.yb_c02265{bottom:1048.260450px;}
.ya_c02265{bottom:1068.690450px;}
.y9_c02265{bottom:1089.210450px;}
.y6_c02265{bottom:1106.580450px;}
.y8_c02265{bottom:1107.210450px;}
.y7_c02265{bottom:1124.580450px;}
.y5_c02265{bottom:1141.500450px;}
.y2_c02265{bottom:1172.640450px;}
.y1_c02265{bottom:1193.160450px;}
.hc_c02265{height:10.551621px;}
.h5_c02265{height:42.011895px;}
.h4_c02265{height:42.526230px;}
.h6_c02265{height:47.381836px;}
.h7_c02265{height:47.961914px;}
.h10_c02265{height:48.461836px;}
.h11_c02265{height:57.805840px;}
.h3_c02265{height:58.513535px;}
.hf_c02265{height:61.032935px;}
.h9_c02265{height:61.033535px;}
.h12_c02265{height:61.392935px;}
.hd_c02265{height:61.393535px;}
.h8_c02265{height:62.473535px;}
.ha_c02265{height:62.474135px;}
.he_c02265{height:62.832935px;}
.hb_c02265{height:62.833535px;}
.h2_c02265{height:63.175781px;}
.h1_c02265{height:63.949219px;}
.h0_c02265{height:1263.000000px;}
.w1_c02265{width:892.500000px;}
.w0_c02265{width:892.830000px;}
.x0_c02265{left:0.000000px;}
.x1_c02265{left:127.620000px;}
.x3_c02265{left:134.550000px;}
.x6_c02265{left:135.630000px;}
.x7_c02265{left:143.640000px;}
.x8_c02265{left:164.520000px;}
.x9_c02265{left:220.680000px;}
.x4_c02265{left:332.100000px;}
.x5_c02265{left:354.780000px;}
.x2_c02265{left:432.990000px;}
.xa_c02265{left:531.720450px;}
.xb_c02265{left:717.930000px;}
@media print{
.v1_c02265{vertical-align:-8.000000pt;}
.v4_c02265{vertical-align:-3.840533pt;}
.v3_c02265{vertical-align:-2.240533pt;}
.v2_c02265{vertical-align:-1.280000pt;}
.v0_c02265{vertical-align:0.000000pt;}
.v7_c02265{vertical-align:0.960000pt;}
.v5_c02265{vertical-align:2.240000pt;}
.v6_c02265{vertical-align:3.520000pt;}
.ls27_c02265{letter-spacing:-0.158400pt;}
.ls2d_c02265{letter-spacing:-0.076608pt;}
.ls2a_c02265{letter-spacing:-0.038400pt;}
.ls30_c02265{letter-spacing:-0.019200pt;}
.ls26_c02265{letter-spacing:-0.017024pt;}
.ls2b_c02265{letter-spacing:-0.009600pt;}
.ls28_c02265{letter-spacing:-0.008512pt;}
.ls31_c02265{letter-spacing:-0.004256pt;}
.ls25_c02265{letter-spacing:0.000000pt;}
.ls2_c02265{letter-spacing:0.005856pt;}
.ls23_c02265{letter-spacing:0.006400pt;}
.lsf_c02265{letter-spacing:0.009600pt;}
.ls11_c02265{letter-spacing:0.011232pt;}
.ls1a_c02265{letter-spacing:0.012800pt;}
.ls24_c02265{letter-spacing:0.014400pt;}
.ls20_c02265{letter-spacing:0.017024pt;}
.ls1c_c02265{letter-spacing:0.019200pt;}
.ls10_c02265{letter-spacing:0.025536pt;}
.ls0_c02265{letter-spacing:0.025600pt;}
.ls12_c02265{letter-spacing:0.028800pt;}
.ls9_c02265{letter-spacing:0.033600pt;}
.lsd_c02265{letter-spacing:0.038304pt;}
.ls6_c02265{letter-spacing:0.038400pt;}
.ls8_c02265{letter-spacing:0.043200pt;}
.ls18_c02265{letter-spacing:0.046816pt;}
.ls7_c02265{letter-spacing:0.048000pt;}
.ls1_c02265{letter-spacing:0.058560pt;}
.lsb_c02265{letter-spacing:0.059584pt;}
.ls5_c02265{letter-spacing:0.062400pt;}
.ls3_c02265{letter-spacing:0.068096pt;}
.ls21_c02265{letter-spacing:0.072352pt;}
.lsa_c02265{letter-spacing:0.076608pt;}
.ls4_c02265{letter-spacing:0.085120pt;}
.ls15_c02265{letter-spacing:0.097888pt;}
.lsc_c02265{letter-spacing:0.102144pt;}
.lse_c02265{letter-spacing:0.106400pt;}
.ls1e_c02265{letter-spacing:0.110656pt;}
.ls1f_c02265{letter-spacing:0.119168pt;}
.ls19_c02265{letter-spacing:0.123424pt;}
.ls29_c02265{letter-spacing:0.134400pt;}
.ls13_c02265{letter-spacing:0.140544pt;}
.ls2c_c02265{letter-spacing:0.148960pt;}
.ls22_c02265{letter-spacing:0.161728pt;}
.ls17_c02265{letter-spacing:0.183008pt;}
.ls1b_c02265{letter-spacing:100.160000pt;}
.ls14_c02265{letter-spacing:102.080000pt;}
.ls2f_c02265{letter-spacing:128.160000pt;}
.ls2e_c02265{letter-spacing:130.080000pt;}
.ls1d_c02265{letter-spacing:140.400000pt;}
.ls16_c02265{letter-spacing:178.480000pt;}
.ws1_c02265{word-spacing:-14.780544pt;}
.ws0_c02265{word-spacing:-14.645856pt;}
.ws15_c02265{word-spacing:-0.263872pt;}
.ws14_c02265{word-spacing:-0.242592pt;}
.ws19_c02265{word-spacing:-0.204288pt;}
.ws1e_c02265{word-spacing:-0.200032pt;}
.ws1d_c02265{word-spacing:-0.191520pt;}
.ws10_c02265{word-spacing:-0.187264pt;}
.ws18_c02265{word-spacing:-0.183008pt;}
.ws7_c02265{word-spacing:-0.165984pt;}
.ws12_c02265{word-spacing:-0.160000pt;}
.ws1f_c02265{word-spacing:-0.153216pt;}
.ws1c_c02265{word-spacing:-0.140800pt;}
.ws17_c02265{word-spacing:-0.106400pt;}
.ws20_c02265{word-spacing:-0.097888pt;}
.ws1b_c02265{word-spacing:-0.096000pt;}
.ws13_c02265{word-spacing:-0.089856pt;}
.ws5_c02265{word-spacing:-0.076800pt;}
.ws22_c02265{word-spacing:-0.072352pt;}
.ws11_c02265{word-spacing:-0.025600pt;}
.ws1a_c02265{word-spacing:-0.012800pt;}
.ws23_c02265{word-spacing:-0.006400pt;}
.ws4_c02265{word-spacing:0.000000pt;}
.ws21_c02265{word-spacing:0.019200pt;}
.ws6_c02265{word-spacing:0.023424pt;}
.ws8_c02265{word-spacing:0.096000pt;}
.ws9_c02265{word-spacing:0.110400pt;}
.wsa_c02265{word-spacing:0.115200pt;}
.wsd_c02265{word-spacing:1.098048pt;}
.wsf_c02265{word-spacing:1.132096pt;}
.wse_c02265{word-spacing:1.161888pt;}
.wsb_c02265{word-spacing:5.281696pt;}
.wsc_c02265{word-spacing:5.298720pt;}
.ws2_c02265{word-spacing:43.137280pt;}
.ws3_c02265{word-spacing:52.417280pt;}
.ws24_c02265{word-spacing:106.368000pt;}
.ws25_c02265{word-spacing:115.344000pt;}
.ws16_c02265{word-spacing:139.320000pt;}
._31_c02265{margin-left:-48.444960pt;}
._0_c02265{margin-left:-1.007232pt;}
._1c_c02265{width:37.885376pt;}
._13_c02265{width:45.277824pt;}
._17_c02265{width:55.158400pt;}
._23_c02265{width:56.528000pt;}
._2c_c02265{width:58.165632pt;}
._10_c02265{width:65.277088pt;}
._19_c02265{width:67.040000pt;}
._11_c02265{width:68.720160pt;}
._20_c02265{width:71.773600pt;}
._32_c02265{width:73.557824pt;}
._1a_c02265{width:74.720000pt;}
._b_c02265{width:76.368000pt;}
._a_c02265{width:78.419200pt;}
._30_c02265{width:80.067200pt;}
._16_c02265{width:82.370176pt;}
._12_c02265{width:88.902400pt;}
._e_c02265{width:91.391168pt;}
._14_c02265{width:92.870560pt;}
._1e_c02265{width:94.597216pt;}
._2f_c02265{width:95.568000pt;}
._1b_c02265{width:102.514912pt;}
._28_c02265{width:105.728000pt;}
._1f_c02265{width:106.875712pt;}
._c_c02265{width:108.640000pt;}
._21_c02265{width:110.073728pt;}
._d_c02265{width:113.760000pt;}
._18_c02265{width:115.065440pt;}
._15_c02265{width:118.147200pt;}
._29_c02265{width:121.066816pt;}
._2d_c02265{width:122.176608pt;}
._27_c02265{width:123.104448pt;}
._24_c02265{width:124.643328pt;}
._26_c02265{width:128.160000pt;}
._1d_c02265{width:130.080000pt;}
._f_c02265{width:131.089248pt;}
._22_c02265{width:132.092576pt;}
._2a_c02265{width:133.145344pt;}
._25_c02265{width:135.020960pt;}
._2b_c02265{width:140.201792pt;}
._2e_c02265{width:152.001920pt;}
._9_c02265{width:180.476800pt;}
._4_c02265{width:192.160000pt;}
._2_c02265{width:252.000000pt;}
._5_c02265{width:275.648000pt;}
._3_c02265{width:309.060800pt;}
._7_c02265{width:314.518400pt;}
._6_c02265{width:373.270400pt;}
._1_c02265{width:383.545280pt;}
._8_c02265{width:538.040000pt;}
.fs5_c02265{font-size:10.560000pt;}
.fs4_c02265{font-size:37.440000pt;}
.fs2_c02265{font-size:42.560000pt;}
.fs3_c02265{font-size:48.000000pt;}
.fs1_c02265{font-size:58.560000pt;}
.fs0_c02265{font-size:64.000000pt;}
.y0_c02265{bottom:0.000000pt;}
.y4_c02265{bottom:50.987067pt;}
.y3_c02265{bottom:69.387067pt;}
.y51_c02265{bottom:108.347067pt;}
.y50_c02265{bottom:122.107200pt;}
.y4f_c02265{bottom:122.507067pt;}
.y4e_c02265{bottom:138.987067pt;}
.y4d_c02265{bottom:139.307067pt;}
.y4c_c02265{bottom:156.187200pt;}
.y4b_c02265{bottom:172.747067pt;}
.y4a_c02265{bottom:173.067200pt;}
.y49_c02265{bottom:192.027200pt;}
.y48_c02265{bottom:208.347067pt;}
.y47_c02265{bottom:223.787067pt;}
.y46_c02265{bottom:242.267067pt;}
.y45_c02265{bottom:250.027067pt;}
.y44_c02265{bottom:250.427067pt;}
.y42_c02265{bottom:267.227067pt;}
.y41_c02265{bottom:267.867067pt;}
.y43_c02265{bottom:267.947067pt;}
.y40_c02265{bottom:284.107067pt;}
.y3f_c02265{bottom:299.547067pt;}
.y3e_c02265{bottom:318.027067pt;}
.y3d_c02265{bottom:325.867067pt;}
.y3c_c02265{bottom:326.187200pt;}
.y3b_c02265{bottom:343.067200pt;}
.y3a_c02265{bottom:359.627067pt;}
.y39_c02265{bottom:359.947067pt;}
.y38_c02265{bottom:378.907200pt;}
.y37_c02265{bottom:395.147200pt;}
.y36_c02265{bottom:410.587067pt;}
.y35_c02265{bottom:429.067200pt;}
.y34_c02265{bottom:436.907200pt;}
.y33_c02265{bottom:437.226667pt;}
.y32_c02265{bottom:453.787067pt;}
.y31_c02265{bottom:454.106667pt;}
.y30_c02265{bottom:470.667067pt;}
.y2f_c02265{bottom:470.986667pt;}
.y2e_c02265{bottom:487.547067pt;}
.y2d_c02265{bottom:487.866667pt;}
.y2c_c02265{bottom:504.347067pt;}
.y2b_c02265{bottom:504.747067pt;}
.y2a_c02265{bottom:521.547067pt;}
.y29_c02265{bottom:538.107067pt;}
.y28_c02265{bottom:538.427067pt;}
.y27_c02265{bottom:557.387067pt;}
.y26_c02265{bottom:573.707067pt;}
.y25_c02265{bottom:589.147067pt;}
.y24_c02265{bottom:607.627067pt;}
.y23_c02265{bottom:615.467067pt;}
.y22_c02265{bottom:615.787067pt;}
.y21_c02265{bottom:633.227067pt;}
.y20_c02265{bottom:649.467067pt;}
.y1f_c02265{bottom:664.907067pt;}
.y1e_c02265{bottom:683.387067pt;}
.y1d_c02265{bottom:691.227067pt;}
.y1c_c02265{bottom:691.546667pt;}
.y1b_c02265{bottom:708.107067pt;}
.y1a_c02265{bottom:708.427067pt;}
.y19_c02265{bottom:725.307067pt;}
.y18_c02265{bottom:741.867067pt;}
.y17_c02265{bottom:742.187067pt;}
.y16_c02265{bottom:761.147200pt;}
.y15_c02265{bottom:777.387067pt;}
.y14_c02265{bottom:792.827200pt;}
.y13_c02265{bottom:810.747067pt;}
.y12_c02265{bottom:824.586667pt;}
.y11_c02265{bottom:838.347067pt;}
.y10_c02265{bottom:852.026755pt;}
.yf_c02265{bottom:864.346811pt;}
.ye_c02265{bottom:876.587067pt;}
.yd_c02265{bottom:895.387067pt;}
.yc_c02265{bottom:913.547067pt;}
.yb_c02265{bottom:931.787067pt;}
.ya_c02265{bottom:949.947067pt;}
.y9_c02265{bottom:968.187067pt;}
.y6_c02265{bottom:983.627067pt;}
.y8_c02265{bottom:984.187067pt;}
.y7_c02265{bottom:999.627067pt;}
.y5_c02265{bottom:1014.667067pt;}
.y2_c02265{bottom:1042.347067pt;}
.y1_c02265{bottom:1060.587067pt;}
.hc_c02265{height:9.379219pt;}
.h5_c02265{height:37.343906pt;}
.h4_c02265{height:37.801094pt;}
.h6_c02265{height:42.117188pt;}
.h7_c02265{height:42.632812pt;}
.h10_c02265{height:43.077187pt;}
.h11_c02265{height:51.382969pt;}
.h3_c02265{height:52.012031pt;}
.hf_c02265{height:54.251498pt;}
.h9_c02265{height:54.252031pt;}
.h12_c02265{height:54.571498pt;}
.hd_c02265{height:54.572031pt;}
.h8_c02265{height:55.532031pt;}
.ha_c02265{height:55.532565pt;}
.he_c02265{height:55.851498pt;}
.hb_c02265{height:55.852031pt;}
.h2_c02265{height:56.156250pt;}
.h1_c02265{height:56.843750pt;}
.h0_c02265{height:1122.666667pt;}
.w1_c02265{width:793.333333pt;}
.w0_c02265{width:793.626667pt;}
.x0_c02265{left:0.000000pt;}
.x1_c02265{left:113.440000pt;}
.x3_c02265{left:119.600000pt;}
.x6_c02265{left:120.560000pt;}
.x7_c02265{left:127.680000pt;}
.x8_c02265{left:146.240000pt;}
.x9_c02265{left:196.160000pt;}
.x4_c02265{left:295.200000pt;}
.x5_c02265{left:315.360000pt;}
.x2_c02265{left:384.880000pt;}
.xa_c02265{left:472.640400pt;}
.xb_c02265{left:638.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_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_c0cafb0bbe5db91560be8146.woff2')format("woff");}.ff1_c02266{font-family:ff1_c02266;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02266;src:url('chunks/assets/font_9113fd6dd7f6e2cac8720643.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;}
.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);}
.v3_c02266{vertical-align:-4.320000px;}
.v2_c02266{vertical-align:-2.880000px;}
.v1_c02266{vertical-align:-1.440000px;}
.v0_c02266{vertical-align:0.000000px;}
.v6_c02266{vertical-align:1.440000px;}
.v4_c02266{vertical-align:2.520000px;}
.v5_c02266{vertical-align:4.320000px;}
.v8_c02266{vertical-align:5.760600px;}
.v9_c02266{vertical-align:42.479400px;}
.v7_c02266{vertical-align:53.640000px;}
.ls37_c02266{letter-spacing:-0.086184px;}
.ls39_c02266{letter-spacing:-0.078156px;}
.ls3f_c02266{letter-spacing:-0.063180px;}
.ls40_c02266{letter-spacing:-0.059292px;}
.ls33_c02266{letter-spacing:-0.043200px;}
.ls3d_c02266{letter-spacing:-0.038304px;}
.ls35_c02266{letter-spacing:-0.019152px;}
.ls34_c02266{letter-spacing:-0.010800px;}
.ls3e_c02266{letter-spacing:-0.008424px;}
.ls31_c02266{letter-spacing:-0.007200px;}
.ls3b_c02266{letter-spacing:-0.006012px;}
.ls3c_c02266{letter-spacing:-0.004788px;}
.ls30_c02266{letter-spacing:0.000000px;}
.lsf_c02266{letter-spacing:0.006012px;}
.ls3a_c02266{letter-spacing:0.007200px;}
.ls2_c02266{letter-spacing:0.010800px;}
.ls5_c02266{letter-spacing:0.012636px;}
.ls1_c02266{letter-spacing:0.014400px;}
.ls2a_c02266{letter-spacing:0.019152px;}
.ls11_c02266{letter-spacing:0.019764px;}
.ls29_c02266{letter-spacing:0.027000px;}
.ls4_c02266{letter-spacing:0.028728px;}
.ls0_c02266{letter-spacing:0.028800px;}
.ls6_c02266{letter-spacing:0.032400px;}
.lsb_c02266{letter-spacing:0.037800px;}
.ls3_c02266{letter-spacing:0.043092px;}
.lsa_c02266{letter-spacing:0.043200px;}
.ls20_c02266{letter-spacing:0.046116px;}
.ls9_c02266{letter-spacing:0.052668px;}
.ls1e_c02266{letter-spacing:0.052704px;}
.ls16_c02266{letter-spacing:0.059292px;}
.ls26_c02266{letter-spacing:0.065880px;}
.ls28_c02266{letter-spacing:0.072468px;}
.ls1f_c02266{letter-spacing:0.085644px;}
.ls1a_c02266{letter-spacing:0.092232px;}
.ls21_c02266{letter-spacing:0.098820px;}
.lsd_c02266{letter-spacing:0.114912px;}
.ls19_c02266{letter-spacing:0.138348px;}
.lse_c02266{letter-spacing:0.138852px;}
.ls32_c02266{letter-spacing:0.151200px;}
.ls15_c02266{letter-spacing:0.151524px;}
.ls7_c02266{letter-spacing:0.158112px;}
.ls36_c02266{letter-spacing:0.167580px;}
.ls13_c02266{letter-spacing:0.177876px;}
.ls24_c02266{letter-spacing:0.180000px;}
.ls10_c02266{letter-spacing:0.180360px;}
.ls2f_c02266{letter-spacing:64.440000px;}
.ls2c_c02266{letter-spacing:71.280000px;}
.ls2b_c02266{letter-spacing:97.560000px;}
.ls8_c02266{letter-spacing:113.040000px;}
.ls12_c02266{letter-spacing:124.560000px;}
.ls25_c02266{letter-spacing:130.500000px;}
.ls1c_c02266{letter-spacing:131.400000px;}
.ls1d_c02266{letter-spacing:131.760000px;}
.ls38_c02266{letter-spacing:144.541800px;}
.ls14_c02266{letter-spacing:164.160000px;}
.ls23_c02266{letter-spacing:179.820000px;}
.ls18_c02266{letter-spacing:197.280000px;}
.lsc_c02266{letter-spacing:200.430000px;}
.ls17_c02266{letter-spacing:239.760000px;}
.ls1b_c02266{letter-spacing:305.640000px;}
.ls2d_c02266{letter-spacing:664.920000px;}
.ls2e_c02266{letter-spacing:771.120000px;}
.ls27_c02266{letter-spacing:919.800000px;}
.ls22_c02266{letter-spacing:1026.000000px;}
.sc__c02266{text-shadow:none;}
.sc0_c02266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02266{-webkit-text-stroke:0px transparent;}
.sc0_c02266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c02266{word-spacing:-16.647876px;}
.ws0_c02266{word-spacing:-16.628112px;}
.ws3_c02266{word-spacing:-16.621524px;}
.ws5_c02266{word-spacing:-16.608348px;}
.ws6_c02266{word-spacing:-16.562232px;}
.ws4_c02266{word-spacing:-16.529292px;}
.ws14_c02266{word-spacing:-0.352800px;}
.ws19_c02266{word-spacing:-0.229824px;}
.ws17_c02266{word-spacing:-0.205884px;}
.ws16_c02266{word-spacing:-0.119700px;}
.ws24_c02266{word-spacing:-0.115200px;}
.ws15_c02266{word-spacing:-0.101088px;}
.ws1a_c02266{word-spacing:-0.090180px;}
.ws12_c02266{word-spacing:-0.086400px;}
.ws1c_c02266{word-spacing:-0.079200px;}
.ws13_c02266{word-spacing:-0.014400px;}
.ws20_c02266{word-spacing:-0.006588px;}
.ws11_c02266{word-spacing:0.000000px;}
.ws1e_c02266{word-spacing:0.006588px;}
.ws23_c02266{word-spacing:0.019764px;}
.ws22_c02266{word-spacing:0.026352px;}
.ws21_c02266{word-spacing:0.032940px;}
.ws1d_c02266{word-spacing:0.039528px;}
.ws1f_c02266{word-spacing:0.046116px;}
.ws1b_c02266{word-spacing:0.072468px;}
.ws1_c02266{word-spacing:58.609440px;}
.wsd_c02266{word-spacing:65.506608px;}
.wsf_c02266{word-spacing:66.150000px;}
.wsa_c02266{word-spacing:79.515972px;}
.wse_c02266{word-spacing:79.518096px;}
.ws7_c02266{word-spacing:80.196372px;}
.ws9_c02266{word-spacing:98.556372px;}
.wsb_c02266{word-spacing:98.602380px;}
.wsc_c02266{word-spacing:112.635972px;}
.ws10_c02266{word-spacing:112.638096px;}
.ws8_c02266{word-spacing:113.316372px;}
.ws18_c02266{word-spacing:156.735000px;}
._17_c02266{margin-left:-1.226448px;}
._13_c02266{width:42.793632px;}
._c_c02266{width:50.937552px;}
._10_c02266{width:62.053200px;}
._26_c02266{width:63.334620px;}
._8_c02266{width:72.604440px;}
._12_c02266{width:75.420000px;}
._9_c02266{width:77.310180px;}
._e_c02266{width:83.584728px;}
._1_c02266{width:84.834000px;}
._a_c02266{width:87.278400px;}
._0_c02266{width:88.581600px;}
._25_c02266{width:90.258912px;}
._b_c02266{width:100.598400px;}
._d_c02266{width:105.699420px;}
._3_c02266{width:106.740000px;}
._14_c02266{width:111.124656px;}
._4_c02266{width:118.378944px;}
._f_c02266{width:119.664000px;}
._2_c02266{width:121.860000px;}
._5_c02266{width:123.216120px;}
._19_c02266{width:128.248704px;}
._11_c02266{width:129.607020px;}
._16_c02266{width:136.890000px;}
._15_c02266{width:144.475776px;}
._28_c02266{width:146.524248px;}
._7_c02266{width:148.307688px;}
._6_c02266{width:152.515404px;}
._30_c02266{width:179.820000px;}
._2a_c02266{width:203.352624px;}
._2e_c02266{width:228.228912px;}
._2c_c02266{width:231.404328px;}
._29_c02266{width:242.024184px;}
._27_c02266{width:253.213272px;}
._2d_c02266{width:273.917772px;}
._2b_c02266{width:349.105536px;}
._2f_c02266{width:414.291672px;}
._23_c02266{width:458.232624px;}
._20_c02266{width:483.108912px;}
._1a_c02266{width:486.284328px;}
._1d_c02266{width:492.180588px;}
._22_c02266{width:496.904184px;}
._31_c02266{width:500.726232px;}
._1c_c02266{width:522.980568px;}
._1b_c02266{width:528.797772px;}
._21_c02266{width:535.553856px;}
._24_c02266{width:552.366000px;}
._1f_c02266{width:738.637668px;}
._1e_c02266{width:755.606232px;}
._18_c02266{width:1576.567368px;}
.fc0_c02266{color:rgb(0,0,0);}
.fs3_c02266{font-size:42.120000px;}
.fs2_c02266{font-size:47.880000px;}
.fs1_c02266{font-size:54.000000px;}
.fs5_c02266{font-size:60.120000px;}
.fs4_c02266{font-size:65.880000px;}
.fs0_c02266{font-size:72.000000px;}
.y0_c02266{bottom:0.000000px;}
.y4_c02266{bottom:57.360450px;}
.y3_c02266{bottom:78.060450px;}
.y40_c02266{bottom:123.960450px;}
.y3f_c02266{bottom:144.660450px;}
.y3e_c02266{bottom:165.270450px;}
.y3d_c02266{bottom:184.170450px;}
.y3c_c02266{bottom:203.160450px;}
.y3b_c02266{bottom:222.150450px;}
.y3a_c02266{bottom:241.140450px;}
.y39_c02266{bottom:260.850450px;}
.y38_c02266{bottom:279.840450px;}
.y37_c02266{bottom:298.830450px;}
.y36_c02266{bottom:318.180450px;}
.y35_c02266{bottom:337.080450px;}
.y34_c02266{bottom:356.070450px;}
.y33_c02266{bottom:375.060450px;}
.y30_c02266{bottom:392.970450px;}
.y2f_c02266{bottom:393.420450px;}
.y32_c02266{bottom:396.210600px;}
.y31_c02266{bottom:406.830450px;}
.y2e_c02266{bottom:422.310450px;}
.y2d_c02266{bottom:445.440000px;}
.y2c_c02266{bottom:460.920450px;}
.y2b_c02266{bottom:478.200600px;}
.y2a_c02266{bottom:498.630450px;}
.y29_c02266{bottom:514.200000px;}
.y28_c02266{bottom:529.680450px;}
.y27_c02266{bottom:546.240450px;}
.y26_c02266{bottom:565.230450px;}
.y25_c02266{bottom:584.220450px;}
.y24_c02266{bottom:603.210450px;}
.y23_c02266{bottom:622.200450px;}
.y22_c02266{bottom:641.100450px;}
.y21_c02266{bottom:660.090450px;}
.y20_c02266{bottom:679.080450px;}
.y1f_c02266{bottom:698.070450px;}
.y1e_c02266{bottom:717.060450px;}
.y1d_c02266{bottom:736.050450px;}
.y1c_c02266{bottom:754.950450px;}
.y1b_c02266{bottom:773.580450px;}
.y1a_c02266{bottom:791.850450px;}
.y19_c02266{bottom:815.250900px;}
.y18_c02266{bottom:830.550450px;}
.y17_c02266{bottom:846.030900px;}
.y16_c02266{bottom:861.600450px;}
.y15_c02266{bottom:879.240450px;}
.y14_c02266{bottom:898.230450px;}
.y13_c02266{bottom:918.930450px;}
.y12_c02266{bottom:939.270450px;}
.y11_c02266{bottom:957.540600px;}
.y10_c02266{bottom:980.670000px;}
.yf_c02266{bottom:996.150450px;}
.ye_c02266{bottom:1013.430450px;}
.yd_c02266{bottom:1033.860900px;}
.yc_c02266{bottom:1049.430450px;}
.yb_c02266{bottom:1064.910450px;}
.ya_c02266{bottom:1065.360450px;}
.y9_c02266{bottom:1083.900450px;}
.y8_c02266{bottom:1084.260450px;}
.y7_c02266{bottom:1103.970450px;}
.y6_c02266{bottom:1122.240450px;}
.y5_c02266{bottom:1139.610450px;}
.y2_c02266{bottom:1172.640450px;}
.y1_c02266{bottom:1193.160450px;}
.ha_c02266{height:42.526230px;}
.hb_c02266{height:43.170893px;}
.h8_c02266{height:47.381836px;}
.h3_c02266{height:47.961914px;}
.h5_c02266{height:53.397598px;}
.h4_c02266{height:62.833535px;}
.h2_c02266{height:63.175781px;}
.h1_c02266{height:63.949219px;}
.h6_c02266{height:67.189219px;}
.h7_c02266{height:67.189819px;}
.hc_c02266{height:85.005630px;}
.h9_c02266{height:96.166230px;}
.h0_c02266{height:1263.000000px;}
.w1_c02266{width:892.500000px;}
.w0_c02266{width:892.830000px;}
.x0_c02266{left:0.000000px;}
.x1_c02266{left:127.620000px;}
.xf_c02266{left:131.130000px;}
.x3_c02266{left:135.630000px;}
.x4_c02266{left:143.910000px;}
.x5_c02266{left:165.060000px;}
.x6_c02266{left:220.770000px;}
.x7_c02266{left:257.760000px;}
.x2_c02266{left:432.990000px;}
.x8_c02266{left:501.390000px;}
.x9_c02266{left:542.880000px;}
.xa_c02266{left:552.240000px;}
.xb_c02266{left:593.910000px;}
.xc_c02266{left:602.460000px;}
.xd_c02266{left:642.150000px;}
.xe_c02266{left:690.120000px;}
@media print{
.v3_c02266{vertical-align:-3.840000pt;}
.v2_c02266{vertical-align:-2.560000pt;}
.v1_c02266{vertical-align:-1.280000pt;}
.v0_c02266{vertical-align:0.000000pt;}
.v6_c02266{vertical-align:1.280000pt;}
.v4_c02266{vertical-align:2.240000pt;}
.v5_c02266{vertical-align:3.840000pt;}
.v8_c02266{vertical-align:5.120533pt;}
.v9_c02266{vertical-align:37.759467pt;}
.v7_c02266{vertical-align:47.680000pt;}
.ls37_c02266{letter-spacing:-0.076608pt;}
.ls39_c02266{letter-spacing:-0.069472pt;}
.ls3f_c02266{letter-spacing:-0.056160pt;}
.ls40_c02266{letter-spacing:-0.052704pt;}
.ls33_c02266{letter-spacing:-0.038400pt;}
.ls3d_c02266{letter-spacing:-0.034048pt;}
.ls35_c02266{letter-spacing:-0.017024pt;}
.ls34_c02266{letter-spacing:-0.009600pt;}
.ls3e_c02266{letter-spacing:-0.007488pt;}
.ls31_c02266{letter-spacing:-0.006400pt;}
.ls3b_c02266{letter-spacing:-0.005344pt;}
.ls3c_c02266{letter-spacing:-0.004256pt;}
.ls30_c02266{letter-spacing:0.000000pt;}
.lsf_c02266{letter-spacing:0.005344pt;}
.ls3a_c02266{letter-spacing:0.006400pt;}
.ls2_c02266{letter-spacing:0.009600pt;}
.ls5_c02266{letter-spacing:0.011232pt;}
.ls1_c02266{letter-spacing:0.012800pt;}
.ls2a_c02266{letter-spacing:0.017024pt;}
.ls11_c02266{letter-spacing:0.017568pt;}
.ls29_c02266{letter-spacing:0.024000pt;}
.ls4_c02266{letter-spacing:0.025536pt;}
.ls0_c02266{letter-spacing:0.025600pt;}
.ls6_c02266{letter-spacing:0.028800pt;}
.lsb_c02266{letter-spacing:0.033600pt;}
.ls3_c02266{letter-spacing:0.038304pt;}
.lsa_c02266{letter-spacing:0.038400pt;}
.ls20_c02266{letter-spacing:0.040992pt;}
.ls9_c02266{letter-spacing:0.046816pt;}
.ls1e_c02266{letter-spacing:0.046848pt;}
.ls16_c02266{letter-spacing:0.052704pt;}
.ls26_c02266{letter-spacing:0.058560pt;}
.ls28_c02266{letter-spacing:0.064416pt;}
.ls1f_c02266{letter-spacing:0.076128pt;}
.ls1a_c02266{letter-spacing:0.081984pt;}
.ls21_c02266{letter-spacing:0.087840pt;}
.lsd_c02266{letter-spacing:0.102144pt;}
.ls19_c02266{letter-spacing:0.122976pt;}
.lse_c02266{letter-spacing:0.123424pt;}
.ls32_c02266{letter-spacing:0.134400pt;}
.ls15_c02266{letter-spacing:0.134688pt;}
.ls7_c02266{letter-spacing:0.140544pt;}
.ls36_c02266{letter-spacing:0.148960pt;}
.ls13_c02266{letter-spacing:0.158112pt;}
.ls24_c02266{letter-spacing:0.160000pt;}
.ls10_c02266{letter-spacing:0.160320pt;}
.ls2f_c02266{letter-spacing:57.280000pt;}
.ls2c_c02266{letter-spacing:63.360000pt;}
.ls2b_c02266{letter-spacing:86.720000pt;}
.ls8_c02266{letter-spacing:100.480000pt;}
.ls12_c02266{letter-spacing:110.720000pt;}
.ls25_c02266{letter-spacing:116.000000pt;}
.ls1c_c02266{letter-spacing:116.800000pt;}
.ls1d_c02266{letter-spacing:117.120000pt;}
.ls38_c02266{letter-spacing:128.481600pt;}
.ls14_c02266{letter-spacing:145.920000pt;}
.ls23_c02266{letter-spacing:159.840000pt;}
.ls18_c02266{letter-spacing:175.360000pt;}
.lsc_c02266{letter-spacing:178.160000pt;}
.ls17_c02266{letter-spacing:213.120000pt;}
.ls1b_c02266{letter-spacing:271.680000pt;}
.ls2d_c02266{letter-spacing:591.040000pt;}
.ls2e_c02266{letter-spacing:685.440000pt;}
.ls27_c02266{letter-spacing:817.600000pt;}
.ls22_c02266{letter-spacing:912.000000pt;}
.ws2_c02266{word-spacing:-14.798112pt;}
.ws0_c02266{word-spacing:-14.780544pt;}
.ws3_c02266{word-spacing:-14.774688pt;}
.ws5_c02266{word-spacing:-14.762976pt;}
.ws6_c02266{word-spacing:-14.721984pt;}
.ws4_c02266{word-spacing:-14.692704pt;}
.ws14_c02266{word-spacing:-0.313600pt;}
.ws19_c02266{word-spacing:-0.204288pt;}
.ws17_c02266{word-spacing:-0.183008pt;}
.ws16_c02266{word-spacing:-0.106400pt;}
.ws24_c02266{word-spacing:-0.102400pt;}
.ws15_c02266{word-spacing:-0.089856pt;}
.ws1a_c02266{word-spacing:-0.080160pt;}
.ws12_c02266{word-spacing:-0.076800pt;}
.ws1c_c02266{word-spacing:-0.070400pt;}
.ws13_c02266{word-spacing:-0.012800pt;}
.ws20_c02266{word-spacing:-0.005856pt;}
.ws11_c02266{word-spacing:0.000000pt;}
.ws1e_c02266{word-spacing:0.005856pt;}
.ws23_c02266{word-spacing:0.017568pt;}
.ws22_c02266{word-spacing:0.023424pt;}
.ws21_c02266{word-spacing:0.029280pt;}
.ws1d_c02266{word-spacing:0.035136pt;}
.ws1f_c02266{word-spacing:0.040992pt;}
.ws1b_c02266{word-spacing:0.064416pt;}
.ws1_c02266{word-spacing:52.097280pt;}
.wsd_c02266{word-spacing:58.228096pt;}
.wsf_c02266{word-spacing:58.800000pt;}
.wsa_c02266{word-spacing:70.680864pt;}
.wse_c02266{word-spacing:70.682752pt;}
.ws7_c02266{word-spacing:71.285664pt;}
.ws9_c02266{word-spacing:87.605664pt;}
.wsb_c02266{word-spacing:87.646560pt;}
.wsc_c02266{word-spacing:100.120864pt;}
.ws10_c02266{word-spacing:100.122752pt;}
.ws8_c02266{word-spacing:100.725664pt;}
.ws18_c02266{word-spacing:139.320000pt;}
._17_c02266{margin-left:-1.090176pt;}
._13_c02266{width:38.038784pt;}
._c_c02266{width:45.277824pt;}
._10_c02266{width:55.158400pt;}
._26_c02266{width:56.297440pt;}
._8_c02266{width:64.537280pt;}
._12_c02266{width:67.040000pt;}
._9_c02266{width:68.720160pt;}
._e_c02266{width:74.297536pt;}
._1_c02266{width:75.408000pt;}
._a_c02266{width:77.580800pt;}
._0_c02266{width:78.739200pt;}
._25_c02266{width:80.230144pt;}
._b_c02266{width:89.420800pt;}
._d_c02266{width:93.955040pt;}
._3_c02266{width:94.880000pt;}
._14_c02266{width:98.777472pt;}
._4_c02266{width:105.225728pt;}
._f_c02266{width:106.368000pt;}
._2_c02266{width:108.320000pt;}
._5_c02266{width:109.525440pt;}
._19_c02266{width:113.998848pt;}
._11_c02266{width:115.206240pt;}
._16_c02266{width:121.680000pt;}
._15_c02266{width:128.422912pt;}
._28_c02266{width:130.243776pt;}
._7_c02266{width:131.829056pt;}
._6_c02266{width:135.569248pt;}
._30_c02266{width:159.840000pt;}
._2a_c02266{width:180.757888pt;}
._2e_c02266{width:202.870144pt;}
._2c_c02266{width:205.692736pt;}
._29_c02266{width:215.132608pt;}
._27_c02266{width:225.078464pt;}
._2d_c02266{width:243.482464pt;}
._2b_c02266{width:310.316032pt;}
._2f_c02266{width:368.259264pt;}
._23_c02266{width:407.317888pt;}
._20_c02266{width:429.430144pt;}
._1a_c02266{width:432.252736pt;}
._1d_c02266{width:437.493856pt;}
._22_c02266{width:441.692608pt;}
._31_c02266{width:445.089984pt;}
._1c_c02266{width:464.871616pt;}
._1b_c02266{width:470.042464pt;}
._21_c02266{width:476.047872pt;}
._24_c02266{width:490.992000pt;}
._1f_c02266{width:656.566816pt;}
._1e_c02266{width:671.649984pt;}
._18_c02266{width:1401.393216pt;}
.fs3_c02266{font-size:37.440000pt;}
.fs2_c02266{font-size:42.560000pt;}
.fs1_c02266{font-size:48.000000pt;}
.fs5_c02266{font-size:53.440000pt;}
.fs4_c02266{font-size:58.560000pt;}
.fs0_c02266{font-size:64.000000pt;}
.y0_c02266{bottom:0.000000pt;}
.y4_c02266{bottom:50.987067pt;}
.y3_c02266{bottom:69.387067pt;}
.y40_c02266{bottom:110.187067pt;}
.y3f_c02266{bottom:128.587067pt;}
.y3e_c02266{bottom:146.907067pt;}
.y3d_c02266{bottom:163.707067pt;}
.y3c_c02266{bottom:180.587067pt;}
.y3b_c02266{bottom:197.467067pt;}
.y3a_c02266{bottom:214.347067pt;}
.y39_c02266{bottom:231.867067pt;}
.y38_c02266{bottom:248.747067pt;}
.y37_c02266{bottom:265.627067pt;}
.y36_c02266{bottom:282.827067pt;}
.y35_c02266{bottom:299.627067pt;}
.y34_c02266{bottom:316.507067pt;}
.y33_c02266{bottom:333.387067pt;}
.y30_c02266{bottom:349.307067pt;}
.y2f_c02266{bottom:349.707067pt;}
.y32_c02266{bottom:352.187200pt;}
.y31_c02266{bottom:361.627067pt;}
.y2e_c02266{bottom:375.387067pt;}
.y2d_c02266{bottom:395.946667pt;}
.y2c_c02266{bottom:409.707067pt;}
.y2b_c02266{bottom:425.067200pt;}
.y2a_c02266{bottom:443.227067pt;}
.y29_c02266{bottom:457.066667pt;}
.y28_c02266{bottom:470.827067pt;}
.y27_c02266{bottom:485.547067pt;}
.y26_c02266{bottom:502.427067pt;}
.y25_c02266{bottom:519.307067pt;}
.y24_c02266{bottom:536.187067pt;}
.y23_c02266{bottom:553.067067pt;}
.y22_c02266{bottom:569.867067pt;}
.y21_c02266{bottom:586.747067pt;}
.y20_c02266{bottom:603.627067pt;}
.y1f_c02266{bottom:620.507067pt;}
.y1e_c02266{bottom:637.387067pt;}
.y1d_c02266{bottom:654.267067pt;}
.y1c_c02266{bottom:671.067067pt;}
.y1b_c02266{bottom:687.627067pt;}
.y1a_c02266{bottom:703.867067pt;}
.y19_c02266{bottom:724.667467pt;}
.y18_c02266{bottom:738.267067pt;}
.y17_c02266{bottom:752.027467pt;}
.y16_c02266{bottom:765.867067pt;}
.y15_c02266{bottom:781.547067pt;}
.y14_c02266{bottom:798.427067pt;}
.y13_c02266{bottom:816.827067pt;}
.y12_c02266{bottom:834.907067pt;}
.y11_c02266{bottom:851.147200pt;}
.y10_c02266{bottom:871.706667pt;}
.yf_c02266{bottom:885.467067pt;}
.ye_c02266{bottom:900.827067pt;}
.yd_c02266{bottom:918.987467pt;}
.yc_c02266{bottom:932.827067pt;}
.yb_c02266{bottom:946.587067pt;}
.ya_c02266{bottom:946.987067pt;}
.y9_c02266{bottom:963.467067pt;}
.y8_c02266{bottom:963.787067pt;}
.y7_c02266{bottom:981.307067pt;}
.y6_c02266{bottom:997.547067pt;}
.y5_c02266{bottom:1012.987067pt;}
.y2_c02266{bottom:1042.347067pt;}
.y1_c02266{bottom:1060.587067pt;}
.ha_c02266{height:37.801094pt;}
.hb_c02266{height:38.374127pt;}
.h8_c02266{height:42.117188pt;}
.h3_c02266{height:42.632812pt;}
.h5_c02266{height:47.464531pt;}
.h4_c02266{height:55.852031pt;}
.h2_c02266{height:56.156250pt;}
.h1_c02266{height:56.843750pt;}
.h6_c02266{height:59.723750pt;}
.h7_c02266{height:59.724283pt;}
.hc_c02266{height:75.560560pt;}
.h9_c02266{height:85.481094pt;}
.h0_c02266{height:1122.666667pt;}
.w1_c02266{width:793.333333pt;}
.w0_c02266{width:793.626667pt;}
.x0_c02266{left:0.000000pt;}
.x1_c02266{left:113.440000pt;}
.xf_c02266{left:116.560000pt;}
.x3_c02266{left:120.560000pt;}
.x4_c02266{left:127.920000pt;}
.x5_c02266{left:146.720000pt;}
.x6_c02266{left:196.240000pt;}
.x7_c02266{left:229.120000pt;}
.x2_c02266{left:384.880000pt;}
.x8_c02266{left:445.680000pt;}
.x9_c02266{left:482.560000pt;}
.xa_c02266{left:490.880000pt;}
.xb_c02266{left:527.920000pt;}
.xc_c02266{left:535.520000pt;}
.xd_c02266{left:570.800000pt;}
.xe_c02266{left:613.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_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_7662414521902be9ebafc3bd.woff2')format("woff");}.ff1_c02267{font-family:ff1_c02267;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02267;src:url('chunks/assets/font_e2ec05f51ccbb3599d87341c.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;}
.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);}
.v4_c02267{vertical-align:-22.320000px;}
.v3_c02267{vertical-align:-16.920000px;}
.v5_c02267{vertical-align:-11.880000px;}
.v2_c02267{vertical-align:-5.040000px;}
.v0_c02267{vertical-align:0.000000px;}
.v1_c02267{vertical-align:1.440000px;}
.ls2d_c02267{letter-spacing:-0.181116px;}
.ls2c_c02267{letter-spacing:-0.180360px;}
.ls2b_c02267{letter-spacing:-0.176904px;}
.ls29_c02267{letter-spacing:-0.032940px;}
.ls26_c02267{letter-spacing:-0.014400px;}
.ls28_c02267{letter-spacing:-0.013176px;}
.ls27_c02267{letter-spacing:-0.007200px;}
.ls25_c02267{letter-spacing:0.000000px;}
.ls1_c02267{letter-spacing:0.007200px;}
.ls20_c02267{letter-spacing:0.014400px;}
.ls16_c02267{letter-spacing:0.019764px;}
.ls1e_c02267{letter-spacing:0.026352px;}
.ls0_c02267{letter-spacing:0.028800px;}
.ls1c_c02267{letter-spacing:0.032940px;}
.ls2_c02267{letter-spacing:0.039528px;}
.lsd_c02267{letter-spacing:0.046116px;}
.ls7_c02267{letter-spacing:0.052704px;}
.ls13_c02267{letter-spacing:0.059292px;}
.lsb_c02267{letter-spacing:0.065880px;}
.lsc_c02267{letter-spacing:0.072468px;}
.ls10_c02267{letter-spacing:0.079056px;}
.ls24_c02267{letter-spacing:0.085644px;}
.ls11_c02267{letter-spacing:0.092232px;}
.ls5_c02267{letter-spacing:0.098820px;}
.ls23_c02267{letter-spacing:0.111996px;}
.ls9_c02267{letter-spacing:0.131760px;}
.ls2a_c02267{letter-spacing:0.177876px;}
.ls1a_c02267{letter-spacing:0.178164px;}
.ls18_c02267{letter-spacing:0.180000px;}
.ls22_c02267{letter-spacing:0.181944px;}
.ls15_c02267{letter-spacing:34.065360px;}
.ls1b_c02267{letter-spacing:34.560000px;}
.ls19_c02267{letter-spacing:36.360000px;}
.ls1d_c02267{letter-spacing:38.160000px;}
.ls3_c02267{letter-spacing:64.080000px;}
.ls8_c02267{letter-spacing:99.720000px;}
.ls4_c02267{letter-spacing:113.760000px;}
.ls6_c02267{letter-spacing:128.520000px;}
.ls1f_c02267{letter-spacing:198.720000px;}
.ls17_c02267{letter-spacing:230.040000px;}
.lsa_c02267{letter-spacing:444.960000px;}
.ls14_c02267{letter-spacing:1378.440000px;}
.ls21_c02267{letter-spacing:1463.760000px;}
.lse_c02267{letter-spacing:1619.999400px;}
.lsf_c02267{letter-spacing:1676.879400px;}
.ls12_c02267{letter-spacing:2252.520000px;}
.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;}
}
.ws4_c02267{word-spacing:-16.601760px;}
.ws1_c02267{word-spacing:-16.568820px;}
.ws5_c02267{word-spacing:-16.562232px;}
.ws6_c02267{word-spacing:-16.529292px;}
.ws0_c02267{word-spacing:-16.509528px;}
.ws3_c02267{word-spacing:-16.437060px;}
.ws12_c02267{word-spacing:-0.115200px;}
.ws18_c02267{word-spacing:-0.093600px;}
.ws8_c02267{word-spacing:-0.086400px;}
.ws17_c02267{word-spacing:-0.014400px;}
.wsa_c02267{word-spacing:-0.007200px;}
.ws7_c02267{word-spacing:0.000000px;}
.wsb_c02267{word-spacing:0.007200px;}
.ws11_c02267{word-spacing:0.013176px;}
.ws9_c02267{word-spacing:0.014400px;}
.wsf_c02267{word-spacing:0.019764px;}
.wse_c02267{word-spacing:0.026352px;}
.wsc_c02267{word-spacing:0.039528px;}
.ws10_c02267{word-spacing:0.046116px;}
.ws15_c02267{word-spacing:0.059292px;}
.ws16_c02267{word-spacing:0.065880px;}
.ws14_c02267{word-spacing:0.072468px;}
.ws26_c02267{word-spacing:2.174040px;}
.ws27_c02267{word-spacing:2.187216px;}
.ws21_c02267{word-spacing:4.005504px;}
.ws20_c02267{word-spacing:4.341492px;}
.ws1f_c02267{word-spacing:4.703832px;}
.ws1c_c02267{word-spacing:7.536672px;}
.ws1d_c02267{word-spacing:7.549848px;}
.ws23_c02267{word-spacing:7.648668px;}
.ws1e_c02267{word-spacing:8.709336px;}
.ws22_c02267{word-spacing:17.286912px;}
.ws29_c02267{word-spacing:29.573532px;}
.ws1b_c02267{word-spacing:33.150816px;}
.ws28_c02267{word-spacing:34.982280px;}
.ws25_c02267{word-spacing:43.988076px;}
.ws13_c02267{word-spacing:44.458200px;}
.ws1a_c02267{word-spacing:48.689172px;}
.ws24_c02267{word-spacing:51.207660px;}
.ws19_c02267{word-spacing:54.810756px;}
.ws2_c02267{word-spacing:96.810048px;}
.wsd_c02267{word-spacing:236.160000px;}
._4_c02267{margin-left:-28.800000px;}
._15_c02267{margin-left:-12.602016px;}
._16_c02267{margin-left:-2.518488px;}
._9_c02267{margin-left:-1.139724px;}
._13_c02267{width:1.093608px;}
._1_c02267{width:35.695440px;}
._e_c02267{width:39.870720px;}
._f_c02267{width:40.950720px;}
._10_c02267{width:55.174464px;}
._14_c02267{width:60.214464px;}
._d_c02267{width:73.850472px;}
._0_c02267{width:133.131852px;}
._3_c02267{width:261.720000px;}
._11_c02267{width:454.152780px;}
._2_c02267{width:565.920000px;}
._b_c02267{width:1018.510896px;}
._12_c02267{width:1098.281304px;}
._8_c02267{width:1143.623604px;}
._5_c02267{width:1208.258472px;}
._6_c02267{width:1268.413500px;}
._7_c02267{width:1300.833048px;}
._c_c02267{width:1314.179892px;}
._a_c02267{width:1366.548348px;}
.fc0_c02267{color:rgb(0,0,0);}
.fs2_c02267{font-size:42.120000px;}
.fs5_c02267{font-size:47.880000px;}
.fs4_c02267{font-size:54.000000px;}
.fs3_c02267{font-size:60.120000px;}
.fs1_c02267{font-size:65.880000px;}
.fs0_c02267{font-size:72.000000px;}
.y0_c02267{bottom:0.000000px;}
.y4_c02267{bottom:57.360450px;}
.y3_c02267{bottom:78.060450px;}
.y40_c02267{bottom:111.810450px;}
.y3f_c02267{bottom:126.480780px;}
.y42_c02267{bottom:145.380690px;}
.y3e_c02267{bottom:145.470690px;}
.y41_c02267{bottom:164.370600px;}
.y3d_c02267{bottom:170.130450px;}
.y3a_c02267{bottom:183.270387px;}
.y39_c02267{bottom:197.130450px;}
.y38_c02267{bottom:211.710630px;}
.y3c_c02267{bottom:230.610540px;}
.y37_c02267{bottom:230.700540px;}
.y3b_c02267{bottom:249.600450px;}
.y36_c02267{bottom:255.360450px;}
.y33_c02267{bottom:268.590162px;}
.y32_c02267{bottom:282.360450px;}
.y31_c02267{bottom:297.032250px;}
.y30_c02267{bottom:316.022160px;}
.y2f_c02267{bottom:334.921485px;}
.y2e_c02267{bottom:353.911395px;}
.y2d_c02267{bottom:372.901305px;}
.y2c_c02267{bottom:391.891215px;}
.y35_c02267{bottom:410.791125px;}
.y2b_c02267{bottom:410.881125px;}
.y34_c02267{bottom:429.690450px;}
.y2a_c02267{bottom:435.450600px;}
.y29_c02267{bottom:455.070450px;}
.y28_c02267{bottom:469.470450px;}
.y27_c02267{bottom:490.890450px;}
.y26_c02267{bottom:511.590450px;}
.y25_c02267{bottom:532.290450px;}
.y23_c02267{bottom:553.530540px;}
.y24_c02267{bottom:572.429865px;}
.y22_c02267{bottom:578.190450px;}
.y20_c02267{bottom:592.230540px;}
.y21_c02267{bottom:611.129865px;}
.y1f_c02267{bottom:616.890450px;}
.y1e_c02267{bottom:636.600450px;}
.y1d_c02267{bottom:656.310450px;}
.y1c_c02267{bottom:676.110450px;}
.y1b_c02267{bottom:695.820450px;}
.y1a_c02267{bottom:715.350450px;}
.y19_c02267{bottom:729.750450px;}
.y18_c02267{bottom:751.260450px;}
.y17_c02267{bottom:771.960450px;}
.y16_c02267{bottom:793.110600px;}
.y15_c02267{bottom:814.530450px;}
.y14_c02267{bottom:834.240450px;}
.y13_c02267{bottom:853.950450px;}
.y12_c02267{bottom:873.660450px;}
.y11_c02267{bottom:893.460450px;}
.y10_c02267{bottom:913.170450px;}
.yf_c02267{bottom:932.880450px;}
.ye_c02267{bottom:952.590450px;}
.yd_c02267{bottom:972.300450px;}
.yc_c02267{bottom:992.280450px;}
.yb_c02267{bottom:1013.610450px;}
.ya_c02267{bottom:1034.940450px;}
.y9_c02267{bottom:1054.920450px;}
.y8_c02267{bottom:1075.620450px;}
.y7_c02267{bottom:1097.310450px;}
.y6_c02267{bottom:1118.010450px;}
.y5_c02267{bottom:1139.250450px;}
.y2_c02267{bottom:1172.640450px;}
.y1_c02267{bottom:1193.160450px;}
.h7_c02267{height:36.957832px;}
.h6_c02267{height:40.909219px;}
.h5_c02267{height:41.629219px;}
.hb_c02267{height:42.011895px;}
.h8_c02267{height:57.805840px;}
.h4_c02267{height:58.513535px;}
.ha_c02267{height:63.168581px;}
.hc_c02267{height:63.173681px;}
.hf_c02267{height:63.174461px;}
.hd_c02267{height:63.175661px;}
.h2_c02267{height:63.175781px;}
.he_c02267{height:63.948859px;}
.h1_c02267{height:63.949219px;}
.h9_c02267{height:63.951559px;}
.h3_c02267{height:64.615781px;}
.h0_c02267{height:1263.000000px;}
.w1_c02267{width:892.500000px;}
.w0_c02267{width:892.830000px;}
.x0_c02267{left:0.000000px;}
.x1_c02267{left:127.620000px;}
.x3_c02267{left:135.630000px;}
.x6_c02267{left:137.520000px;}
.x4_c02267{left:263.430000px;}
.x8_c02267{left:273.870000px;}
.x5_c02267{left:311.220000px;}
.x7_c02267{left:335.160000px;}
.x2_c02267{left:432.990000px;}
.x9_c02267{left:699.120459px;}
.xa_c02267{left:720.990000px;}
.xb_c02267{left:722.790171px;}
@media print{
.v4_c02267{vertical-align:-19.840000pt;}
.v3_c02267{vertical-align:-15.040000pt;}
.v5_c02267{vertical-align:-10.560000pt;}
.v2_c02267{vertical-align:-4.480000pt;}
.v0_c02267{vertical-align:0.000000pt;}
.v1_c02267{vertical-align:1.280000pt;}
.ls2d_c02267{letter-spacing:-0.160992pt;}
.ls2c_c02267{letter-spacing:-0.160320pt;}
.ls2b_c02267{letter-spacing:-0.157248pt;}
.ls29_c02267{letter-spacing:-0.029280pt;}
.ls26_c02267{letter-spacing:-0.012800pt;}
.ls28_c02267{letter-spacing:-0.011712pt;}
.ls27_c02267{letter-spacing:-0.006400pt;}
.ls25_c02267{letter-spacing:0.000000pt;}
.ls1_c02267{letter-spacing:0.006400pt;}
.ls20_c02267{letter-spacing:0.012800pt;}
.ls16_c02267{letter-spacing:0.017568pt;}
.ls1e_c02267{letter-spacing:0.023424pt;}
.ls0_c02267{letter-spacing:0.025600pt;}
.ls1c_c02267{letter-spacing:0.029280pt;}
.ls2_c02267{letter-spacing:0.035136pt;}
.lsd_c02267{letter-spacing:0.040992pt;}
.ls7_c02267{letter-spacing:0.046848pt;}
.ls13_c02267{letter-spacing:0.052704pt;}
.lsb_c02267{letter-spacing:0.058560pt;}
.lsc_c02267{letter-spacing:0.064416pt;}
.ls10_c02267{letter-spacing:0.070272pt;}
.ls24_c02267{letter-spacing:0.076128pt;}
.ls11_c02267{letter-spacing:0.081984pt;}
.ls5_c02267{letter-spacing:0.087840pt;}
.ls23_c02267{letter-spacing:0.099552pt;}
.ls9_c02267{letter-spacing:0.117120pt;}
.ls2a_c02267{letter-spacing:0.158112pt;}
.ls1a_c02267{letter-spacing:0.158368pt;}
.ls18_c02267{letter-spacing:0.160000pt;}
.ls22_c02267{letter-spacing:0.161728pt;}
.ls15_c02267{letter-spacing:30.280320pt;}
.ls1b_c02267{letter-spacing:30.720000pt;}
.ls19_c02267{letter-spacing:32.320000pt;}
.ls1d_c02267{letter-spacing:33.920000pt;}
.ls3_c02267{letter-spacing:56.960000pt;}
.ls8_c02267{letter-spacing:88.640000pt;}
.ls4_c02267{letter-spacing:101.120000pt;}
.ls6_c02267{letter-spacing:114.240000pt;}
.ls1f_c02267{letter-spacing:176.640000pt;}
.ls17_c02267{letter-spacing:204.480000pt;}
.lsa_c02267{letter-spacing:395.520000pt;}
.ls14_c02267{letter-spacing:1225.280000pt;}
.ls21_c02267{letter-spacing:1301.120000pt;}
.lse_c02267{letter-spacing:1439.999467pt;}
.lsf_c02267{letter-spacing:1490.559467pt;}
.ls12_c02267{letter-spacing:2002.240000pt;}
.ws4_c02267{word-spacing:-14.757120pt;}
.ws1_c02267{word-spacing:-14.727840pt;}
.ws5_c02267{word-spacing:-14.721984pt;}
.ws6_c02267{word-spacing:-14.692704pt;}
.ws0_c02267{word-spacing:-14.675136pt;}
.ws3_c02267{word-spacing:-14.610720pt;}
.ws12_c02267{word-spacing:-0.102400pt;}
.ws18_c02267{word-spacing:-0.083200pt;}
.ws8_c02267{word-spacing:-0.076800pt;}
.ws17_c02267{word-spacing:-0.012800pt;}
.wsa_c02267{word-spacing:-0.006400pt;}
.ws7_c02267{word-spacing:0.000000pt;}
.wsb_c02267{word-spacing:0.006400pt;}
.ws11_c02267{word-spacing:0.011712pt;}
.ws9_c02267{word-spacing:0.012800pt;}
.wsf_c02267{word-spacing:0.017568pt;}
.wse_c02267{word-spacing:0.023424pt;}
.wsc_c02267{word-spacing:0.035136pt;}
.ws10_c02267{word-spacing:0.040992pt;}
.ws15_c02267{word-spacing:0.052704pt;}
.ws16_c02267{word-spacing:0.058560pt;}
.ws14_c02267{word-spacing:0.064416pt;}
.ws26_c02267{word-spacing:1.932480pt;}
.ws27_c02267{word-spacing:1.944192pt;}
.ws21_c02267{word-spacing:3.560448pt;}
.ws20_c02267{word-spacing:3.859104pt;}
.ws1f_c02267{word-spacing:4.181184pt;}
.ws1c_c02267{word-spacing:6.699264pt;}
.ws1d_c02267{word-spacing:6.710976pt;}
.ws23_c02267{word-spacing:6.798816pt;}
.ws1e_c02267{word-spacing:7.741632pt;}
.ws22_c02267{word-spacing:15.366144pt;}
.ws29_c02267{word-spacing:26.287584pt;}
.ws1b_c02267{word-spacing:29.467392pt;}
.ws28_c02267{word-spacing:31.095360pt;}
.ws25_c02267{word-spacing:39.100512pt;}
.ws13_c02267{word-spacing:39.518400pt;}
.ws1a_c02267{word-spacing:43.279264pt;}
.ws24_c02267{word-spacing:45.517920pt;}
.ws19_c02267{word-spacing:48.720672pt;}
.ws2_c02267{word-spacing:86.053376pt;}
.wsd_c02267{word-spacing:209.920000pt;}
._4_c02267{margin-left:-25.600000pt;}
._15_c02267{margin-left:-11.201792pt;}
._16_c02267{margin-left:-2.238656pt;}
._9_c02267{margin-left:-1.013088pt;}
._13_c02267{width:0.972096pt;}
._1_c02267{width:31.729280pt;}
._e_c02267{width:35.440640pt;}
._f_c02267{width:36.400640pt;}
._10_c02267{width:49.043968pt;}
._14_c02267{width:53.523968pt;}
._d_c02267{width:65.644864pt;}
._0_c02267{width:118.339424pt;}
._3_c02267{width:232.640000pt;}
._11_c02267{width:403.691360pt;}
._2_c02267{width:503.040000pt;}
._b_c02267{width:905.343019pt;}
._12_c02267{width:976.250048pt;}
._8_c02267{width:1016.554315pt;}
._5_c02267{width:1074.007531pt;}
._6_c02267{width:1127.478667pt;}
._7_c02267{width:1156.296043pt;}
._c_c02267{width:1168.159904pt;}
._a_c02267{width:1214.709643pt;}
.fs2_c02267{font-size:37.440000pt;}
.fs5_c02267{font-size:42.560000pt;}
.fs4_c02267{font-size:48.000000pt;}
.fs3_c02267{font-size:53.440000pt;}
.fs1_c02267{font-size:58.560000pt;}
.fs0_c02267{font-size:64.000000pt;}
.y0_c02267{bottom:0.000000pt;}
.y4_c02267{bottom:50.987067pt;}
.y3_c02267{bottom:69.387067pt;}
.y40_c02267{bottom:99.387067pt;}
.y3f_c02267{bottom:112.427360pt;}
.y42_c02267{bottom:129.227280pt;}
.y3e_c02267{bottom:129.307280pt;}
.y41_c02267{bottom:146.107200pt;}
.y3d_c02267{bottom:151.227067pt;}
.y3a_c02267{bottom:162.907011pt;}
.y39_c02267{bottom:175.227067pt;}
.y38_c02267{bottom:188.187227pt;}
.y3c_c02267{bottom:204.987147pt;}
.y37_c02267{bottom:205.067147pt;}
.y3b_c02267{bottom:221.867067pt;}
.y36_c02267{bottom:226.987067pt;}
.y33_c02267{bottom:238.746811pt;}
.y32_c02267{bottom:250.987067pt;}
.y31_c02267{bottom:264.028667pt;}
.y30_c02267{bottom:280.908587pt;}
.y2f_c02267{bottom:297.707987pt;}
.y2e_c02267{bottom:314.587907pt;}
.y2d_c02267{bottom:331.467827pt;}
.y2c_c02267{bottom:348.347747pt;}
.y35_c02267{bottom:365.147667pt;}
.y2b_c02267{bottom:365.227667pt;}
.y34_c02267{bottom:381.947067pt;}
.y2a_c02267{bottom:387.067200pt;}
.y29_c02267{bottom:404.507067pt;}
.y28_c02267{bottom:417.307067pt;}
.y27_c02267{bottom:436.347067pt;}
.y26_c02267{bottom:454.747067pt;}
.y25_c02267{bottom:473.147067pt;}
.y23_c02267{bottom:492.027147pt;}
.y24_c02267{bottom:508.826547pt;}
.y22_c02267{bottom:513.947067pt;}
.y20_c02267{bottom:526.427147pt;}
.y21_c02267{bottom:543.226547pt;}
.y1f_c02267{bottom:548.347067pt;}
.y1e_c02267{bottom:565.867067pt;}
.y1d_c02267{bottom:583.387067pt;}
.y1c_c02267{bottom:600.987067pt;}
.y1b_c02267{bottom:618.507067pt;}
.y1a_c02267{bottom:635.867067pt;}
.y19_c02267{bottom:648.667067pt;}
.y18_c02267{bottom:667.787067pt;}
.y17_c02267{bottom:686.187067pt;}
.y16_c02267{bottom:704.987200pt;}
.y15_c02267{bottom:724.027067pt;}
.y14_c02267{bottom:741.547067pt;}
.y13_c02267{bottom:759.067067pt;}
.y12_c02267{bottom:776.587067pt;}
.y11_c02267{bottom:794.187067pt;}
.y10_c02267{bottom:811.707067pt;}
.yf_c02267{bottom:829.227067pt;}
.ye_c02267{bottom:846.747067pt;}
.yd_c02267{bottom:864.267067pt;}
.yc_c02267{bottom:882.027067pt;}
.yb_c02267{bottom:900.987067pt;}
.ya_c02267{bottom:919.947067pt;}
.y9_c02267{bottom:937.707067pt;}
.y8_c02267{bottom:956.107067pt;}
.y7_c02267{bottom:975.387067pt;}
.y6_c02267{bottom:993.787067pt;}
.y5_c02267{bottom:1012.667067pt;}
.y2_c02267{bottom:1042.347067pt;}
.y1_c02267{bottom:1060.587067pt;}
.h7_c02267{height:32.851406pt;}
.h6_c02267{height:36.363750pt;}
.h5_c02267{height:37.003750pt;}
.hb_c02267{height:37.343906pt;}
.h8_c02267{height:51.382969pt;}
.h4_c02267{height:52.012031pt;}
.ha_c02267{height:56.149850pt;}
.hc_c02267{height:56.154383pt;}
.hf_c02267{height:56.155077pt;}
.hd_c02267{height:56.156143pt;}
.h2_c02267{height:56.156250pt;}
.he_c02267{height:56.843430pt;}
.h1_c02267{height:56.843750pt;}
.h9_c02267{height:56.845830pt;}
.h3_c02267{height:57.436250pt;}
.h0_c02267{height:1122.666667pt;}
.w1_c02267{width:793.333333pt;}
.w0_c02267{width:793.626667pt;}
.x0_c02267{left:0.000000pt;}
.x1_c02267{left:113.440000pt;}
.x3_c02267{left:120.560000pt;}
.x6_c02267{left:122.240000pt;}
.x4_c02267{left:234.160000pt;}
.x8_c02267{left:243.440000pt;}
.x5_c02267{left:276.640000pt;}
.x7_c02267{left:297.920000pt;}
.x2_c02267{left:384.880000pt;}
.x9_c02267{left:621.440408pt;}
.xa_c02267{left:640.880000pt;}
.xb_c02267{left:642.480152pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a21edd842adc277690bee48d.woff2')format("woff");}.ff1_c02268{font-family:ff1_c02268;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02268;src:url('chunks/assets/font_88b66d0a252a134fdf6d5b70.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;}
.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);}
.v2_c02268{vertical-align:-22.320000px;}
.v1_c02268{vertical-align:-16.919400px;}
.v3_c02268{vertical-align:-5.400000px;}
.v0_c02268{vertical-align:0.000000px;}
.ls13_c02268{letter-spacing:-0.181116px;}
.ls11_c02268{letter-spacing:-0.180360px;}
.ls10_c02268{letter-spacing:-0.176904px;}
.ls12_c02268{letter-spacing:-0.032940px;}
.ls15_c02268{letter-spacing:-0.013176px;}
.ls14_c02268{letter-spacing:-0.006588px;}
.lsf_c02268{letter-spacing:0.000000px;}
.lsd_c02268{letter-spacing:0.013176px;}
.lsc_c02268{letter-spacing:0.019764px;}
.ls8_c02268{letter-spacing:0.026352px;}
.ls0_c02268{letter-spacing:0.028800px;}
.ls9_c02268{letter-spacing:0.032940px;}
.lsa_c02268{letter-spacing:0.039528px;}
.ls4_c02268{letter-spacing:0.046116px;}
.ls5_c02268{letter-spacing:0.052704px;}
.ls1_c02268{letter-spacing:0.059292px;}
.lsb_c02268{letter-spacing:0.065880px;}
.ls6_c02268{letter-spacing:0.072468px;}
.ls7_c02268{letter-spacing:0.092232px;}
.lse_c02268{letter-spacing:0.131760px;}
.ls3_c02268{letter-spacing:0.181944px;}
.ls2_c02268{letter-spacing:1463.760000px;}
.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;}
}
.ws2_c02268{word-spacing:-16.601760px;}
.ws1_c02268{word-spacing:-16.562232px;}
.ws0_c02268{word-spacing:-16.529292px;}
.ws4_c02268{word-spacing:-0.086400px;}
.ws3_c02268{word-spacing:0.000000px;}
.ws27_c02268{word-spacing:0.019764px;}
.wsc_c02268{word-spacing:0.039528px;}
.wse_c02268{word-spacing:0.059292px;}
.ws19_c02268{word-spacing:0.065880px;}
.ws9_c02268{word-spacing:0.092232px;}
.ws1d_c02268{word-spacing:0.098820px;}
.ws22_c02268{word-spacing:0.105408px;}
.ws12_c02268{word-spacing:0.408456px;}
.ws2a_c02268{word-spacing:0.480924px;}
.ws7_c02268{word-spacing:0.764208px;}
.ws1c_c02268{word-spacing:1.838052px;}
.ws14_c02268{word-spacing:2.233332px;}
.ws8_c02268{word-spacing:6.515532px;}
.wsa_c02268{word-spacing:7.220448px;}
.ws11_c02268{word-spacing:7.589376px;}
.wsb_c02268{word-spacing:7.622316px;}
.ws10_c02268{word-spacing:9.414252px;}
.ws23_c02268{word-spacing:10.830672px;}
.ws26_c02268{word-spacing:13.709628px;}
.ws29_c02268{word-spacing:14.071968px;}
.ws28_c02268{word-spacing:14.104908px;}
.ws1f_c02268{word-spacing:14.790060px;}
.ws13_c02268{word-spacing:16.226244px;}
.ws18_c02268{word-spacing:16.575408px;}
.ws16_c02268{word-spacing:17.682192px;}
.ws1e_c02268{word-spacing:19.480716px;}
.ws17_c02268{word-spacing:20.238336px;}
.ws15_c02268{word-spacing:27.030564px;}
.ws1a_c02268{word-spacing:28.117584px;}
.wsd_c02268{word-spacing:28.124172px;}
.ws6_c02268{word-spacing:29.553768px;}
.ws1b_c02268{word-spacing:33.895260px;}
.ws24_c02268{word-spacing:38.921904px;}
.ws25_c02268{word-spacing:38.974608px;}
.wsf_c02268{word-spacing:44.673228px;}
.ws21_c02268{word-spacing:46.471752px;}
.ws20_c02268{word-spacing:46.491516px;}
.ws5_c02268{word-spacing:51.207660px;}
._4_c02268{margin-left:-12.602016px;}
._5_c02268{margin-left:-2.518488px;}
._6_c02268{margin-left:-1.089576px;}
._7_c02268{width:1.192428px;}
._1_c02268{width:39.870720px;}
._2_c02268{width:40.950720px;}
._3_c02268{width:60.214464px;}
._0_c02268{width:73.850472px;}
.fc0_c02268{color:rgb(0,0,0);}
.fs5_c02268{font-size:24.120000px;}
.fs1_c02268{font-size:42.120000px;}
.fs4_c02268{font-size:47.880000px;}
.fs6_c02268{font-size:54.000000px;}
.fs2_c02268{font-size:60.120000px;}
.fs3_c02268{font-size:65.880000px;}
.fs0_c02268{font-size:72.000000px;}
.y0_c02268{bottom:0.000000px;}
.y4_c02268{bottom:57.360450px;}
.y3_c02268{bottom:78.060450px;}
.y46_c02268{bottom:125.849550px;}
.y45_c02268{bottom:149.160000px;}
.y44_c02268{bottom:164.640450px;}
.y43_c02268{bottom:181.110450px;}
.y42_c02268{bottom:200.910450px;}
.y3f_c02268{bottom:218.280600px;}
.y3e_c02268{bottom:238.621215px;}
.y3d_c02268{bottom:257.520540px;}
.y3c_c02268{bottom:276.510450px;}
.y3b_c02268{bottom:295.500630px;}
.y3a_c02268{bottom:314.490540px;}
.y39_c02268{bottom:333.480450px;}
.y38_c02268{bottom:350.130450px;}
.y41_c02268{bottom:359.220690px;}
.y37_c02268{bottom:359.310540px;}
.y40_c02268{bottom:378.210600px;}
.y36_c02268{bottom:383.970450px;}
.y34_c02268{bottom:398.370600px;}
.y33_c02268{bottom:418.710690px;}
.y32_c02268{bottom:437.700600px;}
.y31_c02268{bottom:456.691305px;}
.y30_c02268{bottom:475.681215px;}
.y2f_c02268{bottom:494.580540px;}
.y2e_c02268{bottom:513.570450px;}
.y2d_c02268{bottom:530.310450px;}
.y2c_c02268{bottom:539.491305px;}
.y2b_c02268{bottom:558.481215px;}
.y2a_c02268{bottom:577.380540px;}
.y35_c02268{bottom:596.280450px;}
.y29_c02268{bottom:602.040450px;}
.y25_c02268{bottom:616.440450px;}
.y24_c02268{bottom:636.781575px;}
.y23_c02268{bottom:655.771485px;}
.y22_c02268{bottom:674.761395px;}
.y21_c02268{bottom:693.751305px;}
.y28_c02268{bottom:712.651215px;}
.y20_c02268{bottom:712.741215px;}
.y27_c02268{bottom:731.550540px;}
.y1f_c02268{bottom:731.640540px;}
.y26_c02268{bottom:750.540450px;}
.y1e_c02268{bottom:756.300450px;}
.y1b_c02268{bottom:770.790600px;}
.y1a_c02268{bottom:791.040960px;}
.y19_c02268{bottom:810.030870px;}
.y18_c02268{bottom:829.020780px;}
.y1d_c02268{bottom:847.920540px;}
.y17_c02268{bottom:848.010690px;}
.y1c_c02268{bottom:866.910450px;}
.y16_c02268{bottom:872.670450px;}
.y14_c02268{bottom:887.070450px;}
.y13_c02268{bottom:907.411455px;}
.y12_c02268{bottom:926.401365px;}
.y11_c02268{bottom:945.300690px;}
.y15_c02268{bottom:964.200450px;}
.y10_c02268{bottom:969.960450px;}
.ye_c02268{bottom:984.360450px;}
.yd_c02268{bottom:1004.700540px;}
.yf_c02268{bottom:1023.600450px;}
.yc_c02268{bottom:1029.360450px;}
.ya_c02268{bottom:1043.760450px;}
.y9_c02268{bottom:1064.100720px;}
.y8_c02268{bottom:1083.090630px;}
.y7_c02268{bottom:1102.080540px;}
.yb_c02268{bottom:1120.980450px;}
.y6_c02268{bottom:1126.740450px;}
.y5_c02268{bottom:1146.270450px;}
.y2_c02268{bottom:1172.640450px;}
.y1_c02268{bottom:1193.160450px;}
.hd_c02268{height:21.163887px;}
.h4_c02268{height:36.957832px;}
.h3_c02268{height:41.629219px;}
.h12_c02268{height:47.961914px;}
.h5_c02268{height:57.805840px;}
.h7_c02268{height:58.513535px;}
.hb_c02268{height:63.171281px;}
.h9_c02268{height:63.171761px;}
.hc_c02268{height:63.172361px;}
.he_c02268{height:63.172961px;}
.h10_c02268{height:63.173321px;}
.ha_c02268{height:63.174341px;}
.h6_c02268{height:63.174701px;}
.h11_c02268{height:63.174821px;}
.hf_c02268{height:63.175061px;}
.h8_c02268{height:63.175421px;}
.h2_c02268{height:63.175781px;}
.h1_c02268{height:63.949219px;}
.h0_c02268{height:1263.000000px;}
.w1_c02268{width:892.500000px;}
.w0_c02268{width:892.830000px;}
.x0_c02268{left:0.000000px;}
.x1_c02268{left:127.620000px;}
.x3_c02268{left:135.630000px;}
.x4_c02268{left:274.320000px;}
.x2_c02268{left:432.990000px;}
.x5_c02268{left:720.540000px;}
.x6_c02268{left:722.790000px;}
@media print{
.v2_c02268{vertical-align:-19.840000pt;}
.v1_c02268{vertical-align:-15.039467pt;}
.v3_c02268{vertical-align:-4.800000pt;}
.v0_c02268{vertical-align:0.000000pt;}
.ls13_c02268{letter-spacing:-0.160992pt;}
.ls11_c02268{letter-spacing:-0.160320pt;}
.ls10_c02268{letter-spacing:-0.157248pt;}
.ls12_c02268{letter-spacing:-0.029280pt;}
.ls15_c02268{letter-spacing:-0.011712pt;}
.ls14_c02268{letter-spacing:-0.005856pt;}
.lsf_c02268{letter-spacing:0.000000pt;}
.lsd_c02268{letter-spacing:0.011712pt;}
.lsc_c02268{letter-spacing:0.017568pt;}
.ls8_c02268{letter-spacing:0.023424pt;}
.ls0_c02268{letter-spacing:0.025600pt;}
.ls9_c02268{letter-spacing:0.029280pt;}
.lsa_c02268{letter-spacing:0.035136pt;}
.ls4_c02268{letter-spacing:0.040992pt;}
.ls5_c02268{letter-spacing:0.046848pt;}
.ls1_c02268{letter-spacing:0.052704pt;}
.lsb_c02268{letter-spacing:0.058560pt;}
.ls6_c02268{letter-spacing:0.064416pt;}
.ls7_c02268{letter-spacing:0.081984pt;}
.lse_c02268{letter-spacing:0.117120pt;}
.ls3_c02268{letter-spacing:0.161728pt;}
.ls2_c02268{letter-spacing:1301.120000pt;}
.ws2_c02268{word-spacing:-14.757120pt;}
.ws1_c02268{word-spacing:-14.721984pt;}
.ws0_c02268{word-spacing:-14.692704pt;}
.ws4_c02268{word-spacing:-0.076800pt;}
.ws3_c02268{word-spacing:0.000000pt;}
.ws27_c02268{word-spacing:0.017568pt;}
.wsc_c02268{word-spacing:0.035136pt;}
.wse_c02268{word-spacing:0.052704pt;}
.ws19_c02268{word-spacing:0.058560pt;}
.ws9_c02268{word-spacing:0.081984pt;}
.ws1d_c02268{word-spacing:0.087840pt;}
.ws22_c02268{word-spacing:0.093696pt;}
.ws12_c02268{word-spacing:0.363072pt;}
.ws2a_c02268{word-spacing:0.427488pt;}
.ws7_c02268{word-spacing:0.679296pt;}
.ws1c_c02268{word-spacing:1.633824pt;}
.ws14_c02268{word-spacing:1.985184pt;}
.ws8_c02268{word-spacing:5.791584pt;}
.wsa_c02268{word-spacing:6.418176pt;}
.ws11_c02268{word-spacing:6.746112pt;}
.wsb_c02268{word-spacing:6.775392pt;}
.ws10_c02268{word-spacing:8.368224pt;}
.ws23_c02268{word-spacing:9.627264pt;}
.ws26_c02268{word-spacing:12.186336pt;}
.ws29_c02268{word-spacing:12.508416pt;}
.ws28_c02268{word-spacing:12.537696pt;}
.ws1f_c02268{word-spacing:13.146720pt;}
.ws13_c02268{word-spacing:14.423328pt;}
.ws18_c02268{word-spacing:14.733696pt;}
.ws16_c02268{word-spacing:15.717504pt;}
.ws1e_c02268{word-spacing:17.316192pt;}
.ws17_c02268{word-spacing:17.989632pt;}
.ws15_c02268{word-spacing:24.027168pt;}
.ws1a_c02268{word-spacing:24.993408pt;}
.wsd_c02268{word-spacing:24.999264pt;}
.ws6_c02268{word-spacing:26.270016pt;}
.ws1b_c02268{word-spacing:30.129120pt;}
.ws24_c02268{word-spacing:34.597248pt;}
.ws25_c02268{word-spacing:34.644096pt;}
.wsf_c02268{word-spacing:39.709536pt;}
.ws21_c02268{word-spacing:41.308224pt;}
.ws20_c02268{word-spacing:41.325792pt;}
.ws5_c02268{word-spacing:45.517920pt;}
._4_c02268{margin-left:-11.201792pt;}
._5_c02268{margin-left:-2.238656pt;}
._6_c02268{margin-left:-0.968512pt;}
._7_c02268{width:1.059936pt;}
._1_c02268{width:35.440640pt;}
._2_c02268{width:36.400640pt;}
._3_c02268{width:53.523968pt;}
._0_c02268{width:65.644864pt;}
.fs5_c02268{font-size:21.440000pt;}
.fs1_c02268{font-size:37.440000pt;}
.fs4_c02268{font-size:42.560000pt;}
.fs6_c02268{font-size:48.000000pt;}
.fs2_c02268{font-size:53.440000pt;}
.fs3_c02268{font-size:58.560000pt;}
.fs0_c02268{font-size:64.000000pt;}
.y0_c02268{bottom:0.000000pt;}
.y4_c02268{bottom:50.987067pt;}
.y3_c02268{bottom:69.387067pt;}
.y46_c02268{bottom:111.866267pt;}
.y45_c02268{bottom:132.586667pt;}
.y44_c02268{bottom:146.347067pt;}
.y43_c02268{bottom:160.987067pt;}
.y42_c02268{bottom:178.587067pt;}
.y3f_c02268{bottom:194.027200pt;}
.y3e_c02268{bottom:212.107747pt;}
.y3d_c02268{bottom:228.907147pt;}
.y3c_c02268{bottom:245.787067pt;}
.y3b_c02268{bottom:262.667227pt;}
.y3a_c02268{bottom:279.547147pt;}
.y39_c02268{bottom:296.427067pt;}
.y38_c02268{bottom:311.227067pt;}
.y41_c02268{bottom:319.307280pt;}
.y37_c02268{bottom:319.387147pt;}
.y40_c02268{bottom:336.187200pt;}
.y36_c02268{bottom:341.307067pt;}
.y34_c02268{bottom:354.107200pt;}
.y33_c02268{bottom:372.187280pt;}
.y32_c02268{bottom:389.067200pt;}
.y31_c02268{bottom:405.947827pt;}
.y30_c02268{bottom:422.827747pt;}
.y2f_c02268{bottom:439.627147pt;}
.y2e_c02268{bottom:456.507067pt;}
.y2d_c02268{bottom:471.387067pt;}
.y2c_c02268{bottom:479.547827pt;}
.y2b_c02268{bottom:496.427747pt;}
.y2a_c02268{bottom:513.227147pt;}
.y35_c02268{bottom:530.027067pt;}
.y29_c02268{bottom:535.147067pt;}
.y25_c02268{bottom:547.947067pt;}
.y24_c02268{bottom:566.028067pt;}
.y23_c02268{bottom:582.907987pt;}
.y22_c02268{bottom:599.787907pt;}
.y21_c02268{bottom:616.667827pt;}
.y28_c02268{bottom:633.467747pt;}
.y20_c02268{bottom:633.547747pt;}
.y27_c02268{bottom:650.267147pt;}
.y1f_c02268{bottom:650.347147pt;}
.y26_c02268{bottom:667.147067pt;}
.y1e_c02268{bottom:672.267067pt;}
.y1b_c02268{bottom:685.147200pt;}
.y1a_c02268{bottom:703.147520pt;}
.y19_c02268{bottom:720.027440pt;}
.y18_c02268{bottom:736.907360pt;}
.y1d_c02268{bottom:753.707147pt;}
.y17_c02268{bottom:753.787280pt;}
.y1c_c02268{bottom:770.587067pt;}
.y16_c02268{bottom:775.707067pt;}
.y14_c02268{bottom:788.507067pt;}
.y13_c02268{bottom:806.587960pt;}
.y12_c02268{bottom:823.467880pt;}
.y11_c02268{bottom:840.267280pt;}
.y15_c02268{bottom:857.067067pt;}
.y10_c02268{bottom:862.187067pt;}
.ye_c02268{bottom:874.987067pt;}
.yd_c02268{bottom:893.067147pt;}
.yf_c02268{bottom:909.867067pt;}
.yc_c02268{bottom:914.987067pt;}
.ya_c02268{bottom:927.787067pt;}
.y9_c02268{bottom:945.867307pt;}
.y8_c02268{bottom:962.747227pt;}
.y7_c02268{bottom:979.627147pt;}
.yb_c02268{bottom:996.427067pt;}
.y6_c02268{bottom:1001.547067pt;}
.y5_c02268{bottom:1018.907067pt;}
.y2_c02268{bottom:1042.347067pt;}
.y1_c02268{bottom:1060.587067pt;}
.hd_c02268{height:18.812344pt;}
.h4_c02268{height:32.851406pt;}
.h3_c02268{height:37.003750pt;}
.h12_c02268{height:42.632812pt;}
.h5_c02268{height:51.382969pt;}
.h7_c02268{height:52.012031pt;}
.hb_c02268{height:56.152250pt;}
.h9_c02268{height:56.152677pt;}
.hc_c02268{height:56.153210pt;}
.he_c02268{height:56.153743pt;}
.h10_c02268{height:56.154063pt;}
.ha_c02268{height:56.154970pt;}
.h6_c02268{height:56.155290pt;}
.h11_c02268{height:56.155397pt;}
.hf_c02268{height:56.155610pt;}
.h8_c02268{height:56.155930pt;}
.h2_c02268{height:56.156250pt;}
.h1_c02268{height:56.843750pt;}
.h0_c02268{height:1122.666667pt;}
.w1_c02268{width:793.333333pt;}
.w0_c02268{width:793.626667pt;}
.x0_c02268{left:0.000000pt;}
.x1_c02268{left:113.440000pt;}
.x3_c02268{left:120.560000pt;}
.x4_c02268{left:243.840000pt;}
.x2_c02268{left:384.880000pt;}
.x5_c02268{left:640.480000pt;}
.x6_c02268{left:642.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_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_e33bb562bb4e03371506566c.woff2')format("woff");}.ff1_c02269{font-family:ff1_c02269;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02269;src:url('chunks/assets/font_1d727dff39d9aec335bff02e.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02269{font-family:ff3_c02269;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_c02269;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02269{font-family:ff4_c02269;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;}
.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);}
.v1_c02269{vertical-align:-16.560000px;}
.v0_c02269{vertical-align:0.000000px;}
.v3_c02269{vertical-align:1.080000px;}
.v2_c02269{vertical-align:11.160000px;}
.v4_c02269{vertical-align:16.200000px;}
.v5_c02269{vertical-align:17.280000px;}
.ls20_c02269{letter-spacing:-0.050400px;}
.ls21_c02269{letter-spacing:-0.028800px;}
.ls1f_c02269{letter-spacing:-0.014400px;}
.ls23_c02269{letter-spacing:-0.014364px;}
.ls24_c02269{letter-spacing:-0.004788px;}
.ls1e_c02269{letter-spacing:0.000000px;}
.ls15_c02269{letter-spacing:0.006588px;}
.ls1_c02269{letter-spacing:0.007200px;}
.ls8_c02269{letter-spacing:0.009576px;}
.ls4_c02269{letter-spacing:0.014400px;}
.ls14_c02269{letter-spacing:0.019764px;}
.ls2_c02269{letter-spacing:0.021600px;}
.lsf_c02269{letter-spacing:0.026352px;}
.ls0_c02269{letter-spacing:0.028800px;}
.ls19_c02269{letter-spacing:0.032940px;}
.ls3_c02269{letter-spacing:0.036000px;}
.lsb_c02269{letter-spacing:0.039528px;}
.ls9_c02269{letter-spacing:0.046116px;}
.ls7_c02269{letter-spacing:0.050400px;}
.lsa_c02269{letter-spacing:0.052704px;}
.ls5_c02269{letter-spacing:0.057600px;}
.ls16_c02269{letter-spacing:0.059292px;}
.ls17_c02269{letter-spacing:0.065880px;}
.ls1a_c02269{letter-spacing:0.079056px;}
.ls6_c02269{letter-spacing:0.079200px;}
.ls12_c02269{letter-spacing:0.085644px;}
.ls13_c02269{letter-spacing:0.098820px;}
.ls22_c02269{letter-spacing:0.115200px;}
.ls25_c02269{letter-spacing:0.180360px;}
.ls1d_c02269{letter-spacing:0.181944px;}
.ls1c_c02269{letter-spacing:0.210672px;}
.lse_c02269{letter-spacing:0.239400px;}
.ls10_c02269{letter-spacing:0.538704px;}
.lsc_c02269{letter-spacing:0.541044px;}
.ls11_c02269{letter-spacing:74.160000px;}
.lsd_c02269{letter-spacing:80.187660px;}
.ls18_c02269{letter-spacing:271.892088px;}
.ls1b_c02269{letter-spacing:1643.490000px;}
.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;}
}
.ws3_c02269{word-spacing:-47.880000px;}
.ws1_c02269{word-spacing:-18.115200px;}
.ws0_c02269{word-spacing:-18.000000px;}
.ws5_c02269{word-spacing:-16.568820px;}
.ws7_c02269{word-spacing:-16.535880px;}
.ws6_c02269{word-spacing:-16.509528px;}
.ws9_c02269{word-spacing:-16.502940px;}
.ws8_c02269{word-spacing:-16.496352px;}
.ws4_c02269{word-spacing:-16.470000px;}
.ws2_c02269{word-spacing:-11.965212px;}
.ws30_c02269{word-spacing:-0.301644px;}
.ws1c_c02269{word-spacing:-0.129600px;}
.ws1d_c02269{word-spacing:-0.093600px;}
.wsb_c02269{word-spacing:-0.086400px;}
.wsd_c02269{word-spacing:-0.021600px;}
.ws1a_c02269{word-spacing:-0.014400px;}
.wsc_c02269{word-spacing:-0.007200px;}
.wsa_c02269{word-spacing:0.000000px;}
.ws28_c02269{word-spacing:0.006588px;}
.ws2f_c02269{word-spacing:0.013176px;}
.ws2e_c02269{word-spacing:0.032940px;}
.ws2a_c02269{word-spacing:0.039528px;}
.ws23_c02269{word-spacing:0.046116px;}
.ws25_c02269{word-spacing:0.052704px;}
.ws29_c02269{word-spacing:0.072468px;}
.ws19_c02269{word-spacing:0.129600px;}
.ws1f_c02269{word-spacing:0.273600px;}
.ws1e_c02269{word-spacing:0.338400px;}
.ws2b_c02269{word-spacing:0.421632px;}
.ws24_c02269{word-spacing:1.838052px;}
.ws2d_c02269{word-spacing:2.200392px;}
.ws2c_c02269{word-spacing:2.246508px;}
.ws13_c02269{word-spacing:3.945600px;}
.ws14_c02269{word-spacing:3.952800px;}
.wsf_c02269{word-spacing:4.586400px;}
.wse_c02269{word-spacing:4.672800px;}
.ws12_c02269{word-spacing:8.863200px;}
.ws11_c02269{word-spacing:9.000000px;}
.ws10_c02269{word-spacing:9.021600px;}
.ws18_c02269{word-spacing:9.280800px;}
.ws17_c02269{word-spacing:11.462400px;}
.ws15_c02269{word-spacing:14.695200px;}
.ws16_c02269{word-spacing:14.875200px;}
.ws22_c02269{word-spacing:20.412000px;}
.ws21_c02269{word-spacing:20.505600px;}
.ws20_c02269{word-spacing:20.548800px;}
.ws26_c02269{word-spacing:25.969896px;}
.ws27_c02269{word-spacing:25.983072px;}
.ws1b_c02269{word-spacing:29.484000px;}
._0_c02269{margin-left:-1.087200px;}
._4_c02269{width:1.021140px;}
._b_c02269{width:51.748920px;}
._3_c02269{width:67.044168px;}
._a_c02269{width:128.201220px;}
._2_c02269{width:188.036640px;}
._1_c02269{width:209.431512px;}
._5_c02269{width:337.640328px;}
._8_c02269{width:340.835508px;}
._9_c02269{width:361.502244px;}
._6_c02269{width:401.319936px;}
._7_c02269{width:408.988368px;}
.fc0_c02269{color:rgb(0,0,0);}
.fs4_c02269{font-size:2.880000px;}
.fs1_c02269{font-size:47.880000px;}
.fs5_c02269{font-size:54.000000px;}
.fs3_c02269{font-size:60.120000px;}
.fs2_c02269{font-size:65.880000px;}
.fs0_c02269{font-size:72.000000px;}
.y0_c02269{bottom:0.000000px;}
.y4_c02269{bottom:57.360450px;}
.y3_c02269{bottom:78.060450px;}
.y36_c02269{bottom:123.420450px;}
.y35_c02269{bottom:144.120450px;}
.y34_c02269{bottom:164.820450px;}
.y33_c02269{bottom:184.530450px;}
.y32_c02269{bottom:222.870600px;}
.y31_c02269{bottom:226.920450px;}
.y30_c02269{bottom:244.920450px;}
.y2f_c02269{bottom:262.560450px;}
.y2e_c02269{bottom:281.190450px;}
.y2d_c02269{bottom:303.690450px;}
.y2c_c02269{bottom:323.400450px;}
.y2b_c02269{bottom:343.110450px;}
.y2a_c02269{bottom:362.820450px;}
.y29_c02269{bottom:378.570450px;}
.y28_c02269{bottom:401.520600px;}
.y27_c02269{bottom:421.320450px;}
.y26_c02269{bottom:441.030600px;}
.y25_c02269{bottom:460.740450px;}
.y24_c02269{bottom:476.400450px;}
.y23_c02269{bottom:499.440600px;}
.y22_c02269{bottom:515.100450px;}
.y21_c02269{bottom:538.140450px;}
.y1d_c02269{bottom:553.710450px;}
.y20_c02269{bottom:569.910450px;}
.y1c_c02269{bottom:572.970450px;}
.y1f_c02269{bottom:583.680450px;}
.y1e_c02269{bottom:594.750450px;}
.y1b_c02269{bottom:597.540450px;}
.y1a_c02269{bottom:612.300450px;}
.y19_c02269{bottom:626.160450px;}
.y18_c02269{bottom:641.190450px;}
.y17_c02269{bottom:661.890450px;}
.y16_c02269{bottom:682.590450px;}
.y15_c02269{bottom:703.290450px;}
.y14_c02269{bottom:723.990450px;}
.y13_c02269{bottom:745.230450px;}
.y12_c02269{bottom:766.650450px;}
.y11_c02269{bottom:788.250450px;}
.y10_c02269{bottom:808.770450px;}
.yf_c02269{bottom:840.000450px;}
.ye_c02269{bottom:871.050450px;}
.yd_c02269{bottom:902.100450px;}
.yc_c02269{bottom:933.150450px;}
.yb_c02269{bottom:964.200450px;}
.ya_c02269{bottom:995.250450px;}
.y9_c02269{bottom:1026.300450px;}
.y8_c02269{bottom:1057.350450px;}
.y7_c02269{bottom:1088.220450px;}
.y6_c02269{bottom:1114.860450px;}
.y5_c02269{bottom:1139.970450px;}
.y2_c02269{bottom:1172.640450px;}
.y1_c02269{bottom:1193.160450px;}
.hb_c02269{height:2.557969px;}
.h3_c02269{height:42.011895px;}
.h4_c02269{height:42.526230px;}
.h9_c02269{height:43.091895px;}
.hc_c02269{height:47.961914px;}
.h7_c02269{height:53.397598px;}
.h6_c02269{height:53.686230px;}
.ha_c02269{height:53.686830px;}
.h8_c02269{height:57.805840px;}
.h5_c02269{height:58.513535px;}
.h2_c02269{height:63.175781px;}
.h1_c02269{height:63.949219px;}
.h0_c02269{height:1263.000000px;}
.w1_c02269{width:892.500000px;}
.w0_c02269{width:892.830000px;}
.x0_c02269{left:0.000000px;}
.x1_c02269{left:127.620000px;}
.x4_c02269{left:135.630000px;}
.x5_c02269{left:138.150000px;}
.x6_c02269{left:146.250000px;}
.x3_c02269{left:148.950000px;}
.xc_c02269{left:156.960000px;}
.xd_c02269{left:173.520000px;}
.x7_c02269{left:178.200000px;}
.x8_c02269{left:225.990000px;}
.x2_c02269{left:432.990000px;}
.x9_c02269{left:614.070000px;}
.xb_c02269{left:701.280000px;}
.xa_c02269{left:714.600000px;}
@media print{
.v1_c02269{vertical-align:-14.720000pt;}
.v0_c02269{vertical-align:0.000000pt;}
.v3_c02269{vertical-align:0.960000pt;}
.v2_c02269{vertical-align:9.920000pt;}
.v4_c02269{vertical-align:14.400000pt;}
.v5_c02269{vertical-align:15.360000pt;}
.ls20_c02269{letter-spacing:-0.044800pt;}
.ls21_c02269{letter-spacing:-0.025600pt;}
.ls1f_c02269{letter-spacing:-0.012800pt;}
.ls23_c02269{letter-spacing:-0.012768pt;}
.ls24_c02269{letter-spacing:-0.004256pt;}
.ls1e_c02269{letter-spacing:0.000000pt;}
.ls15_c02269{letter-spacing:0.005856pt;}
.ls1_c02269{letter-spacing:0.006400pt;}
.ls8_c02269{letter-spacing:0.008512pt;}
.ls4_c02269{letter-spacing:0.012800pt;}
.ls14_c02269{letter-spacing:0.017568pt;}
.ls2_c02269{letter-spacing:0.019200pt;}
.lsf_c02269{letter-spacing:0.023424pt;}
.ls0_c02269{letter-spacing:0.025600pt;}
.ls19_c02269{letter-spacing:0.029280pt;}
.ls3_c02269{letter-spacing:0.032000pt;}
.lsb_c02269{letter-spacing:0.035136pt;}
.ls9_c02269{letter-spacing:0.040992pt;}
.ls7_c02269{letter-spacing:0.044800pt;}
.lsa_c02269{letter-spacing:0.046848pt;}
.ls5_c02269{letter-spacing:0.051200pt;}
.ls16_c02269{letter-spacing:0.052704pt;}
.ls17_c02269{letter-spacing:0.058560pt;}
.ls1a_c02269{letter-spacing:0.070272pt;}
.ls6_c02269{letter-spacing:0.070400pt;}
.ls12_c02269{letter-spacing:0.076128pt;}
.ls13_c02269{letter-spacing:0.087840pt;}
.ls22_c02269{letter-spacing:0.102400pt;}
.ls25_c02269{letter-spacing:0.160320pt;}
.ls1d_c02269{letter-spacing:0.161728pt;}
.ls1c_c02269{letter-spacing:0.187264pt;}
.lse_c02269{letter-spacing:0.212800pt;}
.ls10_c02269{letter-spacing:0.478848pt;}
.lsc_c02269{letter-spacing:0.480928pt;}
.ls11_c02269{letter-spacing:65.920000pt;}
.lsd_c02269{letter-spacing:71.277920pt;}
.ls18_c02269{letter-spacing:241.681856pt;}
.ls1b_c02269{letter-spacing:1460.880000pt;}
.ws3_c02269{word-spacing:-42.560000pt;}
.ws1_c02269{word-spacing:-16.102400pt;}
.ws0_c02269{word-spacing:-16.000000pt;}
.ws5_c02269{word-spacing:-14.727840pt;}
.ws7_c02269{word-spacing:-14.698560pt;}
.ws6_c02269{word-spacing:-14.675136pt;}
.ws9_c02269{word-spacing:-14.669280pt;}
.ws8_c02269{word-spacing:-14.663424pt;}
.ws4_c02269{word-spacing:-14.640000pt;}
.ws2_c02269{word-spacing:-10.635744pt;}
.ws30_c02269{word-spacing:-0.268128pt;}
.ws1c_c02269{word-spacing:-0.115200pt;}
.ws1d_c02269{word-spacing:-0.083200pt;}
.wsb_c02269{word-spacing:-0.076800pt;}
.wsd_c02269{word-spacing:-0.019200pt;}
.ws1a_c02269{word-spacing:-0.012800pt;}
.wsc_c02269{word-spacing:-0.006400pt;}
.wsa_c02269{word-spacing:0.000000pt;}
.ws28_c02269{word-spacing:0.005856pt;}
.ws2f_c02269{word-spacing:0.011712pt;}
.ws2e_c02269{word-spacing:0.029280pt;}
.ws2a_c02269{word-spacing:0.035136pt;}
.ws23_c02269{word-spacing:0.040992pt;}
.ws25_c02269{word-spacing:0.046848pt;}
.ws29_c02269{word-spacing:0.064416pt;}
.ws19_c02269{word-spacing:0.115200pt;}
.ws1f_c02269{word-spacing:0.243200pt;}
.ws1e_c02269{word-spacing:0.300800pt;}
.ws2b_c02269{word-spacing:0.374784pt;}
.ws24_c02269{word-spacing:1.633824pt;}
.ws2d_c02269{word-spacing:1.955904pt;}
.ws2c_c02269{word-spacing:1.996896pt;}
.ws13_c02269{word-spacing:3.507200pt;}
.ws14_c02269{word-spacing:3.513600pt;}
.wsf_c02269{word-spacing:4.076800pt;}
.wse_c02269{word-spacing:4.153600pt;}
.ws12_c02269{word-spacing:7.878400pt;}
.ws11_c02269{word-spacing:8.000000pt;}
.ws10_c02269{word-spacing:8.019200pt;}
.ws18_c02269{word-spacing:8.249600pt;}
.ws17_c02269{word-spacing:10.188800pt;}
.ws15_c02269{word-spacing:13.062400pt;}
.ws16_c02269{word-spacing:13.222400pt;}
.ws22_c02269{word-spacing:18.144000pt;}
.ws21_c02269{word-spacing:18.227200pt;}
.ws20_c02269{word-spacing:18.265600pt;}
.ws26_c02269{word-spacing:23.084352pt;}
.ws27_c02269{word-spacing:23.096064pt;}
.ws1b_c02269{word-spacing:26.208000pt;}
._0_c02269{margin-left:-0.966400pt;}
._4_c02269{width:0.907680pt;}
._b_c02269{width:45.999040pt;}
._3_c02269{width:59.594816pt;}
._a_c02269{width:113.956640pt;}
._2_c02269{width:167.143680pt;}
._1_c02269{width:186.161344pt;}
._5_c02269{width:300.124736pt;}
._8_c02269{width:302.964896pt;}
._9_c02269{width:321.335328pt;}
._6_c02269{width:356.728832pt;}
._7_c02269{width:363.545216pt;}
.fs4_c02269{font-size:2.560000pt;}
.fs1_c02269{font-size:42.560000pt;}
.fs5_c02269{font-size:48.000000pt;}
.fs3_c02269{font-size:53.440000pt;}
.fs2_c02269{font-size:58.560000pt;}
.fs0_c02269{font-size:64.000000pt;}
.y0_c02269{bottom:0.000000pt;}
.y4_c02269{bottom:50.987067pt;}
.y3_c02269{bottom:69.387067pt;}
.y36_c02269{bottom:109.707067pt;}
.y35_c02269{bottom:128.107067pt;}
.y34_c02269{bottom:146.507067pt;}
.y33_c02269{bottom:164.027067pt;}
.y32_c02269{bottom:198.107200pt;}
.y31_c02269{bottom:201.707067pt;}
.y30_c02269{bottom:217.707067pt;}
.y2f_c02269{bottom:233.387067pt;}
.y2e_c02269{bottom:249.947067pt;}
.y2d_c02269{bottom:269.947067pt;}
.y2c_c02269{bottom:287.467067pt;}
.y2b_c02269{bottom:304.987067pt;}
.y2a_c02269{bottom:322.507067pt;}
.y29_c02269{bottom:336.507067pt;}
.y28_c02269{bottom:356.907200pt;}
.y27_c02269{bottom:374.507067pt;}
.y26_c02269{bottom:392.027200pt;}
.y25_c02269{bottom:409.547067pt;}
.y24_c02269{bottom:423.467067pt;}
.y23_c02269{bottom:443.947200pt;}
.y22_c02269{bottom:457.867067pt;}
.y21_c02269{bottom:478.347067pt;}
.y1d_c02269{bottom:492.187067pt;}
.y20_c02269{bottom:506.587067pt;}
.y1c_c02269{bottom:509.307067pt;}
.y1f_c02269{bottom:518.827067pt;}
.y1e_c02269{bottom:528.667067pt;}
.y1b_c02269{bottom:531.147067pt;}
.y1a_c02269{bottom:544.267067pt;}
.y19_c02269{bottom:556.587067pt;}
.y18_c02269{bottom:569.947067pt;}
.y17_c02269{bottom:588.347067pt;}
.y16_c02269{bottom:606.747067pt;}
.y15_c02269{bottom:625.147067pt;}
.y14_c02269{bottom:643.547067pt;}
.y13_c02269{bottom:662.427067pt;}
.y12_c02269{bottom:681.467067pt;}
.y11_c02269{bottom:700.667067pt;}
.y10_c02269{bottom:718.907067pt;}
.yf_c02269{bottom:746.667067pt;}
.ye_c02269{bottom:774.267067pt;}
.yd_c02269{bottom:801.867067pt;}
.yc_c02269{bottom:829.467067pt;}
.yb_c02269{bottom:857.067067pt;}
.ya_c02269{bottom:884.667067pt;}
.y9_c02269{bottom:912.267067pt;}
.y8_c02269{bottom:939.867067pt;}
.y7_c02269{bottom:967.307067pt;}
.y6_c02269{bottom:990.987067pt;}
.y5_c02269{bottom:1013.307067pt;}
.y2_c02269{bottom:1042.347067pt;}
.y1_c02269{bottom:1060.587067pt;}
.hb_c02269{height:2.273750pt;}
.h3_c02269{height:37.343906pt;}
.h4_c02269{height:37.801094pt;}
.h9_c02269{height:38.303906pt;}
.hc_c02269{height:42.632812pt;}
.h7_c02269{height:47.464531pt;}
.h6_c02269{height:47.721094pt;}
.ha_c02269{height:47.721627pt;}
.h8_c02269{height:51.382969pt;}
.h5_c02269{height:52.012031pt;}
.h2_c02269{height:56.156250pt;}
.h1_c02269{height:56.843750pt;}
.h0_c02269{height:1122.666667pt;}
.w1_c02269{width:793.333333pt;}
.w0_c02269{width:793.626667pt;}
.x0_c02269{left:0.000000pt;}
.x1_c02269{left:113.440000pt;}
.x4_c02269{left:120.560000pt;}
.x5_c02269{left:122.800000pt;}
.x6_c02269{left:130.000000pt;}
.x3_c02269{left:132.400000pt;}
.xc_c02269{left:139.520000pt;}
.xd_c02269{left:154.240000pt;}
.x7_c02269{left:158.400000pt;}
.x8_c02269{left:200.880000pt;}
.x2_c02269{left:384.880000pt;}
.x9_c02269{left:545.840000pt;}
.xb_c02269{left:623.360000pt;}
.xa_c02269{left:635.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_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_f3558c809e58cc14a5dc8aed.woff2')format("woff");}.ff1_c02270{font-family:ff1_c02270;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02270;src:url('chunks/assets/font_df6459f2f3e6c287e7b5b5c5.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_ef83feb54b4a2f542ed83b32.woff2')format("woff");}.ff3_c02270{font-family:ff3_c02270;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_c02270;src:url('chunks/assets/font_de4e8bcc7734d7e75fdfec98.woff2')format("woff");}.ff4_c02270{font-family:ff4_c02270;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_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);}
.v2_c02270{vertical-align:-9.000000px;}
.v1_c02270{vertical-align:-5.400000px;}
.v0_c02270{vertical-align:0.000000px;}
.ls1f_c02270{letter-spacing:-0.108000px;}
.ls1e_c02270{letter-spacing:-0.079200px;}
.ls1c_c02270{letter-spacing:-0.014400px;}
.ls1d_c02270{letter-spacing:-0.007200px;}
.ls1a_c02270{letter-spacing:0.000000px;}
.ls1_c02270{letter-spacing:0.007200px;}
.ls2_c02270{letter-spacing:0.013176px;}
.ls5_c02270{letter-spacing:0.014400px;}
.lsa_c02270{letter-spacing:0.019764px;}
.ls17_c02270{letter-spacing:0.021600px;}
.ls13_c02270{letter-spacing:0.026352px;}
.ls0_c02270{letter-spacing:0.028800px;}
.ls19_c02270{letter-spacing:0.032940px;}
.lsc_c02270{letter-spacing:0.036000px;}
.ls11_c02270{letter-spacing:0.039528px;}
.lse_c02270{letter-spacing:0.043200px;}
.ls7_c02270{letter-spacing:0.046116px;}
.lsf_c02270{letter-spacing:0.057600px;}
.ls14_c02270{letter-spacing:0.059292px;}
.ls18_c02270{letter-spacing:0.064800px;}
.ls12_c02270{letter-spacing:0.065880px;}
.lsd_c02270{letter-spacing:0.072000px;}
.ls16_c02270{letter-spacing:0.072468px;}
.ls15_c02270{letter-spacing:0.079056px;}
.ls10_c02270{letter-spacing:0.079200px;}
.ls20_c02270{letter-spacing:0.092232px;}
.ls4_c02270{letter-spacing:0.144000px;}
.ls1b_c02270{letter-spacing:0.181944px;}
.ls6_c02270{letter-spacing:0.270000px;}
.ls8_c02270{letter-spacing:140.040000px;}
.ls9_c02270{letter-spacing:144.000000px;}
.ls3_c02270{letter-spacing:189.720000px;}
.lsb_c02270{letter-spacing:292.320000px;}
.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;}
}
.ws3_c02270{word-spacing:-18.057600px;}
.ws5_c02270{word-spacing:-18.028800px;}
.ws2_c02270{word-spacing:-18.014400px;}
.ws4_c02270{word-spacing:-17.892000px;}
.ws7_c02270{word-spacing:-16.529292px;}
.ws8_c02270{word-spacing:-16.516116px;}
.ws6_c02270{word-spacing:-16.509528px;}
.ws1_c02270{word-spacing:-16.489764px;}
.ws0_c02270{word-spacing:-16.483176px;}
.ws1c_c02270{word-spacing:-0.439200px;}
.ws1a_c02270{word-spacing:-0.403200px;}
.ws18_c02270{word-spacing:-0.252000px;}
.ws1b_c02270{word-spacing:-0.230400px;}
.ws17_c02270{word-spacing:-0.223200px;}
.ws1d_c02270{word-spacing:-0.194400px;}
.ws2a_c02270{word-spacing:-0.180000px;}
.ws22_c02270{word-spacing:-0.172800px;}
.ws1f_c02270{word-spacing:-0.129600px;}
.ws1e_c02270{word-spacing:-0.100800px;}
.wsa_c02270{word-spacing:-0.086400px;}
.ws16_c02270{word-spacing:-0.072000px;}
.ws20_c02270{word-spacing:-0.064800px;}
.ws19_c02270{word-spacing:-0.057600px;}
.ws14_c02270{word-spacing:-0.050400px;}
.ws21_c02270{word-spacing:-0.043200px;}
.ws15_c02270{word-spacing:-0.036000px;}
.ws11_c02270{word-spacing:-0.028800px;}
.ws28_c02270{word-spacing:-0.021600px;}
.ws13_c02270{word-spacing:-0.014400px;}
.wsb_c02270{word-spacing:-0.007200px;}
.ws9_c02270{word-spacing:0.000000px;}
.ws12_c02270{word-spacing:0.014400px;}
.ws27_c02270{word-spacing:0.019764px;}
.ws2e_c02270{word-spacing:0.026352px;}
.ws29_c02270{word-spacing:0.028800px;}
.ws2d_c02270{word-spacing:0.032940px;}
.ws10_c02270{word-spacing:0.046116px;}
.ws2b_c02270{word-spacing:0.052704px;}
.ws2c_c02270{word-spacing:0.059292px;}
.ws2f_c02270{word-spacing:0.065880px;}
.wsd_c02270{word-spacing:3.564000px;}
.wsc_c02270{word-spacing:3.585600px;}
.ws25_c02270{word-spacing:5.052996px;}
.ws26_c02270{word-spacing:5.085936px;}
.ws23_c02270{word-spacing:8.300880px;}
.ws24_c02270{word-spacing:8.340408px;}
.wsf_c02270{word-spacing:26.812800px;}
.wse_c02270{word-spacing:26.906400px;}
._1_c02270{margin-left:-1.123200px;}
._0_c02270{width:3.663000px;}
.fc0_c02270{color:rgb(0,0,0);}
.fs2_c02270{font-size:47.880000px;}
.fs1_c02270{font-size:65.880000px;}
.fs0_c02270{font-size:72.000000px;}
.y0_c02270{bottom:0.000000px;}
.y4_c02270{bottom:57.360450px;}
.y3_c02270{bottom:78.060450px;}
.y37_c02270{bottom:116.220450px;}
.y36_c02270{bottom:136.920450px;}
.y35_c02270{bottom:157.620450px;}
.y34_c02270{bottom:178.320450px;}
.y33_c02270{bottom:199.020450px;}
.y32_c02270{bottom:219.720450px;}
.y31_c02270{bottom:240.420450px;}
.y30_c02270{bottom:261.120450px;}
.y2f_c02270{bottom:281.820450px;}
.y2e_c02270{bottom:303.060450px;}
.y2d_c02270{bottom:322.680450px;}
.y2c_c02270{bottom:342.570450px;}
.y2b_c02270{bottom:361.470450px;}
.y2a_c02270{bottom:381.180450px;}
.y29_c02270{bottom:400.980450px;}
.y28_c02270{bottom:420.600450px;}
.y27_c02270{bottom:440.760600px;}
.y26_c02270{bottom:461.460600px;}
.y25_c02270{bottom:482.160600px;}
.y24_c02270{bottom:502.860600px;}
.y23_c02270{bottom:523.200540px;}
.y22_c02270{bottom:542.190450px;}
.y21_c02270{bottom:561.810450px;}
.y20_c02270{bottom:581.610450px;}
.y1f_c02270{bottom:600.600450px;}
.y1e_c02270{bottom:620.220450px;}
.y1d_c02270{bottom:640.200450px;}
.y1c_c02270{bottom:661.080450px;}
.y1b_c02270{bottom:681.780450px;}
.y1a_c02270{bottom:702.480450px;}
.y19_c02270{bottom:723.180450px;}
.y18_c02270{bottom:743.880450px;}
.y17_c02270{bottom:764.580450px;}
.y16_c02270{bottom:785.280450px;}
.y15_c02270{bottom:805.980450px;}
.y14_c02270{bottom:826.680450px;}
.y13_c02270{bottom:847.380450px;}
.y12_c02270{bottom:868.080450px;}
.y11_c02270{bottom:888.780450px;}
.y10_c02270{bottom:909.480450px;}
.yf_c02270{bottom:930.180450px;}
.ye_c02270{bottom:950.700450px;}
.yd_c02270{bottom:972.840450px;}
.yc_c02270{bottom:994.260450px;}
.yb_c02270{bottom:1015.770450px;}
.ya_c02270{bottom:1035.840450px;}
.y9_c02270{bottom:1056.540450px;}
.y8_c02270{bottom:1077.240450px;}
.y7_c02270{bottom:1099.290450px;}
.y6_c02270{bottom:1119.270450px;}
.y5_c02270{bottom:1139.970450px;}
.y2_c02270{bottom:1172.640450px;}
.y1_c02270{bottom:1193.160450px;}
.h5_c02270{height:57.805840px;}
.h7_c02270{height:58.513535px;}
.h2_c02270{height:63.175781px;}
.h6_c02270{height:63.176021px;}
.h1_c02270{height:63.949219px;}
.h3_c02270{height:65.228906px;}
.h4_c02270{height:70.628906px;}
.h0_c02270{height:1263.000000px;}
.w1_c02270{width:892.500000px;}
.w0_c02270{width:892.830000px;}
.x0_c02270{left:0.000000px;}
.x5_c02270{left:117.000000px;}
.x1_c02270{left:127.620000px;}
.x3_c02270{left:135.630000px;}
.x4_c02270{left:252.630000px;}
.x2_c02270{left:432.990000px;}
@media print{
.v2_c02270{vertical-align:-8.000000pt;}
.v1_c02270{vertical-align:-4.800000pt;}
.v0_c02270{vertical-align:0.000000pt;}
.ls1f_c02270{letter-spacing:-0.096000pt;}
.ls1e_c02270{letter-spacing:-0.070400pt;}
.ls1c_c02270{letter-spacing:-0.012800pt;}
.ls1d_c02270{letter-spacing:-0.006400pt;}
.ls1a_c02270{letter-spacing:0.000000pt;}
.ls1_c02270{letter-spacing:0.006400pt;}
.ls2_c02270{letter-spacing:0.011712pt;}
.ls5_c02270{letter-spacing:0.012800pt;}
.lsa_c02270{letter-spacing:0.017568pt;}
.ls17_c02270{letter-spacing:0.019200pt;}
.ls13_c02270{letter-spacing:0.023424pt;}
.ls0_c02270{letter-spacing:0.025600pt;}
.ls19_c02270{letter-spacing:0.029280pt;}
.lsc_c02270{letter-spacing:0.032000pt;}
.ls11_c02270{letter-spacing:0.035136pt;}
.lse_c02270{letter-spacing:0.038400pt;}
.ls7_c02270{letter-spacing:0.040992pt;}
.lsf_c02270{letter-spacing:0.051200pt;}
.ls14_c02270{letter-spacing:0.052704pt;}
.ls18_c02270{letter-spacing:0.057600pt;}
.ls12_c02270{letter-spacing:0.058560pt;}
.lsd_c02270{letter-spacing:0.064000pt;}
.ls16_c02270{letter-spacing:0.064416pt;}
.ls15_c02270{letter-spacing:0.070272pt;}
.ls10_c02270{letter-spacing:0.070400pt;}
.ls20_c02270{letter-spacing:0.081984pt;}
.ls4_c02270{letter-spacing:0.128000pt;}
.ls1b_c02270{letter-spacing:0.161728pt;}
.ls6_c02270{letter-spacing:0.240000pt;}
.ls8_c02270{letter-spacing:124.480000pt;}
.ls9_c02270{letter-spacing:128.000000pt;}
.ls3_c02270{letter-spacing:168.640000pt;}
.lsb_c02270{letter-spacing:259.840000pt;}
.ws3_c02270{word-spacing:-16.051200pt;}
.ws5_c02270{word-spacing:-16.025600pt;}
.ws2_c02270{word-spacing:-16.012800pt;}
.ws4_c02270{word-spacing:-15.904000pt;}
.ws7_c02270{word-spacing:-14.692704pt;}
.ws8_c02270{word-spacing:-14.680992pt;}
.ws6_c02270{word-spacing:-14.675136pt;}
.ws1_c02270{word-spacing:-14.657568pt;}
.ws0_c02270{word-spacing:-14.651712pt;}
.ws1c_c02270{word-spacing:-0.390400pt;}
.ws1a_c02270{word-spacing:-0.358400pt;}
.ws18_c02270{word-spacing:-0.224000pt;}
.ws1b_c02270{word-spacing:-0.204800pt;}
.ws17_c02270{word-spacing:-0.198400pt;}
.ws1d_c02270{word-spacing:-0.172800pt;}
.ws2a_c02270{word-spacing:-0.160000pt;}
.ws22_c02270{word-spacing:-0.153600pt;}
.ws1f_c02270{word-spacing:-0.115200pt;}
.ws1e_c02270{word-spacing:-0.089600pt;}
.wsa_c02270{word-spacing:-0.076800pt;}
.ws16_c02270{word-spacing:-0.064000pt;}
.ws20_c02270{word-spacing:-0.057600pt;}
.ws19_c02270{word-spacing:-0.051200pt;}
.ws14_c02270{word-spacing:-0.044800pt;}
.ws21_c02270{word-spacing:-0.038400pt;}
.ws15_c02270{word-spacing:-0.032000pt;}
.ws11_c02270{word-spacing:-0.025600pt;}
.ws28_c02270{word-spacing:-0.019200pt;}
.ws13_c02270{word-spacing:-0.012800pt;}
.wsb_c02270{word-spacing:-0.006400pt;}
.ws9_c02270{word-spacing:0.000000pt;}
.ws12_c02270{word-spacing:0.012800pt;}
.ws27_c02270{word-spacing:0.017568pt;}
.ws2e_c02270{word-spacing:0.023424pt;}
.ws29_c02270{word-spacing:0.025600pt;}
.ws2d_c02270{word-spacing:0.029280pt;}
.ws10_c02270{word-spacing:0.040992pt;}
.ws2b_c02270{word-spacing:0.046848pt;}
.ws2c_c02270{word-spacing:0.052704pt;}
.ws2f_c02270{word-spacing:0.058560pt;}
.wsd_c02270{word-spacing:3.168000pt;}
.wsc_c02270{word-spacing:3.187200pt;}
.ws25_c02270{word-spacing:4.491552pt;}
.ws26_c02270{word-spacing:4.520832pt;}
.ws23_c02270{word-spacing:7.378560pt;}
.ws24_c02270{word-spacing:7.413696pt;}
.wsf_c02270{word-spacing:23.833600pt;}
.wse_c02270{word-spacing:23.916800pt;}
._1_c02270{margin-left:-0.998400pt;}
._0_c02270{width:3.256000pt;}
.fs2_c02270{font-size:42.560000pt;}
.fs1_c02270{font-size:58.560000pt;}
.fs0_c02270{font-size:64.000000pt;}
.y0_c02270{bottom:0.000000pt;}
.y4_c02270{bottom:50.987067pt;}
.y3_c02270{bottom:69.387067pt;}
.y37_c02270{bottom:103.307067pt;}
.y36_c02270{bottom:121.707067pt;}
.y35_c02270{bottom:140.107067pt;}
.y34_c02270{bottom:158.507067pt;}
.y33_c02270{bottom:176.907067pt;}
.y32_c02270{bottom:195.307067pt;}
.y31_c02270{bottom:213.707067pt;}
.y30_c02270{bottom:232.107067pt;}
.y2f_c02270{bottom:250.507067pt;}
.y2e_c02270{bottom:269.387067pt;}
.y2d_c02270{bottom:286.827067pt;}
.y2c_c02270{bottom:304.507067pt;}
.y2b_c02270{bottom:321.307067pt;}
.y2a_c02270{bottom:338.827067pt;}
.y29_c02270{bottom:356.427067pt;}
.y28_c02270{bottom:373.867067pt;}
.y27_c02270{bottom:391.787200pt;}
.y26_c02270{bottom:410.187200pt;}
.y25_c02270{bottom:428.587200pt;}
.y24_c02270{bottom:446.987200pt;}
.y23_c02270{bottom:465.067147pt;}
.y22_c02270{bottom:481.947067pt;}
.y21_c02270{bottom:499.387067pt;}
.y20_c02270{bottom:516.987067pt;}
.y1f_c02270{bottom:533.867067pt;}
.y1e_c02270{bottom:551.307067pt;}
.y1d_c02270{bottom:569.067067pt;}
.y1c_c02270{bottom:587.627067pt;}
.y1b_c02270{bottom:606.027067pt;}
.y1a_c02270{bottom:624.427067pt;}
.y19_c02270{bottom:642.827067pt;}
.y18_c02270{bottom:661.227067pt;}
.y17_c02270{bottom:679.627067pt;}
.y16_c02270{bottom:698.027067pt;}
.y15_c02270{bottom:716.427067pt;}
.y14_c02270{bottom:734.827067pt;}
.y13_c02270{bottom:753.227067pt;}
.y12_c02270{bottom:771.627067pt;}
.y11_c02270{bottom:790.027067pt;}
.y10_c02270{bottom:808.427067pt;}
.yf_c02270{bottom:826.827067pt;}
.ye_c02270{bottom:845.067067pt;}
.yd_c02270{bottom:864.747067pt;}
.yc_c02270{bottom:883.787067pt;}
.yb_c02270{bottom:902.907067pt;}
.ya_c02270{bottom:920.747067pt;}
.y9_c02270{bottom:939.147067pt;}
.y8_c02270{bottom:957.547067pt;}
.y7_c02270{bottom:977.147067pt;}
.y6_c02270{bottom:994.907067pt;}
.y5_c02270{bottom:1013.307067pt;}
.y2_c02270{bottom:1042.347067pt;}
.y1_c02270{bottom:1060.587067pt;}
.h5_c02270{height:51.382969pt;}
.h7_c02270{height:52.012031pt;}
.h2_c02270{height:56.156250pt;}
.h6_c02270{height:56.156463pt;}
.h1_c02270{height:56.843750pt;}
.h3_c02270{height:57.981250pt;}
.h4_c02270{height:62.781250pt;}
.h0_c02270{height:1122.666667pt;}
.w1_c02270{width:793.333333pt;}
.w0_c02270{width:793.626667pt;}
.x0_c02270{left:0.000000pt;}
.x5_c02270{left:104.000000pt;}
.x1_c02270{left:113.440000pt;}
.x3_c02270{left:120.560000pt;}
.x4_c02270{left:224.560000pt;}
.x2_c02270{left:384.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_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_f1d141f9d2dd5d52c3df88e2.woff2')format("woff");}.ff1_c02271{font-family:ff1_c02271;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02271;src:url('chunks/assets/font_827eccfdec533f2d4eb5f080.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_a946be0967b1cc65a2c4af61.woff2')format("woff");}.ff3_c02271{font-family:ff3_c02271;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02271;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02271{font-family:ff4_c02271;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;}
.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;}
.ls1d_c02271{letter-spacing:-0.334800px;}
.ls24_c02271{letter-spacing:-0.324000px;}
.ls1f_c02271{letter-spacing:-0.259200px;}
.ls1b_c02271{letter-spacing:-0.183600px;}
.ls20_c02271{letter-spacing:-0.156600px;}
.ls28_c02271{letter-spacing:-0.136800px;}
.ls22_c02271{letter-spacing:-0.118800px;}
.ls2a_c02271{letter-spacing:-0.115200px;}
.ls26_c02271{letter-spacing:-0.086400px;}
.ls29_c02271{letter-spacing:-0.064800px;}
.ls2c_c02271{letter-spacing:-0.060120px;}
.ls23_c02271{letter-spacing:-0.059400px;}
.ls1a_c02271{letter-spacing:-0.048600px;}
.ls2f_c02271{letter-spacing:-0.042084px;}
.ls1c_c02271{letter-spacing:-0.037800px;}
.ls1e_c02271{letter-spacing:-0.016200px;}
.ls2b_c02271{letter-spacing:-0.014400px;}
.ls18_c02271{letter-spacing:-0.007200px;}
.ls17_c02271{letter-spacing:0.000000px;}
.ls1_c02271{letter-spacing:0.014400px;}
.ls6_c02271{letter-spacing:0.016200px;}
.ls5_c02271{letter-spacing:0.021600px;}
.lsa_c02271{letter-spacing:0.027000px;}
.ls0_c02271{letter-spacing:0.028800px;}
.lsf_c02271{letter-spacing:0.032400px;}
.ls4_c02271{letter-spacing:0.036000px;}
.ls7_c02271{letter-spacing:0.037800px;}
.ls3_c02271{letter-spacing:0.043200px;}
.ls21_c02271{letter-spacing:0.048600px;}
.lsd_c02271{letter-spacing:0.054000px;}
.ls19_c02271{letter-spacing:0.054108px;}
.ls15_c02271{letter-spacing:0.059400px;}
.ls8_c02271{letter-spacing:0.070200px;}
.ls2_c02271{letter-spacing:0.072000px;}
.ls2e_c02271{letter-spacing:0.078156px;}
.ls27_c02271{letter-spacing:0.081000px;}
.lsb_c02271{letter-spacing:0.086400px;}
.ls16_c02271{letter-spacing:0.090180px;}
.ls9_c02271{letter-spacing:0.102600px;}
.lse_c02271{letter-spacing:0.108000px;}
.ls11_c02271{letter-spacing:0.124200px;}
.ls2d_c02271{letter-spacing:0.126252px;}
.lsc_c02271{letter-spacing:0.151200px;}
.ls25_c02271{letter-spacing:0.172800px;}
.ls12_c02271{letter-spacing:0.178200px;}
.ls10_c02271{letter-spacing:0.183600px;}
.ls14_c02271{letter-spacing:0.288000px;}
.ls13_c02271{letter-spacing:0.648000px;}
.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;}
}
.ws1e_c02271{word-spacing:-72.000000px;}
.ws22_c02271{word-spacing:-60.120000px;}
.wse_c02271{word-spacing:-54.000000px;}
.ws28_c02271{word-spacing:-0.259200px;}
.ws4_c02271{word-spacing:-0.237600px;}
.ws1c_c02271{word-spacing:-0.232200px;}
.ws19_c02271{word-spacing:-0.226800px;}
.wsf_c02271{word-spacing:-0.205200px;}
.ws25_c02271{word-spacing:-0.187200px;}
.ws16_c02271{word-spacing:-0.178200px;}
.ws12_c02271{word-spacing:-0.162000px;}
.ws26_c02271{word-spacing:-0.158400px;}
.ws6_c02271{word-spacing:-0.156600px;}
.wsd_c02271{word-spacing:-0.140400px;}
.ws5_c02271{word-spacing:-0.124200px;}
.ws1a_c02271{word-spacing:-0.113400px;}
.ws11_c02271{word-spacing:-0.108000px;}
.ws1f_c02271{word-spacing:-0.100800px;}
.ws17_c02271{word-spacing:-0.097200px;}
.ws3_c02271{word-spacing:-0.091800px;}
.ws13_c02271{word-spacing:-0.086400px;}
.ws7_c02271{word-spacing:-0.081000px;}
.ws10_c02271{word-spacing:-0.075600px;}
.ws0_c02271{word-spacing:-0.070200px;}
.ws21_c02271{word-spacing:-0.057600px;}
.ws2_c02271{word-spacing:-0.054000px;}
.wsa_c02271{word-spacing:-0.037800px;}
.ws27_c02271{word-spacing:-0.036000px;}
.ws24_c02271{word-spacing:-0.014400px;}
.ws1d_c02271{word-spacing:-0.007200px;}
.ws1_c02271{word-spacing:-0.005400px;}
.ws23_c02271{word-spacing:0.000000px;}
.ws15_c02271{word-spacing:0.005400px;}
.ws1b_c02271{word-spacing:0.032400px;}
.ws20_c02271{word-spacing:0.043200px;}
.ws14_c02271{word-spacing:0.064800px;}
.wsc_c02271{word-spacing:0.102600px;}
.ws8_c02271{word-spacing:0.129600px;}
.wsb_c02271{word-spacing:0.205200px;}
.ws18_c02271{word-spacing:0.270000px;}
.ws9_c02271{word-spacing:0.280800px;}
._0_c02271{margin-left:-1.108800px;}
._1_c02271{width:1.344600px;}
.fc0_c02271{color:rgb(0,0,0);}
.fs1_c02271{font-size:47.880000px;}
.fs4_c02271{font-size:54.000000px;}
.fs3_c02271{font-size:60.120000px;}
.fs0_c02271{font-size:72.000000px;}
.fs2_c02271{font-size:83.880000px;}
.y0_c02271{bottom:0.000000px;}
.y4_c02271{bottom:57.360450px;}
.y3_c02271{bottom:78.060450px;}
.yf_c02271{bottom:119.550450px;}
.y26_c02271{bottom:148.260450px;}
.y30_c02271{bottom:149.610450px;}
.y27_c02271{bottom:178.410630px;}
.y31_c02271{bottom:179.760000px;}
.y28_c02271{bottom:208.560810px;}
.y32_c02271{bottom:209.820450px;}
.y29_c02271{bottom:238.710990px;}
.y33_c02271{bottom:239.970000px;}
.y2a_c02271{bottom:268.861170px;}
.y34_c02271{bottom:270.119550px;}
.y2b_c02271{bottom:299.011350px;}
.y35_c02271{bottom:300.269100px;}
.y2c_c02271{bottom:329.161530px;}
.y36_c02271{bottom:330.418650px;}
.y2d_c02271{bottom:359.311710px;}
.y37_c02271{bottom:360.568200px;}
.y2e_c02271{bottom:389.461890px;}
.y38_c02271{bottom:390.720000px;}
.y2f_c02271{bottom:419.612070px;}
.y39_c02271{bottom:420.869550px;}
.y3b_c02271{bottom:457.320450px;}
.y3a_c02271{bottom:511.950600px;}
.ye_c02271{bottom:544.260450px;}
.yd_c02271{bottom:575.490450px;}
.yc_c02271{bottom:606.360450px;}
.yb_c02271{bottom:627.600450px;}
.ya_c02271{bottom:647.310450px;}
.y10_c02271{bottom:672.960450px;}
.y1a_c02271{bottom:674.220450px;}
.y11_c02271{bottom:701.760936px;}
.y1b_c02271{bottom:703.020000px;}
.y12_c02271{bottom:730.471242px;}
.y1c_c02271{bottom:731.730450px;}
.y13_c02271{bottom:759.271728px;}
.y1d_c02271{bottom:760.530000px;}
.y14_c02271{bottom:787.982034px;}
.y1e_c02271{bottom:789.240450px;}
.y15_c02271{bottom:816.782520px;}
.y1f_c02271{bottom:818.040000px;}
.y16_c02271{bottom:845.492826px;}
.y20_c02271{bottom:846.750450px;}
.y17_c02271{bottom:874.293312px;}
.y21_c02271{bottom:875.550000px;}
.y18_c02271{bottom:903.003618px;}
.y22_c02271{bottom:904.350000px;}
.y19_c02271{bottom:931.804104px;}
.y23_c02271{bottom:933.060450px;}
.y25_c02271{bottom:982.650450px;}
.y24_c02271{bottom:1011.090450px;}
.y9_c02271{bottom:1043.400450px;}
.y8_c02271{bottom:1074.630450px;}
.y7_c02271{bottom:1105.500450px;}
.y6_c02271{bottom:1124.850450px;}
.y5_c02271{bottom:1139.970450px;}
.y2_c02271{bottom:1172.640450px;}
.y1_c02271{bottom:1193.160450px;}
.h6_c02271{height:39.208008px;}
.h7_c02271{height:39.209808px;}
.h9_c02271{height:39.217008px;}
.h3_c02271{height:42.526230px;}
.h5_c02271{height:43.651582px;}
.h8_c02271{height:52.277344px;}
.h2_c02271{height:63.175781px;}
.h1_c02271{height:63.949219px;}
.h4_c02271{height:74.500840px;}
.h0_c02271{height:1263.000000px;}
.w1_c02271{width:892.500000px;}
.w0_c02271{width:892.830000px;}
.x0_c02271{left:0.000000px;}
.x1_c02271{left:127.620000px;}
.x12_c02271{left:139.590000px;}
.x16_c02271{left:142.657200px;}
.x8_c02271{left:148.950000px;}
.x4_c02271{left:154.080000px;}
.x13_c02271{left:160.741800px;}
.x17_c02271{left:174.970800px;}
.x15_c02271{left:183.155850px;}
.x27_c02271{left:186.669900px;}
.x18_c02271{left:205.020450px;}
.x28_c02271{left:218.983500px;}
.x26_c02271{left:227.165850px;}
.x19_c02271{left:231.572250px;}
.x14_c02271{left:234.904050px;}
.x29_c02271{left:249.031350px;}
.x1a_c02271{left:268.290000px;}
.x7_c02271{left:269.640000px;}
.x2a_c02271{left:275.583150px;}
.x25_c02271{left:278.914050px;}
.x3_c02271{left:340.560000px;}
.x6_c02271{left:430.560000px;}
.x2_c02271{left:432.990000px;}
.x2b_c02271{left:475.200000px;}
.x1b_c02271{left:507.240000px;}
.x24_c02271{left:515.971800px;}
.x23_c02271{left:530.372043px;}
.x22_c02271{left:559.531746px;}
.x21_c02271{left:571.321278px;}
.x20_c02271{left:580.050702px;}
.x1f_c02271{left:588.780126px;}
.x1e_c02271{left:626.310036px;}
.x11_c02271{left:656.097696px;}
.x10_c02271{left:661.497975px;}
.xf_c02271{left:676.708335px;}
.xe_c02271{left:682.828551px;}
.xd_c02271{left:686.698776px;}
.xc_c02271{left:697.409154px;}
.x1d_c02271{left:699.300225px;}
.xb_c02271{left:714.239748px;}
.x1c_c02271{left:716.760576px;}
.xa_c02271{left:721.079901px;}
.x9_c02271{left:726.390000px;}
.x5_c02271{left:768.870000px;}
@media print{
.v0_c02271{vertical-align:0.000000pt;}
.ls1d_c02271{letter-spacing:-0.297600pt;}
.ls24_c02271{letter-spacing:-0.288000pt;}
.ls1f_c02271{letter-spacing:-0.230400pt;}
.ls1b_c02271{letter-spacing:-0.163200pt;}
.ls20_c02271{letter-spacing:-0.139200pt;}
.ls28_c02271{letter-spacing:-0.121600pt;}
.ls22_c02271{letter-spacing:-0.105600pt;}
.ls2a_c02271{letter-spacing:-0.102400pt;}
.ls26_c02271{letter-spacing:-0.076800pt;}
.ls29_c02271{letter-spacing:-0.057600pt;}
.ls2c_c02271{letter-spacing:-0.053440pt;}
.ls23_c02271{letter-spacing:-0.052800pt;}
.ls1a_c02271{letter-spacing:-0.043200pt;}
.ls2f_c02271{letter-spacing:-0.037408pt;}
.ls1c_c02271{letter-spacing:-0.033600pt;}
.ls1e_c02271{letter-spacing:-0.014400pt;}
.ls2b_c02271{letter-spacing:-0.012800pt;}
.ls18_c02271{letter-spacing:-0.006400pt;}
.ls17_c02271{letter-spacing:0.000000pt;}
.ls1_c02271{letter-spacing:0.012800pt;}
.ls6_c02271{letter-spacing:0.014400pt;}
.ls5_c02271{letter-spacing:0.019200pt;}
.lsa_c02271{letter-spacing:0.024000pt;}
.ls0_c02271{letter-spacing:0.025600pt;}
.lsf_c02271{letter-spacing:0.028800pt;}
.ls4_c02271{letter-spacing:0.032000pt;}
.ls7_c02271{letter-spacing:0.033600pt;}
.ls3_c02271{letter-spacing:0.038400pt;}
.ls21_c02271{letter-spacing:0.043200pt;}
.lsd_c02271{letter-spacing:0.048000pt;}
.ls19_c02271{letter-spacing:0.048096pt;}
.ls15_c02271{letter-spacing:0.052800pt;}
.ls8_c02271{letter-spacing:0.062400pt;}
.ls2_c02271{letter-spacing:0.064000pt;}
.ls2e_c02271{letter-spacing:0.069472pt;}
.ls27_c02271{letter-spacing:0.072000pt;}
.lsb_c02271{letter-spacing:0.076800pt;}
.ls16_c02271{letter-spacing:0.080160pt;}
.ls9_c02271{letter-spacing:0.091200pt;}
.lse_c02271{letter-spacing:0.096000pt;}
.ls11_c02271{letter-spacing:0.110400pt;}
.ls2d_c02271{letter-spacing:0.112224pt;}
.lsc_c02271{letter-spacing:0.134400pt;}
.ls25_c02271{letter-spacing:0.153600pt;}
.ls12_c02271{letter-spacing:0.158400pt;}
.ls10_c02271{letter-spacing:0.163200pt;}
.ls14_c02271{letter-spacing:0.256000pt;}
.ls13_c02271{letter-spacing:0.576000pt;}
.ws1e_c02271{word-spacing:-64.000000pt;}
.ws22_c02271{word-spacing:-53.440000pt;}
.wse_c02271{word-spacing:-48.000000pt;}
.ws28_c02271{word-spacing:-0.230400pt;}
.ws4_c02271{word-spacing:-0.211200pt;}
.ws1c_c02271{word-spacing:-0.206400pt;}
.ws19_c02271{word-spacing:-0.201600pt;}
.wsf_c02271{word-spacing:-0.182400pt;}
.ws25_c02271{word-spacing:-0.166400pt;}
.ws16_c02271{word-spacing:-0.158400pt;}
.ws12_c02271{word-spacing:-0.144000pt;}
.ws26_c02271{word-spacing:-0.140800pt;}
.ws6_c02271{word-spacing:-0.139200pt;}
.wsd_c02271{word-spacing:-0.124800pt;}
.ws5_c02271{word-spacing:-0.110400pt;}
.ws1a_c02271{word-spacing:-0.100800pt;}
.ws11_c02271{word-spacing:-0.096000pt;}
.ws1f_c02271{word-spacing:-0.089600pt;}
.ws17_c02271{word-spacing:-0.086400pt;}
.ws3_c02271{word-spacing:-0.081600pt;}
.ws13_c02271{word-spacing:-0.076800pt;}
.ws7_c02271{word-spacing:-0.072000pt;}
.ws10_c02271{word-spacing:-0.067200pt;}
.ws0_c02271{word-spacing:-0.062400pt;}
.ws21_c02271{word-spacing:-0.051200pt;}
.ws2_c02271{word-spacing:-0.048000pt;}
.wsa_c02271{word-spacing:-0.033600pt;}
.ws27_c02271{word-spacing:-0.032000pt;}
.ws24_c02271{word-spacing:-0.012800pt;}
.ws1d_c02271{word-spacing:-0.006400pt;}
.ws1_c02271{word-spacing:-0.004800pt;}
.ws23_c02271{word-spacing:0.000000pt;}
.ws15_c02271{word-spacing:0.004800pt;}
.ws1b_c02271{word-spacing:0.028800pt;}
.ws20_c02271{word-spacing:0.038400pt;}
.ws14_c02271{word-spacing:0.057600pt;}
.wsc_c02271{word-spacing:0.091200pt;}
.ws8_c02271{word-spacing:0.115200pt;}
.wsb_c02271{word-spacing:0.182400pt;}
.ws18_c02271{word-spacing:0.240000pt;}
.ws9_c02271{word-spacing:0.249600pt;}
._0_c02271{margin-left:-0.985600pt;}
._1_c02271{width:1.195200pt;}
.fs1_c02271{font-size:42.560000pt;}
.fs4_c02271{font-size:48.000000pt;}
.fs3_c02271{font-size:53.440000pt;}
.fs0_c02271{font-size:64.000000pt;}
.fs2_c02271{font-size:74.560000pt;}
.y0_c02271{bottom:0.000000pt;}
.y4_c02271{bottom:50.987067pt;}
.y3_c02271{bottom:69.387067pt;}
.yf_c02271{bottom:106.267067pt;}
.y26_c02271{bottom:131.787067pt;}
.y30_c02271{bottom:132.987067pt;}
.y27_c02271{bottom:158.587227pt;}
.y31_c02271{bottom:159.786667pt;}
.y28_c02271{bottom:185.387387pt;}
.y32_c02271{bottom:186.507067pt;}
.y29_c02271{bottom:212.187547pt;}
.y33_c02271{bottom:213.306667pt;}
.y2a_c02271{bottom:238.987707pt;}
.y34_c02271{bottom:240.106267pt;}
.y2b_c02271{bottom:265.787867pt;}
.y35_c02271{bottom:266.905867pt;}
.y2c_c02271{bottom:292.588027pt;}
.y36_c02271{bottom:293.705467pt;}
.y2d_c02271{bottom:319.388187pt;}
.y37_c02271{bottom:320.505067pt;}
.y2e_c02271{bottom:346.188347pt;}
.y38_c02271{bottom:347.306667pt;}
.y2f_c02271{bottom:372.988507pt;}
.y39_c02271{bottom:374.106267pt;}
.y3b_c02271{bottom:406.507067pt;}
.y3a_c02271{bottom:455.067200pt;}
.ye_c02271{bottom:483.787067pt;}
.yd_c02271{bottom:511.547067pt;}
.yc_c02271{bottom:538.987067pt;}
.yb_c02271{bottom:557.867067pt;}
.ya_c02271{bottom:575.387067pt;}
.y10_c02271{bottom:598.187067pt;}
.y1a_c02271{bottom:599.307067pt;}
.y11_c02271{bottom:623.787499pt;}
.y1b_c02271{bottom:624.906667pt;}
.y12_c02271{bottom:649.307771pt;}
.y1c_c02271{bottom:650.427067pt;}
.y13_c02271{bottom:674.908203pt;}
.y1d_c02271{bottom:676.026667pt;}
.y14_c02271{bottom:700.428475pt;}
.y1e_c02271{bottom:701.547067pt;}
.y15_c02271{bottom:726.028907pt;}
.y1f_c02271{bottom:727.146667pt;}
.y16_c02271{bottom:751.549179pt;}
.y20_c02271{bottom:752.667067pt;}
.y17_c02271{bottom:777.149611pt;}
.y21_c02271{bottom:778.266667pt;}
.y18_c02271{bottom:802.669883pt;}
.y22_c02271{bottom:803.866667pt;}
.y19_c02271{bottom:828.270315pt;}
.y23_c02271{bottom:829.387067pt;}
.y25_c02271{bottom:873.467067pt;}
.y24_c02271{bottom:898.747067pt;}
.y9_c02271{bottom:927.467067pt;}
.y8_c02271{bottom:955.227067pt;}
.y7_c02271{bottom:982.667067pt;}
.y6_c02271{bottom:999.867067pt;}
.y5_c02271{bottom:1013.307067pt;}
.y2_c02271{bottom:1042.347067pt;}
.y1_c02271{bottom:1060.587067pt;}
.h6_c02271{height:34.851562pt;}
.h7_c02271{height:34.853163pt;}
.h9_c02271{height:34.859563pt;}
.h3_c02271{height:37.801094pt;}
.h5_c02271{height:38.801406pt;}
.h8_c02271{height:46.468750pt;}
.h2_c02271{height:56.156250pt;}
.h1_c02271{height:56.843750pt;}
.h4_c02271{height:66.222969pt;}
.h0_c02271{height:1122.666667pt;}
.w1_c02271{width:793.333333pt;}
.w0_c02271{width:793.626667pt;}
.x0_c02271{left:0.000000pt;}
.x1_c02271{left:113.440000pt;}
.x12_c02271{left:124.080000pt;}
.x16_c02271{left:126.806400pt;}
.x8_c02271{left:132.400000pt;}
.x4_c02271{left:136.960000pt;}
.x13_c02271{left:142.881600pt;}
.x17_c02271{left:155.529600pt;}
.x15_c02271{left:162.805200pt;}
.x27_c02271{left:165.928800pt;}
.x18_c02271{left:182.240400pt;}
.x28_c02271{left:194.652000pt;}
.x26_c02271{left:201.925200pt;}
.x19_c02271{left:205.842000pt;}
.x14_c02271{left:208.803600pt;}
.x29_c02271{left:221.361200pt;}
.x1a_c02271{left:238.480000pt;}
.x7_c02271{left:239.680000pt;}
.x2a_c02271{left:244.962800pt;}
.x25_c02271{left:247.923600pt;}
.x3_c02271{left:302.720000pt;}
.x6_c02271{left:382.720000pt;}
.x2_c02271{left:384.880000pt;}
.x2b_c02271{left:422.400000pt;}
.x1b_c02271{left:450.880000pt;}
.x24_c02271{left:458.641600pt;}
.x23_c02271{left:471.441816pt;}
.x22_c02271{left:497.361552pt;}
.x21_c02271{left:507.841136pt;}
.x20_c02271{left:515.600624pt;}
.x1f_c02271{left:523.360112pt;}
.x1e_c02271{left:556.720032pt;}
.x11_c02271{left:583.197952pt;}
.x10_c02271{left:587.998200pt;}
.xf_c02271{left:601.518520pt;}
.xe_c02271{left:606.958712pt;}
.xd_c02271{left:610.398912pt;}
.xc_c02271{left:619.919248pt;}
.x1d_c02271{left:621.600200pt;}
.xb_c02271{left:634.879776pt;}
.x1c_c02271{left:637.120512pt;}
.xa_c02271{left:640.959912pt;}
.x9_c02271{left:645.680000pt;}
.x5_c02271{left:683.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_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_dec4b4d6f3b7f182be41db17.woff2')format("woff");}.ff1_c02272{font-family:ff1_c02272;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02272;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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;}
.v2_c02272{vertical-align:1.440000px;}
.v1_c02272{vertical-align:78.120000px;}
.ls37_c02272{letter-spacing:-0.014400px;}
.ls38_c02272{letter-spacing:-0.006012px;}
.ls36_c02272{letter-spacing:0.000000px;}
.ls2f_c02272{letter-spacing:0.006588px;}
.ls2c_c02272{letter-spacing:0.013176px;}
.ls1_c02272{letter-spacing:0.014400px;}
.ls31_c02272{letter-spacing:0.019764px;}
.ls2_c02272{letter-spacing:0.021600px;}
.ls33_c02272{letter-spacing:0.026352px;}
.ls0_c02272{letter-spacing:0.028800px;}
.ls4_c02272{letter-spacing:0.039528px;}
.ls39_c02272{letter-spacing:0.046116px;}
.ls30_c02272{letter-spacing:0.052704px;}
.ls1c_c02272{letter-spacing:0.059292px;}
.lse_c02272{letter-spacing:0.065880px;}
.ls27_c02272{letter-spacing:0.072468px;}
.ls15_c02272{letter-spacing:0.079056px;}
.ls6_c02272{letter-spacing:0.092232px;}
.ls17_c02272{letter-spacing:0.098820px;}
.lsa_c02272{letter-spacing:0.138348px;}
.ls5_c02272{letter-spacing:0.144288px;}
.ls11_c02272{letter-spacing:0.151524px;}
.ls25_c02272{letter-spacing:0.158112px;}
.ls3_c02272{letter-spacing:0.164700px;}
.ls19_c02272{letter-spacing:0.177876px;}
.ls8_c02272{letter-spacing:0.180000px;}
.ls26_c02272{letter-spacing:64.080000px;}
.ls22_c02272{letter-spacing:66.240000px;}
.ls1a_c02272{letter-spacing:66.600000px;}
.ls1b_c02272{letter-spacing:66.960000px;}
.ls10_c02272{letter-spacing:99.000000px;}
.ls12_c02272{letter-spacing:99.360000px;}
.ls13_c02272{letter-spacing:99.720000px;}
.ls23_c02272{letter-spacing:117.450000px;}
.ls9_c02272{letter-spacing:132.120000px;}
.lsb_c02272{letter-spacing:132.480000px;}
.lsd_c02272{letter-spacing:132.840000px;}
.lsc_c02272{letter-spacing:150.300000px;}
.ls32_c02272{letter-spacing:165.240000px;}
.ls34_c02272{letter-spacing:165.600000px;}
.ls2d_c02272{letter-spacing:165.960000px;}
.ls1f_c02272{letter-spacing:183.330000px;}
.ls20_c02272{letter-spacing:183.420000px;}
.ls14_c02272{letter-spacing:186.480000px;}
.ls28_c02272{letter-spacing:204.840000px;}
.ls29_c02272{letter-spacing:214.560000px;}
.ls1e_c02272{letter-spacing:214.920000px;}
.ls21_c02272{letter-spacing:215.279400px;}
.ls16_c02272{letter-spacing:234.360000px;}
.ls18_c02272{letter-spacing:252.360000px;}
.ls24_c02272{letter-spacing:268.920000px;}
.ls1d_c02272{letter-spacing:281.520000px;}
.lsf_c02272{letter-spacing:296.640000px;}
.ls7_c02272{letter-spacing:314.640000px;}
.ls35_c02272{letter-spacing:329.400000px;}
.ls2e_c02272{letter-spacing:394.200000px;}
.ls2a_c02272{letter-spacing:414.720000px;}
.ls2b_c02272{letter-spacing:898.020000px;}
.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;}
}
.ws5_c02272{word-spacing:-16.647876px;}
.ws0_c02272{word-spacing:-16.634700px;}
.ws12_c02272{word-spacing:-16.628112px;}
.ws6_c02272{word-spacing:-16.621524px;}
.ws2_c02272{word-spacing:-16.608348px;}
.wsb_c02272{word-spacing:-16.568820px;}
.ws10_c02272{word-spacing:-16.562232px;}
.ws13_c02272{word-spacing:-16.542468px;}
.ws19_c02272{word-spacing:-16.535880px;}
.wse_c02272{word-spacing:-16.529292px;}
.ws1_c02272{word-spacing:-16.509528px;}
.ws23_c02272{word-spacing:-0.108000px;}
.ws21_c02272{word-spacing:-0.086400px;}
.ws27_c02272{word-spacing:-0.054108px;}
.ws22_c02272{word-spacing:-0.014400px;}
.ws20_c02272{word-spacing:0.000000px;}
.ws29_c02272{word-spacing:0.013176px;}
.ws2c_c02272{word-spacing:0.019764px;}
.ws28_c02272{word-spacing:0.026352px;}
.ws24_c02272{word-spacing:0.032940px;}
.ws26_c02272{word-spacing:0.039528px;}
.ws2e_c02272{word-spacing:0.046116px;}
.ws2a_c02272{word-spacing:0.052704px;}
.ws2f_c02272{word-spacing:0.065880px;}
.ws2d_c02272{word-spacing:0.072468px;}
.ws2b_c02272{word-spacing:0.079056px;}
.ws25_c02272{word-spacing:0.085644px;}
.ws14_c02272{word-spacing:65.089440px;}
.ws11_c02272{word-spacing:67.238496px;}
.wsd_c02272{word-spacing:67.642380px;}
.ws8_c02272{word-spacing:99.996372px;}
.wsc_c02272{word-spacing:99.998496px;}
.ws9_c02272{word-spacing:100.402380px;}
.ws1e_c02272{word-spacing:100.426608px;}
.ws15_c02272{word-spacing:100.933020px;}
.ws1c_c02272{word-spacing:133.116372px;}
.ws4_c02272{word-spacing:133.546608px;}
.ws1f_c02272{word-spacing:134.053020px;}
.ws7_c02272{word-spacing:150.082380px;}
.ws1b_c02272{word-spacing:150.106608px;}
.wsa_c02272{word-spacing:182.842380px;}
.ws3_c02272{word-spacing:182.866608px;}
.ws16_c02272{word-spacing:215.831448px;}
.ws18_c02272{word-spacing:215.833572px;}
.ws1d_c02272{word-spacing:215.986608px;}
.wsf_c02272{word-spacing:216.083304px;}
.ws17_c02272{word-spacing:216.270000px;}
.ws1a_c02272{word-spacing:1147.043304px;}
._0_c02272{margin-left:-1.108800px;}
._4_c02272{width:104.490000px;}
._5_c02272{width:115.883640px;}
._6_c02272{width:133.276716px;}
._3_c02272{width:169.288704px;}
._2_c02272{width:216.639792px;}
._7_c02272{width:232.020612px;}
._1_c02272{width:485.985600px;}
._8_c02272{width:612.126720px;}
._a_c02272{width:644.886720px;}
._9_c02272{width:665.158248px;}
.fc0_c02272{color:rgb(0,0,0);}
.fs4_c02272{font-size:11.880000px;}
.fs3_c02272{font-size:54.000000px;}
.fs2_c02272{font-size:60.120000px;}
.fs1_c02272{font-size:65.880000px;}
.fs0_c02272{font-size:72.000000px;}
.y0_c02272{bottom:0.000000px;}
.y4_c02272{bottom:57.360450px;}
.y3_c02272{bottom:78.060450px;}
.y41_c02272{bottom:124.410639px;}
.y40_c02272{bottom:127.830594px;}
.y3f_c02272{bottom:131.340540px;}
.y3e_c02272{bottom:134.760495px;}
.y3d_c02272{bottom:138.180450px;}
.y3c_c02272{bottom:145.020450px;}
.y3b_c02272{bottom:165.720450px;}
.y3a_c02272{bottom:186.420450px;}
.y39_c02272{bottom:205.410450px;}
.y38_c02272{bottom:225.120600px;}
.y37_c02272{bottom:245.820450px;}
.y36_c02272{bottom:266.520450px;}
.y35_c02272{bottom:285.510450px;}
.y34_c02272{bottom:304.500450px;}
.y33_c02272{bottom:323.490450px;}
.y32_c02272{bottom:342.480450px;}
.y31_c02272{bottom:362.730450px;}
.y2f_c02272{bottom:380.370450px;}
.y2d_c02272{bottom:398.820450px;}
.y2e_c02272{bottom:399.360600px;}
.y30_c02272{bottom:418.350450px;}
.y2c_c02272{bottom:438.870450px;}
.y2b_c02272{bottom:454.440000px;}
.y2a_c02272{bottom:469.920450px;}
.y29_c02272{bottom:486.480450px;}
.y28_c02272{bottom:507.180600px;}
.y27_c02272{bottom:527.880450px;}
.y26_c02272{bottom:546.870450px;}
.y25_c02272{bottom:566.580450px;}
.y24_c02272{bottom:587.280450px;}
.y23_c02272{bottom:607.980450px;}
.y22_c02272{bottom:626.970450px;}
.y21_c02272{bottom:645.960450px;}
.y20_c02272{bottom:664.950450px;}
.y1f_c02272{bottom:683.850450px;}
.y1e_c02272{bottom:702.480450px;}
.y1d_c02272{bottom:720.120450px;}
.y1a_c02272{bottom:738.480450px;}
.y1c_c02272{bottom:739.110450px;}
.y1b_c02272{bottom:758.100450px;}
.y19_c02272{bottom:778.620450px;}
.y18_c02272{bottom:794.100900px;}
.y17_c02272{bottom:809.670450px;}
.y16_c02272{bottom:826.230450px;}
.y15_c02272{bottom:846.930600px;}
.y14_c02272{bottom:867.630450px;}
.y13_c02272{bottom:886.620450px;}
.y12_c02272{bottom:906.330450px;}
.y11_c02272{bottom:927.030450px;}
.y10_c02272{bottom:947.730450px;}
.yf_c02272{bottom:966.720450px;}
.ye_c02272{bottom:985.620450px;}
.yd_c02272{bottom:1004.610450px;}
.yc_c02272{bottom:1023.600450px;}
.yb_c02272{bottom:1042.230450px;}
.y9_c02272{bottom:1059.870450px;}
.y7_c02272{bottom:1078.230450px;}
.y8_c02272{bottom:1078.770450px;}
.ya_c02272{bottom:1097.760450px;}
.y6_c02272{bottom:1117.020450px;}
.y5_c02272{bottom:1139.970450px;}
.y2_c02272{bottom:1172.640450px;}
.y1_c02272{bottom:1193.160450px;}
.hc_c02272{height:10.551621px;}
.h8_c02272{height:47.961914px;}
.h5_c02272{height:53.397598px;}
.h4_c02272{height:58.513535px;}
.h2_c02272{height:63.175781px;}
.h1_c02272{height:63.949219px;}
.ha_c02272{height:64.975781px;}
.h6_c02272{height:65.028619px;}
.h7_c02272{height:65.029219px;}
.h9_c02272{height:65.029819px;}
.hb_c02272{height:65.389219px;}
.h3_c02272{height:142.069219px;}
.h0_c02272{height:1263.000000px;}
.w1_c02272{width:892.500000px;}
.w0_c02272{width:892.830000px;}
.x0_c02272{left:0.000000px;}
.x1_c02272{left:127.620000px;}
.x3_c02272{left:135.630000px;}
.xc_c02272{left:160.920000px;}
.xf_c02272{left:242.280000px;}
.x4_c02272{left:245.430000px;}
.x5_c02272{left:248.400000px;}
.xe_c02272{left:261.000000px;}
.x14_c02272{left:273.150000px;}
.xd_c02272{left:290.610000px;}
.x11_c02272{left:415.980000px;}
.x10_c02272{left:418.230000px;}
.x15_c02272{left:421.200000px;}
.x16_c02272{left:425.520000px;}
.x7_c02272{left:428.310000px;}
.x2_c02272{left:432.990000px;}
.x8_c02272{left:443.430000px;}
.x6_c02272{left:465.210000px;}
.x12_c02272{left:593.730000px;}
.xa_c02272{left:604.260000px;}
.x13_c02272{left:613.710000px;}
.xb_c02272{left:633.600000px;}
.x9_c02272{left:639.810000px;}
@media print{
.v0_c02272{vertical-align:0.000000pt;}
.v2_c02272{vertical-align:1.280000pt;}
.v1_c02272{vertical-align:69.440000pt;}
.ls37_c02272{letter-spacing:-0.012800pt;}
.ls38_c02272{letter-spacing:-0.005344pt;}
.ls36_c02272{letter-spacing:0.000000pt;}
.ls2f_c02272{letter-spacing:0.005856pt;}
.ls2c_c02272{letter-spacing:0.011712pt;}
.ls1_c02272{letter-spacing:0.012800pt;}
.ls31_c02272{letter-spacing:0.017568pt;}
.ls2_c02272{letter-spacing:0.019200pt;}
.ls33_c02272{letter-spacing:0.023424pt;}
.ls0_c02272{letter-spacing:0.025600pt;}
.ls4_c02272{letter-spacing:0.035136pt;}
.ls39_c02272{letter-spacing:0.040992pt;}
.ls30_c02272{letter-spacing:0.046848pt;}
.ls1c_c02272{letter-spacing:0.052704pt;}
.lse_c02272{letter-spacing:0.058560pt;}
.ls27_c02272{letter-spacing:0.064416pt;}
.ls15_c02272{letter-spacing:0.070272pt;}
.ls6_c02272{letter-spacing:0.081984pt;}
.ls17_c02272{letter-spacing:0.087840pt;}
.lsa_c02272{letter-spacing:0.122976pt;}
.ls5_c02272{letter-spacing:0.128256pt;}
.ls11_c02272{letter-spacing:0.134688pt;}
.ls25_c02272{letter-spacing:0.140544pt;}
.ls3_c02272{letter-spacing:0.146400pt;}
.ls19_c02272{letter-spacing:0.158112pt;}
.ls8_c02272{letter-spacing:0.160000pt;}
.ls26_c02272{letter-spacing:56.960000pt;}
.ls22_c02272{letter-spacing:58.880000pt;}
.ls1a_c02272{letter-spacing:59.200000pt;}
.ls1b_c02272{letter-spacing:59.520000pt;}
.ls10_c02272{letter-spacing:88.000000pt;}
.ls12_c02272{letter-spacing:88.320000pt;}
.ls13_c02272{letter-spacing:88.640000pt;}
.ls23_c02272{letter-spacing:104.400000pt;}
.ls9_c02272{letter-spacing:117.440000pt;}
.lsb_c02272{letter-spacing:117.760000pt;}
.lsd_c02272{letter-spacing:118.080000pt;}
.lsc_c02272{letter-spacing:133.600000pt;}
.ls32_c02272{letter-spacing:146.880000pt;}
.ls34_c02272{letter-spacing:147.200000pt;}
.ls2d_c02272{letter-spacing:147.520000pt;}
.ls1f_c02272{letter-spacing:162.960000pt;}
.ls20_c02272{letter-spacing:163.040000pt;}
.ls14_c02272{letter-spacing:165.760000pt;}
.ls28_c02272{letter-spacing:182.080000pt;}
.ls29_c02272{letter-spacing:190.720000pt;}
.ls1e_c02272{letter-spacing:191.040000pt;}
.ls21_c02272{letter-spacing:191.359467pt;}
.ls16_c02272{letter-spacing:208.320000pt;}
.ls18_c02272{letter-spacing:224.320000pt;}
.ls24_c02272{letter-spacing:239.040000pt;}
.ls1d_c02272{letter-spacing:250.240000pt;}
.lsf_c02272{letter-spacing:263.680000pt;}
.ls7_c02272{letter-spacing:279.680000pt;}
.ls35_c02272{letter-spacing:292.800000pt;}
.ls2e_c02272{letter-spacing:350.400000pt;}
.ls2a_c02272{letter-spacing:368.640000pt;}
.ls2b_c02272{letter-spacing:798.240000pt;}
.ws5_c02272{word-spacing:-14.798112pt;}
.ws0_c02272{word-spacing:-14.786400pt;}
.ws12_c02272{word-spacing:-14.780544pt;}
.ws6_c02272{word-spacing:-14.774688pt;}
.ws2_c02272{word-spacing:-14.762976pt;}
.wsb_c02272{word-spacing:-14.727840pt;}
.ws10_c02272{word-spacing:-14.721984pt;}
.ws13_c02272{word-spacing:-14.704416pt;}
.ws19_c02272{word-spacing:-14.698560pt;}
.wse_c02272{word-spacing:-14.692704pt;}
.ws1_c02272{word-spacing:-14.675136pt;}
.ws23_c02272{word-spacing:-0.096000pt;}
.ws21_c02272{word-spacing:-0.076800pt;}
.ws27_c02272{word-spacing:-0.048096pt;}
.ws22_c02272{word-spacing:-0.012800pt;}
.ws20_c02272{word-spacing:0.000000pt;}
.ws29_c02272{word-spacing:0.011712pt;}
.ws2c_c02272{word-spacing:0.017568pt;}
.ws28_c02272{word-spacing:0.023424pt;}
.ws24_c02272{word-spacing:0.029280pt;}
.ws26_c02272{word-spacing:0.035136pt;}
.ws2e_c02272{word-spacing:0.040992pt;}
.ws2a_c02272{word-spacing:0.046848pt;}
.ws2f_c02272{word-spacing:0.058560pt;}
.ws2d_c02272{word-spacing:0.064416pt;}
.ws2b_c02272{word-spacing:0.070272pt;}
.ws25_c02272{word-spacing:0.076128pt;}
.ws14_c02272{word-spacing:57.857280pt;}
.ws11_c02272{word-spacing:59.767552pt;}
.wsd_c02272{word-spacing:60.126560pt;}
.ws8_c02272{word-spacing:88.885664pt;}
.wsc_c02272{word-spacing:88.887552pt;}
.ws9_c02272{word-spacing:89.246560pt;}
.ws1e_c02272{word-spacing:89.268096pt;}
.ws15_c02272{word-spacing:89.718240pt;}
.ws1c_c02272{word-spacing:118.325664pt;}
.ws4_c02272{word-spacing:118.708096pt;}
.ws1f_c02272{word-spacing:119.158240pt;}
.ws7_c02272{word-spacing:133.406560pt;}
.ws1b_c02272{word-spacing:133.428096pt;}
.wsa_c02272{word-spacing:162.526560pt;}
.ws3_c02272{word-spacing:162.548096pt;}
.ws16_c02272{word-spacing:191.850176pt;}
.ws18_c02272{word-spacing:191.852064pt;}
.ws1d_c02272{word-spacing:191.988096pt;}
.wsf_c02272{word-spacing:192.074048pt;}
.ws17_c02272{word-spacing:192.240000pt;}
.ws1a_c02272{word-spacing:1019.594048pt;}
._0_c02272{margin-left:-0.985600pt;}
._4_c02272{width:92.880000pt;}
._5_c02272{width:103.007680pt;}
._6_c02272{width:118.468192pt;}
._3_c02272{width:150.478848pt;}
._2_c02272{width:192.568704pt;}
._7_c02272{width:206.240544pt;}
._1_c02272{width:431.987200pt;}
._8_c02272{width:544.112640pt;}
._a_c02272{width:573.232640pt;}
._9_c02272{width:591.251776pt;}
.fs4_c02272{font-size:10.560000pt;}
.fs3_c02272{font-size:48.000000pt;}
.fs2_c02272{font-size:53.440000pt;}
.fs1_c02272{font-size:58.560000pt;}
.fs0_c02272{font-size:64.000000pt;}
.y0_c02272{bottom:0.000000pt;}
.y4_c02272{bottom:50.987067pt;}
.y3_c02272{bottom:69.387067pt;}
.y41_c02272{bottom:110.587235pt;}
.y40_c02272{bottom:113.627195pt;}
.y3f_c02272{bottom:116.747147pt;}
.y3e_c02272{bottom:119.787107pt;}
.y3d_c02272{bottom:122.827067pt;}
.y3c_c02272{bottom:128.907067pt;}
.y3b_c02272{bottom:147.307067pt;}
.y3a_c02272{bottom:165.707067pt;}
.y39_c02272{bottom:182.587067pt;}
.y38_c02272{bottom:200.107200pt;}
.y37_c02272{bottom:218.507067pt;}
.y36_c02272{bottom:236.907067pt;}
.y35_c02272{bottom:253.787067pt;}
.y34_c02272{bottom:270.667067pt;}
.y33_c02272{bottom:287.547067pt;}
.y32_c02272{bottom:304.427067pt;}
.y31_c02272{bottom:322.427067pt;}
.y2f_c02272{bottom:338.107067pt;}
.y2d_c02272{bottom:354.507067pt;}
.y2e_c02272{bottom:354.987200pt;}
.y30_c02272{bottom:371.867067pt;}
.y2c_c02272{bottom:390.107067pt;}
.y2b_c02272{bottom:403.946667pt;}
.y2a_c02272{bottom:417.707067pt;}
.y29_c02272{bottom:432.427067pt;}
.y28_c02272{bottom:450.827200pt;}
.y27_c02272{bottom:469.227067pt;}
.y26_c02272{bottom:486.107067pt;}
.y25_c02272{bottom:503.627067pt;}
.y24_c02272{bottom:522.027067pt;}
.y23_c02272{bottom:540.427067pt;}
.y22_c02272{bottom:557.307067pt;}
.y21_c02272{bottom:574.187067pt;}
.y20_c02272{bottom:591.067067pt;}
.y1f_c02272{bottom:607.867067pt;}
.y1e_c02272{bottom:624.427067pt;}
.y1d_c02272{bottom:640.107067pt;}
.y1a_c02272{bottom:656.427067pt;}
.y1c_c02272{bottom:656.987067pt;}
.y1b_c02272{bottom:673.867067pt;}
.y19_c02272{bottom:692.107067pt;}
.y18_c02272{bottom:705.867467pt;}
.y17_c02272{bottom:719.707067pt;}
.y16_c02272{bottom:734.427067pt;}
.y15_c02272{bottom:752.827200pt;}
.y14_c02272{bottom:771.227067pt;}
.y13_c02272{bottom:788.107067pt;}
.y12_c02272{bottom:805.627067pt;}
.y11_c02272{bottom:824.027067pt;}
.y10_c02272{bottom:842.427067pt;}
.yf_c02272{bottom:859.307067pt;}
.ye_c02272{bottom:876.107067pt;}
.yd_c02272{bottom:892.987067pt;}
.yc_c02272{bottom:909.867067pt;}
.yb_c02272{bottom:926.427067pt;}
.y9_c02272{bottom:942.107067pt;}
.y7_c02272{bottom:958.427067pt;}
.y8_c02272{bottom:958.907067pt;}
.ya_c02272{bottom:975.787067pt;}
.y6_c02272{bottom:992.907067pt;}
.y5_c02272{bottom:1013.307067pt;}
.y2_c02272{bottom:1042.347067pt;}
.y1_c02272{bottom:1060.587067pt;}
.hc_c02272{height:9.379219pt;}
.h8_c02272{height:42.632812pt;}
.h5_c02272{height:47.464531pt;}
.h4_c02272{height:52.012031pt;}
.h2_c02272{height:56.156250pt;}
.h1_c02272{height:56.843750pt;}
.ha_c02272{height:57.756250pt;}
.h6_c02272{height:57.803217pt;}
.h7_c02272{height:57.803750pt;}
.h9_c02272{height:57.804283pt;}
.hb_c02272{height:58.123750pt;}
.h3_c02272{height:126.283750pt;}
.h0_c02272{height:1122.666667pt;}
.w1_c02272{width:793.333333pt;}
.w0_c02272{width:793.626667pt;}
.x0_c02272{left:0.000000pt;}
.x1_c02272{left:113.440000pt;}
.x3_c02272{left:120.560000pt;}
.xc_c02272{left:143.040000pt;}
.xf_c02272{left:215.360000pt;}
.x4_c02272{left:218.160000pt;}
.x5_c02272{left:220.800000pt;}
.xe_c02272{left:232.000000pt;}
.x14_c02272{left:242.800000pt;}
.xd_c02272{left:258.320000pt;}
.x11_c02272{left:369.760000pt;}
.x10_c02272{left:371.760000pt;}
.x15_c02272{left:374.400000pt;}
.x16_c02272{left:378.240000pt;}
.x7_c02272{left:380.720000pt;}
.x2_c02272{left:384.880000pt;}
.x8_c02272{left:394.160000pt;}
.x6_c02272{left:413.520000pt;}
.x12_c02272{left:527.760000pt;}
.xa_c02272{left:537.120000pt;}
.x13_c02272{left:545.520000pt;}
.xb_c02272{left:563.200000pt;}
.x9_c02272{left:568.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_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_0d697741cebfc1c0fad1bf40.woff2')format("woff");}.ff1_c02273{font-family:ff1_c02273;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02273;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.va_c02273{vertical-align:-11.160000px;}
.vc_c02273{vertical-align:-6.841800px;}
.v4_c02273{vertical-align:-3.960000px;}
.v7_c02273{vertical-align:-2.880000px;}
.v3_c02273{vertical-align:-1.800000px;}
.v0_c02273{vertical-align:0.000000px;}
.v2_c02273{vertical-align:1.800000px;}
.v8_c02273{vertical-align:2.879400px;}
.v6_c02273{vertical-align:3.960000px;}
.v9_c02273{vertical-align:5.400000px;}
.ve_c02273{vertical-align:6.840000px;}
.v5_c02273{vertical-align:7.921800px;}
.vb_c02273{vertical-align:9.360000px;}
.vd_c02273{vertical-align:37.080600px;}
.v1_c02273{vertical-align:78.120000px;}
.ls46_c02273{letter-spacing:-0.086184px;}
.ls4b_c02273{letter-spacing:-0.063180px;}
.ls42_c02273{letter-spacing:-0.043200px;}
.ls4a_c02273{letter-spacing:-0.036000px;}
.ls44_c02273{letter-spacing:-0.019152px;}
.ls3f_c02273{letter-spacing:-0.014400px;}
.ls43_c02273{letter-spacing:-0.010800px;}
.ls4c_c02273{letter-spacing:-0.009576px;}
.ls40_c02273{letter-spacing:-0.006012px;}
.ls48_c02273{letter-spacing:-0.004788px;}
.ls3e_c02273{letter-spacing:0.000000px;}
.ls24_c02273{letter-spacing:0.007200px;}
.ls26_c02273{letter-spacing:0.010800px;}
.ls29_c02273{letter-spacing:0.012636px;}
.ls22_c02273{letter-spacing:0.013176px;}
.ls25_c02273{letter-spacing:0.014400px;}
.ls2f_c02273{letter-spacing:0.016200px;}
.ls37_c02273{letter-spacing:0.019152px;}
.ls38_c02273{letter-spacing:0.021600px;}
.ls3_c02273{letter-spacing:0.026352px;}
.ls28_c02273{letter-spacing:0.028728px;}
.ls0_c02273{letter-spacing:0.028800px;}
.ls2a_c02273{letter-spacing:0.032400px;}
.ls3a_c02273{letter-spacing:0.036000px;}
.ls2d_c02273{letter-spacing:0.037800px;}
.ls2_c02273{letter-spacing:0.039528px;}
.ls27_c02273{letter-spacing:0.043092px;}
.ls2e_c02273{letter-spacing:0.043200px;}
.ls32_c02273{letter-spacing:0.052668px;}
.ls17_c02273{letter-spacing:0.059292px;}
.ls7_c02273{letter-spacing:0.065880px;}
.ls1f_c02273{letter-spacing:0.072468px;}
.ls11_c02273{letter-spacing:0.079056px;}
.ls3c_c02273{letter-spacing:0.081396px;}
.ls5_c02273{letter-spacing:0.092232px;}
.ls3b_c02273{letter-spacing:0.092664px;}
.ls13_c02273{letter-spacing:0.098820px;}
.ls2c_c02273{letter-spacing:0.110124px;}
.ls33_c02273{letter-spacing:0.114912px;}
.ls35_c02273{letter-spacing:0.124488px;}
.ls36_c02273{letter-spacing:0.134064px;}
.lsb_c02273{letter-spacing:0.138348px;}
.ls34_c02273{letter-spacing:0.138852px;}
.ls4_c02273{letter-spacing:0.144288px;}
.ls41_c02273{letter-spacing:0.151200px;}
.lsf_c02273{letter-spacing:0.151524px;}
.ls1d_c02273{letter-spacing:0.158112px;}
.ls1_c02273{letter-spacing:0.164700px;}
.ls45_c02273{letter-spacing:0.167580px;}
.ls15_c02273{letter-spacing:0.177876px;}
.ls9_c02273{letter-spacing:0.180000px;}
.ls3d_c02273{letter-spacing:0.181944px;}
.ls31_c02273{letter-spacing:0.205884px;}
.ls1e_c02273{letter-spacing:64.080000px;}
.ls1b_c02273{letter-spacing:66.240000px;}
.ls16_c02273{letter-spacing:66.600000px;}
.lse_c02273{letter-spacing:99.000000px;}
.ls10_c02273{letter-spacing:99.360000px;}
.ls2b_c02273{letter-spacing:110.160000px;}
.lsa_c02273{letter-spacing:132.120000px;}
.lsc_c02273{letter-spacing:132.480000px;}
.ls47_c02273{letter-spacing:141.658200px;}
.ls39_c02273{letter-spacing:162.270000px;}
.ls23_c02273{letter-spacing:165.960000px;}
.ls49_c02273{letter-spacing:167.221800px;}
.ls30_c02273{letter-spacing:184.950000px;}
.lsd_c02273{letter-spacing:186.480000px;}
.ls20_c02273{letter-spacing:204.840000px;}
.ls21_c02273{letter-spacing:214.560000px;}
.ls19_c02273{letter-spacing:214.920000px;}
.ls12_c02273{letter-spacing:234.360000px;}
.ls14_c02273{letter-spacing:252.360000px;}
.ls1c_c02273{letter-spacing:268.920000px;}
.ls18_c02273{letter-spacing:281.520000px;}
.ls1a_c02273{letter-spacing:314.640000px;}
.ls8_c02273{letter-spacing:329.400000px;}
.ls6_c02273{letter-spacing:347.760000px;}
.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;}
}
.ws3_c02273{word-spacing:-16.647876px;}
.ws0_c02273{word-spacing:-16.634700px;}
.ws9_c02273{word-spacing:-16.628112px;}
.ws4_c02273{word-spacing:-16.621524px;}
.ws2_c02273{word-spacing:-16.608348px;}
.ws5_c02273{word-spacing:-16.568820px;}
.ws7_c02273{word-spacing:-16.562232px;}
.wsa_c02273{word-spacing:-16.542468px;}
.ws6_c02273{word-spacing:-16.529292px;}
.ws8_c02273{word-spacing:-16.509528px;}
.ws1_c02273{word-spacing:-16.496352px;}
.ws1d_c02273{word-spacing:-0.296856px;}
.ws1a_c02273{word-spacing:-0.272916px;}
.ws25_c02273{word-spacing:-0.229824px;}
.ws27_c02273{word-spacing:-0.225036px;}
.ws26_c02273{word-spacing:-0.215460px;}
.ws24_c02273{word-spacing:-0.205884px;}
.ws2b_c02273{word-spacing:-0.180000px;}
.ws28_c02273{word-spacing:-0.172368px;}
.ws22_c02273{word-spacing:-0.122400px;}
.ws23_c02273{word-spacing:-0.119700px;}
.ws16_c02273{word-spacing:-0.115200px;}
.ws29_c02273{word-spacing:-0.110124px;}
.ws19_c02273{word-spacing:-0.101088px;}
.ws10_c02273{word-spacing:-0.086400px;}
.ws2f_c02273{word-spacing:-0.081396px;}
.ws12_c02273{word-spacing:-0.054108px;}
.ws2c_c02273{word-spacing:-0.036000px;}
.ws21_c02273{word-spacing:-0.028800px;}
.ws2e_c02273{word-spacing:-0.025272px;}
.ws2a_c02273{word-spacing:-0.021600px;}
.ws1f_c02273{word-spacing:-0.014400px;}
.ws17_c02273{word-spacing:-0.007200px;}
.wsf_c02273{word-spacing:0.000000px;}
.ws14_c02273{word-spacing:0.013176px;}
.ws13_c02273{word-spacing:0.026352px;}
.ws2d_c02273{word-spacing:0.036000px;}
.ws18_c02273{word-spacing:0.043200px;}
.ws11_c02273{word-spacing:0.052704px;}
.ws15_c02273{word-spacing:0.079056px;}
.wsb_c02273{word-spacing:64.729440px;}
.ws1b_c02273{word-spacing:100.224000px;}
.wsc_c02273{word-spacing:104.689440px;}
.wsd_c02273{word-spacing:105.049440px;}
.ws1c_c02273{word-spacing:128.325600px;}
.wse_c02273{word-spacing:140.689440px;}
.ws20_c02273{word-spacing:172.935000px;}
.ws30_c02273{word-spacing:194.178600px;}
.ws1e_c02273{word-spacing:248.535000px;}
._26_c02273{margin-left:-100.107144px;}
._17_c02273{margin-left:-93.236400px;}
._18_c02273{margin-left:-88.916400px;}
._15_c02273{margin-left:-59.531580px;}
._13_c02273{margin-left:-50.058000px;}
._16_c02273{margin-left:-45.716400px;}
._48_c02273{margin-left:-37.443600px;}
._3e_c02273{margin-left:-31.320000px;}
._46_c02273{margin-left:-26.860392px;}
._2f_c02273{margin-left:-17.636400px;}
._49_c02273{margin-left:-15.843600px;}
._27_c02273{margin-left:-13.316400px;}
._47_c02273{margin-left:-11.880000px;}
._3f_c02273{margin-left:-10.443600px;}
._11_c02273{margin-left:-5.896800px;}
._1_c02273{margin-left:-1.148292px;}
._28_c02273{width:4.017600px;}
._25_c02273{width:15.076800px;}
._2e_c02273{width:29.704896px;}
._34_c02273{width:30.708612px;}
._40_c02273{width:32.394600px;}
._3d_c02273{width:35.640000px;}
._10_c02273{width:50.937552px;}
._37_c02273{width:52.159032px;}
._2d_c02273{width:55.436580px;}
._23_c02273{width:61.649820px;}
._35_c02273{width:64.674000px;}
._44_c02273{width:66.055140px;}
._14_c02273{width:68.529276px;}
._38_c02273{width:72.772596px;}
._7_c02273{width:75.834000px;}
._e_c02273{width:78.390180px;}
._12_c02273{width:81.145800px;}
._3a_c02273{width:84.006000px;}
._6_c02273{width:86.061600px;}
._20_c02273{width:87.300000px;}
._f_c02273{width:88.718400px;}
._d_c02273{width:90.604440px;}
._21_c02273{width:94.059648px;}
._24_c02273{width:96.249276px;}
._43_c02273{width:98.181360px;}
._2c_c02273{width:99.235404px;}
._36_c02273{width:100.323468px;}
._19_c02273{width:102.780000px;}
._4_c02273{width:104.490000px;}
._39_c02273{width:108.491400px;}
._2b_c02273{width:109.896120px;}
._9_c02273{width:112.348944px;}
._1f_c02273{width:113.756580px;}
._8_c02273{width:116.100000px;}
._1a_c02273{width:118.260000px;}
._42_c02273{width:119.653452px;}
._45_c02273{width:122.644296px;}
._a_c02273{width:123.936120px;}
._22_c02273{width:127.931400px;}
._1e_c02273{width:129.587688px;}
._31_c02273{width:133.305300px;}
._41_c02273{width:136.515600px;}
._30_c02273{width:139.720752px;}
._1d_c02273{width:141.355404px;}
._1b_c02273{width:143.578944px;}
._29_c02273{width:145.260000px;}
._1c_c02273{width:148.056120px;}
._32_c02273{width:150.857280px;}
._3b_c02273{width:152.746920px;}
._2a_c02273{width:156.060000px;}
._b_c02273{width:158.995404px;}
._33_c02273{width:161.386920px;}
._c_c02273{width:167.747688px;}
._3_c02273{width:169.288704px;}
._3c_c02273{width:194.184648px;}
._5_c02273{width:214.319736px;}
._2_c02273{width:216.679284px;}
._0_c02273{width:485.985600px;}
.fc0_c02273{color:rgb(0,0,0);}
.fs6_c02273{font-size:11.880000px;}
.fs5_c02273{font-size:42.120000px;}
.fs4_c02273{font-size:47.880000px;}
.fs3_c02273{font-size:54.000000px;}
.fs2_c02273{font-size:60.120000px;}
.fs1_c02273{font-size:65.880000px;}
.fs0_c02273{font-size:72.000000px;}
.y0_c02273{bottom:0.000000px;}
.y4_c02273{bottom:57.360450px;}
.y3_c02273{bottom:78.060450px;}
.y4e_c02273{bottom:119.640450px;}
.y4d_c02273{bottom:120.000450px;}
.y4c_c02273{bottom:139.620600px;}
.y4b_c02273{bottom:157.350450px;}
.y4a_c02273{bottom:166.620600px;}
.y49_c02273{bottom:183.090450px;}
.y48_c02273{bottom:203.790600px;}
.y47_c02273{bottom:212.610450px;}
.y46_c02273{bottom:212.969550px;}
.y45_c02273{bottom:231.600450px;}
.y44_c02273{bottom:231.959550px;}
.y43_c02273{bottom:250.590450px;}
.y42_c02273{bottom:250.949550px;}
.y41_c02273{bottom:269.580450px;}
.y40_c02273{bottom:269.939550px;}
.y3f_c02273{bottom:288.570450px;}
.y3e_c02273{bottom:288.930450px;}
.y3d_c02273{bottom:308.550450px;}
.y3c_c02273{bottom:327.720450px;}
.y3b_c02273{bottom:344.190450px;}
.y3a_c02273{bottom:364.980450px;}
.y39_c02273{bottom:373.800450px;}
.y38_c02273{bottom:374.160000px;}
.y37_c02273{bottom:392.790600px;}
.y36_c02273{bottom:393.150000px;}
.y35_c02273{bottom:411.780450px;}
.y34_c02273{bottom:412.140000px;}
.y33_c02273{bottom:430.680600px;}
.y32_c02273{bottom:431.130450px;}
.y31_c02273{bottom:449.670450px;}
.y30_c02273{bottom:450.030600px;}
.y2f_c02273{bottom:469.020600px;}
.y2e_c02273{bottom:487.650450px;}
.y2d_c02273{bottom:488.010900px;}
.y2c_c02273{bottom:508.350450px;}
.y2b_c02273{bottom:508.710600px;}
.y2a_c02273{bottom:529.410450px;}
.y29_c02273{bottom:548.040450px;}
.y28_c02273{bottom:548.400450px;}
.y27_c02273{bottom:569.730450px;}
.y26_c02273{bottom:588.090450px;}
.y25_c02273{bottom:605.460450px;}
.y24_c02273{bottom:626.160450px;}
.y23_c02273{bottom:634.980450px;}
.y22_c02273{bottom:635.340450px;}
.y21_c02273{bottom:655.050450px;}
.y20_c02273{bottom:673.320450px;}
.y1f_c02273{bottom:690.690450px;}
.y1e_c02273{bottom:711.480450px;}
.y1d_c02273{bottom:720.300450px;}
.y1c_c02273{bottom:720.660450px;}
.y1a_c02273{bottom:740.280450px;}
.y1b_c02273{bottom:740.370450px;}
.y19_c02273{bottom:758.640450px;}
.y18_c02273{bottom:776.010450px;}
.y17_c02273{bottom:796.080450px;}
.y16_c02273{bottom:813.270450px;}
.y15_c02273{bottom:833.791050px;}
.y14_c02273{bottom:849.360600px;}
.y13_c02273{bottom:865.920450px;}
.y12_c02273{bottom:886.620450px;}
.y11_c02273{bottom:907.320450px;}
.y10_c02273{bottom:926.310450px;}
.yf_c02273{bottom:946.020450px;}
.ye_c02273{bottom:966.720450px;}
.yd_c02273{bottom:987.420450px;}
.yc_c02273{bottom:1006.320450px;}
.yb_c02273{bottom:1025.310450px;}
.ya_c02273{bottom:1044.300450px;}
.y9_c02273{bottom:1063.290450px;}
.y8_c02273{bottom:1083.630450px;}
.y7_c02273{bottom:1101.270450px;}
.y5_c02273{bottom:1119.630450px;}
.y6_c02273{bottom:1120.170450px;}
.y2_c02273{bottom:1172.640450px;}
.y1_c02273{bottom:1193.160450px;}
.hb_c02273{height:10.551621px;}
.h8_c02273{height:47.961914px;}
.h13_c02273{height:48.569693px;}
.h12_c02273{height:48.570293px;}
.h5_c02273{height:53.397598px;}
.h9_c02273{height:57.805840px;}
.h4_c02273{height:58.513535px;}
.hd_c02273{height:61.033535px;}
.hf_c02273{height:61.392935px;}
.h11_c02273{height:62.472935px;}
.ha_c02273{height:62.473535px;}
.he_c02273{height:62.474135px;}
.h10_c02273{height:62.832935px;}
.hc_c02273{height:62.833535px;}
.h2_c02273{height:63.175781px;}
.h1_c02273{height:63.949219px;}
.h6_c02273{height:64.975781px;}
.h7_c02273{height:65.029219px;}
.h14_c02273{height:85.042514px;}
.h3_c02273{height:142.069219px;}
.h0_c02273{height:1263.000000px;}
.w1_c02273{width:892.500000px;}
.w0_c02273{width:892.830000px;}
.x0_c02273{left:0.000000px;}
.x1_c02273{left:127.620000px;}
.x3_c02273{left:135.630000px;}
.x7_c02273{left:143.730000px;}
.x6_c02273{left:160.920000px;}
.x9_c02273{left:164.700000px;}
.xa_c02273{left:219.690000px;}
.x4_c02273{left:242.730000px;}
.x5_c02273{left:269.730000px;}
.x2_c02273{left:432.990000px;}
.xc_c02273{left:582.300000px;}
.x8_c02273{left:717.840000px;}
.xb_c02273{left:746.729550px;}
@media print{
.va_c02273{vertical-align:-9.920000pt;}
.vc_c02273{vertical-align:-6.081600pt;}
.v4_c02273{vertical-align:-3.520000pt;}
.v7_c02273{vertical-align:-2.560000pt;}
.v3_c02273{vertical-align:-1.600000pt;}
.v0_c02273{vertical-align:0.000000pt;}
.v2_c02273{vertical-align:1.600000pt;}
.v8_c02273{vertical-align:2.559467pt;}
.v6_c02273{vertical-align:3.520000pt;}
.v9_c02273{vertical-align:4.800000pt;}
.ve_c02273{vertical-align:6.080000pt;}
.v5_c02273{vertical-align:7.041600pt;}
.vb_c02273{vertical-align:8.320000pt;}
.vd_c02273{vertical-align:32.960533pt;}
.v1_c02273{vertical-align:69.440000pt;}
.ls46_c02273{letter-spacing:-0.076608pt;}
.ls4b_c02273{letter-spacing:-0.056160pt;}
.ls42_c02273{letter-spacing:-0.038400pt;}
.ls4a_c02273{letter-spacing:-0.032000pt;}
.ls44_c02273{letter-spacing:-0.017024pt;}
.ls3f_c02273{letter-spacing:-0.012800pt;}
.ls43_c02273{letter-spacing:-0.009600pt;}
.ls4c_c02273{letter-spacing:-0.008512pt;}
.ls40_c02273{letter-spacing:-0.005344pt;}
.ls48_c02273{letter-spacing:-0.004256pt;}
.ls3e_c02273{letter-spacing:0.000000pt;}
.ls24_c02273{letter-spacing:0.006400pt;}
.ls26_c02273{letter-spacing:0.009600pt;}
.ls29_c02273{letter-spacing:0.011232pt;}
.ls22_c02273{letter-spacing:0.011712pt;}
.ls25_c02273{letter-spacing:0.012800pt;}
.ls2f_c02273{letter-spacing:0.014400pt;}
.ls37_c02273{letter-spacing:0.017024pt;}
.ls38_c02273{letter-spacing:0.019200pt;}
.ls3_c02273{letter-spacing:0.023424pt;}
.ls28_c02273{letter-spacing:0.025536pt;}
.ls0_c02273{letter-spacing:0.025600pt;}
.ls2a_c02273{letter-spacing:0.028800pt;}
.ls3a_c02273{letter-spacing:0.032000pt;}
.ls2d_c02273{letter-spacing:0.033600pt;}
.ls2_c02273{letter-spacing:0.035136pt;}
.ls27_c02273{letter-spacing:0.038304pt;}
.ls2e_c02273{letter-spacing:0.038400pt;}
.ls32_c02273{letter-spacing:0.046816pt;}
.ls17_c02273{letter-spacing:0.052704pt;}
.ls7_c02273{letter-spacing:0.058560pt;}
.ls1f_c02273{letter-spacing:0.064416pt;}
.ls11_c02273{letter-spacing:0.070272pt;}
.ls3c_c02273{letter-spacing:0.072352pt;}
.ls5_c02273{letter-spacing:0.081984pt;}
.ls3b_c02273{letter-spacing:0.082368pt;}
.ls13_c02273{letter-spacing:0.087840pt;}
.ls2c_c02273{letter-spacing:0.097888pt;}
.ls33_c02273{letter-spacing:0.102144pt;}
.ls35_c02273{letter-spacing:0.110656pt;}
.ls36_c02273{letter-spacing:0.119168pt;}
.lsb_c02273{letter-spacing:0.122976pt;}
.ls34_c02273{letter-spacing:0.123424pt;}
.ls4_c02273{letter-spacing:0.128256pt;}
.ls41_c02273{letter-spacing:0.134400pt;}
.lsf_c02273{letter-spacing:0.134688pt;}
.ls1d_c02273{letter-spacing:0.140544pt;}
.ls1_c02273{letter-spacing:0.146400pt;}
.ls45_c02273{letter-spacing:0.148960pt;}
.ls15_c02273{letter-spacing:0.158112pt;}
.ls9_c02273{letter-spacing:0.160000pt;}
.ls3d_c02273{letter-spacing:0.161728pt;}
.ls31_c02273{letter-spacing:0.183008pt;}
.ls1e_c02273{letter-spacing:56.960000pt;}
.ls1b_c02273{letter-spacing:58.880000pt;}
.ls16_c02273{letter-spacing:59.200000pt;}
.lse_c02273{letter-spacing:88.000000pt;}
.ls10_c02273{letter-spacing:88.320000pt;}
.ls2b_c02273{letter-spacing:97.920000pt;}
.lsa_c02273{letter-spacing:117.440000pt;}
.lsc_c02273{letter-spacing:117.760000pt;}
.ls47_c02273{letter-spacing:125.918400pt;}
.ls39_c02273{letter-spacing:144.240000pt;}
.ls23_c02273{letter-spacing:147.520000pt;}
.ls49_c02273{letter-spacing:148.641600pt;}
.ls30_c02273{letter-spacing:164.400000pt;}
.lsd_c02273{letter-spacing:165.760000pt;}
.ls20_c02273{letter-spacing:182.080000pt;}
.ls21_c02273{letter-spacing:190.720000pt;}
.ls19_c02273{letter-spacing:191.040000pt;}
.ls12_c02273{letter-spacing:208.320000pt;}
.ls14_c02273{letter-spacing:224.320000pt;}
.ls1c_c02273{letter-spacing:239.040000pt;}
.ls18_c02273{letter-spacing:250.240000pt;}
.ls1a_c02273{letter-spacing:279.680000pt;}
.ls8_c02273{letter-spacing:292.800000pt;}
.ls6_c02273{letter-spacing:309.120000pt;}
.ws3_c02273{word-spacing:-14.798112pt;}
.ws0_c02273{word-spacing:-14.786400pt;}
.ws9_c02273{word-spacing:-14.780544pt;}
.ws4_c02273{word-spacing:-14.774688pt;}
.ws2_c02273{word-spacing:-14.762976pt;}
.ws5_c02273{word-spacing:-14.727840pt;}
.ws7_c02273{word-spacing:-14.721984pt;}
.wsa_c02273{word-spacing:-14.704416pt;}
.ws6_c02273{word-spacing:-14.692704pt;}
.ws8_c02273{word-spacing:-14.675136pt;}
.ws1_c02273{word-spacing:-14.663424pt;}
.ws1d_c02273{word-spacing:-0.263872pt;}
.ws1a_c02273{word-spacing:-0.242592pt;}
.ws25_c02273{word-spacing:-0.204288pt;}
.ws27_c02273{word-spacing:-0.200032pt;}
.ws26_c02273{word-spacing:-0.191520pt;}
.ws24_c02273{word-spacing:-0.183008pt;}
.ws2b_c02273{word-spacing:-0.160000pt;}
.ws28_c02273{word-spacing:-0.153216pt;}
.ws22_c02273{word-spacing:-0.108800pt;}
.ws23_c02273{word-spacing:-0.106400pt;}
.ws16_c02273{word-spacing:-0.102400pt;}
.ws29_c02273{word-spacing:-0.097888pt;}
.ws19_c02273{word-spacing:-0.089856pt;}
.ws10_c02273{word-spacing:-0.076800pt;}
.ws2f_c02273{word-spacing:-0.072352pt;}
.ws12_c02273{word-spacing:-0.048096pt;}
.ws2c_c02273{word-spacing:-0.032000pt;}
.ws21_c02273{word-spacing:-0.025600pt;}
.ws2e_c02273{word-spacing:-0.022464pt;}
.ws2a_c02273{word-spacing:-0.019200pt;}
.ws1f_c02273{word-spacing:-0.012800pt;}
.ws17_c02273{word-spacing:-0.006400pt;}
.wsf_c02273{word-spacing:0.000000pt;}
.ws14_c02273{word-spacing:0.011712pt;}
.ws13_c02273{word-spacing:0.023424pt;}
.ws2d_c02273{word-spacing:0.032000pt;}
.ws18_c02273{word-spacing:0.038400pt;}
.ws11_c02273{word-spacing:0.046848pt;}
.ws15_c02273{word-spacing:0.070272pt;}
.wsb_c02273{word-spacing:57.537280pt;}
.ws1b_c02273{word-spacing:89.088000pt;}
.wsc_c02273{word-spacing:93.057280pt;}
.wsd_c02273{word-spacing:93.377280pt;}
.ws1c_c02273{word-spacing:114.067200pt;}
.wse_c02273{word-spacing:125.057280pt;}
.ws20_c02273{word-spacing:153.720000pt;}
.ws30_c02273{word-spacing:172.603200pt;}
.ws1e_c02273{word-spacing:220.920000pt;}
._26_c02273{margin-left:-88.984128pt;}
._17_c02273{margin-left:-82.876800pt;}
._18_c02273{margin-left:-79.036800pt;}
._15_c02273{margin-left:-52.916960pt;}
._13_c02273{margin-left:-44.496000pt;}
._16_c02273{margin-left:-40.636800pt;}
._48_c02273{margin-left:-33.283200pt;}
._3e_c02273{margin-left:-27.840000pt;}
._46_c02273{margin-left:-23.875904pt;}
._2f_c02273{margin-left:-15.676800pt;}
._49_c02273{margin-left:-14.083200pt;}
._27_c02273{margin-left:-11.836800pt;}
._47_c02273{margin-left:-10.560000pt;}
._3f_c02273{margin-left:-9.283200pt;}
._11_c02273{margin-left:-5.241600pt;}
._1_c02273{margin-left:-1.020704pt;}
._28_c02273{width:3.571200pt;}
._25_c02273{width:13.401600pt;}
._2e_c02273{width:26.404352pt;}
._34_c02273{width:27.296544pt;}
._40_c02273{width:28.795200pt;}
._3d_c02273{width:31.680000pt;}
._10_c02273{width:45.277824pt;}
._37_c02273{width:46.363584pt;}
._2d_c02273{width:49.276960pt;}
._23_c02273{width:54.799840pt;}
._35_c02273{width:57.488000pt;}
._44_c02273{width:58.715680pt;}
._14_c02273{width:60.914912pt;}
._38_c02273{width:64.686752pt;}
._7_c02273{width:67.408000pt;}
._e_c02273{width:69.680160pt;}
._12_c02273{width:72.129600pt;}
._3a_c02273{width:74.672000pt;}
._6_c02273{width:76.499200pt;}
._20_c02273{width:77.600000pt;}
._f_c02273{width:78.860800pt;}
._d_c02273{width:80.537280pt;}
._21_c02273{width:83.608576pt;}
._24_c02273{width:85.554912pt;}
._43_c02273{width:87.272320pt;}
._2c_c02273{width:88.209248pt;}
._36_c02273{width:89.176416pt;}
._19_c02273{width:91.360000pt;}
._4_c02273{width:92.880000pt;}
._39_c02273{width:96.436800pt;}
._2b_c02273{width:97.685440pt;}
._9_c02273{width:99.865728pt;}
._1f_c02273{width:101.116960pt;}
._8_c02273{width:103.200000pt;}
._1a_c02273{width:105.120000pt;}
._42_c02273{width:106.358624pt;}
._45_c02273{width:109.017152pt;}
._a_c02273{width:110.165440pt;}
._22_c02273{width:113.716800pt;}
._1e_c02273{width:115.189056pt;}
._31_c02273{width:118.493600pt;}
._41_c02273{width:121.347200pt;}
._30_c02273{width:124.196224pt;}
._1d_c02273{width:125.649248pt;}
._1b_c02273{width:127.625728pt;}
._29_c02273{width:129.120000pt;}
._1c_c02273{width:131.605440pt;}
._32_c02273{width:134.095360pt;}
._3b_c02273{width:135.775040pt;}
._2a_c02273{width:138.720000pt;}
._b_c02273{width:141.329248pt;}
._33_c02273{width:143.455040pt;}
._c_c02273{width:149.109056pt;}
._3_c02273{width:150.478848pt;}
._3c_c02273{width:172.608576pt;}
._5_c02273{width:190.506432pt;}
._2_c02273{width:192.603808pt;}
._0_c02273{width:431.987200pt;}
.fs6_c02273{font-size:10.560000pt;}
.fs5_c02273{font-size:37.440000pt;}
.fs4_c02273{font-size:42.560000pt;}
.fs3_c02273{font-size:48.000000pt;}
.fs2_c02273{font-size:53.440000pt;}
.fs1_c02273{font-size:58.560000pt;}
.fs0_c02273{font-size:64.000000pt;}
.y0_c02273{bottom:0.000000pt;}
.y4_c02273{bottom:50.987067pt;}
.y3_c02273{bottom:69.387067pt;}
.y4e_c02273{bottom:106.347067pt;}
.y4d_c02273{bottom:106.667067pt;}
.y4c_c02273{bottom:124.107200pt;}
.y4b_c02273{bottom:139.867067pt;}
.y4a_c02273{bottom:148.107200pt;}
.y49_c02273{bottom:162.747067pt;}
.y48_c02273{bottom:181.147200pt;}
.y47_c02273{bottom:188.987067pt;}
.y46_c02273{bottom:189.306267pt;}
.y45_c02273{bottom:205.867067pt;}
.y44_c02273{bottom:206.186267pt;}
.y43_c02273{bottom:222.747067pt;}
.y42_c02273{bottom:223.066267pt;}
.y41_c02273{bottom:239.627067pt;}
.y40_c02273{bottom:239.946267pt;}
.y3f_c02273{bottom:256.507067pt;}
.y3e_c02273{bottom:256.827067pt;}
.y3d_c02273{bottom:274.267067pt;}
.y3c_c02273{bottom:291.307067pt;}
.y3b_c02273{bottom:305.947067pt;}
.y3a_c02273{bottom:324.427067pt;}
.y39_c02273{bottom:332.267067pt;}
.y38_c02273{bottom:332.586667pt;}
.y37_c02273{bottom:349.147200pt;}
.y36_c02273{bottom:349.466667pt;}
.y35_c02273{bottom:366.027067pt;}
.y34_c02273{bottom:366.346667pt;}
.y33_c02273{bottom:382.827200pt;}
.y32_c02273{bottom:383.227067pt;}
.y31_c02273{bottom:399.707067pt;}
.y30_c02273{bottom:400.027200pt;}
.y2f_c02273{bottom:416.907200pt;}
.y2e_c02273{bottom:433.467067pt;}
.y2d_c02273{bottom:433.787467pt;}
.y2c_c02273{bottom:451.867067pt;}
.y2b_c02273{bottom:452.187200pt;}
.y2a_c02273{bottom:470.587067pt;}
.y29_c02273{bottom:487.147067pt;}
.y28_c02273{bottom:487.467067pt;}
.y27_c02273{bottom:506.427067pt;}
.y26_c02273{bottom:522.747067pt;}
.y25_c02273{bottom:538.187067pt;}
.y24_c02273{bottom:556.587067pt;}
.y23_c02273{bottom:564.427067pt;}
.y22_c02273{bottom:564.747067pt;}
.y21_c02273{bottom:582.267067pt;}
.y20_c02273{bottom:598.507067pt;}
.y1f_c02273{bottom:613.947067pt;}
.y1e_c02273{bottom:632.427067pt;}
.y1d_c02273{bottom:640.267067pt;}
.y1c_c02273{bottom:640.587067pt;}
.y1a_c02273{bottom:658.027067pt;}
.y1b_c02273{bottom:658.107067pt;}
.y19_c02273{bottom:674.347067pt;}
.y18_c02273{bottom:689.787067pt;}
.y17_c02273{bottom:707.627067pt;}
.y16_c02273{bottom:722.907067pt;}
.y15_c02273{bottom:741.147600pt;}
.y14_c02273{bottom:754.987200pt;}
.y13_c02273{bottom:769.707067pt;}
.y12_c02273{bottom:788.107067pt;}
.y11_c02273{bottom:806.507067pt;}
.y10_c02273{bottom:823.387067pt;}
.yf_c02273{bottom:840.907067pt;}
.ye_c02273{bottom:859.307067pt;}
.yd_c02273{bottom:877.707067pt;}
.yc_c02273{bottom:894.507067pt;}
.yb_c02273{bottom:911.387067pt;}
.ya_c02273{bottom:928.267067pt;}
.y9_c02273{bottom:945.147067pt;}
.y8_c02273{bottom:963.227067pt;}
.y7_c02273{bottom:978.907067pt;}
.y5_c02273{bottom:995.227067pt;}
.y6_c02273{bottom:995.707067pt;}
.y2_c02273{bottom:1042.347067pt;}
.y1_c02273{bottom:1060.587067pt;}
.hb_c02273{height:9.379219pt;}
.h8_c02273{height:42.632812pt;}
.h13_c02273{height:43.173060pt;}
.h12_c02273{height:43.173594pt;}
.h5_c02273{height:47.464531pt;}
.h9_c02273{height:51.382969pt;}
.h4_c02273{height:52.012031pt;}
.hd_c02273{height:54.252031pt;}
.hf_c02273{height:54.571498pt;}
.h11_c02273{height:55.531498pt;}
.ha_c02273{height:55.532031pt;}
.he_c02273{height:55.532565pt;}
.h10_c02273{height:55.851498pt;}
.hc_c02273{height:55.852031pt;}
.h2_c02273{height:56.156250pt;}
.h1_c02273{height:56.843750pt;}
.h6_c02273{height:57.756250pt;}
.h7_c02273{height:57.803750pt;}
.h14_c02273{height:75.593346pt;}
.h3_c02273{height:126.283750pt;}
.h0_c02273{height:1122.666667pt;}
.w1_c02273{width:793.333333pt;}
.w0_c02273{width:793.626667pt;}
.x0_c02273{left:0.000000pt;}
.x1_c02273{left:113.440000pt;}
.x3_c02273{left:120.560000pt;}
.x7_c02273{left:127.760000pt;}
.x6_c02273{left:143.040000pt;}
.x9_c02273{left:146.400000pt;}
.xa_c02273{left:195.280000pt;}
.x4_c02273{left:215.760000pt;}
.x5_c02273{left:239.760000pt;}
.x2_c02273{left:384.880000pt;}
.xc_c02273{left:517.600000pt;}
.x8_c02273{left:638.080000pt;}
.xb_c02273{left:663.759600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8855119cfa216ccbdc88b06.woff2')format("woff");}.ff1_c02274{font-family:ff1_c02274;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02274;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v6_c02274{vertical-align:-10.438200px;}
.v9_c02274{vertical-align:-7.200000px;}
.v3_c02274{vertical-align:-4.320000px;}
.v2_c02274{vertical-align:-2.880000px;}
.v7_c02274{vertical-align:-1.440000px;}
.v0_c02274{vertical-align:0.000000px;}
.va_c02274{vertical-align:1.080000px;}
.v8_c02274{vertical-align:2.880000px;}
.vc_c02274{vertical-align:4.320000px;}
.v1_c02274{vertical-align:5.400000px;}
.v5_c02274{vertical-align:7.560000px;}
.vb_c02274{vertical-align:9.720600px;}
.v4_c02274{vertical-align:12.960000px;}
.ls3d_c02274{letter-spacing:-0.097200px;}
.ls35_c02274{letter-spacing:-0.086184px;}
.ls3b_c02274{letter-spacing:-0.078156px;}
.ls31_c02274{letter-spacing:-0.043200px;}
.ls33_c02274{letter-spacing:-0.019152px;}
.ls32_c02274{letter-spacing:-0.010800px;}
.ls39_c02274{letter-spacing:-0.004788px;}
.ls2f_c02274{letter-spacing:0.000000px;}
.ls16_c02274{letter-spacing:0.006012px;}
.ls1_c02274{letter-spacing:0.007200px;}
.ls2_c02274{letter-spacing:0.010800px;}
.ls5_c02274{letter-spacing:0.012636px;}
.ls15_c02274{letter-spacing:0.014400px;}
.ls14_c02274{letter-spacing:0.019152px;}
.ls1e_c02274{letter-spacing:0.019764px;}
.ls4_c02274{letter-spacing:0.028728px;}
.ls0_c02274{letter-spacing:0.028800px;}
.ls6_c02274{letter-spacing:0.032400px;}
.lsc_c02274{letter-spacing:0.037800px;}
.ls2c_c02274{letter-spacing:0.039528px;}
.ls3_c02274{letter-spacing:0.043092px;}
.lsb_c02274{letter-spacing:0.043200px;}
.lsf_c02274{letter-spacing:0.052668px;}
.ls2d_c02274{letter-spacing:0.052704px;}
.ls18_c02274{letter-spacing:0.059292px;}
.ls1c_c02274{letter-spacing:0.065880px;}
.ls29_c02274{letter-spacing:0.072468px;}
.ls9_c02274{letter-spacing:0.076608px;}
.ls3a_c02274{letter-spacing:0.081396px;}
.ls2e_c02274{letter-spacing:0.085644px;}
.ls26_c02274{letter-spacing:0.092232px;}
.ls23_c02274{letter-spacing:0.105408px;}
.ls10_c02274{letter-spacing:0.114912px;}
.ls12_c02274{letter-spacing:0.124488px;}
.ls13_c02274{letter-spacing:0.134064px;}
.ls2a_c02274{letter-spacing:0.138348px;}
.ls11_c02274{letter-spacing:0.138852px;}
.ls30_c02274{letter-spacing:0.151200px;}
.ls22_c02274{letter-spacing:0.151524px;}
.ls7_c02274{letter-spacing:0.158112px;}
.lse_c02274{letter-spacing:0.162792px;}
.ls34_c02274{letter-spacing:0.167580px;}
.ls20_c02274{letter-spacing:0.177876px;}
.ls1a_c02274{letter-spacing:0.180000px;}
.ls17_c02274{letter-spacing:0.180360px;}
.lsa_c02274{letter-spacing:0.181944px;}
.ls8_c02274{letter-spacing:110.160000px;}
.ls2b_c02274{letter-spacing:130.500000px;}
.ls28_c02274{letter-spacing:131.400000px;}
.ls36_c02274{letter-spacing:141.658200px;}
.ls21_c02274{letter-spacing:164.160000px;}
.ls38_c02274{letter-spacing:167.221800px;}
.ls24_c02274{letter-spacing:176.400000px;}
.lsd_c02274{letter-spacing:184.950000px;}
.ls37_c02274{letter-spacing:188.460000px;}
.ls1f_c02274{letter-spacing:209.880000px;}
.ls1b_c02274{letter-spacing:230.400000px;}
.ls19_c02274{letter-spacing:275.400000px;}
.ls1d_c02274{letter-spacing:319.680000px;}
.ls25_c02274{letter-spacing:325.080000px;}
.ls27_c02274{letter-spacing:390.960000px;}
.ls3c_c02274{letter-spacing:1018.980000px;}
.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;}
}
.ws3_c02274{word-spacing:-16.647876px;}
.ws0_c02274{word-spacing:-16.628112px;}
.ws8_c02274{word-spacing:-16.621524px;}
.wsa_c02274{word-spacing:-16.608348px;}
.ws6_c02274{word-spacing:-16.562232px;}
.ws5_c02274{word-spacing:-16.529292px;}
.wsf_c02274{word-spacing:-0.272916px;}
.ws10_c02274{word-spacing:-0.253764px;}
.ws13_c02274{word-spacing:-0.229824px;}
.ws16_c02274{word-spacing:-0.225036px;}
.ws15_c02274{word-spacing:-0.215460px;}
.ws12_c02274{word-spacing:-0.205884px;}
.ws17_c02274{word-spacing:-0.172368px;}
.ws11_c02274{word-spacing:-0.119700px;}
.ws18_c02274{word-spacing:-0.110124px;}
.wse_c02274{word-spacing:-0.101088px;}
.ws1a_c02274{word-spacing:-0.090180px;}
.wsc_c02274{word-spacing:-0.086400px;}
.ws1f_c02274{word-spacing:-0.064800px;}
.ws19_c02274{word-spacing:-0.014400px;}
.ws1e_c02274{word-spacing:-0.013176px;}
.wsd_c02274{word-spacing:-0.007200px;}
.wsb_c02274{word-spacing:0.000000px;}
.ws23_c02274{word-spacing:0.006588px;}
.ws20_c02274{word-spacing:0.019764px;}
.ws1c_c02274{word-spacing:0.026352px;}
.ws1b_c02274{word-spacing:0.032940px;}
.ws22_c02274{word-spacing:0.039528px;}
.ws21_c02274{word-spacing:0.052704px;}
.ws1d_c02274{word-spacing:0.072468px;}
.ws14_c02274{word-spacing:0.151200px;}
.ws7_c02274{word-spacing:80.196372px;}
.ws1_c02274{word-spacing:104.689440px;}
.ws9_c02274{word-spacing:113.316372px;}
.ws4_c02274{word-spacing:165.563028px;}
.ws2_c02274{word-spacing:231.923952px;}
._16_c02274{margin-left:-52.558200px;}
._23_c02274{margin-left:-11.880000px;}
._17_c02274{margin-left:-9.720000px;}
._24_c02274{margin-left:-7.560000px;}
._1a_c02274{margin-left:-1.202400px;}
._28_c02274{width:9.517176px;}
._15_c02274{width:14.401800px;}
._22_c02274{width:35.640000px;}
._b_c02274{width:50.937552px;}
._1e_c02274{width:54.133200px;}
._20_c02274{width:60.737796px;}
._12_c02274{width:61.740000px;}
._8_c02274{width:68.670180px;}
._1d_c02274{width:72.504000px;}
._1_c02274{width:75.834000px;}
._1b_c02274{width:79.302204px;}
._f_c02274{width:81.144000px;}
._0_c02274{width:86.061600px;}
._d_c02274{width:87.300000px;}
._9_c02274{width:88.358400px;}
._7_c02274{width:89.933184px;}
._1c_c02274{width:91.024776px;}
._e_c02274{width:94.059648px;}
._11_c02274{width:97.740000px;}
._27_c02274{width:99.504000px;}
._a_c02274{width:100.598400px;}
._19_c02274{width:101.985300px;}
._25_c02274{width:104.532264px;}
._10_c02274{width:108.493200px;}
._2a_c02274{width:113.835600px;}
._13_c02274{width:114.994296px;}
._2_c02274{width:116.100000px;}
._29_c02274{width:117.120168px;}
._3_c02274{width:118.260000px;}
._26_c02274{width:119.495016px;}
._1f_c02274{width:127.933200px;}
._4_c02274{width:130.258944px;}
._2e_c02274{width:136.890000px;}
._2b_c02274{width:138.647016px;}
._6_c02274{width:141.355404px;}
._2d_c02274{width:144.475776px;}
._5_c02274{width:148.056120px;}
._18_c02274{width:151.986384px;}
._14_c02274{width:172.584000px;}
._21_c02274{width:193.822200px;}
._2c_c02274{width:196.444656px;}
._c_c02274{width:205.978608px;}
._39_c02274{width:269.631360px;}
._34_c02274{width:272.411496px;}
._30_c02274{width:343.492812px;}
._37_c02274{width:372.048408px;}
._33_c02274{width:418.138056px;}
._38_c02274{width:458.660844px;}
._35_c02274{width:464.359464px;}
._31_c02274{width:572.178672px;}
._32_c02274{width:740.315484px;}
._36_c02274{width:743.993712px;}
._2f_c02274{width:1597.291200px;}
.fc0_c02274{color:rgb(0,0,0);}
.fs5_c02274{font-size:11.880000px;}
.fs3_c02274{font-size:42.120000px;}
.fs2_c02274{font-size:47.880000px;}
.fs1_c02274{font-size:54.000000px;}
.fs6_c02274{font-size:60.120000px;}
.fs4_c02274{font-size:65.880000px;}
.fs0_c02274{font-size:72.000000px;}
.y0_c02274{bottom:0.000000px;}
.y4_c02274{bottom:57.360450px;}
.y3_c02274{bottom:78.060450px;}
.y4a_c02274{bottom:120.180150px;}
.y49_c02274{bottom:135.660600px;}
.y48_c02274{bottom:151.230150px;}
.y47_c02274{bottom:166.710600px;}
.y46_c02274{bottom:183.270450px;}
.y45_c02274{bottom:202.260450px;}
.y44_c02274{bottom:221.250450px;}
.y43_c02274{bottom:240.240450px;}
.y42_c02274{bottom:259.230450px;}
.y41_c02274{bottom:278.130450px;}
.y40_c02274{bottom:297.120450px;}
.y3f_c02274{bottom:316.110450px;}
.y3e_c02274{bottom:335.100450px;}
.y3d_c02274{bottom:354.090450px;}
.y3c_c02274{bottom:372.360450px;}
.y3b_c02274{bottom:389.190450px;}
.y3a_c02274{bottom:412.590600px;}
.y39_c02274{bottom:428.160150px;}
.y38_c02274{bottom:443.370600px;}
.y37_c02274{bottom:461.100450px;}
.y36_c02274{bottom:481.800450px;}
.y35_c02274{bottom:500.790600px;}
.y34_c02274{bottom:519.690600px;}
.y33_c02274{bottom:538.680450px;}
.y32_c02274{bottom:559.380450px;}
.y31_c02274{bottom:578.010450px;}
.y30_c02274{bottom:596.280450px;}
.y2f_c02274{bottom:619.410450px;}
.y2e_c02274{bottom:635.880450px;}
.y2d_c02274{bottom:655.590450px;}
.y2c_c02274{bottom:672.870450px;}
.y2b_c02274{bottom:693.390450px;}
.y2a_c02274{bottom:708.870900px;}
.y29_c02274{bottom:724.440450px;}
.y28_c02274{bottom:739.920450px;}
.y27_c02274{bottom:740.279550px;}
.y26_c02274{bottom:758.910450px;}
.y25_c02274{bottom:759.269550px;}
.y24_c02274{bottom:777.900450px;}
.y23_c02274{bottom:778.259550px;}
.y22_c02274{bottom:796.800450px;}
.y21_c02274{bottom:797.250900px;}
.y20_c02274{bottom:815.790600px;}
.y1f_c02274{bottom:816.150450px;}
.y1e_c02274{bottom:835.140450px;}
.y1d_c02274{bottom:853.770450px;}
.y1c_c02274{bottom:854.131350px;}
.y1b_c02274{bottom:874.470450px;}
.y1a_c02274{bottom:874.831350px;}
.y19_c02274{bottom:895.170450px;}
.y18_c02274{bottom:895.530450px;}
.y17_c02274{bottom:916.860450px;}
.y16_c02274{bottom:936.120450px;}
.y15_c02274{bottom:952.590450px;}
.y14_c02274{bottom:973.380450px;}
.y12_c02274{bottom:982.110450px;}
.y13_c02274{bottom:982.560150px;}
.y11_c02274{bottom:982.560900px;}
.y10_c02274{bottom:1001.100450px;}
.yf_c02274{bottom:1001.460450px;}
.ye_c02274{bottom:1022.160450px;}
.yd_c02274{bottom:1040.790450px;}
.yc_c02274{bottom:1041.151350px;}
.yb_c02274{bottom:1061.490450px;}
.ya_c02274{bottom:1061.851350px;}
.y9_c02274{bottom:1082.190450px;}
.y8_c02274{bottom:1082.550450px;}
.y7_c02274{bottom:1103.970450px;}
.y6_c02274{bottom:1123.140450px;}
.y5_c02274{bottom:1139.610450px;}
.y2_c02274{bottom:1172.640450px;}
.y1_c02274{bottom:1193.160450px;}
.h8_c02274{height:10.551621px;}
.hf_c02274{height:47.381836px;}
.h4_c02274{height:47.961914px;}
.h3_c02274{height:48.570293px;}
.hd_c02274{height:53.397598px;}
.h6_c02274{height:61.393535px;}
.ha_c02274{height:61.394135px;}
.hc_c02274{height:62.473535px;}
.hb_c02274{height:62.832935px;}
.h7_c02274{height:62.833535px;}
.h2_c02274{height:63.175781px;}
.h1_c02274{height:63.949219px;}
.he_c02274{height:64.975781px;}
.h5_c02274{height:66.073535px;}
.h9_c02274{height:66.074135px;}
.h0_c02274{height:1263.000000px;}
.w1_c02274{width:892.500000px;}
.w0_c02274{width:892.830000px;}
.x0_c02274{left:0.000000px;}
.x1_c02274{left:127.620000px;}
.x3_c02274{left:135.630000px;}
.x4_c02274{left:143.730000px;}
.x5_c02274{left:164.700000px;}
.x6_c02274{left:219.690000px;}
.x2_c02274{left:432.990000px;}
.x7_c02274{left:746.730450px;}
@media print{
.v6_c02274{vertical-align:-9.278400pt;}
.v9_c02274{vertical-align:-6.400000pt;}
.v3_c02274{vertical-align:-3.840000pt;}
.v2_c02274{vertical-align:-2.560000pt;}
.v7_c02274{vertical-align:-1.280000pt;}
.v0_c02274{vertical-align:0.000000pt;}
.va_c02274{vertical-align:0.960000pt;}
.v8_c02274{vertical-align:2.560000pt;}
.vc_c02274{vertical-align:3.840000pt;}
.v1_c02274{vertical-align:4.800000pt;}
.v5_c02274{vertical-align:6.720000pt;}
.vb_c02274{vertical-align:8.640533pt;}
.v4_c02274{vertical-align:11.520000pt;}
.ls3d_c02274{letter-spacing:-0.086400pt;}
.ls35_c02274{letter-spacing:-0.076608pt;}
.ls3b_c02274{letter-spacing:-0.069472pt;}
.ls31_c02274{letter-spacing:-0.038400pt;}
.ls33_c02274{letter-spacing:-0.017024pt;}
.ls32_c02274{letter-spacing:-0.009600pt;}
.ls39_c02274{letter-spacing:-0.004256pt;}
.ls2f_c02274{letter-spacing:0.000000pt;}
.ls16_c02274{letter-spacing:0.005344pt;}
.ls1_c02274{letter-spacing:0.006400pt;}
.ls2_c02274{letter-spacing:0.009600pt;}
.ls5_c02274{letter-spacing:0.011232pt;}
.ls15_c02274{letter-spacing:0.012800pt;}
.ls14_c02274{letter-spacing:0.017024pt;}
.ls1e_c02274{letter-spacing:0.017568pt;}
.ls4_c02274{letter-spacing:0.025536pt;}
.ls0_c02274{letter-spacing:0.025600pt;}
.ls6_c02274{letter-spacing:0.028800pt;}
.lsc_c02274{letter-spacing:0.033600pt;}
.ls2c_c02274{letter-spacing:0.035136pt;}
.ls3_c02274{letter-spacing:0.038304pt;}
.lsb_c02274{letter-spacing:0.038400pt;}
.lsf_c02274{letter-spacing:0.046816pt;}
.ls2d_c02274{letter-spacing:0.046848pt;}
.ls18_c02274{letter-spacing:0.052704pt;}
.ls1c_c02274{letter-spacing:0.058560pt;}
.ls29_c02274{letter-spacing:0.064416pt;}
.ls9_c02274{letter-spacing:0.068096pt;}
.ls3a_c02274{letter-spacing:0.072352pt;}
.ls2e_c02274{letter-spacing:0.076128pt;}
.ls26_c02274{letter-spacing:0.081984pt;}
.ls23_c02274{letter-spacing:0.093696pt;}
.ls10_c02274{letter-spacing:0.102144pt;}
.ls12_c02274{letter-spacing:0.110656pt;}
.ls13_c02274{letter-spacing:0.119168pt;}
.ls2a_c02274{letter-spacing:0.122976pt;}
.ls11_c02274{letter-spacing:0.123424pt;}
.ls30_c02274{letter-spacing:0.134400pt;}
.ls22_c02274{letter-spacing:0.134688pt;}
.ls7_c02274{letter-spacing:0.140544pt;}
.lse_c02274{letter-spacing:0.144704pt;}
.ls34_c02274{letter-spacing:0.148960pt;}
.ls20_c02274{letter-spacing:0.158112pt;}
.ls1a_c02274{letter-spacing:0.160000pt;}
.ls17_c02274{letter-spacing:0.160320pt;}
.lsa_c02274{letter-spacing:0.161728pt;}
.ls8_c02274{letter-spacing:97.920000pt;}
.ls2b_c02274{letter-spacing:116.000000pt;}
.ls28_c02274{letter-spacing:116.800000pt;}
.ls36_c02274{letter-spacing:125.918400pt;}
.ls21_c02274{letter-spacing:145.920000pt;}
.ls38_c02274{letter-spacing:148.641600pt;}
.ls24_c02274{letter-spacing:156.800000pt;}
.lsd_c02274{letter-spacing:164.400000pt;}
.ls37_c02274{letter-spacing:167.520000pt;}
.ls1f_c02274{letter-spacing:186.560000pt;}
.ls1b_c02274{letter-spacing:204.800000pt;}
.ls19_c02274{letter-spacing:244.800000pt;}
.ls1d_c02274{letter-spacing:284.160000pt;}
.ls25_c02274{letter-spacing:288.960000pt;}
.ls27_c02274{letter-spacing:347.520000pt;}
.ls3c_c02274{letter-spacing:905.760000pt;}
.ws3_c02274{word-spacing:-14.798112pt;}
.ws0_c02274{word-spacing:-14.780544pt;}
.ws8_c02274{word-spacing:-14.774688pt;}
.wsa_c02274{word-spacing:-14.762976pt;}
.ws6_c02274{word-spacing:-14.721984pt;}
.ws5_c02274{word-spacing:-14.692704pt;}
.wsf_c02274{word-spacing:-0.242592pt;}
.ws10_c02274{word-spacing:-0.225568pt;}
.ws13_c02274{word-spacing:-0.204288pt;}
.ws16_c02274{word-spacing:-0.200032pt;}
.ws15_c02274{word-spacing:-0.191520pt;}
.ws12_c02274{word-spacing:-0.183008pt;}
.ws17_c02274{word-spacing:-0.153216pt;}
.ws11_c02274{word-spacing:-0.106400pt;}
.ws18_c02274{word-spacing:-0.097888pt;}
.wse_c02274{word-spacing:-0.089856pt;}
.ws1a_c02274{word-spacing:-0.080160pt;}
.wsc_c02274{word-spacing:-0.076800pt;}
.ws1f_c02274{word-spacing:-0.057600pt;}
.ws19_c02274{word-spacing:-0.012800pt;}
.ws1e_c02274{word-spacing:-0.011712pt;}
.wsd_c02274{word-spacing:-0.006400pt;}
.wsb_c02274{word-spacing:0.000000pt;}
.ws23_c02274{word-spacing:0.005856pt;}
.ws20_c02274{word-spacing:0.017568pt;}
.ws1c_c02274{word-spacing:0.023424pt;}
.ws1b_c02274{word-spacing:0.029280pt;}
.ws22_c02274{word-spacing:0.035136pt;}
.ws21_c02274{word-spacing:0.046848pt;}
.ws1d_c02274{word-spacing:0.064416pt;}
.ws14_c02274{word-spacing:0.134400pt;}
.ws7_c02274{word-spacing:71.285664pt;}
.ws1_c02274{word-spacing:93.057280pt;}
.ws9_c02274{word-spacing:100.725664pt;}
.ws4_c02274{word-spacing:147.167136pt;}
.ws2_c02274{word-spacing:206.154624pt;}
._16_c02274{margin-left:-46.718400pt;}
._23_c02274{margin-left:-10.560000pt;}
._17_c02274{margin-left:-8.640000pt;}
._24_c02274{margin-left:-6.720000pt;}
._1a_c02274{margin-left:-1.068800pt;}
._28_c02274{width:8.459712pt;}
._15_c02274{width:12.801600pt;}
._22_c02274{width:31.680000pt;}
._b_c02274{width:45.277824pt;}
._1e_c02274{width:48.118400pt;}
._20_c02274{width:53.989152pt;}
._12_c02274{width:54.880000pt;}
._8_c02274{width:61.040160pt;}
._1d_c02274{width:64.448000pt;}
._1_c02274{width:67.408000pt;}
._1b_c02274{width:70.490848pt;}
._f_c02274{width:72.128000pt;}
._0_c02274{width:76.499200pt;}
._d_c02274{width:77.600000pt;}
._9_c02274{width:78.540800pt;}
._7_c02274{width:79.940608pt;}
._1c_c02274{width:80.910912pt;}
._e_c02274{width:83.608576pt;}
._11_c02274{width:86.880000pt;}
._27_c02274{width:88.448000pt;}
._a_c02274{width:89.420800pt;}
._19_c02274{width:90.653600pt;}
._25_c02274{width:92.917568pt;}
._10_c02274{width:96.438400pt;}
._2a_c02274{width:101.187200pt;}
._13_c02274{width:102.217152pt;}
._2_c02274{width:103.200000pt;}
._29_c02274{width:104.106816pt;}
._3_c02274{width:105.120000pt;}
._26_c02274{width:106.217792pt;}
._1f_c02274{width:113.718400pt;}
._4_c02274{width:115.785728pt;}
._2e_c02274{width:121.680000pt;}
._2b_c02274{width:123.241792pt;}
._6_c02274{width:125.649248pt;}
._2d_c02274{width:128.422912pt;}
._5_c02274{width:131.605440pt;}
._18_c02274{width:135.099008pt;}
._14_c02274{width:153.408000pt;}
._21_c02274{width:172.286400pt;}
._2c_c02274{width:174.617472pt;}
._c_c02274{width:183.092096pt;}
._39_c02274{width:239.672320pt;}
._34_c02274{width:242.143552pt;}
._30_c02274{width:305.326944pt;}
._37_c02274{width:330.709696pt;}
._33_c02274{width:371.678272pt;}
._38_c02274{width:407.698528pt;}
._35_c02274{width:412.763968pt;}
._31_c02274{width:508.603264pt;}
._32_c02274{width:658.058208pt;}
._36_c02274{width:661.327744pt;}
._2f_c02274{width:1419.814400pt;}
.fs5_c02274{font-size:10.560000pt;}
.fs3_c02274{font-size:37.440000pt;}
.fs2_c02274{font-size:42.560000pt;}
.fs1_c02274{font-size:48.000000pt;}
.fs6_c02274{font-size:53.440000pt;}
.fs4_c02274{font-size:58.560000pt;}
.fs0_c02274{font-size:64.000000pt;}
.y0_c02274{bottom:0.000000pt;}
.y4_c02274{bottom:50.987067pt;}
.y3_c02274{bottom:69.387067pt;}
.y4a_c02274{bottom:106.826800pt;}
.y49_c02274{bottom:120.587200pt;}
.y48_c02274{bottom:134.426800pt;}
.y47_c02274{bottom:148.187200pt;}
.y46_c02274{bottom:162.907067pt;}
.y45_c02274{bottom:179.787067pt;}
.y44_c02274{bottom:196.667067pt;}
.y43_c02274{bottom:213.547067pt;}
.y42_c02274{bottom:230.427067pt;}
.y41_c02274{bottom:247.227067pt;}
.y40_c02274{bottom:264.107067pt;}
.y3f_c02274{bottom:280.987067pt;}
.y3e_c02274{bottom:297.867067pt;}
.y3d_c02274{bottom:314.747067pt;}
.y3c_c02274{bottom:330.987067pt;}
.y3b_c02274{bottom:345.947067pt;}
.y3a_c02274{bottom:366.747200pt;}
.y39_c02274{bottom:380.586800pt;}
.y38_c02274{bottom:394.107200pt;}
.y37_c02274{bottom:409.867067pt;}
.y36_c02274{bottom:428.267067pt;}
.y35_c02274{bottom:445.147200pt;}
.y34_c02274{bottom:461.947200pt;}
.y33_c02274{bottom:478.827067pt;}
.y32_c02274{bottom:497.227067pt;}
.y31_c02274{bottom:513.787067pt;}
.y30_c02274{bottom:530.027067pt;}
.y2f_c02274{bottom:550.587067pt;}
.y2e_c02274{bottom:565.227067pt;}
.y2d_c02274{bottom:582.747067pt;}
.y2c_c02274{bottom:598.107067pt;}
.y2b_c02274{bottom:616.347067pt;}
.y2a_c02274{bottom:630.107467pt;}
.y29_c02274{bottom:643.947067pt;}
.y28_c02274{bottom:657.707067pt;}
.y27_c02274{bottom:658.026267pt;}
.y26_c02274{bottom:674.587067pt;}
.y25_c02274{bottom:674.906267pt;}
.y24_c02274{bottom:691.467067pt;}
.y23_c02274{bottom:691.786267pt;}
.y22_c02274{bottom:708.267067pt;}
.y21_c02274{bottom:708.667467pt;}
.y20_c02274{bottom:725.147200pt;}
.y1f_c02274{bottom:725.467067pt;}
.y1e_c02274{bottom:742.347067pt;}
.y1d_c02274{bottom:758.907067pt;}
.y1c_c02274{bottom:759.227867pt;}
.y1b_c02274{bottom:777.307067pt;}
.y1a_c02274{bottom:777.627867pt;}
.y19_c02274{bottom:795.707067pt;}
.y18_c02274{bottom:796.027067pt;}
.y17_c02274{bottom:814.987067pt;}
.y16_c02274{bottom:832.107067pt;}
.y15_c02274{bottom:846.747067pt;}
.y14_c02274{bottom:865.227067pt;}
.y12_c02274{bottom:872.987067pt;}
.y13_c02274{bottom:873.386800pt;}
.y11_c02274{bottom:873.387467pt;}
.y10_c02274{bottom:889.867067pt;}
.yf_c02274{bottom:890.187067pt;}
.ye_c02274{bottom:908.587067pt;}
.yd_c02274{bottom:925.147067pt;}
.yc_c02274{bottom:925.467867pt;}
.yb_c02274{bottom:943.547067pt;}
.ya_c02274{bottom:943.867867pt;}
.y9_c02274{bottom:961.947067pt;}
.y8_c02274{bottom:962.267067pt;}
.y7_c02274{bottom:981.307067pt;}
.y6_c02274{bottom:998.347067pt;}
.y5_c02274{bottom:1012.987067pt;}
.y2_c02274{bottom:1042.347067pt;}
.y1_c02274{bottom:1060.587067pt;}
.h8_c02274{height:9.379219pt;}
.hf_c02274{height:42.117188pt;}
.h4_c02274{height:42.632812pt;}
.h3_c02274{height:43.173594pt;}
.hd_c02274{height:47.464531pt;}
.h6_c02274{height:54.572031pt;}
.ha_c02274{height:54.572565pt;}
.hc_c02274{height:55.532031pt;}
.hb_c02274{height:55.851498pt;}
.h7_c02274{height:55.852031pt;}
.h2_c02274{height:56.156250pt;}
.h1_c02274{height:56.843750pt;}
.he_c02274{height:57.756250pt;}
.h5_c02274{height:58.732031pt;}
.h9_c02274{height:58.732565pt;}
.h0_c02274{height:1122.666667pt;}
.w1_c02274{width:793.333333pt;}
.w0_c02274{width:793.626667pt;}
.x0_c02274{left:0.000000pt;}
.x1_c02274{left:113.440000pt;}
.x3_c02274{left:120.560000pt;}
.x4_c02274{left:127.760000pt;}
.x5_c02274{left:146.400000pt;}
.x6_c02274{left:195.280000pt;}
.x2_c02274{left:384.880000pt;}
.x7_c02274{left:663.760400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75fd99d96288235095457be8.woff2')format("woff");}.ff1_c02275{font-family:ff1_c02275;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02275;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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:53.640000px;}
.ls13_c02275{letter-spacing:-0.086184px;}
.ls16_c02275{letter-spacing:-0.059292px;}
.ls14_c02275{letter-spacing:-0.038304px;}
.ls12_c02275{letter-spacing:-0.014364px;}
.ls17_c02275{letter-spacing:-0.006012px;}
.ls11_c02275{letter-spacing:0.000000px;}
.ls1_c02275{letter-spacing:0.007200px;}
.ls4_c02275{letter-spacing:0.019152px;}
.ls2_c02275{letter-spacing:0.027000px;}
.ls0_c02275{letter-spacing:0.028800px;}
.ls3_c02275{letter-spacing:0.043092px;}
.lsa_c02275{letter-spacing:0.059292px;}
.lse_c02275{letter-spacing:0.065880px;}
.ls5_c02275{letter-spacing:0.072468px;}
.ls9_c02275{letter-spacing:0.085644px;}
.lsd_c02275{letter-spacing:0.092232px;}
.ls15_c02275{letter-spacing:0.110124px;}
.lsc_c02275{letter-spacing:0.138348px;}
.lsb_c02275{letter-spacing:0.151524px;}
.ls6_c02275{letter-spacing:0.158112px;}
.lsf_c02275{letter-spacing:0.177876px;}
.ls10_c02275{letter-spacing:66.600000px;}
.ls8_c02275{letter-spacing:69.120000px;}
.ls7_c02275{letter-spacing:99.720000px;}
.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;}
}
.ws3_c02275{word-spacing:-16.647876px;}
.ws2_c02275{word-spacing:-16.628112px;}
.ws7_c02275{word-spacing:-16.608348px;}
.ws13_c02275{word-spacing:-0.264528px;}
.wse_c02275{word-spacing:-0.115200px;}
.wsd_c02275{word-spacing:-0.086400px;}
.wsf_c02275{word-spacing:-0.007200px;}
.wsc_c02275{word-spacing:0.000000px;}
.ws11_c02275{word-spacing:0.006588px;}
.ws10_c02275{word-spacing:0.019764px;}
.ws14_c02275{word-spacing:0.026352px;}
.ws12_c02275{word-spacing:0.032940px;}
.wsa_c02275{word-spacing:66.150000px;}
.ws1_c02275{word-spacing:79.515972px;}
.wsb_c02275{word-spacing:79.518096px;}
.ws4_c02275{word-spacing:80.196372px;}
.ws0_c02275{word-spacing:98.556372px;}
.ws5_c02275{word-spacing:98.602380px;}
.ws9_c02275{word-spacing:98.626608px;}
.ws6_c02275{word-spacing:112.635972px;}
.ws8_c02275{word-spacing:113.316372px;}
._7_c02275{margin-left:-1.129464px;}
._1_c02275{width:85.218912px;}
._b_c02275{width:104.045112px;}
._4_c02275{width:117.168408px;}
._8_c02275{width:138.598020px;}
._3_c02275{width:146.524248px;}
._a_c02275{width:163.258056px;}
._e_c02275{width:179.820000px;}
._6_c02275{width:203.780844px;}
._9_c02275{width:302.917068px;}
._c_c02275{width:317.298672px;}
._2_c02275{width:430.941672px;}
._d_c02275{width:485.435484px;}
._5_c02275{width:489.113712px;}
._0_c02275{width:591.246000px;}
.fc0_c02275{color:rgb(0,0,0);}
.fs2_c02275{font-size:47.880000px;}
.fs1_c02275{font-size:54.000000px;}
.fs4_c02275{font-size:60.120000px;}
.fs3_c02275{font-size:65.880000px;}
.fs0_c02275{font-size:72.000000px;}
.y0_c02275{bottom:0.000000px;}
.y4_c02275{bottom:57.360450px;}
.y3_c02275{bottom:78.060450px;}
.y45_c02275{bottom:118.469550px;}
.y44_c02275{bottom:133.950000px;}
.y43_c02275{bottom:149.519550px;}
.y42_c02275{bottom:165.000000px;}
.y41_c02275{bottom:180.569550px;}
.y40_c02275{bottom:196.050000px;}
.y3f_c02275{bottom:211.619550px;}
.y3e_c02275{bottom:227.100000px;}
.y3d_c02275{bottom:242.669550px;}
.y3c_c02275{bottom:258.150000px;}
.y3b_c02275{bottom:273.719550px;}
.y3a_c02275{bottom:289.200000px;}
.y39_c02275{bottom:304.769550px;}
.y38_c02275{bottom:320.250000px;}
.y37_c02275{bottom:335.819550px;}
.y36_c02275{bottom:351.300000px;}
.y35_c02275{bottom:366.869550px;}
.y34_c02275{bottom:382.350000px;}
.y33_c02275{bottom:397.919550px;}
.y32_c02275{bottom:413.400000px;}
.y31_c02275{bottom:428.969550px;}
.y30_c02275{bottom:444.450000px;}
.y2f_c02275{bottom:459.930450px;}
.y2e_c02275{bottom:475.500000px;}
.y2d_c02275{bottom:490.980450px;}
.y2c_c02275{bottom:506.550000px;}
.y2b_c02275{bottom:522.030450px;}
.y2a_c02275{bottom:537.600000px;}
.y29_c02275{bottom:553.080450px;}
.y28_c02275{bottom:568.650000px;}
.y27_c02275{bottom:584.130450px;}
.y26_c02275{bottom:599.700000px;}
.y25_c02275{bottom:615.180450px;}
.y24_c02275{bottom:630.750000px;}
.y23_c02275{bottom:646.230450px;}
.y22_c02275{bottom:661.800000px;}
.y21_c02275{bottom:677.280450px;}
.y20_c02275{bottom:692.850000px;}
.y1f_c02275{bottom:708.330450px;}
.y1e_c02275{bottom:723.900000px;}
.y1d_c02275{bottom:739.380450px;}
.y1c_c02275{bottom:754.950000px;}
.y1b_c02275{bottom:770.430450px;}
.y1a_c02275{bottom:786.000000px;}
.y19_c02275{bottom:801.480450px;}
.y18_c02275{bottom:817.050000px;}
.y17_c02275{bottom:832.530450px;}
.y16_c02275{bottom:848.100000px;}
.y15_c02275{bottom:863.580450px;}
.y14_c02275{bottom:880.140450px;}
.y13_c02275{bottom:899.130450px;}
.y12_c02275{bottom:918.480450px;}
.y11_c02275{bottom:937.470450px;}
.y10_c02275{bottom:956.460450px;}
.yf_c02275{bottom:975.360450px;}
.ye_c02275{bottom:994.710450px;}
.yd_c02275{bottom:1013.700450px;}
.yc_c02275{bottom:1032.690450px;}
.yb_c02275{bottom:1051.680450px;}
.y9_c02275{bottom:1069.590450px;}
.y8_c02275{bottom:1069.950450px;}
.ya_c02275{bottom:1083.360450px;}
.y7_c02275{bottom:1098.930450px;}
.y6_c02275{bottom:1122.060450px;}
.y5_c02275{bottom:1139.250450px;}
.y2_c02275{bottom:1172.640450px;}
.y1_c02275{bottom:1193.160450px;}
.h5_c02275{height:42.526230px;}
.h3_c02275{height:47.961914px;}
.h2_c02275{height:63.175781px;}
.h1_c02275{height:63.949219px;}
.h4_c02275{height:96.166230px;}
.h0_c02275{height:1263.000000px;}
.w1_c02275{width:892.500000px;}
.w0_c02275{width:892.830000px;}
.x0_c02275{left:0.000000px;}
.x1_c02275{left:127.620000px;}
.x3_c02275{left:135.630000px;}
.x4_c02275{left:268.380000px;}
.x2_c02275{left:432.990000px;}
.x5_c02275{left:517.410000px;}
.x6_c02275{left:552.510000px;}
.x7_c02275{left:557.550000px;}
.x8_c02275{left:593.910000px;}
.x9_c02275{left:602.460000px;}
.xa_c02275{left:642.150000px;}
.xb_c02275{left:688.770000px;}
.xc_c02275{left:731.970000px;}
@media print{
.v0_c02275{vertical-align:0.000000pt;}
.v1_c02275{vertical-align:47.680000pt;}
.ls13_c02275{letter-spacing:-0.076608pt;}
.ls16_c02275{letter-spacing:-0.052704pt;}
.ls14_c02275{letter-spacing:-0.034048pt;}
.ls12_c02275{letter-spacing:-0.012768pt;}
.ls17_c02275{letter-spacing:-0.005344pt;}
.ls11_c02275{letter-spacing:0.000000pt;}
.ls1_c02275{letter-spacing:0.006400pt;}
.ls4_c02275{letter-spacing:0.017024pt;}
.ls2_c02275{letter-spacing:0.024000pt;}
.ls0_c02275{letter-spacing:0.025600pt;}
.ls3_c02275{letter-spacing:0.038304pt;}
.lsa_c02275{letter-spacing:0.052704pt;}
.lse_c02275{letter-spacing:0.058560pt;}
.ls5_c02275{letter-spacing:0.064416pt;}
.ls9_c02275{letter-spacing:0.076128pt;}
.lsd_c02275{letter-spacing:0.081984pt;}
.ls15_c02275{letter-spacing:0.097888pt;}
.lsc_c02275{letter-spacing:0.122976pt;}
.lsb_c02275{letter-spacing:0.134688pt;}
.ls6_c02275{letter-spacing:0.140544pt;}
.lsf_c02275{letter-spacing:0.158112pt;}
.ls10_c02275{letter-spacing:59.200000pt;}
.ls8_c02275{letter-spacing:61.440000pt;}
.ls7_c02275{letter-spacing:88.640000pt;}
.ws3_c02275{word-spacing:-14.798112pt;}
.ws2_c02275{word-spacing:-14.780544pt;}
.ws7_c02275{word-spacing:-14.762976pt;}
.ws13_c02275{word-spacing:-0.235136pt;}
.wse_c02275{word-spacing:-0.102400pt;}
.wsd_c02275{word-spacing:-0.076800pt;}
.wsf_c02275{word-spacing:-0.006400pt;}
.wsc_c02275{word-spacing:0.000000pt;}
.ws11_c02275{word-spacing:0.005856pt;}
.ws10_c02275{word-spacing:0.017568pt;}
.ws14_c02275{word-spacing:0.023424pt;}
.ws12_c02275{word-spacing:0.029280pt;}
.wsa_c02275{word-spacing:58.800000pt;}
.ws1_c02275{word-spacing:70.680864pt;}
.wsb_c02275{word-spacing:70.682752pt;}
.ws4_c02275{word-spacing:71.285664pt;}
.ws0_c02275{word-spacing:87.605664pt;}
.ws5_c02275{word-spacing:87.646560pt;}
.ws9_c02275{word-spacing:87.668096pt;}
.ws6_c02275{word-spacing:100.120864pt;}
.ws8_c02275{word-spacing:100.725664pt;}
._7_c02275{margin-left:-1.003968pt;}
._1_c02275{width:75.750144pt;}
._b_c02275{width:92.484544pt;}
._4_c02275{width:104.149696pt;}
._8_c02275{width:123.198240pt;}
._3_c02275{width:130.243776pt;}
._a_c02275{width:145.118272pt;}
._e_c02275{width:159.840000pt;}
._6_c02275{width:181.138528pt;}
._9_c02275{width:269.259616pt;}
._c_c02275{width:282.043264pt;}
._2_c02275{width:383.059264pt;}
._d_c02275{width:431.498208pt;}
._5_c02275{width:434.767744pt;}
._0_c02275{width:525.552000pt;}
.fs2_c02275{font-size:42.560000pt;}
.fs1_c02275{font-size:48.000000pt;}
.fs4_c02275{font-size:53.440000pt;}
.fs3_c02275{font-size:58.560000pt;}
.fs0_c02275{font-size:64.000000pt;}
.y0_c02275{bottom:0.000000pt;}
.y4_c02275{bottom:50.987067pt;}
.y3_c02275{bottom:69.387067pt;}
.y45_c02275{bottom:105.306267pt;}
.y44_c02275{bottom:119.066667pt;}
.y43_c02275{bottom:132.906267pt;}
.y42_c02275{bottom:146.666667pt;}
.y41_c02275{bottom:160.506267pt;}
.y40_c02275{bottom:174.266667pt;}
.y3f_c02275{bottom:188.106267pt;}
.y3e_c02275{bottom:201.866667pt;}
.y3d_c02275{bottom:215.706267pt;}
.y3c_c02275{bottom:229.466667pt;}
.y3b_c02275{bottom:243.306267pt;}
.y3a_c02275{bottom:257.066667pt;}
.y39_c02275{bottom:270.906267pt;}
.y38_c02275{bottom:284.666667pt;}
.y37_c02275{bottom:298.506267pt;}
.y36_c02275{bottom:312.266667pt;}
.y35_c02275{bottom:326.106267pt;}
.y34_c02275{bottom:339.866667pt;}
.y33_c02275{bottom:353.706267pt;}
.y32_c02275{bottom:367.466667pt;}
.y31_c02275{bottom:381.306267pt;}
.y30_c02275{bottom:395.066667pt;}
.y2f_c02275{bottom:408.827067pt;}
.y2e_c02275{bottom:422.666667pt;}
.y2d_c02275{bottom:436.427067pt;}
.y2c_c02275{bottom:450.266667pt;}
.y2b_c02275{bottom:464.027067pt;}
.y2a_c02275{bottom:477.866667pt;}
.y29_c02275{bottom:491.627067pt;}
.y28_c02275{bottom:505.466667pt;}
.y27_c02275{bottom:519.227067pt;}
.y26_c02275{bottom:533.066667pt;}
.y25_c02275{bottom:546.827067pt;}
.y24_c02275{bottom:560.666667pt;}
.y23_c02275{bottom:574.427067pt;}
.y22_c02275{bottom:588.266667pt;}
.y21_c02275{bottom:602.027067pt;}
.y20_c02275{bottom:615.866667pt;}
.y1f_c02275{bottom:629.627067pt;}
.y1e_c02275{bottom:643.466667pt;}
.y1d_c02275{bottom:657.227067pt;}
.y1c_c02275{bottom:671.066667pt;}
.y1b_c02275{bottom:684.827067pt;}
.y1a_c02275{bottom:698.666667pt;}
.y19_c02275{bottom:712.427067pt;}
.y18_c02275{bottom:726.266667pt;}
.y17_c02275{bottom:740.027067pt;}
.y16_c02275{bottom:753.866667pt;}
.y15_c02275{bottom:767.627067pt;}
.y14_c02275{bottom:782.347067pt;}
.y13_c02275{bottom:799.227067pt;}
.y12_c02275{bottom:816.427067pt;}
.y11_c02275{bottom:833.307067pt;}
.y10_c02275{bottom:850.187067pt;}
.yf_c02275{bottom:866.987067pt;}
.ye_c02275{bottom:884.187067pt;}
.yd_c02275{bottom:901.067067pt;}
.yc_c02275{bottom:917.947067pt;}
.yb_c02275{bottom:934.827067pt;}
.y9_c02275{bottom:950.747067pt;}
.y8_c02275{bottom:951.067067pt;}
.ya_c02275{bottom:962.987067pt;}
.y7_c02275{bottom:976.827067pt;}
.y6_c02275{bottom:997.387067pt;}
.y5_c02275{bottom:1012.667067pt;}
.y2_c02275{bottom:1042.347067pt;}
.y1_c02275{bottom:1060.587067pt;}
.h5_c02275{height:37.801094pt;}
.h3_c02275{height:42.632812pt;}
.h2_c02275{height:56.156250pt;}
.h1_c02275{height:56.843750pt;}
.h4_c02275{height:85.481094pt;}
.h0_c02275{height:1122.666667pt;}
.w1_c02275{width:793.333333pt;}
.w0_c02275{width:793.626667pt;}
.x0_c02275{left:0.000000pt;}
.x1_c02275{left:113.440000pt;}
.x3_c02275{left:120.560000pt;}
.x4_c02275{left:238.560000pt;}
.x2_c02275{left:384.880000pt;}
.x5_c02275{left:459.920000pt;}
.x6_c02275{left:491.120000pt;}
.x7_c02275{left:495.600000pt;}
.x8_c02275{left:527.920000pt;}
.x9_c02275{left:535.520000pt;}
.xa_c02275{left:570.800000pt;}
.xb_c02275{left:612.240000pt;}
.xc_c02275{left:650.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_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_8644ec5c40195b66a321ba45.woff2')format("woff");}.ff1_c02276{font-family:ff1_c02276;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02276;src:url('chunks/assets/font_d7b50fa3b640b33978fd2ecd.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;}
.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);}
.v3_c02276{vertical-align:-22.320000px;}
.v2_c02276{vertical-align:-16.920000px;}
.v4_c02276{vertical-align:-5.400000px;}
.v0_c02276{vertical-align:0.000000px;}
.v1_c02276{vertical-align:1.440000px;}
.ls24_c02276{letter-spacing:-0.181116px;}
.ls23_c02276{letter-spacing:-0.180360px;}
.ls22_c02276{letter-spacing:-0.176904px;}
.ls20_c02276{letter-spacing:-0.032940px;}
.ls1e_c02276{letter-spacing:-0.014400px;}
.ls1f_c02276{letter-spacing:-0.013176px;}
.ls21_c02276{letter-spacing:-0.007200px;}
.ls1d_c02276{letter-spacing:0.000000px;}
.ls1_c02276{letter-spacing:0.007200px;}
.ls13_c02276{letter-spacing:0.013176px;}
.ls2_c02276{letter-spacing:0.014400px;}
.ls17_c02276{letter-spacing:0.019764px;}
.ls12_c02276{letter-spacing:0.026352px;}
.ls0_c02276{letter-spacing:0.028800px;}
.ls1a_c02276{letter-spacing:0.032940px;}
.ls3_c02276{letter-spacing:0.039528px;}
.lsc_c02276{letter-spacing:0.043200px;}
.lsd_c02276{letter-spacing:0.050400px;}
.ls8_c02276{letter-spacing:0.052704px;}
.lse_c02276{letter-spacing:0.059292px;}
.ls18_c02276{letter-spacing:0.065880px;}
.ls19_c02276{letter-spacing:0.072468px;}
.ls1b_c02276{letter-spacing:0.079056px;}
.ls1c_c02276{letter-spacing:0.085644px;}
.ls6_c02276{letter-spacing:0.098820px;}
.lsa_c02276{letter-spacing:0.131760px;}
.ls14_c02276{letter-spacing:0.180000px;}
.ls11_c02276{letter-spacing:0.181944px;}
.ls10_c02276{letter-spacing:34.065360px;}
.ls15_c02276{letter-spacing:36.360000px;}
.ls4_c02276{letter-spacing:64.080000px;}
.ls9_c02276{letter-spacing:99.720000px;}
.ls5_c02276{letter-spacing:113.760000px;}
.ls7_c02276{letter-spacing:128.520000px;}
.lsb_c02276{letter-spacing:444.960000px;}
.lsf_c02276{letter-spacing:1378.440000px;}
.ls16_c02276{letter-spacing:1463.760000px;}
.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;}
}
.ws4_c02276{word-spacing:-16.601760px;}
.ws1_c02276{word-spacing:-16.568820px;}
.ws5_c02276{word-spacing:-16.529292px;}
.ws0_c02276{word-spacing:-16.509528px;}
.ws3_c02276{word-spacing:-16.437060px;}
.wsf_c02276{word-spacing:-0.165600px;}
.ws10_c02276{word-spacing:-0.115200px;}
.ws15_c02276{word-spacing:-0.093600px;}
.ws7_c02276{word-spacing:-0.086400px;}
.wse_c02276{word-spacing:-0.043200px;}
.wsa_c02276{word-spacing:-0.014400px;}
.ws9_c02276{word-spacing:-0.007200px;}
.ws6_c02276{word-spacing:0.000000px;}
.wsd_c02276{word-spacing:0.007200px;}
.ws1f_c02276{word-spacing:0.013176px;}
.ws8_c02276{word-spacing:0.014400px;}
.ws18_c02276{word-spacing:0.019764px;}
.wsb_c02276{word-spacing:0.039528px;}
.ws23_c02276{word-spacing:0.059292px;}
.ws27_c02276{word-spacing:0.072468px;}
.ws14_c02276{word-spacing:0.079056px;}
.ws26_c02276{word-spacing:0.744444px;}
.ws1d_c02276{word-spacing:1.495476px;}
.ws1c_c02276{word-spacing:2.213568px;}
.ws17_c02276{word-spacing:2.542968px;}
.ws25_c02276{word-spacing:4.374432px;}
.ws24_c02276{word-spacing:6.864696px;}
.ws1e_c02276{word-spacing:7.569612px;}
.ws12_c02276{word-spacing:13.380228px;}
.ws13_c02276{word-spacing:14.460660px;}
.ws1b_c02276{word-spacing:14.836176px;}
.ws22_c02276{word-spacing:21.246300px;}
.ws21_c02276{word-spacing:21.299004px;}
.ws1a_c02276{word-spacing:29.560356px;}
.ws19_c02276{word-spacing:34.942752px;}
.ws16_c02276{word-spacing:44.350416px;}
.ws20_c02276{word-spacing:47.934288px;}
.ws11_c02276{word-spacing:48.689172px;}
.ws2_c02276{word-spacing:96.810048px;}
.wsc_c02276{word-spacing:272.160000px;}
._3_c02276{margin-left:-28.800000px;}
._10_c02276{margin-left:-5.400864px;}
._11_c02276{margin-left:-1.152900px;}
._e_c02276{width:1.289124px;}
._b_c02276{width:39.870720px;}
._c_c02276{width:40.950720px;}
._d_c02276{width:55.174464px;}
._f_c02276{width:60.214464px;}
._a_c02276{width:73.850472px;}
._0_c02276{width:133.131852px;}
._2_c02276{width:261.720000px;}
._6_c02276{width:543.088800px;}
._1_c02276{width:601.615440px;}
._5_c02276{width:1108.800000px;}
._8_c02276{width:1474.884000px;}
._4_c02276{width:1564.502400px;}
._7_c02276{width:1652.688000px;}
._9_c02276{width:2268.561600px;}
.fc0_c02276{color:rgb(0,0,0);}
.fs2_c02276{font-size:42.120000px;}
.fs4_c02276{font-size:47.880000px;}
.fs3_c02276{font-size:60.120000px;}
.fs1_c02276{font-size:65.880000px;}
.fs0_c02276{font-size:72.000000px;}
.y0_c02276{bottom:0.000000px;}
.y4_c02276{bottom:57.360450px;}
.y3_c02276{bottom:78.060450px;}
.y3f_c02276{bottom:129.450450px;}
.y3e_c02276{bottom:150.150450px;}
.y3c_c02276{bottom:171.750450px;}
.y3b_c02276{bottom:192.090450px;}
.y3a_c02276{bottom:211.080450px;}
.y39_c02276{bottom:230.070450px;}
.y38_c02276{bottom:248.970540px;}
.y3d_c02276{bottom:267.870450px;}
.y37_c02276{bottom:273.630450px;}
.y35_c02276{bottom:288.120450px;}
.y34_c02276{bottom:308.370630px;}
.y33_c02276{bottom:327.360540px;}
.y36_c02276{bottom:346.260450px;}
.y32_c02276{bottom:352.020450px;}
.y30_c02276{bottom:366.420450px;}
.y2f_c02276{bottom:386.761395px;}
.y2e_c02276{bottom:405.751305px;}
.y2d_c02276{bottom:424.741215px;}
.y2c_c02276{bottom:443.731125px;}
.y31_c02276{bottom:462.540600px;}
.y2b_c02276{bottom:468.300450px;}
.y28_c02276{bottom:482.790450px;}
.y27_c02276{bottom:503.131215px;}
.y2a_c02276{bottom:521.940540px;}
.y26_c02276{bottom:522.030540px;}
.y29_c02276{bottom:540.930450px;}
.y25_c02276{bottom:546.690450px;}
.y23_c02276{bottom:561.180450px;}
.y22_c02276{bottom:581.430630px;}
.y21_c02276{bottom:600.420540px;}
.y24_c02276{bottom:619.320450px;}
.y20_c02276{bottom:625.080450px;}
.y1f_c02276{bottom:644.610450px;}
.y1e_c02276{bottom:659.010450px;}
.y1d_c02276{bottom:680.520450px;}
.y1c_c02276{bottom:701.220450px;}
.y19_c02276{bottom:722.460630px;}
.y1b_c02276{bottom:741.360540px;}
.y18_c02276{bottom:741.450540px;}
.y1a_c02276{bottom:760.350450px;}
.y17_c02276{bottom:766.110450px;}
.y16_c02276{bottom:785.640450px;}
.y15_c02276{bottom:800.040600px;}
.y14_c02276{bottom:821.460450px;}
.y13_c02276{bottom:842.160450px;}
.y12_c02276{bottom:863.670450px;}
.y11_c02276{bottom:885.090450px;}
.y10_c02276{bottom:906.510450px;}
.yf_c02276{bottom:928.020450px;}
.ye_c02276{bottom:949.440450px;}
.yd_c02276{bottom:970.860450px;}
.yc_c02276{bottom:992.280450px;}
.yb_c02276{bottom:1013.610450px;}
.ya_c02276{bottom:1034.940450px;}
.y9_c02276{bottom:1054.920450px;}
.y8_c02276{bottom:1075.620450px;}
.y7_c02276{bottom:1097.130450px;}
.y6_c02276{bottom:1117.830450px;}
.y5_c02276{bottom:1139.250450px;}
.y2_c02276{bottom:1172.640450px;}
.y1_c02276{bottom:1193.160450px;}
.h5_c02276{height:36.957832px;}
.h4_c02276{height:41.629219px;}
.h6_c02276{height:57.805840px;}
.h8_c02276{height:58.513535px;}
.ha_c02276{height:63.172001px;}
.h9_c02276{height:63.172721px;}
.h7_c02276{height:63.175061px;}
.h2_c02276{height:63.175781px;}
.h1_c02276{height:63.949219px;}
.h3_c02276{height:64.615781px;}
.h0_c02276{height:1263.000000px;}
.w1_c02276{width:892.500000px;}
.w0_c02276{width:892.830000px;}
.x0_c02276{left:0.000000px;}
.x1_c02276{left:127.620000px;}
.x3_c02276{left:135.630000px;}
.x6_c02276{left:137.520000px;}
.x4_c02276{left:263.430000px;}
.x8_c02276{left:273.870000px;}
.x5_c02276{left:284.940000px;}
.x7_c02276{left:335.160000px;}
.x2_c02276{left:432.990000px;}
.x9_c02276{left:699.120000px;}
.xa_c02276{left:720.540369px;}
@media print{
.v3_c02276{vertical-align:-19.840000pt;}
.v2_c02276{vertical-align:-15.040000pt;}
.v4_c02276{vertical-align:-4.800000pt;}
.v0_c02276{vertical-align:0.000000pt;}
.v1_c02276{vertical-align:1.280000pt;}
.ls24_c02276{letter-spacing:-0.160992pt;}
.ls23_c02276{letter-spacing:-0.160320pt;}
.ls22_c02276{letter-spacing:-0.157248pt;}
.ls20_c02276{letter-spacing:-0.029280pt;}
.ls1e_c02276{letter-spacing:-0.012800pt;}
.ls1f_c02276{letter-spacing:-0.011712pt;}
.ls21_c02276{letter-spacing:-0.006400pt;}
.ls1d_c02276{letter-spacing:0.000000pt;}
.ls1_c02276{letter-spacing:0.006400pt;}
.ls13_c02276{letter-spacing:0.011712pt;}
.ls2_c02276{letter-spacing:0.012800pt;}
.ls17_c02276{letter-spacing:0.017568pt;}
.ls12_c02276{letter-spacing:0.023424pt;}
.ls0_c02276{letter-spacing:0.025600pt;}
.ls1a_c02276{letter-spacing:0.029280pt;}
.ls3_c02276{letter-spacing:0.035136pt;}
.lsc_c02276{letter-spacing:0.038400pt;}
.lsd_c02276{letter-spacing:0.044800pt;}
.ls8_c02276{letter-spacing:0.046848pt;}
.lse_c02276{letter-spacing:0.052704pt;}
.ls18_c02276{letter-spacing:0.058560pt;}
.ls19_c02276{letter-spacing:0.064416pt;}
.ls1b_c02276{letter-spacing:0.070272pt;}
.ls1c_c02276{letter-spacing:0.076128pt;}
.ls6_c02276{letter-spacing:0.087840pt;}
.lsa_c02276{letter-spacing:0.117120pt;}
.ls14_c02276{letter-spacing:0.160000pt;}
.ls11_c02276{letter-spacing:0.161728pt;}
.ls10_c02276{letter-spacing:30.280320pt;}
.ls15_c02276{letter-spacing:32.320000pt;}
.ls4_c02276{letter-spacing:56.960000pt;}
.ls9_c02276{letter-spacing:88.640000pt;}
.ls5_c02276{letter-spacing:101.120000pt;}
.ls7_c02276{letter-spacing:114.240000pt;}
.lsb_c02276{letter-spacing:395.520000pt;}
.lsf_c02276{letter-spacing:1225.280000pt;}
.ls16_c02276{letter-spacing:1301.120000pt;}
.ws4_c02276{word-spacing:-14.757120pt;}
.ws1_c02276{word-spacing:-14.727840pt;}
.ws5_c02276{word-spacing:-14.692704pt;}
.ws0_c02276{word-spacing:-14.675136pt;}
.ws3_c02276{word-spacing:-14.610720pt;}
.wsf_c02276{word-spacing:-0.147200pt;}
.ws10_c02276{word-spacing:-0.102400pt;}
.ws15_c02276{word-spacing:-0.083200pt;}
.ws7_c02276{word-spacing:-0.076800pt;}
.wse_c02276{word-spacing:-0.038400pt;}
.wsa_c02276{word-spacing:-0.012800pt;}
.ws9_c02276{word-spacing:-0.006400pt;}
.ws6_c02276{word-spacing:0.000000pt;}
.wsd_c02276{word-spacing:0.006400pt;}
.ws1f_c02276{word-spacing:0.011712pt;}
.ws8_c02276{word-spacing:0.012800pt;}
.ws18_c02276{word-spacing:0.017568pt;}
.wsb_c02276{word-spacing:0.035136pt;}
.ws23_c02276{word-spacing:0.052704pt;}
.ws27_c02276{word-spacing:0.064416pt;}
.ws14_c02276{word-spacing:0.070272pt;}
.ws26_c02276{word-spacing:0.661728pt;}
.ws1d_c02276{word-spacing:1.329312pt;}
.ws1c_c02276{word-spacing:1.967616pt;}
.ws17_c02276{word-spacing:2.260416pt;}
.ws25_c02276{word-spacing:3.888384pt;}
.ws24_c02276{word-spacing:6.101952pt;}
.ws1e_c02276{word-spacing:6.728544pt;}
.ws12_c02276{word-spacing:11.893536pt;}
.ws13_c02276{word-spacing:12.853920pt;}
.ws1b_c02276{word-spacing:13.187712pt;}
.ws22_c02276{word-spacing:18.885600pt;}
.ws21_c02276{word-spacing:18.932448pt;}
.ws1a_c02276{word-spacing:26.275872pt;}
.ws19_c02276{word-spacing:31.060224pt;}
.ws16_c02276{word-spacing:39.422592pt;}
.ws20_c02276{word-spacing:42.608256pt;}
.ws11_c02276{word-spacing:43.279264pt;}
.ws2_c02276{word-spacing:86.053376pt;}
.wsc_c02276{word-spacing:241.920000pt;}
._3_c02276{margin-left:-25.600000pt;}
._10_c02276{margin-left:-4.800768pt;}
._11_c02276{margin-left:-1.024800pt;}
._e_c02276{width:1.145888pt;}
._b_c02276{width:35.440640pt;}
._c_c02276{width:36.400640pt;}
._d_c02276{width:49.043968pt;}
._f_c02276{width:53.523968pt;}
._a_c02276{width:65.644864pt;}
._0_c02276{width:118.339424pt;}
._2_c02276{width:232.640000pt;}
._6_c02276{width:482.745600pt;}
._1_c02276{width:534.769280pt;}
._5_c02276{width:985.600000pt;}
._8_c02276{width:1311.008000pt;}
._4_c02276{width:1390.668800pt;}
._7_c02276{width:1469.056000pt;}
._9_c02276{width:2016.499200pt;}
.fs2_c02276{font-size:37.440000pt;}
.fs4_c02276{font-size:42.560000pt;}
.fs3_c02276{font-size:53.440000pt;}
.fs1_c02276{font-size:58.560000pt;}
.fs0_c02276{font-size:64.000000pt;}
.y0_c02276{bottom:0.000000pt;}
.y4_c02276{bottom:50.987067pt;}
.y3_c02276{bottom:69.387067pt;}
.y3f_c02276{bottom:115.067067pt;}
.y3e_c02276{bottom:133.467067pt;}
.y3c_c02276{bottom:152.667067pt;}
.y3b_c02276{bottom:170.747067pt;}
.y3a_c02276{bottom:187.627067pt;}
.y39_c02276{bottom:204.507067pt;}
.y38_c02276{bottom:221.307147pt;}
.y3d_c02276{bottom:238.107067pt;}
.y37_c02276{bottom:243.227067pt;}
.y35_c02276{bottom:256.107067pt;}
.y34_c02276{bottom:274.107227pt;}
.y33_c02276{bottom:290.987147pt;}
.y36_c02276{bottom:307.787067pt;}
.y32_c02276{bottom:312.907067pt;}
.y30_c02276{bottom:325.707067pt;}
.y2f_c02276{bottom:343.787907pt;}
.y2e_c02276{bottom:360.667827pt;}
.y2d_c02276{bottom:377.547747pt;}
.y2c_c02276{bottom:394.427667pt;}
.y31_c02276{bottom:411.147200pt;}
.y2b_c02276{bottom:416.267067pt;}
.y28_c02276{bottom:429.147067pt;}
.y27_c02276{bottom:447.227747pt;}
.y2a_c02276{bottom:463.947147pt;}
.y26_c02276{bottom:464.027147pt;}
.y29_c02276{bottom:480.827067pt;}
.y25_c02276{bottom:485.947067pt;}
.y23_c02276{bottom:498.827067pt;}
.y22_c02276{bottom:516.827227pt;}
.y21_c02276{bottom:533.707147pt;}
.y24_c02276{bottom:550.507067pt;}
.y20_c02276{bottom:555.627067pt;}
.y1f_c02276{bottom:572.987067pt;}
.y1e_c02276{bottom:585.787067pt;}
.y1d_c02276{bottom:604.907067pt;}
.y1c_c02276{bottom:623.307067pt;}
.y19_c02276{bottom:642.187227pt;}
.y1b_c02276{bottom:658.987147pt;}
.y18_c02276{bottom:659.067147pt;}
.y1a_c02276{bottom:675.867067pt;}
.y17_c02276{bottom:680.987067pt;}
.y16_c02276{bottom:698.347067pt;}
.y15_c02276{bottom:711.147200pt;}
.y14_c02276{bottom:730.187067pt;}
.y13_c02276{bottom:748.587067pt;}
.y12_c02276{bottom:767.707067pt;}
.y11_c02276{bottom:786.747067pt;}
.y10_c02276{bottom:805.787067pt;}
.yf_c02276{bottom:824.907067pt;}
.ye_c02276{bottom:843.947067pt;}
.yd_c02276{bottom:862.987067pt;}
.yc_c02276{bottom:882.027067pt;}
.yb_c02276{bottom:900.987067pt;}
.ya_c02276{bottom:919.947067pt;}
.y9_c02276{bottom:937.707067pt;}
.y8_c02276{bottom:956.107067pt;}
.y7_c02276{bottom:975.227067pt;}
.y6_c02276{bottom:993.627067pt;}
.y5_c02276{bottom:1012.667067pt;}
.y2_c02276{bottom:1042.347067pt;}
.y1_c02276{bottom:1060.587067pt;}
.h5_c02276{height:32.851406pt;}
.h4_c02276{height:37.003750pt;}
.h6_c02276{height:51.382969pt;}
.h8_c02276{height:52.012031pt;}
.ha_c02276{height:56.152890pt;}
.h9_c02276{height:56.153530pt;}
.h7_c02276{height:56.155610pt;}
.h2_c02276{height:56.156250pt;}
.h1_c02276{height:56.843750pt;}
.h3_c02276{height:57.436250pt;}
.h0_c02276{height:1122.666667pt;}
.w1_c02276{width:793.333333pt;}
.w0_c02276{width:793.626667pt;}
.x0_c02276{left:0.000000pt;}
.x1_c02276{left:113.440000pt;}
.x3_c02276{left:120.560000pt;}
.x6_c02276{left:122.240000pt;}
.x4_c02276{left:234.160000pt;}
.x8_c02276{left:243.440000pt;}
.x5_c02276{left:253.280000pt;}
.x7_c02276{left:297.920000pt;}
.x2_c02276{left:384.880000pt;}
.x9_c02276{left:621.440000pt;}
.xa_c02276{left:640.480328pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0c70f1cdb8170c5d6e87c8b.woff2')format("woff");}.ff1_c02277{font-family:ff1_c02277;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02277;src:url('chunks/assets/font_70b499e5c4b8ff8af94396a4.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02277{font-family:ff3_c02277;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_c02277;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02277{font-family:ff4_c02277;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;}
.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);}
.v1_c02277{vertical-align:-16.560000px;}
.v0_c02277{vertical-align:0.000000px;}
.v2_c02277{vertical-align:1.080000px;}
.v4_c02277{vertical-align:10.440000px;}
.v3_c02277{vertical-align:16.200000px;}
.ls25_c02277{letter-spacing:-0.052704px;}
.ls21_c02277{letter-spacing:-0.050400px;}
.ls26_c02277{letter-spacing:-0.026352px;}
.ls20_c02277{letter-spacing:-0.021600px;}
.ls28_c02277{letter-spacing:-0.019764px;}
.ls23_c02277{letter-spacing:-0.014364px;}
.ls27_c02277{letter-spacing:-0.006588px;}
.ls24_c02277{letter-spacing:-0.004788px;}
.ls1f_c02277{letter-spacing:0.000000px;}
.ls18_c02277{letter-spacing:0.006588px;}
.ls1_c02277{letter-spacing:0.007200px;}
.ls7_c02277{letter-spacing:0.009576px;}
.ls17_c02277{letter-spacing:0.013176px;}
.ls5_c02277{letter-spacing:0.014400px;}
.ls13_c02277{letter-spacing:0.019764px;}
.ls3_c02277{letter-spacing:0.021600px;}
.ls1b_c02277{letter-spacing:0.026352px;}
.ls0_c02277{letter-spacing:0.028800px;}
.lse_c02277{letter-spacing:0.032940px;}
.ls4_c02277{letter-spacing:0.036000px;}
.ls9_c02277{letter-spacing:0.039528px;}
.ls8_c02277{letter-spacing:0.046116px;}
.ls6_c02277{letter-spacing:0.050400px;}
.ls16_c02277{letter-spacing:0.052704px;}
.ls2_c02277{letter-spacing:0.057600px;}
.lsd_c02277{letter-spacing:0.059292px;}
.ls19_c02277{letter-spacing:0.065880px;}
.ls15_c02277{letter-spacing:0.072468px;}
.ls12_c02277{letter-spacing:0.085644px;}
.ls14_c02277{letter-spacing:0.092232px;}
.ls11_c02277{letter-spacing:0.105408px;}
.ls1a_c02277{letter-spacing:0.118584px;}
.ls22_c02277{letter-spacing:0.138852px;}
.ls29_c02277{letter-spacing:0.180360px;}
.ls1e_c02277{letter-spacing:0.181944px;}
.ls1d_c02277{letter-spacing:0.210672px;}
.lsc_c02277{letter-spacing:0.239400px;}
.lsf_c02277{letter-spacing:0.538704px;}
.lsa_c02277{letter-spacing:0.541044px;}
.ls10_c02277{letter-spacing:74.160000px;}
.lsb_c02277{letter-spacing:80.187660px;}
.ls1c_c02277{letter-spacing:1685.970000px;}
.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;}
}
.ws4_c02277{word-spacing:-47.880000px;}
.ws2_c02277{word-spacing:-18.050400px;}
.ws1_c02277{word-spacing:-18.021600px;}
.ws0_c02277{word-spacing:-18.000000px;}
.wsa_c02277{word-spacing:-16.535880px;}
.wsc_c02277{word-spacing:-16.529292px;}
.ws8_c02277{word-spacing:-16.522704px;}
.ws9_c02277{word-spacing:-16.509528px;}
.ws7_c02277{word-spacing:-16.476588px;}
.wsb_c02277{word-spacing:-16.450236px;}
.ws3_c02277{word-spacing:-16.417296px;}
.ws39_c02277{word-spacing:-0.301644px;}
.ws24_c02277{word-spacing:-0.272916px;}
.wse_c02277{word-spacing:-0.086400px;}
.ws22_c02277{word-spacing:-0.050400px;}
.ws21_c02277{word-spacing:-0.021600px;}
.ws1c_c02277{word-spacing:-0.014400px;}
.ws27_c02277{word-spacing:-0.013176px;}
.wsf_c02277{word-spacing:-0.007200px;}
.wsd_c02277{word-spacing:0.000000px;}
.ws28_c02277{word-spacing:0.006588px;}
.ws2b_c02277{word-spacing:0.019764px;}
.ws26_c02277{word-spacing:0.032940px;}
.ws2c_c02277{word-spacing:0.039528px;}
.ws23_c02277{word-spacing:0.046116px;}
.ws25_c02277{word-spacing:0.052704px;}
.ws29_c02277{word-spacing:0.059292px;}
.ws38_c02277{word-spacing:0.065880px;}
.ws2a_c02277{word-spacing:0.072468px;}
.ws2d_c02277{word-spacing:0.079056px;}
.ws12_c02277{word-spacing:0.302400px;}
.ws13_c02277{word-spacing:0.338400px;}
.ws20_c02277{word-spacing:1.281600px;}
.ws1f_c02277{word-spacing:1.418400px;}
.ws1e_c02277{word-spacing:2.397600px;}
.ws1d_c02277{word-spacing:2.469600px;}
.ws18_c02277{word-spacing:3.124800px;}
.ws19_c02277{word-spacing:3.204000px;}
.ws15_c02277{word-spacing:5.299200px;}
.ws14_c02277{word-spacing:5.364000px;}
.ws16_c02277{word-spacing:10.764000px;}
.ws17_c02277{word-spacing:10.879200px;}
.ws1b_c02277{word-spacing:11.426400px;}
.ws1a_c02277{word-spacing:11.491200px;}
.ws34_c02277{word-spacing:21.944628px;}
.ws33_c02277{word-spacing:22.003920px;}
.ws11_c02277{word-spacing:22.960800px;}
.ws10_c02277{word-spacing:23.032800px;}
.ws36_c02277{word-spacing:34.534296px;}
.ws37_c02277{word-spacing:34.567236px;}
.ws35_c02277{word-spacing:34.600176px;}
.ws2e_c02277{word-spacing:37.874412px;}
.ws30_c02277{word-spacing:37.881000px;}
.ws2f_c02277{word-spacing:37.894176px;}
.ws32_c02277{word-spacing:49.732812px;}
.ws31_c02277{word-spacing:50.108328px;}
.ws5_c02277{word-spacing:261.547164px;}
.ws6_c02277{word-spacing:640.554804px;}
._0_c02277{margin-left:-1.238400px;}
._8_c02277{width:1.073844px;}
._c_c02277{width:22.491432px;}
._f_c02277{width:51.748920px;}
._3_c02277{width:67.044168px;}
._6_c02277{width:78.282180px;}
._d_c02277{width:103.184820px;}
._4_c02277{width:120.761604px;}
._9_c02277{width:122.158116px;}
._e_c02277{width:164.723328px;}
._5_c02277{width:174.816000px;}
._2_c02277{width:223.988832px;}
._7_c02277{width:256.711572px;}
._1_c02277{width:336.511512px;}
._a_c02277{width:366.882696px;}
._b_c02277{width:388.247580px;}
.fc0_c02277{color:rgb(0,0,0);}
.fs4_c02277{font-size:2.880000px;}
.fs5_c02277{font-size:11.880000px;}
.fs1_c02277{font-size:47.880000px;}
.fs3_c02277{font-size:60.120000px;}
.fs2_c02277{font-size:65.880000px;}
.fs0_c02277{font-size:72.000000px;}
.y0_c02277{bottom:0.000000px;}
.y4_c02277{bottom:57.360450px;}
.y3_c02277{bottom:78.060450px;}
.y36_c02277{bottom:119.910450px;}
.y35_c02277{bottom:137.370600px;}
.y34_c02277{bottom:160.500450px;}
.y33_c02277{bottom:164.550450px;}
.y32_c02277{bottom:182.550450px;}
.y31_c02277{bottom:200.190450px;}
.y30_c02277{bottom:218.100450px;}
.y2f_c02277{bottom:237.810450px;}
.y2e_c02277{bottom:257.520450px;}
.y2d_c02277{bottom:273.270450px;}
.y2c_c02277{bottom:296.220450px;}
.y2b_c02277{bottom:311.970450px;}
.y2a_c02277{bottom:334.920450px;}
.y29_c02277{bottom:354.720450px;}
.y28_c02277{bottom:370.380450px;}
.y27_c02277{bottom:393.420450px;}
.y26_c02277{bottom:409.080450px;}
.y25_c02277{bottom:432.030450px;}
.y24_c02277{bottom:451.830450px;}
.y23_c02277{bottom:471.540600px;}
.y22_c02277{bottom:491.250600px;}
.y21_c02277{bottom:510.960600px;}
.y20_c02277{bottom:530.670450px;}
.y1f_c02277{bottom:550.380450px;}
.y1e_c02277{bottom:570.180450px;}
.y1d_c02277{bottom:589.890450px;}
.y1c_c02277{bottom:604.380450px;}
.y1b_c02277{bottom:618.240450px;}
.y1a_c02277{bottom:632.010450px;}
.y19_c02277{bottom:646.860450px;}
.y18_c02277{bottom:661.890450px;}
.y17_c02277{bottom:682.590450px;}
.y16_c02277{bottom:703.290450px;}
.y15_c02277{bottom:723.810450px;}
.y14_c02277{bottom:745.230450px;}
.y13_c02277{bottom:766.650450px;}
.y12_c02277{bottom:788.250450px;}
.y11_c02277{bottom:808.770450px;}
.y10_c02277{bottom:835.140450px;}
.yf_c02277{bottom:860.700450px;}
.ye_c02277{bottom:891.750450px;}
.yd_c02277{bottom:922.800450px;}
.yc_c02277{bottom:953.850450px;}
.yb_c02277{bottom:984.900450px;}
.ya_c02277{bottom:1015.950450px;}
.y9_c02277{bottom:1047.000450px;}
.y8_c02277{bottom:1073.460450px;}
.y7_c02277{bottom:1088.220450px;}
.y6_c02277{bottom:1114.590450px;}
.y5_c02277{bottom:1139.970450px;}
.y2_c02277{bottom:1172.640450px;}
.y1_c02277{bottom:1193.160450px;}
.h9_c02277{height:2.557969px;}
.ha_c02277{height:10.551621px;}
.h4_c02277{height:42.011895px;}
.h3_c02277{height:42.526230px;}
.h5_c02277{height:43.091895px;}
.h7_c02277{height:53.397598px;}
.h8_c02277{height:53.686230px;}
.h6_c02277{height:57.805840px;}
.h2_c02277{height:63.175781px;}
.h1_c02277{height:63.949219px;}
.h0_c02277{height:1263.000000px;}
.w1_c02277{width:892.500000px;}
.w0_c02277{width:892.830000px;}
.x0_c02277{left:0.000000px;}
.x1_c02277{left:127.620000px;}
.x4_c02277{left:135.630000px;}
.x5_c02277{left:146.340000px;}
.x3_c02277{left:148.950000px;}
.xa_c02277{left:156.960000px;}
.xb_c02277{left:173.520000px;}
.x8_c02277{left:178.200000px;}
.x2_c02277{left:432.990000px;}
.x9_c02277{left:624.780000px;}
.x7_c02277{left:711.990000px;}
.x6_c02277{left:725.310000px;}
@media print{
.v1_c02277{vertical-align:-14.720000pt;}
.v0_c02277{vertical-align:0.000000pt;}
.v2_c02277{vertical-align:0.960000pt;}
.v4_c02277{vertical-align:9.280000pt;}
.v3_c02277{vertical-align:14.400000pt;}
.ls25_c02277{letter-spacing:-0.046848pt;}
.ls21_c02277{letter-spacing:-0.044800pt;}
.ls26_c02277{letter-spacing:-0.023424pt;}
.ls20_c02277{letter-spacing:-0.019200pt;}
.ls28_c02277{letter-spacing:-0.017568pt;}
.ls23_c02277{letter-spacing:-0.012768pt;}
.ls27_c02277{letter-spacing:-0.005856pt;}
.ls24_c02277{letter-spacing:-0.004256pt;}
.ls1f_c02277{letter-spacing:0.000000pt;}
.ls18_c02277{letter-spacing:0.005856pt;}
.ls1_c02277{letter-spacing:0.006400pt;}
.ls7_c02277{letter-spacing:0.008512pt;}
.ls17_c02277{letter-spacing:0.011712pt;}
.ls5_c02277{letter-spacing:0.012800pt;}
.ls13_c02277{letter-spacing:0.017568pt;}
.ls3_c02277{letter-spacing:0.019200pt;}
.ls1b_c02277{letter-spacing:0.023424pt;}
.ls0_c02277{letter-spacing:0.025600pt;}
.lse_c02277{letter-spacing:0.029280pt;}
.ls4_c02277{letter-spacing:0.032000pt;}
.ls9_c02277{letter-spacing:0.035136pt;}
.ls8_c02277{letter-spacing:0.040992pt;}
.ls6_c02277{letter-spacing:0.044800pt;}
.ls16_c02277{letter-spacing:0.046848pt;}
.ls2_c02277{letter-spacing:0.051200pt;}
.lsd_c02277{letter-spacing:0.052704pt;}
.ls19_c02277{letter-spacing:0.058560pt;}
.ls15_c02277{letter-spacing:0.064416pt;}
.ls12_c02277{letter-spacing:0.076128pt;}
.ls14_c02277{letter-spacing:0.081984pt;}
.ls11_c02277{letter-spacing:0.093696pt;}
.ls1a_c02277{letter-spacing:0.105408pt;}
.ls22_c02277{letter-spacing:0.123424pt;}
.ls29_c02277{letter-spacing:0.160320pt;}
.ls1e_c02277{letter-spacing:0.161728pt;}
.ls1d_c02277{letter-spacing:0.187264pt;}
.lsc_c02277{letter-spacing:0.212800pt;}
.lsf_c02277{letter-spacing:0.478848pt;}
.lsa_c02277{letter-spacing:0.480928pt;}
.ls10_c02277{letter-spacing:65.920000pt;}
.lsb_c02277{letter-spacing:71.277920pt;}
.ls1c_c02277{letter-spacing:1498.640000pt;}
.ws4_c02277{word-spacing:-42.560000pt;}
.ws2_c02277{word-spacing:-16.044800pt;}
.ws1_c02277{word-spacing:-16.019200pt;}
.ws0_c02277{word-spacing:-16.000000pt;}
.wsa_c02277{word-spacing:-14.698560pt;}
.wsc_c02277{word-spacing:-14.692704pt;}
.ws8_c02277{word-spacing:-14.686848pt;}
.ws9_c02277{word-spacing:-14.675136pt;}
.ws7_c02277{word-spacing:-14.645856pt;}
.wsb_c02277{word-spacing:-14.622432pt;}
.ws3_c02277{word-spacing:-14.593152pt;}
.ws39_c02277{word-spacing:-0.268128pt;}
.ws24_c02277{word-spacing:-0.242592pt;}
.wse_c02277{word-spacing:-0.076800pt;}
.ws22_c02277{word-spacing:-0.044800pt;}
.ws21_c02277{word-spacing:-0.019200pt;}
.ws1c_c02277{word-spacing:-0.012800pt;}
.ws27_c02277{word-spacing:-0.011712pt;}
.wsf_c02277{word-spacing:-0.006400pt;}
.wsd_c02277{word-spacing:0.000000pt;}
.ws28_c02277{word-spacing:0.005856pt;}
.ws2b_c02277{word-spacing:0.017568pt;}
.ws26_c02277{word-spacing:0.029280pt;}
.ws2c_c02277{word-spacing:0.035136pt;}
.ws23_c02277{word-spacing:0.040992pt;}
.ws25_c02277{word-spacing:0.046848pt;}
.ws29_c02277{word-spacing:0.052704pt;}
.ws38_c02277{word-spacing:0.058560pt;}
.ws2a_c02277{word-spacing:0.064416pt;}
.ws2d_c02277{word-spacing:0.070272pt;}
.ws12_c02277{word-spacing:0.268800pt;}
.ws13_c02277{word-spacing:0.300800pt;}
.ws20_c02277{word-spacing:1.139200pt;}
.ws1f_c02277{word-spacing:1.260800pt;}
.ws1e_c02277{word-spacing:2.131200pt;}
.ws1d_c02277{word-spacing:2.195200pt;}
.ws18_c02277{word-spacing:2.777600pt;}
.ws19_c02277{word-spacing:2.848000pt;}
.ws15_c02277{word-spacing:4.710400pt;}
.ws14_c02277{word-spacing:4.768000pt;}
.ws16_c02277{word-spacing:9.568000pt;}
.ws17_c02277{word-spacing:9.670400pt;}
.ws1b_c02277{word-spacing:10.156800pt;}
.ws1a_c02277{word-spacing:10.214400pt;}
.ws34_c02277{word-spacing:19.506336pt;}
.ws33_c02277{word-spacing:19.559040pt;}
.ws11_c02277{word-spacing:20.409600pt;}
.ws10_c02277{word-spacing:20.473600pt;}
.ws36_c02277{word-spacing:30.697152pt;}
.ws37_c02277{word-spacing:30.726432pt;}
.ws35_c02277{word-spacing:30.755712pt;}
.ws2e_c02277{word-spacing:33.666144pt;}
.ws30_c02277{word-spacing:33.672000pt;}
.ws2f_c02277{word-spacing:33.683712pt;}
.ws32_c02277{word-spacing:44.206944pt;}
.ws31_c02277{word-spacing:44.540736pt;}
.ws5_c02277{word-spacing:232.486368pt;}
.ws6_c02277{word-spacing:569.382048pt;}
._0_c02277{margin-left:-1.100800pt;}
._8_c02277{width:0.954528pt;}
._c_c02277{width:19.992384pt;}
._f_c02277{width:45.999040pt;}
._3_c02277{width:59.594816pt;}
._6_c02277{width:69.584160pt;}
._d_c02277{width:91.719840pt;}
._4_c02277{width:107.343648pt;}
._9_c02277{width:108.584992pt;}
._e_c02277{width:146.420736pt;}
._5_c02277{width:155.392000pt;}
._2_c02277{width:199.101184pt;}
._7_c02277{width:228.188064pt;}
._1_c02277{width:299.121344pt;}
._a_c02277{width:326.117952pt;}
._b_c02277{width:345.108960pt;}
.fs4_c02277{font-size:2.560000pt;}
.fs5_c02277{font-size:10.560000pt;}
.fs1_c02277{font-size:42.560000pt;}
.fs3_c02277{font-size:53.440000pt;}
.fs2_c02277{font-size:58.560000pt;}
.fs0_c02277{font-size:64.000000pt;}
.y0_c02277{bottom:0.000000pt;}
.y4_c02277{bottom:50.987067pt;}
.y3_c02277{bottom:69.387067pt;}
.y36_c02277{bottom:106.587067pt;}
.y35_c02277{bottom:122.107200pt;}
.y34_c02277{bottom:142.667067pt;}
.y33_c02277{bottom:146.267067pt;}
.y32_c02277{bottom:162.267067pt;}
.y31_c02277{bottom:177.947067pt;}
.y30_c02277{bottom:193.867067pt;}
.y2f_c02277{bottom:211.387067pt;}
.y2e_c02277{bottom:228.907067pt;}
.y2d_c02277{bottom:242.907067pt;}
.y2c_c02277{bottom:263.307067pt;}
.y2b_c02277{bottom:277.307067pt;}
.y2a_c02277{bottom:297.707067pt;}
.y29_c02277{bottom:315.307067pt;}
.y28_c02277{bottom:329.227067pt;}
.y27_c02277{bottom:349.707067pt;}
.y26_c02277{bottom:363.627067pt;}
.y25_c02277{bottom:384.027067pt;}
.y24_c02277{bottom:401.627067pt;}
.y23_c02277{bottom:419.147200pt;}
.y22_c02277{bottom:436.667200pt;}
.y21_c02277{bottom:454.187200pt;}
.y20_c02277{bottom:471.707067pt;}
.y1f_c02277{bottom:489.227067pt;}
.y1e_c02277{bottom:506.827067pt;}
.y1d_c02277{bottom:524.347067pt;}
.y1c_c02277{bottom:537.227067pt;}
.y1b_c02277{bottom:549.547067pt;}
.y1a_c02277{bottom:561.787067pt;}
.y19_c02277{bottom:574.987067pt;}
.y18_c02277{bottom:588.347067pt;}
.y17_c02277{bottom:606.747067pt;}
.y16_c02277{bottom:625.147067pt;}
.y15_c02277{bottom:643.387067pt;}
.y14_c02277{bottom:662.427067pt;}
.y13_c02277{bottom:681.467067pt;}
.y12_c02277{bottom:700.667067pt;}
.y11_c02277{bottom:718.907067pt;}
.y10_c02277{bottom:742.347067pt;}
.yf_c02277{bottom:765.067067pt;}
.ye_c02277{bottom:792.667067pt;}
.yd_c02277{bottom:820.267067pt;}
.yc_c02277{bottom:847.867067pt;}
.yb_c02277{bottom:875.467067pt;}
.ya_c02277{bottom:903.067067pt;}
.y9_c02277{bottom:930.667067pt;}
.y8_c02277{bottom:954.187067pt;}
.y7_c02277{bottom:967.307067pt;}
.y6_c02277{bottom:990.747067pt;}
.y5_c02277{bottom:1013.307067pt;}
.y2_c02277{bottom:1042.347067pt;}
.y1_c02277{bottom:1060.587067pt;}
.h9_c02277{height:2.273750pt;}
.ha_c02277{height:9.379219pt;}
.h4_c02277{height:37.343906pt;}
.h3_c02277{height:37.801094pt;}
.h5_c02277{height:38.303906pt;}
.h7_c02277{height:47.464531pt;}
.h8_c02277{height:47.721094pt;}
.h6_c02277{height:51.382969pt;}
.h2_c02277{height:56.156250pt;}
.h1_c02277{height:56.843750pt;}
.h0_c02277{height:1122.666667pt;}
.w1_c02277{width:793.333333pt;}
.w0_c02277{width:793.626667pt;}
.x0_c02277{left:0.000000pt;}
.x1_c02277{left:113.440000pt;}
.x4_c02277{left:120.560000pt;}
.x5_c02277{left:130.080000pt;}
.x3_c02277{left:132.400000pt;}
.xa_c02277{left:139.520000pt;}
.xb_c02277{left:154.240000pt;}
.x8_c02277{left:158.400000pt;}
.x2_c02277{left:384.880000pt;}
.x9_c02277{left:555.360000pt;}
.x7_c02277{left:632.880000pt;}
.x6_c02277{left:644.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_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_0814c6c9be943fb79df49d7d.woff2')format("woff");}.ff1_c02278{font-family:ff1_c02278;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02278;src:url('chunks/assets/font_131825c7166a214e83b13d48.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_2bb48ccc1bd366656015efef.woff2')format("woff");}.ff3_c02278{font-family:ff3_c02278;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_c02278;src:url('chunks/assets/font_60c5d62fe0ab3882fbcc0c71.woff2')format("woff");}.ff4_c02278{font-family:ff4_c02278;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_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);}
.v2_c02278{vertical-align:-9.000000px;}
.v1_c02278{vertical-align:-5.400000px;}
.v0_c02278{vertical-align:0.000000px;}
.ls26_c02278{letter-spacing:-0.576000px;}
.ls27_c02278{letter-spacing:-0.186372px;}
.ls24_c02278{letter-spacing:-0.150300px;}
.ls25_c02278{letter-spacing:-0.138276px;}
.ls20_c02278{letter-spacing:-0.132264px;}
.ls22_c02278{letter-spacing:-0.120240px;}
.ls2c_c02278{letter-spacing:-0.052704px;}
.ls1e_c02278{letter-spacing:-0.050400px;}
.ls23_c02278{letter-spacing:-0.036000px;}
.ls29_c02278{letter-spacing:-0.026352px;}
.ls21_c02278{letter-spacing:-0.021600px;}
.ls2b_c02278{letter-spacing:-0.019764px;}
.ls1f_c02278{letter-spacing:-0.007200px;}
.ls2a_c02278{letter-spacing:-0.006588px;}
.ls1d_c02278{letter-spacing:0.000000px;}
.ls15_c02278{letter-spacing:0.006588px;}
.ls28_c02278{letter-spacing:0.007200px;}
.ls2_c02278{letter-spacing:0.013176px;}
.ls1_c02278{letter-spacing:0.014400px;}
.lsd_c02278{letter-spacing:0.019764px;}
.ls9_c02278{letter-spacing:0.021600px;}
.ls18_c02278{letter-spacing:0.026352px;}
.ls0_c02278{letter-spacing:0.028800px;}
.ls12_c02278{letter-spacing:0.032940px;}
.ls10_c02278{letter-spacing:0.039528px;}
.lsa_c02278{letter-spacing:0.046116px;}
.ls13_c02278{letter-spacing:0.052704px;}
.ls6_c02278{letter-spacing:0.057600px;}
.ls17_c02278{letter-spacing:0.059292px;}
.ls1c_c02278{letter-spacing:0.064800px;}
.ls1a_c02278{letter-spacing:0.065880px;}
.ls8_c02278{letter-spacing:0.072000px;}
.ls16_c02278{letter-spacing:0.072468px;}
.ls1b_c02278{letter-spacing:0.079056px;}
.ls11_c02278{letter-spacing:0.085644px;}
.ls14_c02278{letter-spacing:0.092232px;}
.ls19_c02278{letter-spacing:0.111996px;}
.ls7_c02278{letter-spacing:0.119700px;}
.ls4_c02278{letter-spacing:0.144000px;}
.lsf_c02278{letter-spacing:0.151524px;}
.ls5_c02278{letter-spacing:0.181944px;}
.ls2d_c02278{letter-spacing:0.447984px;}
.lsb_c02278{letter-spacing:140.040000px;}
.lsc_c02278{letter-spacing:144.000000px;}
.ls3_c02278{letter-spacing:189.720000px;}
.lse_c02278{letter-spacing:292.320000px;}
.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;}
}
.ws1_c02278{word-spacing:-18.000000px;}
.ws4_c02278{word-spacing:-16.555644px;}
.ws7_c02278{word-spacing:-16.529292px;}
.wsa_c02278{word-spacing:-16.516116px;}
.ws8_c02278{word-spacing:-16.509528px;}
.ws5_c02278{word-spacing:-16.502940px;}
.ws6_c02278{word-spacing:-16.496352px;}
.ws3_c02278{word-spacing:-16.489764px;}
.ws0_c02278{word-spacing:-16.483176px;}
.ws9_c02278{word-spacing:-16.450236px;}
.ws2_c02278{word-spacing:-14.891724px;}
.ws27_c02278{word-spacing:-0.250344px;}
.ws33_c02278{word-spacing:-0.180000px;}
.ws31_c02278{word-spacing:-0.100800px;}
.wsc_c02278{word-spacing:-0.086400px;}
.ws14_c02278{word-spacing:-0.064800px;}
.ws1c_c02278{word-spacing:-0.021600px;}
.ws28_c02278{word-spacing:-0.019764px;}
.wsd_c02278{word-spacing:-0.014400px;}
.ws1f_c02278{word-spacing:-0.007200px;}
.wsb_c02278{word-spacing:0.000000px;}
.ws2d_c02278{word-spacing:0.013176px;}
.ws24_c02278{word-spacing:0.019764px;}
.ws2a_c02278{word-spacing:0.026352px;}
.ws32_c02278{word-spacing:0.028800px;}
.ws25_c02278{word-spacing:0.032940px;}
.ws29_c02278{word-spacing:0.039528px;}
.ws1e_c02278{word-spacing:0.046116px;}
.ws20_c02278{word-spacing:0.052704px;}
.ws22_c02278{word-spacing:0.059292px;}
.ws2c_c02278{word-spacing:0.065880px;}
.ws26_c02278{word-spacing:0.072468px;}
.ws21_c02278{word-spacing:0.079056px;}
.ws23_c02278{word-spacing:0.085644px;}
.ws2b_c02278{word-spacing:0.092232px;}
.ws13_c02278{word-spacing:0.210420px;}
.ws1d_c02278{word-spacing:0.276552px;}
.ws30_c02278{word-spacing:2.180628px;}
.ws1b_c02278{word-spacing:4.608000px;}
.ws18_c02278{word-spacing:9.240444px;}
.ws17_c02278{word-spacing:9.367200px;}
.ws15_c02278{word-spacing:11.073600px;}
.ws16_c02278{word-spacing:11.102400px;}
.wse_c02278{word-spacing:12.614400px;}
.wsf_c02278{word-spacing:13.010400px;}
.ws12_c02278{word-spacing:22.341600px;}
.ws11_c02278{word-spacing:23.260428px;}
.ws10_c02278{word-spacing:23.450400px;}
.ws2e_c02278{word-spacing:34.587000px;}
.ws2f_c02278{word-spacing:34.600176px;}
.ws19_c02278{word-spacing:38.131200px;}
.ws1a_c02278{word-spacing:38.160000px;}
._3_c02278{margin-left:-1.022400px;}
._0_c02278{width:1.068192px;}
._1_c02278{width:10.596240px;}
._2_c02278{width:37.708740px;}
.fc0_c02278{color:rgb(0,0,0);}
.fs2_c02278{font-size:47.880000px;}
.fs3_c02278{font-size:60.120000px;}
.fs1_c02278{font-size:65.880000px;}
.fs0_c02278{font-size:72.000000px;}
.y0_c02278{bottom:0.000000px;}
.y4_c02278{bottom:57.360450px;}
.y3_c02278{bottom:78.060450px;}
.y39_c02278{bottom:124.860450px;}
.y38_c02278{bottom:145.560450px;}
.y37_c02278{bottom:166.800450px;}
.y36_c02278{bottom:186.420450px;}
.y35_c02278{bottom:206.310450px;}
.y34_c02278{bottom:225.210600px;}
.y33_c02278{bottom:244.920450px;}
.y32_c02278{bottom:264.720450px;}
.y31_c02278{bottom:284.340450px;}
.y30_c02278{bottom:304.500450px;}
.y2f_c02278{bottom:325.200450px;}
.y2e_c02278{bottom:345.900450px;}
.y2d_c02278{bottom:366.600450px;}
.y2c_c02278{bottom:386.940690px;}
.y2b_c02278{bottom:405.930600px;}
.y2a_c02278{bottom:425.550450px;}
.y29_c02278{bottom:445.350450px;}
.y28_c02278{bottom:464.340600px;}
.y27_c02278{bottom:483.960600px;}
.y26_c02278{bottom:503.670450px;}
.y25_c02278{bottom:522.750600px;}
.y24_c02278{bottom:541.740450px;}
.y23_c02278{bottom:560.730450px;}
.y22_c02278{bottom:579.630450px;}
.y21_c02278{bottom:598.620450px;}
.y20_c02278{bottom:617.610450px;}
.y1f_c02278{bottom:636.600450px;}
.y1e_c02278{bottom:655.590450px;}
.y1d_c02278{bottom:674.490450px;}
.y1c_c02278{bottom:693.480450px;}
.y1b_c02278{bottom:712.470450px;}
.y1a_c02278{bottom:731.460450px;}
.y19_c02278{bottom:750.450450px;}
.y18_c02278{bottom:769.440450px;}
.y17_c02278{bottom:788.340450px;}
.y16_c02278{bottom:807.240450px;}
.y15_c02278{bottom:828.660450px;}
.y14_c02278{bottom:850.170450px;}
.y13_c02278{bottom:869.070450px;}
.y12_c02278{bottom:884.010450px;}
.y11_c02278{bottom:904.710450px;}
.y10_c02278{bottom:925.410450px;}
.yf_c02278{bottom:945.030450px;}
.ye_c02278{bottom:959.971134px;}
.yd_c02278{bottom:980.670450px;}
.yc_c02278{bottom:1001.370450px;}
.yb_c02278{bottom:1020.900450px;}
.ya_c02278{bottom:1035.840450px;}
.y9_c02278{bottom:1056.540450px;}
.y8_c02278{bottom:1077.240450px;}
.y7_c02278{bottom:1099.290450px;}
.y6_c02278{bottom:1119.270450px;}
.y5_c02278{bottom:1139.970450px;}
.y2_c02278{bottom:1172.640450px;}
.y1_c02278{bottom:1193.160450px;}
.h5_c02278{height:46.968223px;}
.h7_c02278{height:57.805840px;}
.h9_c02278{height:58.513535px;}
.h8_c02278{height:63.174821px;}
.h2_c02278{height:63.175781px;}
.h1_c02278{height:63.949219px;}
.h3_c02278{height:65.228906px;}
.h6_c02278{height:70.626170px;}
.h4_c02278{height:70.628906px;}
.h0_c02278{height:1263.000000px;}
.w1_c02278{width:892.500000px;}
.w0_c02278{width:892.830000px;}
.x0_c02278{left:0.000000px;}
.x1_c02278{left:127.620000px;}
.x3_c02278{left:135.630000px;}
.x4_c02278{left:252.630000px;}
.x2_c02278{left:432.990000px;}
@media print{
.v2_c02278{vertical-align:-8.000000pt;}
.v1_c02278{vertical-align:-4.800000pt;}
.v0_c02278{vertical-align:0.000000pt;}
.ls26_c02278{letter-spacing:-0.512000pt;}
.ls27_c02278{letter-spacing:-0.165664pt;}
.ls24_c02278{letter-spacing:-0.133600pt;}
.ls25_c02278{letter-spacing:-0.122912pt;}
.ls20_c02278{letter-spacing:-0.117568pt;}
.ls22_c02278{letter-spacing:-0.106880pt;}
.ls2c_c02278{letter-spacing:-0.046848pt;}
.ls1e_c02278{letter-spacing:-0.044800pt;}
.ls23_c02278{letter-spacing:-0.032000pt;}
.ls29_c02278{letter-spacing:-0.023424pt;}
.ls21_c02278{letter-spacing:-0.019200pt;}
.ls2b_c02278{letter-spacing:-0.017568pt;}
.ls1f_c02278{letter-spacing:-0.006400pt;}
.ls2a_c02278{letter-spacing:-0.005856pt;}
.ls1d_c02278{letter-spacing:0.000000pt;}
.ls15_c02278{letter-spacing:0.005856pt;}
.ls28_c02278{letter-spacing:0.006400pt;}
.ls2_c02278{letter-spacing:0.011712pt;}
.ls1_c02278{letter-spacing:0.012800pt;}
.lsd_c02278{letter-spacing:0.017568pt;}
.ls9_c02278{letter-spacing:0.019200pt;}
.ls18_c02278{letter-spacing:0.023424pt;}
.ls0_c02278{letter-spacing:0.025600pt;}
.ls12_c02278{letter-spacing:0.029280pt;}
.ls10_c02278{letter-spacing:0.035136pt;}
.lsa_c02278{letter-spacing:0.040992pt;}
.ls13_c02278{letter-spacing:0.046848pt;}
.ls6_c02278{letter-spacing:0.051200pt;}
.ls17_c02278{letter-spacing:0.052704pt;}
.ls1c_c02278{letter-spacing:0.057600pt;}
.ls1a_c02278{letter-spacing:0.058560pt;}
.ls8_c02278{letter-spacing:0.064000pt;}
.ls16_c02278{letter-spacing:0.064416pt;}
.ls1b_c02278{letter-spacing:0.070272pt;}
.ls11_c02278{letter-spacing:0.076128pt;}
.ls14_c02278{letter-spacing:0.081984pt;}
.ls19_c02278{letter-spacing:0.099552pt;}
.ls7_c02278{letter-spacing:0.106400pt;}
.ls4_c02278{letter-spacing:0.128000pt;}
.lsf_c02278{letter-spacing:0.134688pt;}
.ls5_c02278{letter-spacing:0.161728pt;}
.ls2d_c02278{letter-spacing:0.398208pt;}
.lsb_c02278{letter-spacing:124.480000pt;}
.lsc_c02278{letter-spacing:128.000000pt;}
.ls3_c02278{letter-spacing:168.640000pt;}
.lse_c02278{letter-spacing:259.840000pt;}
.ws1_c02278{word-spacing:-16.000000pt;}
.ws4_c02278{word-spacing:-14.716128pt;}
.ws7_c02278{word-spacing:-14.692704pt;}
.wsa_c02278{word-spacing:-14.680992pt;}
.ws8_c02278{word-spacing:-14.675136pt;}
.ws5_c02278{word-spacing:-14.669280pt;}
.ws6_c02278{word-spacing:-14.663424pt;}
.ws3_c02278{word-spacing:-14.657568pt;}
.ws0_c02278{word-spacing:-14.651712pt;}
.ws9_c02278{word-spacing:-14.622432pt;}
.ws2_c02278{word-spacing:-13.237088pt;}
.ws27_c02278{word-spacing:-0.222528pt;}
.ws33_c02278{word-spacing:-0.160000pt;}
.ws31_c02278{word-spacing:-0.089600pt;}
.wsc_c02278{word-spacing:-0.076800pt;}
.ws14_c02278{word-spacing:-0.057600pt;}
.ws1c_c02278{word-spacing:-0.019200pt;}
.ws28_c02278{word-spacing:-0.017568pt;}
.wsd_c02278{word-spacing:-0.012800pt;}
.ws1f_c02278{word-spacing:-0.006400pt;}
.wsb_c02278{word-spacing:0.000000pt;}
.ws2d_c02278{word-spacing:0.011712pt;}
.ws24_c02278{word-spacing:0.017568pt;}
.ws2a_c02278{word-spacing:0.023424pt;}
.ws32_c02278{word-spacing:0.025600pt;}
.ws25_c02278{word-spacing:0.029280pt;}
.ws29_c02278{word-spacing:0.035136pt;}
.ws1e_c02278{word-spacing:0.040992pt;}
.ws20_c02278{word-spacing:0.046848pt;}
.ws22_c02278{word-spacing:0.052704pt;}
.ws2c_c02278{word-spacing:0.058560pt;}
.ws26_c02278{word-spacing:0.064416pt;}
.ws21_c02278{word-spacing:0.070272pt;}
.ws23_c02278{word-spacing:0.076128pt;}
.ws2b_c02278{word-spacing:0.081984pt;}
.ws13_c02278{word-spacing:0.187040pt;}
.ws1d_c02278{word-spacing:0.245824pt;}
.ws30_c02278{word-spacing:1.938336pt;}
.ws1b_c02278{word-spacing:4.096000pt;}
.ws18_c02278{word-spacing:8.213728pt;}
.ws17_c02278{word-spacing:8.326400pt;}
.ws15_c02278{word-spacing:9.843200pt;}
.ws16_c02278{word-spacing:9.868800pt;}
.wse_c02278{word-spacing:11.212800pt;}
.wsf_c02278{word-spacing:11.564800pt;}
.ws12_c02278{word-spacing:19.859200pt;}
.ws11_c02278{word-spacing:20.675936pt;}
.ws10_c02278{word-spacing:20.844800pt;}
.ws2e_c02278{word-spacing:30.744000pt;}
.ws2f_c02278{word-spacing:30.755712pt;}
.ws19_c02278{word-spacing:33.894400pt;}
.ws1a_c02278{word-spacing:33.920000pt;}
._3_c02278{margin-left:-0.908800pt;}
._0_c02278{width:0.949504pt;}
._1_c02278{width:9.418880pt;}
._2_c02278{width:33.518880pt;}
.fs2_c02278{font-size:42.560000pt;}
.fs3_c02278{font-size:53.440000pt;}
.fs1_c02278{font-size:58.560000pt;}
.fs0_c02278{font-size:64.000000pt;}
.y0_c02278{bottom:0.000000pt;}
.y4_c02278{bottom:50.987067pt;}
.y3_c02278{bottom:69.387067pt;}
.y39_c02278{bottom:110.987067pt;}
.y38_c02278{bottom:129.387067pt;}
.y37_c02278{bottom:148.267067pt;}
.y36_c02278{bottom:165.707067pt;}
.y35_c02278{bottom:183.387067pt;}
.y34_c02278{bottom:200.187200pt;}
.y33_c02278{bottom:217.707067pt;}
.y32_c02278{bottom:235.307067pt;}
.y31_c02278{bottom:252.747067pt;}
.y30_c02278{bottom:270.667067pt;}
.y2f_c02278{bottom:289.067067pt;}
.y2e_c02278{bottom:307.467067pt;}
.y2d_c02278{bottom:325.867067pt;}
.y2c_c02278{bottom:343.947280pt;}
.y2b_c02278{bottom:360.827200pt;}
.y2a_c02278{bottom:378.267067pt;}
.y29_c02278{bottom:395.867067pt;}
.y28_c02278{bottom:412.747200pt;}
.y27_c02278{bottom:430.187200pt;}
.y26_c02278{bottom:447.707067pt;}
.y25_c02278{bottom:464.667200pt;}
.y24_c02278{bottom:481.547067pt;}
.y23_c02278{bottom:498.427067pt;}
.y22_c02278{bottom:515.227067pt;}
.y21_c02278{bottom:532.107067pt;}
.y20_c02278{bottom:548.987067pt;}
.y1f_c02278{bottom:565.867067pt;}
.y1e_c02278{bottom:582.747067pt;}
.y1d_c02278{bottom:599.547067pt;}
.y1c_c02278{bottom:616.427067pt;}
.y1b_c02278{bottom:633.307067pt;}
.y1a_c02278{bottom:650.187067pt;}
.y19_c02278{bottom:667.067067pt;}
.y18_c02278{bottom:683.947067pt;}
.y17_c02278{bottom:700.747067pt;}
.y16_c02278{bottom:717.547067pt;}
.y15_c02278{bottom:736.587067pt;}
.y14_c02278{bottom:755.707067pt;}
.y13_c02278{bottom:772.507067pt;}
.y12_c02278{bottom:785.787067pt;}
.y11_c02278{bottom:804.187067pt;}
.y10_c02278{bottom:822.587067pt;}
.yf_c02278{bottom:840.027067pt;}
.ye_c02278{bottom:853.307675pt;}
.yd_c02278{bottom:871.707067pt;}
.yc_c02278{bottom:890.107067pt;}
.yb_c02278{bottom:907.467067pt;}
.ya_c02278{bottom:920.747067pt;}
.y9_c02278{bottom:939.147067pt;}
.y8_c02278{bottom:957.547067pt;}
.y7_c02278{bottom:977.147067pt;}
.y6_c02278{bottom:994.907067pt;}
.y5_c02278{bottom:1013.307067pt;}
.y2_c02278{bottom:1042.347067pt;}
.y1_c02278{bottom:1060.587067pt;}
.h5_c02278{height:41.749531pt;}
.h7_c02278{height:51.382969pt;}
.h9_c02278{height:52.012031pt;}
.h8_c02278{height:56.155397pt;}
.h2_c02278{height:56.156250pt;}
.h1_c02278{height:56.843750pt;}
.h3_c02278{height:57.981250pt;}
.h6_c02278{height:62.778818pt;}
.h4_c02278{height:62.781250pt;}
.h0_c02278{height:1122.666667pt;}
.w1_c02278{width:793.333333pt;}
.w0_c02278{width:793.626667pt;}
.x0_c02278{left:0.000000pt;}
.x1_c02278{left:113.440000pt;}
.x3_c02278{left:120.560000pt;}
.x4_c02278{left:224.560000pt;}
.x2_c02278{left:384.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_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_2a10c9f9e4f3fd25f839fb12.woff2')format("woff");}.ff1_c02279{font-family:ff1_c02279;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02279;src:url('chunks/assets/font_5ac480716619a3c3917986d8.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_b5a59303c1e42bb1a7a0644f.woff2')format("woff");}.ff3_c02279{font-family:ff3_c02279;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02279;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02279{font-family:ff4_c02279;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;}
.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;}
.ls24_c02279{letter-spacing:-0.334800px;}
.ls1f_c02279{letter-spacing:-0.302400px;}
.ls2f_c02279{letter-spacing:-0.291600px;}
.ls18_c02279{letter-spacing:-0.194400px;}
.ls2a_c02279{letter-spacing:-0.189000px;}
.ls2b_c02279{letter-spacing:-0.183600px;}
.ls17_c02279{letter-spacing:-0.178200px;}
.ls2c_c02279{letter-spacing:-0.156600px;}
.ls30_c02279{letter-spacing:-0.151200px;}
.ls33_c02279{letter-spacing:-0.136800px;}
.ls32_c02279{letter-spacing:-0.118800px;}
.ls35_c02279{letter-spacing:-0.115200px;}
.ls2d_c02279{letter-spacing:-0.108000px;}
.ls31_c02279{letter-spacing:-0.102600px;}
.ls1a_c02279{letter-spacing:-0.097200px;}
.ls23_c02279{letter-spacing:-0.091800px;}
.ls34_c02279{letter-spacing:-0.079200px;}
.ls1e_c02279{letter-spacing:-0.070200px;}
.ls2e_c02279{letter-spacing:-0.064800px;}
.ls38_c02279{letter-spacing:-0.060120px;}
.ls28_c02279{letter-spacing:-0.059400px;}
.ls37_c02279{letter-spacing:-0.050400px;}
.ls22_c02279{letter-spacing:-0.043200px;}
.ls15_c02279{letter-spacing:-0.032400px;}
.ls16_c02279{letter-spacing:-0.027000px;}
.ls1b_c02279{letter-spacing:-0.021600px;}
.ls20_c02279{letter-spacing:-0.016200px;}
.ls36_c02279{letter-spacing:-0.014400px;}
.ls29_c02279{letter-spacing:-0.010800px;}
.ls12_c02279{letter-spacing:-0.007200px;}
.ls25_c02279{letter-spacing:-0.005400px;}
.ls11_c02279{letter-spacing:0.000000px;}
.lsa_c02279{letter-spacing:0.005400px;}
.ls1_c02279{letter-spacing:0.014400px;}
.ls4_c02279{letter-spacing:0.016200px;}
.ls0_c02279{letter-spacing:0.028800px;}
.ls9_c02279{letter-spacing:0.032400px;}
.ls10_c02279{letter-spacing:0.032940px;}
.ls3_c02279{letter-spacing:0.036000px;}
.ls5_c02279{letter-spacing:0.037800px;}
.ls8_c02279{letter-spacing:0.048600px;}
.lse_c02279{letter-spacing:0.054000px;}
.ls3b_c02279{letter-spacing:0.054108px;}
.lsb_c02279{letter-spacing:0.059400px;}
.ls14_c02279{letter-spacing:0.060120px;}
.ls2_c02279{letter-spacing:0.064800px;}
.ls3a_c02279{letter-spacing:0.078156px;}
.ls1c_c02279{letter-spacing:0.086400px;}
.ls13_c02279{letter-spacing:0.090180px;}
.ls7_c02279{letter-spacing:0.113400px;}
.ls39_c02279{letter-spacing:0.126252px;}
.ls27_c02279{letter-spacing:0.129600px;}
.ls21_c02279{letter-spacing:0.172800px;}
.ls3c_c02279{letter-spacing:0.178200px;}
.ls1d_c02279{letter-spacing:0.183600px;}
.lsf_c02279{letter-spacing:0.210816px;}
.ls19_c02279{letter-spacing:0.216000px;}
.lsd_c02279{letter-spacing:0.288000px;}
.ls6_c02279{letter-spacing:0.324000px;}
.ls26_c02279{letter-spacing:0.340200px;}
.lsc_c02279{letter-spacing:0.648000px;}
.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;}
}
.ws25_c02279{word-spacing:-72.000000px;}
.ws2a_c02279{word-spacing:-65.880000px;}
.ws2_c02279{word-spacing:-54.000000px;}
.ws15_c02279{word-spacing:-0.394200px;}
.ws7_c02279{word-spacing:-0.270000px;}
.wsa_c02279{word-spacing:-0.237600px;}
.ws28_c02279{word-spacing:-0.232200px;}
.wsd_c02279{word-spacing:-0.226800px;}
.ws16_c02279{word-spacing:-0.183600px;}
.wsf_c02279{word-spacing:-0.167400px;}
.ws2e_c02279{word-spacing:-0.144000px;}
.ws9_c02279{word-spacing:-0.140400px;}
.ws3_c02279{word-spacing:-0.113400px;}
.ws29_c02279{word-spacing:-0.108000px;}
.ws12_c02279{word-spacing:-0.102600px;}
.ws2b_c02279{word-spacing:-0.098820px;}
.ws13_c02279{word-spacing:-0.091800px;}
.ws1d_c02279{word-spacing:-0.086400px;}
.ws0_c02279{word-spacing:-0.070200px;}
.ws2f_c02279{word-spacing:-0.064800px;}
.ws21_c02279{word-spacing:-0.059400px;}
.ws27_c02279{word-spacing:-0.057600px;}
.wse_c02279{word-spacing:-0.054000px;}
.ws18_c02279{word-spacing:-0.043200px;}
.ws30_c02279{word-spacing:-0.036000px;}
.ws4_c02279{word-spacing:-0.027000px;}
.ws1_c02279{word-spacing:-0.021600px;}
.ws2d_c02279{word-spacing:-0.014400px;}
.ws10_c02279{word-spacing:-0.010800px;}
.ws24_c02279{word-spacing:-0.007200px;}
.ws2c_c02279{word-spacing:0.000000px;}
.ws17_c02279{word-spacing:0.005400px;}
.ws26_c02279{word-spacing:0.007200px;}
.ws1e_c02279{word-spacing:0.010800px;}
.wsb_c02279{word-spacing:0.016200px;}
.ws11_c02279{word-spacing:0.037800px;}
.ws8_c02279{word-spacing:0.043200px;}
.ws22_c02279{word-spacing:0.048600px;}
.ws1c_c02279{word-spacing:0.054000px;}
.ws23_c02279{word-spacing:0.064800px;}
.ws20_c02279{word-spacing:0.097200px;}
.ws1b_c02279{word-spacing:0.102600px;}
.ws5_c02279{word-spacing:0.124200px;}
.ws1a_c02279{word-spacing:0.129600px;}
.ws19_c02279{word-spacing:0.135000px;}
.ws6_c02279{word-spacing:0.140400px;}
.ws1f_c02279{word-spacing:0.237600px;}
.wsc_c02279{word-spacing:0.248400px;}
.ws14_c02279{word-spacing:0.280800px;}
._0_c02279{margin-left:-1.274400px;}
._1_c02279{width:1.263600px;}
.fc0_c02279{color:rgb(0,0,0);}
.fs2_c02279{font-size:47.880000px;}
.fs1_c02279{font-size:54.000000px;}
.fs3_c02279{font-size:60.120000px;}
.fs4_c02279{font-size:65.880000px;}
.fs0_c02279{font-size:72.000000px;}
.y0_c02279{bottom:0.000000px;}
.y4_c02279{bottom:57.360450px;}
.y3_c02279{bottom:78.060450px;}
.y11_c02279{bottom:127.020450px;}
.y10_c02279{bottom:146.820450px;}
.yf_c02279{bottom:159.330450px;}
.y32_c02279{bottom:178.140450px;}
.y41_c02279{bottom:179.400450px;}
.y33_c02279{bottom:195.690981px;}
.y42_c02279{bottom:196.950450px;}
.y34_c02279{bottom:213.241512px;}
.y43_c02279{bottom:214.500450px;}
.y35_c02279{bottom:230.792043px;}
.y44_c02279{bottom:232.050450px;}
.y36_c02279{bottom:248.342574px;}
.y45_c02279{bottom:249.600450px;}
.y37_c02279{bottom:265.802925px;}
.y46_c02279{bottom:267.150450px;}
.y38_c02279{bottom:283.353456px;}
.y47_c02279{bottom:284.610000px;}
.y39_c02279{bottom:300.903987px;}
.y48_c02279{bottom:302.160000px;}
.y3a_c02279{bottom:318.454518px;}
.y49_c02279{bottom:319.710000px;}
.y3b_c02279{bottom:336.005049px;}
.y4a_c02279{bottom:337.260000px;}
.y3c_c02279{bottom:353.555580px;}
.y4b_c02279{bottom:354.810000px;}
.y3d_c02279{bottom:371.106111px;}
.y4c_c02279{bottom:372.360450px;}
.y3e_c02279{bottom:388.566462px;}
.y4d_c02279{bottom:389.820000px;}
.y3f_c02279{bottom:406.116993px;}
.y4e_c02279{bottom:407.370000px;}
.y40_c02279{bottom:423.667524px;}
.y4f_c02279{bottom:424.920000px;}
.y51_c02279{bottom:460.560450px;}
.y50_c02279{bottom:500.700600px;}
.ye_c02279{bottom:543.540450px;}
.yd_c02279{bottom:574.410450px;}
.yc_c02279{bottom:593.760387px;}
.yb_c02279{bottom:607.620450px;}
.ya_c02279{bottom:621.750450px;}
.y9_c02279{bottom:634.260450px;}
.y12_c02279{bottom:653.070450px;}
.y21_c02279{bottom:654.330450px;}
.y13_c02279{bottom:673.140009px;}
.y22_c02279{bottom:674.400900px;}
.y14_c02279{bottom:693.209568px;}
.y23_c02279{bottom:694.471350px;}
.y15_c02279{bottom:713.188947px;}
.y24_c02279{bottom:714.451350px;}
.y16_c02279{bottom:733.258506px;}
.y25_c02279{bottom:734.521800px;}
.y17_c02279{bottom:753.237885px;}
.y26_c02279{bottom:754.592250px;}
.y18_c02279{bottom:773.307444px;}
.y27_c02279{bottom:774.572250px;}
.y19_c02279{bottom:793.377003px;}
.y28_c02279{bottom:794.642700px;}
.y1a_c02279{bottom:813.356382px;}
.y29_c02279{bottom:814.713150px;}
.y1b_c02279{bottom:833.425941px;}
.y2a_c02279{bottom:834.693150px;}
.y1c_c02279{bottom:853.495500px;}
.y2b_c02279{bottom:854.763600px;}
.y1d_c02279{bottom:873.474879px;}
.y2c_c02279{bottom:874.830900px;}
.y1e_c02279{bottom:893.544438px;}
.y2d_c02279{bottom:894.810900px;}
.y1f_c02279{bottom:913.613997px;}
.y2e_c02279{bottom:914.881350px;}
.y20_c02279{bottom:933.593376px;}
.y2f_c02279{bottom:934.951800px;}
.y31_c02279{bottom:969.870450px;}
.y30_c02279{bottom:1004.160450px;}
.y8_c02279{bottom:1047.000450px;}
.y7_c02279{bottom:1078.050450px;}
.y6_c02279{bottom:1108.920450px;}
.y5_c02279{bottom:1139.970450px;}
.y2_c02279{bottom:1172.640450px;}
.y1_c02279{bottom:1193.160450px;}
.h6_c02279{height:39.208008px;}
.h8_c02279{height:39.209808px;}
.h4_c02279{height:42.526230px;}
.h5_c02279{height:43.651582px;}
.h9_c02279{height:47.833770px;}
.h3_c02279{height:47.961914px;}
.h7_c02279{height:52.277344px;}
.h2_c02279{height:63.175781px;}
.h1_c02279{height:63.949219px;}
.h0_c02279{height:1263.000000px;}
.w1_c02279{width:892.500000px;}
.w0_c02279{width:892.830000px;}
.x0_c02279{left:0.000000px;}
.x1_c02279{left:127.620000px;}
.x4_c02279{left:148.950000px;}
.x16_c02279{left:155.079000px;}
.x32_c02279{left:162.642150px;}
.x37_c02279{left:167.316750px;}
.x1f_c02279{left:169.746750px;}
.x15_c02279{left:180.456300px;}
.x2f_c02279{left:188.016750px;}
.x1e_c02279{left:218.254950px;}
.x19_c02279{left:221.959350px;}
.x14_c02279{left:223.204050px;}
.x36_c02279{left:225.814950px;}
.x34_c02279{left:229.519800px;}
.x2e_c02279{left:230.674050px;}
.x1a_c02279{left:240.502950px;}
.x13_c02279{left:247.230000px;}
.x1b_c02279{left:249.234750px;}
.x1c_c02279{left:253.350900px;}
.x2d_c02279{left:254.700000px;}
.x35_c02279{left:256.793850px;}
.x1d_c02279{left:261.182250px;}
.x6_c02279{left:269.640000px;}
.x30_c02279{left:277.659450px;}
.x17_c02279{left:284.683050px;}
.x31_c02279{left:292.240800px;}
.x18_c02279{left:328.968450px;}
.x33_c02279{left:336.528900px;}
.x3_c02279{left:340.560000px;}
.x2_c02279{left:432.990000px;}
.x20_c02279{left:463.770000px;}
.x2c_c02279{left:474.479298px;}
.x2b_c02279{left:492.749766px;}
.x2a_c02279{left:495.180117px;}
.x38_c02279{left:505.530000px;}
.x29_c02279{left:506.610432px;}
.x12_c02279{left:528.746310px;}
.x11_c02279{left:531.986778px;}
.x28_c02279{left:534.149901px;}
.x27_c02279{left:547.920387px;}
.x26_c02279{left:559.709919px;}
.x25_c02279{left:564.209901px;}
.x24_c02279{left:571.140234px;}
.x23_c02279{left:573.480405px;}
.x10_c02279{left:578.787192px;}
.xf_c02279{left:580.587786px;}
.xe_c02279{left:588.867813px;}
.xd_c02279{left:595.347246px;}
.xc_c02279{left:603.987993px;}
.xb_c02279{left:605.788587px;}
.xa_c02279{left:612.269523px;}
.x9_c02279{left:617.759982px;}
.x8_c02279{left:619.109676px;}
.x7_c02279{left:628.290000px;}
.x22_c02279{left:630.809334px;}
.x21_c02279{left:674.730000px;}
.x5_c02279{left:758.250000px;}
@media print{
.v0_c02279{vertical-align:0.000000pt;}
.ls24_c02279{letter-spacing:-0.297600pt;}
.ls1f_c02279{letter-spacing:-0.268800pt;}
.ls2f_c02279{letter-spacing:-0.259200pt;}
.ls18_c02279{letter-spacing:-0.172800pt;}
.ls2a_c02279{letter-spacing:-0.168000pt;}
.ls2b_c02279{letter-spacing:-0.163200pt;}
.ls17_c02279{letter-spacing:-0.158400pt;}
.ls2c_c02279{letter-spacing:-0.139200pt;}
.ls30_c02279{letter-spacing:-0.134400pt;}
.ls33_c02279{letter-spacing:-0.121600pt;}
.ls32_c02279{letter-spacing:-0.105600pt;}
.ls35_c02279{letter-spacing:-0.102400pt;}
.ls2d_c02279{letter-spacing:-0.096000pt;}
.ls31_c02279{letter-spacing:-0.091200pt;}
.ls1a_c02279{letter-spacing:-0.086400pt;}
.ls23_c02279{letter-spacing:-0.081600pt;}
.ls34_c02279{letter-spacing:-0.070400pt;}
.ls1e_c02279{letter-spacing:-0.062400pt;}
.ls2e_c02279{letter-spacing:-0.057600pt;}
.ls38_c02279{letter-spacing:-0.053440pt;}
.ls28_c02279{letter-spacing:-0.052800pt;}
.ls37_c02279{letter-spacing:-0.044800pt;}
.ls22_c02279{letter-spacing:-0.038400pt;}
.ls15_c02279{letter-spacing:-0.028800pt;}
.ls16_c02279{letter-spacing:-0.024000pt;}
.ls1b_c02279{letter-spacing:-0.019200pt;}
.ls20_c02279{letter-spacing:-0.014400pt;}
.ls36_c02279{letter-spacing:-0.012800pt;}
.ls29_c02279{letter-spacing:-0.009600pt;}
.ls12_c02279{letter-spacing:-0.006400pt;}
.ls25_c02279{letter-spacing:-0.004800pt;}
.ls11_c02279{letter-spacing:0.000000pt;}
.lsa_c02279{letter-spacing:0.004800pt;}
.ls1_c02279{letter-spacing:0.012800pt;}
.ls4_c02279{letter-spacing:0.014400pt;}
.ls0_c02279{letter-spacing:0.025600pt;}
.ls9_c02279{letter-spacing:0.028800pt;}
.ls10_c02279{letter-spacing:0.029280pt;}
.ls3_c02279{letter-spacing:0.032000pt;}
.ls5_c02279{letter-spacing:0.033600pt;}
.ls8_c02279{letter-spacing:0.043200pt;}
.lse_c02279{letter-spacing:0.048000pt;}
.ls3b_c02279{letter-spacing:0.048096pt;}
.lsb_c02279{letter-spacing:0.052800pt;}
.ls14_c02279{letter-spacing:0.053440pt;}
.ls2_c02279{letter-spacing:0.057600pt;}
.ls3a_c02279{letter-spacing:0.069472pt;}
.ls1c_c02279{letter-spacing:0.076800pt;}
.ls13_c02279{letter-spacing:0.080160pt;}
.ls7_c02279{letter-spacing:0.100800pt;}
.ls39_c02279{letter-spacing:0.112224pt;}
.ls27_c02279{letter-spacing:0.115200pt;}
.ls21_c02279{letter-spacing:0.153600pt;}
.ls3c_c02279{letter-spacing:0.158400pt;}
.ls1d_c02279{letter-spacing:0.163200pt;}
.lsf_c02279{letter-spacing:0.187392pt;}
.ls19_c02279{letter-spacing:0.192000pt;}
.lsd_c02279{letter-spacing:0.256000pt;}
.ls6_c02279{letter-spacing:0.288000pt;}
.ls26_c02279{letter-spacing:0.302400pt;}
.lsc_c02279{letter-spacing:0.576000pt;}
.ws25_c02279{word-spacing:-64.000000pt;}
.ws2a_c02279{word-spacing:-58.560000pt;}
.ws2_c02279{word-spacing:-48.000000pt;}
.ws15_c02279{word-spacing:-0.350400pt;}
.ws7_c02279{word-spacing:-0.240000pt;}
.wsa_c02279{word-spacing:-0.211200pt;}
.ws28_c02279{word-spacing:-0.206400pt;}
.wsd_c02279{word-spacing:-0.201600pt;}
.ws16_c02279{word-spacing:-0.163200pt;}
.wsf_c02279{word-spacing:-0.148800pt;}
.ws2e_c02279{word-spacing:-0.128000pt;}
.ws9_c02279{word-spacing:-0.124800pt;}
.ws3_c02279{word-spacing:-0.100800pt;}
.ws29_c02279{word-spacing:-0.096000pt;}
.ws12_c02279{word-spacing:-0.091200pt;}
.ws2b_c02279{word-spacing:-0.087840pt;}
.ws13_c02279{word-spacing:-0.081600pt;}
.ws1d_c02279{word-spacing:-0.076800pt;}
.ws0_c02279{word-spacing:-0.062400pt;}
.ws2f_c02279{word-spacing:-0.057600pt;}
.ws21_c02279{word-spacing:-0.052800pt;}
.ws27_c02279{word-spacing:-0.051200pt;}
.wse_c02279{word-spacing:-0.048000pt;}
.ws18_c02279{word-spacing:-0.038400pt;}
.ws30_c02279{word-spacing:-0.032000pt;}
.ws4_c02279{word-spacing:-0.024000pt;}
.ws1_c02279{word-spacing:-0.019200pt;}
.ws2d_c02279{word-spacing:-0.012800pt;}
.ws10_c02279{word-spacing:-0.009600pt;}
.ws24_c02279{word-spacing:-0.006400pt;}
.ws2c_c02279{word-spacing:0.000000pt;}
.ws17_c02279{word-spacing:0.004800pt;}
.ws26_c02279{word-spacing:0.006400pt;}
.ws1e_c02279{word-spacing:0.009600pt;}
.wsb_c02279{word-spacing:0.014400pt;}
.ws11_c02279{word-spacing:0.033600pt;}
.ws8_c02279{word-spacing:0.038400pt;}
.ws22_c02279{word-spacing:0.043200pt;}
.ws1c_c02279{word-spacing:0.048000pt;}
.ws23_c02279{word-spacing:0.057600pt;}
.ws20_c02279{word-spacing:0.086400pt;}
.ws1b_c02279{word-spacing:0.091200pt;}
.ws5_c02279{word-spacing:0.110400pt;}
.ws1a_c02279{word-spacing:0.115200pt;}
.ws19_c02279{word-spacing:0.120000pt;}
.ws6_c02279{word-spacing:0.124800pt;}
.ws1f_c02279{word-spacing:0.211200pt;}
.wsc_c02279{word-spacing:0.220800pt;}
.ws14_c02279{word-spacing:0.249600pt;}
._0_c02279{margin-left:-1.132800pt;}
._1_c02279{width:1.123200pt;}
.fs2_c02279{font-size:42.560000pt;}
.fs1_c02279{font-size:48.000000pt;}
.fs3_c02279{font-size:53.440000pt;}
.fs4_c02279{font-size:58.560000pt;}
.fs0_c02279{font-size:64.000000pt;}
.y0_c02279{bottom:0.000000pt;}
.y4_c02279{bottom:50.987067pt;}
.y3_c02279{bottom:69.387067pt;}
.y11_c02279{bottom:112.907067pt;}
.y10_c02279{bottom:130.507067pt;}
.yf_c02279{bottom:141.627067pt;}
.y32_c02279{bottom:158.347067pt;}
.y41_c02279{bottom:159.467067pt;}
.y33_c02279{bottom:173.947539pt;}
.y42_c02279{bottom:175.067067pt;}
.y34_c02279{bottom:189.548011pt;}
.y43_c02279{bottom:190.667067pt;}
.y35_c02279{bottom:205.148483pt;}
.y44_c02279{bottom:206.267067pt;}
.y36_c02279{bottom:220.748955pt;}
.y45_c02279{bottom:221.867067pt;}
.y37_c02279{bottom:236.269267pt;}
.y46_c02279{bottom:237.467067pt;}
.y38_c02279{bottom:251.869739pt;}
.y47_c02279{bottom:252.986667pt;}
.y39_c02279{bottom:267.470211pt;}
.y48_c02279{bottom:268.586667pt;}
.y3a_c02279{bottom:283.070683pt;}
.y49_c02279{bottom:284.186667pt;}
.y3b_c02279{bottom:298.671155pt;}
.y4a_c02279{bottom:299.786667pt;}
.y3c_c02279{bottom:314.271627pt;}
.y4b_c02279{bottom:315.386667pt;}
.y3d_c02279{bottom:329.872099pt;}
.y4c_c02279{bottom:330.987067pt;}
.y3e_c02279{bottom:345.392411pt;}
.y4d_c02279{bottom:346.506667pt;}
.y3f_c02279{bottom:360.992883pt;}
.y4e_c02279{bottom:362.106667pt;}
.y40_c02279{bottom:376.593355pt;}
.y4f_c02279{bottom:377.706667pt;}
.y51_c02279{bottom:409.387067pt;}
.y50_c02279{bottom:445.067200pt;}
.ye_c02279{bottom:483.147067pt;}
.yd_c02279{bottom:510.587067pt;}
.yc_c02279{bottom:527.787011pt;}
.yb_c02279{bottom:540.107067pt;}
.ya_c02279{bottom:552.667067pt;}
.y9_c02279{bottom:563.787067pt;}
.y12_c02279{bottom:580.507067pt;}
.y21_c02279{bottom:581.627067pt;}
.y13_c02279{bottom:598.346675pt;}
.y22_c02279{bottom:599.467467pt;}
.y14_c02279{bottom:616.186283pt;}
.y23_c02279{bottom:617.307867pt;}
.y15_c02279{bottom:633.945731pt;}
.y24_c02279{bottom:635.067867pt;}
.y16_c02279{bottom:651.785339pt;}
.y25_c02279{bottom:652.908267pt;}
.y17_c02279{bottom:669.544787pt;}
.y26_c02279{bottom:670.748667pt;}
.y18_c02279{bottom:687.384395pt;}
.y27_c02279{bottom:688.508667pt;}
.y19_c02279{bottom:705.224003pt;}
.y28_c02279{bottom:706.349067pt;}
.y1a_c02279{bottom:722.983451pt;}
.y29_c02279{bottom:724.189467pt;}
.y1b_c02279{bottom:740.823059pt;}
.y2a_c02279{bottom:741.949467pt;}
.y1c_c02279{bottom:758.662667pt;}
.y2b_c02279{bottom:759.789867pt;}
.y1d_c02279{bottom:776.422115pt;}
.y2c_c02279{bottom:777.627467pt;}
.y1e_c02279{bottom:794.261723pt;}
.y2d_c02279{bottom:795.387467pt;}
.y1f_c02279{bottom:812.101331pt;}
.y2e_c02279{bottom:813.227867pt;}
.y20_c02279{bottom:829.860779pt;}
.y2f_c02279{bottom:831.068267pt;}
.y31_c02279{bottom:862.107067pt;}
.y30_c02279{bottom:892.587067pt;}
.y8_c02279{bottom:930.667067pt;}
.y7_c02279{bottom:958.267067pt;}
.y6_c02279{bottom:985.707067pt;}
.y5_c02279{bottom:1013.307067pt;}
.y2_c02279{bottom:1042.347067pt;}
.y1_c02279{bottom:1060.587067pt;}
.h6_c02279{height:34.851562pt;}
.h8_c02279{height:34.853162pt;}
.h4_c02279{height:37.801094pt;}
.h5_c02279{height:38.801406pt;}
.h9_c02279{height:42.518906pt;}
.h3_c02279{height:42.632812pt;}
.h7_c02279{height:46.468750pt;}
.h2_c02279{height:56.156250pt;}
.h1_c02279{height:56.843750pt;}
.h0_c02279{height:1122.666667pt;}
.w1_c02279{width:793.333333pt;}
.w0_c02279{width:793.626667pt;}
.x0_c02279{left:0.000000pt;}
.x1_c02279{left:113.440000pt;}
.x4_c02279{left:132.400000pt;}
.x16_c02279{left:137.848000pt;}
.x32_c02279{left:144.570800pt;}
.x37_c02279{left:148.726000pt;}
.x1f_c02279{left:150.886000pt;}
.x15_c02279{left:160.405600pt;}
.x2f_c02279{left:167.126000pt;}
.x1e_c02279{left:194.004400pt;}
.x19_c02279{left:197.297200pt;}
.x14_c02279{left:198.403600pt;}
.x36_c02279{left:200.724400pt;}
.x34_c02279{left:204.017600pt;}
.x2e_c02279{left:205.043600pt;}
.x1a_c02279{left:213.780400pt;}
.x13_c02279{left:219.760000pt;}
.x1b_c02279{left:221.542000pt;}
.x1c_c02279{left:225.200800pt;}
.x2d_c02279{left:226.400000pt;}
.x35_c02279{left:228.261200pt;}
.x1d_c02279{left:232.162000pt;}
.x6_c02279{left:239.680000pt;}
.x30_c02279{left:246.808400pt;}
.x17_c02279{left:253.051600pt;}
.x31_c02279{left:259.769600pt;}
.x18_c02279{left:292.416400pt;}
.x33_c02279{left:299.136800pt;}
.x3_c02279{left:302.720000pt;}
.x2_c02279{left:384.880000pt;}
.x20_c02279{left:412.240000pt;}
.x2c_c02279{left:421.759376pt;}
.x2b_c02279{left:437.999792pt;}
.x2a_c02279{left:440.160104pt;}
.x38_c02279{left:449.360000pt;}
.x29_c02279{left:450.320384pt;}
.x12_c02279{left:469.996720pt;}
.x11_c02279{left:472.877136pt;}
.x28_c02279{left:474.799912pt;}
.x27_c02279{left:487.040344pt;}
.x26_c02279{left:497.519928pt;}
.x25_c02279{left:501.519912pt;}
.x24_c02279{left:507.680208pt;}
.x23_c02279{left:509.760360pt;}
.x10_c02279{left:514.477504pt;}
.xf_c02279{left:516.078032pt;}
.xe_c02279{left:523.438056pt;}
.xd_c02279{left:529.197552pt;}
.xc_c02279{left:536.878216pt;}
.xb_c02279{left:538.478744pt;}
.xa_c02279{left:544.239576pt;}
.x9_c02279{left:549.119984pt;}
.x8_c02279{left:550.319712pt;}
.x7_c02279{left:558.480000pt;}
.x22_c02279{left:560.719408pt;}
.x21_c02279{left:599.760000pt;}
.x5_c02279{left:674.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_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_9265f175aaafe4bcbcbe7dad.woff2')format("woff");}.ff1_c02280{font-family:ff1_c02280;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02280;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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;}
.v2_c02280{vertical-align:1.800000px;}
.v1_c02280{vertical-align:78.120000px;}
.ls3c_c02280{letter-spacing:-0.052704px;}
.ls3d_c02280{letter-spacing:-0.032940px;}
.ls37_c02280{letter-spacing:-0.014400px;}
.ls3a_c02280{letter-spacing:-0.006012px;}
.ls36_c02280{letter-spacing:0.000000px;}
.ls1_c02280{letter-spacing:0.007200px;}
.ls2b_c02280{letter-spacing:0.013176px;}
.ls39_c02280{letter-spacing:0.026352px;}
.ls0_c02280{letter-spacing:0.028800px;}
.ls3_c02280{letter-spacing:0.032940px;}
.ls4_c02280{letter-spacing:0.039528px;}
.ls38_c02280{letter-spacing:0.046116px;}
.ls3b_c02280{letter-spacing:0.052704px;}
.ls1b_c02280{letter-spacing:0.059292px;}
.lsb_c02280{letter-spacing:0.065880px;}
.ls27_c02280{letter-spacing:0.072468px;}
.ls34_c02280{letter-spacing:0.085644px;}
.ls6_c02280{letter-spacing:0.092232px;}
.ls15_c02280{letter-spacing:0.098820px;}
.lse_c02280{letter-spacing:0.138348px;}
.ls5_c02280{letter-spacing:0.144288px;}
.ls9_c02280{letter-spacing:0.151524px;}
.ls25_c02280{letter-spacing:0.158112px;}
.ls2_c02280{letter-spacing:0.164700px;}
.ls18_c02280{letter-spacing:0.177876px;}
.ls1d_c02280{letter-spacing:0.180000px;}
.ls26_c02280{letter-spacing:64.080000px;}
.ls22_c02280{letter-spacing:66.240000px;}
.ls19_c02280{letter-spacing:66.600000px;}
.ls1a_c02280{letter-spacing:66.960000px;}
.ls11_c02280{letter-spacing:99.000000px;}
.ls12_c02280{letter-spacing:99.360000px;}
.lsa_c02280{letter-spacing:99.720000px;}
.ls23_c02280{letter-spacing:117.450000px;}
.lsd_c02280{letter-spacing:132.120000px;}
.lsf_c02280{letter-spacing:132.480000px;}
.ls14_c02280{letter-spacing:132.840000px;}
.ls32_c02280{letter-spacing:133.200000px;}
.ls13_c02280{letter-spacing:150.300000px;}
.ls16_c02280{letter-spacing:151.920000px;}
.ls31_c02280{letter-spacing:165.240000px;}
.ls2c_c02280{letter-spacing:165.960000px;}
.ls1f_c02280{letter-spacing:183.330000px;}
.ls8_c02280{letter-spacing:183.420000px;}
.ls10_c02280{letter-spacing:186.480000px;}
.ls28_c02280{letter-spacing:204.840000px;}
.ls29_c02280{letter-spacing:214.560000px;}
.ls1e_c02280{letter-spacing:214.920000px;}
.ls20_c02280{letter-spacing:215.279400px;}
.ls30_c02280{letter-spacing:217.800000px;}
.ls2f_c02280{letter-spacing:219.240000px;}
.ls2e_c02280{letter-spacing:248.760000px;}
.ls17_c02280{letter-spacing:252.360000px;}
.ls24_c02280{letter-spacing:268.920000px;}
.ls1c_c02280{letter-spacing:281.520000px;}
.ls35_c02280{letter-spacing:281.880000px;}
.lsc_c02280{letter-spacing:296.640000px;}
.ls21_c02280{letter-spacing:314.640000px;}
.ls7_c02280{letter-spacing:347.760000px;}
.ls33_c02280{letter-spacing:361.440000px;}
.ls2d_c02280{letter-spacing:394.200000px;}
.ls2a_c02280{letter-spacing:414.720000px;}
.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;}
}
.ws6_c02280{word-spacing:-16.647876px;}
.ws0_c02280{word-spacing:-16.634700px;}
.ws13_c02280{word-spacing:-16.628112px;}
.ws5_c02280{word-spacing:-16.621524px;}
.ws7_c02280{word-spacing:-16.608348px;}
.wsc_c02280{word-spacing:-16.568820px;}
.ws11_c02280{word-spacing:-16.562232px;}
.ws14_c02280{word-spacing:-16.542468px;}
.wsf_c02280{word-spacing:-16.529292px;}
.ws1_c02280{word-spacing:-16.509528px;}
.ws1e_c02280{word-spacing:-16.437060px;}
.ws1d_c02280{word-spacing:-16.417296px;}
.ws21_c02280{word-spacing:-0.086400px;}
.ws29_c02280{word-spacing:-0.054108px;}
.ws22_c02280{word-spacing:-0.007200px;}
.ws2a_c02280{word-spacing:-0.006588px;}
.ws20_c02280{word-spacing:0.000000px;}
.ws2e_c02280{word-spacing:0.006588px;}
.ws26_c02280{word-spacing:0.026352px;}
.ws2d_c02280{word-spacing:0.032940px;}
.ws2c_c02280{word-spacing:0.039528px;}
.ws23_c02280{word-spacing:0.043200px;}
.ws24_c02280{word-spacing:0.046116px;}
.ws28_c02280{word-spacing:0.052704px;}
.ws25_c02280{word-spacing:0.059292px;}
.ws27_c02280{word-spacing:0.065880px;}
.ws2b_c02280{word-spacing:0.079056px;}
.ws16_c02280{word-spacing:65.089440px;}
.ws12_c02280{word-spacing:67.238496px;}
.wse_c02280{word-spacing:67.642380px;}
.ws4_c02280{word-spacing:99.996372px;}
.wsd_c02280{word-spacing:99.998496px;}
.ws9_c02280{word-spacing:100.402380px;}
.ws15_c02280{word-spacing:100.426608px;}
.ws17_c02280{word-spacing:100.933020px;}
.ws1c_c02280{word-spacing:133.116372px;}
.ws1a_c02280{word-spacing:133.546608px;}
.wsa_c02280{word-spacing:150.082380px;}
.ws8_c02280{word-spacing:150.106608px;}
.ws3_c02280{word-spacing:150.203304px;}
.ws2_c02280{word-spacing:166.763304px;}
.wsb_c02280{word-spacing:182.842380px;}
.ws1b_c02280{word-spacing:182.866608px;}
.ws19_c02280{word-spacing:215.831448px;}
.ws10_c02280{word-spacing:215.986608px;}
.ws1f_c02280{word-spacing:216.083304px;}
.ws18_c02280{word-spacing:216.270000px;}
._1_c02280{margin-left:-1.148292px;}
._4_c02280{width:104.490000px;}
._5_c02280{width:115.923132px;}
._8_c02280{width:133.316208px;}
._3_c02280{width:169.288704px;}
._6_c02280{width:214.319736px;}
._2_c02280{width:216.679284px;}
._9_c02280{width:232.060104px;}
._c_c02280{width:381.675240px;}
._7_c02280{width:414.720000px;}
._0_c02280{width:485.985600px;}
._b_c02280{width:612.126720px;}
._a_c02280{width:665.158248px;}
.fc0_c02280{color:rgb(0,0,0);}
.fs3_c02280{font-size:54.000000px;}
.fs2_c02280{font-size:60.120000px;}
.fs1_c02280{font-size:65.880000px;}
.fs0_c02280{font-size:72.000000px;}
.y0_c02280{bottom:0.000000px;}
.y4_c02280{bottom:57.360450px;}
.y3_c02280{bottom:78.060450px;}
.y3e_c02280{bottom:126.210600px;}
.y3d_c02280{bottom:142.770450px;}
.y3c_c02280{bottom:163.470450px;}
.y3b_c02280{bottom:184.170450px;}
.y3a_c02280{bottom:203.070450px;}
.y39_c02280{bottom:222.420450px;}
.y38_c02280{bottom:243.120600px;}
.y37_c02280{bottom:263.820450px;}
.y36_c02280{bottom:282.810450px;}
.y35_c02280{bottom:301.800450px;}
.y34_c02280{bottom:320.790450px;}
.y33_c02280{bottom:339.780450px;}
.y32_c02280{bottom:358.320450px;}
.y31_c02280{bottom:376.230450px;}
.y30_c02280{bottom:377.670450px;}
.y2d_c02280{bottom:395.220450px;}
.y2f_c02280{bottom:396.660450px;}
.y2e_c02280{bottom:415.650450px;}
.y2c_c02280{bottom:436.170450px;}
.y2b_c02280{bottom:451.740000px;}
.y2a_c02280{bottom:467.220450px;}
.y29_c02280{bottom:483.780600px;}
.y28_c02280{bottom:504.480450px;}
.y27_c02280{bottom:525.180600px;}
.y26_c02280{bottom:544.170450px;}
.y25_c02280{bottom:563.520450px;}
.y24_c02280{bottom:584.220450px;}
.y23_c02280{bottom:604.920450px;}
.y22_c02280{bottom:623.910450px;}
.y21_c02280{bottom:644.610450px;}
.y20_c02280{bottom:663.600450px;}
.y1f_c02280{bottom:682.500450px;}
.y1e_c02280{bottom:701.130450px;}
.y1d_c02280{bottom:718.770450px;}
.y1a_c02280{bottom:737.130450px;}
.y1c_c02280{bottom:737.760450px;}
.y1b_c02280{bottom:756.750450px;}
.y19_c02280{bottom:777.270450px;}
.y18_c02280{bottom:792.750900px;}
.y17_c02280{bottom:808.320450px;}
.y16_c02280{bottom:824.880450px;}
.y15_c02280{bottom:845.580450px;}
.y14_c02280{bottom:866.280450px;}
.y13_c02280{bottom:885.270450px;}
.y12_c02280{bottom:904.620450px;}
.y11_c02280{bottom:925.320450px;}
.y10_c02280{bottom:946.020450px;}
.yf_c02280{bottom:964.920450px;}
.ye_c02280{bottom:983.910450px;}
.yd_c02280{bottom:1002.900450px;}
.yc_c02280{bottom:1021.890450px;}
.yb_c02280{bottom:1042.230450px;}
.y9_c02280{bottom:1059.870450px;}
.y7_c02280{bottom:1078.230450px;}
.y8_c02280{bottom:1078.770450px;}
.ya_c02280{bottom:1097.760450px;}
.y6_c02280{bottom:1117.020450px;}
.y5_c02280{bottom:1139.970450px;}
.y2_c02280{bottom:1172.640450px;}
.y1_c02280{bottom:1193.160450px;}
.h8_c02280{height:47.961914px;}
.h5_c02280{height:53.397598px;}
.h4_c02280{height:58.513535px;}
.h2_c02280{height:63.175781px;}
.h1_c02280{height:63.949219px;}
.h6_c02280{height:64.975781px;}
.ha_c02280{height:65.028619px;}
.h7_c02280{height:65.029219px;}
.h9_c02280{height:65.029819px;}
.h3_c02280{height:142.069219px;}
.h0_c02280{height:1263.000000px;}
.w1_c02280{width:892.500000px;}
.w0_c02280{width:892.830000px;}
.x0_c02280{left:0.000000px;}
.x1_c02280{left:127.620000px;}
.x3_c02280{left:135.630000px;}
.xc_c02280{left:160.920000px;}
.xe_c02280{left:249.300000px;}
.x4_c02280{left:250.920000px;}
.xf_c02280{left:260.820000px;}
.x13_c02280{left:262.620000px;}
.x5_c02280{left:274.050000px;}
.x14_c02280{left:284.850000px;}
.xd_c02280{left:290.610000px;}
.x15_c02280{left:421.920000px;}
.x8_c02280{left:423.450000px;}
.x7_c02280{left:424.620000px;}
.x2_c02280{left:432.990000px;}
.x10_c02280{left:463.140000px;}
.x6_c02280{left:465.210000px;}
.x16_c02280{left:492.930000px;}
.xa_c02280{left:589.410000px;}
.x17_c02280{left:607.950000px;}
.x12_c02280{left:614.340000px;}
.x11_c02280{left:625.590000px;}
.xb_c02280{left:636.840000px;}
.x9_c02280{left:639.810000px;}
.x18_c02280{left:644.220000px;}
@media print{
.v0_c02280{vertical-align:0.000000pt;}
.v2_c02280{vertical-align:1.600000pt;}
.v1_c02280{vertical-align:69.440000pt;}
.ls3c_c02280{letter-spacing:-0.046848pt;}
.ls3d_c02280{letter-spacing:-0.029280pt;}
.ls37_c02280{letter-spacing:-0.012800pt;}
.ls3a_c02280{letter-spacing:-0.005344pt;}
.ls36_c02280{letter-spacing:0.000000pt;}
.ls1_c02280{letter-spacing:0.006400pt;}
.ls2b_c02280{letter-spacing:0.011712pt;}
.ls39_c02280{letter-spacing:0.023424pt;}
.ls0_c02280{letter-spacing:0.025600pt;}
.ls3_c02280{letter-spacing:0.029280pt;}
.ls4_c02280{letter-spacing:0.035136pt;}
.ls38_c02280{letter-spacing:0.040992pt;}
.ls3b_c02280{letter-spacing:0.046848pt;}
.ls1b_c02280{letter-spacing:0.052704pt;}
.lsb_c02280{letter-spacing:0.058560pt;}
.ls27_c02280{letter-spacing:0.064416pt;}
.ls34_c02280{letter-spacing:0.076128pt;}
.ls6_c02280{letter-spacing:0.081984pt;}
.ls15_c02280{letter-spacing:0.087840pt;}
.lse_c02280{letter-spacing:0.122976pt;}
.ls5_c02280{letter-spacing:0.128256pt;}
.ls9_c02280{letter-spacing:0.134688pt;}
.ls25_c02280{letter-spacing:0.140544pt;}
.ls2_c02280{letter-spacing:0.146400pt;}
.ls18_c02280{letter-spacing:0.158112pt;}
.ls1d_c02280{letter-spacing:0.160000pt;}
.ls26_c02280{letter-spacing:56.960000pt;}
.ls22_c02280{letter-spacing:58.880000pt;}
.ls19_c02280{letter-spacing:59.200000pt;}
.ls1a_c02280{letter-spacing:59.520000pt;}
.ls11_c02280{letter-spacing:88.000000pt;}
.ls12_c02280{letter-spacing:88.320000pt;}
.lsa_c02280{letter-spacing:88.640000pt;}
.ls23_c02280{letter-spacing:104.400000pt;}
.lsd_c02280{letter-spacing:117.440000pt;}
.lsf_c02280{letter-spacing:117.760000pt;}
.ls14_c02280{letter-spacing:118.080000pt;}
.ls32_c02280{letter-spacing:118.400000pt;}
.ls13_c02280{letter-spacing:133.600000pt;}
.ls16_c02280{letter-spacing:135.040000pt;}
.ls31_c02280{letter-spacing:146.880000pt;}
.ls2c_c02280{letter-spacing:147.520000pt;}
.ls1f_c02280{letter-spacing:162.960000pt;}
.ls8_c02280{letter-spacing:163.040000pt;}
.ls10_c02280{letter-spacing:165.760000pt;}
.ls28_c02280{letter-spacing:182.080000pt;}
.ls29_c02280{letter-spacing:190.720000pt;}
.ls1e_c02280{letter-spacing:191.040000pt;}
.ls20_c02280{letter-spacing:191.359467pt;}
.ls30_c02280{letter-spacing:193.600000pt;}
.ls2f_c02280{letter-spacing:194.880000pt;}
.ls2e_c02280{letter-spacing:221.120000pt;}
.ls17_c02280{letter-spacing:224.320000pt;}
.ls24_c02280{letter-spacing:239.040000pt;}
.ls1c_c02280{letter-spacing:250.240000pt;}
.ls35_c02280{letter-spacing:250.560000pt;}
.lsc_c02280{letter-spacing:263.680000pt;}
.ls21_c02280{letter-spacing:279.680000pt;}
.ls7_c02280{letter-spacing:309.120000pt;}
.ls33_c02280{letter-spacing:321.280000pt;}
.ls2d_c02280{letter-spacing:350.400000pt;}
.ls2a_c02280{letter-spacing:368.640000pt;}
.ws6_c02280{word-spacing:-14.798112pt;}
.ws0_c02280{word-spacing:-14.786400pt;}
.ws13_c02280{word-spacing:-14.780544pt;}
.ws5_c02280{word-spacing:-14.774688pt;}
.ws7_c02280{word-spacing:-14.762976pt;}
.wsc_c02280{word-spacing:-14.727840pt;}
.ws11_c02280{word-spacing:-14.721984pt;}
.ws14_c02280{word-spacing:-14.704416pt;}
.wsf_c02280{word-spacing:-14.692704pt;}
.ws1_c02280{word-spacing:-14.675136pt;}
.ws1e_c02280{word-spacing:-14.610720pt;}
.ws1d_c02280{word-spacing:-14.593152pt;}
.ws21_c02280{word-spacing:-0.076800pt;}
.ws29_c02280{word-spacing:-0.048096pt;}
.ws22_c02280{word-spacing:-0.006400pt;}
.ws2a_c02280{word-spacing:-0.005856pt;}
.ws20_c02280{word-spacing:0.000000pt;}
.ws2e_c02280{word-spacing:0.005856pt;}
.ws26_c02280{word-spacing:0.023424pt;}
.ws2d_c02280{word-spacing:0.029280pt;}
.ws2c_c02280{word-spacing:0.035136pt;}
.ws23_c02280{word-spacing:0.038400pt;}
.ws24_c02280{word-spacing:0.040992pt;}
.ws28_c02280{word-spacing:0.046848pt;}
.ws25_c02280{word-spacing:0.052704pt;}
.ws27_c02280{word-spacing:0.058560pt;}
.ws2b_c02280{word-spacing:0.070272pt;}
.ws16_c02280{word-spacing:57.857280pt;}
.ws12_c02280{word-spacing:59.767552pt;}
.wse_c02280{word-spacing:60.126560pt;}
.ws4_c02280{word-spacing:88.885664pt;}
.wsd_c02280{word-spacing:88.887552pt;}
.ws9_c02280{word-spacing:89.246560pt;}
.ws15_c02280{word-spacing:89.268096pt;}
.ws17_c02280{word-spacing:89.718240pt;}
.ws1c_c02280{word-spacing:118.325664pt;}
.ws1a_c02280{word-spacing:118.708096pt;}
.wsa_c02280{word-spacing:133.406560pt;}
.ws8_c02280{word-spacing:133.428096pt;}
.ws3_c02280{word-spacing:133.514048pt;}
.ws2_c02280{word-spacing:148.234048pt;}
.wsb_c02280{word-spacing:162.526560pt;}
.ws1b_c02280{word-spacing:162.548096pt;}
.ws19_c02280{word-spacing:191.850176pt;}
.ws10_c02280{word-spacing:191.988096pt;}
.ws1f_c02280{word-spacing:192.074048pt;}
.ws18_c02280{word-spacing:192.240000pt;}
._1_c02280{margin-left:-1.020704pt;}
._4_c02280{width:92.880000pt;}
._5_c02280{width:103.042784pt;}
._8_c02280{width:118.503296pt;}
._3_c02280{width:150.478848pt;}
._6_c02280{width:190.506432pt;}
._2_c02280{width:192.603808pt;}
._9_c02280{width:206.275648pt;}
._c_c02280{width:339.266880pt;}
._7_c02280{width:368.640000pt;}
._0_c02280{width:431.987200pt;}
._b_c02280{width:544.112640pt;}
._a_c02280{width:591.251776pt;}
.fs3_c02280{font-size:48.000000pt;}
.fs2_c02280{font-size:53.440000pt;}
.fs1_c02280{font-size:58.560000pt;}
.fs0_c02280{font-size:64.000000pt;}
.y0_c02280{bottom:0.000000pt;}
.y4_c02280{bottom:50.987067pt;}
.y3_c02280{bottom:69.387067pt;}
.y3e_c02280{bottom:112.187200pt;}
.y3d_c02280{bottom:126.907067pt;}
.y3c_c02280{bottom:145.307067pt;}
.y3b_c02280{bottom:163.707067pt;}
.y3a_c02280{bottom:180.507067pt;}
.y39_c02280{bottom:197.707067pt;}
.y38_c02280{bottom:216.107200pt;}
.y37_c02280{bottom:234.507067pt;}
.y36_c02280{bottom:251.387067pt;}
.y35_c02280{bottom:268.267067pt;}
.y34_c02280{bottom:285.147067pt;}
.y33_c02280{bottom:302.027067pt;}
.y32_c02280{bottom:318.507067pt;}
.y31_c02280{bottom:334.427067pt;}
.y30_c02280{bottom:335.707067pt;}
.y2d_c02280{bottom:351.307067pt;}
.y2f_c02280{bottom:352.587067pt;}
.y2e_c02280{bottom:369.467067pt;}
.y2c_c02280{bottom:387.707067pt;}
.y2b_c02280{bottom:401.546667pt;}
.y2a_c02280{bottom:415.307067pt;}
.y29_c02280{bottom:430.027200pt;}
.y28_c02280{bottom:448.427067pt;}
.y27_c02280{bottom:466.827200pt;}
.y26_c02280{bottom:483.707067pt;}
.y25_c02280{bottom:500.907067pt;}
.y24_c02280{bottom:519.307067pt;}
.y23_c02280{bottom:537.707067pt;}
.y22_c02280{bottom:554.587067pt;}
.y21_c02280{bottom:572.987067pt;}
.y20_c02280{bottom:589.867067pt;}
.y1f_c02280{bottom:606.667067pt;}
.y1e_c02280{bottom:623.227067pt;}
.y1d_c02280{bottom:638.907067pt;}
.y1a_c02280{bottom:655.227067pt;}
.y1c_c02280{bottom:655.787067pt;}
.y1b_c02280{bottom:672.667067pt;}
.y19_c02280{bottom:690.907067pt;}
.y18_c02280{bottom:704.667467pt;}
.y17_c02280{bottom:718.507067pt;}
.y16_c02280{bottom:733.227067pt;}
.y15_c02280{bottom:751.627067pt;}
.y14_c02280{bottom:770.027067pt;}
.y13_c02280{bottom:786.907067pt;}
.y12_c02280{bottom:804.107067pt;}
.y11_c02280{bottom:822.507067pt;}
.y10_c02280{bottom:840.907067pt;}
.yf_c02280{bottom:857.707067pt;}
.ye_c02280{bottom:874.587067pt;}
.yd_c02280{bottom:891.467067pt;}
.yc_c02280{bottom:908.347067pt;}
.yb_c02280{bottom:926.427067pt;}
.y9_c02280{bottom:942.107067pt;}
.y7_c02280{bottom:958.427067pt;}
.y8_c02280{bottom:958.907067pt;}
.ya_c02280{bottom:975.787067pt;}
.y6_c02280{bottom:992.907067pt;}
.y5_c02280{bottom:1013.307067pt;}
.y2_c02280{bottom:1042.347067pt;}
.y1_c02280{bottom:1060.587067pt;}
.h8_c02280{height:42.632812pt;}
.h5_c02280{height:47.464531pt;}
.h4_c02280{height:52.012031pt;}
.h2_c02280{height:56.156250pt;}
.h1_c02280{height:56.843750pt;}
.h6_c02280{height:57.756250pt;}
.ha_c02280{height:57.803217pt;}
.h7_c02280{height:57.803750pt;}
.h9_c02280{height:57.804283pt;}
.h3_c02280{height:126.283750pt;}
.h0_c02280{height:1122.666667pt;}
.w1_c02280{width:793.333333pt;}
.w0_c02280{width:793.626667pt;}
.x0_c02280{left:0.000000pt;}
.x1_c02280{left:113.440000pt;}
.x3_c02280{left:120.560000pt;}
.xc_c02280{left:143.040000pt;}
.xe_c02280{left:221.600000pt;}
.x4_c02280{left:223.040000pt;}
.xf_c02280{left:231.840000pt;}
.x13_c02280{left:233.440000pt;}
.x5_c02280{left:243.600000pt;}
.x14_c02280{left:253.200000pt;}
.xd_c02280{left:258.320000pt;}
.x15_c02280{left:375.040000pt;}
.x8_c02280{left:376.400000pt;}
.x7_c02280{left:377.440000pt;}
.x2_c02280{left:384.880000pt;}
.x10_c02280{left:411.680000pt;}
.x6_c02280{left:413.520000pt;}
.x16_c02280{left:438.160000pt;}
.xa_c02280{left:523.920000pt;}
.x17_c02280{left:540.400000pt;}
.x12_c02280{left:546.080000pt;}
.x11_c02280{left:556.080000pt;}
.xb_c02280{left:566.080000pt;}
.x9_c02280{left:568.720000pt;}
.x18_c02280{left:572.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_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_bf73c495c575dccbee77525e.woff2')format("woff");}.ff1_c02281{font-family:ff1_c02281;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02281;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v5_c02281{vertical-align:-3.960000px;}
.v4_c02281{vertical-align:-2.520000px;}
.v6_c02281{vertical-align:-1.440000px;}
.v0_c02281{vertical-align:0.000000px;}
.v1_c02281{vertical-align:1.800000px;}
.v8_c02281{vertical-align:2.880000px;}
.v7_c02281{vertical-align:3.960000px;}
.v3_c02281{vertical-align:5.400000px;}
.v2_c02281{vertical-align:78.120000px;}
.ls4d_c02281{letter-spacing:-0.086184px;}
.ls46_c02281{letter-spacing:-0.046116px;}
.ls49_c02281{letter-spacing:-0.043200px;}
.ls4b_c02281{letter-spacing:-0.019152px;}
.ls44_c02281{letter-spacing:-0.014400px;}
.ls4a_c02281{letter-spacing:-0.010800px;}
.ls4f_c02281{letter-spacing:-0.009576px;}
.ls45_c02281{letter-spacing:-0.006012px;}
.ls43_c02281{letter-spacing:0.000000px;}
.ls33_c02281{letter-spacing:0.007200px;}
.ls35_c02281{letter-spacing:0.010800px;}
.ls2c_c02281{letter-spacing:0.013176px;}
.ls42_c02281{letter-spacing:0.019152px;}
.ls5_c02281{letter-spacing:0.019764px;}
.ls34_c02281{letter-spacing:0.021600px;}
.ls2_c02281{letter-spacing:0.026352px;}
.ls37_c02281{letter-spacing:0.028728px;}
.ls0_c02281{letter-spacing:0.028800px;}
.ls39_c02281{letter-spacing:0.032400px;}
.ls3e_c02281{letter-spacing:0.037800px;}
.ls24_c02281{letter-spacing:0.039528px;}
.ls36_c02281{letter-spacing:0.043092px;}
.ls3d_c02281{letter-spacing:0.043200px;}
.ls47_c02281{letter-spacing:0.046116px;}
.ls3_c02281{letter-spacing:0.052704px;}
.ls4_c02281{letter-spacing:0.059292px;}
.ls38_c02281{letter-spacing:0.059400px;}
.lsd_c02281{letter-spacing:0.065880px;}
.ls28_c02281{letter-spacing:0.072468px;}
.ls3b_c02281{letter-spacing:0.081396px;}
.ls2e_c02281{letter-spacing:0.085644px;}
.ls20_c02281{letter-spacing:0.092232px;}
.ls14_c02281{letter-spacing:0.098820px;}
.ls7_c02281{letter-spacing:0.105408px;}
.ls40_c02281{letter-spacing:0.124488px;}
.ls41_c02281{letter-spacing:0.134064px;}
.lsa_c02281{letter-spacing:0.138348px;}
.ls6_c02281{letter-spacing:0.144288px;}
.ls48_c02281{letter-spacing:0.151200px;}
.ls10_c02281{letter-spacing:0.151524px;}
.ls26_c02281{letter-spacing:0.158112px;}
.ls1_c02281{letter-spacing:0.164700px;}
.ls4c_c02281{letter-spacing:0.167580px;}
.ls17_c02281{letter-spacing:0.177876px;}
.ls1b_c02281{letter-spacing:0.180000px;}
.ls3c_c02281{letter-spacing:0.181944px;}
.ls27_c02281{letter-spacing:64.080000px;}
.ls22_c02281{letter-spacing:66.240000px;}
.ls18_c02281{letter-spacing:66.600000px;}
.ls19_c02281{letter-spacing:66.960000px;}
.lsf_c02281{letter-spacing:99.000000px;}
.ls11_c02281{letter-spacing:99.360000px;}
.ls12_c02281{letter-spacing:99.720000px;}
.ls3a_c02281{letter-spacing:111.240000px;}
.ls23_c02281{letter-spacing:117.450000px;}
.ls30_c02281{letter-spacing:132.120000px;}
.ls31_c02281{letter-spacing:132.480000px;}
.ls32_c02281{letter-spacing:132.840000px;}
.ls4e_c02281{letter-spacing:142.738200px;}
.ls9_c02281{letter-spacing:150.300000px;}
.ls15_c02281{letter-spacing:151.920000px;}
.ls1c_c02281{letter-spacing:165.240000px;}
.lsc_c02281{letter-spacing:165.960000px;}
.ls1e_c02281{letter-spacing:183.330000px;}
.lsb_c02281{letter-spacing:183.420000px;}
.ls13_c02281{letter-spacing:186.480000px;}
.ls3f_c02281{letter-spacing:191.790000px;}
.ls29_c02281{letter-spacing:204.840000px;}
.ls2a_c02281{letter-spacing:214.560000px;}
.ls1d_c02281{letter-spacing:214.920000px;}
.ls1f_c02281{letter-spacing:215.279400px;}
.ls16_c02281{letter-spacing:252.360000px;}
.ls25_c02281{letter-spacing:268.920000px;}
.ls1a_c02281{letter-spacing:281.520000px;}
.ls2f_c02281{letter-spacing:281.880000px;}
.lse_c02281{letter-spacing:296.640000px;}
.ls21_c02281{letter-spacing:314.640000px;}
.ls8_c02281{letter-spacing:331.200000px;}
.ls2d_c02281{letter-spacing:394.200000px;}
.ls2b_c02281{letter-spacing:414.720000px;}
.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;}
}
.ws5_c02281{word-spacing:-16.647876px;}
.ws0_c02281{word-spacing:-16.634700px;}
.ws12_c02281{word-spacing:-16.628112px;}
.ws6_c02281{word-spacing:-16.621524px;}
.wsf_c02281{word-spacing:-16.608348px;}
.wsa_c02281{word-spacing:-16.568820px;}
.ws4_c02281{word-spacing:-16.562232px;}
.ws13_c02281{word-spacing:-16.542468px;}
.wsd_c02281{word-spacing:-16.529292px;}
.ws1_c02281{word-spacing:-16.522704px;}
.ws11_c02281{word-spacing:-16.509528px;}
.ws18_c02281{word-spacing:-16.423884px;}
.ws32_c02281{word-spacing:-0.272916px;}
.ws36_c02281{word-spacing:-0.225036px;}
.ws35_c02281{word-spacing:-0.215460px;}
.ws37_c02281{word-spacing:-0.172368px;}
.ws39_c02281{word-spacing:-0.119700px;}
.ws2e_c02281{word-spacing:-0.115200px;}
.ws38_c02281{word-spacing:-0.110124px;}
.ws21_c02281{word-spacing:-0.086400px;}
.ws33_c02281{word-spacing:-0.081396px;}
.ws25_c02281{word-spacing:-0.054108px;}
.ws30_c02281{word-spacing:-0.021600px;}
.ws26_c02281{word-spacing:-0.013176px;}
.ws2f_c02281{word-spacing:-0.007200px;}
.ws28_c02281{word-spacing:-0.006588px;}
.ws20_c02281{word-spacing:0.000000px;}
.ws2b_c02281{word-spacing:0.006588px;}
.ws27_c02281{word-spacing:0.026352px;}
.ws23_c02281{word-spacing:0.032940px;}
.ws2c_c02281{word-spacing:0.046116px;}
.ws29_c02281{word-spacing:0.052704px;}
.ws22_c02281{word-spacing:0.065880px;}
.ws24_c02281{word-spacing:0.072468px;}
.ws2a_c02281{word-spacing:0.079056px;}
.ws2d_c02281{word-spacing:0.092232px;}
.ws31_c02281{word-spacing:0.118800px;}
.ws14_c02281{word-spacing:65.089440px;}
.ws10_c02281{word-spacing:67.238496px;}
.wsc_c02281{word-spacing:67.642380px;}
.ws1f_c02281{word-spacing:91.729440px;}
.ws8_c02281{word-spacing:99.996372px;}
.wsb_c02281{word-spacing:99.998496px;}
.ws9_c02281{word-spacing:100.402380px;}
.ws1e_c02281{word-spacing:100.426608px;}
.ws15_c02281{word-spacing:100.933020px;}
.ws1c_c02281{word-spacing:133.116372px;}
.ws2_c02281{word-spacing:133.546608px;}
.ws1d_c02281{word-spacing:134.053020px;}
.ws7_c02281{word-spacing:150.082380px;}
.ws1b_c02281{word-spacing:150.106608px;}
.ws1a_c02281{word-spacing:182.842380px;}
.ws3_c02281{word-spacing:182.866608px;}
.ws34_c02281{word-spacing:194.535000px;}
.ws17_c02281{word-spacing:215.833572px;}
.wse_c02281{word-spacing:216.083304px;}
.ws16_c02281{word-spacing:216.270000px;}
.ws19_c02281{word-spacing:1146.946608px;}
._1f_c02281{margin-left:-39.641400px;}
._26_c02281{margin-left:-38.615940px;}
._21_c02281{margin-left:-37.438200px;}
._0_c02281{margin-left:-1.148292px;}
._24_c02281{width:4.299120px;}
._20_c02281{width:46.083600px;}
._17_c02281{width:50.937552px;}
._1b_c02281{width:60.872760px;}
._1a_c02281{width:62.820000px;}
._14_c02281{width:72.604440px;}
._15_c02281{width:75.357000px;}
._d_c02281{width:79.794000px;}
._19_c02281{width:81.244296px;}
._1d_c02281{width:84.160080px;}
._c_c02281{width:87.501600px;}
._18_c02281{width:95.575140px;}
._25_c02281{width:98.400168px;}
._16_c02281{width:100.375200px;}
._23_c02281{width:101.471580px;}
._3_c02281{width:104.490000px;}
._f_c02281{width:108.900000px;}
._e_c02281{width:111.060000px;}
._1e_c02281{width:114.842160px;}
._4_c02281{width:115.923132px;}
._10_c02281{width:116.938944px;}
._1c_c02281{width:118.944000px;}
._13_c02281{width:124.187688px;}
._11_c02281{width:129.336120px;}
._7_c02281{width:133.316208px;}
._22_c02281{width:142.740000px;}
._12_c02281{width:145.675404px;}
._2_c02281{width:169.288704px;}
._5_c02281{width:214.238448px;}
._1_c02281{width:216.679284px;}
._8_c02281{width:232.060104px;}
._6_c02281{width:414.720000px;}
._b_c02281{width:485.985600px;}
._a_c02281{width:644.886720px;}
._9_c02281{width:665.158248px;}
.fc0_c02281{color:rgb(0,0,0);}
.fs4_c02281{font-size:47.880000px;}
.fs3_c02281{font-size:54.000000px;}
.fs2_c02281{font-size:60.120000px;}
.fs1_c02281{font-size:65.880000px;}
.fs0_c02281{font-size:72.000000px;}
.y0_c02281{bottom:0.000000px;}
.y4_c02281{bottom:57.360450px;}
.y3_c02281{bottom:78.060450px;}
.y45_c02281{bottom:114.600450px;}
.y44_c02281{bottom:132.960450px;}
.y43_c02281{bottom:148.440900px;}
.y42_c02281{bottom:164.010450px;}
.y41_c02281{bottom:179.490900px;}
.y40_c02281{bottom:195.060450px;}
.y3f_c02281{bottom:210.540600px;}
.y3e_c02281{bottom:210.900000px;}
.y3d_c02281{bottom:229.530600px;}
.y3c_c02281{bottom:229.890000px;}
.y3b_c02281{bottom:248.520450px;}
.y3a_c02281{bottom:248.880000px;}
.y39_c02281{bottom:267.420450px;}
.y38_c02281{bottom:267.870450px;}
.y37_c02281{bottom:286.410450px;}
.y36_c02281{bottom:286.770450px;}
.y35_c02281{bottom:305.760450px;}
.y34_c02281{bottom:324.390450px;}
.y33_c02281{bottom:324.750600px;}
.y32_c02281{bottom:346.080450px;}
.y31_c02281{bottom:365.340450px;}
.y30_c02281{bottom:381.810450px;}
.y2f_c02281{bottom:401.970450px;}
.y2e_c02281{bottom:418.620600px;}
.y2d_c02281{bottom:439.860600px;}
.y2c_c02281{bottom:460.380000px;}
.y2b_c02281{bottom:475.860450px;}
.y2a_c02281{bottom:491.430000px;}
.y29_c02281{bottom:506.910450px;}
.y28_c02281{bottom:523.470450px;}
.y27_c02281{bottom:544.170450px;}
.y26_c02281{bottom:564.870450px;}
.y25_c02281{bottom:583.860450px;}
.y24_c02281{bottom:603.210450px;}
.y23_c02281{bottom:623.910450px;}
.y22_c02281{bottom:644.610450px;}
.y21_c02281{bottom:663.600450px;}
.y20_c02281{bottom:682.500450px;}
.y1f_c02281{bottom:701.490450px;}
.y1e_c02281{bottom:720.480450px;}
.y1d_c02281{bottom:740.820450px;}
.y1b_c02281{bottom:758.460450px;}
.y19_c02281{bottom:776.820450px;}
.y1a_c02281{bottom:777.450450px;}
.y1c_c02281{bottom:796.350450px;}
.y18_c02281{bottom:816.960450px;}
.y17_c02281{bottom:832.440900px;}
.y16_c02281{bottom:848.010450px;}
.y15_c02281{bottom:864.570450px;}
.y14_c02281{bottom:885.270450px;}
.y13_c02281{bottom:905.970450px;}
.y12_c02281{bottom:924.960450px;}
.y11_c02281{bottom:944.310450px;}
.y10_c02281{bottom:964.920450px;}
.yf_c02281{bottom:985.620450px;}
.ye_c02281{bottom:1004.610450px;}
.yd_c02281{bottom:1023.600450px;}
.yc_c02281{bottom:1042.590450px;}
.yb_c02281{bottom:1061.580450px;}
.ya_c02281{bottom:1081.920450px;}
.y9_c02281{bottom:1099.830450px;}
.y8_c02281{bottom:1101.270450px;}
.y5_c02281{bottom:1118.730450px;}
.y7_c02281{bottom:1120.170450px;}
.y6_c02281{bottom:1139.160450px;}
.y2_c02281{bottom:1172.640450px;}
.y1_c02281{bottom:1193.160450px;}
.h8_c02281{height:47.961914px;}
.h4_c02281{height:53.397598px;}
.h3_c02281{height:58.513535px;}
.hb_c02281{height:61.393535px;}
.hd_c02281{height:62.472935px;}
.ha_c02281{height:62.473535px;}
.hc_c02281{height:62.833535px;}
.h2_c02281{height:63.175781px;}
.h1_c02281{height:63.949219px;}
.h5_c02281{height:64.975781px;}
.h7_c02281{height:65.029219px;}
.h6_c02281{height:65.029819px;}
.h9_c02281{height:142.069219px;}
.h0_c02281{height:1263.000000px;}
.w1_c02281{width:892.500000px;}
.w0_c02281{width:892.830000px;}
.x0_c02281{left:0.000000px;}
.x1_c02281{left:127.620000px;}
.x3_c02281{left:135.630000px;}
.x14_c02281{left:143.910000px;}
.xd_c02281{left:160.920000px;}
.x15_c02281{left:165.060000px;}
.x16_c02281{left:220.320000px;}
.xe_c02281{left:250.650000px;}
.x6_c02281{left:276.120000px;}
.x5_c02281{left:282.780000px;}
.x4_c02281{left:290.610000px;}
.xf_c02281{left:299.070000px;}
.x10_c02281{left:416.790000px;}
.x8_c02281{left:421.830000px;}
.x2_c02281{left:432.990000px;}
.x7_c02281{left:465.210000px;}
.x11_c02281{left:473.670000px;}
.x9_c02281{left:492.930000px;}
.x13_c02281{left:591.480000px;}
.x12_c02281{left:593.730000px;}
.xb_c02281{left:624.240000px;}
.xa_c02281{left:639.810000px;}
.xc_c02281{left:667.530000px;}
@media print{
.v5_c02281{vertical-align:-3.520000pt;}
.v4_c02281{vertical-align:-2.240000pt;}
.v6_c02281{vertical-align:-1.280000pt;}
.v0_c02281{vertical-align:0.000000pt;}
.v1_c02281{vertical-align:1.600000pt;}
.v8_c02281{vertical-align:2.560000pt;}
.v7_c02281{vertical-align:3.520000pt;}
.v3_c02281{vertical-align:4.800000pt;}
.v2_c02281{vertical-align:69.440000pt;}
.ls4d_c02281{letter-spacing:-0.076608pt;}
.ls46_c02281{letter-spacing:-0.040992pt;}
.ls49_c02281{letter-spacing:-0.038400pt;}
.ls4b_c02281{letter-spacing:-0.017024pt;}
.ls44_c02281{letter-spacing:-0.012800pt;}
.ls4a_c02281{letter-spacing:-0.009600pt;}
.ls4f_c02281{letter-spacing:-0.008512pt;}
.ls45_c02281{letter-spacing:-0.005344pt;}
.ls43_c02281{letter-spacing:0.000000pt;}
.ls33_c02281{letter-spacing:0.006400pt;}
.ls35_c02281{letter-spacing:0.009600pt;}
.ls2c_c02281{letter-spacing:0.011712pt;}
.ls42_c02281{letter-spacing:0.017024pt;}
.ls5_c02281{letter-spacing:0.017568pt;}
.ls34_c02281{letter-spacing:0.019200pt;}
.ls2_c02281{letter-spacing:0.023424pt;}
.ls37_c02281{letter-spacing:0.025536pt;}
.ls0_c02281{letter-spacing:0.025600pt;}
.ls39_c02281{letter-spacing:0.028800pt;}
.ls3e_c02281{letter-spacing:0.033600pt;}
.ls24_c02281{letter-spacing:0.035136pt;}
.ls36_c02281{letter-spacing:0.038304pt;}
.ls3d_c02281{letter-spacing:0.038400pt;}
.ls47_c02281{letter-spacing:0.040992pt;}
.ls3_c02281{letter-spacing:0.046848pt;}
.ls4_c02281{letter-spacing:0.052704pt;}
.ls38_c02281{letter-spacing:0.052800pt;}
.lsd_c02281{letter-spacing:0.058560pt;}
.ls28_c02281{letter-spacing:0.064416pt;}
.ls3b_c02281{letter-spacing:0.072352pt;}
.ls2e_c02281{letter-spacing:0.076128pt;}
.ls20_c02281{letter-spacing:0.081984pt;}
.ls14_c02281{letter-spacing:0.087840pt;}
.ls7_c02281{letter-spacing:0.093696pt;}
.ls40_c02281{letter-spacing:0.110656pt;}
.ls41_c02281{letter-spacing:0.119168pt;}
.lsa_c02281{letter-spacing:0.122976pt;}
.ls6_c02281{letter-spacing:0.128256pt;}
.ls48_c02281{letter-spacing:0.134400pt;}
.ls10_c02281{letter-spacing:0.134688pt;}
.ls26_c02281{letter-spacing:0.140544pt;}
.ls1_c02281{letter-spacing:0.146400pt;}
.ls4c_c02281{letter-spacing:0.148960pt;}
.ls17_c02281{letter-spacing:0.158112pt;}
.ls1b_c02281{letter-spacing:0.160000pt;}
.ls3c_c02281{letter-spacing:0.161728pt;}
.ls27_c02281{letter-spacing:56.960000pt;}
.ls22_c02281{letter-spacing:58.880000pt;}
.ls18_c02281{letter-spacing:59.200000pt;}
.ls19_c02281{letter-spacing:59.520000pt;}
.lsf_c02281{letter-spacing:88.000000pt;}
.ls11_c02281{letter-spacing:88.320000pt;}
.ls12_c02281{letter-spacing:88.640000pt;}
.ls3a_c02281{letter-spacing:98.880000pt;}
.ls23_c02281{letter-spacing:104.400000pt;}
.ls30_c02281{letter-spacing:117.440000pt;}
.ls31_c02281{letter-spacing:117.760000pt;}
.ls32_c02281{letter-spacing:118.080000pt;}
.ls4e_c02281{letter-spacing:126.878400pt;}
.ls9_c02281{letter-spacing:133.600000pt;}
.ls15_c02281{letter-spacing:135.040000pt;}
.ls1c_c02281{letter-spacing:146.880000pt;}
.lsc_c02281{letter-spacing:147.520000pt;}
.ls1e_c02281{letter-spacing:162.960000pt;}
.lsb_c02281{letter-spacing:163.040000pt;}
.ls13_c02281{letter-spacing:165.760000pt;}
.ls3f_c02281{letter-spacing:170.480000pt;}
.ls29_c02281{letter-spacing:182.080000pt;}
.ls2a_c02281{letter-spacing:190.720000pt;}
.ls1d_c02281{letter-spacing:191.040000pt;}
.ls1f_c02281{letter-spacing:191.359467pt;}
.ls16_c02281{letter-spacing:224.320000pt;}
.ls25_c02281{letter-spacing:239.040000pt;}
.ls1a_c02281{letter-spacing:250.240000pt;}
.ls2f_c02281{letter-spacing:250.560000pt;}
.lse_c02281{letter-spacing:263.680000pt;}
.ls21_c02281{letter-spacing:279.680000pt;}
.ls8_c02281{letter-spacing:294.400000pt;}
.ls2d_c02281{letter-spacing:350.400000pt;}
.ls2b_c02281{letter-spacing:368.640000pt;}
.ws5_c02281{word-spacing:-14.798112pt;}
.ws0_c02281{word-spacing:-14.786400pt;}
.ws12_c02281{word-spacing:-14.780544pt;}
.ws6_c02281{word-spacing:-14.774688pt;}
.wsf_c02281{word-spacing:-14.762976pt;}
.wsa_c02281{word-spacing:-14.727840pt;}
.ws4_c02281{word-spacing:-14.721984pt;}
.ws13_c02281{word-spacing:-14.704416pt;}
.wsd_c02281{word-spacing:-14.692704pt;}
.ws1_c02281{word-spacing:-14.686848pt;}
.ws11_c02281{word-spacing:-14.675136pt;}
.ws18_c02281{word-spacing:-14.599008pt;}
.ws32_c02281{word-spacing:-0.242592pt;}
.ws36_c02281{word-spacing:-0.200032pt;}
.ws35_c02281{word-spacing:-0.191520pt;}
.ws37_c02281{word-spacing:-0.153216pt;}
.ws39_c02281{word-spacing:-0.106400pt;}
.ws2e_c02281{word-spacing:-0.102400pt;}
.ws38_c02281{word-spacing:-0.097888pt;}
.ws21_c02281{word-spacing:-0.076800pt;}
.ws33_c02281{word-spacing:-0.072352pt;}
.ws25_c02281{word-spacing:-0.048096pt;}
.ws30_c02281{word-spacing:-0.019200pt;}
.ws26_c02281{word-spacing:-0.011712pt;}
.ws2f_c02281{word-spacing:-0.006400pt;}
.ws28_c02281{word-spacing:-0.005856pt;}
.ws20_c02281{word-spacing:0.000000pt;}
.ws2b_c02281{word-spacing:0.005856pt;}
.ws27_c02281{word-spacing:0.023424pt;}
.ws23_c02281{word-spacing:0.029280pt;}
.ws2c_c02281{word-spacing:0.040992pt;}
.ws29_c02281{word-spacing:0.046848pt;}
.ws22_c02281{word-spacing:0.058560pt;}
.ws24_c02281{word-spacing:0.064416pt;}
.ws2a_c02281{word-spacing:0.070272pt;}
.ws2d_c02281{word-spacing:0.081984pt;}
.ws31_c02281{word-spacing:0.105600pt;}
.ws14_c02281{word-spacing:57.857280pt;}
.ws10_c02281{word-spacing:59.767552pt;}
.wsc_c02281{word-spacing:60.126560pt;}
.ws1f_c02281{word-spacing:81.537280pt;}
.ws8_c02281{word-spacing:88.885664pt;}
.wsb_c02281{word-spacing:88.887552pt;}
.ws9_c02281{word-spacing:89.246560pt;}
.ws1e_c02281{word-spacing:89.268096pt;}
.ws15_c02281{word-spacing:89.718240pt;}
.ws1c_c02281{word-spacing:118.325664pt;}
.ws2_c02281{word-spacing:118.708096pt;}
.ws1d_c02281{word-spacing:119.158240pt;}
.ws7_c02281{word-spacing:133.406560pt;}
.ws1b_c02281{word-spacing:133.428096pt;}
.ws1a_c02281{word-spacing:162.526560pt;}
.ws3_c02281{word-spacing:162.548096pt;}
.ws34_c02281{word-spacing:172.920000pt;}
.ws17_c02281{word-spacing:191.852064pt;}
.wse_c02281{word-spacing:192.074048pt;}
.ws16_c02281{word-spacing:192.240000pt;}
.ws19_c02281{word-spacing:1019.508096pt;}
._1f_c02281{margin-left:-35.236800pt;}
._26_c02281{margin-left:-34.325280pt;}
._21_c02281{margin-left:-33.278400pt;}
._0_c02281{margin-left:-1.020704pt;}
._24_c02281{width:3.821440pt;}
._20_c02281{width:40.963200pt;}
._17_c02281{width:45.277824pt;}
._1b_c02281{width:54.109120pt;}
._1a_c02281{width:55.840000pt;}
._14_c02281{width:64.537280pt;}
._15_c02281{width:66.984000pt;}
._d_c02281{width:70.928000pt;}
._19_c02281{width:72.217152pt;}
._1d_c02281{width:74.808960pt;}
._c_c02281{width:77.779200pt;}
._18_c02281{width:84.955680pt;}
._25_c02281{width:87.466816pt;}
._16_c02281{width:89.222400pt;}
._23_c02281{width:90.196960pt;}
._3_c02281{width:92.880000pt;}
._f_c02281{width:96.800000pt;}
._e_c02281{width:98.720000pt;}
._1e_c02281{width:102.081920pt;}
._4_c02281{width:103.042784pt;}
._10_c02281{width:103.945728pt;}
._1c_c02281{width:105.728000pt;}
._13_c02281{width:110.389056pt;}
._11_c02281{width:114.965440pt;}
._7_c02281{width:118.503296pt;}
._22_c02281{width:126.880000pt;}
._12_c02281{width:129.489248pt;}
._2_c02281{width:150.478848pt;}
._5_c02281{width:190.434176pt;}
._1_c02281{width:192.603808pt;}
._8_c02281{width:206.275648pt;}
._6_c02281{width:368.640000pt;}
._b_c02281{width:431.987200pt;}
._a_c02281{width:573.232640pt;}
._9_c02281{width:591.251776pt;}
.fs4_c02281{font-size:42.560000pt;}
.fs3_c02281{font-size:48.000000pt;}
.fs2_c02281{font-size:53.440000pt;}
.fs1_c02281{font-size:58.560000pt;}
.fs0_c02281{font-size:64.000000pt;}
.y0_c02281{bottom:0.000000pt;}
.y4_c02281{bottom:50.987067pt;}
.y3_c02281{bottom:69.387067pt;}
.y45_c02281{bottom:101.867067pt;}
.y44_c02281{bottom:118.187067pt;}
.y43_c02281{bottom:131.947467pt;}
.y42_c02281{bottom:145.787067pt;}
.y41_c02281{bottom:159.547467pt;}
.y40_c02281{bottom:173.387067pt;}
.y3f_c02281{bottom:187.147200pt;}
.y3e_c02281{bottom:187.466667pt;}
.y3d_c02281{bottom:204.027200pt;}
.y3c_c02281{bottom:204.346667pt;}
.y3b_c02281{bottom:220.907067pt;}
.y3a_c02281{bottom:221.226667pt;}
.y39_c02281{bottom:237.707067pt;}
.y38_c02281{bottom:238.107067pt;}
.y37_c02281{bottom:254.587067pt;}
.y36_c02281{bottom:254.907067pt;}
.y35_c02281{bottom:271.787067pt;}
.y34_c02281{bottom:288.347067pt;}
.y33_c02281{bottom:288.667200pt;}
.y32_c02281{bottom:307.627067pt;}
.y31_c02281{bottom:324.747067pt;}
.y30_c02281{bottom:339.387067pt;}
.y2f_c02281{bottom:357.307067pt;}
.y2e_c02281{bottom:372.107200pt;}
.y2d_c02281{bottom:390.987200pt;}
.y2c_c02281{bottom:409.226667pt;}
.y2b_c02281{bottom:422.987067pt;}
.y2a_c02281{bottom:436.826667pt;}
.y29_c02281{bottom:450.587067pt;}
.y28_c02281{bottom:465.307067pt;}
.y27_c02281{bottom:483.707067pt;}
.y26_c02281{bottom:502.107067pt;}
.y25_c02281{bottom:518.987067pt;}
.y24_c02281{bottom:536.187067pt;}
.y23_c02281{bottom:554.587067pt;}
.y22_c02281{bottom:572.987067pt;}
.y21_c02281{bottom:589.867067pt;}
.y20_c02281{bottom:606.667067pt;}
.y1f_c02281{bottom:623.547067pt;}
.y1e_c02281{bottom:640.427067pt;}
.y1d_c02281{bottom:658.507067pt;}
.y1b_c02281{bottom:674.187067pt;}
.y19_c02281{bottom:690.507067pt;}
.y1a_c02281{bottom:691.067067pt;}
.y1c_c02281{bottom:707.867067pt;}
.y18_c02281{bottom:726.187067pt;}
.y17_c02281{bottom:739.947467pt;}
.y16_c02281{bottom:753.787067pt;}
.y15_c02281{bottom:768.507067pt;}
.y14_c02281{bottom:786.907067pt;}
.y13_c02281{bottom:805.307067pt;}
.y12_c02281{bottom:822.187067pt;}
.y11_c02281{bottom:839.387067pt;}
.y10_c02281{bottom:857.707067pt;}
.yf_c02281{bottom:876.107067pt;}
.ye_c02281{bottom:892.987067pt;}
.yd_c02281{bottom:909.867067pt;}
.yc_c02281{bottom:926.747067pt;}
.yb_c02281{bottom:943.627067pt;}
.ya_c02281{bottom:961.707067pt;}
.y9_c02281{bottom:977.627067pt;}
.y8_c02281{bottom:978.907067pt;}
.y5_c02281{bottom:994.427067pt;}
.y7_c02281{bottom:995.707067pt;}
.y6_c02281{bottom:1012.587067pt;}
.y2_c02281{bottom:1042.347067pt;}
.y1_c02281{bottom:1060.587067pt;}
.h8_c02281{height:42.632812pt;}
.h4_c02281{height:47.464531pt;}
.h3_c02281{height:52.012031pt;}
.hb_c02281{height:54.572031pt;}
.hd_c02281{height:55.531498pt;}
.ha_c02281{height:55.532031pt;}
.hc_c02281{height:55.852031pt;}
.h2_c02281{height:56.156250pt;}
.h1_c02281{height:56.843750pt;}
.h5_c02281{height:57.756250pt;}
.h7_c02281{height:57.803750pt;}
.h6_c02281{height:57.804283pt;}
.h9_c02281{height:126.283750pt;}
.h0_c02281{height:1122.666667pt;}
.w1_c02281{width:793.333333pt;}
.w0_c02281{width:793.626667pt;}
.x0_c02281{left:0.000000pt;}
.x1_c02281{left:113.440000pt;}
.x3_c02281{left:120.560000pt;}
.x14_c02281{left:127.920000pt;}
.xd_c02281{left:143.040000pt;}
.x15_c02281{left:146.720000pt;}
.x16_c02281{left:195.840000pt;}
.xe_c02281{left:222.800000pt;}
.x6_c02281{left:245.440000pt;}
.x5_c02281{left:251.360000pt;}
.x4_c02281{left:258.320000pt;}
.xf_c02281{left:265.840000pt;}
.x10_c02281{left:370.480000pt;}
.x8_c02281{left:374.960000pt;}
.x2_c02281{left:384.880000pt;}
.x7_c02281{left:413.520000pt;}
.x11_c02281{left:421.040000pt;}
.x9_c02281{left:438.160000pt;}
.x13_c02281{left:525.760000pt;}
.x12_c02281{left:527.760000pt;}
.xb_c02281{left:554.880000pt;}
.xa_c02281{left:568.720000pt;}
.xc_c02281{left:593.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b67b8efa9e5cbc98c587cd8.woff2')format("woff");}.ff1_c02282{font-family:ff1_c02282;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02282;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v3_c02282{vertical-align:-8.639400px;}
.v6_c02282{vertical-align:-3.960000px;}
.v5_c02282{vertical-align:-2.520000px;}
.v4_c02282{vertical-align:-1.440000px;}
.v0_c02282{vertical-align:0.000000px;}
.v1_c02282{vertical-align:1.080000px;}
.v7_c02282{vertical-align:2.520000px;}
.v8_c02282{vertical-align:3.960000px;}
.v2_c02282{vertical-align:32.400000px;}
.ls30_c02282{letter-spacing:-0.178200px;}
.ls2f_c02282{letter-spacing:-0.102600px;}
.ls2d_c02282{letter-spacing:-0.086400px;}
.ls36_c02282{letter-spacing:-0.086184px;}
.ls33_c02282{letter-spacing:-0.043200px;}
.ls2c_c02282{letter-spacing:-0.019152px;}
.ls2e_c02282{letter-spacing:-0.016200px;}
.ls39_c02282{letter-spacing:-0.014400px;}
.ls34_c02282{letter-spacing:-0.010800px;}
.ls38_c02282{letter-spacing:-0.009576px;}
.ls31_c02282{letter-spacing:-0.005400px;}
.ls3c_c02282{letter-spacing:-0.004788px;}
.ls2a_c02282{letter-spacing:0.000000px;}
.lsc_c02282{letter-spacing:0.005400px;}
.ls3_c02282{letter-spacing:0.006588px;}
.ls3f_c02282{letter-spacing:0.007200px;}
.ls9_c02282{letter-spacing:0.010800px;}
.lsf_c02282{letter-spacing:0.012636px;}
.ls28_c02282{letter-spacing:0.014400px;}
.ls7_c02282{letter-spacing:0.016200px;}
.ls27_c02282{letter-spacing:0.019152px;}
.ls22_c02282{letter-spacing:0.021600px;}
.ls8_c02282{letter-spacing:0.027000px;}
.lse_c02282{letter-spacing:0.028728px;}
.ls0_c02282{letter-spacing:0.028800px;}
.ls5_c02282{letter-spacing:0.032400px;}
.ls2_c02282{letter-spacing:0.032940px;}
.lsa_c02282{letter-spacing:0.037800px;}
.lsd_c02282{letter-spacing:0.043092px;}
.ls6_c02282{letter-spacing:0.043200px;}
.ls1_c02282{letter-spacing:0.046116px;}
.ls1d_c02282{letter-spacing:0.048600px;}
.ls23_c02282{letter-spacing:0.052668px;}
.ls1a_c02282{letter-spacing:0.052704px;}
.ls1c_c02282{letter-spacing:0.054000px;}
.ls1b_c02282{letter-spacing:0.070200px;}
.ls20_c02282{letter-spacing:0.071820px;}
.ls17_c02282{letter-spacing:0.076608px;}
.ls3e_c02282{letter-spacing:0.081396px;}
.ls1f_c02282{letter-spacing:0.086184px;}
.ls4_c02282{letter-spacing:0.095760px;}
.ls12_c02282{letter-spacing:0.110124px;}
.lsb_c02282{letter-spacing:0.113400px;}
.ls1e_c02282{letter-spacing:0.114912px;}
.ls21_c02282{letter-spacing:0.119700px;}
.ls25_c02282{letter-spacing:0.124488px;}
.ls26_c02282{letter-spacing:0.134064px;}
.ls24_c02282{letter-spacing:0.138852px;}
.ls32_c02282{letter-spacing:0.151200px;}
.ls2b_c02282{letter-spacing:0.153216px;}
.ls10_c02282{letter-spacing:0.158112px;}
.ls19_c02282{letter-spacing:0.162792px;}
.ls35_c02282{letter-spacing:0.167580px;}
.ls3a_c02282{letter-spacing:0.180360px;}
.ls18_c02282{letter-spacing:0.181944px;}
.ls14_c02282{letter-spacing:0.205884px;}
.ls29_c02282{letter-spacing:112.320000px;}
.ls11_c02282{letter-spacing:112.680000px;}
.ls40_c02282{letter-spacing:143.818200px;}
.ls37_c02282{letter-spacing:144.180000px;}
.ls3d_c02282{letter-spacing:152.820000px;}
.ls3b_c02282{letter-spacing:156.421800px;}
.ls16_c02282{letter-spacing:156.778200px;}
.ls15_c02282{letter-spacing:199.260000px;}
.ls13_c02282{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02282{word-spacing:-16.628112px;}
.ws0_c02282{word-spacing:-16.476588px;}
.ws1b_c02282{word-spacing:-0.296856px;}
.ws18_c02282{word-spacing:-0.272916px;}
.ws1e_c02282{word-spacing:-0.253764px;}
.ws2c_c02282{word-spacing:-0.229824px;}
.ws2e_c02282{word-spacing:-0.225036px;}
.ws2d_c02282{word-spacing:-0.215460px;}
.ws27_c02282{word-spacing:-0.210672px;}
.ws23_c02282{word-spacing:-0.205884px;}
.wse_c02282{word-spacing:-0.189000px;}
.ws32_c02282{word-spacing:-0.187200px;}
.ws8_c02282{word-spacing:-0.186732px;}
.ws24_c02282{word-spacing:-0.177156px;}
.ws2f_c02282{word-spacing:-0.172368px;}
.ws26_c02282{word-spacing:-0.162792px;}
.ws25_c02282{word-spacing:-0.134064px;}
.ws2a_c02282{word-spacing:-0.119700px;}
.ws30_c02282{word-spacing:-0.110124px;}
.ws17_c02282{word-spacing:-0.101088px;}
.ws5_c02282{word-spacing:-0.086400px;}
.ws4_c02282{word-spacing:0.000000px;}
.ws29_c02282{word-spacing:0.014400px;}
.ws1f_c02282{word-spacing:0.039528px;}
.ws31_c02282{word-spacing:0.043200px;}
.ws6_c02282{word-spacing:0.046116px;}
.ws7_c02282{word-spacing:0.059292px;}
.ws28_c02282{word-spacing:0.064800px;}
.ws20_c02282{word-spacing:0.108000px;}
.ws21_c02282{word-spacing:0.124200px;}
.ws22_c02282{word-spacing:0.129600px;}
.ws9_c02282{word-spacing:0.145800px;}
.wsb_c02282{word-spacing:0.151200px;}
.wsa_c02282{word-spacing:0.162000px;}
.ws16_c02282{word-spacing:0.172800px;}
.ws15_c02282{word-spacing:0.178200px;}
.wsd_c02282{word-spacing:0.194400px;}
.wsc_c02282{word-spacing:0.264600px;}
.wsf_c02282{word-spacing:0.280800px;}
.ws13_c02282{word-spacing:1.868400px;}
.ws12_c02282{word-spacing:1.965600px;}
.ws14_c02282{word-spacing:1.987200px;}
.ws11_c02282{word-spacing:4.482000px;}
.ws10_c02282{word-spacing:4.487400px;}
.ws3_c02282{word-spacing:58.969440px;}
.ws19_c02282{word-spacing:78.262200px;}
.ws2_c02282{word-spacing:100.729440px;}
.ws1a_c02282{word-spacing:129.762000px;}
.ws1d_c02282{word-spacing:156.378600px;}
.ws2b_c02282{word-spacing:156.735000px;}
.ws1c_c02282{word-spacing:199.578600px;}
._1d_c02282{margin-left:-54.669780px;}
._d_c02282{margin-left:-1.236600px;}
._9_c02282{width:1.026000px;}
._25_c02282{width:42.102072px;}
._23_c02282{width:43.117128px;}
._1a_c02282{width:50.937552px;}
._2f_c02282{width:51.964596px;}
._20_c02282{width:61.873020px;}
._16_c02282{width:72.604440px;}
._22_c02282{width:75.420000px;}
._17_c02282{width:77.310180px;}
._31_c02282{width:83.266920px;}
._f_c02282{width:84.474000px;}
._34_c02282{width:85.777200px;}
._18_c02282{width:87.278400px;}
._e_c02282{width:88.581600px;}
._1c_c02282{width:90.075600px;}
._1e_c02282{width:91.734768px;}
._32_c02282{width:93.360168px;}
._30_c02282{width:95.556528px;}
._19_c02282{width:100.598400px;}
._35_c02282{width:101.954520px;}
._1b_c02282{width:104.479380px;}
._11_c02282{width:106.740000px;}
._33_c02282{width:114.887016px;}
._12_c02282{width:118.378944px;}
._2e_c02282{width:119.883708px;}
._10_c02282{width:122.220000px;}
._2b_c02282{width:123.378552px;}
._15_c02282{width:126.707688px;}
._24_c02282{width:128.226384px;}
._21_c02282{width:129.448620px;}
._13_c02282{width:144.096120px;}
._2d_c02282{width:148.307688px;}
._2c_c02282{width:152.155404px;}
._14_c02282{width:153.235404px;}
._1f_c02282{width:182.604168px;}
._c_c02282{width:203.036400px;}
._3_c02282{width:216.180000px;}
._1_c02282{width:283.500000px;}
._6_c02282{width:303.170400px;}
._4_c02282{width:310.104000px;}
._2_c02282{width:324.775800px;}
._27_c02282{width:347.693400px;}
._29_c02282{width:353.833200px;}
._5_c02282{width:382.210200px;}
._28_c02282{width:419.929200px;}
._26_c02282{width:431.488440px;}
._a_c02282{width:451.783800px;}
._8_c02282{width:482.234400px;}
._7_c02282{width:483.924600px;}
._0_c02282{width:582.576192px;}
._2a_c02282{width:605.295000px;}
._b_c02282{width:799.695000px;}
.fc0_c02282{color:rgb(0,0,0);}
.fs7_c02282{font-size:11.880000px;}
.fs4_c02282{font-size:29.880000px;}
.fs5_c02282{font-size:42.120000px;}
.fs2_c02282{font-size:47.880000px;}
.fs3_c02282{font-size:54.000000px;}
.fs6_c02282{font-size:60.120000px;}
.fs1_c02282{font-size:65.880000px;}
.fs0_c02282{font-size:72.000000px;}
.y0_c02282{bottom:0.000000px;}
.y4_c02282{bottom:57.360450px;}
.y3_c02282{bottom:78.060450px;}
.y52_c02282{bottom:127.290600px;}
.y51_c02282{bottom:133.140450px;}
.y50_c02282{bottom:133.500000px;}
.y4f_c02282{bottom:152.130450px;}
.y4e_c02282{bottom:152.490450px;}
.y4d_c02282{bottom:173.190450px;}
.y4c_c02282{bottom:191.820450px;}
.y4b_c02282{bottom:192.180450px;}
.y4a_c02282{bottom:213.510450px;}
.y49_c02282{bottom:231.870600px;}
.y48_c02282{bottom:249.240450px;}
.y47_c02282{bottom:269.940450px;}
.y46_c02282{bottom:278.760450px;}
.y45_c02282{bottom:279.120000px;}
.y44_c02282{bottom:297.750450px;}
.y43_c02282{bottom:298.110000px;}
.y42_c02282{bottom:316.740450px;}
.y41_c02282{bottom:317.100000px;}
.y40_c02282{bottom:335.730450px;}
.y3f_c02282{bottom:336.090000px;}
.y3e_c02282{bottom:354.630450px;}
.y3d_c02282{bottom:355.080450px;}
.y3c_c02282{bottom:373.980450px;}
.y3b_c02282{bottom:392.610600px;}
.y3a_c02282{bottom:392.970900px;}
.y39_c02282{bottom:413.310450px;}
.y38_c02282{bottom:413.670450px;}
.y37_c02282{bottom:434.640450px;}
.y36_c02282{bottom:453.360600px;}
.y35_c02282{bottom:470.730450px;}
.y34_c02282{bottom:490.890600px;}
.y33_c02282{bottom:506.371050px;}
.y32_c02282{bottom:521.940600px;}
.y31_c02282{bottom:537.330099px;}
.y30_c02282{bottom:551.100387px;}
.y2f_c02282{bottom:564.960450px;}
.y2e_c02282{bottom:581.070450px;}
.y2d_c02282{bottom:596.640450px;}
.y2c_c02282{bottom:612.120450px;}
.y2b_c02282{bottom:629.040450px;}
.y2a_c02282{bottom:644.610450px;}
.y27_c02282{bottom:661.980450px;}
.y29_c02282{bottom:662.610450px;}
.y28_c02282{bottom:680.070450px;}
.y26_c02282{bottom:699.330450px;}
.y25_c02282{bottom:717.600000px;}
.y24_c02282{bottom:733.080450px;}
.y23_c02282{bottom:748.650450px;}
.y22_c02282{bottom:749.010000px;}
.y21_c02282{bottom:767.550450px;}
.y20_c02282{bottom:768.000450px;}
.y1f_c02282{bottom:786.540600px;}
.y1e_c02282{bottom:786.900450px;}
.y1d_c02282{bottom:805.890450px;}
.y1c_c02282{bottom:824.520450px;}
.y1b_c02282{bottom:824.880450px;}
.y19_c02282{bottom:845.580450px;}
.y18_c02282{bottom:846.210450px;}
.y1a_c02282{bottom:846.300450px;}
.y17_c02282{bottom:864.570450px;}
.y16_c02282{bottom:881.940450px;}
.y15_c02282{bottom:900.750450px;}
.y14_c02282{bottom:910.921050px;}
.y13_c02282{bottom:926.490600px;}
.y12_c02282{bottom:941.971050px;}
.y11_c02282{bottom:957.540600px;}
.y10_c02282{bottom:979.950450px;}
.yf_c02282{bottom:995.520450px;}
.ye_c02282{bottom:1011.000450px;}
.yd_c02282{bottom:1026.570450px;}
.yc_c02282{bottom:1042.050450px;}
.yb_c02282{bottom:1057.620450px;}
.ya_c02282{bottom:1073.100450px;}
.y9_c02282{bottom:1088.760450px;}
.y6_c02282{bottom:1106.130450px;}
.y8_c02282{bottom:1106.760450px;}
.y7_c02282{bottom:1124.130450px;}
.y5_c02282{bottom:1141.500450px;}
.y2_c02282{bottom:1172.640450px;}
.y1_c02282{bottom:1193.160450px;}
.h15_c02282{height:10.551621px;}
.hc_c02282{height:26.538926px;}
.h5_c02282{height:42.011895px;}
.h4_c02282{height:42.526230px;}
.h6_c02282{height:47.381836px;}
.h9_c02282{height:47.961914px;}
.h7_c02282{height:48.101836px;}
.h8_c02282{height:48.461836px;}
.hb_c02282{height:48.462436px;}
.hd_c02282{height:57.805840px;}
.h3_c02282{height:58.513535px;}
.h12_c02282{height:60.314135px;}
.h16_c02282{height:61.033535px;}
.h13_c02282{height:61.393535px;}
.hf_c02282{height:61.394135px;}
.he_c02282{height:62.473535px;}
.h17_c02282{height:62.474135px;}
.h10_c02282{height:62.832935px;}
.h11_c02282{height:62.833535px;}
.h14_c02282{height:62.834135px;}
.h2_c02282{height:63.175781px;}
.h1_c02282{height:63.949219px;}
.ha_c02282{height:79.781836px;}
.h0_c02282{height:1263.000000px;}
.w1_c02282{width:892.500000px;}
.w0_c02282{width:892.830000px;}
.x0_c02282{left:0.000000px;}
.x1_c02282{left:127.620000px;}
.x3_c02282{left:134.550000px;}
.x6_c02282{left:135.630000px;}
.xf_c02282{left:142.380000px;}
.x7_c02282{left:143.910000px;}
.x10_c02282{left:162.000000px;}
.xa_c02282{left:165.060000px;}
.xb_c02282{left:220.680000px;}
.xd_c02282{left:332.100000px;}
.xe_c02282{left:354.780000px;}
.x4_c02282{left:380.700000px;}
.x5_c02282{left:403.380000px;}
.x2_c02282{left:432.990000px;}
.x8_c02282{left:531.809550px;}
.xc_c02282{left:555.390000px;}
.x9_c02282{left:717.930000px;}
@media print{
.v3_c02282{vertical-align:-7.679467pt;}
.v6_c02282{vertical-align:-3.520000pt;}
.v5_c02282{vertical-align:-2.240000pt;}
.v4_c02282{vertical-align:-1.280000pt;}
.v0_c02282{vertical-align:0.000000pt;}
.v1_c02282{vertical-align:0.960000pt;}
.v7_c02282{vertical-align:2.240000pt;}
.v8_c02282{vertical-align:3.520000pt;}
.v2_c02282{vertical-align:28.800000pt;}
.ls30_c02282{letter-spacing:-0.158400pt;}
.ls2f_c02282{letter-spacing:-0.091200pt;}
.ls2d_c02282{letter-spacing:-0.076800pt;}
.ls36_c02282{letter-spacing:-0.076608pt;}
.ls33_c02282{letter-spacing:-0.038400pt;}
.ls2c_c02282{letter-spacing:-0.017024pt;}
.ls2e_c02282{letter-spacing:-0.014400pt;}
.ls39_c02282{letter-spacing:-0.012800pt;}
.ls34_c02282{letter-spacing:-0.009600pt;}
.ls38_c02282{letter-spacing:-0.008512pt;}
.ls31_c02282{letter-spacing:-0.004800pt;}
.ls3c_c02282{letter-spacing:-0.004256pt;}
.ls2a_c02282{letter-spacing:0.000000pt;}
.lsc_c02282{letter-spacing:0.004800pt;}
.ls3_c02282{letter-spacing:0.005856pt;}
.ls3f_c02282{letter-spacing:0.006400pt;}
.ls9_c02282{letter-spacing:0.009600pt;}
.lsf_c02282{letter-spacing:0.011232pt;}
.ls28_c02282{letter-spacing:0.012800pt;}
.ls7_c02282{letter-spacing:0.014400pt;}
.ls27_c02282{letter-spacing:0.017024pt;}
.ls22_c02282{letter-spacing:0.019200pt;}
.ls8_c02282{letter-spacing:0.024000pt;}
.lse_c02282{letter-spacing:0.025536pt;}
.ls0_c02282{letter-spacing:0.025600pt;}
.ls5_c02282{letter-spacing:0.028800pt;}
.ls2_c02282{letter-spacing:0.029280pt;}
.lsa_c02282{letter-spacing:0.033600pt;}
.lsd_c02282{letter-spacing:0.038304pt;}
.ls6_c02282{letter-spacing:0.038400pt;}
.ls1_c02282{letter-spacing:0.040992pt;}
.ls1d_c02282{letter-spacing:0.043200pt;}
.ls23_c02282{letter-spacing:0.046816pt;}
.ls1a_c02282{letter-spacing:0.046848pt;}
.ls1c_c02282{letter-spacing:0.048000pt;}
.ls1b_c02282{letter-spacing:0.062400pt;}
.ls20_c02282{letter-spacing:0.063840pt;}
.ls17_c02282{letter-spacing:0.068096pt;}
.ls3e_c02282{letter-spacing:0.072352pt;}
.ls1f_c02282{letter-spacing:0.076608pt;}
.ls4_c02282{letter-spacing:0.085120pt;}
.ls12_c02282{letter-spacing:0.097888pt;}
.lsb_c02282{letter-spacing:0.100800pt;}
.ls1e_c02282{letter-spacing:0.102144pt;}
.ls21_c02282{letter-spacing:0.106400pt;}
.ls25_c02282{letter-spacing:0.110656pt;}
.ls26_c02282{letter-spacing:0.119168pt;}
.ls24_c02282{letter-spacing:0.123424pt;}
.ls32_c02282{letter-spacing:0.134400pt;}
.ls2b_c02282{letter-spacing:0.136192pt;}
.ls10_c02282{letter-spacing:0.140544pt;}
.ls19_c02282{letter-spacing:0.144704pt;}
.ls35_c02282{letter-spacing:0.148960pt;}
.ls3a_c02282{letter-spacing:0.160320pt;}
.ls18_c02282{letter-spacing:0.161728pt;}
.ls14_c02282{letter-spacing:0.183008pt;}
.ls29_c02282{letter-spacing:99.840000pt;}
.ls11_c02282{letter-spacing:100.160000pt;}
.ls40_c02282{letter-spacing:127.838400pt;}
.ls37_c02282{letter-spacing:128.160000pt;}
.ls3d_c02282{letter-spacing:135.840000pt;}
.ls3b_c02282{letter-spacing:139.041600pt;}
.ls16_c02282{letter-spacing:139.358400pt;}
.ls15_c02282{letter-spacing:177.120000pt;}
.ls13_c02282{letter-spacing:178.480000pt;}
.ws1_c02282{word-spacing:-14.780544pt;}
.ws0_c02282{word-spacing:-14.645856pt;}
.ws1b_c02282{word-spacing:-0.263872pt;}
.ws18_c02282{word-spacing:-0.242592pt;}
.ws1e_c02282{word-spacing:-0.225568pt;}
.ws2c_c02282{word-spacing:-0.204288pt;}
.ws2e_c02282{word-spacing:-0.200032pt;}
.ws2d_c02282{word-spacing:-0.191520pt;}
.ws27_c02282{word-spacing:-0.187264pt;}
.ws23_c02282{word-spacing:-0.183008pt;}
.wse_c02282{word-spacing:-0.168000pt;}
.ws32_c02282{word-spacing:-0.166400pt;}
.ws8_c02282{word-spacing:-0.165984pt;}
.ws24_c02282{word-spacing:-0.157472pt;}
.ws2f_c02282{word-spacing:-0.153216pt;}
.ws26_c02282{word-spacing:-0.144704pt;}
.ws25_c02282{word-spacing:-0.119168pt;}
.ws2a_c02282{word-spacing:-0.106400pt;}
.ws30_c02282{word-spacing:-0.097888pt;}
.ws17_c02282{word-spacing:-0.089856pt;}
.ws5_c02282{word-spacing:-0.076800pt;}
.ws4_c02282{word-spacing:0.000000pt;}
.ws29_c02282{word-spacing:0.012800pt;}
.ws1f_c02282{word-spacing:0.035136pt;}
.ws31_c02282{word-spacing:0.038400pt;}
.ws6_c02282{word-spacing:0.040992pt;}
.ws7_c02282{word-spacing:0.052704pt;}
.ws28_c02282{word-spacing:0.057600pt;}
.ws20_c02282{word-spacing:0.096000pt;}
.ws21_c02282{word-spacing:0.110400pt;}
.ws22_c02282{word-spacing:0.115200pt;}
.ws9_c02282{word-spacing:0.129600pt;}
.wsb_c02282{word-spacing:0.134400pt;}
.wsa_c02282{word-spacing:0.144000pt;}
.ws16_c02282{word-spacing:0.153600pt;}
.ws15_c02282{word-spacing:0.158400pt;}
.wsd_c02282{word-spacing:0.172800pt;}
.wsc_c02282{word-spacing:0.235200pt;}
.wsf_c02282{word-spacing:0.249600pt;}
.ws13_c02282{word-spacing:1.660800pt;}
.ws12_c02282{word-spacing:1.747200pt;}
.ws14_c02282{word-spacing:1.766400pt;}
.ws11_c02282{word-spacing:3.984000pt;}
.ws10_c02282{word-spacing:3.988800pt;}
.ws3_c02282{word-spacing:52.417280pt;}
.ws19_c02282{word-spacing:69.566400pt;}
.ws2_c02282{word-spacing:89.537280pt;}
.ws1a_c02282{word-spacing:115.344000pt;}
.ws1d_c02282{word-spacing:139.003200pt;}
.ws2b_c02282{word-spacing:139.320000pt;}
.ws1c_c02282{word-spacing:177.403200pt;}
._1d_c02282{margin-left:-48.595360pt;}
._d_c02282{margin-left:-1.099200pt;}
._9_c02282{width:0.912000pt;}
._25_c02282{width:37.424064pt;}
._23_c02282{width:38.326336pt;}
._1a_c02282{width:45.277824pt;}
._2f_c02282{width:46.190752pt;}
._20_c02282{width:54.998240pt;}
._16_c02282{width:64.537280pt;}
._22_c02282{width:67.040000pt;}
._17_c02282{width:68.720160pt;}
._31_c02282{width:74.015040pt;}
._f_c02282{width:75.088000pt;}
._34_c02282{width:76.246400pt;}
._18_c02282{width:77.580800pt;}
._e_c02282{width:78.739200pt;}
._1c_c02282{width:80.067200pt;}
._1e_c02282{width:81.542016pt;}
._32_c02282{width:82.986816pt;}
._30_c02282{width:84.939136pt;}
._19_c02282{width:89.420800pt;}
._35_c02282{width:90.626240pt;}
._1b_c02282{width:92.870560pt;}
._11_c02282{width:94.880000pt;}
._33_c02282{width:102.121792pt;}
._12_c02282{width:105.225728pt;}
._2e_c02282{width:106.563296pt;}
._10_c02282{width:108.640000pt;}
._2b_c02282{width:109.669824pt;}
._15_c02282{width:112.629056pt;}
._24_c02282{width:113.979008pt;}
._21_c02282{width:115.065440pt;}
._13_c02282{width:128.085440pt;}
._2d_c02282{width:131.829056pt;}
._2c_c02282{width:135.249248pt;}
._14_c02282{width:136.209248pt;}
._1f_c02282{width:162.314816pt;}
._c_c02282{width:180.476800pt;}
._3_c02282{width:192.160000pt;}
._1_c02282{width:252.000000pt;}
._6_c02282{width:269.484800pt;}
._4_c02282{width:275.648000pt;}
._2_c02282{width:288.689600pt;}
._27_c02282{width:309.060800pt;}
._29_c02282{width:314.518400pt;}
._5_c02282{width:339.742400pt;}
._28_c02282{width:373.270400pt;}
._26_c02282{width:383.545280pt;}
._a_c02282{width:401.585600pt;}
._8_c02282{width:428.652800pt;}
._7_c02282{width:430.155200pt;}
._0_c02282{width:517.845504pt;}
._2a_c02282{width:538.040000pt;}
._b_c02282{width:710.840000pt;}
.fs7_c02282{font-size:10.560000pt;}
.fs4_c02282{font-size:26.560000pt;}
.fs5_c02282{font-size:37.440000pt;}
.fs2_c02282{font-size:42.560000pt;}
.fs3_c02282{font-size:48.000000pt;}
.fs6_c02282{font-size:53.440000pt;}
.fs1_c02282{font-size:58.560000pt;}
.fs0_c02282{font-size:64.000000pt;}
.y0_c02282{bottom:0.000000pt;}
.y4_c02282{bottom:50.987067pt;}
.y3_c02282{bottom:69.387067pt;}
.y52_c02282{bottom:113.147200pt;}
.y51_c02282{bottom:118.347067pt;}
.y50_c02282{bottom:118.666667pt;}
.y4f_c02282{bottom:135.227067pt;}
.y4e_c02282{bottom:135.547067pt;}
.y4d_c02282{bottom:153.947067pt;}
.y4c_c02282{bottom:170.507067pt;}
.y4b_c02282{bottom:170.827067pt;}
.y4a_c02282{bottom:189.787067pt;}
.y49_c02282{bottom:206.107200pt;}
.y48_c02282{bottom:221.547067pt;}
.y47_c02282{bottom:239.947067pt;}
.y46_c02282{bottom:247.787067pt;}
.y45_c02282{bottom:248.106667pt;}
.y44_c02282{bottom:264.667067pt;}
.y43_c02282{bottom:264.986667pt;}
.y42_c02282{bottom:281.547067pt;}
.y41_c02282{bottom:281.866667pt;}
.y40_c02282{bottom:298.427067pt;}
.y3f_c02282{bottom:298.746667pt;}
.y3e_c02282{bottom:315.227067pt;}
.y3d_c02282{bottom:315.627067pt;}
.y3c_c02282{bottom:332.427067pt;}
.y3b_c02282{bottom:348.987200pt;}
.y3a_c02282{bottom:349.307467pt;}
.y39_c02282{bottom:367.387067pt;}
.y38_c02282{bottom:367.707067pt;}
.y37_c02282{bottom:386.347067pt;}
.y36_c02282{bottom:402.987200pt;}
.y35_c02282{bottom:418.427067pt;}
.y34_c02282{bottom:436.347200pt;}
.y33_c02282{bottom:450.107600pt;}
.y32_c02282{bottom:463.947200pt;}
.y31_c02282{bottom:477.626755pt;}
.y30_c02282{bottom:489.867011pt;}
.y2f_c02282{bottom:502.187067pt;}
.y2e_c02282{bottom:516.507067pt;}
.y2d_c02282{bottom:530.347067pt;}
.y2c_c02282{bottom:544.107067pt;}
.y2b_c02282{bottom:559.147067pt;}
.y2a_c02282{bottom:572.987067pt;}
.y27_c02282{bottom:588.427067pt;}
.y29_c02282{bottom:588.987067pt;}
.y28_c02282{bottom:604.507067pt;}
.y26_c02282{bottom:621.627067pt;}
.y25_c02282{bottom:637.866667pt;}
.y24_c02282{bottom:651.627067pt;}
.y23_c02282{bottom:665.467067pt;}
.y22_c02282{bottom:665.786667pt;}
.y21_c02282{bottom:682.267067pt;}
.y20_c02282{bottom:682.667067pt;}
.y1f_c02282{bottom:699.147200pt;}
.y1e_c02282{bottom:699.467067pt;}
.y1d_c02282{bottom:716.347067pt;}
.y1c_c02282{bottom:732.907067pt;}
.y1b_c02282{bottom:733.227067pt;}
.y19_c02282{bottom:751.627067pt;}
.y18_c02282{bottom:752.187067pt;}
.y1a_c02282{bottom:752.267067pt;}
.y17_c02282{bottom:768.507067pt;}
.y16_c02282{bottom:783.947067pt;}
.y15_c02282{bottom:800.667067pt;}
.y14_c02282{bottom:809.707600pt;}
.y13_c02282{bottom:823.547200pt;}
.y12_c02282{bottom:837.307600pt;}
.y11_c02282{bottom:851.147200pt;}
.y10_c02282{bottom:871.067067pt;}
.yf_c02282{bottom:884.907067pt;}
.ye_c02282{bottom:898.667067pt;}
.yd_c02282{bottom:912.507067pt;}
.yc_c02282{bottom:926.267067pt;}
.yb_c02282{bottom:940.107067pt;}
.ya_c02282{bottom:953.867067pt;}
.y9_c02282{bottom:967.787067pt;}
.y6_c02282{bottom:983.227067pt;}
.y8_c02282{bottom:983.787067pt;}
.y7_c02282{bottom:999.227067pt;}
.y5_c02282{bottom:1014.667067pt;}
.y2_c02282{bottom:1042.347067pt;}
.y1_c02282{bottom:1060.587067pt;}
.h15_c02282{height:9.379219pt;}
.hc_c02282{height:23.590156pt;}
.h5_c02282{height:37.343906pt;}
.h4_c02282{height:37.801094pt;}
.h6_c02282{height:42.117188pt;}
.h9_c02282{height:42.632812pt;}
.h7_c02282{height:42.757188pt;}
.h8_c02282{height:43.077188pt;}
.hb_c02282{height:43.077721pt;}
.hd_c02282{height:51.382969pt;}
.h3_c02282{height:52.012031pt;}
.h12_c02282{height:53.612565pt;}
.h16_c02282{height:54.252031pt;}
.h13_c02282{height:54.572031pt;}
.hf_c02282{height:54.572565pt;}
.he_c02282{height:55.532031pt;}
.h17_c02282{height:55.532565pt;}
.h10_c02282{height:55.851498pt;}
.h11_c02282{height:55.852031pt;}
.h14_c02282{height:55.852565pt;}
.h2_c02282{height:56.156250pt;}
.h1_c02282{height:56.843750pt;}
.ha_c02282{height:70.917188pt;}
.h0_c02282{height:1122.666667pt;}
.w1_c02282{width:793.333333pt;}
.w0_c02282{width:793.626667pt;}
.x0_c02282{left:0.000000pt;}
.x1_c02282{left:113.440000pt;}
.x3_c02282{left:119.600000pt;}
.x6_c02282{left:120.560000pt;}
.xf_c02282{left:126.560000pt;}
.x7_c02282{left:127.920000pt;}
.x10_c02282{left:144.000000pt;}
.xa_c02282{left:146.720000pt;}
.xb_c02282{left:196.160000pt;}
.xd_c02282{left:295.200000pt;}
.xe_c02282{left:315.360000pt;}
.x4_c02282{left:338.400000pt;}
.x5_c02282{left:358.560000pt;}
.x2_c02282{left:384.880000pt;}
.x8_c02282{left:472.719600pt;}
.xc_c02282{left:493.680000pt;}
.x9_c02282{left:638.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_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_d91cbde95ac0847c55eeeea4.woff2')format("woff");}.ff1_c02283{font-family:ff1_c02283;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02283;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v3_c02283{vertical-align:-4.320000px;}
.v2_c02283{vertical-align:-2.880000px;}
.v1_c02283{vertical-align:-1.440000px;}
.v0_c02283{vertical-align:0.000000px;}
.v6_c02283{vertical-align:1.440000px;}
.v4_c02283{vertical-align:2.520000px;}
.v5_c02283{vertical-align:4.320000px;}
.ls2e_c02283{letter-spacing:-0.086184px;}
.ls2a_c02283{letter-spacing:-0.043200px;}
.ls2c_c02283{letter-spacing:-0.019152px;}
.ls2b_c02283{letter-spacing:-0.010800px;}
.ls30_c02283{letter-spacing:-0.009576px;}
.ls33_c02283{letter-spacing:-0.004788px;}
.ls28_c02283{letter-spacing:0.000000px;}
.ls12_c02283{letter-spacing:0.005400px;}
.lsf_c02283{letter-spacing:0.006588px;}
.ls1f_c02283{letter-spacing:0.007200px;}
.ls1_c02283{letter-spacing:0.010800px;}
.ls4_c02283{letter-spacing:0.012636px;}
.ls18_c02283{letter-spacing:0.014400px;}
.ls23_c02283{letter-spacing:0.019152px;}
.ls3_c02283{letter-spacing:0.028728px;}
.ls0_c02283{letter-spacing:0.028800px;}
.ls5_c02283{letter-spacing:0.032400px;}
.lsa_c02283{letter-spacing:0.037800px;}
.ls2_c02283{letter-spacing:0.043092px;}
.ls9_c02283{letter-spacing:0.043200px;}
.ls8_c02283{letter-spacing:0.052668px;}
.ls10_c02283{letter-spacing:0.057456px;}
.ls15_c02283{letter-spacing:0.067032px;}
.lse_c02283{letter-spacing:0.072468px;}
.ls16_c02283{letter-spacing:0.076608px;}
.ls26_c02283{letter-spacing:0.081396px;}
.ls14_c02283{letter-spacing:0.086184px;}
.ls11_c02283{letter-spacing:0.095760px;}
.ls1a_c02283{letter-spacing:0.110124px;}
.lsc_c02283{letter-spacing:0.114912px;}
.ls17_c02283{letter-spacing:0.119700px;}
.ls21_c02283{letter-spacing:0.124488px;}
.ls22_c02283{letter-spacing:0.134064px;}
.lsd_c02283{letter-spacing:0.138852px;}
.ls29_c02283{letter-spacing:0.151200px;}
.ls6_c02283{letter-spacing:0.158112px;}
.ls1e_c02283{letter-spacing:0.162792px;}
.ls2d_c02283{letter-spacing:0.167580px;}
.ls1d_c02283{letter-spacing:0.181944px;}
.ls1c_c02283{letter-spacing:0.205884px;}
.ls19_c02283{letter-spacing:112.320000px;}
.ls24_c02283{letter-spacing:114.480000px;}
.ls7_c02283{letter-spacing:115.560000px;}
.ls20_c02283{letter-spacing:116.640000px;}
.ls31_c02283{letter-spacing:143.818200px;}
.ls2f_c02283{letter-spacing:147.058200px;}
.ls32_c02283{letter-spacing:148.138200px;}
.ls35_c02283{letter-spacing:155.247876px;}
.ls27_c02283{letter-spacing:156.060000px;}
.ls34_c02283{letter-spacing:156.421800px;}
.ls36_c02283{letter-spacing:156.778200px;}
.ls1b_c02283{letter-spacing:200.070000px;}
.ls25_c02283{letter-spacing:201.870000px;}
.lsb_c02283{letter-spacing:203.670000px;}
.ls13_c02283{letter-spacing:216.180000px;}
.sc__c02283{text-shadow:none;}
.sc0_c02283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02283{-webkit-text-stroke:0px transparent;}
.sc0_c02283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02283{word-spacing:-16.628112px;}
.ws2_c02283{word-spacing:-16.476588px;}
.ws18_c02283{word-spacing:-0.296856px;}
.ws17_c02283{word-spacing:-0.272916px;}
.ws1a_c02283{word-spacing:-0.253764px;}
.wsa_c02283{word-spacing:-0.229824px;}
.ws1e_c02283{word-spacing:-0.225036px;}
.ws1d_c02283{word-spacing:-0.215460px;}
.ws15_c02283{word-spacing:-0.210672px;}
.ws8_c02283{word-spacing:-0.205884px;}
.wsc_c02283{word-spacing:-0.186732px;}
.ws1f_c02283{word-spacing:-0.172368px;}
.ws7_c02283{word-spacing:-0.119700px;}
.ws20_c02283{word-spacing:-0.110124px;}
.ws6_c02283{word-spacing:-0.101088px;}
.ws21_c02283{word-spacing:-0.100800px;}
.ws1b_c02283{word-spacing:-0.093600px;}
.ws5_c02283{word-spacing:-0.086400px;}
.ws22_c02283{word-spacing:-0.081396px;}
.ws16_c02283{word-spacing:-0.014400px;}
.ws1c_c02283{word-spacing:-0.007200px;}
.ws4_c02283{word-spacing:0.000000px;}
.wsb_c02283{word-spacing:0.019764px;}
.wsd_c02283{word-spacing:0.140400px;}
.wse_c02283{word-spacing:0.145800px;}
.wsf_c02283{word-spacing:0.172800px;}
.ws12_c02283{word-spacing:1.235304px;}
.ws14_c02283{word-spacing:1.273608px;}
.ws13_c02283{word-spacing:1.307124px;}
.ws10_c02283{word-spacing:5.941908px;}
.ws11_c02283{word-spacing:5.961060px;}
.ws3_c02283{word-spacing:58.969440px;}
.ws1_c02283{word-spacing:61.129440px;}
.ws9_c02283{word-spacing:158.895000px;}
.ws19_c02283{word-spacing:240.975000px;}
._25_c02283{margin-left:-84.645000px;}
._26_c02283{margin-left:-41.040000px;}
._15_c02283{margin-left:-1.278072px;}
._36_c02283{width:1.204848px;}
._14_c02283{width:42.361200px;}
._12_c02283{width:43.875504px;}
._b_c02283{width:50.937552px;}
._37_c02283{width:52.048476px;}
._22_c02283{width:62.369208px;}
._e_c02283{width:64.573200px;}
._32_c02283{width:66.209112px;}
._20_c02283{width:72.964440px;}
._7_c02283{width:75.124440px;}
._2b_c02283{width:76.875732px;}
._11_c02283{width:77.940000px;}
._8_c02283{width:79.830180px;}
._24_c02283{width:82.864836px;}
._13_c02283{width:83.985300px;}
._c_c02283{width:86.579748px;}
._1_c02283{width:87.714000px;}
._9_c02283{width:89.798400px;}
._0_c02283{width:91.101600px;}
._2e_c02283{width:93.000168px;}
._34_c02283{width:94.908492px;}
._2c_c02283{width:96.067260px;}
._21_c02283{width:100.307232px;}
._a_c02283{width:103.118400px;}
._2a_c02283{width:105.701868px;}
._f_c02283{width:107.424000px;}
._3_c02283{width:109.260000px;}
._38_c02283{width:111.360168px;}
._2f_c02283{width:114.527016px;}
._1e_c02283{width:117.927900px;}
._31_c02283{width:119.231928px;}
._4_c02283{width:120.538944px;}
._30_c02283{width:121.761432px;}
._d_c02283{width:123.624000px;}
._2_c02283{width:125.820000px;}
._29_c02283{width:127.866384px;}
._23_c02283{width:128.979648px;}
._10_c02283{width:131.544000px;}
._39_c02283{width:132.887016px;}
._27_c02283{width:143.820000px;}
._2d_c02283{width:147.139164px;}
._1f_c02283{width:148.867524px;}
._6_c02283{width:151.547688px;}
._5_c02283{width:156.031524px;}
._28_c02283{width:182.073456px;}
._1c_c02283{width:193.190400px;}
._33_c02283{width:200.723364px;}
._19_c02283{width:216.180000px;}
._35_c02283{width:241.326576px;}
._17_c02283{width:283.500000px;}
._1a_c02283{width:310.104000px;}
._1b_c02283{width:316.035000px;}
._18_c02283{width:327.969000px;}
._16_c02283{width:623.545848px;}
._1d_c02283{width:846.855000px;}
.fc0_c02283{color:rgb(0,0,0);}
.fs6_c02283{font-size:11.880000px;}
.fs5_c02283{font-size:29.880000px;}
.fs3_c02283{font-size:42.120000px;}
.fs2_c02283{font-size:47.880000px;}
.fs1_c02283{font-size:54.000000px;}
.fs7_c02283{font-size:60.120000px;}
.fs4_c02283{font-size:65.880000px;}
.fs0_c02283{font-size:72.000000px;}
.y0_c02283{bottom:0.000000px;}
.y4_c02283{bottom:57.360450px;}
.y3_c02283{bottom:78.060450px;}
.y5c_c02283{bottom:113.160450px;}
.y5b_c02283{bottom:131.520450px;}
.y5a_c02283{bottom:131.880900px;}
.y59_c02283{bottom:152.220450px;}
.y58_c02283{bottom:152.580900px;}
.y57_c02283{bottom:172.920450px;}
.y56_c02283{bottom:173.280900px;}
.y55_c02283{bottom:193.620600px;}
.y54_c02283{bottom:193.981050px;}
.y53_c02283{bottom:214.320450px;}
.y52_c02283{bottom:214.680450px;}
.y51_c02283{bottom:235.380450px;}
.y50_c02283{bottom:253.920450px;}
.y4f_c02283{bottom:254.370450px;}
.y4e_c02283{bottom:275.070450px;}
.y4d_c02283{bottom:293.610450px;}
.y4c_c02283{bottom:293.970900px;}
.y4b_c02283{bottom:314.310450px;}
.y4a_c02283{bottom:314.670900px;}
.y49_c02283{bottom:335.010450px;}
.y48_c02283{bottom:335.370450px;}
.y47_c02283{bottom:356.070450px;}
.y46_c02283{bottom:374.700450px;}
.y45_c02283{bottom:375.060450px;}
.y44_c02283{bottom:396.390450px;}
.y43_c02283{bottom:414.750600px;}
.y42_c02283{bottom:432.120600px;}
.y41_c02283{bottom:452.910450px;}
.y3f_c02283{bottom:461.730450px;}
.y3e_c02283{bottom:462.090000px;}
.y40_c02283{bottom:462.090600px;}
.y3c_c02283{bottom:480.630450px;}
.y3d_c02283{bottom:481.080450px;}
.y3b_c02283{bottom:481.080600px;}
.y39_c02283{bottom:499.620600px;}
.y38_c02283{bottom:499.980000px;}
.y3a_c02283{bottom:499.980600px;}
.y36_c02283{bottom:518.610600px;}
.y35_c02283{bottom:518.970000px;}
.y37_c02283{bottom:518.970450px;}
.y34_c02283{bottom:537.600450px;}
.y33_c02283{bottom:537.960450px;}
.y32_c02283{bottom:556.950450px;}
.y31_c02283{bottom:575.490450px;}
.y30_c02283{bottom:575.940450px;}
.y2f_c02283{bottom:597.270450px;}
.y2e_c02283{bottom:615.540450px;}
.y2d_c02283{bottom:632.910450px;}
.y2c_c02283{bottom:653.700450px;}
.y2a_c02283{bottom:662.520450px;}
.y29_c02283{bottom:662.880000px;}
.y2b_c02283{bottom:662.880450px;}
.y28_c02283{bottom:681.510450px;}
.y27_c02283{bottom:681.870450px;}
.y26_c02283{bottom:700.860450px;}
.y25_c02283{bottom:719.490450px;}
.y24_c02283{bottom:719.850900px;}
.y23_c02283{bottom:740.100450px;}
.y22_c02283{bottom:740.550900px;}
.y21_c02283{bottom:760.800450px;}
.y20_c02283{bottom:761.250450px;}
.y1f_c02283{bottom:781.950450px;}
.y1e_c02283{bottom:800.490450px;}
.y1d_c02283{bottom:800.850450px;}
.y1c_c02283{bottom:822.270450px;}
.y1b_c02283{bottom:840.540600px;}
.y1a_c02283{bottom:857.910450px;}
.y19_c02283{bottom:876.900450px;}
.y18_c02283{bottom:886.619874px;}
.y17_c02283{bottom:900.390162px;}
.y16_c02283{bottom:914.160450px;}
.y15_c02283{bottom:930.360450px;}
.y14_c02283{bottom:945.840450px;}
.y13_c02283{bottom:961.770450px;}
.y12_c02283{bottom:977.250450px;}
.yf_c02283{bottom:994.710450px;}
.y11_c02283{bottom:995.340450px;}
.y10_c02283{bottom:1010.820450px;}
.ye_c02283{bottom:1027.740450px;}
.yd_c02283{bottom:1044.660648px;}
.yc_c02283{bottom:1053.300450px;}
.yb_c02283{bottom:1063.200450px;}
.ya_c02283{bottom:1063.560000px;}
.y9_c02283{bottom:1082.190450px;}
.y8_c02283{bottom:1082.550450px;}
.y7_c02283{bottom:1103.970450px;}
.y6_c02283{bottom:1122.240450px;}
.y5_c02283{bottom:1139.610450px;}
.y2_c02283{bottom:1172.640450px;}
.y1_c02283{bottom:1193.160450px;}
.he_c02283{height:10.551621px;}
.hb_c02283{height:26.217949px;}
.h5_c02283{height:26.538926px;}
.h8_c02283{height:42.011895px;}
.h7_c02283{height:42.526230px;}
.h9_c02283{height:47.381836px;}
.h3_c02283{height:47.961914px;}
.ha_c02283{height:48.461836px;}
.h6_c02283{height:58.513535px;}
.hc_c02283{height:61.033535px;}
.h10_c02283{height:61.394135px;}
.h11_c02283{height:62.472935px;}
.hd_c02283{height:62.473535px;}
.h12_c02283{height:62.474135px;}
.h4_c02283{height:62.833535px;}
.hf_c02283{height:62.834135px;}
.h2_c02283{height:63.175781px;}
.h1_c02283{height:63.949219px;}
.h0_c02283{height:1263.000000px;}
.w1_c02283{width:892.500000px;}
.w0_c02283{width:892.830000px;}
.x0_c02283{left:0.000000px;}
.x3_c02283{left:126.450000px;}
.x1_c02283{left:127.620000px;}
.x4_c02283{left:135.090000px;}
.xa_c02283{left:136.710000px;}
.xf_c02283{left:142.380000px;}
.x9_c02283{left:144.180000px;}
.x5_c02283{left:156.600000px;}
.x10_c02283{left:162.000000px;}
.xe_c02283{left:164.520000px;}
.xb_c02283{left:165.600000px;}
.x6_c02283{left:212.940000px;}
.xc_c02283{left:221.130000px;}
.x7_c02283{left:392.490000px;}
.x8_c02283{left:415.170000px;}
.x2_c02283{left:432.990000px;}
.xd_c02283{left:746.820450px;}
@media print{
.v3_c02283{vertical-align:-3.840000pt;}
.v2_c02283{vertical-align:-2.560000pt;}
.v1_c02283{vertical-align:-1.280000pt;}
.v0_c02283{vertical-align:0.000000pt;}
.v6_c02283{vertical-align:1.280000pt;}
.v4_c02283{vertical-align:2.240000pt;}
.v5_c02283{vertical-align:3.840000pt;}
.ls2e_c02283{letter-spacing:-0.076608pt;}
.ls2a_c02283{letter-spacing:-0.038400pt;}
.ls2c_c02283{letter-spacing:-0.017024pt;}
.ls2b_c02283{letter-spacing:-0.009600pt;}
.ls30_c02283{letter-spacing:-0.008512pt;}
.ls33_c02283{letter-spacing:-0.004256pt;}
.ls28_c02283{letter-spacing:0.000000pt;}
.ls12_c02283{letter-spacing:0.004800pt;}
.lsf_c02283{letter-spacing:0.005856pt;}
.ls1f_c02283{letter-spacing:0.006400pt;}
.ls1_c02283{letter-spacing:0.009600pt;}
.ls4_c02283{letter-spacing:0.011232pt;}
.ls18_c02283{letter-spacing:0.012800pt;}
.ls23_c02283{letter-spacing:0.017024pt;}
.ls3_c02283{letter-spacing:0.025536pt;}
.ls0_c02283{letter-spacing:0.025600pt;}
.ls5_c02283{letter-spacing:0.028800pt;}
.lsa_c02283{letter-spacing:0.033600pt;}
.ls2_c02283{letter-spacing:0.038304pt;}
.ls9_c02283{letter-spacing:0.038400pt;}
.ls8_c02283{letter-spacing:0.046816pt;}
.ls10_c02283{letter-spacing:0.051072pt;}
.ls15_c02283{letter-spacing:0.059584pt;}
.lse_c02283{letter-spacing:0.064416pt;}
.ls16_c02283{letter-spacing:0.068096pt;}
.ls26_c02283{letter-spacing:0.072352pt;}
.ls14_c02283{letter-spacing:0.076608pt;}
.ls11_c02283{letter-spacing:0.085120pt;}
.ls1a_c02283{letter-spacing:0.097888pt;}
.lsc_c02283{letter-spacing:0.102144pt;}
.ls17_c02283{letter-spacing:0.106400pt;}
.ls21_c02283{letter-spacing:0.110656pt;}
.ls22_c02283{letter-spacing:0.119168pt;}
.lsd_c02283{letter-spacing:0.123424pt;}
.ls29_c02283{letter-spacing:0.134400pt;}
.ls6_c02283{letter-spacing:0.140544pt;}
.ls1e_c02283{letter-spacing:0.144704pt;}
.ls2d_c02283{letter-spacing:0.148960pt;}
.ls1d_c02283{letter-spacing:0.161728pt;}
.ls1c_c02283{letter-spacing:0.183008pt;}
.ls19_c02283{letter-spacing:99.840000pt;}
.ls24_c02283{letter-spacing:101.760000pt;}
.ls7_c02283{letter-spacing:102.720000pt;}
.ls20_c02283{letter-spacing:103.680000pt;}
.ls31_c02283{letter-spacing:127.838400pt;}
.ls2f_c02283{letter-spacing:130.718400pt;}
.ls32_c02283{letter-spacing:131.678400pt;}
.ls35_c02283{letter-spacing:137.998112pt;}
.ls27_c02283{letter-spacing:138.720000pt;}
.ls34_c02283{letter-spacing:139.041600pt;}
.ls36_c02283{letter-spacing:139.358400pt;}
.ls1b_c02283{letter-spacing:177.840000pt;}
.ls25_c02283{letter-spacing:179.440000pt;}
.lsb_c02283{letter-spacing:181.040000pt;}
.ls13_c02283{letter-spacing:192.160000pt;}
.ws0_c02283{word-spacing:-14.780544pt;}
.ws2_c02283{word-spacing:-14.645856pt;}
.ws18_c02283{word-spacing:-0.263872pt;}
.ws17_c02283{word-spacing:-0.242592pt;}
.ws1a_c02283{word-spacing:-0.225568pt;}
.wsa_c02283{word-spacing:-0.204288pt;}
.ws1e_c02283{word-spacing:-0.200032pt;}
.ws1d_c02283{word-spacing:-0.191520pt;}
.ws15_c02283{word-spacing:-0.187264pt;}
.ws8_c02283{word-spacing:-0.183008pt;}
.wsc_c02283{word-spacing:-0.165984pt;}
.ws1f_c02283{word-spacing:-0.153216pt;}
.ws7_c02283{word-spacing:-0.106400pt;}
.ws20_c02283{word-spacing:-0.097888pt;}
.ws6_c02283{word-spacing:-0.089856pt;}
.ws21_c02283{word-spacing:-0.089600pt;}
.ws1b_c02283{word-spacing:-0.083200pt;}
.ws5_c02283{word-spacing:-0.076800pt;}
.ws22_c02283{word-spacing:-0.072352pt;}
.ws16_c02283{word-spacing:-0.012800pt;}
.ws1c_c02283{word-spacing:-0.006400pt;}
.ws4_c02283{word-spacing:0.000000pt;}
.wsb_c02283{word-spacing:0.017568pt;}
.wsd_c02283{word-spacing:0.124800pt;}
.wse_c02283{word-spacing:0.129600pt;}
.wsf_c02283{word-spacing:0.153600pt;}
.ws12_c02283{word-spacing:1.098048pt;}
.ws14_c02283{word-spacing:1.132096pt;}
.ws13_c02283{word-spacing:1.161888pt;}
.ws10_c02283{word-spacing:5.281696pt;}
.ws11_c02283{word-spacing:5.298720pt;}
.ws3_c02283{word-spacing:52.417280pt;}
.ws1_c02283{word-spacing:54.337280pt;}
.ws9_c02283{word-spacing:141.240000pt;}
.ws19_c02283{word-spacing:214.200000pt;}
._25_c02283{margin-left:-75.240000pt;}
._26_c02283{margin-left:-36.480000pt;}
._15_c02283{margin-left:-1.136064pt;}
._36_c02283{width:1.070976pt;}
._14_c02283{width:37.654400pt;}
._12_c02283{width:39.000448pt;}
._b_c02283{width:45.277824pt;}
._37_c02283{width:46.265312pt;}
._22_c02283{width:55.439296pt;}
._e_c02283{width:57.398400pt;}
._32_c02283{width:58.852544pt;}
._20_c02283{width:64.857280pt;}
._7_c02283{width:66.777280pt;}
._2b_c02283{width:68.333984pt;}
._11_c02283{width:69.280000pt;}
._8_c02283{width:70.960160pt;}
._24_c02283{width:73.657632pt;}
._13_c02283{width:74.653600pt;}
._c_c02283{width:76.959776pt;}
._1_c02283{width:77.968000pt;}
._9_c02283{width:79.820800pt;}
._0_c02283{width:80.979200pt;}
._2e_c02283{width:82.666816pt;}
._34_c02283{width:84.363104pt;}
._2c_c02283{width:85.393120pt;}
._21_c02283{width:89.161984pt;}
._a_c02283{width:91.660800pt;}
._2a_c02283{width:93.957216pt;}
._f_c02283{width:95.488000pt;}
._3_c02283{width:97.120000pt;}
._38_c02283{width:98.986816pt;}
._2f_c02283{width:101.801792pt;}
._1e_c02283{width:104.824800pt;}
._31_c02283{width:105.983936pt;}
._4_c02283{width:107.145728pt;}
._30_c02283{width:108.232384pt;}
._d_c02283{width:109.888000pt;}
._2_c02283{width:111.840000pt;}
._29_c02283{width:113.659008pt;}
._23_c02283{width:114.648576pt;}
._10_c02283{width:116.928000pt;}
._39_c02283{width:118.121792pt;}
._27_c02283{width:127.840000pt;}
._2d_c02283{width:130.790368pt;}
._1f_c02283{width:132.326688pt;}
._6_c02283{width:134.709056pt;}
._5_c02283{width:138.694688pt;}
._28_c02283{width:161.843072pt;}
._1c_c02283{width:171.724800pt;}
._33_c02283{width:178.420768pt;}
._19_c02283{width:192.160000pt;}
._35_c02283{width:214.512512pt;}
._17_c02283{width:252.000000pt;}
._1a_c02283{width:275.648000pt;}
._1b_c02283{width:280.920000pt;}
._18_c02283{width:291.528000pt;}
._16_c02283{width:554.262976pt;}
._1d_c02283{width:752.760000pt;}
.fs6_c02283{font-size:10.560000pt;}
.fs5_c02283{font-size:26.560000pt;}
.fs3_c02283{font-size:37.440000pt;}
.fs2_c02283{font-size:42.560000pt;}
.fs1_c02283{font-size:48.000000pt;}
.fs7_c02283{font-size:53.440000pt;}
.fs4_c02283{font-size:58.560000pt;}
.fs0_c02283{font-size:64.000000pt;}
.y0_c02283{bottom:0.000000pt;}
.y4_c02283{bottom:50.987067pt;}
.y3_c02283{bottom:69.387067pt;}
.y5c_c02283{bottom:100.587067pt;}
.y5b_c02283{bottom:116.907067pt;}
.y5a_c02283{bottom:117.227467pt;}
.y59_c02283{bottom:135.307067pt;}
.y58_c02283{bottom:135.627467pt;}
.y57_c02283{bottom:153.707067pt;}
.y56_c02283{bottom:154.027467pt;}
.y55_c02283{bottom:172.107200pt;}
.y54_c02283{bottom:172.427600pt;}
.y53_c02283{bottom:190.507067pt;}
.y52_c02283{bottom:190.827067pt;}
.y51_c02283{bottom:209.227067pt;}
.y50_c02283{bottom:225.707067pt;}
.y4f_c02283{bottom:226.107067pt;}
.y4e_c02283{bottom:244.507067pt;}
.y4d_c02283{bottom:260.987067pt;}
.y4c_c02283{bottom:261.307467pt;}
.y4b_c02283{bottom:279.387067pt;}
.y4a_c02283{bottom:279.707467pt;}
.y49_c02283{bottom:297.787067pt;}
.y48_c02283{bottom:298.107067pt;}
.y47_c02283{bottom:316.507067pt;}
.y46_c02283{bottom:333.067067pt;}
.y45_c02283{bottom:333.387067pt;}
.y44_c02283{bottom:352.347067pt;}
.y43_c02283{bottom:368.667200pt;}
.y42_c02283{bottom:384.107200pt;}
.y41_c02283{bottom:402.587067pt;}
.y3f_c02283{bottom:410.427067pt;}
.y3e_c02283{bottom:410.746667pt;}
.y40_c02283{bottom:410.747200pt;}
.y3c_c02283{bottom:427.227067pt;}
.y3d_c02283{bottom:427.627067pt;}
.y3b_c02283{bottom:427.627200pt;}
.y39_c02283{bottom:444.107200pt;}
.y38_c02283{bottom:444.426667pt;}
.y3a_c02283{bottom:444.427200pt;}
.y36_c02283{bottom:460.987200pt;}
.y35_c02283{bottom:461.306667pt;}
.y37_c02283{bottom:461.307067pt;}
.y34_c02283{bottom:477.867067pt;}
.y33_c02283{bottom:478.187067pt;}
.y32_c02283{bottom:495.067067pt;}
.y31_c02283{bottom:511.547067pt;}
.y30_c02283{bottom:511.947067pt;}
.y2f_c02283{bottom:530.907067pt;}
.y2e_c02283{bottom:547.147067pt;}
.y2d_c02283{bottom:562.587067pt;}
.y2c_c02283{bottom:581.067067pt;}
.y2a_c02283{bottom:588.907067pt;}
.y29_c02283{bottom:589.226667pt;}
.y2b_c02283{bottom:589.227067pt;}
.y28_c02283{bottom:605.787067pt;}
.y27_c02283{bottom:606.107067pt;}
.y26_c02283{bottom:622.987067pt;}
.y25_c02283{bottom:639.547067pt;}
.y24_c02283{bottom:639.867467pt;}
.y23_c02283{bottom:657.867067pt;}
.y22_c02283{bottom:658.267467pt;}
.y21_c02283{bottom:676.267067pt;}
.y20_c02283{bottom:676.667067pt;}
.y1f_c02283{bottom:695.067067pt;}
.y1e_c02283{bottom:711.547067pt;}
.y1d_c02283{bottom:711.867067pt;}
.y1c_c02283{bottom:730.907067pt;}
.y1b_c02283{bottom:747.147200pt;}
.y1a_c02283{bottom:762.587067pt;}
.y19_c02283{bottom:779.467067pt;}
.y18_c02283{bottom:788.106555pt;}
.y17_c02283{bottom:800.346811pt;}
.y16_c02283{bottom:812.587067pt;}
.y15_c02283{bottom:826.987067pt;}
.y14_c02283{bottom:840.747067pt;}
.y13_c02283{bottom:854.907067pt;}
.y12_c02283{bottom:868.667067pt;}
.yf_c02283{bottom:884.187067pt;}
.y11_c02283{bottom:884.747067pt;}
.y10_c02283{bottom:898.507067pt;}
.ye_c02283{bottom:913.547067pt;}
.yd_c02283{bottom:928.587243pt;}
.yc_c02283{bottom:936.267067pt;}
.yb_c02283{bottom:945.067067pt;}
.ya_c02283{bottom:945.386667pt;}
.y9_c02283{bottom:961.947067pt;}
.y8_c02283{bottom:962.267067pt;}
.y7_c02283{bottom:981.307067pt;}
.y6_c02283{bottom:997.547067pt;}
.y5_c02283{bottom:1012.987067pt;}
.y2_c02283{bottom:1042.347067pt;}
.y1_c02283{bottom:1060.587067pt;}
.he_c02283{height:9.379219pt;}
.hb_c02283{height:23.304844pt;}
.h5_c02283{height:23.590156pt;}
.h8_c02283{height:37.343906pt;}
.h7_c02283{height:37.801094pt;}
.h9_c02283{height:42.117188pt;}
.h3_c02283{height:42.632812pt;}
.ha_c02283{height:43.077188pt;}
.h6_c02283{height:52.012031pt;}
.hc_c02283{height:54.252031pt;}
.h10_c02283{height:54.572565pt;}
.h11_c02283{height:55.531498pt;}
.hd_c02283{height:55.532031pt;}
.h12_c02283{height:55.532565pt;}
.h4_c02283{height:55.852031pt;}
.hf_c02283{height:55.852565pt;}
.h2_c02283{height:56.156250pt;}
.h1_c02283{height:56.843750pt;}
.h0_c02283{height:1122.666667pt;}
.w1_c02283{width:793.333333pt;}
.w0_c02283{width:793.626667pt;}
.x0_c02283{left:0.000000pt;}
.x3_c02283{left:112.400000pt;}
.x1_c02283{left:113.440000pt;}
.x4_c02283{left:120.080000pt;}
.xa_c02283{left:121.520000pt;}
.xf_c02283{left:126.560000pt;}
.x9_c02283{left:128.160000pt;}
.x5_c02283{left:139.200000pt;}
.x10_c02283{left:144.000000pt;}
.xe_c02283{left:146.240000pt;}
.xb_c02283{left:147.200000pt;}
.x6_c02283{left:189.280000pt;}
.xc_c02283{left:196.560000pt;}
.x7_c02283{left:348.880000pt;}
.x8_c02283{left:369.040000pt;}
.x2_c02283{left:384.880000pt;}
.xd_c02283{left:663.840400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_141da6e52ac30fbeb9984a9f.woff2')format("woff");}.ff1_c02284{font-family:ff1_c02284;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02284;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v4_c02284{vertical-align:-4.320000px;}
.v3_c02284{vertical-align:-2.880000px;}
.v2_c02284{vertical-align:-1.440000px;}
.v0_c02284{vertical-align:0.000000px;}
.v1_c02284{vertical-align:1.080000px;}
.v5_c02284{vertical-align:2.520000px;}
.v6_c02284{vertical-align:4.320000px;}
.ls20_c02284{letter-spacing:-0.178200px;}
.ls1f_c02284{letter-spacing:-0.118800px;}
.ls28_c02284{letter-spacing:-0.086184px;}
.ls24_c02284{letter-spacing:-0.043200px;}
.ls2c_c02284{letter-spacing:-0.028800px;}
.ls2a_c02284{letter-spacing:-0.024048px;}
.ls26_c02284{letter-spacing:-0.019152px;}
.ls25_c02284{letter-spacing:-0.010800px;}
.ls21_c02284{letter-spacing:-0.009576px;}
.ls22_c02284{letter-spacing:-0.007200px;}
.ls1e_c02284{letter-spacing:0.000000px;}
.ls2_c02284{letter-spacing:0.006588px;}
.ls2b_c02284{letter-spacing:0.007200px;}
.ls3_c02284{letter-spacing:0.010800px;}
.ls11_c02284{letter-spacing:0.012636px;}
.ls1c_c02284{letter-spacing:0.014400px;}
.ls10_c02284{letter-spacing:0.028728px;}
.ls0_c02284{letter-spacing:0.028800px;}
.ls12_c02284{letter-spacing:0.032400px;}
.ls9_c02284{letter-spacing:0.037800px;}
.lsd_c02284{letter-spacing:0.043092px;}
.ls6_c02284{letter-spacing:0.043200px;}
.ls8_c02284{letter-spacing:0.048600px;}
.ls1a_c02284{letter-spacing:0.052668px;}
.ls7_c02284{letter-spacing:0.054000px;}
.lsb_c02284{letter-spacing:0.067032px;}
.ls5_c02284{letter-spacing:0.070200px;}
.lse_c02284{letter-spacing:0.076608px;}
.ls1_c02284{letter-spacing:0.079056px;}
.ls18_c02284{letter-spacing:0.081396px;}
.lsa_c02284{letter-spacing:0.086184px;}
.ls4_c02284{letter-spacing:0.095760px;}
.ls15_c02284{letter-spacing:0.110124px;}
.lsc_c02284{letter-spacing:0.114912px;}
.lsf_c02284{letter-spacing:0.119700px;}
.ls1b_c02284{letter-spacing:0.138852px;}
.ls23_c02284{letter-spacing:0.151200px;}
.ls13_c02284{letter-spacing:0.158112px;}
.ls1d_c02284{letter-spacing:0.162792px;}
.ls27_c02284{letter-spacing:0.167580px;}
.ls19_c02284{letter-spacing:0.181944px;}
.ls17_c02284{letter-spacing:0.205884px;}
.ls14_c02284{letter-spacing:113.040000px;}
.ls29_c02284{letter-spacing:144.541800px;}
.ls16_c02284{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02284{word-spacing:-16.628112px;}
.ws0_c02284{word-spacing:-16.476588px;}
.ws17_c02284{word-spacing:-0.296856px;}
.ws16_c02284{word-spacing:-0.272916px;}
.ws24_c02284{word-spacing:-0.253764px;}
.ws1d_c02284{word-spacing:-0.229824px;}
.ws12_c02284{word-spacing:-0.210672px;}
.ws1c_c02284{word-spacing:-0.205884px;}
.ws9_c02284{word-spacing:-0.186732px;}
.ws1b_c02284{word-spacing:-0.119700px;}
.ws14_c02284{word-spacing:-0.115200px;}
.ws15_c02284{word-spacing:-0.101088px;}
.ws20_c02284{word-spacing:-0.093600px;}
.ws7_c02284{word-spacing:-0.086400px;}
.ws19_c02284{word-spacing:-0.081396px;}
.ws13_c02284{word-spacing:-0.064800px;}
.ws1e_c02284{word-spacing:-0.057600px;}
.ws22_c02284{word-spacing:-0.043200px;}
.ws1a_c02284{word-spacing:-0.028800px;}
.ws1f_c02284{word-spacing:-0.014400px;}
.ws6_c02284{word-spacing:0.000000px;}
.ws8_c02284{word-spacing:0.013176px;}
.ws23_c02284{word-spacing:0.028800px;}
.wsa_c02284{word-spacing:0.108000px;}
.wsb_c02284{word-spacing:0.124200px;}
.wsc_c02284{word-spacing:0.129600px;}
.wsf_c02284{word-spacing:1.235304px;}
.ws11_c02284{word-spacing:1.273608px;}
.ws10_c02284{word-spacing:1.307124px;}
.wsd_c02284{word-spacing:5.941908px;}
.wse_c02284{word-spacing:5.961060px;}
.ws3_c02284{word-spacing:48.169440px;}
.ws5_c02284{word-spacing:74.089440px;}
.ws2_c02284{word-spacing:75.169440px;}
.ws4_c02284{word-spacing:101.089440px;}
.ws18_c02284{word-spacing:156.735000px;}
.ws21_c02284{word-spacing:199.216800px;}
.ws25_c02284{word-spacing:199.222200px;}
._28_c02284{margin-left:-43.243200px;}
._29_c02284{margin-left:-42.076800px;}
._0_c02284{margin-left:-1.159488px;}
._1e_c02284{width:42.481800px;}
._14_c02284{width:50.937552px;}
._19_c02284{width:62.053200px;}
._17_c02284{width:65.340000px;}
._1d_c02284{width:67.635000px;}
._11_c02284{width:72.604440px;}
._1b_c02284{width:75.420000px;}
._12_c02284{width:77.310180px;}
._25_c02284{width:78.452748px;}
._22_c02284{width:83.697552px;}
._b_c02284{width:84.834000px;}
._a_c02284{width:88.221600px;}
._1c_c02284{width:90.849276px;}
._20_c02284{width:95.022504px;}
._24_c02284{width:96.585300px;}
._13_c02284{width:100.015200px;}
._18_c02284{width:103.104000px;}
._15_c02284{width:104.479380px;}
._23_c02284{width:106.421868px;}
._16_c02284{width:108.435600px;}
._2b_c02284{width:109.594296px;}
._d_c02284{width:115.740000px;}
._e_c02284{width:118.378944px;}
._c_c02284{width:122.220000px;}
._27_c02284{width:127.151568px;}
._21_c02284{width:128.162160px;}
._1a_c02284{width:129.607020px;}
._26_c02284{width:135.096120px;}
._10_c02284{width:140.027688px;}
._1f_c02284{width:144.540000px;}
._2c_c02284{width:146.586384px;}
._f_c02284{width:152.431524px;}
._2a_c02284{width:201.403332px;}
._9_c02284{width:203.036400px;}
._4_c02284{width:216.180000px;}
._2_c02284{width:283.500000px;}
._5_c02284{width:310.104000px;}
._3_c02284{width:347.693400px;}
._7_c02284{width:353.833200px;}
._1_c02284{width:414.180000px;}
._6_c02284{width:419.929200px;}
._8_c02284{width:605.295000px;}
.fc0_c02284{color:rgb(0,0,0);}
.fs5_c02284{font-size:11.880000px;}
.fs4_c02284{font-size:42.120000px;}
.fs3_c02284{font-size:47.880000px;}
.fs2_c02284{font-size:54.000000px;}
.fs6_c02284{font-size:60.120000px;}
.fs1_c02284{font-size:65.880000px;}
.fs0_c02284{font-size:72.000000px;}
.y0_c02284{bottom:0.000000px;}
.y4_c02284{bottom:57.360450px;}
.y3_c02284{bottom:78.060450px;}
.y4f_c02284{bottom:121.170000px;}
.y4e_c02284{bottom:136.650450px;}
.y4d_c02284{bottom:152.220000px;}
.y4c_c02284{bottom:167.700450px;}
.y4b_c02284{bottom:183.270000px;}
.y4a_c02284{bottom:198.750450px;}
.y49_c02284{bottom:214.320000px;}
.y48_c02284{bottom:229.800450px;}
.y47_c02284{bottom:245.370000px;}
.y46_c02284{bottom:260.850450px;}
.y45_c02284{bottom:276.420450px;}
.y44_c02284{bottom:276.780900px;}
.y43_c02284{bottom:297.120450px;}
.y42_c02284{bottom:297.480450px;}
.y41_c02284{bottom:318.180450px;}
.y40_c02284{bottom:336.720450px;}
.y3f_c02284{bottom:337.080900px;}
.y3e_c02284{bottom:357.420450px;}
.y3d_c02284{bottom:357.781050px;}
.y3c_c02284{bottom:378.120450px;}
.y3b_c02284{bottom:378.480450px;}
.y3a_c02284{bottom:399.900450px;}
.y39_c02284{bottom:418.170450px;}
.y38_c02284{bottom:435.540600px;}
.y37_c02284{bottom:456.330450px;}
.y36_c02284{bottom:465.150450px;}
.y35_c02284{bottom:465.510450px;}
.y34_c02284{bottom:485.130450px;}
.y33_c02284{bottom:503.490450px;}
.y32_c02284{bottom:520.860600px;}
.y31_c02284{bottom:541.650450px;}
.y30_c02284{bottom:550.380450px;}
.y2f_c02284{bottom:550.740000px;}
.y2e_c02284{bottom:569.370450px;}
.y2d_c02284{bottom:569.730450px;}
.y2c_c02284{bottom:589.350450px;}
.y2b_c02284{bottom:607.710450px;}
.y2a_c02284{bottom:625.080450px;}
.y29_c02284{bottom:645.870450px;}
.y28_c02284{bottom:654.690450px;}
.y27_c02284{bottom:655.050000px;}
.y26_c02284{bottom:673.590450px;}
.y25_c02284{bottom:674.040450px;}
.y24_c02284{bottom:692.940450px;}
.y23_c02284{bottom:711.570450px;}
.y22_c02284{bottom:711.930450px;}
.y21_c02284{bottom:733.350450px;}
.y20_c02284{bottom:751.620450px;}
.y1f_c02284{bottom:768.990450px;}
.y1e_c02284{bottom:789.780450px;}
.y1d_c02284{bottom:798.600450px;}
.y1c_c02284{bottom:798.960450px;}
.y1b_c02284{bottom:817.950450px;}
.y1a_c02284{bottom:836.490450px;}
.y19_c02284{bottom:836.850450px;}
.y18_c02284{bottom:858.270450px;}
.y17_c02284{bottom:876.540600px;}
.y16_c02284{bottom:893.910450px;}
.y15_c02284{bottom:914.069559px;}
.y14_c02284{bottom:927.839847px;}
.y13_c02284{bottom:941.699910px;}
.y12_c02284{bottom:955.470198px;}
.y11_c02284{bottom:969.240486px;}
.y10_c02284{bottom:983.280099px;}
.yf_c02284{bottom:997.140162px;}
.ye_c02284{bottom:1010.910450px;}
.yd_c02284{bottom:1027.110450px;}
.yc_c02284{bottom:1042.590450px;}
.yb_c02284{bottom:1058.160450px;}
.ya_c02284{bottom:1073.640450px;}
.y9_c02284{bottom:1089.210450px;}
.y6_c02284{bottom:1106.940450px;}
.y8_c02284{bottom:1107.210450px;}
.y7_c02284{bottom:1124.580450px;}
.y5_c02284{bottom:1141.500450px;}
.y2_c02284{bottom:1172.640450px;}
.y1_c02284{bottom:1193.160450px;}
.hc_c02284{height:10.551621px;}
.h5_c02284{height:42.011895px;}
.h8_c02284{height:42.526230px;}
.h6_c02284{height:47.381836px;}
.h4_c02284{height:47.961914px;}
.h7_c02284{height:48.461836px;}
.h3_c02284{height:58.513535px;}
.ha_c02284{height:61.033535px;}
.hd_c02284{height:61.393535px;}
.hb_c02284{height:62.473535px;}
.h9_c02284{height:62.833535px;}
.he_c02284{height:62.834135px;}
.h2_c02284{height:63.175781px;}
.h1_c02284{height:63.949219px;}
.h0_c02284{height:1263.000000px;}
.w1_c02284{width:892.500000px;}
.w0_c02284{width:892.830000px;}
.x0_c02284{left:0.000000px;}
.x1_c02284{left:127.620000px;}
.x3_c02284{left:134.550000px;}
.x6_c02284{left:135.630000px;}
.x7_c02284{left:143.910000px;}
.x8_c02284{left:164.970000px;}
.x9_c02284{left:220.680000px;}
.x4_c02284{left:332.100000px;}
.x5_c02284{left:354.780000px;}
.x2_c02284{left:432.990000px;}
@media print{
.v4_c02284{vertical-align:-3.840000pt;}
.v3_c02284{vertical-align:-2.560000pt;}
.v2_c02284{vertical-align:-1.280000pt;}
.v0_c02284{vertical-align:0.000000pt;}
.v1_c02284{vertical-align:0.960000pt;}
.v5_c02284{vertical-align:2.240000pt;}
.v6_c02284{vertical-align:3.840000pt;}
.ls20_c02284{letter-spacing:-0.158400pt;}
.ls1f_c02284{letter-spacing:-0.105600pt;}
.ls28_c02284{letter-spacing:-0.076608pt;}
.ls24_c02284{letter-spacing:-0.038400pt;}
.ls2c_c02284{letter-spacing:-0.025600pt;}
.ls2a_c02284{letter-spacing:-0.021376pt;}
.ls26_c02284{letter-spacing:-0.017024pt;}
.ls25_c02284{letter-spacing:-0.009600pt;}
.ls21_c02284{letter-spacing:-0.008512pt;}
.ls22_c02284{letter-spacing:-0.006400pt;}
.ls1e_c02284{letter-spacing:0.000000pt;}
.ls2_c02284{letter-spacing:0.005856pt;}
.ls2b_c02284{letter-spacing:0.006400pt;}
.ls3_c02284{letter-spacing:0.009600pt;}
.ls11_c02284{letter-spacing:0.011232pt;}
.ls1c_c02284{letter-spacing:0.012800pt;}
.ls10_c02284{letter-spacing:0.025536pt;}
.ls0_c02284{letter-spacing:0.025600pt;}
.ls12_c02284{letter-spacing:0.028800pt;}
.ls9_c02284{letter-spacing:0.033600pt;}
.lsd_c02284{letter-spacing:0.038304pt;}
.ls6_c02284{letter-spacing:0.038400pt;}
.ls8_c02284{letter-spacing:0.043200pt;}
.ls1a_c02284{letter-spacing:0.046816pt;}
.ls7_c02284{letter-spacing:0.048000pt;}
.lsb_c02284{letter-spacing:0.059584pt;}
.ls5_c02284{letter-spacing:0.062400pt;}
.lse_c02284{letter-spacing:0.068096pt;}
.ls1_c02284{letter-spacing:0.070272pt;}
.ls18_c02284{letter-spacing:0.072352pt;}
.lsa_c02284{letter-spacing:0.076608pt;}
.ls4_c02284{letter-spacing:0.085120pt;}
.ls15_c02284{letter-spacing:0.097888pt;}
.lsc_c02284{letter-spacing:0.102144pt;}
.lsf_c02284{letter-spacing:0.106400pt;}
.ls1b_c02284{letter-spacing:0.123424pt;}
.ls23_c02284{letter-spacing:0.134400pt;}
.ls13_c02284{letter-spacing:0.140544pt;}
.ls1d_c02284{letter-spacing:0.144704pt;}
.ls27_c02284{letter-spacing:0.148960pt;}
.ls19_c02284{letter-spacing:0.161728pt;}
.ls17_c02284{letter-spacing:0.183008pt;}
.ls14_c02284{letter-spacing:100.480000pt;}
.ls29_c02284{letter-spacing:128.481600pt;}
.ls16_c02284{letter-spacing:178.480000pt;}
.ws1_c02284{word-spacing:-14.780544pt;}
.ws0_c02284{word-spacing:-14.645856pt;}
.ws17_c02284{word-spacing:-0.263872pt;}
.ws16_c02284{word-spacing:-0.242592pt;}
.ws24_c02284{word-spacing:-0.225568pt;}
.ws1d_c02284{word-spacing:-0.204288pt;}
.ws12_c02284{word-spacing:-0.187264pt;}
.ws1c_c02284{word-spacing:-0.183008pt;}
.ws9_c02284{word-spacing:-0.165984pt;}
.ws1b_c02284{word-spacing:-0.106400pt;}
.ws14_c02284{word-spacing:-0.102400pt;}
.ws15_c02284{word-spacing:-0.089856pt;}
.ws20_c02284{word-spacing:-0.083200pt;}
.ws7_c02284{word-spacing:-0.076800pt;}
.ws19_c02284{word-spacing:-0.072352pt;}
.ws13_c02284{word-spacing:-0.057600pt;}
.ws1e_c02284{word-spacing:-0.051200pt;}
.ws22_c02284{word-spacing:-0.038400pt;}
.ws1a_c02284{word-spacing:-0.025600pt;}
.ws1f_c02284{word-spacing:-0.012800pt;}
.ws6_c02284{word-spacing:0.000000pt;}
.ws8_c02284{word-spacing:0.011712pt;}
.ws23_c02284{word-spacing:0.025600pt;}
.wsa_c02284{word-spacing:0.096000pt;}
.wsb_c02284{word-spacing:0.110400pt;}
.wsc_c02284{word-spacing:0.115200pt;}
.wsf_c02284{word-spacing:1.098048pt;}
.ws11_c02284{word-spacing:1.132096pt;}
.ws10_c02284{word-spacing:1.161888pt;}
.wsd_c02284{word-spacing:5.281696pt;}
.wse_c02284{word-spacing:5.298720pt;}
.ws3_c02284{word-spacing:42.817280pt;}
.ws5_c02284{word-spacing:65.857280pt;}
.ws2_c02284{word-spacing:66.817280pt;}
.ws4_c02284{word-spacing:89.857280pt;}
.ws18_c02284{word-spacing:139.320000pt;}
.ws21_c02284{word-spacing:177.081600pt;}
.ws25_c02284{word-spacing:177.086400pt;}
._28_c02284{margin-left:-38.438400pt;}
._29_c02284{margin-left:-37.401600pt;}
._0_c02284{margin-left:-1.030656pt;}
._1e_c02284{width:37.761600pt;}
._14_c02284{width:45.277824pt;}
._19_c02284{width:55.158400pt;}
._17_c02284{width:58.080000pt;}
._1d_c02284{width:60.120000pt;}
._11_c02284{width:64.537280pt;}
._1b_c02284{width:67.040000pt;}
._12_c02284{width:68.720160pt;}
._25_c02284{width:69.735776pt;}
._22_c02284{width:74.397824pt;}
._b_c02284{width:75.408000pt;}
._a_c02284{width:78.419200pt;}
._1c_c02284{width:80.754912pt;}
._20_c02284{width:84.464448pt;}
._24_c02284{width:85.853600pt;}
._13_c02284{width:88.902400pt;}
._18_c02284{width:91.648000pt;}
._15_c02284{width:92.870560pt;}
._23_c02284{width:94.597216pt;}
._16_c02284{width:96.387200pt;}
._2b_c02284{width:97.417152pt;}
._d_c02284{width:102.880000pt;}
._e_c02284{width:105.225728pt;}
._c_c02284{width:108.640000pt;}
._27_c02284{width:113.023616pt;}
._21_c02284{width:113.921920pt;}
._1a_c02284{width:115.206240pt;}
._26_c02284{width:120.085440pt;}
._10_c02284{width:124.469056pt;}
._1f_c02284{width:128.480000pt;}
._2c_c02284{width:130.299008pt;}
._f_c02284{width:135.494688pt;}
._2a_c02284{width:179.025184pt;}
._9_c02284{width:180.476800pt;}
._4_c02284{width:192.160000pt;}
._2_c02284{width:252.000000pt;}
._5_c02284{width:275.648000pt;}
._3_c02284{width:309.060800pt;}
._7_c02284{width:314.518400pt;}
._1_c02284{width:368.160000pt;}
._6_c02284{width:373.270400pt;}
._8_c02284{width:538.040000pt;}
.fs5_c02284{font-size:10.560000pt;}
.fs4_c02284{font-size:37.440000pt;}
.fs3_c02284{font-size:42.560000pt;}
.fs2_c02284{font-size:48.000000pt;}
.fs6_c02284{font-size:53.440000pt;}
.fs1_c02284{font-size:58.560000pt;}
.fs0_c02284{font-size:64.000000pt;}
.y0_c02284{bottom:0.000000pt;}
.y4_c02284{bottom:50.987067pt;}
.y3_c02284{bottom:69.387067pt;}
.y4f_c02284{bottom:107.706667pt;}
.y4e_c02284{bottom:121.467067pt;}
.y4d_c02284{bottom:135.306667pt;}
.y4c_c02284{bottom:149.067067pt;}
.y4b_c02284{bottom:162.906667pt;}
.y4a_c02284{bottom:176.667067pt;}
.y49_c02284{bottom:190.506667pt;}
.y48_c02284{bottom:204.267067pt;}
.y47_c02284{bottom:218.106667pt;}
.y46_c02284{bottom:231.867067pt;}
.y45_c02284{bottom:245.707067pt;}
.y44_c02284{bottom:246.027467pt;}
.y43_c02284{bottom:264.107067pt;}
.y42_c02284{bottom:264.427067pt;}
.y41_c02284{bottom:282.827067pt;}
.y40_c02284{bottom:299.307067pt;}
.y3f_c02284{bottom:299.627467pt;}
.y3e_c02284{bottom:317.707067pt;}
.y3d_c02284{bottom:318.027600pt;}
.y3c_c02284{bottom:336.107067pt;}
.y3b_c02284{bottom:336.427067pt;}
.y3a_c02284{bottom:355.467067pt;}
.y39_c02284{bottom:371.707067pt;}
.y38_c02284{bottom:387.147200pt;}
.y37_c02284{bottom:405.627067pt;}
.y36_c02284{bottom:413.467067pt;}
.y35_c02284{bottom:413.787067pt;}
.y34_c02284{bottom:431.227067pt;}
.y33_c02284{bottom:447.547067pt;}
.y32_c02284{bottom:462.987200pt;}
.y31_c02284{bottom:481.467067pt;}
.y30_c02284{bottom:489.227067pt;}
.y2f_c02284{bottom:489.546667pt;}
.y2e_c02284{bottom:506.107067pt;}
.y2d_c02284{bottom:506.427067pt;}
.y2c_c02284{bottom:523.867067pt;}
.y2b_c02284{bottom:540.187067pt;}
.y2a_c02284{bottom:555.627067pt;}
.y29_c02284{bottom:574.107067pt;}
.y28_c02284{bottom:581.947067pt;}
.y27_c02284{bottom:582.266667pt;}
.y26_c02284{bottom:598.747067pt;}
.y25_c02284{bottom:599.147067pt;}
.y24_c02284{bottom:615.947067pt;}
.y23_c02284{bottom:632.507067pt;}
.y22_c02284{bottom:632.827067pt;}
.y21_c02284{bottom:651.867067pt;}
.y20_c02284{bottom:668.107067pt;}
.y1f_c02284{bottom:683.547067pt;}
.y1e_c02284{bottom:702.027067pt;}
.y1d_c02284{bottom:709.867067pt;}
.y1c_c02284{bottom:710.187067pt;}
.y1b_c02284{bottom:727.067067pt;}
.y1a_c02284{bottom:743.547067pt;}
.y19_c02284{bottom:743.867067pt;}
.y18_c02284{bottom:762.907067pt;}
.y17_c02284{bottom:779.147200pt;}
.y16_c02284{bottom:794.587067pt;}
.y15_c02284{bottom:812.506275pt;}
.y14_c02284{bottom:824.746531pt;}
.y13_c02284{bottom:837.066587pt;}
.y12_c02284{bottom:849.306843pt;}
.y11_c02284{bottom:861.547099pt;}
.y10_c02284{bottom:874.026755pt;}
.yf_c02284{bottom:886.346811pt;}
.ye_c02284{bottom:898.587067pt;}
.yd_c02284{bottom:912.987067pt;}
.yc_c02284{bottom:926.747067pt;}
.yb_c02284{bottom:940.587067pt;}
.ya_c02284{bottom:954.347067pt;}
.y9_c02284{bottom:968.187067pt;}
.y6_c02284{bottom:983.947067pt;}
.y8_c02284{bottom:984.187067pt;}
.y7_c02284{bottom:999.627067pt;}
.y5_c02284{bottom:1014.667067pt;}
.y2_c02284{bottom:1042.347067pt;}
.y1_c02284{bottom:1060.587067pt;}
.hc_c02284{height:9.379219pt;}
.h5_c02284{height:37.343906pt;}
.h8_c02284{height:37.801094pt;}
.h6_c02284{height:42.117188pt;}
.h4_c02284{height:42.632812pt;}
.h7_c02284{height:43.077187pt;}
.h3_c02284{height:52.012031pt;}
.ha_c02284{height:54.252031pt;}
.hd_c02284{height:54.572031pt;}
.hb_c02284{height:55.532031pt;}
.h9_c02284{height:55.852031pt;}
.he_c02284{height:55.852565pt;}
.h2_c02284{height:56.156250pt;}
.h1_c02284{height:56.843750pt;}
.h0_c02284{height:1122.666667pt;}
.w1_c02284{width:793.333333pt;}
.w0_c02284{width:793.626667pt;}
.x0_c02284{left:0.000000pt;}
.x1_c02284{left:113.440000pt;}
.x3_c02284{left:119.600000pt;}
.x6_c02284{left:120.560000pt;}
.x7_c02284{left:127.920000pt;}
.x8_c02284{left:146.640000pt;}
.x9_c02284{left:196.160000pt;}
.x4_c02284{left:295.200000pt;}
.x5_c02284{left:315.360000pt;}
.x2_c02284{left:384.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_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_54cd2543f21c5f9d8aabb46d.woff2')format("woff");}.ff1_c02285{font-family:ff1_c02285;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02285;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v8_c02285{vertical-align:-20.881800px;}
.va_c02285{vertical-align:-10.438200px;}
.vf_c02285{vertical-align:-8.640000px;}
.vd_c02285{vertical-align:-6.841800px;}
.v3_c02285{vertical-align:-4.320000px;}
.v2_c02285{vertical-align:-2.880000px;}
.v4_c02285{vertical-align:-1.080000px;}
.v0_c02285{vertical-align:0.000000px;}
.ve_c02285{vertical-align:1.438200px;}
.v9_c02285{vertical-align:2.880000px;}
.vc_c02285{vertical-align:3.960000px;}
.v1_c02285{vertical-align:5.400000px;}
.v6_c02285{vertical-align:7.560000px;}
.vb_c02285{vertical-align:9.360000px;}
.v7_c02285{vertical-align:10.438200px;}
.v5_c02285{vertical-align:12.960000px;}
.ls3c_c02285{letter-spacing:-0.178200px;}
.ls3b_c02285{letter-spacing:-0.118800px;}
.ls39_c02285{letter-spacing:-0.086184px;}
.ls3e_c02285{letter-spacing:-0.078156px;}
.ls35_c02285{letter-spacing:-0.043200px;}
.ls37_c02285{letter-spacing:-0.019152px;}
.ls36_c02285{letter-spacing:-0.010800px;}
.ls3d_c02285{letter-spacing:-0.009576px;}
.ls33_c02285{letter-spacing:0.000000px;}
.ls21_c02285{letter-spacing:0.006012px;}
.ls2_c02285{letter-spacing:0.010800px;}
.ls5_c02285{letter-spacing:0.012636px;}
.ls2a_c02285{letter-spacing:0.013176px;}
.ls16_c02285{letter-spacing:0.014400px;}
.ls26_c02285{letter-spacing:0.019764px;}
.ls1_c02285{letter-spacing:0.021600px;}
.ls4_c02285{letter-spacing:0.028728px;}
.ls0_c02285{letter-spacing:0.028800px;}
.ls6_c02285{letter-spacing:0.032400px;}
.ls1a_c02285{letter-spacing:0.033696px;}
.ls10_c02285{letter-spacing:0.037800px;}
.ls3_c02285{letter-spacing:0.043092px;}
.lsa_c02285{letter-spacing:0.043200px;}
.ls19_c02285{letter-spacing:0.046116px;}
.ls1d_c02285{letter-spacing:0.048600px;}
.ls13_c02285{letter-spacing:0.052668px;}
.ls1c_c02285{letter-spacing:0.054000px;}
.ls18_c02285{letter-spacing:0.059292px;}
.ls24_c02285{letter-spacing:0.065880px;}
.ls1f_c02285{letter-spacing:0.067032px;}
.ls1b_c02285{letter-spacing:0.070200px;}
.lse_c02285{letter-spacing:0.076608px;}
.ls1e_c02285{letter-spacing:0.086184px;}
.ls30_c02285{letter-spacing:0.092232px;}
.ls2c_c02285{letter-spacing:0.105408px;}
.ls9_c02285{letter-spacing:0.110124px;}
.ls14_c02285{letter-spacing:0.114912px;}
.ls20_c02285{letter-spacing:0.119700px;}
.ls15_c02285{letter-spacing:0.138852px;}
.ls34_c02285{letter-spacing:0.151200px;}
.ls29_c02285{letter-spacing:0.151524px;}
.ls7_c02285{letter-spacing:0.158112px;}
.ls12_c02285{letter-spacing:0.162792px;}
.ls38_c02285{letter-spacing:0.167580px;}
.ls2e_c02285{letter-spacing:0.177876px;}
.ls22_c02285{letter-spacing:0.180360px;}
.lsf_c02285{letter-spacing:0.181944px;}
.lsc_c02285{letter-spacing:0.205884px;}
.ls32_c02285{letter-spacing:88.560000px;}
.ls8_c02285{letter-spacing:114.120000px;}
.ls28_c02285{letter-spacing:121.320000px;}
.ls3a_c02285{letter-spacing:145.621800px;}
.lsd_c02285{letter-spacing:155.698200px;}
.ls11_c02285{letter-spacing:156.778200px;}
.ls17_c02285{letter-spacing:199.978200px;}
.lsb_c02285{letter-spacing:200.790000px;}
.ls2b_c02285{letter-spacing:208.440000px;}
.ls2d_c02285{letter-spacing:218.880000px;}
.ls27_c02285{letter-spacing:285.480000px;}
.ls23_c02285{letter-spacing:351.000000px;}
.ls25_c02285{letter-spacing:362.160000px;}
.ls2f_c02285{letter-spacing:367.560000px;}
.ls31_c02285{letter-spacing:433.440000px;}
.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;}
}
.ws3_c02285{word-spacing:-16.647876px;}
.ws0_c02285{word-spacing:-16.628112px;}
.ws6_c02285{word-spacing:-16.562232px;}
.ws5_c02285{word-spacing:-16.529292px;}
.ws2_c02285{word-spacing:-16.516116px;}
.wsd_c02285{word-spacing:-0.296856px;}
.wsc_c02285{word-spacing:-0.272916px;}
.wse_c02285{word-spacing:-0.253764px;}
.ws11_c02285{word-spacing:-0.229824px;}
.ws20_c02285{word-spacing:-0.210672px;}
.ws10_c02285{word-spacing:-0.205884px;}
.ws17_c02285{word-spacing:-0.122148px;}
.wsf_c02285{word-spacing:-0.119700px;}
.ws13_c02285{word-spacing:-0.115200px;}
.wsb_c02285{word-spacing:-0.101088px;}
.ws21_c02285{word-spacing:-0.100800px;}
.ws22_c02285{word-spacing:-0.090180px;}
.ws9_c02285{word-spacing:-0.086400px;}
.wsa_c02285{word-spacing:-0.021600px;}
.ws12_c02285{word-spacing:-0.014400px;}
.ws26_c02285{word-spacing:-0.013176px;}
.ws8_c02285{word-spacing:0.000000px;}
.ws23_c02285{word-spacing:0.026352px;}
.ws16_c02285{word-spacing:0.032940px;}
.ws24_c02285{word-spacing:0.072468px;}
.ws25_c02285{word-spacing:0.079056px;}
.ws18_c02285{word-spacing:0.108000px;}
.ws19_c02285{word-spacing:0.124200px;}
.ws1a_c02285{word-spacing:0.129600px;}
.ws1d_c02285{word-spacing:1.235304px;}
.ws1f_c02285{word-spacing:1.273608px;}
.ws1e_c02285{word-spacing:1.307124px;}
.ws1b_c02285{word-spacing:5.941908px;}
.ws1c_c02285{word-spacing:5.961060px;}
.ws1_c02285{word-spacing:58.609440px;}
.ws15_c02285{word-spacing:156.735000px;}
.ws4_c02285{word-spacing:165.925368px;}
.ws7_c02285{word-spacing:182.441484px;}
.ws14_c02285{word-spacing:241.336800px;}
._1c_c02285{margin-left:-1.085400px;}
._14_c02285{width:1.080000px;}
._1e_c02285{width:41.990724px;}
._13_c02285{width:43.205400px;}
._a_c02285{width:50.577552px;}
._f_c02285{width:62.053200px;}
._7_c02285{width:72.964440px;}
._11_c02285{width:75.780000px;}
._8_c02285{width:76.950180px;}
._19_c02285{width:78.264000px;}
._1a_c02285{width:83.013552px;}
._d_c02285{width:84.060000px;}
._1_c02285{width:85.194000px;}
._0_c02285{width:88.221600px;}
._c_c02285{width:90.075600px;}
._16_c02285{width:91.650888px;}
._e_c02285{width:92.664000px;}
._9_c02285{width:99.655200px;}
._b_c02285{width:104.479380px;}
._3_c02285{width:106.740000px;}
._29_c02285{width:116.665776px;}
._4_c02285{width:118.378944px;}
._18_c02285{width:119.664000px;}
._2_c02285{width:122.220000px;}
._10_c02285{width:128.979648px;}
._15_c02285{width:145.620000px;}
._1d_c02285{width:146.644596px;}
._6_c02285{width:148.307688px;}
._5_c02285{width:153.511524px;}
._17_c02285{width:182.604168px;}
._27_c02285{width:203.036400px;}
._22_c02285{width:216.180000px;}
._28_c02285{width:238.924656px;}
._12_c02285{width:240.510636px;}
._1b_c02285{width:241.615656px;}
._20_c02285{width:283.500000px;}
._23_c02285{width:310.104000px;}
._21_c02285{width:347.693400px;}
._25_c02285{width:353.833200px;}
._1f_c02285{width:414.180000px;}
._24_c02285{width:419.929200px;}
._26_c02285{width:605.295000px;}
.fc0_c02285{color:rgb(0,0,0);}
.fs5_c02285{font-size:11.880000px;}
.fs3_c02285{font-size:42.120000px;}
.fs2_c02285{font-size:47.880000px;}
.fs1_c02285{font-size:54.000000px;}
.fs6_c02285{font-size:60.120000px;}
.fs4_c02285{font-size:65.880000px;}
.fs0_c02285{font-size:72.000000px;}
.y0_c02285{bottom:0.000000px;}
.y4_c02285{bottom:57.360450px;}
.y3_c02285{bottom:78.060450px;}
.y4b_c02285{bottom:119.280450px;}
.y4a_c02285{bottom:134.760900px;}
.y49_c02285{bottom:150.330450px;}
.y48_c02285{bottom:167.700600px;}
.y47_c02285{bottom:186.690450px;}
.y46_c02285{bottom:207.390450px;}
.y45_c02285{bottom:226.380450px;}
.y44_c02285{bottom:245.280600px;}
.y43_c02285{bottom:264.270450px;}
.y42_c02285{bottom:284.970450px;}
.y41_c02285{bottom:305.310450px;}
.y40_c02285{bottom:323.580450px;}
.y3f_c02285{bottom:346.710450px;}
.y3e_c02285{bottom:362.280000px;}
.y3d_c02285{bottom:377.760450px;}
.y3c_c02285{bottom:394.950600px;}
.y3b_c02285{bottom:415.470900px;}
.y3a_c02285{bottom:431.040450px;}
.y39_c02285{bottom:446.520900px;}
.y38_c02285{bottom:462.090450px;}
.y37_c02285{bottom:477.570900px;}
.y36_c02285{bottom:493.140450px;}
.y35_c02285{bottom:508.530099px;}
.y34_c02285{bottom:522.300387px;}
.y33_c02285{bottom:536.160450px;}
.y32_c02285{bottom:557.220450px;}
.y31_c02285{bottom:572.790450px;}
.y30_c02285{bottom:588.270450px;}
.y2f_c02285{bottom:603.840450px;}
.y2e_c02285{bottom:619.320450px;}
.y2b_c02285{bottom:637.140450px;}
.y2d_c02285{bottom:637.410450px;}
.y2c_c02285{bottom:654.240450px;}
.y2a_c02285{bottom:669.990450px;}
.y29_c02285{bottom:688.170900px;}
.y28_c02285{bottom:703.740450px;}
.y27_c02285{bottom:719.220450px;}
.y26_c02285{bottom:719.580000px;}
.y25_c02285{bottom:738.210450px;}
.y24_c02285{bottom:738.570450px;}
.y23_c02285{bottom:757.560450px;}
.y22_c02285{bottom:776.100450px;}
.y21_c02285{bottom:776.550900px;}
.y20_c02285{bottom:796.800450px;}
.y1f_c02285{bottom:797.250900px;}
.y1e_c02285{bottom:817.500450px;}
.y1d_c02285{bottom:817.950450px;}
.y1c_c02285{bottom:838.650450px;}
.y1b_c02285{bottom:857.190450px;}
.y1a_c02285{bottom:857.550450px;}
.y19_c02285{bottom:878.970450px;}
.y18_c02285{bottom:898.140450px;}
.y17_c02285{bottom:914.610450px;}
.y16_c02285{bottom:935.400450px;}
.y15_c02285{bottom:944.220450px;}
.y14_c02285{bottom:944.579550px;}
.y13_c02285{bottom:963.210450px;}
.y12_c02285{bottom:963.570450px;}
.y11_c02285{bottom:982.560450px;}
.y10_c02285{bottom:1001.100450px;}
.yf_c02285{bottom:1001.461350px;}
.ye_c02285{bottom:1021.800450px;}
.yd_c02285{bottom:1022.161350px;}
.yc_c02285{bottom:1042.500450px;}
.yb_c02285{bottom:1042.860450px;}
.ya_c02285{bottom:1063.560450px;}
.y9_c02285{bottom:1082.190450px;}
.y8_c02285{bottom:1082.550450px;}
.y7_c02285{bottom:1103.970450px;}
.y6_c02285{bottom:1123.140450px;}
.y5_c02285{bottom:1139.610450px;}
.y2_c02285{bottom:1172.640450px;}
.y1_c02285{bottom:1193.160450px;}
.ha_c02285{height:10.551621px;}
.he_c02285{height:37.410293px;}
.h10_c02285{height:42.011895px;}
.hf_c02285{height:47.381836px;}
.h4_c02285{height:47.961914px;}
.hc_c02285{height:48.461836px;}
.h3_c02285{height:48.570293px;}
.h11_c02285{height:53.397598px;}
.hd_c02285{height:58.513535px;}
.h8_c02285{height:61.033535px;}
.h6_c02285{height:61.393535px;}
.h9_c02285{height:62.473535px;}
.hb_c02285{height:62.833535px;}
.h2_c02285{height:63.175781px;}
.h1_c02285{height:63.949219px;}
.h12_c02285{height:64.975781px;}
.h7_c02285{height:66.073535px;}
.h5_c02285{height:70.780036px;}
.h0_c02285{height:1263.000000px;}
.w1_c02285{width:892.500000px;}
.w0_c02285{width:892.830000px;}
.x0_c02285{left:0.000000px;}
.x1_c02285{left:127.620000px;}
.x8_c02285{left:134.550000px;}
.x3_c02285{left:135.630000px;}
.x4_c02285{left:143.820000px;}
.x5_c02285{left:164.790000px;}
.x6_c02285{left:220.680000px;}
.x9_c02285{left:336.240000px;}
.xa_c02285{left:354.780000px;}
.x2_c02285{left:432.990000px;}
.x7_c02285{left:555.390000px;}
@media print{
.v8_c02285{vertical-align:-18.561600pt;}
.va_c02285{vertical-align:-9.278400pt;}
.vf_c02285{vertical-align:-7.680000pt;}
.vd_c02285{vertical-align:-6.081600pt;}
.v3_c02285{vertical-align:-3.840000pt;}
.v2_c02285{vertical-align:-2.560000pt;}
.v4_c02285{vertical-align:-0.960000pt;}
.v0_c02285{vertical-align:0.000000pt;}
.ve_c02285{vertical-align:1.278400pt;}
.v9_c02285{vertical-align:2.560000pt;}
.vc_c02285{vertical-align:3.520000pt;}
.v1_c02285{vertical-align:4.800000pt;}
.v6_c02285{vertical-align:6.720000pt;}
.vb_c02285{vertical-align:8.320000pt;}
.v7_c02285{vertical-align:9.278400pt;}
.v5_c02285{vertical-align:11.520000pt;}
.ls3c_c02285{letter-spacing:-0.158400pt;}
.ls3b_c02285{letter-spacing:-0.105600pt;}
.ls39_c02285{letter-spacing:-0.076608pt;}
.ls3e_c02285{letter-spacing:-0.069472pt;}
.ls35_c02285{letter-spacing:-0.038400pt;}
.ls37_c02285{letter-spacing:-0.017024pt;}
.ls36_c02285{letter-spacing:-0.009600pt;}
.ls3d_c02285{letter-spacing:-0.008512pt;}
.ls33_c02285{letter-spacing:0.000000pt;}
.ls21_c02285{letter-spacing:0.005344pt;}
.ls2_c02285{letter-spacing:0.009600pt;}
.ls5_c02285{letter-spacing:0.011232pt;}
.ls2a_c02285{letter-spacing:0.011712pt;}
.ls16_c02285{letter-spacing:0.012800pt;}
.ls26_c02285{letter-spacing:0.017568pt;}
.ls1_c02285{letter-spacing:0.019200pt;}
.ls4_c02285{letter-spacing:0.025536pt;}
.ls0_c02285{letter-spacing:0.025600pt;}
.ls6_c02285{letter-spacing:0.028800pt;}
.ls1a_c02285{letter-spacing:0.029952pt;}
.ls10_c02285{letter-spacing:0.033600pt;}
.ls3_c02285{letter-spacing:0.038304pt;}
.lsa_c02285{letter-spacing:0.038400pt;}
.ls19_c02285{letter-spacing:0.040992pt;}
.ls1d_c02285{letter-spacing:0.043200pt;}
.ls13_c02285{letter-spacing:0.046816pt;}
.ls1c_c02285{letter-spacing:0.048000pt;}
.ls18_c02285{letter-spacing:0.052704pt;}
.ls24_c02285{letter-spacing:0.058560pt;}
.ls1f_c02285{letter-spacing:0.059584pt;}
.ls1b_c02285{letter-spacing:0.062400pt;}
.lse_c02285{letter-spacing:0.068096pt;}
.ls1e_c02285{letter-spacing:0.076608pt;}
.ls30_c02285{letter-spacing:0.081984pt;}
.ls2c_c02285{letter-spacing:0.093696pt;}
.ls9_c02285{letter-spacing:0.097888pt;}
.ls14_c02285{letter-spacing:0.102144pt;}
.ls20_c02285{letter-spacing:0.106400pt;}
.ls15_c02285{letter-spacing:0.123424pt;}
.ls34_c02285{letter-spacing:0.134400pt;}
.ls29_c02285{letter-spacing:0.134688pt;}
.ls7_c02285{letter-spacing:0.140544pt;}
.ls12_c02285{letter-spacing:0.144704pt;}
.ls38_c02285{letter-spacing:0.148960pt;}
.ls2e_c02285{letter-spacing:0.158112pt;}
.ls22_c02285{letter-spacing:0.160320pt;}
.lsf_c02285{letter-spacing:0.161728pt;}
.lsc_c02285{letter-spacing:0.183008pt;}
.ls32_c02285{letter-spacing:78.720000pt;}
.ls8_c02285{letter-spacing:101.440000pt;}
.ls28_c02285{letter-spacing:107.840000pt;}
.ls3a_c02285{letter-spacing:129.441600pt;}
.lsd_c02285{letter-spacing:138.398400pt;}
.ls11_c02285{letter-spacing:139.358400pt;}
.ls17_c02285{letter-spacing:177.758400pt;}
.lsb_c02285{letter-spacing:178.480000pt;}
.ls2b_c02285{letter-spacing:185.280000pt;}
.ls2d_c02285{letter-spacing:194.560000pt;}
.ls27_c02285{letter-spacing:253.760000pt;}
.ls23_c02285{letter-spacing:312.000000pt;}
.ls25_c02285{letter-spacing:321.920000pt;}
.ls2f_c02285{letter-spacing:326.720000pt;}
.ls31_c02285{letter-spacing:385.280000pt;}
.ws3_c02285{word-spacing:-14.798112pt;}
.ws0_c02285{word-spacing:-14.780544pt;}
.ws6_c02285{word-spacing:-14.721984pt;}
.ws5_c02285{word-spacing:-14.692704pt;}
.ws2_c02285{word-spacing:-14.680992pt;}
.wsd_c02285{word-spacing:-0.263872pt;}
.wsc_c02285{word-spacing:-0.242592pt;}
.wse_c02285{word-spacing:-0.225568pt;}
.ws11_c02285{word-spacing:-0.204288pt;}
.ws20_c02285{word-spacing:-0.187264pt;}
.ws10_c02285{word-spacing:-0.183008pt;}
.ws17_c02285{word-spacing:-0.108576pt;}
.wsf_c02285{word-spacing:-0.106400pt;}
.ws13_c02285{word-spacing:-0.102400pt;}
.wsb_c02285{word-spacing:-0.089856pt;}
.ws21_c02285{word-spacing:-0.089600pt;}
.ws22_c02285{word-spacing:-0.080160pt;}
.ws9_c02285{word-spacing:-0.076800pt;}
.wsa_c02285{word-spacing:-0.019200pt;}
.ws12_c02285{word-spacing:-0.012800pt;}
.ws26_c02285{word-spacing:-0.011712pt;}
.ws8_c02285{word-spacing:0.000000pt;}
.ws23_c02285{word-spacing:0.023424pt;}
.ws16_c02285{word-spacing:0.029280pt;}
.ws24_c02285{word-spacing:0.064416pt;}
.ws25_c02285{word-spacing:0.070272pt;}
.ws18_c02285{word-spacing:0.096000pt;}
.ws19_c02285{word-spacing:0.110400pt;}
.ws1a_c02285{word-spacing:0.115200pt;}
.ws1d_c02285{word-spacing:1.098048pt;}
.ws1f_c02285{word-spacing:1.132096pt;}
.ws1e_c02285{word-spacing:1.161888pt;}
.ws1b_c02285{word-spacing:5.281696pt;}
.ws1c_c02285{word-spacing:5.298720pt;}
.ws1_c02285{word-spacing:52.097280pt;}
.ws15_c02285{word-spacing:139.320000pt;}
.ws4_c02285{word-spacing:147.489216pt;}
.ws7_c02285{word-spacing:162.170208pt;}
.ws14_c02285{word-spacing:214.521600pt;}
._1c_c02285{margin-left:-0.964800pt;}
._14_c02285{width:0.960000pt;}
._1e_c02285{width:37.325088pt;}
._13_c02285{width:38.404800pt;}
._a_c02285{width:44.957824pt;}
._f_c02285{width:55.158400pt;}
._7_c02285{width:64.857280pt;}
._11_c02285{width:67.360000pt;}
._8_c02285{width:68.400160pt;}
._19_c02285{width:69.568000pt;}
._1a_c02285{width:73.789824pt;}
._d_c02285{width:74.720000pt;}
._1_c02285{width:75.728000pt;}
._0_c02285{width:78.419200pt;}
._c_c02285{width:80.067200pt;}
._16_c02285{width:81.467456pt;}
._e_c02285{width:82.368000pt;}
._9_c02285{width:88.582400pt;}
._b_c02285{width:92.870560pt;}
._3_c02285{width:94.880000pt;}
._29_c02285{width:103.702912pt;}
._4_c02285{width:105.225728pt;}
._18_c02285{width:106.368000pt;}
._2_c02285{width:108.640000pt;}
._10_c02285{width:114.648576pt;}
._15_c02285{width:129.440000pt;}
._1d_c02285{width:130.350752pt;}
._6_c02285{width:131.829056pt;}
._5_c02285{width:136.454688pt;}
._17_c02285{width:162.314816pt;}
._27_c02285{width:180.476800pt;}
._22_c02285{width:192.160000pt;}
._28_c02285{width:212.377472pt;}
._12_c02285{width:213.787232pt;}
._1b_c02285{width:214.769472pt;}
._20_c02285{width:252.000000pt;}
._23_c02285{width:275.648000pt;}
._21_c02285{width:309.060800pt;}
._25_c02285{width:314.518400pt;}
._1f_c02285{width:368.160000pt;}
._24_c02285{width:373.270400pt;}
._26_c02285{width:538.040000pt;}
.fs5_c02285{font-size:10.560000pt;}
.fs3_c02285{font-size:37.440000pt;}
.fs2_c02285{font-size:42.560000pt;}
.fs1_c02285{font-size:48.000000pt;}
.fs6_c02285{font-size:53.440000pt;}
.fs4_c02285{font-size:58.560000pt;}
.fs0_c02285{font-size:64.000000pt;}
.y0_c02285{bottom:0.000000pt;}
.y4_c02285{bottom:50.987067pt;}
.y3_c02285{bottom:69.387067pt;}
.y4b_c02285{bottom:106.027067pt;}
.y4a_c02285{bottom:119.787467pt;}
.y49_c02285{bottom:133.627067pt;}
.y48_c02285{bottom:149.067200pt;}
.y47_c02285{bottom:165.947067pt;}
.y46_c02285{bottom:184.347067pt;}
.y45_c02285{bottom:201.227067pt;}
.y44_c02285{bottom:218.027200pt;}
.y43_c02285{bottom:234.907067pt;}
.y42_c02285{bottom:253.307067pt;}
.y41_c02285{bottom:271.387067pt;}
.y40_c02285{bottom:287.627067pt;}
.y3f_c02285{bottom:308.187067pt;}
.y3e_c02285{bottom:322.026667pt;}
.y3d_c02285{bottom:335.787067pt;}
.y3c_c02285{bottom:351.067200pt;}
.y3b_c02285{bottom:369.307467pt;}
.y3a_c02285{bottom:383.147067pt;}
.y39_c02285{bottom:396.907467pt;}
.y38_c02285{bottom:410.747067pt;}
.y37_c02285{bottom:424.507467pt;}
.y36_c02285{bottom:438.347067pt;}
.y35_c02285{bottom:452.026755pt;}
.y34_c02285{bottom:464.267011pt;}
.y33_c02285{bottom:476.587067pt;}
.y32_c02285{bottom:495.307067pt;}
.y31_c02285{bottom:509.147067pt;}
.y30_c02285{bottom:522.907067pt;}
.y2f_c02285{bottom:536.747067pt;}
.y2e_c02285{bottom:550.507067pt;}
.y2b_c02285{bottom:566.347067pt;}
.y2d_c02285{bottom:566.587067pt;}
.y2c_c02285{bottom:581.547067pt;}
.y2a_c02285{bottom:595.547067pt;}
.y29_c02285{bottom:611.707467pt;}
.y28_c02285{bottom:625.547067pt;}
.y27_c02285{bottom:639.307067pt;}
.y26_c02285{bottom:639.626667pt;}
.y25_c02285{bottom:656.187067pt;}
.y24_c02285{bottom:656.507067pt;}
.y23_c02285{bottom:673.387067pt;}
.y22_c02285{bottom:689.867067pt;}
.y21_c02285{bottom:690.267467pt;}
.y20_c02285{bottom:708.267067pt;}
.y1f_c02285{bottom:708.667467pt;}
.y1e_c02285{bottom:726.667067pt;}
.y1d_c02285{bottom:727.067067pt;}
.y1c_c02285{bottom:745.467067pt;}
.y1b_c02285{bottom:761.947067pt;}
.y1a_c02285{bottom:762.267067pt;}
.y19_c02285{bottom:781.307067pt;}
.y18_c02285{bottom:798.347067pt;}
.y17_c02285{bottom:812.987067pt;}
.y16_c02285{bottom:831.467067pt;}
.y15_c02285{bottom:839.307067pt;}
.y14_c02285{bottom:839.626267pt;}
.y13_c02285{bottom:856.187067pt;}
.y12_c02285{bottom:856.507067pt;}
.y11_c02285{bottom:873.387067pt;}
.y10_c02285{bottom:889.867067pt;}
.yf_c02285{bottom:890.187867pt;}
.ye_c02285{bottom:908.267067pt;}
.yd_c02285{bottom:908.587867pt;}
.yc_c02285{bottom:926.667067pt;}
.yb_c02285{bottom:926.987067pt;}
.ya_c02285{bottom:945.387067pt;}
.y9_c02285{bottom:961.947067pt;}
.y8_c02285{bottom:962.267067pt;}
.y7_c02285{bottom:981.307067pt;}
.y6_c02285{bottom:998.347067pt;}
.y5_c02285{bottom:1012.987067pt;}
.y2_c02285{bottom:1042.347067pt;}
.y1_c02285{bottom:1060.587067pt;}
.ha_c02285{height:9.379219pt;}
.he_c02285{height:33.253594pt;}
.h10_c02285{height:37.343906pt;}
.hf_c02285{height:42.117188pt;}
.h4_c02285{height:42.632812pt;}
.hc_c02285{height:43.077187pt;}
.h3_c02285{height:43.173594pt;}
.h11_c02285{height:47.464531pt;}
.hd_c02285{height:52.012031pt;}
.h8_c02285{height:54.252031pt;}
.h6_c02285{height:54.572031pt;}
.h9_c02285{height:55.532031pt;}
.hb_c02285{height:55.852031pt;}
.h2_c02285{height:56.156250pt;}
.h1_c02285{height:56.843750pt;}
.h12_c02285{height:57.756250pt;}
.h7_c02285{height:58.732031pt;}
.h5_c02285{height:62.915587pt;}
.h0_c02285{height:1122.666667pt;}
.w1_c02285{width:793.333333pt;}
.w0_c02285{width:793.626667pt;}
.x0_c02285{left:0.000000pt;}
.x1_c02285{left:113.440000pt;}
.x8_c02285{left:119.600000pt;}
.x3_c02285{left:120.560000pt;}
.x4_c02285{left:127.840000pt;}
.x5_c02285{left:146.480000pt;}
.x6_c02285{left:196.160000pt;}
.x9_c02285{left:298.880000pt;}
.xa_c02285{left:315.360000pt;}
.x2_c02285{left:384.880000pt;}
.x7_c02285{left:493.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_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_cbe584bb207bf8f50067806e.woff2')format("woff");}.ff1_c02286{font-family:ff1_c02286;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02286;src:url('chunks/assets/font_03332f643315193a820ffd4a.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;}
.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);}
.v2_c02286{vertical-align:-6.480000px;}
.v1_c02286{vertical-align:-1.800000px;}
.v0_c02286{vertical-align:0.000000px;}
.v3_c02286{vertical-align:5.400000px;}
.ls2b_c02286{letter-spacing:-0.318636px;}
.ls22_c02286{letter-spacing:-0.097200px;}
.ls28_c02286{letter-spacing:-0.090972px;}
.ls23_c02286{letter-spacing:-0.086184px;}
.ls27_c02286{letter-spacing:-0.067392px;}
.ls29_c02286{letter-spacing:-0.059292px;}
.ls2a_c02286{letter-spacing:-0.042084px;}
.ls26_c02286{letter-spacing:-0.038304px;}
.ls25_c02286{letter-spacing:-0.004788px;}
.ls21_c02286{letter-spacing:0.000000px;}
.ls12_c02286{letter-spacing:0.007200px;}
.ls15_c02286{letter-spacing:0.019152px;}
.ls0_c02286{letter-spacing:0.028800px;}
.lsd_c02286{letter-spacing:0.032940px;}
.ls3_c02286{letter-spacing:0.039528px;}
.ls14_c02286{letter-spacing:0.043092px;}
.ls13_c02286{letter-spacing:0.043200px;}
.lsa_c02286{letter-spacing:0.052704px;}
.ls11_c02286{letter-spacing:0.059292px;}
.ls10_c02286{letter-spacing:0.065880px;}
.ls1_c02286{letter-spacing:0.072468px;}
.ls4_c02286{letter-spacing:0.079056px;}
.lsf_c02286{letter-spacing:0.085644px;}
.ls1a_c02286{letter-spacing:0.091800px;}
.ls7_c02286{letter-spacing:0.092232px;}
.lsc_c02286{letter-spacing:0.098820px;}
.ls1f_c02286{letter-spacing:0.111996px;}
.ls18_c02286{letter-spacing:0.118584px;}
.ls6_c02286{letter-spacing:0.138348px;}
.ls2_c02286{letter-spacing:0.151524px;}
.ls17_c02286{letter-spacing:0.158112px;}
.ls24_c02286{letter-spacing:0.177876px;}
.ls16_c02286{letter-spacing:96.660000px;}
.ls1e_c02286{letter-spacing:104.580000px;}
.ls1c_c02286{letter-spacing:129.780000px;}
.ls8_c02286{letter-spacing:130.500000px;}
.ls1b_c02286{letter-spacing:148.410000px;}
.ls20_c02286{letter-spacing:171.090000px;}
.ls1d_c02286{letter-spacing:179.820000px;}
.ls19_c02286{letter-spacing:187.650000px;}
.ls5_c02286{letter-spacing:212.940000px;}
.lsb_c02286{letter-spacing:830.160000px;}
.ls9_c02286{letter-spacing:899.640000px;}
.lse_c02286{letter-spacing:1137.960000px;}
.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;}
}
.ws1_c02286{word-spacing:-16.621524px;}
.ws3_c02286{word-spacing:-16.608348px;}
.ws4_c02286{word-spacing:-10.462608px;}
.ws17_c02286{word-spacing:-0.115200px;}
.wsc_c02286{word-spacing:-0.086400px;}
.wsd_c02286{word-spacing:-0.064800px;}
.ws19_c02286{word-spacing:-0.026352px;}
.ws1c_c02286{word-spacing:-0.019764px;}
.ws18_c02286{word-spacing:-0.007200px;}
.ws12_c02286{word-spacing:-0.006588px;}
.wsb_c02286{word-spacing:0.000000px;}
.ws14_c02286{word-spacing:0.006588px;}
.ws10_c02286{word-spacing:0.013176px;}
.wse_c02286{word-spacing:0.019764px;}
.ws15_c02286{word-spacing:0.026352px;}
.ws16_c02286{word-spacing:0.032940px;}
.ws11_c02286{word-spacing:0.039528px;}
.wsf_c02286{word-spacing:0.052704px;}
.ws13_c02286{word-spacing:0.059292px;}
.ws1b_c02286{word-spacing:0.086400px;}
.ws1a_c02286{word-spacing:0.132264px;}
.ws1d_c02286{word-spacing:0.408816px;}
.ws9_c02286{word-spacing:79.476372px;}
.ws0_c02286{word-spacing:80.196372px;}
.ws8_c02286{word-spacing:87.442380px;}
.wsa_c02286{word-spacing:87.466608px;}
.ws2_c02286{word-spacing:113.316372px;}
.ws6_c02286{word-spacing:120.156372px;}
.ws7_c02286{word-spacing:120.202380px;}
.ws5_c02286{word-spacing:129.876372px;}
._4_c02286{margin-left:-1.139724px;}
._1c_c02286{width:1.027260px;}
._17_c02286{width:66.946608px;}
._11_c02286{width:72.672156px;}
._e_c02286{width:84.138912px;}
._10_c02286{width:99.649440px;}
._1_c02286{width:141.107688px;}
._c_c02286{width:287.570484px;}
._12_c02286{width:304.366428px;}
._15_c02286{width:326.791980px;}
._6_c02286{width:356.162616px;}
._1b_c02286{width:359.920908px;}
._3_c02286{width:384.170328px;}
._f_c02286{width:451.700460px;}
._16_c02286{width:453.334284px;}
._18_c02286{width:487.506240px;}
._19_c02286{width:516.774600px;}
._1a_c02286{width:567.133272px;}
._2_c02286{width:575.808660px;}
._b_c02286{width:596.152404px;}
._d_c02286{width:618.462000px;}
._5_c02286{width:631.363140px;}
._13_c02286{width:646.125516px;}
._8_c02286{width:723.636792px;}
._7_c02286{width:759.146112px;}
._9_c02286{width:788.216832px;}
._a_c02286{width:838.575504px;}
._14_c02286{width:884.209248px;}
._0_c02286{width:1597.291200px;}
.fc0_c02286{color:rgb(0,0,0);}
.fs4_c02286{font-size:42.120000px;}
.fs2_c02286{font-size:47.880000px;}
.fs1_c02286{font-size:54.000000px;}
.fs5_c02286{font-size:60.120000px;}
.fs3_c02286{font-size:65.880000px;}
.fs0_c02286{font-size:72.000000px;}
.y0_c02286{bottom:0.000000px;}
.y4_c02286{bottom:57.360450px;}
.y3_c02286{bottom:78.060450px;}
.y3f_c02286{bottom:129.810900px;}
.y3e_c02286{bottom:145.380450px;}
.y3d_c02286{bottom:160.860900px;}
.y3c_c02286{bottom:176.430450px;}
.y3b_c02286{bottom:191.910900px;}
.y3a_c02286{bottom:207.480450px;}
.y39_c02286{bottom:222.960900px;}
.y38_c02286{bottom:238.530450px;}
.y37_c02286{bottom:254.010900px;}
.y36_c02286{bottom:269.580450px;}
.y35_c02286{bottom:285.060900px;}
.y34_c02286{bottom:300.630450px;}
.y33_c02286{bottom:316.110900px;}
.y32_c02286{bottom:331.680450px;}
.y31_c02286{bottom:347.160900px;}
.y30_c02286{bottom:362.730450px;}
.y2f_c02286{bottom:379.290600px;}
.y2e_c02286{bottom:398.280450px;}
.y2d_c02286{bottom:417.180600px;}
.y2c_c02286{bottom:436.170450px;}
.y2b_c02286{bottom:455.520600px;}
.y2a_c02286{bottom:474.510450px;}
.y29_c02286{bottom:493.500600px;}
.y28_c02286{bottom:512.490450px;}
.y27_c02286{bottom:531.840450px;}
.y26_c02286{bottom:550.740450px;}
.y25_c02286{bottom:569.730450px;}
.y24_c02286{bottom:588.720450px;}
.y23_c02286{bottom:607.710450px;}
.y22_c02286{bottom:626.700450px;}
.y21_c02286{bottom:645.600450px;}
.y1f_c02286{bottom:663.600450px;}
.y1e_c02286{bottom:676.020450px;}
.y20_c02286{bottom:677.370450px;}
.y1d_c02286{bottom:692.850450px;}
.y1c_c02286{bottom:715.980900px;}
.y1b_c02286{bottom:731.550450px;}
.y1a_c02286{bottom:748.740450px;}
.y19_c02286{bottom:769.260150px;}
.y18_c02286{bottom:784.740600px;}
.y17_c02286{bottom:800.310150px;}
.y16_c02286{bottom:815.790600px;}
.y15_c02286{bottom:832.350450px;}
.y14_c02286{bottom:851.340450px;}
.y13_c02286{bottom:870.330450px;}
.y12_c02286{bottom:889.320450px;}
.y11_c02286{bottom:908.310450px;}
.y10_c02286{bottom:927.210450px;}
.yf_c02286{bottom:946.200450px;}
.ye_c02286{bottom:965.190450px;}
.yd_c02286{bottom:984.180450px;}
.yc_c02286{bottom:1003.170450px;}
.yb_c02286{bottom:1022.070450px;}
.ya_c02286{bottom:1042.770450px;}
.y9_c02286{bottom:1063.470450px;}
.y8_c02286{bottom:1082.460450px;}
.y7_c02286{bottom:1101.450450px;}
.y6_c02286{bottom:1119.810450px;}
.y5_c02286{bottom:1136.640450px;}
.y2_c02286{bottom:1172.640450px;}
.y1_c02286{bottom:1193.160450px;}
.h5_c02286{height:42.526230px;}
.h3_c02286{height:47.961914px;}
.h4_c02286{height:58.513535px;}
.h2_c02286{height:63.175781px;}
.h1_c02286{height:63.949219px;}
.h0_c02286{height:1263.000000px;}
.w1_c02286{width:892.500000px;}
.w0_c02286{width:892.830000px;}
.x0_c02286{left:0.000000px;}
.x1_c02286{left:127.620000px;}
.x3_c02286{left:135.630000px;}
.x4_c02286{left:274.230000px;}
.x2_c02286{left:432.990000px;}
.x5_c02286{left:501.390000px;}
.x6_c02286{left:542.880000px;}
.x7_c02286{left:552.240000px;}
.x8_c02286{left:593.910000px;}
.x9_c02286{left:602.460000px;}
.xa_c02286{left:642.150000px;}
.xb_c02286{left:689.940000px;}
.xc_c02286{left:731.610000px;}
@media print{
.v2_c02286{vertical-align:-5.760000pt;}
.v1_c02286{vertical-align:-1.600000pt;}
.v0_c02286{vertical-align:0.000000pt;}
.v3_c02286{vertical-align:4.800000pt;}
.ls2b_c02286{letter-spacing:-0.283232pt;}
.ls22_c02286{letter-spacing:-0.086400pt;}
.ls28_c02286{letter-spacing:-0.080864pt;}
.ls23_c02286{letter-spacing:-0.076608pt;}
.ls27_c02286{letter-spacing:-0.059904pt;}
.ls29_c02286{letter-spacing:-0.052704pt;}
.ls2a_c02286{letter-spacing:-0.037408pt;}
.ls26_c02286{letter-spacing:-0.034048pt;}
.ls25_c02286{letter-spacing:-0.004256pt;}
.ls21_c02286{letter-spacing:0.000000pt;}
.ls12_c02286{letter-spacing:0.006400pt;}
.ls15_c02286{letter-spacing:0.017024pt;}
.ls0_c02286{letter-spacing:0.025600pt;}
.lsd_c02286{letter-spacing:0.029280pt;}
.ls3_c02286{letter-spacing:0.035136pt;}
.ls14_c02286{letter-spacing:0.038304pt;}
.ls13_c02286{letter-spacing:0.038400pt;}
.lsa_c02286{letter-spacing:0.046848pt;}
.ls11_c02286{letter-spacing:0.052704pt;}
.ls10_c02286{letter-spacing:0.058560pt;}
.ls1_c02286{letter-spacing:0.064416pt;}
.ls4_c02286{letter-spacing:0.070272pt;}
.lsf_c02286{letter-spacing:0.076128pt;}
.ls1a_c02286{letter-spacing:0.081600pt;}
.ls7_c02286{letter-spacing:0.081984pt;}
.lsc_c02286{letter-spacing:0.087840pt;}
.ls1f_c02286{letter-spacing:0.099552pt;}
.ls18_c02286{letter-spacing:0.105408pt;}
.ls6_c02286{letter-spacing:0.122976pt;}
.ls2_c02286{letter-spacing:0.134688pt;}
.ls17_c02286{letter-spacing:0.140544pt;}
.ls24_c02286{letter-spacing:0.158112pt;}
.ls16_c02286{letter-spacing:85.920000pt;}
.ls1e_c02286{letter-spacing:92.960000pt;}
.ls1c_c02286{letter-spacing:115.360000pt;}
.ls8_c02286{letter-spacing:116.000000pt;}
.ls1b_c02286{letter-spacing:131.920000pt;}
.ls20_c02286{letter-spacing:152.080000pt;}
.ls1d_c02286{letter-spacing:159.840000pt;}
.ls19_c02286{letter-spacing:166.800000pt;}
.ls5_c02286{letter-spacing:189.280000pt;}
.lsb_c02286{letter-spacing:737.920000pt;}
.ls9_c02286{letter-spacing:799.680000pt;}
.lse_c02286{letter-spacing:1011.520000pt;}
.ws1_c02286{word-spacing:-14.774688pt;}
.ws3_c02286{word-spacing:-14.762976pt;}
.ws4_c02286{word-spacing:-9.300096pt;}
.ws17_c02286{word-spacing:-0.102400pt;}
.wsc_c02286{word-spacing:-0.076800pt;}
.wsd_c02286{word-spacing:-0.057600pt;}
.ws19_c02286{word-spacing:-0.023424pt;}
.ws1c_c02286{word-spacing:-0.017568pt;}
.ws18_c02286{word-spacing:-0.006400pt;}
.ws12_c02286{word-spacing:-0.005856pt;}
.wsb_c02286{word-spacing:0.000000pt;}
.ws14_c02286{word-spacing:0.005856pt;}
.ws10_c02286{word-spacing:0.011712pt;}
.wse_c02286{word-spacing:0.017568pt;}
.ws15_c02286{word-spacing:0.023424pt;}
.ws16_c02286{word-spacing:0.029280pt;}
.ws11_c02286{word-spacing:0.035136pt;}
.wsf_c02286{word-spacing:0.046848pt;}
.ws13_c02286{word-spacing:0.052704pt;}
.ws1b_c02286{word-spacing:0.076800pt;}
.ws1a_c02286{word-spacing:0.117568pt;}
.ws1d_c02286{word-spacing:0.363392pt;}
.ws9_c02286{word-spacing:70.645664pt;}
.ws0_c02286{word-spacing:71.285664pt;}
.ws8_c02286{word-spacing:77.726560pt;}
.wsa_c02286{word-spacing:77.748096pt;}
.ws2_c02286{word-spacing:100.725664pt;}
.ws6_c02286{word-spacing:106.805664pt;}
.ws7_c02286{word-spacing:106.846560pt;}
.ws5_c02286{word-spacing:115.445664pt;}
._4_c02286{margin-left:-1.013088pt;}
._1c_c02286{width:0.913120pt;}
._17_c02286{width:59.508096pt;}
._11_c02286{width:64.597472pt;}
._e_c02286{width:74.790144pt;}
._10_c02286{width:88.577280pt;}
._1_c02286{width:125.429056pt;}
._c_c02286{width:255.618208pt;}
._12_c02286{width:270.547936pt;}
._15_c02286{width:290.481760pt;}
._6_c02286{width:316.588992pt;}
._1b_c02286{width:319.929696pt;}
._3_c02286{width:341.484736pt;}
._f_c02286{width:401.511520pt;}
._16_c02286{width:402.963808pt;}
._18_c02286{width:433.338880pt;}
._19_c02286{width:459.355200pt;}
._1a_c02286{width:504.118464pt;}
._2_c02286{width:511.829920pt;}
._b_c02286{width:529.913248pt;}
._d_c02286{width:549.744000pt;}
._5_c02286{width:561.211680pt;}
._13_c02286{width:574.333792pt;}
._8_c02286{width:643.232704pt;}
._7_c02286{width:674.796544pt;}
._9_c02286{width:700.637184pt;}
._a_c02286{width:745.400448pt;}
._14_c02286{width:785.963776pt;}
._0_c02286{width:1419.814400pt;}
.fs4_c02286{font-size:37.440000pt;}
.fs2_c02286{font-size:42.560000pt;}
.fs1_c02286{font-size:48.000000pt;}
.fs5_c02286{font-size:53.440000pt;}
.fs3_c02286{font-size:58.560000pt;}
.fs0_c02286{font-size:64.000000pt;}
.y0_c02286{bottom:0.000000pt;}
.y4_c02286{bottom:50.987067pt;}
.y3_c02286{bottom:69.387067pt;}
.y3f_c02286{bottom:115.387467pt;}
.y3e_c02286{bottom:129.227067pt;}
.y3d_c02286{bottom:142.987467pt;}
.y3c_c02286{bottom:156.827067pt;}
.y3b_c02286{bottom:170.587467pt;}
.y3a_c02286{bottom:184.427067pt;}
.y39_c02286{bottom:198.187467pt;}
.y38_c02286{bottom:212.027067pt;}
.y37_c02286{bottom:225.787467pt;}
.y36_c02286{bottom:239.627067pt;}
.y35_c02286{bottom:253.387467pt;}
.y34_c02286{bottom:267.227067pt;}
.y33_c02286{bottom:280.987467pt;}
.y32_c02286{bottom:294.827067pt;}
.y31_c02286{bottom:308.587467pt;}
.y30_c02286{bottom:322.427067pt;}
.y2f_c02286{bottom:337.147200pt;}
.y2e_c02286{bottom:354.027067pt;}
.y2d_c02286{bottom:370.827200pt;}
.y2c_c02286{bottom:387.707067pt;}
.y2b_c02286{bottom:404.907200pt;}
.y2a_c02286{bottom:421.787067pt;}
.y29_c02286{bottom:438.667200pt;}
.y28_c02286{bottom:455.547067pt;}
.y27_c02286{bottom:472.747067pt;}
.y26_c02286{bottom:489.547067pt;}
.y25_c02286{bottom:506.427067pt;}
.y24_c02286{bottom:523.307067pt;}
.y23_c02286{bottom:540.187067pt;}
.y22_c02286{bottom:557.067067pt;}
.y21_c02286{bottom:573.867067pt;}
.y1f_c02286{bottom:589.867067pt;}
.y1e_c02286{bottom:600.907067pt;}
.y20_c02286{bottom:602.107067pt;}
.y1d_c02286{bottom:615.867067pt;}
.y1c_c02286{bottom:636.427467pt;}
.y1b_c02286{bottom:650.267067pt;}
.y1a_c02286{bottom:665.547067pt;}
.y19_c02286{bottom:683.786800pt;}
.y18_c02286{bottom:697.547200pt;}
.y17_c02286{bottom:711.386800pt;}
.y16_c02286{bottom:725.147200pt;}
.y15_c02286{bottom:739.867067pt;}
.y14_c02286{bottom:756.747067pt;}
.y13_c02286{bottom:773.627067pt;}
.y12_c02286{bottom:790.507067pt;}
.y11_c02286{bottom:807.387067pt;}
.y10_c02286{bottom:824.187067pt;}
.yf_c02286{bottom:841.067067pt;}
.ye_c02286{bottom:857.947067pt;}
.yd_c02286{bottom:874.827067pt;}
.yc_c02286{bottom:891.707067pt;}
.yb_c02286{bottom:908.507067pt;}
.ya_c02286{bottom:926.907067pt;}
.y9_c02286{bottom:945.307067pt;}
.y8_c02286{bottom:962.187067pt;}
.y7_c02286{bottom:979.067067pt;}
.y6_c02286{bottom:995.387067pt;}
.y5_c02286{bottom:1010.347067pt;}
.y2_c02286{bottom:1042.347067pt;}
.y1_c02286{bottom:1060.587067pt;}
.h5_c02286{height:37.801094pt;}
.h3_c02286{height:42.632812pt;}
.h4_c02286{height:52.012031pt;}
.h2_c02286{height:56.156250pt;}
.h1_c02286{height:56.843750pt;}
.h0_c02286{height:1122.666667pt;}
.w1_c02286{width:793.333333pt;}
.w0_c02286{width:793.626667pt;}
.x0_c02286{left:0.000000pt;}
.x1_c02286{left:113.440000pt;}
.x3_c02286{left:120.560000pt;}
.x4_c02286{left:243.760000pt;}
.x2_c02286{left:384.880000pt;}
.x5_c02286{left:445.680000pt;}
.x6_c02286{left:482.560000pt;}
.x7_c02286{left:490.880000pt;}
.x8_c02286{left:527.920000pt;}
.x9_c02286{left:535.520000pt;}
.xa_c02286{left:570.800000pt;}
.xb_c02286{left:613.280000pt;}
.xc_c02286{left:650.320000pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c02287 {
      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_c02287 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c02287 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c02287 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_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_c9f0d9a6742576844a4b3d66.woff2')format("woff");}.ff1_c02288{font-family:ff1_c02288;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02288;src:url('chunks/assets/font_a151c18dfad16930335e64e0.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02288{font-family:ff3_c02288;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_c02288;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02288{font-family:ff4_c02288;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;}
.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);}
.v1_c02288{vertical-align:-5.400000px;}
.v0_c02288{vertical-align:0.000000px;}
.v5_c02288{vertical-align:1.080000px;}
.v2_c02288{vertical-align:5.760000px;}
.v4_c02288{vertical-align:11.160000px;}
.v3_c02288{vertical-align:16.200000px;}
.ls2a_c02288{letter-spacing:-0.138996px;}
.ls2e_c02288{letter-spacing:-0.052704px;}
.ls26_c02288{letter-spacing:-0.050400px;}
.ls2d_c02288{letter-spacing:-0.039528px;}
.ls27_c02288{letter-spacing:-0.021600px;}
.ls2f_c02288{letter-spacing:-0.018036px;}
.ls24_c02288{letter-spacing:-0.014400px;}
.ls25_c02288{letter-spacing:-0.007200px;}
.ls23_c02288{letter-spacing:0.000000px;}
.ls12_c02288{letter-spacing:0.006588px;}
.ls9_c02288{letter-spacing:0.007200px;}
.ls1c_c02288{letter-spacing:0.013176px;}
.ls3_c02288{letter-spacing:0.014400px;}
.ls1f_c02288{letter-spacing:0.019764px;}
.ls2_c02288{letter-spacing:0.021600px;}
.ls13_c02288{letter-spacing:0.026352px;}
.ls0_c02288{letter-spacing:0.028800px;}
.lsb_c02288{letter-spacing:0.032940px;}
.ls1_c02288{letter-spacing:0.036000px;}
.lsc_c02288{letter-spacing:0.038844px;}
.ls1d_c02288{letter-spacing:0.039528px;}
.ls4_c02288{letter-spacing:0.043200px;}
.ls17_c02288{letter-spacing:0.046116px;}
.ls8_c02288{letter-spacing:0.050400px;}
.ls1e_c02288{letter-spacing:0.052704px;}
.ls5_c02288{letter-spacing:0.057600px;}
.lsd_c02288{letter-spacing:0.059292px;}
.ls7_c02288{letter-spacing:0.064800px;}
.ls1a_c02288{letter-spacing:0.065880px;}
.ls16_c02288{letter-spacing:0.072468px;}
.ls18_c02288{letter-spacing:0.079056px;}
.lsa_c02288{letter-spacing:0.079200px;}
.ls11_c02288{letter-spacing:0.085644px;}
.ls6_c02288{letter-spacing:0.086400px;}
.ls19_c02288{letter-spacing:0.105408px;}
.ls14_c02288{letter-spacing:0.111996px;}
.ls15_c02288{letter-spacing:0.138348px;}
.ls29_c02288{letter-spacing:0.138852px;}
.ls28_c02288{letter-spacing:0.144288px;}
.ls1b_c02288{letter-spacing:0.158112px;}
.ls2c_c02288{letter-spacing:0.180360px;}
.ls2b_c02288{letter-spacing:0.181116px;}
.ls22_c02288{letter-spacing:0.181944px;}
.ls21_c02288{letter-spacing:0.210672px;}
.ls10_c02288{letter-spacing:0.239400px;}
.lse_c02288{letter-spacing:0.541044px;}
.lsf_c02288{letter-spacing:90.267660px;}
.ls20_c02288{letter-spacing:1737.450000px;}
.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;}
}
.ws4_c02288{word-spacing:-47.880000px;}
.ws2_c02288{word-spacing:-18.050400px;}
.ws1_c02288{word-spacing:-18.043200px;}
.ws0_c02288{word-spacing:-18.000000px;}
.ws7_c02288{word-spacing:-16.608348px;}
.ws6_c02288{word-spacing:-16.581996px;}
.ws9_c02288{word-spacing:-16.575408px;}
.ws5_c02288{word-spacing:-16.555644px;}
.wsd_c02288{word-spacing:-16.549056px;}
.ws8_c02288{word-spacing:-16.542468px;}
.ws10_c02288{word-spacing:-16.535880px;}
.wsb_c02288{word-spacing:-16.529292px;}
.wse_c02288{word-spacing:-16.522704px;}
.ws3_c02288{word-spacing:-16.502940px;}
.wsc_c02288{word-spacing:-16.483176px;}
.wsf_c02288{word-spacing:-16.417296px;}
.ws29_c02288{word-spacing:-0.631800px;}
.ws37_c02288{word-spacing:-0.301644px;}
.ws35_c02288{word-spacing:-0.252504px;}
.ws13_c02288{word-spacing:-0.151200px;}
.ws12_c02288{word-spacing:-0.086400px;}
.ws26_c02288{word-spacing:-0.079200px;}
.ws25_c02288{word-spacing:-0.064800px;}
.ws20_c02288{word-spacing:-0.036000px;}
.ws1f_c02288{word-spacing:-0.028800px;}
.ws32_c02288{word-spacing:-0.013176px;}
.ws11_c02288{word-spacing:0.000000px;}
.ws2e_c02288{word-spacing:0.013176px;}
.ws30_c02288{word-spacing:0.019764px;}
.ws2f_c02288{word-spacing:0.026352px;}
.ws2a_c02288{word-spacing:0.032940px;}
.ws33_c02288{word-spacing:0.039528px;}
.ws27_c02288{word-spacing:0.046116px;}
.ws34_c02288{word-spacing:0.052704px;}
.ws28_c02288{word-spacing:0.059292px;}
.ws2d_c02288{word-spacing:0.065880px;}
.ws31_c02288{word-spacing:0.079056px;}
.ws2b_c02288{word-spacing:0.085644px;}
.ws36_c02288{word-spacing:0.108216px;}
.ws19_c02288{word-spacing:4.204800px;}
.ws18_c02288{word-spacing:4.240800px;}
.ws1a_c02288{word-spacing:4.327200px;}
.ws1c_c02288{word-spacing:4.896000px;}
.ws1b_c02288{word-spacing:4.982400px;}
.ws1e_c02288{word-spacing:6.307200px;}
.ws1d_c02288{word-spacing:6.400800px;}
.ws14_c02288{word-spacing:10.353600px;}
.ws15_c02288{word-spacing:10.418400px;}
.ws23_c02288{word-spacing:18.540000px;}
.ws24_c02288{word-spacing:18.698400px;}
.ws21_c02288{word-spacing:20.347200px;}
.ws22_c02288{word-spacing:20.512800px;}
.ws17_c02288{word-spacing:22.572000px;}
.ws16_c02288{word-spacing:22.694400px;}
.ws2c_c02288{word-spacing:24.533712px;}
.wsa_c02288{word-spacing:598.273668px;}
._0_c02288{margin-left:-1.368000px;}
._8_c02288{width:1.238544px;}
._6_c02288{width:24.461244px;}
._3_c02288{width:52.468920px;}
._4_c02288{width:122.356548px;}
._7_c02288{width:198.671940px;}
._2_c02288{width:218.506248px;}
._b_c02288{width:406.705500px;}
._c_c02288{width:455.412888px;}
._9_c02288{width:484.993008px;}
._f_c02288{width:524.876760px;}
._1_c02288{width:547.330896px;}
._5_c02288{width:566.381160px;}
._10_c02288{width:677.626128px;}
._e_c02288{width:685.999476px;}
._a_c02288{width:765.681336px;}
._d_c02288{width:837.003024px;}
.fc0_c02288{color:rgb(0,0,0);}
.fs6_c02288{font-size:2.880000px;}
.fs5_c02288{font-size:29.880000px;}
.fs4_c02288{font-size:42.120000px;}
.fs1_c02288{font-size:47.880000px;}
.fs2_c02288{font-size:60.120000px;}
.fs3_c02288{font-size:65.880000px;}
.fs0_c02288{font-size:72.000000px;}
.y0_c02288{bottom:0.000000px;}
.y4_c02288{bottom:57.360450px;}
.y3_c02288{bottom:78.060450px;}
.y37_c02288{bottom:120.000450px;}
.y36_c02288{bottom:140.700450px;}
.y35_c02288{bottom:161.400450px;}
.y34_c02288{bottom:182.100450px;}
.y33_c02288{bottom:212.250450px;}
.y32_c02288{bottom:216.300450px;}
.y31_c02288{bottom:234.300450px;}
.y30_c02288{bottom:251.580450px;}
.y2f_c02288{bottom:268.770450px;}
.y2e_c02288{bottom:288.480450px;}
.y2d_c02288{bottom:308.280450px;}
.y2c_c02288{bottom:327.990450px;}
.y2b_c02288{bottom:347.700450px;}
.y2a_c02288{bottom:367.410450px;}
.y29_c02288{bottom:387.120450px;}
.y28_c02288{bottom:406.830450px;}
.y27_c02288{bottom:426.540600px;}
.y26_c02288{bottom:446.340600px;}
.y25_c02288{bottom:466.050450px;}
.y24_c02288{bottom:485.760450px;}
.y23_c02288{bottom:505.470450px;}
.y21_c02288{bottom:523.920450px;}
.y20_c02288{bottom:544.170450px;}
.y22_c02288{bottom:546.960450px;}
.y1f_c02288{bottom:563.880450px;}
.y1e_c02288{bottom:583.590450px;}
.y1a_c02288{bottom:602.040450px;}
.y19_c02288{bottom:621.210450px;}
.y1d_c02288{bottom:625.890450px;}
.y1c_c02288{bottom:635.160450px;}
.y18_c02288{bottom:642.990450px;}
.y1b_c02288{bottom:645.780450px;}
.y17_c02288{bottom:661.890450px;}
.y16_c02288{bottom:682.590450px;}
.y15_c02288{bottom:703.290450px;}
.y14_c02288{bottom:723.990450px;}
.y13_c02288{bottom:744.510450px;}
.y12_c02288{bottom:765.930450px;}
.y11_c02288{bottom:787.350450px;}
.y10_c02288{bottom:819.300450px;}
.yf_c02288{bottom:839.820450px;}
.ye_c02288{bottom:871.050450px;}
.yd_c02288{bottom:902.100450px;}
.yc_c02288{bottom:933.150450px;}
.yb_c02288{bottom:964.200450px;}
.ya_c02288{bottom:995.250450px;}
.y9_c02288{bottom:1026.300450px;}
.y8_c02288{bottom:1057.350450px;}
.y7_c02288{bottom:1088.220450px;}
.y6_c02288{bottom:1114.590450px;}
.y5_c02288{bottom:1139.970450px;}
.y2_c02288{bottom:1172.640450px;}
.y1_c02288{bottom:1193.160450px;}
.hf_c02288{height:2.557969px;}
.h8_c02288{height:26.538926px;}
.h7_c02288{height:37.410293px;}
.h3_c02288{height:42.526230px;}
.hb_c02288{height:43.091895px;}
.h6_c02288{height:43.170293px;}
.h4_c02288{height:53.397598px;}
.ha_c02288{height:53.473535px;}
.he_c02288{height:53.686230px;}
.hd_c02288{height:54.251295px;}
.h9_c02288{height:54.251895px;}
.hc_c02288{height:54.252495px;}
.h5_c02288{height:58.513535px;}
.h2_c02288{height:63.175781px;}
.h1_c02288{height:63.949219px;}
.h0_c02288{height:1263.000000px;}
.w1_c02288{width:892.500000px;}
.w0_c02288{width:892.830000px;}
.x0_c02288{left:0.000000px;}
.x1_c02288{left:127.620000px;}
.x4_c02288{left:135.630000px;}
.x3_c02288{left:148.950000px;}
.x5_c02288{left:162.900000px;}
.xb_c02288{left:194.940000px;}
.x7_c02288{left:233.730000px;}
.x6_c02288{left:405.810000px;}
.x2_c02288{left:432.990000px;}
.x8_c02288{left:632.880000px;}
.xa_c02288{left:723.420000px;}
.x9_c02288{left:730.980000px;}
@media print{
.v1_c02288{vertical-align:-4.800000pt;}
.v0_c02288{vertical-align:0.000000pt;}
.v5_c02288{vertical-align:0.960000pt;}
.v2_c02288{vertical-align:5.120000pt;}
.v4_c02288{vertical-align:9.920000pt;}
.v3_c02288{vertical-align:14.400000pt;}
.ls2a_c02288{letter-spacing:-0.123552pt;}
.ls2e_c02288{letter-spacing:-0.046848pt;}
.ls26_c02288{letter-spacing:-0.044800pt;}
.ls2d_c02288{letter-spacing:-0.035136pt;}
.ls27_c02288{letter-spacing:-0.019200pt;}
.ls2f_c02288{letter-spacing:-0.016032pt;}
.ls24_c02288{letter-spacing:-0.012800pt;}
.ls25_c02288{letter-spacing:-0.006400pt;}
.ls23_c02288{letter-spacing:0.000000pt;}
.ls12_c02288{letter-spacing:0.005856pt;}
.ls9_c02288{letter-spacing:0.006400pt;}
.ls1c_c02288{letter-spacing:0.011712pt;}
.ls3_c02288{letter-spacing:0.012800pt;}
.ls1f_c02288{letter-spacing:0.017568pt;}
.ls2_c02288{letter-spacing:0.019200pt;}
.ls13_c02288{letter-spacing:0.023424pt;}
.ls0_c02288{letter-spacing:0.025600pt;}
.lsb_c02288{letter-spacing:0.029280pt;}
.ls1_c02288{letter-spacing:0.032000pt;}
.lsc_c02288{letter-spacing:0.034528pt;}
.ls1d_c02288{letter-spacing:0.035136pt;}
.ls4_c02288{letter-spacing:0.038400pt;}
.ls17_c02288{letter-spacing:0.040992pt;}
.ls8_c02288{letter-spacing:0.044800pt;}
.ls1e_c02288{letter-spacing:0.046848pt;}
.ls5_c02288{letter-spacing:0.051200pt;}
.lsd_c02288{letter-spacing:0.052704pt;}
.ls7_c02288{letter-spacing:0.057600pt;}
.ls1a_c02288{letter-spacing:0.058560pt;}
.ls16_c02288{letter-spacing:0.064416pt;}
.ls18_c02288{letter-spacing:0.070272pt;}
.lsa_c02288{letter-spacing:0.070400pt;}
.ls11_c02288{letter-spacing:0.076128pt;}
.ls6_c02288{letter-spacing:0.076800pt;}
.ls19_c02288{letter-spacing:0.093696pt;}
.ls14_c02288{letter-spacing:0.099552pt;}
.ls15_c02288{letter-spacing:0.122976pt;}
.ls29_c02288{letter-spacing:0.123424pt;}
.ls28_c02288{letter-spacing:0.128256pt;}
.ls1b_c02288{letter-spacing:0.140544pt;}
.ls2c_c02288{letter-spacing:0.160320pt;}
.ls2b_c02288{letter-spacing:0.160992pt;}
.ls22_c02288{letter-spacing:0.161728pt;}
.ls21_c02288{letter-spacing:0.187264pt;}
.ls10_c02288{letter-spacing:0.212800pt;}
.lse_c02288{letter-spacing:0.480928pt;}
.lsf_c02288{letter-spacing:80.237920pt;}
.ls20_c02288{letter-spacing:1544.400000pt;}
.ws4_c02288{word-spacing:-42.560000pt;}
.ws2_c02288{word-spacing:-16.044800pt;}
.ws1_c02288{word-spacing:-16.038400pt;}
.ws0_c02288{word-spacing:-16.000000pt;}
.ws7_c02288{word-spacing:-14.762976pt;}
.ws6_c02288{word-spacing:-14.739552pt;}
.ws9_c02288{word-spacing:-14.733696pt;}
.ws5_c02288{word-spacing:-14.716128pt;}
.wsd_c02288{word-spacing:-14.710272pt;}
.ws8_c02288{word-spacing:-14.704416pt;}
.ws10_c02288{word-spacing:-14.698560pt;}
.wsb_c02288{word-spacing:-14.692704pt;}
.wse_c02288{word-spacing:-14.686848pt;}
.ws3_c02288{word-spacing:-14.669280pt;}
.wsc_c02288{word-spacing:-14.651712pt;}
.wsf_c02288{word-spacing:-14.593152pt;}
.ws29_c02288{word-spacing:-0.561600pt;}
.ws37_c02288{word-spacing:-0.268128pt;}
.ws35_c02288{word-spacing:-0.224448pt;}
.ws13_c02288{word-spacing:-0.134400pt;}
.ws12_c02288{word-spacing:-0.076800pt;}
.ws26_c02288{word-spacing:-0.070400pt;}
.ws25_c02288{word-spacing:-0.057600pt;}
.ws20_c02288{word-spacing:-0.032000pt;}
.ws1f_c02288{word-spacing:-0.025600pt;}
.ws32_c02288{word-spacing:-0.011712pt;}
.ws11_c02288{word-spacing:0.000000pt;}
.ws2e_c02288{word-spacing:0.011712pt;}
.ws30_c02288{word-spacing:0.017568pt;}
.ws2f_c02288{word-spacing:0.023424pt;}
.ws2a_c02288{word-spacing:0.029280pt;}
.ws33_c02288{word-spacing:0.035136pt;}
.ws27_c02288{word-spacing:0.040992pt;}
.ws34_c02288{word-spacing:0.046848pt;}
.ws28_c02288{word-spacing:0.052704pt;}
.ws2d_c02288{word-spacing:0.058560pt;}
.ws31_c02288{word-spacing:0.070272pt;}
.ws2b_c02288{word-spacing:0.076128pt;}
.ws36_c02288{word-spacing:0.096192pt;}
.ws19_c02288{word-spacing:3.737600pt;}
.ws18_c02288{word-spacing:3.769600pt;}
.ws1a_c02288{word-spacing:3.846400pt;}
.ws1c_c02288{word-spacing:4.352000pt;}
.ws1b_c02288{word-spacing:4.428800pt;}
.ws1e_c02288{word-spacing:5.606400pt;}
.ws1d_c02288{word-spacing:5.689600pt;}
.ws14_c02288{word-spacing:9.203200pt;}
.ws15_c02288{word-spacing:9.260800pt;}
.ws23_c02288{word-spacing:16.480000pt;}
.ws24_c02288{word-spacing:16.620800pt;}
.ws21_c02288{word-spacing:18.086400pt;}
.ws22_c02288{word-spacing:18.233600pt;}
.ws17_c02288{word-spacing:20.064000pt;}
.ws16_c02288{word-spacing:20.172800pt;}
.ws2c_c02288{word-spacing:21.807744pt;}
.wsa_c02288{word-spacing:531.798816pt;}
._0_c02288{margin-left:-1.216000pt;}
._8_c02288{width:1.100928pt;}
._6_c02288{width:21.743328pt;}
._3_c02288{width:46.639040pt;}
._4_c02288{width:108.761376pt;}
._7_c02288{width:176.597280pt;}
._2_c02288{width:194.227776pt;}
._b_c02288{width:361.516000pt;}
._c_c02288{width:404.811456pt;}
._9_c02288{width:431.104896pt;}
._f_c02288{width:466.557120pt;}
._1_c02288{width:486.516352pt;}
._5_c02288{width:503.449920pt;}
._10_c02288{width:602.334336pt;}
._e_c02288{width:609.777312pt;}
._a_c02288{width:680.605632pt;}
._d_c02288{width:744.002688pt;}
.fs6_c02288{font-size:2.560000pt;}
.fs5_c02288{font-size:26.560000pt;}
.fs4_c02288{font-size:37.440000pt;}
.fs1_c02288{font-size:42.560000pt;}
.fs2_c02288{font-size:53.440000pt;}
.fs3_c02288{font-size:58.560000pt;}
.fs0_c02288{font-size:64.000000pt;}
.y0_c02288{bottom:0.000000pt;}
.y4_c02288{bottom:50.987067pt;}
.y3_c02288{bottom:69.387067pt;}
.y37_c02288{bottom:106.667067pt;}
.y36_c02288{bottom:125.067067pt;}
.y35_c02288{bottom:143.467067pt;}
.y34_c02288{bottom:161.867067pt;}
.y33_c02288{bottom:188.667067pt;}
.y32_c02288{bottom:192.267067pt;}
.y31_c02288{bottom:208.267067pt;}
.y30_c02288{bottom:223.627067pt;}
.y2f_c02288{bottom:238.907067pt;}
.y2e_c02288{bottom:256.427067pt;}
.y2d_c02288{bottom:274.027067pt;}
.y2c_c02288{bottom:291.547067pt;}
.y2b_c02288{bottom:309.067067pt;}
.y2a_c02288{bottom:326.587067pt;}
.y29_c02288{bottom:344.107067pt;}
.y28_c02288{bottom:361.627067pt;}
.y27_c02288{bottom:379.147200pt;}
.y26_c02288{bottom:396.747200pt;}
.y25_c02288{bottom:414.267067pt;}
.y24_c02288{bottom:431.787067pt;}
.y23_c02288{bottom:449.307067pt;}
.y21_c02288{bottom:465.707067pt;}
.y20_c02288{bottom:483.707067pt;}
.y22_c02288{bottom:486.187067pt;}
.y1f_c02288{bottom:501.227067pt;}
.y1e_c02288{bottom:518.747067pt;}
.y1a_c02288{bottom:535.147067pt;}
.y19_c02288{bottom:552.187067pt;}
.y1d_c02288{bottom:556.347067pt;}
.y1c_c02288{bottom:564.587067pt;}
.y18_c02288{bottom:571.547067pt;}
.y1b_c02288{bottom:574.027067pt;}
.y17_c02288{bottom:588.347067pt;}
.y16_c02288{bottom:606.747067pt;}
.y15_c02288{bottom:625.147067pt;}
.y14_c02288{bottom:643.547067pt;}
.y13_c02288{bottom:661.787067pt;}
.y12_c02288{bottom:680.827067pt;}
.y11_c02288{bottom:699.867067pt;}
.y10_c02288{bottom:728.267067pt;}
.yf_c02288{bottom:746.507067pt;}
.ye_c02288{bottom:774.267067pt;}
.yd_c02288{bottom:801.867067pt;}
.yc_c02288{bottom:829.467067pt;}
.yb_c02288{bottom:857.067067pt;}
.ya_c02288{bottom:884.667067pt;}
.y9_c02288{bottom:912.267067pt;}
.y8_c02288{bottom:939.867067pt;}
.y7_c02288{bottom:967.307067pt;}
.y6_c02288{bottom:990.747067pt;}
.y5_c02288{bottom:1013.307067pt;}
.y2_c02288{bottom:1042.347067pt;}
.y1_c02288{bottom:1060.587067pt;}
.hf_c02288{height:2.273750pt;}
.h8_c02288{height:23.590156pt;}
.h7_c02288{height:33.253594pt;}
.h3_c02288{height:37.801094pt;}
.hb_c02288{height:38.303906pt;}
.h6_c02288{height:38.373594pt;}
.h4_c02288{height:47.464531pt;}
.ha_c02288{height:47.532031pt;}
.he_c02288{height:47.721094pt;}
.hd_c02288{height:48.223373pt;}
.h9_c02288{height:48.223906pt;}
.hc_c02288{height:48.224440pt;}
.h5_c02288{height:52.012031pt;}
.h2_c02288{height:56.156250pt;}
.h1_c02288{height:56.843750pt;}
.h0_c02288{height:1122.666667pt;}
.w1_c02288{width:793.333333pt;}
.w0_c02288{width:793.626667pt;}
.x0_c02288{left:0.000000pt;}
.x1_c02288{left:113.440000pt;}
.x4_c02288{left:120.560000pt;}
.x3_c02288{left:132.400000pt;}
.x5_c02288{left:144.800000pt;}
.xb_c02288{left:173.280000pt;}
.x7_c02288{left:207.760000pt;}
.x6_c02288{left:360.720000pt;}
.x2_c02288{left:384.880000pt;}
.x8_c02288{left:562.560000pt;}
.xa_c02288{left:643.040000pt;}
.x9_c02288{left:649.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_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_ee8f3cf9d7f74c9fc4026083.woff2')format("woff");}.ff1_c02289{font-family:ff1_c02289;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02289;src:url('chunks/assets/font_7f8d900ed824063b0e4e4ca0.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_3180a205aaa6179052692bb9.woff2')format("woff");}.ff3_c02289{font-family:ff3_c02289;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_c02289;src:url('chunks/assets/font_130223888d686ff19fdf568e.woff2')format("woff");}.ff4_c02289{font-family:ff4_c02289;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_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);}
.v2_c02289{vertical-align:-9.000000px;}
.v1_c02289{vertical-align:-5.400000px;}
.v0_c02289{vertical-align:0.000000px;}
.ls27_c02289{letter-spacing:-0.144000px;}
.ls26_c02289{letter-spacing:-0.122400px;}
.ls23_c02289{letter-spacing:-0.057600px;}
.ls20_c02289{letter-spacing:-0.028800px;}
.ls24_c02289{letter-spacing:-0.021600px;}
.ls21_c02289{letter-spacing:-0.019764px;}
.ls25_c02289{letter-spacing:-0.014400px;}
.ls22_c02289{letter-spacing:-0.007200px;}
.ls1e_c02289{letter-spacing:0.000000px;}
.ls18_c02289{letter-spacing:0.006588px;}
.ls14_c02289{letter-spacing:0.007200px;}
.ls1_c02289{letter-spacing:0.013176px;}
.ls6_c02289{letter-spacing:0.014400px;}
.lsa_c02289{letter-spacing:0.019764px;}
.ls8_c02289{letter-spacing:0.021600px;}
.ls1d_c02289{letter-spacing:0.026352px;}
.ls0_c02289{letter-spacing:0.028800px;}
.ls1a_c02289{letter-spacing:0.032940px;}
.lsd_c02289{letter-spacing:0.036000px;}
.ls16_c02289{letter-spacing:0.039528px;}
.lse_c02289{letter-spacing:0.043200px;}
.ls5_c02289{letter-spacing:0.046116px;}
.lsc_c02289{letter-spacing:0.050400px;}
.ls17_c02289{letter-spacing:0.052704px;}
.ls13_c02289{letter-spacing:0.057600px;}
.ls19_c02289{letter-spacing:0.059292px;}
.ls10_c02289{letter-spacing:0.064800px;}
.ls4_c02289{letter-spacing:0.065880px;}
.ls11_c02289{letter-spacing:0.072000px;}
.ls1c_c02289{letter-spacing:0.072468px;}
.ls15_c02289{letter-spacing:0.079200px;}
.lsf_c02289{letter-spacing:0.086400px;}
.ls28_c02289{letter-spacing:0.092232px;}
.ls12_c02289{letter-spacing:0.100800px;}
.ls1b_c02289{letter-spacing:0.111996px;}
.ls3_c02289{letter-spacing:0.144000px;}
.ls1f_c02289{letter-spacing:0.181944px;}
.ls29_c02289{letter-spacing:0.447984px;}
.ls7_c02289{letter-spacing:140.040000px;}
.ls9_c02289{letter-spacing:144.000000px;}
.ls2_c02289{letter-spacing:189.720000px;}
.lsb_c02289{letter-spacing:292.320000px;}
.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;}
}
.ws4_c02289{word-spacing:-18.086400px;}
.wsb_c02289{word-spacing:-18.079200px;}
.ws5_c02289{word-spacing:-18.064800px;}
.wsc_c02289{word-spacing:-18.050400px;}
.ws3_c02289{word-spacing:-18.043200px;}
.ws9_c02289{word-spacing:-18.028800px;}
.ws7_c02289{word-spacing:-18.014400px;}
.wsa_c02289{word-spacing:-17.971200px;}
.ws6_c02289{word-spacing:-17.942400px;}
.ws8_c02289{word-spacing:-17.877600px;}
.wse_c02289{word-spacing:-16.529292px;}
.wsf_c02289{word-spacing:-16.516116px;}
.wsd_c02289{word-spacing:-16.509528px;}
.ws2_c02289{word-spacing:-16.489764px;}
.ws0_c02289{word-spacing:-16.483176px;}
.ws1_c02289{word-spacing:-16.450236px;}
.ws2c_c02289{word-spacing:-0.439200px;}
.ws24_c02289{word-spacing:-0.432000px;}
.ws29_c02289{word-spacing:-0.237600px;}
.ws23_c02289{word-spacing:-0.223200px;}
.ws2f_c02289{word-spacing:-0.194400px;}
.ws1f_c02289{word-spacing:-0.187200px;}
.ws36_c02289{word-spacing:-0.180000px;}
.ws27_c02289{word-spacing:-0.172800px;}
.ws2a_c02289{word-spacing:-0.165600px;}
.ws21_c02289{word-spacing:-0.144000px;}
.ws2d_c02289{word-spacing:-0.129600px;}
.ws1e_c02289{word-spacing:-0.108000px;}
.ws1a_c02289{word-spacing:-0.100800px;}
.ws26_c02289{word-spacing:-0.093600px;}
.ws11_c02289{word-spacing:-0.086400px;}
.ws2e_c02289{word-spacing:-0.057600px;}
.ws1c_c02289{word-spacing:-0.050400px;}
.ws25_c02289{word-spacing:-0.043200px;}
.ws1d_c02289{word-spacing:-0.036000px;}
.ws12_c02289{word-spacing:-0.028800px;}
.ws19_c02289{word-spacing:-0.021600px;}
.ws38_c02289{word-spacing:-0.019764px;}
.ws17_c02289{word-spacing:-0.014400px;}
.ws1b_c02289{word-spacing:-0.007200px;}
.ws10_c02289{word-spacing:0.000000px;}
.ws2b_c02289{word-spacing:0.014400px;}
.ws3c_c02289{word-spacing:0.019764px;}
.ws22_c02289{word-spacing:0.021600px;}
.ws3a_c02289{word-spacing:0.026352px;}
.ws20_c02289{word-spacing:0.028800px;}
.ws3b_c02289{word-spacing:0.032940px;}
.ws39_c02289{word-spacing:0.039528px;}
.ws18_c02289{word-spacing:0.046116px;}
.ws37_c02289{word-spacing:0.059292px;}
.ws3d_c02289{word-spacing:0.065880px;}
.ws32_c02289{word-spacing:0.085644px;}
.ws35_c02289{word-spacing:0.092232px;}
.ws28_c02289{word-spacing:0.144000px;}
.ws30_c02289{word-spacing:1.824876px;}
.ws31_c02289{word-spacing:1.838052px;}
.ws33_c02289{word-spacing:8.314056px;}
.ws34_c02289{word-spacing:8.327232px;}
.ws15_c02289{word-spacing:9.374724px;}
.ws16_c02289{word-spacing:9.401076px;}
.ws14_c02289{word-spacing:12.984948px;}
.ws13_c02289{word-spacing:12.988800px;}
._0_c02289{margin-left:-1.310400px;}
.fc0_c02289{color:rgb(0,0,0);}
.fs2_c02289{font-size:47.880000px;}
.fs1_c02289{font-size:65.880000px;}
.fs0_c02289{font-size:72.000000px;}
.y0_c02289{bottom:0.000000px;}
.y4_c02289{bottom:57.360450px;}
.y3_c02289{bottom:78.060450px;}
.y37_c02289{bottom:116.400450px;}
.y36_c02289{bottom:137.100450px;}
.y35_c02289{bottom:157.800450px;}
.y34_c02289{bottom:178.500450px;}
.y33_c02289{bottom:199.200450px;}
.y32_c02289{bottom:219.900450px;}
.y31_c02289{bottom:240.960600px;}
.y30_c02289{bottom:260.580450px;}
.y2f_c02289{bottom:280.470450px;}
.y2e_c02289{bottom:299.370450px;}
.y2d_c02289{bottom:319.080450px;}
.y2c_c02289{bottom:339.240450px;}
.y2b_c02289{bottom:360.210600px;}
.y2a_c02289{bottom:380.370450px;}
.y29_c02289{bottom:401.070450px;}
.y28_c02289{bottom:421.770450px;}
.y27_c02289{bottom:442.470450px;}
.y26_c02289{bottom:462.810540px;}
.y25_c02289{bottom:481.800450px;}
.y24_c02289{bottom:501.420450px;}
.y23_c02289{bottom:521.220450px;}
.y22_c02289{bottom:540.210450px;}
.y21_c02289{bottom:559.830450px;}
.y20_c02289{bottom:580.080450px;}
.y1f_c02289{bottom:600.780450px;}
.y1e_c02289{bottom:621.390450px;}
.y1d_c02289{bottom:642.090450px;}
.y1c_c02289{bottom:662.790450px;}
.y1b_c02289{bottom:683.490450px;}
.y1a_c02289{bottom:704.190450px;}
.y19_c02289{bottom:724.890450px;}
.y18_c02289{bottom:745.590450px;}
.y17_c02289{bottom:766.290450px;}
.y16_c02289{bottom:786.990450px;}
.y15_c02289{bottom:807.690450px;}
.y14_c02289{bottom:828.390450px;}
.y13_c02289{bottom:849.090450px;}
.y12_c02289{bottom:869.790450px;}
.y11_c02289{bottom:890.490450px;}
.y10_c02289{bottom:911.190450px;}
.yf_c02289{bottom:931.890450px;}
.ye_c02289{bottom:952.410450px;}
.yd_c02289{bottom:974.550450px;}
.yc_c02289{bottom:995.970450px;}
.yb_c02289{bottom:1017.480450px;}
.ya_c02289{bottom:1037.550450px;}
.y9_c02289{bottom:1058.249397px;}
.y8_c02289{bottom:1078.589847px;}
.y7_c02289{bottom:1099.290450px;}
.y6_c02289{bottom:1119.270450px;}
.y5_c02289{bottom:1139.970450px;}
.y2_c02289{bottom:1172.640450px;}
.y1_c02289{bottom:1193.160450px;}
.h7_c02289{height:57.805840px;}
.h9_c02289{height:58.513535px;}
.h8_c02289{height:63.175421px;}
.h2_c02289{height:63.175781px;}
.h1_c02289{height:63.949219px;}
.h4_c02289{height:64.625449px;}
.h3_c02289{height:65.228906px;}
.h6_c02289{height:70.628906px;}
.h5_c02289{height:70.633118px;}
.h0_c02289{height:1263.000000px;}
.w1_c02289{width:892.500000px;}
.w0_c02289{width:892.830000px;}
.x0_c02289{left:0.000000px;}
.x1_c02289{left:127.620000px;}
.x3_c02289{left:135.630000px;}
.x4_c02289{left:252.630252px;}
.x2_c02289{left:432.990000px;}
@media print{
.v2_c02289{vertical-align:-8.000000pt;}
.v1_c02289{vertical-align:-4.800000pt;}
.v0_c02289{vertical-align:0.000000pt;}
.ls27_c02289{letter-spacing:-0.128000pt;}
.ls26_c02289{letter-spacing:-0.108800pt;}
.ls23_c02289{letter-spacing:-0.051200pt;}
.ls20_c02289{letter-spacing:-0.025600pt;}
.ls24_c02289{letter-spacing:-0.019200pt;}
.ls21_c02289{letter-spacing:-0.017568pt;}
.ls25_c02289{letter-spacing:-0.012800pt;}
.ls22_c02289{letter-spacing:-0.006400pt;}
.ls1e_c02289{letter-spacing:0.000000pt;}
.ls18_c02289{letter-spacing:0.005856pt;}
.ls14_c02289{letter-spacing:0.006400pt;}
.ls1_c02289{letter-spacing:0.011712pt;}
.ls6_c02289{letter-spacing:0.012800pt;}
.lsa_c02289{letter-spacing:0.017568pt;}
.ls8_c02289{letter-spacing:0.019200pt;}
.ls1d_c02289{letter-spacing:0.023424pt;}
.ls0_c02289{letter-spacing:0.025600pt;}
.ls1a_c02289{letter-spacing:0.029280pt;}
.lsd_c02289{letter-spacing:0.032000pt;}
.ls16_c02289{letter-spacing:0.035136pt;}
.lse_c02289{letter-spacing:0.038400pt;}
.ls5_c02289{letter-spacing:0.040992pt;}
.lsc_c02289{letter-spacing:0.044800pt;}
.ls17_c02289{letter-spacing:0.046848pt;}
.ls13_c02289{letter-spacing:0.051200pt;}
.ls19_c02289{letter-spacing:0.052704pt;}
.ls10_c02289{letter-spacing:0.057600pt;}
.ls4_c02289{letter-spacing:0.058560pt;}
.ls11_c02289{letter-spacing:0.064000pt;}
.ls1c_c02289{letter-spacing:0.064416pt;}
.ls15_c02289{letter-spacing:0.070400pt;}
.lsf_c02289{letter-spacing:0.076800pt;}
.ls28_c02289{letter-spacing:0.081984pt;}
.ls12_c02289{letter-spacing:0.089600pt;}
.ls1b_c02289{letter-spacing:0.099552pt;}
.ls3_c02289{letter-spacing:0.128000pt;}
.ls1f_c02289{letter-spacing:0.161728pt;}
.ls29_c02289{letter-spacing:0.398208pt;}
.ls7_c02289{letter-spacing:124.480000pt;}
.ls9_c02289{letter-spacing:128.000000pt;}
.ls2_c02289{letter-spacing:168.640000pt;}
.lsb_c02289{letter-spacing:259.840000pt;}
.ws4_c02289{word-spacing:-16.076800pt;}
.wsb_c02289{word-spacing:-16.070400pt;}
.ws5_c02289{word-spacing:-16.057600pt;}
.wsc_c02289{word-spacing:-16.044800pt;}
.ws3_c02289{word-spacing:-16.038400pt;}
.ws9_c02289{word-spacing:-16.025600pt;}
.ws7_c02289{word-spacing:-16.012800pt;}
.wsa_c02289{word-spacing:-15.974400pt;}
.ws6_c02289{word-spacing:-15.948800pt;}
.ws8_c02289{word-spacing:-15.891200pt;}
.wse_c02289{word-spacing:-14.692704pt;}
.wsf_c02289{word-spacing:-14.680992pt;}
.wsd_c02289{word-spacing:-14.675136pt;}
.ws2_c02289{word-spacing:-14.657568pt;}
.ws0_c02289{word-spacing:-14.651712pt;}
.ws1_c02289{word-spacing:-14.622432pt;}
.ws2c_c02289{word-spacing:-0.390400pt;}
.ws24_c02289{word-spacing:-0.384000pt;}
.ws29_c02289{word-spacing:-0.211200pt;}
.ws23_c02289{word-spacing:-0.198400pt;}
.ws2f_c02289{word-spacing:-0.172800pt;}
.ws1f_c02289{word-spacing:-0.166400pt;}
.ws36_c02289{word-spacing:-0.160000pt;}
.ws27_c02289{word-spacing:-0.153600pt;}
.ws2a_c02289{word-spacing:-0.147200pt;}
.ws21_c02289{word-spacing:-0.128000pt;}
.ws2d_c02289{word-spacing:-0.115200pt;}
.ws1e_c02289{word-spacing:-0.096000pt;}
.ws1a_c02289{word-spacing:-0.089600pt;}
.ws26_c02289{word-spacing:-0.083200pt;}
.ws11_c02289{word-spacing:-0.076800pt;}
.ws2e_c02289{word-spacing:-0.051200pt;}
.ws1c_c02289{word-spacing:-0.044800pt;}
.ws25_c02289{word-spacing:-0.038400pt;}
.ws1d_c02289{word-spacing:-0.032000pt;}
.ws12_c02289{word-spacing:-0.025600pt;}
.ws19_c02289{word-spacing:-0.019200pt;}
.ws38_c02289{word-spacing:-0.017568pt;}
.ws17_c02289{word-spacing:-0.012800pt;}
.ws1b_c02289{word-spacing:-0.006400pt;}
.ws10_c02289{word-spacing:0.000000pt;}
.ws2b_c02289{word-spacing:0.012800pt;}
.ws3c_c02289{word-spacing:0.017568pt;}
.ws22_c02289{word-spacing:0.019200pt;}
.ws3a_c02289{word-spacing:0.023424pt;}
.ws20_c02289{word-spacing:0.025600pt;}
.ws3b_c02289{word-spacing:0.029280pt;}
.ws39_c02289{word-spacing:0.035136pt;}
.ws18_c02289{word-spacing:0.040992pt;}
.ws37_c02289{word-spacing:0.052704pt;}
.ws3d_c02289{word-spacing:0.058560pt;}
.ws32_c02289{word-spacing:0.076128pt;}
.ws35_c02289{word-spacing:0.081984pt;}
.ws28_c02289{word-spacing:0.128000pt;}
.ws30_c02289{word-spacing:1.622112pt;}
.ws31_c02289{word-spacing:1.633824pt;}
.ws33_c02289{word-spacing:7.390272pt;}
.ws34_c02289{word-spacing:7.401984pt;}
.ws15_c02289{word-spacing:8.333088pt;}
.ws16_c02289{word-spacing:8.356512pt;}
.ws14_c02289{word-spacing:11.542176pt;}
.ws13_c02289{word-spacing:11.545600pt;}
._0_c02289{margin-left:-1.164800pt;}
.fs2_c02289{font-size:42.560000pt;}
.fs1_c02289{font-size:58.560000pt;}
.fs0_c02289{font-size:64.000000pt;}
.y0_c02289{bottom:0.000000pt;}
.y4_c02289{bottom:50.987067pt;}
.y3_c02289{bottom:69.387067pt;}
.y37_c02289{bottom:103.467067pt;}
.y36_c02289{bottom:121.867067pt;}
.y35_c02289{bottom:140.267067pt;}
.y34_c02289{bottom:158.667067pt;}
.y33_c02289{bottom:177.067067pt;}
.y32_c02289{bottom:195.467067pt;}
.y31_c02289{bottom:214.187200pt;}
.y30_c02289{bottom:231.627067pt;}
.y2f_c02289{bottom:249.307067pt;}
.y2e_c02289{bottom:266.107067pt;}
.y2d_c02289{bottom:283.627067pt;}
.y2c_c02289{bottom:301.547067pt;}
.y2b_c02289{bottom:320.187200pt;}
.y2a_c02289{bottom:338.107067pt;}
.y29_c02289{bottom:356.507067pt;}
.y28_c02289{bottom:374.907067pt;}
.y27_c02289{bottom:393.307067pt;}
.y26_c02289{bottom:411.387147pt;}
.y25_c02289{bottom:428.267067pt;}
.y24_c02289{bottom:445.707067pt;}
.y23_c02289{bottom:463.307067pt;}
.y22_c02289{bottom:480.187067pt;}
.y21_c02289{bottom:497.627067pt;}
.y20_c02289{bottom:515.627067pt;}
.y1f_c02289{bottom:534.027067pt;}
.y1e_c02289{bottom:552.347067pt;}
.y1d_c02289{bottom:570.747067pt;}
.y1c_c02289{bottom:589.147067pt;}
.y1b_c02289{bottom:607.547067pt;}
.y1a_c02289{bottom:625.947067pt;}
.y19_c02289{bottom:644.347067pt;}
.y18_c02289{bottom:662.747067pt;}
.y17_c02289{bottom:681.147067pt;}
.y16_c02289{bottom:699.547067pt;}
.y15_c02289{bottom:717.947067pt;}
.y14_c02289{bottom:736.347067pt;}
.y13_c02289{bottom:754.747067pt;}
.y12_c02289{bottom:773.147067pt;}
.y11_c02289{bottom:791.547067pt;}
.y10_c02289{bottom:809.947067pt;}
.yf_c02289{bottom:828.347067pt;}
.ye_c02289{bottom:846.587067pt;}
.yd_c02289{bottom:866.267067pt;}
.yc_c02289{bottom:885.307067pt;}
.yb_c02289{bottom:904.427067pt;}
.ya_c02289{bottom:922.267067pt;}
.y9_c02289{bottom:940.666131pt;}
.y8_c02289{bottom:958.746531pt;}
.y7_c02289{bottom:977.147067pt;}
.y6_c02289{bottom:994.907067pt;}
.y5_c02289{bottom:1013.307067pt;}
.y2_c02289{bottom:1042.347067pt;}
.y1_c02289{bottom:1060.587067pt;}
.h7_c02289{height:51.382969pt;}
.h9_c02289{height:52.012031pt;}
.h8_c02289{height:56.155930pt;}
.h2_c02289{height:56.156250pt;}
.h1_c02289{height:56.843750pt;}
.h4_c02289{height:57.444844pt;}
.h3_c02289{height:57.981250pt;}
.h6_c02289{height:62.781250pt;}
.h5_c02289{height:62.784994pt;}
.h0_c02289{height:1122.666667pt;}
.w1_c02289{width:793.333333pt;}
.w0_c02289{width:793.626667pt;}
.x0_c02289{left:0.000000pt;}
.x1_c02289{left:113.440000pt;}
.x3_c02289{left:120.560000pt;}
.x4_c02289{left:224.560224pt;}
.x2_c02289{left:384.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_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_8e4810f6d1213b5c78a8517a.woff2')format("woff");}.ff1_c02290{font-family:ff1_c02290;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02290;src:url('chunks/assets/font_43444b5f648f4b3f8ef71721.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_d3239a30b135559905fc8c10.woff2')format("woff");}.ff3_c02290{font-family:ff3_c02290;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02290;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02290{font-family:ff4_c02290;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;}
.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;}
.ls26_c02290{letter-spacing:-0.384768px;}
.ls22_c02290{letter-spacing:-0.366732px;}
.ls2b_c02290{letter-spacing:-0.318636px;}
.ls1f_c02290{letter-spacing:-0.276552px;}
.ls1b_c02290{letter-spacing:-0.264528px;}
.ls2f_c02290{letter-spacing:-0.234468px;}
.ls25_c02290{letter-spacing:-0.228456px;}
.ls2a_c02290{letter-spacing:-0.222444px;}
.ls2d_c02290{letter-spacing:-0.192384px;}
.ls35_c02290{letter-spacing:-0.180360px;}
.ls23_c02290{letter-spacing:-0.174348px;}
.ls1d_c02290{letter-spacing:-0.168336px;}
.ls27_c02290{letter-spacing:-0.156312px;}
.ls31_c02290{letter-spacing:-0.144288px;}
.ls36_c02290{letter-spacing:-0.136800px;}
.ls19_c02290{letter-spacing:-0.126252px;}
.ls39_c02290{letter-spacing:-0.115200px;}
.ls34_c02290{letter-spacing:-0.114228px;}
.ls1c_c02290{letter-spacing:-0.102204px;}
.ls24_c02290{letter-spacing:-0.096192px;}
.ls33_c02290{letter-spacing:-0.090180px;}
.ls1e_c02290{letter-spacing:-0.084168px;}
.ls38_c02290{letter-spacing:-0.079200px;}
.ls2c_c02290{letter-spacing:-0.078156px;}
.ls28_c02290{letter-spacing:-0.072144px;}
.ls2e_c02290{letter-spacing:-0.066132px;}
.ls37_c02290{letter-spacing:-0.064800px;}
.ls3b_c02290{letter-spacing:-0.060120px;}
.ls30_c02290{letter-spacing:-0.054108px;}
.ls3e_c02290{letter-spacing:-0.042084px;}
.ls18_c02290{letter-spacing:-0.036072px;}
.ls3a_c02290{letter-spacing:-0.028800px;}
.ls1a_c02290{letter-spacing:-0.024048px;}
.ls17_c02290{letter-spacing:-0.021600px;}
.ls32_c02290{letter-spacing:-0.018036px;}
.ls16_c02290{letter-spacing:-0.007200px;}
.ls21_c02290{letter-spacing:-0.006012px;}
.ls15_c02290{letter-spacing:0.000000px;}
.lsd_c02290{letter-spacing:0.006012px;}
.lse_c02290{letter-spacing:0.012024px;}
.ls2_c02290{letter-spacing:0.014400px;}
.lsc_c02290{letter-spacing:0.018036px;}
.ls10_c02290{letter-spacing:0.024048px;}
.ls0_c02290{letter-spacing:0.028800px;}
.lsf_c02290{letter-spacing:0.030060px;}
.ls6_c02290{letter-spacing:0.036072px;}
.ls7_c02290{letter-spacing:0.042084px;}
.ls3_c02290{letter-spacing:0.043200px;}
.ls20_c02290{letter-spacing:0.048096px;}
.ls13_c02290{letter-spacing:0.050400px;}
.ls9_c02290{letter-spacing:0.054108px;}
.ls1_c02290{letter-spacing:0.057600px;}
.lsb_c02290{letter-spacing:0.060120px;}
.ls8_c02290{letter-spacing:0.066132px;}
.ls3c_c02290{letter-spacing:0.078156px;}
.ls5_c02290{letter-spacing:0.084168px;}
.ls4_c02290{letter-spacing:0.090180px;}
.ls14_c02290{letter-spacing:0.114732px;}
.ls3d_c02290{letter-spacing:0.126252px;}
.ls29_c02290{letter-spacing:0.138276px;}
.lsa_c02290{letter-spacing:0.204408px;}
.ls12_c02290{letter-spacing:0.288000px;}
.ls11_c02290{letter-spacing:0.648000px;}
.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;}
}
.ws2a_c02290{word-spacing:-72.000000px;}
.ws2_c02290{word-spacing:-60.120000px;}
.ws17_c02290{word-spacing:-0.264528px;}
.ws18_c02290{word-spacing:-0.198396px;}
.ws36_c02290{word-spacing:-0.172800px;}
.ws5_c02290{word-spacing:-0.150300px;}
.ws6_c02290{word-spacing:-0.144288px;}
.ws2d_c02290{word-spacing:-0.129600px;}
.ws8_c02290{word-spacing:-0.126252px;}
.ws2f_c02290{word-spacing:-0.122400px;}
.ws1f_c02290{word-spacing:-0.120240px;}
.wsd_c02290{word-spacing:-0.108216px;}
.ws33_c02290{word-spacing:-0.108000px;}
.ws7_c02290{word-spacing:-0.096192px;}
.ws25_c02290{word-spacing:-0.090180px;}
.ws31_c02290{word-spacing:-0.086400px;}
.ws27_c02290{word-spacing:-0.084168px;}
.ws20_c02290{word-spacing:-0.078156px;}
.wsc_c02290{word-spacing:-0.072144px;}
.ws21_c02290{word-spacing:-0.066132px;}
.ws13_c02290{word-spacing:-0.060120px;}
.wse_c02290{word-spacing:-0.054108px;}
.ws2e_c02290{word-spacing:-0.043200px;}
.ws3_c02290{word-spacing:-0.036072px;}
.ws32_c02290{word-spacing:-0.028800px;}
.ws0_c02290{word-spacing:-0.024048px;}
.ws29_c02290{word-spacing:-0.007200px;}
.ws1e_c02290{word-spacing:-0.006012px;}
.ws30_c02290{word-spacing:0.000000px;}
.ws1d_c02290{word-spacing:0.006012px;}
.ws2b_c02290{word-spacing:0.007200px;}
.ws16_c02290{word-spacing:0.012024px;}
.ws1b_c02290{word-spacing:0.018036px;}
.ws37_c02290{word-spacing:0.021600px;}
.wsa_c02290{word-spacing:0.024048px;}
.ws23_c02290{word-spacing:0.030060px;}
.ws11_c02290{word-spacing:0.036072px;}
.ws2c_c02290{word-spacing:0.043200px;}
.ws24_c02290{word-spacing:0.054108px;}
.ws28_c02290{word-spacing:0.064800px;}
.ws1_c02290{word-spacing:0.066132px;}
.ws22_c02290{word-spacing:0.084168px;}
.ws15_c02290{word-spacing:0.096192px;}
.ws9_c02290{word-spacing:0.108216px;}
.ws10_c02290{word-spacing:0.114228px;}
.ws26_c02290{word-spacing:0.120240px;}
.ws1c_c02290{word-spacing:0.132264px;}
.ws19_c02290{word-spacing:0.162324px;}
.ws12_c02290{word-spacing:0.168336px;}
.ws4_c02290{word-spacing:0.204408px;}
.wsb_c02290{word-spacing:0.216432px;}
.ws1a_c02290{word-spacing:0.258516px;}
.wsf_c02290{word-spacing:0.306612px;}
.ws14_c02290{word-spacing:0.324648px;}
.ws34_c02290{word-spacing:49.197600px;}
.ws35_c02290{word-spacing:49.327200px;}
._2_c02290{margin-left:-14.315472px;}
._0_c02290{margin-left:-1.152000px;}
._1_c02290{width:1.076148px;}
.fc0_c02290{color:rgb(0,0,0);}
.fs1_c02290{font-size:47.880000px;}
.fs2_c02290{font-size:60.120000px;}
.fs0_c02290{font-size:72.000000px;}
.y0_c02290{bottom:0.000000px;}
.y4_c02290{bottom:57.360450px;}
.y3_c02290{bottom:78.060450px;}
.yd_c02290{bottom:121.440450px;}
.y2e_c02290{bottom:143.760450px;}
.y3d_c02290{bottom:144.576579px;}
.y2f_c02290{bottom:165.810963px;}
.y3e_c02290{bottom:166.627092px;}
.y30_c02290{bottom:187.771296px;}
.y3f_c02290{bottom:188.677605px;}
.y31_c02290{bottom:209.821809px;}
.y40_c02290{bottom:210.728118px;}
.y32_c02290{bottom:231.872322px;}
.y41_c02290{bottom:232.688451px;}
.y33_c02290{bottom:253.922835px;}
.y42_c02290{bottom:254.738964px;}
.y34_c02290{bottom:275.973348px;}
.y43_c02290{bottom:276.789477px;}
.y35_c02290{bottom:298.023861px;}
.y44_c02290{bottom:298.830963px;}
.y36_c02290{bottom:320.074374px;}
.y45_c02290{bottom:320.881476px;}
.y37_c02290{bottom:342.124887px;}
.y46_c02290{bottom:342.931989px;}
.y38_c02290{bottom:364.175400px;}
.y47_c02290{bottom:364.982502px;}
.y39_c02290{bottom:386.225913px;}
.y48_c02290{bottom:387.033015px;}
.y3a_c02290{bottom:408.276426px;}
.y49_c02290{bottom:409.083528px;}
.y3b_c02290{bottom:430.236759px;}
.y4a_c02290{bottom:431.134041px;}
.y3c_c02290{bottom:452.287272px;}
.y4b_c02290{bottom:453.184554px;}
.y4d_c02290{bottom:498.630450px;}
.y4c_c02290{bottom:528.240450px;}
.yc_c02290{bottom:571.080450px;}
.yb_c02290{bottom:601.950450px;}
.ya_c02290{bottom:621.300450px;}
.y9_c02290{bottom:632.460450px;}
.ye_c02290{bottom:652.260450px;}
.y1d_c02290{bottom:653.078082px;}
.yf_c02290{bottom:673.591026px;}
.y1e_c02290{bottom:674.408658px;}
.y10_c02290{bottom:694.921602px;}
.y1f_c02290{bottom:695.739234px;}
.y11_c02290{bottom:716.252178px;}
.y20_c02290{bottom:717.069810px;}
.y12_c02290{bottom:737.582754px;}
.y21_c02290{bottom:738.400386px;}
.y13_c02290{bottom:758.913330px;}
.y22_c02290{bottom:759.730962px;}
.y14_c02290{bottom:780.243906px;}
.y23_c02290{bottom:781.061538px;}
.y15_c02290{bottom:801.574482px;}
.y24_c02290{bottom:802.392114px;}
.y16_c02290{bottom:822.905058px;}
.y25_c02290{bottom:823.711026px;}
.y17_c02290{bottom:844.235634px;}
.y26_c02290{bottom:845.041602px;}
.y18_c02290{bottom:865.566210px;}
.y27_c02290{bottom:866.372178px;}
.y19_c02290{bottom:886.896786px;}
.y28_c02290{bottom:887.702754px;}
.y1a_c02290{bottom:908.227362px;}
.y29_c02290{bottom:909.033330px;}
.y1b_c02290{bottom:929.557938px;}
.y2a_c02290{bottom:930.363906px;}
.y1c_c02290{bottom:950.888514px;}
.y2b_c02290{bottom:951.694482px;}
.y2d_c02290{bottom:988.410450px;}
.y2c_c02290{bottom:1014.510450px;}
.y8_c02290{bottom:1057.350450px;}
.y7_c02290{bottom:1088.400450px;}
.y6_c02290{bottom:1119.270450px;}
.y5_c02290{bottom:1139.970450px;}
.y2_c02290{bottom:1172.640450px;}
.y1_c02290{bottom:1193.160450px;}
.h3_c02290{height:42.526230px;}
.h4_c02290{height:43.651582px;}
.h5_c02290{height:52.277344px;}
.h2_c02290{height:63.175781px;}
.h1_c02290{height:63.949219px;}
.h0_c02290{height:1263.000000px;}
.w1_c02290{width:892.500000px;}
.w0_c02290{width:892.830000px;}
.x0_c02290{left:0.000000px;}
.x6_c02290{left:117.000000px;}
.x18_c02290{left:122.762952px;}
.x1_c02290{left:127.620000px;}
.x30_c02290{left:128.877552px;}
.x33_c02290{left:131.398083px;}
.x15_c02290{left:132.842070px;}
.x1c_c02290{left:136.886769px;}
.x16_c02290{left:144.455751px;}
.x4_c02290{left:148.950000px;}
.x1a_c02290{left:151.020855px;}
.x1f_c02290{left:154.698822px;}
.x31_c02290{left:159.301278px;}
.x1b_c02290{left:162.177750px;}
.x14_c02290{left:164.072907px;}
.x35_c02290{left:165.777831px;}
.x37_c02290{left:169.460181px;}
.x17_c02290{left:170.913060px;}
.x32_c02290{left:176.938983px;}
.x2f_c02290{left:178.918434px;}
.x19_c02290{left:182.881449px;}
.x34_c02290{left:185.760216px;}
.x1e_c02290{left:191.239758px;}
.x36_c02290{left:206.092800px;}
.x20_c02290{left:207.360000px;}
.x38_c02290{left:209.160000px;}
.x1d_c02290{left:254.152332px;}
.x7_c02290{left:269.640000px;}
.x3_c02290{left:356.580000px;}
.x2_c02290{left:432.990000px;}
.x39_c02290{left:470.250000px;}
.x21_c02290{left:479.070000px;}
.x2e_c02290{left:482.488362px;}
.x2d_c02290{left:485.008893px;}
.x2c_c02290{left:501.749307px;}
.x2b_c02290{left:510.209694px;}
.x2a_c02290{left:513.179622px;}
.x29_c02290{left:518.670081px;}
.x28_c02290{left:555.389874px;}
.x27_c02290{left:560.880333px;}
.x26_c02290{left:563.850261px;}
.x25_c02290{left:572.220468px;}
.x13_c02290{left:595.982502px;}
.x24_c02290{left:600.479874px;}
.x12_c02290{left:606.601197px;}
.x11_c02290{left:610.920819px;}
.x10_c02290{left:612.450873px;}
.xf_c02290{left:616.770495px;}
.xe_c02290{left:618.300549px;}
.xd_c02290{left:623.610648px;}
.xc_c02290{left:624.689802px;}
.xb_c02290{left:626.310036px;}
.xa_c02290{left:627.390693px;}
.x9_c02290{left:635.310000px;}
.x23_c02290{left:648.180585px;}
.x22_c02290{left:704.250000px;}
.x5_c02290{left:756.000000px;}
.x8_c02290{left:758.250000px;}
@media print{
.v0_c02290{vertical-align:0.000000pt;}
.ls26_c02290{letter-spacing:-0.342016pt;}
.ls22_c02290{letter-spacing:-0.325984pt;}
.ls2b_c02290{letter-spacing:-0.283232pt;}
.ls1f_c02290{letter-spacing:-0.245824pt;}
.ls1b_c02290{letter-spacing:-0.235136pt;}
.ls2f_c02290{letter-spacing:-0.208416pt;}
.ls25_c02290{letter-spacing:-0.203072pt;}
.ls2a_c02290{letter-spacing:-0.197728pt;}
.ls2d_c02290{letter-spacing:-0.171008pt;}
.ls35_c02290{letter-spacing:-0.160320pt;}
.ls23_c02290{letter-spacing:-0.154976pt;}
.ls1d_c02290{letter-spacing:-0.149632pt;}
.ls27_c02290{letter-spacing:-0.138944pt;}
.ls31_c02290{letter-spacing:-0.128256pt;}
.ls36_c02290{letter-spacing:-0.121600pt;}
.ls19_c02290{letter-spacing:-0.112224pt;}
.ls39_c02290{letter-spacing:-0.102400pt;}
.ls34_c02290{letter-spacing:-0.101536pt;}
.ls1c_c02290{letter-spacing:-0.090848pt;}
.ls24_c02290{letter-spacing:-0.085504pt;}
.ls33_c02290{letter-spacing:-0.080160pt;}
.ls1e_c02290{letter-spacing:-0.074816pt;}
.ls38_c02290{letter-spacing:-0.070400pt;}
.ls2c_c02290{letter-spacing:-0.069472pt;}
.ls28_c02290{letter-spacing:-0.064128pt;}
.ls2e_c02290{letter-spacing:-0.058784pt;}
.ls37_c02290{letter-spacing:-0.057600pt;}
.ls3b_c02290{letter-spacing:-0.053440pt;}
.ls30_c02290{letter-spacing:-0.048096pt;}
.ls3e_c02290{letter-spacing:-0.037408pt;}
.ls18_c02290{letter-spacing:-0.032064pt;}
.ls3a_c02290{letter-spacing:-0.025600pt;}
.ls1a_c02290{letter-spacing:-0.021376pt;}
.ls17_c02290{letter-spacing:-0.019200pt;}
.ls32_c02290{letter-spacing:-0.016032pt;}
.ls16_c02290{letter-spacing:-0.006400pt;}
.ls21_c02290{letter-spacing:-0.005344pt;}
.ls15_c02290{letter-spacing:0.000000pt;}
.lsd_c02290{letter-spacing:0.005344pt;}
.lse_c02290{letter-spacing:0.010688pt;}
.ls2_c02290{letter-spacing:0.012800pt;}
.lsc_c02290{letter-spacing:0.016032pt;}
.ls10_c02290{letter-spacing:0.021376pt;}
.ls0_c02290{letter-spacing:0.025600pt;}
.lsf_c02290{letter-spacing:0.026720pt;}
.ls6_c02290{letter-spacing:0.032064pt;}
.ls7_c02290{letter-spacing:0.037408pt;}
.ls3_c02290{letter-spacing:0.038400pt;}
.ls20_c02290{letter-spacing:0.042752pt;}
.ls13_c02290{letter-spacing:0.044800pt;}
.ls9_c02290{letter-spacing:0.048096pt;}
.ls1_c02290{letter-spacing:0.051200pt;}
.lsb_c02290{letter-spacing:0.053440pt;}
.ls8_c02290{letter-spacing:0.058784pt;}
.ls3c_c02290{letter-spacing:0.069472pt;}
.ls5_c02290{letter-spacing:0.074816pt;}
.ls4_c02290{letter-spacing:0.080160pt;}
.ls14_c02290{letter-spacing:0.101984pt;}
.ls3d_c02290{letter-spacing:0.112224pt;}
.ls29_c02290{letter-spacing:0.122912pt;}
.lsa_c02290{letter-spacing:0.181696pt;}
.ls12_c02290{letter-spacing:0.256000pt;}
.ls11_c02290{letter-spacing:0.576000pt;}
.ws2a_c02290{word-spacing:-64.000000pt;}
.ws2_c02290{word-spacing:-53.440000pt;}
.ws17_c02290{word-spacing:-0.235136pt;}
.ws18_c02290{word-spacing:-0.176352pt;}
.ws36_c02290{word-spacing:-0.153600pt;}
.ws5_c02290{word-spacing:-0.133600pt;}
.ws6_c02290{word-spacing:-0.128256pt;}
.ws2d_c02290{word-spacing:-0.115200pt;}
.ws8_c02290{word-spacing:-0.112224pt;}
.ws2f_c02290{word-spacing:-0.108800pt;}
.ws1f_c02290{word-spacing:-0.106880pt;}
.wsd_c02290{word-spacing:-0.096192pt;}
.ws33_c02290{word-spacing:-0.096000pt;}
.ws7_c02290{word-spacing:-0.085504pt;}
.ws25_c02290{word-spacing:-0.080160pt;}
.ws31_c02290{word-spacing:-0.076800pt;}
.ws27_c02290{word-spacing:-0.074816pt;}
.ws20_c02290{word-spacing:-0.069472pt;}
.wsc_c02290{word-spacing:-0.064128pt;}
.ws21_c02290{word-spacing:-0.058784pt;}
.ws13_c02290{word-spacing:-0.053440pt;}
.wse_c02290{word-spacing:-0.048096pt;}
.ws2e_c02290{word-spacing:-0.038400pt;}
.ws3_c02290{word-spacing:-0.032064pt;}
.ws32_c02290{word-spacing:-0.025600pt;}
.ws0_c02290{word-spacing:-0.021376pt;}
.ws29_c02290{word-spacing:-0.006400pt;}
.ws1e_c02290{word-spacing:-0.005344pt;}
.ws30_c02290{word-spacing:0.000000pt;}
.ws1d_c02290{word-spacing:0.005344pt;}
.ws2b_c02290{word-spacing:0.006400pt;}
.ws16_c02290{word-spacing:0.010688pt;}
.ws1b_c02290{word-spacing:0.016032pt;}
.ws37_c02290{word-spacing:0.019200pt;}
.wsa_c02290{word-spacing:0.021376pt;}
.ws23_c02290{word-spacing:0.026720pt;}
.ws11_c02290{word-spacing:0.032064pt;}
.ws2c_c02290{word-spacing:0.038400pt;}
.ws24_c02290{word-spacing:0.048096pt;}
.ws28_c02290{word-spacing:0.057600pt;}
.ws1_c02290{word-spacing:0.058784pt;}
.ws22_c02290{word-spacing:0.074816pt;}
.ws15_c02290{word-spacing:0.085504pt;}
.ws9_c02290{word-spacing:0.096192pt;}
.ws10_c02290{word-spacing:0.101536pt;}
.ws26_c02290{word-spacing:0.106880pt;}
.ws1c_c02290{word-spacing:0.117568pt;}
.ws19_c02290{word-spacing:0.144288pt;}
.ws12_c02290{word-spacing:0.149632pt;}
.ws4_c02290{word-spacing:0.181696pt;}
.wsb_c02290{word-spacing:0.192384pt;}
.ws1a_c02290{word-spacing:0.229792pt;}
.wsf_c02290{word-spacing:0.272544pt;}
.ws14_c02290{word-spacing:0.288576pt;}
.ws34_c02290{word-spacing:43.731200pt;}
.ws35_c02290{word-spacing:43.846400pt;}
._2_c02290{margin-left:-12.724864pt;}
._0_c02290{margin-left:-1.024000pt;}
._1_c02290{width:0.956576pt;}
.fs1_c02290{font-size:42.560000pt;}
.fs2_c02290{font-size:53.440000pt;}
.fs0_c02290{font-size:64.000000pt;}
.y0_c02290{bottom:0.000000pt;}
.y4_c02290{bottom:50.987067pt;}
.y3_c02290{bottom:69.387067pt;}
.yd_c02290{bottom:107.947067pt;}
.y2e_c02290{bottom:127.787067pt;}
.y3d_c02290{bottom:128.512515pt;}
.y2f_c02290{bottom:147.387523pt;}
.y3e_c02290{bottom:148.112971pt;}
.y30_c02290{bottom:166.907819pt;}
.y3f_c02290{bottom:167.713427pt;}
.y31_c02290{bottom:186.508275pt;}
.y40_c02290{bottom:187.313883pt;}
.y32_c02290{bottom:206.108731pt;}
.y41_c02290{bottom:206.834179pt;}
.y33_c02290{bottom:225.709187pt;}
.y42_c02290{bottom:226.434635pt;}
.y34_c02290{bottom:245.309643pt;}
.y43_c02290{bottom:246.035091pt;}
.y35_c02290{bottom:264.910099pt;}
.y44_c02290{bottom:265.627523pt;}
.y36_c02290{bottom:284.510555pt;}
.y45_c02290{bottom:285.227979pt;}
.y37_c02290{bottom:304.111011pt;}
.y46_c02290{bottom:304.828435pt;}
.y38_c02290{bottom:323.711467pt;}
.y47_c02290{bottom:324.428891pt;}
.y39_c02290{bottom:343.311923pt;}
.y48_c02290{bottom:344.029347pt;}
.y3a_c02290{bottom:362.912379pt;}
.y49_c02290{bottom:363.629803pt;}
.y3b_c02290{bottom:382.432675pt;}
.y4a_c02290{bottom:383.230259pt;}
.y3c_c02290{bottom:402.033131pt;}
.y4b_c02290{bottom:402.830715pt;}
.y4d_c02290{bottom:443.227067pt;}
.y4c_c02290{bottom:469.547067pt;}
.yc_c02290{bottom:507.627067pt;}
.yb_c02290{bottom:535.067067pt;}
.ya_c02290{bottom:552.267067pt;}
.y9_c02290{bottom:562.187067pt;}
.ye_c02290{bottom:579.787067pt;}
.y1d_c02290{bottom:580.513851pt;}
.yf_c02290{bottom:598.747579pt;}
.y1e_c02290{bottom:599.474363pt;}
.y10_c02290{bottom:617.708091pt;}
.y1f_c02290{bottom:618.434875pt;}
.y11_c02290{bottom:636.668603pt;}
.y20_c02290{bottom:637.395387pt;}
.y12_c02290{bottom:655.629115pt;}
.y21_c02290{bottom:656.355899pt;}
.y13_c02290{bottom:674.589627pt;}
.y22_c02290{bottom:675.316411pt;}
.y14_c02290{bottom:693.550139pt;}
.y23_c02290{bottom:694.276923pt;}
.y15_c02290{bottom:712.510651pt;}
.y24_c02290{bottom:713.237435pt;}
.y16_c02290{bottom:731.471163pt;}
.y25_c02290{bottom:732.187579pt;}
.y17_c02290{bottom:750.431675pt;}
.y26_c02290{bottom:751.148091pt;}
.y18_c02290{bottom:769.392187pt;}
.y27_c02290{bottom:770.108603pt;}
.y19_c02290{bottom:788.352699pt;}
.y28_c02290{bottom:789.069115pt;}
.y1a_c02290{bottom:807.313211pt;}
.y29_c02290{bottom:808.029627pt;}
.y1b_c02290{bottom:826.273723pt;}
.y2a_c02290{bottom:826.990139pt;}
.y1c_c02290{bottom:845.234235pt;}
.y2b_c02290{bottom:845.950651pt;}
.y2d_c02290{bottom:878.587067pt;}
.y2c_c02290{bottom:901.787067pt;}
.y8_c02290{bottom:939.867067pt;}
.y7_c02290{bottom:967.467067pt;}
.y6_c02290{bottom:994.907067pt;}
.y5_c02290{bottom:1013.307067pt;}
.y2_c02290{bottom:1042.347067pt;}
.y1_c02290{bottom:1060.587067pt;}
.h3_c02290{height:37.801094pt;}
.h4_c02290{height:38.801406pt;}
.h5_c02290{height:46.468750pt;}
.h2_c02290{height:56.156250pt;}
.h1_c02290{height:56.843750pt;}
.h0_c02290{height:1122.666667pt;}
.w1_c02290{width:793.333333pt;}
.w0_c02290{width:793.626667pt;}
.x0_c02290{left:0.000000pt;}
.x6_c02290{left:104.000000pt;}
.x18_c02290{left:109.122624pt;}
.x1_c02290{left:113.440000pt;}
.x30_c02290{left:114.557824pt;}
.x33_c02290{left:116.798296pt;}
.x15_c02290{left:118.081840pt;}
.x1c_c02290{left:121.677128pt;}
.x16_c02290{left:128.405112pt;}
.x4_c02290{left:132.400000pt;}
.x1a_c02290{left:134.240760pt;}
.x1f_c02290{left:137.510064pt;}
.x31_c02290{left:141.601136pt;}
.x1b_c02290{left:144.158000pt;}
.x14_c02290{left:145.842584pt;}
.x35_c02290{left:147.358072pt;}
.x37_c02290{left:150.631272pt;}
.x17_c02290{left:151.922720pt;}
.x32_c02290{left:157.279096pt;}
.x2f_c02290{left:159.038608pt;}
.x19_c02290{left:162.561288pt;}
.x34_c02290{left:165.120192pt;}
.x1e_c02290{left:169.990896pt;}
.x36_c02290{left:183.193600pt;}
.x20_c02290{left:184.320000pt;}
.x38_c02290{left:185.920000pt;}
.x1d_c02290{left:225.913184pt;}
.x7_c02290{left:239.680000pt;}
.x3_c02290{left:316.960000pt;}
.x2_c02290{left:384.880000pt;}
.x39_c02290{left:418.000000pt;}
.x21_c02290{left:425.840000pt;}
.x2e_c02290{left:428.878544pt;}
.x2d_c02290{left:431.119016pt;}
.x2c_c02290{left:445.999384pt;}
.x2b_c02290{left:453.519728pt;}
.x2a_c02290{left:456.159664pt;}
.x29_c02290{left:461.040072pt;}
.x28_c02290{left:493.679888pt;}
.x27_c02290{left:498.560296pt;}
.x26_c02290{left:501.200232pt;}
.x25_c02290{left:508.640416pt;}
.x13_c02290{left:529.762224pt;}
.x24_c02290{left:533.759888pt;}
.x12_c02290{left:539.201064pt;}
.x11_c02290{left:543.040728pt;}
.x10_c02290{left:544.400776pt;}
.xf_c02290{left:548.240440pt;}
.xe_c02290{left:549.600488pt;}
.xd_c02290{left:554.320576pt;}
.xc_c02290{left:555.279824pt;}
.xb_c02290{left:556.720032pt;}
.xa_c02290{left:557.680616pt;}
.x9_c02290{left:564.720000pt;}
.x23_c02290{left:576.160520pt;}
.x22_c02290{left:626.000000pt;}
.x5_c02290{left:672.000000pt;}
.x8_c02290{left:674.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_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_d88505a4ede19b077061c7c7.woff2')format("woff");}.ff1_c02291{font-family:ff1_c02291;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02291;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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.800000px;}
.v2_c02291{vertical-align:78.120000px;}
.ls39_c02291{letter-spacing:-0.027000px;}
.ls38_c02291{letter-spacing:-0.014400px;}
.ls3c_c02291{letter-spacing:-0.006588px;}
.ls37_c02291{letter-spacing:0.000000px;}
.ls4_c02291{letter-spacing:0.006588px;}
.ls2d_c02291{letter-spacing:0.013176px;}
.ls1_c02291{letter-spacing:0.014400px;}
.ls3d_c02291{letter-spacing:0.026352px;}
.ls0_c02291{letter-spacing:0.028800px;}
.ls2_c02291{letter-spacing:0.036000px;}
.ls26_c02291{letter-spacing:0.039528px;}
.ls3b_c02291{letter-spacing:0.046116px;}
.ls34_c02291{letter-spacing:0.052704px;}
.ls1d_c02291{letter-spacing:0.059292px;}
.lse_c02291{letter-spacing:0.065880px;}
.ls5_c02291{letter-spacing:0.072468px;}
.ls16_c02291{letter-spacing:0.079056px;}
.ls30_c02291{letter-spacing:0.085644px;}
.ls7_c02291{letter-spacing:0.092232px;}
.ls6_c02291{letter-spacing:0.097200px;}
.ls19_c02291{letter-spacing:0.098820px;}
.ls3a_c02291{letter-spacing:0.135000px;}
.lsb_c02291{letter-spacing:0.138348px;}
.ls11_c02291{letter-spacing:0.151524px;}
.ls28_c02291{letter-spacing:0.158112px;}
.ls3_c02291{letter-spacing:0.164700px;}
.ls18_c02291{letter-spacing:0.177876px;}
.ls9_c02291{letter-spacing:0.180000px;}
.ls29_c02291{letter-spacing:64.080000px;}
.ls24_c02291{letter-spacing:66.240000px;}
.ls1b_c02291{letter-spacing:66.600000px;}
.ls1c_c02291{letter-spacing:66.960000px;}
.ls10_c02291{letter-spacing:99.000000px;}
.ls12_c02291{letter-spacing:99.360000px;}
.ls15_c02291{letter-spacing:99.720000px;}
.ls25_c02291{letter-spacing:117.450000px;}
.lsa_c02291{letter-spacing:132.120000px;}
.lsc_c02291{letter-spacing:132.480000px;}
.ls13_c02291{letter-spacing:132.840000px;}
.ls36_c02291{letter-spacing:133.200000px;}
.lsd_c02291{letter-spacing:150.300000px;}
.ls1f_c02291{letter-spacing:165.240000px;}
.ls35_c02291{letter-spacing:165.600000px;}
.ls2e_c02291{letter-spacing:165.960000px;}
.ls21_c02291{letter-spacing:183.330000px;}
.ls22_c02291{letter-spacing:183.420000px;}
.ls14_c02291{letter-spacing:186.480000px;}
.ls2b_c02291{letter-spacing:214.560000px;}
.ls20_c02291{letter-spacing:214.920000px;}
.ls23_c02291{letter-spacing:215.279400px;}
.ls2a_c02291{letter-spacing:230.400000px;}
.ls17_c02291{letter-spacing:234.360000px;}
.ls1a_c02291{letter-spacing:252.360000px;}
.ls27_c02291{letter-spacing:268.920000px;}
.ls1e_c02291{letter-spacing:281.520000px;}
.lsf_c02291{letter-spacing:296.640000px;}
.ls8_c02291{letter-spacing:314.640000px;}
.ls32_c02291{letter-spacing:329.400000px;}
.ls31_c02291{letter-spacing:347.760000px;}
.ls2f_c02291{letter-spacing:361.440000px;}
.ls33_c02291{letter-spacing:394.200000px;}
.ls2c_c02291{letter-spacing:414.720000px;}
.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;}
}
.ws6_c02291{word-spacing:-16.647876px;}
.ws0_c02291{word-spacing:-16.634700px;}
.ws15_c02291{word-spacing:-16.628112px;}
.ws7_c02291{word-spacing:-16.621524px;}
.ws2_c02291{word-spacing:-16.608348px;}
.wse_c02291{word-spacing:-16.568820px;}
.ws11_c02291{word-spacing:-16.562232px;}
.ws1_c02291{word-spacing:-16.542468px;}
.ws10_c02291{word-spacing:-16.529292px;}
.ws14_c02291{word-spacing:-16.509528px;}
.ws1d_c02291{word-spacing:-16.483176px;}
.ws23_c02291{word-spacing:-0.086400px;}
.ws25_c02291{word-spacing:-0.036000px;}
.ws24_c02291{word-spacing:-0.014400px;}
.ws22_c02291{word-spacing:0.000000px;}
.ws2e_c02291{word-spacing:0.006588px;}
.ws2b_c02291{word-spacing:0.013176px;}
.ws2a_c02291{word-spacing:0.026352px;}
.ws28_c02291{word-spacing:0.032940px;}
.ws30_c02291{word-spacing:0.039528px;}
.ws2d_c02291{word-spacing:0.046116px;}
.ws27_c02291{word-spacing:0.052704px;}
.ws31_c02291{word-spacing:0.065880px;}
.ws2c_c02291{word-spacing:0.079056px;}
.ws29_c02291{word-spacing:0.081000px;}
.ws26_c02291{word-spacing:0.085644px;}
.ws2f_c02291{word-spacing:0.098820px;}
.ws16_c02291{word-spacing:65.089440px;}
.ws13_c02291{word-spacing:67.238496px;}
.wsf_c02291{word-spacing:67.642380px;}
.wsa_c02291{word-spacing:99.996372px;}
.wsd_c02291{word-spacing:99.998496px;}
.ws20_c02291{word-spacing:100.400256px;}
.wsb_c02291{word-spacing:100.402380px;}
.ws18_c02291{word-spacing:100.426608px;}
.ws19_c02291{word-spacing:100.933020px;}
.wsc_c02291{word-spacing:116.962380px;}
.ws9_c02291{word-spacing:133.116372px;}
.ws4_c02291{word-spacing:133.546608px;}
.ws17_c02291{word-spacing:134.053020px;}
.ws8_c02291{word-spacing:150.082380px;}
.ws1f_c02291{word-spacing:150.106608px;}
.ws3_c02291{word-spacing:182.866608px;}
.ws21_c02291{word-spacing:215.831448px;}
.ws1b_c02291{word-spacing:215.833572px;}
.ws12_c02291{word-spacing:215.986608px;}
.ws1c_c02291{word-spacing:216.083304px;}
.ws1a_c02291{word-spacing:216.270000px;}
.ws5_c02291{word-spacing:448.546608px;}
.ws1e_c02291{word-spacing:881.363304px;}
._0_c02291{margin-left:-1.188000px;}
._3_c02291{width:117.540000px;}
._4_c02291{width:126.885600px;}
._5_c02291{width:133.355916px;}
._2_c02291{width:175.356000px;}
._a_c02291{width:214.319736px;}
._1_c02291{width:227.646000px;}
._6_c02291{width:232.099812px;}
._9_c02291{width:485.985600px;}
._c_c02291{width:611.410968px;}
._8_c02291{width:644.528844px;}
._7_c02291{width:665.528616px;}
._b_c02291{width:1378.800000px;}
.fc0_c02291{color:rgb(0,0,0);}
.fs1_c02291{font-size:54.000000px;}
.fs2_c02291{font-size:65.880000px;}
.fs0_c02291{font-size:72.000000px;}
.y0_c02291{bottom:0.000000px;}
.y4_c02291{bottom:57.360450px;}
.y3_c02291{bottom:78.060450px;}
.y3e_c02291{bottom:115.860450px;}
.y3d_c02291{bottom:132.420450px;}
.y3c_c02291{bottom:153.120600px;}
.y3b_c02291{bottom:173.820450px;}
.y3a_c02291{bottom:192.720450px;}
.y39_c02291{bottom:212.070450px;}
.y38_c02291{bottom:232.770450px;}
.y37_c02291{bottom:253.470450px;}
.y36_c02291{bottom:272.460450px;}
.y35_c02291{bottom:291.450450px;}
.y34_c02291{bottom:310.440450px;}
.y33_c02291{bottom:329.430450px;}
.y32_c02291{bottom:349.410450px;}
.y31_c02291{bottom:365.610450px;}
.y2e_c02291{bottom:383.970450px;}
.y30_c02291{bottom:384.600450px;}
.y2f_c02291{bottom:403.590600px;}
.y2d_c02291{bottom:424.110450px;}
.y2c_c02291{bottom:439.680000px;}
.y2b_c02291{bottom:455.160450px;}
.y2a_c02291{bottom:471.720450px;}
.y29_c02291{bottom:492.420450px;}
.y28_c02291{bottom:513.120600px;}
.y27_c02291{bottom:532.110450px;}
.y26_c02291{bottom:551.460450px;}
.y25_c02291{bottom:572.160450px;}
.y24_c02291{bottom:592.860450px;}
.y23_c02291{bottom:611.850450px;}
.y22_c02291{bottom:630.750450px;}
.y21_c02291{bottom:649.740450px;}
.y20_c02291{bottom:668.730450px;}
.y1f_c02291{bottom:688.800450px;}
.y1d_c02291{bottom:705.000450px;}
.y1b_c02291{bottom:723.360450px;}
.y1c_c02291{bottom:723.900450px;}
.y1e_c02291{bottom:742.890450px;}
.y1a_c02291{bottom:763.500450px;}
.y19_c02291{bottom:778.980900px;}
.y18_c02291{bottom:794.550450px;}
.y17_c02291{bottom:811.110600px;}
.y16_c02291{bottom:831.810450px;}
.y15_c02291{bottom:852.510450px;}
.y14_c02291{bottom:871.410450px;}
.y13_c02291{bottom:890.760450px;}
.y12_c02291{bottom:911.460450px;}
.y11_c02291{bottom:932.160450px;}
.y10_c02291{bottom:951.150450px;}
.yf_c02291{bottom:970.140450px;}
.ye_c02291{bottom:989.130450px;}
.yd_c02291{bottom:1008.120450px;}
.yc_c02291{bottom:1028.100450px;}
.yb_c02291{bottom:1044.300450px;}
.y8_c02291{bottom:1062.660450px;}
.ya_c02291{bottom:1063.290450px;}
.y9_c02291{bottom:1082.280450px;}
.y7_c02291{bottom:1101.540450px;}
.y6_c02291{bottom:1123.500450px;}
.y5_c02291{bottom:1139.970450px;}
.y2_c02291{bottom:1172.640450px;}
.y1_c02291{bottom:1193.160450px;}
.h3_c02291{height:47.961914px;}
.h4_c02291{height:58.513535px;}
.h2_c02291{height:63.175781px;}
.h1_c02291{height:63.949219px;}
.h5_c02291{height:64.975781px;}
.h7_c02291{height:65.028619px;}
.h6_c02291{height:65.029219px;}
.h9_c02291{height:65.029819px;}
.h8_c02291{height:142.069219px;}
.h0_c02291{height:1263.000000px;}
.w1_c02291{width:892.500000px;}
.w0_c02291{width:892.830000px;}
.x0_c02291{left:0.000000px;}
.x1_c02291{left:127.620000px;}
.x3_c02291{left:135.630000px;}
.xd_c02291{left:162.720000px;}
.x5_c02291{left:240.030000px;}
.xe_c02291{left:251.190000px;}
.x13_c02291{left:265.410000px;}
.x14_c02291{left:279.360000px;}
.x6_c02291{left:282.960000px;}
.x4_c02291{left:290.610000px;}
.x15_c02291{left:415.080000px;}
.xf_c02291{left:419.040000px;}
.x8_c02291{left:420.300000px;}
.x2_c02291{left:432.990000px;}
.x16_c02291{left:444.600000px;}
.x9_c02291{left:453.510000px;}
.x10_c02291{left:455.310000px;}
.x7_c02291{left:465.210000px;}
.x11_c02291{left:590.400000px;}
.xc_c02291{left:595.350000px;}
.xb_c02291{left:598.770000px;}
.x12_c02291{left:624.690000px;}
.xa_c02291{left:639.810000px;}
@media print{
.v0_c02291{vertical-align:0.000000pt;}
.v1_c02291{vertical-align:1.600000pt;}
.v2_c02291{vertical-align:69.440000pt;}
.ls39_c02291{letter-spacing:-0.024000pt;}
.ls38_c02291{letter-spacing:-0.012800pt;}
.ls3c_c02291{letter-spacing:-0.005856pt;}
.ls37_c02291{letter-spacing:0.000000pt;}
.ls4_c02291{letter-spacing:0.005856pt;}
.ls2d_c02291{letter-spacing:0.011712pt;}
.ls1_c02291{letter-spacing:0.012800pt;}
.ls3d_c02291{letter-spacing:0.023424pt;}
.ls0_c02291{letter-spacing:0.025600pt;}
.ls2_c02291{letter-spacing:0.032000pt;}
.ls26_c02291{letter-spacing:0.035136pt;}
.ls3b_c02291{letter-spacing:0.040992pt;}
.ls34_c02291{letter-spacing:0.046848pt;}
.ls1d_c02291{letter-spacing:0.052704pt;}
.lse_c02291{letter-spacing:0.058560pt;}
.ls5_c02291{letter-spacing:0.064416pt;}
.ls16_c02291{letter-spacing:0.070272pt;}
.ls30_c02291{letter-spacing:0.076128pt;}
.ls7_c02291{letter-spacing:0.081984pt;}
.ls6_c02291{letter-spacing:0.086400pt;}
.ls19_c02291{letter-spacing:0.087840pt;}
.ls3a_c02291{letter-spacing:0.120000pt;}
.lsb_c02291{letter-spacing:0.122976pt;}
.ls11_c02291{letter-spacing:0.134688pt;}
.ls28_c02291{letter-spacing:0.140544pt;}
.ls3_c02291{letter-spacing:0.146400pt;}
.ls18_c02291{letter-spacing:0.158112pt;}
.ls9_c02291{letter-spacing:0.160000pt;}
.ls29_c02291{letter-spacing:56.960000pt;}
.ls24_c02291{letter-spacing:58.880000pt;}
.ls1b_c02291{letter-spacing:59.200000pt;}
.ls1c_c02291{letter-spacing:59.520000pt;}
.ls10_c02291{letter-spacing:88.000000pt;}
.ls12_c02291{letter-spacing:88.320000pt;}
.ls15_c02291{letter-spacing:88.640000pt;}
.ls25_c02291{letter-spacing:104.400000pt;}
.lsa_c02291{letter-spacing:117.440000pt;}
.lsc_c02291{letter-spacing:117.760000pt;}
.ls13_c02291{letter-spacing:118.080000pt;}
.ls36_c02291{letter-spacing:118.400000pt;}
.lsd_c02291{letter-spacing:133.600000pt;}
.ls1f_c02291{letter-spacing:146.880000pt;}
.ls35_c02291{letter-spacing:147.200000pt;}
.ls2e_c02291{letter-spacing:147.520000pt;}
.ls21_c02291{letter-spacing:162.960000pt;}
.ls22_c02291{letter-spacing:163.040000pt;}
.ls14_c02291{letter-spacing:165.760000pt;}
.ls2b_c02291{letter-spacing:190.720000pt;}
.ls20_c02291{letter-spacing:191.040000pt;}
.ls23_c02291{letter-spacing:191.359467pt;}
.ls2a_c02291{letter-spacing:204.800000pt;}
.ls17_c02291{letter-spacing:208.320000pt;}
.ls1a_c02291{letter-spacing:224.320000pt;}
.ls27_c02291{letter-spacing:239.040000pt;}
.ls1e_c02291{letter-spacing:250.240000pt;}
.lsf_c02291{letter-spacing:263.680000pt;}
.ls8_c02291{letter-spacing:279.680000pt;}
.ls32_c02291{letter-spacing:292.800000pt;}
.ls31_c02291{letter-spacing:309.120000pt;}
.ls2f_c02291{letter-spacing:321.280000pt;}
.ls33_c02291{letter-spacing:350.400000pt;}
.ls2c_c02291{letter-spacing:368.640000pt;}
.ws6_c02291{word-spacing:-14.798112pt;}
.ws0_c02291{word-spacing:-14.786400pt;}
.ws15_c02291{word-spacing:-14.780544pt;}
.ws7_c02291{word-spacing:-14.774688pt;}
.ws2_c02291{word-spacing:-14.762976pt;}
.wse_c02291{word-spacing:-14.727840pt;}
.ws11_c02291{word-spacing:-14.721984pt;}
.ws1_c02291{word-spacing:-14.704416pt;}
.ws10_c02291{word-spacing:-14.692704pt;}
.ws14_c02291{word-spacing:-14.675136pt;}
.ws1d_c02291{word-spacing:-14.651712pt;}
.ws23_c02291{word-spacing:-0.076800pt;}
.ws25_c02291{word-spacing:-0.032000pt;}
.ws24_c02291{word-spacing:-0.012800pt;}
.ws22_c02291{word-spacing:0.000000pt;}
.ws2e_c02291{word-spacing:0.005856pt;}
.ws2b_c02291{word-spacing:0.011712pt;}
.ws2a_c02291{word-spacing:0.023424pt;}
.ws28_c02291{word-spacing:0.029280pt;}
.ws30_c02291{word-spacing:0.035136pt;}
.ws2d_c02291{word-spacing:0.040992pt;}
.ws27_c02291{word-spacing:0.046848pt;}
.ws31_c02291{word-spacing:0.058560pt;}
.ws2c_c02291{word-spacing:0.070272pt;}
.ws29_c02291{word-spacing:0.072000pt;}
.ws26_c02291{word-spacing:0.076128pt;}
.ws2f_c02291{word-spacing:0.087840pt;}
.ws16_c02291{word-spacing:57.857280pt;}
.ws13_c02291{word-spacing:59.767552pt;}
.wsf_c02291{word-spacing:60.126560pt;}
.wsa_c02291{word-spacing:88.885664pt;}
.wsd_c02291{word-spacing:88.887552pt;}
.ws20_c02291{word-spacing:89.244672pt;}
.wsb_c02291{word-spacing:89.246560pt;}
.ws18_c02291{word-spacing:89.268096pt;}
.ws19_c02291{word-spacing:89.718240pt;}
.wsc_c02291{word-spacing:103.966560pt;}
.ws9_c02291{word-spacing:118.325664pt;}
.ws4_c02291{word-spacing:118.708096pt;}
.ws17_c02291{word-spacing:119.158240pt;}
.ws8_c02291{word-spacing:133.406560pt;}
.ws1f_c02291{word-spacing:133.428096pt;}
.ws3_c02291{word-spacing:162.548096pt;}
.ws21_c02291{word-spacing:191.850176pt;}
.ws1b_c02291{word-spacing:191.852064pt;}
.ws12_c02291{word-spacing:191.988096pt;}
.ws1c_c02291{word-spacing:192.074048pt;}
.ws1a_c02291{word-spacing:192.240000pt;}
.ws5_c02291{word-spacing:398.708096pt;}
.ws1e_c02291{word-spacing:783.434048pt;}
._0_c02291{margin-left:-1.056000pt;}
._3_c02291{width:104.480000pt;}
._4_c02291{width:112.787200pt;}
._5_c02291{width:118.538592pt;}
._2_c02291{width:155.872000pt;}
._a_c02291{width:190.506432pt;}
._1_c02291{width:202.352000pt;}
._6_c02291{width:206.310944pt;}
._9_c02291{width:431.987200pt;}
._c_c02291{width:543.476416pt;}
._8_c02291{width:572.914528pt;}
._7_c02291{width:591.580992pt;}
._b_c02291{width:1225.600000pt;}
.fs1_c02291{font-size:48.000000pt;}
.fs2_c02291{font-size:58.560000pt;}
.fs0_c02291{font-size:64.000000pt;}
.y0_c02291{bottom:0.000000pt;}
.y4_c02291{bottom:50.987067pt;}
.y3_c02291{bottom:69.387067pt;}
.y3e_c02291{bottom:102.987067pt;}
.y3d_c02291{bottom:117.707067pt;}
.y3c_c02291{bottom:136.107200pt;}
.y3b_c02291{bottom:154.507067pt;}
.y3a_c02291{bottom:171.307067pt;}
.y39_c02291{bottom:188.507067pt;}
.y38_c02291{bottom:206.907067pt;}
.y37_c02291{bottom:225.307067pt;}
.y36_c02291{bottom:242.187067pt;}
.y35_c02291{bottom:259.067067pt;}
.y34_c02291{bottom:275.947067pt;}
.y33_c02291{bottom:292.827067pt;}
.y32_c02291{bottom:310.587067pt;}
.y31_c02291{bottom:324.987067pt;}
.y2e_c02291{bottom:341.307067pt;}
.y30_c02291{bottom:341.867067pt;}
.y2f_c02291{bottom:358.747200pt;}
.y2d_c02291{bottom:376.987067pt;}
.y2c_c02291{bottom:390.826667pt;}
.y2b_c02291{bottom:404.587067pt;}
.y2a_c02291{bottom:419.307067pt;}
.y29_c02291{bottom:437.707067pt;}
.y28_c02291{bottom:456.107200pt;}
.y27_c02291{bottom:472.987067pt;}
.y26_c02291{bottom:490.187067pt;}
.y25_c02291{bottom:508.587067pt;}
.y24_c02291{bottom:526.987067pt;}
.y23_c02291{bottom:543.867067pt;}
.y22_c02291{bottom:560.667067pt;}
.y21_c02291{bottom:577.547067pt;}
.y20_c02291{bottom:594.427067pt;}
.y1f_c02291{bottom:612.267067pt;}
.y1d_c02291{bottom:626.667067pt;}
.y1b_c02291{bottom:642.987067pt;}
.y1c_c02291{bottom:643.467067pt;}
.y1e_c02291{bottom:660.347067pt;}
.y1a_c02291{bottom:678.667067pt;}
.y19_c02291{bottom:692.427467pt;}
.y18_c02291{bottom:706.267067pt;}
.y17_c02291{bottom:720.987200pt;}
.y16_c02291{bottom:739.387067pt;}
.y15_c02291{bottom:757.787067pt;}
.y14_c02291{bottom:774.587067pt;}
.y13_c02291{bottom:791.787067pt;}
.y12_c02291{bottom:810.187067pt;}
.y11_c02291{bottom:828.587067pt;}
.y10_c02291{bottom:845.467067pt;}
.yf_c02291{bottom:862.347067pt;}
.ye_c02291{bottom:879.227067pt;}
.yd_c02291{bottom:896.107067pt;}
.yc_c02291{bottom:913.867067pt;}
.yb_c02291{bottom:928.267067pt;}
.y8_c02291{bottom:944.587067pt;}
.ya_c02291{bottom:945.147067pt;}
.y9_c02291{bottom:962.027067pt;}
.y7_c02291{bottom:979.147067pt;}
.y6_c02291{bottom:998.667067pt;}
.y5_c02291{bottom:1013.307067pt;}
.y2_c02291{bottom:1042.347067pt;}
.y1_c02291{bottom:1060.587067pt;}
.h3_c02291{height:42.632812pt;}
.h4_c02291{height:52.012031pt;}
.h2_c02291{height:56.156250pt;}
.h1_c02291{height:56.843750pt;}
.h5_c02291{height:57.756250pt;}
.h7_c02291{height:57.803217pt;}
.h6_c02291{height:57.803750pt;}
.h9_c02291{height:57.804283pt;}
.h8_c02291{height:126.283750pt;}
.h0_c02291{height:1122.666667pt;}
.w1_c02291{width:793.333333pt;}
.w0_c02291{width:793.626667pt;}
.x0_c02291{left:0.000000pt;}
.x1_c02291{left:113.440000pt;}
.x3_c02291{left:120.560000pt;}
.xd_c02291{left:144.640000pt;}
.x5_c02291{left:213.360000pt;}
.xe_c02291{left:223.280000pt;}
.x13_c02291{left:235.920000pt;}
.x14_c02291{left:248.320000pt;}
.x6_c02291{left:251.520000pt;}
.x4_c02291{left:258.320000pt;}
.x15_c02291{left:368.960000pt;}
.xf_c02291{left:372.480000pt;}
.x8_c02291{left:373.600000pt;}
.x2_c02291{left:384.880000pt;}
.x16_c02291{left:395.200000pt;}
.x9_c02291{left:403.120000pt;}
.x10_c02291{left:404.720000pt;}
.x7_c02291{left:413.520000pt;}
.x11_c02291{left:524.800000pt;}
.xc_c02291{left:529.200000pt;}
.xb_c02291{left:532.240000pt;}
.x12_c02291{left:555.280000pt;}
.xa_c02291{left:568.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_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_2a2c492519d95055df021e27.woff2')format("woff");}.ff1_c02292{font-family:ff1_c02292;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02292;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v7_c02292{vertical-align:-25.200000px;}
.v8_c02292{vertical-align:-23.400000px;}
.vf_c02292{vertical-align:-19.080000px;}
.vd_c02292{vertical-align:-18.000000px;}
.ve_c02292{vertical-align:-16.560000px;}
.vc_c02292{vertical-align:-13.680000px;}
.va_c02292{vertical-align:-12.600000px;}
.vb_c02292{vertical-align:-11.160000px;}
.v3_c02292{vertical-align:-2.520000px;}
.v6_c02292{vertical-align:-1.080000px;}
.v0_c02292{vertical-align:0.000000px;}
.v2_c02292{vertical-align:1.800000px;}
.v9_c02292{vertical-align:5.400000px;}
.v4_c02292{vertical-align:11.160000px;}
.v5_c02292{vertical-align:16.560000px;}
.v1_c02292{vertical-align:78.120000px;}
.ls4c_c02292{letter-spacing:-0.118800px;}
.ls4d_c02292{letter-spacing:-0.070200px;}
.ls4a_c02292{letter-spacing:-0.043200px;}
.ls46_c02292{letter-spacing:-0.032940px;}
.ls47_c02292{letter-spacing:-0.027000px;}
.ls45_c02292{letter-spacing:-0.014400px;}
.ls4b_c02292{letter-spacing:-0.010800px;}
.ls44_c02292{letter-spacing:0.000000px;}
.ls33_c02292{letter-spacing:0.007200px;}
.ls34_c02292{letter-spacing:0.010800px;}
.ls36_c02292{letter-spacing:0.012636px;}
.ls2c_c02292{letter-spacing:0.013176px;}
.ls42_c02292{letter-spacing:0.019152px;}
.ls2f_c02292{letter-spacing:0.019764px;}
.ls2_c02292{letter-spacing:0.026352px;}
.ls43_c02292{letter-spacing:0.028728px;}
.ls0_c02292{letter-spacing:0.028800px;}
.ls37_c02292{letter-spacing:0.032400px;}
.ls3_c02292{letter-spacing:0.032940px;}
.ls35_c02292{letter-spacing:0.037800px;}
.ls24_c02292{letter-spacing:0.039528px;}
.ls3f_c02292{letter-spacing:0.043092px;}
.ls3a_c02292{letter-spacing:0.043200px;}
.ls1b_c02292{letter-spacing:0.059292px;}
.ls7_c02292{letter-spacing:0.065880px;}
.ls28_c02292{letter-spacing:0.072468px;}
.ls14_c02292{letter-spacing:0.079056px;}
.ls4f_c02292{letter-spacing:0.081396px;}
.ls5_c02292{letter-spacing:0.092232px;}
.ls4_c02292{letter-spacing:0.097200px;}
.ls17_c02292{letter-spacing:0.098820px;}
.ls39_c02292{letter-spacing:0.110124px;}
.ls40_c02292{letter-spacing:0.124488px;}
.ls41_c02292{letter-spacing:0.134064px;}
.ls48_c02292{letter-spacing:0.135000px;}
.lsb_c02292{letter-spacing:0.138348px;}
.ls49_c02292{letter-spacing:0.151200px;}
.lsd_c02292{letter-spacing:0.151524px;}
.ls26_c02292{letter-spacing:0.158112px;}
.ls1_c02292{letter-spacing:0.164700px;}
.ls16_c02292{letter-spacing:0.177876px;}
.ls9_c02292{letter-spacing:0.180000px;}
.ls4e_c02292{letter-spacing:0.181944px;}
.ls3c_c02292{letter-spacing:0.205884px;}
.ls27_c02292{letter-spacing:64.080000px;}
.ls22_c02292{letter-spacing:66.240000px;}
.ls19_c02292{letter-spacing:66.600000px;}
.ls1a_c02292{letter-spacing:66.960000px;}
.ls11_c02292{letter-spacing:99.000000px;}
.ls12_c02292{letter-spacing:99.360000px;}
.ls13_c02292{letter-spacing:99.720000px;}
.ls38_c02292{letter-spacing:112.680000px;}
.ls23_c02292{letter-spacing:117.450000px;}
.lsa_c02292{letter-spacing:132.120000px;}
.lsc_c02292{letter-spacing:132.480000px;}
.lsf_c02292{letter-spacing:132.840000px;}
.lse_c02292{letter-spacing:150.300000px;}
.ls3e_c02292{letter-spacing:156.778200px;}
.ls1d_c02292{letter-spacing:165.240000px;}
.ls2d_c02292{letter-spacing:165.960000px;}
.ls1f_c02292{letter-spacing:183.330000px;}
.ls31_c02292{letter-spacing:183.420000px;}
.ls10_c02292{letter-spacing:186.480000px;}
.ls3d_c02292{letter-spacing:199.260000px;}
.ls3b_c02292{letter-spacing:200.790000px;}
.ls15_c02292{letter-spacing:201.240000px;}
.ls2a_c02292{letter-spacing:214.560000px;}
.ls1e_c02292{letter-spacing:214.920000px;}
.ls20_c02292{letter-spacing:215.279400px;}
.ls29_c02292{letter-spacing:230.400000px;}
.ls30_c02292{letter-spacing:234.360000px;}
.ls18_c02292{letter-spacing:252.360000px;}
.ls25_c02292{letter-spacing:268.920000px;}
.ls1c_c02292{letter-spacing:281.520000px;}
.ls21_c02292{letter-spacing:314.640000px;}
.ls8_c02292{letter-spacing:329.400000px;}
.ls6_c02292{letter-spacing:347.760000px;}
.ls32_c02292{letter-spacing:361.440000px;}
.ls2e_c02292{letter-spacing:381.960000px;}
.ls2b_c02292{letter-spacing:414.720000px;}
.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;}
}
.ws7_c02292{word-spacing:-16.647876px;}
.ws0_c02292{word-spacing:-16.634700px;}
.ws12_c02292{word-spacing:-16.628112px;}
.ws8_c02292{word-spacing:-16.621524px;}
.ws2_c02292{word-spacing:-16.608348px;}
.wsa_c02292{word-spacing:-16.568820px;}
.wse_c02292{word-spacing:-16.562232px;}
.ws13_c02292{word-spacing:-16.542468px;}
.wsd_c02292{word-spacing:-16.529292px;}
.ws11_c02292{word-spacing:-16.509528px;}
.ws1_c02292{word-spacing:-16.496352px;}
.ws2e_c02292{word-spacing:-0.296856px;}
.ws2d_c02292{word-spacing:-0.272916px;}
.ws31_c02292{word-spacing:-0.225036px;}
.ws30_c02292{word-spacing:-0.215460px;}
.ws32_c02292{word-spacing:-0.172368px;}
.ws34_c02292{word-spacing:-0.119700px;}
.ws2a_c02292{word-spacing:-0.115200px;}
.ws33_c02292{word-spacing:-0.110124px;}
.ws2c_c02292{word-spacing:-0.101088px;}
.ws20_c02292{word-spacing:-0.086400px;}
.ws2b_c02292{word-spacing:-0.007200px;}
.ws1f_c02292{word-spacing:0.000000px;}
.ws22_c02292{word-spacing:0.013176px;}
.ws26_c02292{word-spacing:0.026352px;}
.ws27_c02292{word-spacing:0.052704px;}
.ws21_c02292{word-spacing:0.059292px;}
.ws24_c02292{word-spacing:0.065880px;}
.ws29_c02292{word-spacing:0.072468px;}
.ws28_c02292{word-spacing:0.079056px;}
.ws25_c02292{word-spacing:0.081000px;}
.ws23_c02292{word-spacing:0.480924px;}
.ws1e_c02292{word-spacing:58.609440px;}
.ws15_c02292{word-spacing:65.089440px;}
.ws10_c02292{word-spacing:67.238496px;}
.wsc_c02292{word-spacing:67.642380px;}
.ws4_c02292{word-spacing:99.996372px;}
.wsb_c02292{word-spacing:99.998496px;}
.ws5_c02292{word-spacing:100.402380px;}
.ws14_c02292{word-spacing:100.426608px;}
.ws16_c02292{word-spacing:100.933020px;}
.ws19_c02292{word-spacing:133.116372px;}
.ws1a_c02292{word-spacing:133.546608px;}
.ws1d_c02292{word-spacing:134.053020px;}
.ws9_c02292{word-spacing:150.082380px;}
.ws3_c02292{word-spacing:150.106608px;}
.ws35_c02292{word-spacing:156.735000px;}
.ws6_c02292{word-spacing:182.842380px;}
.ws1b_c02292{word-spacing:182.866608px;}
.ws18_c02292{word-spacing:215.833572px;}
.wsf_c02292{word-spacing:215.986608px;}
.ws1c_c02292{word-spacing:216.083304px;}
.ws17_c02292{word-spacing:216.270000px;}
.ws2f_c02292{word-spacing:241.336800px;}
._7_c02292{margin-left:-1.104336px;}
._24_c02292{width:42.125400px;}
._18_c02292{width:50.937552px;}
._1b_c02292{width:62.053200px;}
._14_c02292{width:66.375000px;}
._21_c02292{width:70.206876px;}
._1e_c02292{width:72.489276px;}
._1d_c02292{width:75.420000px;}
._15_c02292{width:77.310180px;}
._d_c02292{width:84.474000px;}
._16_c02292{width:87.278400px;}
._c_c02292{width:88.581600px;}
._19_c02292{width:89.974980px;}
._25_c02292{width:93.360168px;}
._22_c02292{width:95.735016px;}
._20_c02292{width:97.740000px;}
._17_c02292{width:100.598400px;}
._f_c02292{width:104.580000px;}
._23_c02292{width:106.306920px;}
._10_c02292{width:111.909600px;}
._11_c02292{width:114.501600px;}
._3_c02292{width:117.540000px;}
._1a_c02292{width:119.250000px;}
._e_c02292{width:122.220000px;}
._4_c02292{width:126.885600px;}
._1c_c02292{width:129.607020px;}
._8_c02292{width:133.272252px;}
._13_c02292{width:139.356000px;}
._12_c02292{width:145.344600px;}
._1f_c02292{width:156.780000px;}
._2_c02292{width:175.356000px;}
._5_c02292{width:214.319736px;}
._1_c02292{width:227.646000px;}
._9_c02292{width:232.016148px;}
._0_c02292{width:485.985600px;}
._b_c02292{width:644.609520px;}
._a_c02292{width:665.528616px;}
._6_c02292{width:1378.800000px;}
.fc0_c02292{color:rgb(0,0,0);}
.fs3_c02292{font-size:42.120000px;}
.fs4_c02292{font-size:47.880000px;}
.fs2_c02292{font-size:54.000000px;}
.fs1_c02292{font-size:65.880000px;}
.fs0_c02292{font-size:72.000000px;}
.y0_c02292{bottom:0.000000px;}
.y4_c02292{bottom:57.360450px;}
.y3_c02292{bottom:78.060450px;}
.y4a_c02292{bottom:120.810900px;}
.y49_c02292{bottom:136.380450px;}
.y48_c02292{bottom:151.860900px;}
.y47_c02292{bottom:167.430450px;}
.y46_c02292{bottom:182.910900px;}
.y45_c02292{bottom:198.480450px;}
.y43_c02292{bottom:217.830000px;}
.y44_c02292{bottom:219.180450px;}
.y42_c02292{bottom:233.310450px;}
.y40_c02292{bottom:236.820000px;}
.y41_c02292{bottom:238.170450px;}
.y3f_c02292{bottom:252.300450px;}
.y3d_c02292{bottom:255.720900px;}
.y3e_c02292{bottom:257.070450px;}
.y3c_c02292{bottom:271.290450px;}
.y3a_c02292{bottom:274.710900px;}
.y3b_c02292{bottom:276.060450px;}
.y39_c02292{bottom:290.280450px;}
.y37_c02292{bottom:293.700450px;}
.y38_c02292{bottom:295.050450px;}
.y36_c02292{bottom:312.690450px;}
.y35_c02292{bottom:328.170450px;}
.y33_c02292{bottom:333.390450px;}
.y34_c02292{bottom:334.740450px;}
.y32_c02292{bottom:349.590450px;}
.y31_c02292{bottom:367.860450px;}
.y30_c02292{bottom:385.230450px;}
.y2f_c02292{bottom:405.390450px;}
.y2e_c02292{bottom:422.040600px;}
.y2d_c02292{bottom:443.280600px;}
.y2c_c02292{bottom:463.800450px;}
.y2b_c02292{bottom:479.280900px;}
.y2a_c02292{bottom:494.850450px;}
.y29_c02292{bottom:511.410450px;}
.y28_c02292{bottom:532.110450px;}
.y27_c02292{bottom:552.810450px;}
.y26_c02292{bottom:571.800450px;}
.y25_c02292{bottom:591.150450px;}
.y24_c02292{bottom:611.850450px;}
.y23_c02292{bottom:632.550450px;}
.y22_c02292{bottom:651.450450px;}
.y21_c02292{bottom:670.440450px;}
.y20_c02292{bottom:689.430450px;}
.y1f_c02292{bottom:708.420450px;}
.y1e_c02292{bottom:728.490450px;}
.y1d_c02292{bottom:744.960450px;}
.y1c_c02292{bottom:746.400450px;}
.y19_c02292{bottom:763.860450px;}
.y1b_c02292{bottom:765.300450px;}
.y1a_c02292{bottom:784.290600px;}
.y18_c02292{bottom:804.900150px;}
.y17_c02292{bottom:820.380600px;}
.y16_c02292{bottom:835.950150px;}
.y15_c02292{bottom:851.430600px;}
.y14_c02292{bottom:867.990450px;}
.y13_c02292{bottom:888.690450px;}
.y12_c02292{bottom:909.390450px;}
.y11_c02292{bottom:928.380450px;}
.y10_c02292{bottom:947.730450px;}
.yf_c02292{bottom:968.430450px;}
.ye_c02292{bottom:989.130450px;}
.yd_c02292{bottom:1008.120450px;}
.yc_c02292{bottom:1027.020450px;}
.yb_c02292{bottom:1046.010450px;}
.ya_c02292{bottom:1065.000450px;}
.y9_c02292{bottom:1085.070450px;}
.y7_c02292{bottom:1101.270450px;}
.y5_c02292{bottom:1119.630450px;}
.y6_c02292{bottom:1120.170450px;}
.y8_c02292{bottom:1139.160450px;}
.y2_c02292{bottom:1172.640450px;}
.y1_c02292{bottom:1193.160450px;}
.h9_c02292{height:42.526230px;}
.h5_c02292{height:47.961914px;}
.ha_c02292{height:48.461836px;}
.h4_c02292{height:58.513535px;}
.h2_c02292{height:63.175781px;}
.h1_c02292{height:63.949219px;}
.h6_c02292{height:64.975781px;}
.h7_c02292{height:65.029219px;}
.h8_c02292{height:65.029819px;}
.h3_c02292{height:142.069219px;}
.h0_c02292{height:1263.000000px;}
.w1_c02292{width:892.500000px;}
.w0_c02292{width:892.830000px;}
.x0_c02292{left:0.000000px;}
.x1_c02292{left:127.620000px;}
.x3_c02292{left:135.630000px;}
.x12_c02292{left:143.910000px;}
.x13_c02292{left:150.300000px;}
.xc_c02292{left:162.720000px;}
.x14_c02292{left:220.680000px;}
.xe_c02292{left:240.390000px;}
.x4_c02292{left:259.200000px;}
.x5_c02292{left:266.220000px;}
.xf_c02292{left:288.090000px;}
.xd_c02292{left:290.610000px;}
.x7_c02292{left:424.170000px;}
.x2_c02292{left:432.990000px;}
.x8_c02292{left:444.330000px;}
.x6_c02292{left:465.210000px;}
.x10_c02292{left:492.930000px;}
.x15_c02292{left:555.390000px;}
.x11_c02292{left:592.830000px;}
.xa_c02292{left:603.630000px;}
.xb_c02292{left:606.420000px;}
.x9_c02292{left:639.810000px;}
@media print{
.v7_c02292{vertical-align:-22.400000pt;}
.v8_c02292{vertical-align:-20.800000pt;}
.vf_c02292{vertical-align:-16.960000pt;}
.vd_c02292{vertical-align:-16.000000pt;}
.ve_c02292{vertical-align:-14.720000pt;}
.vc_c02292{vertical-align:-12.160000pt;}
.va_c02292{vertical-align:-11.200000pt;}
.vb_c02292{vertical-align:-9.920000pt;}
.v3_c02292{vertical-align:-2.240000pt;}
.v6_c02292{vertical-align:-0.960000pt;}
.v0_c02292{vertical-align:0.000000pt;}
.v2_c02292{vertical-align:1.600000pt;}
.v9_c02292{vertical-align:4.800000pt;}
.v4_c02292{vertical-align:9.920000pt;}
.v5_c02292{vertical-align:14.720000pt;}
.v1_c02292{vertical-align:69.440000pt;}
.ls4c_c02292{letter-spacing:-0.105600pt;}
.ls4d_c02292{letter-spacing:-0.062400pt;}
.ls4a_c02292{letter-spacing:-0.038400pt;}
.ls46_c02292{letter-spacing:-0.029280pt;}
.ls47_c02292{letter-spacing:-0.024000pt;}
.ls45_c02292{letter-spacing:-0.012800pt;}
.ls4b_c02292{letter-spacing:-0.009600pt;}
.ls44_c02292{letter-spacing:0.000000pt;}
.ls33_c02292{letter-spacing:0.006400pt;}
.ls34_c02292{letter-spacing:0.009600pt;}
.ls36_c02292{letter-spacing:0.011232pt;}
.ls2c_c02292{letter-spacing:0.011712pt;}
.ls42_c02292{letter-spacing:0.017024pt;}
.ls2f_c02292{letter-spacing:0.017568pt;}
.ls2_c02292{letter-spacing:0.023424pt;}
.ls43_c02292{letter-spacing:0.025536pt;}
.ls0_c02292{letter-spacing:0.025600pt;}
.ls37_c02292{letter-spacing:0.028800pt;}
.ls3_c02292{letter-spacing:0.029280pt;}
.ls35_c02292{letter-spacing:0.033600pt;}
.ls24_c02292{letter-spacing:0.035136pt;}
.ls3f_c02292{letter-spacing:0.038304pt;}
.ls3a_c02292{letter-spacing:0.038400pt;}
.ls1b_c02292{letter-spacing:0.052704pt;}
.ls7_c02292{letter-spacing:0.058560pt;}
.ls28_c02292{letter-spacing:0.064416pt;}
.ls14_c02292{letter-spacing:0.070272pt;}
.ls4f_c02292{letter-spacing:0.072352pt;}
.ls5_c02292{letter-spacing:0.081984pt;}
.ls4_c02292{letter-spacing:0.086400pt;}
.ls17_c02292{letter-spacing:0.087840pt;}
.ls39_c02292{letter-spacing:0.097888pt;}
.ls40_c02292{letter-spacing:0.110656pt;}
.ls41_c02292{letter-spacing:0.119168pt;}
.ls48_c02292{letter-spacing:0.120000pt;}
.lsb_c02292{letter-spacing:0.122976pt;}
.ls49_c02292{letter-spacing:0.134400pt;}
.lsd_c02292{letter-spacing:0.134688pt;}
.ls26_c02292{letter-spacing:0.140544pt;}
.ls1_c02292{letter-spacing:0.146400pt;}
.ls16_c02292{letter-spacing:0.158112pt;}
.ls9_c02292{letter-spacing:0.160000pt;}
.ls4e_c02292{letter-spacing:0.161728pt;}
.ls3c_c02292{letter-spacing:0.183008pt;}
.ls27_c02292{letter-spacing:56.960000pt;}
.ls22_c02292{letter-spacing:58.880000pt;}
.ls19_c02292{letter-spacing:59.200000pt;}
.ls1a_c02292{letter-spacing:59.520000pt;}
.ls11_c02292{letter-spacing:88.000000pt;}
.ls12_c02292{letter-spacing:88.320000pt;}
.ls13_c02292{letter-spacing:88.640000pt;}
.ls38_c02292{letter-spacing:100.160000pt;}
.ls23_c02292{letter-spacing:104.400000pt;}
.lsa_c02292{letter-spacing:117.440000pt;}
.lsc_c02292{letter-spacing:117.760000pt;}
.lsf_c02292{letter-spacing:118.080000pt;}
.lse_c02292{letter-spacing:133.600000pt;}
.ls3e_c02292{letter-spacing:139.358400pt;}
.ls1d_c02292{letter-spacing:146.880000pt;}
.ls2d_c02292{letter-spacing:147.520000pt;}
.ls1f_c02292{letter-spacing:162.960000pt;}
.ls31_c02292{letter-spacing:163.040000pt;}
.ls10_c02292{letter-spacing:165.760000pt;}
.ls3d_c02292{letter-spacing:177.120000pt;}
.ls3b_c02292{letter-spacing:178.480000pt;}
.ls15_c02292{letter-spacing:178.880000pt;}
.ls2a_c02292{letter-spacing:190.720000pt;}
.ls1e_c02292{letter-spacing:191.040000pt;}
.ls20_c02292{letter-spacing:191.359467pt;}
.ls29_c02292{letter-spacing:204.800000pt;}
.ls30_c02292{letter-spacing:208.320000pt;}
.ls18_c02292{letter-spacing:224.320000pt;}
.ls25_c02292{letter-spacing:239.040000pt;}
.ls1c_c02292{letter-spacing:250.240000pt;}
.ls21_c02292{letter-spacing:279.680000pt;}
.ls8_c02292{letter-spacing:292.800000pt;}
.ls6_c02292{letter-spacing:309.120000pt;}
.ls32_c02292{letter-spacing:321.280000pt;}
.ls2e_c02292{letter-spacing:339.520000pt;}
.ls2b_c02292{letter-spacing:368.640000pt;}
.ws7_c02292{word-spacing:-14.798112pt;}
.ws0_c02292{word-spacing:-14.786400pt;}
.ws12_c02292{word-spacing:-14.780544pt;}
.ws8_c02292{word-spacing:-14.774688pt;}
.ws2_c02292{word-spacing:-14.762976pt;}
.wsa_c02292{word-spacing:-14.727840pt;}
.wse_c02292{word-spacing:-14.721984pt;}
.ws13_c02292{word-spacing:-14.704416pt;}
.wsd_c02292{word-spacing:-14.692704pt;}
.ws11_c02292{word-spacing:-14.675136pt;}
.ws1_c02292{word-spacing:-14.663424pt;}
.ws2e_c02292{word-spacing:-0.263872pt;}
.ws2d_c02292{word-spacing:-0.242592pt;}
.ws31_c02292{word-spacing:-0.200032pt;}
.ws30_c02292{word-spacing:-0.191520pt;}
.ws32_c02292{word-spacing:-0.153216pt;}
.ws34_c02292{word-spacing:-0.106400pt;}
.ws2a_c02292{word-spacing:-0.102400pt;}
.ws33_c02292{word-spacing:-0.097888pt;}
.ws2c_c02292{word-spacing:-0.089856pt;}
.ws20_c02292{word-spacing:-0.076800pt;}
.ws2b_c02292{word-spacing:-0.006400pt;}
.ws1f_c02292{word-spacing:0.000000pt;}
.ws22_c02292{word-spacing:0.011712pt;}
.ws26_c02292{word-spacing:0.023424pt;}
.ws27_c02292{word-spacing:0.046848pt;}
.ws21_c02292{word-spacing:0.052704pt;}
.ws24_c02292{word-spacing:0.058560pt;}
.ws29_c02292{word-spacing:0.064416pt;}
.ws28_c02292{word-spacing:0.070272pt;}
.ws25_c02292{word-spacing:0.072000pt;}
.ws23_c02292{word-spacing:0.427488pt;}
.ws1e_c02292{word-spacing:52.097280pt;}
.ws15_c02292{word-spacing:57.857280pt;}
.ws10_c02292{word-spacing:59.767552pt;}
.wsc_c02292{word-spacing:60.126560pt;}
.ws4_c02292{word-spacing:88.885664pt;}
.wsb_c02292{word-spacing:88.887552pt;}
.ws5_c02292{word-spacing:89.246560pt;}
.ws14_c02292{word-spacing:89.268096pt;}
.ws16_c02292{word-spacing:89.718240pt;}
.ws19_c02292{word-spacing:118.325664pt;}
.ws1a_c02292{word-spacing:118.708096pt;}
.ws1d_c02292{word-spacing:119.158240pt;}
.ws9_c02292{word-spacing:133.406560pt;}
.ws3_c02292{word-spacing:133.428096pt;}
.ws35_c02292{word-spacing:139.320000pt;}
.ws6_c02292{word-spacing:162.526560pt;}
.ws1b_c02292{word-spacing:162.548096pt;}
.ws18_c02292{word-spacing:191.852064pt;}
.wsf_c02292{word-spacing:191.988096pt;}
.ws1c_c02292{word-spacing:192.074048pt;}
.ws17_c02292{word-spacing:192.240000pt;}
.ws2f_c02292{word-spacing:214.521600pt;}
._7_c02292{margin-left:-0.981632pt;}
._24_c02292{width:37.444800pt;}
._18_c02292{width:45.277824pt;}
._1b_c02292{width:55.158400pt;}
._14_c02292{width:59.000000pt;}
._21_c02292{width:62.406112pt;}
._1e_c02292{width:64.434912pt;}
._1d_c02292{width:67.040000pt;}
._15_c02292{width:68.720160pt;}
._d_c02292{width:75.088000pt;}
._16_c02292{width:77.580800pt;}
._c_c02292{width:78.739200pt;}
._19_c02292{width:79.977760pt;}
._25_c02292{width:82.986816pt;}
._22_c02292{width:85.097792pt;}
._20_c02292{width:86.880000pt;}
._17_c02292{width:89.420800pt;}
._f_c02292{width:92.960000pt;}
._23_c02292{width:94.495040pt;}
._10_c02292{width:99.475200pt;}
._11_c02292{width:101.779200pt;}
._3_c02292{width:104.480000pt;}
._1a_c02292{width:106.000000pt;}
._e_c02292{width:108.640000pt;}
._4_c02292{width:112.787200pt;}
._1c_c02292{width:115.206240pt;}
._8_c02292{width:118.464224pt;}
._13_c02292{width:123.872000pt;}
._12_c02292{width:129.195200pt;}
._1f_c02292{width:139.360000pt;}
._2_c02292{width:155.872000pt;}
._5_c02292{width:190.506432pt;}
._1_c02292{width:202.352000pt;}
._9_c02292{width:206.236576pt;}
._0_c02292{width:431.987200pt;}
._b_c02292{width:572.986240pt;}
._a_c02292{width:591.580992pt;}
._6_c02292{width:1225.600000pt;}
.fs3_c02292{font-size:37.440000pt;}
.fs4_c02292{font-size:42.560000pt;}
.fs2_c02292{font-size:48.000000pt;}
.fs1_c02292{font-size:58.560000pt;}
.fs0_c02292{font-size:64.000000pt;}
.y0_c02292{bottom:0.000000pt;}
.y4_c02292{bottom:50.987067pt;}
.y3_c02292{bottom:69.387067pt;}
.y4a_c02292{bottom:107.387467pt;}
.y49_c02292{bottom:121.227067pt;}
.y48_c02292{bottom:134.987467pt;}
.y47_c02292{bottom:148.827067pt;}
.y46_c02292{bottom:162.587467pt;}
.y45_c02292{bottom:176.427067pt;}
.y43_c02292{bottom:193.626667pt;}
.y44_c02292{bottom:194.827067pt;}
.y42_c02292{bottom:207.387067pt;}
.y40_c02292{bottom:210.506667pt;}
.y41_c02292{bottom:211.707067pt;}
.y3f_c02292{bottom:224.267067pt;}
.y3d_c02292{bottom:227.307467pt;}
.y3e_c02292{bottom:228.507067pt;}
.y3c_c02292{bottom:241.147067pt;}
.y3a_c02292{bottom:244.187467pt;}
.y3b_c02292{bottom:245.387067pt;}
.y39_c02292{bottom:258.027067pt;}
.y37_c02292{bottom:261.067067pt;}
.y38_c02292{bottom:262.267067pt;}
.y36_c02292{bottom:277.947067pt;}
.y35_c02292{bottom:291.707067pt;}
.y33_c02292{bottom:296.347067pt;}
.y34_c02292{bottom:297.547067pt;}
.y32_c02292{bottom:310.747067pt;}
.y31_c02292{bottom:326.987067pt;}
.y30_c02292{bottom:342.427067pt;}
.y2f_c02292{bottom:360.347067pt;}
.y2e_c02292{bottom:375.147200pt;}
.y2d_c02292{bottom:394.027200pt;}
.y2c_c02292{bottom:412.267067pt;}
.y2b_c02292{bottom:426.027467pt;}
.y2a_c02292{bottom:439.867067pt;}
.y29_c02292{bottom:454.587067pt;}
.y28_c02292{bottom:472.987067pt;}
.y27_c02292{bottom:491.387067pt;}
.y26_c02292{bottom:508.267067pt;}
.y25_c02292{bottom:525.467067pt;}
.y24_c02292{bottom:543.867067pt;}
.y23_c02292{bottom:562.267067pt;}
.y22_c02292{bottom:579.067067pt;}
.y21_c02292{bottom:595.947067pt;}
.y20_c02292{bottom:612.827067pt;}
.y1f_c02292{bottom:629.707067pt;}
.y1e_c02292{bottom:647.547067pt;}
.y1d_c02292{bottom:662.187067pt;}
.y1c_c02292{bottom:663.467067pt;}
.y19_c02292{bottom:678.987067pt;}
.y1b_c02292{bottom:680.267067pt;}
.y1a_c02292{bottom:697.147200pt;}
.y18_c02292{bottom:715.466800pt;}
.y17_c02292{bottom:729.227200pt;}
.y16_c02292{bottom:743.066800pt;}
.y15_c02292{bottom:756.827200pt;}
.y14_c02292{bottom:771.547067pt;}
.y13_c02292{bottom:789.947067pt;}
.y12_c02292{bottom:808.347067pt;}
.y11_c02292{bottom:825.227067pt;}
.y10_c02292{bottom:842.427067pt;}
.yf_c02292{bottom:860.827067pt;}
.ye_c02292{bottom:879.227067pt;}
.yd_c02292{bottom:896.107067pt;}
.yc_c02292{bottom:912.907067pt;}
.yb_c02292{bottom:929.787067pt;}
.ya_c02292{bottom:946.667067pt;}
.y9_c02292{bottom:964.507067pt;}
.y7_c02292{bottom:978.907067pt;}
.y5_c02292{bottom:995.227067pt;}
.y6_c02292{bottom:995.707067pt;}
.y8_c02292{bottom:1012.587067pt;}
.y2_c02292{bottom:1042.347067pt;}
.y1_c02292{bottom:1060.587067pt;}
.h9_c02292{height:37.801094pt;}
.h5_c02292{height:42.632812pt;}
.ha_c02292{height:43.077187pt;}
.h4_c02292{height:52.012031pt;}
.h2_c02292{height:56.156250pt;}
.h1_c02292{height:56.843750pt;}
.h6_c02292{height:57.756250pt;}
.h7_c02292{height:57.803750pt;}
.h8_c02292{height:57.804283pt;}
.h3_c02292{height:126.283750pt;}
.h0_c02292{height:1122.666667pt;}
.w1_c02292{width:793.333333pt;}
.w0_c02292{width:793.626667pt;}
.x0_c02292{left:0.000000pt;}
.x1_c02292{left:113.440000pt;}
.x3_c02292{left:120.560000pt;}
.x12_c02292{left:127.920000pt;}
.x13_c02292{left:133.600000pt;}
.xc_c02292{left:144.640000pt;}
.x14_c02292{left:196.160000pt;}
.xe_c02292{left:213.680000pt;}
.x4_c02292{left:230.400000pt;}
.x5_c02292{left:236.640000pt;}
.xf_c02292{left:256.080000pt;}
.xd_c02292{left:258.320000pt;}
.x7_c02292{left:377.040000pt;}
.x2_c02292{left:384.880000pt;}
.x8_c02292{left:394.960000pt;}
.x6_c02292{left:413.520000pt;}
.x10_c02292{left:438.160000pt;}
.x15_c02292{left:493.680000pt;}
.x11_c02292{left:526.960000pt;}
.xa_c02292{left:536.560000pt;}
.xb_c02292{left:539.040000pt;}
.x9_c02292{left:568.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_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_647310406e4a4fc8c1e7083a.woff2')format("woff");}.ff1_c02293{font-family:ff1_c02293;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02293;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v7_c02293{vertical-align:-25.200000px;}
.v8_c02293{vertical-align:-23.760000px;}
.vd_c02293{vertical-align:-18.360000px;}
.ve_c02293{vertical-align:-16.560000px;}
.vc_c02293{vertical-align:-14.039400px;}
.va_c02293{vertical-align:-12.960000px;}
.vb_c02293{vertical-align:-11.160000px;}
.v3_c02293{vertical-align:-2.520000px;}
.v6_c02293{vertical-align:-1.440600px;}
.v0_c02293{vertical-align:0.000000px;}
.v1_c02293{vertical-align:1.080000px;}
.v9_c02293{vertical-align:5.400000px;}
.v4_c02293{vertical-align:11.159400px;}
.v5_c02293{vertical-align:16.559400px;}
.v2_c02293{vertical-align:32.040000px;}
.ls2b_c02293{letter-spacing:-0.178200px;}
.ls31_c02293{letter-spacing:-0.118800px;}
.ls2a_c02293{letter-spacing:-0.102600px;}
.ls28_c02293{letter-spacing:-0.086400px;}
.ls32_c02293{letter-spacing:-0.070200px;}
.ls2f_c02293{letter-spacing:-0.043200px;}
.ls2d_c02293{letter-spacing:-0.021600px;}
.ls27_c02293{letter-spacing:-0.019152px;}
.ls29_c02293{letter-spacing:-0.016200px;}
.ls30_c02293{letter-spacing:-0.010800px;}
.ls2c_c02293{letter-spacing:-0.009576px;}
.ls35_c02293{letter-spacing:-0.004788px;}
.ls25_c02293{letter-spacing:0.000000px;}
.ls2_c02293{letter-spacing:0.006588px;}
.ls23_c02293{letter-spacing:0.007200px;}
.ls8_c02293{letter-spacing:0.010800px;}
.ls11_c02293{letter-spacing:0.012636px;}
.ls10_c02293{letter-spacing:0.014400px;}
.ls4_c02293{letter-spacing:0.016200px;}
.ls20_c02293{letter-spacing:0.019152px;}
.ls6_c02293{letter-spacing:0.027000px;}
.ls1c_c02293{letter-spacing:0.028728px;}
.ls0_c02293{letter-spacing:0.028800px;}
.ls7_c02293{letter-spacing:0.032400px;}
.ls21_c02293{letter-spacing:0.036000px;}
.ls9_c02293{letter-spacing:0.037800px;}
.lsd_c02293{letter-spacing:0.043092px;}
.ls5_c02293{letter-spacing:0.043200px;}
.ls1b_c02293{letter-spacing:0.052668px;}
.ls24_c02293{letter-spacing:0.064800px;}
.lsb_c02293{letter-spacing:0.067032px;}
.lse_c02293{letter-spacing:0.076608px;}
.ls1_c02293{letter-spacing:0.079056px;}
.ls36_c02293{letter-spacing:0.081396px;}
.lsa_c02293{letter-spacing:0.086184px;}
.ls3_c02293{letter-spacing:0.095760px;}
.ls14_c02293{letter-spacing:0.110124px;}
.lsc_c02293{letter-spacing:0.114912px;}
.lsf_c02293{letter-spacing:0.119700px;}
.ls1e_c02293{letter-spacing:0.124488px;}
.ls1f_c02293{letter-spacing:0.134064px;}
.ls33_c02293{letter-spacing:0.135000px;}
.ls1d_c02293{letter-spacing:0.138852px;}
.ls2e_c02293{letter-spacing:0.151200px;}
.ls26_c02293{letter-spacing:0.153216px;}
.ls12_c02293{letter-spacing:0.158112px;}
.ls1a_c02293{letter-spacing:0.162792px;}
.ls19_c02293{letter-spacing:0.181944px;}
.ls16_c02293{letter-spacing:0.205884px;}
.ls22_c02293{letter-spacing:80.640000px;}
.ls13_c02293{letter-spacing:112.320000px;}
.ls18_c02293{letter-spacing:154.261800px;}
.ls34_c02293{letter-spacing:156.421800px;}
.ls17_c02293{letter-spacing:199.978200px;}
.ls15_c02293{letter-spacing:200.430000px;}
.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;}
}
.ws1_c02293{word-spacing:-16.628112px;}
.ws0_c02293{word-spacing:-16.476588px;}
.ws18_c02293{word-spacing:-0.296856px;}
.ws17_c02293{word-spacing:-0.272916px;}
.ws1a_c02293{word-spacing:-0.253764px;}
.ws1d_c02293{word-spacing:-0.229824px;}
.ws1f_c02293{word-spacing:-0.225036px;}
.ws1e_c02293{word-spacing:-0.215460px;}
.ws13_c02293{word-spacing:-0.210672px;}
.ws1c_c02293{word-spacing:-0.205884px;}
.wsc_c02293{word-spacing:-0.189000px;}
.ws6_c02293{word-spacing:-0.186732px;}
.ws25_c02293{word-spacing:-0.180000px;}
.ws20_c02293{word-spacing:-0.172368px;}
.ws22_c02293{word-spacing:-0.151200px;}
.ws1b_c02293{word-spacing:-0.119700px;}
.ws21_c02293{word-spacing:-0.110124px;}
.ws16_c02293{word-spacing:-0.101088px;}
.ws23_c02293{word-spacing:-0.093600px;}
.ws4_c02293{word-spacing:-0.086400px;}
.ws24_c02293{word-spacing:-0.079200px;}
.ws15_c02293{word-spacing:-0.028800px;}
.ws14_c02293{word-spacing:-0.014400px;}
.ws3_c02293{word-spacing:0.000000px;}
.ws5_c02293{word-spacing:0.013176px;}
.wsa_c02293{word-spacing:0.145800px;}
.ws8_c02293{word-spacing:0.151200px;}
.ws7_c02293{word-spacing:0.162000px;}
.wsb_c02293{word-spacing:0.194400px;}
.ws9_c02293{word-spacing:0.264600px;}
.wsd_c02293{word-spacing:0.280800px;}
.ws10_c02293{word-spacing:1.235304px;}
.ws12_c02293{word-spacing:1.273608px;}
.ws11_c02293{word-spacing:1.307124px;}
.wse_c02293{word-spacing:5.941908px;}
.wsf_c02293{word-spacing:5.961060px;}
.ws2_c02293{word-spacing:58.969440px;}
.ws19_c02293{word-spacing:239.176800px;}
._2a_c02293{margin-left:-84.958200px;}
._28_c02293{margin-left:-82.927656px;}
._2f_c02293{margin-left:-42.216228px;}
._29_c02293{margin-left:-39.241800px;}
._d_c02293{margin-left:-1.230516px;}
._9_c02293{width:1.026000px;}
._1a_c02293{width:51.297552px;}
._1d_c02293{width:61.693200px;}
._16_c02293{width:66.375000px;}
._22_c02293{width:69.969276px;}
._20_c02293{width:75.060000px;}
._17_c02293{width:76.230180px;}
._1e_c02293{width:78.264000px;}
._1b_c02293{width:82.573380px;}
._f_c02293{width:84.834000px;}
._18_c02293{width:86.198400px;}
._e_c02293{width:88.221600px;}
._25_c02293{width:90.928440px;}
._21_c02293{width:92.700000px;}
._24_c02293{width:98.100000px;}
._11_c02293{width:103.140000px;}
._19_c02293{width:104.918400px;}
._2d_c02293{width:106.718400px;}
._12_c02293{width:110.829600px;}
._2c_c02293{width:112.367016px;}
._13_c02293{width:114.501600px;}
._2e_c02293{width:116.240688px;}
._1c_c02293{width:117.504000px;}
._2b_c02293{width:119.345220px;}
._10_c02293{width:120.780000px;}
._27_c02293{width:125.706384px;}
._1f_c02293{width:126.853200px;}
._15_c02293{width:138.636000px;}
._14_c02293{width:143.544600px;}
._23_c02293{width:156.420000px;}
._26_c02293{width:180.084168px;}
._c_c02293{width:203.036400px;}
._3_c02293{width:216.180000px;}
._1_c02293{width:283.500000px;}
._5_c02293{width:303.170400px;}
._4_c02293{width:310.104000px;}
._7_c02293{width:324.775800px;}
._2_c02293{width:382.210200px;}
._a_c02293{width:451.783800px;}
._8_c02293{width:482.234400px;}
._6_c02293{width:483.924600px;}
._0_c02293{width:671.496192px;}
._b_c02293{width:799.695000px;}
.fc0_c02293{color:rgb(0,0,0);}
.fs5_c02293{font-size:11.880000px;}
.fs4_c02293{font-size:42.120000px;}
.fs2_c02293{font-size:47.880000px;}
.fs3_c02293{font-size:54.000000px;}
.fs1_c02293{font-size:65.880000px;}
.fs0_c02293{font-size:72.000000px;}
.y0_c02293{bottom:0.000000px;}
.y4_c02293{bottom:57.360450px;}
.y3_c02293{bottom:78.060450px;}
.y63_c02293{bottom:112.980450px;}
.y62_c02293{bottom:133.680450px;}
.y61_c02293{bottom:154.380450px;}
.y60_c02293{bottom:174.990450px;}
.y5f_c02293{bottom:195.690450px;}
.y5e_c02293{bottom:216.390450px;}
.y5d_c02293{bottom:237.090450px;}
.y5c_c02293{bottom:257.250450px;}
.y5a_c02293{bottom:260.670900px;}
.y5b_c02293{bottom:262.020450px;}
.y59_c02293{bottom:276.240450px;}
.y57_c02293{bottom:279.660900px;}
.y58_c02293{bottom:281.010450px;}
.y56_c02293{bottom:295.230450px;}
.y54_c02293{bottom:298.650900px;}
.y55_c02293{bottom:300.000450px;}
.y53_c02293{bottom:314.220450px;}
.y51_c02293{bottom:317.640000px;}
.y52_c02293{bottom:318.990450px;}
.y50_c02293{bottom:333.120450px;}
.y4e_c02293{bottom:336.630450px;}
.y4f_c02293{bottom:337.980450px;}
.y4d_c02293{bottom:352.740450px;}
.y4c_c02293{bottom:371.100450px;}
.y4b_c02293{bottom:388.470450px;}
.y4a_c02293{bottom:409.260450px;}
.y49_c02293{bottom:418.440600px;}
.y47_c02293{bottom:421.861050px;}
.y48_c02293{bottom:423.210600px;}
.y46_c02293{bottom:437.430600px;}
.y44_c02293{bottom:440.850000px;}
.y45_c02293{bottom:442.200600px;}
.y43_c02293{bottom:456.330450px;}
.y41_c02293{bottom:459.840600px;}
.y42_c02293{bottom:461.190600px;}
.y40_c02293{bottom:476.040600px;}
.y3f_c02293{bottom:494.310450px;}
.y3e_c02293{bottom:511.680600px;}
.y3d_c02293{bottom:532.470450px;}
.y3c_c02293{bottom:541.650450px;}
.y3a_c02293{bottom:546.780900px;}
.y3b_c02293{bottom:548.130450px;}
.y39_c02293{bottom:562.350450px;}
.y37_c02293{bottom:567.480900px;}
.y38_c02293{bottom:568.830450px;}
.y36_c02293{bottom:583.050450px;}
.y34_c02293{bottom:588.180900px;}
.y35_c02293{bottom:589.530450px;}
.y33_c02293{bottom:603.750450px;}
.y31_c02293{bottom:608.880900px;}
.y32_c02293{bottom:610.230450px;}
.y30_c02293{bottom:624.450450px;}
.y2e_c02293{bottom:629.580450px;}
.y2f_c02293{bottom:630.930450px;}
.y2d_c02293{bottom:648.570450px;}
.y2b_c02293{bottom:669.270900px;}
.y2c_c02293{bottom:670.620450px;}
.y29_c02293{bottom:689.970450px;}
.y2a_c02293{bottom:691.320450px;}
.y28_c02293{bottom:708.960450px;}
.y27_c02293{bottom:724.440450px;}
.y25_c02293{bottom:729.660000px;}
.y26_c02293{bottom:731.010450px;}
.y24_c02293{bottom:745.140450px;}
.y22_c02293{bottom:750.360000px;}
.y23_c02293{bottom:751.710450px;}
.y21_c02293{bottom:765.840450px;}
.y1f_c02293{bottom:771.060450px;}
.y20_c02293{bottom:772.410450px;}
.y1e_c02293{bottom:790.050450px;}
.y1d_c02293{bottom:805.530450px;}
.y1b_c02293{bottom:810.750450px;}
.y1c_c02293{bottom:812.100450px;}
.y1a_c02293{bottom:826.860600px;}
.y19_c02293{bottom:845.220450px;}
.y18_c02293{bottom:862.590450px;}
.y17_c02293{bottom:882.569172px;}
.y16_c02293{bottom:896.429235px;}
.y15_c02293{bottom:910.199523px;}
.y14_c02293{bottom:923.969811px;}
.y13_c02293{bottom:937.829874px;}
.y12_c02293{bottom:951.600162px;}
.y11_c02293{bottom:965.370450px;}
.y10_c02293{bottom:981.570450px;}
.yf_c02293{bottom:997.050450px;}
.ye_c02293{bottom:1012.620450px;}
.yd_c02293{bottom:1028.100450px;}
.yc_c02293{bottom:1043.670450px;}
.yb_c02293{bottom:1059.150450px;}
.ya_c02293{bottom:1075.530450px;}
.y9_c02293{bottom:1091.010450px;}
.y6_c02293{bottom:1108.470450px;}
.y8_c02293{bottom:1109.100450px;}
.y7_c02293{bottom:1124.580450px;}
.y5_c02293{bottom:1141.500450px;}
.y2_c02293{bottom:1172.640450px;}
.y1_c02293{bottom:1193.160450px;}
.ha_c02293{height:10.551621px;}
.h5_c02293{height:42.011895px;}
.h4_c02293{height:42.526230px;}
.h6_c02293{height:47.381836px;}
.h8_c02293{height:47.961914px;}
.h7_c02293{height:48.461836px;}
.h3_c02293{height:58.513535px;}
.h2_c02293{height:63.175781px;}
.h1_c02293{height:63.949219px;}
.h9_c02293{height:79.421836px;}
.h0_c02293{height:1263.000000px;}
.w1_c02293{width:892.500000px;}
.w0_c02293{width:892.830000px;}
.x0_c02293{left:0.000000px;}
.x1_c02293{left:127.620000px;}
.x3_c02293{left:134.550000px;}
.x6_c02293{left:135.630000px;}
.x7_c02293{left:143.910000px;}
.x8_c02293{left:150.300000px;}
.x9_c02293{left:220.680000px;}
.x4_c02293{left:380.700000px;}
.x5_c02293{left:403.380000px;}
.x2_c02293{left:432.990000px;}
.xa_c02293{left:553.679550px;}
.xb_c02293{left:746.820000px;}
@media print{
.v7_c02293{vertical-align:-22.400000pt;}
.v8_c02293{vertical-align:-21.120000pt;}
.vd_c02293{vertical-align:-16.320000pt;}
.ve_c02293{vertical-align:-14.720000pt;}
.vc_c02293{vertical-align:-12.479467pt;}
.va_c02293{vertical-align:-11.520000pt;}
.vb_c02293{vertical-align:-9.920000pt;}
.v3_c02293{vertical-align:-2.240000pt;}
.v6_c02293{vertical-align:-1.280533pt;}
.v0_c02293{vertical-align:0.000000pt;}
.v1_c02293{vertical-align:0.960000pt;}
.v9_c02293{vertical-align:4.800000pt;}
.v4_c02293{vertical-align:9.919467pt;}
.v5_c02293{vertical-align:14.719467pt;}
.v2_c02293{vertical-align:28.480000pt;}
.ls2b_c02293{letter-spacing:-0.158400pt;}
.ls31_c02293{letter-spacing:-0.105600pt;}
.ls2a_c02293{letter-spacing:-0.091200pt;}
.ls28_c02293{letter-spacing:-0.076800pt;}
.ls32_c02293{letter-spacing:-0.062400pt;}
.ls2f_c02293{letter-spacing:-0.038400pt;}
.ls2d_c02293{letter-spacing:-0.019200pt;}
.ls27_c02293{letter-spacing:-0.017024pt;}
.ls29_c02293{letter-spacing:-0.014400pt;}
.ls30_c02293{letter-spacing:-0.009600pt;}
.ls2c_c02293{letter-spacing:-0.008512pt;}
.ls35_c02293{letter-spacing:-0.004256pt;}
.ls25_c02293{letter-spacing:0.000000pt;}
.ls2_c02293{letter-spacing:0.005856pt;}
.ls23_c02293{letter-spacing:0.006400pt;}
.ls8_c02293{letter-spacing:0.009600pt;}
.ls11_c02293{letter-spacing:0.011232pt;}
.ls10_c02293{letter-spacing:0.012800pt;}
.ls4_c02293{letter-spacing:0.014400pt;}
.ls20_c02293{letter-spacing:0.017024pt;}
.ls6_c02293{letter-spacing:0.024000pt;}
.ls1c_c02293{letter-spacing:0.025536pt;}
.ls0_c02293{letter-spacing:0.025600pt;}
.ls7_c02293{letter-spacing:0.028800pt;}
.ls21_c02293{letter-spacing:0.032000pt;}
.ls9_c02293{letter-spacing:0.033600pt;}
.lsd_c02293{letter-spacing:0.038304pt;}
.ls5_c02293{letter-spacing:0.038400pt;}
.ls1b_c02293{letter-spacing:0.046816pt;}
.ls24_c02293{letter-spacing:0.057600pt;}
.lsb_c02293{letter-spacing:0.059584pt;}
.lse_c02293{letter-spacing:0.068096pt;}
.ls1_c02293{letter-spacing:0.070272pt;}
.ls36_c02293{letter-spacing:0.072352pt;}
.lsa_c02293{letter-spacing:0.076608pt;}
.ls3_c02293{letter-spacing:0.085120pt;}
.ls14_c02293{letter-spacing:0.097888pt;}
.lsc_c02293{letter-spacing:0.102144pt;}
.lsf_c02293{letter-spacing:0.106400pt;}
.ls1e_c02293{letter-spacing:0.110656pt;}
.ls1f_c02293{letter-spacing:0.119168pt;}
.ls33_c02293{letter-spacing:0.120000pt;}
.ls1d_c02293{letter-spacing:0.123424pt;}
.ls2e_c02293{letter-spacing:0.134400pt;}
.ls26_c02293{letter-spacing:0.136192pt;}
.ls12_c02293{letter-spacing:0.140544pt;}
.ls1a_c02293{letter-spacing:0.144704pt;}
.ls19_c02293{letter-spacing:0.161728pt;}
.ls16_c02293{letter-spacing:0.183008pt;}
.ls22_c02293{letter-spacing:71.680000pt;}
.ls13_c02293{letter-spacing:99.840000pt;}
.ls18_c02293{letter-spacing:137.121600pt;}
.ls34_c02293{letter-spacing:139.041600pt;}
.ls17_c02293{letter-spacing:177.758400pt;}
.ls15_c02293{letter-spacing:178.160000pt;}
.ws1_c02293{word-spacing:-14.780544pt;}
.ws0_c02293{word-spacing:-14.645856pt;}
.ws18_c02293{word-spacing:-0.263872pt;}
.ws17_c02293{word-spacing:-0.242592pt;}
.ws1a_c02293{word-spacing:-0.225568pt;}
.ws1d_c02293{word-spacing:-0.204288pt;}
.ws1f_c02293{word-spacing:-0.200032pt;}
.ws1e_c02293{word-spacing:-0.191520pt;}
.ws13_c02293{word-spacing:-0.187264pt;}
.ws1c_c02293{word-spacing:-0.183008pt;}
.wsc_c02293{word-spacing:-0.168000pt;}
.ws6_c02293{word-spacing:-0.165984pt;}
.ws25_c02293{word-spacing:-0.160000pt;}
.ws20_c02293{word-spacing:-0.153216pt;}
.ws22_c02293{word-spacing:-0.134400pt;}
.ws1b_c02293{word-spacing:-0.106400pt;}
.ws21_c02293{word-spacing:-0.097888pt;}
.ws16_c02293{word-spacing:-0.089856pt;}
.ws23_c02293{word-spacing:-0.083200pt;}
.ws4_c02293{word-spacing:-0.076800pt;}
.ws24_c02293{word-spacing:-0.070400pt;}
.ws15_c02293{word-spacing:-0.025600pt;}
.ws14_c02293{word-spacing:-0.012800pt;}
.ws3_c02293{word-spacing:0.000000pt;}
.ws5_c02293{word-spacing:0.011712pt;}
.wsa_c02293{word-spacing:0.129600pt;}
.ws8_c02293{word-spacing:0.134400pt;}
.ws7_c02293{word-spacing:0.144000pt;}
.wsb_c02293{word-spacing:0.172800pt;}
.ws9_c02293{word-spacing:0.235200pt;}
.wsd_c02293{word-spacing:0.249600pt;}
.ws10_c02293{word-spacing:1.098048pt;}
.ws12_c02293{word-spacing:1.132096pt;}
.ws11_c02293{word-spacing:1.161888pt;}
.wse_c02293{word-spacing:5.281696pt;}
.wsf_c02293{word-spacing:5.298720pt;}
.ws2_c02293{word-spacing:52.417280pt;}
.ws19_c02293{word-spacing:212.601600pt;}
._2a_c02293{margin-left:-75.518400pt;}
._28_c02293{margin-left:-73.713472pt;}
._2f_c02293{margin-left:-37.525536pt;}
._29_c02293{margin-left:-34.881600pt;}
._d_c02293{margin-left:-1.093792pt;}
._9_c02293{width:0.912000pt;}
._1a_c02293{width:45.597824pt;}
._1d_c02293{width:54.838400pt;}
._16_c02293{width:59.000000pt;}
._22_c02293{width:62.194912pt;}
._20_c02293{width:66.720000pt;}
._17_c02293{width:67.760160pt;}
._1e_c02293{width:69.568000pt;}
._1b_c02293{width:73.398560pt;}
._f_c02293{width:75.408000pt;}
._18_c02293{width:76.620800pt;}
._e_c02293{width:78.419200pt;}
._25_c02293{width:80.825280pt;}
._21_c02293{width:82.400000pt;}
._24_c02293{width:87.200000pt;}
._11_c02293{width:91.680000pt;}
._19_c02293{width:93.260800pt;}
._2d_c02293{width:94.860800pt;}
._12_c02293{width:98.515200pt;}
._2c_c02293{width:99.881792pt;}
._13_c02293{width:101.779200pt;}
._2e_c02293{width:103.325056pt;}
._1c_c02293{width:104.448000pt;}
._2b_c02293{width:106.084640pt;}
._10_c02293{width:107.360000pt;}
._27_c02293{width:111.739008pt;}
._1f_c02293{width:112.758400pt;}
._15_c02293{width:123.232000pt;}
._14_c02293{width:127.595200pt;}
._23_c02293{width:139.040000pt;}
._26_c02293{width:160.074816pt;}
._c_c02293{width:180.476800pt;}
._3_c02293{width:192.160000pt;}
._1_c02293{width:252.000000pt;}
._5_c02293{width:269.484800pt;}
._4_c02293{width:275.648000pt;}
._7_c02293{width:288.689600pt;}
._2_c02293{width:339.742400pt;}
._a_c02293{width:401.585600pt;}
._8_c02293{width:428.652800pt;}
._6_c02293{width:430.155200pt;}
._0_c02293{width:596.885504pt;}
._b_c02293{width:710.840000pt;}
.fs5_c02293{font-size:10.560000pt;}
.fs4_c02293{font-size:37.440000pt;}
.fs2_c02293{font-size:42.560000pt;}
.fs3_c02293{font-size:48.000000pt;}
.fs1_c02293{font-size:58.560000pt;}
.fs0_c02293{font-size:64.000000pt;}
.y0_c02293{bottom:0.000000pt;}
.y4_c02293{bottom:50.987067pt;}
.y3_c02293{bottom:69.387067pt;}
.y63_c02293{bottom:100.427067pt;}
.y62_c02293{bottom:118.827067pt;}
.y61_c02293{bottom:137.227067pt;}
.y60_c02293{bottom:155.547067pt;}
.y5f_c02293{bottom:173.947067pt;}
.y5e_c02293{bottom:192.347067pt;}
.y5d_c02293{bottom:210.747067pt;}
.y5c_c02293{bottom:228.667067pt;}
.y5a_c02293{bottom:231.707467pt;}
.y5b_c02293{bottom:232.907067pt;}
.y59_c02293{bottom:245.547067pt;}
.y57_c02293{bottom:248.587467pt;}
.y58_c02293{bottom:249.787067pt;}
.y56_c02293{bottom:262.427067pt;}
.y54_c02293{bottom:265.467467pt;}
.y55_c02293{bottom:266.667067pt;}
.y53_c02293{bottom:279.307067pt;}
.y51_c02293{bottom:282.346667pt;}
.y52_c02293{bottom:283.547067pt;}
.y50_c02293{bottom:296.107067pt;}
.y4e_c02293{bottom:299.227067pt;}
.y4f_c02293{bottom:300.427067pt;}
.y4d_c02293{bottom:313.547067pt;}
.y4c_c02293{bottom:329.867067pt;}
.y4b_c02293{bottom:345.307067pt;}
.y4a_c02293{bottom:363.787067pt;}
.y49_c02293{bottom:371.947200pt;}
.y47_c02293{bottom:374.987600pt;}
.y48_c02293{bottom:376.187200pt;}
.y46_c02293{bottom:388.827200pt;}
.y44_c02293{bottom:391.866667pt;}
.y45_c02293{bottom:393.067200pt;}
.y43_c02293{bottom:405.627067pt;}
.y41_c02293{bottom:408.747200pt;}
.y42_c02293{bottom:409.947200pt;}
.y40_c02293{bottom:423.147200pt;}
.y3f_c02293{bottom:439.387067pt;}
.y3e_c02293{bottom:454.827200pt;}
.y3d_c02293{bottom:473.307067pt;}
.y3c_c02293{bottom:481.467067pt;}
.y3a_c02293{bottom:486.027467pt;}
.y3b_c02293{bottom:487.227067pt;}
.y39_c02293{bottom:499.867067pt;}
.y37_c02293{bottom:504.427467pt;}
.y38_c02293{bottom:505.627067pt;}
.y36_c02293{bottom:518.267067pt;}
.y34_c02293{bottom:522.827467pt;}
.y35_c02293{bottom:524.027067pt;}
.y33_c02293{bottom:536.667067pt;}
.y31_c02293{bottom:541.227467pt;}
.y32_c02293{bottom:542.427067pt;}
.y30_c02293{bottom:555.067067pt;}
.y2e_c02293{bottom:559.627067pt;}
.y2f_c02293{bottom:560.827067pt;}
.y2d_c02293{bottom:576.507067pt;}
.y2b_c02293{bottom:594.907467pt;}
.y2c_c02293{bottom:596.107067pt;}
.y29_c02293{bottom:613.307067pt;}
.y2a_c02293{bottom:614.507067pt;}
.y28_c02293{bottom:630.187067pt;}
.y27_c02293{bottom:643.947067pt;}
.y25_c02293{bottom:648.586667pt;}
.y26_c02293{bottom:649.787067pt;}
.y24_c02293{bottom:662.347067pt;}
.y22_c02293{bottom:666.986667pt;}
.y23_c02293{bottom:668.187067pt;}
.y21_c02293{bottom:680.747067pt;}
.y1f_c02293{bottom:685.387067pt;}
.y20_c02293{bottom:686.587067pt;}
.y1e_c02293{bottom:702.267067pt;}
.y1d_c02293{bottom:716.027067pt;}
.y1b_c02293{bottom:720.667067pt;}
.y1c_c02293{bottom:721.867067pt;}
.y1a_c02293{bottom:734.987200pt;}
.y19_c02293{bottom:751.307067pt;}
.y18_c02293{bottom:766.747067pt;}
.y17_c02293{bottom:784.505931pt;}
.y16_c02293{bottom:796.825987pt;}
.y15_c02293{bottom:809.066243pt;}
.y14_c02293{bottom:821.306499pt;}
.y13_c02293{bottom:833.626555pt;}
.y12_c02293{bottom:845.866811pt;}
.y11_c02293{bottom:858.107067pt;}
.y10_c02293{bottom:872.507067pt;}
.yf_c02293{bottom:886.267067pt;}
.ye_c02293{bottom:900.107067pt;}
.yd_c02293{bottom:913.867067pt;}
.yc_c02293{bottom:927.707067pt;}
.yb_c02293{bottom:941.467067pt;}
.ya_c02293{bottom:956.027067pt;}
.y9_c02293{bottom:969.787067pt;}
.y6_c02293{bottom:985.307067pt;}
.y8_c02293{bottom:985.867067pt;}
.y7_c02293{bottom:999.627067pt;}
.y5_c02293{bottom:1014.667067pt;}
.y2_c02293{bottom:1042.347067pt;}
.y1_c02293{bottom:1060.587067pt;}
.ha_c02293{height:9.379219pt;}
.h5_c02293{height:37.343906pt;}
.h4_c02293{height:37.801094pt;}
.h6_c02293{height:42.117188pt;}
.h8_c02293{height:42.632812pt;}
.h7_c02293{height:43.077187pt;}
.h3_c02293{height:52.012031pt;}
.h2_c02293{height:56.156250pt;}
.h1_c02293{height:56.843750pt;}
.h9_c02293{height:70.597187pt;}
.h0_c02293{height:1122.666667pt;}
.w1_c02293{width:793.333333pt;}
.w0_c02293{width:793.626667pt;}
.x0_c02293{left:0.000000pt;}
.x1_c02293{left:113.440000pt;}
.x3_c02293{left:119.600000pt;}
.x6_c02293{left:120.560000pt;}
.x7_c02293{left:127.920000pt;}
.x8_c02293{left:133.600000pt;}
.x9_c02293{left:196.160000pt;}
.x4_c02293{left:338.400000pt;}
.x5_c02293{left:358.560000pt;}
.x2_c02293{left:384.880000pt;}
.xa_c02293{left:492.159600pt;}
.xb_c02293{left:663.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_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_ba7d7e6b3f81290671eca200.woff2')format("woff");}.ff1_c02294{font-family:ff1_c02294;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02294;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v5_c02294{vertical-align:-25.200000px;}
.v6_c02294{vertical-align:-23.400000px;}
.va_c02294{vertical-align:-18.000000px;}
.vb_c02294{vertical-align:-16.560000px;}
.v8_c02294{vertical-align:-12.960000px;}
.v9_c02294{vertical-align:-11.160000px;}
.vd_c02294{vertical-align:-3.960000px;}
.v1_c02294{vertical-align:-2.520000px;}
.v4_c02294{vertical-align:-1.080000px;}
.v0_c02294{vertical-align:0.000000px;}
.vc_c02294{vertical-align:1.799400px;}
.ve_c02294{vertical-align:3.960000px;}
.v7_c02294{vertical-align:5.400000px;}
.v2_c02294{vertical-align:11.160000px;}
.v3_c02294{vertical-align:16.560000px;}
.ls33_c02294{letter-spacing:-0.178200px;}
.ls2b_c02294{letter-spacing:-0.118800px;}
.ls38_c02294{letter-spacing:-0.086184px;}
.ls2c_c02294{letter-spacing:-0.070200px;}
.ls29_c02294{letter-spacing:-0.043200px;}
.ls32_c02294{letter-spacing:-0.019152px;}
.ls2a_c02294{letter-spacing:-0.010800px;}
.ls2e_c02294{letter-spacing:-0.009576px;}
.ls31_c02294{letter-spacing:-0.007200px;}
.ls30_c02294{letter-spacing:-0.004788px;}
.ls27_c02294{letter-spacing:0.000000px;}
.ls11_c02294{letter-spacing:0.007200px;}
.ls2_c02294{letter-spacing:0.010800px;}
.ls4_c02294{letter-spacing:0.012636px;}
.ls1_c02294{letter-spacing:0.014400px;}
.ls25_c02294{letter-spacing:0.016200px;}
.lsf_c02294{letter-spacing:0.019152px;}
.ls10_c02294{letter-spacing:0.028728px;}
.ls0_c02294{letter-spacing:0.028800px;}
.ls5_c02294{letter-spacing:0.032400px;}
.ls19_c02294{letter-spacing:0.033696px;}
.ls3_c02294{letter-spacing:0.037800px;}
.ls1f_c02294{letter-spacing:0.043092px;}
.lsa_c02294{letter-spacing:0.043200px;}
.ls18_c02294{letter-spacing:0.046116px;}
.ls1a_c02294{letter-spacing:0.048600px;}
.ls1c_c02294{letter-spacing:0.054000px;}
.ls17_c02294{letter-spacing:0.065880px;}
.ls1e_c02294{letter-spacing:0.067032px;}
.ls1b_c02294{letter-spacing:0.070200px;}
.ls14_c02294{letter-spacing:0.076608px;}
.ls8_c02294{letter-spacing:0.081396px;}
.ls34_c02294{letter-spacing:0.086184px;}
.ls1d_c02294{letter-spacing:0.095760px;}
.ls20_c02294{letter-spacing:0.100548px;}
.ls12_c02294{letter-spacing:0.110124px;}
.lsd_c02294{letter-spacing:0.124488px;}
.lse_c02294{letter-spacing:0.134064px;}
.ls2d_c02294{letter-spacing:0.135000px;}
.ls28_c02294{letter-spacing:0.151200px;}
.ls6_c02294{letter-spacing:0.158112px;}
.ls16_c02294{letter-spacing:0.162792px;}
.ls37_c02294{letter-spacing:0.167580px;}
.ls9_c02294{letter-spacing:0.181944px;}
.ls13_c02294{letter-spacing:0.205884px;}
.ls7_c02294{letter-spacing:80.640000px;}
.ls21_c02294{letter-spacing:110.880000px;}
.ls24_c02294{letter-spacing:113.760000px;}
.ls35_c02294{letter-spacing:142.381800px;}
.ls39_c02294{letter-spacing:145.260000px;}
.ls2f_c02294{letter-spacing:155.247876px;}
.lsc_c02294{letter-spacing:156.421800px;}
.ls36_c02294{letter-spacing:157.140000px;}
.ls15_c02294{letter-spacing:198.898200px;}
.lsb_c02294{letter-spacing:200.430000px;}
.ls26_c02294{letter-spacing:200.790000px;}
.ls22_c02294{letter-spacing:203.310000px;}
.ls23_c02294{letter-spacing:241.380000px;}
.sc__c02294{text-shadow:none;}
.sc0_c02294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02294{-webkit-text-stroke:0px transparent;}
.sc0_c02294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02294{word-spacing:-16.628112px;}
.ws2_c02294{word-spacing:-16.516116px;}
.ws13_c02294{word-spacing:-0.296856px;}
.ws9_c02294{word-spacing:-0.272916px;}
.ws14_c02294{word-spacing:-0.253764px;}
.wsc_c02294{word-spacing:-0.225036px;}
.wsb_c02294{word-spacing:-0.215460px;}
.ws1f_c02294{word-spacing:-0.191520px;}
.wse_c02294{word-spacing:-0.172368px;}
.ws16_c02294{word-spacing:-0.122148px;}
.ws10_c02294{word-spacing:-0.119700px;}
.ws21_c02294{word-spacing:-0.115200px;}
.wsf_c02294{word-spacing:-0.110124px;}
.ws8_c02294{word-spacing:-0.101088px;}
.ws6_c02294{word-spacing:-0.086400px;}
.wsa_c02294{word-spacing:-0.081396px;}
.ws12_c02294{word-spacing:-0.079200px;}
.ws7_c02294{word-spacing:-0.014400px;}
.ws11_c02294{word-spacing:-0.007200px;}
.ws5_c02294{word-spacing:0.000000px;}
.ws15_c02294{word-spacing:0.026352px;}
.ws18_c02294{word-spacing:0.108000px;}
.ws19_c02294{word-spacing:0.124200px;}
.ws17_c02294{word-spacing:0.129600px;}
.ws1a_c02294{word-spacing:0.536256px;}
.ws1b_c02294{word-spacing:0.550620px;}
.ws1c_c02294{word-spacing:2.724372px;}
.ws1e_c02294{word-spacing:2.748312px;}
.ws1d_c02294{word-spacing:2.762676px;}
.ws4_c02294{word-spacing:58.609440px;}
.ws3_c02294{word-spacing:58.969440px;}
.ws1_c02294{word-spacing:59.329440px;}
.ws22_c02294{word-spacing:77.544000px;}
.ws23_c02294{word-spacing:130.123800px;}
.wsd_c02294{word-spacing:198.855000px;}
.ws20_c02294{word-spacing:202.095000px;}
._39_c02294{margin-left:-55.096200px;}
._17_c02294{margin-left:-42.733296px;}
._1b_c02294{margin-left:-41.221512px;}
._3a_c02294{margin-left:-4.255200px;}
._24_c02294{margin-left:-1.416420px;}
._18_c02294{width:2.371392px;}
._12_c02294{width:42.124248px;}
._37_c02294{width:50.577552px;}
._1e_c02294{width:51.660000px;}
._d_c02294{width:61.927020px;}
._8_c02294{width:66.015000px;}
._f_c02294{width:75.780000px;}
._9_c02294{width:77.310180px;}
._34_c02294{width:79.973820px;}
._c_c02294{width:82.828296px;}
._1_c02294{width:84.834000px;}
._2e_c02294{width:87.141600px;}
._0_c02294{width:88.221600px;}
._20_c02294{width:90.928440px;}
._32_c02294{width:93.085992px;}
._35_c02294{width:94.834296px;}
._14_c02294{width:98.100000px;}
._a_c02294{width:100.015200px;}
._b_c02294{width:103.438692px;}
._1f_c02294{width:104.656392px;}
._30_c02294{width:106.020000px;}
._2f_c02294{width:109.620000px;}
._4_c02294{width:111.549600px;}
._5_c02294{width:114.501600px;}
._1d_c02294{width:116.424000px;}
._7_c02294{width:118.476000px;}
._31_c02294{width:120.243600px;}
._2_c02294{width:121.860000px;}
._1c_c02294{width:123.978600px;}
._3_c02294{width:125.460000px;}
._36_c02294{width:126.547956px;}
._e_c02294{width:128.887020px;}
._1a_c02294{width:132.555600px;}
._22_c02294{width:133.714296px;}
._19_c02294{width:135.840168px;}
._15_c02294{width:139.084236px;}
._6_c02294{width:144.984600px;}
._38_c02294{width:146.664000px;}
._16_c02294{width:148.786920px;}
._10_c02294{width:152.282160px;}
._13_c02294{width:156.420000px;}
._23_c02294{width:170.706384px;}
._2d_c02294{width:176.036400px;}
._33_c02294{width:186.204168px;}
._11_c02294{width:198.295704px;}
._28_c02294{width:216.180000px;}
._21_c02294{width:225.084168px;}
._26_c02294{width:283.500000px;}
._29_c02294{width:310.104000px;}
._2a_c02294{width:347.693400px;}
._27_c02294{width:353.833200px;}
._2b_c02294{width:419.929200px;}
._25_c02294{width:431.488440px;}
._2c_c02294{width:605.295000px;}
.fc0_c02294{color:rgb(0,0,0);}
.fs6_c02294{font-size:11.880000px;}
.fs2_c02294{font-size:42.120000px;}
.fs4_c02294{font-size:47.880000px;}
.fs1_c02294{font-size:54.000000px;}
.fs5_c02294{font-size:60.120000px;}
.fs3_c02294{font-size:65.880000px;}
.fs0_c02294{font-size:72.000000px;}
.y0_c02294{bottom:0.000000px;}
.y4_c02294{bottom:57.360450px;}
.y3_c02294{bottom:78.060450px;}
.y60_c02294{bottom:118.200459px;}
.y5f_c02294{bottom:135.480450px;}
.y5e_c02294{bottom:150.060450px;}
.y5c_c02294{bottom:155.910450px;}
.y5b_c02294{bottom:156.270450px;}
.y5d_c02294{bottom:156.270600px;}
.y59_c02294{bottom:174.810450px;}
.y58_c02294{bottom:175.170000px;}
.y5a_c02294{bottom:175.170450px;}
.y56_c02294{bottom:193.800450px;}
.y55_c02294{bottom:194.160000px;}
.y57_c02294{bottom:194.160450px;}
.y53_c02294{bottom:212.790600px;}
.y52_c02294{bottom:213.150000px;}
.y54_c02294{bottom:213.150450px;}
.y51_c02294{bottom:231.780600px;}
.y50_c02294{bottom:232.140450px;}
.y4f_c02294{bottom:251.130450px;}
.y4e_c02294{bottom:251.760450px;}
.y4d_c02294{bottom:270.120450px;}
.y4c_c02294{bottom:287.490450px;}
.y4b_c02294{bottom:308.190450px;}
.y49_c02294{bottom:317.010450px;}
.y48_c02294{bottom:317.370000px;}
.y4a_c02294{bottom:317.370450px;}
.y46_c02294{bottom:336.000600px;}
.y45_c02294{bottom:336.360000px;}
.y47_c02294{bottom:336.360450px;}
.y44_c02294{bottom:354.990450px;}
.y43_c02294{bottom:355.350450px;}
.y42_c02294{bottom:374.970450px;}
.y41_c02294{bottom:394.230450px;}
.y40_c02294{bottom:410.700600px;}
.y3f_c02294{bottom:430.771050px;}
.y3e_c02294{bottom:446.340600px;}
.y3d_c02294{bottom:461.730249px;}
.y3c_c02294{bottom:475.500537px;}
.y3b_c02294{bottom:489.360600px;}
.y3a_c02294{bottom:505.470450px;}
.y39_c02294{bottom:521.040600px;}
.y38_c02294{bottom:536.520450px;}
.y37_c02294{bottom:552.090450px;}
.y36_c02294{bottom:567.570450px;}
.y33_c02294{bottom:584.940450px;}
.y35_c02294{bottom:585.660450px;}
.y34_c02294{bottom:602.490450px;}
.y32_c02294{bottom:618.240450px;}
.y31_c02294{bottom:637.410450px;}
.y30_c02294{bottom:658.110450px;}
.y2e_c02294{bottom:683.400000px;}
.y2f_c02294{bottom:684.750450px;}
.y2c_c02294{bottom:704.100000px;}
.y2d_c02294{bottom:705.450450px;}
.y2a_c02294{bottom:724.800000px;}
.y2b_c02294{bottom:726.150450px;}
.y28_c02294{bottom:745.500000px;}
.y29_c02294{bottom:746.850450px;}
.y26_c02294{bottom:766.200450px;}
.y27_c02294{bottom:767.550450px;}
.y25_c02294{bottom:785.100450px;}
.y24_c02294{bottom:800.670450px;}
.y22_c02294{bottom:805.800900px;}
.y23_c02294{bottom:807.150450px;}
.y21_c02294{bottom:821.370450px;}
.y1f_c02294{bottom:826.500900px;}
.y20_c02294{bottom:827.850450px;}
.y1e_c02294{bottom:842.070450px;}
.y1c_c02294{bottom:847.200450px;}
.y1d_c02294{bottom:848.550450px;}
.y1b_c02294{bottom:866.190450px;}
.y19_c02294{bottom:886.890450px;}
.y1a_c02294{bottom:888.240450px;}
.y18_c02294{bottom:905.880450px;}
.y17_c02294{bottom:921.450450px;}
.y16_c02294{bottom:938.820450px;}
.y15_c02294{bottom:959.520450px;}
.y13_c02294{bottom:972.210000px;}
.y14_c02294{bottom:973.560450px;}
.y11_c02294{bottom:991.110900px;}
.y12_c02294{bottom:992.460450px;}
.yf_c02294{bottom:1010.100900px;}
.y10_c02294{bottom:1011.450450px;}
.yd_c02294{bottom:1029.090900px;}
.ye_c02294{bottom:1030.440450px;}
.yb_c02294{bottom:1048.080450px;}
.yc_c02294{bottom:1049.430450px;}
.ya_c02294{bottom:1067.070450px;}
.y8_c02294{bottom:1087.770450px;}
.y9_c02294{bottom:1089.120450px;}
.y7_c02294{bottom:1103.970450px;}
.y6_c02294{bottom:1122.240450px;}
.y5_c02294{bottom:1139.610450px;}
.y2_c02294{bottom:1172.640450px;}
.y1_c02294{bottom:1193.160450px;}
.h5_c02294{height:10.551621px;}
.h8_c02294{height:37.410293px;}
.hb_c02294{height:42.011895px;}
.h4_c02294{height:42.526230px;}
.h9_c02294{height:47.381836px;}
.h3_c02294{height:47.961914px;}
.ha_c02294{height:48.461236px;}
.h6_c02294{height:48.461836px;}
.hc_c02294{height:48.570893px;}
.h12_c02294{height:53.397598px;}
.h7_c02294{height:58.513535px;}
.h10_c02294{height:61.033535px;}
.h11_c02294{height:62.472935px;}
.hd_c02294{height:62.473535px;}
.he_c02294{height:62.832935px;}
.hf_c02294{height:62.833535px;}
.h2_c02294{height:63.175781px;}
.h1_c02294{height:63.949219px;}
.h0_c02294{height:1263.000000px;}
.w1_c02294{width:892.500000px;}
.w0_c02294{width:892.830000px;}
.x0_c02294{left:0.000000px;}
.x1_c02294{left:127.620000px;}
.x9_c02294{left:134.550000px;}
.x3_c02294{left:135.630000px;}
.x7_c02294{left:141.480000px;}
.x4_c02294{left:143.910000px;}
.x5_c02294{left:150.300000px;}
.xc_c02294{left:164.880000px;}
.x6_c02294{left:220.680000px;}
.xa_c02294{left:336.240000px;}
.xb_c02294{left:354.780000px;}
.x2_c02294{left:432.990000px;}
.xe_c02294{left:521.190450px;}
.xd_c02294{left:544.769550px;}
.x8_c02294{left:555.119550px;}
@media print{
.v5_c02294{vertical-align:-22.400000pt;}
.v6_c02294{vertical-align:-20.800000pt;}
.va_c02294{vertical-align:-16.000000pt;}
.vb_c02294{vertical-align:-14.720000pt;}
.v8_c02294{vertical-align:-11.520000pt;}
.v9_c02294{vertical-align:-9.920000pt;}
.vd_c02294{vertical-align:-3.520000pt;}
.v1_c02294{vertical-align:-2.240000pt;}
.v4_c02294{vertical-align:-0.960000pt;}
.v0_c02294{vertical-align:0.000000pt;}
.vc_c02294{vertical-align:1.599467pt;}
.ve_c02294{vertical-align:3.520000pt;}
.v7_c02294{vertical-align:4.800000pt;}
.v2_c02294{vertical-align:9.920000pt;}
.v3_c02294{vertical-align:14.720000pt;}
.ls33_c02294{letter-spacing:-0.158400pt;}
.ls2b_c02294{letter-spacing:-0.105600pt;}
.ls38_c02294{letter-spacing:-0.076608pt;}
.ls2c_c02294{letter-spacing:-0.062400pt;}
.ls29_c02294{letter-spacing:-0.038400pt;}
.ls32_c02294{letter-spacing:-0.017024pt;}
.ls2a_c02294{letter-spacing:-0.009600pt;}
.ls2e_c02294{letter-spacing:-0.008512pt;}
.ls31_c02294{letter-spacing:-0.006400pt;}
.ls30_c02294{letter-spacing:-0.004256pt;}
.ls27_c02294{letter-spacing:0.000000pt;}
.ls11_c02294{letter-spacing:0.006400pt;}
.ls2_c02294{letter-spacing:0.009600pt;}
.ls4_c02294{letter-spacing:0.011232pt;}
.ls1_c02294{letter-spacing:0.012800pt;}
.ls25_c02294{letter-spacing:0.014400pt;}
.lsf_c02294{letter-spacing:0.017024pt;}
.ls10_c02294{letter-spacing:0.025536pt;}
.ls0_c02294{letter-spacing:0.025600pt;}
.ls5_c02294{letter-spacing:0.028800pt;}
.ls19_c02294{letter-spacing:0.029952pt;}
.ls3_c02294{letter-spacing:0.033600pt;}
.ls1f_c02294{letter-spacing:0.038304pt;}
.lsa_c02294{letter-spacing:0.038400pt;}
.ls18_c02294{letter-spacing:0.040992pt;}
.ls1a_c02294{letter-spacing:0.043200pt;}
.ls1c_c02294{letter-spacing:0.048000pt;}
.ls17_c02294{letter-spacing:0.058560pt;}
.ls1e_c02294{letter-spacing:0.059584pt;}
.ls1b_c02294{letter-spacing:0.062400pt;}
.ls14_c02294{letter-spacing:0.068096pt;}
.ls8_c02294{letter-spacing:0.072352pt;}
.ls34_c02294{letter-spacing:0.076608pt;}
.ls1d_c02294{letter-spacing:0.085120pt;}
.ls20_c02294{letter-spacing:0.089376pt;}
.ls12_c02294{letter-spacing:0.097888pt;}
.lsd_c02294{letter-spacing:0.110656pt;}
.lse_c02294{letter-spacing:0.119168pt;}
.ls2d_c02294{letter-spacing:0.120000pt;}
.ls28_c02294{letter-spacing:0.134400pt;}
.ls6_c02294{letter-spacing:0.140544pt;}
.ls16_c02294{letter-spacing:0.144704pt;}
.ls37_c02294{letter-spacing:0.148960pt;}
.ls9_c02294{letter-spacing:0.161728pt;}
.ls13_c02294{letter-spacing:0.183008pt;}
.ls7_c02294{letter-spacing:71.680000pt;}
.ls21_c02294{letter-spacing:98.560000pt;}
.ls24_c02294{letter-spacing:101.120000pt;}
.ls35_c02294{letter-spacing:126.561600pt;}
.ls39_c02294{letter-spacing:129.120000pt;}
.ls2f_c02294{letter-spacing:137.998112pt;}
.lsc_c02294{letter-spacing:139.041600pt;}
.ls36_c02294{letter-spacing:139.680000pt;}
.ls15_c02294{letter-spacing:176.798400pt;}
.lsb_c02294{letter-spacing:178.160000pt;}
.ls26_c02294{letter-spacing:178.480000pt;}
.ls22_c02294{letter-spacing:180.720000pt;}
.ls23_c02294{letter-spacing:214.560000pt;}
.ws0_c02294{word-spacing:-14.780544pt;}
.ws2_c02294{word-spacing:-14.680992pt;}
.ws13_c02294{word-spacing:-0.263872pt;}
.ws9_c02294{word-spacing:-0.242592pt;}
.ws14_c02294{word-spacing:-0.225568pt;}
.wsc_c02294{word-spacing:-0.200032pt;}
.wsb_c02294{word-spacing:-0.191520pt;}
.ws1f_c02294{word-spacing:-0.170240pt;}
.wse_c02294{word-spacing:-0.153216pt;}
.ws16_c02294{word-spacing:-0.108576pt;}
.ws10_c02294{word-spacing:-0.106400pt;}
.ws21_c02294{word-spacing:-0.102400pt;}
.wsf_c02294{word-spacing:-0.097888pt;}
.ws8_c02294{word-spacing:-0.089856pt;}
.ws6_c02294{word-spacing:-0.076800pt;}
.wsa_c02294{word-spacing:-0.072352pt;}
.ws12_c02294{word-spacing:-0.070400pt;}
.ws7_c02294{word-spacing:-0.012800pt;}
.ws11_c02294{word-spacing:-0.006400pt;}
.ws5_c02294{word-spacing:0.000000pt;}
.ws15_c02294{word-spacing:0.023424pt;}
.ws18_c02294{word-spacing:0.096000pt;}
.ws19_c02294{word-spacing:0.110400pt;}
.ws17_c02294{word-spacing:0.115200pt;}
.ws1a_c02294{word-spacing:0.476672pt;}
.ws1b_c02294{word-spacing:0.489440pt;}
.ws1c_c02294{word-spacing:2.421664pt;}
.ws1e_c02294{word-spacing:2.442944pt;}
.ws1d_c02294{word-spacing:2.455712pt;}
.ws4_c02294{word-spacing:52.097280pt;}
.ws3_c02294{word-spacing:52.417280pt;}
.ws1_c02294{word-spacing:52.737280pt;}
.ws22_c02294{word-spacing:68.928000pt;}
.ws23_c02294{word-spacing:115.665600pt;}
.wsd_c02294{word-spacing:176.760000pt;}
.ws20_c02294{word-spacing:179.640000pt;}
._39_c02294{margin-left:-48.974400pt;}
._17_c02294{margin-left:-37.985152pt;}
._1b_c02294{margin-left:-36.641344pt;}
._3a_c02294{margin-left:-3.782400pt;}
._24_c02294{margin-left:-1.259040pt;}
._18_c02294{width:2.107904pt;}
._12_c02294{width:37.443776pt;}
._37_c02294{width:44.957824pt;}
._1e_c02294{width:45.920000pt;}
._d_c02294{width:55.046240pt;}
._8_c02294{width:58.680000pt;}
._f_c02294{width:67.360000pt;}
._9_c02294{width:68.720160pt;}
._34_c02294{width:71.087840pt;}
._c_c02294{width:73.625152pt;}
._1_c02294{width:75.408000pt;}
._2e_c02294{width:77.459200pt;}
._0_c02294{width:78.419200pt;}
._20_c02294{width:80.825280pt;}
._32_c02294{width:82.743104pt;}
._35_c02294{width:84.297152pt;}
._14_c02294{width:87.200000pt;}
._a_c02294{width:88.902400pt;}
._b_c02294{width:91.945504pt;}
._1f_c02294{width:93.027904pt;}
._30_c02294{width:94.240000pt;}
._2f_c02294{width:97.440000pt;}
._4_c02294{width:99.155200pt;}
._5_c02294{width:101.779200pt;}
._1d_c02294{width:103.488000pt;}
._7_c02294{width:105.312000pt;}
._31_c02294{width:106.883200pt;}
._2_c02294{width:108.320000pt;}
._1c_c02294{width:110.203200pt;}
._3_c02294{width:111.520000pt;}
._36_c02294{width:112.487072pt;}
._e_c02294{width:114.566240pt;}
._1a_c02294{width:117.827200pt;}
._22_c02294{width:118.857152pt;}
._19_c02294{width:120.746816pt;}
._15_c02294{width:123.630432pt;}
._6_c02294{width:128.875200pt;}
._38_c02294{width:130.368000pt;}
._16_c02294{width:132.255040pt;}
._10_c02294{width:135.361920pt;}
._13_c02294{width:139.040000pt;}
._23_c02294{width:151.739008pt;}
._2d_c02294{width:156.476800pt;}
._33_c02294{width:165.514816pt;}
._11_c02294{width:176.262848pt;}
._28_c02294{width:192.160000pt;}
._21_c02294{width:200.074816pt;}
._26_c02294{width:252.000000pt;}
._29_c02294{width:275.648000pt;}
._2a_c02294{width:309.060800pt;}
._27_c02294{width:314.518400pt;}
._2b_c02294{width:373.270400pt;}
._25_c02294{width:383.545280pt;}
._2c_c02294{width:538.040000pt;}
.fs6_c02294{font-size:10.560000pt;}
.fs2_c02294{font-size:37.440000pt;}
.fs4_c02294{font-size:42.560000pt;}
.fs1_c02294{font-size:48.000000pt;}
.fs5_c02294{font-size:53.440000pt;}
.fs3_c02294{font-size:58.560000pt;}
.fs0_c02294{font-size:64.000000pt;}
.y0_c02294{bottom:0.000000pt;}
.y4_c02294{bottom:50.987067pt;}
.y3_c02294{bottom:69.387067pt;}
.y60_c02294{bottom:105.067075pt;}
.y5f_c02294{bottom:120.427067pt;}
.y5e_c02294{bottom:133.387067pt;}
.y5c_c02294{bottom:138.587067pt;}
.y5b_c02294{bottom:138.907067pt;}
.y5d_c02294{bottom:138.907200pt;}
.y59_c02294{bottom:155.387067pt;}
.y58_c02294{bottom:155.706667pt;}
.y5a_c02294{bottom:155.707067pt;}
.y56_c02294{bottom:172.267067pt;}
.y55_c02294{bottom:172.586667pt;}
.y57_c02294{bottom:172.587067pt;}
.y53_c02294{bottom:189.147200pt;}
.y52_c02294{bottom:189.466667pt;}
.y54_c02294{bottom:189.467067pt;}
.y51_c02294{bottom:206.027200pt;}
.y50_c02294{bottom:206.347067pt;}
.y4f_c02294{bottom:223.227067pt;}
.y4e_c02294{bottom:223.787067pt;}
.y4d_c02294{bottom:240.107067pt;}
.y4c_c02294{bottom:255.547067pt;}
.y4b_c02294{bottom:273.947067pt;}
.y49_c02294{bottom:281.787067pt;}
.y48_c02294{bottom:282.106667pt;}
.y4a_c02294{bottom:282.107067pt;}
.y46_c02294{bottom:298.667200pt;}
.y45_c02294{bottom:298.986667pt;}
.y47_c02294{bottom:298.987067pt;}
.y44_c02294{bottom:315.547067pt;}
.y43_c02294{bottom:315.867067pt;}
.y42_c02294{bottom:333.307067pt;}
.y41_c02294{bottom:350.427067pt;}
.y40_c02294{bottom:365.067200pt;}
.y3f_c02294{bottom:382.907600pt;}
.y3e_c02294{bottom:396.747200pt;}
.y3d_c02294{bottom:410.426888pt;}
.y3c_c02294{bottom:422.667144pt;}
.y3b_c02294{bottom:434.987200pt;}
.y3a_c02294{bottom:449.307067pt;}
.y39_c02294{bottom:463.147200pt;}
.y38_c02294{bottom:476.907067pt;}
.y37_c02294{bottom:490.747067pt;}
.y36_c02294{bottom:504.507067pt;}
.y33_c02294{bottom:519.947067pt;}
.y35_c02294{bottom:520.587067pt;}
.y34_c02294{bottom:535.547067pt;}
.y32_c02294{bottom:549.547067pt;}
.y31_c02294{bottom:566.587067pt;}
.y30_c02294{bottom:584.987067pt;}
.y2e_c02294{bottom:607.466667pt;}
.y2f_c02294{bottom:608.667067pt;}
.y2c_c02294{bottom:625.866667pt;}
.y2d_c02294{bottom:627.067067pt;}
.y2a_c02294{bottom:644.266667pt;}
.y2b_c02294{bottom:645.467067pt;}
.y28_c02294{bottom:662.666667pt;}
.y29_c02294{bottom:663.867067pt;}
.y26_c02294{bottom:681.067067pt;}
.y27_c02294{bottom:682.267067pt;}
.y25_c02294{bottom:697.867067pt;}
.y24_c02294{bottom:711.707067pt;}
.y22_c02294{bottom:716.267467pt;}
.y23_c02294{bottom:717.467067pt;}
.y21_c02294{bottom:730.107067pt;}
.y1f_c02294{bottom:734.667467pt;}
.y20_c02294{bottom:735.867067pt;}
.y1e_c02294{bottom:748.507067pt;}
.y1c_c02294{bottom:753.067067pt;}
.y1d_c02294{bottom:754.267067pt;}
.y1b_c02294{bottom:769.947067pt;}
.y19_c02294{bottom:788.347067pt;}
.y1a_c02294{bottom:789.547067pt;}
.y18_c02294{bottom:805.227067pt;}
.y17_c02294{bottom:819.067067pt;}
.y16_c02294{bottom:834.507067pt;}
.y15_c02294{bottom:852.907067pt;}
.y13_c02294{bottom:864.186667pt;}
.y14_c02294{bottom:865.387067pt;}
.y11_c02294{bottom:880.987467pt;}
.y12_c02294{bottom:882.187067pt;}
.yf_c02294{bottom:897.867467pt;}
.y10_c02294{bottom:899.067067pt;}
.yd_c02294{bottom:914.747467pt;}
.ye_c02294{bottom:915.947067pt;}
.yb_c02294{bottom:931.627067pt;}
.yc_c02294{bottom:932.827067pt;}
.ya_c02294{bottom:948.507067pt;}
.y8_c02294{bottom:966.907067pt;}
.y9_c02294{bottom:968.107067pt;}
.y7_c02294{bottom:981.307067pt;}
.y6_c02294{bottom:997.547067pt;}
.y5_c02294{bottom:1012.987067pt;}
.y2_c02294{bottom:1042.347067pt;}
.y1_c02294{bottom:1060.587067pt;}
.h5_c02294{height:9.379219pt;}
.h8_c02294{height:33.253594pt;}
.hb_c02294{height:37.343906pt;}
.h4_c02294{height:37.801094pt;}
.h9_c02294{height:42.117188pt;}
.h3_c02294{height:42.632812pt;}
.ha_c02294{height:43.076654pt;}
.h6_c02294{height:43.077187pt;}
.hc_c02294{height:43.174127pt;}
.h12_c02294{height:47.464531pt;}
.h7_c02294{height:52.012031pt;}
.h10_c02294{height:54.252031pt;}
.h11_c02294{height:55.531498pt;}
.hd_c02294{height:55.532031pt;}
.he_c02294{height:55.851498pt;}
.hf_c02294{height:55.852031pt;}
.h2_c02294{height:56.156250pt;}
.h1_c02294{height:56.843750pt;}
.h0_c02294{height:1122.666667pt;}
.w1_c02294{width:793.333333pt;}
.w0_c02294{width:793.626667pt;}
.x0_c02294{left:0.000000pt;}
.x1_c02294{left:113.440000pt;}
.x9_c02294{left:119.600000pt;}
.x3_c02294{left:120.560000pt;}
.x7_c02294{left:125.760000pt;}
.x4_c02294{left:127.920000pt;}
.x5_c02294{left:133.600000pt;}
.xc_c02294{left:146.560000pt;}
.x6_c02294{left:196.160000pt;}
.xa_c02294{left:298.880000pt;}
.xb_c02294{left:315.360000pt;}
.x2_c02294{left:384.880000pt;}
.xe_c02294{left:463.280400pt;}
.xd_c02294{left:484.239600pt;}
.x8_c02294{left:493.439600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a99a3aa0d67a01b976ef46b.woff2')format("woff");}.ff1_c02295{font-family:ff1_c02295;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02295;src:url('chunks/assets/font_dd0d91af7ce198e6987245fe.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;}
.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);}
.v5_c02295{vertical-align:-4.320000px;}
.v4_c02295{vertical-align:-2.880000px;}
.v3_c02295{vertical-align:-1.440000px;}
.v0_c02295{vertical-align:0.000000px;}
.v1_c02295{vertical-align:1.080000px;}
.v6_c02295{vertical-align:2.880000px;}
.v7_c02295{vertical-align:4.320000px;}
.v2_c02295{vertical-align:32.400000px;}
.ls26_c02295{letter-spacing:-0.178200px;}
.ls22_c02295{letter-spacing:-0.118800px;}
.ls25_c02295{letter-spacing:-0.102600px;}
.ls23_c02295{letter-spacing:-0.086400px;}
.ls2e_c02295{letter-spacing:-0.086184px;}
.ls2a_c02295{letter-spacing:-0.043200px;}
.ls28_c02295{letter-spacing:-0.021600px;}
.ls2c_c02295{letter-spacing:-0.019152px;}
.ls24_c02295{letter-spacing:-0.016200px;}
.ls2b_c02295{letter-spacing:-0.010800px;}
.ls27_c02295{letter-spacing:-0.009576px;}
.ls21_c02295{letter-spacing:0.000000px;}
.ls3_c02295{letter-spacing:0.005400px;}
.ls2_c02295{letter-spacing:0.006588px;}
.ls31_c02295{letter-spacing:0.007200px;}
.ls9_c02295{letter-spacing:0.010800px;}
.ls12_c02295{letter-spacing:0.012636px;}
.ls8_c02295{letter-spacing:0.016200px;}
.ls1b_c02295{letter-spacing:0.019152px;}
.ls7_c02295{letter-spacing:0.027000px;}
.ls11_c02295{letter-spacing:0.028728px;}
.ls0_c02295{letter-spacing:0.028800px;}
.ls5_c02295{letter-spacing:0.032400px;}
.ls4_c02295{letter-spacing:0.033696px;}
.lsa_c02295{letter-spacing:0.037800px;}
.lse_c02295{letter-spacing:0.043092px;}
.ls6_c02295{letter-spacing:0.043200px;}
.ls15_c02295{letter-spacing:0.052668px;}
.ls1_c02295{letter-spacing:0.052704px;}
.ls1c_c02295{letter-spacing:0.057600px;}
.lsc_c02295{letter-spacing:0.067032px;}
.lsf_c02295{letter-spacing:0.076608px;}
.ls32_c02295{letter-spacing:0.081396px;}
.lsb_c02295{letter-spacing:0.086184px;}
.lsd_c02295{letter-spacing:0.114912px;}
.ls10_c02295{letter-spacing:0.119700px;}
.ls19_c02295{letter-spacing:0.124488px;}
.ls1a_c02295{letter-spacing:0.134064px;}
.ls18_c02295{letter-spacing:0.138852px;}
.ls29_c02295{letter-spacing:0.151200px;}
.ls13_c02295{letter-spacing:0.158112px;}
.ls20_c02295{letter-spacing:0.162792px;}
.ls2d_c02295{letter-spacing:0.167580px;}
.ls1d_c02295{letter-spacing:0.181944px;}
.ls1e_c02295{letter-spacing:83.430000px;}
.ls14_c02295{letter-spacing:112.320000px;}
.ls1f_c02295{letter-spacing:119.790000px;}
.ls2f_c02295{letter-spacing:143.818200px;}
.ls30_c02295{letter-spacing:156.778200px;}
.ls17_c02295{letter-spacing:199.260000px;}
.ls16_c02295{letter-spacing:200.790000px;}
.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;}
}
.ws1_c02295{word-spacing:-16.628112px;}
.ws0_c02295{word-spacing:-16.476588px;}
.ws21_c02295{word-spacing:-0.272916px;}
.ws26_c02295{word-spacing:-0.253764px;}
.ws1b_c02295{word-spacing:-0.229824px;}
.ws1f_c02295{word-spacing:-0.225036px;}
.ws1d_c02295{word-spacing:-0.215460px;}
.ws13_c02295{word-spacing:-0.210672px;}
.ws19_c02295{word-spacing:-0.205884px;}
.wsc_c02295{word-spacing:-0.189000px;}
.ws24_c02295{word-spacing:-0.172800px;}
.ws20_c02295{word-spacing:-0.172368px;}
.ws23_c02295{word-spacing:-0.144000px;}
.ws6_c02295{word-spacing:-0.122148px;}
.ws16_c02295{word-spacing:-0.119700px;}
.ws22_c02295{word-spacing:-0.110124px;}
.ws15_c02295{word-spacing:-0.101088px;}
.ws4_c02295{word-spacing:-0.086400px;}
.ws1c_c02295{word-spacing:-0.064800px;}
.ws3_c02295{word-spacing:0.000000px;}
.ws14_c02295{word-spacing:0.021600px;}
.ws5_c02295{word-spacing:0.039528px;}
.ws7_c02295{word-spacing:0.145800px;}
.ws8_c02295{word-spacing:0.151200px;}
.ws9_c02295{word-spacing:0.162000px;}
.wsb_c02295{word-spacing:0.194400px;}
.wsa_c02295{word-spacing:0.264600px;}
.wsd_c02295{word-spacing:0.280800px;}
.ws10_c02295{word-spacing:1.235304px;}
.ws12_c02295{word-spacing:1.273608px;}
.ws11_c02295{word-spacing:1.307124px;}
.wse_c02295{word-spacing:5.941908px;}
.wsf_c02295{word-spacing:5.961060px;}
.ws2_c02295{word-spacing:58.969440px;}
.ws17_c02295{word-spacing:119.664000px;}
.ws1e_c02295{word-spacing:119.669400px;}
.ws18_c02295{word-spacing:129.762000px;}
.ws25_c02295{word-spacing:156.735000px;}
.ws1a_c02295{word-spacing:240.975000px;}
._1f_c02295{margin-left:-58.006548px;}
._1b_c02295{margin-left:-54.500580px;}
._22_c02295{margin-left:-44.280000px;}
._20_c02295{margin-left:-42.157800px;}
._1_c02295{margin-left:-1.162512px;}
._a_c02295{width:1.026000px;}
._21_c02295{width:9.682200px;}
._1c_c02295{width:42.487200px;}
._19_c02295{width:51.297552px;}
._2a_c02295{width:55.803600px;}
._27_c02295{width:61.622028px;}
._1d_c02295{width:70.206876px;}
._16_c02295{width:72.604440px;}
._29_c02295{width:75.420000px;}
._17_c02295{width:77.310180px;}
._1a_c02295{width:83.678148px;}
._f_c02295{width:84.834000px;}
._e_c02295{width:88.221600px;}
._24_c02295{width:90.075600px;}
._23_c02295{width:93.360168px;}
._1e_c02295{width:95.735016px;}
._18_c02295{width:100.015200px;}
._11_c02295{width:106.740000px;}
._25_c02295{width:114.887016px;}
._12_c02295{width:118.018944px;}
._10_c02295{width:122.220000px;}
._13_c02295{width:123.576120px;}
._28_c02295{width:129.607020px;}
._26_c02295{width:146.830392px;}
._15_c02295{width:148.307688px;}
._14_c02295{width:152.155404px;}
._d_c02295{width:203.036400px;}
._4_c02295{width:216.180000px;}
._2_c02295{width:283.500000px;}
._6_c02295{width:303.170400px;}
._5_c02295{width:310.104000px;}
._3_c02295{width:324.775800px;}
._7_c02295{width:382.210200px;}
._b_c02295{width:451.783800px;}
._9_c02295{width:482.234400px;}
._8_c02295{width:483.924600px;}
._0_c02295{width:560.692800px;}
._c_c02295{width:799.695000px;}
.fc0_c02295{color:rgb(0,0,0);}
.fs5_c02295{font-size:11.880000px;}
.fs3_c02295{font-size:42.120000px;}
.fs4_c02295{font-size:47.880000px;}
.fs2_c02295{font-size:54.000000px;}
.fs1_c02295{font-size:65.880000px;}
.fs0_c02295{font-size:72.000000px;}
.y0_c02295{bottom:0.000000px;}
.y4_c02295{bottom:57.360450px;}
.y3_c02295{bottom:78.060450px;}
.y51_c02295{bottom:124.769550px;}
.y50_c02295{bottom:140.250000px;}
.y4f_c02295{bottom:155.819550px;}
.y4e_c02295{bottom:171.300000px;}
.y4d_c02295{bottom:186.869550px;}
.y4c_c02295{bottom:202.350000px;}
.y4b_c02295{bottom:217.919550px;}
.y4a_c02295{bottom:233.400000px;}
.y49_c02295{bottom:248.969550px;}
.y48_c02295{bottom:264.450000px;}
.y47_c02295{bottom:280.019550px;}
.y46_c02295{bottom:295.500000px;}
.y45_c02295{bottom:311.069550px;}
.y44_c02295{bottom:326.550000px;}
.y43_c02295{bottom:342.119550px;}
.y42_c02295{bottom:357.600000px;}
.y41_c02295{bottom:373.080450px;}
.y40_c02295{bottom:388.650000px;}
.y3f_c02295{bottom:404.130450px;}
.y3e_c02295{bottom:419.700000px;}
.y3d_c02295{bottom:435.180450px;}
.y3c_c02295{bottom:450.750000px;}
.y3b_c02295{bottom:466.230450px;}
.y3a_c02295{bottom:481.800000px;}
.y39_c02295{bottom:497.280450px;}
.y38_c02295{bottom:512.850000px;}
.y37_c02295{bottom:528.330450px;}
.y36_c02295{bottom:544.260000px;}
.y35_c02295{bottom:563.250000px;}
.y34_c02295{bottom:582.240450px;}
.y33_c02295{bottom:601.860450px;}
.y32_c02295{bottom:620.130450px;}
.y31_c02295{bottom:637.500450px;}
.y30_c02295{bottom:658.290450px;}
.y2e_c02295{bottom:667.110450px;}
.y2d_c02295{bottom:667.470000px;}
.y2f_c02295{bottom:667.470450px;}
.y2b_c02295{bottom:686.100450px;}
.y2a_c02295{bottom:686.460000px;}
.y2c_c02295{bottom:686.460450px;}
.y28_c02295{bottom:705.090450px;}
.y27_c02295{bottom:705.450000px;}
.y29_c02295{bottom:705.450450px;}
.y26_c02295{bottom:723.990450px;}
.y25_c02295{bottom:724.440450px;}
.y24_c02295{bottom:742.980450px;}
.y23_c02295{bottom:743.340450px;}
.y22_c02295{bottom:762.960450px;}
.y21_c02295{bottom:781.320450px;}
.y20_c02295{bottom:798.690450px;}
.y1f_c02295{bottom:819.480450px;}
.y1d_c02295{bottom:828.300450px;}
.y1c_c02295{bottom:828.660000px;}
.y1e_c02295{bottom:828.660600px;}
.y1b_c02295{bottom:847.200450px;}
.y1a_c02295{bottom:847.650450px;}
.y18_c02295{bottom:866.550450px;}
.y17_c02295{bottom:867.270450px;}
.y19_c02295{bottom:867.360600px;}
.y16_c02295{bottom:885.540600px;}
.y15_c02295{bottom:902.910450px;}
.y14_c02295{bottom:923.070450px;}
.y13_c02295{bottom:938.460099px;}
.y12_c02295{bottom:952.320162px;}
.y11_c02295{bottom:966.090450px;}
.y10_c02295{bottom:982.200450px;}
.yf_c02295{bottom:997.770450px;}
.ye_c02295{bottom:1013.250450px;}
.yd_c02295{bottom:1028.820450px;}
.yc_c02295{bottom:1044.300450px;}
.yb_c02295{bottom:1059.870450px;}
.ya_c02295{bottom:1075.350450px;}
.y9_c02295{bottom:1090.920450px;}
.y6_c02295{bottom:1108.650450px;}
.y8_c02295{bottom:1108.920450px;}
.y7_c02295{bottom:1125.750450px;}
.y5_c02295{bottom:1141.500450px;}
.y2_c02295{bottom:1172.640450px;}
.y1_c02295{bottom:1193.160450px;}
.he_c02295{height:10.551621px;}
.h5_c02295{height:37.410293px;}
.ha_c02295{height:42.011895px;}
.h6_c02295{height:47.381836px;}
.h4_c02295{height:47.961914px;}
.h7_c02295{height:48.461836px;}
.h9_c02295{height:48.462436px;}
.hb_c02295{height:57.805840px;}
.h3_c02295{height:58.513535px;}
.h10_c02295{height:61.033535px;}
.h11_c02295{height:61.035335px;}
.hf_c02295{height:62.473535px;}
.hd_c02295{height:62.474135px;}
.hc_c02295{height:62.833535px;}
.h2_c02295{height:63.175781px;}
.h1_c02295{height:63.949219px;}
.h8_c02295{height:79.781836px;}
.h0_c02295{height:1263.000000px;}
.w1_c02295{width:892.500000px;}
.w0_c02295{width:892.830000px;}
.x0_c02295{left:0.000000px;}
.x1_c02295{left:127.620000px;}
.x3_c02295{left:134.550000px;}
.x6_c02295{left:135.630000px;}
.x7_c02295{left:143.910000px;}
.xa_c02295{left:165.060000px;}
.xb_c02295{left:220.680000px;}
.x4_c02295{left:384.840000px;}
.x5_c02295{left:403.380000px;}
.x2_c02295{left:432.990000px;}
.x8_c02295{left:531.720450px;}
.xc_c02295{left:555.299550px;}
.x9_c02295{left:717.930000px;}
@media print{
.v5_c02295{vertical-align:-3.840000pt;}
.v4_c02295{vertical-align:-2.560000pt;}
.v3_c02295{vertical-align:-1.280000pt;}
.v0_c02295{vertical-align:0.000000pt;}
.v1_c02295{vertical-align:0.960000pt;}
.v6_c02295{vertical-align:2.560000pt;}
.v7_c02295{vertical-align:3.840000pt;}
.v2_c02295{vertical-align:28.800000pt;}
.ls26_c02295{letter-spacing:-0.158400pt;}
.ls22_c02295{letter-spacing:-0.105600pt;}
.ls25_c02295{letter-spacing:-0.091200pt;}
.ls23_c02295{letter-spacing:-0.076800pt;}
.ls2e_c02295{letter-spacing:-0.076608pt;}
.ls2a_c02295{letter-spacing:-0.038400pt;}
.ls28_c02295{letter-spacing:-0.019200pt;}
.ls2c_c02295{letter-spacing:-0.017024pt;}
.ls24_c02295{letter-spacing:-0.014400pt;}
.ls2b_c02295{letter-spacing:-0.009600pt;}
.ls27_c02295{letter-spacing:-0.008512pt;}
.ls21_c02295{letter-spacing:0.000000pt;}
.ls3_c02295{letter-spacing:0.004800pt;}
.ls2_c02295{letter-spacing:0.005856pt;}
.ls31_c02295{letter-spacing:0.006400pt;}
.ls9_c02295{letter-spacing:0.009600pt;}
.ls12_c02295{letter-spacing:0.011232pt;}
.ls8_c02295{letter-spacing:0.014400pt;}
.ls1b_c02295{letter-spacing:0.017024pt;}
.ls7_c02295{letter-spacing:0.024000pt;}
.ls11_c02295{letter-spacing:0.025536pt;}
.ls0_c02295{letter-spacing:0.025600pt;}
.ls5_c02295{letter-spacing:0.028800pt;}
.ls4_c02295{letter-spacing:0.029952pt;}
.lsa_c02295{letter-spacing:0.033600pt;}
.lse_c02295{letter-spacing:0.038304pt;}
.ls6_c02295{letter-spacing:0.038400pt;}
.ls15_c02295{letter-spacing:0.046816pt;}
.ls1_c02295{letter-spacing:0.046848pt;}
.ls1c_c02295{letter-spacing:0.051200pt;}
.lsc_c02295{letter-spacing:0.059584pt;}
.lsf_c02295{letter-spacing:0.068096pt;}
.ls32_c02295{letter-spacing:0.072352pt;}
.lsb_c02295{letter-spacing:0.076608pt;}
.lsd_c02295{letter-spacing:0.102144pt;}
.ls10_c02295{letter-spacing:0.106400pt;}
.ls19_c02295{letter-spacing:0.110656pt;}
.ls1a_c02295{letter-spacing:0.119168pt;}
.ls18_c02295{letter-spacing:0.123424pt;}
.ls29_c02295{letter-spacing:0.134400pt;}
.ls13_c02295{letter-spacing:0.140544pt;}
.ls20_c02295{letter-spacing:0.144704pt;}
.ls2d_c02295{letter-spacing:0.148960pt;}
.ls1d_c02295{letter-spacing:0.161728pt;}
.ls1e_c02295{letter-spacing:74.160000pt;}
.ls14_c02295{letter-spacing:99.840000pt;}
.ls1f_c02295{letter-spacing:106.480000pt;}
.ls2f_c02295{letter-spacing:127.838400pt;}
.ls30_c02295{letter-spacing:139.358400pt;}
.ls17_c02295{letter-spacing:177.120000pt;}
.ls16_c02295{letter-spacing:178.480000pt;}
.ws1_c02295{word-spacing:-14.780544pt;}
.ws0_c02295{word-spacing:-14.645856pt;}
.ws21_c02295{word-spacing:-0.242592pt;}
.ws26_c02295{word-spacing:-0.225568pt;}
.ws1b_c02295{word-spacing:-0.204288pt;}
.ws1f_c02295{word-spacing:-0.200032pt;}
.ws1d_c02295{word-spacing:-0.191520pt;}
.ws13_c02295{word-spacing:-0.187264pt;}
.ws19_c02295{word-spacing:-0.183008pt;}
.wsc_c02295{word-spacing:-0.168000pt;}
.ws24_c02295{word-spacing:-0.153600pt;}
.ws20_c02295{word-spacing:-0.153216pt;}
.ws23_c02295{word-spacing:-0.128000pt;}
.ws6_c02295{word-spacing:-0.108576pt;}
.ws16_c02295{word-spacing:-0.106400pt;}
.ws22_c02295{word-spacing:-0.097888pt;}
.ws15_c02295{word-spacing:-0.089856pt;}
.ws4_c02295{word-spacing:-0.076800pt;}
.ws1c_c02295{word-spacing:-0.057600pt;}
.ws3_c02295{word-spacing:0.000000pt;}
.ws14_c02295{word-spacing:0.019200pt;}
.ws5_c02295{word-spacing:0.035136pt;}
.ws7_c02295{word-spacing:0.129600pt;}
.ws8_c02295{word-spacing:0.134400pt;}
.ws9_c02295{word-spacing:0.144000pt;}
.wsb_c02295{word-spacing:0.172800pt;}
.wsa_c02295{word-spacing:0.235200pt;}
.wsd_c02295{word-spacing:0.249600pt;}
.ws10_c02295{word-spacing:1.098048pt;}
.ws12_c02295{word-spacing:1.132096pt;}
.ws11_c02295{word-spacing:1.161888pt;}
.wse_c02295{word-spacing:5.281696pt;}
.wsf_c02295{word-spacing:5.298720pt;}
.ws2_c02295{word-spacing:52.417280pt;}
.ws17_c02295{word-spacing:106.368000pt;}
.ws1e_c02295{word-spacing:106.372800pt;}
.ws18_c02295{word-spacing:115.344000pt;}
.ws25_c02295{word-spacing:139.320000pt;}
.ws1a_c02295{word-spacing:214.200000pt;}
._1f_c02295{margin-left:-51.561376pt;}
._1b_c02295{margin-left:-48.444960pt;}
._22_c02295{margin-left:-39.360000pt;}
._20_c02295{margin-left:-37.473600pt;}
._1_c02295{margin-left:-1.033344pt;}
._a_c02295{width:0.912000pt;}
._21_c02295{width:8.606400pt;}
._1c_c02295{width:37.766400pt;}
._19_c02295{width:45.597824pt;}
._2a_c02295{width:49.603200pt;}
._27_c02295{width:54.775136pt;}
._1d_c02295{width:62.406112pt;}
._16_c02295{width:64.537280pt;}
._29_c02295{width:67.040000pt;}
._17_c02295{width:68.720160pt;}
._1a_c02295{width:74.380576pt;}
._f_c02295{width:75.408000pt;}
._e_c02295{width:78.419200pt;}
._24_c02295{width:80.067200pt;}
._23_c02295{width:82.986816pt;}
._1e_c02295{width:85.097792pt;}
._18_c02295{width:88.902400pt;}
._11_c02295{width:94.880000pt;}
._25_c02295{width:102.121792pt;}
._12_c02295{width:104.905728pt;}
._10_c02295{width:108.640000pt;}
._13_c02295{width:109.845440pt;}
._28_c02295{width:115.206240pt;}
._26_c02295{width:130.515904pt;}
._15_c02295{width:131.829056pt;}
._14_c02295{width:135.249248pt;}
._d_c02295{width:180.476800pt;}
._4_c02295{width:192.160000pt;}
._2_c02295{width:252.000000pt;}
._6_c02295{width:269.484800pt;}
._5_c02295{width:275.648000pt;}
._3_c02295{width:288.689600pt;}
._7_c02295{width:339.742400pt;}
._b_c02295{width:401.585600pt;}
._9_c02295{width:428.652800pt;}
._8_c02295{width:430.155200pt;}
._0_c02295{width:498.393600pt;}
._c_c02295{width:710.840000pt;}
.fs5_c02295{font-size:10.560000pt;}
.fs3_c02295{font-size:37.440000pt;}
.fs4_c02295{font-size:42.560000pt;}
.fs2_c02295{font-size:48.000000pt;}
.fs1_c02295{font-size:58.560000pt;}
.fs0_c02295{font-size:64.000000pt;}
.y0_c02295{bottom:0.000000pt;}
.y4_c02295{bottom:50.987067pt;}
.y3_c02295{bottom:69.387067pt;}
.y51_c02295{bottom:110.906267pt;}
.y50_c02295{bottom:124.666667pt;}
.y4f_c02295{bottom:138.506267pt;}
.y4e_c02295{bottom:152.266667pt;}
.y4d_c02295{bottom:166.106267pt;}
.y4c_c02295{bottom:179.866667pt;}
.y4b_c02295{bottom:193.706267pt;}
.y4a_c02295{bottom:207.466667pt;}
.y49_c02295{bottom:221.306267pt;}
.y48_c02295{bottom:235.066667pt;}
.y47_c02295{bottom:248.906267pt;}
.y46_c02295{bottom:262.666667pt;}
.y45_c02295{bottom:276.506267pt;}
.y44_c02295{bottom:290.266667pt;}
.y43_c02295{bottom:304.106267pt;}
.y42_c02295{bottom:317.866667pt;}
.y41_c02295{bottom:331.627067pt;}
.y40_c02295{bottom:345.466667pt;}
.y3f_c02295{bottom:359.227067pt;}
.y3e_c02295{bottom:373.066667pt;}
.y3d_c02295{bottom:386.827067pt;}
.y3c_c02295{bottom:400.666667pt;}
.y3b_c02295{bottom:414.427067pt;}
.y3a_c02295{bottom:428.266667pt;}
.y39_c02295{bottom:442.027067pt;}
.y38_c02295{bottom:455.866667pt;}
.y37_c02295{bottom:469.627067pt;}
.y36_c02295{bottom:483.786667pt;}
.y35_c02295{bottom:500.666667pt;}
.y34_c02295{bottom:517.547067pt;}
.y33_c02295{bottom:534.987067pt;}
.y32_c02295{bottom:551.227067pt;}
.y31_c02295{bottom:566.667067pt;}
.y30_c02295{bottom:585.147067pt;}
.y2e_c02295{bottom:592.987067pt;}
.y2d_c02295{bottom:593.306667pt;}
.y2f_c02295{bottom:593.307067pt;}
.y2b_c02295{bottom:609.867067pt;}
.y2a_c02295{bottom:610.186667pt;}
.y2c_c02295{bottom:610.187067pt;}
.y28_c02295{bottom:626.747067pt;}
.y27_c02295{bottom:627.066667pt;}
.y29_c02295{bottom:627.067067pt;}
.y26_c02295{bottom:643.547067pt;}
.y25_c02295{bottom:643.947067pt;}
.y24_c02295{bottom:660.427067pt;}
.y23_c02295{bottom:660.747067pt;}
.y22_c02295{bottom:678.187067pt;}
.y21_c02295{bottom:694.507067pt;}
.y20_c02295{bottom:709.947067pt;}
.y1f_c02295{bottom:728.427067pt;}
.y1d_c02295{bottom:736.267067pt;}
.y1c_c02295{bottom:736.586667pt;}
.y1e_c02295{bottom:736.587200pt;}
.y1b_c02295{bottom:753.067067pt;}
.y1a_c02295{bottom:753.467067pt;}
.y18_c02295{bottom:770.267067pt;}
.y17_c02295{bottom:770.907067pt;}
.y19_c02295{bottom:770.987200pt;}
.y16_c02295{bottom:787.147200pt;}
.y15_c02295{bottom:802.587067pt;}
.y14_c02295{bottom:820.507067pt;}
.y13_c02295{bottom:834.186755pt;}
.y12_c02295{bottom:846.506811pt;}
.y11_c02295{bottom:858.747067pt;}
.y10_c02295{bottom:873.067067pt;}
.yf_c02295{bottom:886.907067pt;}
.ye_c02295{bottom:900.667067pt;}
.yd_c02295{bottom:914.507067pt;}
.yc_c02295{bottom:928.267067pt;}
.yb_c02295{bottom:942.107067pt;}
.ya_c02295{bottom:955.867067pt;}
.y9_c02295{bottom:969.707067pt;}
.y6_c02295{bottom:985.467067pt;}
.y8_c02295{bottom:985.707067pt;}
.y7_c02295{bottom:1000.667067pt;}
.y5_c02295{bottom:1014.667067pt;}
.y2_c02295{bottom:1042.347067pt;}
.y1_c02295{bottom:1060.587067pt;}
.he_c02295{height:9.379219pt;}
.h5_c02295{height:33.253594pt;}
.ha_c02295{height:37.343906pt;}
.h6_c02295{height:42.117188pt;}
.h4_c02295{height:42.632812pt;}
.h7_c02295{height:43.077187pt;}
.h9_c02295{height:43.077721pt;}
.hb_c02295{height:51.382969pt;}
.h3_c02295{height:52.012031pt;}
.h10_c02295{height:54.252031pt;}
.h11_c02295{height:54.253631pt;}
.hf_c02295{height:55.532031pt;}
.hd_c02295{height:55.532565pt;}
.hc_c02295{height:55.852031pt;}
.h2_c02295{height:56.156250pt;}
.h1_c02295{height:56.843750pt;}
.h8_c02295{height:70.917188pt;}
.h0_c02295{height:1122.666667pt;}
.w1_c02295{width:793.333333pt;}
.w0_c02295{width:793.626667pt;}
.x0_c02295{left:0.000000pt;}
.x1_c02295{left:113.440000pt;}
.x3_c02295{left:119.600000pt;}
.x6_c02295{left:120.560000pt;}
.x7_c02295{left:127.920000pt;}
.xa_c02295{left:146.720000pt;}
.xb_c02295{left:196.160000pt;}
.x4_c02295{left:342.080000pt;}
.x5_c02295{left:358.560000pt;}
.x2_c02295{left:384.880000pt;}
.x8_c02295{left:472.640400pt;}
.xc_c02295{left:493.599600pt;}
.x9_c02295{left:638.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_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_20078f6124a5f392f2219f1a.woff2')format("woff");}.ff1_c02296{font-family:ff1_c02296;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02296;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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.800000px;}
.v2_c02296{vertical-align:54.000000px;}
.ls2c_c02296{letter-spacing:-0.086184px;}
.ls28_c02296{letter-spacing:-0.078156px;}
.ls2f_c02296{letter-spacing:-0.059292px;}
.ls2d_c02296{letter-spacing:-0.038304px;}
.ls2b_c02296{letter-spacing:-0.014364px;}
.ls2a_c02296{letter-spacing:-0.006012px;}
.ls27_c02296{letter-spacing:0.000000px;}
.ls2_c02296{letter-spacing:0.006012px;}
.ls1d_c02296{letter-spacing:0.007200px;}
.lsc_c02296{letter-spacing:0.013176px;}
.ls1_c02296{letter-spacing:0.014400px;}
.ls20_c02296{letter-spacing:0.019152px;}
.ls8_c02296{letter-spacing:0.019764px;}
.ls0_c02296{letter-spacing:0.028800px;}
.ls24_c02296{letter-spacing:0.039528px;}
.ls2e_c02296{letter-spacing:0.043092px;}
.ls1e_c02296{letter-spacing:0.043200px;}
.ls1b_c02296{letter-spacing:0.046116px;}
.ls19_c02296{letter-spacing:0.052704px;}
.ls4_c02296{letter-spacing:0.059292px;}
.ls6_c02296{letter-spacing:0.065880px;}
.ls17_c02296{letter-spacing:0.072468px;}
.ls1a_c02296{letter-spacing:0.079056px;}
.ls18_c02296{letter-spacing:0.085644px;}
.ls1f_c02296{letter-spacing:0.090972px;}
.ls14_c02296{letter-spacing:0.092232px;}
.lsf_c02296{letter-spacing:0.105408px;}
.ls13_c02296{letter-spacing:0.138348px;}
.lsb_c02296{letter-spacing:0.151524px;}
.ls21_c02296{letter-spacing:0.158112px;}
.lse_c02296{letter-spacing:0.177876px;}
.ls3_c02296{letter-spacing:0.180360px;}
.ls25_c02296{letter-spacing:64.440000px;}
.ls23_c02296{letter-spacing:71.280000px;}
.ls16_c02296{letter-spacing:88.560000px;}
.ls22_c02296{letter-spacing:97.560000px;}
.lsa_c02296{letter-spacing:121.320000px;}
.ls12_c02296{letter-spacing:154.440000px;}
.lsd_c02296{letter-spacing:175.320000px;}
.ls10_c02296{letter-spacing:218.880000px;}
.ls9_c02296{letter-spacing:285.480000px;}
.ls5_c02296{letter-spacing:351.000000px;}
.ls7_c02296{letter-spacing:362.160000px;}
.ls11_c02296{letter-spacing:367.560000px;}
.ls15_c02296{letter-spacing:433.440000px;}
.ls26_c02296{letter-spacing:686.880000px;}
.ls1c_c02296{letter-spacing:941.760000px;}
.ls29_c02296{letter-spacing:1018.980000px;}
.sc__c02296{text-shadow:none;}
.sc0_c02296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02296{-webkit-text-stroke:0px transparent;}
.sc0_c02296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02296{word-spacing:-16.647876px;}
.wsc_c02296{word-spacing:-16.628112px;}
.ws7_c02296{word-spacing:-16.621524px;}
.ws9_c02296{word-spacing:-16.608348px;}
.ws4_c02296{word-spacing:-16.562232px;}
.ws2_c02296{word-spacing:-16.529292px;}
.ws22_c02296{word-spacing:-0.115200px;}
.ws14_c02296{word-spacing:-0.100800px;}
.ws16_c02296{word-spacing:-0.090180px;}
.ws13_c02296{word-spacing:-0.086400px;}
.ws1c_c02296{word-spacing:-0.064800px;}
.ws15_c02296{word-spacing:-0.014400px;}
.ws1b_c02296{word-spacing:-0.013176px;}
.ws23_c02296{word-spacing:-0.007200px;}
.ws12_c02296{word-spacing:0.000000px;}
.ws1e_c02296{word-spacing:0.006588px;}
.ws20_c02296{word-spacing:0.013176px;}
.ws1d_c02296{word-spacing:0.019764px;}
.ws18_c02296{word-spacing:0.026352px;}
.ws17_c02296{word-spacing:0.032940px;}
.ws1f_c02296{word-spacing:0.039528px;}
.ws21_c02296{word-spacing:0.046116px;}
.ws24_c02296{word-spacing:0.052704px;}
.ws19_c02296{word-spacing:0.072468px;}
.ws1a_c02296{word-spacing:0.079056px;}
.ws10_c02296{word-spacing:65.436372px;}
.wse_c02296{word-spacing:65.482380px;}
.ws11_c02296{word-spacing:65.506608px;}
.wsb_c02296{word-spacing:79.515972px;}
.wsf_c02296{word-spacing:79.518096px;}
.ws6_c02296{word-spacing:80.196372px;}
.wsd_c02296{word-spacing:98.556372px;}
.wsa_c02296{word-spacing:98.602380px;}
.ws8_c02296{word-spacing:113.316372px;}
.ws5_c02296{word-spacing:133.123716px;}
.ws1_c02296{word-spacing:165.925368px;}
.ws3_c02296{word-spacing:199.069596px;}
._3_c02296{margin-left:-1.226448px;}
._15_c02296{width:65.234808px;}
._2_c02296{width:116.010000px;}
._1_c02296{width:122.875776px;}
._5_c02296{width:128.248704px;}
._18_c02296{width:146.524248px;}
._1b_c02296{width:150.371928px;}
._20_c02296{width:221.582700px;}
._0_c02296{width:238.924656px;}
._1d_c02296{width:264.528792px;}
._1e_c02296{width:270.207648px;}
._24_c02296{width:279.168408px;}
._23_c02296{width:292.330152px;}
._a_c02296{width:313.719336px;}
._1f_c02296{width:320.750784px;}
._21_c02296{width:334.211148px;}
._19_c02296{width:338.868864px;}
._16_c02296{width:341.502984px;}
._8_c02296{width:358.623144px;}
._e_c02296{width:359.624520px;}
._17_c02296{width:360.661968px;}
._1a_c02296{width:365.621652px;}
._11_c02296{width:367.370928px;}
._13_c02296{width:372.680856px;}
._9_c02296{width:405.251928px;}
._1c_c02296{width:419.083272px;}
._d_c02296{width:476.462700px;}
._22_c02296{width:479.601720px;}
._b_c02296{width:525.087648px;}
._10_c02296{width:547.210152px;}
._6_c02296{width:575.630784px;}
._7_c02296{width:589.091148px;}
._f_c02296{width:596.382984px;}
._12_c02296{width:620.501652px;}
._14_c02296{width:635.382000px;}
._c_c02296{width:734.481720px;}
._4_c02296{width:1576.567368px;}
.fc0_c02296{color:rgb(0,0,0);}
.fs4_c02296{font-size:47.880000px;}
.fs1_c02296{font-size:54.000000px;}
.fs2_c02296{font-size:60.120000px;}
.fs3_c02296{font-size:65.880000px;}
.fs0_c02296{font-size:72.000000px;}
.y0_c02296{bottom:0.000000px;}
.y4_c02296{bottom:57.360450px;}
.y3_c02296{bottom:78.060450px;}
.y3d_c02296{bottom:116.220000px;}
.y3c_c02296{bottom:131.700450px;}
.y3b_c02296{bottom:148.260450px;}
.y3a_c02296{bottom:167.250450px;}
.y39_c02296{bottom:186.600450px;}
.y38_c02296{bottom:205.590450px;}
.y37_c02296{bottom:224.580450px;}
.y36_c02296{bottom:243.480450px;}
.y35_c02296{bottom:262.470450px;}
.y34_c02296{bottom:281.460450px;}
.y33_c02296{bottom:300.450450px;}
.y32_c02296{bottom:319.440450px;}
.y31_c02296{bottom:338.430450px;}
.y30_c02296{bottom:357.330450px;}
.y2f_c02296{bottom:376.680450px;}
.y2e_c02296{bottom:395.670450px;}
.y2d_c02296{bottom:414.660600px;}
.y2b_c02296{bottom:432.570450px;}
.y2a_c02296{bottom:432.930600px;}
.y2c_c02296{bottom:446.430600px;}
.y29_c02296{bottom:461.910450px;}
.y28_c02296{bottom:485.040150px;}
.y27_c02296{bottom:500.520600px;}
.y26_c02296{bottom:517.800450px;}
.y25_c02296{bottom:538.230900px;}
.y24_c02296{bottom:553.800450px;}
.y23_c02296{bottom:570.360450px;}
.y22_c02296{bottom:589.350450px;}
.y21_c02296{bottom:608.250450px;}
.y20_c02296{bottom:627.240450px;}
.y1f_c02296{bottom:646.230450px;}
.y1e_c02296{bottom:665.220450px;}
.y1d_c02296{bottom:684.210450px;}
.y1c_c02296{bottom:703.200450px;}
.y1b_c02296{bottom:722.100450px;}
.y1a_c02296{bottom:741.090450px;}
.y19_c02296{bottom:760.080450px;}
.y18_c02296{bottom:779.070450px;}
.y17_c02296{bottom:798.060450px;}
.y16_c02296{bottom:816.960450px;}
.y15_c02296{bottom:835.950450px;}
.y14_c02296{bottom:854.580450px;}
.y13_c02296{bottom:872.850450px;}
.y12_c02296{bottom:895.980900px;}
.y11_c02296{bottom:911.550450px;}
.y10_c02296{bottom:929.190450px;}
.yf_c02296{bottom:948.180450px;}
.ye_c02296{bottom:967.170450px;}
.yd_c02296{bottom:986.070450px;}
.yc_c02296{bottom:1005.060450px;}
.yb_c02296{bottom:1024.050450px;}
.ya_c02296{bottom:1044.750450px;}
.y9_c02296{bottom:1065.090450px;}
.y8_c02296{bottom:1083.360450px;}
.y7_c02296{bottom:1106.490900px;}
.y6_c02296{bottom:1122.060450px;}
.y5_c02296{bottom:1139.250450px;}
.y2_c02296{bottom:1172.640450px;}
.y1_c02296{bottom:1193.160450px;}
.h7_c02296{height:42.526230px;}
.h3_c02296{height:47.961914px;}
.h4_c02296{height:53.397598px;}
.h2_c02296{height:63.175781px;}
.h1_c02296{height:63.949219px;}
.h5_c02296{height:64.975781px;}
.h6_c02296{height:96.526230px;}
.h0_c02296{height:1263.000000px;}
.w1_c02296{width:892.500000px;}
.w0_c02296{width:892.830000px;}
.x0_c02296{left:0.000000px;}
.x1_c02296{left:127.620000px;}
.x3_c02296{left:135.630000px;}
.x4_c02296{left:279.630000px;}
.x2_c02296{left:432.990000px;}
.x5_c02296{left:506.700000px;}
.x6_c02296{left:547.200000px;}
.x7_c02296{left:552.240000px;}
.x8_c02296{left:593.910000px;}
.x9_c02296{left:602.460000px;}
.xa_c02296{left:637.470000px;}
.xb_c02296{left:690.030000px;}
.xc_c02296{left:731.610000px;}
@media print{
.v0_c02296{vertical-align:0.000000pt;}
.v1_c02296{vertical-align:1.600000pt;}
.v2_c02296{vertical-align:48.000000pt;}
.ls2c_c02296{letter-spacing:-0.076608pt;}
.ls28_c02296{letter-spacing:-0.069472pt;}
.ls2f_c02296{letter-spacing:-0.052704pt;}
.ls2d_c02296{letter-spacing:-0.034048pt;}
.ls2b_c02296{letter-spacing:-0.012768pt;}
.ls2a_c02296{letter-spacing:-0.005344pt;}
.ls27_c02296{letter-spacing:0.000000pt;}
.ls2_c02296{letter-spacing:0.005344pt;}
.ls1d_c02296{letter-spacing:0.006400pt;}
.lsc_c02296{letter-spacing:0.011712pt;}
.ls1_c02296{letter-spacing:0.012800pt;}
.ls20_c02296{letter-spacing:0.017024pt;}
.ls8_c02296{letter-spacing:0.017568pt;}
.ls0_c02296{letter-spacing:0.025600pt;}
.ls24_c02296{letter-spacing:0.035136pt;}
.ls2e_c02296{letter-spacing:0.038304pt;}
.ls1e_c02296{letter-spacing:0.038400pt;}
.ls1b_c02296{letter-spacing:0.040992pt;}
.ls19_c02296{letter-spacing:0.046848pt;}
.ls4_c02296{letter-spacing:0.052704pt;}
.ls6_c02296{letter-spacing:0.058560pt;}
.ls17_c02296{letter-spacing:0.064416pt;}
.ls1a_c02296{letter-spacing:0.070272pt;}
.ls18_c02296{letter-spacing:0.076128pt;}
.ls1f_c02296{letter-spacing:0.080864pt;}
.ls14_c02296{letter-spacing:0.081984pt;}
.lsf_c02296{letter-spacing:0.093696pt;}
.ls13_c02296{letter-spacing:0.122976pt;}
.lsb_c02296{letter-spacing:0.134688pt;}
.ls21_c02296{letter-spacing:0.140544pt;}
.lse_c02296{letter-spacing:0.158112pt;}
.ls3_c02296{letter-spacing:0.160320pt;}
.ls25_c02296{letter-spacing:57.280000pt;}
.ls23_c02296{letter-spacing:63.360000pt;}
.ls16_c02296{letter-spacing:78.720000pt;}
.ls22_c02296{letter-spacing:86.720000pt;}
.lsa_c02296{letter-spacing:107.840000pt;}
.ls12_c02296{letter-spacing:137.280000pt;}
.lsd_c02296{letter-spacing:155.840000pt;}
.ls10_c02296{letter-spacing:194.560000pt;}
.ls9_c02296{letter-spacing:253.760000pt;}
.ls5_c02296{letter-spacing:312.000000pt;}
.ls7_c02296{letter-spacing:321.920000pt;}
.ls11_c02296{letter-spacing:326.720000pt;}
.ls15_c02296{letter-spacing:385.280000pt;}
.ls26_c02296{letter-spacing:610.560000pt;}
.ls1c_c02296{letter-spacing:837.120000pt;}
.ls29_c02296{letter-spacing:905.760000pt;}
.ws0_c02296{word-spacing:-14.798112pt;}
.wsc_c02296{word-spacing:-14.780544pt;}
.ws7_c02296{word-spacing:-14.774688pt;}
.ws9_c02296{word-spacing:-14.762976pt;}
.ws4_c02296{word-spacing:-14.721984pt;}
.ws2_c02296{word-spacing:-14.692704pt;}
.ws22_c02296{word-spacing:-0.102400pt;}
.ws14_c02296{word-spacing:-0.089600pt;}
.ws16_c02296{word-spacing:-0.080160pt;}
.ws13_c02296{word-spacing:-0.076800pt;}
.ws1c_c02296{word-spacing:-0.057600pt;}
.ws15_c02296{word-spacing:-0.012800pt;}
.ws1b_c02296{word-spacing:-0.011712pt;}
.ws23_c02296{word-spacing:-0.006400pt;}
.ws12_c02296{word-spacing:0.000000pt;}
.ws1e_c02296{word-spacing:0.005856pt;}
.ws20_c02296{word-spacing:0.011712pt;}
.ws1d_c02296{word-spacing:0.017568pt;}
.ws18_c02296{word-spacing:0.023424pt;}
.ws17_c02296{word-spacing:0.029280pt;}
.ws1f_c02296{word-spacing:0.035136pt;}
.ws21_c02296{word-spacing:0.040992pt;}
.ws24_c02296{word-spacing:0.046848pt;}
.ws19_c02296{word-spacing:0.064416pt;}
.ws1a_c02296{word-spacing:0.070272pt;}
.ws10_c02296{word-spacing:58.165664pt;}
.wse_c02296{word-spacing:58.206560pt;}
.ws11_c02296{word-spacing:58.228096pt;}
.wsb_c02296{word-spacing:70.680864pt;}
.wsf_c02296{word-spacing:70.682752pt;}
.ws6_c02296{word-spacing:71.285664pt;}
.wsd_c02296{word-spacing:87.605664pt;}
.wsa_c02296{word-spacing:87.646560pt;}
.ws8_c02296{word-spacing:100.725664pt;}
.ws5_c02296{word-spacing:118.332192pt;}
.ws1_c02296{word-spacing:147.489216pt;}
.ws3_c02296{word-spacing:176.950752pt;}
._3_c02296{margin-left:-1.090176pt;}
._15_c02296{width:57.986496pt;}
._2_c02296{width:103.120000pt;}
._1_c02296{width:109.222912pt;}
._5_c02296{width:113.998848pt;}
._18_c02296{width:130.243776pt;}
._1b_c02296{width:133.663936pt;}
._20_c02296{width:196.962400pt;}
._0_c02296{width:212.377472pt;}
._1d_c02296{width:235.136704pt;}
._1e_c02296{width:240.184576pt;}
._24_c02296{width:248.149696pt;}
._23_c02296{width:259.849024pt;}
._a_c02296{width:278.861632pt;}
._1f_c02296{width:285.111808pt;}
._21_c02296{width:297.076576pt;}
._19_c02296{width:301.216768pt;}
._16_c02296{width:303.558208pt;}
._8_c02296{width:318.776128pt;}
._e_c02296{width:319.666240pt;}
._17_c02296{width:320.588416pt;}
._1a_c02296{width:324.997024pt;}
._11_c02296{width:326.551936pt;}
._13_c02296{width:331.271872pt;}
._9_c02296{width:360.223936pt;}
._1c_c02296{width:372.518464pt;}
._d_c02296{width:423.522400pt;}
._22_c02296{width:426.312640pt;}
._b_c02296{width:466.744576pt;}
._10_c02296{width:486.409024pt;}
._6_c02296{width:511.671808pt;}
._7_c02296{width:523.636576pt;}
._f_c02296{width:530.118208pt;}
._12_c02296{width:551.557024pt;}
._14_c02296{width:564.784000pt;}
._c_c02296{width:652.872640pt;}
._4_c02296{width:1401.393216pt;}
.fs4_c02296{font-size:42.560000pt;}
.fs1_c02296{font-size:48.000000pt;}
.fs2_c02296{font-size:53.440000pt;}
.fs3_c02296{font-size:58.560000pt;}
.fs0_c02296{font-size:64.000000pt;}
.y0_c02296{bottom:0.000000pt;}
.y4_c02296{bottom:50.987067pt;}
.y3_c02296{bottom:69.387067pt;}
.y3d_c02296{bottom:103.306667pt;}
.y3c_c02296{bottom:117.067067pt;}
.y3b_c02296{bottom:131.787067pt;}
.y3a_c02296{bottom:148.667067pt;}
.y39_c02296{bottom:165.867067pt;}
.y38_c02296{bottom:182.747067pt;}
.y37_c02296{bottom:199.627067pt;}
.y36_c02296{bottom:216.427067pt;}
.y35_c02296{bottom:233.307067pt;}
.y34_c02296{bottom:250.187067pt;}
.y33_c02296{bottom:267.067067pt;}
.y32_c02296{bottom:283.947067pt;}
.y31_c02296{bottom:300.827067pt;}
.y30_c02296{bottom:317.627067pt;}
.y2f_c02296{bottom:334.827067pt;}
.y2e_c02296{bottom:351.707067pt;}
.y2d_c02296{bottom:368.587200pt;}
.y2b_c02296{bottom:384.507067pt;}
.y2a_c02296{bottom:384.827200pt;}
.y2c_c02296{bottom:396.827200pt;}
.y29_c02296{bottom:410.587067pt;}
.y28_c02296{bottom:431.146800pt;}
.y27_c02296{bottom:444.907200pt;}
.y26_c02296{bottom:460.267067pt;}
.y25_c02296{bottom:478.427467pt;}
.y24_c02296{bottom:492.267067pt;}
.y23_c02296{bottom:506.987067pt;}
.y22_c02296{bottom:523.867067pt;}
.y21_c02296{bottom:540.667067pt;}
.y20_c02296{bottom:557.547067pt;}
.y1f_c02296{bottom:574.427067pt;}
.y1e_c02296{bottom:591.307067pt;}
.y1d_c02296{bottom:608.187067pt;}
.y1c_c02296{bottom:625.067067pt;}
.y1b_c02296{bottom:641.867067pt;}
.y1a_c02296{bottom:658.747067pt;}
.y19_c02296{bottom:675.627067pt;}
.y18_c02296{bottom:692.507067pt;}
.y17_c02296{bottom:709.387067pt;}
.y16_c02296{bottom:726.187067pt;}
.y15_c02296{bottom:743.067067pt;}
.y14_c02296{bottom:759.627067pt;}
.y13_c02296{bottom:775.867067pt;}
.y12_c02296{bottom:796.427467pt;}
.y11_c02296{bottom:810.267067pt;}
.y10_c02296{bottom:825.947067pt;}
.yf_c02296{bottom:842.827067pt;}
.ye_c02296{bottom:859.707067pt;}
.yd_c02296{bottom:876.507067pt;}
.yc_c02296{bottom:893.387067pt;}
.yb_c02296{bottom:910.267067pt;}
.ya_c02296{bottom:928.667067pt;}
.y9_c02296{bottom:946.747067pt;}
.y8_c02296{bottom:962.987067pt;}
.y7_c02296{bottom:983.547467pt;}
.y6_c02296{bottom:997.387067pt;}
.y5_c02296{bottom:1012.667067pt;}
.y2_c02296{bottom:1042.347067pt;}
.y1_c02296{bottom:1060.587067pt;}
.h7_c02296{height:37.801094pt;}
.h3_c02296{height:42.632812pt;}
.h4_c02296{height:47.464531pt;}
.h2_c02296{height:56.156250pt;}
.h1_c02296{height:56.843750pt;}
.h5_c02296{height:57.756250pt;}
.h6_c02296{height:85.801094pt;}
.h0_c02296{height:1122.666667pt;}
.w1_c02296{width:793.333333pt;}
.w0_c02296{width:793.626667pt;}
.x0_c02296{left:0.000000pt;}
.x1_c02296{left:113.440000pt;}
.x3_c02296{left:120.560000pt;}
.x4_c02296{left:248.560000pt;}
.x2_c02296{left:384.880000pt;}
.x5_c02296{left:450.400000pt;}
.x6_c02296{left:486.400000pt;}
.x7_c02296{left:490.880000pt;}
.x8_c02296{left:527.920000pt;}
.x9_c02296{left:535.520000pt;}
.xa_c02296{left:566.640000pt;}
.xb_c02296{left:613.360000pt;}
.xc_c02296{left:650.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_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_b3ba5254fb682fe5aa68f13f.woff2')format("woff");}.ff1_c02297{font-family:ff1_c02297;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02297;src:url('chunks/assets/font_9c0f84cc748df6b5c1414b1b.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;}
.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);}
.v3_c02297{vertical-align:-22.320000px;}
.v2_c02297{vertical-align:-16.920000px;}
.v4_c02297{vertical-align:-5.400000px;}
.v0_c02297{vertical-align:0.000000px;}
.v1_c02297{vertical-align:1.440000px;}
.v5_c02297{vertical-align:11.160000px;}
.ls23_c02297{letter-spacing:-0.181116px;}
.ls22_c02297{letter-spacing:-0.180360px;}
.ls21_c02297{letter-spacing:-0.176904px;}
.ls20_c02297{letter-spacing:-0.086400px;}
.ls1e_c02297{letter-spacing:-0.032940px;}
.ls1c_c02297{letter-spacing:-0.014400px;}
.ls1d_c02297{letter-spacing:-0.013176px;}
.ls1f_c02297{letter-spacing:-0.007200px;}
.ls25_c02297{letter-spacing:-0.006588px;}
.ls1b_c02297{letter-spacing:0.000000px;}
.ls19_c02297{letter-spacing:0.006588px;}
.ls1_c02297{letter-spacing:0.007200px;}
.ls13_c02297{letter-spacing:0.014400px;}
.ls18_c02297{letter-spacing:0.019764px;}
.ls15_c02297{letter-spacing:0.026352px;}
.ls0_c02297{letter-spacing:0.028800px;}
.ls12_c02297{letter-spacing:0.032940px;}
.ls2_c02297{letter-spacing:0.036000px;}
.ls3_c02297{letter-spacing:0.039528px;}
.lsc_c02297{letter-spacing:0.043200px;}
.ls16_c02297{letter-spacing:0.046116px;}
.lsd_c02297{letter-spacing:0.050400px;}
.ls8_c02297{letter-spacing:0.052704px;}
.lse_c02297{letter-spacing:0.059292px;}
.ls24_c02297{letter-spacing:0.062244px;}
.ls17_c02297{letter-spacing:0.065880px;}
.ls11_c02297{letter-spacing:0.072468px;}
.ls1a_c02297{letter-spacing:0.079056px;}
.ls6_c02297{letter-spacing:0.098820px;}
.lsa_c02297{letter-spacing:0.131760px;}
.ls14_c02297{letter-spacing:0.181944px;}
.ls10_c02297{letter-spacing:34.065360px;}
.ls4_c02297{letter-spacing:64.080000px;}
.ls9_c02297{letter-spacing:99.720000px;}
.ls5_c02297{letter-spacing:113.760000px;}
.ls7_c02297{letter-spacing:128.520000px;}
.lsb_c02297{letter-spacing:444.960000px;}
.lsf_c02297{letter-spacing:1378.440000px;}
.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;}
}
.ws4_c02297{word-spacing:-16.601760px;}
.ws1_c02297{word-spacing:-16.568820px;}
.ws5_c02297{word-spacing:-16.529292px;}
.ws0_c02297{word-spacing:-16.509528px;}
.ws3_c02297{word-spacing:-16.437060px;}
.wsf_c02297{word-spacing:-0.115200px;}
.ws16_c02297{word-spacing:-0.093600px;}
.ws7_c02297{word-spacing:-0.086400px;}
.wse_c02297{word-spacing:-0.043200px;}
.wsa_c02297{word-spacing:-0.036000px;}
.ws15_c02297{word-spacing:-0.014400px;}
.ws9_c02297{word-spacing:-0.007200px;}
.ws6_c02297{word-spacing:0.000000px;}
.wsd_c02297{word-spacing:0.007200px;}
.ws26_c02297{word-spacing:0.013176px;}
.ws8_c02297{word-spacing:0.014400px;}
.ws11_c02297{word-spacing:0.019764px;}
.ws14_c02297{word-spacing:0.032940px;}
.wsb_c02297{word-spacing:0.039528px;}
.ws21_c02297{word-spacing:0.052704px;}
.ws19_c02297{word-spacing:0.065880px;}
.ws29_c02297{word-spacing:0.098820px;}
.ws24_c02297{word-spacing:1.152900px;}
.ws13_c02297{word-spacing:1.475712px;}
.ws23_c02297{word-spacing:1.838052px;}
.ws12_c02297{word-spacing:2.575908px;}
.ws25_c02297{word-spacing:7.589376px;}
.ws18_c02297{word-spacing:8.696160px;}
.ws1e_c02297{word-spacing:9.750240px;}
.ws1d_c02297{word-spacing:9.763416px;}
.ws2d_c02297{word-spacing:12.642372px;}
.ws22_c02297{word-spacing:14.842764px;}
.ws2a_c02297{word-spacing:15.191928px;}
.ws20_c02297{word-spacing:17.708544px;}
.ws1f_c02297{word-spacing:18.742860px;}
.ws1c_c02297{word-spacing:27.406080px;}
.ws27_c02297{word-spacing:28.117584px;}
.ws28_c02297{word-spacing:33.895260px;}
.ws1b_c02297{word-spacing:34.554060px;}
.ws1a_c02297{word-spacing:34.626528px;}
.ws2c_c02297{word-spacing:37.070676px;}
.ws2b_c02297{word-spacing:37.479132px;}
.ws10_c02297{word-spacing:40.232304px;}
.ws17_c02297{word-spacing:51.207660px;}
.ws2_c02297{word-spacing:96.810048px;}
.wsc_c02297{word-spacing:272.160000px;}
._3_c02297{margin-left:-28.800000px;}
._13_c02297{margin-left:-12.602016px;}
._14_c02297{margin-left:-2.518488px;}
._6_c02297{margin-left:-1.008000px;}
._15_c02297{width:1.350540px;}
._c_c02297{width:39.870720px;}
._d_c02297{width:40.950720px;}
._10_c02297{width:42.750720px;}
._e_c02297{width:55.174464px;}
._12_c02297{width:60.214464px;}
._b_c02297{width:73.850472px;}
._0_c02297{width:133.131852px;}
._2_c02297{width:261.720000px;}
._1_c02297{width:601.615440px;}
._f_c02297{width:1064.419992px;}
._9_c02297{width:1082.808000px;}
._5_c02297{width:1123.344000px;}
._8_c02297{width:1155.276000px;}
._7_c02297{width:1186.228800px;}
._11_c02297{width:1494.676440px;}
._4_c02297{width:1791.288000px;}
._a_c02297{width:2268.561600px;}
.fc0_c02297{color:rgb(0,0,0);}
.fs2_c02297{font-size:42.120000px;}
.fs4_c02297{font-size:47.880000px;}
.fs3_c02297{font-size:60.120000px;}
.fs1_c02297{font-size:65.880000px;}
.fs0_c02297{font-size:72.000000px;}
.y0_c02297{bottom:0.000000px;}
.y4_c02297{bottom:57.360450px;}
.y3_c02297{bottom:78.060450px;}
.y3e_c02297{bottom:114.870600px;}
.y3c_c02297{bottom:136.110450px;}
.y3b_c02297{bottom:155.100450px;}
.y3a_c02297{bottom:174.090540px;}
.y3d_c02297{bottom:192.991242px;}
.y39_c02297{bottom:198.750450px;}
.y37_c02297{bottom:213.150450px;}
.y36_c02297{bottom:233.490450px;}
.y35_c02297{bottom:252.481215px;}
.y34_c02297{bottom:271.471125px;}
.y38_c02297{bottom:290.280450px;}
.y33_c02297{bottom:296.040450px;}
.y31_c02297{bottom:310.530450px;}
.y30_c02297{bottom:330.871395px;}
.y2f_c02297{bottom:349.770720px;}
.y2e_c02297{bottom:368.760630px;}
.y2d_c02297{bottom:387.750540px;}
.y32_c02297{bottom:406.650450px;}
.y2c_c02297{bottom:412.410450px;}
.y2a_c02297{bottom:426.810450px;}
.y29_c02297{bottom:447.150450px;}
.y28_c02297{bottom:466.140450px;}
.y27_c02297{bottom:485.130450px;}
.y26_c02297{bottom:504.030630px;}
.y25_c02297{bottom:523.020540px;}
.y2b_c02297{bottom:541.920450px;}
.y24_c02297{bottom:547.680450px;}
.y22_c02297{bottom:562.080450px;}
.y21_c02297{bottom:582.420540px;}
.y23_c02297{bottom:601.320450px;}
.y20_c02297{bottom:607.080450px;}
.y1f_c02297{bottom:624.900450px;}
.y1e_c02297{bottom:639.300450px;}
.y1d_c02297{bottom:660.810450px;}
.y1c_c02297{bottom:681.510450px;}
.y1a_c02297{bottom:702.751215px;}
.y19_c02297{bottom:721.741125px;}
.y1b_c02297{bottom:741.900450px;}
.y18_c02297{bottom:746.310450px;}
.y17_c02297{bottom:766.110450px;}
.y16_c02297{bottom:785.640450px;}
.y15_c02297{bottom:800.040600px;}
.y14_c02297{bottom:821.460450px;}
.y13_c02297{bottom:842.160450px;}
.y12_c02297{bottom:863.670450px;}
.y11_c02297{bottom:885.090450px;}
.y10_c02297{bottom:906.510450px;}
.yf_c02297{bottom:928.020450px;}
.ye_c02297{bottom:949.440450px;}
.yd_c02297{bottom:970.860450px;}
.yc_c02297{bottom:992.280450px;}
.yb_c02297{bottom:1013.610450px;}
.ya_c02297{bottom:1034.940450px;}
.y9_c02297{bottom:1054.920450px;}
.y8_c02297{bottom:1075.620450px;}
.y7_c02297{bottom:1097.130450px;}
.y6_c02297{bottom:1117.830450px;}
.y5_c02297{bottom:1139.250450px;}
.y2_c02297{bottom:1172.640450px;}
.y1_c02297{bottom:1193.160450px;}
.h5_c02297{height:36.957832px;}
.h8_c02297{height:37.410293px;}
.h4_c02297{height:41.629219px;}
.h7_c02297{height:53.397598px;}
.h6_c02297{height:57.805840px;}
.ha_c02297{height:58.513535px;}
.hb_c02297{height:63.172001px;}
.h9_c02297{height:63.175421px;}
.h2_c02297{height:63.175781px;}
.h1_c02297{height:63.949219px;}
.h3_c02297{height:64.615781px;}
.h0_c02297{height:1263.000000px;}
.w1_c02297{width:892.500000px;}
.w0_c02297{width:892.830000px;}
.x0_c02297{left:0.000000px;}
.x8_c02297{left:117.000000px;}
.x1_c02297{left:127.620000px;}
.x3_c02297{left:135.630000px;}
.x6_c02297{left:137.520000px;}
.x4_c02297{left:263.430000px;}
.x9_c02297{left:273.870000px;}
.x5_c02297{left:285.660000px;}
.x7_c02297{left:335.160000px;}
.x2_c02297{left:432.990000px;}
.xa_c02297{left:699.120000px;}
.xb_c02297{left:721.440000px;}
@media print{
.v3_c02297{vertical-align:-19.840000pt;}
.v2_c02297{vertical-align:-15.040000pt;}
.v4_c02297{vertical-align:-4.800000pt;}
.v0_c02297{vertical-align:0.000000pt;}
.v1_c02297{vertical-align:1.280000pt;}
.v5_c02297{vertical-align:9.920000pt;}
.ls23_c02297{letter-spacing:-0.160992pt;}
.ls22_c02297{letter-spacing:-0.160320pt;}
.ls21_c02297{letter-spacing:-0.157248pt;}
.ls20_c02297{letter-spacing:-0.076800pt;}
.ls1e_c02297{letter-spacing:-0.029280pt;}
.ls1c_c02297{letter-spacing:-0.012800pt;}
.ls1d_c02297{letter-spacing:-0.011712pt;}
.ls1f_c02297{letter-spacing:-0.006400pt;}
.ls25_c02297{letter-spacing:-0.005856pt;}
.ls1b_c02297{letter-spacing:0.000000pt;}
.ls19_c02297{letter-spacing:0.005856pt;}
.ls1_c02297{letter-spacing:0.006400pt;}
.ls13_c02297{letter-spacing:0.012800pt;}
.ls18_c02297{letter-spacing:0.017568pt;}
.ls15_c02297{letter-spacing:0.023424pt;}
.ls0_c02297{letter-spacing:0.025600pt;}
.ls12_c02297{letter-spacing:0.029280pt;}
.ls2_c02297{letter-spacing:0.032000pt;}
.ls3_c02297{letter-spacing:0.035136pt;}
.lsc_c02297{letter-spacing:0.038400pt;}
.ls16_c02297{letter-spacing:0.040992pt;}
.lsd_c02297{letter-spacing:0.044800pt;}
.ls8_c02297{letter-spacing:0.046848pt;}
.lse_c02297{letter-spacing:0.052704pt;}
.ls24_c02297{letter-spacing:0.055328pt;}
.ls17_c02297{letter-spacing:0.058560pt;}
.ls11_c02297{letter-spacing:0.064416pt;}
.ls1a_c02297{letter-spacing:0.070272pt;}
.ls6_c02297{letter-spacing:0.087840pt;}
.lsa_c02297{letter-spacing:0.117120pt;}
.ls14_c02297{letter-spacing:0.161728pt;}
.ls10_c02297{letter-spacing:30.280320pt;}
.ls4_c02297{letter-spacing:56.960000pt;}
.ls9_c02297{letter-spacing:88.640000pt;}
.ls5_c02297{letter-spacing:101.120000pt;}
.ls7_c02297{letter-spacing:114.240000pt;}
.lsb_c02297{letter-spacing:395.520000pt;}
.lsf_c02297{letter-spacing:1225.280000pt;}
.ws4_c02297{word-spacing:-14.757120pt;}
.ws1_c02297{word-spacing:-14.727840pt;}
.ws5_c02297{word-spacing:-14.692704pt;}
.ws0_c02297{word-spacing:-14.675136pt;}
.ws3_c02297{word-spacing:-14.610720pt;}
.wsf_c02297{word-spacing:-0.102400pt;}
.ws16_c02297{word-spacing:-0.083200pt;}
.ws7_c02297{word-spacing:-0.076800pt;}
.wse_c02297{word-spacing:-0.038400pt;}
.wsa_c02297{word-spacing:-0.032000pt;}
.ws15_c02297{word-spacing:-0.012800pt;}
.ws9_c02297{word-spacing:-0.006400pt;}
.ws6_c02297{word-spacing:0.000000pt;}
.wsd_c02297{word-spacing:0.006400pt;}
.ws26_c02297{word-spacing:0.011712pt;}
.ws8_c02297{word-spacing:0.012800pt;}
.ws11_c02297{word-spacing:0.017568pt;}
.ws14_c02297{word-spacing:0.029280pt;}
.wsb_c02297{word-spacing:0.035136pt;}
.ws21_c02297{word-spacing:0.046848pt;}
.ws19_c02297{word-spacing:0.058560pt;}
.ws29_c02297{word-spacing:0.087840pt;}
.ws24_c02297{word-spacing:1.024800pt;}
.ws13_c02297{word-spacing:1.311744pt;}
.ws23_c02297{word-spacing:1.633824pt;}
.ws12_c02297{word-spacing:2.289696pt;}
.ws25_c02297{word-spacing:6.746112pt;}
.ws18_c02297{word-spacing:7.729920pt;}
.ws1e_c02297{word-spacing:8.666880pt;}
.ws1d_c02297{word-spacing:8.678592pt;}
.ws2d_c02297{word-spacing:11.237664pt;}
.ws22_c02297{word-spacing:13.193568pt;}
.ws2a_c02297{word-spacing:13.503936pt;}
.ws20_c02297{word-spacing:15.740928pt;}
.ws1f_c02297{word-spacing:16.660320pt;}
.ws1c_c02297{word-spacing:24.360960pt;}
.ws27_c02297{word-spacing:24.993408pt;}
.ws28_c02297{word-spacing:30.129120pt;}
.ws1b_c02297{word-spacing:30.714720pt;}
.ws1a_c02297{word-spacing:30.779136pt;}
.ws2c_c02297{word-spacing:32.951712pt;}
.ws2b_c02297{word-spacing:33.314784pt;}
.ws10_c02297{word-spacing:35.762048pt;}
.ws17_c02297{word-spacing:45.517920pt;}
.ws2_c02297{word-spacing:86.053376pt;}
.wsc_c02297{word-spacing:241.920000pt;}
._3_c02297{margin-left:-25.600000pt;}
._13_c02297{margin-left:-11.201792pt;}
._14_c02297{margin-left:-2.238656pt;}
._6_c02297{margin-left:-0.896000pt;}
._15_c02297{width:1.200480pt;}
._c_c02297{width:35.440640pt;}
._d_c02297{width:36.400640pt;}
._10_c02297{width:38.000640pt;}
._e_c02297{width:49.043968pt;}
._12_c02297{width:53.523968pt;}
._b_c02297{width:65.644864pt;}
._0_c02297{width:118.339424pt;}
._2_c02297{width:232.640000pt;}
._1_c02297{width:534.769280pt;}
._f_c02297{width:946.151104pt;}
._9_c02297{width:962.496000pt;}
._5_c02297{width:998.528000pt;}
._8_c02297{width:1026.912000pt;}
._7_c02297{width:1054.425600pt;}
._11_c02297{width:1328.601280pt;}
._4_c02297{width:1592.256000pt;}
._a_c02297{width:2016.499200pt;}
.fs2_c02297{font-size:37.440000pt;}
.fs4_c02297{font-size:42.560000pt;}
.fs3_c02297{font-size:53.440000pt;}
.fs1_c02297{font-size:58.560000pt;}
.fs0_c02297{font-size:64.000000pt;}
.y0_c02297{bottom:0.000000pt;}
.y4_c02297{bottom:50.987067pt;}
.y3_c02297{bottom:69.387067pt;}
.y3e_c02297{bottom:102.107200pt;}
.y3c_c02297{bottom:120.987067pt;}
.y3b_c02297{bottom:137.867067pt;}
.y3a_c02297{bottom:154.747147pt;}
.y3d_c02297{bottom:171.547771pt;}
.y39_c02297{bottom:176.667067pt;}
.y37_c02297{bottom:189.467067pt;}
.y36_c02297{bottom:207.547067pt;}
.y35_c02297{bottom:224.427747pt;}
.y34_c02297{bottom:241.307667pt;}
.y38_c02297{bottom:258.027067pt;}
.y33_c02297{bottom:263.147067pt;}
.y31_c02297{bottom:276.027067pt;}
.y30_c02297{bottom:294.107907pt;}
.y2f_c02297{bottom:310.907307pt;}
.y2e_c02297{bottom:327.787227pt;}
.y2d_c02297{bottom:344.667147pt;}
.y32_c02297{bottom:361.467067pt;}
.y2c_c02297{bottom:366.587067pt;}
.y2a_c02297{bottom:379.387067pt;}
.y29_c02297{bottom:397.467067pt;}
.y28_c02297{bottom:414.347067pt;}
.y27_c02297{bottom:431.227067pt;}
.y26_c02297{bottom:448.027227pt;}
.y25_c02297{bottom:464.907147pt;}
.y2b_c02297{bottom:481.707067pt;}
.y24_c02297{bottom:486.827067pt;}
.y22_c02297{bottom:499.627067pt;}
.y21_c02297{bottom:517.707147pt;}
.y23_c02297{bottom:534.507067pt;}
.y20_c02297{bottom:539.627067pt;}
.y1f_c02297{bottom:555.467067pt;}
.y1e_c02297{bottom:568.267067pt;}
.y1d_c02297{bottom:587.387067pt;}
.y1c_c02297{bottom:605.787067pt;}
.y1a_c02297{bottom:624.667747pt;}
.y19_c02297{bottom:641.547667pt;}
.y1b_c02297{bottom:659.467067pt;}
.y18_c02297{bottom:663.387067pt;}
.y17_c02297{bottom:680.987067pt;}
.y16_c02297{bottom:698.347067pt;}
.y15_c02297{bottom:711.147200pt;}
.y14_c02297{bottom:730.187067pt;}
.y13_c02297{bottom:748.587067pt;}
.y12_c02297{bottom:767.707067pt;}
.y11_c02297{bottom:786.747067pt;}
.y10_c02297{bottom:805.787067pt;}
.yf_c02297{bottom:824.907067pt;}
.ye_c02297{bottom:843.947067pt;}
.yd_c02297{bottom:862.987067pt;}
.yc_c02297{bottom:882.027067pt;}
.yb_c02297{bottom:900.987067pt;}
.ya_c02297{bottom:919.947067pt;}
.y9_c02297{bottom:937.707067pt;}
.y8_c02297{bottom:956.107067pt;}
.y7_c02297{bottom:975.227067pt;}
.y6_c02297{bottom:993.627067pt;}
.y5_c02297{bottom:1012.667067pt;}
.y2_c02297{bottom:1042.347067pt;}
.y1_c02297{bottom:1060.587067pt;}
.h5_c02297{height:32.851406pt;}
.h8_c02297{height:33.253594pt;}
.h4_c02297{height:37.003750pt;}
.h7_c02297{height:47.464531pt;}
.h6_c02297{height:51.382969pt;}
.ha_c02297{height:52.012031pt;}
.hb_c02297{height:56.152890pt;}
.h9_c02297{height:56.155930pt;}
.h2_c02297{height:56.156250pt;}
.h1_c02297{height:56.843750pt;}
.h3_c02297{height:57.436250pt;}
.h0_c02297{height:1122.666667pt;}
.w1_c02297{width:793.333333pt;}
.w0_c02297{width:793.626667pt;}
.x0_c02297{left:0.000000pt;}
.x8_c02297{left:104.000000pt;}
.x1_c02297{left:113.440000pt;}
.x3_c02297{left:120.560000pt;}
.x6_c02297{left:122.240000pt;}
.x4_c02297{left:234.160000pt;}
.x9_c02297{left:243.440000pt;}
.x5_c02297{left:253.920000pt;}
.x7_c02297{left:297.920000pt;}
.x2_c02297{left:384.880000pt;}
.xa_c02297{left:621.440000pt;}
.xb_c02297{left:641.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_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_566b083c1b95d3b22c5a17e5.woff2')format("woff");}.ff1_c02298{font-family:ff1_c02298;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02298;src:url('chunks/assets/font_d9de1680403ca028901c5c01.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_a34307bc4996fda3ebb77a0a.woff2')format("woff");}.ff3_c02298{font-family:ff3_c02298;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_c02298;src:url('chunks/assets/font_405512e533c287bf84d75b1d.woff2')format("woff");}.ff4_c02298{font-family:ff4_c02298;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;}
.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);}
.v1_c02298{vertical-align:-5.400000px;}
.v0_c02298{vertical-align:0.000000px;}
.v4_c02298{vertical-align:1.080000px;}
.v2_c02298{vertical-align:11.160000px;}
.v3_c02298{vertical-align:16.200000px;}
.ls1d_c02298{letter-spacing:-0.079200px;}
.ls1e_c02298{letter-spacing:-0.050400px;}
.ls22_c02298{letter-spacing:-0.014364px;}
.ls25_c02298{letter-spacing:-0.013176px;}
.ls1c_c02298{letter-spacing:-0.007200px;}
.ls23_c02298{letter-spacing:-0.004788px;}
.ls1b_c02298{letter-spacing:0.000000px;}
.ls15_c02298{letter-spacing:0.006588px;}
.ls5_c02298{letter-spacing:0.007200px;}
.ls9_c02298{letter-spacing:0.013176px;}
.ls8_c02298{letter-spacing:0.019764px;}
.ls1_c02298{letter-spacing:0.021600px;}
.ls6_c02298{letter-spacing:0.026352px;}
.ls0_c02298{letter-spacing:0.028800px;}
.ls7_c02298{letter-spacing:0.032940px;}
.ls3_c02298{letter-spacing:0.036000px;}
.ls13_c02298{letter-spacing:0.039528px;}
.lsb_c02298{letter-spacing:0.046116px;}
.ls2_c02298{letter-spacing:0.050400px;}
.lsc_c02298{letter-spacing:0.052704px;}
.lsa_c02298{letter-spacing:0.059292px;}
.ls17_c02298{letter-spacing:0.065880px;}
.ls14_c02298{letter-spacing:0.079056px;}
.ls16_c02298{letter-spacing:0.085644px;}
.ls10_c02298{letter-spacing:0.092232px;}
.ls4_c02298{letter-spacing:0.100800px;}
.ls21_c02298{letter-spacing:0.138852px;}
.ls20_c02298{letter-spacing:0.144288px;}
.ls1f_c02298{letter-spacing:0.177876px;}
.ls24_c02298{letter-spacing:0.180360px;}
.ls1a_c02298{letter-spacing:0.181944px;}
.ls19_c02298{letter-spacing:0.210672px;}
.lsf_c02298{letter-spacing:0.239400px;}
.ls11_c02298{letter-spacing:0.538704px;}
.lsd_c02298{letter-spacing:0.541044px;}
.ls12_c02298{letter-spacing:50.760000px;}
.lse_c02298{letter-spacing:56.787660px;}
.ls18_c02298{letter-spacing:1685.970000px;}
.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;}
}
.ws2_c02298{word-spacing:-47.880000px;}
.ws0_c02298{word-spacing:-16.647876px;}
.ws1_c02298{word-spacing:-16.529292px;}
.ws3_c02298{word-spacing:-16.509528px;}
.ws4_c02298{word-spacing:-16.456824px;}
.ws2c_c02298{word-spacing:-0.301644px;}
.ws6_c02298{word-spacing:-0.086400px;}
.ws7_c02298{word-spacing:-0.007200px;}
.ws5_c02298{word-spacing:0.000000px;}
.ws23_c02298{word-spacing:0.006588px;}
.ws21_c02298{word-spacing:0.013176px;}
.ws26_c02298{word-spacing:0.026352px;}
.ws1e_c02298{word-spacing:0.032940px;}
.ws1b_c02298{word-spacing:0.039528px;}
.ws19_c02298{word-spacing:0.046116px;}
.ws25_c02298{word-spacing:0.052704px;}
.ws1a_c02298{word-spacing:0.059292px;}
.ws27_c02298{word-spacing:0.065880px;}
.ws24_c02298{word-spacing:0.072468px;}
.ws22_c02298{word-spacing:0.085644px;}
.wsf_c02298{word-spacing:0.511200px;}
.wse_c02298{word-spacing:0.612000px;}
.ws2a_c02298{word-spacing:6.897636px;}
.ws2b_c02298{word-spacing:6.910812px;}
.wsd_c02298{word-spacing:7.070400px;}
.wsc_c02298{word-spacing:7.120800px;}
.ws8_c02298{word-spacing:10.353600px;}
.ws9_c02298{word-spacing:10.418400px;}
.ws12_c02298{word-spacing:13.240800px;}
.ws14_c02298{word-spacing:13.305600px;}
.ws13_c02298{word-spacing:13.327200px;}
.wsb_c02298{word-spacing:17.049600px;}
.wsa_c02298{word-spacing:17.164800px;}
.ws28_c02298{word-spacing:17.333028px;}
.ws29_c02298{word-spacing:17.339616px;}
.ws16_c02298{word-spacing:18.024768px;}
.ws15_c02298{word-spacing:18.064296px;}
.ws1c_c02298{word-spacing:18.360756px;}
.ws1d_c02298{word-spacing:18.373932px;}
.ws10_c02298{word-spacing:21.578400px;}
.ws11_c02298{word-spacing:21.607200px;}
.ws17_c02298{word-spacing:23.828796px;}
.ws18_c02298{word-spacing:24.197724px;}
.ws1f_c02298{word-spacing:58.376268px;}
.ws20_c02298{word-spacing:58.382856px;}
._0_c02298{margin-left:-1.173600px;}
._2_c02298{width:1.113372px;}
._1_c02298{width:18.294876px;}
._6_c02298{width:52.108920px;}
._9_c02298{width:79.130124px;}
._c_c02298{width:139.759488px;}
._5_c02298{width:200.866248px;}
._3_c02298{width:330.250896px;}
._4_c02298{width:345.795264px;}
._b_c02298{width:347.848056px;}
._8_c02298{width:524.933496px;}
._7_c02298{width:671.108040px;}
._a_c02298{width:839.536848px;}
.fc0_c02298{color:rgb(0,0,0);}
.fs4_c02298{font-size:2.880000px;}
.fs3_c02298{font-size:47.880000px;}
.fs2_c02298{font-size:60.120000px;}
.fs1_c02298{font-size:65.880000px;}
.fs0_c02298{font-size:72.000000px;}
.y0_c02298{bottom:0.000000px;}
.y4_c02298{bottom:57.360450px;}
.y3_c02298{bottom:78.060450px;}
.y37_c02298{bottom:126.210450px;}
.y36_c02298{bottom:146.910450px;}
.y35_c02298{bottom:167.610450px;}
.y34_c02298{bottom:188.310450px;}
.y33_c02298{bottom:209.010450px;}
.y32_c02298{bottom:229.710450px;}
.y31_c02298{bottom:250.590450px;}
.y30_c02298{bottom:275.970450px;}
.y2f_c02298{bottom:280.020450px;}
.y2e_c02298{bottom:298.020450px;}
.y2d_c02298{bottom:315.660450px;}
.y2c_c02298{bottom:334.290450px;}
.y2a_c02298{bottom:352.740450px;}
.y29_c02298{bottom:372.990450px;}
.y2b_c02298{bottom:375.780450px;}
.y28_c02298{bottom:392.700600px;}
.y26_c02298{bottom:411.150450px;}
.y25_c02298{bottom:431.400450px;}
.y27_c02298{bottom:434.190450px;}
.y24_c02298{bottom:451.110600px;}
.y23_c02298{bottom:470.820450px;}
.y22_c02298{bottom:490.530600px;}
.y21_c02298{bottom:510.240450px;}
.y1f_c02298{bottom:528.780450px;}
.y1e_c02298{bottom:548.940450px;}
.y20_c02298{bottom:551.730450px;}
.y1c_c02298{bottom:567.480450px;}
.y1b_c02298{bottom:587.640450px;}
.y1d_c02298{bottom:590.430450px;}
.y1a_c02298{bottom:607.350450px;}
.y19_c02298{bottom:624.720450px;}
.y18_c02298{bottom:638.490450px;}
.y17_c02298{bottom:649.560450px;}
.y16_c02298{bottom:668.370450px;}
.y15_c02298{bottom:688.620045px;}
.y14_c02298{bottom:707.700540px;}
.y13_c02298{bottom:726.690450px;}
.y12_c02298{bottom:746.580450px;}
.y11_c02298{bottom:768.000450px;}
.y10_c02298{bottom:789.600450px;}
.yf_c02298{bottom:820.470450px;}
.ye_c02298{bottom:851.700450px;}
.yd_c02298{bottom:882.750450px;}
.yc_c02298{bottom:913.800450px;}
.yb_c02298{bottom:944.850450px;}
.ya_c02298{bottom:975.900450px;}
.y9_c02298{bottom:1006.950450px;}
.y8_c02298{bottom:1038.000450px;}
.y7_c02298{bottom:1069.050450px;}
.y6_c02298{bottom:1099.920450px;}
.y5_c02298{bottom:1139.970450px;}
.y2_c02298{bottom:1172.640450px;}
.y1_c02298{bottom:1193.160450px;}
.hd_c02298{height:2.557969px;}
.h6_c02298{height:42.526230px;}
.hc_c02298{height:53.397598px;}
.h8_c02298{height:53.473535px;}
.h5_c02298{height:53.686230px;}
.h7_c02298{height:54.251895px;}
.h9_c02298{height:57.805840px;}
.h3_c02298{height:58.513535px;}
.h2_c02298{height:63.175781px;}
.h1_c02298{height:63.949219px;}
.h4_c02298{height:63.950839px;}
.hb_c02298{height:74.335181px;}
.ha_c02298{height:74.336381px;}
.h0_c02298{height:1263.000000px;}
.w1_c02298{width:892.500000px;}
.w0_c02298{width:892.830000px;}
.x0_c02298{left:0.000000px;}
.xa_c02298{left:117.000000px;}
.x1_c02298{left:127.620000px;}
.x4_c02298{left:135.630000px;}
.x3_c02298{left:148.950000px;}
.x5_c02298{left:152.280000px;}
.x8_c02298{left:184.230000px;}
.x2_c02298{left:432.990000px;}
.x9_c02298{left:630.630000px;}
.x7_c02298{left:711.990000px;}
.x6_c02298{left:725.310000px;}
@media print{
.v1_c02298{vertical-align:-4.800000pt;}
.v0_c02298{vertical-align:0.000000pt;}
.v4_c02298{vertical-align:0.960000pt;}
.v2_c02298{vertical-align:9.920000pt;}
.v3_c02298{vertical-align:14.400000pt;}
.ls1d_c02298{letter-spacing:-0.070400pt;}
.ls1e_c02298{letter-spacing:-0.044800pt;}
.ls22_c02298{letter-spacing:-0.012768pt;}
.ls25_c02298{letter-spacing:-0.011712pt;}
.ls1c_c02298{letter-spacing:-0.006400pt;}
.ls23_c02298{letter-spacing:-0.004256pt;}
.ls1b_c02298{letter-spacing:0.000000pt;}
.ls15_c02298{letter-spacing:0.005856pt;}
.ls5_c02298{letter-spacing:0.006400pt;}
.ls9_c02298{letter-spacing:0.011712pt;}
.ls8_c02298{letter-spacing:0.017568pt;}
.ls1_c02298{letter-spacing:0.019200pt;}
.ls6_c02298{letter-spacing:0.023424pt;}
.ls0_c02298{letter-spacing:0.025600pt;}
.ls7_c02298{letter-spacing:0.029280pt;}
.ls3_c02298{letter-spacing:0.032000pt;}
.ls13_c02298{letter-spacing:0.035136pt;}
.lsb_c02298{letter-spacing:0.040992pt;}
.ls2_c02298{letter-spacing:0.044800pt;}
.lsc_c02298{letter-spacing:0.046848pt;}
.lsa_c02298{letter-spacing:0.052704pt;}
.ls17_c02298{letter-spacing:0.058560pt;}
.ls14_c02298{letter-spacing:0.070272pt;}
.ls16_c02298{letter-spacing:0.076128pt;}
.ls10_c02298{letter-spacing:0.081984pt;}
.ls4_c02298{letter-spacing:0.089600pt;}
.ls21_c02298{letter-spacing:0.123424pt;}
.ls20_c02298{letter-spacing:0.128256pt;}
.ls1f_c02298{letter-spacing:0.158112pt;}
.ls24_c02298{letter-spacing:0.160320pt;}
.ls1a_c02298{letter-spacing:0.161728pt;}
.ls19_c02298{letter-spacing:0.187264pt;}
.lsf_c02298{letter-spacing:0.212800pt;}
.ls11_c02298{letter-spacing:0.478848pt;}
.lsd_c02298{letter-spacing:0.480928pt;}
.ls12_c02298{letter-spacing:45.120000pt;}
.lse_c02298{letter-spacing:50.477920pt;}
.ls18_c02298{letter-spacing:1498.640000pt;}
.ws2_c02298{word-spacing:-42.560000pt;}
.ws0_c02298{word-spacing:-14.798112pt;}
.ws1_c02298{word-spacing:-14.692704pt;}
.ws3_c02298{word-spacing:-14.675136pt;}
.ws4_c02298{word-spacing:-14.628288pt;}
.ws2c_c02298{word-spacing:-0.268128pt;}
.ws6_c02298{word-spacing:-0.076800pt;}
.ws7_c02298{word-spacing:-0.006400pt;}
.ws5_c02298{word-spacing:0.000000pt;}
.ws23_c02298{word-spacing:0.005856pt;}
.ws21_c02298{word-spacing:0.011712pt;}
.ws26_c02298{word-spacing:0.023424pt;}
.ws1e_c02298{word-spacing:0.029280pt;}
.ws1b_c02298{word-spacing:0.035136pt;}
.ws19_c02298{word-spacing:0.040992pt;}
.ws25_c02298{word-spacing:0.046848pt;}
.ws1a_c02298{word-spacing:0.052704pt;}
.ws27_c02298{word-spacing:0.058560pt;}
.ws24_c02298{word-spacing:0.064416pt;}
.ws22_c02298{word-spacing:0.076128pt;}
.wsf_c02298{word-spacing:0.454400pt;}
.wse_c02298{word-spacing:0.544000pt;}
.ws2a_c02298{word-spacing:6.131232pt;}
.ws2b_c02298{word-spacing:6.142944pt;}
.wsd_c02298{word-spacing:6.284800pt;}
.wsc_c02298{word-spacing:6.329600pt;}
.ws8_c02298{word-spacing:9.203200pt;}
.ws9_c02298{word-spacing:9.260800pt;}
.ws12_c02298{word-spacing:11.769600pt;}
.ws14_c02298{word-spacing:11.827200pt;}
.ws13_c02298{word-spacing:11.846400pt;}
.wsb_c02298{word-spacing:15.155200pt;}
.wsa_c02298{word-spacing:15.257600pt;}
.ws28_c02298{word-spacing:15.407136pt;}
.ws29_c02298{word-spacing:15.412992pt;}
.ws16_c02298{word-spacing:16.022016pt;}
.ws15_c02298{word-spacing:16.057152pt;}
.ws1c_c02298{word-spacing:16.320672pt;}
.ws1d_c02298{word-spacing:16.332384pt;}
.ws10_c02298{word-spacing:19.180800pt;}
.ws11_c02298{word-spacing:19.206400pt;}
.ws17_c02298{word-spacing:21.181152pt;}
.ws18_c02298{word-spacing:21.509088pt;}
.ws1f_c02298{word-spacing:51.890016pt;}
.ws20_c02298{word-spacing:51.895872pt;}
._0_c02298{margin-left:-1.043200pt;}
._2_c02298{width:0.989664pt;}
._1_c02298{width:16.262112pt;}
._6_c02298{width:46.319040pt;}
._9_c02298{width:70.337888pt;}
._c_c02298{width:124.230656pt;}
._5_c02298{width:178.547776pt;}
._3_c02298{width:293.556352pt;}
._4_c02298{width:307.373568pt;}
._b_c02298{width:309.198272pt;}
._8_c02298{width:466.607552pt;}
._7_c02298{width:596.540480pt;}
._a_c02298{width:746.254976pt;}
.fs4_c02298{font-size:2.560000pt;}
.fs3_c02298{font-size:42.560000pt;}
.fs2_c02298{font-size:53.440000pt;}
.fs1_c02298{font-size:58.560000pt;}
.fs0_c02298{font-size:64.000000pt;}
.y0_c02298{bottom:0.000000pt;}
.y4_c02298{bottom:50.987067pt;}
.y3_c02298{bottom:69.387067pt;}
.y37_c02298{bottom:112.187067pt;}
.y36_c02298{bottom:130.587067pt;}
.y35_c02298{bottom:148.987067pt;}
.y34_c02298{bottom:167.387067pt;}
.y33_c02298{bottom:185.787067pt;}
.y32_c02298{bottom:204.187067pt;}
.y31_c02298{bottom:222.747067pt;}
.y30_c02298{bottom:245.307067pt;}
.y2f_c02298{bottom:248.907067pt;}
.y2e_c02298{bottom:264.907067pt;}
.y2d_c02298{bottom:280.587067pt;}
.y2c_c02298{bottom:297.147067pt;}
.y2a_c02298{bottom:313.547067pt;}
.y29_c02298{bottom:331.547067pt;}
.y2b_c02298{bottom:334.027067pt;}
.y28_c02298{bottom:349.067200pt;}
.y26_c02298{bottom:365.467067pt;}
.y25_c02298{bottom:383.467067pt;}
.y27_c02298{bottom:385.947067pt;}
.y24_c02298{bottom:400.987200pt;}
.y23_c02298{bottom:418.507067pt;}
.y22_c02298{bottom:436.027200pt;}
.y21_c02298{bottom:453.547067pt;}
.y1f_c02298{bottom:470.027067pt;}
.y1e_c02298{bottom:487.947067pt;}
.y20_c02298{bottom:490.427067pt;}
.y1c_c02298{bottom:504.427067pt;}
.y1b_c02298{bottom:522.347067pt;}
.y1d_c02298{bottom:524.827067pt;}
.y1a_c02298{bottom:539.867067pt;}
.y19_c02298{bottom:555.307067pt;}
.y18_c02298{bottom:567.547067pt;}
.y17_c02298{bottom:577.387067pt;}
.y16_c02298{bottom:594.107067pt;}
.y15_c02298{bottom:612.106707pt;}
.y14_c02298{bottom:629.067147pt;}
.y13_c02298{bottom:645.947067pt;}
.y12_c02298{bottom:663.627067pt;}
.y11_c02298{bottom:682.667067pt;}
.y10_c02298{bottom:701.867067pt;}
.yf_c02298{bottom:729.307067pt;}
.ye_c02298{bottom:757.067067pt;}
.yd_c02298{bottom:784.667067pt;}
.yc_c02298{bottom:812.267067pt;}
.yb_c02298{bottom:839.867067pt;}
.ya_c02298{bottom:867.467067pt;}
.y9_c02298{bottom:895.067067pt;}
.y8_c02298{bottom:922.667067pt;}
.y7_c02298{bottom:950.267067pt;}
.y6_c02298{bottom:977.707067pt;}
.y5_c02298{bottom:1013.307067pt;}
.y2_c02298{bottom:1042.347067pt;}
.y1_c02298{bottom:1060.587067pt;}
.hd_c02298{height:2.273750pt;}
.h6_c02298{height:37.801094pt;}
.hc_c02298{height:47.464531pt;}
.h8_c02298{height:47.532031pt;}
.h5_c02298{height:47.721094pt;}
.h7_c02298{height:48.223906pt;}
.h9_c02298{height:51.382969pt;}
.h3_c02298{height:52.012031pt;}
.h2_c02298{height:56.156250pt;}
.h1_c02298{height:56.843750pt;}
.h4_c02298{height:56.845190pt;}
.hb_c02298{height:66.075717pt;}
.ha_c02298{height:66.076783pt;}
.h0_c02298{height:1122.666667pt;}
.w1_c02298{width:793.333333pt;}
.w0_c02298{width:793.626667pt;}
.x0_c02298{left:0.000000pt;}
.xa_c02298{left:104.000000pt;}
.x1_c02298{left:113.440000pt;}
.x4_c02298{left:120.560000pt;}
.x3_c02298{left:132.400000pt;}
.x5_c02298{left:135.360000pt;}
.x8_c02298{left:163.760000pt;}
.x2_c02298{left:384.880000pt;}
.x9_c02298{left:560.560000pt;}
.x7_c02298{left:632.880000pt;}
.x6_c02298{left:644.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_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_0aafe545e5bec98cc9d9e984.woff2')format("woff");}.ff1_c02299{font-family:ff1_c02299;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02299;src:url('chunks/assets/font_554c262315854b571ce39719.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_024f3c55105c6c4c5936173a.woff2')format("woff");}.ff3_c02299{font-family:ff3_c02299;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_c02299;src:url('chunks/assets/font_843b23a1f9d2370451533c06.woff2')format("woff");}.ff4_c02299{font-family:ff4_c02299;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_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);}
.v2_c02299{vertical-align:-9.000000px;}
.v1_c02299{vertical-align:-5.400000px;}
.v0_c02299{vertical-align:0.000000px;}
.ls20_c02299{letter-spacing:-0.028800px;}
.ls21_c02299{letter-spacing:-0.021600px;}
.ls1f_c02299{letter-spacing:-0.019764px;}
.ls23_c02299{letter-spacing:-0.014400px;}
.ls22_c02299{letter-spacing:-0.007200px;}
.ls1d_c02299{letter-spacing:0.000000px;}
.ls15_c02299{letter-spacing:0.006588px;}
.lse_c02299{letter-spacing:0.007200px;}
.ls1_c02299{letter-spacing:0.013176px;}
.ls7_c02299{letter-spacing:0.014400px;}
.lsb_c02299{letter-spacing:0.019764px;}
.ls4_c02299{letter-spacing:0.021600px;}
.ls1c_c02299{letter-spacing:0.026352px;}
.ls0_c02299{letter-spacing:0.028800px;}
.ls18_c02299{letter-spacing:0.032940px;}
.lsd_c02299{letter-spacing:0.036000px;}
.ls14_c02299{letter-spacing:0.039528px;}
.ls11_c02299{letter-spacing:0.043200px;}
.ls8_c02299{letter-spacing:0.046116px;}
.ls6_c02299{letter-spacing:0.052704px;}
.ls12_c02299{letter-spacing:0.057600px;}
.ls16_c02299{letter-spacing:0.059292px;}
.ls17_c02299{letter-spacing:0.064800px;}
.ls1a_c02299{letter-spacing:0.065880px;}
.ls1b_c02299{letter-spacing:0.072468px;}
.lsf_c02299{letter-spacing:0.079200px;}
.ls13_c02299{letter-spacing:0.086400px;}
.ls5_c02299{letter-spacing:0.092232px;}
.ls10_c02299{letter-spacing:0.108000px;}
.ls19_c02299{letter-spacing:0.111996px;}
.ls3_c02299{letter-spacing:0.144000px;}
.ls1e_c02299{letter-spacing:0.181944px;}
.ls24_c02299{letter-spacing:0.447984px;}
.ls9_c02299{letter-spacing:140.040000px;}
.lsa_c02299{letter-spacing:144.000000px;}
.ls2_c02299{letter-spacing:189.720000px;}
.lsc_c02299{letter-spacing:292.320000px;}
.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;}
}
.ws4_c02299{word-spacing:-18.086400px;}
.ws3_c02299{word-spacing:-18.079200px;}
.ws6_c02299{word-spacing:-16.529292px;}
.ws7_c02299{word-spacing:-16.516116px;}
.ws5_c02299{word-spacing:-16.509528px;}
.ws2_c02299{word-spacing:-16.489764px;}
.ws0_c02299{word-spacing:-16.483176px;}
.ws1_c02299{word-spacing:-16.450236px;}
.ws1a_c02299{word-spacing:-0.280800px;}
.ws26_c02299{word-spacing:-0.180000px;}
.ws1e_c02299{word-spacing:-0.144000px;}
.ws15_c02299{word-spacing:-0.122400px;}
.ws25_c02299{word-spacing:-0.100800px;}
.ws9_c02299{word-spacing:-0.086400px;}
.ws13_c02299{word-spacing:-0.064800px;}
.ws1d_c02299{word-spacing:-0.057600px;}
.ws1c_c02299{word-spacing:-0.050400px;}
.ws14_c02299{word-spacing:-0.036000px;}
.ws11_c02299{word-spacing:-0.028800px;}
.ws12_c02299{word-spacing:-0.021600px;}
.ws28_c02299{word-spacing:-0.019764px;}
.wsf_c02299{word-spacing:-0.014400px;}
.wsa_c02299{word-spacing:-0.007200px;}
.ws8_c02299{word-spacing:0.000000px;}
.ws16_c02299{word-spacing:0.007200px;}
.ws1f_c02299{word-spacing:0.014400px;}
.ws2c_c02299{word-spacing:0.019764px;}
.ws2a_c02299{word-spacing:0.026352px;}
.ws1b_c02299{word-spacing:0.028800px;}
.ws2b_c02299{word-spacing:0.032940px;}
.ws29_c02299{word-spacing:0.039528px;}
.ws10_c02299{word-spacing:0.046116px;}
.ws27_c02299{word-spacing:0.059292px;}
.ws2d_c02299{word-spacing:0.065880px;}
.ws21_c02299{word-spacing:0.085644px;}
.ws24_c02299{word-spacing:0.092232px;}
.ws19_c02299{word-spacing:2.800800px;}
.ws17_c02299{word-spacing:2.880000px;}
.ws18_c02299{word-spacing:2.901600px;}
.ws20_c02299{word-spacing:5.441688px;}
.wsd_c02299{word-spacing:6.838344px;}
.wse_c02299{word-spacing:6.877872px;}
.ws22_c02299{word-spacing:11.568528px;}
.ws23_c02299{word-spacing:11.601468px;}
.wsb_c02299{word-spacing:26.618400px;}
.wsc_c02299{word-spacing:26.701164px;}
._1_c02299{margin-left:-1.058400px;}
._2_c02299{width:2.865600px;}
._0_c02299{width:26.343000px;}
.fc0_c02299{color:rgb(0,0,0);}
.fs2_c02299{font-size:47.880000px;}
.fs1_c02299{font-size:65.880000px;}
.fs0_c02299{font-size:72.000000px;}
.y0_c02299{bottom:0.000000px;}
.y4_c02299{bottom:57.360450px;}
.y3_c02299{bottom:78.060450px;}
.y37_c02299{bottom:116.400450px;}
.y36_c02299{bottom:137.100450px;}
.y35_c02299{bottom:157.800450px;}
.y34_c02299{bottom:178.500450px;}
.y33_c02299{bottom:199.200450px;}
.y32_c02299{bottom:219.900450px;}
.y31_c02299{bottom:240.600450px;}
.y30_c02299{bottom:261.300450px;}
.y2f_c02299{bottom:282.000450px;}
.y2e_c02299{bottom:303.060450px;}
.y2d_c02299{bottom:322.680450px;}
.y2c_c02299{bottom:342.570450px;}
.y2b_c02299{bottom:361.470450px;}
.y2a_c02299{bottom:381.180450px;}
.y29_c02299{bottom:401.340600px;}
.y28_c02299{bottom:422.310450px;}
.y27_c02299{bottom:442.470450px;}
.y26_c02299{bottom:463.170450px;}
.y25_c02299{bottom:483.870450px;}
.y24_c02299{bottom:504.570450px;}
.y23_c02299{bottom:524.910540px;}
.y22_c02299{bottom:543.900450px;}
.y21_c02299{bottom:563.520450px;}
.y20_c02299{bottom:583.320450px;}
.y1f_c02299{bottom:602.310450px;}
.y1e_c02299{bottom:621.930450px;}
.y1d_c02299{bottom:641.910450px;}
.y1c_c02299{bottom:662.790450px;}
.y1b_c02299{bottom:683.490450px;}
.y1a_c02299{bottom:704.190450px;}
.y19_c02299{bottom:724.890450px;}
.y18_c02299{bottom:745.590450px;}
.y17_c02299{bottom:766.290450px;}
.y16_c02299{bottom:786.990450px;}
.y15_c02299{bottom:807.690450px;}
.y14_c02299{bottom:828.390450px;}
.y13_c02299{bottom:849.090450px;}
.y12_c02299{bottom:869.790450px;}
.y11_c02299{bottom:890.490450px;}
.y10_c02299{bottom:911.190450px;}
.yf_c02299{bottom:931.890450px;}
.ye_c02299{bottom:952.590450px;}
.yd_c02299{bottom:973.290450px;}
.yc_c02299{bottom:995.250450px;}
.yb_c02299{bottom:1016.670450px;}
.ya_c02299{bottom:1038.180450px;}
.y9_c02299{bottom:1058.249397px;}
.y8_c02299{bottom:1078.589847px;}
.y7_c02299{bottom:1099.290450px;}
.y6_c02299{bottom:1119.450450px;}
.y5_c02299{bottom:1139.970450px;}
.y2_c02299{bottom:1172.640450px;}
.y1_c02299{bottom:1193.160450px;}
.h6_c02299{height:57.805840px;}
.h8_c02299{height:58.513535px;}
.h7_c02299{height:63.175421px;}
.h2_c02299{height:63.175781px;}
.h1_c02299{height:63.949219px;}
.h4_c02299{height:64.625449px;}
.h3_c02299{height:65.228906px;}
.h5_c02299{height:70.633118px;}
.h0_c02299{height:1263.000000px;}
.w1_c02299{width:892.500000px;}
.w0_c02299{width:892.830000px;}
.x0_c02299{left:0.000000px;}
.x1_c02299{left:127.620000px;}
.x3_c02299{left:135.630000px;}
.x4_c02299{left:252.629613px;}
.x2_c02299{left:432.990000px;}
@media print{
.v2_c02299{vertical-align:-8.000000pt;}
.v1_c02299{vertical-align:-4.800000pt;}
.v0_c02299{vertical-align:0.000000pt;}
.ls20_c02299{letter-spacing:-0.025600pt;}
.ls21_c02299{letter-spacing:-0.019200pt;}
.ls1f_c02299{letter-spacing:-0.017568pt;}
.ls23_c02299{letter-spacing:-0.012800pt;}
.ls22_c02299{letter-spacing:-0.006400pt;}
.ls1d_c02299{letter-spacing:0.000000pt;}
.ls15_c02299{letter-spacing:0.005856pt;}
.lse_c02299{letter-spacing:0.006400pt;}
.ls1_c02299{letter-spacing:0.011712pt;}
.ls7_c02299{letter-spacing:0.012800pt;}
.lsb_c02299{letter-spacing:0.017568pt;}
.ls4_c02299{letter-spacing:0.019200pt;}
.ls1c_c02299{letter-spacing:0.023424pt;}
.ls0_c02299{letter-spacing:0.025600pt;}
.ls18_c02299{letter-spacing:0.029280pt;}
.lsd_c02299{letter-spacing:0.032000pt;}
.ls14_c02299{letter-spacing:0.035136pt;}
.ls11_c02299{letter-spacing:0.038400pt;}
.ls8_c02299{letter-spacing:0.040992pt;}
.ls6_c02299{letter-spacing:0.046848pt;}
.ls12_c02299{letter-spacing:0.051200pt;}
.ls16_c02299{letter-spacing:0.052704pt;}
.ls17_c02299{letter-spacing:0.057600pt;}
.ls1a_c02299{letter-spacing:0.058560pt;}
.ls1b_c02299{letter-spacing:0.064416pt;}
.lsf_c02299{letter-spacing:0.070400pt;}
.ls13_c02299{letter-spacing:0.076800pt;}
.ls5_c02299{letter-spacing:0.081984pt;}
.ls10_c02299{letter-spacing:0.096000pt;}
.ls19_c02299{letter-spacing:0.099552pt;}
.ls3_c02299{letter-spacing:0.128000pt;}
.ls1e_c02299{letter-spacing:0.161728pt;}
.ls24_c02299{letter-spacing:0.398208pt;}
.ls9_c02299{letter-spacing:124.480000pt;}
.lsa_c02299{letter-spacing:128.000000pt;}
.ls2_c02299{letter-spacing:168.640000pt;}
.lsc_c02299{letter-spacing:259.840000pt;}
.ws4_c02299{word-spacing:-16.076800pt;}
.ws3_c02299{word-spacing:-16.070400pt;}
.ws6_c02299{word-spacing:-14.692704pt;}
.ws7_c02299{word-spacing:-14.680992pt;}
.ws5_c02299{word-spacing:-14.675136pt;}
.ws2_c02299{word-spacing:-14.657568pt;}
.ws0_c02299{word-spacing:-14.651712pt;}
.ws1_c02299{word-spacing:-14.622432pt;}
.ws1a_c02299{word-spacing:-0.249600pt;}
.ws26_c02299{word-spacing:-0.160000pt;}
.ws1e_c02299{word-spacing:-0.128000pt;}
.ws15_c02299{word-spacing:-0.108800pt;}
.ws25_c02299{word-spacing:-0.089600pt;}
.ws9_c02299{word-spacing:-0.076800pt;}
.ws13_c02299{word-spacing:-0.057600pt;}
.ws1d_c02299{word-spacing:-0.051200pt;}
.ws1c_c02299{word-spacing:-0.044800pt;}
.ws14_c02299{word-spacing:-0.032000pt;}
.ws11_c02299{word-spacing:-0.025600pt;}
.ws12_c02299{word-spacing:-0.019200pt;}
.ws28_c02299{word-spacing:-0.017568pt;}
.wsf_c02299{word-spacing:-0.012800pt;}
.wsa_c02299{word-spacing:-0.006400pt;}
.ws8_c02299{word-spacing:0.000000pt;}
.ws16_c02299{word-spacing:0.006400pt;}
.ws1f_c02299{word-spacing:0.012800pt;}
.ws2c_c02299{word-spacing:0.017568pt;}
.ws2a_c02299{word-spacing:0.023424pt;}
.ws1b_c02299{word-spacing:0.025600pt;}
.ws2b_c02299{word-spacing:0.029280pt;}
.ws29_c02299{word-spacing:0.035136pt;}
.ws10_c02299{word-spacing:0.040992pt;}
.ws27_c02299{word-spacing:0.052704pt;}
.ws2d_c02299{word-spacing:0.058560pt;}
.ws21_c02299{word-spacing:0.076128pt;}
.ws24_c02299{word-spacing:0.081984pt;}
.ws19_c02299{word-spacing:2.489600pt;}
.ws17_c02299{word-spacing:2.560000pt;}
.ws18_c02299{word-spacing:2.579200pt;}
.ws20_c02299{word-spacing:4.837056pt;}
.wsd_c02299{word-spacing:6.078528pt;}
.wse_c02299{word-spacing:6.113664pt;}
.ws22_c02299{word-spacing:10.283136pt;}
.ws23_c02299{word-spacing:10.312416pt;}
.wsb_c02299{word-spacing:23.660800pt;}
.wsc_c02299{word-spacing:23.734368pt;}
._1_c02299{margin-left:-0.940800pt;}
._2_c02299{width:2.547200pt;}
._0_c02299{width:23.416000pt;}
.fs2_c02299{font-size:42.560000pt;}
.fs1_c02299{font-size:58.560000pt;}
.fs0_c02299{font-size:64.000000pt;}
.y0_c02299{bottom:0.000000pt;}
.y4_c02299{bottom:50.987067pt;}
.y3_c02299{bottom:69.387067pt;}
.y37_c02299{bottom:103.467067pt;}
.y36_c02299{bottom:121.867067pt;}
.y35_c02299{bottom:140.267067pt;}
.y34_c02299{bottom:158.667067pt;}
.y33_c02299{bottom:177.067067pt;}
.y32_c02299{bottom:195.467067pt;}
.y31_c02299{bottom:213.867067pt;}
.y30_c02299{bottom:232.267067pt;}
.y2f_c02299{bottom:250.667067pt;}
.y2e_c02299{bottom:269.387067pt;}
.y2d_c02299{bottom:286.827067pt;}
.y2c_c02299{bottom:304.507067pt;}
.y2b_c02299{bottom:321.307067pt;}
.y2a_c02299{bottom:338.827067pt;}
.y29_c02299{bottom:356.747200pt;}
.y28_c02299{bottom:375.387067pt;}
.y27_c02299{bottom:393.307067pt;}
.y26_c02299{bottom:411.707067pt;}
.y25_c02299{bottom:430.107067pt;}
.y24_c02299{bottom:448.507067pt;}
.y23_c02299{bottom:466.587147pt;}
.y22_c02299{bottom:483.467067pt;}
.y21_c02299{bottom:500.907067pt;}
.y20_c02299{bottom:518.507067pt;}
.y1f_c02299{bottom:535.387067pt;}
.y1e_c02299{bottom:552.827067pt;}
.y1d_c02299{bottom:570.587067pt;}
.y1c_c02299{bottom:589.147067pt;}
.y1b_c02299{bottom:607.547067pt;}
.y1a_c02299{bottom:625.947067pt;}
.y19_c02299{bottom:644.347067pt;}
.y18_c02299{bottom:662.747067pt;}
.y17_c02299{bottom:681.147067pt;}
.y16_c02299{bottom:699.547067pt;}
.y15_c02299{bottom:717.947067pt;}
.y14_c02299{bottom:736.347067pt;}
.y13_c02299{bottom:754.747067pt;}
.y12_c02299{bottom:773.147067pt;}
.y11_c02299{bottom:791.547067pt;}
.y10_c02299{bottom:809.947067pt;}
.yf_c02299{bottom:828.347067pt;}
.ye_c02299{bottom:846.747067pt;}
.yd_c02299{bottom:865.147067pt;}
.yc_c02299{bottom:884.667067pt;}
.yb_c02299{bottom:903.707067pt;}
.ya_c02299{bottom:922.827067pt;}
.y9_c02299{bottom:940.666131pt;}
.y8_c02299{bottom:958.746531pt;}
.y7_c02299{bottom:977.147067pt;}
.y6_c02299{bottom:995.067067pt;}
.y5_c02299{bottom:1013.307067pt;}
.y2_c02299{bottom:1042.347067pt;}
.y1_c02299{bottom:1060.587067pt;}
.h6_c02299{height:51.382969pt;}
.h8_c02299{height:52.012031pt;}
.h7_c02299{height:56.155930pt;}
.h2_c02299{height:56.156250pt;}
.h1_c02299{height:56.843750pt;}
.h4_c02299{height:57.444844pt;}
.h3_c02299{height:57.981250pt;}
.h5_c02299{height:62.784994pt;}
.h0_c02299{height:1122.666667pt;}
.w1_c02299{width:793.333333pt;}
.w0_c02299{width:793.626667pt;}
.x0_c02299{left:0.000000pt;}
.x1_c02299{left:113.440000pt;}
.x3_c02299{left:120.560000pt;}
.x4_c02299{left:224.559656pt;}
.x2_c02299{left:384.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_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_d16a3d1d711c7842be33af3e.woff2')format("woff");}.ff1_c02300{font-family:ff1_c02300;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02300;src:url('chunks/assets/font_1e8a0286e2d4b3e8e639b168.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_acc64cc294c1f22f913c221f.woff2')format("woff");}.ff3_c02300{font-family:ff3_c02300;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02300;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02300{font-family:ff4_c02300;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;}
.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;}
.ls1e_c02300{letter-spacing:-0.302400px;}
.ls22_c02300{letter-spacing:-0.183600px;}
.ls21_c02300{letter-spacing:-0.178200px;}
.ls27_c02300{letter-spacing:-0.140400px;}
.ls2a_c02300{letter-spacing:-0.136800px;}
.ls2d_c02300{letter-spacing:-0.115200px;}
.ls20_c02300{letter-spacing:-0.097200px;}
.ls2e_c02300{letter-spacing:-0.090180px;}
.ls2c_c02300{letter-spacing:-0.079200px;}
.ls1f_c02300{letter-spacing:-0.075600px;}
.ls2b_c02300{letter-spacing:-0.064800px;}
.ls28_c02300{letter-spacing:-0.048600px;}
.ls33_c02300{letter-spacing:-0.042084px;}
.ls23_c02300{letter-spacing:-0.037800px;}
.ls29_c02300{letter-spacing:-0.032400px;}
.ls26_c02300{letter-spacing:-0.021600px;}
.ls1a_c02300{letter-spacing:-0.007200px;}
.ls24_c02300{letter-spacing:-0.005400px;}
.ls19_c02300{letter-spacing:0.000000px;}
.ls14_c02300{letter-spacing:0.005400px;}
.ls2_c02300{letter-spacing:0.007200px;}
.lsc_c02300{letter-spacing:0.010800px;}
.ls1_c02300{letter-spacing:0.014400px;}
.ls5_c02300{letter-spacing:0.016200px;}
.ls25_c02300{letter-spacing:0.027000px;}
.ls0_c02300{letter-spacing:0.028800px;}
.ls32_c02300{letter-spacing:0.032400px;}
.ls6_c02300{letter-spacing:0.037800px;}
.ls4_c02300{letter-spacing:0.043200px;}
.ls17_c02300{letter-spacing:0.050400px;}
.ls1c_c02300{letter-spacing:0.054108px;}
.lsf_c02300{letter-spacing:0.059400px;}
.lsa_c02300{letter-spacing:0.064800px;}
.ls12_c02300{letter-spacing:0.070200px;}
.ls7_c02300{letter-spacing:0.075600px;}
.ls2f_c02300{letter-spacing:0.078156px;}
.lse_c02300{letter-spacing:0.081000px;}
.ls8_c02300{letter-spacing:0.086400px;}
.ls18_c02300{letter-spacing:0.090180px;}
.ls13_c02300{letter-spacing:0.091800px;}
.ls1b_c02300{letter-spacing:0.096192px;}
.lsb_c02300{letter-spacing:0.097200px;}
.ls10_c02300{letter-spacing:0.108000px;}
.ls11_c02300{letter-spacing:0.113400px;}
.ls3_c02300{letter-spacing:0.115200px;}
.ls9_c02300{letter-spacing:0.124200px;}
.ls30_c02300{letter-spacing:0.126252px;}
.lsd_c02300{letter-spacing:0.172800px;}
.ls31_c02300{letter-spacing:0.178200px;}
.ls1d_c02300{letter-spacing:0.183600px;}
.ls16_c02300{letter-spacing:0.288000px;}
.ls15_c02300{letter-spacing:0.648000px;}
.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;}
}
.ws1f_c02300{word-spacing:-72.000000px;}
.ws24_c02300{word-spacing:-60.120000px;}
.ws2_c02300{word-spacing:-54.000000px;}
.ws6_c02300{word-spacing:-0.237600px;}
.ws23_c02300{word-spacing:-0.232200px;}
.ws8_c02300{word-spacing:-0.226800px;}
.ws12_c02300{word-spacing:-0.178200px;}
.ws15_c02300{word-spacing:-0.167400px;}
.ws5_c02300{word-spacing:-0.151200px;}
.ws17_c02300{word-spacing:-0.145800px;}
.ws3_c02300{word-spacing:-0.140400px;}
.wse_c02300{word-spacing:-0.135000px;}
.ws1_c02300{word-spacing:-0.129600px;}
.ws16_c02300{word-spacing:-0.124200px;}
.ws22_c02300{word-spacing:-0.122400px;}
.ws4_c02300{word-spacing:-0.118800px;}
.ws10_c02300{word-spacing:-0.113400px;}
.ws27_c02300{word-spacing:-0.108000px;}
.ws14_c02300{word-spacing:-0.097200px;}
.wsa_c02300{word-spacing:-0.091800px;}
.ws21_c02300{word-spacing:-0.086400px;}
.ws0_c02300{word-spacing:-0.070200px;}
.ws7_c02300{word-spacing:-0.064800px;}
.ws1b_c02300{word-spacing:-0.059400px;}
.ws13_c02300{word-spacing:-0.054000px;}
.ws11_c02300{word-spacing:-0.048600px;}
.ws2c_c02300{word-spacing:-0.043200px;}
.ws18_c02300{word-spacing:-0.032400px;}
.ws1c_c02300{word-spacing:-0.021600px;}
.ws26_c02300{word-spacing:-0.014400px;}
.ws1e_c02300{word-spacing:-0.007200px;}
.ws1a_c02300{word-spacing:-0.005400px;}
.ws25_c02300{word-spacing:0.000000px;}
.ws20_c02300{word-spacing:0.007200px;}
.wsb_c02300{word-spacing:0.021600px;}
.wsc_c02300{word-spacing:0.043200px;}
.ws1d_c02300{word-spacing:0.064800px;}
.ws19_c02300{word-spacing:0.086400px;}
.wsd_c02300{word-spacing:0.124200px;}
.wsf_c02300{word-spacing:0.129600px;}
.ws9_c02300{word-spacing:0.248400px;}
.ws2b_c02300{word-spacing:4.564800px;}
.ws2a_c02300{word-spacing:4.636800px;}
.ws28_c02300{word-spacing:13.564800px;}
.ws29_c02300{word-spacing:13.651200px;}
._1_c02300{margin-left:-12.771000px;}
._0_c02300{margin-left:-1.123200px;}
._2_c02300{width:1.036800px;}
.fc0_c02300{color:rgb(0,0,0);}
.fs1_c02300{font-size:47.880000px;}
.fs4_c02300{font-size:54.000000px;}
.fs3_c02300{font-size:60.120000px;}
.fs0_c02300{font-size:72.000000px;}
.fs2_c02300{font-size:83.880000px;}
.y0_c02300{bottom:0.000000px;}
.y4_c02300{bottom:57.360450px;}
.y3_c02300{bottom:78.060450px;}
.y12_c02300{bottom:123.150387px;}
.y11_c02300{bottom:137.010450px;}
.y10_c02300{bottom:148.170450px;}
.y29_c02300{bottom:174.090450px;}
.y33_c02300{bottom:175.350450px;}
.y2a_c02300{bottom:206.220081px;}
.y34_c02300{bottom:207.480450px;}
.y2b_c02300{bottom:238.259532px;}
.y35_c02300{bottom:239.520000px;}
.y2c_c02300{bottom:270.298983px;}
.y36_c02300{bottom:271.559550px;}
.y2d_c02300{bottom:302.428614px;}
.y37_c02300{bottom:303.689550px;}
.y2e_c02300{bottom:334.468065px;}
.y38_c02300{bottom:335.729100px;}
.y2f_c02300{bottom:366.507516px;}
.y39_c02300{bottom:367.859100px;}
.y30_c02300{bottom:398.637147px;}
.y3a_c02300{bottom:399.898650px;}
.y31_c02300{bottom:430.676598px;}
.y3b_c02300{bottom:431.938200px;}
.y32_c02300{bottom:462.716049px;}
.y3c_c02300{bottom:464.070450px;}
.y3e_c02300{bottom:488.910450px;}
.y3d_c02300{bottom:542.730450px;}
.yf_c02300{bottom:575.220450px;}
.ye_c02300{bottom:595.920450px;}
.yd_c02300{bottom:616.440450px;}
.yc_c02300{bottom:635.790450px;}
.yb_c02300{bottom:647.040450px;}
.y13_c02300{bottom:670.260450px;}
.y1d_c02300{bottom:671.520450px;}
.y14_c02300{bottom:701.040387px;}
.y1e_c02300{bottom:702.300450px;}
.y15_c02300{bottom:731.820324px;}
.y1f_c02300{bottom:733.080450px;}
.y16_c02300{bottom:762.600261px;}
.y20_c02300{bottom:763.860450px;}
.y17_c02300{bottom:793.290018px;}
.y21_c02300{bottom:794.550000px;}
.y18_c02300{bottom:824.069955px;}
.y22_c02300{bottom:825.330000px;}
.y19_c02300{bottom:854.849892px;}
.y23_c02300{bottom:856.110000px;}
.y1a_c02300{bottom:885.629829px;}
.y24_c02300{bottom:886.890000px;}
.y1b_c02300{bottom:916.319586px;}
.y25_c02300{bottom:917.579550px;}
.y1c_c02300{bottom:947.099523px;}
.y26_c02300{bottom:948.360450px;}
.y28_c02300{bottom:995.880450px;}
.y27_c02300{bottom:1017.480450px;}
.ya_c02300{bottom:1048.980450px;}
.y9_c02300{bottom:1064.280450px;}
.y8_c02300{bottom:1084.980450px;}
.y7_c02300{bottom:1105.500450px;}
.y6_c02300{bottom:1124.850450px;}
.y5_c02300{bottom:1139.970450px;}
.y2_c02300{bottom:1172.640450px;}
.y1_c02300{bottom:1193.160450px;}
.h6_c02300{height:39.208008px;}
.h7_c02300{height:39.211608px;}
.h9_c02300{height:39.217008px;}
.h3_c02300{height:42.526230px;}
.h5_c02300{height:43.651582px;}
.h8_c02300{height:52.277344px;}
.h2_c02300{height:63.175781px;}
.h1_c02300{height:63.949219px;}
.h4_c02300{height:74.500840px;}
.h0_c02300{height:1263.000000px;}
.w1_c02300{width:892.500000px;}
.w0_c02300{width:892.830000px;}
.x0_c02300{left:0.000000px;}
.x1_c02300{left:127.620000px;}
.x26_c02300{left:132.120000px;}
.x15_c02300{left:134.643600px;}
.x29_c02300{left:138.604050px;}
.x17_c02300{left:140.136750px;}
.x19_c02300{left:143.011800px;}
.x2b_c02300{left:144.276750px;}
.x2d_c02300{left:146.980800px;}
.x4_c02300{left:148.950000px;}
.x27_c02300{left:153.178650px;}
.x13_c02300{left:179.820000px;}
.x16_c02300{left:180.995850px;}
.x2a_c02300{left:185.045400px;}
.x14_c02300{left:187.921350px;}
.x28_c02300{left:191.881800px;}
.x18_c02300{left:214.207200px;}
.x2c_c02300{left:218.170350px;}
.x1a_c02300{left:265.500000px;}
.x2e_c02300{left:267.480000px;}
.x7_c02300{left:285.570000px;}
.x3_c02300{left:356.580000px;}
.x5_c02300{left:430.560000px;}
.x2_c02300{left:432.990000px;}
.x1b_c02300{left:450.720000px;}
.x25_c02300{left:460.441746px;}
.x24_c02300{left:467.641116px;}
.x23_c02300{left:471.150621px;}
.x22_c02300{left:474.750306px;}
.x21_c02300{left:476.009820px;}
.x20_c02300{left:485.549361px;}
.x1f_c02300{left:516.599838px;}
.x1e_c02300{left:525.060225px;}
.x1d_c02300{left:569.430288px;}
.x1c_c02300{left:581.310000px;}
.x12_c02300{left:612.181251px;}
.x11_c02300{left:614.521422px;}
.x10_c02300{left:622.711269px;}
.xf_c02300{left:623.880603px;}
.xe_c02300{left:626.760351px;}
.xd_c02300{left:639.630540px;}
.xc_c02300{left:642.060891px;}
.xb_c02300{left:651.961152px;}
.xa_c02300{left:663.030747px;}
.x9_c02300{left:669.420000px;}
.x6_c02300{left:745.560000px;}
.x8_c02300{left:768.870000px;}
@media print{
.v0_c02300{vertical-align:0.000000pt;}
.ls1e_c02300{letter-spacing:-0.268800pt;}
.ls22_c02300{letter-spacing:-0.163200pt;}
.ls21_c02300{letter-spacing:-0.158400pt;}
.ls27_c02300{letter-spacing:-0.124800pt;}
.ls2a_c02300{letter-spacing:-0.121600pt;}
.ls2d_c02300{letter-spacing:-0.102400pt;}
.ls20_c02300{letter-spacing:-0.086400pt;}
.ls2e_c02300{letter-spacing:-0.080160pt;}
.ls2c_c02300{letter-spacing:-0.070400pt;}
.ls1f_c02300{letter-spacing:-0.067200pt;}
.ls2b_c02300{letter-spacing:-0.057600pt;}
.ls28_c02300{letter-spacing:-0.043200pt;}
.ls33_c02300{letter-spacing:-0.037408pt;}
.ls23_c02300{letter-spacing:-0.033600pt;}
.ls29_c02300{letter-spacing:-0.028800pt;}
.ls26_c02300{letter-spacing:-0.019200pt;}
.ls1a_c02300{letter-spacing:-0.006400pt;}
.ls24_c02300{letter-spacing:-0.004800pt;}
.ls19_c02300{letter-spacing:0.000000pt;}
.ls14_c02300{letter-spacing:0.004800pt;}
.ls2_c02300{letter-spacing:0.006400pt;}
.lsc_c02300{letter-spacing:0.009600pt;}
.ls1_c02300{letter-spacing:0.012800pt;}
.ls5_c02300{letter-spacing:0.014400pt;}
.ls25_c02300{letter-spacing:0.024000pt;}
.ls0_c02300{letter-spacing:0.025600pt;}
.ls32_c02300{letter-spacing:0.028800pt;}
.ls6_c02300{letter-spacing:0.033600pt;}
.ls4_c02300{letter-spacing:0.038400pt;}
.ls17_c02300{letter-spacing:0.044800pt;}
.ls1c_c02300{letter-spacing:0.048096pt;}
.lsf_c02300{letter-spacing:0.052800pt;}
.lsa_c02300{letter-spacing:0.057600pt;}
.ls12_c02300{letter-spacing:0.062400pt;}
.ls7_c02300{letter-spacing:0.067200pt;}
.ls2f_c02300{letter-spacing:0.069472pt;}
.lse_c02300{letter-spacing:0.072000pt;}
.ls8_c02300{letter-spacing:0.076800pt;}
.ls18_c02300{letter-spacing:0.080160pt;}
.ls13_c02300{letter-spacing:0.081600pt;}
.ls1b_c02300{letter-spacing:0.085504pt;}
.lsb_c02300{letter-spacing:0.086400pt;}
.ls10_c02300{letter-spacing:0.096000pt;}
.ls11_c02300{letter-spacing:0.100800pt;}
.ls3_c02300{letter-spacing:0.102400pt;}
.ls9_c02300{letter-spacing:0.110400pt;}
.ls30_c02300{letter-spacing:0.112224pt;}
.lsd_c02300{letter-spacing:0.153600pt;}
.ls31_c02300{letter-spacing:0.158400pt;}
.ls1d_c02300{letter-spacing:0.163200pt;}
.ls16_c02300{letter-spacing:0.256000pt;}
.ls15_c02300{letter-spacing:0.576000pt;}
.ws1f_c02300{word-spacing:-64.000000pt;}
.ws24_c02300{word-spacing:-53.440000pt;}
.ws2_c02300{word-spacing:-48.000000pt;}
.ws6_c02300{word-spacing:-0.211200pt;}
.ws23_c02300{word-spacing:-0.206400pt;}
.ws8_c02300{word-spacing:-0.201600pt;}
.ws12_c02300{word-spacing:-0.158400pt;}
.ws15_c02300{word-spacing:-0.148800pt;}
.ws5_c02300{word-spacing:-0.134400pt;}
.ws17_c02300{word-spacing:-0.129600pt;}
.ws3_c02300{word-spacing:-0.124800pt;}
.wse_c02300{word-spacing:-0.120000pt;}
.ws1_c02300{word-spacing:-0.115200pt;}
.ws16_c02300{word-spacing:-0.110400pt;}
.ws22_c02300{word-spacing:-0.108800pt;}
.ws4_c02300{word-spacing:-0.105600pt;}
.ws10_c02300{word-spacing:-0.100800pt;}
.ws27_c02300{word-spacing:-0.096000pt;}
.ws14_c02300{word-spacing:-0.086400pt;}
.wsa_c02300{word-spacing:-0.081600pt;}
.ws21_c02300{word-spacing:-0.076800pt;}
.ws0_c02300{word-spacing:-0.062400pt;}
.ws7_c02300{word-spacing:-0.057600pt;}
.ws1b_c02300{word-spacing:-0.052800pt;}
.ws13_c02300{word-spacing:-0.048000pt;}
.ws11_c02300{word-spacing:-0.043200pt;}
.ws2c_c02300{word-spacing:-0.038400pt;}
.ws18_c02300{word-spacing:-0.028800pt;}
.ws1c_c02300{word-spacing:-0.019200pt;}
.ws26_c02300{word-spacing:-0.012800pt;}
.ws1e_c02300{word-spacing:-0.006400pt;}
.ws1a_c02300{word-spacing:-0.004800pt;}
.ws25_c02300{word-spacing:0.000000pt;}
.ws20_c02300{word-spacing:0.006400pt;}
.wsb_c02300{word-spacing:0.019200pt;}
.wsc_c02300{word-spacing:0.038400pt;}
.ws1d_c02300{word-spacing:0.057600pt;}
.ws19_c02300{word-spacing:0.076800pt;}
.wsd_c02300{word-spacing:0.110400pt;}
.wsf_c02300{word-spacing:0.115200pt;}
.ws9_c02300{word-spacing:0.220800pt;}
.ws2b_c02300{word-spacing:4.057600pt;}
.ws2a_c02300{word-spacing:4.121600pt;}
.ws28_c02300{word-spacing:12.057600pt;}
.ws29_c02300{word-spacing:12.134400pt;}
._1_c02300{margin-left:-11.352000pt;}
._0_c02300{margin-left:-0.998400pt;}
._2_c02300{width:0.921600pt;}
.fs1_c02300{font-size:42.560000pt;}
.fs4_c02300{font-size:48.000000pt;}
.fs3_c02300{font-size:53.440000pt;}
.fs0_c02300{font-size:64.000000pt;}
.fs2_c02300{font-size:74.560000pt;}
.y0_c02300{bottom:0.000000pt;}
.y4_c02300{bottom:50.987067pt;}
.y3_c02300{bottom:69.387067pt;}
.y12_c02300{bottom:109.467011pt;}
.y11_c02300{bottom:121.787067pt;}
.y10_c02300{bottom:131.707067pt;}
.y29_c02300{bottom:154.747067pt;}
.y33_c02300{bottom:155.867067pt;}
.y2a_c02300{bottom:183.306739pt;}
.y34_c02300{bottom:184.427067pt;}
.y2b_c02300{bottom:211.786251pt;}
.y35_c02300{bottom:212.906667pt;}
.y2c_c02300{bottom:240.265763pt;}
.y36_c02300{bottom:241.386267pt;}
.y2d_c02300{bottom:268.825435pt;}
.y37_c02300{bottom:269.946267pt;}
.y2e_c02300{bottom:297.304947pt;}
.y38_c02300{bottom:298.425867pt;}
.y2f_c02300{bottom:325.784459pt;}
.y39_c02300{bottom:326.985867pt;}
.y30_c02300{bottom:354.344131pt;}
.y3a_c02300{bottom:355.465467pt;}
.y31_c02300{bottom:382.823643pt;}
.y3b_c02300{bottom:383.945067pt;}
.y32_c02300{bottom:411.303155pt;}
.y3c_c02300{bottom:412.507067pt;}
.y3e_c02300{bottom:434.587067pt;}
.y3d_c02300{bottom:482.427067pt;}
.yf_c02300{bottom:511.307067pt;}
.ye_c02300{bottom:529.707067pt;}
.yd_c02300{bottom:547.947067pt;}
.yc_c02300{bottom:565.147067pt;}
.yb_c02300{bottom:575.147067pt;}
.y13_c02300{bottom:595.787067pt;}
.y1d_c02300{bottom:596.907067pt;}
.y14_c02300{bottom:623.147011pt;}
.y1e_c02300{bottom:624.267067pt;}
.y15_c02300{bottom:650.506955pt;}
.y1f_c02300{bottom:651.627067pt;}
.y16_c02300{bottom:677.866899pt;}
.y20_c02300{bottom:678.987067pt;}
.y17_c02300{bottom:705.146683pt;}
.y21_c02300{bottom:706.266667pt;}
.y18_c02300{bottom:732.506627pt;}
.y22_c02300{bottom:733.626667pt;}
.y19_c02300{bottom:759.866571pt;}
.y23_c02300{bottom:760.986667pt;}
.y1a_c02300{bottom:787.226515pt;}
.y24_c02300{bottom:788.346667pt;}
.y1b_c02300{bottom:814.506299pt;}
.y25_c02300{bottom:815.626267pt;}
.y1c_c02300{bottom:841.866243pt;}
.y26_c02300{bottom:842.987067pt;}
.y28_c02300{bottom:885.227067pt;}
.y27_c02300{bottom:904.427067pt;}
.ya_c02300{bottom:932.427067pt;}
.y9_c02300{bottom:946.027067pt;}
.y8_c02300{bottom:964.427067pt;}
.y7_c02300{bottom:982.667067pt;}
.y6_c02300{bottom:999.867067pt;}
.y5_c02300{bottom:1013.307067pt;}
.y2_c02300{bottom:1042.347067pt;}
.y1_c02300{bottom:1060.587067pt;}
.h6_c02300{height:34.851562pt;}
.h7_c02300{height:34.854763pt;}
.h9_c02300{height:34.859562pt;}
.h3_c02300{height:37.801094pt;}
.h5_c02300{height:38.801406pt;}
.h8_c02300{height:46.468750pt;}
.h2_c02300{height:56.156250pt;}
.h1_c02300{height:56.843750pt;}
.h4_c02300{height:66.222969pt;}
.h0_c02300{height:1122.666667pt;}
.w1_c02300{width:793.333333pt;}
.w0_c02300{width:793.626667pt;}
.x0_c02300{left:0.000000pt;}
.x1_c02300{left:113.440000pt;}
.x26_c02300{left:117.440000pt;}
.x15_c02300{left:119.683200pt;}
.x29_c02300{left:123.203600pt;}
.x17_c02300{left:124.566000pt;}
.x19_c02300{left:127.121600pt;}
.x2b_c02300{left:128.246000pt;}
.x2d_c02300{left:130.649600pt;}
.x4_c02300{left:132.400000pt;}
.x27_c02300{left:136.158800pt;}
.x13_c02300{left:159.840000pt;}
.x16_c02300{left:160.885200pt;}
.x2a_c02300{left:164.484800pt;}
.x14_c02300{left:167.041200pt;}
.x28_c02300{left:170.561600pt;}
.x18_c02300{left:190.406400pt;}
.x2c_c02300{left:193.929200pt;}
.x1a_c02300{left:236.000000pt;}
.x2e_c02300{left:237.760000pt;}
.x7_c02300{left:253.840000pt;}
.x3_c02300{left:316.960000pt;}
.x5_c02300{left:382.720000pt;}
.x2_c02300{left:384.880000pt;}
.x1b_c02300{left:400.640000pt;}
.x25_c02300{left:409.281552pt;}
.x24_c02300{left:415.680992pt;}
.x23_c02300{left:418.800552pt;}
.x22_c02300{left:422.000272pt;}
.x21_c02300{left:423.119840pt;}
.x20_c02300{left:431.599432pt;}
.x1f_c02300{left:459.199856pt;}
.x1e_c02300{left:466.720200pt;}
.x1d_c02300{left:506.160256pt;}
.x1c_c02300{left:516.720000pt;}
.x12_c02300{left:544.161112pt;}
.x11_c02300{left:546.241264pt;}
.x10_c02300{left:553.521128pt;}
.xf_c02300{left:554.560536pt;}
.xe_c02300{left:557.120312pt;}
.xd_c02300{left:568.560480pt;}
.xc_c02300{left:570.720792pt;}
.xb_c02300{left:579.521024pt;}
.xa_c02300{left:589.360664pt;}
.x9_c02300{left:595.040000pt;}
.x6_c02300{left:662.720000pt;}
.x8_c02300{left:683.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_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_8612fb204cc2c360bb118ae3.woff2')format("woff");}.ff1_c02301{font-family:ff1_c02301;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02301;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.v4_c02301{vertical-align:-1.440000px;}
.v0_c02301{vertical-align:0.000000px;}
.v2_c02301{vertical-align:1.080000px;}
.v1_c02301{vertical-align:2.160000px;}
.v3_c02301{vertical-align:78.120000px;}
.ls3f_c02301{letter-spacing:-0.032940px;}
.ls39_c02301{letter-spacing:-0.014400px;}
.ls3d_c02301{letter-spacing:-0.006588px;}
.ls3c_c02301{letter-spacing:-0.006012px;}
.ls38_c02301{letter-spacing:0.000000px;}
.ls3_c02301{letter-spacing:0.006588px;}
.ls1_c02301{letter-spacing:0.007200px;}
.ls2f_c02301{letter-spacing:0.013176px;}
.ls3a_c02301{letter-spacing:0.019764px;}
.ls32_c02301{letter-spacing:0.026352px;}
.ls0_c02301{letter-spacing:0.028800px;}
.ls3b_c02301{letter-spacing:0.032940px;}
.ls27_c02301{letter-spacing:0.039528px;}
.ls3e_c02301{letter-spacing:0.052704px;}
.ls1e_c02301{letter-spacing:0.059292px;}
.lsc_c02301{letter-spacing:0.065880px;}
.ls2b_c02301{letter-spacing:0.072468px;}
.ls17_c02301{letter-spacing:0.079056px;}
.ls4_c02301{letter-spacing:0.085644px;}
.ls7_c02301{letter-spacing:0.092232px;}
.ls1a_c02301{letter-spacing:0.098820px;}
.ls5_c02301{letter-spacing:0.111996px;}
.lsa_c02301{letter-spacing:0.138348px;}
.ls6_c02301{letter-spacing:0.144288px;}
.ls12_c02301{letter-spacing:0.151524px;}
.ls29_c02301{letter-spacing:0.158112px;}
.ls2_c02301{letter-spacing:0.164700px;}
.ls19_c02301{letter-spacing:0.177876px;}
.lse_c02301{letter-spacing:0.180000px;}
.ls2a_c02301{letter-spacing:64.080000px;}
.ls25_c02301{letter-spacing:66.240000px;}
.ls1c_c02301{letter-spacing:66.600000px;}
.ls1d_c02301{letter-spacing:66.960000px;}
.ls15_c02301{letter-spacing:99.000000px;}
.ls16_c02301{letter-spacing:99.360000px;}
.ls13_c02301{letter-spacing:99.720000px;}
.ls26_c02301{letter-spacing:117.450000px;}
.ls20_c02301{letter-spacing:132.120000px;}
.ls33_c02301{letter-spacing:132.480000px;}
.lsb_c02301{letter-spacing:132.840000px;}
.ls35_c02301{letter-spacing:133.200000px;}
.ls9_c02301{letter-spacing:150.300000px;}
.lsf_c02301{letter-spacing:165.240000px;}
.ls10_c02301{letter-spacing:165.600000px;}
.ls30_c02301{letter-spacing:165.960000px;}
.ls22_c02301{letter-spacing:183.330000px;}
.ls11_c02301{letter-spacing:183.420000px;}
.ls14_c02301{letter-spacing:186.480000px;}
.ls36_c02301{letter-spacing:206.640000px;}
.ls2d_c02301{letter-spacing:214.560000px;}
.ls21_c02301{letter-spacing:214.920000px;}
.ls23_c02301{letter-spacing:215.279400px;}
.ls2c_c02301{letter-spacing:230.400000px;}
.ls18_c02301{letter-spacing:234.360000px;}
.ls1b_c02301{letter-spacing:252.360000px;}
.ls28_c02301{letter-spacing:268.920000px;}
.ls1f_c02301{letter-spacing:281.520000px;}
.ls34_c02301{letter-spacing:296.640000px;}
.ls24_c02301{letter-spacing:314.640000px;}
.lsd_c02301{letter-spacing:329.400000px;}
.ls8_c02301{letter-spacing:347.760000px;}
.ls31_c02301{letter-spacing:394.200000px;}
.ls2e_c02301{letter-spacing:414.720000px;}
.ls37_c02301{letter-spacing:622.080000px;}
.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;}
}
.ws9_c02301{word-spacing:-16.647876px;}
.ws0_c02301{word-spacing:-16.634700px;}
.ws14_c02301{word-spacing:-16.628112px;}
.ws8_c02301{word-spacing:-16.621524px;}
.ws2_c02301{word-spacing:-16.608348px;}
.ws1_c02301{word-spacing:-16.581996px;}
.wse_c02301{word-spacing:-16.568820px;}
.ws3_c02301{word-spacing:-16.562232px;}
.ws21_c02301{word-spacing:-16.549056px;}
.ws15_c02301{word-spacing:-16.542468px;}
.ws10_c02301{word-spacing:-16.529292px;}
.ws13_c02301{word-spacing:-16.509528px;}
.ws20_c02301{word-spacing:-16.437060px;}
.ws28_c02301{word-spacing:-0.086400px;}
.ws2f_c02301{word-spacing:-0.054108px;}
.ws29_c02301{word-spacing:-0.007200px;}
.ws35_c02301{word-spacing:-0.006588px;}
.ws27_c02301{word-spacing:0.000000px;}
.ws2c_c02301{word-spacing:0.006588px;}
.ws31_c02301{word-spacing:0.013176px;}
.ws30_c02301{word-spacing:0.026352px;}
.ws37_c02301{word-spacing:0.032940px;}
.ws38_c02301{word-spacing:0.039528px;}
.ws32_c02301{word-spacing:0.052704px;}
.ws2e_c02301{word-spacing:0.059292px;}
.ws2a_c02301{word-spacing:0.065880px;}
.ws2d_c02301{word-spacing:0.072468px;}
.ws33_c02301{word-spacing:0.079056px;}
.ws2b_c02301{word-spacing:0.085644px;}
.ws36_c02301{word-spacing:0.098820px;}
.ws34_c02301{word-spacing:0.441396px;}
.ws17_c02301{word-spacing:65.089440px;}
.ws12_c02301{word-spacing:67.238496px;}
.wsf_c02301{word-spacing:67.642380px;}
.ws7_c02301{word-spacing:99.996372px;}
.wsd_c02301{word-spacing:99.998496px;}
.wsb_c02301{word-spacing:100.402380px;}
.ws25_c02301{word-spacing:100.426608px;}
.ws16_c02301{word-spacing:100.523304px;}
.ws19_c02301{word-spacing:100.933020px;}
.wsc_c02301{word-spacing:116.962380px;}
.ws22_c02301{word-spacing:133.116372px;}
.ws1d_c02301{word-spacing:133.546608px;}
.ws24_c02301{word-spacing:134.053020px;}
.wsa_c02301{word-spacing:150.082380px;}
.ws23_c02301{word-spacing:150.106608px;}
.ws6_c02301{word-spacing:150.203304px;}
.ws5_c02301{word-spacing:166.763304px;}
.ws18_c02301{word-spacing:167.173020px;}
.ws1f_c02301{word-spacing:182.842380px;}
.ws1c_c02301{word-spacing:182.866608px;}
.ws4_c02301{word-spacing:182.963304px;}
.ws1b_c02301{word-spacing:215.833572px;}
.ws11_c02301{word-spacing:216.083304px;}
.ws1a_c02301{word-spacing:216.270000px;}
.ws26_c02301{word-spacing:394.200000px;}
.ws1e_c02301{word-spacing:448.546608px;}
._1_c02301{margin-left:-1.148292px;}
._0_c02301{width:1.044792px;}
._4_c02301{width:104.490000px;}
._5_c02301{width:115.923132px;}
._8_c02301{width:133.316208px;}
._3_c02301{width:169.288704px;}
._6_c02301{width:214.319736px;}
._2_c02301{width:216.679284px;}
._9_c02301{width:232.060104px;}
._c_c02301{width:485.985600px;}
._b_c02301{width:644.886720px;}
._a_c02301{width:665.528616px;}
._7_c02301{width:1113.120000px;}
.fc0_c02301{color:rgb(0,0,0);}
.fs4_c02301{font-size:11.880000px;}
.fs1_c02301{font-size:54.000000px;}
.fs3_c02301{font-size:60.120000px;}
.fs2_c02301{font-size:65.880000px;}
.fs0_c02301{font-size:72.000000px;}
.y0_c02301{bottom:0.000000px;}
.y4_c02301{bottom:57.360450px;}
.y3_c02301{bottom:78.060450px;}
.y3e_c02301{bottom:120.360450px;}
.y3d_c02301{bottom:127.200450px;}
.y3c_c02301{bottom:147.900450px;}
.y3b_c02301{bottom:168.600450px;}
.y3a_c02301{bottom:187.590450px;}
.y39_c02301{bottom:206.940450px;}
.y38_c02301{bottom:227.640450px;}
.y37_c02301{bottom:248.340450px;}
.y36_c02301{bottom:267.330450px;}
.y35_c02301{bottom:286.230450px;}
.y34_c02301{bottom:305.220450px;}
.y33_c02301{bottom:324.210600px;}
.y32_c02301{bottom:343.200450px;}
.y30_c02301{bottom:362.190450px;}
.y2e_c02301{bottom:380.550450px;}
.y2f_c02301{bottom:381.180450px;}
.y31_c02301{bottom:400.080450px;}
.y2d_c02301{bottom:420.690450px;}
.y2c_c02301{bottom:436.170900px;}
.y2b_c02301{bottom:451.740450px;}
.y2a_c02301{bottom:468.300450px;}
.y29_c02301{bottom:489.000600px;}
.y28_c02301{bottom:509.700600px;}
.y27_c02301{bottom:528.690450px;}
.y26_c02301{bottom:548.040450px;}
.y25_c02301{bottom:568.740450px;}
.y24_c02301{bottom:589.440450px;}
.y23_c02301{bottom:608.340450px;}
.y22_c02301{bottom:627.330450px;}
.y21_c02301{bottom:646.320450px;}
.y20_c02301{bottom:665.310450px;}
.y1f_c02301{bottom:685.650450px;}
.y1d_c02301{bottom:703.200450px;}
.y1b_c02301{bottom:721.650450px;}
.y1c_c02301{bottom:722.190450px;}
.y1e_c02301{bottom:741.180450px;}
.y1a_c02301{bottom:761.789550px;}
.y19_c02301{bottom:777.270000px;}
.y18_c02301{bottom:792.750450px;}
.y17_c02301{bottom:809.310450px;}
.y16_c02301{bottom:830.010450px;}
.y15_c02301{bottom:850.710450px;}
.y14_c02301{bottom:869.700450px;}
.y13_c02301{bottom:889.050450px;}
.y12_c02301{bottom:909.750450px;}
.y11_c02301{bottom:930.450450px;}
.y10_c02301{bottom:949.440450px;}
.yf_c02301{bottom:968.430450px;}
.ye_c02301{bottom:987.420450px;}
.yd_c02301{bottom:1006.320450px;}
.yc_c02301{bottom:1026.660450px;}
.yb_c02301{bottom:1044.300450px;}
.y8_c02301{bottom:1062.660450px;}
.ya_c02301{bottom:1063.290450px;}
.y9_c02301{bottom:1082.280450px;}
.y7_c02301{bottom:1101.540450px;}
.y6_c02301{bottom:1123.500450px;}
.y5_c02301{bottom:1139.970450px;}
.y2_c02301{bottom:1172.640450px;}
.y1_c02301{bottom:1193.160450px;}
.hb_c02301{height:10.551621px;}
.h3_c02301{height:47.961914px;}
.h5_c02301{height:53.397598px;}
.h4_c02301{height:58.513535px;}
.h2_c02301{height:63.175781px;}
.h1_c02301{height:63.949219px;}
.h9_c02301{height:64.975781px;}
.ha_c02301{height:65.029219px;}
.h6_c02301{height:65.335781px;}
.h7_c02301{height:65.389219px;}
.h8_c02301{height:142.069219px;}
.h0_c02301{height:1263.000000px;}
.w1_c02301{width:892.500000px;}
.w0_c02301{width:892.830000px;}
.x0_c02301{left:0.000000px;}
.x1_c02301{left:127.620000px;}
.x3_c02301{left:135.630000px;}
.x18_c02301{left:159.030000px;}
.xc_c02301{left:160.920000px;}
.x6_c02301{left:245.430000px;}
.x5_c02301{left:249.840000px;}
.xd_c02301{left:251.370000px;}
.x13_c02301{left:258.120000px;}
.xe_c02301{left:262.170000px;}
.x12_c02301{left:276.390000px;}
.x4_c02301{left:290.610000px;}
.x14_c02301{left:420.930000px;}
.x15_c02301{left:422.370000px;}
.x8_c02301{left:431.460000px;}
.x2_c02301{left:432.990000px;}
.xf_c02301{left:442.530000px;}
.x7_c02301{left:465.210000px;}
.xb_c02301{left:592.380000px;}
.xa_c02301{left:598.140000px;}
.x11_c02301{left:600.210000px;}
.x16_c02301{left:612.810000px;}
.x10_c02301{left:616.500000px;}
.x17_c02301{left:638.640000px;}
.x9_c02301{left:639.810000px;}
@media print{
.v4_c02301{vertical-align:-1.280000pt;}
.v0_c02301{vertical-align:0.000000pt;}
.v2_c02301{vertical-align:0.960000pt;}
.v1_c02301{vertical-align:1.920000pt;}
.v3_c02301{vertical-align:69.440000pt;}
.ls3f_c02301{letter-spacing:-0.029280pt;}
.ls39_c02301{letter-spacing:-0.012800pt;}
.ls3d_c02301{letter-spacing:-0.005856pt;}
.ls3c_c02301{letter-spacing:-0.005344pt;}
.ls38_c02301{letter-spacing:0.000000pt;}
.ls3_c02301{letter-spacing:0.005856pt;}
.ls1_c02301{letter-spacing:0.006400pt;}
.ls2f_c02301{letter-spacing:0.011712pt;}
.ls3a_c02301{letter-spacing:0.017568pt;}
.ls32_c02301{letter-spacing:0.023424pt;}
.ls0_c02301{letter-spacing:0.025600pt;}
.ls3b_c02301{letter-spacing:0.029280pt;}
.ls27_c02301{letter-spacing:0.035136pt;}
.ls3e_c02301{letter-spacing:0.046848pt;}
.ls1e_c02301{letter-spacing:0.052704pt;}
.lsc_c02301{letter-spacing:0.058560pt;}
.ls2b_c02301{letter-spacing:0.064416pt;}
.ls17_c02301{letter-spacing:0.070272pt;}
.ls4_c02301{letter-spacing:0.076128pt;}
.ls7_c02301{letter-spacing:0.081984pt;}
.ls1a_c02301{letter-spacing:0.087840pt;}
.ls5_c02301{letter-spacing:0.099552pt;}
.lsa_c02301{letter-spacing:0.122976pt;}
.ls6_c02301{letter-spacing:0.128256pt;}
.ls12_c02301{letter-spacing:0.134688pt;}
.ls29_c02301{letter-spacing:0.140544pt;}
.ls2_c02301{letter-spacing:0.146400pt;}
.ls19_c02301{letter-spacing:0.158112pt;}
.lse_c02301{letter-spacing:0.160000pt;}
.ls2a_c02301{letter-spacing:56.960000pt;}
.ls25_c02301{letter-spacing:58.880000pt;}
.ls1c_c02301{letter-spacing:59.200000pt;}
.ls1d_c02301{letter-spacing:59.520000pt;}
.ls15_c02301{letter-spacing:88.000000pt;}
.ls16_c02301{letter-spacing:88.320000pt;}
.ls13_c02301{letter-spacing:88.640000pt;}
.ls26_c02301{letter-spacing:104.400000pt;}
.ls20_c02301{letter-spacing:117.440000pt;}
.ls33_c02301{letter-spacing:117.760000pt;}
.lsb_c02301{letter-spacing:118.080000pt;}
.ls35_c02301{letter-spacing:118.400000pt;}
.ls9_c02301{letter-spacing:133.600000pt;}
.lsf_c02301{letter-spacing:146.880000pt;}
.ls10_c02301{letter-spacing:147.200000pt;}
.ls30_c02301{letter-spacing:147.520000pt;}
.ls22_c02301{letter-spacing:162.960000pt;}
.ls11_c02301{letter-spacing:163.040000pt;}
.ls14_c02301{letter-spacing:165.760000pt;}
.ls36_c02301{letter-spacing:183.680000pt;}
.ls2d_c02301{letter-spacing:190.720000pt;}
.ls21_c02301{letter-spacing:191.040000pt;}
.ls23_c02301{letter-spacing:191.359467pt;}
.ls2c_c02301{letter-spacing:204.800000pt;}
.ls18_c02301{letter-spacing:208.320000pt;}
.ls1b_c02301{letter-spacing:224.320000pt;}
.ls28_c02301{letter-spacing:239.040000pt;}
.ls1f_c02301{letter-spacing:250.240000pt;}
.ls34_c02301{letter-spacing:263.680000pt;}
.ls24_c02301{letter-spacing:279.680000pt;}
.lsd_c02301{letter-spacing:292.800000pt;}
.ls8_c02301{letter-spacing:309.120000pt;}
.ls31_c02301{letter-spacing:350.400000pt;}
.ls2e_c02301{letter-spacing:368.640000pt;}
.ls37_c02301{letter-spacing:552.960000pt;}
.ws9_c02301{word-spacing:-14.798112pt;}
.ws0_c02301{word-spacing:-14.786400pt;}
.ws14_c02301{word-spacing:-14.780544pt;}
.ws8_c02301{word-spacing:-14.774688pt;}
.ws2_c02301{word-spacing:-14.762976pt;}
.ws1_c02301{word-spacing:-14.739552pt;}
.wse_c02301{word-spacing:-14.727840pt;}
.ws3_c02301{word-spacing:-14.721984pt;}
.ws21_c02301{word-spacing:-14.710272pt;}
.ws15_c02301{word-spacing:-14.704416pt;}
.ws10_c02301{word-spacing:-14.692704pt;}
.ws13_c02301{word-spacing:-14.675136pt;}
.ws20_c02301{word-spacing:-14.610720pt;}
.ws28_c02301{word-spacing:-0.076800pt;}
.ws2f_c02301{word-spacing:-0.048096pt;}
.ws29_c02301{word-spacing:-0.006400pt;}
.ws35_c02301{word-spacing:-0.005856pt;}
.ws27_c02301{word-spacing:0.000000pt;}
.ws2c_c02301{word-spacing:0.005856pt;}
.ws31_c02301{word-spacing:0.011712pt;}
.ws30_c02301{word-spacing:0.023424pt;}
.ws37_c02301{word-spacing:0.029280pt;}
.ws38_c02301{word-spacing:0.035136pt;}
.ws32_c02301{word-spacing:0.046848pt;}
.ws2e_c02301{word-spacing:0.052704pt;}
.ws2a_c02301{word-spacing:0.058560pt;}
.ws2d_c02301{word-spacing:0.064416pt;}
.ws33_c02301{word-spacing:0.070272pt;}
.ws2b_c02301{word-spacing:0.076128pt;}
.ws36_c02301{word-spacing:0.087840pt;}
.ws34_c02301{word-spacing:0.392352pt;}
.ws17_c02301{word-spacing:57.857280pt;}
.ws12_c02301{word-spacing:59.767552pt;}
.wsf_c02301{word-spacing:60.126560pt;}
.ws7_c02301{word-spacing:88.885664pt;}
.wsd_c02301{word-spacing:88.887552pt;}
.wsb_c02301{word-spacing:89.246560pt;}
.ws25_c02301{word-spacing:89.268096pt;}
.ws16_c02301{word-spacing:89.354048pt;}
.ws19_c02301{word-spacing:89.718240pt;}
.wsc_c02301{word-spacing:103.966560pt;}
.ws22_c02301{word-spacing:118.325664pt;}
.ws1d_c02301{word-spacing:118.708096pt;}
.ws24_c02301{word-spacing:119.158240pt;}
.wsa_c02301{word-spacing:133.406560pt;}
.ws23_c02301{word-spacing:133.428096pt;}
.ws6_c02301{word-spacing:133.514048pt;}
.ws5_c02301{word-spacing:148.234048pt;}
.ws18_c02301{word-spacing:148.598240pt;}
.ws1f_c02301{word-spacing:162.526560pt;}
.ws1c_c02301{word-spacing:162.548096pt;}
.ws4_c02301{word-spacing:162.634048pt;}
.ws1b_c02301{word-spacing:191.852064pt;}
.ws11_c02301{word-spacing:192.074048pt;}
.ws1a_c02301{word-spacing:192.240000pt;}
.ws26_c02301{word-spacing:350.400000pt;}
.ws1e_c02301{word-spacing:398.708096pt;}
._1_c02301{margin-left:-1.020704pt;}
._0_c02301{width:0.928704pt;}
._4_c02301{width:92.880000pt;}
._5_c02301{width:103.042784pt;}
._8_c02301{width:118.503296pt;}
._3_c02301{width:150.478848pt;}
._6_c02301{width:190.506432pt;}
._2_c02301{width:192.603808pt;}
._9_c02301{width:206.275648pt;}
._c_c02301{width:431.987200pt;}
._b_c02301{width:573.232640pt;}
._a_c02301{width:591.580992pt;}
._7_c02301{width:989.440000pt;}
.fs4_c02301{font-size:10.560000pt;}
.fs1_c02301{font-size:48.000000pt;}
.fs3_c02301{font-size:53.440000pt;}
.fs2_c02301{font-size:58.560000pt;}
.fs0_c02301{font-size:64.000000pt;}
.y0_c02301{bottom:0.000000pt;}
.y4_c02301{bottom:50.987067pt;}
.y3_c02301{bottom:69.387067pt;}
.y3e_c02301{bottom:106.987067pt;}
.y3d_c02301{bottom:113.067067pt;}
.y3c_c02301{bottom:131.467067pt;}
.y3b_c02301{bottom:149.867067pt;}
.y3a_c02301{bottom:166.747067pt;}
.y39_c02301{bottom:183.947067pt;}
.y38_c02301{bottom:202.347067pt;}
.y37_c02301{bottom:220.747067pt;}
.y36_c02301{bottom:237.627067pt;}
.y35_c02301{bottom:254.427067pt;}
.y34_c02301{bottom:271.307067pt;}
.y33_c02301{bottom:288.187200pt;}
.y32_c02301{bottom:305.067067pt;}
.y30_c02301{bottom:321.947067pt;}
.y2e_c02301{bottom:338.267067pt;}
.y2f_c02301{bottom:338.827067pt;}
.y31_c02301{bottom:355.627067pt;}
.y2d_c02301{bottom:373.947067pt;}
.y2c_c02301{bottom:387.707467pt;}
.y2b_c02301{bottom:401.547067pt;}
.y2a_c02301{bottom:416.267067pt;}
.y29_c02301{bottom:434.667200pt;}
.y28_c02301{bottom:453.067200pt;}
.y27_c02301{bottom:469.947067pt;}
.y26_c02301{bottom:487.147067pt;}
.y25_c02301{bottom:505.547067pt;}
.y24_c02301{bottom:523.947067pt;}
.y23_c02301{bottom:540.747067pt;}
.y22_c02301{bottom:557.627067pt;}
.y21_c02301{bottom:574.507067pt;}
.y20_c02301{bottom:591.387067pt;}
.y1f_c02301{bottom:609.467067pt;}
.y1d_c02301{bottom:625.067067pt;}
.y1b_c02301{bottom:641.467067pt;}
.y1c_c02301{bottom:641.947067pt;}
.y1e_c02301{bottom:658.827067pt;}
.y1a_c02301{bottom:677.146267pt;}
.y19_c02301{bottom:690.906667pt;}
.y18_c02301{bottom:704.667067pt;}
.y17_c02301{bottom:719.387067pt;}
.y16_c02301{bottom:737.787067pt;}
.y15_c02301{bottom:756.187067pt;}
.y14_c02301{bottom:773.067067pt;}
.y13_c02301{bottom:790.267067pt;}
.y12_c02301{bottom:808.667067pt;}
.y11_c02301{bottom:827.067067pt;}
.y10_c02301{bottom:843.947067pt;}
.yf_c02301{bottom:860.827067pt;}
.ye_c02301{bottom:877.707067pt;}
.yd_c02301{bottom:894.507067pt;}
.yc_c02301{bottom:912.587067pt;}
.yb_c02301{bottom:928.267067pt;}
.y8_c02301{bottom:944.587067pt;}
.ya_c02301{bottom:945.147067pt;}
.y9_c02301{bottom:962.027067pt;}
.y7_c02301{bottom:979.147067pt;}
.y6_c02301{bottom:998.667067pt;}
.y5_c02301{bottom:1013.307067pt;}
.y2_c02301{bottom:1042.347067pt;}
.y1_c02301{bottom:1060.587067pt;}
.hb_c02301{height:9.379219pt;}
.h3_c02301{height:42.632812pt;}
.h5_c02301{height:47.464531pt;}
.h4_c02301{height:52.012031pt;}
.h2_c02301{height:56.156250pt;}
.h1_c02301{height:56.843750pt;}
.h9_c02301{height:57.756250pt;}
.ha_c02301{height:57.803750pt;}
.h6_c02301{height:58.076250pt;}
.h7_c02301{height:58.123750pt;}
.h8_c02301{height:126.283750pt;}
.h0_c02301{height:1122.666667pt;}
.w1_c02301{width:793.333333pt;}
.w0_c02301{width:793.626667pt;}
.x0_c02301{left:0.000000pt;}
.x1_c02301{left:113.440000pt;}
.x3_c02301{left:120.560000pt;}
.x18_c02301{left:141.360000pt;}
.xc_c02301{left:143.040000pt;}
.x6_c02301{left:218.160000pt;}
.x5_c02301{left:222.080000pt;}
.xd_c02301{left:223.440000pt;}
.x13_c02301{left:229.440000pt;}
.xe_c02301{left:233.040000pt;}
.x12_c02301{left:245.680000pt;}
.x4_c02301{left:258.320000pt;}
.x14_c02301{left:374.160000pt;}
.x15_c02301{left:375.440000pt;}
.x8_c02301{left:383.520000pt;}
.x2_c02301{left:384.880000pt;}
.xf_c02301{left:393.360000pt;}
.x7_c02301{left:413.520000pt;}
.xb_c02301{left:526.560000pt;}
.xa_c02301{left:531.680000pt;}
.x11_c02301{left:533.520000pt;}
.x16_c02301{left:544.720000pt;}
.x10_c02301{left:548.000000pt;}
.x17_c02301{left:567.680000pt;}
.x9_c02301{left:568.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_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_2d03e050338bc4eab75d72a1.woff2')format("woff");}.ff1_c02302{font-family:ff1_c02302;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02302;src:url('chunks/assets/font_63fd02feee6d0b9f57789ea0.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;}
.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);}
.vc_c02302{vertical-align:-27.720000px;}
.v8_c02302{vertical-align:-25.200000px;}
.v9_c02302{vertical-align:-23.400000px;}
.v10_c02302{vertical-align:-20.520600px;}
.v6_c02302{vertical-align:-18.360000px;}
.v7_c02302{vertical-align:-16.560000px;}
.ve_c02302{vertical-align:-12.600000px;}
.vf_c02302{vertical-align:-11.160000px;}
.v4_c02302{vertical-align:-2.880000px;}
.v3_c02302{vertical-align:-1.440000px;}
.v0_c02302{vertical-align:0.000000px;}
.v2_c02302{vertical-align:1.800000px;}
.vb_c02302{vertical-align:2.880000px;}
.vd_c02302{vertical-align:5.400000px;}
.v5_c02302{vertical-align:16.560000px;}
.va_c02302{vertical-align:19.440000px;}
.v1_c02302{vertical-align:78.120000px;}
.ls45_c02302{letter-spacing:-0.086184px;}
.ls41_c02302{letter-spacing:-0.043200px;}
.ls43_c02302{letter-spacing:-0.019152px;}
.ls3d_c02302{letter-spacing:-0.014400px;}
.ls42_c02302{letter-spacing:-0.010800px;}
.ls47_c02302{letter-spacing:-0.009576px;}
.ls4a_c02302{letter-spacing:-0.007200px;}
.ls3e_c02302{letter-spacing:-0.006012px;}
.ls3c_c02302{letter-spacing:0.000000px;}
.ls25_c02302{letter-spacing:0.007200px;}
.ls27_c02302{letter-spacing:0.010800px;}
.ls2a_c02302{letter-spacing:0.012636px;}
.ls23_c02302{letter-spacing:0.013176px;}
.ls3f_c02302{letter-spacing:0.014400px;}
.ls39_c02302{letter-spacing:0.019152px;}
.ls26_c02302{letter-spacing:0.021600px;}
.ls2_c02302{letter-spacing:0.026352px;}
.ls29_c02302{letter-spacing:0.028728px;}
.ls0_c02302{letter-spacing:0.028800px;}
.ls2b_c02302{letter-spacing:0.032400px;}
.ls2f_c02302{letter-spacing:0.037800px;}
.ls1c_c02302{letter-spacing:0.039528px;}
.ls28_c02302{letter-spacing:0.043092px;}
.ls2e_c02302{letter-spacing:0.043200px;}
.ls34_c02302{letter-spacing:0.052668px;}
.ls15_c02302{letter-spacing:0.059292px;}
.ls6_c02302{letter-spacing:0.065880px;}
.ls20_c02302{letter-spacing:0.072468px;}
.lsf_c02302{letter-spacing:0.079056px;}
.ls32_c02302{letter-spacing:0.081396px;}
.ls4_c02302{letter-spacing:0.092232px;}
.ls11_c02302{letter-spacing:0.098820px;}
.ls2d_c02302{letter-spacing:0.110124px;}
.ls35_c02302{letter-spacing:0.114912px;}
.ls37_c02302{letter-spacing:0.124488px;}
.ls38_c02302{letter-spacing:0.134064px;}
.ls9_c02302{letter-spacing:0.138348px;}
.ls36_c02302{letter-spacing:0.138852px;}
.ls3_c02302{letter-spacing:0.144288px;}
.ls40_c02302{letter-spacing:0.151200px;}
.lsd_c02302{letter-spacing:0.151524px;}
.ls1e_c02302{letter-spacing:0.158112px;}
.ls1_c02302{letter-spacing:0.164700px;}
.ls44_c02302{letter-spacing:0.167580px;}
.ls13_c02302{letter-spacing:0.177876px;}
.ls17_c02302{letter-spacing:0.180000px;}
.ls33_c02302{letter-spacing:0.181944px;}
.ls31_c02302{letter-spacing:0.205884px;}
.ls1f_c02302{letter-spacing:64.080000px;}
.ls1b_c02302{letter-spacing:66.240000px;}
.ls14_c02302{letter-spacing:66.600000px;}
.lsc_c02302{letter-spacing:99.000000px;}
.lse_c02302{letter-spacing:99.360000px;}
.ls3a_c02302{letter-spacing:111.240000px;}
.ls2c_c02302{letter-spacing:114.120000px;}
.ls8_c02302{letter-spacing:132.120000px;}
.lsa_c02302{letter-spacing:132.480000px;}
.ls3b_c02302{letter-spacing:155.698200px;}
.ls46_c02302{letter-spacing:156.060000px;}
.ls48_c02302{letter-spacing:156.421800px;}
.ls49_c02302{letter-spacing:158.310432px;}
.ls18_c02302{letter-spacing:165.240000px;}
.ls24_c02302{letter-spacing:165.960000px;}
.lsb_c02302{letter-spacing:186.480000px;}
.ls30_c02302{letter-spacing:200.430000px;}
.ls22_c02302{letter-spacing:214.560000px;}
.ls19_c02302{letter-spacing:214.920000px;}
.ls21_c02302{letter-spacing:230.400000px;}
.ls10_c02302{letter-spacing:234.360000px;}
.ls12_c02302{letter-spacing:252.360000px;}
.ls1d_c02302{letter-spacing:268.920000px;}
.ls16_c02302{letter-spacing:281.520000px;}
.ls7_c02302{letter-spacing:296.640000px;}
.ls1a_c02302{letter-spacing:314.640000px;}
.ls5_c02302{letter-spacing:347.760000px;}
.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;}
}
.ws1_c02302{word-spacing:-16.647876px;}
.ws0_c02302{word-spacing:-16.634700px;}
.ws8_c02302{word-spacing:-16.628112px;}
.ws3_c02302{word-spacing:-16.621524px;}
.ws2_c02302{word-spacing:-16.608348px;}
.ws4_c02302{word-spacing:-16.568820px;}
.ws6_c02302{word-spacing:-16.562232px;}
.ws9_c02302{word-spacing:-16.542468px;}
.ws5_c02302{word-spacing:-16.529292px;}
.ws7_c02302{word-spacing:-16.509528px;}
.ws1a_c02302{word-spacing:-0.296856px;}
.ws19_c02302{word-spacing:-0.272916px;}
.ws1f_c02302{word-spacing:-0.229824px;}
.ws21_c02302{word-spacing:-0.225036px;}
.ws20_c02302{word-spacing:-0.215460px;}
.ws1e_c02302{word-spacing:-0.205884px;}
.ws22_c02302{word-spacing:-0.172368px;}
.ws24_c02302{word-spacing:-0.144000px;}
.ws17_c02302{word-spacing:-0.129600px;}
.ws1d_c02302{word-spacing:-0.119700px;}
.ws14_c02302{word-spacing:-0.115200px;}
.ws23_c02302{word-spacing:-0.110124px;}
.ws25_c02302{word-spacing:-0.108000px;}
.ws18_c02302{word-spacing:-0.101088px;}
.wsc_c02302{word-spacing:-0.086400px;}
.ws1c_c02302{word-spacing:-0.081396px;}
.wsf_c02302{word-spacing:-0.054108px;}
.ws16_c02302{word-spacing:-0.021600px;}
.ws15_c02302{word-spacing:-0.007200px;}
.wsb_c02302{word-spacing:0.000000px;}
.ws26_c02302{word-spacing:0.007200px;}
.ws11_c02302{word-spacing:0.013176px;}
.ws10_c02302{word-spacing:0.026352px;}
.ws12_c02302{word-spacing:0.052704px;}
.wse_c02302{word-spacing:0.072468px;}
.ws13_c02302{word-spacing:0.079056px;}
.wsd_c02302{word-spacing:0.421632px;}
.wsa_c02302{word-spacing:58.969440px;}
.ws1b_c02302{word-spacing:241.336800px;}
._1b_c02302{margin-left:-85.681800px;}
._19_c02302{margin-left:-84.427596px;}
._1c_c02302{margin-left:-78.478200px;}
._30_c02302{margin-left:-46.801800px;}
._1a_c02302{margin-left:-41.401800px;}
._1_c02302{margin-left:-1.148292px;}
._23_c02302{width:1.026432px;}
._2d_c02302{width:7.203600px;}
._2f_c02302{width:38.091636px;}
._2c_c02302{width:43.199136px;}
._12_c02302{width:50.937552px;}
._15_c02302{width:62.053200px;}
._13_c02302{width:64.731672px;}
._21_c02302{width:65.899800px;}
._7_c02302{width:69.354000px;}
._e_c02302{width:72.964440px;}
._f_c02302{width:76.950180px;}
._18_c02302{width:79.020000px;}
._17_c02302{width:81.900000px;}
._29_c02302{width:84.114000px;}
._28_c02302{width:87.861600px;}
._10_c02302{width:90.518400px;}
._1e_c02302{width:94.649436px;}
._22_c02302{width:96.225300px;}
._2e_c02302{width:97.380000px;}
._8_c02302{width:100.260000px;}
._11_c02302{width:101.318400px;}
._20_c02302{width:102.358728px;}
._4_c02302{width:104.490000px;}
._1f_c02302{width:106.419420px;}
._26_c02302{width:108.075600px;}
._6_c02302{width:109.461600px;}
._25_c02302{width:111.360168px;}
._b_c02302{width:114.216120px;}
._9_c02302{width:115.380000px;}
._a_c02302{width:118.378944px;}
._14_c02302{width:119.664000px;}
._2a_c02302{width:121.860000px;}
._24_c02302{width:124.306920px;}
._16_c02302{width:128.619648px;}
._27_c02302{width:132.887016px;}
._d_c02302{width:148.307688px;}
._c_c02302{width:152.515404px;}
._1d_c02302{width:156.060000px;}
._3_c02302{width:169.288704px;}
._5_c02302{width:214.319736px;}
._2_c02302{width:216.679284px;}
._2b_c02302{width:241.563204px;}
._0_c02302{width:485.985600px;}
.fc0_c02302{color:rgb(0,0,0);}
.fs6_c02302{font-size:11.880000px;}
.fs5_c02302{font-size:42.120000px;}
.fs3_c02302{font-size:47.880000px;}
.fs4_c02302{font-size:54.000000px;}
.fs2_c02302{font-size:60.120000px;}
.fs1_c02302{font-size:65.880000px;}
.fs0_c02302{font-size:72.000000px;}
.y0_c02302{bottom:0.000000px;}
.y4_c02302{bottom:57.360450px;}
.y3_c02302{bottom:78.060450px;}
.y52_c02302{bottom:125.400450px;}
.y50_c02302{bottom:131.610450px;}
.y51_c02302{bottom:136.380450px;}
.y4f_c02302{bottom:151.230450px;}
.y4e_c02302{bottom:169.500450px;}
.y4d_c02302{bottom:185.970450px;}
.y4c_c02302{bottom:206.760450px;}
.y4a_c02302{bottom:215.940450px;}
.y4b_c02302{bottom:220.710600px;}
.y49_c02302{bottom:235.560450px;}
.y48_c02302{bottom:253.920450px;}
.y47_c02302{bottom:270.390450px;}
.y46_c02302{bottom:291.090450px;}
.y45_c02302{bottom:300.270450px;}
.y43_c02302{bottom:303.780000px;}
.y44_c02302{bottom:305.130450px;}
.y42_c02302{bottom:319.260450px;}
.y40_c02302{bottom:322.770000px;}
.y41_c02302{bottom:324.120450px;}
.y3f_c02302{bottom:338.250450px;}
.y3d_c02302{bottom:341.670900px;}
.y3e_c02302{bottom:343.020450px;}
.y3c_c02302{bottom:357.240450px;}
.y3a_c02302{bottom:360.661050px;}
.y3b_c02302{bottom:362.010450px;}
.y39_c02302{bottom:376.230600px;}
.y37_c02302{bottom:379.650450px;}
.y38_c02302{bottom:381.000600px;}
.y36_c02302{bottom:398.640450px;}
.y34_c02302{bottom:414.120600px;}
.y35_c02302{bottom:420.690450px;}
.y33_c02302{bottom:435.540600px;}
.y32_c02302{bottom:453.810450px;}
.y31_c02302{bottom:470.280600px;}
.y30_c02302{bottom:491.070450px;}
.y2e_c02302{bottom:500.250900px;}
.y2f_c02302{bottom:506.730450px;}
.y2c_c02302{bottom:520.950900px;}
.y2d_c02302{bottom:527.430450px;}
.y2a_c02302{bottom:541.650900px;}
.y2b_c02302{bottom:548.130450px;}
.y28_c02302{bottom:562.350900px;}
.y29_c02302{bottom:568.830450px;}
.y26_c02302{bottom:583.050450px;}
.y27_c02302{bottom:589.530450px;}
.y25_c02302{bottom:603.750450px;}
.y23_c02302{bottom:622.740900px;}
.y24_c02302{bottom:629.220450px;}
.y21_c02302{bottom:643.440450px;}
.y22_c02302{bottom:649.920450px;}
.y20_c02302{bottom:664.140450px;}
.y1e_c02302{bottom:683.040450px;}
.y1f_c02302{bottom:689.610450px;}
.y1d_c02302{bottom:703.740450px;}
.y1b_c02302{bottom:722.730450px;}
.y1c_c02302{bottom:729.300450px;}
.y1a_c02302{bottom:744.150450px;}
.y19_c02302{bottom:762.420450px;}
.y18_c02302{bottom:779.790600px;}
.y17_c02302{bottom:799.950450px;}
.y16_c02302{bottom:817.140450px;}
.y15_c02302{bottom:837.300162px;}
.y14_c02302{bottom:851.070450px;}
.y13_c02302{bottom:866.280450px;}
.y12_c02302{bottom:886.980450px;}
.y11_c02302{bottom:907.680450px;}
.y10_c02302{bottom:926.670450px;}
.yf_c02302{bottom:946.020450px;}
.ye_c02302{bottom:966.720450px;}
.yd_c02302{bottom:987.420450px;}
.yc_c02302{bottom:1006.320450px;}
.yb_c02302{bottom:1025.310450px;}
.ya_c02302{bottom:1044.300450px;}
.y9_c02302{bottom:1063.290450px;}
.y8_c02302{bottom:1083.630450px;}
.y7_c02302{bottom:1101.270450px;}
.y5_c02302{bottom:1119.630450px;}
.y6_c02302{bottom:1120.170450px;}
.y2_c02302{bottom:1172.640450px;}
.y1_c02302{bottom:1193.160450px;}
.hd_c02302{height:10.551621px;}
.h9_c02302{height:42.526230px;}
.ha_c02302{height:47.961914px;}
.h5_c02302{height:53.397598px;}
.h4_c02302{height:58.513535px;}
.hc_c02302{height:61.606230px;}
.hb_c02302{height:61.966230px;}
.h2_c02302{height:63.175781px;}
.h1_c02302{height:63.949219px;}
.h6_c02302{height:64.975781px;}
.h8_c02302{height:65.029219px;}
.h7_c02302{height:65.029819px;}
.h3_c02302{height:142.069219px;}
.h0_c02302{height:1263.000000px;}
.w1_c02302{width:892.500000px;}
.w0_c02302{width:892.830000px;}
.x0_c02302{left:0.000000px;}
.x1_c02302{left:127.620000px;}
.x3_c02302{left:135.630000px;}
.xa_c02302{left:144.000000px;}
.x7_c02302{left:147.690000px;}
.xb_c02302{left:150.390000px;}
.x8_c02302{left:154.080000px;}
.x6_c02302{left:160.920000px;}
.x9_c02302{left:220.500000px;}
.x4_c02302{left:265.860000px;}
.x5_c02302{left:269.550000px;}
.x2_c02302{left:432.990000px;}
.xc_c02302{left:746.820450px;}
@media print{
.vc_c02302{vertical-align:-24.640000pt;}
.v8_c02302{vertical-align:-22.400000pt;}
.v9_c02302{vertical-align:-20.800000pt;}
.v10_c02302{vertical-align:-18.240533pt;}
.v6_c02302{vertical-align:-16.320000pt;}
.v7_c02302{vertical-align:-14.720000pt;}
.ve_c02302{vertical-align:-11.200000pt;}
.vf_c02302{vertical-align:-9.920000pt;}
.v4_c02302{vertical-align:-2.560000pt;}
.v3_c02302{vertical-align:-1.280000pt;}
.v0_c02302{vertical-align:0.000000pt;}
.v2_c02302{vertical-align:1.600000pt;}
.vb_c02302{vertical-align:2.560000pt;}
.vd_c02302{vertical-align:4.800000pt;}
.v5_c02302{vertical-align:14.720000pt;}
.va_c02302{vertical-align:17.280000pt;}
.v1_c02302{vertical-align:69.440000pt;}
.ls45_c02302{letter-spacing:-0.076608pt;}
.ls41_c02302{letter-spacing:-0.038400pt;}
.ls43_c02302{letter-spacing:-0.017024pt;}
.ls3d_c02302{letter-spacing:-0.012800pt;}
.ls42_c02302{letter-spacing:-0.009600pt;}
.ls47_c02302{letter-spacing:-0.008512pt;}
.ls4a_c02302{letter-spacing:-0.006400pt;}
.ls3e_c02302{letter-spacing:-0.005344pt;}
.ls3c_c02302{letter-spacing:0.000000pt;}
.ls25_c02302{letter-spacing:0.006400pt;}
.ls27_c02302{letter-spacing:0.009600pt;}
.ls2a_c02302{letter-spacing:0.011232pt;}
.ls23_c02302{letter-spacing:0.011712pt;}
.ls3f_c02302{letter-spacing:0.012800pt;}
.ls39_c02302{letter-spacing:0.017024pt;}
.ls26_c02302{letter-spacing:0.019200pt;}
.ls2_c02302{letter-spacing:0.023424pt;}
.ls29_c02302{letter-spacing:0.025536pt;}
.ls0_c02302{letter-spacing:0.025600pt;}
.ls2b_c02302{letter-spacing:0.028800pt;}
.ls2f_c02302{letter-spacing:0.033600pt;}
.ls1c_c02302{letter-spacing:0.035136pt;}
.ls28_c02302{letter-spacing:0.038304pt;}
.ls2e_c02302{letter-spacing:0.038400pt;}
.ls34_c02302{letter-spacing:0.046816pt;}
.ls15_c02302{letter-spacing:0.052704pt;}
.ls6_c02302{letter-spacing:0.058560pt;}
.ls20_c02302{letter-spacing:0.064416pt;}
.lsf_c02302{letter-spacing:0.070272pt;}
.ls32_c02302{letter-spacing:0.072352pt;}
.ls4_c02302{letter-spacing:0.081984pt;}
.ls11_c02302{letter-spacing:0.087840pt;}
.ls2d_c02302{letter-spacing:0.097888pt;}
.ls35_c02302{letter-spacing:0.102144pt;}
.ls37_c02302{letter-spacing:0.110656pt;}
.ls38_c02302{letter-spacing:0.119168pt;}
.ls9_c02302{letter-spacing:0.122976pt;}
.ls36_c02302{letter-spacing:0.123424pt;}
.ls3_c02302{letter-spacing:0.128256pt;}
.ls40_c02302{letter-spacing:0.134400pt;}
.lsd_c02302{letter-spacing:0.134688pt;}
.ls1e_c02302{letter-spacing:0.140544pt;}
.ls1_c02302{letter-spacing:0.146400pt;}
.ls44_c02302{letter-spacing:0.148960pt;}
.ls13_c02302{letter-spacing:0.158112pt;}
.ls17_c02302{letter-spacing:0.160000pt;}
.ls33_c02302{letter-spacing:0.161728pt;}
.ls31_c02302{letter-spacing:0.183008pt;}
.ls1f_c02302{letter-spacing:56.960000pt;}
.ls1b_c02302{letter-spacing:58.880000pt;}
.ls14_c02302{letter-spacing:59.200000pt;}
.lsc_c02302{letter-spacing:88.000000pt;}
.lse_c02302{letter-spacing:88.320000pt;}
.ls3a_c02302{letter-spacing:98.880000pt;}
.ls2c_c02302{letter-spacing:101.440000pt;}
.ls8_c02302{letter-spacing:117.440000pt;}
.lsa_c02302{letter-spacing:117.760000pt;}
.ls3b_c02302{letter-spacing:138.398400pt;}
.ls46_c02302{letter-spacing:138.720000pt;}
.ls48_c02302{letter-spacing:139.041600pt;}
.ls49_c02302{letter-spacing:140.720384pt;}
.ls18_c02302{letter-spacing:146.880000pt;}
.ls24_c02302{letter-spacing:147.520000pt;}
.lsb_c02302{letter-spacing:165.760000pt;}
.ls30_c02302{letter-spacing:178.160000pt;}
.ls22_c02302{letter-spacing:190.720000pt;}
.ls19_c02302{letter-spacing:191.040000pt;}
.ls21_c02302{letter-spacing:204.800000pt;}
.ls10_c02302{letter-spacing:208.320000pt;}
.ls12_c02302{letter-spacing:224.320000pt;}
.ls1d_c02302{letter-spacing:239.040000pt;}
.ls16_c02302{letter-spacing:250.240000pt;}
.ls7_c02302{letter-spacing:263.680000pt;}
.ls1a_c02302{letter-spacing:279.680000pt;}
.ls5_c02302{letter-spacing:309.120000pt;}
.ws1_c02302{word-spacing:-14.798112pt;}
.ws0_c02302{word-spacing:-14.786400pt;}
.ws8_c02302{word-spacing:-14.780544pt;}
.ws3_c02302{word-spacing:-14.774688pt;}
.ws2_c02302{word-spacing:-14.762976pt;}
.ws4_c02302{word-spacing:-14.727840pt;}
.ws6_c02302{word-spacing:-14.721984pt;}
.ws9_c02302{word-spacing:-14.704416pt;}
.ws5_c02302{word-spacing:-14.692704pt;}
.ws7_c02302{word-spacing:-14.675136pt;}
.ws1a_c02302{word-spacing:-0.263872pt;}
.ws19_c02302{word-spacing:-0.242592pt;}
.ws1f_c02302{word-spacing:-0.204288pt;}
.ws21_c02302{word-spacing:-0.200032pt;}
.ws20_c02302{word-spacing:-0.191520pt;}
.ws1e_c02302{word-spacing:-0.183008pt;}
.ws22_c02302{word-spacing:-0.153216pt;}
.ws24_c02302{word-spacing:-0.128000pt;}
.ws17_c02302{word-spacing:-0.115200pt;}
.ws1d_c02302{word-spacing:-0.106400pt;}
.ws14_c02302{word-spacing:-0.102400pt;}
.ws23_c02302{word-spacing:-0.097888pt;}
.ws25_c02302{word-spacing:-0.096000pt;}
.ws18_c02302{word-spacing:-0.089856pt;}
.wsc_c02302{word-spacing:-0.076800pt;}
.ws1c_c02302{word-spacing:-0.072352pt;}
.wsf_c02302{word-spacing:-0.048096pt;}
.ws16_c02302{word-spacing:-0.019200pt;}
.ws15_c02302{word-spacing:-0.006400pt;}
.wsb_c02302{word-spacing:0.000000pt;}
.ws26_c02302{word-spacing:0.006400pt;}
.ws11_c02302{word-spacing:0.011712pt;}
.ws10_c02302{word-spacing:0.023424pt;}
.ws12_c02302{word-spacing:0.046848pt;}
.wse_c02302{word-spacing:0.064416pt;}
.ws13_c02302{word-spacing:0.070272pt;}
.wsd_c02302{word-spacing:0.374784pt;}
.wsa_c02302{word-spacing:52.417280pt;}
.ws1b_c02302{word-spacing:214.521600pt;}
._1b_c02302{margin-left:-76.161600pt;}
._19_c02302{margin-left:-75.046752pt;}
._1c_c02302{margin-left:-69.758400pt;}
._30_c02302{margin-left:-41.601600pt;}
._1a_c02302{margin-left:-36.801600pt;}
._1_c02302{margin-left:-1.020704pt;}
._23_c02302{width:0.912384pt;}
._2d_c02302{width:6.403200pt;}
._2f_c02302{width:33.859232pt;}
._2c_c02302{width:38.399232pt;}
._12_c02302{width:45.277824pt;}
._15_c02302{width:55.158400pt;}
._13_c02302{width:57.539264pt;}
._21_c02302{width:58.577600pt;}
._7_c02302{width:61.648000pt;}
._e_c02302{width:64.857280pt;}
._f_c02302{width:68.400160pt;}
._18_c02302{width:70.240000pt;}
._17_c02302{width:72.800000pt;}
._29_c02302{width:74.768000pt;}
._28_c02302{width:78.099200pt;}
._10_c02302{width:80.460800pt;}
._1e_c02302{width:84.132832pt;}
._22_c02302{width:85.533600pt;}
._2e_c02302{width:86.560000pt;}
._8_c02302{width:89.120000pt;}
._11_c02302{width:90.060800pt;}
._20_c02302{width:90.985536pt;}
._4_c02302{width:92.880000pt;}
._1f_c02302{width:94.595040pt;}
._26_c02302{width:96.067200pt;}
._6_c02302{width:97.299200pt;}
._25_c02302{width:98.986816pt;}
._b_c02302{width:101.525440pt;}
._9_c02302{width:102.560000pt;}
._a_c02302{width:105.225728pt;}
._14_c02302{width:106.368000pt;}
._2a_c02302{width:108.320000pt;}
._24_c02302{width:110.495040pt;}
._16_c02302{width:114.328576pt;}
._27_c02302{width:118.121792pt;}
._d_c02302{width:131.829056pt;}
._c_c02302{width:135.569248pt;}
._1d_c02302{width:138.720000pt;}
._3_c02302{width:150.478848pt;}
._5_c02302{width:190.506432pt;}
._2_c02302{width:192.603808pt;}
._2b_c02302{width:214.722848pt;}
._0_c02302{width:431.987200pt;}
.fs6_c02302{font-size:10.560000pt;}
.fs5_c02302{font-size:37.440000pt;}
.fs3_c02302{font-size:42.560000pt;}
.fs4_c02302{font-size:48.000000pt;}
.fs2_c02302{font-size:53.440000pt;}
.fs1_c02302{font-size:58.560000pt;}
.fs0_c02302{font-size:64.000000pt;}
.y0_c02302{bottom:0.000000pt;}
.y4_c02302{bottom:50.987067pt;}
.y3_c02302{bottom:69.387067pt;}
.y52_c02302{bottom:111.467067pt;}
.y50_c02302{bottom:116.987067pt;}
.y51_c02302{bottom:121.227067pt;}
.y4f_c02302{bottom:134.427067pt;}
.y4e_c02302{bottom:150.667067pt;}
.y4d_c02302{bottom:165.307067pt;}
.y4c_c02302{bottom:183.787067pt;}
.y4a_c02302{bottom:191.947067pt;}
.y4b_c02302{bottom:196.187200pt;}
.y49_c02302{bottom:209.387067pt;}
.y48_c02302{bottom:225.707067pt;}
.y47_c02302{bottom:240.347067pt;}
.y46_c02302{bottom:258.747067pt;}
.y45_c02302{bottom:266.907067pt;}
.y43_c02302{bottom:270.026667pt;}
.y44_c02302{bottom:271.227067pt;}
.y42_c02302{bottom:283.787067pt;}
.y40_c02302{bottom:286.906667pt;}
.y41_c02302{bottom:288.107067pt;}
.y3f_c02302{bottom:300.667067pt;}
.y3d_c02302{bottom:303.707467pt;}
.y3e_c02302{bottom:304.907067pt;}
.y3c_c02302{bottom:317.547067pt;}
.y3a_c02302{bottom:320.587600pt;}
.y3b_c02302{bottom:321.787067pt;}
.y39_c02302{bottom:334.427200pt;}
.y37_c02302{bottom:337.467067pt;}
.y38_c02302{bottom:338.667200pt;}
.y36_c02302{bottom:354.347067pt;}
.y34_c02302{bottom:368.107200pt;}
.y35_c02302{bottom:373.947067pt;}
.y33_c02302{bottom:387.147200pt;}
.y32_c02302{bottom:403.387067pt;}
.y31_c02302{bottom:418.027200pt;}
.y30_c02302{bottom:436.507067pt;}
.y2e_c02302{bottom:444.667467pt;}
.y2f_c02302{bottom:450.427067pt;}
.y2c_c02302{bottom:463.067467pt;}
.y2d_c02302{bottom:468.827067pt;}
.y2a_c02302{bottom:481.467467pt;}
.y2b_c02302{bottom:487.227067pt;}
.y28_c02302{bottom:499.867467pt;}
.y29_c02302{bottom:505.627067pt;}
.y26_c02302{bottom:518.267067pt;}
.y27_c02302{bottom:524.027067pt;}
.y25_c02302{bottom:536.667067pt;}
.y23_c02302{bottom:553.547467pt;}
.y24_c02302{bottom:559.307067pt;}
.y21_c02302{bottom:571.947067pt;}
.y22_c02302{bottom:577.707067pt;}
.y20_c02302{bottom:590.347067pt;}
.y1e_c02302{bottom:607.147067pt;}
.y1f_c02302{bottom:612.987067pt;}
.y1d_c02302{bottom:625.547067pt;}
.y1b_c02302{bottom:642.427067pt;}
.y1c_c02302{bottom:648.267067pt;}
.y1a_c02302{bottom:661.467067pt;}
.y19_c02302{bottom:677.707067pt;}
.y18_c02302{bottom:693.147200pt;}
.y17_c02302{bottom:711.067067pt;}
.y16_c02302{bottom:726.347067pt;}
.y15_c02302{bottom:744.266811pt;}
.y14_c02302{bottom:756.507067pt;}
.y13_c02302{bottom:770.027067pt;}
.y12_c02302{bottom:788.427067pt;}
.y11_c02302{bottom:806.827067pt;}
.y10_c02302{bottom:823.707067pt;}
.yf_c02302{bottom:840.907067pt;}
.ye_c02302{bottom:859.307067pt;}
.yd_c02302{bottom:877.707067pt;}
.yc_c02302{bottom:894.507067pt;}
.yb_c02302{bottom:911.387067pt;}
.ya_c02302{bottom:928.267067pt;}
.y9_c02302{bottom:945.147067pt;}
.y8_c02302{bottom:963.227067pt;}
.y7_c02302{bottom:978.907067pt;}
.y5_c02302{bottom:995.227067pt;}
.y6_c02302{bottom:995.707067pt;}
.y2_c02302{bottom:1042.347067pt;}
.y1_c02302{bottom:1060.587067pt;}
.hd_c02302{height:9.379219pt;}
.h9_c02302{height:37.801094pt;}
.ha_c02302{height:42.632812pt;}
.h5_c02302{height:47.464531pt;}
.h4_c02302{height:52.012031pt;}
.hc_c02302{height:54.761094pt;}
.hb_c02302{height:55.081094pt;}
.h2_c02302{height:56.156250pt;}
.h1_c02302{height:56.843750pt;}
.h6_c02302{height:57.756250pt;}
.h8_c02302{height:57.803750pt;}
.h7_c02302{height:57.804283pt;}
.h3_c02302{height:126.283750pt;}
.h0_c02302{height:1122.666667pt;}
.w1_c02302{width:793.333333pt;}
.w0_c02302{width:793.626667pt;}
.x0_c02302{left:0.000000pt;}
.x1_c02302{left:113.440000pt;}
.x3_c02302{left:120.560000pt;}
.xa_c02302{left:128.000000pt;}
.x7_c02302{left:131.280000pt;}
.xb_c02302{left:133.680000pt;}
.x8_c02302{left:136.960000pt;}
.x6_c02302{left:143.040000pt;}
.x9_c02302{left:196.000000pt;}
.x4_c02302{left:236.320000pt;}
.x5_c02302{left:239.600000pt;}
.x2_c02302{left:384.880000pt;}
.xc_c02302{left:663.840400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7716bcee0db6e51f026e9e1e.woff2')format("woff");}.ff1_c02303{font-family:ff1_c02303;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02303;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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);}
.v9_c02303{vertical-align:-20.880000px;}
.v4_c02303{vertical-align:-18.360000px;}
.v5_c02303{vertical-align:-16.560000px;}
.v8_c02303{vertical-align:-11.520000px;}
.v7_c02303{vertical-align:-5.400000px;}
.v2_c02303{vertical-align:-2.880000px;}
.v1_c02303{vertical-align:-1.440000px;}
.v0_c02303{vertical-align:0.000000px;}
.va_c02303{vertical-align:1.800000px;}
.v6_c02303{vertical-align:5.400000px;}
.v3_c02303{vertical-align:16.560000px;}
.ls3a_c02303{letter-spacing:-0.086184px;}
.ls42_c02303{letter-spacing:-0.078156px;}
.ls36_c02303{letter-spacing:-0.043200px;}
.ls38_c02303{letter-spacing:-0.019152px;}
.ls37_c02303{letter-spacing:-0.010800px;}
.ls34_c02303{letter-spacing:0.000000px;}
.ls17_c02303{letter-spacing:0.006012px;}
.ls1_c02303{letter-spacing:0.007200px;}
.ls2_c02303{letter-spacing:0.010800px;}
.ls5_c02303{letter-spacing:0.012636px;}
.ls16_c02303{letter-spacing:0.014400px;}
.ls15_c02303{letter-spacing:0.019152px;}
.ls1d_c02303{letter-spacing:0.019764px;}
.ls4_c02303{letter-spacing:0.028728px;}
.ls0_c02303{letter-spacing:0.028800px;}
.ls6_c02303{letter-spacing:0.032400px;}
.lsf_c02303{letter-spacing:0.036000px;}
.lsc_c02303{letter-spacing:0.037800px;}
.ls2f_c02303{letter-spacing:0.039528px;}
.ls3_c02303{letter-spacing:0.043092px;}
.lsb_c02303{letter-spacing:0.043200px;}
.ls10_c02303{letter-spacing:0.052668px;}
.ls2d_c02303{letter-spacing:0.052704px;}
.ls19_c02303{letter-spacing:0.059292px;}
.ls1b_c02303{letter-spacing:0.065880px;}
.ls2b_c02303{letter-spacing:0.067320px;}
.ls9_c02303{letter-spacing:0.076608px;}
.ls31_c02303{letter-spacing:0.079056px;}
.ls41_c02303{letter-spacing:0.081396px;}
.ls27_c02303{letter-spacing:0.092232px;}
.ls22_c02303{letter-spacing:0.105408px;}
.ls11_c02303{letter-spacing:0.114912px;}
.ls13_c02303{letter-spacing:0.124488px;}
.ls14_c02303{letter-spacing:0.134064px;}
.ls26_c02303{letter-spacing:0.138348px;}
.ls12_c02303{letter-spacing:0.138852px;}
.ls35_c02303{letter-spacing:0.151200px;}
.ls21_c02303{letter-spacing:0.151524px;}
.ls7_c02303{letter-spacing:0.158112px;}
.lse_c02303{letter-spacing:0.162792px;}
.ls39_c02303{letter-spacing:0.167580px;}
.ls32_c02303{letter-spacing:0.177228px;}
.ls1f_c02303{letter-spacing:0.177876px;}
.ls18_c02303{letter-spacing:0.180360px;}
.lsa_c02303{letter-spacing:0.181944px;}
.ls2e_c02303{letter-spacing:78.840000px;}
.ls29_c02303{letter-spacing:88.560000px;}
.ls8_c02303{letter-spacing:110.880000px;}
.ls30_c02303{letter-spacing:111.960000px;}
.ls20_c02303{letter-spacing:121.320000px;}
.ls2c_c02303{letter-spacing:141.480000px;}
.ls3c_c02303{letter-spacing:142.381800px;}
.ls25_c02303{letter-spacing:154.440000px;}
.ls40_c02303{letter-spacing:155.698200px;}
.ls3b_c02303{letter-spacing:156.060000px;}
.ls3f_c02303{letter-spacing:158.310432px;}
.ls3e_c02303{letter-spacing:177.660000px;}
.lsd_c02303{letter-spacing:200.430000px;}
.ls3d_c02303{letter-spacing:200.430468px;}
.ls23_c02303{letter-spacing:261.360000px;}
.ls1e_c02303{letter-spacing:294.840000px;}
.ls1a_c02303{letter-spacing:393.480000px;}
.ls1c_c02303{letter-spacing:404.640000px;}
.ls24_c02303{letter-spacing:410.040000px;}
.ls28_c02303{letter-spacing:475.920000px;}
.ls43_c02303{letter-spacing:1018.980000px;}
.ls33_c02303{letter-spacing:1191.780000px;}
.ls2a_c02303{letter-spacing:2004.480000px;}
.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;}
}
.ws2_c02303{word-spacing:-16.647876px;}
.ws0_c02303{word-spacing:-16.628112px;}
.ws7_c02303{word-spacing:-16.562232px;}
.ws5_c02303{word-spacing:-16.529292px;}
.ws9_c02303{word-spacing:-16.489764px;}
.wse_c02303{word-spacing:-0.272916px;}
.ws10_c02303{word-spacing:-0.253764px;}
.ws14_c02303{word-spacing:-0.229824px;}
.ws17_c02303{word-spacing:-0.225036px;}
.ws16_c02303{word-spacing:-0.215460px;}
.ws13_c02303{word-spacing:-0.205884px;}
.ws18_c02303{word-spacing:-0.172368px;}
.ws12_c02303{word-spacing:-0.119700px;}
.ws19_c02303{word-spacing:-0.110124px;}
.wsd_c02303{word-spacing:-0.101088px;}
.ws1b_c02303{word-spacing:-0.090180px;}
.wsb_c02303{word-spacing:-0.086400px;}
.ws11_c02303{word-spacing:-0.079200px;}
.ws15_c02303{word-spacing:-0.064800px;}
.ws1a_c02303{word-spacing:-0.014400px;}
.ws1f_c02303{word-spacing:-0.013176px;}
.wsc_c02303{word-spacing:-0.007200px;}
.wsa_c02303{word-spacing:0.000000px;}
.ws22_c02303{word-spacing:0.013176px;}
.ws1d_c02303{word-spacing:0.026352px;}
.ws1c_c02303{word-spacing:0.032940px;}
.ws20_c02303{word-spacing:0.039528px;}
.ws21_c02303{word-spacing:0.052704px;}
.ws1e_c02303{word-spacing:0.072468px;}
.ws1_c02303{word-spacing:58.969440px;}
.ws8_c02303{word-spacing:132.761376px;}
.ws3_c02303{word-spacing:132.800904px;}
.ws4_c02303{word-spacing:165.563028px;}
.ws6_c02303{word-spacing:198.707256px;}
.wsf_c02303{word-spacing:241.336800px;}
._15_c02303{margin-left:-85.006800px;}
._17_c02303{margin-left:-79.153200px;}
._18_c02303{margin-left:-46.801800px;}
._16_c02303{margin-left:-41.401800px;}
._1d_c02303{margin-left:-17.998200px;}
._1a_c02303{margin-left:-1.188000px;}
._1e_c02303{width:1.080000px;}
._24_c02303{width:7.203600px;}
._25_c02303{width:38.880000px;}
._23_c02303{width:43.199136px;}
._c_c02303{width:50.937552px;}
._10_c02303{width:62.053200px;}
._e_c02303{width:65.340000px;}
._20_c02303{width:69.846876px;}
._8_c02303{width:72.964440px;}
._9_c02303{width:76.950180px;}
._13_c02303{width:79.020000px;}
._12_c02303{width:81.900000px;}
._1_c02303{width:83.754000px;}
._0_c02303{width:87.861600px;}
._a_c02303{width:90.518400px;}
._1f_c02303{width:96.225300px;}
._b_c02303{width:101.318400px;}
._1c_c02303{width:102.358728px;}
._1b_c02303{width:105.699420px;}
._27_c02303{width:108.075600px;}
._14_c02303{width:109.234296px;}
._26_c02303{width:111.360168px;}
._5_c02303{width:114.216120px;}
._3_c02303{width:115.380000px;}
._4_c02303{width:118.378944px;}
._f_c02303{width:119.664000px;}
._2_c02303{width:121.860000px;}
._21_c02303{width:124.306920px;}
._11_c02303{width:128.619648px;}
._28_c02303{width:132.887016px;}
._19_c02303{width:146.226384px;}
._7_c02303{width:148.307688px;}
._6_c02303{width:152.515404px;}
._29_c02303{width:175.204656px;}
._d_c02303{width:201.014208px;}
._2a_c02303{width:229.075776px;}
._22_c02303{width:240.984000px;}
._31_c02303{width:461.897856px;}
._2d_c02303{width:497.921040px;}
._2e_c02303{width:654.399216px;}
._2c_c02303{width:662.232348px;}
._32_c02303{width:709.000560px;}
._33_c02303{width:714.620124px;}
._34_c02303{width:722.426904px;}
._2b_c02303{width:823.117896px;}
._30_c02303{width:1006.081992px;}
._2f_c02303{width:1143.797544px;}
.fc0_c02303{color:rgb(0,0,0);}
.fs5_c02303{font-size:11.880000px;}
.fs3_c02303{font-size:42.120000px;}
.fs2_c02303{font-size:47.880000px;}
.fs1_c02303{font-size:54.000000px;}
.fs6_c02303{font-size:60.120000px;}
.fs4_c02303{font-size:65.880000px;}
.fs0_c02303{font-size:72.000000px;}
.y0_c02303{bottom:0.000000px;}
.y4_c02303{bottom:57.360450px;}
.y3_c02303{bottom:78.060450px;}
.y49_c02303{bottom:118.920900px;}
.y48_c02303{bottom:134.220450px;}
.y47_c02303{bottom:149.700900px;}
.y46_c02303{bottom:165.270450px;}
.y45_c02303{bottom:181.830450px;}
.y44_c02303{bottom:200.820450px;}
.y43_c02303{bottom:219.720450px;}
.y42_c02303{bottom:238.710600px;}
.y41_c02303{bottom:257.700450px;}
.y40_c02303{bottom:276.690450px;}
.y3f_c02303{bottom:295.680450px;}
.y3e_c02303{bottom:314.580450px;}
.y3d_c02303{bottom:333.570450px;}
.y3c_c02303{bottom:352.560450px;}
.y3b_c02303{bottom:371.550450px;}
.y3a_c02303{bottom:391.170450px;}
.y39_c02303{bottom:414.300000px;}
.y38_c02303{bottom:429.780450px;}
.y37_c02303{bottom:445.350000px;}
.y36_c02303{bottom:460.830450px;}
.y35_c02303{bottom:478.560450px;}
.y34_c02303{bottom:497.550450px;}
.y33_c02303{bottom:516.540600px;}
.y32_c02303{bottom:535.440450px;}
.y31_c02303{bottom:554.430450px;}
.y30_c02303{bottom:575.130450px;}
.y2f_c02303{bottom:595.470450px;}
.y2e_c02303{bottom:613.740450px;}
.y2d_c02303{bottom:638.040450px;}
.y2c_c02303{bottom:658.740450px;}
.y2b_c02303{bottom:679.440450px;}
.y2a_c02303{bottom:700.680450px;}
.y29_c02303{bottom:721.200000px;}
.y28_c02303{bottom:736.680450px;}
.y27_c02303{bottom:752.250000px;}
.y26_c02303{bottom:767.730450px;}
.y24_c02303{bottom:783.660000px;}
.y25_c02303{bottom:788.430450px;}
.y22_c02303{bottom:802.650450px;}
.y23_c02303{bottom:807.420450px;}
.y20_c02303{bottom:821.550000px;}
.y21_c02303{bottom:826.410450px;}
.y1e_c02303{bottom:840.540000px;}
.y1f_c02303{bottom:845.400450px;}
.y1c_c02303{bottom:859.530450px;}
.y1d_c02303{bottom:864.300450px;}
.y1b_c02303{bottom:879.150450px;}
.y1a_c02303{bottom:897.510450px;}
.y19_c02303{bottom:913.980450px;}
.y18_c02303{bottom:934.770450px;}
.y15_c02303{bottom:943.950450px;}
.y17_c02303{bottom:944.220450px;}
.y16_c02303{bottom:948.720450px;}
.y12_c02303{bottom:962.850450px;}
.y14_c02303{bottom:963.120450px;}
.y13_c02303{bottom:967.710450px;}
.y11_c02303{bottom:982.470450px;}
.y10_c02303{bottom:1000.830450px;}
.yf_c02303{bottom:1017.300450px;}
.ye_c02303{bottom:1038.090450px;}
.yc_c02303{bottom:1047.270000px;}
.yd_c02303{bottom:1052.040450px;}
.ya_c02303{bottom:1066.260450px;}
.yb_c02303{bottom:1071.030450px;}
.y8_c02303{bottom:1085.160450px;}
.y9_c02303{bottom:1090.020450px;}
.y7_c02303{bottom:1104.870450px;}
.y6_c02303{bottom:1123.140450px;}
.y5_c02303{bottom:1139.610450px;}
.y2_c02303{bottom:1172.640450px;}
.y1_c02303{bottom:1193.160450px;}
.h5_c02303{height:10.551621px;}
.h4_c02303{height:42.526230px;}
.h6_c02303{height:47.381836px;}
.h3_c02303{height:47.961914px;}
.h7_c02303{height:53.397598px;}
.h2_c02303{height:63.175781px;}
.ha_c02303{height:63.535181px;}
.h9_c02303{height:63.535781px;}
.h1_c02303{height:63.949219px;}
.h8_c02303{height:64.975781px;}
.h0_c02303{height:1263.000000px;}
.w1_c02303{width:892.500000px;}
.w0_c02303{width:892.830000px;}
.x0_c02303{left:0.000000px;}
.x1_c02303{left:127.620000px;}
.x3_c02303{left:135.630000px;}
.x4_c02303{left:144.090000px;}
.x5_c02303{left:150.480000px;}
.x7_c02303{left:165.330000px;}
.x6_c02303{left:220.500000px;}
.x2_c02303{left:432.990000px;}
.x8_c02303{left:589.770000px;}
@media print{
.v9_c02303{vertical-align:-18.560000pt;}
.v4_c02303{vertical-align:-16.320000pt;}
.v5_c02303{vertical-align:-14.720000pt;}
.v8_c02303{vertical-align:-10.240000pt;}
.v7_c02303{vertical-align:-4.800000pt;}
.v2_c02303{vertical-align:-2.560000pt;}
.v1_c02303{vertical-align:-1.280000pt;}
.v0_c02303{vertical-align:0.000000pt;}
.va_c02303{vertical-align:1.600000pt;}
.v6_c02303{vertical-align:4.800000pt;}
.v3_c02303{vertical-align:14.720000pt;}
.ls3a_c02303{letter-spacing:-0.076608pt;}
.ls42_c02303{letter-spacing:-0.069472pt;}
.ls36_c02303{letter-spacing:-0.038400pt;}
.ls38_c02303{letter-spacing:-0.017024pt;}
.ls37_c02303{letter-spacing:-0.009600pt;}
.ls34_c02303{letter-spacing:0.000000pt;}
.ls17_c02303{letter-spacing:0.005344pt;}
.ls1_c02303{letter-spacing:0.006400pt;}
.ls2_c02303{letter-spacing:0.009600pt;}
.ls5_c02303{letter-spacing:0.011232pt;}
.ls16_c02303{letter-spacing:0.012800pt;}
.ls15_c02303{letter-spacing:0.017024pt;}
.ls1d_c02303{letter-spacing:0.017568pt;}
.ls4_c02303{letter-spacing:0.025536pt;}
.ls0_c02303{letter-spacing:0.025600pt;}
.ls6_c02303{letter-spacing:0.028800pt;}
.lsf_c02303{letter-spacing:0.032000pt;}
.lsc_c02303{letter-spacing:0.033600pt;}
.ls2f_c02303{letter-spacing:0.035136pt;}
.ls3_c02303{letter-spacing:0.038304pt;}
.lsb_c02303{letter-spacing:0.038400pt;}
.ls10_c02303{letter-spacing:0.046816pt;}
.ls2d_c02303{letter-spacing:0.046848pt;}
.ls19_c02303{letter-spacing:0.052704pt;}
.ls1b_c02303{letter-spacing:0.058560pt;}
.ls2b_c02303{letter-spacing:0.059840pt;}
.ls9_c02303{letter-spacing:0.068096pt;}
.ls31_c02303{letter-spacing:0.070272pt;}
.ls41_c02303{letter-spacing:0.072352pt;}
.ls27_c02303{letter-spacing:0.081984pt;}
.ls22_c02303{letter-spacing:0.093696pt;}
.ls11_c02303{letter-spacing:0.102144pt;}
.ls13_c02303{letter-spacing:0.110656pt;}
.ls14_c02303{letter-spacing:0.119168pt;}
.ls26_c02303{letter-spacing:0.122976pt;}
.ls12_c02303{letter-spacing:0.123424pt;}
.ls35_c02303{letter-spacing:0.134400pt;}
.ls21_c02303{letter-spacing:0.134688pt;}
.ls7_c02303{letter-spacing:0.140544pt;}
.lse_c02303{letter-spacing:0.144704pt;}
.ls39_c02303{letter-spacing:0.148960pt;}
.ls32_c02303{letter-spacing:0.157536pt;}
.ls1f_c02303{letter-spacing:0.158112pt;}
.ls18_c02303{letter-spacing:0.160320pt;}
.lsa_c02303{letter-spacing:0.161728pt;}
.ls2e_c02303{letter-spacing:70.080000pt;}
.ls29_c02303{letter-spacing:78.720000pt;}
.ls8_c02303{letter-spacing:98.560000pt;}
.ls30_c02303{letter-spacing:99.520000pt;}
.ls20_c02303{letter-spacing:107.840000pt;}
.ls2c_c02303{letter-spacing:125.760000pt;}
.ls3c_c02303{letter-spacing:126.561600pt;}
.ls25_c02303{letter-spacing:137.280000pt;}
.ls40_c02303{letter-spacing:138.398400pt;}
.ls3b_c02303{letter-spacing:138.720000pt;}
.ls3f_c02303{letter-spacing:140.720384pt;}
.ls3e_c02303{letter-spacing:157.920000pt;}
.lsd_c02303{letter-spacing:178.160000pt;}
.ls3d_c02303{letter-spacing:178.160416pt;}
.ls23_c02303{letter-spacing:232.320000pt;}
.ls1e_c02303{letter-spacing:262.080000pt;}
.ls1a_c02303{letter-spacing:349.760000pt;}
.ls1c_c02303{letter-spacing:359.680000pt;}
.ls24_c02303{letter-spacing:364.480000pt;}
.ls28_c02303{letter-spacing:423.040000pt;}
.ls43_c02303{letter-spacing:905.760000pt;}
.ls33_c02303{letter-spacing:1059.360000pt;}
.ls2a_c02303{letter-spacing:1781.760000pt;}
.ws2_c02303{word-spacing:-14.798112pt;}
.ws0_c02303{word-spacing:-14.780544pt;}
.ws7_c02303{word-spacing:-14.721984pt;}
.ws5_c02303{word-spacing:-14.692704pt;}
.ws9_c02303{word-spacing:-14.657568pt;}
.wse_c02303{word-spacing:-0.242592pt;}
.ws10_c02303{word-spacing:-0.225568pt;}
.ws14_c02303{word-spacing:-0.204288pt;}
.ws17_c02303{word-spacing:-0.200032pt;}
.ws16_c02303{word-spacing:-0.191520pt;}
.ws13_c02303{word-spacing:-0.183008pt;}
.ws18_c02303{word-spacing:-0.153216pt;}
.ws12_c02303{word-spacing:-0.106400pt;}
.ws19_c02303{word-spacing:-0.097888pt;}
.wsd_c02303{word-spacing:-0.089856pt;}
.ws1b_c02303{word-spacing:-0.080160pt;}
.wsb_c02303{word-spacing:-0.076800pt;}
.ws11_c02303{word-spacing:-0.070400pt;}
.ws15_c02303{word-spacing:-0.057600pt;}
.ws1a_c02303{word-spacing:-0.012800pt;}
.ws1f_c02303{word-spacing:-0.011712pt;}
.wsc_c02303{word-spacing:-0.006400pt;}
.wsa_c02303{word-spacing:0.000000pt;}
.ws22_c02303{word-spacing:0.011712pt;}
.ws1d_c02303{word-spacing:0.023424pt;}
.ws1c_c02303{word-spacing:0.029280pt;}
.ws20_c02303{word-spacing:0.035136pt;}
.ws21_c02303{word-spacing:0.046848pt;}
.ws1e_c02303{word-spacing:0.064416pt;}
.ws1_c02303{word-spacing:52.417280pt;}
.ws8_c02303{word-spacing:118.010112pt;}
.ws3_c02303{word-spacing:118.045248pt;}
.ws4_c02303{word-spacing:147.167136pt;}
.ws6_c02303{word-spacing:176.628672pt;}
.wsf_c02303{word-spacing:214.521600pt;}
._15_c02303{margin-left:-75.561600pt;}
._17_c02303{margin-left:-70.358400pt;}
._18_c02303{margin-left:-41.601600pt;}
._16_c02303{margin-left:-36.801600pt;}
._1d_c02303{margin-left:-15.998400pt;}
._1a_c02303{margin-left:-1.056000pt;}
._1e_c02303{width:0.960000pt;}
._24_c02303{width:6.403200pt;}
._25_c02303{width:34.560000pt;}
._23_c02303{width:38.399232pt;}
._c_c02303{width:45.277824pt;}
._10_c02303{width:55.158400pt;}
._e_c02303{width:58.080000pt;}
._20_c02303{width:62.086112pt;}
._8_c02303{width:64.857280pt;}
._9_c02303{width:68.400160pt;}
._13_c02303{width:70.240000pt;}
._12_c02303{width:72.800000pt;}
._1_c02303{width:74.448000pt;}
._0_c02303{width:78.099200pt;}
._a_c02303{width:80.460800pt;}
._1f_c02303{width:85.533600pt;}
._b_c02303{width:90.060800pt;}
._1c_c02303{width:90.985536pt;}
._1b_c02303{width:93.955040pt;}
._27_c02303{width:96.067200pt;}
._14_c02303{width:97.097152pt;}
._26_c02303{width:98.986816pt;}
._5_c02303{width:101.525440pt;}
._3_c02303{width:102.560000pt;}
._4_c02303{width:105.225728pt;}
._f_c02303{width:106.368000pt;}
._2_c02303{width:108.320000pt;}
._21_c02303{width:110.495040pt;}
._11_c02303{width:114.328576pt;}
._28_c02303{width:118.121792pt;}
._19_c02303{width:129.979008pt;}
._7_c02303{width:131.829056pt;}
._6_c02303{width:135.569248pt;}
._29_c02303{width:155.737472pt;}
._d_c02303{width:178.679296pt;}
._2a_c02303{width:203.622912pt;}
._22_c02303{width:214.208000pt;}
._31_c02303{width:410.575872pt;}
._2d_c02303{width:442.596480pt;}
._2e_c02303{width:581.688192pt;}
._2c_c02303{width:588.650976pt;}
._32_c02303{width:630.222720pt;}
._33_c02303{width:635.217888pt;}
._34_c02303{width:642.157248pt;}
._2b_c02303{width:731.660352pt;}
._30_c02303{width:894.295104pt;}
._2f_c02303{width:1016.708928pt;}
.fs5_c02303{font-size:10.560000pt;}
.fs3_c02303{font-size:37.440000pt;}
.fs2_c02303{font-size:42.560000pt;}
.fs1_c02303{font-size:48.000000pt;}
.fs6_c02303{font-size:53.440000pt;}
.fs4_c02303{font-size:58.560000pt;}
.fs0_c02303{font-size:64.000000pt;}
.y0_c02303{bottom:0.000000pt;}
.y4_c02303{bottom:50.987067pt;}
.y3_c02303{bottom:69.387067pt;}
.y49_c02303{bottom:105.707467pt;}
.y48_c02303{bottom:119.307067pt;}
.y47_c02303{bottom:133.067467pt;}
.y46_c02303{bottom:146.907067pt;}
.y45_c02303{bottom:161.627067pt;}
.y44_c02303{bottom:178.507067pt;}
.y43_c02303{bottom:195.307067pt;}
.y42_c02303{bottom:212.187200pt;}
.y41_c02303{bottom:229.067067pt;}
.y40_c02303{bottom:245.947067pt;}
.y3f_c02303{bottom:262.827067pt;}
.y3e_c02303{bottom:279.627067pt;}
.y3d_c02303{bottom:296.507067pt;}
.y3c_c02303{bottom:313.387067pt;}
.y3b_c02303{bottom:330.267067pt;}
.y3a_c02303{bottom:347.707067pt;}
.y39_c02303{bottom:368.266667pt;}
.y38_c02303{bottom:382.027067pt;}
.y37_c02303{bottom:395.866667pt;}
.y36_c02303{bottom:409.627067pt;}
.y35_c02303{bottom:425.387067pt;}
.y34_c02303{bottom:442.267067pt;}
.y33_c02303{bottom:459.147200pt;}
.y32_c02303{bottom:475.947067pt;}
.y31_c02303{bottom:492.827067pt;}
.y30_c02303{bottom:511.227067pt;}
.y2f_c02303{bottom:529.307067pt;}
.y2e_c02303{bottom:545.547067pt;}
.y2d_c02303{bottom:567.147067pt;}
.y2c_c02303{bottom:585.547067pt;}
.y2b_c02303{bottom:603.947067pt;}
.y2a_c02303{bottom:622.827067pt;}
.y29_c02303{bottom:641.066667pt;}
.y28_c02303{bottom:654.827067pt;}
.y27_c02303{bottom:668.666667pt;}
.y26_c02303{bottom:682.427067pt;}
.y24_c02303{bottom:696.586667pt;}
.y25_c02303{bottom:700.827067pt;}
.y22_c02303{bottom:713.467067pt;}
.y23_c02303{bottom:717.707067pt;}
.y20_c02303{bottom:730.266667pt;}
.y21_c02303{bottom:734.587067pt;}
.y1e_c02303{bottom:747.146667pt;}
.y1f_c02303{bottom:751.467067pt;}
.y1c_c02303{bottom:764.027067pt;}
.y1d_c02303{bottom:768.267067pt;}
.y1b_c02303{bottom:781.467067pt;}
.y1a_c02303{bottom:797.787067pt;}
.y19_c02303{bottom:812.427067pt;}
.y18_c02303{bottom:830.907067pt;}
.y15_c02303{bottom:839.067067pt;}
.y17_c02303{bottom:839.307067pt;}
.y16_c02303{bottom:843.307067pt;}
.y12_c02303{bottom:855.867067pt;}
.y14_c02303{bottom:856.107067pt;}
.y13_c02303{bottom:860.187067pt;}
.y11_c02303{bottom:873.307067pt;}
.y10_c02303{bottom:889.627067pt;}
.yf_c02303{bottom:904.267067pt;}
.ye_c02303{bottom:922.747067pt;}
.yc_c02303{bottom:930.906667pt;}
.yd_c02303{bottom:935.147067pt;}
.ya_c02303{bottom:947.787067pt;}
.yb_c02303{bottom:952.027067pt;}
.y8_c02303{bottom:964.587067pt;}
.y9_c02303{bottom:968.907067pt;}
.y7_c02303{bottom:982.107067pt;}
.y6_c02303{bottom:998.347067pt;}
.y5_c02303{bottom:1012.987067pt;}
.y2_c02303{bottom:1042.347067pt;}
.y1_c02303{bottom:1060.587067pt;}
.h5_c02303{height:9.379219pt;}
.h4_c02303{height:37.801094pt;}
.h6_c02303{height:42.117188pt;}
.h3_c02303{height:42.632812pt;}
.h7_c02303{height:47.464531pt;}
.h2_c02303{height:56.156250pt;}
.ha_c02303{height:56.475717pt;}
.h9_c02303{height:56.476250pt;}
.h1_c02303{height:56.843750pt;}
.h8_c02303{height:57.756250pt;}
.h0_c02303{height:1122.666667pt;}
.w1_c02303{width:793.333333pt;}
.w0_c02303{width:793.626667pt;}
.x0_c02303{left:0.000000pt;}
.x1_c02303{left:113.440000pt;}
.x3_c02303{left:120.560000pt;}
.x4_c02303{left:128.080000pt;}
.x5_c02303{left:133.760000pt;}
.x7_c02303{left:146.960000pt;}
.x6_c02303{left:196.000000pt;}
.x2_c02303{left:384.880000pt;}
.x8_c02303{left:524.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_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_ab84c5e6d02614e8cc97d595.woff2')format("woff");}.ff1_c02304{font-family:ff1_c02304;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02304;src:url('chunks/assets/font_cfaaa363b32fc4f45ff064a4.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;}
.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:53.640000px;}
.ls18_c02304{letter-spacing:-0.086184px;}
.ls1b_c02304{letter-spacing:-0.059292px;}
.ls19_c02304{letter-spacing:-0.038304px;}
.ls17_c02304{letter-spacing:-0.014364px;}
.ls16_c02304{letter-spacing:0.000000px;}
.ls1_c02304{letter-spacing:0.007200px;}
.ls4_c02304{letter-spacing:0.019152px;}
.lsf_c02304{letter-spacing:0.027000px;}
.ls0_c02304{letter-spacing:0.028800px;}
.ls1a_c02304{letter-spacing:0.043092px;}
.ls12_c02304{letter-spacing:0.046116px;}
.lsc_c02304{letter-spacing:0.052704px;}
.ls2_c02304{letter-spacing:0.064800px;}
.lse_c02304{letter-spacing:0.079056px;}
.ls5_c02304{letter-spacing:0.105408px;}
.ls3_c02304{letter-spacing:0.110124px;}
.ls10_c02304{letter-spacing:0.138348px;}
.ls8_c02304{letter-spacing:0.151524px;}
.ls9_c02304{letter-spacing:0.158112px;}
.ls7_c02304{letter-spacing:0.177876px;}
.ls15_c02304{letter-spacing:64.080000px;}
.lsa_c02304{letter-spacing:97.200000px;}
.lsb_c02304{letter-spacing:113.760000px;}
.ls14_c02304{letter-spacing:115.737984px;}
.ls11_c02304{letter-spacing:406.800000px;}
.ls13_c02304{letter-spacing:481.680000px;}
.lsd_c02304{letter-spacing:572.760000px;}
.ls6_c02304{letter-spacing:635.040000px;}
.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;}
}
.ws4_c02304{word-spacing:-16.647876px;}
.ws3_c02304{word-spacing:-16.628112px;}
.wsa_c02304{word-spacing:-16.608348px;}
.ws11_c02304{word-spacing:-0.115200px;}
.ws10_c02304{word-spacing:-0.086400px;}
.ws13_c02304{word-spacing:-0.013176px;}
.ws12_c02304{word-spacing:-0.007200px;}
.wsf_c02304{word-spacing:0.000000px;}
.ws15_c02304{word-spacing:0.013176px;}
.ws14_c02304{word-spacing:0.039528px;}
.ws17_c02304{word-spacing:0.046116px;}
.ws16_c02304{word-spacing:0.151200px;}
.wsc_c02304{word-spacing:66.150108px;}
.ws5_c02304{word-spacing:79.836372px;}
.wsb_c02304{word-spacing:79.836624px;}
.ws0_c02304{word-spacing:79.838496px;}
.ws2_c02304{word-spacing:80.235756px;}
.ws8_c02304{word-spacing:80.235864px;}
.wsd_c02304{word-spacing:80.237988px;}
.ws7_c02304{word-spacing:98.556480px;}
.ws1_c02304{word-spacing:98.602596px;}
.ws9_c02304{word-spacing:113.355756px;}
.ws6_c02304{word-spacing:129.516624px;}
.wse_c02304{word-spacing:162.276624px;}
._2_c02304{margin-left:-1.054080px;}
._1_c02304{width:77.550660px;}
._5_c02304{width:146.188512px;}
._9_c02304{width:152.670312px;}
._7_c02304{width:179.375940px;}
._6_c02304{width:185.656428px;}
._a_c02304{width:204.017184px;}
._4_c02304{width:215.026848px;}
._3_c02304{width:240.587172px;}
._8_c02304{width:378.302724px;}
._0_c02304{width:624.916800px;}
.fc0_c02304{color:rgb(0,0,0);}
.fs2_c02304{font-size:47.880000px;}
.fs1_c02304{font-size:54.000000px;}
.fs3_c02304{font-size:65.880000px;}
.fs0_c02304{font-size:72.000000px;}
.y0_c02304{bottom:0.000000px;}
.y4_c02304{bottom:57.360450px;}
.y3_c02304{bottom:78.060450px;}
.y45_c02304{bottom:118.470000px;}
.y44_c02304{bottom:133.950450px;}
.y43_c02304{bottom:149.520000px;}
.y42_c02304{bottom:165.000450px;}
.y41_c02304{bottom:180.570000px;}
.y40_c02304{bottom:196.050450px;}
.y3f_c02304{bottom:211.620000px;}
.y3e_c02304{bottom:227.100450px;}
.y3d_c02304{bottom:242.670000px;}
.y3c_c02304{bottom:258.150450px;}
.y3b_c02304{bottom:273.720000px;}
.y3a_c02304{bottom:289.200450px;}
.y39_c02304{bottom:304.770000px;}
.y38_c02304{bottom:320.250450px;}
.y37_c02304{bottom:335.820000px;}
.y36_c02304{bottom:351.300450px;}
.y35_c02304{bottom:366.870000px;}
.y34_c02304{bottom:382.350450px;}
.y33_c02304{bottom:397.920000px;}
.y32_c02304{bottom:413.400450px;}
.y31_c02304{bottom:428.970000px;}
.y30_c02304{bottom:444.450450px;}
.y2f_c02304{bottom:459.930900px;}
.y2e_c02304{bottom:475.500450px;}
.y2d_c02304{bottom:490.980900px;}
.y2c_c02304{bottom:506.550450px;}
.y2b_c02304{bottom:522.030900px;}
.y2a_c02304{bottom:537.600450px;}
.y29_c02304{bottom:553.080900px;}
.y28_c02304{bottom:568.650450px;}
.y27_c02304{bottom:584.130900px;}
.y26_c02304{bottom:599.700450px;}
.y25_c02304{bottom:615.180900px;}
.y24_c02304{bottom:630.750450px;}
.y23_c02304{bottom:646.230900px;}
.y22_c02304{bottom:661.800450px;}
.y21_c02304{bottom:677.280900px;}
.y20_c02304{bottom:692.850450px;}
.y1f_c02304{bottom:708.330900px;}
.y1e_c02304{bottom:723.900450px;}
.y1d_c02304{bottom:739.380900px;}
.y1c_c02304{bottom:754.950450px;}
.y1b_c02304{bottom:770.430900px;}
.y1a_c02304{bottom:786.000450px;}
.y19_c02304{bottom:801.480900px;}
.y18_c02304{bottom:817.050450px;}
.y17_c02304{bottom:832.530900px;}
.y16_c02304{bottom:848.100450px;}
.y15_c02304{bottom:864.660450px;}
.y14_c02304{bottom:883.560450px;}
.y13_c02304{bottom:902.550450px;}
.y12_c02304{bottom:921.540600px;}
.y11_c02304{bottom:940.530450px;}
.y10_c02304{bottom:959.520450px;}
.yf_c02304{bottom:979.230450px;}
.ye_c02304{bottom:998.220450px;}
.yd_c02304{bottom:1017.120450px;}
.yc_c02304{bottom:1036.110450px;}
.ya_c02304{bottom:1054.110450px;}
.y9_c02304{bottom:1054.470450px;}
.yb_c02304{bottom:1067.880450px;}
.y8_c02304{bottom:1083.360450px;}
.y7_c02304{bottom:1106.490900px;}
.y6_c02304{bottom:1122.060450px;}
.y5_c02304{bottom:1139.250450px;}
.y2_c02304{bottom:1172.640450px;}
.y1_c02304{bottom:1193.160450px;}
.h5_c02304{height:42.526230px;}
.h3_c02304{height:47.961914px;}
.h2_c02304{height:63.175781px;}
.h1_c02304{height:63.949219px;}
.h4_c02304{height:96.166230px;}
.h0_c02304{height:1263.000000px;}
.w1_c02304{width:892.500000px;}
.w0_c02304{width:892.830000px;}
.x0_c02304{left:0.000000px;}
.x1_c02304{left:127.620000px;}
.x3_c02304{left:135.630000px;}
.x4_c02304{left:276.840000px;}
.x2_c02304{left:432.990000px;}
.x5_c02304{left:496.080000px;}
.x6_c02304{left:536.490000px;}
.x7_c02304{left:541.530000px;}
.x8_c02304{left:583.200000px;}
.x9_c02304{left:591.750000px;}
.xa_c02304{left:630.090000px;}
.xb_c02304{left:679.410000px;}
.xc_c02304{left:726.390000px;}
@media print{
.v0_c02304{vertical-align:0.000000pt;}
.v1_c02304{vertical-align:47.680000pt;}
.ls18_c02304{letter-spacing:-0.076608pt;}
.ls1b_c02304{letter-spacing:-0.052704pt;}
.ls19_c02304{letter-spacing:-0.034048pt;}
.ls17_c02304{letter-spacing:-0.012768pt;}
.ls16_c02304{letter-spacing:0.000000pt;}
.ls1_c02304{letter-spacing:0.006400pt;}
.ls4_c02304{letter-spacing:0.017024pt;}
.lsf_c02304{letter-spacing:0.024000pt;}
.ls0_c02304{letter-spacing:0.025600pt;}
.ls1a_c02304{letter-spacing:0.038304pt;}
.ls12_c02304{letter-spacing:0.040992pt;}
.lsc_c02304{letter-spacing:0.046848pt;}
.ls2_c02304{letter-spacing:0.057600pt;}
.lse_c02304{letter-spacing:0.070272pt;}
.ls5_c02304{letter-spacing:0.093696pt;}
.ls3_c02304{letter-spacing:0.097888pt;}
.ls10_c02304{letter-spacing:0.122976pt;}
.ls8_c02304{letter-spacing:0.134688pt;}
.ls9_c02304{letter-spacing:0.140544pt;}
.ls7_c02304{letter-spacing:0.158112pt;}
.ls15_c02304{letter-spacing:56.960000pt;}
.lsa_c02304{letter-spacing:86.400000pt;}
.lsb_c02304{letter-spacing:101.120000pt;}
.ls14_c02304{letter-spacing:102.878208pt;}
.ls11_c02304{letter-spacing:361.600000pt;}
.ls13_c02304{letter-spacing:428.160000pt;}
.lsd_c02304{letter-spacing:509.120000pt;}
.ls6_c02304{letter-spacing:564.480000pt;}
.ws4_c02304{word-spacing:-14.798112pt;}
.ws3_c02304{word-spacing:-14.780544pt;}
.wsa_c02304{word-spacing:-14.762976pt;}
.ws11_c02304{word-spacing:-0.102400pt;}
.ws10_c02304{word-spacing:-0.076800pt;}
.ws13_c02304{word-spacing:-0.011712pt;}
.ws12_c02304{word-spacing:-0.006400pt;}
.wsf_c02304{word-spacing:0.000000pt;}
.ws15_c02304{word-spacing:0.011712pt;}
.ws14_c02304{word-spacing:0.035136pt;}
.ws17_c02304{word-spacing:0.040992pt;}
.ws16_c02304{word-spacing:0.134400pt;}
.wsc_c02304{word-spacing:58.800096pt;}
.ws5_c02304{word-spacing:70.965664pt;}
.wsb_c02304{word-spacing:70.965888pt;}
.ws0_c02304{word-spacing:70.967552pt;}
.ws2_c02304{word-spacing:71.320672pt;}
.ws8_c02304{word-spacing:71.320768pt;}
.wsd_c02304{word-spacing:71.322656pt;}
.ws7_c02304{word-spacing:87.605760pt;}
.ws1_c02304{word-spacing:87.646752pt;}
.ws9_c02304{word-spacing:100.760672pt;}
.ws6_c02304{word-spacing:115.125888pt;}
.wse_c02304{word-spacing:144.245888pt;}
._2_c02304{margin-left:-0.936960pt;}
._1_c02304{width:68.933920pt;}
._5_c02304{width:129.945344pt;}
._9_c02304{width:135.706944pt;}
._7_c02304{width:159.445280pt;}
._6_c02304{width:165.027936pt;}
._a_c02304{width:181.348608pt;}
._4_c02304{width:191.134976pt;}
._3_c02304{width:213.855264pt;}
._8_c02304{width:336.269088pt;}
._0_c02304{width:555.481600pt;}
.fs2_c02304{font-size:42.560000pt;}
.fs1_c02304{font-size:48.000000pt;}
.fs3_c02304{font-size:58.560000pt;}
.fs0_c02304{font-size:64.000000pt;}
.y0_c02304{bottom:0.000000pt;}
.y4_c02304{bottom:50.987067pt;}
.y3_c02304{bottom:69.387067pt;}
.y45_c02304{bottom:105.306667pt;}
.y44_c02304{bottom:119.067067pt;}
.y43_c02304{bottom:132.906667pt;}
.y42_c02304{bottom:146.667067pt;}
.y41_c02304{bottom:160.506667pt;}
.y40_c02304{bottom:174.267067pt;}
.y3f_c02304{bottom:188.106667pt;}
.y3e_c02304{bottom:201.867067pt;}
.y3d_c02304{bottom:215.706667pt;}
.y3c_c02304{bottom:229.467067pt;}
.y3b_c02304{bottom:243.306667pt;}
.y3a_c02304{bottom:257.067067pt;}
.y39_c02304{bottom:270.906667pt;}
.y38_c02304{bottom:284.667067pt;}
.y37_c02304{bottom:298.506667pt;}
.y36_c02304{bottom:312.267067pt;}
.y35_c02304{bottom:326.106667pt;}
.y34_c02304{bottom:339.867067pt;}
.y33_c02304{bottom:353.706667pt;}
.y32_c02304{bottom:367.467067pt;}
.y31_c02304{bottom:381.306667pt;}
.y30_c02304{bottom:395.067067pt;}
.y2f_c02304{bottom:408.827467pt;}
.y2e_c02304{bottom:422.667067pt;}
.y2d_c02304{bottom:436.427467pt;}
.y2c_c02304{bottom:450.267067pt;}
.y2b_c02304{bottom:464.027467pt;}
.y2a_c02304{bottom:477.867067pt;}
.y29_c02304{bottom:491.627467pt;}
.y28_c02304{bottom:505.467067pt;}
.y27_c02304{bottom:519.227467pt;}
.y26_c02304{bottom:533.067067pt;}
.y25_c02304{bottom:546.827467pt;}
.y24_c02304{bottom:560.667067pt;}
.y23_c02304{bottom:574.427467pt;}
.y22_c02304{bottom:588.267067pt;}
.y21_c02304{bottom:602.027467pt;}
.y20_c02304{bottom:615.867067pt;}
.y1f_c02304{bottom:629.627467pt;}
.y1e_c02304{bottom:643.467067pt;}
.y1d_c02304{bottom:657.227467pt;}
.y1c_c02304{bottom:671.067067pt;}
.y1b_c02304{bottom:684.827467pt;}
.y1a_c02304{bottom:698.667067pt;}
.y19_c02304{bottom:712.427467pt;}
.y18_c02304{bottom:726.267067pt;}
.y17_c02304{bottom:740.027467pt;}
.y16_c02304{bottom:753.867067pt;}
.y15_c02304{bottom:768.587067pt;}
.y14_c02304{bottom:785.387067pt;}
.y13_c02304{bottom:802.267067pt;}
.y12_c02304{bottom:819.147200pt;}
.y11_c02304{bottom:836.027067pt;}
.y10_c02304{bottom:852.907067pt;}
.yf_c02304{bottom:870.427067pt;}
.ye_c02304{bottom:887.307067pt;}
.yd_c02304{bottom:904.107067pt;}
.yc_c02304{bottom:920.987067pt;}
.ya_c02304{bottom:936.987067pt;}
.y9_c02304{bottom:937.307067pt;}
.yb_c02304{bottom:949.227067pt;}
.y8_c02304{bottom:962.987067pt;}
.y7_c02304{bottom:983.547467pt;}
.y6_c02304{bottom:997.387067pt;}
.y5_c02304{bottom:1012.667067pt;}
.y2_c02304{bottom:1042.347067pt;}
.y1_c02304{bottom:1060.587067pt;}
.h5_c02304{height:37.801094pt;}
.h3_c02304{height:42.632812pt;}
.h2_c02304{height:56.156250pt;}
.h1_c02304{height:56.843750pt;}
.h4_c02304{height:85.481094pt;}
.h0_c02304{height:1122.666667pt;}
.w1_c02304{width:793.333333pt;}
.w0_c02304{width:793.626667pt;}
.x0_c02304{left:0.000000pt;}
.x1_c02304{left:113.440000pt;}
.x3_c02304{left:120.560000pt;}
.x4_c02304{left:246.080000pt;}
.x2_c02304{left:384.880000pt;}
.x5_c02304{left:440.960000pt;}
.x6_c02304{left:476.880000pt;}
.x7_c02304{left:481.360000pt;}
.x8_c02304{left:518.400000pt;}
.x9_c02304{left:526.000000pt;}
.xa_c02304{left:560.080000pt;}
.xb_c02304{left:603.920000pt;}
.xc_c02304{left:645.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_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_ac790f16a666f8eb7df56050.woff2')format("woff");}.ff1_c02305{font-family:ff1_c02305;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02305;src:url('chunks/assets/font_15c0d034c29c4425deea1f93.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;}
.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);}
.v3_c02305{vertical-align:-22.320000px;}
.v2_c02305{vertical-align:-16.920000px;}
.v4_c02305{vertical-align:-5.400000px;}
.v0_c02305{vertical-align:0.000000px;}
.v1_c02305{vertical-align:1.440000px;}
.ls26_c02305{letter-spacing:-0.181116px;}
.ls25_c02305{letter-spacing:-0.180360px;}
.ls24_c02305{letter-spacing:-0.176904px;}
.ls22_c02305{letter-spacing:-0.086400px;}
.ls20_c02305{letter-spacing:-0.032940px;}
.ls23_c02305{letter-spacing:-0.021600px;}
.ls1e_c02305{letter-spacing:-0.014400px;}
.ls1f_c02305{letter-spacing:-0.013176px;}
.ls21_c02305{letter-spacing:-0.007200px;}
.ls1d_c02305{letter-spacing:0.000000px;}
.ls1_c02305{letter-spacing:0.007200px;}
.ls18_c02305{letter-spacing:0.013176px;}
.lsb_c02305{letter-spacing:0.014400px;}
.ls13_c02305{letter-spacing:0.019764px;}
.ls0_c02305{letter-spacing:0.028800px;}
.ls19_c02305{letter-spacing:0.032940px;}
.ls2_c02305{letter-spacing:0.039528px;}
.lsc_c02305{letter-spacing:0.050400px;}
.ls7_c02305{letter-spacing:0.052704px;}
.lsd_c02305{letter-spacing:0.059292px;}
.ls1c_c02305{letter-spacing:0.065880px;}
.ls15_c02305{letter-spacing:0.072468px;}
.ls1a_c02305{letter-spacing:0.079056px;}
.ls1b_c02305{letter-spacing:0.085644px;}
.ls5_c02305{letter-spacing:0.098820px;}
.ls9_c02305{letter-spacing:0.131760px;}
.ls11_c02305{letter-spacing:0.178164px;}
.ls10_c02305{letter-spacing:0.181944px;}
.lsf_c02305{letter-spacing:34.065360px;}
.ls14_c02305{letter-spacing:34.560000px;}
.ls12_c02305{letter-spacing:36.360000px;}
.ls16_c02305{letter-spacing:38.160000px;}
.ls3_c02305{letter-spacing:64.080000px;}
.ls8_c02305{letter-spacing:99.720000px;}
.ls4_c02305{letter-spacing:113.760000px;}
.ls6_c02305{letter-spacing:128.520000px;}
.lsa_c02305{letter-spacing:444.960000px;}
.lse_c02305{letter-spacing:1378.440000px;}
.ls17_c02305{letter-spacing:1463.760000px;}
.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;}
}
.ws4_c02305{word-spacing:-16.601760px;}
.ws1_c02305{word-spacing:-16.568820px;}
.ws5_c02305{word-spacing:-16.529292px;}
.ws0_c02305{word-spacing:-16.509528px;}
.ws3_c02305{word-spacing:-16.437060px;}
.wsa_c02305{word-spacing:-0.122400px;}
.ws10_c02305{word-spacing:-0.115200px;}
.ws15_c02305{word-spacing:-0.093600px;}
.ws7_c02305{word-spacing:-0.086400px;}
.wsf_c02305{word-spacing:-0.014400px;}
.ws9_c02305{word-spacing:-0.007200px;}
.ws6_c02305{word-spacing:0.000000px;}
.wsd_c02305{word-spacing:0.007200px;}
.ws21_c02305{word-spacing:0.013176px;}
.ws8_c02305{word-spacing:0.014400px;}
.ws14_c02305{word-spacing:0.019764px;}
.wse_c02305{word-spacing:0.021600px;}
.ws12_c02305{word-spacing:0.032940px;}
.wsb_c02305{word-spacing:0.039528px;}
.ws1c_c02305{word-spacing:0.052704px;}
.ws25_c02305{word-spacing:0.059292px;}
.ws13_c02305{word-spacing:0.072468px;}
.ws2b_c02305{word-spacing:0.744444px;}
.ws1f_c02305{word-spacing:1.495476px;}
.ws1e_c02305{word-spacing:2.220156px;}
.ws2a_c02305{word-spacing:4.374432px;}
.ws29_c02305{word-spacing:6.864696px;}
.ws20_c02305{word-spacing:7.569612px;}
.ws19_c02305{word-spacing:10.112580px;}
.ws18_c02305{word-spacing:10.132344px;}
.ws28_c02305{word-spacing:13.011300px;}
.ws26_c02305{word-spacing:13.373640px;}
.ws1d_c02305{word-spacing:14.836176px;}
.ws1b_c02305{word-spacing:18.090648px;}
.ws1a_c02305{word-spacing:19.098612px;}
.ws24_c02305{word-spacing:21.246300px;}
.ws23_c02305{word-spacing:21.299004px;}
.ws17_c02305{word-spacing:27.755244px;}
.ws16_c02305{word-spacing:34.988868px;}
.ws27_c02305{word-spacing:37.446192px;}
.ws22_c02305{word-spacing:47.934288px;}
.ws11_c02305{word-spacing:48.689172px;}
.ws2_c02305{word-spacing:96.810048px;}
.wsc_c02305{word-spacing:272.160000px;}
._3_c02305{margin-left:-28.800000px;}
._13_c02305{margin-left:-13.329648px;}
._12_c02305{margin-left:-1.264896px;}
._11_c02305{width:1.324188px;}
._b_c02305{width:39.870720px;}
._c_c02305{width:40.950720px;}
._d_c02305{width:55.174464px;}
._a_c02305{width:73.850472px;}
._0_c02305{width:133.131852px;}
._2_c02305{width:261.720000px;}
._e_c02305{width:415.483272px;}
._1_c02305{width:601.615440px;}
._8_c02305{width:778.176000px;}
._10_c02305{width:851.457348px;}
._f_c02305{width:1256.059368px;}
._7_c02305{width:1440.388800px;}
._6_c02305{width:1722.888000px;}
._4_c02305{width:1791.288000px;}
._5_c02305{width:1853.193600px;}
._9_c02305{width:2268.561600px;}
.fc0_c02305{color:rgb(0,0,0);}
.fs2_c02305{font-size:42.120000px;}
.fs4_c02305{font-size:47.880000px;}
.fs3_c02305{font-size:60.120000px;}
.fs1_c02305{font-size:65.880000px;}
.fs0_c02305{font-size:72.000000px;}
.y0_c02305{bottom:0.000000px;}
.y4_c02305{bottom:57.360450px;}
.y3_c02305{bottom:78.060450px;}
.y3e_c02305{bottom:121.080450px;}
.y3c_c02305{bottom:142.320450px;}
.y3b_c02305{bottom:161.310450px;}
.y3a_c02305{bottom:180.210600px;}
.y39_c02305{bottom:199.200540px;}
.y3d_c02305{bottom:218.100450px;}
.y38_c02305{bottom:223.860450px;}
.y36_c02305{bottom:237.090450px;}
.y35_c02305{bottom:251.670450px;}
.y34_c02305{bottom:270.660450px;}
.y33_c02305{bottom:289.650540px;}
.y37_c02305{bottom:308.550450px;}
.y32_c02305{bottom:314.310450px;}
.y30_c02305{bottom:327.540450px;}
.y2f_c02305{bottom:342.120630px;}
.y2e_c02305{bottom:361.110540px;}
.y31_c02305{bottom:380.010450px;}
.y2d_c02305{bottom:385.770600px;}
.y2b_c02305{bottom:399.000600px;}
.y2a_c02305{bottom:413.671545px;}
.y29_c02305{bottom:432.570870px;}
.y28_c02305{bottom:451.560780px;}
.y27_c02305{bottom:470.550690px;}
.y2c_c02305{bottom:489.450600px;}
.y26_c02305{bottom:495.210600px;}
.y24_c02305{bottom:508.350450px;}
.y23_c02305{bottom:523.020600px;}
.y22_c02305{bottom:542.010450px;}
.y21_c02305{bottom:561.000450px;}
.y20_c02305{bottom:579.991215px;}
.y1f_c02305{bottom:598.890540px;}
.y25_c02305{bottom:617.790450px;}
.y1e_c02305{bottom:623.550450px;}
.y1d_c02305{bottom:643.080450px;}
.y1c_c02305{bottom:657.570450px;}
.y1b_c02305{bottom:678.990450px;}
.y1a_c02305{bottom:699.690450px;}
.y19_c02305{bottom:726.600450px;}
.y18_c02305{bottom:746.310450px;}
.y17_c02305{bottom:766.110450px;}
.y16_c02305{bottom:785.640450px;}
.y15_c02305{bottom:800.040600px;}
.y14_c02305{bottom:821.460450px;}
.y13_c02305{bottom:842.160450px;}
.y12_c02305{bottom:863.670450px;}
.y11_c02305{bottom:885.090450px;}
.y10_c02305{bottom:906.510450px;}
.yf_c02305{bottom:928.020450px;}
.ye_c02305{bottom:949.440450px;}
.yd_c02305{bottom:970.860450px;}
.yc_c02305{bottom:992.280450px;}
.yb_c02305{bottom:1013.610450px;}
.ya_c02305{bottom:1034.940450px;}
.y9_c02305{bottom:1054.920450px;}
.y8_c02305{bottom:1075.620450px;}
.y7_c02305{bottom:1097.130450px;}
.y6_c02305{bottom:1117.830450px;}
.y5_c02305{bottom:1139.250450px;}
.y2_c02305{bottom:1172.640450px;}
.y1_c02305{bottom:1193.160450px;}
.h6_c02305{height:36.957832px;}
.h5_c02305{height:40.909219px;}
.h4_c02305{height:41.629219px;}
.h8_c02305{height:42.011895px;}
.h7_c02305{height:57.805840px;}
.h9_c02305{height:58.513535px;}
.ha_c02305{height:63.171401px;}
.hb_c02305{height:63.175061px;}
.h2_c02305{height:63.175781px;}
.h1_c02305{height:63.949219px;}
.h3_c02305{height:64.615781px;}
.h0_c02305{height:1263.000000px;}
.w1_c02305{width:892.500000px;}
.w0_c02305{width:892.830000px;}
.x0_c02305{left:0.000000px;}
.x1_c02305{left:127.620000px;}
.x3_c02305{left:135.630000px;}
.x6_c02305{left:137.520000px;}
.x4_c02305{left:263.430000px;}
.x8_c02305{left:273.870000px;}
.x5_c02305{left:291.150000px;}
.x7_c02305{left:335.160000px;}
.x2_c02305{left:432.990000px;}
.x9_c02305{left:720.540000px;}
@media print{
.v3_c02305{vertical-align:-19.840000pt;}
.v2_c02305{vertical-align:-15.040000pt;}
.v4_c02305{vertical-align:-4.800000pt;}
.v0_c02305{vertical-align:0.000000pt;}
.v1_c02305{vertical-align:1.280000pt;}
.ls26_c02305{letter-spacing:-0.160992pt;}
.ls25_c02305{letter-spacing:-0.160320pt;}
.ls24_c02305{letter-spacing:-0.157248pt;}
.ls22_c02305{letter-spacing:-0.076800pt;}
.ls20_c02305{letter-spacing:-0.029280pt;}
.ls23_c02305{letter-spacing:-0.019200pt;}
.ls1e_c02305{letter-spacing:-0.012800pt;}
.ls1f_c02305{letter-spacing:-0.011712pt;}
.ls21_c02305{letter-spacing:-0.006400pt;}
.ls1d_c02305{letter-spacing:0.000000pt;}
.ls1_c02305{letter-spacing:0.006400pt;}
.ls18_c02305{letter-spacing:0.011712pt;}
.lsb_c02305{letter-spacing:0.012800pt;}
.ls13_c02305{letter-spacing:0.017568pt;}
.ls0_c02305{letter-spacing:0.025600pt;}
.ls19_c02305{letter-spacing:0.029280pt;}
.ls2_c02305{letter-spacing:0.035136pt;}
.lsc_c02305{letter-spacing:0.044800pt;}
.ls7_c02305{letter-spacing:0.046848pt;}
.lsd_c02305{letter-spacing:0.052704pt;}
.ls1c_c02305{letter-spacing:0.058560pt;}
.ls15_c02305{letter-spacing:0.064416pt;}
.ls1a_c02305{letter-spacing:0.070272pt;}
.ls1b_c02305{letter-spacing:0.076128pt;}
.ls5_c02305{letter-spacing:0.087840pt;}
.ls9_c02305{letter-spacing:0.117120pt;}
.ls11_c02305{letter-spacing:0.158368pt;}
.ls10_c02305{letter-spacing:0.161728pt;}
.lsf_c02305{letter-spacing:30.280320pt;}
.ls14_c02305{letter-spacing:30.720000pt;}
.ls12_c02305{letter-spacing:32.320000pt;}
.ls16_c02305{letter-spacing:33.920000pt;}
.ls3_c02305{letter-spacing:56.960000pt;}
.ls8_c02305{letter-spacing:88.640000pt;}
.ls4_c02305{letter-spacing:101.120000pt;}
.ls6_c02305{letter-spacing:114.240000pt;}
.lsa_c02305{letter-spacing:395.520000pt;}
.lse_c02305{letter-spacing:1225.280000pt;}
.ls17_c02305{letter-spacing:1301.120000pt;}
.ws4_c02305{word-spacing:-14.757120pt;}
.ws1_c02305{word-spacing:-14.727840pt;}
.ws5_c02305{word-spacing:-14.692704pt;}
.ws0_c02305{word-spacing:-14.675136pt;}
.ws3_c02305{word-spacing:-14.610720pt;}
.wsa_c02305{word-spacing:-0.108800pt;}
.ws10_c02305{word-spacing:-0.102400pt;}
.ws15_c02305{word-spacing:-0.083200pt;}
.ws7_c02305{word-spacing:-0.076800pt;}
.wsf_c02305{word-spacing:-0.012800pt;}
.ws9_c02305{word-spacing:-0.006400pt;}
.ws6_c02305{word-spacing:0.000000pt;}
.wsd_c02305{word-spacing:0.006400pt;}
.ws21_c02305{word-spacing:0.011712pt;}
.ws8_c02305{word-spacing:0.012800pt;}
.ws14_c02305{word-spacing:0.017568pt;}
.wse_c02305{word-spacing:0.019200pt;}
.ws12_c02305{word-spacing:0.029280pt;}
.wsb_c02305{word-spacing:0.035136pt;}
.ws1c_c02305{word-spacing:0.046848pt;}
.ws25_c02305{word-spacing:0.052704pt;}
.ws13_c02305{word-spacing:0.064416pt;}
.ws2b_c02305{word-spacing:0.661728pt;}
.ws1f_c02305{word-spacing:1.329312pt;}
.ws1e_c02305{word-spacing:1.973472pt;}
.ws2a_c02305{word-spacing:3.888384pt;}
.ws29_c02305{word-spacing:6.101952pt;}
.ws20_c02305{word-spacing:6.728544pt;}
.ws19_c02305{word-spacing:8.988960pt;}
.ws18_c02305{word-spacing:9.006528pt;}
.ws28_c02305{word-spacing:11.565600pt;}
.ws26_c02305{word-spacing:11.887680pt;}
.ws1d_c02305{word-spacing:13.187712pt;}
.ws1b_c02305{word-spacing:16.080576pt;}
.ws1a_c02305{word-spacing:16.976544pt;}
.ws24_c02305{word-spacing:18.885600pt;}
.ws23_c02305{word-spacing:18.932448pt;}
.ws17_c02305{word-spacing:24.671328pt;}
.ws16_c02305{word-spacing:31.101216pt;}
.ws27_c02305{word-spacing:33.285504pt;}
.ws22_c02305{word-spacing:42.608256pt;}
.ws11_c02305{word-spacing:43.279264pt;}
.ws2_c02305{word-spacing:86.053376pt;}
.wsc_c02305{word-spacing:241.920000pt;}
._3_c02305{margin-left:-25.600000pt;}
._13_c02305{margin-left:-11.848576pt;}
._12_c02305{margin-left:-1.124352pt;}
._11_c02305{width:1.177056pt;}
._b_c02305{width:35.440640pt;}
._c_c02305{width:36.400640pt;}
._d_c02305{width:49.043968pt;}
._a_c02305{width:65.644864pt;}
._0_c02305{width:118.339424pt;}
._2_c02305{width:232.640000pt;}
._e_c02305{width:369.318464pt;}
._1_c02305{width:534.769280pt;}
._8_c02305{width:691.712000pt;}
._10_c02305{width:756.850976pt;}
._f_c02305{width:1116.497216pt;}
._7_c02305{width:1280.345600pt;}
._6_c02305{width:1531.456000pt;}
._4_c02305{width:1592.256000pt;}
._5_c02305{width:1647.283200pt;}
._9_c02305{width:2016.499200pt;}
.fs2_c02305{font-size:37.440000pt;}
.fs4_c02305{font-size:42.560000pt;}
.fs3_c02305{font-size:53.440000pt;}
.fs1_c02305{font-size:58.560000pt;}
.fs0_c02305{font-size:64.000000pt;}
.y0_c02305{bottom:0.000000pt;}
.y4_c02305{bottom:50.987067pt;}
.y3_c02305{bottom:69.387067pt;}
.y3e_c02305{bottom:107.627067pt;}
.y3c_c02305{bottom:126.507067pt;}
.y3b_c02305{bottom:143.387067pt;}
.y3a_c02305{bottom:160.187200pt;}
.y39_c02305{bottom:177.067147pt;}
.y3d_c02305{bottom:193.867067pt;}
.y38_c02305{bottom:198.987067pt;}
.y36_c02305{bottom:210.747067pt;}
.y35_c02305{bottom:223.707067pt;}
.y34_c02305{bottom:240.587067pt;}
.y33_c02305{bottom:257.467147pt;}
.y37_c02305{bottom:274.267067pt;}
.y32_c02305{bottom:279.387067pt;}
.y30_c02305{bottom:291.147067pt;}
.y2f_c02305{bottom:304.107227pt;}
.y2e_c02305{bottom:320.987147pt;}
.y31_c02305{bottom:337.787067pt;}
.y2d_c02305{bottom:342.907200pt;}
.y2b_c02305{bottom:354.667200pt;}
.y2a_c02305{bottom:367.708040pt;}
.y29_c02305{bottom:384.507440pt;}
.y28_c02305{bottom:401.387360pt;}
.y27_c02305{bottom:418.267280pt;}
.y2c_c02305{bottom:435.067200pt;}
.y26_c02305{bottom:440.187200pt;}
.y24_c02305{bottom:451.867067pt;}
.y23_c02305{bottom:464.907200pt;}
.y22_c02305{bottom:481.787067pt;}
.y21_c02305{bottom:498.667067pt;}
.y20_c02305{bottom:515.547747pt;}
.y1f_c02305{bottom:532.347147pt;}
.y25_c02305{bottom:549.147067pt;}
.y1e_c02305{bottom:554.267067pt;}
.y1d_c02305{bottom:571.627067pt;}
.y1c_c02305{bottom:584.507067pt;}
.y1b_c02305{bottom:603.547067pt;}
.y1a_c02305{bottom:621.947067pt;}
.y19_c02305{bottom:645.867067pt;}
.y18_c02305{bottom:663.387067pt;}
.y17_c02305{bottom:680.987067pt;}
.y16_c02305{bottom:698.347067pt;}
.y15_c02305{bottom:711.147200pt;}
.y14_c02305{bottom:730.187067pt;}
.y13_c02305{bottom:748.587067pt;}
.y12_c02305{bottom:767.707067pt;}
.y11_c02305{bottom:786.747067pt;}
.y10_c02305{bottom:805.787067pt;}
.yf_c02305{bottom:824.907067pt;}
.ye_c02305{bottom:843.947067pt;}
.yd_c02305{bottom:862.987067pt;}
.yc_c02305{bottom:882.027067pt;}
.yb_c02305{bottom:900.987067pt;}
.ya_c02305{bottom:919.947067pt;}
.y9_c02305{bottom:937.707067pt;}
.y8_c02305{bottom:956.107067pt;}
.y7_c02305{bottom:975.227067pt;}
.y6_c02305{bottom:993.627067pt;}
.y5_c02305{bottom:1012.667067pt;}
.y2_c02305{bottom:1042.347067pt;}
.y1_c02305{bottom:1060.587067pt;}
.h6_c02305{height:32.851406pt;}
.h5_c02305{height:36.363750pt;}
.h4_c02305{height:37.003750pt;}
.h8_c02305{height:37.343906pt;}
.h7_c02305{height:51.382969pt;}
.h9_c02305{height:52.012031pt;}
.ha_c02305{height:56.152357pt;}
.hb_c02305{height:56.155610pt;}
.h2_c02305{height:56.156250pt;}
.h1_c02305{height:56.843750pt;}
.h3_c02305{height:57.436250pt;}
.h0_c02305{height:1122.666667pt;}
.w1_c02305{width:793.333333pt;}
.w0_c02305{width:793.626667pt;}
.x0_c02305{left:0.000000pt;}
.x1_c02305{left:113.440000pt;}
.x3_c02305{left:120.560000pt;}
.x6_c02305{left:122.240000pt;}
.x4_c02305{left:234.160000pt;}
.x8_c02305{left:243.440000pt;}
.x5_c02305{left:258.800000pt;}
.x7_c02305{left:297.920000pt;}
.x2_c02305{left:384.880000pt;}
.x9_c02305{left:640.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_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_ed085d83d49f48b8093196e0.woff2')format("woff");}.ff1_c02306{font-family:ff1_c02306;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02306;src:url('chunks/assets/font_0a58d97b557018a63d67cce1.woff2')format("woff");}.ff2_c02306{font-family:ff2_c02306;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02306{font-family:ff3_c02306;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_c02306;src:url('chunks/assets/font_cf80a730fd70d98824b15db9.woff2')format("woff");}.ff4_c02306{font-family:ff4_c02306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02306{vertical-align:-22.320000px;}
.v1_c02306{vertical-align:-16.920000px;}
.v3_c02306{vertical-align:-4.680000px;}
.v0_c02306{vertical-align:0.000000px;}
.ls21_c02306{letter-spacing:-0.181116px;}
.ls20_c02306{letter-spacing:-0.180360px;}
.ls1f_c02306{letter-spacing:-0.176904px;}
.ls1e_c02306{letter-spacing:-0.032940px;}
.ls1c_c02306{letter-spacing:-0.028800px;}
.ls1b_c02306{letter-spacing:-0.014400px;}
.ls1d_c02306{letter-spacing:-0.013176px;}
.ls19_c02306{letter-spacing:-0.007200px;}
.ls1a_c02306{letter-spacing:0.000000px;}
.lsd_c02306{letter-spacing:0.006588px;}
.ls12_c02306{letter-spacing:0.013176px;}
.ls2_c02306{letter-spacing:0.014400px;}
.ls0_c02306{letter-spacing:0.019764px;}
.ls10_c02306{letter-spacing:0.026352px;}
.ls8_c02306{letter-spacing:0.032940px;}
.ls6_c02306{letter-spacing:0.036000px;}
.lsf_c02306{letter-spacing:0.039528px;}
.lse_c02306{letter-spacing:0.046116px;}
.ls5_c02306{letter-spacing:0.050400px;}
.ls14_c02306{letter-spacing:0.052704px;}
.lsc_c02306{letter-spacing:0.059292px;}
.ls7_c02306{letter-spacing:0.064800px;}
.ls15_c02306{letter-spacing:0.065880px;}
.ls4_c02306{letter-spacing:0.072000px;}
.lsa_c02306{letter-spacing:0.072468px;}
.ls11_c02306{letter-spacing:0.079056px;}
.ls3_c02306{letter-spacing:0.086400px;}
.ls1_c02306{letter-spacing:0.092232px;}
.ls9_c02306{letter-spacing:0.098820px;}
.ls16_c02306{letter-spacing:0.105408px;}
.ls17_c02306{letter-spacing:0.111996px;}
.ls18_c02306{letter-spacing:0.118584px;}
.lsb_c02306{letter-spacing:0.177876px;}
.ls13_c02306{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02306{word-spacing:-16.542468px;}
.ws0_c02306{word-spacing:-0.158112px;}
.wse_c02306{word-spacing:-0.064800px;}
.ws6_c02306{word-spacing:-0.050400px;}
.ws1f_c02306{word-spacing:-0.013176px;}
.ws4_c02306{word-spacing:0.000000px;}
.ws2_c02306{word-spacing:0.007200px;}
.ws27_c02306{word-spacing:0.013176px;}
.ws5_c02306{word-spacing:0.014400px;}
.ws11_c02306{word-spacing:0.019764px;}
.ws1e_c02306{word-spacing:0.026352px;}
.ws13_c02306{word-spacing:0.032940px;}
.ws15_c02306{word-spacing:0.046116px;}
.ws10_c02306{word-spacing:0.052704px;}
.wsf_c02306{word-spacing:0.059292px;}
.ws16_c02306{word-spacing:0.065880px;}
.ws3_c02306{word-spacing:0.072468px;}
.ws17_c02306{word-spacing:0.079056px;}
.ws14_c02306{word-spacing:0.085644px;}
.wsa_c02306{word-spacing:0.612000px;}
.ws9_c02306{word-spacing:0.648000px;}
.ws24_c02306{word-spacing:4.045032px;}
.ws1d_c02306{word-spacing:4.354668px;}
.ws21_c02306{word-spacing:5.771088px;}
.wsd_c02306{word-spacing:6.026400px;}
.wsb_c02306{word-spacing:6.120000px;}
.wsc_c02306{word-spacing:6.148800px;}
.ws26_c02306{word-spacing:8.333820px;}
.ws1c_c02306{word-spacing:9.038736px;}
.ws25_c02306{word-spacing:12.629196px;}
.ws1b_c02306{word-spacing:13.004712px;}
.ws28_c02306{word-spacing:15.863904px;}
.ws20_c02306{word-spacing:16.614936px;}
.ws8_c02306{word-spacing:18.633600px;}
.ws7_c02306{word-spacing:18.705600px;}
.ws2a_c02306{word-spacing:19.118376px;}
.ws19_c02306{word-spacing:21.970980px;}
.ws1a_c02306{word-spacing:25.950132px;}
.ws22_c02306{word-spacing:37.775592px;}
.ws23_c02306{word-spacing:37.808532px;}
.ws29_c02306{word-spacing:38.928492px;}
.ws18_c02306{word-spacing:48.689172px;}
.ws12_c02306{word-spacing:417.870252px;}
._1_c02306{margin-left:-1.411200px;}
._c_c02306{width:1.166076px;}
._10_c02306{width:39.870720px;}
._11_c02306{width:40.950720px;}
._13_c02306{width:55.174464px;}
._f_c02306{width:73.850472px;}
._3_c02306{width:167.370048px;}
._6_c02306{width:170.280036px;}
._0_c02306{width:194.400000px;}
._4_c02306{width:222.638220px;}
._2_c02306{width:250.125840px;}
._9_c02306{width:264.764640px;}
._5_c02306{width:314.365680px;}
._8_c02306{width:444.242016px;}
._7_c02306{width:477.359892px;}
._d_c02306{width:691.443048px;}
._a_c02306{width:1023.886704px;}
._b_c02306{width:1031.897712px;}
._12_c02306{width:1380.620880px;}
._e_c02306{width:2253.981024px;}
.fc0_c02306{color:rgb(0,0,0);}
.fs3_c02306{font-size:42.120000px;}
.fs2_c02306{font-size:47.880000px;}
.fs4_c02306{font-size:60.120000px;}
.fs1_c02306{font-size:65.880000px;}
.fs0_c02306{font-size:72.000000px;}
.y0_c02306{bottom:0.000000px;}
.y3_c02306{bottom:65.191107px;}
.y2_c02306{bottom:103.350450px;}
.y39_c02306{bottom:130.081455px;}
.y38_c02306{bottom:148.980780px;}
.y3b_c02306{bottom:167.881752px;}
.y37_c02306{bottom:167.970690px;}
.y3a_c02306{bottom:186.871662px;}
.y36_c02306{bottom:192.450600px;}
.y33_c02306{bottom:209.550009px;}
.y32_c02306{bottom:231.329937px;}
.y31_c02306{bottom:253.200450px;}
.y30_c02306{bottom:273.360450px;}
.y2f_c02306{bottom:290.820009px;}
.y2e_c02306{bottom:312.690522px;}
.y35_c02306{bottom:315.480108px;}
.y34_c02306{bottom:334.379433px;}
.y2d_c02306{bottom:340.050450px;}
.y2a_c02306{bottom:354.272400px;}
.y29_c02306{bottom:373.171725px;}
.y28_c02306{bottom:392.161635px;}
.y27_c02306{bottom:411.151545px;}
.y26_c02306{bottom:430.141455px;}
.y25_c02306{bottom:449.131365px;}
.y2c_c02306{bottom:467.941752px;}
.y24_c02306{bottom:468.030690px;}
.y2b_c02306{bottom:486.931662px;}
.y23_c02306{bottom:492.510450px;}
.y21_c02306{bottom:509.609568px;}
.y20_c02306{bottom:531.389496px;}
.y1f_c02306{bottom:553.260009px;}
.y1e_c02306{bottom:575.039937px;}
.y22_c02306{bottom:596.819865px;}
.y1d_c02306{bottom:602.490450px;}
.y1c_c02306{bottom:622.110450px;}
.y1b_c02306{bottom:636.240450px;}
.y1a_c02306{bottom:655.230450px;}
.y19_c02306{bottom:676.290549px;}
.y18_c02306{bottom:692.130450px;}
.y17_c02306{bottom:707.430450px;}
.y16_c02306{bottom:727.140450px;}
.y15_c02306{bottom:746.850450px;}
.y14_c02306{bottom:766.560450px;}
.y13_c02306{bottom:786.360600px;}
.y12_c02306{bottom:806.070450px;}
.y11_c02306{bottom:825.870450px;}
.y10_c02306{bottom:845.490450px;}
.yf_c02306{bottom:865.200450px;}
.ye_c02306{bottom:894.360450px;}
.yd_c02306{bottom:919.650450px;}
.yc_c02306{bottom:944.940450px;}
.yb_c02306{bottom:975.990450px;}
.ya_c02306{bottom:1007.040450px;}
.y9_c02306{bottom:1038.090450px;}
.y8_c02306{bottom:1069.140450px;}
.y7_c02306{bottom:1090.650450px;}
.y6_c02306{bottom:1105.500450px;}
.y5_c02306{bottom:1124.850450px;}
.y4_c02306{bottom:1139.970450px;}
.y1_c02306{bottom:1193.160450px;}
.ha_c02306{height:42.449062px;}
.hc_c02306{height:42.697617px;}
.hb_c02306{height:42.698217px;}
.h3_c02306{height:43.909277px;}
.h9_c02306{height:44.074687px;}
.h5_c02306{height:46.991602px;}
.h4_c02306{height:48.254063px;}
.h2_c02306{height:54.331699px;}
.h8_c02306{height:64.657617px;}
.h7_c02306{height:66.394687px;}
.h6_c02306{height:70.664062px;}
.h1_c02306{height:72.562500px;}
.h0_c02306{height:1263.000000px;}
.w1_c02306{width:892.500000px;}
.w0_c02306{width:892.830000px;}
.x0_c02306{left:0.000000px;}
.x1_c02306{left:127.620000px;}
.xb_c02306{left:135.630000px;}
.x6_c02306{left:148.950000px;}
.x8_c02306{left:162.360000px;}
.x7_c02306{left:209.700000px;}
.x9_c02306{left:217.530000px;}
.xa_c02306{left:224.910000px;}
.x5_c02306{left:253.260000px;}
.xc_c02306{left:273.870000px;}
.x3_c02306{left:406.260000px;}
.x2_c02306{left:433.980000px;}
.x4_c02306{left:446.490000px;}
.xd_c02306{left:708.480360px;}
@media print{
.v2_c02306{vertical-align:-19.840000pt;}
.v1_c02306{vertical-align:-15.040000pt;}
.v3_c02306{vertical-align:-4.160000pt;}
.v0_c02306{vertical-align:0.000000pt;}
.ls21_c02306{letter-spacing:-0.160992pt;}
.ls20_c02306{letter-spacing:-0.160320pt;}
.ls1f_c02306{letter-spacing:-0.157248pt;}
.ls1e_c02306{letter-spacing:-0.029280pt;}
.ls1c_c02306{letter-spacing:-0.025600pt;}
.ls1b_c02306{letter-spacing:-0.012800pt;}
.ls1d_c02306{letter-spacing:-0.011712pt;}
.ls19_c02306{letter-spacing:-0.006400pt;}
.ls1a_c02306{letter-spacing:0.000000pt;}
.lsd_c02306{letter-spacing:0.005856pt;}
.ls12_c02306{letter-spacing:0.011712pt;}
.ls2_c02306{letter-spacing:0.012800pt;}
.ls0_c02306{letter-spacing:0.017568pt;}
.ls10_c02306{letter-spacing:0.023424pt;}
.ls8_c02306{letter-spacing:0.029280pt;}
.ls6_c02306{letter-spacing:0.032000pt;}
.lsf_c02306{letter-spacing:0.035136pt;}
.lse_c02306{letter-spacing:0.040992pt;}
.ls5_c02306{letter-spacing:0.044800pt;}
.ls14_c02306{letter-spacing:0.046848pt;}
.lsc_c02306{letter-spacing:0.052704pt;}
.ls7_c02306{letter-spacing:0.057600pt;}
.ls15_c02306{letter-spacing:0.058560pt;}
.ls4_c02306{letter-spacing:0.064000pt;}
.lsa_c02306{letter-spacing:0.064416pt;}
.ls11_c02306{letter-spacing:0.070272pt;}
.ls3_c02306{letter-spacing:0.076800pt;}
.ls1_c02306{letter-spacing:0.081984pt;}
.ls9_c02306{letter-spacing:0.087840pt;}
.ls16_c02306{letter-spacing:0.093696pt;}
.ls17_c02306{letter-spacing:0.099552pt;}
.ls18_c02306{letter-spacing:0.105408pt;}
.lsb_c02306{letter-spacing:0.158112pt;}
.ls13_c02306{letter-spacing:0.161728pt;}
.ws1_c02306{word-spacing:-14.704416pt;}
.ws0_c02306{word-spacing:-0.140544pt;}
.wse_c02306{word-spacing:-0.057600pt;}
.ws6_c02306{word-spacing:-0.044800pt;}
.ws1f_c02306{word-spacing:-0.011712pt;}
.ws4_c02306{word-spacing:0.000000pt;}
.ws2_c02306{word-spacing:0.006400pt;}
.ws27_c02306{word-spacing:0.011712pt;}
.ws5_c02306{word-spacing:0.012800pt;}
.ws11_c02306{word-spacing:0.017568pt;}
.ws1e_c02306{word-spacing:0.023424pt;}
.ws13_c02306{word-spacing:0.029280pt;}
.ws15_c02306{word-spacing:0.040992pt;}
.ws10_c02306{word-spacing:0.046848pt;}
.wsf_c02306{word-spacing:0.052704pt;}
.ws16_c02306{word-spacing:0.058560pt;}
.ws3_c02306{word-spacing:0.064416pt;}
.ws17_c02306{word-spacing:0.070272pt;}
.ws14_c02306{word-spacing:0.076128pt;}
.wsa_c02306{word-spacing:0.544000pt;}
.ws9_c02306{word-spacing:0.576000pt;}
.ws24_c02306{word-spacing:3.595584pt;}
.ws1d_c02306{word-spacing:3.870816pt;}
.ws21_c02306{word-spacing:5.129856pt;}
.wsd_c02306{word-spacing:5.356800pt;}
.wsb_c02306{word-spacing:5.440000pt;}
.wsc_c02306{word-spacing:5.465600pt;}
.ws26_c02306{word-spacing:7.407840pt;}
.ws1c_c02306{word-spacing:8.034432pt;}
.ws25_c02306{word-spacing:11.225952pt;}
.ws1b_c02306{word-spacing:11.559744pt;}
.ws28_c02306{word-spacing:14.101248pt;}
.ws20_c02306{word-spacing:14.768832pt;}
.ws8_c02306{word-spacing:16.563200pt;}
.ws7_c02306{word-spacing:16.627200pt;}
.ws2a_c02306{word-spacing:16.994112pt;}
.ws19_c02306{word-spacing:19.529760pt;}
.ws1a_c02306{word-spacing:23.066784pt;}
.ws22_c02306{word-spacing:33.578304pt;}
.ws23_c02306{word-spacing:33.607584pt;}
.ws29_c02306{word-spacing:34.603104pt;}
.ws18_c02306{word-spacing:43.279264pt;}
.ws12_c02306{word-spacing:371.440224pt;}
._1_c02306{margin-left:-1.254400pt;}
._c_c02306{width:1.036512pt;}
._10_c02306{width:35.440640pt;}
._11_c02306{width:36.400640pt;}
._13_c02306{width:49.043968pt;}
._f_c02306{width:65.644864pt;}
._3_c02306{width:148.773376pt;}
._6_c02306{width:151.360032pt;}
._0_c02306{width:172.800000pt;}
._4_c02306{width:197.900640pt;}
._2_c02306{width:222.334080pt;}
._9_c02306{width:235.346347pt;}
._5_c02306{width:279.436160pt;}
._8_c02306{width:394.881792pt;}
._7_c02306{width:424.319904pt;}
._d_c02306{width:614.616043pt;}
._a_c02306{width:910.121515pt;}
._b_c02306{width:917.242411pt;}
._12_c02306{width:1227.218560pt;}
._e_c02306{width:2003.538688pt;}
.fs3_c02306{font-size:37.440000pt;}
.fs2_c02306{font-size:42.560000pt;}
.fs4_c02306{font-size:53.440000pt;}
.fs1_c02306{font-size:58.560000pt;}
.fs0_c02306{font-size:64.000000pt;}
.y0_c02306{bottom:0.000000pt;}
.y3_c02306{bottom:57.947651pt;}
.y2_c02306{bottom:91.867067pt;}
.y39_c02306{bottom:115.627960pt;}
.y38_c02306{bottom:132.427360pt;}
.y3b_c02306{bottom:149.228224pt;}
.y37_c02306{bottom:149.307280pt;}
.y3a_c02306{bottom:166.108144pt;}
.y36_c02306{bottom:171.067200pt;}
.y33_c02306{bottom:186.266675pt;}
.y32_c02306{bottom:205.626611pt;}
.y31_c02306{bottom:225.067067pt;}
.y30_c02306{bottom:242.987067pt;}
.y2f_c02306{bottom:258.506675pt;}
.y2e_c02306{bottom:277.947131pt;}
.y35_c02306{bottom:280.426763pt;}
.y34_c02306{bottom:297.226163pt;}
.y2d_c02306{bottom:302.267067pt;}
.y2a_c02306{bottom:314.908800pt;}
.y29_c02306{bottom:331.708200pt;}
.y28_c02306{bottom:348.588120pt;}
.y27_c02306{bottom:365.468040pt;}
.y26_c02306{bottom:382.347960pt;}
.y25_c02306{bottom:399.227880pt;}
.y2c_c02306{bottom:415.948224pt;}
.y24_c02306{bottom:416.027280pt;}
.y2b_c02306{bottom:432.828144pt;}
.y23_c02306{bottom:437.787067pt;}
.y21_c02306{bottom:452.986283pt;}
.y20_c02306{bottom:472.346219pt;}
.y1f_c02306{bottom:491.786675pt;}
.y1e_c02306{bottom:511.146611pt;}
.y22_c02306{bottom:530.506547pt;}
.y1d_c02306{bottom:535.547067pt;}
.y1c_c02306{bottom:552.987067pt;}
.y1b_c02306{bottom:565.547067pt;}
.y1a_c02306{bottom:582.427067pt;}
.y19_c02306{bottom:601.147155pt;}
.y18_c02306{bottom:615.227067pt;}
.y17_c02306{bottom:628.827067pt;}
.y16_c02306{bottom:646.347067pt;}
.y15_c02306{bottom:663.867067pt;}
.y14_c02306{bottom:681.387067pt;}
.y13_c02306{bottom:698.987200pt;}
.y12_c02306{bottom:716.507067pt;}
.y11_c02306{bottom:734.107067pt;}
.y10_c02306{bottom:751.547067pt;}
.yf_c02306{bottom:769.067067pt;}
.ye_c02306{bottom:794.987067pt;}
.yd_c02306{bottom:817.467067pt;}
.yc_c02306{bottom:839.947067pt;}
.yb_c02306{bottom:867.547067pt;}
.ya_c02306{bottom:895.147067pt;}
.y9_c02306{bottom:922.747067pt;}
.y8_c02306{bottom:950.347067pt;}
.y7_c02306{bottom:969.467067pt;}
.y6_c02306{bottom:982.667067pt;}
.y5_c02306{bottom:999.867067pt;}
.y4_c02306{bottom:1013.307067pt;}
.y1_c02306{bottom:1060.587067pt;}
.ha_c02306{height:37.732500pt;}
.hc_c02306{height:37.953437pt;}
.hb_c02306{height:37.953971pt;}
.h3_c02306{height:39.030469pt;}
.h9_c02306{height:39.177500pt;}
.h5_c02306{height:41.770312pt;}
.h4_c02306{height:42.892500pt;}
.h2_c02306{height:48.294844pt;}
.h8_c02306{height:57.473437pt;}
.h7_c02306{height:59.017500pt;}
.h6_c02306{height:62.812500pt;}
.h1_c02306{height:64.500000pt;}
.h0_c02306{height:1122.666667pt;}
.w1_c02306{width:793.333333pt;}
.w0_c02306{width:793.626667pt;}
.x0_c02306{left:0.000000pt;}
.x1_c02306{left:113.440000pt;}
.xb_c02306{left:120.560000pt;}
.x6_c02306{left:132.400000pt;}
.x8_c02306{left:144.320000pt;}
.x7_c02306{left:186.400000pt;}
.x9_c02306{left:193.360000pt;}
.xa_c02306{left:199.920000pt;}
.x5_c02306{left:225.120000pt;}
.xc_c02306{left:243.440000pt;}
.x3_c02306{left:361.120000pt;}
.x2_c02306{left:385.760000pt;}
.x4_c02306{left:396.880000pt;}
.xd_c02306{left:629.760320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48878b5b90ba94b0e45db507.woff2')format("woff");}.ff1_c02307{font-family:ff1_c02307;line-height:1.311035;font-style:normal;font-weight:normal;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_84d571eb8be9328dc7b01b16.woff2')format("woff");}.ff2_c02307{font-family:ff2_c02307;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02307{font-family:ff3_c02307;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_c02307;src:url('chunks/assets/font_035810e4c3b2535308e1ca4d.woff2')format("woff");}.ff4_c02307{font-family:ff4_c02307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c02307{vertical-align:-22.320000px;}
.v1_c02307{vertical-align:-16.919400px;}
.v3_c02307{vertical-align:-4.680000px;}
.v0_c02307{vertical-align:0.000000px;}
.ls17_c02307{letter-spacing:-0.181116px;}
.ls15_c02307{letter-spacing:-0.180360px;}
.ls14_c02307{letter-spacing:-0.176904px;}
.ls16_c02307{letter-spacing:-0.032940px;}
.ls19_c02307{letter-spacing:-0.013176px;}
.ls12_c02307{letter-spacing:-0.007200px;}
.ls13_c02307{letter-spacing:0.000000px;}
.ls11_c02307{letter-spacing:0.006588px;}
.ls18_c02307{letter-spacing:0.007200px;}
.lsa_c02307{letter-spacing:0.013176px;}
.ls0_c02307{letter-spacing:0.019764px;}
.ls9_c02307{letter-spacing:0.026352px;}
.ls5_c02307{letter-spacing:0.032940px;}
.ls6_c02307{letter-spacing:0.039528px;}
.ls4_c02307{letter-spacing:0.046116px;}
.ls8_c02307{letter-spacing:0.052704px;}
.ls10_c02307{letter-spacing:0.059292px;}
.lsc_c02307{letter-spacing:0.065880px;}
.ls2_c02307{letter-spacing:0.072468px;}
.lsd_c02307{letter-spacing:0.079056px;}
.ls1_c02307{letter-spacing:0.092232px;}
.lse_c02307{letter-spacing:0.098820px;}
.ls7_c02307{letter-spacing:0.105408px;}
.lsb_c02307{letter-spacing:0.164700px;}
.lsf_c02307{letter-spacing:0.177876px;}
.ls3_c02307{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02307{word-spacing:-16.542468px;}
.ws0_c02307{word-spacing:-0.158112px;}
.wsa_c02307{word-spacing:-0.013176px;}
.ws21_c02307{word-spacing:-0.007200px;}
.ws4_c02307{word-spacing:0.000000px;}
.ws2_c02307{word-spacing:0.007200px;}
.ws20_c02307{word-spacing:0.013176px;}
.ws23_c02307{word-spacing:0.019764px;}
.ws25_c02307{word-spacing:0.032940px;}
.ws11_c02307{word-spacing:0.039528px;}
.ws22_c02307{word-spacing:0.046116px;}
.ws28_c02307{word-spacing:0.052704px;}
.ws29_c02307{word-spacing:0.059292px;}
.ws3_c02307{word-spacing:0.072468px;}
.ws27_c02307{word-spacing:0.079056px;}
.ws26_c02307{word-spacing:0.085644px;}
.wsb_c02307{word-spacing:2.233332px;}
.ws19_c02307{word-spacing:2.944836px;}
.ws1e_c02307{word-spacing:3.287412px;}
.ws6_c02307{word-spacing:4.361256px;}
.ws1d_c02307{word-spacing:5.810616px;}
.ws1a_c02307{word-spacing:6.107076px;}
.ws1b_c02307{word-spacing:6.146604px;}
.wsd_c02307{word-spacing:6.159780px;}
.ws14_c02307{word-spacing:6.192720px;}
.wsf_c02307{word-spacing:6.528708px;}
.ws18_c02307{word-spacing:7.615728px;}
.ws12_c02307{word-spacing:7.984656px;}
.ws9_c02307{word-spacing:8.709336px;}
.ws10_c02307{word-spacing:9.045324px;}
.wsc_c02307{word-spacing:10.138932px;}
.ws7_c02307{word-spacing:10.494684px;}
.wse_c02307{word-spacing:10.507860px;}
.ws8_c02307{word-spacing:12.293208px;}
.ws1c_c02307{word-spacing:14.467248px;}
.ws16_c02307{word-spacing:23.426928px;}
.ws17_c02307{word-spacing:25.225452px;}
.ws1f_c02307{word-spacing:28.150524px;}
.ws15_c02307{word-spacing:39.290832px;}
.ws5_c02307{word-spacing:48.689172px;}
.ws13_c02307{word-spacing:78.199560px;}
.ws24_c02307{word-spacing:417.870252px;}
._7_c02307{margin-left:-1.469124px;}
._6_c02307{width:1.091484px;}
._2_c02307{width:39.870720px;}
._3_c02307{width:40.950720px;}
._5_c02307{width:55.174464px;}
._1_c02307{width:73.850472px;}
._c_c02307{width:137.168748px;}
._9_c02307{width:167.370048px;}
._0_c02307{width:194.400000px;}
._a_c02307{width:222.638220px;}
._8_c02307{width:250.125840px;}
._14_c02307{width:290.273376px;}
._b_c02307{width:314.365680px;}
._e_c02307{width:444.242016px;}
._d_c02307{width:477.004140px;}
._12_c02307{width:845.734008px;}
._10_c02307{width:1019.644032px;}
._17_c02307{width:1104.425004px;}
._15_c02307{width:1216.770168px;}
._4_c02307{width:1380.620880px;}
._13_c02307{width:1434.859320px;}
._f_c02307{width:1531.189056px;}
._16_c02307{width:1698.471552px;}
._11_c02307{width:1827.082488px;}
._18_c02307{width:2253.981024px;}
.fc0_c02307{color:rgb(0,0,0);}
.fs5_c02307{font-size:11.880000px;}
.fs2_c02307{font-size:42.120000px;}
.fs4_c02307{font-size:47.880000px;}
.fs3_c02307{font-size:60.120000px;}
.fs1_c02307{font-size:65.880000px;}
.fs0_c02307{font-size:72.000000px;}
.y0_c02307{bottom:0.000000px;}
.y3_c02307{bottom:65.191107px;}
.y2_c02307{bottom:103.350450px;}
.y41_c02307{bottom:126.390450px;}
.y40_c02307{bottom:144.300450px;}
.y3f_c02307{bottom:151.410450px;}
.y3e_c02307{bottom:171.120600px;}
.y3d_c02307{bottom:190.830450px;}
.y3c_c02307{bottom:210.630450px;}
.y3b_c02307{bottom:230.340450px;}
.y3a_c02307{bottom:250.050450px;}
.y39_c02307{bottom:269.760450px;}
.y38_c02307{bottom:289.470450px;}
.y37_c02307{bottom:309.180450px;}
.y36_c02307{bottom:328.890450px;}
.y35_c02307{bottom:348.690450px;}
.y34_c02307{bottom:368.490450px;}
.y33_c02307{bottom:388.110600px;}
.y32_c02307{bottom:407.820450px;}
.y31_c02307{bottom:430.860600px;}
.y30_c02307{bottom:454.259937px;}
.y2f_c02307{bottom:476.130450px;}
.y2d_c02307{bottom:498.718020px;}
.y2c_c02307{bottom:520.497948px;}
.y2b_c02307{bottom:542.277876px;}
.y2a_c02307{bottom:564.148389px;}
.y29_c02307{bottom:585.928317px;}
.y1d_c02307{bottom:600.510294px;}
.y28_c02307{bottom:607.798830px;}
.y1c_c02307{bottom:629.309844px;}
.y27_c02307{bottom:629.578758px;}
.y26_c02307{bottom:651.449271px;}
.y1b_c02307{bottom:658.199952px;}
.y25_c02307{bottom:673.229199px;}
.y1a_c02307{bottom:687.090060px;}
.y24_c02307{bottom:695.009127px;}
.y19_c02307{bottom:715.980168px;}
.y23_c02307{bottom:716.879640px;}
.y22_c02307{bottom:738.659568px;}
.y18_c02307{bottom:744.870276px;}
.y21_c02307{bottom:760.530081px;}
.y17_c02307{bottom:773.760384px;}
.y20_c02307{bottom:782.310009px;}
.y16_c02307{bottom:802.650492px;}
.y1f_c02307{bottom:804.180522px;}
.y2e_c02307{bottom:825.868218px;}
.y1e_c02307{bottom:830.370450px;}
.y15_c02307{bottom:831.540600px;}
.y13_c02307{bottom:846.930600px;}
.y12_c02307{bottom:864.389127px;}
.y11_c02307{bottom:886.259640px;}
.y10_c02307{bottom:908.039568px;}
.yf_c02307{bottom:929.910081px;}
.ye_c02307{bottom:951.690009px;}
.yd_c02307{bottom:973.469937px;}
.y14_c02307{bottom:995.250450px;}
.yc_c02307{bottom:1000.920450px;}
.ya_c02307{bottom:1016.220450px;}
.y9_c02307{bottom:1033.769568px;}
.y8_c02307{bottom:1055.549496px;}
.y7_c02307{bottom:1077.420009px;}
.y6_c02307{bottom:1099.199937px;}
.yb_c02307{bottom:1120.980450px;}
.y5_c02307{bottom:1126.650450px;}
.y4_c02307{bottom:1146.270450px;}
.y1_c02307{bottom:1193.160450px;}
.ha_c02307{height:11.659570px;}
.h5_c02307{height:42.449062px;}
.h3_c02307{height:43.909277px;}
.h4_c02307{height:44.074687px;}
.h7_c02307{height:46.991602px;}
.h9_c02307{height:47.017617px;}
.h2_c02307{height:54.331699px;}
.h6_c02307{height:64.657617px;}
.h8_c02307{height:66.394687px;}
.hb_c02307{height:70.664062px;}
.h1_c02307{height:72.562500px;}
.h0_c02307{height:1263.000000px;}
.w1_c02307{width:892.500000px;}
.w0_c02307{width:892.830000px;}
.x0_c02307{left:0.000000px;}
.x1_c02307{left:127.620000px;}
.x3_c02307{left:135.630000px;}
.x8_c02307{left:162.360000px;}
.x6_c02307{left:167.670000px;}
.x9_c02307{left:209.340000px;}
.xa_c02307{left:224.910000px;}
.x4_c02307{left:273.870000px;}
.x7_c02307{left:295.830000px;}
.x2_c02307{left:433.980000px;}
.x5_c02307{left:708.930000px;}
@media print{
.v2_c02307{vertical-align:-19.840000pt;}
.v1_c02307{vertical-align:-15.039467pt;}
.v3_c02307{vertical-align:-4.160000pt;}
.v0_c02307{vertical-align:0.000000pt;}
.ls17_c02307{letter-spacing:-0.160992pt;}
.ls15_c02307{letter-spacing:-0.160320pt;}
.ls14_c02307{letter-spacing:-0.157248pt;}
.ls16_c02307{letter-spacing:-0.029280pt;}
.ls19_c02307{letter-spacing:-0.011712pt;}
.ls12_c02307{letter-spacing:-0.006400pt;}
.ls13_c02307{letter-spacing:0.000000pt;}
.ls11_c02307{letter-spacing:0.005856pt;}
.ls18_c02307{letter-spacing:0.006400pt;}
.lsa_c02307{letter-spacing:0.011712pt;}
.ls0_c02307{letter-spacing:0.017568pt;}
.ls9_c02307{letter-spacing:0.023424pt;}
.ls5_c02307{letter-spacing:0.029280pt;}
.ls6_c02307{letter-spacing:0.035136pt;}
.ls4_c02307{letter-spacing:0.040992pt;}
.ls8_c02307{letter-spacing:0.046848pt;}
.ls10_c02307{letter-spacing:0.052704pt;}
.lsc_c02307{letter-spacing:0.058560pt;}
.ls2_c02307{letter-spacing:0.064416pt;}
.lsd_c02307{letter-spacing:0.070272pt;}
.ls1_c02307{letter-spacing:0.081984pt;}
.lse_c02307{letter-spacing:0.087840pt;}
.ls7_c02307{letter-spacing:0.093696pt;}
.lsb_c02307{letter-spacing:0.146400pt;}
.lsf_c02307{letter-spacing:0.158112pt;}
.ls3_c02307{letter-spacing:0.161728pt;}
.ws1_c02307{word-spacing:-14.704416pt;}
.ws0_c02307{word-spacing:-0.140544pt;}
.wsa_c02307{word-spacing:-0.011712pt;}
.ws21_c02307{word-spacing:-0.006400pt;}
.ws4_c02307{word-spacing:0.000000pt;}
.ws2_c02307{word-spacing:0.006400pt;}
.ws20_c02307{word-spacing:0.011712pt;}
.ws23_c02307{word-spacing:0.017568pt;}
.ws25_c02307{word-spacing:0.029280pt;}
.ws11_c02307{word-spacing:0.035136pt;}
.ws22_c02307{word-spacing:0.040992pt;}
.ws28_c02307{word-spacing:0.046848pt;}
.ws29_c02307{word-spacing:0.052704pt;}
.ws3_c02307{word-spacing:0.064416pt;}
.ws27_c02307{word-spacing:0.070272pt;}
.ws26_c02307{word-spacing:0.076128pt;}
.wsb_c02307{word-spacing:1.985184pt;}
.ws19_c02307{word-spacing:2.617632pt;}
.ws1e_c02307{word-spacing:2.922144pt;}
.ws6_c02307{word-spacing:3.876672pt;}
.ws1d_c02307{word-spacing:5.164992pt;}
.ws1a_c02307{word-spacing:5.428512pt;}
.ws1b_c02307{word-spacing:5.463648pt;}
.wsd_c02307{word-spacing:5.475360pt;}
.ws14_c02307{word-spacing:5.504640pt;}
.wsf_c02307{word-spacing:5.803296pt;}
.ws18_c02307{word-spacing:6.769536pt;}
.ws12_c02307{word-spacing:7.097472pt;}
.ws9_c02307{word-spacing:7.741632pt;}
.ws10_c02307{word-spacing:8.040288pt;}
.wsc_c02307{word-spacing:9.012384pt;}
.ws7_c02307{word-spacing:9.328608pt;}
.wse_c02307{word-spacing:9.340320pt;}
.ws8_c02307{word-spacing:10.927296pt;}
.ws1c_c02307{word-spacing:12.859776pt;}
.ws16_c02307{word-spacing:20.823936pt;}
.ws17_c02307{word-spacing:22.422624pt;}
.ws1f_c02307{word-spacing:25.022688pt;}
.ws15_c02307{word-spacing:34.925184pt;}
.ws5_c02307{word-spacing:43.279264pt;}
.ws13_c02307{word-spacing:69.510720pt;}
.ws24_c02307{word-spacing:371.440224pt;}
._7_c02307{margin-left:-1.305888pt;}
._6_c02307{width:0.970208pt;}
._2_c02307{width:35.440640pt;}
._3_c02307{width:36.400640pt;}
._5_c02307{width:49.043968pt;}
._1_c02307{width:65.644864pt;}
._c_c02307{width:121.927776pt;}
._9_c02307{width:148.773376pt;}
._0_c02307{width:172.800000pt;}
._a_c02307{width:197.900640pt;}
._8_c02307{width:222.334080pt;}
._14_c02307{width:258.020779pt;}
._b_c02307{width:279.436160pt;}
._e_c02307{width:394.881792pt;}
._d_c02307{width:424.003680pt;}
._12_c02307{width:751.763563pt;}
._10_c02307{width:906.350251pt;}
._17_c02307{width:981.711115pt;}
._15_c02307{width:1081.573483pt;}
._4_c02307{width:1227.218560pt;}
._13_c02307{width:1275.430507pt;}
._f_c02307{width:1361.056939pt;}
._16_c02307{width:1509.752491pt;}
._11_c02307{width:1624.073323pt;}
._18_c02307{width:2003.538688pt;}
.fs5_c02307{font-size:10.560000pt;}
.fs2_c02307{font-size:37.440000pt;}
.fs4_c02307{font-size:42.560000pt;}
.fs3_c02307{font-size:53.440000pt;}
.fs1_c02307{font-size:58.560000pt;}
.fs0_c02307{font-size:64.000000pt;}
.y0_c02307{bottom:0.000000pt;}
.y3_c02307{bottom:57.947651pt;}
.y2_c02307{bottom:91.867067pt;}
.y41_c02307{bottom:112.347067pt;}
.y40_c02307{bottom:128.267067pt;}
.y3f_c02307{bottom:134.587067pt;}
.y3e_c02307{bottom:152.107200pt;}
.y3d_c02307{bottom:169.627067pt;}
.y3c_c02307{bottom:187.227067pt;}
.y3b_c02307{bottom:204.747067pt;}
.y3a_c02307{bottom:222.267067pt;}
.y39_c02307{bottom:239.787067pt;}
.y38_c02307{bottom:257.307067pt;}
.y37_c02307{bottom:274.827067pt;}
.y36_c02307{bottom:292.347067pt;}
.y35_c02307{bottom:309.947067pt;}
.y34_c02307{bottom:327.547067pt;}
.y33_c02307{bottom:344.987200pt;}
.y32_c02307{bottom:362.507067pt;}
.y31_c02307{bottom:382.987200pt;}
.y30_c02307{bottom:403.786611pt;}
.y2f_c02307{bottom:423.227067pt;}
.y2d_c02307{bottom:443.304907pt;}
.y2c_c02307{bottom:462.664843pt;}
.y2b_c02307{bottom:482.024779pt;}
.y2a_c02307{bottom:501.465235pt;}
.y29_c02307{bottom:520.825171pt;}
.y1d_c02307{bottom:533.786928pt;}
.y28_c02307{bottom:540.265627pt;}
.y1c_c02307{bottom:559.386528pt;}
.y27_c02307{bottom:559.625563pt;}
.y26_c02307{bottom:579.066019pt;}
.y1b_c02307{bottom:585.066624pt;}
.y25_c02307{bottom:598.425955pt;}
.y1a_c02307{bottom:610.746720pt;}
.y24_c02307{bottom:617.785891pt;}
.y19_c02307{bottom:636.426816pt;}
.y23_c02307{bottom:637.226347pt;}
.y22_c02307{bottom:656.586283pt;}
.y18_c02307{bottom:662.106912pt;}
.y21_c02307{bottom:676.026739pt;}
.y17_c02307{bottom:687.787008pt;}
.y20_c02307{bottom:695.386675pt;}
.y16_c02307{bottom:713.467104pt;}
.y1f_c02307{bottom:714.827131pt;}
.y2e_c02307{bottom:734.105083pt;}
.y1e_c02307{bottom:738.107067pt;}
.y15_c02307{bottom:739.147200pt;}
.y13_c02307{bottom:752.827200pt;}
.y12_c02307{bottom:768.345891pt;}
.y11_c02307{bottom:787.786347pt;}
.y10_c02307{bottom:807.146283pt;}
.yf_c02307{bottom:826.586739pt;}
.ye_c02307{bottom:845.946675pt;}
.yd_c02307{bottom:865.306611pt;}
.y14_c02307{bottom:884.667067pt;}
.yc_c02307{bottom:889.707067pt;}
.ya_c02307{bottom:903.307067pt;}
.y9_c02307{bottom:918.906283pt;}
.y8_c02307{bottom:938.266219pt;}
.y7_c02307{bottom:957.706675pt;}
.y6_c02307{bottom:977.066611pt;}
.yb_c02307{bottom:996.427067pt;}
.y5_c02307{bottom:1001.467067pt;}
.y4_c02307{bottom:1018.907067pt;}
.y1_c02307{bottom:1060.587067pt;}
.ha_c02307{height:10.364062pt;}
.h5_c02307{height:37.732500pt;}
.h3_c02307{height:39.030469pt;}
.h4_c02307{height:39.177500pt;}
.h7_c02307{height:41.770312pt;}
.h9_c02307{height:41.793437pt;}
.h2_c02307{height:48.294844pt;}
.h6_c02307{height:57.473437pt;}
.h8_c02307{height:59.017500pt;}
.hb_c02307{height:62.812500pt;}
.h1_c02307{height:64.500000pt;}
.h0_c02307{height:1122.666667pt;}
.w1_c02307{width:793.333333pt;}
.w0_c02307{width:793.626667pt;}
.x0_c02307{left:0.000000pt;}
.x1_c02307{left:113.440000pt;}
.x3_c02307{left:120.560000pt;}
.x8_c02307{left:144.320000pt;}
.x6_c02307{left:149.040000pt;}
.x9_c02307{left:186.080000pt;}
.xa_c02307{left:199.920000pt;}
.x4_c02307{left:243.440000pt;}
.x7_c02307{left:262.960000pt;}
.x2_c02307{left:385.760000pt;}
.x5_c02307{left:630.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_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_bb5f52bd24c09f3b433d2f0c.woff2')format("woff");}.ff1_c02308{font-family:ff1_c02308;line-height:1.311035;font-style:normal;font-weight:normal;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_1d029e8c8fd39a3a66a36ca3.woff2')format("woff");}.ff2_c02308{font-family:ff2_c02308;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02308{font-family:ff3_c02308;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_c02308;src:url('chunks/assets/font_b31fc8e38c026e5477db3e53.woff2')format("woff");}.ff4_c02308{font-family:ff4_c02308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02308{vertical-align:-69.120000px;}
.v3_c02308{vertical-align:-22.320000px;}
.v2_c02308{vertical-align:-16.920000px;}
.v4_c02308{vertical-align:-4.680000px;}
.v0_c02308{vertical-align:0.000000px;}
.ls16_c02308{letter-spacing:-0.181116px;}
.ls14_c02308{letter-spacing:-0.180360px;}
.ls13_c02308{letter-spacing:-0.176904px;}
.ls15_c02308{letter-spacing:-0.032940px;}
.ls11_c02308{letter-spacing:-0.007200px;}
.ls12_c02308{letter-spacing:0.000000px;}
.ls3_c02308{letter-spacing:0.006588px;}
.lsd_c02308{letter-spacing:0.013176px;}
.ls0_c02308{letter-spacing:0.019764px;}
.lsf_c02308{letter-spacing:0.026352px;}
.ls9_c02308{letter-spacing:0.032940px;}
.lsa_c02308{letter-spacing:0.039528px;}
.ls4_c02308{letter-spacing:0.046116px;}
.lse_c02308{letter-spacing:0.052704px;}
.ls7_c02308{letter-spacing:0.059292px;}
.lsc_c02308{letter-spacing:0.065880px;}
.ls5_c02308{letter-spacing:0.072468px;}
.ls8_c02308{letter-spacing:0.079056px;}
.lsb_c02308{letter-spacing:0.085644px;}
.ls1_c02308{letter-spacing:0.092232px;}
.ls10_c02308{letter-spacing:0.105408px;}
.ls17_c02308{letter-spacing:0.144936px;}
.ls6_c02308{letter-spacing:0.181944px;}
.ls2_c02308{letter-spacing:29.070000px;}
.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;}
}
.ws1_c02308{word-spacing:-16.542468px;}
.ws0_c02308{word-spacing:-0.158112px;}
.ws4_c02308{word-spacing:0.000000px;}
.ws12_c02308{word-spacing:0.006588px;}
.ws2_c02308{word-spacing:0.007200px;}
.ws21_c02308{word-spacing:0.026352px;}
.ws6_c02308{word-spacing:0.046116px;}
.wsf_c02308{word-spacing:0.052704px;}
.ws17_c02308{word-spacing:0.059292px;}
.ws2b_c02308{word-spacing:0.065880px;}
.ws3_c02308{word-spacing:0.072468px;}
.ws5_c02308{word-spacing:0.085644px;}
.ws2e_c02308{word-spacing:0.092232px;}
.wsc_c02308{word-spacing:0.303048px;}
.wsb_c02308{word-spacing:0.375516px;}
.ws2d_c02308{word-spacing:0.428220px;}
.ws24_c02308{word-spacing:2.549556px;}
.ws26_c02308{word-spacing:2.562732px;}
.ws11_c02308{word-spacing:2.569320px;}
.ws2a_c02308{word-spacing:2.865780px;}
.ws29_c02308{word-spacing:2.944836px;}
.ws2c_c02308{word-spacing:4.012092px;}
.ws16_c02308{word-spacing:4.031856px;}
.ws9_c02308{word-spacing:4.328316px;}
.wsa_c02308{word-spacing:4.334904px;}
.ws25_c02308{word-spacing:5.810616px;}
.ws1b_c02308{word-spacing:6.186132px;}
.ws23_c02308{word-spacing:6.515532px;}
.ws20_c02308{word-spacing:6.528708px;}
.ws22_c02308{word-spacing:6.535296px;}
.ws8_c02308{word-spacing:7.233624px;}
.ws27_c02308{word-spacing:7.991244px;}
.ws15_c02308{word-spacing:7.997832px;}
.ws14_c02308{word-spacing:8.004420px;}
.ws28_c02308{word-spacing:14.091732px;}
.ws18_c02308{word-spacing:15.158988px;}
.ws1e_c02308{word-spacing:15.896844px;}
.wse_c02308{word-spacing:16.575408px;}
.wsd_c02308{word-spacing:16.614936px;}
.ws1c_c02308{word-spacing:24.191136px;}
.ws1f_c02308{word-spacing:24.882876px;}
.ws1a_c02308{word-spacing:27.728892px;}
.ws19_c02308{word-spacing:27.742068px;}
.ws13_c02308{word-spacing:28.466748px;}
.ws7_c02308{word-spacing:48.689172px;}
.ws10_c02308{word-spacing:50.806656px;}
.ws1d_c02308{word-spacing:55.846476px;}
._6_c02308{margin-left:-1.225368px;}
._7_c02308{width:1.218780px;}
._2_c02308{width:39.870720px;}
._3_c02308{width:40.950720px;}
._5_c02308{width:55.174464px;}
._1_c02308{width:73.850472px;}
._0_c02308{width:194.400000px;}
._4_c02308{width:1380.620880px;}
.fc0_c02308{color:rgb(0,0,0);}
.fs2_c02308{font-size:11.880000px;}
.fs6_c02308{font-size:24.120000px;}
.fs3_c02308{font-size:42.120000px;}
.fs5_c02308{font-size:47.880000px;}
.fs4_c02308{font-size:60.120000px;}
.fs1_c02308{font-size:65.880000px;}
.fs0_c02308{font-size:72.000000px;}
.y0_c02308{bottom:0.000000px;}
.y3_c02308{bottom:65.191107px;}
.y2_c02308{bottom:103.350450px;}
.y45_c02308{bottom:132.330450px;}
.y44_c02308{bottom:144.480009px;}
.y43_c02308{bottom:166.259937px;}
.y42_c02308{bottom:188.130450px;}
.y46_c02308{bottom:209.820450px;}
.y41_c02308{bottom:215.490450px;}
.y3d_c02308{bottom:228.360450px;}
.y3c_c02308{bottom:240.420522px;}
.y3b_c02308{bottom:262.200450px;}
.y3a_c02308{bottom:284.070450px;}
.y39_c02308{bottom:301.710600px;}
.y38_c02308{bottom:313.860522px;}
.y40_c02308{bottom:319.441215px;}
.y37_c02308{bottom:335.640450px;}
.y3f_c02308{bottom:338.431125px;}
.y3e_c02308{bottom:357.330450px;}
.y36_c02308{bottom:363.000600px;}
.y34_c02308{bottom:380.009937px;}
.y33_c02308{bottom:401.880450px;}
.y32_c02308{bottom:423.660600px;}
.y35_c02308{bottom:445.440306px;}
.y31_c02308{bottom:451.110600px;}
.y2f_c02308{bottom:468.029496px;}
.y2e_c02308{bottom:489.900009px;}
.y2d_c02308{bottom:511.679937px;}
.y2c_c02308{bottom:533.550450px;}
.y30_c02308{bottom:555.239793px;}
.y2b_c02308{bottom:560.910450px;}
.y28_c02308{bottom:573.780450px;}
.y27_c02308{bottom:585.840081px;}
.y26_c02308{bottom:607.620009px;}
.y25_c02308{bottom:629.490522px;}
.y24_c02308{bottom:651.270450px;}
.y23_c02308{bottom:673.140450px;}
.y2a_c02308{bottom:675.840540px;}
.y29_c02308{bottom:694.830450px;}
.y22_c02308{bottom:700.500450px;}
.y1f_c02308{bottom:712.380450px;}
.y1e_c02308{bottom:721.560630px;}
.y1d_c02308{bottom:740.550540px;}
.y1c_c02308{bottom:759.540450px;}
.y21_c02308{bottom:778.350540px;}
.y1b_c02308{bottom:778.440450px;}
.y20_c02308{bottom:797.340450px;}
.y1a_c02308{bottom:802.920450px;}
.y18_c02308{bottom:814.890450px;}
.y17_c02308{bottom:824.071305px;}
.y16_c02308{bottom:843.061215px;}
.y15_c02308{bottom:862.051125px;}
.y14_c02308{bottom:880.950450px;}
.y19_c02308{bottom:899.850450px;}
.y13_c02308{bottom:905.430450px;}
.y10_c02308{bottom:917.400450px;}
.yf_c02308{bottom:926.581665px;}
.ye_c02308{bottom:945.571575px;}
.yd_c02308{bottom:964.561485px;}
.yc_c02308{bottom:983.551395px;}
.yb_c02308{bottom:1002.450720px;}
.ya_c02308{bottom:1021.440630px;}
.y9_c02308{bottom:1040.430540px;}
.y8_c02308{bottom:1059.420450px;}
.y12_c02308{bottom:1059.421125px;}
.y11_c02308{bottom:1078.320450px;}
.y7_c02308{bottom:1083.900450px;}
.y6_c02308{bottom:1103.610450px;}
.y5_c02308{bottom:1117.740450px;}
.y4_c02308{bottom:1154.010450px;}
.y1_c02308{bottom:1193.160450px;}
.h4_c02308{height:11.659570px;}
.h9_c02308{height:23.672461px;}
.ha_c02308{height:42.449062px;}
.h7_c02308{height:42.697617px;}
.h3_c02308{height:43.909277px;}
.h6_c02308{height:44.074687px;}
.h2_c02308{height:54.331699px;}
.h8_c02308{height:64.657617px;}
.h5_c02308{height:66.394687px;}
.h1_c02308{height:72.562500px;}
.h0_c02308{height:1263.000000px;}
.w1_c02308{width:892.500000px;}
.w0_c02308{width:892.830000px;}
.x0_c02308{left:0.000000px;}
.x1_c02308{left:127.620000px;}
.x3_c02308{left:135.630000px;}
.x4_c02308{left:273.870000px;}
.x2_c02308{left:433.980000px;}
.x5_c02308{left:708.480000px;}
.x7_c02308{left:709.920756px;}
.x6_c02308{left:728.189649px;}
@media print{
.v1_c02308{vertical-align:-61.440000pt;}
.v3_c02308{vertical-align:-19.840000pt;}
.v2_c02308{vertical-align:-15.040000pt;}
.v4_c02308{vertical-align:-4.160000pt;}
.v0_c02308{vertical-align:0.000000pt;}
.ls16_c02308{letter-spacing:-0.160992pt;}
.ls14_c02308{letter-spacing:-0.160320pt;}
.ls13_c02308{letter-spacing:-0.157248pt;}
.ls15_c02308{letter-spacing:-0.029280pt;}
.ls11_c02308{letter-spacing:-0.006400pt;}
.ls12_c02308{letter-spacing:0.000000pt;}
.ls3_c02308{letter-spacing:0.005856pt;}
.lsd_c02308{letter-spacing:0.011712pt;}
.ls0_c02308{letter-spacing:0.017568pt;}
.lsf_c02308{letter-spacing:0.023424pt;}
.ls9_c02308{letter-spacing:0.029280pt;}
.lsa_c02308{letter-spacing:0.035136pt;}
.ls4_c02308{letter-spacing:0.040992pt;}
.lse_c02308{letter-spacing:0.046848pt;}
.ls7_c02308{letter-spacing:0.052704pt;}
.lsc_c02308{letter-spacing:0.058560pt;}
.ls5_c02308{letter-spacing:0.064416pt;}
.ls8_c02308{letter-spacing:0.070272pt;}
.lsb_c02308{letter-spacing:0.076128pt;}
.ls1_c02308{letter-spacing:0.081984pt;}
.ls10_c02308{letter-spacing:0.093696pt;}
.ls17_c02308{letter-spacing:0.128832pt;}
.ls6_c02308{letter-spacing:0.161728pt;}
.ls2_c02308{letter-spacing:25.840000pt;}
.ws1_c02308{word-spacing:-14.704416pt;}
.ws0_c02308{word-spacing:-0.140544pt;}
.ws4_c02308{word-spacing:0.000000pt;}
.ws12_c02308{word-spacing:0.005856pt;}
.ws2_c02308{word-spacing:0.006400pt;}
.ws21_c02308{word-spacing:0.023424pt;}
.ws6_c02308{word-spacing:0.040992pt;}
.wsf_c02308{word-spacing:0.046848pt;}
.ws17_c02308{word-spacing:0.052704pt;}
.ws2b_c02308{word-spacing:0.058560pt;}
.ws3_c02308{word-spacing:0.064416pt;}
.ws5_c02308{word-spacing:0.076128pt;}
.ws2e_c02308{word-spacing:0.081984pt;}
.wsc_c02308{word-spacing:0.269376pt;}
.wsb_c02308{word-spacing:0.333792pt;}
.ws2d_c02308{word-spacing:0.380640pt;}
.ws24_c02308{word-spacing:2.266272pt;}
.ws26_c02308{word-spacing:2.277984pt;}
.ws11_c02308{word-spacing:2.283840pt;}
.ws2a_c02308{word-spacing:2.547360pt;}
.ws29_c02308{word-spacing:2.617632pt;}
.ws2c_c02308{word-spacing:3.566304pt;}
.ws16_c02308{word-spacing:3.583872pt;}
.ws9_c02308{word-spacing:3.847392pt;}
.wsa_c02308{word-spacing:3.853248pt;}
.ws25_c02308{word-spacing:5.164992pt;}
.ws1b_c02308{word-spacing:5.498784pt;}
.ws23_c02308{word-spacing:5.791584pt;}
.ws20_c02308{word-spacing:5.803296pt;}
.ws22_c02308{word-spacing:5.809152pt;}
.ws8_c02308{word-spacing:6.429888pt;}
.ws27_c02308{word-spacing:7.103328pt;}
.ws15_c02308{word-spacing:7.109184pt;}
.ws14_c02308{word-spacing:7.115040pt;}
.ws28_c02308{word-spacing:12.525984pt;}
.ws18_c02308{word-spacing:13.474656pt;}
.ws1e_c02308{word-spacing:14.130528pt;}
.wse_c02308{word-spacing:14.733696pt;}
.wsd_c02308{word-spacing:14.768832pt;}
.ws1c_c02308{word-spacing:21.503232pt;}
.ws1f_c02308{word-spacing:22.118112pt;}
.ws1a_c02308{word-spacing:24.647904pt;}
.ws19_c02308{word-spacing:24.659616pt;}
.ws13_c02308{word-spacing:25.303776pt;}
.ws7_c02308{word-spacing:43.279264pt;}
.ws10_c02308{word-spacing:45.161472pt;}
.ws1d_c02308{word-spacing:49.641312pt;}
._6_c02308{margin-left:-1.089216pt;}
._7_c02308{width:1.083360pt;}
._2_c02308{width:35.440640pt;}
._3_c02308{width:36.400640pt;}
._5_c02308{width:49.043968pt;}
._1_c02308{width:65.644864pt;}
._0_c02308{width:172.800000pt;}
._4_c02308{width:1227.218560pt;}
.fs2_c02308{font-size:10.560000pt;}
.fs6_c02308{font-size:21.440000pt;}
.fs3_c02308{font-size:37.440000pt;}
.fs5_c02308{font-size:42.560000pt;}
.fs4_c02308{font-size:53.440000pt;}
.fs1_c02308{font-size:58.560000pt;}
.fs0_c02308{font-size:64.000000pt;}
.y0_c02308{bottom:0.000000pt;}
.y3_c02308{bottom:57.947651pt;}
.y2_c02308{bottom:91.867067pt;}
.y45_c02308{bottom:117.627067pt;}
.y44_c02308{bottom:128.426675pt;}
.y43_c02308{bottom:147.786611pt;}
.y42_c02308{bottom:167.227067pt;}
.y46_c02308{bottom:186.507067pt;}
.y41_c02308{bottom:191.547067pt;}
.y3d_c02308{bottom:202.987067pt;}
.y3c_c02308{bottom:213.707131pt;}
.y3b_c02308{bottom:233.067067pt;}
.y3a_c02308{bottom:252.507067pt;}
.y39_c02308{bottom:268.187200pt;}
.y38_c02308{bottom:278.987131pt;}
.y40_c02308{bottom:283.947747pt;}
.y37_c02308{bottom:298.347067pt;}
.y3f_c02308{bottom:300.827667pt;}
.y3e_c02308{bottom:317.627067pt;}
.y36_c02308{bottom:322.667200pt;}
.y34_c02308{bottom:337.786611pt;}
.y33_c02308{bottom:357.227067pt;}
.y32_c02308{bottom:376.587200pt;}
.y35_c02308{bottom:395.946939pt;}
.y31_c02308{bottom:400.987200pt;}
.y2f_c02308{bottom:416.026219pt;}
.y2e_c02308{bottom:435.466675pt;}
.y2d_c02308{bottom:454.826611pt;}
.y2c_c02308{bottom:474.267067pt;}
.y30_c02308{bottom:493.546483pt;}
.y2b_c02308{bottom:498.587067pt;}
.y28_c02308{bottom:510.027067pt;}
.y27_c02308{bottom:520.746739pt;}
.y26_c02308{bottom:540.106675pt;}
.y25_c02308{bottom:559.547131pt;}
.y24_c02308{bottom:578.907067pt;}
.y23_c02308{bottom:598.347067pt;}
.y2a_c02308{bottom:600.747147pt;}
.y29_c02308{bottom:617.627067pt;}
.y22_c02308{bottom:622.667067pt;}
.y1f_c02308{bottom:633.227067pt;}
.y1e_c02308{bottom:641.387227pt;}
.y1d_c02308{bottom:658.267147pt;}
.y1c_c02308{bottom:675.147067pt;}
.y21_c02308{bottom:691.867147pt;}
.y1b_c02308{bottom:691.947067pt;}
.y20_c02308{bottom:708.747067pt;}
.y1a_c02308{bottom:713.707067pt;}
.y18_c02308{bottom:724.347067pt;}
.y17_c02308{bottom:732.507827pt;}
.y16_c02308{bottom:749.387747pt;}
.y15_c02308{bottom:766.267667pt;}
.y14_c02308{bottom:783.067067pt;}
.y19_c02308{bottom:799.867067pt;}
.y13_c02308{bottom:804.827067pt;}
.y10_c02308{bottom:815.467067pt;}
.yf_c02308{bottom:823.628147pt;}
.ye_c02308{bottom:840.508067pt;}
.yd_c02308{bottom:857.387987pt;}
.yc_c02308{bottom:874.267907pt;}
.yb_c02308{bottom:891.067307pt;}
.ya_c02308{bottom:907.947227pt;}
.y9_c02308{bottom:924.827147pt;}
.y8_c02308{bottom:941.707067pt;}
.y12_c02308{bottom:941.707667pt;}
.y11_c02308{bottom:958.507067pt;}
.y7_c02308{bottom:963.467067pt;}
.y6_c02308{bottom:980.987067pt;}
.y5_c02308{bottom:993.547067pt;}
.y4_c02308{bottom:1025.787067pt;}
.y1_c02308{bottom:1060.587067pt;}
.h4_c02308{height:10.364062pt;}
.h9_c02308{height:21.042187pt;}
.ha_c02308{height:37.732500pt;}
.h7_c02308{height:37.953437pt;}
.h3_c02308{height:39.030469pt;}
.h6_c02308{height:39.177500pt;}
.h2_c02308{height:48.294844pt;}
.h8_c02308{height:57.473437pt;}
.h5_c02308{height:59.017500pt;}
.h1_c02308{height:64.500000pt;}
.h0_c02308{height:1122.666667pt;}
.w1_c02308{width:793.333333pt;}
.w0_c02308{width:793.626667pt;}
.x0_c02308{left:0.000000pt;}
.x1_c02308{left:113.440000pt;}
.x3_c02308{left:120.560000pt;}
.x4_c02308{left:243.440000pt;}
.x2_c02308{left:385.760000pt;}
.x5_c02308{left:629.760000pt;}
.x7_c02308{left:631.040672pt;}
.x6_c02308{left:647.279688pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1e849fd2a3f98919288ed77.woff2')format("woff");}.ff1_c02309{font-family:ff1_c02309;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02309;src:url('chunks/assets/font_eef65abf0753a2c7c678c0f5.woff2')format("woff");}.ff2_c02309{font-family:ff2_c02309;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02309{font-family:ff3_c02309;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_c02309;src:url('chunks/assets/font_f14bd9ec271fd235419e2165.woff2')format("woff");}.ff4_c02309{font-family:ff4_c02309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02309{vertical-align:-22.320000px;}
.v1_c02309{vertical-align:-16.919400px;}
.v3_c02309{vertical-align:-4.680000px;}
.v0_c02309{vertical-align:0.000000px;}
.ls16_c02309{letter-spacing:-0.181116px;}
.ls14_c02309{letter-spacing:-0.180360px;}
.ls13_c02309{letter-spacing:-0.176904px;}
.ls17_c02309{letter-spacing:-0.043092px;}
.ls15_c02309{letter-spacing:-0.032940px;}
.ls1a_c02309{letter-spacing:-0.013176px;}
.ls11_c02309{letter-spacing:-0.007200px;}
.ls18_c02309{letter-spacing:-0.006588px;}
.ls12_c02309{letter-spacing:0.000000px;}
.lsc_c02309{letter-spacing:0.013176px;}
.ls0_c02309{letter-spacing:0.019764px;}
.lsf_c02309{letter-spacing:0.026352px;}
.ls7_c02309{letter-spacing:0.032940px;}
.ls8_c02309{letter-spacing:0.038304px;}
.lsd_c02309{letter-spacing:0.039528px;}
.lsb_c02309{letter-spacing:0.046116px;}
.ls10_c02309{letter-spacing:0.052704px;}
.lse_c02309{letter-spacing:0.059292px;}
.ls19_c02309{letter-spacing:0.065880px;}
.ls5_c02309{letter-spacing:0.067032px;}
.ls2_c02309{letter-spacing:0.072468px;}
.ls6_c02309{letter-spacing:0.079056px;}
.lsa_c02309{letter-spacing:0.086184px;}
.ls1_c02309{letter-spacing:0.092232px;}
.ls4_c02309{letter-spacing:0.110124px;}
.ls9_c02309{letter-spacing:0.134064px;}
.ls3_c02309{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02309{word-spacing:-16.542468px;}
.ws11_c02309{word-spacing:-0.283284px;}
.wsc_c02309{word-spacing:-0.225036px;}
.ws6_c02309{word-spacing:-0.201096px;}
.wsd_c02309{word-spacing:-0.177156px;}
.ws0_c02309{word-spacing:-0.158112px;}
.ws7_c02309{word-spacing:-0.158004px;}
.ws8_c02309{word-spacing:-0.153216px;}
.wsb_c02309{word-spacing:-0.129276px;}
.ws4_c02309{word-spacing:0.000000px;}
.ws2_c02309{word-spacing:0.007200px;}
.ws9_c02309{word-spacing:0.013176px;}
.ws24_c02309{word-spacing:0.019764px;}
.wse_c02309{word-spacing:0.039528px;}
.ws1a_c02309{word-spacing:0.046116px;}
.wsa_c02309{word-spacing:0.059292px;}
.ws26_c02309{word-spacing:0.065880px;}
.ws3_c02309{word-spacing:0.072468px;}
.ws1f_c02309{word-spacing:0.105408px;}
.ws23_c02309{word-spacing:2.193804px;}
.ws22_c02309{word-spacing:2.220156px;}
.ws12_c02309{word-spacing:2.569320px;}
.ws16_c02309{word-spacing:2.898720px;}
.ws18_c02309{word-spacing:4.005504px;}
.ws20_c02309{word-spacing:4.743360px;}
.ws1e_c02309{word-spacing:6.535296px;}
.ws1c_c02309{word-spacing:6.884460px;}
.ws17_c02309{word-spacing:7.609140px;}
.ws19_c02309{word-spacing:7.615728px;}
.ws1d_c02309{word-spacing:11.944044px;}
.ws1b_c02309{word-spacing:13.749156px;}
.ws14_c02309{word-spacing:14.118084px;}
.ws15_c02309{word-spacing:14.137848px;}
.wsf_c02309{word-spacing:16.601760px;}
.ws13_c02309{word-spacing:20.910312px;}
.ws25_c02309{word-spacing:27.775008px;}
.ws10_c02309{word-spacing:36.425052px;}
.ws5_c02309{word-spacing:48.689172px;}
.ws21_c02309{word-spacing:59.081184px;}
._7_c02309{margin-left:-1.072512px;}
._6_c02309{width:1.024632px;}
._2_c02309{width:39.870720px;}
._3_c02309{width:40.950720px;}
._5_c02309{width:55.174464px;}
._1_c02309{width:73.850472px;}
._0_c02309{width:194.400000px;}
._4_c02309{width:1380.620880px;}
.fc0_c02309{color:rgb(0,0,0);}
.fs5_c02309{font-size:24.120000px;}
.fs2_c02309{font-size:42.120000px;}
.fs4_c02309{font-size:47.880000px;}
.fs3_c02309{font-size:60.120000px;}
.fs1_c02309{font-size:65.880000px;}
.fs0_c02309{font-size:72.000000px;}
.y0_c02309{bottom:0.000000px;}
.y3_c02309{bottom:65.191107px;}
.y2_c02309{bottom:103.350450px;}
.y3d_c02309{bottom:226.380450px;}
.y3c_c02309{bottom:255.990450px;}
.y3a_c02309{bottom:278.760450px;}
.y39_c02309{bottom:300.630522px;}
.y3b_c02309{bottom:322.320306px;}
.y38_c02309{bottom:327.990450px;}
.y36_c02309{bottom:345.000009px;}
.y35_c02309{bottom:366.779937px;}
.y34_c02309{bottom:388.650450px;}
.y37_c02309{bottom:410.339793px;}
.y33_c02309{bottom:416.010450px;}
.y31_c02309{bottom:433.020009px;}
.y30_c02309{bottom:454.799937px;}
.y2f_c02309{bottom:476.670450px;}
.y32_c02309{bottom:498.359793px;}
.y2e_c02309{bottom:504.030600px;}
.y2b_c02309{bottom:515.910450px;}
.y2a_c02309{bottom:525.090600px;}
.y29_c02309{bottom:544.080540px;}
.y28_c02309{bottom:563.070450px;}
.y27_c02309{bottom:579.720450px;}
.y26_c02309{bottom:588.900540px;}
.y2d_c02309{bottom:607.800540px;}
.y25_c02309{bottom:607.890450px;}
.y2c_c02309{bottom:626.790450px;}
.y24_c02309{bottom:632.370450px;}
.y22_c02309{bottom:645.240450px;}
.y21_c02309{bottom:657.390450px;}
.y20_c02309{bottom:679.169937px;}
.y23_c02309{bottom:700.950450px;}
.y1f_c02309{bottom:706.620450px;}
.y1d_c02309{bottom:719.400450px;}
.y1c_c02309{bottom:731.550450px;}
.y1b_c02309{bottom:753.330009px;}
.y1a_c02309{bottom:775.109937px;}
.y1e_c02309{bottom:796.890450px;}
.y19_c02309{bottom:802.560450px;}
.y17_c02309{bottom:815.340450px;}
.y16_c02309{bottom:827.490009px;}
.y15_c02309{bottom:849.269937px;}
.y14_c02309{bottom:871.140450px;}
.y13_c02309{bottom:888.780450px;}
.y12_c02309{bottom:900.840009px;}
.y11_c02309{bottom:922.710522px;}
.y10_c02309{bottom:944.490450px;}
.yf_c02309{bottom:962.130450px;}
.ye_c02309{bottom:972.660972px;}
.yd_c02309{bottom:988.500873px;}
.yc_c02309{bottom:1004.340774px;}
.yb_c02309{bottom:1020.270450px;}
.ya_c02309{bottom:1037.730522px;}
.y9_c02309{bottom:1059.510450px;}
.y8_c02309{bottom:1077.240450px;}
.y7_c02309{bottom:1087.680549px;}
.y6_c02309{bottom:1103.520450px;}
.y18_c02309{bottom:1120.980450px;}
.y5_c02309{bottom:1126.650450px;}
.y4_c02309{bottom:1146.270450px;}
.y1_c02309{bottom:1193.160450px;}
.h6_c02309{height:23.672461px;}
.ha_c02309{height:42.449062px;}
.hb_c02309{height:42.697617px;}
.h3_c02309{height:43.909277px;}
.h4_c02309{height:44.074687px;}
.h5_c02309{height:46.991602px;}
.h2_c02309{height:54.331699px;}
.h8_c02309{height:64.655529px;}
.h7_c02309{height:64.657617px;}
.h9_c02309{height:66.394687px;}
.hc_c02309{height:70.664062px;}
.h1_c02309{height:72.562500px;}
.h0_c02309{height:1263.000000px;}
.w1_c02309{width:892.500000px;}
.w0_c02309{width:892.830000px;}
.x0_c02309{left:0.000000px;}
.x1_c02309{left:127.620000px;}
.x3_c02309{left:135.630000px;}
.x4_c02309{left:273.870000px;}
.x2_c02309{left:433.980000px;}
.x5_c02309{left:708.480000px;}
.x6_c02309{left:709.920000px;}
@media print{
.v2_c02309{vertical-align:-19.840000pt;}
.v1_c02309{vertical-align:-15.039467pt;}
.v3_c02309{vertical-align:-4.160000pt;}
.v0_c02309{vertical-align:0.000000pt;}
.ls16_c02309{letter-spacing:-0.160992pt;}
.ls14_c02309{letter-spacing:-0.160320pt;}
.ls13_c02309{letter-spacing:-0.157248pt;}
.ls17_c02309{letter-spacing:-0.038304pt;}
.ls15_c02309{letter-spacing:-0.029280pt;}
.ls1a_c02309{letter-spacing:-0.011712pt;}
.ls11_c02309{letter-spacing:-0.006400pt;}
.ls18_c02309{letter-spacing:-0.005856pt;}
.ls12_c02309{letter-spacing:0.000000pt;}
.lsc_c02309{letter-spacing:0.011712pt;}
.ls0_c02309{letter-spacing:0.017568pt;}
.lsf_c02309{letter-spacing:0.023424pt;}
.ls7_c02309{letter-spacing:0.029280pt;}
.ls8_c02309{letter-spacing:0.034048pt;}
.lsd_c02309{letter-spacing:0.035136pt;}
.lsb_c02309{letter-spacing:0.040992pt;}
.ls10_c02309{letter-spacing:0.046848pt;}
.lse_c02309{letter-spacing:0.052704pt;}
.ls19_c02309{letter-spacing:0.058560pt;}
.ls5_c02309{letter-spacing:0.059584pt;}
.ls2_c02309{letter-spacing:0.064416pt;}
.ls6_c02309{letter-spacing:0.070272pt;}
.lsa_c02309{letter-spacing:0.076608pt;}
.ls1_c02309{letter-spacing:0.081984pt;}
.ls4_c02309{letter-spacing:0.097888pt;}
.ls9_c02309{letter-spacing:0.119168pt;}
.ls3_c02309{letter-spacing:0.161728pt;}
.ws1_c02309{word-spacing:-14.704416pt;}
.ws11_c02309{word-spacing:-0.251808pt;}
.wsc_c02309{word-spacing:-0.200032pt;}
.ws6_c02309{word-spacing:-0.178752pt;}
.wsd_c02309{word-spacing:-0.157472pt;}
.ws0_c02309{word-spacing:-0.140544pt;}
.ws7_c02309{word-spacing:-0.140448pt;}
.ws8_c02309{word-spacing:-0.136192pt;}
.wsb_c02309{word-spacing:-0.114912pt;}
.ws4_c02309{word-spacing:0.000000pt;}
.ws2_c02309{word-spacing:0.006400pt;}
.ws9_c02309{word-spacing:0.011712pt;}
.ws24_c02309{word-spacing:0.017568pt;}
.wse_c02309{word-spacing:0.035136pt;}
.ws1a_c02309{word-spacing:0.040992pt;}
.wsa_c02309{word-spacing:0.052704pt;}
.ws26_c02309{word-spacing:0.058560pt;}
.ws3_c02309{word-spacing:0.064416pt;}
.ws1f_c02309{word-spacing:0.093696pt;}
.ws23_c02309{word-spacing:1.950048pt;}
.ws22_c02309{word-spacing:1.973472pt;}
.ws12_c02309{word-spacing:2.283840pt;}
.ws16_c02309{word-spacing:2.576640pt;}
.ws18_c02309{word-spacing:3.560448pt;}
.ws20_c02309{word-spacing:4.216320pt;}
.ws1e_c02309{word-spacing:5.809152pt;}
.ws1c_c02309{word-spacing:6.119520pt;}
.ws17_c02309{word-spacing:6.763680pt;}
.ws19_c02309{word-spacing:6.769536pt;}
.ws1d_c02309{word-spacing:10.616928pt;}
.ws1b_c02309{word-spacing:12.221472pt;}
.ws14_c02309{word-spacing:12.549408pt;}
.ws15_c02309{word-spacing:12.566976pt;}
.wsf_c02309{word-spacing:14.757120pt;}
.ws13_c02309{word-spacing:18.586944pt;}
.ws25_c02309{word-spacing:24.688896pt;}
.ws10_c02309{word-spacing:32.377824pt;}
.ws5_c02309{word-spacing:43.279264pt;}
.ws21_c02309{word-spacing:52.516608pt;}
._7_c02309{margin-left:-0.953344pt;}
._6_c02309{width:0.910784pt;}
._2_c02309{width:35.440640pt;}
._3_c02309{width:36.400640pt;}
._5_c02309{width:49.043968pt;}
._1_c02309{width:65.644864pt;}
._0_c02309{width:172.800000pt;}
._4_c02309{width:1227.218560pt;}
.fs5_c02309{font-size:21.440000pt;}
.fs2_c02309{font-size:37.440000pt;}
.fs4_c02309{font-size:42.560000pt;}
.fs3_c02309{font-size:53.440000pt;}
.fs1_c02309{font-size:58.560000pt;}
.fs0_c02309{font-size:64.000000pt;}
.y0_c02309{bottom:0.000000pt;}
.y3_c02309{bottom:57.947651pt;}
.y2_c02309{bottom:91.867067pt;}
.y3d_c02309{bottom:201.227067pt;}
.y3c_c02309{bottom:227.547067pt;}
.y3a_c02309{bottom:247.787067pt;}
.y39_c02309{bottom:267.227131pt;}
.y3b_c02309{bottom:286.506939pt;}
.y38_c02309{bottom:291.547067pt;}
.y36_c02309{bottom:306.666675pt;}
.y35_c02309{bottom:326.026611pt;}
.y34_c02309{bottom:345.467067pt;}
.y37_c02309{bottom:364.746483pt;}
.y33_c02309{bottom:369.787067pt;}
.y31_c02309{bottom:384.906675pt;}
.y30_c02309{bottom:404.266611pt;}
.y2f_c02309{bottom:423.707067pt;}
.y32_c02309{bottom:442.986483pt;}
.y2e_c02309{bottom:448.027200pt;}
.y2b_c02309{bottom:458.587067pt;}
.y2a_c02309{bottom:466.747200pt;}
.y29_c02309{bottom:483.627147pt;}
.y28_c02309{bottom:500.507067pt;}
.y27_c02309{bottom:515.307067pt;}
.y26_c02309{bottom:523.467147pt;}
.y2d_c02309{bottom:540.267147pt;}
.y25_c02309{bottom:540.347067pt;}
.y2c_c02309{bottom:557.147067pt;}
.y24_c02309{bottom:562.107067pt;}
.y22_c02309{bottom:573.547067pt;}
.y21_c02309{bottom:584.347067pt;}
.y20_c02309{bottom:603.706611pt;}
.y23_c02309{bottom:623.067067pt;}
.y1f_c02309{bottom:628.107067pt;}
.y1d_c02309{bottom:639.467067pt;}
.y1c_c02309{bottom:650.267067pt;}
.y1b_c02309{bottom:669.626675pt;}
.y1a_c02309{bottom:688.986611pt;}
.y1e_c02309{bottom:708.347067pt;}
.y19_c02309{bottom:713.387067pt;}
.y17_c02309{bottom:724.747067pt;}
.y16_c02309{bottom:735.546675pt;}
.y15_c02309{bottom:754.906611pt;}
.y14_c02309{bottom:774.347067pt;}
.y13_c02309{bottom:790.027067pt;}
.y12_c02309{bottom:800.746675pt;}
.y11_c02309{bottom:820.187131pt;}
.y10_c02309{bottom:839.547067pt;}
.yf_c02309{bottom:855.227067pt;}
.ye_c02309{bottom:864.587531pt;}
.yd_c02309{bottom:878.667443pt;}
.yc_c02309{bottom:892.747355pt;}
.yb_c02309{bottom:906.907067pt;}
.ya_c02309{bottom:922.427131pt;}
.y9_c02309{bottom:941.787067pt;}
.y8_c02309{bottom:957.547067pt;}
.y7_c02309{bottom:966.827155pt;}
.y6_c02309{bottom:980.907067pt;}
.y18_c02309{bottom:996.427067pt;}
.y5_c02309{bottom:1001.467067pt;}
.y4_c02309{bottom:1018.907067pt;}
.y1_c02309{bottom:1060.587067pt;}
.h6_c02309{height:21.042187pt;}
.ha_c02309{height:37.732500pt;}
.hb_c02309{height:37.953437pt;}
.h3_c02309{height:39.030469pt;}
.h4_c02309{height:39.177500pt;}
.h5_c02309{height:41.770312pt;}
.h2_c02309{height:48.294844pt;}
.h8_c02309{height:57.471581pt;}
.h7_c02309{height:57.473437pt;}
.h9_c02309{height:59.017500pt;}
.hc_c02309{height:62.812500pt;}
.h1_c02309{height:64.500000pt;}
.h0_c02309{height:1122.666667pt;}
.w1_c02309{width:793.333333pt;}
.w0_c02309{width:793.626667pt;}
.x0_c02309{left:0.000000pt;}
.x1_c02309{left:113.440000pt;}
.x3_c02309{left:120.560000pt;}
.x4_c02309{left:243.440000pt;}
.x2_c02309{left:385.760000pt;}
.x5_c02309{left:629.760000pt;}
.x6_c02309{left:631.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_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_62790fca9c0fa04f3e927c55.woff2')format("woff");}.ff1_c02310{font-family:ff1_c02310;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02310{font-family:ff2_c02310;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02310;src:url('chunks/assets/font_66299deb460f8b864620129c.woff2')format("woff");}.ff3_c02310{font-family:ff3_c02310;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02310;src:url('chunks/assets/font_d807b44328cb36e7e09373e3.woff2')format("woff");}.ff4_c02310{font-family:ff4_c02310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02310{vertical-align:-17.280000px;}
.v0_c02310{vertical-align:0.000000px;}
.v2_c02310{vertical-align:77.040000px;}
.ls32_c02310{letter-spacing:-0.204408px;}
.ls2a_c02310{letter-spacing:-0.180360px;}
.ls3a_c02310{letter-spacing:-0.114228px;}
.ls3c_c02310{letter-spacing:-0.108216px;}
.ls37_c02310{letter-spacing:-0.102204px;}
.ls2d_c02310{letter-spacing:-0.100548px;}
.ls33_c02310{letter-spacing:-0.090180px;}
.ls31_c02310{letter-spacing:-0.078156px;}
.ls30_c02310{letter-spacing:-0.072144px;}
.ls35_c02310{letter-spacing:-0.066132px;}
.ls2e_c02310{letter-spacing:-0.060120px;}
.ls34_c02310{letter-spacing:-0.054108px;}
.ls38_c02310{letter-spacing:-0.048096px;}
.ls39_c02310{letter-spacing:-0.042084px;}
.ls3b_c02310{letter-spacing:-0.036072px;}
.ls2b_c02310{letter-spacing:-0.030060px;}
.ls2f_c02310{letter-spacing:-0.018036px;}
.ls24_c02310{letter-spacing:-0.014400px;}
.ls36_c02310{letter-spacing:-0.012024px;}
.ls27_c02310{letter-spacing:-0.007200px;}
.ls26_c02310{letter-spacing:0.000000px;}
.ls21_c02310{letter-spacing:0.006012px;}
.ls1e_c02310{letter-spacing:0.012024px;}
.ls16_c02310{letter-spacing:0.013176px;}
.ls6_c02310{letter-spacing:0.014400px;}
.ls15_c02310{letter-spacing:0.019764px;}
.ls5_c02310{letter-spacing:0.021600px;}
.ls17_c02310{letter-spacing:0.024048px;}
.ls8_c02310{letter-spacing:0.028800px;}
.ls18_c02310{letter-spacing:0.030060px;}
.ls0_c02310{letter-spacing:0.032940px;}
.ls2_c02310{letter-spacing:0.036000px;}
.lse_c02310{letter-spacing:0.039528px;}
.lsf_c02310{letter-spacing:0.041940px;}
.ls3_c02310{letter-spacing:0.043200px;}
.ls29_c02310{letter-spacing:0.046116px;}
.ls7_c02310{letter-spacing:0.050400px;}
.ls25_c02310{letter-spacing:0.052704px;}
.ls4_c02310{letter-spacing:0.057600px;}
.ls19_c02310{letter-spacing:0.059292px;}
.ls1f_c02310{letter-spacing:0.060120px;}
.ls28_c02310{letter-spacing:0.064800px;}
.lsd_c02310{letter-spacing:0.065880px;}
.ls1d_c02310{letter-spacing:0.066132px;}
.ls22_c02310{letter-spacing:0.072144px;}
.ls13_c02310{letter-spacing:0.072468px;}
.ls20_c02310{letter-spacing:0.078156px;}
.ls9_c02310{letter-spacing:0.079056px;}
.ls1c_c02310{letter-spacing:0.084168px;}
.lsc_c02310{letter-spacing:0.085644px;}
.ls23_c02310{letter-spacing:0.090180px;}
.ls1_c02310{letter-spacing:0.092232px;}
.ls11_c02310{letter-spacing:0.096192px;}
.ls2c_c02310{letter-spacing:0.098820px;}
.lsa_c02310{letter-spacing:0.105408px;}
.ls10_c02310{letter-spacing:0.108216px;}
.lsb_c02310{letter-spacing:0.111996px;}
.ls14_c02310{letter-spacing:0.138852px;}
.ls12_c02310{letter-spacing:0.168336px;}
.ls1a_c02310{letter-spacing:262.800000px;}
.ls1b_c02310{letter-spacing:333.360000px;}
.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;}
}
.ws1d_c02310{word-spacing:-0.438876px;}
.ws1b_c02310{word-spacing:-0.378756px;}
.ws1c_c02310{word-spacing:-0.366732px;}
.ws45_c02310{word-spacing:-0.360720px;}
.ws33_c02310{word-spacing:-0.354708px;}
.ws39_c02310{word-spacing:-0.348696px;}
.ws3f_c02310{word-spacing:-0.342684px;}
.ws35_c02310{word-spacing:-0.336672px;}
.ws38_c02310{word-spacing:-0.330660px;}
.ws2d_c02310{word-spacing:-0.300600px;}
.ws36_c02310{word-spacing:-0.282564px;}
.ws37_c02310{word-spacing:-0.258516px;}
.ws3d_c02310{word-spacing:-0.252504px;}
.ws1a_c02310{word-spacing:-0.240480px;}
.ws43_c02310{word-spacing:-0.234468px;}
.ws22_c02310{word-spacing:-0.229824px;}
.ws40_c02310{word-spacing:-0.228456px;}
.ws3c_c02310{word-spacing:-0.222444px;}
.ws34_c02310{word-spacing:-0.204408px;}
.ws3e_c02310{word-spacing:-0.198396px;}
.ws28_c02310{word-spacing:-0.192384px;}
.ws3a_c02310{word-spacing:-0.168336px;}
.ws44_c02310{word-spacing:-0.162324px;}
.ws0_c02310{word-spacing:-0.158112px;}
.ws41_c02310{word-spacing:-0.156312px;}
.ws13_c02310{word-spacing:-0.129600px;}
.ws29_c02310{word-spacing:-0.066132px;}
.ws15_c02310{word-spacing:-0.019764px;}
.ws14_c02310{word-spacing:-0.013176px;}
.ws4_c02310{word-spacing:0.000000px;}
.ws5_c02310{word-spacing:0.007200px;}
.ws1f_c02310{word-spacing:0.009576px;}
.ws42_c02310{word-spacing:0.012024px;}
.ws1_c02310{word-spacing:0.014400px;}
.ws16_c02310{word-spacing:0.019764px;}
.ws47_c02310{word-spacing:0.024048px;}
.ws17_c02310{word-spacing:0.026352px;}
.ws2e_c02310{word-spacing:0.032940px;}
.ws3_c02310{word-spacing:0.039528px;}
.ws19_c02310{word-spacing:0.046116px;}
.ws18_c02310{word-spacing:0.052704px;}
.ws2_c02310{word-spacing:0.059292px;}
.ws2b_c02310{word-spacing:0.066132px;}
.ws23_c02310{word-spacing:0.072468px;}
.ws24_c02310{word-spacing:0.079056px;}
.wsb_c02310{word-spacing:0.100800px;}
.ws46_c02310{word-spacing:0.102204px;}
.ws26_c02310{word-spacing:0.108216px;}
.ws2c_c02310{word-spacing:0.144288px;}
.ws25_c02310{word-spacing:0.150300px;}
.ws27_c02310{word-spacing:0.162324px;}
.wsd_c02310{word-spacing:0.180000px;}
.ws2a_c02310{word-spacing:0.180360px;}
.wsa_c02310{word-spacing:0.273600px;}
.wsc_c02310{word-spacing:0.309600px;}
.ws31_c02310{word-spacing:0.331200px;}
.ws9_c02310{word-spacing:0.338400px;}
.ws8_c02310{word-spacing:0.655200px;}
.ws32_c02310{word-spacing:0.777384px;}
.ws7_c02310{word-spacing:0.950400px;}
.ws6_c02310{word-spacing:1.044000px;}
.ws10_c02310{word-spacing:3.348000px;}
.ws12_c02310{word-spacing:3.369600px;}
.ws11_c02310{word-spacing:3.391200px;}
.wse_c02310{word-spacing:3.571200px;}
.wsf_c02310{word-spacing:3.614400px;}
.ws2f_c02310{word-spacing:10.447200px;}
.ws30_c02310{word-spacing:10.488096px;}
.ws20_c02310{word-spacing:26.635284px;}
.ws21_c02310{word-spacing:30.245508px;}
.ws1e_c02310{word-spacing:33.829380px;}
.ws3b_c02310{word-spacing:66.324384px;}
._0_c02310{margin-left:-1.260000px;}
._7_c02310{width:1.240092px;}
._4_c02310{width:76.336416px;}
._1_c02310{width:126.027072px;}
._8_c02310{width:134.935632px;}
._2_c02310{width:158.752488px;}
._3_c02310{width:180.653040px;}
._6_c02310{width:210.455640px;}
._5_c02310{width:218.017728px;}
.fc1_c02310{color:rgb(255,0,0);}
.fc0_c02310{color:rgb(0,0,0);}
.fs4_c02310{font-size:47.880000px;}
.fs3_c02310{font-size:60.120000px;}
.fs1_c02310{font-size:65.880000px;}
.fs0_c02310{font-size:72.000000px;}
.fs2_c02310{font-size:83.880000px;}
.y0_c02310{bottom:0.000000px;}
.y4_c02310{bottom:75.449640px;}
.y3_c02310{bottom:113.608983px;}
.y36_c02310{bottom:147.086787px;}
.y2d_c02310{bottom:166.887309px;}
.y35_c02310{bottom:167.700432px;}
.y3e_c02310{bottom:168.150000px;}
.y34_c02310{bottom:184.980423px;}
.y3d_c02310{bottom:186.684825px;}
.y2c_c02310{bottom:186.687831px;}
.y33_c02310{bottom:202.260414px;}
.y3c_c02310{bottom:206.574024px;}
.y2b_c02310{bottom:206.577030px;}
.y32_c02310{bottom:219.450225px;}
.y3b_c02310{bottom:226.374546px;}
.y2a_c02310{bottom:226.377552px;}
.y31_c02310{bottom:236.730216px;}
.y3a_c02310{bottom:246.265248px;}
.y29_c02310{bottom:246.268254px;}
.y30_c02310{bottom:254.010207px;}
.y39_c02310{bottom:266.065770px;}
.y28_c02310{bottom:266.068776px;}
.y2f_c02310{bottom:271.200018px;}
.y38_c02310{bottom:285.866292px;}
.y27_c02310{bottom:285.869298px;}
.y2e_c02310{bottom:288.480009px;}
.y37_c02310{bottom:305.756994px;}
.y26_c02310{bottom:305.760000px;}
.y25_c02310{bottom:326.910000px;}
.y24_c02310{bottom:346.170000px;}
.y23_c02310{bottom:369.570000px;}
.y22_c02310{bottom:390.180000px;}
.y21_c02310{bottom:409.980000px;}
.y20_c02310{bottom:429.870000px;}
.y1d_c02310{bottom:438.420000px;}
.y1f_c02310{bottom:449.670000px;}
.y19_c02310{bottom:450.570000px;}
.y1c_c02310{bottom:460.200000px;}
.y18_c02310{bottom:467.130000px;}
.y1e_c02310{bottom:469.560000px;}
.y17_c02310{bottom:481.980000px;}
.y1b_c02310{bottom:482.070000px;}
.y11_c02310{bottom:489.360000px;}
.y16_c02310{bottom:499.890000px;}
.y1a_c02310{bottom:503.850000px;}
.y10_c02310{bottom:509.160000px;}
.y15_c02310{bottom:514.740000px;}
.y13_c02310{bottom:525.720000px;}
.yf_c02310{bottom:529.050000px;}
.y14_c02310{bottom:532.650000px;}
.y12_c02310{bottom:547.500000px;}
.ye_c02310{bottom:548.850000px;}
.yd_c02310{bottom:570.090000px;}
.yc_c02310{bottom:591.870000px;}
.yb_c02310{bottom:615.090000px;}
.ya_c02310{bottom:638.940000px;}
.y9_c02310{bottom:662.700000px;}
.y8_c02310{bottom:686.550000px;}
.y7_c02310{bottom:707.160000px;}
.y6_c02310{bottom:727.860000px;}
.y5_c02310{bottom:748.470000px;}
.y2_c02310{bottom:803.369289px;}
.y1_c02310{bottom:822.990000px;}
.h3_c02310{height:43.909277px;}
.h4_c02310{height:54.331699px;}
.h8_c02310{height:60.589687px;}
.hb_c02310{height:66.392960px;}
.h6_c02310{height:66.394687px;}
.ha_c02310{height:66.405451px;}
.h7_c02310{height:67.255312px;}
.h5_c02310{height:70.664062px;}
.h2_c02310{height:72.562500px;}
.h9_c02310{height:149.602500px;}
.h1_c02310{height:892.500000px;}
.h0_c02310{height:892.830000px;}
.w0_c02310{width:1263.000000px;}
.x0_c02310{left:0.000000px;}
.x1_c02310{left:106.275900px;}
.xa_c02310{left:114.375750px;}
.x7_c02310{left:124.185900px;}
.x6_c02310{left:138.225750px;}
.xb_c02310{left:167.565750px;}
.xc_c02310{left:252.615750px;}
.xd_c02310{left:358.905750px;}
.x8_c02310{left:363.855750px;}
.x5_c02310{left:369.165750px;}
.xe_c02310{left:475.905750px;}
.x9_c02310{left:481.125750px;}
.x3_c02310{left:591.195750px;}
.x13_c02310{left:592.815750px;}
.xf_c02310{left:603.435750px;}
.x2_c02310{left:618.826596px;}
.x4_c02310{left:631.425750px;}
.x10_c02310{left:762.915750px;}
.x14_c02310{left:901.155750px;}
.x11_c02310{left:911.775750px;}
.x12_c02310{left:935.535750px;}
@media print{
.v1_c02310{vertical-align:-15.360000pt;}
.v0_c02310{vertical-align:0.000000pt;}
.v2_c02310{vertical-align:68.480000pt;}
.ls32_c02310{letter-spacing:-0.181696pt;}
.ls2a_c02310{letter-spacing:-0.160320pt;}
.ls3a_c02310{letter-spacing:-0.101536pt;}
.ls3c_c02310{letter-spacing:-0.096192pt;}
.ls37_c02310{letter-spacing:-0.090848pt;}
.ls2d_c02310{letter-spacing:-0.089376pt;}
.ls33_c02310{letter-spacing:-0.080160pt;}
.ls31_c02310{letter-spacing:-0.069472pt;}
.ls30_c02310{letter-spacing:-0.064128pt;}
.ls35_c02310{letter-spacing:-0.058784pt;}
.ls2e_c02310{letter-spacing:-0.053440pt;}
.ls34_c02310{letter-spacing:-0.048096pt;}
.ls38_c02310{letter-spacing:-0.042752pt;}
.ls39_c02310{letter-spacing:-0.037408pt;}
.ls3b_c02310{letter-spacing:-0.032064pt;}
.ls2b_c02310{letter-spacing:-0.026720pt;}
.ls2f_c02310{letter-spacing:-0.016032pt;}
.ls24_c02310{letter-spacing:-0.012800pt;}
.ls36_c02310{letter-spacing:-0.010688pt;}
.ls27_c02310{letter-spacing:-0.006400pt;}
.ls26_c02310{letter-spacing:0.000000pt;}
.ls21_c02310{letter-spacing:0.005344pt;}
.ls1e_c02310{letter-spacing:0.010688pt;}
.ls16_c02310{letter-spacing:0.011712pt;}
.ls6_c02310{letter-spacing:0.012800pt;}
.ls15_c02310{letter-spacing:0.017568pt;}
.ls5_c02310{letter-spacing:0.019200pt;}
.ls17_c02310{letter-spacing:0.021376pt;}
.ls8_c02310{letter-spacing:0.025600pt;}
.ls18_c02310{letter-spacing:0.026720pt;}
.ls0_c02310{letter-spacing:0.029280pt;}
.ls2_c02310{letter-spacing:0.032000pt;}
.lse_c02310{letter-spacing:0.035136pt;}
.lsf_c02310{letter-spacing:0.037280pt;}
.ls3_c02310{letter-spacing:0.038400pt;}
.ls29_c02310{letter-spacing:0.040992pt;}
.ls7_c02310{letter-spacing:0.044800pt;}
.ls25_c02310{letter-spacing:0.046848pt;}
.ls4_c02310{letter-spacing:0.051200pt;}
.ls19_c02310{letter-spacing:0.052704pt;}
.ls1f_c02310{letter-spacing:0.053440pt;}
.ls28_c02310{letter-spacing:0.057600pt;}
.lsd_c02310{letter-spacing:0.058560pt;}
.ls1d_c02310{letter-spacing:0.058784pt;}
.ls22_c02310{letter-spacing:0.064128pt;}
.ls13_c02310{letter-spacing:0.064416pt;}
.ls20_c02310{letter-spacing:0.069472pt;}
.ls9_c02310{letter-spacing:0.070272pt;}
.ls1c_c02310{letter-spacing:0.074816pt;}
.lsc_c02310{letter-spacing:0.076128pt;}
.ls23_c02310{letter-spacing:0.080160pt;}
.ls1_c02310{letter-spacing:0.081984pt;}
.ls11_c02310{letter-spacing:0.085504pt;}
.ls2c_c02310{letter-spacing:0.087840pt;}
.lsa_c02310{letter-spacing:0.093696pt;}
.ls10_c02310{letter-spacing:0.096192pt;}
.lsb_c02310{letter-spacing:0.099552pt;}
.ls14_c02310{letter-spacing:0.123424pt;}
.ls12_c02310{letter-spacing:0.149632pt;}
.ls1a_c02310{letter-spacing:233.600000pt;}
.ls1b_c02310{letter-spacing:296.320000pt;}
.ws1d_c02310{word-spacing:-0.390112pt;}
.ws1b_c02310{word-spacing:-0.336672pt;}
.ws1c_c02310{word-spacing:-0.325984pt;}
.ws45_c02310{word-spacing:-0.320640pt;}
.ws33_c02310{word-spacing:-0.315296pt;}
.ws39_c02310{word-spacing:-0.309952pt;}
.ws3f_c02310{word-spacing:-0.304608pt;}
.ws35_c02310{word-spacing:-0.299264pt;}
.ws38_c02310{word-spacing:-0.293920pt;}
.ws2d_c02310{word-spacing:-0.267200pt;}
.ws36_c02310{word-spacing:-0.251168pt;}
.ws37_c02310{word-spacing:-0.229792pt;}
.ws3d_c02310{word-spacing:-0.224448pt;}
.ws1a_c02310{word-spacing:-0.213760pt;}
.ws43_c02310{word-spacing:-0.208416pt;}
.ws22_c02310{word-spacing:-0.204288pt;}
.ws40_c02310{word-spacing:-0.203072pt;}
.ws3c_c02310{word-spacing:-0.197728pt;}
.ws34_c02310{word-spacing:-0.181696pt;}
.ws3e_c02310{word-spacing:-0.176352pt;}
.ws28_c02310{word-spacing:-0.171008pt;}
.ws3a_c02310{word-spacing:-0.149632pt;}
.ws44_c02310{word-spacing:-0.144288pt;}
.ws0_c02310{word-spacing:-0.140544pt;}
.ws41_c02310{word-spacing:-0.138944pt;}
.ws13_c02310{word-spacing:-0.115200pt;}
.ws29_c02310{word-spacing:-0.058784pt;}
.ws15_c02310{word-spacing:-0.017568pt;}
.ws14_c02310{word-spacing:-0.011712pt;}
.ws4_c02310{word-spacing:0.000000pt;}
.ws5_c02310{word-spacing:0.006400pt;}
.ws1f_c02310{word-spacing:0.008512pt;}
.ws42_c02310{word-spacing:0.010688pt;}
.ws1_c02310{word-spacing:0.012800pt;}
.ws16_c02310{word-spacing:0.017568pt;}
.ws47_c02310{word-spacing:0.021376pt;}
.ws17_c02310{word-spacing:0.023424pt;}
.ws2e_c02310{word-spacing:0.029280pt;}
.ws3_c02310{word-spacing:0.035136pt;}
.ws19_c02310{word-spacing:0.040992pt;}
.ws18_c02310{word-spacing:0.046848pt;}
.ws2_c02310{word-spacing:0.052704pt;}
.ws2b_c02310{word-spacing:0.058784pt;}
.ws23_c02310{word-spacing:0.064416pt;}
.ws24_c02310{word-spacing:0.070272pt;}
.wsb_c02310{word-spacing:0.089600pt;}
.ws46_c02310{word-spacing:0.090848pt;}
.ws26_c02310{word-spacing:0.096192pt;}
.ws2c_c02310{word-spacing:0.128256pt;}
.ws25_c02310{word-spacing:0.133600pt;}
.ws27_c02310{word-spacing:0.144288pt;}
.wsd_c02310{word-spacing:0.160000pt;}
.ws2a_c02310{word-spacing:0.160320pt;}
.wsa_c02310{word-spacing:0.243200pt;}
.wsc_c02310{word-spacing:0.275200pt;}
.ws31_c02310{word-spacing:0.294400pt;}
.ws9_c02310{word-spacing:0.300800pt;}
.ws8_c02310{word-spacing:0.582400pt;}
.ws32_c02310{word-spacing:0.691008pt;}
.ws7_c02310{word-spacing:0.844800pt;}
.ws6_c02310{word-spacing:0.928000pt;}
.ws10_c02310{word-spacing:2.976000pt;}
.ws12_c02310{word-spacing:2.995200pt;}
.ws11_c02310{word-spacing:3.014400pt;}
.wse_c02310{word-spacing:3.174400pt;}
.wsf_c02310{word-spacing:3.212800pt;}
.ws2f_c02310{word-spacing:9.286400pt;}
.ws30_c02310{word-spacing:9.322752pt;}
.ws20_c02310{word-spacing:23.675808pt;}
.ws21_c02310{word-spacing:26.884896pt;}
.ws1e_c02310{word-spacing:30.070560pt;}
.ws3b_c02310{word-spacing:58.955008pt;}
._0_c02310{margin-left:-1.120000pt;}
._7_c02310{width:1.102304pt;}
._4_c02310{width:67.854592pt;}
._1_c02310{width:112.024064pt;}
._8_c02310{width:119.942784pt;}
._2_c02310{width:141.113323pt;}
._3_c02310{width:160.580480pt;}
._6_c02310{width:187.071680pt;}
._5_c02310{width:193.793536pt;}
.fs4_c02310{font-size:42.560000pt;}
.fs3_c02310{font-size:53.440000pt;}
.fs1_c02310{font-size:58.560000pt;}
.fs0_c02310{font-size:64.000000pt;}
.fs2_c02310{font-size:74.560000pt;}
.y0_c02310{bottom:0.000000pt;}
.y4_c02310{bottom:67.066347pt;}
.y3_c02310{bottom:100.985763pt;}
.y36_c02310{bottom:130.743811pt;}
.y2d_c02310{bottom:148.344275pt;}
.y35_c02310{bottom:149.067051pt;}
.y3e_c02310{bottom:149.466667pt;}
.y34_c02310{bottom:164.427043pt;}
.y3d_c02310{bottom:165.942067pt;}
.y2c_c02310{bottom:165.944739pt;}
.y33_c02310{bottom:179.787035pt;}
.y3c_c02310{bottom:183.621355pt;}
.y2b_c02310{bottom:183.624027pt;}
.y32_c02310{bottom:195.066867pt;}
.y3b_c02310{bottom:201.221819pt;}
.y2a_c02310{bottom:201.224491pt;}
.y31_c02310{bottom:210.426859pt;}
.y3a_c02310{bottom:218.902443pt;}
.y29_c02310{bottom:218.905115pt;}
.y30_c02310{bottom:225.786851pt;}
.y39_c02310{bottom:236.502907pt;}
.y28_c02310{bottom:236.505579pt;}
.y2f_c02310{bottom:241.066683pt;}
.y38_c02310{bottom:254.103371pt;}
.y27_c02310{bottom:254.106043pt;}
.y2e_c02310{bottom:256.426675pt;}
.y37_c02310{bottom:271.783995pt;}
.y26_c02310{bottom:271.786667pt;}
.y25_c02310{bottom:290.586667pt;}
.y24_c02310{bottom:307.706667pt;}
.y23_c02310{bottom:328.506667pt;}
.y22_c02310{bottom:346.826667pt;}
.y21_c02310{bottom:364.426667pt;}
.y20_c02310{bottom:382.106667pt;}
.y1d_c02310{bottom:389.706667pt;}
.y1f_c02310{bottom:399.706667pt;}
.y19_c02310{bottom:400.506667pt;}
.y1c_c02310{bottom:409.066667pt;}
.y18_c02310{bottom:415.226667pt;}
.y1e_c02310{bottom:417.386667pt;}
.y17_c02310{bottom:428.426667pt;}
.y1b_c02310{bottom:428.506667pt;}
.y11_c02310{bottom:434.986667pt;}
.y16_c02310{bottom:444.346667pt;}
.y1a_c02310{bottom:447.866667pt;}
.y10_c02310{bottom:452.586667pt;}
.y15_c02310{bottom:457.546667pt;}
.y13_c02310{bottom:467.306667pt;}
.yf_c02310{bottom:470.266667pt;}
.y14_c02310{bottom:473.466667pt;}
.y12_c02310{bottom:486.666667pt;}
.ye_c02310{bottom:487.866667pt;}
.yd_c02310{bottom:506.746667pt;}
.yc_c02310{bottom:526.106667pt;}
.yb_c02310{bottom:546.746667pt;}
.ya_c02310{bottom:567.946667pt;}
.y9_c02310{bottom:589.066667pt;}
.y8_c02310{bottom:610.266667pt;}
.y7_c02310{bottom:628.586667pt;}
.y6_c02310{bottom:646.986667pt;}
.y5_c02310{bottom:665.306667pt;}
.y2_c02310{bottom:714.106035pt;}
.y1_c02310{bottom:731.546667pt;}
.h3_c02310{height:39.030469pt;}
.h4_c02310{height:48.294844pt;}
.h8_c02310{height:53.857500pt;}
.hb_c02310{height:59.015964pt;}
.h6_c02310{height:59.017500pt;}
.ha_c02310{height:59.027068pt;}
.h7_c02310{height:59.782500pt;}
.h5_c02310{height:62.812500pt;}
.h2_c02310{height:64.500000pt;}
.h9_c02310{height:132.980000pt;}
.h1_c02310{height:793.333333pt;}
.h0_c02310{height:793.626667pt;}
.w0_c02310{width:1122.666667pt;}
.x0_c02310{left:0.000000pt;}
.x1_c02310{left:94.467467pt;}
.xa_c02310{left:101.667333pt;}
.x7_c02310{left:110.387467pt;}
.x6_c02310{left:122.867333pt;}
.xb_c02310{left:148.947333pt;}
.xc_c02310{left:224.547333pt;}
.xd_c02310{left:319.027333pt;}
.x8_c02310{left:323.427333pt;}
.x5_c02310{left:328.147333pt;}
.xe_c02310{left:423.027333pt;}
.x9_c02310{left:427.667333pt;}
.x3_c02310{left:525.507333pt;}
.x13_c02310{left:526.947333pt;}
.xf_c02310{left:536.387333pt;}
.x2_c02310{left:550.068085pt;}
.x4_c02310{left:561.267333pt;}
.x10_c02310{left:678.147333pt;}
.x14_c02310{left:801.027333pt;}
.x11_c02310{left:810.467333pt;}
.x12_c02310{left:831.587333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da3cb0c28768f3c60f99cd77.woff2')format("woff");}.ff1_c02311{font-family:ff1_c02311;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02311{font-family:ff2_c02311;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02311;src:url('chunks/assets/font_c450c5e0f60c7ba10563e745.woff2')format("woff");}.ff3_c02311{font-family:ff3_c02311;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02311;src:url('chunks/assets/font_4b5abdfec95d5862eedcebec.woff2')format("woff");}.ff4_c02311{font-family:ff4_c02311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02311{vertical-align:-28.440000px;}
.v3_c02311{vertical-align:-16.920000px;}
.v1_c02311{vertical-align:-5.760000px;}
.v0_c02311{vertical-align:0.000000px;}
.v4_c02311{vertical-align:18.000000px;}
.ls16_c02311{letter-spacing:-0.176904px;}
.ls1d_c02311{letter-spacing:-0.138276px;}
.ls1b_c02311{letter-spacing:-0.108216px;}
.ls19_c02311{letter-spacing:-0.102204px;}
.ls18_c02311{letter-spacing:-0.090180px;}
.ls1a_c02311{letter-spacing:-0.018036px;}
.ls14_c02311{letter-spacing:-0.014400px;}
.ls1c_c02311{letter-spacing:-0.012024px;}
.ls15_c02311{letter-spacing:0.000000px;}
.lse_c02311{letter-spacing:0.006588px;}
.lsa_c02311{letter-spacing:0.013176px;}
.ls2_c02311{letter-spacing:0.014400px;}
.ls3_c02311{letter-spacing:0.018036px;}
.ls11_c02311{letter-spacing:0.019764px;}
.ls0_c02311{letter-spacing:0.032940px;}
.lsd_c02311{letter-spacing:0.039528px;}
.lsb_c02311{letter-spacing:0.046116px;}
.ls8_c02311{letter-spacing:0.052704px;}
.lsc_c02311{letter-spacing:0.059292px;}
.ls6_c02311{letter-spacing:0.065880px;}
.ls12_c02311{letter-spacing:0.072468px;}
.ls13_c02311{letter-spacing:0.079056px;}
.ls9_c02311{letter-spacing:0.085644px;}
.ls1_c02311{letter-spacing:0.092232px;}
.lsf_c02311{letter-spacing:0.105408px;}
.ls7_c02311{letter-spacing:0.125172px;}
.ls5_c02311{letter-spacing:0.131760px;}
.ls10_c02311{letter-spacing:0.151524px;}
.ls17_c02311{letter-spacing:0.177876px;}
.ls4_c02311{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02311{word-spacing:-16.601760px;}
.ws2_c02311{word-spacing:-16.555644px;}
.ws7_c02311{word-spacing:-0.288576px;}
.ws13_c02311{word-spacing:-0.276696px;}
.ws2c_c02311{word-spacing:-0.258516px;}
.ws1e_c02311{word-spacing:-0.252504px;}
.ws1f_c02311{word-spacing:-0.162324px;}
.ws0_c02311{word-spacing:-0.158112px;}
.ws2d_c02311{word-spacing:-0.132264px;}
.ws1d_c02311{word-spacing:-0.059292px;}
.ws6_c02311{word-spacing:0.000000px;}
.wsf_c02311{word-spacing:0.006588px;}
.ws3_c02311{word-spacing:0.014400px;}
.ws5_c02311{word-spacing:0.039528px;}
.ws4_c02311{word-spacing:0.059292px;}
.ws26_c02311{word-spacing:0.072468px;}
.ws2e_c02311{word-spacing:0.102204px;}
.wsb_c02311{word-spacing:0.180360px;}
.ws14_c02311{word-spacing:0.192384px;}
.ws24_c02311{word-spacing:0.764208px;}
.ws20_c02311{word-spacing:1.482300px;}
.ws15_c02311{word-spacing:1.798524px;}
.ws29_c02311{word-spacing:3.979152px;}
.ws2a_c02311{word-spacing:4.328316px;}
.ws2b_c02311{word-spacing:4.361256px;}
.ws1c_c02311{word-spacing:4.756536px;}
.ws21_c02311{word-spacing:5.448276px;}
.ws23_c02311{word-spacing:7.273152px;}
.ws22_c02311{word-spacing:7.279740px;}
.ws16_c02311{word-spacing:7.918776px;}
.ws17_c02311{word-spacing:7.945128px;}
.ws27_c02311{word-spacing:10.797732px;}
.ws28_c02311{word-spacing:10.830672px;}
.wsc_c02311{word-spacing:12.965184px;}
.ws10_c02311{word-spacing:14.790060px;}
.ws11_c02311{word-spacing:14.809824px;}
.ws12_c02311{word-spacing:17.682192px;}
.ws1b_c02311{word-spacing:19.823292px;}
.ws18_c02311{word-spacing:22.372848px;}
.ws25_c02311{word-spacing:23.123880px;}
.ws1a_c02311{word-spacing:29.145312px;}
.ws19_c02311{word-spacing:29.198016px;}
.wsa_c02311{word-spacing:30.561732px;}
.ws9_c02311{word-spacing:30.621024px;}
.wse_c02311{word-spacing:30.640788px;}
.wsd_c02311{word-spacing:30.673728px;}
.ws8_c02311{word-spacing:48.689172px;}
._3_c02311{margin-left:-1.292580px;}
._5_c02311{width:1.073844px;}
._1_c02311{width:48.686112px;}
._4_c02311{width:54.278496px;}
._0_c02311{width:115.970472px;}
._2_c02311{width:2017.785600px;}
.fc0_c02311{color:rgb(0,0,0);}
.fs6_c02311{font-size:24.120000px;}
.fs5_c02311{font-size:36.000000px;}
.fs2_c02311{font-size:42.120000px;}
.fs3_c02311{font-size:47.880000px;}
.fs4_c02311{font-size:60.120000px;}
.fs1_c02311{font-size:65.880000px;}
.fs0_c02311{font-size:72.000000px;}
.y0_c02311{bottom:0.000000px;}
.y4_c02311{bottom:75.449640px;}
.y3_c02311{bottom:113.608983px;}
.y2c_c02311{bottom:160.049631px;}
.y2b_c02311{bottom:181.829559px;}
.y2a_c02311{bottom:203.609487px;}
.y29_c02311{bottom:225.480000px;}
.y28_c02311{bottom:243.120000px;}
.y27_c02311{bottom:255.269190px;}
.y26_c02311{bottom:277.049118px;}
.y30_c02311{bottom:281.640000px;}
.y25_c02311{bottom:298.829046px;}
.y2f_c02311{bottom:310.530000px;}
.y24_c02311{bottom:320.699559px;}
.y2e_c02311{bottom:336.720000px;}
.y23_c02311{bottom:342.479487px;}
.y22_c02311{bottom:364.260000px;}
.y2d_c02311{bottom:365.610000px;}
.y1d_c02311{bottom:383.970000px;}
.y1c_c02311{bottom:398.819262px;}
.y1b_c02311{bottom:420.599190px;}
.y1a_c02311{bottom:442.469703px;}
.y21_c02311{bottom:447.060000px;}
.y19_c02311{bottom:464.249631px;}
.y20_c02311{bottom:475.860000px;}
.y18_c02311{bottom:486.029559px;}
.y1f_c02311{bottom:502.140000px;}
.y17_c02311{bottom:507.900072px;}
.y16_c02311{bottom:529.590000px;}
.y1e_c02311{bottom:530.940000px;}
.y11_c02311{bottom:547.950000px;}
.y10_c02311{bottom:559.830765px;}
.yf_c02311{bottom:578.730090px;}
.y15_c02311{bottom:582.420000px;}
.ye_c02311{bottom:597.720000px;}
.yd_c02311{bottom:615.810000px;}
.y14_c02311{bottom:617.250000px;}
.yc_c02311{bottom:630.480180px;}
.y13_c02311{bottom:643.440000px;}
.yb_c02311{bottom:649.470090px;}
.ya_c02311{bottom:668.370000px;}
.y12_c02311{bottom:669.720000px;}
.y8_c02311{bottom:688.080000px;}
.y7_c02311{bottom:702.930072px;}
.y6_c02311{bottom:724.620000px;}
.y9_c02311{bottom:725.970000px;}
.y5_c02311{bottom:754.770000px;}
.y2_c02311{bottom:803.369289px;}
.y1_c02311{bottom:822.990000px;}
.hb_c02311{height:23.672461px;}
.h8_c02311{height:35.332031px;}
.h3_c02311{height:43.909277px;}
.h5_c02311{height:44.122500px;}
.ha_c02311{height:46.991602px;}
.h4_c02311{height:54.331699px;}
.h9_c02311{height:60.589687px;}
.h7_c02311{height:64.657617px;}
.h6_c02311{height:66.754688px;}
.h2_c02311{height:72.562500px;}
.h1_c02311{height:892.500000px;}
.h0_c02311{height:892.830000px;}
.w0_c02311{width:1263.000000px;}
.x0_c02311{left:0.000000px;}
.x1_c02311{left:106.275900px;}
.x3_c02311{left:124.995750px;}
.x4_c02311{left:273.855750px;}
.x2_c02311{left:618.826596px;}
.x5_c02311{left:826.725750px;}
@media print{
.v2_c02311{vertical-align:-25.280000pt;}
.v3_c02311{vertical-align:-15.040000pt;}
.v1_c02311{vertical-align:-5.120000pt;}
.v0_c02311{vertical-align:0.000000pt;}
.v4_c02311{vertical-align:16.000000pt;}
.ls16_c02311{letter-spacing:-0.157248pt;}
.ls1d_c02311{letter-spacing:-0.122912pt;}
.ls1b_c02311{letter-spacing:-0.096192pt;}
.ls19_c02311{letter-spacing:-0.090848pt;}
.ls18_c02311{letter-spacing:-0.080160pt;}
.ls1a_c02311{letter-spacing:-0.016032pt;}
.ls14_c02311{letter-spacing:-0.012800pt;}
.ls1c_c02311{letter-spacing:-0.010688pt;}
.ls15_c02311{letter-spacing:0.000000pt;}
.lse_c02311{letter-spacing:0.005856pt;}
.lsa_c02311{letter-spacing:0.011712pt;}
.ls2_c02311{letter-spacing:0.012800pt;}
.ls3_c02311{letter-spacing:0.016032pt;}
.ls11_c02311{letter-spacing:0.017568pt;}
.ls0_c02311{letter-spacing:0.029280pt;}
.lsd_c02311{letter-spacing:0.035136pt;}
.lsb_c02311{letter-spacing:0.040992pt;}
.ls8_c02311{letter-spacing:0.046848pt;}
.lsc_c02311{letter-spacing:0.052704pt;}
.ls6_c02311{letter-spacing:0.058560pt;}
.ls12_c02311{letter-spacing:0.064416pt;}
.ls13_c02311{letter-spacing:0.070272pt;}
.ls9_c02311{letter-spacing:0.076128pt;}
.ls1_c02311{letter-spacing:0.081984pt;}
.lsf_c02311{letter-spacing:0.093696pt;}
.ls7_c02311{letter-spacing:0.111264pt;}
.ls5_c02311{letter-spacing:0.117120pt;}
.ls10_c02311{letter-spacing:0.134688pt;}
.ls17_c02311{letter-spacing:0.158112pt;}
.ls4_c02311{letter-spacing:0.161728pt;}
.ws1_c02311{word-spacing:-14.757120pt;}
.ws2_c02311{word-spacing:-14.716128pt;}
.ws7_c02311{word-spacing:-0.256512pt;}
.ws13_c02311{word-spacing:-0.245952pt;}
.ws2c_c02311{word-spacing:-0.229792pt;}
.ws1e_c02311{word-spacing:-0.224448pt;}
.ws1f_c02311{word-spacing:-0.144288pt;}
.ws0_c02311{word-spacing:-0.140544pt;}
.ws2d_c02311{word-spacing:-0.117568pt;}
.ws1d_c02311{word-spacing:-0.052704pt;}
.ws6_c02311{word-spacing:0.000000pt;}
.wsf_c02311{word-spacing:0.005856pt;}
.ws3_c02311{word-spacing:0.012800pt;}
.ws5_c02311{word-spacing:0.035136pt;}
.ws4_c02311{word-spacing:0.052704pt;}
.ws26_c02311{word-spacing:0.064416pt;}
.ws2e_c02311{word-spacing:0.090848pt;}
.wsb_c02311{word-spacing:0.160320pt;}
.ws14_c02311{word-spacing:0.171008pt;}
.ws24_c02311{word-spacing:0.679296pt;}
.ws20_c02311{word-spacing:1.317600pt;}
.ws15_c02311{word-spacing:1.598688pt;}
.ws29_c02311{word-spacing:3.537024pt;}
.ws2a_c02311{word-spacing:3.847392pt;}
.ws2b_c02311{word-spacing:3.876672pt;}
.ws1c_c02311{word-spacing:4.228032pt;}
.ws21_c02311{word-spacing:4.842912pt;}
.ws23_c02311{word-spacing:6.465024pt;}
.ws22_c02311{word-spacing:6.470880pt;}
.ws16_c02311{word-spacing:7.038912pt;}
.ws17_c02311{word-spacing:7.062336pt;}
.ws27_c02311{word-spacing:9.597984pt;}
.ws28_c02311{word-spacing:9.627264pt;}
.wsc_c02311{word-spacing:11.524608pt;}
.ws10_c02311{word-spacing:13.146720pt;}
.ws11_c02311{word-spacing:13.164288pt;}
.ws12_c02311{word-spacing:15.717504pt;}
.ws1b_c02311{word-spacing:17.620704pt;}
.ws18_c02311{word-spacing:19.886976pt;}
.ws25_c02311{word-spacing:20.554560pt;}
.ws1a_c02311{word-spacing:25.906944pt;}
.ws19_c02311{word-spacing:25.953792pt;}
.wsa_c02311{word-spacing:27.165984pt;}
.ws9_c02311{word-spacing:27.218688pt;}
.wse_c02311{word-spacing:27.236256pt;}
.wsd_c02311{word-spacing:27.265536pt;}
.ws8_c02311{word-spacing:43.279264pt;}
._3_c02311{margin-left:-1.148960pt;}
._5_c02311{width:0.954528pt;}
._1_c02311{width:43.276544pt;}
._4_c02311{width:48.247552pt;}
._0_c02311{width:103.084864pt;}
._2_c02311{width:1793.587200pt;}
.fs6_c02311{font-size:21.440000pt;}
.fs5_c02311{font-size:32.000000pt;}
.fs2_c02311{font-size:37.440000pt;}
.fs3_c02311{font-size:42.560000pt;}
.fs4_c02311{font-size:53.440000pt;}
.fs1_c02311{font-size:58.560000pt;}
.fs0_c02311{font-size:64.000000pt;}
.y0_c02311{bottom:0.000000pt;}
.y4_c02311{bottom:67.066347pt;}
.y3_c02311{bottom:100.985763pt;}
.y2c_c02311{bottom:142.266339pt;}
.y2b_c02311{bottom:161.626275pt;}
.y2a_c02311{bottom:180.986211pt;}
.y29_c02311{bottom:200.426667pt;}
.y28_c02311{bottom:216.106667pt;}
.y27_c02311{bottom:226.905947pt;}
.y26_c02311{bottom:246.265883pt;}
.y30_c02311{bottom:250.346667pt;}
.y25_c02311{bottom:265.625819pt;}
.y2f_c02311{bottom:276.026667pt;}
.y24_c02311{bottom:285.066275pt;}
.y2e_c02311{bottom:299.306667pt;}
.y23_c02311{bottom:304.426211pt;}
.y22_c02311{bottom:323.786667pt;}
.y2d_c02311{bottom:324.986667pt;}
.y1d_c02311{bottom:341.306667pt;}
.y1c_c02311{bottom:354.506011pt;}
.y1b_c02311{bottom:373.865947pt;}
.y1a_c02311{bottom:393.306403pt;}
.y21_c02311{bottom:397.386667pt;}
.y19_c02311{bottom:412.666339pt;}
.y20_c02311{bottom:422.986667pt;}
.y18_c02311{bottom:432.026275pt;}
.y1f_c02311{bottom:446.346667pt;}
.y17_c02311{bottom:451.466731pt;}
.y16_c02311{bottom:470.746667pt;}
.y1e_c02311{bottom:471.946667pt;}
.y11_c02311{bottom:487.066667pt;}
.y10_c02311{bottom:497.627347pt;}
.yf_c02311{bottom:514.426747pt;}
.y15_c02311{bottom:517.706667pt;}
.ye_c02311{bottom:531.306667pt;}
.yd_c02311{bottom:547.386667pt;}
.y14_c02311{bottom:548.666667pt;}
.yc_c02311{bottom:560.426827pt;}
.y13_c02311{bottom:571.946667pt;}
.yb_c02311{bottom:577.306747pt;}
.ya_c02311{bottom:594.106667pt;}
.y12_c02311{bottom:595.306667pt;}
.y8_c02311{bottom:611.626667pt;}
.y7_c02311{bottom:624.826731pt;}
.y6_c02311{bottom:644.106667pt;}
.y9_c02311{bottom:645.306667pt;}
.y5_c02311{bottom:670.906667pt;}
.y2_c02311{bottom:714.106035pt;}
.y1_c02311{bottom:731.546667pt;}
.hb_c02311{height:21.042187pt;}
.h8_c02311{height:31.406250pt;}
.h3_c02311{height:39.030469pt;}
.h5_c02311{height:39.220000pt;}
.ha_c02311{height:41.770312pt;}
.h4_c02311{height:48.294844pt;}
.h9_c02311{height:53.857500pt;}
.h7_c02311{height:57.473437pt;}
.h6_c02311{height:59.337500pt;}
.h2_c02311{height:64.500000pt;}
.h1_c02311{height:793.333333pt;}
.h0_c02311{height:793.626667pt;}
.w0_c02311{width:1122.666667pt;}
.x0_c02311{left:0.000000pt;}
.x1_c02311{left:94.467467pt;}
.x3_c02311{left:111.107333pt;}
.x4_c02311{left:243.427333pt;}
.x2_c02311{left:550.068085pt;}
.x5_c02311{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69cc30b9728262c903aea45d.woff2')format("woff");}.ff1_c02312{font-family:ff1_c02312;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02312{font-family:ff2_c02312;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02312;src:url('chunks/assets/font_bbabc43b0557856223b0650c.woff2')format("woff");}.ff3_c02312{font-family:ff3_c02312;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02312;src:url('chunks/assets/font_8b341f7912ce40e052e11d17.woff2')format("woff");}.ff4_c02312{font-family:ff4_c02312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02312{vertical-align:-28.440000px;}
.v3_c02312{vertical-align:-16.920000px;}
.v1_c02312{vertical-align:-5.760000px;}
.v0_c02312{vertical-align:0.000000px;}
.v4_c02312{vertical-align:18.000000px;}
.ls14_c02312{letter-spacing:-0.270108px;}
.ls12_c02312{letter-spacing:-0.176904px;}
.ls15_c02312{letter-spacing:-0.144288px;}
.ls19_c02312{letter-spacing:-0.138276px;}
.ls18_c02312{letter-spacing:-0.102204px;}
.lsf_c02312{letter-spacing:-0.014400px;}
.ls16_c02312{letter-spacing:-0.012024px;}
.ls17_c02312{letter-spacing:-0.006588px;}
.ls11_c02312{letter-spacing:0.000000px;}
.ls8_c02312{letter-spacing:0.006588px;}
.ls2_c02312{letter-spacing:0.014400px;}
.ls3_c02312{letter-spacing:0.018036px;}
.ls9_c02312{letter-spacing:0.026352px;}
.ls0_c02312{letter-spacing:0.032940px;}
.ls6_c02312{letter-spacing:0.039528px;}
.ls7_c02312{letter-spacing:0.046116px;}
.ls10_c02312{letter-spacing:0.052704px;}
.lse_c02312{letter-spacing:0.059292px;}
.lsc_c02312{letter-spacing:0.065880px;}
.lsb_c02312{letter-spacing:0.079056px;}
.lsd_c02312{letter-spacing:0.085644px;}
.ls1_c02312{letter-spacing:0.092232px;}
.ls5_c02312{letter-spacing:0.105408px;}
.lsa_c02312{letter-spacing:0.118584px;}
.ls13_c02312{letter-spacing:0.177876px;}
.ls4_c02312{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02312{word-spacing:-16.575408px;}
.ws1a_c02312{word-spacing:-0.355752px;}
.ws6_c02312{word-spacing:-0.288576px;}
.ws19_c02312{word-spacing:-0.258516px;}
.ws0_c02312{word-spacing:-0.158112px;}
.wsa_c02312{word-spacing:-0.013176px;}
.ws5_c02312{word-spacing:0.000000px;}
.ws2_c02312{word-spacing:0.014400px;}
.ws1d_c02312{word-spacing:0.026352px;}
.ws1e_c02312{word-spacing:0.032940px;}
.ws4_c02312{word-spacing:0.039528px;}
.ws8_c02312{word-spacing:0.052704px;}
.ws3_c02312{word-spacing:0.059292px;}
.wsd_c02312{word-spacing:0.065880px;}
.ws16_c02312{word-spacing:0.098820px;}
.wsf_c02312{word-spacing:0.102204px;}
.ws1f_c02312{word-spacing:0.192384px;}
.ws20_c02312{word-spacing:0.228456px;}
.wse_c02312{word-spacing:0.234468px;}
.ws12_c02312{word-spacing:3.247884px;}
.ws13_c02312{word-spacing:3.261060px;}
.ws1b_c02312{word-spacing:3.946212px;}
.ws14_c02312{word-spacing:3.965976px;}
.ws15_c02312{word-spacing:4.012092px;}
.ws10_c02312{word-spacing:4.328316px;}
.ws11_c02312{word-spacing:4.367844px;}
.ws9_c02312{word-spacing:4.736772px;}
.wsb_c02312{word-spacing:5.085936px;}
.wsc_c02312{word-spacing:5.125464px;}
.ws17_c02312{word-spacing:15.863904px;}
.ws18_c02312{word-spacing:15.890256px;}
.ws1c_c02312{word-spacing:32.096736px;}
.ws7_c02312{word-spacing:48.689172px;}
._3_c02312{margin-left:-1.292580px;}
._5_c02312{width:1.139724px;}
._1_c02312{width:48.686112px;}
._4_c02312{width:54.278496px;}
._0_c02312{width:115.970472px;}
._2_c02312{width:2017.785600px;}
.fc0_c02312{color:rgb(0,0,0);}
.fs2_c02312{font-size:42.120000px;}
.fs3_c02312{font-size:47.880000px;}
.fs4_c02312{font-size:60.120000px;}
.fs1_c02312{font-size:65.880000px;}
.fs0_c02312{font-size:72.000000px;}
.y0_c02312{bottom:0.000000px;}
.y4_c02312{bottom:75.449640px;}
.y3_c02312{bottom:113.608983px;}
.y2b_c02312{bottom:147.901890px;}
.y2a_c02312{bottom:166.891800px;}
.y29_c02312{bottom:185.881710px;}
.y28_c02312{bottom:204.871620px;}
.y2f_c02312{bottom:222.240000px;}
.y27_c02312{bottom:223.770945px;}
.y26_c02312{bottom:242.760855px;}
.y2e_c02312{bottom:248.430000px;}
.y25_c02312{bottom:261.750765px;}
.y2d_c02312{bottom:274.710000px;}
.y24_c02312{bottom:280.740675px;}
.y23_c02312{bottom:299.640000px;}
.y2c_c02312{bottom:300.990000px;}
.y1d_c02312{bottom:322.228605px;}
.y1c_c02312{bottom:344.099118px;}
.y1b_c02312{bottom:365.879046px;}
.y1a_c02312{bottom:387.749559px;}
.y19_c02312{bottom:409.529487px;}
.y22_c02312{bottom:419.160000px;}
.y18_c02312{bottom:431.400000px;}
.y21_c02312{bottom:449.310000px;}
.y17_c02312{bottom:451.560000px;}
.y16_c02312{bottom:469.019631px;}
.y20_c02312{bottom:478.110000px;}
.y15_c02312{bottom:490.890144px;}
.y1f_c02312{bottom:506.910000px;}
.y14_c02312{bottom:512.670072px;}
.y13_c02312{bottom:534.450000px;}
.y1e_c02312{bottom:535.800000px;}
.yf_c02312{bottom:555.420000px;}
.ye_c02312{bottom:570.091872px;}
.yd_c02312{bottom:589.081782px;}
.yc_c02312{bottom:608.071692px;}
.yb_c02312{bottom:627.061602px;}
.ya_c02312{bottom:645.960927px;}
.y9_c02312{bottom:664.950837px;}
.y12_c02312{bottom:670.890000px;}
.y8_c02312{bottom:683.940747px;}
.y11_c02312{bottom:699.780000px;}
.y7_c02312{bottom:702.930657px;}
.y6_c02312{bottom:724.620000px;}
.y10_c02312{bottom:725.970000px;}
.y5_c02312{bottom:754.770000px;}
.y2_c02312{bottom:803.369289px;}
.y1_c02312{bottom:822.990000px;}
.h3_c02312{height:43.909277px;}
.h5_c02312{height:44.122500px;}
.h8_c02312{height:46.991602px;}
.h4_c02312{height:54.331699px;}
.h9_c02312{height:60.589687px;}
.h7_c02312{height:64.657617px;}
.h6_c02312{height:66.394687px;}
.h2_c02312{height:72.562500px;}
.h1_c02312{height:892.500000px;}
.h0_c02312{height:892.830000px;}
.w0_c02312{width:1263.000000px;}
.x0_c02312{left:0.000000px;}
.x1_c02312{left:106.275900px;}
.x3_c02312{left:124.995750px;}
.x4_c02312{left:273.855750px;}
.x2_c02312{left:618.826596px;}
.x5_c02312{left:826.725750px;}
@media print{
.v2_c02312{vertical-align:-25.280000pt;}
.v3_c02312{vertical-align:-15.040000pt;}
.v1_c02312{vertical-align:-5.120000pt;}
.v0_c02312{vertical-align:0.000000pt;}
.v4_c02312{vertical-align:16.000000pt;}
.ls14_c02312{letter-spacing:-0.240096pt;}
.ls12_c02312{letter-spacing:-0.157248pt;}
.ls15_c02312{letter-spacing:-0.128256pt;}
.ls19_c02312{letter-spacing:-0.122912pt;}
.ls18_c02312{letter-spacing:-0.090848pt;}
.lsf_c02312{letter-spacing:-0.012800pt;}
.ls16_c02312{letter-spacing:-0.010688pt;}
.ls17_c02312{letter-spacing:-0.005856pt;}
.ls11_c02312{letter-spacing:0.000000pt;}
.ls8_c02312{letter-spacing:0.005856pt;}
.ls2_c02312{letter-spacing:0.012800pt;}
.ls3_c02312{letter-spacing:0.016032pt;}
.ls9_c02312{letter-spacing:0.023424pt;}
.ls0_c02312{letter-spacing:0.029280pt;}
.ls6_c02312{letter-spacing:0.035136pt;}
.ls7_c02312{letter-spacing:0.040992pt;}
.ls10_c02312{letter-spacing:0.046848pt;}
.lse_c02312{letter-spacing:0.052704pt;}
.lsc_c02312{letter-spacing:0.058560pt;}
.lsb_c02312{letter-spacing:0.070272pt;}
.lsd_c02312{letter-spacing:0.076128pt;}
.ls1_c02312{letter-spacing:0.081984pt;}
.ls5_c02312{letter-spacing:0.093696pt;}
.lsa_c02312{letter-spacing:0.105408pt;}
.ls13_c02312{letter-spacing:0.158112pt;}
.ls4_c02312{letter-spacing:0.161728pt;}
.ws1_c02312{word-spacing:-14.733696pt;}
.ws1a_c02312{word-spacing:-0.316224pt;}
.ws6_c02312{word-spacing:-0.256512pt;}
.ws19_c02312{word-spacing:-0.229792pt;}
.ws0_c02312{word-spacing:-0.140544pt;}
.wsa_c02312{word-spacing:-0.011712pt;}
.ws5_c02312{word-spacing:0.000000pt;}
.ws2_c02312{word-spacing:0.012800pt;}
.ws1d_c02312{word-spacing:0.023424pt;}
.ws1e_c02312{word-spacing:0.029280pt;}
.ws4_c02312{word-spacing:0.035136pt;}
.ws8_c02312{word-spacing:0.046848pt;}
.ws3_c02312{word-spacing:0.052704pt;}
.wsd_c02312{word-spacing:0.058560pt;}
.ws16_c02312{word-spacing:0.087840pt;}
.wsf_c02312{word-spacing:0.090848pt;}
.ws1f_c02312{word-spacing:0.171008pt;}
.ws20_c02312{word-spacing:0.203072pt;}
.wse_c02312{word-spacing:0.208416pt;}
.ws12_c02312{word-spacing:2.887008pt;}
.ws13_c02312{word-spacing:2.898720pt;}
.ws1b_c02312{word-spacing:3.507744pt;}
.ws14_c02312{word-spacing:3.525312pt;}
.ws15_c02312{word-spacing:3.566304pt;}
.ws10_c02312{word-spacing:3.847392pt;}
.ws11_c02312{word-spacing:3.882528pt;}
.ws9_c02312{word-spacing:4.210464pt;}
.wsb_c02312{word-spacing:4.520832pt;}
.wsc_c02312{word-spacing:4.555968pt;}
.ws17_c02312{word-spacing:14.101248pt;}
.ws18_c02312{word-spacing:14.124672pt;}
.ws1c_c02312{word-spacing:28.530432pt;}
.ws7_c02312{word-spacing:43.279264pt;}
._3_c02312{margin-left:-1.148960pt;}
._5_c02312{width:1.013088pt;}
._1_c02312{width:43.276544pt;}
._4_c02312{width:48.247552pt;}
._0_c02312{width:103.084864pt;}
._2_c02312{width:1793.587200pt;}
.fs2_c02312{font-size:37.440000pt;}
.fs3_c02312{font-size:42.560000pt;}
.fs4_c02312{font-size:53.440000pt;}
.fs1_c02312{font-size:58.560000pt;}
.fs0_c02312{font-size:64.000000pt;}
.y0_c02312{bottom:0.000000pt;}
.y4_c02312{bottom:67.066347pt;}
.y3_c02312{bottom:100.985763pt;}
.y2b_c02312{bottom:131.468347pt;}
.y2a_c02312{bottom:148.348267pt;}
.y29_c02312{bottom:165.228187pt;}
.y28_c02312{bottom:182.108107pt;}
.y2f_c02312{bottom:197.546667pt;}
.y27_c02312{bottom:198.907507pt;}
.y26_c02312{bottom:215.787427pt;}
.y2e_c02312{bottom:220.826667pt;}
.y25_c02312{bottom:232.667347pt;}
.y2d_c02312{bottom:244.186667pt;}
.y24_c02312{bottom:249.547267pt;}
.y23_c02312{bottom:266.346667pt;}
.y2c_c02312{bottom:267.546667pt;}
.y1d_c02312{bottom:286.425427pt;}
.y1c_c02312{bottom:305.865883pt;}
.y1b_c02312{bottom:325.225819pt;}
.y1a_c02312{bottom:344.666275pt;}
.y19_c02312{bottom:364.026211pt;}
.y22_c02312{bottom:372.586667pt;}
.y18_c02312{bottom:383.466667pt;}
.y21_c02312{bottom:399.386667pt;}
.y17_c02312{bottom:401.386667pt;}
.y16_c02312{bottom:416.906339pt;}
.y20_c02312{bottom:424.986667pt;}
.y15_c02312{bottom:436.346795pt;}
.y1f_c02312{bottom:450.586667pt;}
.y14_c02312{bottom:455.706731pt;}
.y13_c02312{bottom:475.066667pt;}
.y1e_c02312{bottom:476.266667pt;}
.yf_c02312{bottom:493.706667pt;}
.ye_c02312{bottom:506.748331pt;}
.yd_c02312{bottom:523.628251pt;}
.yc_c02312{bottom:540.508171pt;}
.yb_c02312{bottom:557.388091pt;}
.ya_c02312{bottom:574.187491pt;}
.y9_c02312{bottom:591.067411pt;}
.y12_c02312{bottom:596.346667pt;}
.y8_c02312{bottom:607.947331pt;}
.y11_c02312{bottom:622.026667pt;}
.y7_c02312{bottom:624.827251pt;}
.y6_c02312{bottom:644.106667pt;}
.y10_c02312{bottom:645.306667pt;}
.y5_c02312{bottom:670.906667pt;}
.y2_c02312{bottom:714.106035pt;}
.y1_c02312{bottom:731.546667pt;}
.h3_c02312{height:39.030469pt;}
.h5_c02312{height:39.220000pt;}
.h8_c02312{height:41.770312pt;}
.h4_c02312{height:48.294844pt;}
.h9_c02312{height:53.857500pt;}
.h7_c02312{height:57.473437pt;}
.h6_c02312{height:59.017500pt;}
.h2_c02312{height:64.500000pt;}
.h1_c02312{height:793.333333pt;}
.h0_c02312{height:793.626667pt;}
.w0_c02312{width:1122.666667pt;}
.x0_c02312{left:0.000000pt;}
.x1_c02312{left:94.467467pt;}
.x3_c02312{left:111.107333pt;}
.x4_c02312{left:243.427333pt;}
.x2_c02312{left:550.068085pt;}
.x5_c02312{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f16583baa0c7cc443f976021.woff2')format("woff");}.ff1_c02313{font-family:ff1_c02313;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02313{font-family:ff2_c02313;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02313;src:url('chunks/assets/font_3b31bddbbfbda397abe8570d.woff2')format("woff");}.ff3_c02313{font-family:ff3_c02313;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02313;src:url('chunks/assets/font_cb182088677ecbdc54ed11c9.woff2')format("woff");}.ff4_c02313{font-family:ff4_c02313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02313;src:url('chunks/assets/font_a4aa258e10a3fea92b378bab.woff2')format("woff");}.ff5_c02313{font-family:ff5_c02313;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02313;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff6_c02313{font-family:ff6_c02313;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;}
.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);}
.v2_c02313{vertical-align:-28.440000px;}
.v3_c02313{vertical-align:-16.920000px;}
.v1_c02313{vertical-align:-5.760000px;}
.v0_c02313{vertical-align:0.000000px;}
.v4_c02313{vertical-align:18.000000px;}
.ls1c_c02313{letter-spacing:-0.270108px;}
.ls14_c02313{letter-spacing:-0.176904px;}
.ls18_c02313{letter-spacing:-0.138276px;}
.ls1d_c02313{letter-spacing:-0.132264px;}
.ls17_c02313{letter-spacing:-0.114228px;}
.ls1a_c02313{letter-spacing:-0.102204px;}
.ls1b_c02313{letter-spacing:-0.090180px;}
.ls16_c02313{letter-spacing:-0.018036px;}
.ls11_c02313{letter-spacing:-0.014400px;}
.ls19_c02313{letter-spacing:-0.013176px;}
.ls13_c02313{letter-spacing:0.000000px;}
.lsb_c02313{letter-spacing:0.013176px;}
.ls2_c02313{letter-spacing:0.014400px;}
.ls3_c02313{letter-spacing:0.018036px;}
.ls9_c02313{letter-spacing:0.026352px;}
.ls0_c02313{letter-spacing:0.032940px;}
.ls7_c02313{letter-spacing:0.039528px;}
.ls10_c02313{letter-spacing:0.046116px;}
.ls12_c02313{letter-spacing:0.052704px;}
.lsf_c02313{letter-spacing:0.059292px;}
.lsc_c02313{letter-spacing:0.065880px;}
.lsd_c02313{letter-spacing:0.072468px;}
.ls8_c02313{letter-spacing:0.079056px;}
.ls6_c02313{letter-spacing:0.085644px;}
.ls1_c02313{letter-spacing:0.092232px;}
.lsa_c02313{letter-spacing:0.098820px;}
.ls5_c02313{letter-spacing:0.131760px;}
.ls15_c02313{letter-spacing:0.177876px;}
.ls4_c02313{letter-spacing:0.181944px;}
.lse_c02313{letter-spacing:0.230580px;}
.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;}
}
.ws2_c02313{word-spacing:-65.880000px;}
.ws6_c02313{word-spacing:-16.601760px;}
.wsb_c02313{word-spacing:-0.288576px;}
.ws1a_c02313{word-spacing:-0.252504px;}
.ws0_c02313{word-spacing:-0.158112px;}
.ws4_c02313{word-spacing:-0.144936px;}
.ws3_c02313{word-spacing:-0.138348px;}
.ws1_c02313{word-spacing:-0.098820px;}
.ws5_c02313{word-spacing:-0.052704px;}
.wsa_c02313{word-spacing:0.000000px;}
.ws7_c02313{word-spacing:0.014400px;}
.ws9_c02313{word-spacing:0.039528px;}
.ws8_c02313{word-spacing:0.059292px;}
.ws18_c02313{word-spacing:0.079056px;}
.ws1d_c02313{word-spacing:0.180360px;}
.ws1c_c02313{word-spacing:0.192384px;}
.ws1b_c02313{word-spacing:0.204408px;}
.ws24_c02313{word-spacing:0.222444px;}
.ws13_c02313{word-spacing:0.349164px;}
.ws11_c02313{word-spacing:2.944836px;}
.ws12_c02313{word-spacing:2.971188px;}
.ws14_c02313{word-spacing:3.247884px;}
.ws15_c02313{word-spacing:3.280824px;}
.ws21_c02313{word-spacing:3.629988px;}
.ws17_c02313{word-spacing:4.367844px;}
.ws10_c02313{word-spacing:4.381020px;}
.ws20_c02313{word-spacing:5.033232px;}
.ws1f_c02313{word-spacing:5.059584px;}
.ws16_c02313{word-spacing:7.569612px;}
.ws1e_c02313{word-spacing:10.824084px;}
.ws22_c02313{word-spacing:14.454072px;}
.wsf_c02313{word-spacing:15.527916px;}
.ws23_c02313{word-spacing:17.326440px;}
.ws19_c02313{word-spacing:24.896052px;}
.wsd_c02313{word-spacing:28.446984px;}
.wse_c02313{word-spacing:28.493100px;}
.wsc_c02313{word-spacing:48.689172px;}
._3_c02313{margin-left:-1.292580px;}
._5_c02313{width:1.264896px;}
._1_c02313{width:48.686112px;}
._4_c02313{width:54.278496px;}
._0_c02313{width:115.970472px;}
._2_c02313{width:2017.785600px;}
.fc0_c02313{color:rgb(0,0,0);}
.fs5_c02313{font-size:36.000000px;}
.fs2_c02313{font-size:42.120000px;}
.fs3_c02313{font-size:47.880000px;}
.fs4_c02313{font-size:60.120000px;}
.fs1_c02313{font-size:65.880000px;}
.fs0_c02313{font-size:72.000000px;}
.y0_c02313{bottom:0.000000px;}
.y4_c02313{bottom:75.449640px;}
.y3_c02313{bottom:113.608983px;}
.y29_c02313{bottom:144.748821px;}
.y28_c02313{bottom:166.619334px;}
.y27_c02313{bottom:188.399262px;}
.y26_c02313{bottom:210.269775px;}
.y25_c02313{bottom:232.049703px;}
.y24_c02313{bottom:253.920216px;}
.y23_c02313{bottom:275.700144px;}
.y2b_c02313{bottom:291.720000px;}
.y22_c02313{bottom:297.480072px;}
.y21_c02313{bottom:319.260000px;}
.y2a_c02313{bottom:320.610000px;}
.y18_c02313{bottom:341.938011px;}
.y17_c02313{bottom:363.717939px;}
.y16_c02313{bottom:385.588452px;}
.y15_c02313{bottom:407.368380px;}
.y14_c02313{bottom:429.148308px;}
.y13_c02313{bottom:451.018821px;}
.y12_c02313{bottom:472.798749px;}
.y11_c02313{bottom:494.669262px;}
.y10_c02313{bottom:516.449190px;}
.y20_c02313{bottom:531.120000px;}
.yf_c02313{bottom:538.319703px;}
.ye_c02313{bottom:560.099631px;}
.y1f_c02313{bottom:561.270000px;}
.yd_c02313{bottom:581.879559px;}
.y1e_c02313{bottom:590.070000px;}
.yc_c02313{bottom:603.750072px;}
.y1d_c02313{bottom:618.960000px;}
.yb_c02313{bottom:625.530000px;}
.ya_c02313{bottom:644.520000px;}
.y1c_c02313{bottom:647.760000px;}
.y9_c02313{bottom:659.280216px;}
.y1b_c02313{bottom:669.180000px;}
.y8_c02313{bottom:681.060144px;}
.y1a_c02313{bottom:697.170000px;}
.y7_c02313{bottom:702.930657px;}
.y6_c02313{bottom:724.620000px;}
.y19_c02313{bottom:725.970000px;}
.y5_c02313{bottom:754.770000px;}
.y2_c02313{bottom:803.369289px;}
.y1_c02313{bottom:822.990000px;}
.h8_c02313{height:35.332031px;}
.h3_c02313{height:43.909277px;}
.h5_c02313{height:44.122500px;}
.h4_c02313{height:54.331699px;}
.h9_c02313{height:60.589687px;}
.h7_c02313{height:64.657617px;}
.h6_c02313{height:66.394687px;}
.h2_c02313{height:72.562500px;}
.h1_c02313{height:892.500000px;}
.h0_c02313{height:892.830000px;}
.w0_c02313{width:1263.000000px;}
.x0_c02313{left:0.000000px;}
.x1_c02313{left:106.275900px;}
.x3_c02313{left:124.995750px;}
.x4_c02313{left:273.855750px;}
.x2_c02313{left:618.826596px;}
.x5_c02313{left:826.725750px;}
@media print{
.v2_c02313{vertical-align:-25.280000pt;}
.v3_c02313{vertical-align:-15.040000pt;}
.v1_c02313{vertical-align:-5.120000pt;}
.v0_c02313{vertical-align:0.000000pt;}
.v4_c02313{vertical-align:16.000000pt;}
.ls1c_c02313{letter-spacing:-0.240096pt;}
.ls14_c02313{letter-spacing:-0.157248pt;}
.ls18_c02313{letter-spacing:-0.122912pt;}
.ls1d_c02313{letter-spacing:-0.117568pt;}
.ls17_c02313{letter-spacing:-0.101536pt;}
.ls1a_c02313{letter-spacing:-0.090848pt;}
.ls1b_c02313{letter-spacing:-0.080160pt;}
.ls16_c02313{letter-spacing:-0.016032pt;}
.ls11_c02313{letter-spacing:-0.012800pt;}
.ls19_c02313{letter-spacing:-0.011712pt;}
.ls13_c02313{letter-spacing:0.000000pt;}
.lsb_c02313{letter-spacing:0.011712pt;}
.ls2_c02313{letter-spacing:0.012800pt;}
.ls3_c02313{letter-spacing:0.016032pt;}
.ls9_c02313{letter-spacing:0.023424pt;}
.ls0_c02313{letter-spacing:0.029280pt;}
.ls7_c02313{letter-spacing:0.035136pt;}
.ls10_c02313{letter-spacing:0.040992pt;}
.ls12_c02313{letter-spacing:0.046848pt;}
.lsf_c02313{letter-spacing:0.052704pt;}
.lsc_c02313{letter-spacing:0.058560pt;}
.lsd_c02313{letter-spacing:0.064416pt;}
.ls8_c02313{letter-spacing:0.070272pt;}
.ls6_c02313{letter-spacing:0.076128pt;}
.ls1_c02313{letter-spacing:0.081984pt;}
.lsa_c02313{letter-spacing:0.087840pt;}
.ls5_c02313{letter-spacing:0.117120pt;}
.ls15_c02313{letter-spacing:0.158112pt;}
.ls4_c02313{letter-spacing:0.161728pt;}
.lse_c02313{letter-spacing:0.204960pt;}
.ws2_c02313{word-spacing:-58.560000pt;}
.ws6_c02313{word-spacing:-14.757120pt;}
.wsb_c02313{word-spacing:-0.256512pt;}
.ws1a_c02313{word-spacing:-0.224448pt;}
.ws0_c02313{word-spacing:-0.140544pt;}
.ws4_c02313{word-spacing:-0.128832pt;}
.ws3_c02313{word-spacing:-0.122976pt;}
.ws1_c02313{word-spacing:-0.087840pt;}
.ws5_c02313{word-spacing:-0.046848pt;}
.wsa_c02313{word-spacing:0.000000pt;}
.ws7_c02313{word-spacing:0.012800pt;}
.ws9_c02313{word-spacing:0.035136pt;}
.ws8_c02313{word-spacing:0.052704pt;}
.ws18_c02313{word-spacing:0.070272pt;}
.ws1d_c02313{word-spacing:0.160320pt;}
.ws1c_c02313{word-spacing:0.171008pt;}
.ws1b_c02313{word-spacing:0.181696pt;}
.ws24_c02313{word-spacing:0.197728pt;}
.ws13_c02313{word-spacing:0.310368pt;}
.ws11_c02313{word-spacing:2.617632pt;}
.ws12_c02313{word-spacing:2.641056pt;}
.ws14_c02313{word-spacing:2.887008pt;}
.ws15_c02313{word-spacing:2.916288pt;}
.ws21_c02313{word-spacing:3.226656pt;}
.ws17_c02313{word-spacing:3.882528pt;}
.ws10_c02313{word-spacing:3.894240pt;}
.ws20_c02313{word-spacing:4.473984pt;}
.ws1f_c02313{word-spacing:4.497408pt;}
.ws16_c02313{word-spacing:6.728544pt;}
.ws1e_c02313{word-spacing:9.621408pt;}
.ws22_c02313{word-spacing:12.848064pt;}
.wsf_c02313{word-spacing:13.802592pt;}
.ws23_c02313{word-spacing:15.401280pt;}
.ws19_c02313{word-spacing:22.129824pt;}
.wsd_c02313{word-spacing:25.286208pt;}
.wse_c02313{word-spacing:25.327200pt;}
.wsc_c02313{word-spacing:43.279264pt;}
._3_c02313{margin-left:-1.148960pt;}
._5_c02313{width:1.124352pt;}
._1_c02313{width:43.276544pt;}
._4_c02313{width:48.247552pt;}
._0_c02313{width:103.084864pt;}
._2_c02313{width:1793.587200pt;}
.fs5_c02313{font-size:32.000000pt;}
.fs2_c02313{font-size:37.440000pt;}
.fs3_c02313{font-size:42.560000pt;}
.fs4_c02313{font-size:53.440000pt;}
.fs1_c02313{font-size:58.560000pt;}
.fs0_c02313{font-size:64.000000pt;}
.y0_c02313{bottom:0.000000pt;}
.y4_c02313{bottom:67.066347pt;}
.y3_c02313{bottom:100.985763pt;}
.y29_c02313{bottom:128.665619pt;}
.y28_c02313{bottom:148.106075pt;}
.y27_c02313{bottom:167.466011pt;}
.y26_c02313{bottom:186.906467pt;}
.y25_c02313{bottom:206.266403pt;}
.y24_c02313{bottom:225.706859pt;}
.y23_c02313{bottom:245.066795pt;}
.y2b_c02313{bottom:259.306667pt;}
.y22_c02313{bottom:264.426731pt;}
.y21_c02313{bottom:283.786667pt;}
.y2a_c02313{bottom:284.986667pt;}
.y18_c02313{bottom:303.944899pt;}
.y17_c02313{bottom:323.304835pt;}
.y16_c02313{bottom:342.745291pt;}
.y15_c02313{bottom:362.105227pt;}
.y14_c02313{bottom:381.465163pt;}
.y13_c02313{bottom:400.905619pt;}
.y12_c02313{bottom:420.265555pt;}
.y11_c02313{bottom:439.706011pt;}
.y10_c02313{bottom:459.065947pt;}
.y20_c02313{bottom:472.106667pt;}
.yf_c02313{bottom:478.506403pt;}
.ye_c02313{bottom:497.866339pt;}
.y1f_c02313{bottom:498.906667pt;}
.yd_c02313{bottom:517.226275pt;}
.y1e_c02313{bottom:524.506667pt;}
.yc_c02313{bottom:536.666731pt;}
.y1d_c02313{bottom:550.186667pt;}
.yb_c02313{bottom:556.026667pt;}
.ya_c02313{bottom:572.906667pt;}
.y1c_c02313{bottom:575.786667pt;}
.y9_c02313{bottom:586.026859pt;}
.y1b_c02313{bottom:594.826667pt;}
.y8_c02313{bottom:605.386795pt;}
.y1a_c02313{bottom:619.706667pt;}
.y7_c02313{bottom:624.827251pt;}
.y6_c02313{bottom:644.106667pt;}
.y19_c02313{bottom:645.306667pt;}
.y5_c02313{bottom:670.906667pt;}
.y2_c02313{bottom:714.106035pt;}
.y1_c02313{bottom:731.546667pt;}
.h8_c02313{height:31.406250pt;}
.h3_c02313{height:39.030469pt;}
.h5_c02313{height:39.220000pt;}
.h4_c02313{height:48.294844pt;}
.h9_c02313{height:53.857500pt;}
.h7_c02313{height:57.473437pt;}
.h6_c02313{height:59.017500pt;}
.h2_c02313{height:64.500000pt;}
.h1_c02313{height:793.333333pt;}
.h0_c02313{height:793.626667pt;}
.w0_c02313{width:1122.666667pt;}
.x0_c02313{left:0.000000pt;}
.x1_c02313{left:94.467467pt;}
.x3_c02313{left:111.107333pt;}
.x4_c02313{left:243.427333pt;}
.x2_c02313{left:550.068085pt;}
.x5_c02313{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_555841ca43aaf4b62d888c95.woff2')format("woff");}.ff1_c02314{font-family:ff1_c02314;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02314{font-family:ff2_c02314;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02314;src:url('chunks/assets/font_c330e3817d5ab6ec90fd2e39.woff2')format("woff");}.ff3_c02314{font-family:ff3_c02314;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02314;src:url('chunks/assets/font_a2c0abb8dbac2c5912e35a95.woff2')format("woff");}.ff4_c02314{font-family:ff4_c02314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02314{vertical-align:-28.440000px;}
.v1_c02314{vertical-align:-5.760000px;}
.v0_c02314{vertical-align:0.000000px;}
.v3_c02314{vertical-align:11.520000px;}
.v4_c02314{vertical-align:18.000000px;}
.ls15_c02314{letter-spacing:-0.176904px;}
.ls1f_c02314{letter-spacing:-0.144288px;}
.ls1d_c02314{letter-spacing:-0.120240px;}
.ls1c_c02314{letter-spacing:-0.090180px;}
.ls1a_c02314{letter-spacing:-0.078156px;}
.ls19_c02314{letter-spacing:-0.048096px;}
.ls1b_c02314{letter-spacing:-0.030060px;}
.ls17_c02314{letter-spacing:-0.019764px;}
.ls18_c02314{letter-spacing:-0.018036px;}
.ls13_c02314{letter-spacing:-0.014400px;}
.ls1e_c02314{letter-spacing:-0.012024px;}
.ls14_c02314{letter-spacing:0.000000px;}
.ls8_c02314{letter-spacing:0.013176px;}
.ls3_c02314{letter-spacing:0.014400px;}
.ls4_c02314{letter-spacing:0.018036px;}
.lsa_c02314{letter-spacing:0.019764px;}
.ls9_c02314{letter-spacing:0.026352px;}
.ls2_c02314{letter-spacing:0.028800px;}
.ls0_c02314{letter-spacing:0.032940px;}
.lse_c02314{letter-spacing:0.039528px;}
.lsf_c02314{letter-spacing:0.046116px;}
.ls7_c02314{letter-spacing:0.052704px;}
.lsd_c02314{letter-spacing:0.059292px;}
.ls11_c02314{letter-spacing:0.065880px;}
.ls12_c02314{letter-spacing:0.072468px;}
.lsb_c02314{letter-spacing:0.085644px;}
.ls1_c02314{letter-spacing:0.092232px;}
.lsc_c02314{letter-spacing:0.105408px;}
.ls10_c02314{letter-spacing:0.118584px;}
.ls6_c02314{letter-spacing:0.131760px;}
.ls16_c02314{letter-spacing:0.177876px;}
.ls5_c02314{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02314{word-spacing:-16.588584px;}
.ws8_c02314{word-spacing:-0.288576px;}
.ws2e_c02314{word-spacing:-0.258516px;}
.ws17_c02314{word-spacing:-0.252504px;}
.ws0_c02314{word-spacing:-0.158112px;}
.ws1d_c02314{word-spacing:-0.150300px;}
.ws7_c02314{word-spacing:-0.072000px;}
.ws6_c02314{word-spacing:-0.028800px;}
.ws12_c02314{word-spacing:-0.013176px;}
.ws5_c02314{word-spacing:0.000000px;}
.ws25_c02314{word-spacing:0.006588px;}
.ws2_c02314{word-spacing:0.014400px;}
.ws4_c02314{word-spacing:0.039528px;}
.ws14_c02314{word-spacing:0.052704px;}
.ws3_c02314{word-spacing:0.059292px;}
.ws24_c02314{word-spacing:0.065880px;}
.ws16_c02314{word-spacing:0.072468px;}
.wsb_c02314{word-spacing:0.079056px;}
.ws30_c02314{word-spacing:0.102204px;}
.ws1c_c02314{word-spacing:0.108216px;}
.ws1a_c02314{word-spacing:0.120240px;}
.ws18_c02314{word-spacing:0.138276px;}
.ws19_c02314{word-spacing:0.168336px;}
.ws1b_c02314{word-spacing:0.180360px;}
.ws2f_c02314{word-spacing:0.234468px;}
.wse_c02314{word-spacing:0.415044px;}
.wsc_c02314{word-spacing:2.226744px;}
.wsd_c02314{word-spacing:2.266272px;}
.ws15_c02314{word-spacing:2.562732px;}
.ws1f_c02314{word-spacing:3.623400px;}
.ws1e_c02314{word-spacing:3.676104px;}
.ws2b_c02314{word-spacing:3.992328px;}
.wsa_c02314{word-spacing:3.998916px;}
.ws23_c02314{word-spacing:4.374432px;}
.ws22_c02314{word-spacing:4.387608px;}
.ws13_c02314{word-spacing:5.428512px;}
.ws2c_c02314{word-spacing:5.797440px;}
.ws2d_c02314{word-spacing:5.804028px;}
.ws28_c02314{word-spacing:8.676396px;}
.ws20_c02314{word-spacing:9.756828px;}
.ws21_c02314{word-spacing:9.776592px;}
.ws2a_c02314{word-spacing:14.414544px;}
.ws29_c02314{word-spacing:14.434308px;}
.ws11_c02314{word-spacing:15.119460px;}
.ws10_c02314{word-spacing:15.126048px;}
.ws26_c02314{word-spacing:15.870492px;}
.ws27_c02314{word-spacing:15.896844px;}
.wsf_c02314{word-spacing:46.511280px;}
.ws9_c02314{word-spacing:48.689172px;}
._3_c02314{margin-left:-1.292580px;}
._5_c02314{width:1.152900px;}
._1_c02314{width:48.686112px;}
._4_c02314{width:54.278496px;}
._0_c02314{width:115.970472px;}
._2_c02314{width:313.315200px;}
.fc0_c02314{color:rgb(0,0,0);}
.fs5_c02314{font-size:24.120000px;}
.fs2_c02314{font-size:42.120000px;}
.fs3_c02314{font-size:47.880000px;}
.fs4_c02314{font-size:60.120000px;}
.fs1_c02314{font-size:65.880000px;}
.fs0_c02314{font-size:72.000000px;}
.y0_c02314{bottom:0.000000px;}
.y4_c02314{bottom:75.449640px;}
.y3_c02314{bottom:113.608983px;}
.y2f_c02314{bottom:144.748605px;}
.y2e_c02314{bottom:166.619118px;}
.y36_c02314{bottom:172.650000px;}
.y2d_c02314{bottom:188.399046px;}
.y35_c02314{bottom:208.740000px;}
.y2c_c02314{bottom:210.269559px;}
.y2b_c02314{bottom:232.049487px;}
.y34_c02314{bottom:237.630000px;}
.y2a_c02314{bottom:253.920000px;}
.y33_c02314{bottom:266.430000px;}
.y29_c02314{bottom:271.560000px;}
.y28_c02314{bottom:283.619631px;}
.y32_c02314{bottom:295.230000px;}
.y27_c02314{bottom:305.490144px;}
.y31_c02314{bottom:321.510000px;}
.y26_c02314{bottom:327.270072px;}
.y25_c02314{bottom:348.960000px;}
.y30_c02314{bottom:350.310000px;}
.y1a_c02314{bottom:367.500000px;}
.y19_c02314{bottom:379.559559px;}
.y18_c02314{bottom:401.430072px;}
.y17_c02314{bottom:423.210000px;}
.y16_c02314{bottom:440.850000px;}
.y15_c02314{bottom:453.000072px;}
.y24_c02314{bottom:458.400000px;}
.y14_c02314{bottom:474.780000px;}
.y13_c02314{bottom:492.420000px;}
.y23_c02314{bottom:494.490000px;}
.y12_c02314{bottom:504.569559px;}
.y11_c02314{bottom:526.349487px;}
.y22_c02314{bottom:529.320000px;}
.y10_c02314{bottom:548.220000px;}
.y21_c02314{bottom:558.120000px;}
.yf_c02314{bottom:565.860000px;}
.ye_c02314{bottom:577.919559px;}
.y20_c02314{bottom:587.010000px;}
.yd_c02314{bottom:599.790072px;}
.y1f_c02314{bottom:615.810000px;}
.yc_c02314{bottom:621.570000px;}
.yb_c02314{bottom:639.210000px;}
.y1e_c02314{bottom:644.700000px;}
.ya_c02314{bottom:651.360072px;}
.y1d_c02314{bottom:670.890000px;}
.y9_c02314{bottom:673.140000px;}
.y8_c02314{bottom:690.780000px;}
.y1c_c02314{bottom:697.170000px;}
.y7_c02314{bottom:702.930657px;}
.y6_c02314{bottom:724.620000px;}
.y1b_c02314{bottom:725.970000px;}
.y5_c02314{bottom:754.770000px;}
.y2_c02314{bottom:803.369289px;}
.y1_c02314{bottom:822.990000px;}
.h8_c02314{height:23.672461px;}
.h3_c02314{height:43.909277px;}
.h5_c02314{height:44.122500px;}
.h4_c02314{height:54.331699px;}
.h9_c02314{height:60.589687px;}
.h7_c02314{height:64.657617px;}
.h6_c02314{height:66.394687px;}
.ha_c02314{height:66.754688px;}
.h2_c02314{height:72.562500px;}
.h1_c02314{height:892.500000px;}
.h0_c02314{height:892.830000px;}
.w0_c02314{width:1263.000000px;}
.x0_c02314{left:0.000000px;}
.x1_c02314{left:106.275900px;}
.x3_c02314{left:124.995750px;}
.x4_c02314{left:273.855750px;}
.x2_c02314{left:618.826596px;}
.x5_c02314{left:826.725750px;}
@media print{
.v2_c02314{vertical-align:-25.280000pt;}
.v1_c02314{vertical-align:-5.120000pt;}
.v0_c02314{vertical-align:0.000000pt;}
.v3_c02314{vertical-align:10.240000pt;}
.v4_c02314{vertical-align:16.000000pt;}
.ls15_c02314{letter-spacing:-0.157248pt;}
.ls1f_c02314{letter-spacing:-0.128256pt;}
.ls1d_c02314{letter-spacing:-0.106880pt;}
.ls1c_c02314{letter-spacing:-0.080160pt;}
.ls1a_c02314{letter-spacing:-0.069472pt;}
.ls19_c02314{letter-spacing:-0.042752pt;}
.ls1b_c02314{letter-spacing:-0.026720pt;}
.ls17_c02314{letter-spacing:-0.017568pt;}
.ls18_c02314{letter-spacing:-0.016032pt;}
.ls13_c02314{letter-spacing:-0.012800pt;}
.ls1e_c02314{letter-spacing:-0.010688pt;}
.ls14_c02314{letter-spacing:0.000000pt;}
.ls8_c02314{letter-spacing:0.011712pt;}
.ls3_c02314{letter-spacing:0.012800pt;}
.ls4_c02314{letter-spacing:0.016032pt;}
.lsa_c02314{letter-spacing:0.017568pt;}
.ls9_c02314{letter-spacing:0.023424pt;}
.ls2_c02314{letter-spacing:0.025600pt;}
.ls0_c02314{letter-spacing:0.029280pt;}
.lse_c02314{letter-spacing:0.035136pt;}
.lsf_c02314{letter-spacing:0.040992pt;}
.ls7_c02314{letter-spacing:0.046848pt;}
.lsd_c02314{letter-spacing:0.052704pt;}
.ls11_c02314{letter-spacing:0.058560pt;}
.ls12_c02314{letter-spacing:0.064416pt;}
.lsb_c02314{letter-spacing:0.076128pt;}
.ls1_c02314{letter-spacing:0.081984pt;}
.lsc_c02314{letter-spacing:0.093696pt;}
.ls10_c02314{letter-spacing:0.105408pt;}
.ls6_c02314{letter-spacing:0.117120pt;}
.ls16_c02314{letter-spacing:0.158112pt;}
.ls5_c02314{letter-spacing:0.161728pt;}
.ws1_c02314{word-spacing:-14.745408pt;}
.ws8_c02314{word-spacing:-0.256512pt;}
.ws2e_c02314{word-spacing:-0.229792pt;}
.ws17_c02314{word-spacing:-0.224448pt;}
.ws0_c02314{word-spacing:-0.140544pt;}
.ws1d_c02314{word-spacing:-0.133600pt;}
.ws7_c02314{word-spacing:-0.064000pt;}
.ws6_c02314{word-spacing:-0.025600pt;}
.ws12_c02314{word-spacing:-0.011712pt;}
.ws5_c02314{word-spacing:0.000000pt;}
.ws25_c02314{word-spacing:0.005856pt;}
.ws2_c02314{word-spacing:0.012800pt;}
.ws4_c02314{word-spacing:0.035136pt;}
.ws14_c02314{word-spacing:0.046848pt;}
.ws3_c02314{word-spacing:0.052704pt;}
.ws24_c02314{word-spacing:0.058560pt;}
.ws16_c02314{word-spacing:0.064416pt;}
.wsb_c02314{word-spacing:0.070272pt;}
.ws30_c02314{word-spacing:0.090848pt;}
.ws1c_c02314{word-spacing:0.096192pt;}
.ws1a_c02314{word-spacing:0.106880pt;}
.ws18_c02314{word-spacing:0.122912pt;}
.ws19_c02314{word-spacing:0.149632pt;}
.ws1b_c02314{word-spacing:0.160320pt;}
.ws2f_c02314{word-spacing:0.208416pt;}
.wse_c02314{word-spacing:0.368928pt;}
.wsc_c02314{word-spacing:1.979328pt;}
.wsd_c02314{word-spacing:2.014464pt;}
.ws15_c02314{word-spacing:2.277984pt;}
.ws1f_c02314{word-spacing:3.220800pt;}
.ws1e_c02314{word-spacing:3.267648pt;}
.ws2b_c02314{word-spacing:3.548736pt;}
.wsa_c02314{word-spacing:3.554592pt;}
.ws23_c02314{word-spacing:3.888384pt;}
.ws22_c02314{word-spacing:3.900096pt;}
.ws13_c02314{word-spacing:4.825344pt;}
.ws2c_c02314{word-spacing:5.153280pt;}
.ws2d_c02314{word-spacing:5.159136pt;}
.ws28_c02314{word-spacing:7.712352pt;}
.ws20_c02314{word-spacing:8.672736pt;}
.ws21_c02314{word-spacing:8.690304pt;}
.ws2a_c02314{word-spacing:12.812928pt;}
.ws29_c02314{word-spacing:12.830496pt;}
.ws11_c02314{word-spacing:13.439520pt;}
.ws10_c02314{word-spacing:13.445376pt;}
.ws26_c02314{word-spacing:14.107104pt;}
.ws27_c02314{word-spacing:14.130528pt;}
.wsf_c02314{word-spacing:41.343360pt;}
.ws9_c02314{word-spacing:43.279264pt;}
._3_c02314{margin-left:-1.148960pt;}
._5_c02314{width:1.024800pt;}
._1_c02314{width:43.276544pt;}
._4_c02314{width:48.247552pt;}
._0_c02314{width:103.084864pt;}
._2_c02314{width:278.502400pt;}
.fs5_c02314{font-size:21.440000pt;}
.fs2_c02314{font-size:37.440000pt;}
.fs3_c02314{font-size:42.560000pt;}
.fs4_c02314{font-size:53.440000pt;}
.fs1_c02314{font-size:58.560000pt;}
.fs0_c02314{font-size:64.000000pt;}
.y0_c02314{bottom:0.000000pt;}
.y4_c02314{bottom:67.066347pt;}
.y3_c02314{bottom:100.985763pt;}
.y2f_c02314{bottom:128.665427pt;}
.y2e_c02314{bottom:148.105883pt;}
.y36_c02314{bottom:153.466667pt;}
.y2d_c02314{bottom:167.465819pt;}
.y35_c02314{bottom:185.546667pt;}
.y2c_c02314{bottom:186.906275pt;}
.y2b_c02314{bottom:206.266211pt;}
.y34_c02314{bottom:211.226667pt;}
.y2a_c02314{bottom:225.706667pt;}
.y33_c02314{bottom:236.826667pt;}
.y29_c02314{bottom:241.386667pt;}
.y28_c02314{bottom:252.106339pt;}
.y32_c02314{bottom:262.426667pt;}
.y27_c02314{bottom:271.546795pt;}
.y31_c02314{bottom:285.786667pt;}
.y26_c02314{bottom:290.906731pt;}
.y25_c02314{bottom:310.186667pt;}
.y30_c02314{bottom:311.386667pt;}
.y1a_c02314{bottom:326.666667pt;}
.y19_c02314{bottom:337.386275pt;}
.y18_c02314{bottom:356.826731pt;}
.y17_c02314{bottom:376.186667pt;}
.y16_c02314{bottom:391.866667pt;}
.y15_c02314{bottom:402.666731pt;}
.y24_c02314{bottom:407.466667pt;}
.y14_c02314{bottom:422.026667pt;}
.y13_c02314{bottom:437.706667pt;}
.y23_c02314{bottom:439.546667pt;}
.y12_c02314{bottom:448.506275pt;}
.y11_c02314{bottom:467.866211pt;}
.y22_c02314{bottom:470.506667pt;}
.y10_c02314{bottom:487.306667pt;}
.y21_c02314{bottom:496.106667pt;}
.yf_c02314{bottom:502.986667pt;}
.ye_c02314{bottom:513.706275pt;}
.y20_c02314{bottom:521.786667pt;}
.yd_c02314{bottom:533.146731pt;}
.y1f_c02314{bottom:547.386667pt;}
.yc_c02314{bottom:552.506667pt;}
.yb_c02314{bottom:568.186667pt;}
.y1e_c02314{bottom:573.066667pt;}
.ya_c02314{bottom:578.986731pt;}
.y1d_c02314{bottom:596.346667pt;}
.y9_c02314{bottom:598.346667pt;}
.y8_c02314{bottom:614.026667pt;}
.y1c_c02314{bottom:619.706667pt;}
.y7_c02314{bottom:624.827251pt;}
.y6_c02314{bottom:644.106667pt;}
.y1b_c02314{bottom:645.306667pt;}
.y5_c02314{bottom:670.906667pt;}
.y2_c02314{bottom:714.106035pt;}
.y1_c02314{bottom:731.546667pt;}
.h8_c02314{height:21.042187pt;}
.h3_c02314{height:39.030469pt;}
.h5_c02314{height:39.220000pt;}
.h4_c02314{height:48.294844pt;}
.h9_c02314{height:53.857500pt;}
.h7_c02314{height:57.473437pt;}
.h6_c02314{height:59.017500pt;}
.ha_c02314{height:59.337500pt;}
.h2_c02314{height:64.500000pt;}
.h1_c02314{height:793.333333pt;}
.h0_c02314{height:793.626667pt;}
.w0_c02314{width:1122.666667pt;}
.x0_c02314{left:0.000000pt;}
.x1_c02314{left:94.467467pt;}
.x3_c02314{left:111.107333pt;}
.x4_c02314{left:243.427333pt;}
.x2_c02314{left:550.068085pt;}
.x5_c02314{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f129f3747e7bb551099bbbfc.woff2')format("woff");}.ff1_c02315{font-family:ff1_c02315;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02315{font-family:ff2_c02315;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02315;src:url('chunks/assets/font_0a58d97b557018a63d67cce1.woff2')format("woff");}.ff3_c02315{font-family:ff3_c02315;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02315;src:url('chunks/assets/font_8cbb6373ab5a327c8a67b705.woff2')format("woff");}.ff4_c02315{font-family:ff4_c02315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:17.640000px;}
.ls11_c02315{letter-spacing:-0.144288px;}
.ls16_c02315{letter-spacing:-0.126252px;}
.ls14_c02315{letter-spacing:-0.114228px;}
.ls13_c02315{letter-spacing:-0.102204px;}
.ls18_c02315{letter-spacing:-0.090180px;}
.ls17_c02315{letter-spacing:-0.048096px;}
.ls15_c02315{letter-spacing:-0.030060px;}
.lsf_c02315{letter-spacing:-0.014400px;}
.ls12_c02315{letter-spacing:-0.013176px;}
.ls10_c02315{letter-spacing:0.000000px;}
.ls6_c02315{letter-spacing:0.006588px;}
.lsc_c02315{letter-spacing:0.026352px;}
.ls0_c02315{letter-spacing:0.032940px;}
.lse_c02315{letter-spacing:0.039528px;}
.ls8_c02315{letter-spacing:0.046116px;}
.ls2_c02315{letter-spacing:0.052704px;}
.ls5_c02315{letter-spacing:0.065880px;}
.ls3_c02315{letter-spacing:0.072468px;}
.lsb_c02315{letter-spacing:0.079056px;}
.ls4_c02315{letter-spacing:0.085644px;}
.ls1_c02315{letter-spacing:0.092232px;}
.lsa_c02315{letter-spacing:0.118584px;}
.lsd_c02315{letter-spacing:0.131760px;}
.ls9_c02315{letter-spacing:0.177876px;}
.ls7_c02315{letter-spacing:0.181944px;}
.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;}
}
.ws2_c02315{word-spacing:-16.601760px;}
.ws1_c02315{word-spacing:-16.588584px;}
.ws0_c02315{word-spacing:-0.158112px;}
.ws6_c02315{word-spacing:0.000000px;}
.ws3_c02315{word-spacing:0.014400px;}
.ws12_c02315{word-spacing:0.019764px;}
.ws1a_c02315{word-spacing:0.026352px;}
.ws5_c02315{word-spacing:0.039528px;}
.ws24_c02315{word-spacing:0.052704px;}
.ws4_c02315{word-spacing:0.059292px;}
.ws2a_c02315{word-spacing:0.065880px;}
.ws1d_c02315{word-spacing:0.120240px;}
.ws25_c02315{word-spacing:0.138276px;}
.ws26_c02315{word-spacing:0.180360px;}
.ws1b_c02315{word-spacing:0.192384px;}
.ws1c_c02315{word-spacing:0.204408px;}
.ws1e_c02315{word-spacing:0.216432px;}
.ws15_c02315{word-spacing:0.234468px;}
.ws27_c02315{word-spacing:0.718092px;}
.ws28_c02315{word-spacing:0.744444px;}
.ws29_c02315{word-spacing:1.502064px;}
.ws16_c02315{word-spacing:4.690656px;}
.ws17_c02315{word-spacing:4.723596px;}
.ws18_c02315{word-spacing:5.105700px;}
.ws19_c02315{word-spacing:5.145228px;}
.ws11_c02315{word-spacing:5.408748px;}
.ws22_c02315{word-spacing:7.615728px;}
.ws23_c02315{word-spacing:7.661844px;}
.ws13_c02315{word-spacing:8.656632px;}
.ws7_c02315{word-spacing:8.676396px;}
.ws14_c02315{word-spacing:8.682984px;}
.wsc_c02315{word-spacing:9.361548px;}
.wsd_c02315{word-spacing:9.381312px;}
.ws20_c02315{word-spacing:9.723888px;}
.ws21_c02315{word-spacing:9.770004px;}
.ws1f_c02315{word-spacing:13.729392px;}
.ws8_c02315{word-spacing:26.655048px;}
.ws9_c02315{word-spacing:26.661636px;}
.wse_c02315{word-spacing:36.378936px;}
.wsf_c02315{word-spacing:36.398700px;}
.wsa_c02315{word-spacing:43.223868px;}
.wsb_c02315{word-spacing:43.256808px;}
.ws10_c02315{word-spacing:48.689172px;}
._0_c02315{margin-left:-1.067256px;}
._3_c02315{width:1.172340px;}
._2_c02315{width:5.773212px;}
._1_c02315{width:54.278496px;}
.fc0_c02315{color:rgb(0,0,0);}
.fs2_c02315{font-size:36.000000px;}
.fs3_c02315{font-size:47.880000px;}
.fs4_c02315{font-size:60.120000px;}
.fs1_c02315{font-size:65.880000px;}
.fs0_c02315{font-size:72.000000px;}
.y0_c02315{bottom:0.000000px;}
.y4_c02315{bottom:75.449640px;}
.y3_c02315{bottom:113.608983px;}
.y2c_c02315{bottom:155.639046px;}
.y2b_c02315{bottom:177.509559px;}
.y2a_c02315{bottom:199.289487px;}
.y29_c02315{bottom:221.070000px;}
.y2d_c02315{bottom:222.420000px;}
.y24_c02315{bottom:240.780000px;}
.y23_c02315{bottom:255.629190px;}
.y28_c02315{bottom:276.240000px;}
.y22_c02315{bottom:277.409118px;}
.y21_c02315{bottom:299.189046px;}
.y27_c02315{bottom:307.020000px;}
.y20_c02315{bottom:321.059559px;}
.y26_c02315{bottom:337.080000px;}
.y1f_c02315{bottom:342.839487px;}
.y1e_c02315{bottom:364.620000px;}
.y25_c02315{bottom:365.970000px;}
.y1d_c02315{bottom:395.580000px;}
.y19_c02315{bottom:415.289046px;}
.y1c_c02315{bottom:424.380000px;}
.y18_c02315{bottom:437.159559px;}
.y1b_c02315{bottom:453.180000px;}
.y17_c02315{bottom:458.939487px;}
.y16_c02315{bottom:480.720000px;}
.y1a_c02315{bottom:482.070000px;}
.y12_c02315{bottom:498.990000px;}
.y11_c02315{bottom:510.871035px;}
.y10_c02315{bottom:529.860945px;}
.y15_c02315{bottom:544.620000px;}
.yf_c02315{bottom:548.850855px;}
.ye_c02315{bottom:567.750180px;}
.y14_c02315{bottom:580.710000px;}
.yd_c02315{bottom:586.740090px;}
.yc_c02315{bottom:605.640000px;}
.y13_c02315{bottom:606.990000px;}
.yb_c02315{bottom:625.440000px;}
.ya_c02315{bottom:640.199352px;}
.y9_c02315{bottom:661.979280px;}
.y8_c02315{bottom:683.849793px;}
.y7_c02315{bottom:705.629721px;}
.y6_c02315{bottom:727.500234px;}
.y5_c02315{bottom:749.280162px;}
.y2_c02315{bottom:803.369289px;}
.y1_c02315{bottom:822.990000px;}
.h6_c02315{height:35.332031px;}
.h3_c02315{height:43.909277px;}
.h4_c02315{height:54.331699px;}
.h8_c02315{height:60.589687px;}
.h5_c02315{height:64.657617px;}
.h7_c02315{height:66.754687px;}
.h2_c02315{height:72.562500px;}
.h1_c02315{height:892.500000px;}
.h0_c02315{height:892.830000px;}
.w0_c02315{width:1263.000000px;}
.x0_c02315{left:0.000000px;}
.x1_c02315{left:106.275900px;}
.x4_c02315{left:124.995750px;}
.x3_c02315{left:273.857505px;}
.x2_c02315{left:618.826596px;}
.x5_c02315{left:826.725750px;}
@media print{
.v0_c02315{vertical-align:0.000000pt;}
.v1_c02315{vertical-align:15.680000pt;}
.ls11_c02315{letter-spacing:-0.128256pt;}
.ls16_c02315{letter-spacing:-0.112224pt;}
.ls14_c02315{letter-spacing:-0.101536pt;}
.ls13_c02315{letter-spacing:-0.090848pt;}
.ls18_c02315{letter-spacing:-0.080160pt;}
.ls17_c02315{letter-spacing:-0.042752pt;}
.ls15_c02315{letter-spacing:-0.026720pt;}
.lsf_c02315{letter-spacing:-0.012800pt;}
.ls12_c02315{letter-spacing:-0.011712pt;}
.ls10_c02315{letter-spacing:0.000000pt;}
.ls6_c02315{letter-spacing:0.005856pt;}
.lsc_c02315{letter-spacing:0.023424pt;}
.ls0_c02315{letter-spacing:0.029280pt;}
.lse_c02315{letter-spacing:0.035136pt;}
.ls8_c02315{letter-spacing:0.040992pt;}
.ls2_c02315{letter-spacing:0.046848pt;}
.ls5_c02315{letter-spacing:0.058560pt;}
.ls3_c02315{letter-spacing:0.064416pt;}
.lsb_c02315{letter-spacing:0.070272pt;}
.ls4_c02315{letter-spacing:0.076128pt;}
.ls1_c02315{letter-spacing:0.081984pt;}
.lsa_c02315{letter-spacing:0.105408pt;}
.lsd_c02315{letter-spacing:0.117120pt;}
.ls9_c02315{letter-spacing:0.158112pt;}
.ls7_c02315{letter-spacing:0.161728pt;}
.ws2_c02315{word-spacing:-14.757120pt;}
.ws1_c02315{word-spacing:-14.745408pt;}
.ws0_c02315{word-spacing:-0.140544pt;}
.ws6_c02315{word-spacing:0.000000pt;}
.ws3_c02315{word-spacing:0.012800pt;}
.ws12_c02315{word-spacing:0.017568pt;}
.ws1a_c02315{word-spacing:0.023424pt;}
.ws5_c02315{word-spacing:0.035136pt;}
.ws24_c02315{word-spacing:0.046848pt;}
.ws4_c02315{word-spacing:0.052704pt;}
.ws2a_c02315{word-spacing:0.058560pt;}
.ws1d_c02315{word-spacing:0.106880pt;}
.ws25_c02315{word-spacing:0.122912pt;}
.ws26_c02315{word-spacing:0.160320pt;}
.ws1b_c02315{word-spacing:0.171008pt;}
.ws1c_c02315{word-spacing:0.181696pt;}
.ws1e_c02315{word-spacing:0.192384pt;}
.ws15_c02315{word-spacing:0.208416pt;}
.ws27_c02315{word-spacing:0.638304pt;}
.ws28_c02315{word-spacing:0.661728pt;}
.ws29_c02315{word-spacing:1.335168pt;}
.ws16_c02315{word-spacing:4.169472pt;}
.ws17_c02315{word-spacing:4.198752pt;}
.ws18_c02315{word-spacing:4.538400pt;}
.ws19_c02315{word-spacing:4.573536pt;}
.ws11_c02315{word-spacing:4.807776pt;}
.ws22_c02315{word-spacing:6.769536pt;}
.ws23_c02315{word-spacing:6.810528pt;}
.ws13_c02315{word-spacing:7.694784pt;}
.ws7_c02315{word-spacing:7.712352pt;}
.ws14_c02315{word-spacing:7.718208pt;}
.wsc_c02315{word-spacing:8.321376pt;}
.wsd_c02315{word-spacing:8.338944pt;}
.ws20_c02315{word-spacing:8.643456pt;}
.ws21_c02315{word-spacing:8.684448pt;}
.ws1f_c02315{word-spacing:12.203904pt;}
.ws8_c02315{word-spacing:23.693376pt;}
.ws9_c02315{word-spacing:23.699232pt;}
.wse_c02315{word-spacing:32.336832pt;}
.wsf_c02315{word-spacing:32.354400pt;}
.wsa_c02315{word-spacing:38.421216pt;}
.wsb_c02315{word-spacing:38.450496pt;}
.ws10_c02315{word-spacing:43.279264pt;}
._0_c02315{margin-left:-0.948672pt;}
._3_c02315{width:1.042080pt;}
._2_c02315{width:5.131744pt;}
._1_c02315{width:48.247552pt;}
.fs2_c02315{font-size:32.000000pt;}
.fs3_c02315{font-size:42.560000pt;}
.fs4_c02315{font-size:53.440000pt;}
.fs1_c02315{font-size:58.560000pt;}
.fs0_c02315{font-size:64.000000pt;}
.y0_c02315{bottom:0.000000pt;}
.y4_c02315{bottom:67.066347pt;}
.y3_c02315{bottom:100.985763pt;}
.y2c_c02315{bottom:138.345819pt;}
.y2b_c02315{bottom:157.786275pt;}
.y2a_c02315{bottom:177.146211pt;}
.y29_c02315{bottom:196.506667pt;}
.y2d_c02315{bottom:197.706667pt;}
.y24_c02315{bottom:214.026667pt;}
.y23_c02315{bottom:227.225947pt;}
.y28_c02315{bottom:245.546667pt;}
.y22_c02315{bottom:246.585883pt;}
.y21_c02315{bottom:265.945819pt;}
.y27_c02315{bottom:272.906667pt;}
.y20_c02315{bottom:285.386275pt;}
.y26_c02315{bottom:299.626667pt;}
.y1f_c02315{bottom:304.746211pt;}
.y1e_c02315{bottom:324.106667pt;}
.y25_c02315{bottom:325.306667pt;}
.y1d_c02315{bottom:351.626667pt;}
.y19_c02315{bottom:369.145819pt;}
.y1c_c02315{bottom:377.226667pt;}
.y18_c02315{bottom:388.586275pt;}
.y1b_c02315{bottom:402.826667pt;}
.y17_c02315{bottom:407.946211pt;}
.y16_c02315{bottom:427.306667pt;}
.y1a_c02315{bottom:428.506667pt;}
.y12_c02315{bottom:443.546667pt;}
.y11_c02315{bottom:454.107587pt;}
.y10_c02315{bottom:470.987507pt;}
.y15_c02315{bottom:484.106667pt;}
.yf_c02315{bottom:487.867427pt;}
.ye_c02315{bottom:504.666827pt;}
.y14_c02315{bottom:516.186667pt;}
.yd_c02315{bottom:521.546747pt;}
.yc_c02315{bottom:538.346667pt;}
.y13_c02315{bottom:539.546667pt;}
.yb_c02315{bottom:555.946667pt;}
.ya_c02315{bottom:569.066091pt;}
.y9_c02315{bottom:588.426027pt;}
.y8_c02315{bottom:607.866483pt;}
.y7_c02315{bottom:627.226419pt;}
.y6_c02315{bottom:646.666875pt;}
.y5_c02315{bottom:666.026811pt;}
.y2_c02315{bottom:714.106035pt;}
.y1_c02315{bottom:731.546667pt;}
.h6_c02315{height:31.406250pt;}
.h3_c02315{height:39.030469pt;}
.h4_c02315{height:48.294844pt;}
.h8_c02315{height:53.857500pt;}
.h5_c02315{height:57.473437pt;}
.h7_c02315{height:59.337500pt;}
.h2_c02315{height:64.500000pt;}
.h1_c02315{height:793.333333pt;}
.h0_c02315{height:793.626667pt;}
.w0_c02315{width:1122.666667pt;}
.x0_c02315{left:0.000000pt;}
.x1_c02315{left:94.467467pt;}
.x4_c02315{left:111.107333pt;}
.x3_c02315{left:243.428893pt;}
.x2_c02315{left:550.068085pt;}
.x5_c02315{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c39010c7b846be8e29897fe.woff2')format("woff");}.ff1_c02316{font-family:ff1_c02316;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02316{font-family:ff2_c02316;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02316;src:url('chunks/assets/font_c450c5e0f60c7ba10563e745.woff2')format("woff");}.ff3_c02316{font-family:ff3_c02316;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02316;src:url('chunks/assets/font_93c6c4943b32b9b2a795f694.woff2')format("woff");}.ff4_c02316{font-family:ff4_c02316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02316{vertical-align:-28.440000px;}
.v3_c02316{vertical-align:-16.920000px;}
.v1_c02316{vertical-align:-5.760000px;}
.v0_c02316{vertical-align:0.000000px;}
.v4_c02316{vertical-align:18.000000px;}
.ls13_c02316{letter-spacing:-0.176904px;}
.ls1f_c02316{letter-spacing:-0.126252px;}
.ls17_c02316{letter-spacing:-0.120240px;}
.ls1a_c02316{letter-spacing:-0.114228px;}
.ls1d_c02316{letter-spacing:-0.090180px;}
.ls1b_c02316{letter-spacing:-0.084168px;}
.ls16_c02316{letter-spacing:-0.048096px;}
.ls15_c02316{letter-spacing:-0.039528px;}
.ls1c_c02316{letter-spacing:-0.030060px;}
.ls19_c02316{letter-spacing:-0.018036px;}
.ls11_c02316{letter-spacing:-0.014400px;}
.ls18_c02316{letter-spacing:-0.006588px;}
.ls1e_c02316{letter-spacing:-0.006012px;}
.ls12_c02316{letter-spacing:0.000000px;}
.ls10_c02316{letter-spacing:0.006588px;}
.ls2_c02316{letter-spacing:0.014400px;}
.ls3_c02316{letter-spacing:0.018036px;}
.lse_c02316{letter-spacing:0.019764px;}
.lsa_c02316{letter-spacing:0.026352px;}
.ls0_c02316{letter-spacing:0.032940px;}
.ls7_c02316{letter-spacing:0.046116px;}
.ls6_c02316{letter-spacing:0.052704px;}
.ls8_c02316{letter-spacing:0.059292px;}
.lsc_c02316{letter-spacing:0.065880px;}
.lsb_c02316{letter-spacing:0.079056px;}
.lsf_c02316{letter-spacing:0.085644px;}
.ls1_c02316{letter-spacing:0.092232px;}
.lsd_c02316{letter-spacing:0.098820px;}
.ls9_c02316{letter-spacing:0.118584px;}
.ls5_c02316{letter-spacing:0.131760px;}
.ls14_c02316{letter-spacing:0.177876px;}
.ls4_c02316{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02316{word-spacing:-16.601760px;}
.ws2_c02316{word-spacing:-16.588584px;}
.ws7_c02316{word-spacing:-0.288576px;}
.ws19_c02316{word-spacing:-0.264528px;}
.ws14_c02316{word-spacing:-0.252504px;}
.ws0_c02316{word-spacing:-0.158112px;}
.wsf_c02316{word-spacing:-0.150300px;}
.ws6_c02316{word-spacing:0.000000px;}
.ws12_c02316{word-spacing:0.013176px;}
.ws3_c02316{word-spacing:0.014400px;}
.ws13_c02316{word-spacing:0.026352px;}
.ws1c_c02316{word-spacing:0.032940px;}
.ws5_c02316{word-spacing:0.039528px;}
.ws4_c02316{word-spacing:0.059292px;}
.ws10_c02316{word-spacing:0.065880px;}
.ws24_c02316{word-spacing:0.085644px;}
.ws11_c02316{word-spacing:0.098820px;}
.ws17_c02316{word-spacing:0.120240px;}
.wsd_c02316{word-spacing:0.131760px;}
.wse_c02316{word-spacing:0.138276px;}
.ws16_c02316{word-spacing:0.174348px;}
.ws18_c02316{word-spacing:0.180360px;}
.ws15_c02316{word-spacing:0.204408px;}
.ws22_c02316{word-spacing:0.216432px;}
.ws27_c02316{word-spacing:0.724680px;}
.ws26_c02316{word-spacing:0.757620px;}
.ws9_c02316{word-spacing:2.193804px;}
.ws1d_c02316{word-spacing:2.589084px;}
.ws1f_c02316{word-spacing:4.012092px;}
.ws23_c02316{word-spacing:4.749948px;}
.ws1e_c02316{word-spacing:5.085936px;}
.ws1b_c02316{word-spacing:8.267940px;}
.ws1a_c02316{word-spacing:8.320644px;}
.wsa_c02316{word-spacing:16.977276px;}
.ws21_c02316{word-spacing:18.367344px;}
.ws20_c02316{word-spacing:18.393696px;}
.wsc_c02316{word-spacing:19.829880px;}
.ws28_c02316{word-spacing:21.661344px;}
.ws25_c02316{word-spacing:24.177960px;}
.wsb_c02316{word-spacing:27.043740px;}
.ws8_c02316{word-spacing:48.689172px;}
._3_c02316{margin-left:-1.292580px;}
._5_c02316{width:1.462536px;}
._1_c02316{width:48.686112px;}
._4_c02316{width:54.278496px;}
._0_c02316{width:115.970472px;}
._2_c02316{width:2017.785600px;}
.fc0_c02316{color:rgb(0,0,0);}
.fs2_c02316{font-size:42.120000px;}
.fs3_c02316{font-size:47.880000px;}
.fs4_c02316{font-size:60.120000px;}
.fs1_c02316{font-size:65.880000px;}
.fs0_c02316{font-size:72.000000px;}
.y0_c02316{bottom:0.000000px;}
.y4_c02316{bottom:75.449640px;}
.y3_c02316{bottom:113.608983px;}
.y2b_c02316{bottom:152.579118px;}
.y2a_c02316{bottom:174.359046px;}
.y2f_c02316{bottom:181.650000px;}
.y29_c02316{bottom:196.229559px;}
.y2e_c02316{bottom:201.450000px;}
.y28_c02316{bottom:218.009487px;}
.y2d_c02316{bottom:221.250000px;}
.y27_c02316{bottom:239.790000px;}
.y2c_c02316{bottom:241.140000px;}
.y25_c02316{bottom:262.470072px;}
.y24_c02316{bottom:284.160000px;}
.y26_c02316{bottom:285.510000px;}
.y22_c02316{bottom:306.839118px;}
.y21_c02316{bottom:328.619046px;}
.y20_c02316{bottom:350.489559px;}
.y1f_c02316{bottom:372.269487px;}
.y1e_c02316{bottom:394.050000px;}
.y23_c02316{bottom:395.400000px;}
.y1c_c02316{bottom:416.639487px;}
.y1b_c02316{bottom:438.420000px;}
.y1d_c02316{bottom:439.770000px;}
.y1a_c02316{bottom:469.290000px;}
.y19_c02316{bottom:498.180000px;}
.y14_c02316{bottom:503.129190px;}
.y13_c02316{bottom:524.999703px;}
.y18_c02316{bottom:526.980000px;}
.y12_c02316{bottom:546.779631px;}
.y17_c02316{bottom:555.870000px;}
.y11_c02316{bottom:568.650144px;}
.y16_c02316{bottom:584.670000px;}
.y10_c02316{bottom:590.430072px;}
.yf_c02316{bottom:612.120000px;}
.y15_c02316{bottom:613.470000px;}
.ye_c02316{bottom:634.800000px;}
.ya_c02316{bottom:637.499703px;}
.y9_c02316{bottom:659.279631px;}
.yd_c02316{bottom:670.890000px;}
.y8_c02316{bottom:681.059559px;}
.yc_c02316{bottom:699.780000px;}
.y7_c02316{bottom:702.930072px;}
.y6_c02316{bottom:724.620000px;}
.yb_c02316{bottom:725.970000px;}
.y5_c02316{bottom:754.770000px;}
.y2_c02316{bottom:803.369289px;}
.y1_c02316{bottom:822.990000px;}
.h3_c02316{height:43.909277px;}
.h5_c02316{height:44.122500px;}
.h4_c02316{height:54.331699px;}
.h8_c02316{height:60.589687px;}
.h7_c02316{height:64.657617px;}
.h6_c02316{height:66.754688px;}
.h2_c02316{height:72.562500px;}
.h1_c02316{height:892.500000px;}
.h0_c02316{height:892.830000px;}
.w0_c02316{width:1263.000000px;}
.x0_c02316{left:0.000000px;}
.x1_c02316{left:106.275900px;}
.x3_c02316{left:124.995750px;}
.x4_c02316{left:273.855750px;}
.x2_c02316{left:618.826596px;}
.x5_c02316{left:826.725750px;}
@media print{
.v2_c02316{vertical-align:-25.280000pt;}
.v3_c02316{vertical-align:-15.040000pt;}
.v1_c02316{vertical-align:-5.120000pt;}
.v0_c02316{vertical-align:0.000000pt;}
.v4_c02316{vertical-align:16.000000pt;}
.ls13_c02316{letter-spacing:-0.157248pt;}
.ls1f_c02316{letter-spacing:-0.112224pt;}
.ls17_c02316{letter-spacing:-0.106880pt;}
.ls1a_c02316{letter-spacing:-0.101536pt;}
.ls1d_c02316{letter-spacing:-0.080160pt;}
.ls1b_c02316{letter-spacing:-0.074816pt;}
.ls16_c02316{letter-spacing:-0.042752pt;}
.ls15_c02316{letter-spacing:-0.035136pt;}
.ls1c_c02316{letter-spacing:-0.026720pt;}
.ls19_c02316{letter-spacing:-0.016032pt;}
.ls11_c02316{letter-spacing:-0.012800pt;}
.ls18_c02316{letter-spacing:-0.005856pt;}
.ls1e_c02316{letter-spacing:-0.005344pt;}
.ls12_c02316{letter-spacing:0.000000pt;}
.ls10_c02316{letter-spacing:0.005856pt;}
.ls2_c02316{letter-spacing:0.012800pt;}
.ls3_c02316{letter-spacing:0.016032pt;}
.lse_c02316{letter-spacing:0.017568pt;}
.lsa_c02316{letter-spacing:0.023424pt;}
.ls0_c02316{letter-spacing:0.029280pt;}
.ls7_c02316{letter-spacing:0.040992pt;}
.ls6_c02316{letter-spacing:0.046848pt;}
.ls8_c02316{letter-spacing:0.052704pt;}
.lsc_c02316{letter-spacing:0.058560pt;}
.lsb_c02316{letter-spacing:0.070272pt;}
.lsf_c02316{letter-spacing:0.076128pt;}
.ls1_c02316{letter-spacing:0.081984pt;}
.lsd_c02316{letter-spacing:0.087840pt;}
.ls9_c02316{letter-spacing:0.105408pt;}
.ls5_c02316{letter-spacing:0.117120pt;}
.ls14_c02316{letter-spacing:0.158112pt;}
.ls4_c02316{letter-spacing:0.161728pt;}
.ws1_c02316{word-spacing:-14.757120pt;}
.ws2_c02316{word-spacing:-14.745408pt;}
.ws7_c02316{word-spacing:-0.256512pt;}
.ws19_c02316{word-spacing:-0.235136pt;}
.ws14_c02316{word-spacing:-0.224448pt;}
.ws0_c02316{word-spacing:-0.140544pt;}
.wsf_c02316{word-spacing:-0.133600pt;}
.ws6_c02316{word-spacing:0.000000pt;}
.ws12_c02316{word-spacing:0.011712pt;}
.ws3_c02316{word-spacing:0.012800pt;}
.ws13_c02316{word-spacing:0.023424pt;}
.ws1c_c02316{word-spacing:0.029280pt;}
.ws5_c02316{word-spacing:0.035136pt;}
.ws4_c02316{word-spacing:0.052704pt;}
.ws10_c02316{word-spacing:0.058560pt;}
.ws24_c02316{word-spacing:0.076128pt;}
.ws11_c02316{word-spacing:0.087840pt;}
.ws17_c02316{word-spacing:0.106880pt;}
.wsd_c02316{word-spacing:0.117120pt;}
.wse_c02316{word-spacing:0.122912pt;}
.ws16_c02316{word-spacing:0.154976pt;}
.ws18_c02316{word-spacing:0.160320pt;}
.ws15_c02316{word-spacing:0.181696pt;}
.ws22_c02316{word-spacing:0.192384pt;}
.ws27_c02316{word-spacing:0.644160pt;}
.ws26_c02316{word-spacing:0.673440pt;}
.ws9_c02316{word-spacing:1.950048pt;}
.ws1d_c02316{word-spacing:2.301408pt;}
.ws1f_c02316{word-spacing:3.566304pt;}
.ws23_c02316{word-spacing:4.222176pt;}
.ws1e_c02316{word-spacing:4.520832pt;}
.ws1b_c02316{word-spacing:7.349280pt;}
.ws1a_c02316{word-spacing:7.396128pt;}
.wsa_c02316{word-spacing:15.090912pt;}
.ws21_c02316{word-spacing:16.326528pt;}
.ws20_c02316{word-spacing:16.349952pt;}
.wsc_c02316{word-spacing:17.626560pt;}
.ws28_c02316{word-spacing:19.254528pt;}
.ws25_c02316{word-spacing:21.491520pt;}
.wsb_c02316{word-spacing:24.038880pt;}
.ws8_c02316{word-spacing:43.279264pt;}
._3_c02316{margin-left:-1.148960pt;}
._5_c02316{width:1.300032pt;}
._1_c02316{width:43.276544pt;}
._4_c02316{width:48.247552pt;}
._0_c02316{width:103.084864pt;}
._2_c02316{width:1793.587200pt;}
.fs2_c02316{font-size:37.440000pt;}
.fs3_c02316{font-size:42.560000pt;}
.fs4_c02316{font-size:53.440000pt;}
.fs1_c02316{font-size:58.560000pt;}
.fs0_c02316{font-size:64.000000pt;}
.y0_c02316{bottom:0.000000pt;}
.y4_c02316{bottom:67.066347pt;}
.y3_c02316{bottom:100.985763pt;}
.y2b_c02316{bottom:135.625883pt;}
.y2a_c02316{bottom:154.985819pt;}
.y2f_c02316{bottom:161.466667pt;}
.y29_c02316{bottom:174.426275pt;}
.y2e_c02316{bottom:179.066667pt;}
.y28_c02316{bottom:193.786211pt;}
.y2d_c02316{bottom:196.666667pt;}
.y27_c02316{bottom:213.146667pt;}
.y2c_c02316{bottom:214.346667pt;}
.y25_c02316{bottom:233.306731pt;}
.y24_c02316{bottom:252.586667pt;}
.y26_c02316{bottom:253.786667pt;}
.y22_c02316{bottom:272.745883pt;}
.y21_c02316{bottom:292.105819pt;}
.y20_c02316{bottom:311.546275pt;}
.y1f_c02316{bottom:330.906211pt;}
.y1e_c02316{bottom:350.266667pt;}
.y23_c02316{bottom:351.466667pt;}
.y1c_c02316{bottom:370.346211pt;}
.y1b_c02316{bottom:389.706667pt;}
.y1d_c02316{bottom:390.906667pt;}
.y1a_c02316{bottom:417.146667pt;}
.y19_c02316{bottom:442.826667pt;}
.y14_c02316{bottom:447.225947pt;}
.y13_c02316{bottom:466.666403pt;}
.y18_c02316{bottom:468.426667pt;}
.y12_c02316{bottom:486.026339pt;}
.y17_c02316{bottom:494.106667pt;}
.y11_c02316{bottom:505.466795pt;}
.y16_c02316{bottom:519.706667pt;}
.y10_c02316{bottom:524.826731pt;}
.yf_c02316{bottom:544.106667pt;}
.y15_c02316{bottom:545.306667pt;}
.ye_c02316{bottom:564.266667pt;}
.ya_c02316{bottom:566.666403pt;}
.y9_c02316{bottom:586.026339pt;}
.yd_c02316{bottom:596.346667pt;}
.y8_c02316{bottom:605.386275pt;}
.yc_c02316{bottom:622.026667pt;}
.y7_c02316{bottom:624.826731pt;}
.y6_c02316{bottom:644.106667pt;}
.yb_c02316{bottom:645.306667pt;}
.y5_c02316{bottom:670.906667pt;}
.y2_c02316{bottom:714.106035pt;}
.y1_c02316{bottom:731.546667pt;}
.h3_c02316{height:39.030469pt;}
.h5_c02316{height:39.220000pt;}
.h4_c02316{height:48.294844pt;}
.h8_c02316{height:53.857500pt;}
.h7_c02316{height:57.473437pt;}
.h6_c02316{height:59.337500pt;}
.h2_c02316{height:64.500000pt;}
.h1_c02316{height:793.333333pt;}
.h0_c02316{height:793.626667pt;}
.w0_c02316{width:1122.666667pt;}
.x0_c02316{left:0.000000pt;}
.x1_c02316{left:94.467467pt;}
.x3_c02316{left:111.107333pt;}
.x4_c02316{left:243.427333pt;}
.x2_c02316{left:550.068085pt;}
.x5_c02316{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7315584a16a6f02d55c79f55.woff2')format("woff");}.ff1_c02317{font-family:ff1_c02317;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02317{font-family:ff2_c02317;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02317;src:url('chunks/assets/font_c450c5e0f60c7ba10563e745.woff2')format("woff");}.ff3_c02317{font-family:ff3_c02317;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02317;src:url('chunks/assets/font_6281982315668982dc237ea3.woff2')format("woff");}.ff4_c02317{font-family:ff4_c02317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c02317{vertical-align:-28.440000px;}
.v3_c02317{vertical-align:-16.920000px;}
.v1_c02317{vertical-align:-5.760000px;}
.v0_c02317{vertical-align:0.000000px;}
.v4_c02317{vertical-align:18.000000px;}
.ls14_c02317{letter-spacing:-0.176904px;}
.ls18_c02317{letter-spacing:-0.144288px;}
.ls17_c02317{letter-spacing:-0.126252px;}
.ls1a_c02317{letter-spacing:-0.102204px;}
.ls19_c02317{letter-spacing:-0.084168px;}
.ls16_c02317{letter-spacing:-0.078156px;}
.ls1b_c02317{letter-spacing:-0.024048px;}
.ls12_c02317{letter-spacing:-0.014400px;}
.ls13_c02317{letter-spacing:0.000000px;}
.ls10_c02317{letter-spacing:0.006588px;}
.ls2_c02317{letter-spacing:0.014400px;}
.ls3_c02317{letter-spacing:0.018036px;}
.lsf_c02317{letter-spacing:0.019764px;}
.ls11_c02317{letter-spacing:0.026352px;}
.ls0_c02317{letter-spacing:0.032940px;}
.ls9_c02317{letter-spacing:0.039528px;}
.lsd_c02317{letter-spacing:0.046116px;}
.lsa_c02317{letter-spacing:0.052704px;}
.ls7_c02317{letter-spacing:0.059292px;}
.ls8_c02317{letter-spacing:0.065880px;}
.ls6_c02317{letter-spacing:0.072468px;}
.lsc_c02317{letter-spacing:0.079056px;}
.lsb_c02317{letter-spacing:0.085644px;}
.ls1_c02317{letter-spacing:0.092232px;}
.lse_c02317{letter-spacing:0.105408px;}
.ls5_c02317{letter-spacing:0.131760px;}
.ls15_c02317{letter-spacing:0.177876px;}
.ls4_c02317{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02317{word-spacing:-16.601760px;}
.ws6_c02317{word-spacing:-0.288576px;}
.ws0_c02317{word-spacing:-0.158112px;}
.ws5_c02317{word-spacing:0.000000px;}
.wsf_c02317{word-spacing:0.006588px;}
.ws2_c02317{word-spacing:0.014400px;}
.ws4_c02317{word-spacing:0.039528px;}
.ws26_c02317{word-spacing:0.046116px;}
.ws3_c02317{word-spacing:0.059292px;}
.ws28_c02317{word-spacing:0.065880px;}
.ws1c_c02317{word-spacing:0.072468px;}
.ws24_c02317{word-spacing:0.114228px;}
.ws10_c02317{word-spacing:0.168336px;}
.ws11_c02317{word-spacing:0.174348px;}
.ws23_c02317{word-spacing:0.192384px;}
.ws14_c02317{word-spacing:0.216432px;}
.ws22_c02317{word-spacing:0.234468px;}
.ws1f_c02317{word-spacing:0.408456px;}
.ws1d_c02317{word-spacing:1.851228px;}
.wsa_c02317{word-spacing:2.180628px;}
.ws13_c02317{word-spacing:2.575908px;}
.wsb_c02317{word-spacing:2.931660px;}
.ws20_c02317{word-spacing:3.965976px;}
.ws21_c02317{word-spacing:3.992328px;}
.wsc_c02317{word-spacing:4.736772px;}
.ws16_c02317{word-spacing:5.408748px;}
.ws15_c02317{word-spacing:5.428512px;}
.ws1e_c02317{word-spacing:5.810616px;}
.ws8_c02317{word-spacing:6.140016px;}
.ws9_c02317{word-spacing:6.153192px;}
.ws12_c02317{word-spacing:9.414252px;}
.wsd_c02317{word-spacing:9.737064px;}
.wse_c02317{word-spacing:9.756828px;}
.ws25_c02317{word-spacing:10.527624px;}
.ws19_c02317{word-spacing:15.462036px;}
.ws17_c02317{word-spacing:15.501564px;}
.ws18_c02317{word-spacing:15.521328px;}
.ws27_c02317{word-spacing:19.882584px;}
.ws1a_c02317{word-spacing:21.259476px;}
.ws1b_c02317{word-spacing:21.272652px;}
.ws7_c02317{word-spacing:48.689172px;}
._3_c02317{margin-left:-1.292580px;}
._5_c02317{width:1.297836px;}
._1_c02317{width:48.686112px;}
._4_c02317{width:54.278496px;}
._0_c02317{width:115.970472px;}
._2_c02317{width:2017.785600px;}
.fc0_c02317{color:rgb(0,0,0);}
.fs5_c02317{font-size:24.120000px;}
.fs2_c02317{font-size:42.120000px;}
.fs3_c02317{font-size:47.880000px;}
.fs4_c02317{font-size:60.120000px;}
.fs1_c02317{font-size:65.880000px;}
.fs0_c02317{font-size:72.000000px;}
.y0_c02317{bottom:0.000000px;}
.y4_c02317{bottom:75.449640px;}
.y3_c02317{bottom:113.608983px;}
.y2d_c02317{bottom:151.499190px;}
.y2c_c02317{bottom:173.279118px;}
.y2b_c02317{bottom:195.149631px;}
.y2a_c02317{bottom:216.929559px;}
.y29_c02317{bottom:238.709487px;}
.y28_c02317{bottom:260.490000px;}
.y2e_c02317{bottom:261.840000px;}
.y22_c02317{bottom:283.169190px;}
.y21_c02317{bottom:304.949118px;}
.y20_c02317{bottom:326.819631px;}
.y1f_c02317{bottom:348.599559px;}
.y27_c02317{bottom:362.730000px;}
.y1e_c02317{bottom:370.379487px;}
.y1d_c02317{bottom:392.250000px;}
.y26_c02317{bottom:398.820000px;}
.y1c_c02317{bottom:409.890000px;}
.y1b_c02317{bottom:421.949046px;}
.y25_c02317{bottom:427.620000px;}
.y1a_c02317{bottom:443.819559px;}
.y24_c02317{bottom:462.450000px;}
.y19_c02317{bottom:465.599487px;}
.y18_c02317{bottom:487.380000px;}
.y23_c02317{bottom:488.730000px;}
.y16_c02317{bottom:505.830000px;}
.y15_c02317{bottom:517.979559px;}
.y14_c02317{bottom:539.759487px;}
.y13_c02317{bottom:561.540000px;}
.y17_c02317{bottom:562.890000px;}
.y12_c02317{bottom:599.160000px;}
.yc_c02317{bottom:603.570000px;}
.yb_c02317{bottom:615.629190px;}
.y11_c02317{bottom:621.030000px;}
.ya_c02317{bottom:637.499703px;}
.y10_c02317{bottom:651.090000px;}
.y9_c02317{bottom:659.279631px;}
.yf_c02317{bottom:670.890000px;}
.y8_c02317{bottom:681.059559px;}
.ye_c02317{bottom:699.780000px;}
.y7_c02317{bottom:702.930072px;}
.y6_c02317{bottom:724.620000px;}
.yd_c02317{bottom:725.970000px;}
.y5_c02317{bottom:754.770000px;}
.y2_c02317{bottom:803.369289px;}
.y1_c02317{bottom:822.990000px;}
.h8_c02317{height:23.672461px;}
.h3_c02317{height:43.909277px;}
.h5_c02317{height:44.122500px;}
.h4_c02317{height:54.331699px;}
.h9_c02317{height:60.589687px;}
.h7_c02317{height:64.657617px;}
.h6_c02317{height:66.754688px;}
.h2_c02317{height:72.562500px;}
.h1_c02317{height:892.500000px;}
.h0_c02317{height:892.830000px;}
.w0_c02317{width:1263.000000px;}
.x0_c02317{left:0.000000px;}
.x1_c02317{left:106.275900px;}
.x3_c02317{left:124.995750px;}
.x4_c02317{left:273.855750px;}
.x2_c02317{left:618.826596px;}
.x5_c02317{left:826.725750px;}
@media print{
.v2_c02317{vertical-align:-25.280000pt;}
.v3_c02317{vertical-align:-15.040000pt;}
.v1_c02317{vertical-align:-5.120000pt;}
.v0_c02317{vertical-align:0.000000pt;}
.v4_c02317{vertical-align:16.000000pt;}
.ls14_c02317{letter-spacing:-0.157248pt;}
.ls18_c02317{letter-spacing:-0.128256pt;}
.ls17_c02317{letter-spacing:-0.112224pt;}
.ls1a_c02317{letter-spacing:-0.090848pt;}
.ls19_c02317{letter-spacing:-0.074816pt;}
.ls16_c02317{letter-spacing:-0.069472pt;}
.ls1b_c02317{letter-spacing:-0.021376pt;}
.ls12_c02317{letter-spacing:-0.012800pt;}
.ls13_c02317{letter-spacing:0.000000pt;}
.ls10_c02317{letter-spacing:0.005856pt;}
.ls2_c02317{letter-spacing:0.012800pt;}
.ls3_c02317{letter-spacing:0.016032pt;}
.lsf_c02317{letter-spacing:0.017568pt;}
.ls11_c02317{letter-spacing:0.023424pt;}
.ls0_c02317{letter-spacing:0.029280pt;}
.ls9_c02317{letter-spacing:0.035136pt;}
.lsd_c02317{letter-spacing:0.040992pt;}
.lsa_c02317{letter-spacing:0.046848pt;}
.ls7_c02317{letter-spacing:0.052704pt;}
.ls8_c02317{letter-spacing:0.058560pt;}
.ls6_c02317{letter-spacing:0.064416pt;}
.lsc_c02317{letter-spacing:0.070272pt;}
.lsb_c02317{letter-spacing:0.076128pt;}
.ls1_c02317{letter-spacing:0.081984pt;}
.lse_c02317{letter-spacing:0.093696pt;}
.ls5_c02317{letter-spacing:0.117120pt;}
.ls15_c02317{letter-spacing:0.158112pt;}
.ls4_c02317{letter-spacing:0.161728pt;}
.ws1_c02317{word-spacing:-14.757120pt;}
.ws6_c02317{word-spacing:-0.256512pt;}
.ws0_c02317{word-spacing:-0.140544pt;}
.ws5_c02317{word-spacing:0.000000pt;}
.wsf_c02317{word-spacing:0.005856pt;}
.ws2_c02317{word-spacing:0.012800pt;}
.ws4_c02317{word-spacing:0.035136pt;}
.ws26_c02317{word-spacing:0.040992pt;}
.ws3_c02317{word-spacing:0.052704pt;}
.ws28_c02317{word-spacing:0.058560pt;}
.ws1c_c02317{word-spacing:0.064416pt;}
.ws24_c02317{word-spacing:0.101536pt;}
.ws10_c02317{word-spacing:0.149632pt;}
.ws11_c02317{word-spacing:0.154976pt;}
.ws23_c02317{word-spacing:0.171008pt;}
.ws14_c02317{word-spacing:0.192384pt;}
.ws22_c02317{word-spacing:0.208416pt;}
.ws1f_c02317{word-spacing:0.363072pt;}
.ws1d_c02317{word-spacing:1.645536pt;}
.wsa_c02317{word-spacing:1.938336pt;}
.ws13_c02317{word-spacing:2.289696pt;}
.wsb_c02317{word-spacing:2.605920pt;}
.ws20_c02317{word-spacing:3.525312pt;}
.ws21_c02317{word-spacing:3.548736pt;}
.wsc_c02317{word-spacing:4.210464pt;}
.ws16_c02317{word-spacing:4.807776pt;}
.ws15_c02317{word-spacing:4.825344pt;}
.ws1e_c02317{word-spacing:5.164992pt;}
.ws8_c02317{word-spacing:5.457792pt;}
.ws9_c02317{word-spacing:5.469504pt;}
.ws12_c02317{word-spacing:8.368224pt;}
.wsd_c02317{word-spacing:8.655168pt;}
.wse_c02317{word-spacing:8.672736pt;}
.ws25_c02317{word-spacing:9.357888pt;}
.ws19_c02317{word-spacing:13.744032pt;}
.ws17_c02317{word-spacing:13.779168pt;}
.ws18_c02317{word-spacing:13.796736pt;}
.ws27_c02317{word-spacing:17.673408pt;}
.ws1a_c02317{word-spacing:18.897312pt;}
.ws1b_c02317{word-spacing:18.909024pt;}
.ws7_c02317{word-spacing:43.279264pt;}
._3_c02317{margin-left:-1.148960pt;}
._5_c02317{width:1.153632pt;}
._1_c02317{width:43.276544pt;}
._4_c02317{width:48.247552pt;}
._0_c02317{width:103.084864pt;}
._2_c02317{width:1793.587200pt;}
.fs5_c02317{font-size:21.440000pt;}
.fs2_c02317{font-size:37.440000pt;}
.fs3_c02317{font-size:42.560000pt;}
.fs4_c02317{font-size:53.440000pt;}
.fs1_c02317{font-size:58.560000pt;}
.fs0_c02317{font-size:64.000000pt;}
.y0_c02317{bottom:0.000000pt;}
.y4_c02317{bottom:67.066347pt;}
.y3_c02317{bottom:100.985763pt;}
.y2d_c02317{bottom:134.665947pt;}
.y2c_c02317{bottom:154.025883pt;}
.y2b_c02317{bottom:173.466339pt;}
.y2a_c02317{bottom:192.826275pt;}
.y29_c02317{bottom:212.186211pt;}
.y28_c02317{bottom:231.546667pt;}
.y2e_c02317{bottom:232.746667pt;}
.y22_c02317{bottom:251.705947pt;}
.y21_c02317{bottom:271.065883pt;}
.y20_c02317{bottom:290.506339pt;}
.y1f_c02317{bottom:309.866275pt;}
.y27_c02317{bottom:322.426667pt;}
.y1e_c02317{bottom:329.226211pt;}
.y1d_c02317{bottom:348.666667pt;}
.y26_c02317{bottom:354.506667pt;}
.y1c_c02317{bottom:364.346667pt;}
.y1b_c02317{bottom:375.065819pt;}
.y25_c02317{bottom:380.106667pt;}
.y1a_c02317{bottom:394.506275pt;}
.y24_c02317{bottom:411.066667pt;}
.y19_c02317{bottom:413.866211pt;}
.y18_c02317{bottom:433.226667pt;}
.y23_c02317{bottom:434.426667pt;}
.y16_c02317{bottom:449.626667pt;}
.y15_c02317{bottom:460.426275pt;}
.y14_c02317{bottom:479.786211pt;}
.y13_c02317{bottom:499.146667pt;}
.y17_c02317{bottom:500.346667pt;}
.y12_c02317{bottom:532.586667pt;}
.yc_c02317{bottom:536.506667pt;}
.yb_c02317{bottom:547.225947pt;}
.y11_c02317{bottom:552.026667pt;}
.ya_c02317{bottom:566.666403pt;}
.y10_c02317{bottom:578.746667pt;}
.y9_c02317{bottom:586.026339pt;}
.yf_c02317{bottom:596.346667pt;}
.y8_c02317{bottom:605.386275pt;}
.ye_c02317{bottom:622.026667pt;}
.y7_c02317{bottom:624.826731pt;}
.y6_c02317{bottom:644.106667pt;}
.yd_c02317{bottom:645.306667pt;}
.y5_c02317{bottom:670.906667pt;}
.y2_c02317{bottom:714.106035pt;}
.y1_c02317{bottom:731.546667pt;}
.h8_c02317{height:21.042187pt;}
.h3_c02317{height:39.030469pt;}
.h5_c02317{height:39.220000pt;}
.h4_c02317{height:48.294844pt;}
.h9_c02317{height:53.857500pt;}
.h7_c02317{height:57.473437pt;}
.h6_c02317{height:59.337500pt;}
.h2_c02317{height:64.500000pt;}
.h1_c02317{height:793.333333pt;}
.h0_c02317{height:793.626667pt;}
.w0_c02317{width:1122.666667pt;}
.x0_c02317{left:0.000000pt;}
.x1_c02317{left:94.467467pt;}
.x3_c02317{left:111.107333pt;}
.x4_c02317{left:243.427333pt;}
.x2_c02317{left:550.068085pt;}
.x5_c02317{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bd658e40243d6ce832da657.woff2')format("woff");}.ff1_c02318{font-family:ff1_c02318;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02318{font-family:ff2_c02318;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02318;src:url('chunks/assets/font_6419f9b9da343f0bfbfb66db.woff2')format("woff");}.ff3_c02318{font-family:ff3_c02318;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02318;src:url('chunks/assets/font_eaea79999088315cc60756fe.woff2')format("woff");}.ff4_c02318{font-family:ff4_c02318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02318{vertical-align:-28.440000px;}
.v3_c02318{vertical-align:-16.920000px;}
.v1_c02318{vertical-align:-5.760000px;}
.v0_c02318{vertical-align:0.000000px;}
.ls12_c02318{letter-spacing:-0.176904px;}
.ls1a_c02318{letter-spacing:-0.120240px;}
.ls15_c02318{letter-spacing:-0.114228px;}
.ls17_c02318{letter-spacing:-0.090180px;}
.ls16_c02318{letter-spacing:-0.084168px;}
.ls14_c02318{letter-spacing:-0.048096px;}
.ls13_c02318{letter-spacing:-0.039528px;}
.ls18_c02318{letter-spacing:-0.030060px;}
.ls19_c02318{letter-spacing:-0.018036px;}
.ls10_c02318{letter-spacing:-0.014400px;}
.ls1b_c02318{letter-spacing:-0.006012px;}
.ls11_c02318{letter-spacing:0.000000px;}
.ls8_c02318{letter-spacing:0.006588px;}
.lse_c02318{letter-spacing:0.013176px;}
.ls2_c02318{letter-spacing:0.014400px;}
.ls3_c02318{letter-spacing:0.018036px;}
.lsb_c02318{letter-spacing:0.019764px;}
.lsf_c02318{letter-spacing:0.026352px;}
.ls0_c02318{letter-spacing:0.032940px;}
.ls7_c02318{letter-spacing:0.039528px;}
.lsc_c02318{letter-spacing:0.052704px;}
.lsd_c02318{letter-spacing:0.059292px;}
.ls9_c02318{letter-spacing:0.065880px;}
.lsa_c02318{letter-spacing:0.079056px;}
.ls1_c02318{letter-spacing:0.092232px;}
.ls6_c02318{letter-spacing:0.131760px;}
.ls4_c02318{letter-spacing:0.177876px;}
.ls5_c02318{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02318{word-spacing:-16.601760px;}
.ws6_c02318{word-spacing:-0.288576px;}
.ws27_c02318{word-spacing:-0.264528px;}
.ws0_c02318{word-spacing:-0.158112px;}
.ws26_c02318{word-spacing:-0.150300px;}
.ws5_c02318{word-spacing:0.000000px;}
.ws2_c02318{word-spacing:0.014400px;}
.wsd_c02318{word-spacing:0.026352px;}
.ws4_c02318{word-spacing:0.039528px;}
.ws3_c02318{word-spacing:0.059292px;}
.ws11_c02318{word-spacing:0.072468px;}
.ws25_c02318{word-spacing:0.108216px;}
.ws24_c02318{word-spacing:0.120240px;}
.ws20_c02318{word-spacing:0.138276px;}
.ws22_c02318{word-spacing:0.174348px;}
.ws23_c02318{word-spacing:0.180360px;}
.ws21_c02318{word-spacing:0.204408px;}
.ws18_c02318{word-spacing:0.757620px;}
.ws19_c02318{word-spacing:0.777384px;}
.ws1f_c02318{word-spacing:0.783972px;}
.ws13_c02318{word-spacing:2.549556px;}
.ws1b_c02318{word-spacing:3.287412px;}
.ws1a_c02318{word-spacing:3.300588px;}
.wsb_c02318{word-spacing:4.703832px;}
.ws16_c02318{word-spacing:5.099112px;}
.ws10_c02318{word-spacing:7.991244px;}
.wsa_c02318{word-spacing:9.407664px;}
.ws9_c02318{word-spacing:9.440604px;}
.ws12_c02318{word-spacing:10.474920px;}
.ws8_c02318{word-spacing:10.488096px;}
.ws15_c02318{word-spacing:12.675312px;}
.ws14_c02318{word-spacing:14.427720px;}
.ws17_c02318{word-spacing:15.185340px;}
.ws1e_c02318{word-spacing:17.319852px;}
.wsc_c02318{word-spacing:20.172456px;}
.ws1c_c02318{word-spacing:23.459868px;}
.wse_c02318{word-spacing:24.131844px;}
.wsf_c02318{word-spacing:24.171372px;}
.ws1d_c02318{word-spacing:37.479132px;}
.ws7_c02318{word-spacing:48.689172px;}
._3_c02318{margin-left:-1.292580px;}
._4_c02318{width:1.357128px;}
._1_c02318{width:48.686112px;}
._0_c02318{width:115.970472px;}
._2_c02318{width:2017.785600px;}
.fc0_c02318{color:rgb(0,0,0);}
.fs5_c02318{font-size:24.120000px;}
.fs2_c02318{font-size:42.120000px;}
.fs3_c02318{font-size:47.880000px;}
.fs4_c02318{font-size:60.120000px;}
.fs1_c02318{font-size:65.880000px;}
.fs0_c02318{font-size:72.000000px;}
.y0_c02318{bottom:0.000000px;}
.y4_c02318{bottom:75.449640px;}
.y3_c02318{bottom:113.608983px;}
.y32_c02318{bottom:151.320000px;}
.y31_c02318{bottom:163.379559px;}
.y15_c02318{bottom:172.374312px;}
.y30_c02318{bottom:185.159487px;}
.y2f_c02318{bottom:207.030000px;}
.y14_c02318{bottom:209.184762px;}
.y2e_c02318{bottom:224.670000px;}
.y2d_c02318{bottom:236.819262px;}
.y13_c02318{bottom:245.995212px;}
.y2c_c02318{bottom:258.599190px;}
.y2b_c02318{bottom:280.379118px;}
.y12_c02318{bottom:282.805662px;}
.y2a_c02318{bottom:302.249631px;}
.y11_c02318{bottom:319.616112px;}
.y29_c02318{bottom:324.029559px;}
.y28_c02318{bottom:345.900072px;}
.y10_c02318{bottom:356.426562px;}
.y27_c02318{bottom:367.680000px;}
.y26_c02318{bottom:385.320000px;}
.yf_c02318{bottom:393.237012px;}
.y25_c02318{bottom:397.467570px;}
.y24_c02318{bottom:419.247498px;}
.ye_c02318{bottom:430.136400px;}
.y23_c02318{bottom:441.118011px;}
.y3d_c02318{bottom:443.370000px;}
.y22_c02318{bottom:462.897939px;}
.y3c_c02318{bottom:465.240000px;}
.yd_c02318{bottom:466.946850px;}
.y21_c02318{bottom:484.768452px;}
.y3b_c02318{bottom:495.300000px;}
.yc_c02318{bottom:503.757300px;}
.y20_c02318{bottom:506.548380px;}
.y3a_c02318{bottom:524.190000px;}
.y1f_c02318{bottom:528.328308px;}
.yb_c02318{bottom:540.567750px;}
.y1e_c02318{bottom:550.198821px;}
.y39_c02318{bottom:552.990000px;}
.y1d_c02318{bottom:571.978749px;}
.ya_c02318{bottom:577.378200px;}
.y38_c02318{bottom:581.790000px;}
.y1c_c02318{bottom:593.849262px;}
.y37_c02318{bottom:610.680000px;}
.y9_c02318{bottom:614.188650px;}
.y1b_c02318{bottom:615.629190px;}
.y1a_c02318{bottom:637.499703px;}
.y36_c02318{bottom:639.480000px;}
.y8_c02318{bottom:650.999100px;}
.y19_c02318{bottom:659.279631px;}
.y35_c02318{bottom:668.370000px;}
.y18_c02318{bottom:681.059559px;}
.y7_c02318{bottom:687.809550px;}
.y34_c02318{bottom:697.170000px;}
.y17_c02318{bottom:702.930072px;}
.y6_c02318{bottom:724.620000px;}
.y33_c02318{bottom:725.970000px;}
.y16_c02318{bottom:729.120000px;}
.y5_c02318{bottom:754.770000px;}
.y2_c02318{bottom:803.369289px;}
.y1_c02318{bottom:822.990000px;}
.h9_c02318{height:23.672461px;}
.h3_c02318{height:43.909277px;}
.h5_c02318{height:44.122500px;}
.h7_c02318{height:48.754688px;}
.h4_c02318{height:54.331699px;}
.ha_c02318{height:60.589687px;}
.h8_c02318{height:64.657617px;}
.h6_c02318{height:66.394687px;}
.h2_c02318{height:72.562500px;}
.h1_c02318{height:892.500000px;}
.h0_c02318{height:892.830000px;}
.w0_c02318{width:1263.000000px;}
.x0_c02318{left:0.000000px;}
.x1_c02318{left:106.275900px;}
.x3_c02318{left:124.995750px;}
.x4_c02318{left:167.565750px;}
.x5_c02318{left:273.855750px;}
.x2_c02318{left:618.826596px;}
.x6_c02318{left:826.725750px;}
@media print{
.v2_c02318{vertical-align:-25.280000pt;}
.v3_c02318{vertical-align:-15.040000pt;}
.v1_c02318{vertical-align:-5.120000pt;}
.v0_c02318{vertical-align:0.000000pt;}
.ls12_c02318{letter-spacing:-0.157248pt;}
.ls1a_c02318{letter-spacing:-0.106880pt;}
.ls15_c02318{letter-spacing:-0.101536pt;}
.ls17_c02318{letter-spacing:-0.080160pt;}
.ls16_c02318{letter-spacing:-0.074816pt;}
.ls14_c02318{letter-spacing:-0.042752pt;}
.ls13_c02318{letter-spacing:-0.035136pt;}
.ls18_c02318{letter-spacing:-0.026720pt;}
.ls19_c02318{letter-spacing:-0.016032pt;}
.ls10_c02318{letter-spacing:-0.012800pt;}
.ls1b_c02318{letter-spacing:-0.005344pt;}
.ls11_c02318{letter-spacing:0.000000pt;}
.ls8_c02318{letter-spacing:0.005856pt;}
.lse_c02318{letter-spacing:0.011712pt;}
.ls2_c02318{letter-spacing:0.012800pt;}
.ls3_c02318{letter-spacing:0.016032pt;}
.lsb_c02318{letter-spacing:0.017568pt;}
.lsf_c02318{letter-spacing:0.023424pt;}
.ls0_c02318{letter-spacing:0.029280pt;}
.ls7_c02318{letter-spacing:0.035136pt;}
.lsc_c02318{letter-spacing:0.046848pt;}
.lsd_c02318{letter-spacing:0.052704pt;}
.ls9_c02318{letter-spacing:0.058560pt;}
.lsa_c02318{letter-spacing:0.070272pt;}
.ls1_c02318{letter-spacing:0.081984pt;}
.ls6_c02318{letter-spacing:0.117120pt;}
.ls4_c02318{letter-spacing:0.158112pt;}
.ls5_c02318{letter-spacing:0.161728pt;}
.ws1_c02318{word-spacing:-14.757120pt;}
.ws6_c02318{word-spacing:-0.256512pt;}
.ws27_c02318{word-spacing:-0.235136pt;}
.ws0_c02318{word-spacing:-0.140544pt;}
.ws26_c02318{word-spacing:-0.133600pt;}
.ws5_c02318{word-spacing:0.000000pt;}
.ws2_c02318{word-spacing:0.012800pt;}
.wsd_c02318{word-spacing:0.023424pt;}
.ws4_c02318{word-spacing:0.035136pt;}
.ws3_c02318{word-spacing:0.052704pt;}
.ws11_c02318{word-spacing:0.064416pt;}
.ws25_c02318{word-spacing:0.096192pt;}
.ws24_c02318{word-spacing:0.106880pt;}
.ws20_c02318{word-spacing:0.122912pt;}
.ws22_c02318{word-spacing:0.154976pt;}
.ws23_c02318{word-spacing:0.160320pt;}
.ws21_c02318{word-spacing:0.181696pt;}
.ws18_c02318{word-spacing:0.673440pt;}
.ws19_c02318{word-spacing:0.691008pt;}
.ws1f_c02318{word-spacing:0.696864pt;}
.ws13_c02318{word-spacing:2.266272pt;}
.ws1b_c02318{word-spacing:2.922144pt;}
.ws1a_c02318{word-spacing:2.933856pt;}
.wsb_c02318{word-spacing:4.181184pt;}
.ws16_c02318{word-spacing:4.532544pt;}
.ws10_c02318{word-spacing:7.103328pt;}
.wsa_c02318{word-spacing:8.362368pt;}
.ws9_c02318{word-spacing:8.391648pt;}
.ws12_c02318{word-spacing:9.311040pt;}
.ws8_c02318{word-spacing:9.322752pt;}
.ws15_c02318{word-spacing:11.266944pt;}
.ws14_c02318{word-spacing:12.824640pt;}
.ws17_c02318{word-spacing:13.498080pt;}
.ws1e_c02318{word-spacing:15.395424pt;}
.wsc_c02318{word-spacing:17.931072pt;}
.ws1c_c02318{word-spacing:20.853216pt;}
.wse_c02318{word-spacing:21.450528pt;}
.wsf_c02318{word-spacing:21.485664pt;}
.ws1d_c02318{word-spacing:33.314784pt;}
.ws7_c02318{word-spacing:43.279264pt;}
._3_c02318{margin-left:-1.148960pt;}
._4_c02318{width:1.206336pt;}
._1_c02318{width:43.276544pt;}
._0_c02318{width:103.084864pt;}
._2_c02318{width:1793.587200pt;}
.fs5_c02318{font-size:21.440000pt;}
.fs2_c02318{font-size:37.440000pt;}
.fs3_c02318{font-size:42.560000pt;}
.fs4_c02318{font-size:53.440000pt;}
.fs1_c02318{font-size:58.560000pt;}
.fs0_c02318{font-size:64.000000pt;}
.y0_c02318{bottom:0.000000pt;}
.y4_c02318{bottom:67.066347pt;}
.y3_c02318{bottom:100.985763pt;}
.y32_c02318{bottom:134.506667pt;}
.y31_c02318{bottom:145.226275pt;}
.y15_c02318{bottom:153.221611pt;}
.y30_c02318{bottom:164.586211pt;}
.y2f_c02318{bottom:184.026667pt;}
.y14_c02318{bottom:185.942011pt;}
.y2e_c02318{bottom:199.706667pt;}
.y2d_c02318{bottom:210.506011pt;}
.y13_c02318{bottom:218.662411pt;}
.y2c_c02318{bottom:229.865947pt;}
.y2b_c02318{bottom:249.225883pt;}
.y12_c02318{bottom:251.382811pt;}
.y2a_c02318{bottom:268.666339pt;}
.y11_c02318{bottom:284.103211pt;}
.y29_c02318{bottom:288.026275pt;}
.y28_c02318{bottom:307.466731pt;}
.y10_c02318{bottom:316.823611pt;}
.y27_c02318{bottom:326.826667pt;}
.y26_c02318{bottom:342.506667pt;}
.yf_c02318{bottom:349.544011pt;}
.y25_c02318{bottom:353.304507pt;}
.y24_c02318{bottom:372.664443pt;}
.ye_c02318{bottom:382.343467pt;}
.y23_c02318{bottom:392.104899pt;}
.y3d_c02318{bottom:394.106667pt;}
.y22_c02318{bottom:411.464835pt;}
.y3c_c02318{bottom:413.546667pt;}
.yd_c02318{bottom:415.063867pt;}
.y21_c02318{bottom:430.905291pt;}
.y3b_c02318{bottom:440.266667pt;}
.yc_c02318{bottom:447.784267pt;}
.y20_c02318{bottom:450.265227pt;}
.y3a_c02318{bottom:465.946667pt;}
.y1f_c02318{bottom:469.625163pt;}
.yb_c02318{bottom:480.504667pt;}
.y1e_c02318{bottom:489.065619pt;}
.y39_c02318{bottom:491.546667pt;}
.y1d_c02318{bottom:508.425555pt;}
.ya_c02318{bottom:513.225067pt;}
.y38_c02318{bottom:517.146667pt;}
.y1c_c02318{bottom:527.866011pt;}
.y37_c02318{bottom:542.826667pt;}
.y9_c02318{bottom:545.945467pt;}
.y1b_c02318{bottom:547.225947pt;}
.y1a_c02318{bottom:566.666403pt;}
.y36_c02318{bottom:568.426667pt;}
.y8_c02318{bottom:578.665867pt;}
.y19_c02318{bottom:586.026339pt;}
.y35_c02318{bottom:594.106667pt;}
.y18_c02318{bottom:605.386275pt;}
.y7_c02318{bottom:611.386267pt;}
.y34_c02318{bottom:619.706667pt;}
.y17_c02318{bottom:624.826731pt;}
.y6_c02318{bottom:644.106667pt;}
.y33_c02318{bottom:645.306667pt;}
.y16_c02318{bottom:648.106667pt;}
.y5_c02318{bottom:670.906667pt;}
.y2_c02318{bottom:714.106035pt;}
.y1_c02318{bottom:731.546667pt;}
.h9_c02318{height:21.042187pt;}
.h3_c02318{height:39.030469pt;}
.h5_c02318{height:39.220000pt;}
.h7_c02318{height:43.337500pt;}
.h4_c02318{height:48.294844pt;}
.ha_c02318{height:53.857500pt;}
.h8_c02318{height:57.473437pt;}
.h6_c02318{height:59.017500pt;}
.h2_c02318{height:64.500000pt;}
.h1_c02318{height:793.333333pt;}
.h0_c02318{height:793.626667pt;}
.w0_c02318{width:1122.666667pt;}
.x0_c02318{left:0.000000pt;}
.x1_c02318{left:94.467467pt;}
.x3_c02318{left:111.107333pt;}
.x4_c02318{left:148.947333pt;}
.x5_c02318{left:243.427333pt;}
.x2_c02318{left:550.068085pt;}
.x6_c02318{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0217053fb76b92874f88e749.woff2')format("woff");}.ff1_c02319{font-family:ff1_c02319;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02319{font-family:ff2_c02319;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02319;src:url('chunks/assets/font_6c39392531a682c2799fc8cd.woff2')format("woff");}.ff3_c02319{font-family:ff3_c02319;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02319;src:url('chunks/assets/font_09b1b875ab1cef7cd057e12d.woff2')format("woff");}.ff4_c02319{font-family:ff4_c02319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:18.000000px;}
.ls14_c02319{letter-spacing:-0.138276px;}
.ls17_c02319{letter-spacing:-0.126252px;}
.ls16_c02319{letter-spacing:-0.090180px;}
.ls15_c02319{letter-spacing:-0.084168px;}
.ls13_c02319{letter-spacing:-0.048096px;}
.ls18_c02319{letter-spacing:-0.039528px;}
.ls12_c02319{letter-spacing:-0.018036px;}
.lse_c02319{letter-spacing:-0.014400px;}
.ls11_c02319{letter-spacing:-0.006588px;}
.lsf_c02319{letter-spacing:0.000000px;}
.ls6_c02319{letter-spacing:0.006588px;}
.ls7_c02319{letter-spacing:0.013176px;}
.ls4_c02319{letter-spacing:0.026352px;}
.ls0_c02319{letter-spacing:0.032940px;}
.ls9_c02319{letter-spacing:0.039528px;}
.ls3_c02319{letter-spacing:0.046116px;}
.ls8_c02319{letter-spacing:0.052704px;}
.ls5_c02319{letter-spacing:0.059292px;}
.ls2_c02319{letter-spacing:0.079056px;}
.ls1_c02319{letter-spacing:0.092232px;}
.lsd_c02319{letter-spacing:0.098820px;}
.lsc_c02319{letter-spacing:0.105408px;}
.lsb_c02319{letter-spacing:0.131760px;}
.ls10_c02319{letter-spacing:0.177876px;}
.lsa_c02319{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02319{word-spacing:-16.601760px;}
.ws2_c02319{word-spacing:-16.575408px;}
.ws1e_c02319{word-spacing:-0.252504px;}
.ws0_c02319{word-spacing:-0.158112px;}
.ws6_c02319{word-spacing:0.000000px;}
.ws3_c02319{word-spacing:0.014400px;}
.ws13_c02319{word-spacing:0.032940px;}
.ws5_c02319{word-spacing:0.039528px;}
.ws4_c02319{word-spacing:0.059292px;}
.ws19_c02319{word-spacing:0.085644px;}
.ws23_c02319{word-spacing:0.108216px;}
.ws1f_c02319{word-spacing:0.138276px;}
.ws21_c02319{word-spacing:0.174348px;}
.ws22_c02319{word-spacing:0.180360px;}
.ws26_c02319{word-spacing:0.216432px;}
.ws20_c02319{word-spacing:0.228456px;}
.ws17_c02319{word-spacing:0.415044px;}
.ws25_c02319{word-spacing:0.447984px;}
.wsc_c02319{word-spacing:1.469124px;}
.wsb_c02319{word-spacing:1.502064px;}
.ws2a_c02319{word-spacing:3.610224px;}
.wse_c02319{word-spacing:3.629988px;}
.ws29_c02319{word-spacing:3.656340px;}
.wsf_c02319{word-spacing:3.676104px;}
.ws12_c02319{word-spacing:4.717008px;}
.ws1a_c02319{word-spacing:4.723596px;}
.ws11_c02319{word-spacing:4.730184px;}
.ws1b_c02319{word-spacing:4.776300px;}
.ws7_c02319{word-spacing:5.039820px;}
.ws8_c02319{word-spacing:5.052996px;}
.ws10_c02319{word-spacing:5.079348px;}
.ws27_c02319{word-spacing:6.153192px;}
.ws24_c02319{word-spacing:7.642080px;}
.ws1c_c02319{word-spacing:10.125756px;}
.ws1d_c02319{word-spacing:10.132344px;}
.ws2c_c02319{word-spacing:14.750532px;}
.ws2b_c02319{word-spacing:14.796648px;}
.ws15_c02319{word-spacing:15.158988px;}
.ws16_c02319{word-spacing:15.172164px;}
.wsd_c02319{word-spacing:19.520244px;}
.ws9_c02319{word-spacing:29.171664px;}
.wsa_c02319{word-spacing:29.204604px;}
.ws28_c02319{word-spacing:31.740984px;}
.ws14_c02319{word-spacing:40.351500px;}
.ws18_c02319{word-spacing:48.689172px;}
._1_c02319{margin-left:-1.390068px;}
._2_c02319{width:1.409832px;}
._3_c02319{width:54.278496px;}
._0_c02319{width:479.435112px;}
.fc0_c02319{color:rgb(0,0,0);}
.fs2_c02319{font-size:24.120000px;}
.fs4_c02319{font-size:36.000000px;}
.fs3_c02319{font-size:47.880000px;}
.fs5_c02319{font-size:60.120000px;}
.fs1_c02319{font-size:65.880000px;}
.fs0_c02319{font-size:72.000000px;}
.y0_c02319{bottom:0.000000px;}
.y4_c02319{bottom:75.449640px;}
.y3_c02319{bottom:113.608983px;}
.y28_c02319{bottom:143.941035px;}
.y27_c02319{bottom:162.930945px;}
.y26_c02319{bottom:181.920855px;}
.y2b_c02319{bottom:186.690000px;}
.y25_c02319{bottom:200.820180px;}
.y24_c02319{bottom:219.810090px;}
.y2a_c02319{bottom:222.780000px;}
.y23_c02319{bottom:238.710000px;}
.y29_c02319{bottom:240.060000px;}
.y21_c02319{bottom:261.389559px;}
.y20_c02319{bottom:283.169487px;}
.y1f_c02319{bottom:304.950000px;}
.y22_c02319{bottom:306.300000px;}
.y1e_c02319{bottom:335.820000px;}
.y18_c02319{bottom:354.900000px;}
.y1d_c02319{bottom:364.710000px;}
.y17_c02319{bottom:369.659190px;}
.y16_c02319{bottom:391.529703px;}
.y1c_c02319{bottom:393.510000px;}
.y15_c02319{bottom:413.309631px;}
.y1b_c02319{bottom:422.400000px;}
.y14_c02319{bottom:435.180144px;}
.y1a_c02319{bottom:451.200000px;}
.y13_c02319{bottom:456.960072px;}
.y12_c02319{bottom:478.650000px;}
.y19_c02319{bottom:480.000000px;}
.y11_c02319{bottom:497.190000px;}
.y10_c02319{bottom:509.248029px;}
.yf_c02319{bottom:531.118542px;}
.ye_c02319{bottom:552.898470px;}
.yd_c02319{bottom:574.768983px;}
.yc_c02319{bottom:596.548911px;}
.yb_c02319{bottom:618.419424px;}
.ya_c02319{bottom:640.199352px;}
.y9_c02319{bottom:661.979280px;}
.y8_c02319{bottom:683.849793px;}
.y7_c02319{bottom:705.629721px;}
.y6_c02319{bottom:727.500234px;}
.y5_c02319{bottom:749.189577px;}
.y2_c02319{bottom:803.369289px;}
.y1_c02319{bottom:822.990000px;}
.h7_c02319{height:23.672461px;}
.h9_c02319{height:35.332031px;}
.h3_c02319{height:43.909277px;}
.h4_c02319{height:54.331699px;}
.ha_c02319{height:60.589687px;}
.h6_c02319{height:64.657617px;}
.h5_c02319{height:66.394687px;}
.h8_c02319{height:66.754687px;}
.h2_c02319{height:72.562500px;}
.h1_c02319{height:892.500000px;}
.h0_c02319{height:892.830000px;}
.w0_c02319{width:1263.000000px;}
.x0_c02319{left:0.000000px;}
.x1_c02319{left:106.275900px;}
.x3_c02319{left:124.996704px;}
.x4_c02319{left:273.855858px;}
.x2_c02319{left:618.826596px;}
.x5_c02319{left:826.725750px;}
@media print{
.v0_c02319{vertical-align:0.000000pt;}
.v1_c02319{vertical-align:16.000000pt;}
.ls14_c02319{letter-spacing:-0.122912pt;}
.ls17_c02319{letter-spacing:-0.112224pt;}
.ls16_c02319{letter-spacing:-0.080160pt;}
.ls15_c02319{letter-spacing:-0.074816pt;}
.ls13_c02319{letter-spacing:-0.042752pt;}
.ls18_c02319{letter-spacing:-0.035136pt;}
.ls12_c02319{letter-spacing:-0.016032pt;}
.lse_c02319{letter-spacing:-0.012800pt;}
.ls11_c02319{letter-spacing:-0.005856pt;}
.lsf_c02319{letter-spacing:0.000000pt;}
.ls6_c02319{letter-spacing:0.005856pt;}
.ls7_c02319{letter-spacing:0.011712pt;}
.ls4_c02319{letter-spacing:0.023424pt;}
.ls0_c02319{letter-spacing:0.029280pt;}
.ls9_c02319{letter-spacing:0.035136pt;}
.ls3_c02319{letter-spacing:0.040992pt;}
.ls8_c02319{letter-spacing:0.046848pt;}
.ls5_c02319{letter-spacing:0.052704pt;}
.ls2_c02319{letter-spacing:0.070272pt;}
.ls1_c02319{letter-spacing:0.081984pt;}
.lsd_c02319{letter-spacing:0.087840pt;}
.lsc_c02319{letter-spacing:0.093696pt;}
.lsb_c02319{letter-spacing:0.117120pt;}
.ls10_c02319{letter-spacing:0.158112pt;}
.lsa_c02319{letter-spacing:0.161728pt;}
.ws1_c02319{word-spacing:-14.757120pt;}
.ws2_c02319{word-spacing:-14.733696pt;}
.ws1e_c02319{word-spacing:-0.224448pt;}
.ws0_c02319{word-spacing:-0.140544pt;}
.ws6_c02319{word-spacing:0.000000pt;}
.ws3_c02319{word-spacing:0.012800pt;}
.ws13_c02319{word-spacing:0.029280pt;}
.ws5_c02319{word-spacing:0.035136pt;}
.ws4_c02319{word-spacing:0.052704pt;}
.ws19_c02319{word-spacing:0.076128pt;}
.ws23_c02319{word-spacing:0.096192pt;}
.ws1f_c02319{word-spacing:0.122912pt;}
.ws21_c02319{word-spacing:0.154976pt;}
.ws22_c02319{word-spacing:0.160320pt;}
.ws26_c02319{word-spacing:0.192384pt;}
.ws20_c02319{word-spacing:0.203072pt;}
.ws17_c02319{word-spacing:0.368928pt;}
.ws25_c02319{word-spacing:0.398208pt;}
.wsc_c02319{word-spacing:1.305888pt;}
.wsb_c02319{word-spacing:1.335168pt;}
.ws2a_c02319{word-spacing:3.209088pt;}
.wse_c02319{word-spacing:3.226656pt;}
.ws29_c02319{word-spacing:3.250080pt;}
.wsf_c02319{word-spacing:3.267648pt;}
.ws12_c02319{word-spacing:4.192896pt;}
.ws1a_c02319{word-spacing:4.198752pt;}
.ws11_c02319{word-spacing:4.204608pt;}
.ws1b_c02319{word-spacing:4.245600pt;}
.ws7_c02319{word-spacing:4.479840pt;}
.ws8_c02319{word-spacing:4.491552pt;}
.ws10_c02319{word-spacing:4.514976pt;}
.ws27_c02319{word-spacing:5.469504pt;}
.ws24_c02319{word-spacing:6.792960pt;}
.ws1c_c02319{word-spacing:9.000672pt;}
.ws1d_c02319{word-spacing:9.006528pt;}
.ws2c_c02319{word-spacing:13.111584pt;}
.ws2b_c02319{word-spacing:13.152576pt;}
.ws15_c02319{word-spacing:13.474656pt;}
.ws16_c02319{word-spacing:13.486368pt;}
.wsd_c02319{word-spacing:17.351328pt;}
.ws9_c02319{word-spacing:25.930368pt;}
.wsa_c02319{word-spacing:25.959648pt;}
.ws28_c02319{word-spacing:28.214208pt;}
.ws14_c02319{word-spacing:35.868000pt;}
.ws18_c02319{word-spacing:43.279264pt;}
._1_c02319{margin-left:-1.235616pt;}
._2_c02319{width:1.253184pt;}
._3_c02319{width:48.247552pt;}
._0_c02319{width:426.164544pt;}
.fs2_c02319{font-size:21.440000pt;}
.fs4_c02319{font-size:32.000000pt;}
.fs3_c02319{font-size:42.560000pt;}
.fs5_c02319{font-size:53.440000pt;}
.fs1_c02319{font-size:58.560000pt;}
.fs0_c02319{font-size:64.000000pt;}
.y0_c02319{bottom:0.000000pt;}
.y4_c02319{bottom:67.066347pt;}
.y3_c02319{bottom:100.985763pt;}
.y28_c02319{bottom:127.947587pt;}
.y27_c02319{bottom:144.827507pt;}
.y26_c02319{bottom:161.707427pt;}
.y2b_c02319{bottom:165.946667pt;}
.y25_c02319{bottom:178.506827pt;}
.y24_c02319{bottom:195.386747pt;}
.y2a_c02319{bottom:198.026667pt;}
.y23_c02319{bottom:212.186667pt;}
.y29_c02319{bottom:213.386667pt;}
.y21_c02319{bottom:232.346275pt;}
.y20_c02319{bottom:251.706211pt;}
.y1f_c02319{bottom:271.066667pt;}
.y22_c02319{bottom:272.266667pt;}
.y1e_c02319{bottom:298.506667pt;}
.y18_c02319{bottom:315.466667pt;}
.y1d_c02319{bottom:324.186667pt;}
.y17_c02319{bottom:328.585947pt;}
.y16_c02319{bottom:348.026403pt;}
.y1c_c02319{bottom:349.786667pt;}
.y15_c02319{bottom:367.386339pt;}
.y1b_c02319{bottom:375.466667pt;}
.y14_c02319{bottom:386.826795pt;}
.y1a_c02319{bottom:401.066667pt;}
.y13_c02319{bottom:406.186731pt;}
.y12_c02319{bottom:425.466667pt;}
.y19_c02319{bottom:426.666667pt;}
.y11_c02319{bottom:441.946667pt;}
.y10_c02319{bottom:452.664915pt;}
.yf_c02319{bottom:472.105371pt;}
.ye_c02319{bottom:491.465307pt;}
.yd_c02319{bottom:510.905763pt;}
.yc_c02319{bottom:530.265699pt;}
.yb_c02319{bottom:549.706155pt;}
.ya_c02319{bottom:569.066091pt;}
.y9_c02319{bottom:588.426027pt;}
.y8_c02319{bottom:607.866483pt;}
.y7_c02319{bottom:627.226419pt;}
.y6_c02319{bottom:646.666875pt;}
.y5_c02319{bottom:665.946291pt;}
.y2_c02319{bottom:714.106035pt;}
.y1_c02319{bottom:731.546667pt;}
.h7_c02319{height:21.042187pt;}
.h9_c02319{height:31.406250pt;}
.h3_c02319{height:39.030469pt;}
.h4_c02319{height:48.294844pt;}
.ha_c02319{height:53.857500pt;}
.h6_c02319{height:57.473437pt;}
.h5_c02319{height:59.017500pt;}
.h8_c02319{height:59.337500pt;}
.h2_c02319{height:64.500000pt;}
.h1_c02319{height:793.333333pt;}
.h0_c02319{height:793.626667pt;}
.w0_c02319{width:1122.666667pt;}
.x0_c02319{left:0.000000pt;}
.x1_c02319{left:94.467467pt;}
.x3_c02319{left:111.108181pt;}
.x4_c02319{left:243.427429pt;}
.x2_c02319{left:550.068085pt;}
.x5_c02319{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12e4e95c39bfe3f85e7214f9.woff2')format("woff");}.ff1_c02320{font-family:ff1_c02320;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02320{font-family:ff2_c02320;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02320;src:url('chunks/assets/font_d1592fea768b2a72bd77dade.woff2')format("woff");}.ff3_c02320{font-family:ff3_c02320;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02320;src:url('chunks/assets/font_90b8c4da4149b09df25f91e5.woff2')format("woff");}.ff4_c02320{font-family:ff4_c02320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02320{vertical-align:-28.440000px;}
.v3_c02320{vertical-align:-16.920000px;}
.v1_c02320{vertical-align:-5.760000px;}
.v0_c02320{vertical-align:0.000000px;}
.v4_c02320{vertical-align:18.000000px;}
.ls10_c02320{letter-spacing:-0.176904px;}
.ls12_c02320{letter-spacing:-0.126252px;}
.lse_c02320{letter-spacing:-0.014400px;}
.lsf_c02320{letter-spacing:0.000000px;}
.ls2_c02320{letter-spacing:0.014400px;}
.ls3_c02320{letter-spacing:0.018036px;}
.lsa_c02320{letter-spacing:0.019764px;}
.ls0_c02320{letter-spacing:0.032940px;}
.ls9_c02320{letter-spacing:0.039528px;}
.lsc_c02320{letter-spacing:0.046116px;}
.lsd_c02320{letter-spacing:0.052704px;}
.ls6_c02320{letter-spacing:0.059292px;}
.ls8_c02320{letter-spacing:0.065880px;}
.ls7_c02320{letter-spacing:0.079056px;}
.ls1_c02320{letter-spacing:0.092232px;}
.lsb_c02320{letter-spacing:0.105408px;}
.ls5_c02320{letter-spacing:0.131760px;}
.ls11_c02320{letter-spacing:0.177876px;}
.ls4_c02320{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02320{word-spacing:-16.575408px;}
.ws6_c02320{word-spacing:-0.288576px;}
.ws0_c02320{word-spacing:-0.158112px;}
.ws5_c02320{word-spacing:0.000000px;}
.ws9_c02320{word-spacing:0.013176px;}
.ws2_c02320{word-spacing:0.014400px;}
.wsa_c02320{word-spacing:0.026352px;}
.ws8_c02320{word-spacing:0.032940px;}
.ws4_c02320{word-spacing:0.039528px;}
.wsb_c02320{word-spacing:0.052704px;}
.ws3_c02320{word-spacing:0.059292px;}
.wsf_c02320{word-spacing:0.072468px;}
.wsc_c02320{word-spacing:0.092232px;}
.ws10_c02320{word-spacing:0.216432px;}
.ws14_c02320{word-spacing:11.891340px;}
.ws11_c02320{word-spacing:20.561148px;}
.ws12_c02320{word-spacing:20.903724px;}
.wsd_c02320{word-spacing:33.532920px;}
.wse_c02320{word-spacing:33.539508px;}
.ws15_c02320{word-spacing:40.015512px;}
.ws7_c02320{word-spacing:48.689172px;}
.ws13_c02320{word-spacing:118.478592px;}
._3_c02320{margin-left:-1.292580px;}
._5_c02320{width:1.060668px;}
._1_c02320{width:48.686112px;}
._4_c02320{width:54.278496px;}
._0_c02320{width:115.970472px;}
._2_c02320{width:2017.785600px;}
.fc0_c02320{color:rgb(0,0,0);}
.fs2_c02320{font-size:42.120000px;}
.fs3_c02320{font-size:47.880000px;}
.fs4_c02320{font-size:60.120000px;}
.fs1_c02320{font-size:65.880000px;}
.fs0_c02320{font-size:72.000000px;}
.y0_c02320{bottom:0.000000px;}
.y4_c02320{bottom:75.449640px;}
.y3_c02320{bottom:113.608983px;}
.y22_c02320{bottom:157.621305px;}
.y21_c02320{bottom:176.611215px;}
.y20_c02320{bottom:195.601125px;}
.y1f_c02320{bottom:214.591035px;}
.y1e_c02320{bottom:233.490360px;}
.y1d_c02320{bottom:252.480270px;}
.y1c_c02320{bottom:271.470180px;}
.y1b_c02320{bottom:290.460090px;}
.y1a_c02320{bottom:309.360000px;}
.y23_c02320{bottom:309.450000px;}
.y18_c02320{bottom:331.947201px;}
.y17_c02320{bottom:353.817714px;}
.y16_c02320{bottom:375.597642px;}
.y15_c02320{bottom:397.468155px;}
.y14_c02320{bottom:419.248083px;}
.y13_c02320{bottom:441.118596px;}
.y12_c02320{bottom:462.898524px;}
.y11_c02320{bottom:484.769037px;}
.y10_c02320{bottom:506.548965px;}
.yf_c02320{bottom:528.328893px;}
.ye_c02320{bottom:550.199406px;}
.yd_c02320{bottom:571.979334px;}
.yc_c02320{bottom:593.849847px;}
.yb_c02320{bottom:615.629775px;}
.ya_c02320{bottom:637.500288px;}
.y9_c02320{bottom:659.280216px;}
.y8_c02320{bottom:681.060144px;}
.y7_c02320{bottom:702.930657px;}
.y6_c02320{bottom:724.620000px;}
.y19_c02320{bottom:725.970000px;}
.y5_c02320{bottom:754.770000px;}
.y2_c02320{bottom:803.369289px;}
.y1_c02320{bottom:822.990000px;}
.h3_c02320{height:43.909277px;}
.h5_c02320{height:44.122500px;}
.h4_c02320{height:54.331699px;}
.h8_c02320{height:60.589687px;}
.h7_c02320{height:64.657617px;}
.h6_c02320{height:66.394687px;}
.h9_c02320{height:66.754688px;}
.h2_c02320{height:72.562500px;}
.h1_c02320{height:892.500000px;}
.h0_c02320{height:892.830000px;}
.w0_c02320{width:1263.000000px;}
.x0_c02320{left:0.000000px;}
.x1_c02320{left:106.275900px;}
.x3_c02320{left:124.995750px;}
.x4_c02320{left:273.855750px;}
.x2_c02320{left:618.826596px;}
.x5_c02320{left:826.725750px;}
@media print{
.v2_c02320{vertical-align:-25.280000pt;}
.v3_c02320{vertical-align:-15.040000pt;}
.v1_c02320{vertical-align:-5.120000pt;}
.v0_c02320{vertical-align:0.000000pt;}
.v4_c02320{vertical-align:16.000000pt;}
.ls10_c02320{letter-spacing:-0.157248pt;}
.ls12_c02320{letter-spacing:-0.112224pt;}
.lse_c02320{letter-spacing:-0.012800pt;}
.lsf_c02320{letter-spacing:0.000000pt;}
.ls2_c02320{letter-spacing:0.012800pt;}
.ls3_c02320{letter-spacing:0.016032pt;}
.lsa_c02320{letter-spacing:0.017568pt;}
.ls0_c02320{letter-spacing:0.029280pt;}
.ls9_c02320{letter-spacing:0.035136pt;}
.lsc_c02320{letter-spacing:0.040992pt;}
.lsd_c02320{letter-spacing:0.046848pt;}
.ls6_c02320{letter-spacing:0.052704pt;}
.ls8_c02320{letter-spacing:0.058560pt;}
.ls7_c02320{letter-spacing:0.070272pt;}
.ls1_c02320{letter-spacing:0.081984pt;}
.lsb_c02320{letter-spacing:0.093696pt;}
.ls5_c02320{letter-spacing:0.117120pt;}
.ls11_c02320{letter-spacing:0.158112pt;}
.ls4_c02320{letter-spacing:0.161728pt;}
.ws1_c02320{word-spacing:-14.733696pt;}
.ws6_c02320{word-spacing:-0.256512pt;}
.ws0_c02320{word-spacing:-0.140544pt;}
.ws5_c02320{word-spacing:0.000000pt;}
.ws9_c02320{word-spacing:0.011712pt;}
.ws2_c02320{word-spacing:0.012800pt;}
.wsa_c02320{word-spacing:0.023424pt;}
.ws8_c02320{word-spacing:0.029280pt;}
.ws4_c02320{word-spacing:0.035136pt;}
.wsb_c02320{word-spacing:0.046848pt;}
.ws3_c02320{word-spacing:0.052704pt;}
.wsf_c02320{word-spacing:0.064416pt;}
.wsc_c02320{word-spacing:0.081984pt;}
.ws10_c02320{word-spacing:0.192384pt;}
.ws14_c02320{word-spacing:10.570080pt;}
.ws11_c02320{word-spacing:18.276576pt;}
.ws12_c02320{word-spacing:18.581088pt;}
.wsd_c02320{word-spacing:29.807040pt;}
.wse_c02320{word-spacing:29.812896pt;}
.ws15_c02320{word-spacing:35.569344pt;}
.ws7_c02320{word-spacing:43.279264pt;}
.ws13_c02320{word-spacing:105.314304pt;}
._3_c02320{margin-left:-1.148960pt;}
._5_c02320{width:0.942816pt;}
._1_c02320{width:43.276544pt;}
._4_c02320{width:48.247552pt;}
._0_c02320{width:103.084864pt;}
._2_c02320{width:1793.587200pt;}
.fs2_c02320{font-size:37.440000pt;}
.fs3_c02320{font-size:42.560000pt;}
.fs4_c02320{font-size:53.440000pt;}
.fs1_c02320{font-size:58.560000pt;}
.fs0_c02320{font-size:64.000000pt;}
.y0_c02320{bottom:0.000000pt;}
.y4_c02320{bottom:67.066347pt;}
.y3_c02320{bottom:100.985763pt;}
.y22_c02320{bottom:140.107827pt;}
.y21_c02320{bottom:156.987747pt;}
.y20_c02320{bottom:173.867667pt;}
.y1f_c02320{bottom:190.747587pt;}
.y1e_c02320{bottom:207.546987pt;}
.y1d_c02320{bottom:224.426907pt;}
.y1c_c02320{bottom:241.306827pt;}
.y1b_c02320{bottom:258.186747pt;}
.y1a_c02320{bottom:274.986667pt;}
.y23_c02320{bottom:275.066667pt;}
.y18_c02320{bottom:295.064179pt;}
.y17_c02320{bottom:314.504635pt;}
.y16_c02320{bottom:333.864571pt;}
.y15_c02320{bottom:353.305027pt;}
.y14_c02320{bottom:372.664963pt;}
.y13_c02320{bottom:392.105419pt;}
.y12_c02320{bottom:411.465355pt;}
.y11_c02320{bottom:430.905811pt;}
.y10_c02320{bottom:450.265747pt;}
.yf_c02320{bottom:469.625683pt;}
.ye_c02320{bottom:489.066139pt;}
.yd_c02320{bottom:508.426075pt;}
.yc_c02320{bottom:527.866531pt;}
.yb_c02320{bottom:547.226467pt;}
.ya_c02320{bottom:566.666923pt;}
.y9_c02320{bottom:586.026859pt;}
.y8_c02320{bottom:605.386795pt;}
.y7_c02320{bottom:624.827251pt;}
.y6_c02320{bottom:644.106667pt;}
.y19_c02320{bottom:645.306667pt;}
.y5_c02320{bottom:670.906667pt;}
.y2_c02320{bottom:714.106035pt;}
.y1_c02320{bottom:731.546667pt;}
.h3_c02320{height:39.030469pt;}
.h5_c02320{height:39.220000pt;}
.h4_c02320{height:48.294844pt;}
.h8_c02320{height:53.857500pt;}
.h7_c02320{height:57.473437pt;}
.h6_c02320{height:59.017500pt;}
.h9_c02320{height:59.337500pt;}
.h2_c02320{height:64.500000pt;}
.h1_c02320{height:793.333333pt;}
.h0_c02320{height:793.626667pt;}
.w0_c02320{width:1122.666667pt;}
.x0_c02320{left:0.000000pt;}
.x1_c02320{left:94.467467pt;}
.x3_c02320{left:111.107333pt;}
.x4_c02320{left:243.427333pt;}
.x2_c02320{left:550.068085pt;}
.x5_c02320{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02e35085a86d20330fdcabc6.woff2')format("woff");}.ff1_c02321{font-family:ff1_c02321;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02321{font-family:ff2_c02321;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02321;src:url('chunks/assets/font_2ec3d7c33e440d0518200aa0.woff2')format("woff");}.ff3_c02321{font-family:ff3_c02321;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02321;src:url('chunks/assets/font_8090ad6c9c984940bee7a093.woff2')format("woff");}.ff4_c02321{font-family:ff4_c02321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02321{vertical-align:-28.440000px;}
.v3_c02321{vertical-align:-16.920000px;}
.v1_c02321{vertical-align:-5.760000px;}
.v0_c02321{vertical-align:0.000000px;}
.v4_c02321{vertical-align:18.000000px;}
.ls12_c02321{letter-spacing:-0.176904px;}
.ls1a_c02321{letter-spacing:-0.144288px;}
.ls19_c02321{letter-spacing:-0.126252px;}
.ls1b_c02321{letter-spacing:-0.102204px;}
.ls18_c02321{letter-spacing:-0.090180px;}
.ls17_c02321{letter-spacing:-0.078156px;}
.ls16_c02321{letter-spacing:-0.048096px;}
.ls15_c02321{letter-spacing:-0.018036px;}
.ls10_c02321{letter-spacing:-0.014400px;}
.ls1c_c02321{letter-spacing:-0.012024px;}
.ls14_c02321{letter-spacing:-0.006588px;}
.ls11_c02321{letter-spacing:0.000000px;}
.ls7_c02321{letter-spacing:0.013176px;}
.ls2_c02321{letter-spacing:0.014400px;}
.ls3_c02321{letter-spacing:0.018036px;}
.ls6_c02321{letter-spacing:0.019764px;}
.lsc_c02321{letter-spacing:0.026352px;}
.ls0_c02321{letter-spacing:0.032940px;}
.lsb_c02321{letter-spacing:0.039528px;}
.lsa_c02321{letter-spacing:0.046116px;}
.ls8_c02321{letter-spacing:0.052704px;}
.lsf_c02321{letter-spacing:0.059292px;}
.ls9_c02321{letter-spacing:0.065880px;}
.lsd_c02321{letter-spacing:0.072468px;}
.lse_c02321{letter-spacing:0.079056px;}
.ls1_c02321{letter-spacing:0.092232px;}
.ls5_c02321{letter-spacing:0.131760px;}
.ls13_c02321{letter-spacing:0.177876px;}
.ls4_c02321{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02321{word-spacing:-16.601760px;}
.ws6_c02321{word-spacing:-0.288576px;}
.ws2a_c02321{word-spacing:-0.258516px;}
.ws11_c02321{word-spacing:-0.252504px;}
.ws0_c02321{word-spacing:-0.158112px;}
.ws5_c02321{word-spacing:0.000000px;}
.ws2_c02321{word-spacing:0.014400px;}
.ws4_c02321{word-spacing:0.039528px;}
.ws19_c02321{word-spacing:0.046116px;}
.ws3_c02321{word-spacing:0.059292px;}
.ws21_c02321{word-spacing:0.065880px;}
.ws10_c02321{word-spacing:0.072468px;}
.ws1e_c02321{word-spacing:0.079056px;}
.ws12_c02321{word-spacing:0.138276px;}
.ws13_c02321{word-spacing:0.168336px;}
.ws14_c02321{word-spacing:0.174348px;}
.ws15_c02321{word-spacing:0.180360px;}
.ws23_c02321{word-spacing:0.192384px;}
.ws16_c02321{word-spacing:0.216432px;}
.ws22_c02321{word-spacing:0.234468px;}
.ws17_c02321{word-spacing:1.462536px;}
.ws18_c02321{word-spacing:1.488888px;}
.ws25_c02321{word-spacing:2.174040px;}
.ws24_c02321{word-spacing:2.213568px;}
.wse_c02321{word-spacing:2.542968px;}
.wsb_c02321{word-spacing:2.556144px;}
.wsd_c02321{word-spacing:2.575908px;}
.wsc_c02321{word-spacing:2.615436px;}
.ws1d_c02321{word-spacing:2.918484px;}
.ws8_c02321{word-spacing:6.548472px;}
.ws9_c02321{word-spacing:6.555060px;}
.wsa_c02321{word-spacing:8.346996px;}
.ws20_c02321{word-spacing:17.655840px;}
.ws1f_c02321{word-spacing:17.708544px;}
.ws1a_c02321{word-spacing:20.554560px;}
.ws1c_c02321{word-spacing:22.702248px;}
.ws1b_c02321{word-spacing:22.741776px;}
.ws27_c02321{word-spacing:23.413752px;}
.ws28_c02321{word-spacing:23.433516px;}
.ws26_c02321{word-spacing:26.641872px;}
.ws29_c02321{word-spacing:31.016304px;}
.wsf_c02321{word-spacing:34.606764px;}
.ws7_c02321{word-spacing:48.689172px;}
._3_c02321{margin-left:-1.292580px;}
._5_c02321{width:1.226448px;}
._1_c02321{width:48.686112px;}
._4_c02321{width:54.278496px;}
._0_c02321{width:115.970472px;}
._2_c02321{width:2017.785600px;}
.fc0_c02321{color:rgb(0,0,0);}
.fs5_c02321{font-size:24.120000px;}
.fs2_c02321{font-size:42.120000px;}
.fs3_c02321{font-size:47.880000px;}
.fs4_c02321{font-size:60.120000px;}
.fs1_c02321{font-size:65.880000px;}
.fs0_c02321{font-size:72.000000px;}
.y0_c02321{bottom:0.000000px;}
.y4_c02321{bottom:75.449640px;}
.y3_c02321{bottom:113.608983px;}
.y30_c02321{bottom:137.010150px;}
.y2f_c02321{bottom:149.159559px;}
.y36_c02321{bottom:151.770000px;}
.y2e_c02321{bottom:170.939487px;}
.y35_c02321{bottom:177.600000px;}
.y2d_c02321{bottom:192.810000px;}
.y34_c02321{bottom:203.880000px;}
.y2c_c02321{bottom:212.970000px;}
.y33_c02321{bottom:223.680000px;}
.y2b_c02321{bottom:230.429559px;}
.y32_c02321{bottom:249.510000px;}
.y2a_c02321{bottom:252.300072px;}
.y29_c02321{bottom:273.990000px;}
.y31_c02321{bottom:275.340000px;}
.y28_c02321{bottom:305.670000px;}
.y20_c02321{bottom:307.290000px;}
.y1f_c02321{bottom:319.350072px;}
.y27_c02321{bottom:336.540000px;}
.y1e_c02321{bottom:341.130000px;}
.y26_c02321{bottom:358.320000px;}
.y1d_c02321{bottom:361.380000px;}
.y1c_c02321{bottom:378.839046px;}
.y25_c02321{bottom:380.100000px;}
.y1b_c02321{bottom:400.709559px;}
.y24_c02321{bottom:401.250000px;}
.y1a_c02321{bottom:422.489487px;}
.y23_c02321{bottom:436.080000px;}
.y19_c02321{bottom:444.360000px;}
.y18_c02321{bottom:462.000000px;}
.y22_c02321{bottom:470.910000px;}
.y17_c02321{bottom:474.059487px;}
.y16_c02321{bottom:495.840000px;}
.y21_c02321{bottom:497.190000px;}
.y15_c02321{bottom:526.710000px;}
.y14_c02321{bottom:555.600000px;}
.y13_c02321{bottom:584.400000px;}
.yd_c02321{bottom:585.930144px;}
.yc_c02321{bottom:607.710072px;}
.y12_c02321{bottom:613.290000px;}
.yb_c02321{bottom:629.490000px;}
.y11_c02321{bottom:642.090000px;}
.ya_c02321{bottom:647.220000px;}
.y9_c02321{bottom:659.279631px;}
.y10_c02321{bottom:668.370000px;}
.y8_c02321{bottom:681.059559px;}
.yf_c02321{bottom:697.170000px;}
.y7_c02321{bottom:702.930072px;}
.y6_c02321{bottom:724.620000px;}
.ye_c02321{bottom:725.970000px;}
.y5_c02321{bottom:754.770000px;}
.y2_c02321{bottom:803.369289px;}
.y1_c02321{bottom:822.990000px;}
.h8_c02321{height:23.672461px;}
.h3_c02321{height:43.909277px;}
.h5_c02321{height:44.122500px;}
.ha_c02321{height:46.991602px;}
.h4_c02321{height:54.331699px;}
.h9_c02321{height:60.589687px;}
.h7_c02321{height:64.657617px;}
.h6_c02321{height:66.754688px;}
.h2_c02321{height:72.562500px;}
.h1_c02321{height:892.500000px;}
.h0_c02321{height:892.830000px;}
.w0_c02321{width:1263.000000px;}
.x0_c02321{left:0.000000px;}
.x1_c02321{left:106.275900px;}
.x3_c02321{left:124.995750px;}
.x4_c02321{left:273.855750px;}
.x2_c02321{left:618.826596px;}
.x5_c02321{left:826.725750px;}
@media print{
.v2_c02321{vertical-align:-25.280000pt;}
.v3_c02321{vertical-align:-15.040000pt;}
.v1_c02321{vertical-align:-5.120000pt;}
.v0_c02321{vertical-align:0.000000pt;}
.v4_c02321{vertical-align:16.000000pt;}
.ls12_c02321{letter-spacing:-0.157248pt;}
.ls1a_c02321{letter-spacing:-0.128256pt;}
.ls19_c02321{letter-spacing:-0.112224pt;}
.ls1b_c02321{letter-spacing:-0.090848pt;}
.ls18_c02321{letter-spacing:-0.080160pt;}
.ls17_c02321{letter-spacing:-0.069472pt;}
.ls16_c02321{letter-spacing:-0.042752pt;}
.ls15_c02321{letter-spacing:-0.016032pt;}
.ls10_c02321{letter-spacing:-0.012800pt;}
.ls1c_c02321{letter-spacing:-0.010688pt;}
.ls14_c02321{letter-spacing:-0.005856pt;}
.ls11_c02321{letter-spacing:0.000000pt;}
.ls7_c02321{letter-spacing:0.011712pt;}
.ls2_c02321{letter-spacing:0.012800pt;}
.ls3_c02321{letter-spacing:0.016032pt;}
.ls6_c02321{letter-spacing:0.017568pt;}
.lsc_c02321{letter-spacing:0.023424pt;}
.ls0_c02321{letter-spacing:0.029280pt;}
.lsb_c02321{letter-spacing:0.035136pt;}
.lsa_c02321{letter-spacing:0.040992pt;}
.ls8_c02321{letter-spacing:0.046848pt;}
.lsf_c02321{letter-spacing:0.052704pt;}
.ls9_c02321{letter-spacing:0.058560pt;}
.lsd_c02321{letter-spacing:0.064416pt;}
.lse_c02321{letter-spacing:0.070272pt;}
.ls1_c02321{letter-spacing:0.081984pt;}
.ls5_c02321{letter-spacing:0.117120pt;}
.ls13_c02321{letter-spacing:0.158112pt;}
.ls4_c02321{letter-spacing:0.161728pt;}
.ws1_c02321{word-spacing:-14.757120pt;}
.ws6_c02321{word-spacing:-0.256512pt;}
.ws2a_c02321{word-spacing:-0.229792pt;}
.ws11_c02321{word-spacing:-0.224448pt;}
.ws0_c02321{word-spacing:-0.140544pt;}
.ws5_c02321{word-spacing:0.000000pt;}
.ws2_c02321{word-spacing:0.012800pt;}
.ws4_c02321{word-spacing:0.035136pt;}
.ws19_c02321{word-spacing:0.040992pt;}
.ws3_c02321{word-spacing:0.052704pt;}
.ws21_c02321{word-spacing:0.058560pt;}
.ws10_c02321{word-spacing:0.064416pt;}
.ws1e_c02321{word-spacing:0.070272pt;}
.ws12_c02321{word-spacing:0.122912pt;}
.ws13_c02321{word-spacing:0.149632pt;}
.ws14_c02321{word-spacing:0.154976pt;}
.ws15_c02321{word-spacing:0.160320pt;}
.ws23_c02321{word-spacing:0.171008pt;}
.ws16_c02321{word-spacing:0.192384pt;}
.ws22_c02321{word-spacing:0.208416pt;}
.ws17_c02321{word-spacing:1.300032pt;}
.ws18_c02321{word-spacing:1.323456pt;}
.ws25_c02321{word-spacing:1.932480pt;}
.ws24_c02321{word-spacing:1.967616pt;}
.wse_c02321{word-spacing:2.260416pt;}
.wsb_c02321{word-spacing:2.272128pt;}
.wsd_c02321{word-spacing:2.289696pt;}
.wsc_c02321{word-spacing:2.324832pt;}
.ws1d_c02321{word-spacing:2.594208pt;}
.ws8_c02321{word-spacing:5.820864pt;}
.ws9_c02321{word-spacing:5.826720pt;}
.wsa_c02321{word-spacing:7.419552pt;}
.ws20_c02321{word-spacing:15.694080pt;}
.ws1f_c02321{word-spacing:15.740928pt;}
.ws1a_c02321{word-spacing:18.270720pt;}
.ws1c_c02321{word-spacing:20.179776pt;}
.ws1b_c02321{word-spacing:20.214912pt;}
.ws27_c02321{word-spacing:20.812224pt;}
.ws28_c02321{word-spacing:20.829792pt;}
.ws26_c02321{word-spacing:23.681664pt;}
.ws29_c02321{word-spacing:27.570048pt;}
.wsf_c02321{word-spacing:30.761568pt;}
.ws7_c02321{word-spacing:43.279264pt;}
._3_c02321{margin-left:-1.148960pt;}
._5_c02321{width:1.090176pt;}
._1_c02321{width:43.276544pt;}
._4_c02321{width:48.247552pt;}
._0_c02321{width:103.084864pt;}
._2_c02321{width:1793.587200pt;}
.fs5_c02321{font-size:21.440000pt;}
.fs2_c02321{font-size:37.440000pt;}
.fs3_c02321{font-size:42.560000pt;}
.fs4_c02321{font-size:53.440000pt;}
.fs1_c02321{font-size:58.560000pt;}
.fs0_c02321{font-size:64.000000pt;}
.y0_c02321{bottom:0.000000pt;}
.y4_c02321{bottom:67.066347pt;}
.y3_c02321{bottom:100.985763pt;}
.y30_c02321{bottom:121.786800pt;}
.y2f_c02321{bottom:132.586275pt;}
.y36_c02321{bottom:134.906667pt;}
.y2e_c02321{bottom:151.946211pt;}
.y35_c02321{bottom:157.866667pt;}
.y2d_c02321{bottom:171.386667pt;}
.y34_c02321{bottom:181.226667pt;}
.y2c_c02321{bottom:189.306667pt;}
.y33_c02321{bottom:198.826667pt;}
.y2b_c02321{bottom:204.826275pt;}
.y32_c02321{bottom:221.786667pt;}
.y2a_c02321{bottom:224.266731pt;}
.y29_c02321{bottom:243.546667pt;}
.y31_c02321{bottom:244.746667pt;}
.y28_c02321{bottom:271.706667pt;}
.y20_c02321{bottom:273.146667pt;}
.y1f_c02321{bottom:283.866731pt;}
.y27_c02321{bottom:299.146667pt;}
.y1e_c02321{bottom:303.226667pt;}
.y26_c02321{bottom:318.506667pt;}
.y1d_c02321{bottom:321.226667pt;}
.y1c_c02321{bottom:336.745819pt;}
.y25_c02321{bottom:337.866667pt;}
.y1b_c02321{bottom:356.186275pt;}
.y24_c02321{bottom:356.666667pt;}
.y1a_c02321{bottom:375.546211pt;}
.y23_c02321{bottom:387.626667pt;}
.y19_c02321{bottom:394.986667pt;}
.y18_c02321{bottom:410.666667pt;}
.y22_c02321{bottom:418.586667pt;}
.y17_c02321{bottom:421.386211pt;}
.y16_c02321{bottom:440.746667pt;}
.y21_c02321{bottom:441.946667pt;}
.y15_c02321{bottom:468.186667pt;}
.y14_c02321{bottom:493.866667pt;}
.y13_c02321{bottom:519.466667pt;}
.yd_c02321{bottom:520.826795pt;}
.yc_c02321{bottom:540.186731pt;}
.y12_c02321{bottom:545.146667pt;}
.yb_c02321{bottom:559.546667pt;}
.y11_c02321{bottom:570.746667pt;}
.ya_c02321{bottom:575.306667pt;}
.y9_c02321{bottom:586.026339pt;}
.y10_c02321{bottom:594.106667pt;}
.y8_c02321{bottom:605.386275pt;}
.yf_c02321{bottom:619.706667pt;}
.y7_c02321{bottom:624.826731pt;}
.y6_c02321{bottom:644.106667pt;}
.ye_c02321{bottom:645.306667pt;}
.y5_c02321{bottom:670.906667pt;}
.y2_c02321{bottom:714.106035pt;}
.y1_c02321{bottom:731.546667pt;}
.h8_c02321{height:21.042187pt;}
.h3_c02321{height:39.030469pt;}
.h5_c02321{height:39.220000pt;}
.ha_c02321{height:41.770312pt;}
.h4_c02321{height:48.294844pt;}
.h9_c02321{height:53.857500pt;}
.h7_c02321{height:57.473437pt;}
.h6_c02321{height:59.337500pt;}
.h2_c02321{height:64.500000pt;}
.h1_c02321{height:793.333333pt;}
.h0_c02321{height:793.626667pt;}
.w0_c02321{width:1122.666667pt;}
.x0_c02321{left:0.000000pt;}
.x1_c02321{left:94.467467pt;}
.x3_c02321{left:111.107333pt;}
.x4_c02321{left:243.427333pt;}
.x2_c02321{left:550.068085pt;}
.x5_c02321{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edcc0c647f44c278552834c6.woff2')format("woff");}.ff1_c02322{font-family:ff1_c02322;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02322{font-family:ff2_c02322;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02322;src:url('chunks/assets/font_007e17dfe50008589d6f88db.woff2')format("woff");}.ff3_c02322{font-family:ff3_c02322;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02322;src:url('chunks/assets/font_c8a9772d77a0d86b91058557.woff2')format("woff");}.ff4_c02322{font-family:ff4_c02322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c02322{vertical-align:18.000000px;}
.ls16_c02322{letter-spacing:-0.144288px;}
.ls18_c02322{letter-spacing:-0.126252px;}
.ls12_c02322{letter-spacing:-0.102204px;}
.ls13_c02322{letter-spacing:-0.090180px;}
.ls11_c02322{letter-spacing:-0.078156px;}
.ls15_c02322{letter-spacing:-0.032940px;}
.lsf_c02322{letter-spacing:-0.014400px;}
.ls17_c02322{letter-spacing:-0.006012px;}
.ls10_c02322{letter-spacing:0.000000px;}
.ls7_c02322{letter-spacing:0.013176px;}
.ls5_c02322{letter-spacing:0.019764px;}
.lsc_c02322{letter-spacing:0.026352px;}
.ls0_c02322{letter-spacing:0.032940px;}
.ls6_c02322{letter-spacing:0.039528px;}
.lsd_c02322{letter-spacing:0.046116px;}
.ls4_c02322{letter-spacing:0.052704px;}
.ls2_c02322{letter-spacing:0.059292px;}
.ls8_c02322{letter-spacing:0.065880px;}
.ls3_c02322{letter-spacing:0.072468px;}
.lse_c02322{letter-spacing:0.079056px;}
.lsb_c02322{letter-spacing:0.085644px;}
.ls1_c02322{letter-spacing:0.092232px;}
.lsa_c02322{letter-spacing:0.131760px;}
.ls14_c02322{letter-spacing:0.177876px;}
.ls9_c02322{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02322{word-spacing:-16.601760px;}
.ws27_c02322{word-spacing:-0.264528px;}
.ws0_c02322{word-spacing:-0.158112px;}
.ws5_c02322{word-spacing:0.000000px;}
.ws2_c02322{word-spacing:0.014400px;}
.ws9_c02322{word-spacing:0.032940px;}
.ws4_c02322{word-spacing:0.039528px;}
.ws1f_c02322{word-spacing:0.046116px;}
.ws3_c02322{word-spacing:0.059292px;}
.ws1a_c02322{word-spacing:0.065880px;}
.ws11_c02322{word-spacing:0.079056px;}
.ws1c_c02322{word-spacing:0.092232px;}
.ws23_c02322{word-spacing:0.125172px;}
.ws12_c02322{word-spacing:0.168336px;}
.ws13_c02322{word-spacing:0.174348px;}
.ws15_c02322{word-spacing:0.180360px;}
.ws14_c02322{word-spacing:0.192384px;}
.ws28_c02322{word-spacing:0.216432px;}
.ws26_c02322{word-spacing:0.234468px;}
.ws19_c02322{word-spacing:0.401868px;}
.wsc_c02322{word-spacing:2.200392px;}
.wsb_c02322{word-spacing:2.233332px;}
.ws17_c02322{word-spacing:2.885544px;}
.ws18_c02322{word-spacing:2.931660px;}
.ws24_c02322{word-spacing:4.367844px;}
.ws8_c02322{word-spacing:5.072760px;}
.ws22_c02322{word-spacing:6.851520px;}
.ws20_c02322{word-spacing:6.858108px;}
.ws21_c02322{word-spacing:6.871284px;}
.ws1d_c02322{word-spacing:9.051912px;}
.ws1e_c02322{word-spacing:10.870200px;}
.ws1b_c02322{word-spacing:11.575116px;}
.wsa_c02322{word-spacing:12.998124px;}
.wse_c02322{word-spacing:15.521328px;}
.wsf_c02322{word-spacing:15.554268px;}
.ws7_c02322{word-spacing:15.857316px;}
.ws6_c02322{word-spacing:15.870492px;}
.ws10_c02322{word-spacing:17.306676px;}
.ws25_c02322{word-spacing:35.713548px;}
.wsd_c02322{word-spacing:37.848060px;}
.ws16_c02322{word-spacing:48.689172px;}
._0_c02322{margin-left:-1.199016px;}
._1_c02322{width:1.093608px;}
._2_c02322{width:54.278496px;}
.fc0_c02322{color:rgb(0,0,0);}
.fs2_c02322{font-size:24.120000px;}
.fs4_c02322{font-size:47.880000px;}
.fs3_c02322{font-size:60.120000px;}
.fs1_c02322{font-size:65.880000px;}
.fs0_c02322{font-size:72.000000px;}
.y0_c02322{bottom:0.000000px;}
.y4_c02322{bottom:75.449640px;}
.y3_c02322{bottom:113.608983px;}
.y2b_c02322{bottom:155.459118px;}
.y2a_c02322{bottom:177.239046px;}
.y29_c02322{bottom:199.109559px;}
.y28_c02322{bottom:220.889487px;}
.y27_c02322{bottom:242.760000px;}
.y26_c02322{bottom:260.400396px;}
.y25_c02322{bottom:268.320198px;}
.y24_c02322{bottom:276.240000px;}
.y23_c02322{bottom:288.389703px;}
.y36_c02322{bottom:300.450000px;}
.y22_c02322{bottom:310.169631px;}
.y35_c02322{bottom:321.600000px;}
.y21_c02322{bottom:331.949559px;}
.y34_c02322{bottom:341.400000px;}
.y20_c02322{bottom:353.820072px;}
.y33_c02322{bottom:370.200000px;}
.y1f_c02322{bottom:375.600000px;}
.y1e_c02322{bottom:393.239748px;}
.y1d_c02322{bottom:401.250000px;}
.y32_c02322{bottom:405.030000px;}
.y1c_c02322{bottom:413.308677px;}
.y31_c02322{bottom:424.920000px;}
.y1b_c02322{bottom:435.179190px;}
.y30_c02322{bottom:444.720000px;}
.y1a_c02322{bottom:456.959118px;}
.y2f_c02322{bottom:464.610000px;}
.y19_c02322{bottom:478.739046px;}
.y2e_c02322{bottom:484.410000px;}
.y18_c02322{bottom:500.609559px;}
.y2d_c02322{bottom:519.240000px;}
.y17_c02322{bottom:522.389487px;}
.y16_c02322{bottom:544.170000px;}
.y2c_c02322{bottom:545.520000px;}
.ye_c02322{bottom:562.620000px;}
.yd_c02322{bottom:574.768983px;}
.y15_c02322{bottom:592.140000px;}
.yc_c02322{bottom:596.548911px;}
.y14_c02322{bottom:617.970000px;}
.yb_c02322{bottom:618.419424px;}
.ya_c02322{bottom:640.199352px;}
.y13_c02322{bottom:643.800000px;}
.y9_c02322{bottom:661.979280px;}
.y12_c02322{bottom:669.630000px;}
.y8_c02322{bottom:683.849793px;}
.y11_c02322{bottom:698.430000px;}
.y7_c02322{bottom:705.629721px;}
.y10_c02322{bottom:724.710000px;}
.y6_c02322{bottom:727.500234px;}
.y5_c02322{bottom:749.280162px;}
.yf_c02322{bottom:750.540000px;}
.y2_c02322{bottom:803.369289px;}
.y1_c02322{bottom:822.990000px;}
.h6_c02322{height:23.672461px;}
.h3_c02322{height:43.909277px;}
.h4_c02322{height:54.331699px;}
.h7_c02322{height:60.589687px;}
.h5_c02322{height:64.657617px;}
.h8_c02322{height:66.754687px;}
.h2_c02322{height:72.562500px;}
.h1_c02322{height:892.500000px;}
.h0_c02322{height:892.830000px;}
.w0_c02322{width:1263.000000px;}
.x0_c02322{left:0.000000px;}
.x1_c02322{left:106.275900px;}
.x5_c02322{left:124.995750px;}
.x3_c02322{left:273.857505px;}
.x2_c02322{left:618.826596px;}
.x4_c02322{left:826.725750px;}
@media print{
.v0_c02322{vertical-align:0.000000pt;}
.v1_c02322{vertical-align:16.000000pt;}
.ls16_c02322{letter-spacing:-0.128256pt;}
.ls18_c02322{letter-spacing:-0.112224pt;}
.ls12_c02322{letter-spacing:-0.090848pt;}
.ls13_c02322{letter-spacing:-0.080160pt;}
.ls11_c02322{letter-spacing:-0.069472pt;}
.ls15_c02322{letter-spacing:-0.029280pt;}
.lsf_c02322{letter-spacing:-0.012800pt;}
.ls17_c02322{letter-spacing:-0.005344pt;}
.ls10_c02322{letter-spacing:0.000000pt;}
.ls7_c02322{letter-spacing:0.011712pt;}
.ls5_c02322{letter-spacing:0.017568pt;}
.lsc_c02322{letter-spacing:0.023424pt;}
.ls0_c02322{letter-spacing:0.029280pt;}
.ls6_c02322{letter-spacing:0.035136pt;}
.lsd_c02322{letter-spacing:0.040992pt;}
.ls4_c02322{letter-spacing:0.046848pt;}
.ls2_c02322{letter-spacing:0.052704pt;}
.ls8_c02322{letter-spacing:0.058560pt;}
.ls3_c02322{letter-spacing:0.064416pt;}
.lse_c02322{letter-spacing:0.070272pt;}
.lsb_c02322{letter-spacing:0.076128pt;}
.ls1_c02322{letter-spacing:0.081984pt;}
.lsa_c02322{letter-spacing:0.117120pt;}
.ls14_c02322{letter-spacing:0.158112pt;}
.ls9_c02322{letter-spacing:0.161728pt;}
.ws1_c02322{word-spacing:-14.757120pt;}
.ws27_c02322{word-spacing:-0.235136pt;}
.ws0_c02322{word-spacing:-0.140544pt;}
.ws5_c02322{word-spacing:0.000000pt;}
.ws2_c02322{word-spacing:0.012800pt;}
.ws9_c02322{word-spacing:0.029280pt;}
.ws4_c02322{word-spacing:0.035136pt;}
.ws1f_c02322{word-spacing:0.040992pt;}
.ws3_c02322{word-spacing:0.052704pt;}
.ws1a_c02322{word-spacing:0.058560pt;}
.ws11_c02322{word-spacing:0.070272pt;}
.ws1c_c02322{word-spacing:0.081984pt;}
.ws23_c02322{word-spacing:0.111264pt;}
.ws12_c02322{word-spacing:0.149632pt;}
.ws13_c02322{word-spacing:0.154976pt;}
.ws15_c02322{word-spacing:0.160320pt;}
.ws14_c02322{word-spacing:0.171008pt;}
.ws28_c02322{word-spacing:0.192384pt;}
.ws26_c02322{word-spacing:0.208416pt;}
.ws19_c02322{word-spacing:0.357216pt;}
.wsc_c02322{word-spacing:1.955904pt;}
.wsb_c02322{word-spacing:1.985184pt;}
.ws17_c02322{word-spacing:2.564928pt;}
.ws18_c02322{word-spacing:2.605920pt;}
.ws24_c02322{word-spacing:3.882528pt;}
.ws8_c02322{word-spacing:4.509120pt;}
.ws22_c02322{word-spacing:6.090240pt;}
.ws20_c02322{word-spacing:6.096096pt;}
.ws21_c02322{word-spacing:6.107808pt;}
.ws1d_c02322{word-spacing:8.046144pt;}
.ws1e_c02322{word-spacing:9.662400pt;}
.ws1b_c02322{word-spacing:10.288992pt;}
.wsa_c02322{word-spacing:11.553888pt;}
.wse_c02322{word-spacing:13.796736pt;}
.wsf_c02322{word-spacing:13.826016pt;}
.ws7_c02322{word-spacing:14.095392pt;}
.ws6_c02322{word-spacing:14.107104pt;}
.ws10_c02322{word-spacing:15.383712pt;}
.ws25_c02322{word-spacing:31.745376pt;}
.wsd_c02322{word-spacing:33.642720pt;}
.ws16_c02322{word-spacing:43.279264pt;}
._0_c02322{margin-left:-1.065792pt;}
._1_c02322{width:0.972096pt;}
._2_c02322{width:48.247552pt;}
.fs2_c02322{font-size:21.440000pt;}
.fs4_c02322{font-size:42.560000pt;}
.fs3_c02322{font-size:53.440000pt;}
.fs1_c02322{font-size:58.560000pt;}
.fs0_c02322{font-size:64.000000pt;}
.y0_c02322{bottom:0.000000pt;}
.y4_c02322{bottom:67.066347pt;}
.y3_c02322{bottom:100.985763pt;}
.y2b_c02322{bottom:138.185883pt;}
.y2a_c02322{bottom:157.545819pt;}
.y29_c02322{bottom:176.986275pt;}
.y28_c02322{bottom:196.346211pt;}
.y27_c02322{bottom:215.786667pt;}
.y26_c02322{bottom:231.467019pt;}
.y25_c02322{bottom:238.506843pt;}
.y24_c02322{bottom:245.546667pt;}
.y23_c02322{bottom:256.346403pt;}
.y36_c02322{bottom:267.066667pt;}
.y22_c02322{bottom:275.706339pt;}
.y35_c02322{bottom:285.866667pt;}
.y21_c02322{bottom:295.066275pt;}
.y34_c02322{bottom:303.466667pt;}
.y20_c02322{bottom:314.506731pt;}
.y33_c02322{bottom:329.066667pt;}
.y1f_c02322{bottom:333.866667pt;}
.y1e_c02322{bottom:349.546443pt;}
.y1d_c02322{bottom:356.666667pt;}
.y32_c02322{bottom:360.026667pt;}
.y1c_c02322{bottom:367.385491pt;}
.y31_c02322{bottom:377.706667pt;}
.y1b_c02322{bottom:386.825947pt;}
.y30_c02322{bottom:395.306667pt;}
.y1a_c02322{bottom:406.185883pt;}
.y2f_c02322{bottom:412.986667pt;}
.y19_c02322{bottom:425.545819pt;}
.y2e_c02322{bottom:430.586667pt;}
.y18_c02322{bottom:444.986275pt;}
.y2d_c02322{bottom:461.546667pt;}
.y17_c02322{bottom:464.346211pt;}
.y16_c02322{bottom:483.706667pt;}
.y2c_c02322{bottom:484.906667pt;}
.ye_c02322{bottom:500.106667pt;}
.yd_c02322{bottom:510.905763pt;}
.y15_c02322{bottom:526.346667pt;}
.yc_c02322{bottom:530.265699pt;}
.y14_c02322{bottom:549.306667pt;}
.yb_c02322{bottom:549.706155pt;}
.ya_c02322{bottom:569.066091pt;}
.y13_c02322{bottom:572.266667pt;}
.y9_c02322{bottom:588.426027pt;}
.y12_c02322{bottom:595.226667pt;}
.y8_c02322{bottom:607.866483pt;}
.y11_c02322{bottom:620.826667pt;}
.y7_c02322{bottom:627.226419pt;}
.y10_c02322{bottom:644.186667pt;}
.y6_c02322{bottom:646.666875pt;}
.y5_c02322{bottom:666.026811pt;}
.yf_c02322{bottom:667.146667pt;}
.y2_c02322{bottom:714.106035pt;}
.y1_c02322{bottom:731.546667pt;}
.h6_c02322{height:21.042187pt;}
.h3_c02322{height:39.030469pt;}
.h4_c02322{height:48.294844pt;}
.h7_c02322{height:53.857500pt;}
.h5_c02322{height:57.473437pt;}
.h8_c02322{height:59.337500pt;}
.h2_c02322{height:64.500000pt;}
.h1_c02322{height:793.333333pt;}
.h0_c02322{height:793.626667pt;}
.w0_c02322{width:1122.666667pt;}
.x0_c02322{left:0.000000pt;}
.x1_c02322{left:94.467467pt;}
.x5_c02322{left:111.107333pt;}
.x3_c02322{left:243.428893pt;}
.x2_c02322{left:550.068085pt;}
.x4_c02322{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b603985984a49f64281aa1c7.woff2')format("woff");}.ff1_c02323{font-family:ff1_c02323;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02323;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02323{font-family:ff2_c02323;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02323;src:url('chunks/assets/font_77367b8477ab33ef0ba7c467.woff2')format("woff");}.ff3_c02323{font-family:ff3_c02323;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02323;src:url('chunks/assets/font_f6df8f4d8d9357afabee7b07.woff2')format("woff");}.ff4_c02323{font-family:ff4_c02323;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02323{vertical-align:-28.440000px;}
.v3_c02323{vertical-align:-16.920000px;}
.v1_c02323{vertical-align:-5.760000px;}
.v0_c02323{vertical-align:0.000000px;}
.v4_c02323{vertical-align:17.640000px;}
.ls12_c02323{letter-spacing:-0.176904px;}
.ls19_c02323{letter-spacing:-0.126252px;}
.ls15_c02323{letter-spacing:-0.114228px;}
.ls17_c02323{letter-spacing:-0.102204px;}
.ls18_c02323{letter-spacing:-0.090180px;}
.ls16_c02323{letter-spacing:-0.078156px;}
.ls1a_c02323{letter-spacing:-0.030060px;}
.ls10_c02323{letter-spacing:-0.014400px;}
.ls14_c02323{letter-spacing:-0.012024px;}
.ls11_c02323{letter-spacing:0.000000px;}
.ls8_c02323{letter-spacing:0.006588px;}
.ls2_c02323{letter-spacing:0.014400px;}
.ls3_c02323{letter-spacing:0.018036px;}
.lsa_c02323{letter-spacing:0.026352px;}
.ls0_c02323{letter-spacing:0.032940px;}
.ls9_c02323{letter-spacing:0.046116px;}
.lsd_c02323{letter-spacing:0.052704px;}
.ls7_c02323{letter-spacing:0.059292px;}
.lsb_c02323{letter-spacing:0.065880px;}
.lsc_c02323{letter-spacing:0.072468px;}
.lse_c02323{letter-spacing:0.079056px;}
.ls1_c02323{letter-spacing:0.092232px;}
.ls5_c02323{letter-spacing:0.105408px;}
.ls6_c02323{letter-spacing:0.111996px;}
.lsf_c02323{letter-spacing:0.131760px;}
.ls13_c02323{letter-spacing:0.177876px;}
.ls4_c02323{letter-spacing:0.181944px;}
.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;}
}
.ws2_c02323{word-spacing:-16.601760px;}
.ws1_c02323{word-spacing:-16.575408px;}
.ws7_c02323{word-spacing:-0.288576px;}
.ws19_c02323{word-spacing:-0.258516px;}
.ws0_c02323{word-spacing:-0.158112px;}
.ws6_c02323{word-spacing:0.000000px;}
.ws3_c02323{word-spacing:0.014400px;}
.ws16_c02323{word-spacing:0.019764px;}
.ws12_c02323{word-spacing:0.026352px;}
.ws23_c02323{word-spacing:0.032940px;}
.ws5_c02323{word-spacing:0.039528px;}
.ws18_c02323{word-spacing:0.046116px;}
.ws10_c02323{word-spacing:0.052704px;}
.ws4_c02323{word-spacing:0.059292px;}
.ws26_c02323{word-spacing:0.120240px;}
.ws1b_c02323{word-spacing:0.168336px;}
.ws1d_c02323{word-spacing:0.180360px;}
.ws1c_c02323{word-spacing:0.192384px;}
.ws1a_c02323{word-spacing:0.204408px;}
.ws1e_c02323{word-spacing:0.216432px;}
.wsb_c02323{word-spacing:1.166076px;}
.ws17_c02323{word-spacing:1.811700px;}
.ws11_c02323{word-spacing:5.461452px;}
.ws9_c02323{word-spacing:5.738148px;}
.wsa_c02323{word-spacing:5.790852px;}
.wsf_c02323{word-spacing:5.804028px;}
.wse_c02323{word-spacing:5.823792px;}
.ws20_c02323{word-spacing:7.227036px;}
.ws1f_c02323{word-spacing:7.266564px;}
.ws24_c02323{word-spacing:9.025560px;}
.ws22_c02323{word-spacing:11.548764px;}
.ws21_c02323{word-spacing:11.575116px;}
.ws15_c02323{word-spacing:19.138140px;}
.ws14_c02323{word-spacing:22.366260px;}
.ws13_c02323{word-spacing:26.701164px;}
.wsc_c02323{word-spacing:28.110996px;}
.wsd_c02323{word-spacing:28.124172px;}
.ws25_c02323{word-spacing:28.855440px;}
.ws8_c02323{word-spacing:48.689172px;}
._3_c02323{margin-left:-1.292580px;}
._5_c02323{width:1.521828px;}
._1_c02323{width:48.686112px;}
._4_c02323{width:54.278496px;}
._0_c02323{width:115.970472px;}
._2_c02323{width:2017.785600px;}
.fc0_c02323{color:rgb(0,0,0);}
.fs5_c02323{font-size:24.120000px;}
.fs2_c02323{font-size:42.120000px;}
.fs3_c02323{font-size:47.880000px;}
.fs4_c02323{font-size:60.120000px;}
.fs1_c02323{font-size:65.880000px;}
.fs0_c02323{font-size:72.000000px;}
.y0_c02323{bottom:0.000000px;}
.y4_c02323{bottom:75.449640px;}
.y3_c02323{bottom:113.608983px;}
.y33_c02323{bottom:150.869505px;}
.y32_c02323{bottom:157.709334px;}
.y31_c02323{bottom:164.639613px;}
.y30_c02323{bottom:171.569892px;}
.y2f_c02323{bottom:178.409721px;}
.y36_c02323{bottom:178.590000px;}
.y2e_c02323{bottom:185.340000px;}
.y2d_c02323{bottom:194.520765px;}
.y35_c02323{bottom:197.580000px;}
.y2c_c02323{bottom:213.420090px;}
.y2b_c02323{bottom:232.320000px;}
.y34_c02323{bottom:233.670000px;}
.y28_c02323{bottom:250.860000px;}
.y27_c02323{bottom:262.919559px;}
.y2a_c02323{bottom:271.740000px;}
.y26_c02323{bottom:284.790072px;}
.y25_c02323{bottom:306.480000px;}
.y29_c02323{bottom:307.830000px;}
.y1b_c02323{bottom:326.284230px;}
.y1a_c02323{bottom:345.274140px;}
.y19_c02323{bottom:364.264050px;}
.y18_c02323{bottom:383.253960px;}
.y17_c02323{bottom:402.153285px;}
.y16_c02323{bottom:421.143195px;}
.y15_c02323{bottom:440.133105px;}
.y14_c02323{bottom:459.123015px;}
.y13_c02323{bottom:478.112925px;}
.y12_c02323{bottom:497.102835px;}
.y24_c02323{bottom:511.680000px;}
.y11_c02323{bottom:516.002160px;}
.y23_c02323{bottom:530.670000px;}
.y10_c02323{bottom:534.992070px;}
.yf_c02323{bottom:553.981980px;}
.y22_c02323{bottom:560.730000px;}
.ye_c02323{bottom:572.971890px;}
.y21_c02323{bottom:587.010000px;}
.yd_c02323{bottom:591.961800px;}
.yc_c02323{bottom:610.861125px;}
.y20_c02323{bottom:615.810000px;}
.yb_c02323{bottom:629.851035px;}
.y1f_c02323{bottom:644.700000px;}
.ya_c02323{bottom:648.840945px;}
.y9_c02323{bottom:667.830855px;}
.y1e_c02323{bottom:670.890000px;}
.y8_c02323{bottom:686.820765px;}
.y1d_c02323{bottom:697.170000px;}
.y7_c02323{bottom:705.810675px;}
.y6_c02323{bottom:724.620000px;}
.y1c_c02323{bottom:725.970000px;}
.y5_c02323{bottom:754.770000px;}
.y2_c02323{bottom:803.369289px;}
.y1_c02323{bottom:822.990000px;}
.h9_c02323{height:23.672461px;}
.h3_c02323{height:43.909277px;}
.h5_c02323{height:44.122500px;}
.h4_c02323{height:54.331699px;}
.h8_c02323{height:60.589687px;}
.h7_c02323{height:64.657617px;}
.h6_c02323{height:66.754688px;}
.h2_c02323{height:72.562500px;}
.h1_c02323{height:892.500000px;}
.h0_c02323{height:892.830000px;}
.w0_c02323{width:1263.000000px;}
.x0_c02323{left:0.000000px;}
.x1_c02323{left:106.275900px;}
.x3_c02323{left:124.995750px;}
.x4_c02323{left:273.855750px;}
.x2_c02323{left:618.826596px;}
.x5_c02323{left:826.725750px;}
@media print{
.v2_c02323{vertical-align:-25.280000pt;}
.v3_c02323{vertical-align:-15.040000pt;}
.v1_c02323{vertical-align:-5.120000pt;}
.v0_c02323{vertical-align:0.000000pt;}
.v4_c02323{vertical-align:15.680000pt;}
.ls12_c02323{letter-spacing:-0.157248pt;}
.ls19_c02323{letter-spacing:-0.112224pt;}
.ls15_c02323{letter-spacing:-0.101536pt;}
.ls17_c02323{letter-spacing:-0.090848pt;}
.ls18_c02323{letter-spacing:-0.080160pt;}
.ls16_c02323{letter-spacing:-0.069472pt;}
.ls1a_c02323{letter-spacing:-0.026720pt;}
.ls10_c02323{letter-spacing:-0.012800pt;}
.ls14_c02323{letter-spacing:-0.010688pt;}
.ls11_c02323{letter-spacing:0.000000pt;}
.ls8_c02323{letter-spacing:0.005856pt;}
.ls2_c02323{letter-spacing:0.012800pt;}
.ls3_c02323{letter-spacing:0.016032pt;}
.lsa_c02323{letter-spacing:0.023424pt;}
.ls0_c02323{letter-spacing:0.029280pt;}
.ls9_c02323{letter-spacing:0.040992pt;}
.lsd_c02323{letter-spacing:0.046848pt;}
.ls7_c02323{letter-spacing:0.052704pt;}
.lsb_c02323{letter-spacing:0.058560pt;}
.lsc_c02323{letter-spacing:0.064416pt;}
.lse_c02323{letter-spacing:0.070272pt;}
.ls1_c02323{letter-spacing:0.081984pt;}
.ls5_c02323{letter-spacing:0.093696pt;}
.ls6_c02323{letter-spacing:0.099552pt;}
.lsf_c02323{letter-spacing:0.117120pt;}
.ls13_c02323{letter-spacing:0.158112pt;}
.ls4_c02323{letter-spacing:0.161728pt;}
.ws2_c02323{word-spacing:-14.757120pt;}
.ws1_c02323{word-spacing:-14.733696pt;}
.ws7_c02323{word-spacing:-0.256512pt;}
.ws19_c02323{word-spacing:-0.229792pt;}
.ws0_c02323{word-spacing:-0.140544pt;}
.ws6_c02323{word-spacing:0.000000pt;}
.ws3_c02323{word-spacing:0.012800pt;}
.ws16_c02323{word-spacing:0.017568pt;}
.ws12_c02323{word-spacing:0.023424pt;}
.ws23_c02323{word-spacing:0.029280pt;}
.ws5_c02323{word-spacing:0.035136pt;}
.ws18_c02323{word-spacing:0.040992pt;}
.ws10_c02323{word-spacing:0.046848pt;}
.ws4_c02323{word-spacing:0.052704pt;}
.ws26_c02323{word-spacing:0.106880pt;}
.ws1b_c02323{word-spacing:0.149632pt;}
.ws1d_c02323{word-spacing:0.160320pt;}
.ws1c_c02323{word-spacing:0.171008pt;}
.ws1a_c02323{word-spacing:0.181696pt;}
.ws1e_c02323{word-spacing:0.192384pt;}
.wsb_c02323{word-spacing:1.036512pt;}
.ws17_c02323{word-spacing:1.610400pt;}
.ws11_c02323{word-spacing:4.854624pt;}
.ws9_c02323{word-spacing:5.100576pt;}
.wsa_c02323{word-spacing:5.147424pt;}
.wsf_c02323{word-spacing:5.159136pt;}
.wse_c02323{word-spacing:5.176704pt;}
.ws20_c02323{word-spacing:6.424032pt;}
.ws1f_c02323{word-spacing:6.459168pt;}
.ws24_c02323{word-spacing:8.022720pt;}
.ws22_c02323{word-spacing:10.265568pt;}
.ws21_c02323{word-spacing:10.288992pt;}
.ws15_c02323{word-spacing:17.011680pt;}
.ws14_c02323{word-spacing:19.881120pt;}
.ws13_c02323{word-spacing:23.734368pt;}
.wsc_c02323{word-spacing:24.987552pt;}
.wsd_c02323{word-spacing:24.999264pt;}
.ws25_c02323{word-spacing:25.649280pt;}
.ws8_c02323{word-spacing:43.279264pt;}
._3_c02323{margin-left:-1.148960pt;}
._5_c02323{width:1.352736pt;}
._1_c02323{width:43.276544pt;}
._4_c02323{width:48.247552pt;}
._0_c02323{width:103.084864pt;}
._2_c02323{width:1793.587200pt;}
.fs5_c02323{font-size:21.440000pt;}
.fs2_c02323{font-size:37.440000pt;}
.fs3_c02323{font-size:42.560000pt;}
.fs4_c02323{font-size:53.440000pt;}
.fs1_c02323{font-size:58.560000pt;}
.fs0_c02323{font-size:64.000000pt;}
.y0_c02323{bottom:0.000000pt;}
.y4_c02323{bottom:67.066347pt;}
.y3_c02323{bottom:100.985763pt;}
.y33_c02323{bottom:134.106227pt;}
.y32_c02323{bottom:140.186075pt;}
.y31_c02323{bottom:146.346323pt;}
.y30_c02323{bottom:152.506571pt;}
.y2f_c02323{bottom:158.586419pt;}
.y36_c02323{bottom:158.746667pt;}
.y2e_c02323{bottom:164.746667pt;}
.y2d_c02323{bottom:172.907347pt;}
.y35_c02323{bottom:175.626667pt;}
.y2c_c02323{bottom:189.706747pt;}
.y2b_c02323{bottom:206.506667pt;}
.y34_c02323{bottom:207.706667pt;}
.y28_c02323{bottom:222.986667pt;}
.y27_c02323{bottom:233.706275pt;}
.y2a_c02323{bottom:241.546667pt;}
.y26_c02323{bottom:253.146731pt;}
.y25_c02323{bottom:272.426667pt;}
.y29_c02323{bottom:273.626667pt;}
.y1b_c02323{bottom:290.030427pt;}
.y1a_c02323{bottom:306.910347pt;}
.y19_c02323{bottom:323.790267pt;}
.y18_c02323{bottom:340.670187pt;}
.y17_c02323{bottom:357.469587pt;}
.y16_c02323{bottom:374.349507pt;}
.y15_c02323{bottom:391.229427pt;}
.y14_c02323{bottom:408.109347pt;}
.y13_c02323{bottom:424.989267pt;}
.y12_c02323{bottom:441.869187pt;}
.y24_c02323{bottom:454.826667pt;}
.y11_c02323{bottom:458.668587pt;}
.y23_c02323{bottom:471.706667pt;}
.y10_c02323{bottom:475.548507pt;}
.yf_c02323{bottom:492.428427pt;}
.y22_c02323{bottom:498.426667pt;}
.ye_c02323{bottom:509.308347pt;}
.y21_c02323{bottom:521.786667pt;}
.yd_c02323{bottom:526.188267pt;}
.yc_c02323{bottom:542.987667pt;}
.y20_c02323{bottom:547.386667pt;}
.yb_c02323{bottom:559.867587pt;}
.y1f_c02323{bottom:573.066667pt;}
.ya_c02323{bottom:576.747507pt;}
.y9_c02323{bottom:593.627427pt;}
.y1e_c02323{bottom:596.346667pt;}
.y8_c02323{bottom:610.507347pt;}
.y1d_c02323{bottom:619.706667pt;}
.y7_c02323{bottom:627.387267pt;}
.y6_c02323{bottom:644.106667pt;}
.y1c_c02323{bottom:645.306667pt;}
.y5_c02323{bottom:670.906667pt;}
.y2_c02323{bottom:714.106035pt;}
.y1_c02323{bottom:731.546667pt;}
.h9_c02323{height:21.042187pt;}
.h3_c02323{height:39.030469pt;}
.h5_c02323{height:39.220000pt;}
.h4_c02323{height:48.294844pt;}
.h8_c02323{height:53.857500pt;}
.h7_c02323{height:57.473437pt;}
.h6_c02323{height:59.337500pt;}
.h2_c02323{height:64.500000pt;}
.h1_c02323{height:793.333333pt;}
.h0_c02323{height:793.626667pt;}
.w0_c02323{width:1122.666667pt;}
.x0_c02323{left:0.000000pt;}
.x1_c02323{left:94.467467pt;}
.x3_c02323{left:111.107333pt;}
.x4_c02323{left:243.427333pt;}
.x2_c02323{left:550.068085pt;}
.x5_c02323{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9eb1e81c35a1e9a5d255ff61.woff2')format("woff");}.ff1_c02324{font-family:ff1_c02324;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02324{font-family:ff2_c02324;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02324;src:url('chunks/assets/font_6b98e33adc81a170ea2ad333.woff2')format("woff");}.ff3_c02324{font-family:ff3_c02324;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02324;src:url('chunks/assets/font_4d44b60a986e094ba8157788.woff2')format("woff");}.ff4_c02324{font-family:ff4_c02324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02324{vertical-align:-28.440000px;}
.v3_c02324{vertical-align:-16.920000px;}
.v1_c02324{vertical-align:-5.760000px;}
.v0_c02324{vertical-align:0.000000px;}
.v4_c02324{vertical-align:18.000000px;}
.ls18_c02324{letter-spacing:-0.176904px;}
.ls1d_c02324{letter-spacing:-0.114228px;}
.ls23_c02324{letter-spacing:-0.108216px;}
.ls1c_c02324{letter-spacing:-0.102204px;}
.ls1f_c02324{letter-spacing:-0.090180px;}
.ls1e_c02324{letter-spacing:-0.078156px;}
.ls24_c02324{letter-spacing:-0.064800px;}
.ls21_c02324{letter-spacing:-0.036072px;}
.ls22_c02324{letter-spacing:-0.030060px;}
.ls1b_c02324{letter-spacing:-0.018036px;}
.ls16_c02324{letter-spacing:-0.014400px;}
.ls20_c02324{letter-spacing:-0.010800px;}
.ls1a_c02324{letter-spacing:-0.006588px;}
.ls17_c02324{letter-spacing:0.000000px;}
.lse_c02324{letter-spacing:0.006588px;}
.ls14_c02324{letter-spacing:0.010800px;}
.ls12_c02324{letter-spacing:0.013176px;}
.ls2_c02324{letter-spacing:0.014400px;}
.ls3_c02324{letter-spacing:0.018036px;}
.ls8_c02324{letter-spacing:0.019764px;}
.lsd_c02324{letter-spacing:0.026352px;}
.ls0_c02324{letter-spacing:0.032940px;}
.lsb_c02324{letter-spacing:0.039528px;}
.ls15_c02324{letter-spacing:0.043200px;}
.lsf_c02324{letter-spacing:0.046116px;}
.lsa_c02324{letter-spacing:0.052704px;}
.lsc_c02324{letter-spacing:0.059292px;}
.ls6_c02324{letter-spacing:0.065880px;}
.ls11_c02324{letter-spacing:0.072468px;}
.ls9_c02324{letter-spacing:0.079056px;}
.ls7_c02324{letter-spacing:0.085644px;}
.ls1_c02324{letter-spacing:0.092232px;}
.ls13_c02324{letter-spacing:0.105408px;}
.ls5_c02324{letter-spacing:0.131760px;}
.ls19_c02324{letter-spacing:0.177876px;}
.ls4_c02324{letter-spacing:0.181944px;}
.ls10_c02324{letter-spacing:4.051620px;}
.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;}
}
.ws1_c02324{word-spacing:-16.601760px;}
.ws2_c02324{word-spacing:-16.516116px;}
.ws3_c02324{word-spacing:-13.489200px;}
.ws8_c02324{word-spacing:-0.288576px;}
.ws11_c02324{word-spacing:-0.252504px;}
.ws27_c02324{word-spacing:-0.240480px;}
.ws28_c02324{word-spacing:-0.162324px;}
.ws0_c02324{word-spacing:-0.158112px;}
.ws7_c02324{word-spacing:0.000000px;}
.ws4_c02324{word-spacing:0.014400px;}
.ws1d_c02324{word-spacing:0.019764px;}
.ws6_c02324{word-spacing:0.039528px;}
.ws24_c02324{word-spacing:0.052704px;}
.ws5_c02324{word-spacing:0.059292px;}
.ws1a_c02324{word-spacing:0.065880px;}
.ws1e_c02324{word-spacing:0.079056px;}
.ws26_c02324{word-spacing:0.126252px;}
.ws25_c02324{word-spacing:0.167400px;}
.ws14_c02324{word-spacing:0.168336px;}
.ws15_c02324{word-spacing:0.174348px;}
.ws1f_c02324{word-spacing:0.180360px;}
.ws12_c02324{word-spacing:0.192384px;}
.ws13_c02324{word-spacing:0.204408px;}
.ws29_c02324{word-spacing:0.243000px;}
.ws23_c02324{word-spacing:3.221532px;}
.ws22_c02324{word-spacing:3.274236px;}
.ws1c_c02324{word-spacing:3.972564px;}
.ws19_c02324{word-spacing:3.992328px;}
.ws18_c02324{word-spacing:4.012092px;}
.ws1b_c02324{word-spacing:6.923988px;}
.wsa_c02324{word-spacing:7.227036px;}
.ws10_c02324{word-spacing:7.569612px;}
.wsf_c02324{word-spacing:7.582788px;}
.ws21_c02324{word-spacing:10.132344px;}
.wsb_c02324{word-spacing:13.413168px;}
.ws20_c02324{word-spacing:15.547680px;}
.ws17_c02324{word-spacing:23.776092px;}
.ws16_c02324{word-spacing:23.809032px;}
.wse_c02324{word-spacing:24.909228px;}
.wsc_c02324{word-spacing:39.607056px;}
.wsd_c02324{word-spacing:39.626820px;}
.ws9_c02324{word-spacing:48.689172px;}
._3_c02324{margin-left:-1.292580px;}
._5_c02324{width:1.271484px;}
._1_c02324{width:48.686112px;}
._4_c02324{width:54.278496px;}
._0_c02324{width:115.970472px;}
._2_c02324{width:2017.785600px;}
.fc0_c02324{color:rgb(0,0,0);}
.fs5_c02324{font-size:24.120000px;}
.fs6_c02324{font-size:36.000000px;}
.fs2_c02324{font-size:42.120000px;}
.fs3_c02324{font-size:47.880000px;}
.fs7_c02324{font-size:54.000000px;}
.fs4_c02324{font-size:60.120000px;}
.fs1_c02324{font-size:65.880000px;}
.fs0_c02324{font-size:72.000000px;}
.y0_c02324{bottom:0.000000px;}
.y4_c02324{bottom:75.449640px;}
.y3_c02324{bottom:113.608983px;}
.y36_c02324{bottom:160.050000px;}
.y30_c02324{bottom:177.779190px;}
.y35_c02324{bottom:184.800000px;}
.y2f_c02324{bottom:199.559118px;}
.y34_c02324{bottom:211.080000px;}
.y2e_c02324{bottom:221.429631px;}
.y33_c02324{bottom:237.360000px;}
.y2d_c02324{bottom:243.209559px;}
.y32_c02324{bottom:263.550000px;}
.y2c_c02324{bottom:264.989487px;}
.y2b_c02324{bottom:286.770000px;}
.y31_c02324{bottom:289.560000px;}
.y24_c02324{bottom:309.359118px;}
.y23_c02324{bottom:331.229631px;}
.y2a_c02324{bottom:333.750000px;}
.y22_c02324{bottom:353.100144px;}
.y29_c02324{bottom:362.550000px;}
.y21_c02324{bottom:374.880072px;}
.y28_c02324{bottom:391.440000px;}
.y20_c02324{bottom:396.660000px;}
.y1f_c02324{bottom:415.650000px;}
.y27_c02324{bottom:420.240000px;}
.y1e_c02324{bottom:430.409559px;}
.y26_c02324{bottom:449.040000px;}
.y1d_c02324{bottom:452.280072px;}
.y1c_c02324{bottom:473.970000px;}
.y25_c02324{bottom:475.320000px;}
.y13_c02324{bottom:492.420000px;}
.y12_c02324{bottom:504.570000px;}
.y1b_c02324{bottom:521.490000px;}
.y11_c02324{bottom:522.210000px;}
.y10_c02324{bottom:534.360072px;}
.y1a_c02324{bottom:552.360000px;}
.yf_c02324{bottom:556.140000px;}
.ye_c02324{bottom:573.780000px;}
.y19_c02324{bottom:583.140000px;}
.yd_c02324{bottom:585.930144px;}
.yc_c02324{bottom:607.710072px;}
.y18_c02324{bottom:613.290000px;}
.yb_c02324{bottom:629.490000px;}
.y17_c02324{bottom:639.480000px;}
.ya_c02324{bottom:647.220000px;}
.y9_c02324{bottom:659.280216px;}
.y16_c02324{bottom:668.370000px;}
.y8_c02324{bottom:681.060144px;}
.y15_c02324{bottom:697.170000px;}
.y7_c02324{bottom:702.930657px;}
.y6_c02324{bottom:724.620000px;}
.y14_c02324{bottom:725.970000px;}
.y5_c02324{bottom:754.770000px;}
.y2_c02324{bottom:803.369289px;}
.y1_c02324{bottom:822.990000px;}
.h8_c02324{height:23.672461px;}
.hb_c02324{height:35.332031px;}
.h3_c02324{height:43.909277px;}
.h5_c02324{height:44.122500px;}
.h4_c02324{height:54.331699px;}
.hc_c02324{height:54.421875px;}
.h9_c02324{height:60.589687px;}
.h7_c02324{height:64.657617px;}
.h6_c02324{height:66.394687px;}
.ha_c02324{height:66.754688px;}
.h2_c02324{height:72.562500px;}
.h1_c02324{height:892.500000px;}
.h0_c02324{height:892.830000px;}
.w0_c02324{width:1263.000000px;}
.x0_c02324{left:0.000000px;}
.x1_c02324{left:106.275900px;}
.x3_c02324{left:124.995750px;}
.x4_c02324{left:273.855750px;}
.x2_c02324{left:618.826596px;}
.x5_c02324{left:826.725750px;}
@media print{
.v2_c02324{vertical-align:-25.280000pt;}
.v3_c02324{vertical-align:-15.040000pt;}
.v1_c02324{vertical-align:-5.120000pt;}
.v0_c02324{vertical-align:0.000000pt;}
.v4_c02324{vertical-align:16.000000pt;}
.ls18_c02324{letter-spacing:-0.157248pt;}
.ls1d_c02324{letter-spacing:-0.101536pt;}
.ls23_c02324{letter-spacing:-0.096192pt;}
.ls1c_c02324{letter-spacing:-0.090848pt;}
.ls1f_c02324{letter-spacing:-0.080160pt;}
.ls1e_c02324{letter-spacing:-0.069472pt;}
.ls24_c02324{letter-spacing:-0.057600pt;}
.ls21_c02324{letter-spacing:-0.032064pt;}
.ls22_c02324{letter-spacing:-0.026720pt;}
.ls1b_c02324{letter-spacing:-0.016032pt;}
.ls16_c02324{letter-spacing:-0.012800pt;}
.ls20_c02324{letter-spacing:-0.009600pt;}
.ls1a_c02324{letter-spacing:-0.005856pt;}
.ls17_c02324{letter-spacing:0.000000pt;}
.lse_c02324{letter-spacing:0.005856pt;}
.ls14_c02324{letter-spacing:0.009600pt;}
.ls12_c02324{letter-spacing:0.011712pt;}
.ls2_c02324{letter-spacing:0.012800pt;}
.ls3_c02324{letter-spacing:0.016032pt;}
.ls8_c02324{letter-spacing:0.017568pt;}
.lsd_c02324{letter-spacing:0.023424pt;}
.ls0_c02324{letter-spacing:0.029280pt;}
.lsb_c02324{letter-spacing:0.035136pt;}
.ls15_c02324{letter-spacing:0.038400pt;}
.lsf_c02324{letter-spacing:0.040992pt;}
.lsa_c02324{letter-spacing:0.046848pt;}
.lsc_c02324{letter-spacing:0.052704pt;}
.ls6_c02324{letter-spacing:0.058560pt;}
.ls11_c02324{letter-spacing:0.064416pt;}
.ls9_c02324{letter-spacing:0.070272pt;}
.ls7_c02324{letter-spacing:0.076128pt;}
.ls1_c02324{letter-spacing:0.081984pt;}
.ls13_c02324{letter-spacing:0.093696pt;}
.ls5_c02324{letter-spacing:0.117120pt;}
.ls19_c02324{letter-spacing:0.158112pt;}
.ls4_c02324{letter-spacing:0.161728pt;}
.ls10_c02324{letter-spacing:3.601440pt;}
.ws1_c02324{word-spacing:-14.757120pt;}
.ws2_c02324{word-spacing:-14.680992pt;}
.ws3_c02324{word-spacing:-11.990400pt;}
.ws8_c02324{word-spacing:-0.256512pt;}
.ws11_c02324{word-spacing:-0.224448pt;}
.ws27_c02324{word-spacing:-0.213760pt;}
.ws28_c02324{word-spacing:-0.144288pt;}
.ws0_c02324{word-spacing:-0.140544pt;}
.ws7_c02324{word-spacing:0.000000pt;}
.ws4_c02324{word-spacing:0.012800pt;}
.ws1d_c02324{word-spacing:0.017568pt;}
.ws6_c02324{word-spacing:0.035136pt;}
.ws24_c02324{word-spacing:0.046848pt;}
.ws5_c02324{word-spacing:0.052704pt;}
.ws1a_c02324{word-spacing:0.058560pt;}
.ws1e_c02324{word-spacing:0.070272pt;}
.ws26_c02324{word-spacing:0.112224pt;}
.ws25_c02324{word-spacing:0.148800pt;}
.ws14_c02324{word-spacing:0.149632pt;}
.ws15_c02324{word-spacing:0.154976pt;}
.ws1f_c02324{word-spacing:0.160320pt;}
.ws12_c02324{word-spacing:0.171008pt;}
.ws13_c02324{word-spacing:0.181696pt;}
.ws29_c02324{word-spacing:0.216000pt;}
.ws23_c02324{word-spacing:2.863584pt;}
.ws22_c02324{word-spacing:2.910432pt;}
.ws1c_c02324{word-spacing:3.531168pt;}
.ws19_c02324{word-spacing:3.548736pt;}
.ws18_c02324{word-spacing:3.566304pt;}
.ws1b_c02324{word-spacing:6.154656pt;}
.wsa_c02324{word-spacing:6.424032pt;}
.ws10_c02324{word-spacing:6.728544pt;}
.wsf_c02324{word-spacing:6.740256pt;}
.ws21_c02324{word-spacing:9.006528pt;}
.wsb_c02324{word-spacing:11.922816pt;}
.ws20_c02324{word-spacing:13.820160pt;}
.ws17_c02324{word-spacing:21.134304pt;}
.ws16_c02324{word-spacing:21.163584pt;}
.wse_c02324{word-spacing:22.141536pt;}
.wsc_c02324{word-spacing:35.206272pt;}
.wsd_c02324{word-spacing:35.223840pt;}
.ws9_c02324{word-spacing:43.279264pt;}
._3_c02324{margin-left:-1.148960pt;}
._5_c02324{width:1.130208pt;}
._1_c02324{width:43.276544pt;}
._4_c02324{width:48.247552pt;}
._0_c02324{width:103.084864pt;}
._2_c02324{width:1793.587200pt;}
.fs5_c02324{font-size:21.440000pt;}
.fs6_c02324{font-size:32.000000pt;}
.fs2_c02324{font-size:37.440000pt;}
.fs3_c02324{font-size:42.560000pt;}
.fs7_c02324{font-size:48.000000pt;}
.fs4_c02324{font-size:53.440000pt;}
.fs1_c02324{font-size:58.560000pt;}
.fs0_c02324{font-size:64.000000pt;}
.y0_c02324{bottom:0.000000pt;}
.y4_c02324{bottom:67.066347pt;}
.y3_c02324{bottom:100.985763pt;}
.y36_c02324{bottom:142.266667pt;}
.y30_c02324{bottom:158.025947pt;}
.y35_c02324{bottom:164.266667pt;}
.y2f_c02324{bottom:177.385883pt;}
.y34_c02324{bottom:187.626667pt;}
.y2e_c02324{bottom:196.826339pt;}
.y33_c02324{bottom:210.986667pt;}
.y2d_c02324{bottom:216.186275pt;}
.y32_c02324{bottom:234.266667pt;}
.y2c_c02324{bottom:235.546211pt;}
.y2b_c02324{bottom:254.906667pt;}
.y31_c02324{bottom:257.386667pt;}
.y24_c02324{bottom:274.985883pt;}
.y23_c02324{bottom:294.426339pt;}
.y2a_c02324{bottom:296.666667pt;}
.y22_c02324{bottom:313.866795pt;}
.y29_c02324{bottom:322.266667pt;}
.y21_c02324{bottom:333.226731pt;}
.y28_c02324{bottom:347.946667pt;}
.y20_c02324{bottom:352.586667pt;}
.y1f_c02324{bottom:369.466667pt;}
.y27_c02324{bottom:373.546667pt;}
.y1e_c02324{bottom:382.586275pt;}
.y26_c02324{bottom:399.146667pt;}
.y1d_c02324{bottom:402.026731pt;}
.y1c_c02324{bottom:421.306667pt;}
.y25_c02324{bottom:422.506667pt;}
.y13_c02324{bottom:437.706667pt;}
.y12_c02324{bottom:448.506667pt;}
.y1b_c02324{bottom:463.546667pt;}
.y11_c02324{bottom:464.186667pt;}
.y10_c02324{bottom:474.986731pt;}
.y1a_c02324{bottom:490.986667pt;}
.yf_c02324{bottom:494.346667pt;}
.ye_c02324{bottom:510.026667pt;}
.y19_c02324{bottom:518.346667pt;}
.yd_c02324{bottom:520.826795pt;}
.yc_c02324{bottom:540.186731pt;}
.y18_c02324{bottom:545.146667pt;}
.yb_c02324{bottom:559.546667pt;}
.y17_c02324{bottom:568.426667pt;}
.ya_c02324{bottom:575.306667pt;}
.y9_c02324{bottom:586.026859pt;}
.y16_c02324{bottom:594.106667pt;}
.y8_c02324{bottom:605.386795pt;}
.y15_c02324{bottom:619.706667pt;}
.y7_c02324{bottom:624.827251pt;}
.y6_c02324{bottom:644.106667pt;}
.y14_c02324{bottom:645.306667pt;}
.y5_c02324{bottom:670.906667pt;}
.y2_c02324{bottom:714.106035pt;}
.y1_c02324{bottom:731.546667pt;}
.h8_c02324{height:21.042187pt;}
.hb_c02324{height:31.406250pt;}
.h3_c02324{height:39.030469pt;}
.h5_c02324{height:39.220000pt;}
.h4_c02324{height:48.294844pt;}
.hc_c02324{height:48.375000pt;}
.h9_c02324{height:53.857500pt;}
.h7_c02324{height:57.473437pt;}
.h6_c02324{height:59.017500pt;}
.ha_c02324{height:59.337500pt;}
.h2_c02324{height:64.500000pt;}
.h1_c02324{height:793.333333pt;}
.h0_c02324{height:793.626667pt;}
.w0_c02324{width:1122.666667pt;}
.x0_c02324{left:0.000000pt;}
.x1_c02324{left:94.467467pt;}
.x3_c02324{left:111.107333pt;}
.x4_c02324{left:243.427333pt;}
.x2_c02324{left:550.068085pt;}
.x5_c02324{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d5170e8316111a5fc8bcd75.woff2')format("woff");}.ff1_c02325{font-family:ff1_c02325;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02325{font-family:ff2_c02325;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02325;src:url('chunks/assets/font_84d571eb8be9328dc7b01b16.woff2')format("woff");}.ff3_c02325{font-family:ff3_c02325;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02325;src:url('chunks/assets/font_46a4caca0baf502203a1bfb5.woff2')format("woff");}.ff4_c02325{font-family:ff4_c02325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02325{vertical-align:-28.440000px;}
.v3_c02325{vertical-align:-11.160000px;}
.v1_c02325{vertical-align:-5.760000px;}
.v0_c02325{vertical-align:0.000000px;}
.v4_c02325{vertical-align:18.000000px;}
.ls15_c02325{letter-spacing:-0.176904px;}
.ls1b_c02325{letter-spacing:-0.144288px;}
.ls20_c02325{letter-spacing:-0.114228px;}
.ls1d_c02325{letter-spacing:-0.102204px;}
.ls1c_c02325{letter-spacing:-0.084168px;}
.ls16_c02325{letter-spacing:-0.070200px;}
.ls1a_c02325{letter-spacing:-0.048096px;}
.ls1e_c02325{letter-spacing:-0.030060px;}
.ls19_c02325{letter-spacing:-0.018036px;}
.ls13_c02325{letter-spacing:-0.014400px;}
.ls18_c02325{letter-spacing:-0.006588px;}
.ls14_c02325{letter-spacing:0.000000px;}
.ls11_c02325{letter-spacing:0.006588px;}
.ls12_c02325{letter-spacing:0.012024px;}
.ls10_c02325{letter-spacing:0.013176px;}
.ls2_c02325{letter-spacing:0.014400px;}
.lsf_c02325{letter-spacing:0.019764px;}
.lse_c02325{letter-spacing:0.026352px;}
.ls0_c02325{letter-spacing:0.032940px;}
.lsc_c02325{letter-spacing:0.039528px;}
.ls8_c02325{letter-spacing:0.052704px;}
.lsd_c02325{letter-spacing:0.059292px;}
.lsa_c02325{letter-spacing:0.065880px;}
.ls7_c02325{letter-spacing:0.072468px;}
.lsb_c02325{letter-spacing:0.079056px;}
.ls6_c02325{letter-spacing:0.085644px;}
.ls1_c02325{letter-spacing:0.092232px;}
.ls1f_c02325{letter-spacing:0.098820px;}
.ls9_c02325{letter-spacing:0.105408px;}
.ls5_c02325{letter-spacing:0.111996px;}
.ls4_c02325{letter-spacing:0.131760px;}
.ls17_c02325{letter-spacing:0.177876px;}
.ls3_c02325{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02325{word-spacing:-16.601760px;}
.ws2_c02325{word-spacing:-16.575408px;}
.ws2c_c02325{word-spacing:-0.282564px;}
.ws1a_c02325{word-spacing:-0.252504px;}
.ws0_c02325{word-spacing:-0.158112px;}
.ws6_c02325{word-spacing:0.000000px;}
.ws26_c02325{word-spacing:0.006588px;}
.ws24_c02325{word-spacing:0.013176px;}
.ws3_c02325{word-spacing:0.014400px;}
.ws25_c02325{word-spacing:0.019764px;}
.ws19_c02325{word-spacing:0.026352px;}
.ws27_c02325{word-spacing:0.032940px;}
.ws5_c02325{word-spacing:0.039528px;}
.ws4_c02325{word-spacing:0.059292px;}
.ws23_c02325{word-spacing:0.065880px;}
.ws11_c02325{word-spacing:0.098820px;}
.ws1f_c02325{word-spacing:0.120240px;}
.ws1b_c02325{word-spacing:0.138276px;}
.ws1d_c02325{word-spacing:0.174348px;}
.ws1e_c02325{word-spacing:0.192384px;}
.ws2d_c02325{word-spacing:0.204408px;}
.ws1c_c02325{word-spacing:0.234468px;}
.ws7_c02325{word-spacing:0.248400px;}
.ws2b_c02325{word-spacing:1.521828px;}
.ws13_c02325{word-spacing:2.542968px;}
.ws12_c02325{word-spacing:2.556144px;}
.ws29_c02325{word-spacing:2.918484px;}
.ws2a_c02325{word-spacing:2.958012px;}
.wsc_c02325{word-spacing:3.603636px;}
.wsb_c02325{word-spacing:3.610224px;}
.ws18_c02325{word-spacing:5.790852px;}
.ws16_c02325{word-spacing:6.528708px;}
.ws17_c02325{word-spacing:6.535296px;}
.ws9_c02325{word-spacing:8.979444px;}
.wsa_c02325{word-spacing:9.005796px;}
.ws10_c02325{word-spacing:12.227328px;}
.wsf_c02325{word-spacing:12.280032px;}
.ws21_c02325{word-spacing:15.817788px;}
.ws22_c02325{word-spacing:15.830964px;}
.ws20_c02325{word-spacing:15.863904px;}
.wsd_c02325{word-spacing:19.059084px;}
.wse_c02325{word-spacing:19.098612px;}
.ws14_c02325{word-spacing:21.634992px;}
.ws15_c02325{word-spacing:22.689072px;}
.ws28_c02325{word-spacing:33.552684px;}
.ws8_c02325{word-spacing:48.689172px;}
._5_c02325{margin-left:-1.150776px;}
._3_c02325{width:1.074600px;}
._1_c02325{width:48.686112px;}
._4_c02325{width:54.278496px;}
._0_c02325{width:115.970472px;}
._2_c02325{width:2017.785600px;}
.fc0_c02325{color:rgb(0,0,0);}
.fs2_c02325{font-size:42.120000px;}
.fs3_c02325{font-size:47.880000px;}
.fs4_c02325{font-size:54.000000px;}
.fs5_c02325{font-size:60.120000px;}
.fs1_c02325{font-size:65.880000px;}
.fs0_c02325{font-size:72.000000px;}
.y0_c02325{bottom:0.000000px;}
.y4_c02325{bottom:75.449640px;}
.y3_c02325{bottom:113.608983px;}
.y2d_c02325{bottom:150.419190px;}
.y32_c02325{bottom:150.600150px;}
.y2c_c02325{bottom:172.289703px;}
.y31_c02325{bottom:176.880000px;}
.y2b_c02325{bottom:194.069631px;}
.y30_c02325{bottom:203.160000px;}
.y2a_c02325{bottom:215.940144px;}
.y2f_c02325{bottom:231.960000px;}
.y29_c02325{bottom:237.720072px;}
.y28_c02325{bottom:259.410000px;}
.y2e_c02325{bottom:260.760000px;}
.y25_c02325{bottom:279.301035px;}
.y24_c02325{bottom:298.200360px;}
.y23_c02325{bottom:317.190270px;}
.y22_c02325{bottom:336.180180px;}
.y27_c02325{bottom:346.530000px;}
.y21_c02325{bottom:355.170090px;}
.y20_c02325{bottom:374.070000px;}
.y26_c02325{bottom:375.420000px;}
.y1d_c02325{bottom:396.659559px;}
.y1f_c02325{bottom:412.770000px;}
.y1c_c02325{bottom:418.530072px;}
.y1b_c02325{bottom:440.220000px;}
.y1e_c02325{bottom:441.570000px;}
.y12_c02325{bottom:462.897939px;}
.y11_c02325{bottom:484.768452px;}
.y10_c02325{bottom:506.548380px;}
.y1a_c02325{bottom:526.710000px;}
.yf_c02325{bottom:528.328308px;}
.ye_c02325{bottom:550.198821px;}
.y19_c02325{bottom:555.600000px;}
.yd_c02325{bottom:571.978749px;}
.y18_c02325{bottom:584.400000px;}
.yc_c02325{bottom:593.849262px;}
.y17_c02325{bottom:613.290000px;}
.yb_c02325{bottom:615.629190px;}
.ya_c02325{bottom:637.499703px;}
.y16_c02325{bottom:642.090000px;}
.y9_c02325{bottom:659.279631px;}
.y15_c02325{bottom:668.370000px;}
.y8_c02325{bottom:681.059559px;}
.y14_c02325{bottom:697.170000px;}
.y7_c02325{bottom:702.930072px;}
.y6_c02325{bottom:724.620000px;}
.y13_c02325{bottom:725.970000px;}
.y5_c02325{bottom:754.770000px;}
.y2_c02325{bottom:803.369289px;}
.y1_c02325{bottom:822.990000px;}
.h3_c02325{height:43.909277px;}
.h5_c02325{height:44.122500px;}
.h4_c02325{height:54.331699px;}
.h8_c02325{height:60.589687px;}
.h7_c02325{height:64.657617px;}
.h6_c02325{height:66.754688px;}
.h2_c02325{height:72.562500px;}
.h1_c02325{height:892.500000px;}
.h0_c02325{height:892.830000px;}
.w0_c02325{width:1263.000000px;}
.x0_c02325{left:0.000000px;}
.x1_c02325{left:106.275900px;}
.x3_c02325{left:124.995750px;}
.x4_c02325{left:273.855750px;}
.x2_c02325{left:618.826596px;}
.x5_c02325{left:826.725750px;}
@media print{
.v2_c02325{vertical-align:-25.280000pt;}
.v3_c02325{vertical-align:-9.920000pt;}
.v1_c02325{vertical-align:-5.120000pt;}
.v0_c02325{vertical-align:0.000000pt;}
.v4_c02325{vertical-align:16.000000pt;}
.ls15_c02325{letter-spacing:-0.157248pt;}
.ls1b_c02325{letter-spacing:-0.128256pt;}
.ls20_c02325{letter-spacing:-0.101536pt;}
.ls1d_c02325{letter-spacing:-0.090848pt;}
.ls1c_c02325{letter-spacing:-0.074816pt;}
.ls16_c02325{letter-spacing:-0.062400pt;}
.ls1a_c02325{letter-spacing:-0.042752pt;}
.ls1e_c02325{letter-spacing:-0.026720pt;}
.ls19_c02325{letter-spacing:-0.016032pt;}
.ls13_c02325{letter-spacing:-0.012800pt;}
.ls18_c02325{letter-spacing:-0.005856pt;}
.ls14_c02325{letter-spacing:0.000000pt;}
.ls11_c02325{letter-spacing:0.005856pt;}
.ls12_c02325{letter-spacing:0.010688pt;}
.ls10_c02325{letter-spacing:0.011712pt;}
.ls2_c02325{letter-spacing:0.012800pt;}
.lsf_c02325{letter-spacing:0.017568pt;}
.lse_c02325{letter-spacing:0.023424pt;}
.ls0_c02325{letter-spacing:0.029280pt;}
.lsc_c02325{letter-spacing:0.035136pt;}
.ls8_c02325{letter-spacing:0.046848pt;}
.lsd_c02325{letter-spacing:0.052704pt;}
.lsa_c02325{letter-spacing:0.058560pt;}
.ls7_c02325{letter-spacing:0.064416pt;}
.lsb_c02325{letter-spacing:0.070272pt;}
.ls6_c02325{letter-spacing:0.076128pt;}
.ls1_c02325{letter-spacing:0.081984pt;}
.ls1f_c02325{letter-spacing:0.087840pt;}
.ls9_c02325{letter-spacing:0.093696pt;}
.ls5_c02325{letter-spacing:0.099552pt;}
.ls4_c02325{letter-spacing:0.117120pt;}
.ls17_c02325{letter-spacing:0.158112pt;}
.ls3_c02325{letter-spacing:0.161728pt;}
.ws1_c02325{word-spacing:-14.757120pt;}
.ws2_c02325{word-spacing:-14.733696pt;}
.ws2c_c02325{word-spacing:-0.251168pt;}
.ws1a_c02325{word-spacing:-0.224448pt;}
.ws0_c02325{word-spacing:-0.140544pt;}
.ws6_c02325{word-spacing:0.000000pt;}
.ws26_c02325{word-spacing:0.005856pt;}
.ws24_c02325{word-spacing:0.011712pt;}
.ws3_c02325{word-spacing:0.012800pt;}
.ws25_c02325{word-spacing:0.017568pt;}
.ws19_c02325{word-spacing:0.023424pt;}
.ws27_c02325{word-spacing:0.029280pt;}
.ws5_c02325{word-spacing:0.035136pt;}
.ws4_c02325{word-spacing:0.052704pt;}
.ws23_c02325{word-spacing:0.058560pt;}
.ws11_c02325{word-spacing:0.087840pt;}
.ws1f_c02325{word-spacing:0.106880pt;}
.ws1b_c02325{word-spacing:0.122912pt;}
.ws1d_c02325{word-spacing:0.154976pt;}
.ws1e_c02325{word-spacing:0.171008pt;}
.ws2d_c02325{word-spacing:0.181696pt;}
.ws1c_c02325{word-spacing:0.208416pt;}
.ws7_c02325{word-spacing:0.220800pt;}
.ws2b_c02325{word-spacing:1.352736pt;}
.ws13_c02325{word-spacing:2.260416pt;}
.ws12_c02325{word-spacing:2.272128pt;}
.ws29_c02325{word-spacing:2.594208pt;}
.ws2a_c02325{word-spacing:2.629344pt;}
.wsc_c02325{word-spacing:3.203232pt;}
.wsb_c02325{word-spacing:3.209088pt;}
.ws18_c02325{word-spacing:5.147424pt;}
.ws16_c02325{word-spacing:5.803296pt;}
.ws17_c02325{word-spacing:5.809152pt;}
.ws9_c02325{word-spacing:7.981728pt;}
.wsa_c02325{word-spacing:8.005152pt;}
.ws10_c02325{word-spacing:10.868736pt;}
.wsf_c02325{word-spacing:10.915584pt;}
.ws21_c02325{word-spacing:14.060256pt;}
.ws22_c02325{word-spacing:14.071968pt;}
.ws20_c02325{word-spacing:14.101248pt;}
.wsd_c02325{word-spacing:16.941408pt;}
.wse_c02325{word-spacing:16.976544pt;}
.ws14_c02325{word-spacing:19.231104pt;}
.ws15_c02325{word-spacing:20.168064pt;}
.ws28_c02325{word-spacing:29.824608pt;}
.ws8_c02325{word-spacing:43.279264pt;}
._5_c02325{margin-left:-1.022912pt;}
._3_c02325{width:0.955200pt;}
._1_c02325{width:43.276544pt;}
._4_c02325{width:48.247552pt;}
._0_c02325{width:103.084864pt;}
._2_c02325{width:1793.587200pt;}
.fs2_c02325{font-size:37.440000pt;}
.fs3_c02325{font-size:42.560000pt;}
.fs4_c02325{font-size:48.000000pt;}
.fs5_c02325{font-size:53.440000pt;}
.fs1_c02325{font-size:58.560000pt;}
.fs0_c02325{font-size:64.000000pt;}
.y0_c02325{bottom:0.000000pt;}
.y4_c02325{bottom:67.066347pt;}
.y3_c02325{bottom:100.985763pt;}
.y2d_c02325{bottom:133.705947pt;}
.y32_c02325{bottom:133.866800pt;}
.y2c_c02325{bottom:153.146403pt;}
.y31_c02325{bottom:157.226667pt;}
.y2b_c02325{bottom:172.506339pt;}
.y30_c02325{bottom:180.586667pt;}
.y2a_c02325{bottom:191.946795pt;}
.y2f_c02325{bottom:206.186667pt;}
.y29_c02325{bottom:211.306731pt;}
.y28_c02325{bottom:230.586667pt;}
.y2e_c02325{bottom:231.786667pt;}
.y25_c02325{bottom:248.267587pt;}
.y24_c02325{bottom:265.066987pt;}
.y23_c02325{bottom:281.946907pt;}
.y22_c02325{bottom:298.826827pt;}
.y27_c02325{bottom:308.026667pt;}
.y21_c02325{bottom:315.706747pt;}
.y20_c02325{bottom:332.506667pt;}
.y26_c02325{bottom:333.706667pt;}
.y1d_c02325{bottom:352.586275pt;}
.y1f_c02325{bottom:366.906667pt;}
.y1c_c02325{bottom:372.026731pt;}
.y1b_c02325{bottom:391.306667pt;}
.y1e_c02325{bottom:392.506667pt;}
.y12_c02325{bottom:411.464835pt;}
.y11_c02325{bottom:430.905291pt;}
.y10_c02325{bottom:450.265227pt;}
.y1a_c02325{bottom:468.186667pt;}
.yf_c02325{bottom:469.625163pt;}
.ye_c02325{bottom:489.065619pt;}
.y19_c02325{bottom:493.866667pt;}
.yd_c02325{bottom:508.425555pt;}
.y18_c02325{bottom:519.466667pt;}
.yc_c02325{bottom:527.866011pt;}
.y17_c02325{bottom:545.146667pt;}
.yb_c02325{bottom:547.225947pt;}
.ya_c02325{bottom:566.666403pt;}
.y16_c02325{bottom:570.746667pt;}
.y9_c02325{bottom:586.026339pt;}
.y15_c02325{bottom:594.106667pt;}
.y8_c02325{bottom:605.386275pt;}
.y14_c02325{bottom:619.706667pt;}
.y7_c02325{bottom:624.826731pt;}
.y6_c02325{bottom:644.106667pt;}
.y13_c02325{bottom:645.306667pt;}
.y5_c02325{bottom:670.906667pt;}
.y2_c02325{bottom:714.106035pt;}
.y1_c02325{bottom:731.546667pt;}
.h3_c02325{height:39.030469pt;}
.h5_c02325{height:39.220000pt;}
.h4_c02325{height:48.294844pt;}
.h8_c02325{height:53.857500pt;}
.h7_c02325{height:57.473437pt;}
.h6_c02325{height:59.337500pt;}
.h2_c02325{height:64.500000pt;}
.h1_c02325{height:793.333333pt;}
.h0_c02325{height:793.626667pt;}
.w0_c02325{width:1122.666667pt;}
.x0_c02325{left:0.000000pt;}
.x1_c02325{left:94.467467pt;}
.x3_c02325{left:111.107333pt;}
.x4_c02325{left:243.427333pt;}
.x2_c02325{left:550.068085pt;}
.x5_c02325{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35007356f8ba60a07dadccd5.woff2')format("woff");}.ff1_c02326{font-family:ff1_c02326;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02326{font-family:ff2_c02326;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02326;src:url('chunks/assets/font_c450c5e0f60c7ba10563e745.woff2')format("woff");}.ff3_c02326{font-family:ff3_c02326;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02326;src:url('chunks/assets/font_8c7341787539a0ca04d8d89f.woff2')format("woff");}.ff4_c02326{font-family:ff4_c02326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02326{vertical-align:-28.440000px;}
.v3_c02326{vertical-align:-16.920000px;}
.v1_c02326{vertical-align:-5.760000px;}
.v0_c02326{vertical-align:0.000000px;}
.ls14_c02326{letter-spacing:-0.176904px;}
.ls16_c02326{letter-spacing:-0.144288px;}
.ls1e_c02326{letter-spacing:-0.126252px;}
.ls1b_c02326{letter-spacing:-0.120240px;}
.ls19_c02326{letter-spacing:-0.108216px;}
.ls18_c02326{letter-spacing:-0.084168px;}
.ls17_c02326{letter-spacing:-0.048096px;}
.ls1a_c02326{letter-spacing:-0.030060px;}
.ls1d_c02326{letter-spacing:-0.024048px;}
.ls15_c02326{letter-spacing:-0.018036px;}
.ls12_c02326{letter-spacing:-0.014400px;}
.ls1c_c02326{letter-spacing:-0.006012px;}
.ls13_c02326{letter-spacing:0.000000px;}
.ls11_c02326{letter-spacing:0.006588px;}
.ls7_c02326{letter-spacing:0.013176px;}
.ls2_c02326{letter-spacing:0.014400px;}
.ls3_c02326{letter-spacing:0.018036px;}
.ls8_c02326{letter-spacing:0.019764px;}
.lsc_c02326{letter-spacing:0.026352px;}
.ls0_c02326{letter-spacing:0.032940px;}
.lse_c02326{letter-spacing:0.039528px;}
.ls9_c02326{letter-spacing:0.046116px;}
.lsd_c02326{letter-spacing:0.052704px;}
.lsa_c02326{letter-spacing:0.059292px;}
.lsb_c02326{letter-spacing:0.065880px;}
.ls10_c02326{letter-spacing:0.072468px;}
.ls1_c02326{letter-spacing:0.092232px;}
.lsf_c02326{letter-spacing:0.098820px;}
.ls6_c02326{letter-spacing:0.131760px;}
.ls4_c02326{letter-spacing:0.177876px;}
.ls5_c02326{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02326{word-spacing:-16.601760px;}
.ws6_c02326{word-spacing:-0.288576px;}
.ws29_c02326{word-spacing:-0.264528px;}
.ws21_c02326{word-spacing:-0.252504px;}
.ws25_c02326{word-spacing:-0.162324px;}
.ws0_c02326{word-spacing:-0.158112px;}
.ws28_c02326{word-spacing:-0.150300px;}
.ws19_c02326{word-spacing:-0.006588px;}
.ws5_c02326{word-spacing:0.000000px;}
.ws2_c02326{word-spacing:0.014400px;}
.ws1e_c02326{word-spacing:0.019764px;}
.ws4_c02326{word-spacing:0.039528px;}
.wsb_c02326{word-spacing:0.046116px;}
.ws3_c02326{word-spacing:0.059292px;}
.ws18_c02326{word-spacing:0.065880px;}
.ws27_c02326{word-spacing:0.108216px;}
.ws2a_c02326{word-spacing:0.114228px;}
.ws26_c02326{word-spacing:0.120240px;}
.ws23_c02326{word-spacing:0.138276px;}
.ws24_c02326{word-spacing:0.174348px;}
.ws2b_c02326{word-spacing:0.216432px;}
.ws22_c02326{word-spacing:0.234468px;}
.wsc_c02326{word-spacing:0.764208px;}
.ws10_c02326{word-spacing:1.844640px;}
.ws8_c02326{word-spacing:2.595672px;}
.wse_c02326{word-spacing:3.261060px;}
.wsd_c02326{word-spacing:3.267648px;}
.ws16_c02326{word-spacing:3.656340px;}
.ws14_c02326{word-spacing:3.985740px;}
.ws15_c02326{word-spacing:4.012092px;}
.ws1c_c02326{word-spacing:5.079348px;}
.wsf_c02326{word-spacing:5.461452px;}
.ws1d_c02326{word-spacing:6.166368px;}
.ws12_c02326{word-spacing:7.253388px;}
.wsa_c02326{word-spacing:9.071676px;}
.ws9_c02326{word-spacing:9.091440px;}
.ws17_c02326{word-spacing:9.770004px;}
.ws11_c02326{word-spacing:13.353876px;}
.ws20_c02326{word-spacing:14.091732px;}
.ws1f_c02326{word-spacing:14.124672px;}
.ws13_c02326{word-spacing:15.527916px;}
.ws1a_c02326{word-spacing:19.157904px;}
.ws1b_c02326{word-spacing:24.145020px;}
.ws7_c02326{word-spacing:48.689172px;}
._3_c02326{margin-left:-1.292580px;}
._4_c02326{width:1.036440px;}
._1_c02326{width:48.686112px;}
._0_c02326{width:115.970472px;}
._2_c02326{width:2017.785600px;}
.fc0_c02326{color:rgb(0,0,0);}
.fs5_c02326{font-size:36.000000px;}
.fs2_c02326{font-size:42.120000px;}
.fs3_c02326{font-size:47.880000px;}
.fs4_c02326{font-size:60.120000px;}
.fs1_c02326{font-size:65.880000px;}
.fs0_c02326{font-size:72.000000px;}
.y0_c02326{bottom:0.000000px;}
.y4_c02326{bottom:75.449640px;}
.y3_c02326{bottom:113.608983px;}
.y2a_c02326{bottom:145.559559px;}
.y29_c02326{bottom:167.339487px;}
.y28_c02326{bottom:189.210000px;}
.y27_c02326{bottom:208.110000px;}
.y26_c02326{bottom:222.865806px;}
.y25_c02326{bottom:244.736319px;}
.y24_c02326{bottom:266.516247px;}
.y3a_c02326{bottom:273.360000px;}
.y23_c02326{bottom:288.386760px;}
.y39_c02326{bottom:309.450000px;}
.y22_c02326{bottom:310.166688px;}
.y21_c02326{bottom:331.946616px;}
.y38_c02326{bottom:344.280000px;}
.y20_c02326{bottom:353.817129px;}
.y1f_c02326{bottom:375.597057px;}
.y37_c02326{bottom:379.110000px;}
.y1e_c02326{bottom:397.467570px;}
.y36_c02326{bottom:413.940000px;}
.y1d_c02326{bottom:419.247498px;}
.ye_c02326{bottom:430.136400px;}
.y1c_c02326{bottom:441.118011px;}
.y35_c02326{bottom:442.830000px;}
.y1b_c02326{bottom:462.897939px;}
.yd_c02326{bottom:466.946850px;}
.y34_c02326{bottom:471.630000px;}
.y1a_c02326{bottom:484.768452px;}
.y33_c02326{bottom:500.520000px;}
.yc_c02326{bottom:503.757300px;}
.y19_c02326{bottom:506.548380px;}
.y18_c02326{bottom:528.328308px;}
.y32_c02326{bottom:529.320000px;}
.yb_c02326{bottom:540.567750px;}
.y17_c02326{bottom:550.198821px;}
.y31_c02326{bottom:558.120000px;}
.y16_c02326{bottom:571.978749px;}
.ya_c02326{bottom:577.378200px;}
.y30_c02326{bottom:587.010000px;}
.y15_c02326{bottom:593.849262px;}
.y9_c02326{bottom:614.188650px;}
.y14_c02326{bottom:615.629190px;}
.y2f_c02326{bottom:615.810000px;}
.y13_c02326{bottom:637.499703px;}
.y2e_c02326{bottom:644.700000px;}
.y8_c02326{bottom:650.999100px;}
.y12_c02326{bottom:659.279631px;}
.y2d_c02326{bottom:670.890000px;}
.y11_c02326{bottom:681.059559px;}
.y7_c02326{bottom:687.809550px;}
.y2c_c02326{bottom:697.170000px;}
.y10_c02326{bottom:702.930072px;}
.y6_c02326{bottom:724.620000px;}
.y2b_c02326{bottom:725.970000px;}
.yf_c02326{bottom:729.120000px;}
.y5_c02326{bottom:754.770000px;}
.y2_c02326{bottom:803.369289px;}
.y1_c02326{bottom:822.990000px;}
.h9_c02326{height:35.332031px;}
.h3_c02326{height:43.909277px;}
.h5_c02326{height:44.122500px;}
.h7_c02326{height:48.754688px;}
.h4_c02326{height:54.331699px;}
.ha_c02326{height:60.589687px;}
.h8_c02326{height:64.657617px;}
.h6_c02326{height:66.394687px;}
.h2_c02326{height:72.562500px;}
.h1_c02326{height:892.500000px;}
.h0_c02326{height:892.830000px;}
.w0_c02326{width:1263.000000px;}
.x0_c02326{left:0.000000px;}
.x1_c02326{left:106.275900px;}
.x3_c02326{left:124.995750px;}
.x4_c02326{left:167.565750px;}
.x5_c02326{left:273.855750px;}
.x2_c02326{left:618.826596px;}
.x6_c02326{left:826.725750px;}
@media print{
.v2_c02326{vertical-align:-25.280000pt;}
.v3_c02326{vertical-align:-15.040000pt;}
.v1_c02326{vertical-align:-5.120000pt;}
.v0_c02326{vertical-align:0.000000pt;}
.ls14_c02326{letter-spacing:-0.157248pt;}
.ls16_c02326{letter-spacing:-0.128256pt;}
.ls1e_c02326{letter-spacing:-0.112224pt;}
.ls1b_c02326{letter-spacing:-0.106880pt;}
.ls19_c02326{letter-spacing:-0.096192pt;}
.ls18_c02326{letter-spacing:-0.074816pt;}
.ls17_c02326{letter-spacing:-0.042752pt;}
.ls1a_c02326{letter-spacing:-0.026720pt;}
.ls1d_c02326{letter-spacing:-0.021376pt;}
.ls15_c02326{letter-spacing:-0.016032pt;}
.ls12_c02326{letter-spacing:-0.012800pt;}
.ls1c_c02326{letter-spacing:-0.005344pt;}
.ls13_c02326{letter-spacing:0.000000pt;}
.ls11_c02326{letter-spacing:0.005856pt;}
.ls7_c02326{letter-spacing:0.011712pt;}
.ls2_c02326{letter-spacing:0.012800pt;}
.ls3_c02326{letter-spacing:0.016032pt;}
.ls8_c02326{letter-spacing:0.017568pt;}
.lsc_c02326{letter-spacing:0.023424pt;}
.ls0_c02326{letter-spacing:0.029280pt;}
.lse_c02326{letter-spacing:0.035136pt;}
.ls9_c02326{letter-spacing:0.040992pt;}
.lsd_c02326{letter-spacing:0.046848pt;}
.lsa_c02326{letter-spacing:0.052704pt;}
.lsb_c02326{letter-spacing:0.058560pt;}
.ls10_c02326{letter-spacing:0.064416pt;}
.ls1_c02326{letter-spacing:0.081984pt;}
.lsf_c02326{letter-spacing:0.087840pt;}
.ls6_c02326{letter-spacing:0.117120pt;}
.ls4_c02326{letter-spacing:0.158112pt;}
.ls5_c02326{letter-spacing:0.161728pt;}
.ws1_c02326{word-spacing:-14.757120pt;}
.ws6_c02326{word-spacing:-0.256512pt;}
.ws29_c02326{word-spacing:-0.235136pt;}
.ws21_c02326{word-spacing:-0.224448pt;}
.ws25_c02326{word-spacing:-0.144288pt;}
.ws0_c02326{word-spacing:-0.140544pt;}
.ws28_c02326{word-spacing:-0.133600pt;}
.ws19_c02326{word-spacing:-0.005856pt;}
.ws5_c02326{word-spacing:0.000000pt;}
.ws2_c02326{word-spacing:0.012800pt;}
.ws1e_c02326{word-spacing:0.017568pt;}
.ws4_c02326{word-spacing:0.035136pt;}
.wsb_c02326{word-spacing:0.040992pt;}
.ws3_c02326{word-spacing:0.052704pt;}
.ws18_c02326{word-spacing:0.058560pt;}
.ws27_c02326{word-spacing:0.096192pt;}
.ws2a_c02326{word-spacing:0.101536pt;}
.ws26_c02326{word-spacing:0.106880pt;}
.ws23_c02326{word-spacing:0.122912pt;}
.ws24_c02326{word-spacing:0.154976pt;}
.ws2b_c02326{word-spacing:0.192384pt;}
.ws22_c02326{word-spacing:0.208416pt;}
.wsc_c02326{word-spacing:0.679296pt;}
.ws10_c02326{word-spacing:1.639680pt;}
.ws8_c02326{word-spacing:2.307264pt;}
.wse_c02326{word-spacing:2.898720pt;}
.wsd_c02326{word-spacing:2.904576pt;}
.ws16_c02326{word-spacing:3.250080pt;}
.ws14_c02326{word-spacing:3.542880pt;}
.ws15_c02326{word-spacing:3.566304pt;}
.ws1c_c02326{word-spacing:4.514976pt;}
.wsf_c02326{word-spacing:4.854624pt;}
.ws1d_c02326{word-spacing:5.481216pt;}
.ws12_c02326{word-spacing:6.447456pt;}
.wsa_c02326{word-spacing:8.063712pt;}
.ws9_c02326{word-spacing:8.081280pt;}
.ws17_c02326{word-spacing:8.684448pt;}
.ws11_c02326{word-spacing:11.870112pt;}
.ws20_c02326{word-spacing:12.525984pt;}
.ws1f_c02326{word-spacing:12.555264pt;}
.ws13_c02326{word-spacing:13.802592pt;}
.ws1a_c02326{word-spacing:17.029248pt;}
.ws1b_c02326{word-spacing:21.462240pt;}
.ws7_c02326{word-spacing:43.279264pt;}
._3_c02326{margin-left:-1.148960pt;}
._4_c02326{width:0.921280pt;}
._1_c02326{width:43.276544pt;}
._0_c02326{width:103.084864pt;}
._2_c02326{width:1793.587200pt;}
.fs5_c02326{font-size:32.000000pt;}
.fs2_c02326{font-size:37.440000pt;}
.fs3_c02326{font-size:42.560000pt;}
.fs4_c02326{font-size:53.440000pt;}
.fs1_c02326{font-size:58.560000pt;}
.fs0_c02326{font-size:64.000000pt;}
.y0_c02326{bottom:0.000000pt;}
.y4_c02326{bottom:67.066347pt;}
.y3_c02326{bottom:100.985763pt;}
.y2a_c02326{bottom:129.386275pt;}
.y29_c02326{bottom:148.746211pt;}
.y28_c02326{bottom:168.186667pt;}
.y27_c02326{bottom:184.986667pt;}
.y26_c02326{bottom:198.102939pt;}
.y25_c02326{bottom:217.543395pt;}
.y24_c02326{bottom:236.903331pt;}
.y3a_c02326{bottom:242.986667pt;}
.y23_c02326{bottom:256.343787pt;}
.y39_c02326{bottom:275.066667pt;}
.y22_c02326{bottom:275.703723pt;}
.y21_c02326{bottom:295.063659pt;}
.y38_c02326{bottom:306.026667pt;}
.y20_c02326{bottom:314.504115pt;}
.y1f_c02326{bottom:333.864051pt;}
.y37_c02326{bottom:336.986667pt;}
.y1e_c02326{bottom:353.304507pt;}
.y36_c02326{bottom:367.946667pt;}
.y1d_c02326{bottom:372.664443pt;}
.ye_c02326{bottom:382.343467pt;}
.y1c_c02326{bottom:392.104899pt;}
.y35_c02326{bottom:393.626667pt;}
.y1b_c02326{bottom:411.464835pt;}
.yd_c02326{bottom:415.063867pt;}
.y34_c02326{bottom:419.226667pt;}
.y1a_c02326{bottom:430.905291pt;}
.y33_c02326{bottom:444.906667pt;}
.yc_c02326{bottom:447.784267pt;}
.y19_c02326{bottom:450.265227pt;}
.y18_c02326{bottom:469.625163pt;}
.y32_c02326{bottom:470.506667pt;}
.yb_c02326{bottom:480.504667pt;}
.y17_c02326{bottom:489.065619pt;}
.y31_c02326{bottom:496.106667pt;}
.y16_c02326{bottom:508.425555pt;}
.ya_c02326{bottom:513.225067pt;}
.y30_c02326{bottom:521.786667pt;}
.y15_c02326{bottom:527.866011pt;}
.y9_c02326{bottom:545.945467pt;}
.y14_c02326{bottom:547.225947pt;}
.y2f_c02326{bottom:547.386667pt;}
.y13_c02326{bottom:566.666403pt;}
.y2e_c02326{bottom:573.066667pt;}
.y8_c02326{bottom:578.665867pt;}
.y12_c02326{bottom:586.026339pt;}
.y2d_c02326{bottom:596.346667pt;}
.y11_c02326{bottom:605.386275pt;}
.y7_c02326{bottom:611.386267pt;}
.y2c_c02326{bottom:619.706667pt;}
.y10_c02326{bottom:624.826731pt;}
.y6_c02326{bottom:644.106667pt;}
.y2b_c02326{bottom:645.306667pt;}
.yf_c02326{bottom:648.106667pt;}
.y5_c02326{bottom:670.906667pt;}
.y2_c02326{bottom:714.106035pt;}
.y1_c02326{bottom:731.546667pt;}
.h9_c02326{height:31.406250pt;}
.h3_c02326{height:39.030469pt;}
.h5_c02326{height:39.220000pt;}
.h7_c02326{height:43.337500pt;}
.h4_c02326{height:48.294844pt;}
.ha_c02326{height:53.857500pt;}
.h8_c02326{height:57.473437pt;}
.h6_c02326{height:59.017500pt;}
.h2_c02326{height:64.500000pt;}
.h1_c02326{height:793.333333pt;}
.h0_c02326{height:793.626667pt;}
.w0_c02326{width:1122.666667pt;}
.x0_c02326{left:0.000000pt;}
.x1_c02326{left:94.467467pt;}
.x3_c02326{left:111.107333pt;}
.x4_c02326{left:148.947333pt;}
.x5_c02326{left:243.427333pt;}
.x2_c02326{left:550.068085pt;}
.x6_c02326{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4335330e75c9df982e877686.woff2')format("woff");}.ff1_c02327{font-family:ff1_c02327;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02327{font-family:ff2_c02327;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02327;src:url('chunks/assets/font_2ec3d7c33e440d0518200aa0.woff2')format("woff");}.ff3_c02327{font-family:ff3_c02327;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02327;src:url('chunks/assets/font_c2ac4693db52b7212f23e8d9.woff2')format("woff");}.ff4_c02327{font-family:ff4_c02327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02327{vertical-align:-28.440000px;}
.v3_c02327{vertical-align:-16.920000px;}
.v1_c02327{vertical-align:-5.760000px;}
.v0_c02327{vertical-align:0.000000px;}
.v4_c02327{vertical-align:18.000000px;}
.ls10_c02327{letter-spacing:-0.176904px;}
.ls16_c02327{letter-spacing:-0.126252px;}
.ls15_c02327{letter-spacing:-0.114228px;}
.ls14_c02327{letter-spacing:-0.102204px;}
.ls19_c02327{letter-spacing:-0.090180px;}
.ls18_c02327{letter-spacing:-0.078156px;}
.ls17_c02327{letter-spacing:-0.039528px;}
.ls12_c02327{letter-spacing:-0.018036px;}
.lse_c02327{letter-spacing:-0.014400px;}
.ls13_c02327{letter-spacing:-0.012024px;}
.lsf_c02327{letter-spacing:0.000000px;}
.lsb_c02327{letter-spacing:0.013176px;}
.ls2_c02327{letter-spacing:0.014400px;}
.ls3_c02327{letter-spacing:0.018036px;}
.ls7_c02327{letter-spacing:0.019764px;}
.ls0_c02327{letter-spacing:0.032940px;}
.lsa_c02327{letter-spacing:0.039528px;}
.lsd_c02327{letter-spacing:0.046116px;}
.lsc_c02327{letter-spacing:0.052704px;}
.ls6_c02327{letter-spacing:0.059292px;}
.ls9_c02327{letter-spacing:0.065880px;}
.ls8_c02327{letter-spacing:0.072468px;}
.ls1_c02327{letter-spacing:0.092232px;}
.ls5_c02327{letter-spacing:0.131760px;}
.ls11_c02327{letter-spacing:0.177876px;}
.ls4_c02327{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02327{word-spacing:-16.601760px;}
.ws6_c02327{word-spacing:-0.288576px;}
.ws10_c02327{word-spacing:-0.258516px;}
.wsf_c02327{word-spacing:-0.252504px;}
.ws0_c02327{word-spacing:-0.158112px;}
.ws5_c02327{word-spacing:0.000000px;}
.ws2_c02327{word-spacing:0.014400px;}
.wsa_c02327{word-spacing:0.019764px;}
.wsc_c02327{word-spacing:0.026352px;}
.ws16_c02327{word-spacing:0.032940px;}
.ws4_c02327{word-spacing:0.039528px;}
.ws22_c02327{word-spacing:0.046116px;}
.wsb_c02327{word-spacing:0.052704px;}
.ws3_c02327{word-spacing:0.059292px;}
.ws23_c02327{word-spacing:0.168336px;}
.ws24_c02327{word-spacing:0.180360px;}
.ws11_c02327{word-spacing:0.192384px;}
.ws12_c02327{word-spacing:0.204408px;}
.ws17_c02327{word-spacing:0.216432px;}
.ws1f_c02327{word-spacing:0.487512px;}
.ws20_c02327{word-spacing:2.938248px;}
.wse_c02327{word-spacing:3.234708px;}
.wsd_c02327{word-spacing:3.307176px;}
.ws1a_c02327{word-spacing:3.616812px;}
.ws21_c02327{word-spacing:3.623400px;}
.ws19_c02327{word-spacing:3.676104px;}
.ws18_c02327{word-spacing:4.367844px;}
.ws1c_c02327{word-spacing:4.697244px;}
.ws1b_c02327{word-spacing:4.723596px;}
.ws8_c02327{word-spacing:9.387900px;}
.ws13_c02327{word-spacing:13.749156px;}
.ws1e_c02327{word-spacing:23.802444px;}
.ws15_c02327{word-spacing:25.917192px;}
.ws14_c02327{word-spacing:25.969896px;}
.ws9_c02327{word-spacing:27.788184px;}
.ws1d_c02327{word-spacing:30.627612px;}
.ws7_c02327{word-spacing:48.689172px;}
._3_c02327{margin-left:-1.292580px;}
._5_c02327{width:1.133136px;}
._1_c02327{width:48.686112px;}
._4_c02327{width:54.278496px;}
._0_c02327{width:115.970472px;}
._2_c02327{width:2017.785600px;}
.fc0_c02327{color:rgb(0,0,0);}
.fs5_c02327{font-size:24.120000px;}
.fs2_c02327{font-size:42.120000px;}
.fs3_c02327{font-size:47.880000px;}
.fs4_c02327{font-size:60.120000px;}
.fs1_c02327{font-size:65.880000px;}
.fs0_c02327{font-size:72.000000px;}
.y0_c02327{bottom:0.000000px;}
.y4_c02327{bottom:75.449640px;}
.y3_c02327{bottom:113.608983px;}
.y2b_c02327{bottom:141.870000px;}
.y2a_c02327{bottom:153.929046px;}
.y29_c02327{bottom:175.799559px;}
.y28_c02327{bottom:197.579487px;}
.y27_c02327{bottom:219.450000px;}
.y26_c02327{bottom:237.090000px;}
.y25_c02327{bottom:249.149118px;}
.y24_c02327{bottom:271.019631px;}
.y32_c02327{bottom:291.990000px;}
.y23_c02327{bottom:292.799559px;}
.y22_c02327{bottom:314.579487px;}
.y31_c02327{bottom:328.080000px;}
.y21_c02327{bottom:336.450000px;}
.y30_c02327{bottom:348.690000px;}
.y20_c02327{bottom:354.090000px;}
.y1f_c02327{bottom:366.149487px;}
.y2f_c02327{bottom:378.750000px;}
.y1e_c02327{bottom:388.020000px;}
.y1d_c02327{bottom:405.660000px;}
.y2e_c02327{bottom:407.550000px;}
.y1c_c02327{bottom:417.810144px;}
.y2d_c02327{bottom:433.830000px;}
.y1b_c02327{bottom:439.590072px;}
.y1a_c02327{bottom:461.280000px;}
.y2c_c02327{bottom:462.630000px;}
.y17_c02327{bottom:483.959046px;}
.y16_c02327{bottom:505.829559px;}
.y19_c02327{bottom:520.590000px;}
.y15_c02327{bottom:527.609487px;}
.y14_c02327{bottom:549.390000px;}
.y18_c02327{bottom:550.740000px;}
.yd_c02327{bottom:571.978749px;}
.y13_c02327{bottom:581.790000px;}
.yc_c02327{bottom:593.849262px;}
.y12_c02327{bottom:610.680000px;}
.yb_c02327{bottom:615.629190px;}
.ya_c02327{bottom:637.499703px;}
.y11_c02327{bottom:639.480000px;}
.y9_c02327{bottom:659.279631px;}
.y10_c02327{bottom:668.370000px;}
.y8_c02327{bottom:681.059559px;}
.yf_c02327{bottom:697.170000px;}
.y7_c02327{bottom:702.930072px;}
.y6_c02327{bottom:724.620000px;}
.ye_c02327{bottom:725.970000px;}
.y5_c02327{bottom:754.770000px;}
.y2_c02327{bottom:803.369289px;}
.y1_c02327{bottom:822.990000px;}
.h9_c02327{height:23.672461px;}
.h3_c02327{height:43.909277px;}
.h5_c02327{height:44.122500px;}
.h4_c02327{height:54.331699px;}
.h8_c02327{height:60.589687px;}
.h7_c02327{height:64.657617px;}
.h6_c02327{height:66.754688px;}
.h2_c02327{height:72.562500px;}
.h1_c02327{height:892.500000px;}
.h0_c02327{height:892.830000px;}
.w0_c02327{width:1263.000000px;}
.x0_c02327{left:0.000000px;}
.x1_c02327{left:106.275900px;}
.x3_c02327{left:124.995750px;}
.x4_c02327{left:273.855750px;}
.x2_c02327{left:618.826596px;}
.x5_c02327{left:826.725750px;}
@media print{
.v2_c02327{vertical-align:-25.280000pt;}
.v3_c02327{vertical-align:-15.040000pt;}
.v1_c02327{vertical-align:-5.120000pt;}
.v0_c02327{vertical-align:0.000000pt;}
.v4_c02327{vertical-align:16.000000pt;}
.ls10_c02327{letter-spacing:-0.157248pt;}
.ls16_c02327{letter-spacing:-0.112224pt;}
.ls15_c02327{letter-spacing:-0.101536pt;}
.ls14_c02327{letter-spacing:-0.090848pt;}
.ls19_c02327{letter-spacing:-0.080160pt;}
.ls18_c02327{letter-spacing:-0.069472pt;}
.ls17_c02327{letter-spacing:-0.035136pt;}
.ls12_c02327{letter-spacing:-0.016032pt;}
.lse_c02327{letter-spacing:-0.012800pt;}
.ls13_c02327{letter-spacing:-0.010688pt;}
.lsf_c02327{letter-spacing:0.000000pt;}
.lsb_c02327{letter-spacing:0.011712pt;}
.ls2_c02327{letter-spacing:0.012800pt;}
.ls3_c02327{letter-spacing:0.016032pt;}
.ls7_c02327{letter-spacing:0.017568pt;}
.ls0_c02327{letter-spacing:0.029280pt;}
.lsa_c02327{letter-spacing:0.035136pt;}
.lsd_c02327{letter-spacing:0.040992pt;}
.lsc_c02327{letter-spacing:0.046848pt;}
.ls6_c02327{letter-spacing:0.052704pt;}
.ls9_c02327{letter-spacing:0.058560pt;}
.ls8_c02327{letter-spacing:0.064416pt;}
.ls1_c02327{letter-spacing:0.081984pt;}
.ls5_c02327{letter-spacing:0.117120pt;}
.ls11_c02327{letter-spacing:0.158112pt;}
.ls4_c02327{letter-spacing:0.161728pt;}
.ws1_c02327{word-spacing:-14.757120pt;}
.ws6_c02327{word-spacing:-0.256512pt;}
.ws10_c02327{word-spacing:-0.229792pt;}
.wsf_c02327{word-spacing:-0.224448pt;}
.ws0_c02327{word-spacing:-0.140544pt;}
.ws5_c02327{word-spacing:0.000000pt;}
.ws2_c02327{word-spacing:0.012800pt;}
.wsa_c02327{word-spacing:0.017568pt;}
.wsc_c02327{word-spacing:0.023424pt;}
.ws16_c02327{word-spacing:0.029280pt;}
.ws4_c02327{word-spacing:0.035136pt;}
.ws22_c02327{word-spacing:0.040992pt;}
.wsb_c02327{word-spacing:0.046848pt;}
.ws3_c02327{word-spacing:0.052704pt;}
.ws23_c02327{word-spacing:0.149632pt;}
.ws24_c02327{word-spacing:0.160320pt;}
.ws11_c02327{word-spacing:0.171008pt;}
.ws12_c02327{word-spacing:0.181696pt;}
.ws17_c02327{word-spacing:0.192384pt;}
.ws1f_c02327{word-spacing:0.433344pt;}
.ws20_c02327{word-spacing:2.611776pt;}
.wse_c02327{word-spacing:2.875296pt;}
.wsd_c02327{word-spacing:2.939712pt;}
.ws1a_c02327{word-spacing:3.214944pt;}
.ws21_c02327{word-spacing:3.220800pt;}
.ws19_c02327{word-spacing:3.267648pt;}
.ws18_c02327{word-spacing:3.882528pt;}
.ws1c_c02327{word-spacing:4.175328pt;}
.ws1b_c02327{word-spacing:4.198752pt;}
.ws8_c02327{word-spacing:8.344800pt;}
.ws13_c02327{word-spacing:12.221472pt;}
.ws1e_c02327{word-spacing:21.157728pt;}
.ws15_c02327{word-spacing:23.037504pt;}
.ws14_c02327{word-spacing:23.084352pt;}
.ws9_c02327{word-spacing:24.700608pt;}
.ws1d_c02327{word-spacing:27.224544pt;}
.ws7_c02327{word-spacing:43.279264pt;}
._3_c02327{margin-left:-1.148960pt;}
._5_c02327{width:1.007232pt;}
._1_c02327{width:43.276544pt;}
._4_c02327{width:48.247552pt;}
._0_c02327{width:103.084864pt;}
._2_c02327{width:1793.587200pt;}
.fs5_c02327{font-size:21.440000pt;}
.fs2_c02327{font-size:37.440000pt;}
.fs3_c02327{font-size:42.560000pt;}
.fs4_c02327{font-size:53.440000pt;}
.fs1_c02327{font-size:58.560000pt;}
.fs0_c02327{font-size:64.000000pt;}
.y0_c02327{bottom:0.000000pt;}
.y4_c02327{bottom:67.066347pt;}
.y3_c02327{bottom:100.985763pt;}
.y2b_c02327{bottom:126.106667pt;}
.y2a_c02327{bottom:136.825819pt;}
.y29_c02327{bottom:156.266275pt;}
.y28_c02327{bottom:175.626211pt;}
.y27_c02327{bottom:195.066667pt;}
.y26_c02327{bottom:210.746667pt;}
.y25_c02327{bottom:221.465883pt;}
.y24_c02327{bottom:240.906339pt;}
.y32_c02327{bottom:259.546667pt;}
.y23_c02327{bottom:260.266275pt;}
.y22_c02327{bottom:279.626211pt;}
.y31_c02327{bottom:291.626667pt;}
.y21_c02327{bottom:299.066667pt;}
.y30_c02327{bottom:309.946667pt;}
.y20_c02327{bottom:314.746667pt;}
.y1f_c02327{bottom:325.466211pt;}
.y2f_c02327{bottom:336.666667pt;}
.y1e_c02327{bottom:344.906667pt;}
.y1d_c02327{bottom:360.586667pt;}
.y2e_c02327{bottom:362.266667pt;}
.y1c_c02327{bottom:371.386795pt;}
.y2d_c02327{bottom:385.626667pt;}
.y1b_c02327{bottom:390.746731pt;}
.y1a_c02327{bottom:410.026667pt;}
.y2c_c02327{bottom:411.226667pt;}
.y17_c02327{bottom:430.185819pt;}
.y16_c02327{bottom:449.626275pt;}
.y19_c02327{bottom:462.746667pt;}
.y15_c02327{bottom:468.986211pt;}
.y14_c02327{bottom:488.346667pt;}
.y18_c02327{bottom:489.546667pt;}
.yd_c02327{bottom:508.425555pt;}
.y13_c02327{bottom:517.146667pt;}
.yc_c02327{bottom:527.866011pt;}
.y12_c02327{bottom:542.826667pt;}
.yb_c02327{bottom:547.225947pt;}
.ya_c02327{bottom:566.666403pt;}
.y11_c02327{bottom:568.426667pt;}
.y9_c02327{bottom:586.026339pt;}
.y10_c02327{bottom:594.106667pt;}
.y8_c02327{bottom:605.386275pt;}
.yf_c02327{bottom:619.706667pt;}
.y7_c02327{bottom:624.826731pt;}
.y6_c02327{bottom:644.106667pt;}
.ye_c02327{bottom:645.306667pt;}
.y5_c02327{bottom:670.906667pt;}
.y2_c02327{bottom:714.106035pt;}
.y1_c02327{bottom:731.546667pt;}
.h9_c02327{height:21.042187pt;}
.h3_c02327{height:39.030469pt;}
.h5_c02327{height:39.220000pt;}
.h4_c02327{height:48.294844pt;}
.h8_c02327{height:53.857500pt;}
.h7_c02327{height:57.473437pt;}
.h6_c02327{height:59.337500pt;}
.h2_c02327{height:64.500000pt;}
.h1_c02327{height:793.333333pt;}
.h0_c02327{height:793.626667pt;}
.w0_c02327{width:1122.666667pt;}
.x0_c02327{left:0.000000pt;}
.x1_c02327{left:94.467467pt;}
.x3_c02327{left:111.107333pt;}
.x4_c02327{left:243.427333pt;}
.x2_c02327{left:550.068085pt;}
.x5_c02327{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3dd8edeb01d0d15dee4c2ca.woff2')format("woff");}.ff1_c02328{font-family:ff1_c02328;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02328{font-family:ff2_c02328;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02328;src:url('chunks/assets/font_2ec3d7c33e440d0518200aa0.woff2')format("woff");}.ff3_c02328{font-family:ff3_c02328;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02328;src:url('chunks/assets/font_f6f8c30123df6929c82895a8.woff2')format("woff");}.ff4_c02328{font-family:ff4_c02328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02328{vertical-align:-28.440000px;}
.v3_c02328{vertical-align:-16.920000px;}
.v1_c02328{vertical-align:-5.760000px;}
.v0_c02328{vertical-align:0.000000px;}
.v4_c02328{vertical-align:18.000000px;}
.lsf_c02328{letter-spacing:-0.176904px;}
.ls11_c02328{letter-spacing:-0.102204px;}
.lsd_c02328{letter-spacing:-0.014400px;}
.lse_c02328{letter-spacing:0.000000px;}
.ls2_c02328{letter-spacing:0.014400px;}
.ls3_c02328{letter-spacing:0.018036px;}
.ls7_c02328{letter-spacing:0.019764px;}
.lsc_c02328{letter-spacing:0.026352px;}
.ls0_c02328{letter-spacing:0.032940px;}
.ls8_c02328{letter-spacing:0.039528px;}
.ls6_c02328{letter-spacing:0.046116px;}
.ls9_c02328{letter-spacing:0.052704px;}
.lsa_c02328{letter-spacing:0.059292px;}
.lsb_c02328{letter-spacing:0.065880px;}
.ls1_c02328{letter-spacing:0.092232px;}
.ls5_c02328{letter-spacing:0.131760px;}
.ls10_c02328{letter-spacing:0.177876px;}
.ls4_c02328{letter-spacing:0.181944px;}
.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;}
}
.ws1_c02328{word-spacing:-16.601760px;}
.ws6_c02328{word-spacing:-0.288576px;}
.ws0_c02328{word-spacing:-0.158112px;}
.ws5_c02328{word-spacing:0.000000px;}
.ws2_c02328{word-spacing:0.014400px;}
.ws14_c02328{word-spacing:0.032940px;}
.ws4_c02328{word-spacing:0.039528px;}
.ws3_c02328{word-spacing:0.059292px;}
.ws15_c02328{word-spacing:0.192384px;}
.wsf_c02328{word-spacing:1.139724px;}
.ws8_c02328{word-spacing:3.280824px;}
.wse_c02328{word-spacing:4.743360px;}
.ws10_c02328{word-spacing:8.636868px;}
.ws13_c02328{word-spacing:14.816412px;}
.ws11_c02328{word-spacing:15.527916px;}
.ws12_c02328{word-spacing:15.541092px;}
.ws9_c02328{word-spacing:18.070884px;}
.wsa_c02328{word-spacing:19.131552px;}
.wsb_c02328{word-spacing:20.916900px;}
.ws7_c02328{word-spacing:48.689172px;}
.wsc_c02328{word-spacing:54.383940px;}
.wsd_c02328{word-spacing:54.423468px;}
._3_c02328{margin-left:-1.292580px;}
._5_c02328{width:1.326312px;}
._1_c02328{width:48.686112px;}
._4_c02328{width:54.278496px;}
._0_c02328{width:115.970472px;}
._2_c02328{width:2017.785600px;}
.fc0_c02328{color:rgb(0,0,0);}
.fs5_c02328{font-size:24.120000px;}
.fs2_c02328{font-size:42.120000px;}
.fs3_c02328{font-size:47.880000px;}
.fs4_c02328{font-size:60.120000px;}
.fs1_c02328{font-size:65.880000px;}
.fs0_c02328{font-size:72.000000px;}
.y0_c02328{bottom:0.000000px;}
.y4_c02328{bottom:75.449640px;}
.y3_c02328{bottom:113.608983px;}
.y24_c02328{bottom:148.707426px;}
.y23_c02328{bottom:170.577939px;}
.y22_c02328{bottom:192.357867px;}
.y21_c02328{bottom:214.228380px;}
.y20_c02328{bottom:236.008308px;}
.y1f_c02328{bottom:257.878821px;}
.y1e_c02328{bottom:279.658749px;}
.y1d_c02328{bottom:301.529262px;}
.y1c_c02328{bottom:323.309190px;}
.y1b_c02328{bottom:345.089118px;}
.y1a_c02328{bottom:366.959631px;}
.y19_c02328{bottom:388.739559px;}
.y18_c02328{bottom:410.610072px;}
.y17_c02328{bottom:432.390000px;}
.y13_c02328{bottom:454.978308px;}
.y12_c02328{bottom:476.758236px;}
.y11_c02328{bottom:498.628749px;}
.y10_c02328{bottom:520.408677px;}
.yf_c02328{bottom:542.279190px;}
.ye_c02328{bottom:564.059118px;}
.yd_c02328{bottom:585.929631px;}
.yc_c02328{bottom:607.709559px;}
.yb_c02328{bottom:629.489487px;}
.ya_c02328{bottom:651.360000px;}
.y16_c02328{bottom:655.050000px;}
.y9_c02328{bottom:669.000000px;}
.y8_c02328{bottom:681.059559px;}
.y15_c02328{bottom:691.140000px;}
.y7_c02328{bottom:702.930072px;}
.y6_c02328{bottom:724.620000px;}
.y14_c02328{bottom:725.970000px;}
.y5_c02328{bottom:754.770000px;}
.y2_c02328{bottom:803.369289px;}
.y1_c02328{bottom:822.990000px;}
.h8_c02328{height:23.672461px;}
.h3_c02328{height:43.909277px;}
.h5_c02328{height:44.122500px;}
.h4_c02328{height:54.331699px;}
.h9_c02328{height:60.589687px;}
.h7_c02328{height:64.657617px;}
.h6_c02328{height:66.754688px;}
.h2_c02328{height:72.562500px;}
.h1_c02328{height:892.500000px;}
.h0_c02328{height:892.830000px;}
.w0_c02328{width:1263.000000px;}
.x0_c02328{left:0.000000px;}
.x1_c02328{left:106.275900px;}
.x3_c02328{left:124.995750px;}
.x4_c02328{left:273.855750px;}
.x2_c02328{left:618.826596px;}
.x5_c02328{left:826.725750px;}
@media print{
.v2_c02328{vertical-align:-25.280000pt;}
.v3_c02328{vertical-align:-15.040000pt;}
.v1_c02328{vertical-align:-5.120000pt;}
.v0_c02328{vertical-align:0.000000pt;}
.v4_c02328{vertical-align:16.000000pt;}
.lsf_c02328{letter-spacing:-0.157248pt;}
.ls11_c02328{letter-spacing:-0.090848pt;}
.lsd_c02328{letter-spacing:-0.012800pt;}
.lse_c02328{letter-spacing:0.000000pt;}
.ls2_c02328{letter-spacing:0.012800pt;}
.ls3_c02328{letter-spacing:0.016032pt;}
.ls7_c02328{letter-spacing:0.017568pt;}
.lsc_c02328{letter-spacing:0.023424pt;}
.ls0_c02328{letter-spacing:0.029280pt;}
.ls8_c02328{letter-spacing:0.035136pt;}
.ls6_c02328{letter-spacing:0.040992pt;}
.ls9_c02328{letter-spacing:0.046848pt;}
.lsa_c02328{letter-spacing:0.052704pt;}
.lsb_c02328{letter-spacing:0.058560pt;}
.ls1_c02328{letter-spacing:0.081984pt;}
.ls5_c02328{letter-spacing:0.117120pt;}
.ls10_c02328{letter-spacing:0.158112pt;}
.ls4_c02328{letter-spacing:0.161728pt;}
.ws1_c02328{word-spacing:-14.757120pt;}
.ws6_c02328{word-spacing:-0.256512pt;}
.ws0_c02328{word-spacing:-0.140544pt;}
.ws5_c02328{word-spacing:0.000000pt;}
.ws2_c02328{word-spacing:0.012800pt;}
.ws14_c02328{word-spacing:0.029280pt;}
.ws4_c02328{word-spacing:0.035136pt;}
.ws3_c02328{word-spacing:0.052704pt;}
.ws15_c02328{word-spacing:0.171008pt;}
.wsf_c02328{word-spacing:1.013088pt;}
.ws8_c02328{word-spacing:2.916288pt;}
.wse_c02328{word-spacing:4.216320pt;}
.ws10_c02328{word-spacing:7.677216pt;}
.ws13_c02328{word-spacing:13.170144pt;}
.ws11_c02328{word-spacing:13.802592pt;}
.ws12_c02328{word-spacing:13.814304pt;}
.ws9_c02328{word-spacing:16.063008pt;}
.wsa_c02328{word-spacing:17.005824pt;}
.wsb_c02328{word-spacing:18.592800pt;}
.ws7_c02328{word-spacing:43.279264pt;}
.wsc_c02328{word-spacing:48.341280pt;}
.wsd_c02328{word-spacing:48.376416pt;}
._3_c02328{margin-left:-1.148960pt;}
._5_c02328{width:1.178944pt;}
._1_c02328{width:43.276544pt;}
._4_c02328{width:48.247552pt;}
._0_c02328{width:103.084864pt;}
._2_c02328{width:1793.587200pt;}
.fs5_c02328{font-size:21.440000pt;}
.fs2_c02328{font-size:37.440000pt;}
.fs3_c02328{font-size:42.560000pt;}
.fs4_c02328{font-size:53.440000pt;}
.fs1_c02328{font-size:58.560000pt;}
.fs0_c02328{font-size:64.000000pt;}
.y0_c02328{bottom:0.000000pt;}
.y4_c02328{bottom:67.066347pt;}
.y3_c02328{bottom:100.985763pt;}
.y24_c02328{bottom:132.184379pt;}
.y23_c02328{bottom:151.624835pt;}
.y22_c02328{bottom:170.984771pt;}
.y21_c02328{bottom:190.425227pt;}
.y20_c02328{bottom:209.785163pt;}
.y1f_c02328{bottom:229.225619pt;}
.y1e_c02328{bottom:248.585555pt;}
.y1d_c02328{bottom:268.026011pt;}
.y1c_c02328{bottom:287.385947pt;}
.y1b_c02328{bottom:306.745883pt;}
.y1a_c02328{bottom:326.186339pt;}
.y19_c02328{bottom:345.546275pt;}
.y18_c02328{bottom:364.986731pt;}
.y17_c02328{bottom:384.346667pt;}
.y13_c02328{bottom:404.425163pt;}
.y12_c02328{bottom:423.785099pt;}
.y11_c02328{bottom:443.225555pt;}
.y10_c02328{bottom:462.585491pt;}
.yf_c02328{bottom:482.025947pt;}
.ye_c02328{bottom:501.385883pt;}
.yd_c02328{bottom:520.826339pt;}
.yc_c02328{bottom:540.186275pt;}
.yb_c02328{bottom:559.546211pt;}
.ya_c02328{bottom:578.986667pt;}
.y16_c02328{bottom:582.266667pt;}
.y9_c02328{bottom:594.666667pt;}
.y8_c02328{bottom:605.386275pt;}
.y15_c02328{bottom:614.346667pt;}
.y7_c02328{bottom:624.826731pt;}
.y6_c02328{bottom:644.106667pt;}
.y14_c02328{bottom:645.306667pt;}
.y5_c02328{bottom:670.906667pt;}
.y2_c02328{bottom:714.106035pt;}
.y1_c02328{bottom:731.546667pt;}
.h8_c02328{height:21.042187pt;}
.h3_c02328{height:39.030469pt;}
.h5_c02328{height:39.220000pt;}
.h4_c02328{height:48.294844pt;}
.h9_c02328{height:53.857500pt;}
.h7_c02328{height:57.473437pt;}
.h6_c02328{height:59.337500pt;}
.h2_c02328{height:64.500000pt;}
.h1_c02328{height:793.333333pt;}
.h0_c02328{height:793.626667pt;}
.w0_c02328{width:1122.666667pt;}
.x0_c02328{left:0.000000pt;}
.x1_c02328{left:94.467467pt;}
.x3_c02328{left:111.107333pt;}
.x4_c02328{left:243.427333pt;}
.x2_c02328{left:550.068085pt;}
.x5_c02328{left:734.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d5a6d75d7aa6ccaaa40093a.woff2')format("woff");}.ff1_c02329{font-family:ff1_c02329;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02329;src:url('chunks/assets/font_f6413213cf7a17659e12c4a6.woff2')format("woff");}.ff2_c02329{font-family:ff2_c02329;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02329{font-family:ff3_c02329;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_c02329;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02329{font-family:ff4_c02329;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:ff5_c02329;src:url('chunks/assets/font_5edbc3a716b82ff2f3cc1b62.woff2')format("woff");}.ff5_c02329{font-family:ff5_c02329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c02329{letter-spacing:-0.134568px;}
.ls9_c02329{letter-spacing:-0.096120px;}
.ls10_c02329{letter-spacing:-0.086508px;}
.lsc_c02329{letter-spacing:-0.076896px;}
.ls8_c02329{letter-spacing:-0.067284px;}
.ls7_c02329{letter-spacing:-0.043200px;}
.lse_c02329{letter-spacing:-0.038448px;}
.lsd_c02329{letter-spacing:-0.028836px;}
.ls11_c02329{letter-spacing:-0.021600px;}
.lsb_c02329{letter-spacing:-0.009612px;}
.ls19_c02329{letter-spacing:-0.008388px;}
.ls6_c02329{letter-spacing:0.000000px;}
.ls12_c02329{letter-spacing:0.010800px;}
.ls16_c02329{letter-spacing:0.016776px;}
.ls0_c02329{letter-spacing:0.028800px;}
.ls2_c02329{letter-spacing:0.028836px;}
.ls4_c02329{letter-spacing:0.041940px;}
.ls18_c02329{letter-spacing:0.050328px;}
.ls17_c02329{letter-spacing:0.058716px;}
.ls14_c02329{letter-spacing:0.067104px;}
.ls13_c02329{letter-spacing:0.075492px;}
.ls1a_c02329{letter-spacing:0.092268px;}
.ls3_c02329{letter-spacing:0.100656px;}
.ls15_c02329{letter-spacing:0.142596px;}
.ls5_c02329{letter-spacing:0.159372px;}
.lsf_c02329{letter-spacing:0.230688px;}
.ls1_c02329{letter-spacing:0.240300px;}
.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;}
}
.ws1_c02329{word-spacing:-144.000000px;}
.ws4_c02329{word-spacing:-96.120000px;}
.wsf_c02329{word-spacing:-0.192924px;}
.ws0_c02329{word-spacing:-0.172800px;}
.ws15_c02329{word-spacing:-0.134208px;}
.wsb_c02329{word-spacing:-0.124956px;}
.ws2_c02329{word-spacing:-0.100800px;}
.ws7_c02329{word-spacing:-0.086508px;}
.ws10_c02329{word-spacing:-0.083880px;}
.ws9_c02329{word-spacing:-0.067284px;}
.wsa_c02329{word-spacing:-0.057672px;}
.ws16_c02329{word-spacing:-0.041940px;}
.ws3_c02329{word-spacing:-0.028836px;}
.ws8_c02329{word-spacing:-0.019224px;}
.wsd_c02329{word-spacing:-0.010800px;}
.wsc_c02329{word-spacing:-0.009612px;}
.ws5_c02329{word-spacing:0.000000px;}
.wse_c02329{word-spacing:0.008388px;}
.ws13_c02329{word-spacing:0.025164px;}
.ws14_c02329{word-spacing:0.033552px;}
.ws6_c02329{word-spacing:0.038448px;}
.ws11_c02329{word-spacing:0.041940px;}
.ws12_c02329{word-spacing:0.067104px;}
.ws17_c02329{word-spacing:0.109044px;}
.fc0_c02329{color:rgb(0,0,0);}
.fs3_c02329{font-size:47.880000px;}
.fs0_c02329{font-size:72.000000px;}
.fs7_c02329{font-size:83.880000px;}
.fs5_c02329{font-size:96.120000px;}
.fs6_c02329{font-size:108.000000px;}
.fs2_c02329{font-size:119.880000px;}
.fs4_c02329{font-size:144.000000px;}
.fs1_c02329{font-size:155.880000px;}
.y0_c02329{bottom:0.000000px;}
.y22_c02329{bottom:114.957000px;}
.y21_c02329{bottom:142.767414px;}
.y20_c02329{bottom:170.487657px;}
.y1f_c02329{bottom:198.298071px;}
.y1e_c02329{bottom:226.018314px;}
.y1d_c02329{bottom:253.558215px;}
.y1c_c02329{bottom:281.368629px;}
.y1b_c02329{bottom:309.359385px;}
.y1a_c02329{bottom:337.169799px;}
.y19_c02329{bottom:364.619529px;}
.y18_c02329{bottom:392.700456px;}
.y17_c02329{bottom:420.420699px;}
.y16_c02329{bottom:447.960600px;}
.y15_c02329{bottom:471.720600px;}
.y14_c02329{bottom:492.420600px;}
.y13_c02329{bottom:513.120600px;}
.y12_c02329{bottom:534.181638px;}
.y11_c02329{bottom:558.301332px;}
.y10_c02329{bottom:582.511197px;}
.yf_c02329{bottom:606.630891px;}
.ye_c02329{bottom:630.750585px;}
.yd_c02329{bottom:654.960450px;}
.yc_c02329{bottom:695.909550px;}
.yb_c02329{bottom:742.530450px;}
.ya_c02329{bottom:777.092034px;}
.y9_c02329{bottom:810.392808px;}
.y8_c02329{bottom:844.051629px;}
.y7_c02329{bottom:877.710450px;}
.y6_c02329{bottom:908.760450px;}
.y5_c02329{bottom:944.310450px;}
.y4_c02329{bottom:985.530450px;}
.y3_c02329{bottom:1023.330450px;}
.y2_c02329{bottom:1081.650450px;}
.y1_c02329{bottom:1139.880450px;}
.h6_c02329{height:47.988281px;}
.h4_c02329{height:48.254063px;}
.hb_c02329{height:70.664062px;}
.h1_c02329{height:72.562500px;}
.h7_c02329{height:79.270840px;}
.hc_c02329{height:82.323633px;}
.ha_c02329{height:84.535312px;}
.h8_c02329{height:96.870938px;}
.h9_c02329{height:108.843750px;}
.h5_c02329{height:118.757812px;}
.h3_c02329{height:120.816562px;}
.h2_c02329{height:157.097813px;}
.h0_c02329{height:1263.000000px;}
.w1_c02329{width:892.500000px;}
.w0_c02329{width:892.830000px;}
.x0_c02329{left:0.000000px;}
.x1_c02329{left:127.620000px;}
.x13_c02329{left:143.010756px;}
.x5_c02329{left:147.960000px;}
.x6_c02329{left:173.157858px;}
.x2_c02329{left:175.770000px;}
.x7_c02329{left:177.742782px;}
.x12_c02329{left:309.510459px;}
.xc_c02329{left:312.659460px;}
.x10_c02329{left:330.750972px;}
.x4_c02329{left:333.450000px;}
.xe_c02329{left:337.769631px;}
.xa_c02329{left:341.820342px;}
.xf_c02329{left:374.131611px;}
.x9_c02329{left:383.849100px;}
.xb_c02329{left:392.580324px;}
.x8_c02329{left:404.550000px;}
.xd_c02329{left:408.600000px;}
.x14_c02329{left:411.481278px;}
.x15_c02329{left:425.520693px;}
.x3_c02329{left:446.490000px;}
.x11_c02329{left:499.771269px;}
@media print{
.v0_c02329{vertical-align:0.000000pt;}
.lsa_c02329{letter-spacing:-0.119616pt;}
.ls9_c02329{letter-spacing:-0.085440pt;}
.ls10_c02329{letter-spacing:-0.076896pt;}
.lsc_c02329{letter-spacing:-0.068352pt;}
.ls8_c02329{letter-spacing:-0.059808pt;}
.ls7_c02329{letter-spacing:-0.038400pt;}
.lse_c02329{letter-spacing:-0.034176pt;}
.lsd_c02329{letter-spacing:-0.025632pt;}
.ls11_c02329{letter-spacing:-0.019200pt;}
.lsb_c02329{letter-spacing:-0.008544pt;}
.ls19_c02329{letter-spacing:-0.007456pt;}
.ls6_c02329{letter-spacing:0.000000pt;}
.ls12_c02329{letter-spacing:0.009600pt;}
.ls16_c02329{letter-spacing:0.014912pt;}
.ls0_c02329{letter-spacing:0.025600pt;}
.ls2_c02329{letter-spacing:0.025632pt;}
.ls4_c02329{letter-spacing:0.037280pt;}
.ls18_c02329{letter-spacing:0.044736pt;}
.ls17_c02329{letter-spacing:0.052192pt;}
.ls14_c02329{letter-spacing:0.059648pt;}
.ls13_c02329{letter-spacing:0.067104pt;}
.ls1a_c02329{letter-spacing:0.082016pt;}
.ls3_c02329{letter-spacing:0.089472pt;}
.ls15_c02329{letter-spacing:0.126752pt;}
.ls5_c02329{letter-spacing:0.141664pt;}
.lsf_c02329{letter-spacing:0.205056pt;}
.ls1_c02329{letter-spacing:0.213600pt;}
.ws1_c02329{word-spacing:-128.000000pt;}
.ws4_c02329{word-spacing:-85.440000pt;}
.wsf_c02329{word-spacing:-0.171488pt;}
.ws0_c02329{word-spacing:-0.153600pt;}
.ws15_c02329{word-spacing:-0.119296pt;}
.wsb_c02329{word-spacing:-0.111072pt;}
.ws2_c02329{word-spacing:-0.089600pt;}
.ws7_c02329{word-spacing:-0.076896pt;}
.ws10_c02329{word-spacing:-0.074560pt;}
.ws9_c02329{word-spacing:-0.059808pt;}
.wsa_c02329{word-spacing:-0.051264pt;}
.ws16_c02329{word-spacing:-0.037280pt;}
.ws3_c02329{word-spacing:-0.025632pt;}
.ws8_c02329{word-spacing:-0.017088pt;}
.wsd_c02329{word-spacing:-0.009600pt;}
.wsc_c02329{word-spacing:-0.008544pt;}
.ws5_c02329{word-spacing:0.000000pt;}
.wse_c02329{word-spacing:0.007456pt;}
.ws13_c02329{word-spacing:0.022368pt;}
.ws14_c02329{word-spacing:0.029824pt;}
.ws6_c02329{word-spacing:0.034176pt;}
.ws11_c02329{word-spacing:0.037280pt;}
.ws12_c02329{word-spacing:0.059648pt;}
.ws17_c02329{word-spacing:0.096928pt;}
.fs3_c02329{font-size:42.560000pt;}
.fs0_c02329{font-size:64.000000pt;}
.fs7_c02329{font-size:74.560000pt;}
.fs5_c02329{font-size:85.440000pt;}
.fs6_c02329{font-size:96.000000pt;}
.fs2_c02329{font-size:106.560000pt;}
.fs4_c02329{font-size:128.000000pt;}
.fs1_c02329{font-size:138.560000pt;}
.y0_c02329{bottom:0.000000pt;}
.y22_c02329{bottom:102.184000pt;}
.y21_c02329{bottom:126.904368pt;}
.y20_c02329{bottom:151.544584pt;}
.y1f_c02329{bottom:176.264952pt;}
.y1e_c02329{bottom:200.905168pt;}
.y1d_c02329{bottom:225.385080pt;}
.y1c_c02329{bottom:250.105448pt;}
.y1b_c02329{bottom:274.986120pt;}
.y1a_c02329{bottom:299.706488pt;}
.y19_c02329{bottom:324.106248pt;}
.y18_c02329{bottom:349.067072pt;}
.y17_c02329{bottom:373.707288pt;}
.y16_c02329{bottom:398.187200pt;}
.y15_c02329{bottom:419.307200pt;}
.y14_c02329{bottom:437.707200pt;}
.y13_c02329{bottom:456.107200pt;}
.y12_c02329{bottom:474.828123pt;}
.y11_c02329{bottom:496.267851pt;}
.y10_c02329{bottom:517.787731pt;}
.yf_c02329{bottom:539.227459pt;}
.ye_c02329{bottom:560.667187pt;}
.yd_c02329{bottom:582.187067pt;}
.yc_c02329{bottom:618.586267pt;}
.yb_c02329{bottom:660.027067pt;}
.ya_c02329{bottom:690.748475pt;}
.y9_c02329{bottom:720.349163pt;}
.y8_c02329{bottom:750.268115pt;}
.y7_c02329{bottom:780.187067pt;}
.y6_c02329{bottom:807.787067pt;}
.y5_c02329{bottom:839.387067pt;}
.y4_c02329{bottom:876.027067pt;}
.y3_c02329{bottom:909.627067pt;}
.y2_c02329{bottom:961.467067pt;}
.y1_c02329{bottom:1013.227067pt;}
.h6_c02329{height:42.656250pt;}
.h4_c02329{height:42.892500pt;}
.hb_c02329{height:62.812500pt;}
.h1_c02329{height:64.500000pt;}
.h7_c02329{height:70.462969pt;}
.hc_c02329{height:73.176562pt;}
.ha_c02329{height:75.142500pt;}
.h8_c02329{height:86.107500pt;}
.h9_c02329{height:96.750000pt;}
.h5_c02329{height:105.562500pt;}
.h3_c02329{height:107.392500pt;}
.h2_c02329{height:139.642500pt;}
.h0_c02329{height:1122.666667pt;}
.w1_c02329{width:793.333333pt;}
.w0_c02329{width:793.626667pt;}
.x0_c02329{left:0.000000pt;}
.x1_c02329{left:113.440000pt;}
.x13_c02329{left:127.120672pt;}
.x5_c02329{left:131.520000pt;}
.x6_c02329{left:153.918096pt;}
.x2_c02329{left:156.240000pt;}
.x7_c02329{left:157.993584pt;}
.x12_c02329{left:275.120408pt;}
.xc_c02329{left:277.919520pt;}
.x10_c02329{left:294.000864pt;}
.x4_c02329{left:296.400000pt;}
.xe_c02329{left:300.239672pt;}
.xa_c02329{left:303.840304pt;}
.xf_c02329{left:332.561432pt;}
.x9_c02329{left:341.199200pt;}
.xb_c02329{left:348.960288pt;}
.x8_c02329{left:359.600000pt;}
.xd_c02329{left:363.200000pt;}
.x14_c02329{left:365.761136pt;}
.x15_c02329{left:378.240616pt;}
.x3_c02329{left:396.880000pt;}
.x11_c02329{left:444.241128pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c02330{font-family:ff1_c02330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02330;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c02330{font-family:ff2_c02330;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02330{vertical-align:-82.800000px;}
.v0_c02330{vertical-align:0.000000px;}
.ls1_c02330{letter-spacing:0.000000px;}
.ls0_c02330{letter-spacing:1045.080000px;}
.sc__c02330{text-shadow:none;}
.sc0_c02330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02330{-webkit-text-stroke:0px transparent;}
.sc0_c02330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02330{word-spacing:0.000000px;}
.fc0_c02330{color:rgb(0,0,0);}
.fs1_c02330{font-size:72.000000px;}
.fs0_c02330{font-size:83.880000px;}
.y0_c02330{bottom:0.000000px;}
.y31_c02330{bottom:118.740450px;}
.y30_c02330{bottom:139.440450px;}
.y2f_c02330{bottom:160.140450px;}
.y2e_c02330{bottom:180.750450px;}
.y2d_c02330{bottom:201.450450px;}
.y2c_c02330{bottom:222.150450px;}
.y2b_c02330{bottom:242.850450px;}
.y2a_c02330{bottom:263.550450px;}
.y29_c02330{bottom:284.250450px;}
.y28_c02330{bottom:304.950450px;}
.y27_c02330{bottom:325.650450px;}
.y26_c02330{bottom:346.350450px;}
.y25_c02330{bottom:367.050450px;}
.y24_c02330{bottom:387.750450px;}
.y23_c02330{bottom:408.450450px;}
.y22_c02330{bottom:429.150450px;}
.y21_c02330{bottom:449.850450px;}
.y20_c02330{bottom:470.550450px;}
.y1f_c02330{bottom:491.250450px;}
.y1e_c02330{bottom:511.950450px;}
.y1d_c02330{bottom:532.650450px;}
.y1c_c02330{bottom:553.350450px;}
.y1b_c02330{bottom:574.050450px;}
.y1a_c02330{bottom:594.750450px;}
.y19_c02330{bottom:615.450450px;}
.y18_c02330{bottom:636.150450px;}
.y17_c02330{bottom:656.850450px;}
.y16_c02330{bottom:677.550450px;}
.y15_c02330{bottom:698.250450px;}
.y14_c02330{bottom:718.950450px;}
.y13_c02330{bottom:739.650450px;}
.y12_c02330{bottom:760.350450px;}
.y11_c02330{bottom:781.050450px;}
.y10_c02330{bottom:801.750450px;}
.yf_c02330{bottom:822.450450px;}
.ye_c02330{bottom:843.150450px;}
.yd_c02330{bottom:863.850450px;}
.yc_c02330{bottom:884.550450px;}
.yb_c02330{bottom:905.250450px;}
.ya_c02330{bottom:925.950450px;}
.y9_c02330{bottom:946.650450px;}
.y8_c02330{bottom:967.350450px;}
.y7_c02330{bottom:988.050450px;}
.y6_c02330{bottom:1008.750450px;}
.y5_c02330{bottom:1029.450450px;}
.y4_c02330{bottom:1050.150450px;}
.y3_c02330{bottom:1070.850450px;}
.y2_c02330{bottom:1112.250450px;}
.y1_c02330{bottom:1137.360450px;}
.h2_c02330{height:72.562500px;}
.h1_c02330{height:82.323633px;}
.h0_c02330{height:1263.000000px;}
.w1_c02330{width:892.500000px;}
.w0_c02330{width:892.830000px;}
.x0_c02330{left:0.000000px;}
.x2_c02330{left:233.820000px;}
.x1_c02330{left:446.490000px;}
.x3_c02330{left:499.590000px;}
@media print{
.v1_c02330{vertical-align:-73.600000pt;}
.v0_c02330{vertical-align:0.000000pt;}
.ls1_c02330{letter-spacing:0.000000pt;}
.ls0_c02330{letter-spacing:928.960000pt;}
.ws0_c02330{word-spacing:0.000000pt;}
.fs1_c02330{font-size:64.000000pt;}
.fs0_c02330{font-size:74.560000pt;}
.y0_c02330{bottom:0.000000pt;}
.y31_c02330{bottom:105.547067pt;}
.y30_c02330{bottom:123.947067pt;}
.y2f_c02330{bottom:142.347067pt;}
.y2e_c02330{bottom:160.667067pt;}
.y2d_c02330{bottom:179.067067pt;}
.y2c_c02330{bottom:197.467067pt;}
.y2b_c02330{bottom:215.867067pt;}
.y2a_c02330{bottom:234.267067pt;}
.y29_c02330{bottom:252.667067pt;}
.y28_c02330{bottom:271.067067pt;}
.y27_c02330{bottom:289.467067pt;}
.y26_c02330{bottom:307.867067pt;}
.y25_c02330{bottom:326.267067pt;}
.y24_c02330{bottom:344.667067pt;}
.y23_c02330{bottom:363.067067pt;}
.y22_c02330{bottom:381.467067pt;}
.y21_c02330{bottom:399.867067pt;}
.y20_c02330{bottom:418.267067pt;}
.y1f_c02330{bottom:436.667067pt;}
.y1e_c02330{bottom:455.067067pt;}
.y1d_c02330{bottom:473.467067pt;}
.y1c_c02330{bottom:491.867067pt;}
.y1b_c02330{bottom:510.267067pt;}
.y1a_c02330{bottom:528.667067pt;}
.y19_c02330{bottom:547.067067pt;}
.y18_c02330{bottom:565.467067pt;}
.y17_c02330{bottom:583.867067pt;}
.y16_c02330{bottom:602.267067pt;}
.y15_c02330{bottom:620.667067pt;}
.y14_c02330{bottom:639.067067pt;}
.y13_c02330{bottom:657.467067pt;}
.y12_c02330{bottom:675.867067pt;}
.y11_c02330{bottom:694.267067pt;}
.y10_c02330{bottom:712.667067pt;}
.yf_c02330{bottom:731.067067pt;}
.ye_c02330{bottom:749.467067pt;}
.yd_c02330{bottom:767.867067pt;}
.yc_c02330{bottom:786.267067pt;}
.yb_c02330{bottom:804.667067pt;}
.ya_c02330{bottom:823.067067pt;}
.y9_c02330{bottom:841.467067pt;}
.y8_c02330{bottom:859.867067pt;}
.y7_c02330{bottom:878.267067pt;}
.y6_c02330{bottom:896.667067pt;}
.y5_c02330{bottom:915.067067pt;}
.y4_c02330{bottom:933.467067pt;}
.y3_c02330{bottom:951.867067pt;}
.y2_c02330{bottom:988.667067pt;}
.y1_c02330{bottom:1010.987067pt;}
.h2_c02330{height:64.500000pt;}
.h1_c02330{height:73.176562pt;}
.h0_c02330{height:1122.666667pt;}
.w1_c02330{width:793.333333pt;}
.w0_c02330{width:793.626667pt;}
.x0_c02330{left:0.000000pt;}
.x2_c02330{left:207.840000pt;}
.x1_c02330{left:396.880000pt;}
.x3_c02330{left:444.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_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_45f2ed8c258714c62bf8b9a7.woff2')format("woff");}.ff1_c02331{font-family:ff1_c02331;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c02331{font-family:ff2_c02331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02331{vertical-align:-86.042688px;}
.v0_c02331{vertical-align:0.000000px;}
.ls8_c02331{letter-spacing:-0.041940px;}
.lsc_c02331{letter-spacing:-0.021600px;}
.lsb_c02331{letter-spacing:-0.014400px;}
.lsa_c02331{letter-spacing:-0.007200px;}
.ls7_c02331{letter-spacing:0.000000px;}
.ls4_c02331{letter-spacing:0.007200px;}
.ls9_c02331{letter-spacing:0.008388px;}
.ls0_c02331{letter-spacing:0.021600px;}
.ls2_c02331{letter-spacing:0.028800px;}
.ls3_c02331{letter-spacing:0.036000px;}
.ls6_c02331{letter-spacing:0.058716px;}
.ls1_c02331{letter-spacing:24.120000px;}
.ls5_c02331{letter-spacing:811.350000px;}
.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:-0.216000px;}
.ws9_c02331{word-spacing:-0.180000px;}
.ws4_c02331{word-spacing:-0.136800px;}
.ws6_c02331{word-spacing:-0.108000px;}
.ws5_c02331{word-spacing:-0.079200px;}
.ws7_c02331{word-spacing:-0.050400px;}
.ws1_c02331{word-spacing:-0.050328px;}
.ws3_c02331{word-spacing:-0.043200px;}
.wsa_c02331{word-spacing:-0.028800px;}
.ws2_c02331{word-spacing:-0.007200px;}
.ws0_c02331{word-spacing:0.000000px;}
.wsc_c02331{word-spacing:0.007200px;}
.wsb_c02331{word-spacing:0.014400px;}
.ws8_c02331{word-spacing:194.392800px;}
.wsf_c02331{word-spacing:194.407200px;}
.wse_c02331{word-spacing:194.421600px;}
._9_c02331{margin-left:-210.960000px;}
._6_c02331{margin-left:-208.440000px;}
._5_c02331{margin-left:-194.400000px;}
._a_c02331{margin-left:-116.280000px;}
._2_c02331{width:94.831200px;}
._8_c02331{width:102.960000px;}
._4_c02331{width:110.095200px;}
._7_c02331{width:147.312000px;}
._3_c02331{width:171.151200px;}
._0_c02331{width:189.518400px;}
._1_c02331{width:194.515200px;}
.fc0_c02331{color:rgb(0,0,0);}
.fs1_c02331{font-size:47.880000px;}
.fs2_c02331{font-size:72.000000px;}
.fs0_c02331{font-size:83.880000px;}
.y0_c02331{bottom:0.000000px;}
.y2e_c02331{bottom:114.150450px;}
.y2d_c02331{bottom:160.410450px;}
.y2c_c02331{bottom:206.490450px;}
.y2b_c02331{bottom:227.730450px;}
.y2a_c02331{bottom:245.910450px;}
.y29_c02331{bottom:267.420450px;}
.y28_c02331{bottom:285.600450px;}
.y27_c02331{bottom:310.530450px;}
.y26_c02331{bottom:334.110450px;}
.y25_c02331{bottom:376.321122px;}
.y24_c02331{bottom:392.161023px;}
.y23_c02331{bottom:408.000924px;}
.y22_c02331{bottom:423.930600px;}
.y21_c02331{bottom:442.020450px;}
.y20_c02331{bottom:465.780450px;}
.y1f_c02331{bottom:489.630450px;}
.y1e_c02331{bottom:511.140450px;}
.y1d_c02331{bottom:529.320450px;}
.y1c_c02331{bottom:553.080450px;}
.y1b_c02331{bottom:576.930450px;}
.y1a_c02331{bottom:598.440450px;}
.y19_c02331{bottom:616.530450px;}
.y18_c02331{bottom:640.380450px;}
.y17_c02331{bottom:664.140450px;}
.y16_c02331{bottom:687.990450px;}
.y15_c02331{bottom:711.750450px;}
.y14_c02331{bottom:735.600450px;}
.y13_c02331{bottom:757.110450px;}
.y12_c02331{bottom:775.290450px;}
.y11_c02331{bottom:799.050450px;}
.y10_c02331{bottom:820.560450px;}
.yf_c02331{bottom:838.740600px;}
.ye_c02331{bottom:862.500600px;}
.yd_c02331{bottom:884.100450px;}
.yc_c02331{bottom:902.190450px;}
.yb_c02331{bottom:926.040450px;}
.ya_c02331{bottom:946.830450px;}
.y9_c02331{bottom:967.530450px;}
.y8_c02331{bottom:988.230450px;}
.y7_c02331{bottom:1008.930450px;}
.y6_c02331{bottom:1030.170450px;}
.y5_c02331{bottom:1053.750450px;}
.y4_c02331{bottom:1073.100450px;}
.y3_c02331{bottom:1088.851062px;}
.y2_c02331{bottom:1112.970756px;}
.y1_c02331{bottom:1137.090450px;}
.h2_c02331{height:48.254063px;}
.h4_c02331{height:70.664062px;}
.h3_c02331{height:72.562500px;}
.h1_c02331{height:84.535312px;}
.h0_c02331{height:1263.000000px;}
.w1_c02331{width:892.500000px;}
.w0_c02331{width:892.830000px;}
.x0_c02331{left:0.000000px;}
.x7_c02331{left:127.620000px;}
.x9_c02331{left:170.190000px;}
.x8_c02331{left:212.670000px;}
.xa_c02331{left:318.960000px;}
.x6_c02331{left:346.500000px;}
.x5_c02331{left:371.520000px;}
.x3_c02331{left:383.849739px;}
.x1_c02331{left:402.750000px;}
.x4_c02331{left:418.500000px;}
.x2_c02331{left:446.489226px;}
@media print{
.v1_c02331{vertical-align:-76.482389pt;}
.v0_c02331{vertical-align:0.000000pt;}
.ls8_c02331{letter-spacing:-0.037280pt;}
.lsc_c02331{letter-spacing:-0.019200pt;}
.lsb_c02331{letter-spacing:-0.012800pt;}
.lsa_c02331{letter-spacing:-0.006400pt;}
.ls7_c02331{letter-spacing:0.000000pt;}
.ls4_c02331{letter-spacing:0.006400pt;}
.ls9_c02331{letter-spacing:0.007456pt;}
.ls0_c02331{letter-spacing:0.019200pt;}
.ls2_c02331{letter-spacing:0.025600pt;}
.ls3_c02331{letter-spacing:0.032000pt;}
.ls6_c02331{letter-spacing:0.052192pt;}
.ls1_c02331{letter-spacing:21.440000pt;}
.ls5_c02331{letter-spacing:721.200000pt;}
.wsd_c02331{word-spacing:-0.192000pt;}
.ws9_c02331{word-spacing:-0.160000pt;}
.ws4_c02331{word-spacing:-0.121600pt;}
.ws6_c02331{word-spacing:-0.096000pt;}
.ws5_c02331{word-spacing:-0.070400pt;}
.ws7_c02331{word-spacing:-0.044800pt;}
.ws1_c02331{word-spacing:-0.044736pt;}
.ws3_c02331{word-spacing:-0.038400pt;}
.wsa_c02331{word-spacing:-0.025600pt;}
.ws2_c02331{word-spacing:-0.006400pt;}
.ws0_c02331{word-spacing:0.000000pt;}
.wsc_c02331{word-spacing:0.006400pt;}
.wsb_c02331{word-spacing:0.012800pt;}
.ws8_c02331{word-spacing:172.793600pt;}
.wsf_c02331{word-spacing:172.806400pt;}
.wse_c02331{word-spacing:172.819200pt;}
._9_c02331{margin-left:-187.520000pt;}
._6_c02331{margin-left:-185.280000pt;}
._5_c02331{margin-left:-172.800000pt;}
._a_c02331{margin-left:-103.360000pt;}
._2_c02331{width:84.294400pt;}
._8_c02331{width:91.520000pt;}
._4_c02331{width:97.862400pt;}
._7_c02331{width:130.944000pt;}
._3_c02331{width:152.134400pt;}
._0_c02331{width:168.460800pt;}
._1_c02331{width:172.902400pt;}
.fs1_c02331{font-size:42.560000pt;}
.fs2_c02331{font-size:64.000000pt;}
.fs0_c02331{font-size:74.560000pt;}
.y0_c02331{bottom:0.000000pt;}
.y2e_c02331{bottom:101.467067pt;}
.y2d_c02331{bottom:142.587067pt;}
.y2c_c02331{bottom:183.547067pt;}
.y2b_c02331{bottom:202.427067pt;}
.y2a_c02331{bottom:218.587067pt;}
.y29_c02331{bottom:237.707067pt;}
.y28_c02331{bottom:253.867067pt;}
.y27_c02331{bottom:276.027067pt;}
.y26_c02331{bottom:296.987067pt;}
.y25_c02331{bottom:334.507664pt;}
.y24_c02331{bottom:348.587576pt;}
.y23_c02331{bottom:362.667488pt;}
.y22_c02331{bottom:376.827200pt;}
.y21_c02331{bottom:392.907067pt;}
.y20_c02331{bottom:414.027067pt;}
.y1f_c02331{bottom:435.227067pt;}
.y1e_c02331{bottom:454.347067pt;}
.y1d_c02331{bottom:470.507067pt;}
.y1c_c02331{bottom:491.627067pt;}
.y1b_c02331{bottom:512.827067pt;}
.y1a_c02331{bottom:531.947067pt;}
.y19_c02331{bottom:548.027067pt;}
.y18_c02331{bottom:569.227067pt;}
.y17_c02331{bottom:590.347067pt;}
.y16_c02331{bottom:611.547067pt;}
.y15_c02331{bottom:632.667067pt;}
.y14_c02331{bottom:653.867067pt;}
.y13_c02331{bottom:672.987067pt;}
.y12_c02331{bottom:689.147067pt;}
.y11_c02331{bottom:710.267067pt;}
.y10_c02331{bottom:729.387067pt;}
.yf_c02331{bottom:745.547200pt;}
.ye_c02331{bottom:766.667200pt;}
.yd_c02331{bottom:785.867067pt;}
.yc_c02331{bottom:801.947067pt;}
.yb_c02331{bottom:823.147067pt;}
.ya_c02331{bottom:841.627067pt;}
.y9_c02331{bottom:860.027067pt;}
.y8_c02331{bottom:878.427067pt;}
.y7_c02331{bottom:896.827067pt;}
.y6_c02331{bottom:915.707067pt;}
.y5_c02331{bottom:936.667067pt;}
.y4_c02331{bottom:953.867067pt;}
.y3_c02331{bottom:967.867611pt;}
.y2_c02331{bottom:989.307339pt;}
.y1_c02331{bottom:1010.747067pt;}
.h2_c02331{height:42.892500pt;}
.h4_c02331{height:62.812500pt;}
.h3_c02331{height:64.500000pt;}
.h1_c02331{height:75.142500pt;}
.h0_c02331{height:1122.666667pt;}
.w1_c02331{width:793.333333pt;}
.w0_c02331{width:793.626667pt;}
.x0_c02331{left:0.000000pt;}
.x7_c02331{left:113.440000pt;}
.x9_c02331{left:151.280000pt;}
.x8_c02331{left:189.040000pt;}
.xa_c02331{left:283.520000pt;}
.x6_c02331{left:308.000000pt;}
.x5_c02331{left:330.240000pt;}
.x3_c02331{left:341.199768pt;}
.x1_c02331{left:358.000000pt;}
.x4_c02331{left:372.000000pt;}
.x2_c02331{left:396.879312pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff1_c02332{font-family:ff1_c02332;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02332{vertical-align:0.000000px;}
.ls0_c02332{letter-spacing:0.000000px;}
.sc__c02332{text-shadow:none;}
.sc0_c02332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02332{-webkit-text-stroke:0px transparent;}
.sc0_c02332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02332{word-spacing:0.000000px;}
.fc0_c02332{color:rgb(0,0,0);}
.fs0_c02332{font-size:72.000000px;}
.y0_c02332{bottom:0.000000px;}
.y1b_c02332{bottom:130.980450px;}
.y1a_c02332{bottom:169.860450px;}
.y19_c02332{bottom:208.650450px;}
.y18_c02332{bottom:247.440450px;}
.y17_c02332{bottom:286.230450px;}
.y16_c02332{bottom:325.020450px;}
.y15_c02332{bottom:363.810450px;}
.y14_c02332{bottom:402.600450px;}
.y13_c02332{bottom:441.480450px;}
.y12_c02332{bottom:480.270450px;}
.y11_c02332{bottom:519.060450px;}
.y10_c02332{bottom:557.850450px;}
.yf_c02332{bottom:596.640450px;}
.ye_c02332{bottom:635.430450px;}
.yd_c02332{bottom:674.220450px;}
.yc_c02332{bottom:713.100450px;}
.yb_c02332{bottom:751.890450px;}
.ya_c02332{bottom:790.680450px;}
.y9_c02332{bottom:829.470450px;}
.y8_c02332{bottom:868.260450px;}
.y7_c02332{bottom:907.050450px;}
.y6_c02332{bottom:945.840450px;}
.y5_c02332{bottom:984.720450px;}
.y4_c02332{bottom:1023.510450px;}
.y3_c02332{bottom:1062.300450px;}
.y2_c02332{bottom:1101.090450px;}
.y1_c02332{bottom:1139.880450px;}
.h1_c02332{height:72.562500px;}
.h0_c02332{height:1263.000000px;}
.w1_c02332{width:892.500000px;}
.w0_c02332{width:892.830000px;}
.x0_c02332{left:0.000000px;}
.x1_c02332{left:446.490000px;}
@media print{
.v0_c02332{vertical-align:0.000000pt;}
.ls0_c02332{letter-spacing:0.000000pt;}
.ws0_c02332{word-spacing:0.000000pt;}
.fs0_c02332{font-size:64.000000pt;}
.y0_c02332{bottom:0.000000pt;}
.y1b_c02332{bottom:116.427067pt;}
.y1a_c02332{bottom:150.987067pt;}
.y19_c02332{bottom:185.467067pt;}
.y18_c02332{bottom:219.947067pt;}
.y17_c02332{bottom:254.427067pt;}
.y16_c02332{bottom:288.907067pt;}
.y15_c02332{bottom:323.387067pt;}
.y14_c02332{bottom:357.867067pt;}
.y13_c02332{bottom:392.427067pt;}
.y12_c02332{bottom:426.907067pt;}
.y11_c02332{bottom:461.387067pt;}
.y10_c02332{bottom:495.867067pt;}
.yf_c02332{bottom:530.347067pt;}
.ye_c02332{bottom:564.827067pt;}
.yd_c02332{bottom:599.307067pt;}
.yc_c02332{bottom:633.867067pt;}
.yb_c02332{bottom:668.347067pt;}
.ya_c02332{bottom:702.827067pt;}
.y9_c02332{bottom:737.307067pt;}
.y8_c02332{bottom:771.787067pt;}
.y7_c02332{bottom:806.267067pt;}
.y6_c02332{bottom:840.747067pt;}
.y5_c02332{bottom:875.307067pt;}
.y4_c02332{bottom:909.787067pt;}
.y3_c02332{bottom:944.267067pt;}
.y2_c02332{bottom:978.747067pt;}
.y1_c02332{bottom:1013.227067pt;}
.h1_c02332{height:64.500000pt;}
.h0_c02332{height:1122.666667pt;}
.w1_c02332{width:793.333333pt;}
.w0_c02332{width:793.626667pt;}
.x0_c02332{left:0.000000pt;}
.x1_c02332{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_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_e377521ceeecd6429111c001.woff2')format("woff");}.ff1_c02333{font-family:ff1_c02333;line-height:1.311035;font-style:normal;font-weight:normal;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_717df8b98a76a48da46205e5.woff2')format("woff");}.ff2_c02333{font-family:ff2_c02333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02333;src:url('chunks/assets/font_1c57285cf34d35f4097c83df.woff2')format("woff");}.ff3_c02333{font-family:ff3_c02333;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_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;}
.lsa_c02333{letter-spacing:-0.036000px;}
.ls9_c02333{letter-spacing:-0.021600px;}
.lsb_c02333{letter-spacing:-0.014400px;}
.ls8_c02333{letter-spacing:-0.007200px;}
.lsc_c02333{letter-spacing:0.000000px;}
.ls3_c02333{letter-spacing:0.014400px;}
.ls6_c02333{letter-spacing:0.021600px;}
.ls2_c02333{letter-spacing:0.028800px;}
.ls1_c02333{letter-spacing:0.036000px;}
.ls4_c02333{letter-spacing:0.043200px;}
.ls0_c02333{letter-spacing:0.050400px;}
.ls7_c02333{letter-spacing:0.057600px;}
.ls5_c02333{letter-spacing:0.064800px;}
.sc__c02333{text-shadow:none;}
.sc0_c02333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02333{-webkit-text-stroke:0px transparent;}
.sc0_c02333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02333{word-spacing:-18.043200px;}
.wsf_c02333{word-spacing:-0.302400px;}
.ws10_c02333{word-spacing:-0.043200px;}
.ws1a_c02333{word-spacing:0.000000px;}
.ws1_c02333{word-spacing:0.007200px;}
.ws19_c02333{word-spacing:0.014400px;}
.wsc_c02333{word-spacing:3.578400px;}
.ws9_c02333{word-spacing:6.746400px;}
.ws8_c02333{word-spacing:6.768000px;}
.ws7_c02333{word-spacing:7.538400px;}
.ws2_c02333{word-spacing:9.309600px;}
.ws3_c02333{word-spacing:9.316800px;}
.ws4_c02333{word-spacing:9.324000px;}
.wsb_c02333{word-spacing:10.677600px;}
.wsa_c02333{word-spacing:10.706400px;}
.wsd_c02333{word-spacing:11.008800px;}
.wse_c02333{word-spacing:11.124000px;}
.ws15_c02333{word-spacing:17.467200px;}
.ws17_c02333{word-spacing:17.582400px;}
.ws16_c02333{word-spacing:17.661600px;}
.ws18_c02333{word-spacing:17.676000px;}
.ws5_c02333{word-spacing:24.732000px;}
.ws6_c02333{word-spacing:24.811200px;}
.ws11_c02333{word-spacing:25.869600px;}
.ws13_c02333{word-spacing:25.876800px;}
.ws14_c02333{word-spacing:25.891200px;}
.ws12_c02333{word-spacing:25.898400px;}
._0_c02333{margin-left:-1.252800px;}
.fc0_c02333{color:rgb(0,0,0);}
.fs0_c02333{font-size:72.000000px;}
.y0_c02333{bottom:0.000000px;}
.y20_c02333{bottom:139.980450px;}
.y1f_c02333{bottom:171.030450px;}
.y1e_c02333{bottom:202.080450px;}
.y1d_c02333{bottom:233.040450px;}
.y1c_c02333{bottom:264.090450px;}
.y1b_c02333{bottom:295.140450px;}
.y1a_c02333{bottom:326.190450px;}
.y19_c02333{bottom:357.240450px;}
.y18_c02333{bottom:388.290450px;}
.y17_c02333{bottom:419.340450px;}
.y16_c02333{bottom:450.390450px;}
.y15_c02333{bottom:481.440450px;}
.y14_c02333{bottom:512.490450px;}
.y13_c02333{bottom:543.540450px;}
.y12_c02333{bottom:574.590450px;}
.y11_c02333{bottom:605.640450px;}
.y10_c02333{bottom:636.690450px;}
.yf_c02333{bottom:667.740450px;}
.ye_c02333{bottom:698.790450px;}
.yd_c02333{bottom:744.870450px;}
.yc_c02333{bottom:775.920450px;}
.yb_c02333{bottom:806.970450px;}
.ya_c02333{bottom:838.020450px;}
.y9_c02333{bottom:884.010450px;}
.y8_c02333{bottom:915.060450px;}
.y7_c02333{bottom:946.110450px;}
.y6_c02333{bottom:977.160450px;}
.y5_c02333{bottom:1008.210450px;}
.y4_c02333{bottom:1039.260450px;}
.y3_c02333{bottom:1070.310450px;}
.y2_c02333{bottom:1101.360450px;}
.y1_c02333{bottom:1139.880450px;}
.h2_c02333{height:70.664062px;}
.h1_c02333{height:72.562500px;}
.h0_c02333{height:1263.000000px;}
.w1_c02333{width:892.500000px;}
.w0_c02333{width:892.830000px;}
.x0_c02333{left:0.000000px;}
.x3_c02333{left:127.620000px;}
.x2_c02333{left:148.950000px;}
.x1_c02333{left:398.250000px;}
@media print{
.v0_c02333{vertical-align:0.000000pt;}
.lsa_c02333{letter-spacing:-0.032000pt;}
.ls9_c02333{letter-spacing:-0.019200pt;}
.lsb_c02333{letter-spacing:-0.012800pt;}
.ls8_c02333{letter-spacing:-0.006400pt;}
.lsc_c02333{letter-spacing:0.000000pt;}
.ls3_c02333{letter-spacing:0.012800pt;}
.ls6_c02333{letter-spacing:0.019200pt;}
.ls2_c02333{letter-spacing:0.025600pt;}
.ls1_c02333{letter-spacing:0.032000pt;}
.ls4_c02333{letter-spacing:0.038400pt;}
.ls0_c02333{letter-spacing:0.044800pt;}
.ls7_c02333{letter-spacing:0.051200pt;}
.ls5_c02333{letter-spacing:0.057600pt;}
.ws0_c02333{word-spacing:-16.038400pt;}
.wsf_c02333{word-spacing:-0.268800pt;}
.ws10_c02333{word-spacing:-0.038400pt;}
.ws1a_c02333{word-spacing:0.000000pt;}
.ws1_c02333{word-spacing:0.006400pt;}
.ws19_c02333{word-spacing:0.012800pt;}
.wsc_c02333{word-spacing:3.180800pt;}
.ws9_c02333{word-spacing:5.996800pt;}
.ws8_c02333{word-spacing:6.016000pt;}
.ws7_c02333{word-spacing:6.700800pt;}
.ws2_c02333{word-spacing:8.275200pt;}
.ws3_c02333{word-spacing:8.281600pt;}
.ws4_c02333{word-spacing:8.288000pt;}
.wsb_c02333{word-spacing:9.491200pt;}
.wsa_c02333{word-spacing:9.516800pt;}
.wsd_c02333{word-spacing:9.785600pt;}
.wse_c02333{word-spacing:9.888000pt;}
.ws15_c02333{word-spacing:15.526400pt;}
.ws17_c02333{word-spacing:15.628800pt;}
.ws16_c02333{word-spacing:15.699200pt;}
.ws18_c02333{word-spacing:15.712000pt;}
.ws5_c02333{word-spacing:21.984000pt;}
.ws6_c02333{word-spacing:22.054400pt;}
.ws11_c02333{word-spacing:22.995200pt;}
.ws13_c02333{word-spacing:23.001600pt;}
.ws14_c02333{word-spacing:23.014400pt;}
.ws12_c02333{word-spacing:23.020800pt;}
._0_c02333{margin-left:-1.113600pt;}
.fs0_c02333{font-size:64.000000pt;}
.y0_c02333{bottom:0.000000pt;}
.y20_c02333{bottom:124.427067pt;}
.y1f_c02333{bottom:152.027067pt;}
.y1e_c02333{bottom:179.627067pt;}
.y1d_c02333{bottom:207.147067pt;}
.y1c_c02333{bottom:234.747067pt;}
.y1b_c02333{bottom:262.347067pt;}
.y1a_c02333{bottom:289.947067pt;}
.y19_c02333{bottom:317.547067pt;}
.y18_c02333{bottom:345.147067pt;}
.y17_c02333{bottom:372.747067pt;}
.y16_c02333{bottom:400.347067pt;}
.y15_c02333{bottom:427.947067pt;}
.y14_c02333{bottom:455.547067pt;}
.y13_c02333{bottom:483.147067pt;}
.y12_c02333{bottom:510.747067pt;}
.y11_c02333{bottom:538.347067pt;}
.y10_c02333{bottom:565.947067pt;}
.yf_c02333{bottom:593.547067pt;}
.ye_c02333{bottom:621.147067pt;}
.yd_c02333{bottom:662.107067pt;}
.yc_c02333{bottom:689.707067pt;}
.yb_c02333{bottom:717.307067pt;}
.ya_c02333{bottom:744.907067pt;}
.y9_c02333{bottom:785.787067pt;}
.y8_c02333{bottom:813.387067pt;}
.y7_c02333{bottom:840.987067pt;}
.y6_c02333{bottom:868.587067pt;}
.y5_c02333{bottom:896.187067pt;}
.y4_c02333{bottom:923.787067pt;}
.y3_c02333{bottom:951.387067pt;}
.y2_c02333{bottom:978.987067pt;}
.y1_c02333{bottom:1013.227067pt;}
.h2_c02333{height:62.812500pt;}
.h1_c02333{height:64.500000pt;}
.h0_c02333{height:1122.666667pt;}
.w1_c02333{width:793.333333pt;}
.w0_c02333{width:793.626667pt;}
.x0_c02333{left:0.000000pt;}
.x3_c02333{left:113.440000pt;}
.x2_c02333{left:132.400000pt;}
.x1_c02333{left:354.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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c02334{font-family:ff1_c02334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02334;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02334{font-family:ff2_c02334;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;}
.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;}
.ls0_c02334{letter-spacing:0.000000px;}
.sc__c02334{text-shadow:none;}
.sc0_c02334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02334{-webkit-text-stroke:0px transparent;}
.sc0_c02334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02334{word-spacing:0.000000px;}
.fc0_c02334{color:rgb(0,0,0);}
.fs1_c02334{font-size:65.880000px;}
.fs0_c02334{font-size:72.000000px;}
.y0_c02334{bottom:0.000000px;}
.y21_c02334{bottom:147.540600px;}
.y20_c02334{bottom:177.690450px;}
.y1f_c02334{bottom:208.740450px;}
.y1e_c02334{bottom:239.790450px;}
.y1d_c02334{bottom:270.840450px;}
.y1c_c02334{bottom:301.890450px;}
.y1b_c02334{bottom:332.940450px;}
.y1a_c02334{bottom:363.990450px;}
.y19_c02334{bottom:395.040450px;}
.y18_c02334{bottom:426.090450px;}
.y17_c02334{bottom:457.140450px;}
.y16_c02334{bottom:488.190450px;}
.y15_c02334{bottom:519.240450px;}
.y14_c02334{bottom:550.290450px;}
.y13_c02334{bottom:581.340450px;}
.y12_c02334{bottom:612.390450px;}
.y11_c02334{bottom:643.440450px;}
.y10_c02334{bottom:674.490450px;}
.yf_c02334{bottom:705.540450px;}
.ye_c02334{bottom:736.590450px;}
.yd_c02334{bottom:767.640450px;}
.yc_c02334{bottom:798.600450px;}
.yb_c02334{bottom:829.650450px;}
.ya_c02334{bottom:860.700450px;}
.y9_c02334{bottom:891.750450px;}
.y8_c02334{bottom:922.800450px;}
.y7_c02334{bottom:953.850450px;}
.y6_c02334{bottom:984.900450px;}
.y5_c02334{bottom:1015.950450px;}
.y4_c02334{bottom:1047.000450px;}
.y3_c02334{bottom:1078.050450px;}
.y2_c02334{bottom:1109.100450px;}
.y1_c02334{bottom:1140.150450px;}
.h2_c02334{height:43.909277px;}
.h1_c02334{height:70.664062px;}
.h0_c02334{height:1263.000000px;}
.w1_c02334{width:892.500000px;}
.w0_c02334{width:892.830000px;}
.x0_c02334{left:0.000000px;}
.x1_c02334{left:127.620000px;}
@media print{
.v0_c02334{vertical-align:0.000000pt;}
.ls0_c02334{letter-spacing:0.000000pt;}
.ws0_c02334{word-spacing:0.000000pt;}
.fs1_c02334{font-size:58.560000pt;}
.fs0_c02334{font-size:64.000000pt;}
.y0_c02334{bottom:0.000000pt;}
.y21_c02334{bottom:131.147200pt;}
.y20_c02334{bottom:157.947067pt;}
.y1f_c02334{bottom:185.547067pt;}
.y1e_c02334{bottom:213.147067pt;}
.y1d_c02334{bottom:240.747067pt;}
.y1c_c02334{bottom:268.347067pt;}
.y1b_c02334{bottom:295.947067pt;}
.y1a_c02334{bottom:323.547067pt;}
.y19_c02334{bottom:351.147067pt;}
.y18_c02334{bottom:378.747067pt;}
.y17_c02334{bottom:406.347067pt;}
.y16_c02334{bottom:433.947067pt;}
.y15_c02334{bottom:461.547067pt;}
.y14_c02334{bottom:489.147067pt;}
.y13_c02334{bottom:516.747067pt;}
.y12_c02334{bottom:544.347067pt;}
.y11_c02334{bottom:571.947067pt;}
.y10_c02334{bottom:599.547067pt;}
.yf_c02334{bottom:627.147067pt;}
.ye_c02334{bottom:654.747067pt;}
.yd_c02334{bottom:682.347067pt;}
.yc_c02334{bottom:709.867067pt;}
.yb_c02334{bottom:737.467067pt;}
.ya_c02334{bottom:765.067067pt;}
.y9_c02334{bottom:792.667067pt;}
.y8_c02334{bottom:820.267067pt;}
.y7_c02334{bottom:847.867067pt;}
.y6_c02334{bottom:875.467067pt;}
.y5_c02334{bottom:903.067067pt;}
.y4_c02334{bottom:930.667067pt;}
.y3_c02334{bottom:958.267067pt;}
.y2_c02334{bottom:985.867067pt;}
.y1_c02334{bottom:1013.467067pt;}
.h2_c02334{height:39.030469pt;}
.h1_c02334{height:62.812500pt;}
.h0_c02334{height:1122.666667pt;}
.w1_c02334{width:793.333333pt;}
.w0_c02334{width:793.626667pt;}
.x0_c02334{left:0.000000pt;}
.x1_c02334{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_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_e91f76ef29a352b5578d922b.woff2')format("woff");}.ff1_c02335{font-family:ff1_c02335;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02335{font-family:ff2_c02335;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02335;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff3_c02335{font-family:ff3_c02335;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02335;src:url('chunks/assets/font_7558c3bda7c396c1ef28c3de.woff2')format("woff");}.ff4_c02335{font-family:ff4_c02335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02335{vertical-align:0.000000px;}
.lsa_c02335{letter-spacing:-0.050400px;}
.lsc_c02335{letter-spacing:-0.021600px;}
.lsb_c02335{letter-spacing:-0.014400px;}
.ls9_c02335{letter-spacing:-0.007200px;}
.ls8_c02335{letter-spacing:0.000000px;}
.ls0_c02335{letter-spacing:0.007200px;}
.ls2_c02335{letter-spacing:0.014400px;}
.ls5_c02335{letter-spacing:0.021600px;}
.ls6_c02335{letter-spacing:0.028800px;}
.ls7_c02335{letter-spacing:0.036000px;}
.ls4_c02335{letter-spacing:0.043200px;}
.ls3_c02335{letter-spacing:0.050400px;}
.ls1_c02335{letter-spacing:0.079056px;}
.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;}
}
.wse_c02335{word-spacing:-0.108000px;}
.ws7_c02335{word-spacing:-0.100800px;}
.ws11_c02335{word-spacing:-0.093600px;}
.wsb_c02335{word-spacing:-0.086400px;}
.ws13_c02335{word-spacing:-0.079200px;}
.ws1_c02335{word-spacing:-0.064800px;}
.wsc_c02335{word-spacing:-0.036000px;}
.wsd_c02335{word-spacing:-0.028800px;}
.ws6_c02335{word-spacing:-0.021600px;}
.ws8_c02335{word-spacing:-0.014400px;}
.ws0_c02335{word-spacing:-0.007200px;}
.ws2_c02335{word-spacing:0.000000px;}
.ws3_c02335{word-spacing:0.007200px;}
.wsf_c02335{word-spacing:0.014400px;}
.ws10_c02335{word-spacing:0.021600px;}
.ws12_c02335{word-spacing:0.043200px;}
.ws9_c02335{word-spacing:6.458400px;}
.wsa_c02335{word-spacing:6.465600px;}
.ws4_c02335{word-spacing:14.680800px;}
.ws5_c02335{word-spacing:14.709600px;}
._0_c02335{margin-left:-15.120000px;}
._1_c02335{margin-left:-1.425600px;}
.fc0_c02335{color:rgb(0,0,0);}
.fs1_c02335{font-size:65.880000px;}
.fs0_c02335{font-size:72.000000px;}
.y0_c02335{bottom:0.000000px;}
.y3_c02335{bottom:57.721944px;}
.y2_c02335{bottom:77.881224px;}
.y2e_c02335{bottom:140.160600px;}
.y2d_c02335{bottom:164.010600px;}
.y2c_c02335{bottom:187.770600px;}
.y2b_c02335{bottom:211.620600px;}
.y2a_c02335{bottom:235.380600px;}
.y29_c02335{bottom:259.140600px;}
.y28_c02335{bottom:282.990600px;}
.y27_c02335{bottom:306.750600px;}
.y26_c02335{bottom:330.600600px;}
.y25_c02335{bottom:354.540600px;}
.y24_c02335{bottom:378.390450px;}
.y23_c02335{bottom:402.150450px;}
.y22_c02335{bottom:426.000600px;}
.y21_c02335{bottom:449.760450px;}
.y20_c02335{bottom:473.610600px;}
.y1f_c02335{bottom:497.370600px;}
.y1e_c02335{bottom:521.220450px;}
.y1d_c02335{bottom:544.980450px;}
.y1c_c02335{bottom:568.830450px;}
.y1b_c02335{bottom:592.590450px;}
.y1a_c02335{bottom:616.440450px;}
.y19_c02335{bottom:640.200450px;}
.y18_c02335{bottom:664.050450px;}
.y17_c02335{bottom:687.810450px;}
.y16_c02335{bottom:711.660450px;}
.y15_c02335{bottom:735.420450px;}
.y14_c02335{bottom:759.270450px;}
.y13_c02335{bottom:783.030450px;}
.y12_c02335{bottom:806.790600px;}
.y11_c02335{bottom:830.640450px;}
.y10_c02335{bottom:854.400450px;}
.yf_c02335{bottom:878.070450px;}
.ye_c02335{bottom:901.830450px;}
.yd_c02335{bottom:925.680450px;}
.yc_c02335{bottom:949.440450px;}
.yb_c02335{bottom:973.290450px;}
.ya_c02335{bottom:997.230450px;}
.y9_c02335{bottom:1021.080450px;}
.y8_c02335{bottom:1044.840450px;}
.y7_c02335{bottom:1068.510450px;}
.y6_c02335{bottom:1092.270450px;}
.y5_c02335{bottom:1116.120450px;}
.y4_c02335{bottom:1139.880450px;}
.y1_c02335{bottom:1193.160450px;}
.h3_c02335{height:43.909277px;}
.h2_c02335{height:54.331699px;}
.h4_c02335{height:70.664062px;}
.h1_c02335{height:72.562500px;}
.h0_c02335{height:1263.000000px;}
.w1_c02335{width:892.500000px;}
.w0_c02335{width:892.830000px;}
.x0_c02335{left:0.000000px;}
.x1_c02335{left:127.620000px;}
.x6_c02335{left:135.630000px;}
.x4_c02335{left:161.370000px;}
.x7_c02335{left:180.720000px;}
.x5_c02335{left:211.860000px;}
.x3_c02335{left:400.500000px;}
.x2_c02335{left:442.349364px;}
@media print{
.v0_c02335{vertical-align:0.000000pt;}
.lsa_c02335{letter-spacing:-0.044800pt;}
.lsc_c02335{letter-spacing:-0.019200pt;}
.lsb_c02335{letter-spacing:-0.012800pt;}
.ls9_c02335{letter-spacing:-0.006400pt;}
.ls8_c02335{letter-spacing:0.000000pt;}
.ls0_c02335{letter-spacing:0.006400pt;}
.ls2_c02335{letter-spacing:0.012800pt;}
.ls5_c02335{letter-spacing:0.019200pt;}
.ls6_c02335{letter-spacing:0.025600pt;}
.ls7_c02335{letter-spacing:0.032000pt;}
.ls4_c02335{letter-spacing:0.038400pt;}
.ls3_c02335{letter-spacing:0.044800pt;}
.ls1_c02335{letter-spacing:0.070272pt;}
.wse_c02335{word-spacing:-0.096000pt;}
.ws7_c02335{word-spacing:-0.089600pt;}
.ws11_c02335{word-spacing:-0.083200pt;}
.wsb_c02335{word-spacing:-0.076800pt;}
.ws13_c02335{word-spacing:-0.070400pt;}
.ws1_c02335{word-spacing:-0.057600pt;}
.wsc_c02335{word-spacing:-0.032000pt;}
.wsd_c02335{word-spacing:-0.025600pt;}
.ws6_c02335{word-spacing:-0.019200pt;}
.ws8_c02335{word-spacing:-0.012800pt;}
.ws0_c02335{word-spacing:-0.006400pt;}
.ws2_c02335{word-spacing:0.000000pt;}
.ws3_c02335{word-spacing:0.006400pt;}
.wsf_c02335{word-spacing:0.012800pt;}
.ws10_c02335{word-spacing:0.019200pt;}
.ws12_c02335{word-spacing:0.038400pt;}
.ws9_c02335{word-spacing:5.740800pt;}
.wsa_c02335{word-spacing:5.747200pt;}
.ws4_c02335{word-spacing:13.049600pt;}
.ws5_c02335{word-spacing:13.075200pt;}
._0_c02335{margin-left:-13.440000pt;}
._1_c02335{margin-left:-1.267200pt;}
.fs1_c02335{font-size:58.560000pt;}
.fs0_c02335{font-size:64.000000pt;}
.y0_c02335{bottom:0.000000pt;}
.y3_c02335{bottom:51.308395pt;}
.y2_c02335{bottom:69.227755pt;}
.y2e_c02335{bottom:124.587200pt;}
.y2d_c02335{bottom:145.787200pt;}
.y2c_c02335{bottom:166.907200pt;}
.y2b_c02335{bottom:188.107200pt;}
.y2a_c02335{bottom:209.227200pt;}
.y29_c02335{bottom:230.347200pt;}
.y28_c02335{bottom:251.547200pt;}
.y27_c02335{bottom:272.667200pt;}
.y26_c02335{bottom:293.867200pt;}
.y25_c02335{bottom:315.147200pt;}
.y24_c02335{bottom:336.347067pt;}
.y23_c02335{bottom:357.467067pt;}
.y22_c02335{bottom:378.667200pt;}
.y21_c02335{bottom:399.787067pt;}
.y20_c02335{bottom:420.987200pt;}
.y1f_c02335{bottom:442.107200pt;}
.y1e_c02335{bottom:463.307067pt;}
.y1d_c02335{bottom:484.427067pt;}
.y1c_c02335{bottom:505.627067pt;}
.y1b_c02335{bottom:526.747067pt;}
.y1a_c02335{bottom:547.947067pt;}
.y19_c02335{bottom:569.067067pt;}
.y18_c02335{bottom:590.267067pt;}
.y17_c02335{bottom:611.387067pt;}
.y16_c02335{bottom:632.587067pt;}
.y15_c02335{bottom:653.707067pt;}
.y14_c02335{bottom:674.907067pt;}
.y13_c02335{bottom:696.027067pt;}
.y12_c02335{bottom:717.147200pt;}
.y11_c02335{bottom:738.347067pt;}
.y10_c02335{bottom:759.467067pt;}
.yf_c02335{bottom:780.507067pt;}
.ye_c02335{bottom:801.627067pt;}
.yd_c02335{bottom:822.827067pt;}
.yc_c02335{bottom:843.947067pt;}
.yb_c02335{bottom:865.147067pt;}
.ya_c02335{bottom:886.427067pt;}
.y9_c02335{bottom:907.627067pt;}
.y8_c02335{bottom:928.747067pt;}
.y7_c02335{bottom:949.787067pt;}
.y6_c02335{bottom:970.907067pt;}
.y5_c02335{bottom:992.107067pt;}
.y4_c02335{bottom:1013.227067pt;}
.y1_c02335{bottom:1060.587067pt;}
.h3_c02335{height:39.030469pt;}
.h2_c02335{height:48.294844pt;}
.h4_c02335{height:62.812500pt;}
.h1_c02335{height:64.500000pt;}
.h0_c02335{height:1122.666667pt;}
.w1_c02335{width:793.333333pt;}
.w0_c02335{width:793.626667pt;}
.x0_c02335{left:0.000000pt;}
.x1_c02335{left:113.440000pt;}
.x6_c02335{left:120.560000pt;}
.x4_c02335{left:143.440000pt;}
.x7_c02335{left:160.640000pt;}
.x5_c02335{left:188.320000pt;}
.x3_c02335{left:356.000000pt;}
.x2_c02335{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9b93435bef84cbaf6394c49.woff2')format("woff");}.ff1_c02336{font-family:ff1_c02336;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02336{font-family:ff2_c02336;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02336;src:url('chunks/assets/font_2465112703502e456d55c29f.woff2')format("woff");}.ff3_c02336{font-family:ff3_c02336;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02336;src:url('chunks/assets/font_955180702b77ae9f08f87882.woff2')format("woff");}.ff4_c02336{font-family:ff4_c02336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02336;src:url('chunks/assets/font_71a119e3c329a7b91c445249.woff2')format("woff");}.ff5_c02336{font-family:ff5_c02336;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_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;}
.ls17_c02336{letter-spacing:-0.036000px;}
.ls1a_c02336{letter-spacing:-0.019764px;}
.ls16_c02336{letter-spacing:-0.014400px;}
.ls18_c02336{letter-spacing:-0.007200px;}
.ls1b_c02336{letter-spacing:-0.006588px;}
.ls15_c02336{letter-spacing:0.000000px;}
.ls10_c02336{letter-spacing:0.006588px;}
.ls0_c02336{letter-spacing:0.007200px;}
.ls1c_c02336{letter-spacing:0.013176px;}
.ls2_c02336{letter-spacing:0.014400px;}
.lsc_c02336{letter-spacing:0.019764px;}
.ls4_c02336{letter-spacing:0.021600px;}
.ls5_c02336{letter-spacing:0.028800px;}
.ls11_c02336{letter-spacing:0.032940px;}
.ls6_c02336{letter-spacing:0.036000px;}
.lsf_c02336{letter-spacing:0.039528px;}
.ls3_c02336{letter-spacing:0.043200px;}
.lsd_c02336{letter-spacing:0.046116px;}
.ls7_c02336{letter-spacing:0.050400px;}
.lsb_c02336{letter-spacing:0.052704px;}
.ls8_c02336{letter-spacing:0.057600px;}
.ls13_c02336{letter-spacing:0.059292px;}
.ls12_c02336{letter-spacing:0.065880px;}
.lse_c02336{letter-spacing:0.072468px;}
.ls1_c02336{letter-spacing:0.079056px;}
.ls14_c02336{letter-spacing:0.092232px;}
.ls19_c02336{letter-spacing:0.108000px;}
.ls9_c02336{letter-spacing:24.840000px;}
.lsa_c02336{letter-spacing:25.200000px;}
.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;}
}
.ws1_c02336{word-spacing:-18.000000px;}
.ws21_c02336{word-spacing:-0.144000px;}
.ws0_c02336{word-spacing:-0.079200px;}
.ws3_c02336{word-spacing:-0.064800px;}
.ws7_c02336{word-spacing:-0.043200px;}
.ws8_c02336{word-spacing:-0.021600px;}
.ws5_c02336{word-spacing:-0.014400px;}
.ws2_c02336{word-spacing:-0.007200px;}
.ws4_c02336{word-spacing:0.000000px;}
.ws6_c02336{word-spacing:0.014400px;}
.ws2f_c02336{word-spacing:0.039528px;}
.ws30_c02336{word-spacing:0.052704px;}
.ws10_c02336{word-spacing:0.331200px;}
.ws11_c02336{word-spacing:0.345600px;}
.ws17_c02336{word-spacing:0.684000px;}
.ws2e_c02336{word-spacing:1.106784px;}
.ws2d_c02336{word-spacing:1.139724px;}
.ws3d_c02336{word-spacing:1.851228px;}
.ws19_c02336{word-spacing:2.426400px;}
.ws18_c02336{word-spacing:2.440800px;}
.ws29_c02336{word-spacing:2.898720px;}
.ws28_c02336{word-spacing:2.925072px;}
.ws9_c02336{word-spacing:3.614400px;}
.wsa_c02336{word-spacing:3.636000px;}
.ws1a_c02336{word-spacing:3.960000px;}
.ws1b_c02336{word-spacing:3.988800px;}
.wsb_c02336{word-spacing:4.665600px;}
.wsc_c02336{word-spacing:4.672800px;}
.ws33_c02336{word-spacing:6.489180px;}
.ws34_c02336{word-spacing:6.508944px;}
.ws26_c02336{word-spacing:6.574824px;}
.ws35_c02336{word-spacing:6.838344px;}
.ws36_c02336{word-spacing:6.871284px;}
.ws27_c02336{word-spacing:7.991244px;}
.ws15_c02336{word-spacing:8.136000px;}
.ws16_c02336{word-spacing:8.229600px;}
.ws14_c02336{word-spacing:8.244000px;}
.ws25_c02336{word-spacing:12.273444px;}
.ws24_c02336{word-spacing:12.280032px;}
.ws2a_c02336{word-spacing:14.809824px;}
.ws2b_c02336{word-spacing:14.842764px;}
.ws39_c02336{word-spacing:15.534504px;}
.ws3a_c02336{word-spacing:15.910020px;}
.ws1f_c02336{word-spacing:16.041600px;}
.ws20_c02336{word-spacing:16.178400px;}
.wsf_c02336{word-spacing:17.604000px;}
.ws37_c02336{word-spacing:18.387108px;}
.ws38_c02336{word-spacing:18.400284px;}
.ws2c_c02336{word-spacing:18.769212px;}
.ws12_c02336{word-spacing:19.339200px;}
.ws13_c02336{word-spacing:19.454400px;}
.ws23_c02336{word-spacing:21.997332px;}
.ws22_c02336{word-spacing:23.492808px;}
.ws31_c02336{word-spacing:24.513948px;}
.ws32_c02336{word-spacing:24.527124px;}
.ws1e_c02336{word-spacing:25.034400px;}
.ws1d_c02336{word-spacing:25.164000px;}
.ws1c_c02336{word-spacing:25.185600px;}
.ws3c_c02336{word-spacing:31.708044px;}
.ws3b_c02336{word-spacing:31.734396px;}
.wsd_c02336{word-spacing:39.571200px;}
.wse_c02336{word-spacing:39.607200px;}
._0_c02336{margin-left:-15.120000px;}
._1_c02336{margin-left:-1.224000px;}
._3_c02336{width:1.179252px;}
._2_c02336{width:24.120000px;}
.fc1_c02336{color:rgb(0,0,255);}
.fc0_c02336{color:rgb(0,0,0);}
.fs3_c02336{font-size:36.000000px;}
.fs1_c02336{font-size:65.880000px;}
.fs0_c02336{font-size:72.000000px;}
.fs2_c02336{font-size:83.880000px;}
.y0_c02336{bottom:0.000000px;}
.y3_c02336{bottom:57.721944px;}
.y2_c02336{bottom:77.881224px;}
.y2f_c02336{bottom:115.766256px;}
.y2e_c02336{bottom:137.546184px;}
.y2d_c02336{bottom:159.416697px;}
.y2c_c02336{bottom:181.196625px;}
.y2b_c02336{bottom:202.976553px;}
.y2a_c02336{bottom:224.847066px;}
.y29_c02336{bottom:246.626994px;}
.y28_c02336{bottom:268.497507px;}
.y27_c02336{bottom:290.277435px;}
.y26_c02336{bottom:312.147948px;}
.y25_c02336{bottom:333.927876px;}
.y24_c02336{bottom:355.798389px;}
.y23_c02336{bottom:377.578317px;}
.y22_c02336{bottom:399.358245px;}
.y21_c02336{bottom:421.228758px;}
.y20_c02336{bottom:443.008686px;}
.y1f_c02336{bottom:464.879199px;}
.y1e_c02336{bottom:486.659127px;}
.y1d_c02336{bottom:508.529640px;}
.y1c_c02336{bottom:530.309568px;}
.y1b_c02336{bottom:552.089496px;}
.y1a_c02336{bottom:573.960009px;}
.y19_c02336{bottom:595.739937px;}
.y18_c02336{bottom:617.610450px;}
.y17_c02336{bottom:640.110450px;}
.y16_c02336{bottom:662.790450px;}
.y15_c02336{bottom:693.840450px;}
.y14_c02336{bottom:724.890450px;}
.y13_c02336{bottom:755.940450px;}
.y12_c02336{bottom:786.990450px;}
.y11_c02336{bottom:818.040450px;}
.y10_c02336{bottom:849.090450px;}
.yf_c02336{bottom:872.850450px;}
.ye_c02336{bottom:897.690450px;}
.yd_c02336{bottom:921.900450px;}
.yc_c02336{bottom:945.660450px;}
.yb_c02336{bottom:969.510450px;}
.ya_c02336{bottom:993.270450px;}
.y9_c02336{bottom:1017.030450px;}
.y8_c02336{bottom:1040.880450px;}
.y7_c02336{bottom:1064.550450px;}
.y6_c02336{bottom:1089.750450px;}
.y5_c02336{bottom:1116.120450px;}
.y4_c02336{bottom:1139.880450px;}
.y1_c02336{bottom:1193.160450px;}
.h8_c02336{height:35.332031px;}
.h3_c02336{height:43.909277px;}
.h2_c02336{height:54.331699px;}
.h9_c02336{height:64.657617px;}
.h7_c02336{height:70.628906px;}
.h6_c02336{height:70.664062px;}
.h1_c02336{height:72.562500px;}
.h4_c02336{height:82.323633px;}
.h5_c02336{height:84.535312px;}
.h0_c02336{height:1263.000000px;}
.w1_c02336{width:892.500000px;}
.w0_c02336{width:892.830000px;}
.x0_c02336{left:0.000000px;}
.x1_c02336{left:127.620000px;}
.x3_c02336{left:148.950000px;}
.x4_c02336{left:159.570000px;}
.x5_c02336{left:191.429568px;}
.x2_c02336{left:442.349364px;}
@media print{
.v0_c02336{vertical-align:0.000000pt;}
.ls17_c02336{letter-spacing:-0.032000pt;}
.ls1a_c02336{letter-spacing:-0.017568pt;}
.ls16_c02336{letter-spacing:-0.012800pt;}
.ls18_c02336{letter-spacing:-0.006400pt;}
.ls1b_c02336{letter-spacing:-0.005856pt;}
.ls15_c02336{letter-spacing:0.000000pt;}
.ls10_c02336{letter-spacing:0.005856pt;}
.ls0_c02336{letter-spacing:0.006400pt;}
.ls1c_c02336{letter-spacing:0.011712pt;}
.ls2_c02336{letter-spacing:0.012800pt;}
.lsc_c02336{letter-spacing:0.017568pt;}
.ls4_c02336{letter-spacing:0.019200pt;}
.ls5_c02336{letter-spacing:0.025600pt;}
.ls11_c02336{letter-spacing:0.029280pt;}
.ls6_c02336{letter-spacing:0.032000pt;}
.lsf_c02336{letter-spacing:0.035136pt;}
.ls3_c02336{letter-spacing:0.038400pt;}
.lsd_c02336{letter-spacing:0.040992pt;}
.ls7_c02336{letter-spacing:0.044800pt;}
.lsb_c02336{letter-spacing:0.046848pt;}
.ls8_c02336{letter-spacing:0.051200pt;}
.ls13_c02336{letter-spacing:0.052704pt;}
.ls12_c02336{letter-spacing:0.058560pt;}
.lse_c02336{letter-spacing:0.064416pt;}
.ls1_c02336{letter-spacing:0.070272pt;}
.ls14_c02336{letter-spacing:0.081984pt;}
.ls19_c02336{letter-spacing:0.096000pt;}
.ls9_c02336{letter-spacing:22.080000pt;}
.lsa_c02336{letter-spacing:22.400000pt;}
.ws1_c02336{word-spacing:-16.000000pt;}
.ws21_c02336{word-spacing:-0.128000pt;}
.ws0_c02336{word-spacing:-0.070400pt;}
.ws3_c02336{word-spacing:-0.057600pt;}
.ws7_c02336{word-spacing:-0.038400pt;}
.ws8_c02336{word-spacing:-0.019200pt;}
.ws5_c02336{word-spacing:-0.012800pt;}
.ws2_c02336{word-spacing:-0.006400pt;}
.ws4_c02336{word-spacing:0.000000pt;}
.ws6_c02336{word-spacing:0.012800pt;}
.ws2f_c02336{word-spacing:0.035136pt;}
.ws30_c02336{word-spacing:0.046848pt;}
.ws10_c02336{word-spacing:0.294400pt;}
.ws11_c02336{word-spacing:0.307200pt;}
.ws17_c02336{word-spacing:0.608000pt;}
.ws2e_c02336{word-spacing:0.983808pt;}
.ws2d_c02336{word-spacing:1.013088pt;}
.ws3d_c02336{word-spacing:1.645536pt;}
.ws19_c02336{word-spacing:2.156800pt;}
.ws18_c02336{word-spacing:2.169600pt;}
.ws29_c02336{word-spacing:2.576640pt;}
.ws28_c02336{word-spacing:2.600064pt;}
.ws9_c02336{word-spacing:3.212800pt;}
.wsa_c02336{word-spacing:3.232000pt;}
.ws1a_c02336{word-spacing:3.520000pt;}
.ws1b_c02336{word-spacing:3.545600pt;}
.wsb_c02336{word-spacing:4.147200pt;}
.wsc_c02336{word-spacing:4.153600pt;}
.ws33_c02336{word-spacing:5.768160pt;}
.ws34_c02336{word-spacing:5.785728pt;}
.ws26_c02336{word-spacing:5.844288pt;}
.ws35_c02336{word-spacing:6.078528pt;}
.ws36_c02336{word-spacing:6.107808pt;}
.ws27_c02336{word-spacing:7.103328pt;}
.ws15_c02336{word-spacing:7.232000pt;}
.ws16_c02336{word-spacing:7.315200pt;}
.ws14_c02336{word-spacing:7.328000pt;}
.ws25_c02336{word-spacing:10.909728pt;}
.ws24_c02336{word-spacing:10.915584pt;}
.ws2a_c02336{word-spacing:13.164288pt;}
.ws2b_c02336{word-spacing:13.193568pt;}
.ws39_c02336{word-spacing:13.808448pt;}
.ws3a_c02336{word-spacing:14.142240pt;}
.ws1f_c02336{word-spacing:14.259200pt;}
.ws20_c02336{word-spacing:14.380800pt;}
.wsf_c02336{word-spacing:15.648000pt;}
.ws37_c02336{word-spacing:16.344096pt;}
.ws38_c02336{word-spacing:16.355808pt;}
.ws2c_c02336{word-spacing:16.683744pt;}
.ws12_c02336{word-spacing:17.190400pt;}
.ws13_c02336{word-spacing:17.292800pt;}
.ws23_c02336{word-spacing:19.553184pt;}
.ws22_c02336{word-spacing:20.882496pt;}
.ws31_c02336{word-spacing:21.790176pt;}
.ws32_c02336{word-spacing:21.801888pt;}
.ws1e_c02336{word-spacing:22.252800pt;}
.ws1d_c02336{word-spacing:22.368000pt;}
.ws1c_c02336{word-spacing:22.387200pt;}
.ws3c_c02336{word-spacing:28.184928pt;}
.ws3b_c02336{word-spacing:28.208352pt;}
.wsd_c02336{word-spacing:35.174400pt;}
.wse_c02336{word-spacing:35.206400pt;}
._0_c02336{margin-left:-13.440000pt;}
._1_c02336{margin-left:-1.088000pt;}
._3_c02336{width:1.048224pt;}
._2_c02336{width:21.440000pt;}
.fs3_c02336{font-size:32.000000pt;}
.fs1_c02336{font-size:58.560000pt;}
.fs0_c02336{font-size:64.000000pt;}
.fs2_c02336{font-size:74.560000pt;}
.y0_c02336{bottom:0.000000pt;}
.y3_c02336{bottom:51.308395pt;}
.y2_c02336{bottom:69.227755pt;}
.y2f_c02336{bottom:102.903339pt;}
.y2e_c02336{bottom:122.263275pt;}
.y2d_c02336{bottom:141.703731pt;}
.y2c_c02336{bottom:161.063667pt;}
.y2b_c02336{bottom:180.423603pt;}
.y2a_c02336{bottom:199.864059pt;}
.y29_c02336{bottom:219.223995pt;}
.y28_c02336{bottom:238.664451pt;}
.y27_c02336{bottom:258.024387pt;}
.y26_c02336{bottom:277.464843pt;}
.y25_c02336{bottom:296.824779pt;}
.y24_c02336{bottom:316.265235pt;}
.y23_c02336{bottom:335.625171pt;}
.y22_c02336{bottom:354.985107pt;}
.y21_c02336{bottom:374.425563pt;}
.y20_c02336{bottom:393.785499pt;}
.y1f_c02336{bottom:413.225955pt;}
.y1e_c02336{bottom:432.585891pt;}
.y1d_c02336{bottom:452.026347pt;}
.y1c_c02336{bottom:471.386283pt;}
.y1b_c02336{bottom:490.746219pt;}
.y1a_c02336{bottom:510.186675pt;}
.y19_c02336{bottom:529.546611pt;}
.y18_c02336{bottom:548.987067pt;}
.y17_c02336{bottom:568.987067pt;}
.y16_c02336{bottom:589.147067pt;}
.y15_c02336{bottom:616.747067pt;}
.y14_c02336{bottom:644.347067pt;}
.y13_c02336{bottom:671.947067pt;}
.y12_c02336{bottom:699.547067pt;}
.y11_c02336{bottom:727.147067pt;}
.y10_c02336{bottom:754.747067pt;}
.yf_c02336{bottom:775.867067pt;}
.ye_c02336{bottom:797.947067pt;}
.yd_c02336{bottom:819.467067pt;}
.yc_c02336{bottom:840.587067pt;}
.yb_c02336{bottom:861.787067pt;}
.ya_c02336{bottom:882.907067pt;}
.y9_c02336{bottom:904.027067pt;}
.y8_c02336{bottom:925.227067pt;}
.y7_c02336{bottom:946.267067pt;}
.y6_c02336{bottom:968.667067pt;}
.y5_c02336{bottom:992.107067pt;}
.y4_c02336{bottom:1013.227067pt;}
.y1_c02336{bottom:1060.587067pt;}
.h8_c02336{height:31.406250pt;}
.h3_c02336{height:39.030469pt;}
.h2_c02336{height:48.294844pt;}
.h9_c02336{height:57.473437pt;}
.h7_c02336{height:62.781250pt;}
.h6_c02336{height:62.812500pt;}
.h1_c02336{height:64.500000pt;}
.h4_c02336{height:73.176562pt;}
.h5_c02336{height:75.142500pt;}
.h0_c02336{height:1122.666667pt;}
.w1_c02336{width:793.333333pt;}
.w0_c02336{width:793.626667pt;}
.x0_c02336{left:0.000000pt;}
.x1_c02336{left:113.440000pt;}
.x3_c02336{left:132.400000pt;}
.x4_c02336{left:141.840000pt;}
.x5_c02336{left:170.159616pt;}
.x2_c02336{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9360b0d84d7a7017fdcc3614.woff2')format("woff");}.ff1_c02337{font-family:ff1_c02337;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02337{font-family:ff2_c02337;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02337;src:url('chunks/assets/font_9b2e7711954e63b63b88d613.woff2')format("woff");}.ff3_c02337{font-family:ff3_c02337;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02337;src:url('chunks/assets/font_6dddcee0acd03e8291d8f5f5.woff2')format("woff");}.ff4_c02337{font-family:ff4_c02337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02337;src:url('chunks/assets/font_e4433e095004d806e69bd546.woff2')format("woff");}.ff5_c02337{font-family:ff5_c02337;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_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);}
.v1_c02337{vertical-align:-77.760000px;}
.v2_c02337{vertical-align:-69.840000px;}
.v0_c02337{vertical-align:0.000000px;}
.ls1c_c02337{letter-spacing:-0.208800px;}
.ls1a_c02337{letter-spacing:-0.052668px;}
.ls19_c02337{letter-spacing:-0.043200px;}
.ls18_c02337{letter-spacing:-0.007200px;}
.ls17_c02337{letter-spacing:0.000000px;}
.ls0_c02337{letter-spacing:0.007200px;}
.ls6_c02337{letter-spacing:0.014400px;}
.lsc_c02337{letter-spacing:0.019764px;}
.lse_c02337{letter-spacing:0.021600px;}
.ls14_c02337{letter-spacing:0.026352px;}
.ls3_c02337{letter-spacing:0.028800px;}
.lsb_c02337{letter-spacing:0.032940px;}
.ls4_c02337{letter-spacing:0.036000px;}
.ls8_c02337{letter-spacing:0.039528px;}
.lsd_c02337{letter-spacing:0.043200px;}
.ls15_c02337{letter-spacing:0.046116px;}
.ls2_c02337{letter-spacing:0.050400px;}
.lsa_c02337{letter-spacing:0.052704px;}
.ls9_c02337{letter-spacing:0.059292px;}
.ls16_c02337{letter-spacing:0.065880px;}
.ls13_c02337{letter-spacing:0.072000px;}
.lsf_c02337{letter-spacing:0.072468px;}
.ls1_c02337{letter-spacing:0.079056px;}
.ls12_c02337{letter-spacing:0.079200px;}
.ls1b_c02337{letter-spacing:0.086400px;}
.ls11_c02337{letter-spacing:0.093600px;}
.ls10_c02337{letter-spacing:0.138348px;}
.ls5_c02337{letter-spacing:73.350000px;}
.ls7_c02337{letter-spacing:246.240000px;}
.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;}
}
.ws3_c02337{word-spacing:-18.086400px;}
.ws4_c02337{word-spacing:-18.079200px;}
.ws2_c02337{word-spacing:-18.050400px;}
.ws0_c02337{word-spacing:-18.036000px;}
.ws28_c02337{word-spacing:-0.216000px;}
.ws13_c02337{word-spacing:-0.208800px;}
.ws1_c02337{word-spacing:-0.105408px;}
.ws26_c02337{word-spacing:-0.093600px;}
.ws6_c02337{word-spacing:-0.064800px;}
.ws27_c02337{word-spacing:-0.043200px;}
.ws12_c02337{word-spacing:-0.028800px;}
.ws1d_c02337{word-spacing:-0.021600px;}
.ws5_c02337{word-spacing:-0.007200px;}
.ws7_c02337{word-spacing:0.000000px;}
.ws3e_c02337{word-spacing:0.026352px;}
.ws16_c02337{word-spacing:0.039528px;}
.ws19_c02337{word-spacing:0.052704px;}
.ws3b_c02337{word-spacing:0.757620px;}
.ws32_c02337{word-spacing:0.764208px;}
.ws3a_c02337{word-spacing:0.770796px;}
.ws2f_c02337{word-spacing:1.106784px;}
.ws2e_c02337{word-spacing:1.126548px;}
.ws2b_c02337{word-spacing:2.569320px;}
.ws2a_c02337{word-spacing:2.582496px;}
.ws3c_c02337{word-spacing:2.911896px;}
.ws3d_c02337{word-spacing:2.918484px;}
.ws23_c02337{word-spacing:3.888000px;}
.ws31_c02337{word-spacing:4.361256px;}
.ws29_c02337{word-spacing:4.381020px;}
.wsc_c02337{word-spacing:4.564800px;}
.ws1c_c02337{word-spacing:4.579200px;}
.wsb_c02337{word-spacing:4.665600px;}
.ws1b_c02337{word-spacing:4.680000px;}
.wsd_c02337{word-spacing:4.723200px;}
.ws22_c02337{word-spacing:4.993704px;}
.ws21_c02337{word-spacing:5.059584px;}
.ws34_c02337{word-spacing:5.784264px;}
.ws33_c02337{word-spacing:5.817204px;}
.ws1a_c02337{word-spacing:6.796800px;}
.ws39_c02337{word-spacing:9.032148px;}
.ws38_c02337{word-spacing:9.038736px;}
.wsa_c02337{word-spacing:9.331200px;}
.ws30_c02337{word-spacing:9.394488px;}
.ws35_c02337{word-spacing:9.401076px;}
.ws1e_c02337{word-spacing:10.092816px;}
.ws1f_c02337{word-spacing:10.119168px;}
.ws20_c02337{word-spacing:10.132344px;}
.ws2d_c02337{word-spacing:10.448568px;}
.ws2c_c02337{word-spacing:10.507860px;}
.ws18_c02337{word-spacing:14.467248px;}
.ws10_c02337{word-spacing:15.069600px;}
.ws11_c02337{word-spacing:15.084000px;}
.ws36_c02337{word-spacing:15.165576px;}
.ws37_c02337{word-spacing:15.172164px;}
.wse_c02337{word-spacing:15.372000px;}
.wsf_c02337{word-spacing:15.508800px;}
.ws14_c02337{word-spacing:17.333028px;}
.ws17_c02337{word-spacing:17.339616px;}
.ws24_c02337{word-spacing:17.488800px;}
.ws25_c02337{word-spacing:17.632800px;}
.ws15_c02337{word-spacing:18.393696px;}
.ws8_c02337{word-spacing:25.869600px;}
.ws9_c02337{word-spacing:25.905600px;}
._0_c02337{margin-left:-15.120000px;}
._3_c02337{margin-left:-5.018400px;}
._1_c02337{margin-left:-1.022400px;}
._2_c02337{width:1.093608px;}
.fc1_c02337{color:rgb(0,0,255);}
.fc0_c02337{color:rgb(0,0,0);}
.fs3_c02337{font-size:36.000000px;}
.fs2_c02337{font-size:47.880000px;}
.fs1_c02337{font-size:65.880000px;}
.fs0_c02337{font-size:72.000000px;}
.y0_c02337{bottom:0.000000px;}
.y3_c02337{bottom:57.721944px;}
.y2_c02337{bottom:77.881224px;}
.y2f_c02337{bottom:164.280450px;}
.y2e_c02337{bottom:178.863525px;}
.y2d_c02337{bottom:197.762850px;}
.y2c_c02337{bottom:216.752760px;}
.y2b_c02337{bottom:235.742670px;}
.y2a_c02337{bottom:254.732580px;}
.y29_c02337{bottom:273.722490px;}
.y28_c02337{bottom:292.621815px;}
.y27_c02337{bottom:311.611725px;}
.y26_c02337{bottom:330.601635px;}
.y25_c02337{bottom:349.591545px;}
.y24_c02337{bottom:368.581455px;}
.y23_c02337{bottom:387.571365px;}
.y22_c02337{bottom:406.470690px;}
.y21_c02337{bottom:425.460600px;}
.y20_c02337{bottom:455.160450px;}
.y1f_c02337{bottom:486.210450px;}
.y1e_c02337{bottom:517.260450px;}
.y1d_c02337{bottom:543.720450px;}
.y1c_c02337{bottom:561.990450px;}
.y1b_c02337{bottom:584.310450px;}
.y1a_c02337{bottom:606.090450px;}
.y19_c02337{bottom:628.320450px;}
.y18_c02337{bottom:650.100549px;}
.y17_c02337{bottom:665.940450px;}
.y16_c02337{bottom:691.320450px;}
.y15_c02337{bottom:722.370450px;}
.y14_c02337{bottom:753.420450px;}
.y13_c02337{bottom:777.360600px;}
.y12_c02337{bottom:789.331215px;}
.y11_c02337{bottom:808.230540px;}
.y10_c02337{bottom:827.220450px;}
.yf_c02337{bottom:845.400450px;}
.ye_c02337{bottom:859.980630px;}
.yd_c02337{bottom:878.970540px;}
.yc_c02337{bottom:915.420450px;}
.yb_c02337{bottom:938.010450px;}
.ya_c02337{bottom:969.060450px;}
.y9_c02337{bottom:1000.110450px;}
.y8_c02337{bottom:1050.600450px;}
.y7_c02337{bottom:1068.690450px;}
.y6_c02337{bottom:1092.450450px;}
.y5_c02337{bottom:1116.300450px;}
.y4_c02337{bottom:1139.880450px;}
.y1_c02337{bottom:1193.160450px;}
.h6_c02337{height:35.332031px;}
.h3_c02337{height:43.909277px;}
.h5_c02337{height:46.991602px;}
.h2_c02337{height:54.331699px;}
.h7_c02337{height:64.657617px;}
.h4_c02337{height:70.664062px;}
.h1_c02337{height:72.562500px;}
.h0_c02337{height:1263.000000px;}
.w1_c02337{width:892.500000px;}
.w0_c02337{width:892.830000px;}
.x0_c02337{left:0.000000px;}
.x1_c02337{left:127.620000px;}
.x3_c02337{left:135.630000px;}
.x5_c02337{left:148.950000px;}
.x6_c02337{left:159.570000px;}
.x4_c02337{left:170.190288px;}
.x7_c02337{left:191.430000px;}
.x2_c02337{left:442.349364px;}
@media print{
.v1_c02337{vertical-align:-69.120000pt;}
.v2_c02337{vertical-align:-62.080000pt;}
.v0_c02337{vertical-align:0.000000pt;}
.ls1c_c02337{letter-spacing:-0.185600pt;}
.ls1a_c02337{letter-spacing:-0.046816pt;}
.ls19_c02337{letter-spacing:-0.038400pt;}
.ls18_c02337{letter-spacing:-0.006400pt;}
.ls17_c02337{letter-spacing:0.000000pt;}
.ls0_c02337{letter-spacing:0.006400pt;}
.ls6_c02337{letter-spacing:0.012800pt;}
.lsc_c02337{letter-spacing:0.017568pt;}
.lse_c02337{letter-spacing:0.019200pt;}
.ls14_c02337{letter-spacing:0.023424pt;}
.ls3_c02337{letter-spacing:0.025600pt;}
.lsb_c02337{letter-spacing:0.029280pt;}
.ls4_c02337{letter-spacing:0.032000pt;}
.ls8_c02337{letter-spacing:0.035136pt;}
.lsd_c02337{letter-spacing:0.038400pt;}
.ls15_c02337{letter-spacing:0.040992pt;}
.ls2_c02337{letter-spacing:0.044800pt;}
.lsa_c02337{letter-spacing:0.046848pt;}
.ls9_c02337{letter-spacing:0.052704pt;}
.ls16_c02337{letter-spacing:0.058560pt;}
.ls13_c02337{letter-spacing:0.064000pt;}
.lsf_c02337{letter-spacing:0.064416pt;}
.ls1_c02337{letter-spacing:0.070272pt;}
.ls12_c02337{letter-spacing:0.070400pt;}
.ls1b_c02337{letter-spacing:0.076800pt;}
.ls11_c02337{letter-spacing:0.083200pt;}
.ls10_c02337{letter-spacing:0.122976pt;}
.ls5_c02337{letter-spacing:65.200000pt;}
.ls7_c02337{letter-spacing:218.880000pt;}
.ws3_c02337{word-spacing:-16.076800pt;}
.ws4_c02337{word-spacing:-16.070400pt;}
.ws2_c02337{word-spacing:-16.044800pt;}
.ws0_c02337{word-spacing:-16.032000pt;}
.ws28_c02337{word-spacing:-0.192000pt;}
.ws13_c02337{word-spacing:-0.185600pt;}
.ws1_c02337{word-spacing:-0.093696pt;}
.ws26_c02337{word-spacing:-0.083200pt;}
.ws6_c02337{word-spacing:-0.057600pt;}
.ws27_c02337{word-spacing:-0.038400pt;}
.ws12_c02337{word-spacing:-0.025600pt;}
.ws1d_c02337{word-spacing:-0.019200pt;}
.ws5_c02337{word-spacing:-0.006400pt;}
.ws7_c02337{word-spacing:0.000000pt;}
.ws3e_c02337{word-spacing:0.023424pt;}
.ws16_c02337{word-spacing:0.035136pt;}
.ws19_c02337{word-spacing:0.046848pt;}
.ws3b_c02337{word-spacing:0.673440pt;}
.ws32_c02337{word-spacing:0.679296pt;}
.ws3a_c02337{word-spacing:0.685152pt;}
.ws2f_c02337{word-spacing:0.983808pt;}
.ws2e_c02337{word-spacing:1.001376pt;}
.ws2b_c02337{word-spacing:2.283840pt;}
.ws2a_c02337{word-spacing:2.295552pt;}
.ws3c_c02337{word-spacing:2.588352pt;}
.ws3d_c02337{word-spacing:2.594208pt;}
.ws23_c02337{word-spacing:3.456000pt;}
.ws31_c02337{word-spacing:3.876672pt;}
.ws29_c02337{word-spacing:3.894240pt;}
.wsc_c02337{word-spacing:4.057600pt;}
.ws1c_c02337{word-spacing:4.070400pt;}
.wsb_c02337{word-spacing:4.147200pt;}
.ws1b_c02337{word-spacing:4.160000pt;}
.wsd_c02337{word-spacing:4.198400pt;}
.ws22_c02337{word-spacing:4.438848pt;}
.ws21_c02337{word-spacing:4.497408pt;}
.ws34_c02337{word-spacing:5.141568pt;}
.ws33_c02337{word-spacing:5.170848pt;}
.ws1a_c02337{word-spacing:6.041600pt;}
.ws39_c02337{word-spacing:8.028576pt;}
.ws38_c02337{word-spacing:8.034432pt;}
.wsa_c02337{word-spacing:8.294400pt;}
.ws30_c02337{word-spacing:8.350656pt;}
.ws35_c02337{word-spacing:8.356512pt;}
.ws1e_c02337{word-spacing:8.971392pt;}
.ws1f_c02337{word-spacing:8.994816pt;}
.ws20_c02337{word-spacing:9.006528pt;}
.ws2d_c02337{word-spacing:9.287616pt;}
.ws2c_c02337{word-spacing:9.340320pt;}
.ws18_c02337{word-spacing:12.859776pt;}
.ws10_c02337{word-spacing:13.395200pt;}
.ws11_c02337{word-spacing:13.408000pt;}
.ws36_c02337{word-spacing:13.480512pt;}
.ws37_c02337{word-spacing:13.486368pt;}
.wse_c02337{word-spacing:13.664000pt;}
.wsf_c02337{word-spacing:13.785600pt;}
.ws14_c02337{word-spacing:15.407136pt;}
.ws17_c02337{word-spacing:15.412992pt;}
.ws24_c02337{word-spacing:15.545600pt;}
.ws25_c02337{word-spacing:15.673600pt;}
.ws15_c02337{word-spacing:16.349952pt;}
.ws8_c02337{word-spacing:22.995200pt;}
.ws9_c02337{word-spacing:23.027200pt;}
._0_c02337{margin-left:-13.440000pt;}
._3_c02337{margin-left:-4.460800pt;}
._1_c02337{margin-left:-0.908800pt;}
._2_c02337{width:0.972096pt;}
.fs3_c02337{font-size:32.000000pt;}
.fs2_c02337{font-size:42.560000pt;}
.fs1_c02337{font-size:58.560000pt;}
.fs0_c02337{font-size:64.000000pt;}
.y0_c02337{bottom:0.000000pt;}
.y3_c02337{bottom:51.308395pt;}
.y2_c02337{bottom:69.227755pt;}
.y2f_c02337{bottom:146.027067pt;}
.y2e_c02337{bottom:158.989800pt;}
.y2d_c02337{bottom:175.789200pt;}
.y2c_c02337{bottom:192.669120pt;}
.y2b_c02337{bottom:209.549040pt;}
.y2a_c02337{bottom:226.428960pt;}
.y29_c02337{bottom:243.308880pt;}
.y28_c02337{bottom:260.108280pt;}
.y27_c02337{bottom:276.988200pt;}
.y26_c02337{bottom:293.868120pt;}
.y25_c02337{bottom:310.748040pt;}
.y24_c02337{bottom:327.627960pt;}
.y23_c02337{bottom:344.507880pt;}
.y22_c02337{bottom:361.307280pt;}
.y21_c02337{bottom:378.187200pt;}
.y20_c02337{bottom:404.587067pt;}
.y1f_c02337{bottom:432.187067pt;}
.y1e_c02337{bottom:459.787067pt;}
.y1d_c02337{bottom:483.307067pt;}
.y1c_c02337{bottom:499.547067pt;}
.y1b_c02337{bottom:519.387067pt;}
.y1a_c02337{bottom:538.747067pt;}
.y19_c02337{bottom:558.507067pt;}
.y18_c02337{bottom:577.867155pt;}
.y17_c02337{bottom:591.947067pt;}
.y16_c02337{bottom:614.507067pt;}
.y15_c02337{bottom:642.107067pt;}
.y14_c02337{bottom:669.707067pt;}
.y13_c02337{bottom:690.987200pt;}
.y12_c02337{bottom:701.627747pt;}
.y11_c02337{bottom:718.427147pt;}
.y10_c02337{bottom:735.307067pt;}
.yf_c02337{bottom:751.467067pt;}
.ye_c02337{bottom:764.427227pt;}
.yd_c02337{bottom:781.307147pt;}
.yc_c02337{bottom:813.707067pt;}
.yb_c02337{bottom:833.787067pt;}
.ya_c02337{bottom:861.387067pt;}
.y9_c02337{bottom:888.987067pt;}
.y8_c02337{bottom:933.867067pt;}
.y7_c02337{bottom:949.947067pt;}
.y6_c02337{bottom:971.067067pt;}
.y5_c02337{bottom:992.267067pt;}
.y4_c02337{bottom:1013.227067pt;}
.y1_c02337{bottom:1060.587067pt;}
.h6_c02337{height:31.406250pt;}
.h3_c02337{height:39.030469pt;}
.h5_c02337{height:41.770312pt;}
.h2_c02337{height:48.294844pt;}
.h7_c02337{height:57.473437pt;}
.h4_c02337{height:62.812500pt;}
.h1_c02337{height:64.500000pt;}
.h0_c02337{height:1122.666667pt;}
.w1_c02337{width:793.333333pt;}
.w0_c02337{width:793.626667pt;}
.x0_c02337{left:0.000000pt;}
.x1_c02337{left:113.440000pt;}
.x3_c02337{left:120.560000pt;}
.x5_c02337{left:132.400000pt;}
.x6_c02337{left:141.840000pt;}
.x4_c02337{left:151.280256pt;}
.x7_c02337{left:170.160000pt;}
.x2_c02337{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c8ceda56bbc29c03ff60ce1.woff2')format("woff");}.ff1_c02338{font-family:ff1_c02338;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02338{font-family:ff2_c02338;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02338;src:url('chunks/assets/font_4f581026b92c246964411cb4.woff2')format("woff");}.ff3_c02338{font-family:ff3_c02338;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02338;src:url('chunks/assets/font_20a7b04e7c6a061432489acb.woff2')format("woff");}.ff4_c02338{font-family:ff4_c02338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02338;src:url('chunks/assets/font_8d0d539285369780413f2dec.woff2')format("woff");}.ff5_c02338{font-family:ff5_c02338;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_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;}
.ls19_c02338{letter-spacing:-0.043200px;}
.ls18_c02338{letter-spacing:-0.021600px;}
.ls1a_c02338{letter-spacing:-0.007200px;}
.ls17_c02338{letter-spacing:0.000000px;}
.ls16_c02338{letter-spacing:0.006588px;}
.ls0_c02338{letter-spacing:0.007200px;}
.ls13_c02338{letter-spacing:0.013176px;}
.ls2_c02338{letter-spacing:0.014400px;}
.ls11_c02338{letter-spacing:0.019764px;}
.ls4_c02338{letter-spacing:0.026352px;}
.ls3_c02338{letter-spacing:0.028800px;}
.lsa_c02338{letter-spacing:0.032940px;}
.ls5_c02338{letter-spacing:0.039528px;}
.lse_c02338{letter-spacing:0.043200px;}
.ls8_c02338{letter-spacing:0.046116px;}
.ls6_c02338{letter-spacing:0.052704px;}
.lsb_c02338{letter-spacing:0.059292px;}
.ls15_c02338{letter-spacing:0.064800px;}
.ls7_c02338{letter-spacing:0.065880px;}
.ls9_c02338{letter-spacing:0.072468px;}
.ls1_c02338{letter-spacing:0.079056px;}
.lsd_c02338{letter-spacing:0.079200px;}
.ls12_c02338{letter-spacing:0.085644px;}
.ls10_c02338{letter-spacing:0.092232px;}
.lsf_c02338{letter-spacing:0.098820px;}
.lsc_c02338{letter-spacing:0.105408px;}
.ls1b_c02338{letter-spacing:0.158400px;}
.ls14_c02338{letter-spacing:0.177876px;}
.sc__c02338{text-shadow:none;}
.sc0_c02338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02338{-webkit-text-stroke:0px transparent;}
.sc0_c02338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02338{word-spacing:-18.028800px;}
.ws33_c02338{word-spacing:-0.208800px;}
.ws8_c02338{word-spacing:-0.079200px;}
.ws2_c02338{word-spacing:-0.064800px;}
.ws1a_c02338{word-spacing:-0.014400px;}
.ws15_c02338{word-spacing:-0.013176px;}
.ws1_c02338{word-spacing:-0.007200px;}
.ws3_c02338{word-spacing:0.000000px;}
.ws1b_c02338{word-spacing:0.007200px;}
.ws14_c02338{word-spacing:0.032940px;}
.ws24_c02338{word-spacing:0.052704px;}
.ws2e_c02338{word-spacing:0.059292px;}
.ws40_c02338{word-spacing:0.085644px;}
.ws46_c02338{word-spacing:0.092232px;}
.ws47_c02338{word-spacing:0.187200px;}
.ws3c_c02338{word-spacing:0.421632px;}
.ws3d_c02338{word-spacing:0.428220px;}
.ws45_c02338{word-spacing:0.770796px;}
.ws1d_c02338{word-spacing:1.791936px;}
.ws44_c02338{word-spacing:1.798524px;}
.ws1e_c02338{word-spacing:1.831464px;}
.ws43_c02338{word-spacing:1.857816px;}
.ws25_c02338{word-spacing:2.206980px;}
.ws41_c02338{word-spacing:2.569320px;}
.ws10_c02338{word-spacing:2.898720px;}
.ws11_c02338{word-spacing:2.918484px;}
.ws3e_c02338{word-spacing:2.931660px;}
.ws23_c02338{word-spacing:3.656340px;}
.ws3f_c02338{word-spacing:4.367844px;}
.ws19_c02338{word-spacing:4.996800px;}
.ws29_c02338{word-spacing:5.764500px;}
.ws1f_c02338{word-spacing:5.771088px;}
.ws28_c02338{word-spacing:5.804028px;}
.ws20_c02338{word-spacing:5.817204px;}
.ws32_c02338{word-spacing:6.179544px;}
.ws16_c02338{word-spacing:6.400800px;}
.ws17_c02338{word-spacing:6.840000px;}
.ws18_c02338{word-spacing:6.847200px;}
.wsd_c02338{word-spacing:6.877872px;}
.wsc_c02338{word-spacing:6.891048px;}
.ws9_c02338{word-spacing:6.904224px;}
.ws3a_c02338{word-spacing:7.602552px;}
.ws2a_c02338{word-spacing:9.032148px;}
.ws2b_c02338{word-spacing:9.038736px;}
.ws31_c02338{word-spacing:9.387900px;}
.ws30_c02338{word-spacing:9.434016px;}
.ws1c_c02338{word-spacing:9.783180px;}
.wse_c02338{word-spacing:10.105992px;}
.wsf_c02338{word-spacing:10.125756px;}
.ws39_c02338{word-spacing:10.494684px;}
.ws38_c02338{word-spacing:10.501272px;}
.ws42_c02338{word-spacing:10.514448px;}
.ws37_c02338{word-spacing:12.273444px;}
.ws36_c02338{word-spacing:12.280032px;}
.ws26_c02338{word-spacing:14.440896px;}
.ws27_c02338{word-spacing:14.467248px;}
.ws3b_c02338{word-spacing:16.647876px;}
.ws2c_c02338{word-spacing:18.426636px;}
.ws12_c02338{word-spacing:19.118376px;}
.ws13_c02338{word-spacing:19.138140px;}
.ws2d_c02338{word-spacing:19.467540px;}
.ws2f_c02338{word-spacing:19.507068px;}
.ws22_c02338{word-spacing:24.474420px;}
.ws21_c02338{word-spacing:24.520536px;}
.ws5_c02338{word-spacing:28.785600px;}
.ws4_c02338{word-spacing:28.864800px;}
.wsa_c02338{word-spacing:29.230956px;}
.ws34_c02338{word-spacing:32.781888px;}
.ws35_c02338{word-spacing:32.795064px;}
.wsb_c02338{word-spacing:34.264188px;}
.ws6_c02338{word-spacing:39.261600px;}
.ws7_c02338{word-spacing:39.283200px;}
._0_c02338{margin-left:-15.120000px;}
._1_c02338{margin-left:-1.021140px;}
._2_c02338{width:1.021140px;}
.fc0_c02338{color:rgb(0,0,0);}
.fs2_c02338{font-size:24.120000px;}
.fs3_c02338{font-size:36.000000px;}
.fs1_c02338{font-size:65.880000px;}
.fs0_c02338{font-size:72.000000px;}
.y0_c02338{bottom:0.000000px;}
.y3_c02338{bottom:57.721944px;}
.y2_c02338{bottom:77.881224px;}
.y37_c02338{bottom:112.172925px;}
.y36_c02338{bottom:132.513375px;}
.y35_c02338{bottom:151.412700px;}
.y34_c02338{bottom:170.402610px;}
.y33_c02338{bottom:189.392520px;}
.y32_c02338{bottom:208.382430px;}
.y31_c02338{bottom:227.372340px;}
.y30_c02338{bottom:246.362250px;}
.y2f_c02338{bottom:265.261575px;}
.y2e_c02338{bottom:284.251485px;}
.y2d_c02338{bottom:303.241395px;}
.y2c_c02338{bottom:322.231305px;}
.y2b_c02338{bottom:341.221215px;}
.y2a_c02338{bottom:360.120540px;}
.y29_c02338{bottom:379.110450px;}
.y28_c02338{bottom:399.270600px;}
.y27_c02338{bottom:419.160600px;}
.y26_c02338{bottom:443.100450px;}
.y25_c02338{bottom:454.983060px;}
.y24_c02338{bottom:473.972970px;}
.y23_c02338{bottom:492.962880px;}
.y22_c02338{bottom:511.952790px;}
.y21_c02338{bottom:530.942700px;}
.y20_c02338{bottom:549.932610px;}
.y1f_c02338{bottom:568.831935px;}
.y1e_c02338{bottom:587.821845px;}
.y1d_c02338{bottom:606.811755px;}
.y1c_c02338{bottom:625.801665px;}
.y1b_c02338{bottom:644.791575px;}
.y1a_c02338{bottom:663.690900px;}
.y19_c02338{bottom:682.680810px;}
.y18_c02338{bottom:701.670720px;}
.y17_c02338{bottom:720.660630px;}
.y16_c02338{bottom:739.650540px;}
.y15_c02338{bottom:758.640450px;}
.y14_c02338{bottom:788.250450px;}
.y13_c02338{bottom:819.300450px;}
.y12_c02338{bottom:850.350450px;}
.y11_c02338{bottom:874.290600px;}
.y10_c02338{bottom:886.262340px;}
.yf_c02338{bottom:905.252250px;}
.ye_c02338{bottom:924.151575px;}
.yd_c02338{bottom:943.141485px;}
.yc_c02338{bottom:962.131395px;}
.yb_c02338{bottom:981.121305px;}
.ya_c02338{bottom:1000.111215px;}
.y9_c02338{bottom:1019.010540px;}
.y8_c02338{bottom:1038.000450px;}
.y7_c02338{bottom:1058.160450px;}
.y6_c02338{bottom:1078.050450px;}
.y5_c02338{bottom:1109.100450px;}
.y4_c02338{bottom:1140.150450px;}
.y1_c02338{bottom:1193.160450px;}
.h5_c02338{height:23.672461px;}
.h7_c02338{height:35.332031px;}
.h3_c02338{height:43.909277px;}
.h2_c02338{height:54.331699px;}
.h6_c02338{height:64.657617px;}
.h8_c02338{height:70.654162px;}
.h4_c02338{height:70.664062px;}
.h1_c02338{height:72.562500px;}
.h0_c02338{height:1263.000000px;}
.w1_c02338{width:892.500000px;}
.w0_c02338{width:892.830000px;}
.x0_c02338{left:0.000000px;}
.x1_c02338{left:127.620000px;}
.x3_c02338{left:148.950000px;}
.x5_c02338{left:170.190288px;}
.x4_c02338{left:191.430000px;}
.x2_c02338{left:442.349364px;}
@media print{
.v0_c02338{vertical-align:0.000000pt;}
.ls19_c02338{letter-spacing:-0.038400pt;}
.ls18_c02338{letter-spacing:-0.019200pt;}
.ls1a_c02338{letter-spacing:-0.006400pt;}
.ls17_c02338{letter-spacing:0.000000pt;}
.ls16_c02338{letter-spacing:0.005856pt;}
.ls0_c02338{letter-spacing:0.006400pt;}
.ls13_c02338{letter-spacing:0.011712pt;}
.ls2_c02338{letter-spacing:0.012800pt;}
.ls11_c02338{letter-spacing:0.017568pt;}
.ls4_c02338{letter-spacing:0.023424pt;}
.ls3_c02338{letter-spacing:0.025600pt;}
.lsa_c02338{letter-spacing:0.029280pt;}
.ls5_c02338{letter-spacing:0.035136pt;}
.lse_c02338{letter-spacing:0.038400pt;}
.ls8_c02338{letter-spacing:0.040992pt;}
.ls6_c02338{letter-spacing:0.046848pt;}
.lsb_c02338{letter-spacing:0.052704pt;}
.ls15_c02338{letter-spacing:0.057600pt;}
.ls7_c02338{letter-spacing:0.058560pt;}
.ls9_c02338{letter-spacing:0.064416pt;}
.ls1_c02338{letter-spacing:0.070272pt;}
.lsd_c02338{letter-spacing:0.070400pt;}
.ls12_c02338{letter-spacing:0.076128pt;}
.ls10_c02338{letter-spacing:0.081984pt;}
.lsf_c02338{letter-spacing:0.087840pt;}
.lsc_c02338{letter-spacing:0.093696pt;}
.ls1b_c02338{letter-spacing:0.140800pt;}
.ls14_c02338{letter-spacing:0.158112pt;}
.ws0_c02338{word-spacing:-16.025600pt;}
.ws33_c02338{word-spacing:-0.185600pt;}
.ws8_c02338{word-spacing:-0.070400pt;}
.ws2_c02338{word-spacing:-0.057600pt;}
.ws1a_c02338{word-spacing:-0.012800pt;}
.ws15_c02338{word-spacing:-0.011712pt;}
.ws1_c02338{word-spacing:-0.006400pt;}
.ws3_c02338{word-spacing:0.000000pt;}
.ws1b_c02338{word-spacing:0.006400pt;}
.ws14_c02338{word-spacing:0.029280pt;}
.ws24_c02338{word-spacing:0.046848pt;}
.ws2e_c02338{word-spacing:0.052704pt;}
.ws40_c02338{word-spacing:0.076128pt;}
.ws46_c02338{word-spacing:0.081984pt;}
.ws47_c02338{word-spacing:0.166400pt;}
.ws3c_c02338{word-spacing:0.374784pt;}
.ws3d_c02338{word-spacing:0.380640pt;}
.ws45_c02338{word-spacing:0.685152pt;}
.ws1d_c02338{word-spacing:1.592832pt;}
.ws44_c02338{word-spacing:1.598688pt;}
.ws1e_c02338{word-spacing:1.627968pt;}
.ws43_c02338{word-spacing:1.651392pt;}
.ws25_c02338{word-spacing:1.961760pt;}
.ws41_c02338{word-spacing:2.283840pt;}
.ws10_c02338{word-spacing:2.576640pt;}
.ws11_c02338{word-spacing:2.594208pt;}
.ws3e_c02338{word-spacing:2.605920pt;}
.ws23_c02338{word-spacing:3.250080pt;}
.ws3f_c02338{word-spacing:3.882528pt;}
.ws19_c02338{word-spacing:4.441600pt;}
.ws29_c02338{word-spacing:5.124000pt;}
.ws1f_c02338{word-spacing:5.129856pt;}
.ws28_c02338{word-spacing:5.159136pt;}
.ws20_c02338{word-spacing:5.170848pt;}
.ws32_c02338{word-spacing:5.492928pt;}
.ws16_c02338{word-spacing:5.689600pt;}
.ws17_c02338{word-spacing:6.080000pt;}
.ws18_c02338{word-spacing:6.086400pt;}
.wsd_c02338{word-spacing:6.113664pt;}
.wsc_c02338{word-spacing:6.125376pt;}
.ws9_c02338{word-spacing:6.137088pt;}
.ws3a_c02338{word-spacing:6.757824pt;}
.ws2a_c02338{word-spacing:8.028576pt;}
.ws2b_c02338{word-spacing:8.034432pt;}
.ws31_c02338{word-spacing:8.344800pt;}
.ws30_c02338{word-spacing:8.385792pt;}
.ws1c_c02338{word-spacing:8.696160pt;}
.wse_c02338{word-spacing:8.983104pt;}
.wsf_c02338{word-spacing:9.000672pt;}
.ws39_c02338{word-spacing:9.328608pt;}
.ws38_c02338{word-spacing:9.334464pt;}
.ws42_c02338{word-spacing:9.346176pt;}
.ws37_c02338{word-spacing:10.909728pt;}
.ws36_c02338{word-spacing:10.915584pt;}
.ws26_c02338{word-spacing:12.836352pt;}
.ws27_c02338{word-spacing:12.859776pt;}
.ws3b_c02338{word-spacing:14.798112pt;}
.ws2c_c02338{word-spacing:16.379232pt;}
.ws12_c02338{word-spacing:16.994112pt;}
.ws13_c02338{word-spacing:17.011680pt;}
.ws2d_c02338{word-spacing:17.304480pt;}
.ws2f_c02338{word-spacing:17.339616pt;}
.ws22_c02338{word-spacing:21.755040pt;}
.ws21_c02338{word-spacing:21.796032pt;}
.ws5_c02338{word-spacing:25.587200pt;}
.ws4_c02338{word-spacing:25.657600pt;}
.wsa_c02338{word-spacing:25.983072pt;}
.ws34_c02338{word-spacing:29.139456pt;}
.ws35_c02338{word-spacing:29.151168pt;}
.wsb_c02338{word-spacing:30.457056pt;}
.ws6_c02338{word-spacing:34.899200pt;}
.ws7_c02338{word-spacing:34.918400pt;}
._0_c02338{margin-left:-13.440000pt;}
._1_c02338{margin-left:-0.907680pt;}
._2_c02338{width:0.907680pt;}
.fs2_c02338{font-size:21.440000pt;}
.fs3_c02338{font-size:32.000000pt;}
.fs1_c02338{font-size:58.560000pt;}
.fs0_c02338{font-size:64.000000pt;}
.y0_c02338{bottom:0.000000pt;}
.y3_c02338{bottom:51.308395pt;}
.y2_c02338{bottom:69.227755pt;}
.y37_c02338{bottom:99.709267pt;}
.y36_c02338{bottom:117.789667pt;}
.y35_c02338{bottom:134.589067pt;}
.y34_c02338{bottom:151.468987pt;}
.y33_c02338{bottom:168.348907pt;}
.y32_c02338{bottom:185.228827pt;}
.y31_c02338{bottom:202.108747pt;}
.y30_c02338{bottom:218.988667pt;}
.y2f_c02338{bottom:235.788067pt;}
.y2e_c02338{bottom:252.667987pt;}
.y2d_c02338{bottom:269.547907pt;}
.y2c_c02338{bottom:286.427827pt;}
.y2b_c02338{bottom:303.307747pt;}
.y2a_c02338{bottom:320.107147pt;}
.y29_c02338{bottom:336.987067pt;}
.y28_c02338{bottom:354.907200pt;}
.y27_c02338{bottom:372.587200pt;}
.y26_c02338{bottom:393.867067pt;}
.y25_c02338{bottom:404.429387pt;}
.y24_c02338{bottom:421.309307pt;}
.y23_c02338{bottom:438.189227pt;}
.y22_c02338{bottom:455.069147pt;}
.y21_c02338{bottom:471.949067pt;}
.y20_c02338{bottom:488.828987pt;}
.y1f_c02338{bottom:505.628387pt;}
.y1e_c02338{bottom:522.508307pt;}
.y1d_c02338{bottom:539.388227pt;}
.y1c_c02338{bottom:556.268147pt;}
.y1b_c02338{bottom:573.148067pt;}
.y1a_c02338{bottom:589.947467pt;}
.y19_c02338{bottom:606.827387pt;}
.y18_c02338{bottom:623.707307pt;}
.y17_c02338{bottom:640.587227pt;}
.y16_c02338{bottom:657.467147pt;}
.y15_c02338{bottom:674.347067pt;}
.y14_c02338{bottom:700.667067pt;}
.y13_c02338{bottom:728.267067pt;}
.y12_c02338{bottom:755.867067pt;}
.y11_c02338{bottom:777.147200pt;}
.y10_c02338{bottom:787.788747pt;}
.yf_c02338{bottom:804.668667pt;}
.ye_c02338{bottom:821.468067pt;}
.yd_c02338{bottom:838.347987pt;}
.yc_c02338{bottom:855.227907pt;}
.yb_c02338{bottom:872.107827pt;}
.ya_c02338{bottom:888.987747pt;}
.y9_c02338{bottom:905.787147pt;}
.y8_c02338{bottom:922.667067pt;}
.y7_c02338{bottom:940.587067pt;}
.y6_c02338{bottom:958.267067pt;}
.y5_c02338{bottom:985.867067pt;}
.y4_c02338{bottom:1013.467067pt;}
.y1_c02338{bottom:1060.587067pt;}
.h5_c02338{height:21.042187pt;}
.h7_c02338{height:31.406250pt;}
.h3_c02338{height:39.030469pt;}
.h2_c02338{height:48.294844pt;}
.h6_c02338{height:57.473437pt;}
.h8_c02338{height:62.803700pt;}
.h4_c02338{height:62.812500pt;}
.h1_c02338{height:64.500000pt;}
.h0_c02338{height:1122.666667pt;}
.w1_c02338{width:793.333333pt;}
.w0_c02338{width:793.626667pt;}
.x0_c02338{left:0.000000pt;}
.x1_c02338{left:113.440000pt;}
.x3_c02338{left:132.400000pt;}
.x5_c02338{left:151.280256pt;}
.x4_c02338{left:170.160000pt;}
.x2_c02338{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_653c13b05042976f10352bcb.woff2')format("woff");}.ff1_c02339{font-family:ff1_c02339;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02339{font-family:ff2_c02339;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02339;src:url('chunks/assets/font_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff3_c02339{font-family:ff3_c02339;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02339;src:url('chunks/assets/font_656b63f870739787e95c41bd.woff2')format("woff");}.ff4_c02339{font-family:ff4_c02339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02339;src:url('chunks/assets/font_fa61d81f0490154f5d350346.woff2')format("woff");}.ff5_c02339{font-family:ff5_c02339;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_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);}
.v1_c02339{vertical-align:-77.760000px;}
.v0_c02339{vertical-align:0.000000px;}
.ls10_c02339{letter-spacing:-0.576000px;}
.ls11_c02339{letter-spacing:-0.028800px;}
.lse_c02339{letter-spacing:-0.021600px;}
.ls12_c02339{letter-spacing:-0.014400px;}
.lsf_c02339{letter-spacing:-0.007200px;}
.lsd_c02339{letter-spacing:0.000000px;}
.ls0_c02339{letter-spacing:0.007200px;}
.ls5_c02339{letter-spacing:0.014400px;}
.ls2_c02339{letter-spacing:0.021600px;}
.ls7_c02339{letter-spacing:0.028800px;}
.ls3_c02339{letter-spacing:0.036000px;}
.ls4_c02339{letter-spacing:0.043200px;}
.lsc_c02339{letter-spacing:0.050400px;}
.ls9_c02339{letter-spacing:0.057600px;}
.ls8_c02339{letter-spacing:0.064800px;}
.lsa_c02339{letter-spacing:0.072000px;}
.ls1_c02339{letter-spacing:0.079056px;}
.lsb_c02339{letter-spacing:0.079200px;}
.ls6_c02339{letter-spacing:73.350000px;}
.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;}
}
.ws1a_c02339{word-spacing:-0.316800px;}
.ws1_c02339{word-spacing:-0.064800px;}
.ws19_c02339{word-spacing:-0.043200px;}
.ws0_c02339{word-spacing:-0.007200px;}
.ws2_c02339{word-spacing:0.000000px;}
.ws3_c02339{word-spacing:0.021600px;}
.wsa_c02339{word-spacing:0.115200px;}
.ws23_c02339{word-spacing:0.216000px;}
.ws22_c02339{word-spacing:0.302400px;}
.ws24_c02339{word-spacing:0.324000px;}
.ws2b_c02339{word-spacing:0.590400px;}
.ws2c_c02339{word-spacing:0.633600px;}
.ws11_c02339{word-spacing:1.634400px;}
.ws13_c02339{word-spacing:1.692000px;}
.ws12_c02339{word-spacing:1.720800px;}
.wsf_c02339{word-spacing:1.958400px;}
.ws10_c02339{word-spacing:2.037600px;}
.ws27_c02339{word-spacing:3.520800px;}
.ws28_c02339{word-spacing:3.585600px;}
.ws1b_c02339{word-spacing:3.873600px;}
.ws35_c02339{word-spacing:3.952800px;}
.ws1c_c02339{word-spacing:3.967200px;}
.ws30_c02339{word-spacing:5.666400px;}
.ws2f_c02339{word-spacing:5.680800px;}
.ws39_c02339{word-spacing:8.179200px;}
.ws3a_c02339{word-spacing:8.236800px;}
.ws38_c02339{word-spacing:8.265600px;}
.ws3b_c02339{word-spacing:8.359200px;}
.ws8_c02339{word-spacing:8.560800px;}
.ws9_c02339{word-spacing:8.640000px;}
.ws1e_c02339{word-spacing:9.302400px;}
.wsb_c02339{word-spacing:9.626400px;}
.wse_c02339{word-spacing:9.684000px;}
.wsd_c02339{word-spacing:9.691200px;}
.ws25_c02339{word-spacing:9.705600px;}
.wsc_c02339{word-spacing:9.720000px;}
.ws26_c02339{word-spacing:9.763200px;}
.ws2d_c02339{word-spacing:10.677600px;}
.ws15_c02339{word-spacing:10.692000px;}
.ws2e_c02339{word-spacing:10.756800px;}
.ws16_c02339{word-spacing:10.764000px;}
.ws2a_c02339{word-spacing:10.893600px;}
.ws1f_c02339{word-spacing:11.037600px;}
.ws29_c02339{word-spacing:11.044800px;}
.ws21_c02339{word-spacing:11.167200px;}
.ws20_c02339{word-spacing:11.188800px;}
.ws18_c02339{word-spacing:11.872800px;}
.ws17_c02339{word-spacing:12.463200px;}
.ws32_c02339{word-spacing:12.470400px;}
.ws34_c02339{word-spacing:12.607200px;}
.ws33_c02339{word-spacing:12.614400px;}
.ws5_c02339{word-spacing:14.004000px;}
.ws36_c02339{word-spacing:14.724000px;}
.ws37_c02339{word-spacing:14.745600px;}
.ws4_c02339{word-spacing:20.498400px;}
.ws7_c02339{word-spacing:22.636800px;}
.ws6_c02339{word-spacing:22.644000px;}
.ws14_c02339{word-spacing:28.051200px;}
.ws31_c02339{word-spacing:34.826400px;}
.ws1d_c02339{word-spacing:43.876800px;}
._0_c02339{margin-left:-15.120000px;}
._1_c02339{margin-left:-1.260000px;}
.fc0_c02339{color:rgb(0,0,0);}
.fs2_c02339{font-size:47.880000px;}
.fs1_c02339{font-size:65.880000px;}
.fs0_c02339{font-size:72.000000px;}
.y0_c02339{bottom:0.000000px;}
.y3_c02339{bottom:57.721944px;}
.y2_c02339{bottom:77.881224px;}
.y28_c02339{bottom:119.010450px;}
.y27_c02339{bottom:150.060450px;}
.y26_c02339{bottom:181.110450px;}
.y25_c02339{bottom:212.160450px;}
.y24_c02339{bottom:243.210450px;}
.y23_c02339{bottom:274.260450px;}
.y22_c02339{bottom:305.310450px;}
.y21_c02339{bottom:336.360450px;}
.y20_c02339{bottom:367.410450px;}
.y1f_c02339{bottom:398.460450px;}
.y1e_c02339{bottom:429.510450px;}
.y1d_c02339{bottom:460.560450px;}
.y1c_c02339{bottom:491.610450px;}
.y1b_c02339{bottom:522.660450px;}
.y1a_c02339{bottom:573.150450px;}
.y19_c02339{bottom:591.150450px;}
.y18_c02339{bottom:614.910450px;}
.y17_c02339{bottom:638.850450px;}
.y16_c02339{bottom:662.430450px;}
.y15_c02339{bottom:682.229874px;}
.y14_c02339{bottom:696.000162px;}
.y13_c02339{bottom:709.770450px;}
.y12_c02339{bottom:735.150450px;}
.y11_c02339{bottom:766.200450px;}
.y10_c02339{bottom:797.250450px;}
.yf_c02339{bottom:828.300450px;}
.ye_c02339{bottom:859.350450px;}
.yd_c02339{bottom:890.400450px;}
.yc_c02339{bottom:921.450450px;}
.yb_c02339{bottom:952.500450px;}
.ya_c02339{bottom:1002.990450px;}
.y9_c02339{bottom:1021.080450px;}
.y8_c02339{bottom:1044.840450px;}
.y7_c02339{bottom:1068.690450px;}
.y6_c02339{bottom:1092.450450px;}
.y5_c02339{bottom:1116.300450px;}
.y4_c02339{bottom:1139.880450px;}
.y1_c02339{bottom:1193.160450px;}
.h3_c02339{height:43.909277px;}
.h5_c02339{height:46.991602px;}
.h2_c02339{height:54.331699px;}
.h6_c02339{height:70.628906px;}
.h4_c02339{height:70.664062px;}
.h1_c02339{height:72.562500px;}
.h0_c02339{height:1263.000000px;}
.w1_c02339{width:892.500000px;}
.w0_c02339{width:892.830000px;}
.x0_c02339{left:0.000000px;}
.x1_c02339{left:127.620000px;}
.x2_c02339{left:442.349364px;}
@media print{
.v1_c02339{vertical-align:-69.120000pt;}
.v0_c02339{vertical-align:0.000000pt;}
.ls10_c02339{letter-spacing:-0.512000pt;}
.ls11_c02339{letter-spacing:-0.025600pt;}
.lse_c02339{letter-spacing:-0.019200pt;}
.ls12_c02339{letter-spacing:-0.012800pt;}
.lsf_c02339{letter-spacing:-0.006400pt;}
.lsd_c02339{letter-spacing:0.000000pt;}
.ls0_c02339{letter-spacing:0.006400pt;}
.ls5_c02339{letter-spacing:0.012800pt;}
.ls2_c02339{letter-spacing:0.019200pt;}
.ls7_c02339{letter-spacing:0.025600pt;}
.ls3_c02339{letter-spacing:0.032000pt;}
.ls4_c02339{letter-spacing:0.038400pt;}
.lsc_c02339{letter-spacing:0.044800pt;}
.ls9_c02339{letter-spacing:0.051200pt;}
.ls8_c02339{letter-spacing:0.057600pt;}
.lsa_c02339{letter-spacing:0.064000pt;}
.ls1_c02339{letter-spacing:0.070272pt;}
.lsb_c02339{letter-spacing:0.070400pt;}
.ls6_c02339{letter-spacing:65.200000pt;}
.ws1a_c02339{word-spacing:-0.281600pt;}
.ws1_c02339{word-spacing:-0.057600pt;}
.ws19_c02339{word-spacing:-0.038400pt;}
.ws0_c02339{word-spacing:-0.006400pt;}
.ws2_c02339{word-spacing:0.000000pt;}
.ws3_c02339{word-spacing:0.019200pt;}
.wsa_c02339{word-spacing:0.102400pt;}
.ws23_c02339{word-spacing:0.192000pt;}
.ws22_c02339{word-spacing:0.268800pt;}
.ws24_c02339{word-spacing:0.288000pt;}
.ws2b_c02339{word-spacing:0.524800pt;}
.ws2c_c02339{word-spacing:0.563200pt;}
.ws11_c02339{word-spacing:1.452800pt;}
.ws13_c02339{word-spacing:1.504000pt;}
.ws12_c02339{word-spacing:1.529600pt;}
.wsf_c02339{word-spacing:1.740800pt;}
.ws10_c02339{word-spacing:1.811200pt;}
.ws27_c02339{word-spacing:3.129600pt;}
.ws28_c02339{word-spacing:3.187200pt;}
.ws1b_c02339{word-spacing:3.443200pt;}
.ws35_c02339{word-spacing:3.513600pt;}
.ws1c_c02339{word-spacing:3.526400pt;}
.ws30_c02339{word-spacing:5.036800pt;}
.ws2f_c02339{word-spacing:5.049600pt;}
.ws39_c02339{word-spacing:7.270400pt;}
.ws3a_c02339{word-spacing:7.321600pt;}
.ws38_c02339{word-spacing:7.347200pt;}
.ws3b_c02339{word-spacing:7.430400pt;}
.ws8_c02339{word-spacing:7.609600pt;}
.ws9_c02339{word-spacing:7.680000pt;}
.ws1e_c02339{word-spacing:8.268800pt;}
.wsb_c02339{word-spacing:8.556800pt;}
.wse_c02339{word-spacing:8.608000pt;}
.wsd_c02339{word-spacing:8.614400pt;}
.ws25_c02339{word-spacing:8.627200pt;}
.wsc_c02339{word-spacing:8.640000pt;}
.ws26_c02339{word-spacing:8.678400pt;}
.ws2d_c02339{word-spacing:9.491200pt;}
.ws15_c02339{word-spacing:9.504000pt;}
.ws2e_c02339{word-spacing:9.561600pt;}
.ws16_c02339{word-spacing:9.568000pt;}
.ws2a_c02339{word-spacing:9.683200pt;}
.ws1f_c02339{word-spacing:9.811200pt;}
.ws29_c02339{word-spacing:9.817600pt;}
.ws21_c02339{word-spacing:9.926400pt;}
.ws20_c02339{word-spacing:9.945600pt;}
.ws18_c02339{word-spacing:10.553600pt;}
.ws17_c02339{word-spacing:11.078400pt;}
.ws32_c02339{word-spacing:11.084800pt;}
.ws34_c02339{word-spacing:11.206400pt;}
.ws33_c02339{word-spacing:11.212800pt;}
.ws5_c02339{word-spacing:12.448000pt;}
.ws36_c02339{word-spacing:13.088000pt;}
.ws37_c02339{word-spacing:13.107200pt;}
.ws4_c02339{word-spacing:18.220800pt;}
.ws7_c02339{word-spacing:20.121600pt;}
.ws6_c02339{word-spacing:20.128000pt;}
.ws14_c02339{word-spacing:24.934400pt;}
.ws31_c02339{word-spacing:30.956800pt;}
.ws1d_c02339{word-spacing:39.001600pt;}
._0_c02339{margin-left:-13.440000pt;}
._1_c02339{margin-left:-1.120000pt;}
.fs2_c02339{font-size:42.560000pt;}
.fs1_c02339{font-size:58.560000pt;}
.fs0_c02339{font-size:64.000000pt;}
.y0_c02339{bottom:0.000000pt;}
.y3_c02339{bottom:51.308395pt;}
.y2_c02339{bottom:69.227755pt;}
.y28_c02339{bottom:105.787067pt;}
.y27_c02339{bottom:133.387067pt;}
.y26_c02339{bottom:160.987067pt;}
.y25_c02339{bottom:188.587067pt;}
.y24_c02339{bottom:216.187067pt;}
.y23_c02339{bottom:243.787067pt;}
.y22_c02339{bottom:271.387067pt;}
.y21_c02339{bottom:298.987067pt;}
.y20_c02339{bottom:326.587067pt;}
.y1f_c02339{bottom:354.187067pt;}
.y1e_c02339{bottom:381.787067pt;}
.y1d_c02339{bottom:409.387067pt;}
.y1c_c02339{bottom:436.987067pt;}
.y1b_c02339{bottom:464.587067pt;}
.y1a_c02339{bottom:509.467067pt;}
.y19_c02339{bottom:525.467067pt;}
.y18_c02339{bottom:546.587067pt;}
.y17_c02339{bottom:567.867067pt;}
.y16_c02339{bottom:588.827067pt;}
.y15_c02339{bottom:606.426555pt;}
.y14_c02339{bottom:618.666811pt;}
.y13_c02339{bottom:630.907067pt;}
.y12_c02339{bottom:653.467067pt;}
.y11_c02339{bottom:681.067067pt;}
.y10_c02339{bottom:708.667067pt;}
.yf_c02339{bottom:736.267067pt;}
.ye_c02339{bottom:763.867067pt;}
.yd_c02339{bottom:791.467067pt;}
.yc_c02339{bottom:819.067067pt;}
.yb_c02339{bottom:846.667067pt;}
.ya_c02339{bottom:891.547067pt;}
.y9_c02339{bottom:907.627067pt;}
.y8_c02339{bottom:928.747067pt;}
.y7_c02339{bottom:949.947067pt;}
.y6_c02339{bottom:971.067067pt;}
.y5_c02339{bottom:992.267067pt;}
.y4_c02339{bottom:1013.227067pt;}
.y1_c02339{bottom:1060.587067pt;}
.h3_c02339{height:39.030469pt;}
.h5_c02339{height:41.770312pt;}
.h2_c02339{height:48.294844pt;}
.h6_c02339{height:62.781250pt;}
.h4_c02339{height:62.812500pt;}
.h1_c02339{height:64.500000pt;}
.h0_c02339{height:1122.666667pt;}
.w1_c02339{width:793.333333pt;}
.w0_c02339{width:793.626667pt;}
.x0_c02339{left:0.000000pt;}
.x1_c02339{left:113.440000pt;}
.x2_c02339{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0264102a5ba79919ea9419f.woff2')format("woff");}.ff1_c02340{font-family:ff1_c02340;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02340{font-family:ff2_c02340;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02340;src:url('chunks/assets/font_ea3dc8613b3cbe82c5eec2e4.woff2')format("woff");}.ff3_c02340{font-family:ff3_c02340;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02340;src:url('chunks/assets/font_9dcfb143b49a01661b9f7418.woff2')format("woff");}.ff4_c02340{font-family:ff4_c02340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02340;src:url('chunks/assets/font_c760854e09ce806516954be1.woff2')format("woff");}.ff5_c02340{font-family:ff5_c02340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02340{vertical-align:-78.838848px;}
.v0_c02340{vertical-align:0.000000px;}
.ls1d_c02340{letter-spacing:-0.270108px;}
.ls1c_c02340{letter-spacing:-0.036000px;}
.ls1b_c02340{letter-spacing:-0.007200px;}
.ls1a_c02340{letter-spacing:0.000000px;}
.ls19_c02340{letter-spacing:0.006588px;}
.ls0_c02340{letter-spacing:0.007200px;}
.ls10_c02340{letter-spacing:0.013176px;}
.ls12_c02340{letter-spacing:0.014400px;}
.ls11_c02340{letter-spacing:0.019764px;}
.ls14_c02340{letter-spacing:0.021600px;}
.ls8_c02340{letter-spacing:0.026352px;}
.ls3_c02340{letter-spacing:0.028800px;}
.ls7_c02340{letter-spacing:0.032940px;}
.ls4_c02340{letter-spacing:0.036000px;}
.lsf_c02340{letter-spacing:0.039528px;}
.ls2_c02340{letter-spacing:0.043200px;}
.lsa_c02340{letter-spacing:0.046116px;}
.ls16_c02340{letter-spacing:0.050400px;}
.ls6_c02340{letter-spacing:0.052704px;}
.ls5_c02340{letter-spacing:0.057600px;}
.lsc_c02340{letter-spacing:0.059292px;}
.ls9_c02340{letter-spacing:0.065880px;}
.lsb_c02340{letter-spacing:0.072468px;}
.ls1_c02340{letter-spacing:0.079056px;}
.ls18_c02340{letter-spacing:0.085644px;}
.lsd_c02340{letter-spacing:0.092232px;}
.lse_c02340{letter-spacing:0.098820px;}
.ls17_c02340{letter-spacing:0.118584px;}
.ls13_c02340{letter-spacing:20.070000px;}
.ls15_c02340{letter-spacing:73.350000px;}
.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;}
}
.ws1a_c02340{word-spacing:-0.342576px;}
.ws15_c02340{word-spacing:-0.329400px;}
.ws2d_c02340{word-spacing:-0.172800px;}
.ws1f_c02340{word-spacing:-0.151200px;}
.ws4_c02340{word-spacing:-0.129600px;}
.ws1_c02340{word-spacing:-0.064800px;}
.wsd_c02340{word-spacing:-0.028800px;}
.ws23_c02340{word-spacing:-0.021600px;}
.ws0_c02340{word-spacing:-0.007200px;}
.ws16_c02340{word-spacing:-0.006588px;}
.ws2_c02340{word-spacing:0.000000px;}
.ws13_c02340{word-spacing:0.019764px;}
.ws11_c02340{word-spacing:0.026352px;}
.ws14_c02340{word-spacing:0.032940px;}
.ws5_c02340{word-spacing:0.036000px;}
.wse_c02340{word-spacing:0.039528px;}
.ws12_c02340{word-spacing:0.046116px;}
.ws17_c02340{word-spacing:0.052704px;}
.wsf_c02340{word-spacing:0.059292px;}
.ws10_c02340{word-spacing:0.065880px;}
.ws19_c02340{word-spacing:0.072468px;}
.ws18_c02340{word-spacing:0.079056px;}
.ws8_c02340{word-spacing:3.088800px;}
.ws7_c02340{word-spacing:3.247200px;}
.ws9_c02340{word-spacing:3.276000px;}
.ws1c_c02340{word-spacing:4.204800px;}
.ws1b_c02340{word-spacing:4.363200px;}
.ws30_c02340{word-spacing:4.651128px;}
.ws31_c02340{word-spacing:4.684068px;}
.ws36_c02340{word-spacing:6.877872px;}
.ws32_c02340{word-spacing:6.884460px;}
.ws37_c02340{word-spacing:6.897636px;}
.ws33_c02340{word-spacing:6.904224px;}
.ws2f_c02340{word-spacing:7.582788px;}
.ws2e_c02340{word-spacing:7.595964px;}
.ws39_c02340{word-spacing:8.656632px;}
.ws38_c02340{word-spacing:8.669808px;}
.ws2b_c02340{word-spacing:10.512000px;}
.ws2c_c02340{word-spacing:10.706400px;}
.ws28_c02340{word-spacing:12.484800px;}
.ws27_c02340{word-spacing:12.492000px;}
.wsb_c02340{word-spacing:13.377600px;}
.wsc_c02340{word-spacing:13.485600px;}
.wsa_c02340{word-spacing:13.644000px;}
.ws3_c02340{word-spacing:15.825600px;}
.ws20_c02340{word-spacing:18.662400px;}
.ws1d_c02340{word-spacing:18.943200px;}
.ws1e_c02340{word-spacing:19.123200px;}
.ws3a_c02340{word-spacing:19.124964px;}
.ws34_c02340{word-spacing:21.661344px;}
.ws35_c02340{word-spacing:21.681108px;}
.ws2a_c02340{word-spacing:26.488800px;}
.ws21_c02340{word-spacing:26.532000px;}
.ws29_c02340{word-spacing:26.596800px;}
.ws22_c02340{word-spacing:26.632800px;}
.ws25_c02340{word-spacing:29.995200px;}
.ws26_c02340{word-spacing:30.038400px;}
.ws24_c02340{word-spacing:30.240000px;}
.ws6_c02340{word-spacing:31.615200px;}
._0_c02340{margin-left:-15.120000px;}
._1_c02340{margin-left:-1.368000px;}
._2_c02340{width:1.205604px;}
.fc0_c02340{color:rgb(0,0,0);}
.fs3_c02340{font-size:24.120000px;}
.fs2_c02340{font-size:47.880000px;}
.fs1_c02340{font-size:65.880000px;}
.fs0_c02340{font-size:72.000000px;}
.y0_c02340{bottom:0.000000px;}
.y3_c02340{bottom:57.721944px;}
.y2_c02340{bottom:77.881224px;}
.y2f_c02340{bottom:120.271755px;}
.y2e_c02340{bottom:139.261665px;}
.y2d_c02340{bottom:158.251575px;}
.y2c_c02340{bottom:177.241485px;}
.y2b_c02340{bottom:196.140810px;}
.y2a_c02340{bottom:215.130720px;}
.y29_c02340{bottom:234.120630px;}
.y28_c02340{bottom:253.110540px;}
.y27_c02340{bottom:272.100450px;}
.y26_c02340{bottom:292.260450px;}
.y25_c02340{bottom:312.150450px;}
.y24_c02340{bottom:343.200450px;}
.y23_c02340{bottom:374.250450px;}
.y22_c02340{bottom:405.300450px;}
.y21_c02340{bottom:455.790600px;}
.y20_c02340{bottom:473.790600px;}
.y1f_c02340{bottom:497.640450px;}
.y1e_c02340{bottom:521.400450px;}
.y1d_c02340{bottom:564.780162px;}
.y1c_c02340{bottom:578.550450px;}
.y1b_c02340{bottom:603.930450px;}
.y1a_c02340{bottom:634.980450px;}
.y19_c02340{bottom:666.030450px;}
.y18_c02340{bottom:692.490450px;}
.y17_c02340{bottom:707.790450px;}
.y16_c02340{bottom:726.780450px;}
.y15_c02340{bottom:745.770450px;}
.y14_c02340{bottom:764.760450px;}
.y13_c02340{bottom:783.750450px;}
.y12_c02340{bottom:802.650450px;}
.y11_c02340{bottom:821.640450px;}
.y10_c02340{bottom:840.630450px;}
.yf_c02340{bottom:859.620450px;}
.ye_c02340{bottom:878.610600px;}
.yd_c02340{bottom:897.600450px;}
.yc_c02340{bottom:916.500450px;}
.yb_c02340{bottom:935.490450px;}
.ya_c02340{bottom:954.390450px;}
.y9_c02340{bottom:984.900450px;}
.y8_c02340{bottom:1015.950450px;}
.y7_c02340{bottom:1047.000450px;}
.y6_c02340{bottom:1078.050450px;}
.y5_c02340{bottom:1109.100450px;}
.y4_c02340{bottom:1140.150450px;}
.y1_c02340{bottom:1193.160450px;}
.h8_c02340{height:23.672461px;}
.h3_c02340{height:43.909277px;}
.h7_c02340{height:46.991602px;}
.h2_c02340{height:54.331699px;}
.h6_c02340{height:64.657617px;}
.h5_c02340{height:66.394687px;}
.h4_c02340{height:70.664062px;}
.h1_c02340{height:72.562500px;}
.h0_c02340{height:1263.000000px;}
.w1_c02340{width:892.500000px;}
.w0_c02340{width:892.830000px;}
.x0_c02340{left:0.000000px;}
.x1_c02340{left:127.620000px;}
.x3_c02340{left:135.630000px;}
.x4_c02340{left:148.950000px;}
.x6_c02340{left:170.190288px;}
.x5_c02340{left:191.430000px;}
.x2_c02340{left:442.349364px;}
@media print{
.v1_c02340{vertical-align:-70.078976pt;}
.v0_c02340{vertical-align:0.000000pt;}
.ls1d_c02340{letter-spacing:-0.240096pt;}
.ls1c_c02340{letter-spacing:-0.032000pt;}
.ls1b_c02340{letter-spacing:-0.006400pt;}
.ls1a_c02340{letter-spacing:0.000000pt;}
.ls19_c02340{letter-spacing:0.005856pt;}
.ls0_c02340{letter-spacing:0.006400pt;}
.ls10_c02340{letter-spacing:0.011712pt;}
.ls12_c02340{letter-spacing:0.012800pt;}
.ls11_c02340{letter-spacing:0.017568pt;}
.ls14_c02340{letter-spacing:0.019200pt;}
.ls8_c02340{letter-spacing:0.023424pt;}
.ls3_c02340{letter-spacing:0.025600pt;}
.ls7_c02340{letter-spacing:0.029280pt;}
.ls4_c02340{letter-spacing:0.032000pt;}
.lsf_c02340{letter-spacing:0.035136pt;}
.ls2_c02340{letter-spacing:0.038400pt;}
.lsa_c02340{letter-spacing:0.040992pt;}
.ls16_c02340{letter-spacing:0.044800pt;}
.ls6_c02340{letter-spacing:0.046848pt;}
.ls5_c02340{letter-spacing:0.051200pt;}
.lsc_c02340{letter-spacing:0.052704pt;}
.ls9_c02340{letter-spacing:0.058560pt;}
.lsb_c02340{letter-spacing:0.064416pt;}
.ls1_c02340{letter-spacing:0.070272pt;}
.ls18_c02340{letter-spacing:0.076128pt;}
.lsd_c02340{letter-spacing:0.081984pt;}
.lse_c02340{letter-spacing:0.087840pt;}
.ls17_c02340{letter-spacing:0.105408pt;}
.ls13_c02340{letter-spacing:17.840000pt;}
.ls15_c02340{letter-spacing:65.200000pt;}
.ws1a_c02340{word-spacing:-0.304512pt;}
.ws15_c02340{word-spacing:-0.292800pt;}
.ws2d_c02340{word-spacing:-0.153600pt;}
.ws1f_c02340{word-spacing:-0.134400pt;}
.ws4_c02340{word-spacing:-0.115200pt;}
.ws1_c02340{word-spacing:-0.057600pt;}
.wsd_c02340{word-spacing:-0.025600pt;}
.ws23_c02340{word-spacing:-0.019200pt;}
.ws0_c02340{word-spacing:-0.006400pt;}
.ws16_c02340{word-spacing:-0.005856pt;}
.ws2_c02340{word-spacing:0.000000pt;}
.ws13_c02340{word-spacing:0.017568pt;}
.ws11_c02340{word-spacing:0.023424pt;}
.ws14_c02340{word-spacing:0.029280pt;}
.ws5_c02340{word-spacing:0.032000pt;}
.wse_c02340{word-spacing:0.035136pt;}
.ws12_c02340{word-spacing:0.040992pt;}
.ws17_c02340{word-spacing:0.046848pt;}
.wsf_c02340{word-spacing:0.052704pt;}
.ws10_c02340{word-spacing:0.058560pt;}
.ws19_c02340{word-spacing:0.064416pt;}
.ws18_c02340{word-spacing:0.070272pt;}
.ws8_c02340{word-spacing:2.745600pt;}
.ws7_c02340{word-spacing:2.886400pt;}
.ws9_c02340{word-spacing:2.912000pt;}
.ws1c_c02340{word-spacing:3.737600pt;}
.ws1b_c02340{word-spacing:3.878400pt;}
.ws30_c02340{word-spacing:4.134336pt;}
.ws31_c02340{word-spacing:4.163616pt;}
.ws36_c02340{word-spacing:6.113664pt;}
.ws32_c02340{word-spacing:6.119520pt;}
.ws37_c02340{word-spacing:6.131232pt;}
.ws33_c02340{word-spacing:6.137088pt;}
.ws2f_c02340{word-spacing:6.740256pt;}
.ws2e_c02340{word-spacing:6.751968pt;}
.ws39_c02340{word-spacing:7.694784pt;}
.ws38_c02340{word-spacing:7.706496pt;}
.ws2b_c02340{word-spacing:9.344000pt;}
.ws2c_c02340{word-spacing:9.516800pt;}
.ws28_c02340{word-spacing:11.097600pt;}
.ws27_c02340{word-spacing:11.104000pt;}
.wsb_c02340{word-spacing:11.891200pt;}
.wsc_c02340{word-spacing:11.987200pt;}
.wsa_c02340{word-spacing:12.128000pt;}
.ws3_c02340{word-spacing:14.067200pt;}
.ws20_c02340{word-spacing:16.588800pt;}
.ws1d_c02340{word-spacing:16.838400pt;}
.ws1e_c02340{word-spacing:16.998400pt;}
.ws3a_c02340{word-spacing:16.999968pt;}
.ws34_c02340{word-spacing:19.254528pt;}
.ws35_c02340{word-spacing:19.272096pt;}
.ws2a_c02340{word-spacing:23.545600pt;}
.ws21_c02340{word-spacing:23.584000pt;}
.ws29_c02340{word-spacing:23.641600pt;}
.ws22_c02340{word-spacing:23.673600pt;}
.ws25_c02340{word-spacing:26.662400pt;}
.ws26_c02340{word-spacing:26.700800pt;}
.ws24_c02340{word-spacing:26.880000pt;}
.ws6_c02340{word-spacing:28.102400pt;}
._0_c02340{margin-left:-13.440000pt;}
._1_c02340{margin-left:-1.216000pt;}
._2_c02340{width:1.071648pt;}
.fs3_c02340{font-size:21.440000pt;}
.fs2_c02340{font-size:42.560000pt;}
.fs1_c02340{font-size:58.560000pt;}
.fs0_c02340{font-size:64.000000pt;}
.y0_c02340{bottom:0.000000pt;}
.y3_c02340{bottom:51.308395pt;}
.y2_c02340{bottom:69.227755pt;}
.y2f_c02340{bottom:106.908227pt;}
.y2e_c02340{bottom:123.788147pt;}
.y2d_c02340{bottom:140.668067pt;}
.y2c_c02340{bottom:157.547987pt;}
.y2b_c02340{bottom:174.347387pt;}
.y2a_c02340{bottom:191.227307pt;}
.y29_c02340{bottom:208.107227pt;}
.y28_c02340{bottom:224.987147pt;}
.y27_c02340{bottom:241.867067pt;}
.y26_c02340{bottom:259.787067pt;}
.y25_c02340{bottom:277.467067pt;}
.y24_c02340{bottom:305.067067pt;}
.y23_c02340{bottom:332.667067pt;}
.y22_c02340{bottom:360.267067pt;}
.y21_c02340{bottom:405.147200pt;}
.y20_c02340{bottom:421.147200pt;}
.y1f_c02340{bottom:442.347067pt;}
.y1e_c02340{bottom:463.467067pt;}
.y1d_c02340{bottom:502.026811pt;}
.y1c_c02340{bottom:514.267067pt;}
.y1b_c02340{bottom:536.827067pt;}
.y1a_c02340{bottom:564.427067pt;}
.y19_c02340{bottom:592.027067pt;}
.y18_c02340{bottom:615.547067pt;}
.y17_c02340{bottom:629.147067pt;}
.y16_c02340{bottom:646.027067pt;}
.y15_c02340{bottom:662.907067pt;}
.y14_c02340{bottom:679.787067pt;}
.y13_c02340{bottom:696.667067pt;}
.y12_c02340{bottom:713.467067pt;}
.y11_c02340{bottom:730.347067pt;}
.y10_c02340{bottom:747.227067pt;}
.yf_c02340{bottom:764.107067pt;}
.ye_c02340{bottom:780.987200pt;}
.yd_c02340{bottom:797.867067pt;}
.yc_c02340{bottom:814.667067pt;}
.yb_c02340{bottom:831.547067pt;}
.ya_c02340{bottom:848.347067pt;}
.y9_c02340{bottom:875.467067pt;}
.y8_c02340{bottom:903.067067pt;}
.y7_c02340{bottom:930.667067pt;}
.y6_c02340{bottom:958.267067pt;}
.y5_c02340{bottom:985.867067pt;}
.y4_c02340{bottom:1013.467067pt;}
.y1_c02340{bottom:1060.587067pt;}
.h8_c02340{height:21.042187pt;}
.h3_c02340{height:39.030469pt;}
.h7_c02340{height:41.770312pt;}
.h2_c02340{height:48.294844pt;}
.h6_c02340{height:57.473437pt;}
.h5_c02340{height:59.017500pt;}
.h4_c02340{height:62.812500pt;}
.h1_c02340{height:64.500000pt;}
.h0_c02340{height:1122.666667pt;}
.w1_c02340{width:793.333333pt;}
.w0_c02340{width:793.626667pt;}
.x0_c02340{left:0.000000pt;}
.x1_c02340{left:113.440000pt;}
.x3_c02340{left:120.560000pt;}
.x4_c02340{left:132.400000pt;}
.x6_c02340{left:151.280256pt;}
.x5_c02340{left:170.160000pt;}
.x2_c02340{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1dd0b78ec67565c9d6adb10.woff2')format("woff");}.ff1_c02341{font-family:ff1_c02341;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02341{font-family:ff2_c02341;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02341;src:url('chunks/assets/font_a45d0cab215afebfac307df2.woff2')format("woff");}.ff3_c02341{font-family:ff3_c02341;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02341;src:url('chunks/assets/font_80d98c4c5ebf337f1b0fe96f.woff2')format("woff");}.ff4_c02341{font-family:ff4_c02341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02341;src:url('chunks/assets/font_79704b7b53705a7c663847b0.woff2')format("woff");}.ff5_c02341{font-family:ff5_c02341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19_c02341{letter-spacing:-0.079200px;}
.ls1b_c02341{letter-spacing:-0.028800px;}
.ls18_c02341{letter-spacing:-0.014400px;}
.ls1c_c02341{letter-spacing:-0.010800px;}
.ls1a_c02341{letter-spacing:-0.007200px;}
.ls1d_c02341{letter-spacing:-0.005400px;}
.ls17_c02341{letter-spacing:0.000000px;}
.ls0_c02341{letter-spacing:0.007200px;}
.lse_c02341{letter-spacing:0.013176px;}
.ls2_c02341{letter-spacing:0.014400px;}
.ls7_c02341{letter-spacing:0.021600px;}
.ls16_c02341{letter-spacing:0.026352px;}
.ls4_c02341{letter-spacing:0.028800px;}
.ls14_c02341{letter-spacing:0.032940px;}
.ls3_c02341{letter-spacing:0.036000px;}
.ls10_c02341{letter-spacing:0.039528px;}
.ls5_c02341{letter-spacing:0.043200px;}
.lsd_c02341{letter-spacing:0.046116px;}
.ls8_c02341{letter-spacing:0.050400px;}
.ls15_c02341{letter-spacing:0.052704px;}
.ls9_c02341{letter-spacing:0.057600px;}
.lsb_c02341{letter-spacing:0.059292px;}
.ls6_c02341{letter-spacing:0.065880px;}
.ls13_c02341{letter-spacing:0.072000px;}
.ls1_c02341{letter-spacing:0.079056px;}
.lsf_c02341{letter-spacing:0.085644px;}
.ls11_c02341{letter-spacing:0.086400px;}
.ls12_c02341{letter-spacing:0.093600px;}
.lsc_c02341{letter-spacing:0.098820px;}
.lsa_c02341{letter-spacing:0.100800px;}
.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;}
}
.ws2d_c02341{word-spacing:-0.194400px;}
.ws2e_c02341{word-spacing:-0.136800px;}
.ws0_c02341{word-spacing:-0.131760px;}
.ws10_c02341{word-spacing:-0.100800px;}
.ws2c_c02341{word-spacing:-0.093600px;}
.ws4_c02341{word-spacing:-0.064800px;}
.ws2_c02341{word-spacing:-0.048600px;}
.ws1_c02341{word-spacing:-0.043200px;}
.ws11_c02341{word-spacing:-0.028800px;}
.ws6_c02341{word-spacing:-0.014400px;}
.ws3_c02341{word-spacing:-0.007200px;}
.ws5_c02341{word-spacing:0.000000px;}
.ws38_c02341{word-spacing:0.014400px;}
.ws3b_c02341{word-spacing:0.039528px;}
.ws25_c02341{word-spacing:0.052704px;}
.ws3c_c02341{word-spacing:0.065880px;}
.ws40_c02341{word-spacing:0.079056px;}
.ws17_c02341{word-spacing:1.296000px;}
.ws18_c02341{word-spacing:1.310400px;}
.ws19_c02341{word-spacing:1.396800px;}
.ws2a_c02341{word-spacing:1.994400px;}
.ws28_c02341{word-spacing:2.102400px;}
.ws29_c02341{word-spacing:2.174400px;}
.ws3a_c02341{word-spacing:2.187216px;}
.ws3d_c02341{word-spacing:2.220156px;}
.ws2f_c02341{word-spacing:2.469600px;}
.ws31_c02341{word-spacing:2.484000px;}
.ws30_c02341{word-spacing:2.512800px;}
.ws3f_c02341{word-spacing:2.562732px;}
.ws3e_c02341{word-spacing:2.582496px;}
.ws1c_c02341{word-spacing:3.319200px;}
.wse_c02341{word-spacing:3.434400px;}
.wsd_c02341{word-spacing:3.513600px;}
.ws1a_c02341{word-spacing:3.556800px;}
.wsf_c02341{word-spacing:3.614400px;}
.ws1b_c02341{word-spacing:3.715200px;}
.ws22_c02341{word-spacing:4.394196px;}
.wsc_c02341{word-spacing:5.968800px;}
.ws32_c02341{word-spacing:5.976000px;}
.ws33_c02341{word-spacing:6.033600px;}
.wsb_c02341{word-spacing:6.084000px;}
.ws21_c02341{word-spacing:9.032148px;}
.ws20_c02341{word-spacing:9.045324px;}
.ws27_c02341{word-spacing:9.993600px;}
.ws13_c02341{word-spacing:10.044000px;}
.ws26_c02341{word-spacing:10.051200px;}
.ws14_c02341{word-spacing:10.058400px;}
.ws9_c02341{word-spacing:14.752800px;}
.ws7_c02341{word-spacing:14.774400px;}
.ws39_c02341{word-spacing:14.816412px;}
.wsa_c02341{word-spacing:14.839200px;}
.ws8_c02341{word-spacing:14.925600px;}
.ws1e_c02341{word-spacing:17.629488px;}
.ws1d_c02341{word-spacing:17.669016px;}
.ws1f_c02341{word-spacing:18.406872px;}
.ws23_c02341{word-spacing:20.521620px;}
.ws24_c02341{word-spacing:20.561148px;}
.ws35_c02341{word-spacing:21.578400px;}
.ws34_c02341{word-spacing:22.276800px;}
.ws15_c02341{word-spacing:23.299200px;}
.ws16_c02341{word-spacing:23.371200px;}
.ws36_c02341{word-spacing:26.906400px;}
.ws37_c02341{word-spacing:27.028800px;}
.ws12_c02341{word-spacing:45.352800px;}
.ws2b_c02341{word-spacing:65.116800px;}
._0_c02341{margin-left:-15.120000px;}
._4_c02341{margin-left:-11.102400px;}
._3_c02341{margin-left:-10.044000px;}
._5_c02341{margin-left:-2.160000px;}
._1_c02341{margin-left:-1.101600px;}
._2_c02341{width:1.225368px;}
.fc1_c02341{color:rgb(0,0,255);}
.fc2_c02341{color:rgb(51,51,51);}
.fc0_c02341{color:rgb(0,0,0);}
.fs2_c02341{font-size:47.880000px;}
.fs3_c02341{font-size:54.000000px;}
.fs1_c02341{font-size:65.880000px;}
.fs0_c02341{font-size:72.000000px;}
.y0_c02341{bottom:0.000000px;}
.y3_c02341{bottom:57.721944px;}
.y2_c02341{bottom:77.881224px;}
.y2e_c02341{bottom:119.100450px;}
.y2d_c02341{bottom:138.090450px;}
.y2c_c02341{bottom:157.080450px;}
.y2b_c02341{bottom:176.070450px;}
.y2a_c02341{bottom:194.970450px;}
.y29_c02341{bottom:213.960600px;}
.y28_c02341{bottom:239.070450px;}
.y27_c02341{bottom:264.360450px;}
.y26_c02341{bottom:295.410450px;}
.y25_c02341{bottom:326.460450px;}
.y24_c02341{bottom:357.510450px;}
.y23_c02341{bottom:388.560450px;}
.y22_c02341{bottom:408.900450px;}
.y21_c02341{bottom:431.130450px;}
.y20_c02341{bottom:455.070450px;}
.y1f_c02341{bottom:475.680600px;}
.y1e_c02341{bottom:496.200834px;}
.y1d_c02341{bottom:509.700600px;}
.y1c_c02341{bottom:535.350450px;}
.y1b_c02341{bottom:566.400450px;}
.y1a_c02341{bottom:597.450450px;}
.y19_c02341{bottom:628.500450px;}
.y18_c02341{bottom:654.960450px;}
.y17_c02341{bottom:669.541485px;}
.y16_c02341{bottom:688.531395px;}
.y15_c02341{bottom:707.521305px;}
.y14_c02341{bottom:726.511215px;}
.y13_c02341{bottom:745.410540px;}
.y12_c02341{bottom:764.400450px;}
.y11_c02341{bottom:789.510450px;}
.y10_c02341{bottom:814.800450px;}
.yf_c02341{bottom:845.850450px;}
.ye_c02341{bottom:876.900450px;}
.yd_c02341{bottom:907.950450px;}
.yc_c02341{bottom:939.000450px;}
.yb_c02341{bottom:970.050450px;}
.ya_c02341{bottom:1001.100450px;}
.y9_c02341{bottom:1025.130450px;}
.y8_c02341{bottom:1047.990450px;}
.y7_c02341{bottom:1071.750450px;}
.y6_c02341{bottom:1095.600450px;}
.y5_c02341{bottom:1119.360450px;}
.y4_c02341{bottom:1139.970450px;}
.y1_c02341{bottom:1193.160450px;}
.h3_c02341{height:43.909277px;}
.h5_c02341{height:46.991602px;}
.h8_c02341{height:48.254063px;}
.h2_c02341{height:54.331699px;}
.h6_c02341{height:64.657617px;}
.h7_c02341{height:70.659922px;}
.h4_c02341{height:70.664062px;}
.h1_c02341{height:72.562500px;}
.h0_c02341{height:1263.000000px;}
.w1_c02341{width:892.500000px;}
.w0_c02341{width:892.830000px;}
.x0_c02341{left:0.000000px;}
.x1_c02341{left:127.620000px;}
.x3_c02341{left:148.950000px;}
.x5_c02341{left:170.190288px;}
.x4_c02341{left:191.430000px;}
.x2_c02341{left:442.349364px;}
@media print{
.v0_c02341{vertical-align:0.000000pt;}
.ls19_c02341{letter-spacing:-0.070400pt;}
.ls1b_c02341{letter-spacing:-0.025600pt;}
.ls18_c02341{letter-spacing:-0.012800pt;}
.ls1c_c02341{letter-spacing:-0.009600pt;}
.ls1a_c02341{letter-spacing:-0.006400pt;}
.ls1d_c02341{letter-spacing:-0.004800pt;}
.ls17_c02341{letter-spacing:0.000000pt;}
.ls0_c02341{letter-spacing:0.006400pt;}
.lse_c02341{letter-spacing:0.011712pt;}
.ls2_c02341{letter-spacing:0.012800pt;}
.ls7_c02341{letter-spacing:0.019200pt;}
.ls16_c02341{letter-spacing:0.023424pt;}
.ls4_c02341{letter-spacing:0.025600pt;}
.ls14_c02341{letter-spacing:0.029280pt;}
.ls3_c02341{letter-spacing:0.032000pt;}
.ls10_c02341{letter-spacing:0.035136pt;}
.ls5_c02341{letter-spacing:0.038400pt;}
.lsd_c02341{letter-spacing:0.040992pt;}
.ls8_c02341{letter-spacing:0.044800pt;}
.ls15_c02341{letter-spacing:0.046848pt;}
.ls9_c02341{letter-spacing:0.051200pt;}
.lsb_c02341{letter-spacing:0.052704pt;}
.ls6_c02341{letter-spacing:0.058560pt;}
.ls13_c02341{letter-spacing:0.064000pt;}
.ls1_c02341{letter-spacing:0.070272pt;}
.lsf_c02341{letter-spacing:0.076128pt;}
.ls11_c02341{letter-spacing:0.076800pt;}
.ls12_c02341{letter-spacing:0.083200pt;}
.lsc_c02341{letter-spacing:0.087840pt;}
.lsa_c02341{letter-spacing:0.089600pt;}
.ws2d_c02341{word-spacing:-0.172800pt;}
.ws2e_c02341{word-spacing:-0.121600pt;}
.ws0_c02341{word-spacing:-0.117120pt;}
.ws10_c02341{word-spacing:-0.089600pt;}
.ws2c_c02341{word-spacing:-0.083200pt;}
.ws4_c02341{word-spacing:-0.057600pt;}
.ws2_c02341{word-spacing:-0.043200pt;}
.ws1_c02341{word-spacing:-0.038400pt;}
.ws11_c02341{word-spacing:-0.025600pt;}
.ws6_c02341{word-spacing:-0.012800pt;}
.ws3_c02341{word-spacing:-0.006400pt;}
.ws5_c02341{word-spacing:0.000000pt;}
.ws38_c02341{word-spacing:0.012800pt;}
.ws3b_c02341{word-spacing:0.035136pt;}
.ws25_c02341{word-spacing:0.046848pt;}
.ws3c_c02341{word-spacing:0.058560pt;}
.ws40_c02341{word-spacing:0.070272pt;}
.ws17_c02341{word-spacing:1.152000pt;}
.ws18_c02341{word-spacing:1.164800pt;}
.ws19_c02341{word-spacing:1.241600pt;}
.ws2a_c02341{word-spacing:1.772800pt;}
.ws28_c02341{word-spacing:1.868800pt;}
.ws29_c02341{word-spacing:1.932800pt;}
.ws3a_c02341{word-spacing:1.944192pt;}
.ws3d_c02341{word-spacing:1.973472pt;}
.ws2f_c02341{word-spacing:2.195200pt;}
.ws31_c02341{word-spacing:2.208000pt;}
.ws30_c02341{word-spacing:2.233600pt;}
.ws3f_c02341{word-spacing:2.277984pt;}
.ws3e_c02341{word-spacing:2.295552pt;}
.ws1c_c02341{word-spacing:2.950400pt;}
.wse_c02341{word-spacing:3.052800pt;}
.wsd_c02341{word-spacing:3.123200pt;}
.ws1a_c02341{word-spacing:3.161600pt;}
.wsf_c02341{word-spacing:3.212800pt;}
.ws1b_c02341{word-spacing:3.302400pt;}
.ws22_c02341{word-spacing:3.905952pt;}
.wsc_c02341{word-spacing:5.305600pt;}
.ws32_c02341{word-spacing:5.312000pt;}
.ws33_c02341{word-spacing:5.363200pt;}
.wsb_c02341{word-spacing:5.408000pt;}
.ws21_c02341{word-spacing:8.028576pt;}
.ws20_c02341{word-spacing:8.040288pt;}
.ws27_c02341{word-spacing:8.883200pt;}
.ws13_c02341{word-spacing:8.928000pt;}
.ws26_c02341{word-spacing:8.934400pt;}
.ws14_c02341{word-spacing:8.940800pt;}
.ws9_c02341{word-spacing:13.113600pt;}
.ws7_c02341{word-spacing:13.132800pt;}
.ws39_c02341{word-spacing:13.170144pt;}
.wsa_c02341{word-spacing:13.190400pt;}
.ws8_c02341{word-spacing:13.267200pt;}
.ws1e_c02341{word-spacing:15.670656pt;}
.ws1d_c02341{word-spacing:15.705792pt;}
.ws1f_c02341{word-spacing:16.361664pt;}
.ws23_c02341{word-spacing:18.241440pt;}
.ws24_c02341{word-spacing:18.276576pt;}
.ws35_c02341{word-spacing:19.180800pt;}
.ws34_c02341{word-spacing:19.801600pt;}
.ws15_c02341{word-spacing:20.710400pt;}
.ws16_c02341{word-spacing:20.774400pt;}
.ws36_c02341{word-spacing:23.916800pt;}
.ws37_c02341{word-spacing:24.025600pt;}
.ws12_c02341{word-spacing:40.313600pt;}
.ws2b_c02341{word-spacing:57.881600pt;}
._0_c02341{margin-left:-13.440000pt;}
._4_c02341{margin-left:-9.868800pt;}
._3_c02341{margin-left:-8.928000pt;}
._5_c02341{margin-left:-1.920000pt;}
._1_c02341{margin-left:-0.979200pt;}
._2_c02341{width:1.089216pt;}
.fs2_c02341{font-size:42.560000pt;}
.fs3_c02341{font-size:48.000000pt;}
.fs1_c02341{font-size:58.560000pt;}
.fs0_c02341{font-size:64.000000pt;}
.y0_c02341{bottom:0.000000pt;}
.y3_c02341{bottom:51.308395pt;}
.y2_c02341{bottom:69.227755pt;}
.y2e_c02341{bottom:105.867067pt;}
.y2d_c02341{bottom:122.747067pt;}
.y2c_c02341{bottom:139.627067pt;}
.y2b_c02341{bottom:156.507067pt;}
.y2a_c02341{bottom:173.307067pt;}
.y29_c02341{bottom:190.187200pt;}
.y28_c02341{bottom:212.507067pt;}
.y27_c02341{bottom:234.987067pt;}
.y26_c02341{bottom:262.587067pt;}
.y25_c02341{bottom:290.187067pt;}
.y24_c02341{bottom:317.787067pt;}
.y23_c02341{bottom:345.387067pt;}
.y22_c02341{bottom:363.467067pt;}
.y21_c02341{bottom:383.227067pt;}
.y20_c02341{bottom:404.507067pt;}
.y1f_c02341{bottom:422.827200pt;}
.y1e_c02341{bottom:441.067408pt;}
.y1d_c02341{bottom:453.067200pt;}
.y1c_c02341{bottom:475.867067pt;}
.y1b_c02341{bottom:503.467067pt;}
.y1a_c02341{bottom:531.067067pt;}
.y19_c02341{bottom:558.667067pt;}
.y18_c02341{bottom:582.187067pt;}
.y17_c02341{bottom:595.147987pt;}
.y16_c02341{bottom:612.027907pt;}
.y15_c02341{bottom:628.907827pt;}
.y14_c02341{bottom:645.787747pt;}
.y13_c02341{bottom:662.587147pt;}
.y12_c02341{bottom:679.467067pt;}
.y11_c02341{bottom:701.787067pt;}
.y10_c02341{bottom:724.267067pt;}
.yf_c02341{bottom:751.867067pt;}
.ye_c02341{bottom:779.467067pt;}
.yd_c02341{bottom:807.067067pt;}
.yc_c02341{bottom:834.667067pt;}
.yb_c02341{bottom:862.267067pt;}
.ya_c02341{bottom:889.867067pt;}
.y9_c02341{bottom:911.227067pt;}
.y8_c02341{bottom:931.547067pt;}
.y7_c02341{bottom:952.667067pt;}
.y6_c02341{bottom:973.867067pt;}
.y5_c02341{bottom:994.987067pt;}
.y4_c02341{bottom:1013.307067pt;}
.y1_c02341{bottom:1060.587067pt;}
.h3_c02341{height:39.030469pt;}
.h5_c02341{height:41.770312pt;}
.h8_c02341{height:42.892500pt;}
.h2_c02341{height:48.294844pt;}
.h6_c02341{height:57.473437pt;}
.h7_c02341{height:62.808820pt;}
.h4_c02341{height:62.812500pt;}
.h1_c02341{height:64.500000pt;}
.h0_c02341{height:1122.666667pt;}
.w1_c02341{width:793.333333pt;}
.w0_c02341{width:793.626667pt;}
.x0_c02341{left:0.000000pt;}
.x1_c02341{left:113.440000pt;}
.x3_c02341{left:132.400000pt;}
.x5_c02341{left:151.280256pt;}
.x4_c02341{left:170.160000pt;}
.x2_c02341{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0539430d724de5e68f9fb278.woff2')format("woff");}.ff1_c02342{font-family:ff1_c02342;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02342{font-family:ff2_c02342;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02342;src:url('chunks/assets/font_e44af7b1fe52121d40a15a36.woff2')format("woff");}.ff3_c02342{font-family:ff3_c02342;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02342;src:url('chunks/assets/font_4edf95f99d917e7ac6f4df61.woff2')format("woff");}.ff4_c02342{font-family:ff4_c02342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02342;src:url('chunks/assets/font_b828b68db53181ac8f2f0913.woff2')format("woff");}.ff5_c02342{font-family:ff5_c02342;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_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;}
.ls19_c02342{letter-spacing:-0.201600px;}
.ls16_c02342{letter-spacing:-0.043200px;}
.ls18_c02342{letter-spacing:-0.014400px;}
.ls17_c02342{letter-spacing:-0.007200px;}
.ls15_c02342{letter-spacing:0.000000px;}
.ls0_c02342{letter-spacing:0.007200px;}
.lsb_c02342{letter-spacing:0.013176px;}
.ls4_c02342{letter-spacing:0.014400px;}
.lse_c02342{letter-spacing:0.016200px;}
.ls13_c02342{letter-spacing:0.019764px;}
.ls10_c02342{letter-spacing:0.021600px;}
.ls5_c02342{letter-spacing:0.026352px;}
.ls14_c02342{letter-spacing:0.028800px;}
.ls9_c02342{letter-spacing:0.032940px;}
.ls2_c02342{letter-spacing:0.036000px;}
.ls11_c02342{letter-spacing:0.039528px;}
.ls8_c02342{letter-spacing:0.046116px;}
.ls6_c02342{letter-spacing:0.052704px;}
.lsc_c02342{letter-spacing:0.057600px;}
.ls7_c02342{letter-spacing:0.059292px;}
.ls12_c02342{letter-spacing:0.065880px;}
.lsf_c02342{letter-spacing:0.072000px;}
.lsa_c02342{letter-spacing:0.072468px;}
.ls1_c02342{letter-spacing:0.079056px;}
.ls3_c02342{letter-spacing:0.079200px;}
.lsd_c02342{letter-spacing:0.090000px;}
.sc__c02342{text-shadow:none;}
.sc0_c02342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02342{-webkit-text-stroke:0px transparent;}
.sc0_c02342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02342{word-spacing:-18.036000px;}
.ws2_c02342{word-spacing:-18.000000px;}
.ws1d_c02342{word-spacing:-0.180000px;}
.ws21_c02342{word-spacing:-0.108000px;}
.ws20_c02342{word-spacing:-0.093600px;}
.ws1_c02342{word-spacing:-0.070200px;}
.ws4_c02342{word-spacing:-0.064800px;}
.ws2c_c02342{word-spacing:-0.036000px;}
.ws3_c02342{word-spacing:-0.007200px;}
.ws5_c02342{word-spacing:0.000000px;}
.wsb_c02342{word-spacing:0.007200px;}
.wsc_c02342{word-spacing:0.043200px;}
.ws29_c02342{word-spacing:0.072468px;}
.ws34_c02342{word-spacing:0.092232px;}
.ws30_c02342{word-spacing:0.428220px;}
.ws1c_c02342{word-spacing:0.712800px;}
.ws32_c02342{word-spacing:0.751032px;}
.ws33_c02342{word-spacing:0.770796px;}
.wsd_c02342{word-spacing:1.146312px;}
.ws13_c02342{word-spacing:1.469124px;}
.ws14_c02342{word-spacing:1.495476px;}
.ws2e_c02342{word-spacing:2.536380px;}
.ws2f_c02342{word-spacing:2.608848px;}
.ws1a_c02342{word-spacing:2.750400px;}
.ws1b_c02342{word-spacing:2.880000px;}
.ws2d_c02342{word-spacing:2.931660px;}
.ws27_c02342{word-spacing:2.938248px;}
.ws26_c02342{word-spacing:2.958012px;}
.ws2b_c02342{word-spacing:4.183200px;}
.ws2a_c02342{word-spacing:4.284000px;}
.ws22_c02342{word-spacing:4.328316px;}
.ws23_c02342{word-spacing:4.361256px;}
.wse_c02342{word-spacing:6.159780px;}
.ws16_c02342{word-spacing:7.576200px;}
.ws15_c02342{word-spacing:7.595964px;}
.ws9_c02342{word-spacing:8.193600px;}
.ws8_c02342{word-spacing:8.200800px;}
.ws24_c02342{word-spacing:8.287704px;}
.wsa_c02342{word-spacing:8.323200px;}
.ws25_c02342{word-spacing:8.327232px;}
.wsf_c02342{word-spacing:9.750240px;}
.ws10_c02342{word-spacing:9.763416px;}
.ws28_c02342{word-spacing:10.461744px;}
.ws31_c02342{word-spacing:10.494684px;}
.ws17_c02342{word-spacing:15.185340px;}
.ws6_c02342{word-spacing:22.219200px;}
.ws7_c02342{word-spacing:22.284000px;}
.ws11_c02342{word-spacing:22.372848px;}
.ws12_c02342{word-spacing:22.412376px;}
.ws18_c02342{word-spacing:24.902640px;}
.ws19_c02342{word-spacing:25.633908px;}
.ws1e_c02342{word-spacing:25.776000px;}
.ws1f_c02342{word-spacing:25.934400px;}
._0_c02342{margin-left:-15.120000px;}
._1_c02342{margin-left:-1.411200px;}
._2_c02342{width:1.199016px;}
.fc1_c02342{color:rgb(0,0,255);}
.fc0_c02342{color:rgb(0,0,0);}
.fs2_c02342{font-size:47.880000px;}
.fs3_c02342{font-size:54.000000px;}
.fs1_c02342{font-size:65.880000px;}
.fs0_c02342{font-size:72.000000px;}
.fs4_c02342{font-size:83.880000px;}
.y0_c02342{bottom:0.000000px;}
.y3_c02342{bottom:57.721944px;}
.y2_c02342{bottom:77.881224px;}
.y33_c02342{bottom:134.220450px;}
.y32_c02342{bottom:154.920450px;}
.y31_c02342{bottom:175.620450px;}
.y30_c02342{bottom:196.320450px;}
.y2f_c02342{bottom:217.020450px;}
.y2e_c02342{bottom:237.720450px;}
.y2d_c02342{bottom:258.420450px;}
.y2c_c02342{bottom:279.120450px;}
.y2b_c02342{bottom:299.461485px;}
.y2a_c02342{bottom:318.451395px;}
.y29_c02342{bottom:337.441305px;}
.y28_c02342{bottom:356.340630px;}
.y27_c02342{bottom:375.330540px;}
.y26_c02342{bottom:394.320450px;}
.y25_c02342{bottom:424.020450px;}
.y24_c02342{bottom:455.070450px;}
.y23_c02342{bottom:474.510450px;}
.y22_c02342{bottom:489.181395px;}
.y21_c02342{bottom:508.171305px;}
.y20_c02342{bottom:527.161215px;}
.y1f_c02342{bottom:546.151125px;}
.y1e_c02342{bottom:565.050450px;}
.y1d_c02342{bottom:590.160450px;}
.y1c_c02342{bottom:615.450450px;}
.y1b_c02342{bottom:646.500450px;}
.y1a_c02342{bottom:666.030450px;}
.y19_c02342{bottom:682.950450px;}
.y18_c02342{bottom:703.020450px;}
.y17_c02342{bottom:726.690450px;}
.y16_c02342{bottom:750.630450px;}
.y15_c02342{bottom:774.210450px;}
.y14_c02342{bottom:795.180450px;}
.y13_c02342{bottom:815.880450px;}
.y12_c02342{bottom:836.580450px;}
.y11_c02342{bottom:856.920450px;}
.y10_c02342{bottom:875.910450px;}
.yf_c02342{bottom:894.900450px;}
.ye_c02342{bottom:913.800450px;}
.yd_c02342{bottom:932.790600px;}
.yc_c02342{bottom:951.780450px;}
.yb_c02342{bottom:970.770450px;}
.ya_c02342{bottom:989.760450px;}
.y9_c02342{bottom:1008.660450px;}
.y8_c02342{bottom:1027.650450px;}
.y7_c02342{bottom:1052.760450px;}
.y6_c02342{bottom:1078.050450px;}
.y5_c02342{bottom:1109.100450px;}
.y4_c02342{bottom:1140.150450px;}
.y1_c02342{bottom:1193.160450px;}
.h3_c02342{height:43.909277px;}
.h5_c02342{height:46.991602px;}
.h2_c02342{height:54.331699px;}
.h6_c02342{height:64.657617px;}
.h7_c02342{height:70.628906px;}
.h4_c02342{height:70.664062px;}
.h1_c02342{height:72.562500px;}
.h8_c02342{height:82.323633px;}
.h0_c02342{height:1263.000000px;}
.w1_c02342{width:892.500000px;}
.w0_c02342{width:892.830000px;}
.x0_c02342{left:0.000000px;}
.x1_c02342{left:127.620000px;}
.x3_c02342{left:148.950000px;}
.x5_c02342{left:170.190000px;}
.x4_c02342{left:191.430000px;}
.x2_c02342{left:442.349364px;}
@media print{
.v0_c02342{vertical-align:0.000000pt;}
.ls19_c02342{letter-spacing:-0.179200pt;}
.ls16_c02342{letter-spacing:-0.038400pt;}
.ls18_c02342{letter-spacing:-0.012800pt;}
.ls17_c02342{letter-spacing:-0.006400pt;}
.ls15_c02342{letter-spacing:0.000000pt;}
.ls0_c02342{letter-spacing:0.006400pt;}
.lsb_c02342{letter-spacing:0.011712pt;}
.ls4_c02342{letter-spacing:0.012800pt;}
.lse_c02342{letter-spacing:0.014400pt;}
.ls13_c02342{letter-spacing:0.017568pt;}
.ls10_c02342{letter-spacing:0.019200pt;}
.ls5_c02342{letter-spacing:0.023424pt;}
.ls14_c02342{letter-spacing:0.025600pt;}
.ls9_c02342{letter-spacing:0.029280pt;}
.ls2_c02342{letter-spacing:0.032000pt;}
.ls11_c02342{letter-spacing:0.035136pt;}
.ls8_c02342{letter-spacing:0.040992pt;}
.ls6_c02342{letter-spacing:0.046848pt;}
.lsc_c02342{letter-spacing:0.051200pt;}
.ls7_c02342{letter-spacing:0.052704pt;}
.ls12_c02342{letter-spacing:0.058560pt;}
.lsf_c02342{letter-spacing:0.064000pt;}
.lsa_c02342{letter-spacing:0.064416pt;}
.ls1_c02342{letter-spacing:0.070272pt;}
.ls3_c02342{letter-spacing:0.070400pt;}
.lsd_c02342{letter-spacing:0.080000pt;}
.ws0_c02342{word-spacing:-16.032000pt;}
.ws2_c02342{word-spacing:-16.000000pt;}
.ws1d_c02342{word-spacing:-0.160000pt;}
.ws21_c02342{word-spacing:-0.096000pt;}
.ws20_c02342{word-spacing:-0.083200pt;}
.ws1_c02342{word-spacing:-0.062400pt;}
.ws4_c02342{word-spacing:-0.057600pt;}
.ws2c_c02342{word-spacing:-0.032000pt;}
.ws3_c02342{word-spacing:-0.006400pt;}
.ws5_c02342{word-spacing:0.000000pt;}
.wsb_c02342{word-spacing:0.006400pt;}
.wsc_c02342{word-spacing:0.038400pt;}
.ws29_c02342{word-spacing:0.064416pt;}
.ws34_c02342{word-spacing:0.081984pt;}
.ws30_c02342{word-spacing:0.380640pt;}
.ws1c_c02342{word-spacing:0.633600pt;}
.ws32_c02342{word-spacing:0.667584pt;}
.ws33_c02342{word-spacing:0.685152pt;}
.wsd_c02342{word-spacing:1.018944pt;}
.ws13_c02342{word-spacing:1.305888pt;}
.ws14_c02342{word-spacing:1.329312pt;}
.ws2e_c02342{word-spacing:2.254560pt;}
.ws2f_c02342{word-spacing:2.318976pt;}
.ws1a_c02342{word-spacing:2.444800pt;}
.ws1b_c02342{word-spacing:2.560000pt;}
.ws2d_c02342{word-spacing:2.605920pt;}
.ws27_c02342{word-spacing:2.611776pt;}
.ws26_c02342{word-spacing:2.629344pt;}
.ws2b_c02342{word-spacing:3.718400pt;}
.ws2a_c02342{word-spacing:3.808000pt;}
.ws22_c02342{word-spacing:3.847392pt;}
.ws23_c02342{word-spacing:3.876672pt;}
.wse_c02342{word-spacing:5.475360pt;}
.ws16_c02342{word-spacing:6.734400pt;}
.ws15_c02342{word-spacing:6.751968pt;}
.ws9_c02342{word-spacing:7.283200pt;}
.ws8_c02342{word-spacing:7.289600pt;}
.ws24_c02342{word-spacing:7.366848pt;}
.wsa_c02342{word-spacing:7.398400pt;}
.ws25_c02342{word-spacing:7.401984pt;}
.wsf_c02342{word-spacing:8.666880pt;}
.ws10_c02342{word-spacing:8.678592pt;}
.ws28_c02342{word-spacing:9.299328pt;}
.ws31_c02342{word-spacing:9.328608pt;}
.ws17_c02342{word-spacing:13.498080pt;}
.ws6_c02342{word-spacing:19.750400pt;}
.ws7_c02342{word-spacing:19.808000pt;}
.ws11_c02342{word-spacing:19.886976pt;}
.ws12_c02342{word-spacing:19.922112pt;}
.ws18_c02342{word-spacing:22.135680pt;}
.ws19_c02342{word-spacing:22.785696pt;}
.ws1e_c02342{word-spacing:22.912000pt;}
.ws1f_c02342{word-spacing:23.052800pt;}
._0_c02342{margin-left:-13.440000pt;}
._1_c02342{margin-left:-1.254400pt;}
._2_c02342{width:1.065792pt;}
.fs2_c02342{font-size:42.560000pt;}
.fs3_c02342{font-size:48.000000pt;}
.fs1_c02342{font-size:58.560000pt;}
.fs0_c02342{font-size:64.000000pt;}
.fs4_c02342{font-size:74.560000pt;}
.y0_c02342{bottom:0.000000pt;}
.y3_c02342{bottom:51.308395pt;}
.y2_c02342{bottom:69.227755pt;}
.y33_c02342{bottom:119.307067pt;}
.y32_c02342{bottom:137.707067pt;}
.y31_c02342{bottom:156.107067pt;}
.y30_c02342{bottom:174.507067pt;}
.y2f_c02342{bottom:192.907067pt;}
.y2e_c02342{bottom:211.307067pt;}
.y2d_c02342{bottom:229.707067pt;}
.y2c_c02342{bottom:248.107067pt;}
.y2b_c02342{bottom:266.187987pt;}
.y2a_c02342{bottom:283.067907pt;}
.y29_c02342{bottom:299.947827pt;}
.y28_c02342{bottom:316.747227pt;}
.y27_c02342{bottom:333.627147pt;}
.y26_c02342{bottom:350.507067pt;}
.y25_c02342{bottom:376.907067pt;}
.y24_c02342{bottom:404.507067pt;}
.y23_c02342{bottom:421.787067pt;}
.y22_c02342{bottom:434.827907pt;}
.y21_c02342{bottom:451.707827pt;}
.y20_c02342{bottom:468.587747pt;}
.y1f_c02342{bottom:485.467667pt;}
.y1e_c02342{bottom:502.267067pt;}
.y1d_c02342{bottom:524.587067pt;}
.y1c_c02342{bottom:547.067067pt;}
.y1b_c02342{bottom:574.667067pt;}
.y1a_c02342{bottom:592.027067pt;}
.y19_c02342{bottom:607.067067pt;}
.y18_c02342{bottom:624.907067pt;}
.y17_c02342{bottom:645.947067pt;}
.y16_c02342{bottom:667.227067pt;}
.y15_c02342{bottom:688.187067pt;}
.y14_c02342{bottom:706.827067pt;}
.y13_c02342{bottom:725.227067pt;}
.y12_c02342{bottom:743.627067pt;}
.y11_c02342{bottom:761.707067pt;}
.y10_c02342{bottom:778.587067pt;}
.yf_c02342{bottom:795.467067pt;}
.ye_c02342{bottom:812.267067pt;}
.yd_c02342{bottom:829.147200pt;}
.yc_c02342{bottom:846.027067pt;}
.yb_c02342{bottom:862.907067pt;}
.ya_c02342{bottom:879.787067pt;}
.y9_c02342{bottom:896.587067pt;}
.y8_c02342{bottom:913.467067pt;}
.y7_c02342{bottom:935.787067pt;}
.y6_c02342{bottom:958.267067pt;}
.y5_c02342{bottom:985.867067pt;}
.y4_c02342{bottom:1013.467067pt;}
.y1_c02342{bottom:1060.587067pt;}
.h3_c02342{height:39.030469pt;}
.h5_c02342{height:41.770312pt;}
.h2_c02342{height:48.294844pt;}
.h6_c02342{height:57.473437pt;}
.h7_c02342{height:62.781250pt;}
.h4_c02342{height:62.812500pt;}
.h1_c02342{height:64.500000pt;}
.h8_c02342{height:73.176562pt;}
.h0_c02342{height:1122.666667pt;}
.w1_c02342{width:793.333333pt;}
.w0_c02342{width:793.626667pt;}
.x0_c02342{left:0.000000pt;}
.x1_c02342{left:113.440000pt;}
.x3_c02342{left:132.400000pt;}
.x5_c02342{left:151.280000pt;}
.x4_c02342{left:170.160000pt;}
.x2_c02342{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66656630df43d68d121d46fe.woff2')format("woff");}.ff1_c02343{font-family:ff1_c02343;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02343{font-family:ff2_c02343;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02343;src:url('chunks/assets/font_ba1266696bd41063277abf4c.woff2')format("woff");}.ff3_c02343{font-family:ff3_c02343;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02343;src:url('chunks/assets/font_b8dd6b4ebe2ba6f208f5f455.woff2')format("woff");}.ff4_c02343{font-family:ff4_c02343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02343{vertical-align:-82.800000px;}
.v0_c02343{vertical-align:0.000000px;}
.ls19_c02343{letter-spacing:-0.050400px;}
.ls1a_c02343{letter-spacing:-0.036000px;}
.ls18_c02343{letter-spacing:-0.028800px;}
.ls17_c02343{letter-spacing:-0.007200px;}
.ls16_c02343{letter-spacing:0.000000px;}
.lsf_c02343{letter-spacing:0.005400px;}
.lsa_c02343{letter-spacing:0.006588px;}
.ls0_c02343{letter-spacing:0.007200px;}
.ls2_c02343{letter-spacing:0.014400px;}
.lse_c02343{letter-spacing:0.016200px;}
.ls15_c02343{letter-spacing:0.019764px;}
.lsb_c02343{letter-spacing:0.021600px;}
.ls4_c02343{letter-spacing:0.028800px;}
.lsd_c02343{letter-spacing:0.032400px;}
.ls8_c02343{letter-spacing:0.032940px;}
.ls3_c02343{letter-spacing:0.036000px;}
.ls11_c02343{letter-spacing:0.039528px;}
.lsc_c02343{letter-spacing:0.043200px;}
.ls12_c02343{letter-spacing:0.046116px;}
.ls6_c02343{letter-spacing:0.050400px;}
.ls9_c02343{letter-spacing:0.052704px;}
.ls7_c02343{letter-spacing:0.059292px;}
.ls10_c02343{letter-spacing:0.064800px;}
.ls13_c02343{letter-spacing:0.065880px;}
.ls1_c02343{letter-spacing:0.079056px;}
.ls14_c02343{letter-spacing:0.092232px;}
.ls5_c02343{letter-spacing:67.320000px;}
.sc__c02343{text-shadow:none;}
.sc0_c02343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02343{-webkit-text-stroke:0px transparent;}
.sc0_c02343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02343{word-spacing:-13.532400px;}
.ws1_c02343{word-spacing:-13.516200px;}
.ws2d_c02343{word-spacing:-0.165600px;}
.ws14_c02343{word-spacing:-0.079200px;}
.ws3_c02343{word-spacing:-0.064800px;}
.ws13_c02343{word-spacing:-0.043200px;}
.ws1c_c02343{word-spacing:-0.021600px;}
.ws5_c02343{word-spacing:-0.014400px;}
.ws2_c02343{word-spacing:-0.007200px;}
.ws4_c02343{word-spacing:0.000000px;}
.wsa_c02343{word-spacing:0.007200px;}
.ws1b_c02343{word-spacing:0.013176px;}
.ws3e_c02343{word-spacing:0.032940px;}
.ws39_c02343{word-spacing:0.408456px;}
.ws3a_c02343{word-spacing:0.428220px;}
.wsd_c02343{word-spacing:1.425600px;}
.wse_c02343{word-spacing:1.461600px;}
.ws15_c02343{word-spacing:1.469124px;}
.ws16_c02343{word-spacing:1.495476px;}
.ws23_c02343{word-spacing:2.721600px;}
.ws22_c02343{word-spacing:2.851200px;}
.ws17_c02343{word-spacing:3.274236px;}
.ws18_c02343{word-spacing:3.294000px;}
.ws35_c02343{word-spacing:3.998916px;}
.ws36_c02343{word-spacing:4.012092px;}
.ws33_c02343{word-spacing:4.315140px;}
.ws34_c02343{word-spacing:4.354668px;}
.ws30_c02343{word-spacing:5.428512px;}
.ws2f_c02343{word-spacing:5.441688px;}
.ws20_c02343{word-spacing:7.725600px;}
.wsb_c02343{word-spacing:7.819200px;}
.wsc_c02343{word-spacing:7.848000px;}
.ws1f_c02343{word-spacing:7.891200px;}
.ws21_c02343{word-spacing:7.970400px;}
.ws2e_c02343{word-spacing:7.978068px;}
.ws1d_c02343{word-spacing:8.186400px;}
.ws1e_c02343{word-spacing:8.308800px;}
.ws8_c02343{word-spacing:8.913600px;}
.ws9_c02343{word-spacing:9.007200px;}
.ws31_c02343{word-spacing:9.743652px;}
.ws32_c02343{word-spacing:9.750240px;}
.ws1a_c02343{word-spacing:10.474920px;}
.ws19_c02343{word-spacing:10.521036px;}
.ws37_c02343{word-spacing:11.575116px;}
.ws38_c02343{word-spacing:11.601468px;}
.ws7_c02343{word-spacing:12.499200px;}
.ws6_c02343{word-spacing:12.564000px;}
.wsf_c02343{word-spacing:13.507200px;}
.ws2b_c02343{word-spacing:13.514400px;}
.ws2c_c02343{word-spacing:13.579200px;}
.ws10_c02343{word-spacing:13.629600px;}
.ws24_c02343{word-spacing:13.996800px;}
.ws25_c02343{word-spacing:14.040000px;}
.ws27_c02343{word-spacing:16.430400px;}
.ws26_c02343{word-spacing:16.567200px;}
.ws28_c02343{word-spacing:16.596000px;}
.ws2a_c02343{word-spacing:16.740000px;}
.ws11_c02343{word-spacing:16.754400px;}
.ws29_c02343{word-spacing:16.761600px;}
.ws12_c02343{word-spacing:16.804800px;}
.ws3d_c02343{word-spacing:22.023684px;}
.ws3b_c02343{word-spacing:22.379436px;}
.ws3c_c02343{word-spacing:22.392612px;}
._5_c02343{margin-left:-21.516408px;}
._0_c02343{margin-left:-15.120000px;}
._4_c02343{margin-left:-10.922904px;}
._3_c02343{margin-left:-6.080724px;}
._1_c02343{margin-left:-1.152000px;}
._2_c02343{width:1.067256px;}
.fc0_c02343{color:rgb(0,0,0);}
.fs2_c02343{font-size:47.880000px;}
.fs3_c02343{font-size:54.000000px;}
.fs1_c02343{font-size:65.880000px;}
.fs0_c02343{font-size:72.000000px;}
.y0_c02343{bottom:0.000000px;}
.y3_c02343{bottom:57.721944px;}
.y2_c02343{bottom:77.881224px;}
.y32_c02343{bottom:126.569235px;}
.y31_c02343{bottom:140.339523px;}
.y30_c02343{bottom:154.109811px;}
.y2f_c02343{bottom:167.969874px;}
.y2e_c02343{bottom:181.740162px;}
.y2d_c02343{bottom:195.510450px;}
.y2c_c02343{bottom:210.182520px;}
.y2b_c02343{bottom:229.172430px;}
.y2a_c02343{bottom:248.162340px;}
.y29_c02343{bottom:267.061665px;}
.y28_c02343{bottom:286.051575px;}
.y27_c02343{bottom:305.041485px;}
.y26_c02343{bottom:324.031395px;}
.y25_c02343{bottom:343.021305px;}
.y24_c02343{bottom:362.011215px;}
.y23_c02343{bottom:380.910540px;}
.y22_c02343{bottom:399.900450px;}
.y21_c02343{bottom:425.010450px;}
.y20_c02343{bottom:450.300450px;}
.y1f_c02343{bottom:481.350450px;}
.y1e_c02343{bottom:512.400450px;}
.y1d_c02343{bottom:543.450450px;}
.y1c_c02343{bottom:569.910450px;}
.y1b_c02343{bottom:586.290450px;}
.y1a_c02343{bottom:605.730450px;}
.y19_c02343{bottom:629.490450px;}
.y18_c02343{bottom:653.340450px;}
.y17_c02343{bottom:677.100450px;}
.y16_c02343{bottom:700.950450px;}
.y15_c02343{bottom:724.530450px;}
.y14_c02343{bottom:746.400648px;}
.y13_c02343{bottom:762.240549px;}
.y12_c02343{bottom:778.080450px;}
.y11_c02343{bottom:792.751305px;}
.y10_c02343{bottom:811.741215px;}
.yf_c02343{bottom:830.731125px;}
.ye_c02343{bottom:849.630450px;}
.yd_c02343{bottom:874.740450px;}
.yc_c02343{bottom:900.030450px;}
.yb_c02343{bottom:931.080450px;}
.ya_c02343{bottom:962.130450px;}
.y9_c02343{bottom:993.180450px;}
.y8_c02343{bottom:1044.930450px;}
.y7_c02343{bottom:1068.690450px;}
.y6_c02343{bottom:1092.450450px;}
.y5_c02343{bottom:1116.300450px;}
.y4_c02343{bottom:1139.880450px;}
.y1_c02343{bottom:1193.160450px;}
.h3_c02343{height:43.909277px;}
.h5_c02343{height:46.991602px;}
.h7_c02343{height:52.998047px;}
.h2_c02343{height:54.331699px;}
.h6_c02343{height:64.657617px;}
.h4_c02343{height:70.664062px;}
.h1_c02343{height:72.562500px;}
.h0_c02343{height:1263.000000px;}
.w1_c02343{width:892.500000px;}
.w0_c02343{width:892.830000px;}
.x0_c02343{left:0.000000px;}
.x1_c02343{left:127.620000px;}
.x5_c02343{left:148.950000px;}
.x4_c02343{left:170.190288px;}
.x3_c02343{left:191.430000px;}
.x2_c02343{left:442.349364px;}
@media print{
.v1_c02343{vertical-align:-73.600000pt;}
.v0_c02343{vertical-align:0.000000pt;}
.ls19_c02343{letter-spacing:-0.044800pt;}
.ls1a_c02343{letter-spacing:-0.032000pt;}
.ls18_c02343{letter-spacing:-0.025600pt;}
.ls17_c02343{letter-spacing:-0.006400pt;}
.ls16_c02343{letter-spacing:0.000000pt;}
.lsf_c02343{letter-spacing:0.004800pt;}
.lsa_c02343{letter-spacing:0.005856pt;}
.ls0_c02343{letter-spacing:0.006400pt;}
.ls2_c02343{letter-spacing:0.012800pt;}
.lse_c02343{letter-spacing:0.014400pt;}
.ls15_c02343{letter-spacing:0.017568pt;}
.lsb_c02343{letter-spacing:0.019200pt;}
.ls4_c02343{letter-spacing:0.025600pt;}
.lsd_c02343{letter-spacing:0.028800pt;}
.ls8_c02343{letter-spacing:0.029280pt;}
.ls3_c02343{letter-spacing:0.032000pt;}
.ls11_c02343{letter-spacing:0.035136pt;}
.lsc_c02343{letter-spacing:0.038400pt;}
.ls12_c02343{letter-spacing:0.040992pt;}
.ls6_c02343{letter-spacing:0.044800pt;}
.ls9_c02343{letter-spacing:0.046848pt;}
.ls7_c02343{letter-spacing:0.052704pt;}
.ls10_c02343{letter-spacing:0.057600pt;}
.ls13_c02343{letter-spacing:0.058560pt;}
.ls1_c02343{letter-spacing:0.070272pt;}
.ls14_c02343{letter-spacing:0.081984pt;}
.ls5_c02343{letter-spacing:59.840000pt;}
.ws0_c02343{word-spacing:-12.028800pt;}
.ws1_c02343{word-spacing:-12.014400pt;}
.ws2d_c02343{word-spacing:-0.147200pt;}
.ws14_c02343{word-spacing:-0.070400pt;}
.ws3_c02343{word-spacing:-0.057600pt;}
.ws13_c02343{word-spacing:-0.038400pt;}
.ws1c_c02343{word-spacing:-0.019200pt;}
.ws5_c02343{word-spacing:-0.012800pt;}
.ws2_c02343{word-spacing:-0.006400pt;}
.ws4_c02343{word-spacing:0.000000pt;}
.wsa_c02343{word-spacing:0.006400pt;}
.ws1b_c02343{word-spacing:0.011712pt;}
.ws3e_c02343{word-spacing:0.029280pt;}
.ws39_c02343{word-spacing:0.363072pt;}
.ws3a_c02343{word-spacing:0.380640pt;}
.wsd_c02343{word-spacing:1.267200pt;}
.wse_c02343{word-spacing:1.299200pt;}
.ws15_c02343{word-spacing:1.305888pt;}
.ws16_c02343{word-spacing:1.329312pt;}
.ws23_c02343{word-spacing:2.419200pt;}
.ws22_c02343{word-spacing:2.534400pt;}
.ws17_c02343{word-spacing:2.910432pt;}
.ws18_c02343{word-spacing:2.928000pt;}
.ws35_c02343{word-spacing:3.554592pt;}
.ws36_c02343{word-spacing:3.566304pt;}
.ws33_c02343{word-spacing:3.835680pt;}
.ws34_c02343{word-spacing:3.870816pt;}
.ws30_c02343{word-spacing:4.825344pt;}
.ws2f_c02343{word-spacing:4.837056pt;}
.ws20_c02343{word-spacing:6.867200pt;}
.wsb_c02343{word-spacing:6.950400pt;}
.wsc_c02343{word-spacing:6.976000pt;}
.ws1f_c02343{word-spacing:7.014400pt;}
.ws21_c02343{word-spacing:7.084800pt;}
.ws2e_c02343{word-spacing:7.091616pt;}
.ws1d_c02343{word-spacing:7.276800pt;}
.ws1e_c02343{word-spacing:7.385600pt;}
.ws8_c02343{word-spacing:7.923200pt;}
.ws9_c02343{word-spacing:8.006400pt;}
.ws31_c02343{word-spacing:8.661024pt;}
.ws32_c02343{word-spacing:8.666880pt;}
.ws1a_c02343{word-spacing:9.311040pt;}
.ws19_c02343{word-spacing:9.352032pt;}
.ws37_c02343{word-spacing:10.288992pt;}
.ws38_c02343{word-spacing:10.312416pt;}
.ws7_c02343{word-spacing:11.110400pt;}
.ws6_c02343{word-spacing:11.168000pt;}
.wsf_c02343{word-spacing:12.006400pt;}
.ws2b_c02343{word-spacing:12.012800pt;}
.ws2c_c02343{word-spacing:12.070400pt;}
.ws10_c02343{word-spacing:12.115200pt;}
.ws24_c02343{word-spacing:12.441600pt;}
.ws25_c02343{word-spacing:12.480000pt;}
.ws27_c02343{word-spacing:14.604800pt;}
.ws26_c02343{word-spacing:14.726400pt;}
.ws28_c02343{word-spacing:14.752000pt;}
.ws2a_c02343{word-spacing:14.880000pt;}
.ws11_c02343{word-spacing:14.892800pt;}
.ws29_c02343{word-spacing:14.899200pt;}
.ws12_c02343{word-spacing:14.937600pt;}
.ws3d_c02343{word-spacing:19.576608pt;}
.ws3b_c02343{word-spacing:19.892832pt;}
.ws3c_c02343{word-spacing:19.904544pt;}
._5_c02343{margin-left:-19.125696pt;}
._0_c02343{margin-left:-13.440000pt;}
._4_c02343{margin-left:-9.709248pt;}
._3_c02343{margin-left:-5.405088pt;}
._1_c02343{margin-left:-1.024000pt;}
._2_c02343{width:0.948672pt;}
.fs2_c02343{font-size:42.560000pt;}
.fs3_c02343{font-size:48.000000pt;}
.fs1_c02343{font-size:58.560000pt;}
.fs0_c02343{font-size:64.000000pt;}
.y0_c02343{bottom:0.000000pt;}
.y3_c02343{bottom:51.308395pt;}
.y2_c02343{bottom:69.227755pt;}
.y32_c02343{bottom:112.505987pt;}
.y31_c02343{bottom:124.746243pt;}
.y30_c02343{bottom:136.986499pt;}
.y2f_c02343{bottom:149.306555pt;}
.y2e_c02343{bottom:161.546811pt;}
.y2d_c02343{bottom:173.787067pt;}
.y2c_c02343{bottom:186.828907pt;}
.y2b_c02343{bottom:203.708827pt;}
.y2a_c02343{bottom:220.588747pt;}
.y29_c02343{bottom:237.388147pt;}
.y28_c02343{bottom:254.268067pt;}
.y27_c02343{bottom:271.147987pt;}
.y26_c02343{bottom:288.027907pt;}
.y25_c02343{bottom:304.907827pt;}
.y24_c02343{bottom:321.787747pt;}
.y23_c02343{bottom:338.587147pt;}
.y22_c02343{bottom:355.467067pt;}
.y21_c02343{bottom:377.787067pt;}
.y20_c02343{bottom:400.267067pt;}
.y1f_c02343{bottom:427.867067pt;}
.y1e_c02343{bottom:455.467067pt;}
.y1d_c02343{bottom:483.067067pt;}
.y1c_c02343{bottom:506.587067pt;}
.y1b_c02343{bottom:521.147067pt;}
.y1a_c02343{bottom:538.427067pt;}
.y19_c02343{bottom:559.547067pt;}
.y18_c02343{bottom:580.747067pt;}
.y17_c02343{bottom:601.867067pt;}
.y16_c02343{bottom:623.067067pt;}
.y15_c02343{bottom:644.027067pt;}
.y14_c02343{bottom:663.467243pt;}
.y13_c02343{bottom:677.547155pt;}
.y12_c02343{bottom:691.627067pt;}
.y11_c02343{bottom:704.667827pt;}
.y10_c02343{bottom:721.547747pt;}
.yf_c02343{bottom:738.427667pt;}
.ye_c02343{bottom:755.227067pt;}
.yd_c02343{bottom:777.547067pt;}
.yc_c02343{bottom:800.027067pt;}
.yb_c02343{bottom:827.627067pt;}
.ya_c02343{bottom:855.227067pt;}
.y9_c02343{bottom:882.827067pt;}
.y8_c02343{bottom:928.827067pt;}
.y7_c02343{bottom:949.947067pt;}
.y6_c02343{bottom:971.067067pt;}
.y5_c02343{bottom:992.267067pt;}
.y4_c02343{bottom:1013.227067pt;}
.y1_c02343{bottom:1060.587067pt;}
.h3_c02343{height:39.030469pt;}
.h5_c02343{height:41.770312pt;}
.h7_c02343{height:47.109375pt;}
.h2_c02343{height:48.294844pt;}
.h6_c02343{height:57.473437pt;}
.h4_c02343{height:62.812500pt;}
.h1_c02343{height:64.500000pt;}
.h0_c02343{height:1122.666667pt;}
.w1_c02343{width:793.333333pt;}
.w0_c02343{width:793.626667pt;}
.x0_c02343{left:0.000000pt;}
.x1_c02343{left:113.440000pt;}
.x5_c02343{left:132.400000pt;}
.x4_c02343{left:151.280256pt;}
.x3_c02343{left:170.160000pt;}
.x2_c02343{left:393.199435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f5e7b1639cd96c15cb180e3.woff2')format("woff");}.ff1_c02344{font-family:ff1_c02344;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02344{font-family:ff2_c02344;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02344;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff3_c02344{font-family:ff3_c02344;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02344;src:url('chunks/assets/font_d18dc2def30ce8fdfe883048.woff2')format("woff");}.ff4_c02344{font-family:ff4_c02344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02344;src:url('chunks/assets/font_637bb5965a8891b61b920489.woff2')format("woff");}.ff5_c02344{font-family:ff5_c02344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c02344{vertical-align:-78.120000px;}
.v2_c02344{vertical-align:-66.960600px;}
.v0_c02344{vertical-align:0.000000px;}
.ls20_c02344{letter-spacing:-0.043200px;}
.ls1d_c02344{letter-spacing:-0.036000px;}
.ls1e_c02344{letter-spacing:-0.028800px;}
.ls1c_c02344{letter-spacing:-0.014400px;}
.ls1f_c02344{letter-spacing:-0.007200px;}
.ls1a_c02344{letter-spacing:0.000000px;}
.ls0_c02344{letter-spacing:0.007200px;}
.ls17_c02344{letter-spacing:0.013176px;}
.ls14_c02344{letter-spacing:0.014400px;}
.ls4_c02344{letter-spacing:0.019764px;}
.ls16_c02344{letter-spacing:0.026352px;}
.ls12_c02344{letter-spacing:0.028800px;}
.ls3_c02344{letter-spacing:0.032940px;}
.ls9_c02344{letter-spacing:0.036000px;}
.lsb_c02344{letter-spacing:0.039528px;}
.lsd_c02344{letter-spacing:0.043200px;}
.ls11_c02344{letter-spacing:0.046116px;}
.ls13_c02344{letter-spacing:0.050400px;}
.lsf_c02344{letter-spacing:0.052704px;}
.ls8_c02344{letter-spacing:0.057600px;}
.lsc_c02344{letter-spacing:0.059292px;}
.ls1_c02344{letter-spacing:0.065880px;}
.ls15_c02344{letter-spacing:0.072000px;}
.ls18_c02344{letter-spacing:0.079056px;}
.lsa_c02344{letter-spacing:0.079200px;}
.ls7_c02344{letter-spacing:0.086400px;}
.ls5_c02344{letter-spacing:0.091368px;}
.ls10_c02344{letter-spacing:0.092232px;}
.ls19_c02344{letter-spacing:0.100800px;}
.ls2_c02344{letter-spacing:0.111996px;}
.ls1b_c02344{letter-spacing:0.158400px;}
.ls6_c02344{letter-spacing:73.350000px;}
.lse_c02344{letter-spacing:249.210000px;}
.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;}
}
.ws2_c02344{word-spacing:-18.086400px;}
.ws3_c02344{word-spacing:-18.000000px;}
.ws1_c02344{word-spacing:-16.489764px;}
.ws2b_c02344{word-spacing:-0.208800px;}
.ws12_c02344{word-spacing:-0.158400px;}
.ws0_c02344{word-spacing:-0.158112px;}
.ws38_c02344{word-spacing:-0.129600px;}
.ws2a_c02344{word-spacing:-0.122400px;}
.ws11_c02344{word-spacing:-0.115200px;}
.ws5_c02344{word-spacing:-0.064800px;}
.ws37_c02344{word-spacing:-0.050400px;}
.ws10_c02344{word-spacing:-0.043200px;}
.ws16_c02344{word-spacing:-0.028800px;}
.wsd_c02344{word-spacing:-0.014400px;}
.ws4_c02344{word-spacing:-0.007200px;}
.ws6_c02344{word-spacing:0.000000px;}
.ws25_c02344{word-spacing:0.013176px;}
.ws29_c02344{word-spacing:0.014400px;}
.wsf_c02344{word-spacing:0.032940px;}
.ws15_c02344{word-spacing:0.046116px;}
.ws23_c02344{word-spacing:1.798524px;}
.ws13_c02344{word-spacing:1.838052px;}
.ws24_c02344{word-spacing:1.844640px;}
.wse_c02344{word-spacing:1.851228px;}
.ws1c_c02344{word-spacing:3.427200px;}
.ws1d_c02344{word-spacing:3.614400px;}
.ws30_c02344{word-spacing:3.816000px;}
.ws31_c02344{word-spacing:4.003200px;}
.ws14_c02344{word-spacing:5.757912px;}
.ws21_c02344{word-spacing:7.279740px;}
.wsb_c02344{word-spacing:7.502400px;}
.wsa_c02344{word-spacing:7.560000px;}
.ws1b_c02344{word-spacing:7.732800px;}
.ws19_c02344{word-spacing:7.840800px;}
.ws1a_c02344{word-spacing:7.956000px;}
.ws35_c02344{word-spacing:8.445600px;}
.ws34_c02344{word-spacing:8.589600px;}
.ws36_c02344{word-spacing:8.632800px;}
.ws20_c02344{word-spacing:9.783180px;}
.ws22_c02344{word-spacing:10.501272px;}
.ws2d_c02344{word-spacing:10.677600px;}
.ws2c_c02344{word-spacing:10.807200px;}
.ws1e_c02344{word-spacing:11.052000px;}
.ws1f_c02344{word-spacing:11.145600px;}
.ws2e_c02344{word-spacing:15.105600px;}
.ws2f_c02344{word-spacing:15.120000px;}
.ws32_c02344{word-spacing:17.632800px;}
.ws33_c02344{word-spacing:17.654400px;}
.ws28_c02344{word-spacing:18.662400px;}
.ws26_c02344{word-spacing:19.051200px;}
.ws27_c02344{word-spacing:19.072800px;}
.wsc_c02344{word-spacing:19.404000px;}
.ws8_c02344{word-spacing:24.816996px;}
.ws7_c02344{word-spacing:24.863112px;}
.ws9_c02344{word-spacing:24.896052px;}
.ws17_c02344{word-spacing:40.744800px;}
.ws18_c02344{word-spacing:40.888800px;}
._0_c02344{margin-left:-15.120000px;}
._1_c02344{margin-left:-1.317600px;}
._2_c02344{width:1.113372px;}
.fc0_c02344{color:rgb(0,0,0);}
.fs4_c02344{font-size:24.120000px;}
.fs3_c02344{font-size:47.880000px;}
.fs1_c02344{font-size:65.880000px;}
.fs0_c02344{font-size:72.000000px;}
.fs2_c02344{font-size:83.880000px;}
.y0_c02344{bottom:0.000000px;}
.y3_c02344{bottom:57.721944px;}
.y2_c02344{bottom:77.881224px;}
.y2f_c02344{bottom:115.050450px;}
.y2e_c02344{bottom:146.100450px;}
.y2d_c02344{bottom:196.680450px;}
.y2c_c02344{bottom:214.680450px;}
.y2b_c02344{bottom:238.440450px;}
.y2a_c02344{bottom:262.290450px;}
.y29_c02344{bottom:286.140450px;}
.y28_c02344{bottom:309.900450px;}
.y27_c02344{bottom:333.750600px;}
.y26_c02344{bottom:357.510450px;}
.y25_c02344{bottom:381.270450px;}
.y24_c02344{bottom:404.940450px;}
.y23_c02344{bottom:424.650387px;}
.y22_c02344{bottom:438.510450px;}
.y21_c02344{bottom:453.090810px;}
.y20_c02344{bottom:472.080720px;}
.y1f_c02344{bottom:491.070630px;}
.y1e_c02344{bottom:510.060540px;}
.y1d_c02344{bottom:529.050450px;}
.y1c_c02344{bottom:549.210450px;}
.y1b_c02344{bottom:569.010450px;}
.y1a_c02344{bottom:600.150450px;}
.y19_c02344{bottom:650.640450px;}
.y18_c02344{bottom:668.640450px;}
.y17_c02344{bottom:692.490450px;}
.y16_c02344{bottom:716.250450px;}
.y15_c02344{bottom:739.920450px;}
.y14_c02344{bottom:759.630162px;}
.y13_c02344{bottom:773.400450px;}
.y12_c02344{bottom:788.070630px;}
.y11_c02344{bottom:807.060540px;}
.y10_c02344{bottom:842.790600px;}
.yf_c02344{bottom:871.770450px;}
.ye_c02344{bottom:887.430600px;}
.yd_c02344{bottom:910.560450px;}
.yc_c02344{bottom:929.550450px;}
.yb_c02344{bottom:951.690450px;}
.ya_c02344{bottom:971.490450px;}
.y9_c02344{bottom:996.870450px;}
.y8_c02344{bottom:1027.920450px;}
.y7_c02344{bottom:1078.410450px;}
.y6_c02344{bottom:1095.870450px;}
.y5_c02344{bottom:1117.740450px;}
.y4_c02344{bottom:1139.880450px;}
.y1_c02344{bottom:1193.160450px;}
.ha_c02344{height:23.660684px;}
.h8_c02344{height:23.672461px;}
.h3_c02344{height:43.909277px;}
.h6_c02344{height:46.991602px;}
.h2_c02344{height:54.331699px;}
.h4_c02344{height:64.657617px;}
.h9_c02344{height:70.628906px;}
.h7_c02344{height:70.664062px;}
.h1_c02344{height:72.562500px;}
.h5_c02344{height:82.323633px;}
.h0_c02344{height:1263.000000px;}
.w1_c02344{width:892.500000px;}
.w0_c02344{width:892.830000px;}
.x0_c02344{left:0.000000px;}
.x1_c02344{left:127.620000px;}
.x3_c02344{left:135.630000px;}
.x5_c02344{left:148.950000px;}
.x4_c02344{left:170.190000px;}
.x6_c02344{left:191.430000px;}
.x2_c02344{left:438.119868px;}
@media print{
.v1_c02344{vertical-align:-69.440000pt;}
.v2_c02344{vertical-align:-59.520533pt;}
.v0_c02344{vertical-align:0.000000pt;}
.ls20_c02344{letter-spacing:-0.038400pt;}
.ls1d_c02344{letter-spacing:-0.032000pt;}
.ls1e_c02344{letter-spacing:-0.025600pt;}
.ls1c_c02344{letter-spacing:-0.012800pt;}
.ls1f_c02344{letter-spacing:-0.006400pt;}
.ls1a_c02344{letter-spacing:0.000000pt;}
.ls0_c02344{letter-spacing:0.006400pt;}
.ls17_c02344{letter-spacing:0.011712pt;}
.ls14_c02344{letter-spacing:0.012800pt;}
.ls4_c02344{letter-spacing:0.017568pt;}
.ls16_c02344{letter-spacing:0.023424pt;}
.ls12_c02344{letter-spacing:0.025600pt;}
.ls3_c02344{letter-spacing:0.029280pt;}
.ls9_c02344{letter-spacing:0.032000pt;}
.lsb_c02344{letter-spacing:0.035136pt;}
.lsd_c02344{letter-spacing:0.038400pt;}
.ls11_c02344{letter-spacing:0.040992pt;}
.ls13_c02344{letter-spacing:0.044800pt;}
.lsf_c02344{letter-spacing:0.046848pt;}
.ls8_c02344{letter-spacing:0.051200pt;}
.lsc_c02344{letter-spacing:0.052704pt;}
.ls1_c02344{letter-spacing:0.058560pt;}
.ls15_c02344{letter-spacing:0.064000pt;}
.ls18_c02344{letter-spacing:0.070272pt;}
.lsa_c02344{letter-spacing:0.070400pt;}
.ls7_c02344{letter-spacing:0.076800pt;}
.ls5_c02344{letter-spacing:0.081216pt;}
.ls10_c02344{letter-spacing:0.081984pt;}
.ls19_c02344{letter-spacing:0.089600pt;}
.ls2_c02344{letter-spacing:0.099552pt;}
.ls1b_c02344{letter-spacing:0.140800pt;}
.ls6_c02344{letter-spacing:65.200000pt;}
.lse_c02344{letter-spacing:221.520000pt;}
.ws2_c02344{word-spacing:-16.076800pt;}
.ws3_c02344{word-spacing:-16.000000pt;}
.ws1_c02344{word-spacing:-14.657568pt;}
.ws2b_c02344{word-spacing:-0.185600pt;}
.ws12_c02344{word-spacing:-0.140800pt;}
.ws0_c02344{word-spacing:-0.140544pt;}
.ws38_c02344{word-spacing:-0.115200pt;}
.ws2a_c02344{word-spacing:-0.108800pt;}
.ws11_c02344{word-spacing:-0.102400pt;}
.ws5_c02344{word-spacing:-0.057600pt;}
.ws37_c02344{word-spacing:-0.044800pt;}
.ws10_c02344{word-spacing:-0.038400pt;}
.ws16_c02344{word-spacing:-0.025600pt;}
.wsd_c02344{word-spacing:-0.012800pt;}
.ws4_c02344{word-spacing:-0.006400pt;}
.ws6_c02344{word-spacing:0.000000pt;}
.ws25_c02344{word-spacing:0.011712pt;}
.ws29_c02344{word-spacing:0.012800pt;}
.wsf_c02344{word-spacing:0.029280pt;}
.ws15_c02344{word-spacing:0.040992pt;}
.ws23_c02344{word-spacing:1.598688pt;}
.ws13_c02344{word-spacing:1.633824pt;}
.ws24_c02344{word-spacing:1.639680pt;}
.wse_c02344{word-spacing:1.645536pt;}
.ws1c_c02344{word-spacing:3.046400pt;}
.ws1d_c02344{word-spacing:3.212800pt;}
.ws30_c02344{word-spacing:3.392000pt;}
.ws31_c02344{word-spacing:3.558400pt;}
.ws14_c02344{word-spacing:5.118144pt;}
.ws21_c02344{word-spacing:6.470880pt;}
.wsb_c02344{word-spacing:6.668800pt;}
.wsa_c02344{word-spacing:6.720000pt;}
.ws1b_c02344{word-spacing:6.873600pt;}
.ws19_c02344{word-spacing:6.969600pt;}
.ws1a_c02344{word-spacing:7.072000pt;}
.ws35_c02344{word-spacing:7.507200pt;}
.ws34_c02344{word-spacing:7.635200pt;}
.ws36_c02344{word-spacing:7.673600pt;}
.ws20_c02344{word-spacing:8.696160pt;}
.ws22_c02344{word-spacing:9.334464pt;}
.ws2d_c02344{word-spacing:9.491200pt;}
.ws2c_c02344{word-spacing:9.606400pt;}
.ws1e_c02344{word-spacing:9.824000pt;}
.ws1f_c02344{word-spacing:9.907200pt;}
.ws2e_c02344{word-spacing:13.427200pt;}
.ws2f_c02344{word-spacing:13.440000pt;}
.ws32_c02344{word-spacing:15.673600pt;}
.ws33_c02344{word-spacing:15.692800pt;}
.ws28_c02344{word-spacing:16.588800pt;}
.ws26_c02344{word-spacing:16.934400pt;}
.ws27_c02344{word-spacing:16.953600pt;}
.wsc_c02344{word-spacing:17.248000pt;}
.ws8_c02344{word-spacing:22.059552pt;}
.ws7_c02344{word-spacing:22.100544pt;}
.ws9_c02344{word-spacing:22.129824pt;}
.ws17_c02344{word-spacing:36.217600pt;}
.ws18_c02344{word-spacing:36.345600pt;}
._0_c02344{margin-left:-13.440000pt;}
._1_c02344{margin-left:-1.171200pt;}
._2_c02344{width:0.989664pt;}
.fs4_c02344{font-size:21.440000pt;}
.fs3_c02344{font-size:42.560000pt;}
.fs1_c02344{font-size:58.560000pt;}
.fs0_c02344{font-size:64.000000pt;}
.fs2_c02344{font-size:74.560000pt;}
.y0_c02344{bottom:0.000000pt;}
.y3_c02344{bottom:51.308395pt;}
.y2_c02344{bottom:69.227755pt;}
.y2f_c02344{bottom:102.267067pt;}
.y2e_c02344{bottom:129.867067pt;}
.y2d_c02344{bottom:174.827067pt;}
.y2c_c02344{bottom:190.827067pt;}
.y2b_c02344{bottom:211.947067pt;}
.y2a_c02344{bottom:233.147067pt;}
.y29_c02344{bottom:254.347067pt;}
.y28_c02344{bottom:275.467067pt;}
.y27_c02344{bottom:296.667200pt;}
.y26_c02344{bottom:317.787067pt;}
.y25_c02344{bottom:338.907067pt;}
.y24_c02344{bottom:359.947067pt;}
.y23_c02344{bottom:377.467011pt;}
.y22_c02344{bottom:389.787067pt;}
.y21_c02344{bottom:402.747387pt;}
.y20_c02344{bottom:419.627307pt;}
.y1f_c02344{bottom:436.507227pt;}
.y1e_c02344{bottom:453.387147pt;}
.y1d_c02344{bottom:470.267067pt;}
.y1c_c02344{bottom:488.187067pt;}
.y1b_c02344{bottom:505.787067pt;}
.y1a_c02344{bottom:533.467067pt;}
.y19_c02344{bottom:578.347067pt;}
.y18_c02344{bottom:594.347067pt;}
.y17_c02344{bottom:615.547067pt;}
.y16_c02344{bottom:636.667067pt;}
.y15_c02344{bottom:657.707067pt;}
.y14_c02344{bottom:675.226811pt;}
.y13_c02344{bottom:687.467067pt;}
.y12_c02344{bottom:700.507227pt;}
.y11_c02344{bottom:717.387147pt;}
.y10_c02344{bottom:749.147200pt;}
.yf_c02344{bottom:774.907067pt;}
.ye_c02344{bottom:788.827200pt;}
.yd_c02344{bottom:809.387067pt;}
.yc_c02344{bottom:826.267067pt;}
.yb_c02344{bottom:845.947067pt;}
.ya_c02344{bottom:863.547067pt;}
.y9_c02344{bottom:886.107067pt;}
.y8_c02344{bottom:913.707067pt;}
.y7_c02344{bottom:958.587067pt;}
.y6_c02344{bottom:974.107067pt;}
.y5_c02344{bottom:993.547067pt;}
.y4_c02344{bottom:1013.227067pt;}
.y1_c02344{bottom:1060.587067pt;}
.ha_c02344{height:21.031719pt;}
.h8_c02344{height:21.042187pt;}
.h3_c02344{height:39.030469pt;}
.h6_c02344{height:41.770312pt;}
.h2_c02344{height:48.294844pt;}
.h4_c02344{height:57.473437pt;}
.h9_c02344{height:62.781250pt;}
.h7_c02344{height:62.812500pt;}
.h1_c02344{height:64.500000pt;}
.h5_c02344{height:73.176562pt;}
.h0_c02344{height:1122.666667pt;}
.w1_c02344{width:793.333333pt;}
.w0_c02344{width:793.626667pt;}
.x0_c02344{left:0.000000pt;}
.x1_c02344{left:113.440000pt;}
.x3_c02344{left:120.560000pt;}
.x5_c02344{left:132.400000pt;}
.x4_c02344{left:151.280000pt;}
.x6_c02344{left:170.160000pt;}
.x2_c02344{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_213b21d5345bfd7c83b3b41d.woff2')format("woff");}.ff1_c02345{font-family:ff1_c02345;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02345{font-family:ff2_c02345;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02345;src:url('chunks/assets/font_8525c82f74a1af581a7575c7.woff2')format("woff");}.ff3_c02345{font-family:ff3_c02345;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02345;src:url('chunks/assets/font_48dd291bf095ad7df53621d5.woff2')format("woff");}.ff4_c02345{font-family:ff4_c02345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02345;src:url('chunks/assets/font_b40e99dccf8e688643d6e094.woff2')format("woff");}.ff5_c02345{font-family:ff5_c02345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02345{vertical-align:-83.880000px;}
.v1_c02345{vertical-align:-77.760000px;}
.v0_c02345{vertical-align:0.000000px;}
.ls16_c02345{letter-spacing:-0.028800px;}
.ls15_c02345{letter-spacing:-0.021600px;}
.ls14_c02345{letter-spacing:-0.007200px;}
.ls13_c02345{letter-spacing:0.000000px;}
.ls0_c02345{letter-spacing:0.007200px;}
.ls19_c02345{letter-spacing:0.013176px;}
.ls10_c02345{letter-spacing:0.014400px;}
.lse_c02345{letter-spacing:0.019764px;}
.ls17_c02345{letter-spacing:0.021600px;}
.lsa_c02345{letter-spacing:0.026352px;}
.ls3_c02345{letter-spacing:0.028800px;}
.ls9_c02345{letter-spacing:0.032940px;}
.ls1_c02345{letter-spacing:0.036000px;}
.ls12_c02345{letter-spacing:0.039528px;}
.ls2_c02345{letter-spacing:0.043200px;}
.ls8_c02345{letter-spacing:0.046116px;}
.ls7_c02345{letter-spacing:0.050400px;}
.lsc_c02345{letter-spacing:0.052704px;}
.ls5_c02345{letter-spacing:0.057600px;}
.ls11_c02345{letter-spacing:0.059292px;}
.ls6_c02345{letter-spacing:0.064800px;}
.lsd_c02345{letter-spacing:0.072468px;}
.lsb_c02345{letter-spacing:0.092232px;}
.ls18_c02345{letter-spacing:0.158400px;}
.lsf_c02345{letter-spacing:14.040000px;}
.ls4_c02345{letter-spacing:73.350000px;}
.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;}
}
.ws2_c02345{word-spacing:-18.050400px;}
.ws4_c02345{word-spacing:-18.007200px;}
.ws1_c02345{word-spacing:-18.000000px;}
.ws3_c02345{word-spacing:-17.992800px;}
.ws19_c02345{word-spacing:-0.518400px;}
.ws3a_c02345{word-spacing:-0.194400px;}
.ws3b_c02345{word-spacing:-0.158400px;}
.ws0_c02345{word-spacing:-0.158112px;}
.ws5_c02345{word-spacing:-0.118584px;}
.ws2d_c02345{word-spacing:-0.093600px;}
.wse_c02345{word-spacing:-0.086400px;}
.ws6_c02345{word-spacing:-0.085644px;}
.ws8_c02345{word-spacing:-0.064800px;}
.ws27_c02345{word-spacing:-0.057600px;}
.ws18_c02345{word-spacing:-0.050400px;}
.wsa_c02345{word-spacing:-0.014400px;}
.ws7_c02345{word-spacing:-0.007200px;}
.ws9_c02345{word-spacing:0.000000px;}
.ws2e_c02345{word-spacing:0.007200px;}
.wsf_c02345{word-spacing:0.028800px;}
.ws21_c02345{word-spacing:0.039528px;}
.ws36_c02345{word-spacing:0.052704px;}
.ws26_c02345{word-spacing:0.059292px;}
.ws39_c02345{word-spacing:0.079200px;}
.ws1e_c02345{word-spacing:0.790560px;}
.wsb_c02345{word-spacing:1.692000px;}
.wsc_c02345{word-spacing:2.167200px;}
.wsd_c02345{word-spacing:2.181600px;}
.ws31_c02345{word-spacing:2.206980px;}
.ws32_c02345{word-spacing:2.233332px;}
.ws2b_c02345{word-spacing:2.419200px;}
.ws2c_c02345{word-spacing:2.505600px;}
.ws2a_c02345{word-spacing:2.512800px;}
.ws37_c02345{word-spacing:3.448800px;}
.ws38_c02345{word-spacing:3.578400px;}
.ws25_c02345{word-spacing:5.435100px;}
.ws22_c02345{word-spacing:7.220448px;}
.ws23_c02345{word-spacing:7.227036px;}
.ws1d_c02345{word-spacing:8.702748px;}
.ws1a_c02345{word-spacing:10.125756px;}
.ws24_c02345{word-spacing:10.152108px;}
.ws33_c02345{word-spacing:11.206188px;}
.ws29_c02345{word-spacing:12.175200px;}
.ws34_c02345{word-spacing:12.240504px;}
.ws28_c02345{word-spacing:12.283200px;}
.ws35_c02345{word-spacing:12.312972px;}
.ws10_c02345{word-spacing:16.862400px;}
.ws12_c02345{word-spacing:17.935200px;}
.ws11_c02345{word-spacing:18.079200px;}
.ws13_c02345{word-spacing:22.932000px;}
.ws14_c02345{word-spacing:22.982400px;}
.ws1c_c02345{word-spacing:24.138432px;}
.ws1b_c02345{word-spacing:24.177960px;}
.ws2f_c02345{word-spacing:24.507360px;}
.ws30_c02345{word-spacing:24.553476px;}
.ws1f_c02345{word-spacing:33.177168px;}
.ws17_c02345{word-spacing:35.524800px;}
.ws15_c02345{word-spacing:35.589600px;}
.ws16_c02345{word-spacing:35.604000px;}
.ws20_c02345{word-spacing:37.123380px;}
._0_c02345{margin-left:-15.120000px;}
._2_c02345{margin-left:-10.079640px;}
._4_c02345{margin-left:-7.569612px;}
._1_c02345{margin-left:-1.360800px;}
._3_c02345{width:1.245132px;}
.fc0_c02345{color:rgb(0,0,0);}
.fs3_c02345{font-size:24.120000px;}
.fs2_c02345{font-size:47.880000px;}
.fs1_c02345{font-size:65.880000px;}
.fs0_c02345{font-size:72.000000px;}
.y0_c02345{bottom:0.000000px;}
.y3_c02345{bottom:57.721944px;}
.y2_c02345{bottom:77.881224px;}
.y2e_c02345{bottom:125.040600px;}
.y2d_c02345{bottom:145.380450px;}
.y2c_c02345{bottom:168.060450px;}
.y2b_c02345{bottom:190.920450px;}
.y2a_c02345{bottom:214.680450px;}
.y29_c02345{bottom:238.350450px;}
.y28_c02345{bottom:258.060162px;}
.y27_c02345{bottom:271.830450px;}
.y26_c02345{bottom:286.501395px;}
.y25_c02345{bottom:305.491305px;}
.y24_c02345{bottom:324.481215px;}
.y23_c02345{bottom:343.380540px;}
.y22_c02345{bottom:362.370450px;}
.y21_c02345{bottom:382.530450px;}
.y20_c02345{bottom:402.420600px;}
.y1f_c02345{bottom:433.470600px;}
.y1e_c02345{bottom:484.050450px;}
.y1d_c02345{bottom:502.050450px;}
.y1c_c02345{bottom:525.810450px;}
.y1b_c02345{bottom:570.450450px;}
.y1a_c02345{bottom:593.577876px;}
.y19_c02345{bottom:615.448389px;}
.y18_c02345{bottom:637.228317px;}
.y17_c02345{bottom:659.098830px;}
.y16_c02345{bottom:680.878758px;}
.y15_c02345{bottom:702.749271px;}
.y14_c02345{bottom:724.529199px;}
.y13_c02345{bottom:746.309127px;}
.y12_c02345{bottom:768.179640px;}
.y11_c02345{bottom:789.959568px;}
.y10_c02345{bottom:811.830081px;}
.yf_c02345{bottom:833.610009px;}
.ye_c02345{bottom:855.480522px;}
.yd_c02345{bottom:877.260450px;}
.yc_c02345{bottom:906.960450px;}
.yb_c02345{bottom:938.010450px;}
.ya_c02345{bottom:969.060450px;}
.y9_c02345{bottom:1000.110450px;}
.y8_c02345{bottom:1050.600450px;}
.y7_c02345{bottom:1068.690450px;}
.y6_c02345{bottom:1092.450450px;}
.y5_c02345{bottom:1116.300450px;}
.y4_c02345{bottom:1139.880450px;}
.y1_c02345{bottom:1193.160450px;}
.h7_c02345{height:23.672461px;}
.h3_c02345{height:43.909277px;}
.h5_c02345{height:46.991602px;}
.h2_c02345{height:54.331699px;}
.h6_c02345{height:64.657617px;}
.h4_c02345{height:70.664062px;}
.h1_c02345{height:72.562500px;}
.h0_c02345{height:1263.000000px;}
.w1_c02345{width:892.500000px;}
.w0_c02345{width:892.830000px;}
.x0_c02345{left:0.000000px;}
.x1_c02345{left:127.620000px;}
.x3_c02345{left:135.630000px;}
.x6_c02345{left:148.950000px;}
.x5_c02345{left:170.190288px;}
.x4_c02345{left:191.430000px;}
.x2_c02345{left:438.119868px;}
@media print{
.v2_c02345{vertical-align:-74.560000pt;}
.v1_c02345{vertical-align:-69.120000pt;}
.v0_c02345{vertical-align:0.000000pt;}
.ls16_c02345{letter-spacing:-0.025600pt;}
.ls15_c02345{letter-spacing:-0.019200pt;}
.ls14_c02345{letter-spacing:-0.006400pt;}
.ls13_c02345{letter-spacing:0.000000pt;}
.ls0_c02345{letter-spacing:0.006400pt;}
.ls19_c02345{letter-spacing:0.011712pt;}
.ls10_c02345{letter-spacing:0.012800pt;}
.lse_c02345{letter-spacing:0.017568pt;}
.ls17_c02345{letter-spacing:0.019200pt;}
.lsa_c02345{letter-spacing:0.023424pt;}
.ls3_c02345{letter-spacing:0.025600pt;}
.ls9_c02345{letter-spacing:0.029280pt;}
.ls1_c02345{letter-spacing:0.032000pt;}
.ls12_c02345{letter-spacing:0.035136pt;}
.ls2_c02345{letter-spacing:0.038400pt;}
.ls8_c02345{letter-spacing:0.040992pt;}
.ls7_c02345{letter-spacing:0.044800pt;}
.lsc_c02345{letter-spacing:0.046848pt;}
.ls5_c02345{letter-spacing:0.051200pt;}
.ls11_c02345{letter-spacing:0.052704pt;}
.ls6_c02345{letter-spacing:0.057600pt;}
.lsd_c02345{letter-spacing:0.064416pt;}
.lsb_c02345{letter-spacing:0.081984pt;}
.ls18_c02345{letter-spacing:0.140800pt;}
.lsf_c02345{letter-spacing:12.480000pt;}
.ls4_c02345{letter-spacing:65.200000pt;}
.ws2_c02345{word-spacing:-16.044800pt;}
.ws4_c02345{word-spacing:-16.006400pt;}
.ws1_c02345{word-spacing:-16.000000pt;}
.ws3_c02345{word-spacing:-15.993600pt;}
.ws19_c02345{word-spacing:-0.460800pt;}
.ws3a_c02345{word-spacing:-0.172800pt;}
.ws3b_c02345{word-spacing:-0.140800pt;}
.ws0_c02345{word-spacing:-0.140544pt;}
.ws5_c02345{word-spacing:-0.105408pt;}
.ws2d_c02345{word-spacing:-0.083200pt;}
.wse_c02345{word-spacing:-0.076800pt;}
.ws6_c02345{word-spacing:-0.076128pt;}
.ws8_c02345{word-spacing:-0.057600pt;}
.ws27_c02345{word-spacing:-0.051200pt;}
.ws18_c02345{word-spacing:-0.044800pt;}
.wsa_c02345{word-spacing:-0.012800pt;}
.ws7_c02345{word-spacing:-0.006400pt;}
.ws9_c02345{word-spacing:0.000000pt;}
.ws2e_c02345{word-spacing:0.006400pt;}
.wsf_c02345{word-spacing:0.025600pt;}
.ws21_c02345{word-spacing:0.035136pt;}
.ws36_c02345{word-spacing:0.046848pt;}
.ws26_c02345{word-spacing:0.052704pt;}
.ws39_c02345{word-spacing:0.070400pt;}
.ws1e_c02345{word-spacing:0.702720pt;}
.wsb_c02345{word-spacing:1.504000pt;}
.wsc_c02345{word-spacing:1.926400pt;}
.wsd_c02345{word-spacing:1.939200pt;}
.ws31_c02345{word-spacing:1.961760pt;}
.ws32_c02345{word-spacing:1.985184pt;}
.ws2b_c02345{word-spacing:2.150400pt;}
.ws2c_c02345{word-spacing:2.227200pt;}
.ws2a_c02345{word-spacing:2.233600pt;}
.ws37_c02345{word-spacing:3.065600pt;}
.ws38_c02345{word-spacing:3.180800pt;}
.ws25_c02345{word-spacing:4.831200pt;}
.ws22_c02345{word-spacing:6.418176pt;}
.ws23_c02345{word-spacing:6.424032pt;}
.ws1d_c02345{word-spacing:7.735776pt;}
.ws1a_c02345{word-spacing:9.000672pt;}
.ws24_c02345{word-spacing:9.024096pt;}
.ws33_c02345{word-spacing:9.961056pt;}
.ws29_c02345{word-spacing:10.822400pt;}
.ws34_c02345{word-spacing:10.880448pt;}
.ws28_c02345{word-spacing:10.918400pt;}
.ws35_c02345{word-spacing:10.944864pt;}
.ws10_c02345{word-spacing:14.988800pt;}
.ws12_c02345{word-spacing:15.942400pt;}
.ws11_c02345{word-spacing:16.070400pt;}
.ws13_c02345{word-spacing:20.384000pt;}
.ws14_c02345{word-spacing:20.428800pt;}
.ws1c_c02345{word-spacing:21.456384pt;}
.ws1b_c02345{word-spacing:21.491520pt;}
.ws2f_c02345{word-spacing:21.784320pt;}
.ws30_c02345{word-spacing:21.825312pt;}
.ws1f_c02345{word-spacing:29.490816pt;}
.ws17_c02345{word-spacing:31.577600pt;}
.ws15_c02345{word-spacing:31.635200pt;}
.ws16_c02345{word-spacing:31.648000pt;}
.ws20_c02345{word-spacing:32.998560pt;}
._0_c02345{margin-left:-13.440000pt;}
._2_c02345{margin-left:-8.959680pt;}
._4_c02345{margin-left:-6.728544pt;}
._1_c02345{margin-left:-1.209600pt;}
._3_c02345{width:1.106784pt;}
.fs3_c02345{font-size:21.440000pt;}
.fs2_c02345{font-size:42.560000pt;}
.fs1_c02345{font-size:58.560000pt;}
.fs0_c02345{font-size:64.000000pt;}
.y0_c02345{bottom:0.000000pt;}
.y3_c02345{bottom:51.308395pt;}
.y2_c02345{bottom:69.227755pt;}
.y2e_c02345{bottom:111.147200pt;}
.y2d_c02345{bottom:129.227067pt;}
.y2c_c02345{bottom:149.387067pt;}
.y2b_c02345{bottom:169.707067pt;}
.y2a_c02345{bottom:190.827067pt;}
.y29_c02345{bottom:211.867067pt;}
.y28_c02345{bottom:229.386811pt;}
.y27_c02345{bottom:241.627067pt;}
.y26_c02345{bottom:254.667907pt;}
.y25_c02345{bottom:271.547827pt;}
.y24_c02345{bottom:288.427747pt;}
.y23_c02345{bottom:305.227147pt;}
.y22_c02345{bottom:322.107067pt;}
.y21_c02345{bottom:340.027067pt;}
.y20_c02345{bottom:357.707200pt;}
.y1f_c02345{bottom:385.307200pt;}
.y1e_c02345{bottom:430.267067pt;}
.y1d_c02345{bottom:446.267067pt;}
.y1c_c02345{bottom:467.387067pt;}
.y1b_c02345{bottom:507.067067pt;}
.y1a_c02345{bottom:527.624779pt;}
.y19_c02345{bottom:547.065235pt;}
.y18_c02345{bottom:566.425171pt;}
.y17_c02345{bottom:585.865627pt;}
.y16_c02345{bottom:605.225563pt;}
.y15_c02345{bottom:624.666019pt;}
.y14_c02345{bottom:644.025955pt;}
.y13_c02345{bottom:663.385891pt;}
.y12_c02345{bottom:682.826347pt;}
.y11_c02345{bottom:702.186283pt;}
.y10_c02345{bottom:721.626739pt;}
.yf_c02345{bottom:740.986675pt;}
.ye_c02345{bottom:760.427131pt;}
.yd_c02345{bottom:779.787067pt;}
.yc_c02345{bottom:806.187067pt;}
.yb_c02345{bottom:833.787067pt;}
.ya_c02345{bottom:861.387067pt;}
.y9_c02345{bottom:888.987067pt;}
.y8_c02345{bottom:933.867067pt;}
.y7_c02345{bottom:949.947067pt;}
.y6_c02345{bottom:971.067067pt;}
.y5_c02345{bottom:992.267067pt;}
.y4_c02345{bottom:1013.227067pt;}
.y1_c02345{bottom:1060.587067pt;}
.h7_c02345{height:21.042187pt;}
.h3_c02345{height:39.030469pt;}
.h5_c02345{height:41.770312pt;}
.h2_c02345{height:48.294844pt;}
.h6_c02345{height:57.473437pt;}
.h4_c02345{height:62.812500pt;}
.h1_c02345{height:64.500000pt;}
.h0_c02345{height:1122.666667pt;}
.w1_c02345{width:793.333333pt;}
.w0_c02345{width:793.626667pt;}
.x0_c02345{left:0.000000pt;}
.x1_c02345{left:113.440000pt;}
.x3_c02345{left:120.560000pt;}
.x6_c02345{left:132.400000pt;}
.x5_c02345{left:151.280256pt;}
.x4_c02345{left:170.160000pt;}
.x2_c02345{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35891046d49faae54fee8fb1.woff2')format("woff");}.ff1_c02346{font-family:ff1_c02346;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02346{font-family:ff2_c02346;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02346;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff3_c02346{font-family:ff3_c02346;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02346;src:url('chunks/assets/font_13b0815f60ff8758df5b185a.woff2')format("woff");}.ff4_c02346{font-family:ff4_c02346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02346;src:url('chunks/assets/font_8743c29ab34599d67f61a146.woff2')format("woff");}.ff5_c02346{font-family:ff5_c02346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02346{vertical-align:-77.760000px;}
.v2_c02346{vertical-align:-66.960000px;}
.v0_c02346{vertical-align:0.000000px;}
.ls12_c02346{letter-spacing:-0.021600px;}
.ls13_c02346{letter-spacing:-0.014400px;}
.ls10_c02346{letter-spacing:0.000000px;}
.ls0_c02346{letter-spacing:0.007200px;}
.ls14_c02346{letter-spacing:0.013176px;}
.ls5_c02346{letter-spacing:0.014400px;}
.lsd_c02346{letter-spacing:0.026352px;}
.ls6_c02346{letter-spacing:0.028800px;}
.ls1_c02346{letter-spacing:0.036000px;}
.ls8_c02346{letter-spacing:0.039528px;}
.ls3_c02346{letter-spacing:0.043200px;}
.ls9_c02346{letter-spacing:0.052704px;}
.lsc_c02346{letter-spacing:0.059292px;}
.ls4_c02346{letter-spacing:0.064800px;}
.lsf_c02346{letter-spacing:0.065880px;}
.lsb_c02346{letter-spacing:0.072468px;}
.lse_c02346{letter-spacing:0.079056px;}
.lsa_c02346{letter-spacing:0.085644px;}
.ls11_c02346{letter-spacing:0.092232px;}
.ls2_c02346{letter-spacing:73.350000px;}
.ls7_c02346{letter-spacing:249.210000px;}
.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;}
}
.ws6_c02346{word-spacing:-0.273600px;}
.ws0_c02346{word-spacing:-0.158112px;}
.wse_c02346{word-spacing:-0.093600px;}
.ws2_c02346{word-spacing:-0.064800px;}
.wsd_c02346{word-spacing:-0.028800px;}
.ws1_c02346{word-spacing:-0.007200px;}
.ws3_c02346{word-spacing:0.000000px;}
.ws17_c02346{word-spacing:0.013176px;}
.ws1d_c02346{word-spacing:0.019764px;}
.ws13_c02346{word-spacing:0.032940px;}
.ws18_c02346{word-spacing:1.146312px;}
.wsb_c02346{word-spacing:3.463200px;}
.wsc_c02346{word-spacing:3.513600px;}
.ws16_c02346{word-spacing:4.354668px;}
.ws15_c02346{word-spacing:4.381020px;}
.ws1a_c02346{word-spacing:5.066172px;}
.ws9_c02346{word-spacing:5.695200px;}
.wsa_c02346{word-spacing:5.724000px;}
.ws19_c02346{word-spacing:5.823792px;}
.ws11_c02346{word-spacing:7.563024px;}
.ws12_c02346{word-spacing:7.576200px;}
.ws14_c02346{word-spacing:10.145520px;}
.ws10_c02346{word-spacing:12.635784px;}
.ws7_c02346{word-spacing:14.356800px;}
.ws8_c02346{word-spacing:14.371200px;}
.ws1c_c02346{word-spacing:14.770296px;}
.ws1b_c02346{word-spacing:14.790060px;}
.wsf_c02346{word-spacing:17.333028px;}
.ws5_c02346{word-spacing:24.400800px;}
.ws4_c02346{word-spacing:24.501600px;}
._0_c02346{margin-left:-15.120000px;}
._1_c02346{margin-left:-1.569600px;}
._2_c02346{width:1.291248px;}
.fc0_c02346{color:rgb(0,0,0);}
.fs3_c02346{font-size:24.120000px;}
.fs2_c02346{font-size:47.880000px;}
.fs1_c02346{font-size:65.880000px;}
.fs0_c02346{font-size:72.000000px;}
.y0_c02346{bottom:0.000000px;}
.y3_c02346{bottom:57.721944px;}
.y2_c02346{bottom:77.881224px;}
.y40_c02346{bottom:126.390450px;}
.y3f_c02346{bottom:134.752206px;}
.y3e_c02346{bottom:148.522494px;}
.y3d_c02346{bottom:162.292782px;}
.y3c_c02346{bottom:176.152845px;}
.y3b_c02346{bottom:189.923133px;}
.y3a_c02346{bottom:203.693421px;}
.y39_c02346{bottom:217.553484px;}
.y38_c02346{bottom:231.323772px;}
.y37_c02346{bottom:245.094060px;}
.y36_c02346{bottom:258.954123px;}
.y35_c02346{bottom:272.724411px;}
.y34_c02346{bottom:286.494699px;}
.y33_c02346{bottom:300.264987px;}
.y32_c02346{bottom:314.125050px;}
.y31_c02346{bottom:327.895338px;}
.y30_c02346{bottom:341.665626px;}
.y2f_c02346{bottom:355.525689px;}
.y2e_c02346{bottom:369.295977px;}
.y2d_c02346{bottom:383.066265px;}
.y2c_c02346{bottom:396.926328px;}
.y2b_c02346{bottom:410.696616px;}
.y2a_c02346{bottom:424.466904px;}
.y29_c02346{bottom:438.326967px;}
.y28_c02346{bottom:452.097255px;}
.y27_c02346{bottom:465.867543px;}
.y26_c02346{bottom:479.727606px;}
.y25_c02346{bottom:493.497894px;}
.y24_c02346{bottom:507.268182px;}
.y23_c02346{bottom:521.128245px;}
.y22_c02346{bottom:534.898533px;}
.y21_c02346{bottom:548.668821px;}
.y20_c02346{bottom:562.528884px;}
.y1f_c02346{bottom:576.299172px;}
.y1e_c02346{bottom:590.069460px;}
.y1d_c02346{bottom:603.929523px;}
.y1c_c02346{bottom:617.699811px;}
.y1b_c02346{bottom:631.470099px;}
.y1a_c02346{bottom:645.240387px;}
.y19_c02346{bottom:659.100450px;}
.y18_c02346{bottom:673.773285px;}
.y17_c02346{bottom:692.672610px;}
.y16_c02346{bottom:711.662520px;}
.y15_c02346{bottom:730.652430px;}
.y14_c02346{bottom:749.642340px;}
.y13_c02346{bottom:768.632250px;}
.y12_c02346{bottom:787.531575px;}
.y11_c02346{bottom:806.521485px;}
.y10_c02346{bottom:825.511395px;}
.yf_c02346{bottom:844.501305px;}
.ye_c02346{bottom:863.491215px;}
.yd_c02346{bottom:882.481125px;}
.yc_c02346{bottom:918.120450px;}
.yb_c02346{bottom:938.010450px;}
.ya_c02346{bottom:969.060450px;}
.y9_c02346{bottom:1000.110450px;}
.y8_c02346{bottom:1050.600450px;}
.y7_c02346{bottom:1068.690450px;}
.y6_c02346{bottom:1092.450450px;}
.y5_c02346{bottom:1116.300450px;}
.y4_c02346{bottom:1139.880450px;}
.y1_c02346{bottom:1193.160450px;}
.h6_c02346{height:23.672461px;}
.h3_c02346{height:43.909277px;}
.h5_c02346{height:46.991602px;}
.h2_c02346{height:54.331699px;}
.h7_c02346{height:64.657617px;}
.h4_c02346{height:70.664062px;}
.h1_c02346{height:72.562500px;}
.h0_c02346{height:1263.000000px;}
.w1_c02346{width:892.500000px;}
.w0_c02346{width:892.830000px;}
.x0_c02346{left:0.000000px;}
.x1_c02346{left:127.620000px;}
.x3_c02346{left:135.630000px;}
.x4_c02346{left:170.190288px;}
.x5_c02346{left:191.430000px;}
.x2_c02346{left:438.119868px;}
@media print{
.v1_c02346{vertical-align:-69.120000pt;}
.v2_c02346{vertical-align:-59.520000pt;}
.v0_c02346{vertical-align:0.000000pt;}
.ls12_c02346{letter-spacing:-0.019200pt;}
.ls13_c02346{letter-spacing:-0.012800pt;}
.ls10_c02346{letter-spacing:0.000000pt;}
.ls0_c02346{letter-spacing:0.006400pt;}
.ls14_c02346{letter-spacing:0.011712pt;}
.ls5_c02346{letter-spacing:0.012800pt;}
.lsd_c02346{letter-spacing:0.023424pt;}
.ls6_c02346{letter-spacing:0.025600pt;}
.ls1_c02346{letter-spacing:0.032000pt;}
.ls8_c02346{letter-spacing:0.035136pt;}
.ls3_c02346{letter-spacing:0.038400pt;}
.ls9_c02346{letter-spacing:0.046848pt;}
.lsc_c02346{letter-spacing:0.052704pt;}
.ls4_c02346{letter-spacing:0.057600pt;}
.lsf_c02346{letter-spacing:0.058560pt;}
.lsb_c02346{letter-spacing:0.064416pt;}
.lse_c02346{letter-spacing:0.070272pt;}
.lsa_c02346{letter-spacing:0.076128pt;}
.ls11_c02346{letter-spacing:0.081984pt;}
.ls2_c02346{letter-spacing:65.200000pt;}
.ls7_c02346{letter-spacing:221.520000pt;}
.ws6_c02346{word-spacing:-0.243200pt;}
.ws0_c02346{word-spacing:-0.140544pt;}
.wse_c02346{word-spacing:-0.083200pt;}
.ws2_c02346{word-spacing:-0.057600pt;}
.wsd_c02346{word-spacing:-0.025600pt;}
.ws1_c02346{word-spacing:-0.006400pt;}
.ws3_c02346{word-spacing:0.000000pt;}
.ws17_c02346{word-spacing:0.011712pt;}
.ws1d_c02346{word-spacing:0.017568pt;}
.ws13_c02346{word-spacing:0.029280pt;}
.ws18_c02346{word-spacing:1.018944pt;}
.wsb_c02346{word-spacing:3.078400pt;}
.wsc_c02346{word-spacing:3.123200pt;}
.ws16_c02346{word-spacing:3.870816pt;}
.ws15_c02346{word-spacing:3.894240pt;}
.ws1a_c02346{word-spacing:4.503264pt;}
.ws9_c02346{word-spacing:5.062400pt;}
.wsa_c02346{word-spacing:5.088000pt;}
.ws19_c02346{word-spacing:5.176704pt;}
.ws11_c02346{word-spacing:6.722688pt;}
.ws12_c02346{word-spacing:6.734400pt;}
.ws14_c02346{word-spacing:9.018240pt;}
.ws10_c02346{word-spacing:11.231808pt;}
.ws7_c02346{word-spacing:12.761600pt;}
.ws8_c02346{word-spacing:12.774400pt;}
.ws1c_c02346{word-spacing:13.129152pt;}
.ws1b_c02346{word-spacing:13.146720pt;}
.wsf_c02346{word-spacing:15.407136pt;}
.ws5_c02346{word-spacing:21.689600pt;}
.ws4_c02346{word-spacing:21.779200pt;}
._0_c02346{margin-left:-13.440000pt;}
._1_c02346{margin-left:-1.395200pt;}
._2_c02346{width:1.147776pt;}
.fs3_c02346{font-size:21.440000pt;}
.fs2_c02346{font-size:42.560000pt;}
.fs1_c02346{font-size:58.560000pt;}
.fs0_c02346{font-size:64.000000pt;}
.y0_c02346{bottom:0.000000pt;}
.y3_c02346{bottom:51.308395pt;}
.y2_c02346{bottom:69.227755pt;}
.y40_c02346{bottom:112.347067pt;}
.y3f_c02346{bottom:119.779739pt;}
.y3e_c02346{bottom:132.019995pt;}
.y3d_c02346{bottom:144.260251pt;}
.y3c_c02346{bottom:156.580307pt;}
.y3b_c02346{bottom:168.820563pt;}
.y3a_c02346{bottom:181.060819pt;}
.y39_c02346{bottom:193.380875pt;}
.y38_c02346{bottom:205.621131pt;}
.y37_c02346{bottom:217.861387pt;}
.y36_c02346{bottom:230.181443pt;}
.y35_c02346{bottom:242.421699pt;}
.y34_c02346{bottom:254.661955pt;}
.y33_c02346{bottom:266.902211pt;}
.y32_c02346{bottom:279.222267pt;}
.y31_c02346{bottom:291.462523pt;}
.y30_c02346{bottom:303.702779pt;}
.y2f_c02346{bottom:316.022835pt;}
.y2e_c02346{bottom:328.263091pt;}
.y2d_c02346{bottom:340.503347pt;}
.y2c_c02346{bottom:352.823403pt;}
.y2b_c02346{bottom:365.063659pt;}
.y2a_c02346{bottom:377.303915pt;}
.y29_c02346{bottom:389.623971pt;}
.y28_c02346{bottom:401.864227pt;}
.y27_c02346{bottom:414.104483pt;}
.y26_c02346{bottom:426.424539pt;}
.y25_c02346{bottom:438.664795pt;}
.y24_c02346{bottom:450.905051pt;}
.y23_c02346{bottom:463.225107pt;}
.y22_c02346{bottom:475.465363pt;}
.y21_c02346{bottom:487.705619pt;}
.y20_c02346{bottom:500.025675pt;}
.y1f_c02346{bottom:512.265931pt;}
.y1e_c02346{bottom:524.506187pt;}
.y1d_c02346{bottom:536.826243pt;}
.y1c_c02346{bottom:549.066499pt;}
.y1b_c02346{bottom:561.306755pt;}
.y1a_c02346{bottom:573.547011pt;}
.y19_c02346{bottom:585.867067pt;}
.y18_c02346{bottom:598.909587pt;}
.y17_c02346{bottom:615.708987pt;}
.y16_c02346{bottom:632.588907pt;}
.y15_c02346{bottom:649.468827pt;}
.y14_c02346{bottom:666.348747pt;}
.y13_c02346{bottom:683.228667pt;}
.y12_c02346{bottom:700.028067pt;}
.y11_c02346{bottom:716.907987pt;}
.y10_c02346{bottom:733.787907pt;}
.yf_c02346{bottom:750.667827pt;}
.ye_c02346{bottom:767.547747pt;}
.yd_c02346{bottom:784.427667pt;}
.yc_c02346{bottom:816.107067pt;}
.yb_c02346{bottom:833.787067pt;}
.ya_c02346{bottom:861.387067pt;}
.y9_c02346{bottom:888.987067pt;}
.y8_c02346{bottom:933.867067pt;}
.y7_c02346{bottom:949.947067pt;}
.y6_c02346{bottom:971.067067pt;}
.y5_c02346{bottom:992.267067pt;}
.y4_c02346{bottom:1013.227067pt;}
.y1_c02346{bottom:1060.587067pt;}
.h6_c02346{height:21.042187pt;}
.h3_c02346{height:39.030469pt;}
.h5_c02346{height:41.770312pt;}
.h2_c02346{height:48.294844pt;}
.h7_c02346{height:57.473437pt;}
.h4_c02346{height:62.812500pt;}
.h1_c02346{height:64.500000pt;}
.h0_c02346{height:1122.666667pt;}
.w1_c02346{width:793.333333pt;}
.w0_c02346{width:793.626667pt;}
.x0_c02346{left:0.000000pt;}
.x1_c02346{left:113.440000pt;}
.x3_c02346{left:120.560000pt;}
.x4_c02346{left:151.280256pt;}
.x5_c02346{left:170.160000pt;}
.x2_c02346{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1118acb2e72e5818b1fe1f60.woff2')format("woff");}.ff1_c02347{font-family:ff1_c02347;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02347{font-family:ff2_c02347;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02347;src:url('chunks/assets/font_1173b3c28a9f02d90484542e.woff2')format("woff");}.ff3_c02347{font-family:ff3_c02347;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02347;src:url('chunks/assets/font_85ff08d0d4d46ce95a17d893.woff2')format("woff");}.ff4_c02347{font-family:ff4_c02347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02347;src:url('chunks/assets/font_76efa5ed858028d22233a8d7.woff2')format("woff");}.ff5_c02347{font-family:ff5_c02347;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_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;}
.ls11_c02347{letter-spacing:-0.144000px;}
.ls16_c02347{letter-spacing:-0.079200px;}
.ls14_c02347{letter-spacing:-0.050400px;}
.ls15_c02347{letter-spacing:-0.028800px;}
.ls10_c02347{letter-spacing:-0.021600px;}
.ls13_c02347{letter-spacing:-0.014400px;}
.ls12_c02347{letter-spacing:-0.007200px;}
.lse_c02347{letter-spacing:0.000000px;}
.ls0_c02347{letter-spacing:0.007200px;}
.lsc_c02347{letter-spacing:0.014400px;}
.ls2_c02347{letter-spacing:0.021600px;}
.lsa_c02347{letter-spacing:0.028800px;}
.ls8_c02347{letter-spacing:0.036000px;}
.ls9_c02347{letter-spacing:0.043200px;}
.ls1_c02347{letter-spacing:0.050400px;}
.ls3_c02347{letter-spacing:0.057600px;}
.ls6_c02347{letter-spacing:0.064800px;}
.ls4_c02347{letter-spacing:0.072000px;}
.lsd_c02347{letter-spacing:0.086400px;}
.lsf_c02347{letter-spacing:0.092232px;}
.ls5_c02347{letter-spacing:0.093600px;}
.ls7_c02347{letter-spacing:0.100800px;}
.lsb_c02347{letter-spacing:0.144000px;}
.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;}
}
.ws4_c02347{word-spacing:-18.050400px;}
.ws3_c02347{word-spacing:-18.021600px;}
.ws1_c02347{word-spacing:-18.014400px;}
.ws2_c02347{word-spacing:-17.985600px;}
.wsa_c02347{word-spacing:-0.381600px;}
.wsb_c02347{word-spacing:-0.237600px;}
.ws0_c02347{word-spacing:-0.158112px;}
.ws41_c02347{word-spacing:-0.151200px;}
.ws23_c02347{word-spacing:-0.079200px;}
.ws6_c02347{word-spacing:-0.064800px;}
.ws5_c02347{word-spacing:-0.007200px;}
.ws7_c02347{word-spacing:0.000000px;}
.ws2e_c02347{word-spacing:0.136800px;}
.wse_c02347{word-spacing:0.144000px;}
.ws2d_c02347{word-spacing:0.230400px;}
.ws2c_c02347{word-spacing:0.352800px;}
.ws3e_c02347{word-spacing:1.209600px;}
.ws8_c02347{word-spacing:1.267200px;}
.ws3d_c02347{word-spacing:1.389600px;}
.wsc_c02347{word-spacing:1.418400px;}
.wsd_c02347{word-spacing:1.440000px;}
.ws9_c02347{word-spacing:1.461600px;}
.ws3b_c02347{word-spacing:1.706400px;}
.ws3c_c02347{word-spacing:1.742400px;}
.ws3a_c02347{word-spacing:1.778400px;}
.ws17_c02347{word-spacing:1.994400px;}
.ws15_c02347{word-spacing:2.167200px;}
.ws16_c02347{word-spacing:2.181600px;}
.ws24_c02347{word-spacing:2.361600px;}
.ws26_c02347{word-spacing:2.368800px;}
.ws25_c02347{word-spacing:2.440800px;}
.ws14_c02347{word-spacing:3.074400px;}
.ws13_c02347{word-spacing:3.117600px;}
.ws28_c02347{word-spacing:3.859200px;}
.ws29_c02347{word-spacing:3.988800px;}
.ws27_c02347{word-spacing:4.010400px;}
.ws22_c02347{word-spacing:5.371200px;}
.ws10_c02347{word-spacing:6.451200px;}
.wsf_c02347{word-spacing:6.480000px;}
.ws1d_c02347{word-spacing:10.375200px;}
.ws1e_c02347{word-spacing:10.411200px;}
.ws12_c02347{word-spacing:13.442400px;}
.ws11_c02347{word-spacing:13.543200px;}
.ws2b_c02347{word-spacing:14.148000px;}
.ws2a_c02347{word-spacing:14.292000px;}
.ws40_c02347{word-spacing:15.091200px;}
.ws3f_c02347{word-spacing:15.148800px;}
.ws32_c02347{word-spacing:18.547200px;}
.ws31_c02347{word-spacing:18.633600px;}
.ws33_c02347{word-spacing:18.720000px;}
.ws1f_c02347{word-spacing:21.052800px;}
.ws21_c02347{word-spacing:21.110400px;}
.ws20_c02347{word-spacing:21.153600px;}
.ws19_c02347{word-spacing:22.644000px;}
.ws18_c02347{word-spacing:22.687200px;}
.ws38_c02347{word-spacing:24.616800px;}
.ws39_c02347{word-spacing:24.825600px;}
.ws1c_c02347{word-spacing:25.862400px;}
.ws1a_c02347{word-spacing:25.876800px;}
.ws1b_c02347{word-spacing:25.891200px;}
.ws37_c02347{word-spacing:31.219200px;}
.ws36_c02347{word-spacing:31.291200px;}
.ws34_c02347{word-spacing:32.666400px;}
.ws35_c02347{word-spacing:32.695200px;}
.ws30_c02347{word-spacing:36.331200px;}
.ws2f_c02347{word-spacing:36.374400px;}
._0_c02347{margin-left:-15.120000px;}
._2_c02347{margin-left:-5.860800px;}
._1_c02347{margin-left:-1.022400px;}
._3_c02347{width:3.960000px;}
.fc1_c02347{color:rgb(51,51,51);}
.fc0_c02347{color:rgb(0,0,0);}
.fs3_c02347{font-size:24.120000px;}
.fs2_c02347{font-size:47.880000px;}
.fs1_c02347{font-size:65.880000px;}
.fs0_c02347{font-size:72.000000px;}
.y0_c02347{bottom:0.000000px;}
.y3_c02347{bottom:57.721944px;}
.y2_c02347{bottom:77.881224px;}
.y31_c02347{bottom:127.830450px;}
.y30_c02347{bottom:138.180450px;}
.y2f_c02347{bottom:148.530450px;}
.y2e_c02347{bottom:158.880450px;}
.y2d_c02347{bottom:169.230450px;}
.y2c_c02347{bottom:179.580450px;}
.y2b_c02347{bottom:189.930450px;}
.y2a_c02347{bottom:200.280600px;}
.y29_c02347{bottom:210.630450px;}
.y28_c02347{bottom:220.980450px;}
.y27_c02347{bottom:231.330450px;}
.y26_c02347{bottom:241.680450px;}
.y25_c02347{bottom:252.030450px;}
.y24_c02347{bottom:262.380450px;}
.y23_c02347{bottom:272.640450px;}
.y22_c02347{bottom:282.990450px;}
.y21_c02347{bottom:293.340450px;}
.y20_c02347{bottom:313.230450px;}
.y1f_c02347{bottom:344.280450px;}
.y1e_c02347{bottom:375.330600px;}
.y1d_c02347{bottom:406.380450px;}
.y1c_c02347{bottom:437.430600px;}
.y1b_c02347{bottom:468.480450px;}
.y1a_c02347{bottom:499.530600px;}
.y19_c02347{bottom:530.580450px;}
.y18_c02347{bottom:561.630450px;}
.y17_c02347{bottom:592.680450px;}
.y16_c02347{bottom:623.730450px;}
.y15_c02347{bottom:654.780450px;}
.y14_c02347{bottom:685.830450px;}
.y13_c02347{bottom:712.290450px;}
.y12_c02347{bottom:737.580450px;}
.y11_c02347{bottom:768.630450px;}
.y10_c02347{bottom:799.680450px;}
.yf_c02347{bottom:830.730450px;}
.ye_c02347{bottom:861.780450px;}
.yd_c02347{bottom:892.830450px;}
.yc_c02347{bottom:923.880450px;}
.yb_c02347{bottom:954.930450px;}
.ya_c02347{bottom:985.980450px;}
.y9_c02347{bottom:1017.030450px;}
.y8_c02347{bottom:1048.080450px;}
.y7_c02347{bottom:1074.540450px;}
.y6_c02347{bottom:1092.450450px;}
.y5_c02347{bottom:1116.300450px;}
.y4_c02347{bottom:1139.880450px;}
.y1_c02347{bottom:1193.160450px;}
.h6_c02347{height:23.672461px;}
.h3_c02347{height:43.909277px;}
.h5_c02347{height:46.991602px;}
.h2_c02347{height:54.331699px;}
.h4_c02347{height:70.664062px;}
.h1_c02347{height:72.562500px;}
.h0_c02347{height:1263.000000px;}
.w1_c02347{width:892.500000px;}
.w0_c02347{width:892.830000px;}
.x0_c02347{left:0.000000px;}
.x1_c02347{left:127.620000px;}
.x3_c02347{left:135.630000px;}
.x4_c02347{left:148.950000px;}
.x2_c02347{left:438.119868px;}
@media print{
.v0_c02347{vertical-align:0.000000pt;}
.ls11_c02347{letter-spacing:-0.128000pt;}
.ls16_c02347{letter-spacing:-0.070400pt;}
.ls14_c02347{letter-spacing:-0.044800pt;}
.ls15_c02347{letter-spacing:-0.025600pt;}
.ls10_c02347{letter-spacing:-0.019200pt;}
.ls13_c02347{letter-spacing:-0.012800pt;}
.ls12_c02347{letter-spacing:-0.006400pt;}
.lse_c02347{letter-spacing:0.000000pt;}
.ls0_c02347{letter-spacing:0.006400pt;}
.lsc_c02347{letter-spacing:0.012800pt;}
.ls2_c02347{letter-spacing:0.019200pt;}
.lsa_c02347{letter-spacing:0.025600pt;}
.ls8_c02347{letter-spacing:0.032000pt;}
.ls9_c02347{letter-spacing:0.038400pt;}
.ls1_c02347{letter-spacing:0.044800pt;}
.ls3_c02347{letter-spacing:0.051200pt;}
.ls6_c02347{letter-spacing:0.057600pt;}
.ls4_c02347{letter-spacing:0.064000pt;}
.lsd_c02347{letter-spacing:0.076800pt;}
.lsf_c02347{letter-spacing:0.081984pt;}
.ls5_c02347{letter-spacing:0.083200pt;}
.ls7_c02347{letter-spacing:0.089600pt;}
.lsb_c02347{letter-spacing:0.128000pt;}
.ws4_c02347{word-spacing:-16.044800pt;}
.ws3_c02347{word-spacing:-16.019200pt;}
.ws1_c02347{word-spacing:-16.012800pt;}
.ws2_c02347{word-spacing:-15.987200pt;}
.wsa_c02347{word-spacing:-0.339200pt;}
.wsb_c02347{word-spacing:-0.211200pt;}
.ws0_c02347{word-spacing:-0.140544pt;}
.ws41_c02347{word-spacing:-0.134400pt;}
.ws23_c02347{word-spacing:-0.070400pt;}
.ws6_c02347{word-spacing:-0.057600pt;}
.ws5_c02347{word-spacing:-0.006400pt;}
.ws7_c02347{word-spacing:0.000000pt;}
.ws2e_c02347{word-spacing:0.121600pt;}
.wse_c02347{word-spacing:0.128000pt;}
.ws2d_c02347{word-spacing:0.204800pt;}
.ws2c_c02347{word-spacing:0.313600pt;}
.ws3e_c02347{word-spacing:1.075200pt;}
.ws8_c02347{word-spacing:1.126400pt;}
.ws3d_c02347{word-spacing:1.235200pt;}
.wsc_c02347{word-spacing:1.260800pt;}
.wsd_c02347{word-spacing:1.280000pt;}
.ws9_c02347{word-spacing:1.299200pt;}
.ws3b_c02347{word-spacing:1.516800pt;}
.ws3c_c02347{word-spacing:1.548800pt;}
.ws3a_c02347{word-spacing:1.580800pt;}
.ws17_c02347{word-spacing:1.772800pt;}
.ws15_c02347{word-spacing:1.926400pt;}
.ws16_c02347{word-spacing:1.939200pt;}
.ws24_c02347{word-spacing:2.099200pt;}
.ws26_c02347{word-spacing:2.105600pt;}
.ws25_c02347{word-spacing:2.169600pt;}
.ws14_c02347{word-spacing:2.732800pt;}
.ws13_c02347{word-spacing:2.771200pt;}
.ws28_c02347{word-spacing:3.430400pt;}
.ws29_c02347{word-spacing:3.545600pt;}
.ws27_c02347{word-spacing:3.564800pt;}
.ws22_c02347{word-spacing:4.774400pt;}
.ws10_c02347{word-spacing:5.734400pt;}
.wsf_c02347{word-spacing:5.760000pt;}
.ws1d_c02347{word-spacing:9.222400pt;}
.ws1e_c02347{word-spacing:9.254400pt;}
.ws12_c02347{word-spacing:11.948800pt;}
.ws11_c02347{word-spacing:12.038400pt;}
.ws2b_c02347{word-spacing:12.576000pt;}
.ws2a_c02347{word-spacing:12.704000pt;}
.ws40_c02347{word-spacing:13.414400pt;}
.ws3f_c02347{word-spacing:13.465600pt;}
.ws32_c02347{word-spacing:16.486400pt;}
.ws31_c02347{word-spacing:16.563200pt;}
.ws33_c02347{word-spacing:16.640000pt;}
.ws1f_c02347{word-spacing:18.713600pt;}
.ws21_c02347{word-spacing:18.764800pt;}
.ws20_c02347{word-spacing:18.803200pt;}
.ws19_c02347{word-spacing:20.128000pt;}
.ws18_c02347{word-spacing:20.166400pt;}
.ws38_c02347{word-spacing:21.881600pt;}
.ws39_c02347{word-spacing:22.067200pt;}
.ws1c_c02347{word-spacing:22.988800pt;}
.ws1a_c02347{word-spacing:23.001600pt;}
.ws1b_c02347{word-spacing:23.014400pt;}
.ws37_c02347{word-spacing:27.750400pt;}
.ws36_c02347{word-spacing:27.814400pt;}
.ws34_c02347{word-spacing:29.036800pt;}
.ws35_c02347{word-spacing:29.062400pt;}
.ws30_c02347{word-spacing:32.294400pt;}
.ws2f_c02347{word-spacing:32.332800pt;}
._0_c02347{margin-left:-13.440000pt;}
._2_c02347{margin-left:-5.209600pt;}
._1_c02347{margin-left:-0.908800pt;}
._3_c02347{width:3.520000pt;}
.fs3_c02347{font-size:21.440000pt;}
.fs2_c02347{font-size:42.560000pt;}
.fs1_c02347{font-size:58.560000pt;}
.fs0_c02347{font-size:64.000000pt;}
.y0_c02347{bottom:0.000000pt;}
.y3_c02347{bottom:51.308395pt;}
.y2_c02347{bottom:69.227755pt;}
.y31_c02347{bottom:113.627067pt;}
.y30_c02347{bottom:122.827067pt;}
.y2f_c02347{bottom:132.027067pt;}
.y2e_c02347{bottom:141.227067pt;}
.y2d_c02347{bottom:150.427067pt;}
.y2c_c02347{bottom:159.627067pt;}
.y2b_c02347{bottom:168.827067pt;}
.y2a_c02347{bottom:178.027200pt;}
.y29_c02347{bottom:187.227067pt;}
.y28_c02347{bottom:196.427067pt;}
.y27_c02347{bottom:205.627067pt;}
.y26_c02347{bottom:214.827067pt;}
.y25_c02347{bottom:224.027067pt;}
.y24_c02347{bottom:233.227067pt;}
.y23_c02347{bottom:242.347067pt;}
.y22_c02347{bottom:251.547067pt;}
.y21_c02347{bottom:260.747067pt;}
.y20_c02347{bottom:278.427067pt;}
.y1f_c02347{bottom:306.027067pt;}
.y1e_c02347{bottom:333.627200pt;}
.y1d_c02347{bottom:361.227067pt;}
.y1c_c02347{bottom:388.827200pt;}
.y1b_c02347{bottom:416.427067pt;}
.y1a_c02347{bottom:444.027200pt;}
.y19_c02347{bottom:471.627067pt;}
.y18_c02347{bottom:499.227067pt;}
.y17_c02347{bottom:526.827067pt;}
.y16_c02347{bottom:554.427067pt;}
.y15_c02347{bottom:582.027067pt;}
.y14_c02347{bottom:609.627067pt;}
.y13_c02347{bottom:633.147067pt;}
.y12_c02347{bottom:655.627067pt;}
.y11_c02347{bottom:683.227067pt;}
.y10_c02347{bottom:710.827067pt;}
.yf_c02347{bottom:738.427067pt;}
.ye_c02347{bottom:766.027067pt;}
.yd_c02347{bottom:793.627067pt;}
.yc_c02347{bottom:821.227067pt;}
.yb_c02347{bottom:848.827067pt;}
.ya_c02347{bottom:876.427067pt;}
.y9_c02347{bottom:904.027067pt;}
.y8_c02347{bottom:931.627067pt;}
.y7_c02347{bottom:955.147067pt;}
.y6_c02347{bottom:971.067067pt;}
.y5_c02347{bottom:992.267067pt;}
.y4_c02347{bottom:1013.227067pt;}
.y1_c02347{bottom:1060.587067pt;}
.h6_c02347{height:21.042187pt;}
.h3_c02347{height:39.030469pt;}
.h5_c02347{height:41.770312pt;}
.h2_c02347{height:48.294844pt;}
.h4_c02347{height:62.812500pt;}
.h1_c02347{height:64.500000pt;}
.h0_c02347{height:1122.666667pt;}
.w1_c02347{width:793.333333pt;}
.w0_c02347{width:793.626667pt;}
.x0_c02347{left:0.000000pt;}
.x1_c02347{left:113.440000pt;}
.x3_c02347{left:120.560000pt;}
.x4_c02347{left:132.400000pt;}
.x2_c02347{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_738b48c482ad1b16919c23a2.woff2')format("woff");}.ff1_c02348{font-family:ff1_c02348;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02348;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02348{font-family:ff2_c02348;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02348;src:url('chunks/assets/font_0ed9eff85f68f543f127661a.woff2')format("woff");}.ff3_c02348{font-family:ff3_c02348;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02348;src:url('chunks/assets/font_cb78a45319add76fa2d1c39f.woff2')format("woff");}.ff4_c02348{font-family:ff4_c02348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02348;src:url('chunks/assets/font_5223a18f9e006e5e89450ead.woff2')format("woff");}.ff5_c02348{font-family:ff5_c02348;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_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);}
.v2_c02348{vertical-align:-79.197144px;}
.v1_c02348{vertical-align:-78.120000px;}
.v0_c02348{vertical-align:0.000000px;}
.ls13_c02348{letter-spacing:-0.050400px;}
.ls12_c02348{letter-spacing:-0.021600px;}
.ls14_c02348{letter-spacing:-0.007200px;}
.ls11_c02348{letter-spacing:0.000000px;}
.ls0_c02348{letter-spacing:0.007200px;}
.ls1_c02348{letter-spacing:0.014400px;}
.ls7_c02348{letter-spacing:0.019764px;}
.lsc_c02348{letter-spacing:0.021600px;}
.lsa_c02348{letter-spacing:0.026352px;}
.ls4_c02348{letter-spacing:0.028800px;}
.lsf_c02348{letter-spacing:0.032940px;}
.ls9_c02348{letter-spacing:0.039528px;}
.ls3_c02348{letter-spacing:0.043200px;}
.ls6_c02348{letter-spacing:0.046116px;}
.ls5_c02348{letter-spacing:0.052704px;}
.lsd_c02348{letter-spacing:0.057600px;}
.lse_c02348{letter-spacing:0.059292px;}
.ls8_c02348{letter-spacing:0.072468px;}
.ls10_c02348{letter-spacing:0.092232px;}
.ls15_c02348{letter-spacing:0.158400px;}
.lsb_c02348{letter-spacing:20.070000px;}
.ls2_c02348{letter-spacing:73.350000px;}
.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;}
}
.ws1_c02348{word-spacing:-17.992800px;}
.ws18_c02348{word-spacing:-0.158400px;}
.ws0_c02348{word-spacing:-0.158112px;}
.ws21_c02348{word-spacing:-0.136800px;}
.ws3_c02348{word-spacing:-0.064800px;}
.ws16_c02348{word-spacing:-0.036000px;}
.ws2_c02348{word-spacing:-0.007200px;}
.ws4_c02348{word-spacing:0.000000px;}
.ws1d_c02348{word-spacing:0.039528px;}
.ws1e_c02348{word-spacing:0.059292px;}
.ws10_c02348{word-spacing:0.065880px;}
.ws15_c02348{word-spacing:1.173600px;}
.ws14_c02348{word-spacing:1.425600px;}
.wse_c02348{word-spacing:3.979152px;}
.wsf_c02348{word-spacing:4.012092px;}
.ws1b_c02348{word-spacing:6.153192px;}
.ws1c_c02348{word-spacing:6.192720px;}
.ws20_c02348{word-spacing:8.546400px;}
.ws1f_c02348{word-spacing:8.582400px;}
.ws25_c02348{word-spacing:9.750240px;}
.ws24_c02348{word-spacing:9.763416px;}
.ws8_c02348{word-spacing:10.036800px;}
.ws6_c02348{word-spacing:11.757600px;}
.ws5_c02348{word-spacing:11.865600px;}
.ws7_c02348{word-spacing:11.930400px;}
.wsc_c02348{word-spacing:13.749156px;}
.ws22_c02348{word-spacing:14.776884px;}
.ws23_c02348{word-spacing:14.816412px;}
.wsb_c02348{word-spacing:16.957512px;}
.ws27_c02348{word-spacing:20.198808px;}
.ws26_c02348{word-spacing:20.218572px;}
.ws9_c02348{word-spacing:23.652000px;}
.wsa_c02348{word-spacing:23.731200px;}
.ws11_c02348{word-spacing:25.200000px;}
.ws13_c02348{word-spacing:25.387200px;}
.ws12_c02348{word-spacing:25.416000px;}
.wsd_c02348{word-spacing:25.594380px;}
.ws17_c02348{word-spacing:32.371200px;}
.ws19_c02348{word-spacing:41.431932px;}
.ws1a_c02348{word-spacing:41.464872px;}
._0_c02348{margin-left:-15.120000px;}
._1_c02348{margin-left:-1.152000px;}
._2_c02348{width:1.172664px;}
.fc0_c02348{color:rgb(0,0,0);}
.fs4_c02348{font-size:18.000000px;}
.fs3_c02348{font-size:24.120000px;}
.fs2_c02348{font-size:47.880000px;}
.fs1_c02348{font-size:65.880000px;}
.fs0_c02348{font-size:72.000000px;}
.y0_c02348{bottom:0.000000px;}
.y3_c02348{bottom:57.721944px;}
.y2_c02348{bottom:77.881224px;}
.y30_c02348{bottom:142.050450px;}
.y2f_c02348{bottom:165.900450px;}
.y2e_c02348{bottom:189.660450px;}
.y2d_c02348{bottom:213.510450px;}
.y2c_c02348{bottom:237.270450px;}
.y2b_c02348{bottom:261.120450px;}
.y2a_c02348{bottom:284.880450px;}
.y29_c02348{bottom:308.730450px;}
.y28_c02348{bottom:332.490450px;}
.y27_c02348{bottom:353.101395px;}
.y26_c02348{bottom:372.091305px;}
.y25_c02348{bottom:390.990630px;}
.y24_c02348{bottom:409.980540px;}
.y23_c02348{bottom:428.970450px;}
.y22_c02348{bottom:447.870600px;}
.y21_c02348{bottom:466.410600px;}
.y20_c02348{bottom:516.990162px;}
.y1f_c02348{bottom:530.760450px;}
.y1e_c02348{bottom:545.431215px;}
.y1d_c02348{bottom:564.421125px;}
.y1c_c02348{bottom:583.320450px;}
.y1b_c02348{bottom:613.020450px;}
.y1a_c02348{bottom:644.070450px;}
.y19_c02348{bottom:670.530450px;}
.y18_c02348{bottom:686.280450px;}
.y17_c02348{bottom:698.880450px;}
.y16_c02348{bottom:722.640450px;}
.y15_c02348{bottom:746.490450px;}
.y14_c02348{bottom:789.869736px;}
.y13_c02348{bottom:803.640024px;}
.y12_c02348{bottom:817.410312px;}
.y11_c02348{bottom:831.180600px;}
.y10_c02348{bottom:845.850810px;}
.yf_c02348{bottom:864.840720px;}
.ye_c02348{bottom:883.830630px;}
.yd_c02348{bottom:902.820540px;}
.yc_c02348{bottom:921.810450px;}
.yb_c02348{bottom:941.970450px;}
.ya_c02348{bottom:961.770450px;}
.y9_c02348{bottom:992.820450px;}
.y8_c02348{bottom:1023.870450px;}
.y7_c02348{bottom:1074.450450px;}
.y6_c02348{bottom:1092.450450px;}
.y5_c02348{bottom:1116.300450px;}
.y4_c02348{bottom:1139.880450px;}
.y1_c02348{bottom:1193.160450px;}
.h8_c02348{height:17.666016px;}
.h6_c02348{height:23.672461px;}
.h3_c02348{height:43.909277px;}
.h5_c02348{height:46.991602px;}
.h2_c02348{height:54.331699px;}
.h7_c02348{height:64.657617px;}
.h4_c02348{height:70.664062px;}
.h1_c02348{height:72.562500px;}
.h0_c02348{height:1263.000000px;}
.w1_c02348{width:892.500000px;}
.w0_c02348{width:892.830000px;}
.x0_c02348{left:0.000000px;}
.x1_c02348{left:127.620000px;}
.x3_c02348{left:135.630000px;}
.x4_c02348{left:148.950000px;}
.x6_c02348{left:170.188641px;}
.x5_c02348{left:191.430000px;}
.x2_c02348{left:438.119868px;}
@media print{
.v2_c02348{vertical-align:-70.397461pt;}
.v1_c02348{vertical-align:-69.440000pt;}
.v0_c02348{vertical-align:0.000000pt;}
.ls13_c02348{letter-spacing:-0.044800pt;}
.ls12_c02348{letter-spacing:-0.019200pt;}
.ls14_c02348{letter-spacing:-0.006400pt;}
.ls11_c02348{letter-spacing:0.000000pt;}
.ls0_c02348{letter-spacing:0.006400pt;}
.ls1_c02348{letter-spacing:0.012800pt;}
.ls7_c02348{letter-spacing:0.017568pt;}
.lsc_c02348{letter-spacing:0.019200pt;}
.lsa_c02348{letter-spacing:0.023424pt;}
.ls4_c02348{letter-spacing:0.025600pt;}
.lsf_c02348{letter-spacing:0.029280pt;}
.ls9_c02348{letter-spacing:0.035136pt;}
.ls3_c02348{letter-spacing:0.038400pt;}
.ls6_c02348{letter-spacing:0.040992pt;}
.ls5_c02348{letter-spacing:0.046848pt;}
.lsd_c02348{letter-spacing:0.051200pt;}
.lse_c02348{letter-spacing:0.052704pt;}
.ls8_c02348{letter-spacing:0.064416pt;}
.ls10_c02348{letter-spacing:0.081984pt;}
.ls15_c02348{letter-spacing:0.140800pt;}
.lsb_c02348{letter-spacing:17.840000pt;}
.ls2_c02348{letter-spacing:65.200000pt;}
.ws1_c02348{word-spacing:-15.993600pt;}
.ws18_c02348{word-spacing:-0.140800pt;}
.ws0_c02348{word-spacing:-0.140544pt;}
.ws21_c02348{word-spacing:-0.121600pt;}
.ws3_c02348{word-spacing:-0.057600pt;}
.ws16_c02348{word-spacing:-0.032000pt;}
.ws2_c02348{word-spacing:-0.006400pt;}
.ws4_c02348{word-spacing:0.000000pt;}
.ws1d_c02348{word-spacing:0.035136pt;}
.ws1e_c02348{word-spacing:0.052704pt;}
.ws10_c02348{word-spacing:0.058560pt;}
.ws15_c02348{word-spacing:1.043200pt;}
.ws14_c02348{word-spacing:1.267200pt;}
.wse_c02348{word-spacing:3.537024pt;}
.wsf_c02348{word-spacing:3.566304pt;}
.ws1b_c02348{word-spacing:5.469504pt;}
.ws1c_c02348{word-spacing:5.504640pt;}
.ws20_c02348{word-spacing:7.596800pt;}
.ws1f_c02348{word-spacing:7.628800pt;}
.ws25_c02348{word-spacing:8.666880pt;}
.ws24_c02348{word-spacing:8.678592pt;}
.ws8_c02348{word-spacing:8.921600pt;}
.ws6_c02348{word-spacing:10.451200pt;}
.ws5_c02348{word-spacing:10.547200pt;}
.ws7_c02348{word-spacing:10.604800pt;}
.wsc_c02348{word-spacing:12.221472pt;}
.ws22_c02348{word-spacing:13.135008pt;}
.ws23_c02348{word-spacing:13.170144pt;}
.wsb_c02348{word-spacing:15.073344pt;}
.ws27_c02348{word-spacing:17.954496pt;}
.ws26_c02348{word-spacing:17.972064pt;}
.ws9_c02348{word-spacing:21.024000pt;}
.wsa_c02348{word-spacing:21.094400pt;}
.ws11_c02348{word-spacing:22.400000pt;}
.ws13_c02348{word-spacing:22.566400pt;}
.ws12_c02348{word-spacing:22.592000pt;}
.wsd_c02348{word-spacing:22.750560pt;}
.ws17_c02348{word-spacing:28.774400pt;}
.ws19_c02348{word-spacing:36.828384pt;}
.ws1a_c02348{word-spacing:36.857664pt;}
._0_c02348{margin-left:-13.440000pt;}
._1_c02348{margin-left:-1.024000pt;}
._2_c02348{width:1.042368pt;}
.fs4_c02348{font-size:16.000000pt;}
.fs3_c02348{font-size:21.440000pt;}
.fs2_c02348{font-size:42.560000pt;}
.fs1_c02348{font-size:58.560000pt;}
.fs0_c02348{font-size:64.000000pt;}
.y0_c02348{bottom:0.000000pt;}
.y3_c02348{bottom:51.308395pt;}
.y2_c02348{bottom:69.227755pt;}
.y30_c02348{bottom:126.267067pt;}
.y2f_c02348{bottom:147.467067pt;}
.y2e_c02348{bottom:168.587067pt;}
.y2d_c02348{bottom:189.787067pt;}
.y2c_c02348{bottom:210.907067pt;}
.y2b_c02348{bottom:232.107067pt;}
.y2a_c02348{bottom:253.227067pt;}
.y29_c02348{bottom:274.427067pt;}
.y28_c02348{bottom:295.547067pt;}
.y27_c02348{bottom:313.867907pt;}
.y26_c02348{bottom:330.747827pt;}
.y25_c02348{bottom:347.547227pt;}
.y24_c02348{bottom:364.427147pt;}
.y23_c02348{bottom:381.307067pt;}
.y22_c02348{bottom:398.107200pt;}
.y21_c02348{bottom:414.587200pt;}
.y20_c02348{bottom:459.546811pt;}
.y1f_c02348{bottom:471.787067pt;}
.y1e_c02348{bottom:484.827747pt;}
.y1d_c02348{bottom:501.707667pt;}
.y1c_c02348{bottom:518.507067pt;}
.y1b_c02348{bottom:544.907067pt;}
.y1a_c02348{bottom:572.507067pt;}
.y19_c02348{bottom:596.027067pt;}
.y18_c02348{bottom:610.027067pt;}
.y17_c02348{bottom:621.227067pt;}
.y16_c02348{bottom:642.347067pt;}
.y15_c02348{bottom:663.547067pt;}
.y14_c02348{bottom:702.106432pt;}
.y13_c02348{bottom:714.346688pt;}
.y12_c02348{bottom:726.586944pt;}
.y11_c02348{bottom:738.827200pt;}
.y10_c02348{bottom:751.867387pt;}
.yf_c02348{bottom:768.747307pt;}
.ye_c02348{bottom:785.627227pt;}
.yd_c02348{bottom:802.507147pt;}
.yc_c02348{bottom:819.387067pt;}
.yb_c02348{bottom:837.307067pt;}
.ya_c02348{bottom:854.907067pt;}
.y9_c02348{bottom:882.507067pt;}
.y8_c02348{bottom:910.107067pt;}
.y7_c02348{bottom:955.067067pt;}
.y6_c02348{bottom:971.067067pt;}
.y5_c02348{bottom:992.267067pt;}
.y4_c02348{bottom:1013.227067pt;}
.y1_c02348{bottom:1060.587067pt;}
.h8_c02348{height:15.703125pt;}
.h6_c02348{height:21.042187pt;}
.h3_c02348{height:39.030469pt;}
.h5_c02348{height:41.770312pt;}
.h2_c02348{height:48.294844pt;}
.h7_c02348{height:57.473437pt;}
.h4_c02348{height:62.812500pt;}
.h1_c02348{height:64.500000pt;}
.h0_c02348{height:1122.666667pt;}
.w1_c02348{width:793.333333pt;}
.w0_c02348{width:793.626667pt;}
.x0_c02348{left:0.000000pt;}
.x1_c02348{left:113.440000pt;}
.x3_c02348{left:120.560000pt;}
.x4_c02348{left:132.400000pt;}
.x6_c02348{left:151.278792pt;}
.x5_c02348{left:170.160000pt;}
.x2_c02348{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6bfb5ee7ab3c576d78eb0ec.woff2')format("woff");}.ff1_c02349{font-family:ff1_c02349;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02349;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02349{font-family:ff2_c02349;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02349;src:url('chunks/assets/font_ee2dfc3a7e7904fe5850c428.woff2')format("woff");}.ff3_c02349{font-family:ff3_c02349;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02349;src:url('chunks/assets/font_f21e61777f158000afaf419c.woff2')format("woff");}.ff4_c02349{font-family:ff4_c02349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02349{vertical-align:-86.040000px;}
.v2_c02349{vertical-align:-83.880000px;}
.v3_c02349{vertical-align:-78.120000px;}
.v4_c02349{vertical-align:-72.720000px;}
.v0_c02349{vertical-align:0.000000px;}
.ls1f_c02349{letter-spacing:-0.057600px;}
.ls20_c02349{letter-spacing:-0.052668px;}
.ls1d_c02349{letter-spacing:-0.043200px;}
.ls1e_c02349{letter-spacing:-0.028800px;}
.ls1c_c02349{letter-spacing:-0.014400px;}
.ls1b_c02349{letter-spacing:-0.007200px;}
.ls1a_c02349{letter-spacing:0.000000px;}
.lse_c02349{letter-spacing:0.006588px;}
.ls0_c02349{letter-spacing:0.007200px;}
.ls15_c02349{letter-spacing:0.013176px;}
.ls8_c02349{letter-spacing:0.014400px;}
.lsd_c02349{letter-spacing:0.019764px;}
.ls11_c02349{letter-spacing:0.021600px;}
.ls16_c02349{letter-spacing:0.026352px;}
.ls1_c02349{letter-spacing:0.028800px;}
.ls13_c02349{letter-spacing:0.032940px;}
.ls10_c02349{letter-spacing:0.036000px;}
.lsa_c02349{letter-spacing:0.039528px;}
.ls7_c02349{letter-spacing:0.043200px;}
.ls12_c02349{letter-spacing:0.046116px;}
.ls6_c02349{letter-spacing:0.050400px;}
.lsb_c02349{letter-spacing:0.052704px;}
.ls3_c02349{letter-spacing:0.057600px;}
.ls17_c02349{letter-spacing:0.059292px;}
.ls19_c02349{letter-spacing:0.065880px;}
.ls14_c02349{letter-spacing:0.072468px;}
.lsc_c02349{letter-spacing:0.079056px;}
.ls9_c02349{letter-spacing:0.085644px;}
.ls18_c02349{letter-spacing:0.092232px;}
.ls5_c02349{letter-spacing:7.920000px;}
.ls4_c02349{letter-spacing:14.040000px;}
.ls2_c02349{letter-spacing:21.870000px;}
.lsf_c02349{letter-spacing:73.350000px;}
.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;}
}
.ws10_c02349{word-spacing:-0.158400px;}
.ws0_c02349{word-spacing:-0.158112px;}
.ws2_c02349{word-spacing:-0.064800px;}
.ws8_c02349{word-spacing:-0.057600px;}
.ws6_c02349{word-spacing:-0.043200px;}
.ws4_c02349{word-spacing:-0.028800px;}
.ws1d_c02349{word-spacing:-0.021600px;}
.ws1_c02349{word-spacing:-0.007200px;}
.ws3_c02349{word-spacing:0.000000px;}
.ws5_c02349{word-spacing:0.007200px;}
.ws16_c02349{word-spacing:0.013176px;}
.ws7_c02349{word-spacing:0.014400px;}
.ws27_c02349{word-spacing:0.032940px;}
.ws15_c02349{word-spacing:0.039528px;}
.ws38_c02349{word-spacing:0.046116px;}
.ws37_c02349{word-spacing:0.065880px;}
.ws2d_c02349{word-spacing:0.408456px;}
.ws22_c02349{word-spacing:1.495476px;}
.ws17_c02349{word-spacing:1.508652px;}
.ws2c_c02349{word-spacing:1.515240px;}
.ws18_c02349{word-spacing:1.521828px;}
.ws1a_c02349{word-spacing:2.786400px;}
.ws19_c02349{word-spacing:2.865600px;}
.ws1e_c02349{word-spacing:3.643164px;}
.ws1f_c02349{word-spacing:3.656340px;}
.ws26_c02349{word-spacing:5.092524px;}
.ws2b_c02349{word-spacing:5.428512px;}
.ws2a_c02349{word-spacing:5.441688px;}
.ws12_c02349{word-spacing:6.393600px;}
.ws11_c02349{word-spacing:6.465600px;}
.wsb_c02349{word-spacing:6.508800px;}
.wsc_c02349{word-spacing:6.537600px;}
.ws20_c02349{word-spacing:7.220448px;}
.ws21_c02349{word-spacing:7.240212px;}
.wse_c02349{word-spacing:7.869600px;}
.wsd_c02349{word-spacing:7.920000px;}
.wsf_c02349{word-spacing:7.963200px;}
.ws13_c02349{word-spacing:8.281116px;}
.ws14_c02349{word-spacing:8.327232px;}
.ws29_c02349{word-spacing:8.656632px;}
.ws28_c02349{word-spacing:8.702748px;}
.ws25_c02349{word-spacing:9.374724px;}
.ws24_c02349{word-spacing:9.427428px;}
.ws36_c02349{word-spacing:9.737064px;}
.ws35_c02349{word-spacing:9.756828px;}
.ws23_c02349{word-spacing:9.796356px;}
.ws34_c02349{word-spacing:10.837260px;}
.ws9_c02349{word-spacing:11.066400px;}
.wsa_c02349{word-spacing:11.138400px;}
.ws1b_c02349{word-spacing:12.852000px;}
.ws1c_c02349{word-spacing:12.873600px;}
.ws2f_c02349{word-spacing:18.360756px;}
.ws2e_c02349{word-spacing:18.380520px;}
.ws32_c02349{word-spacing:20.923488px;}
.ws33_c02349{word-spacing:20.943252px;}
.ws31_c02349{word-spacing:22.346496px;}
.ws30_c02349{word-spacing:22.366260px;}
._0_c02349{margin-left:-15.120000px;}
._3_c02349{margin-left:-6.567408px;}
._1_c02349{margin-left:-1.137600px;}
._2_c02349{width:1.144800px;}
.fc0_c02349{color:rgb(0,0,0);}
.fs3_c02349{font-size:24.120000px;}
.fs2_c02349{font-size:47.880000px;}
.fs1_c02349{font-size:65.880000px;}
.fs0_c02349{font-size:72.000000px;}
.y0_c02349{bottom:0.000000px;}
.y3_c02349{bottom:57.721944px;}
.y2_c02349{bottom:77.881224px;}
.y2e_c02349{bottom:111.361725px;}
.y2d_c02349{bottom:130.351635px;}
.y2c_c02349{bottom:149.250960px;}
.y2b_c02349{bottom:168.240870px;}
.y2a_c02349{bottom:187.230780px;}
.y29_c02349{bottom:206.220690px;}
.y28_c02349{bottom:243.300450px;}
.y27_c02349{bottom:257.971305px;}
.y26_c02349{bottom:276.961215px;}
.y25_c02349{bottom:295.860540px;}
.y24_c02349{bottom:333.030450px;}
.y23_c02349{bottom:347.611725px;}
.y22_c02349{bottom:366.601635px;}
.y21_c02349{bottom:385.591545px;}
.y20_c02349{bottom:404.581455px;}
.y1f_c02349{bottom:423.571365px;}
.y1e_c02349{bottom:442.561275px;}
.y1d_c02349{bottom:461.460600px;}
.y1c_c02349{bottom:481.620600px;}
.y1b_c02349{bottom:501.510450px;}
.y1a_c02349{bottom:532.560450px;}
.y19_c02349{bottom:583.140450px;}
.y18_c02349{bottom:600.600450px;}
.y17_c02349{bottom:622.380450px;}
.y16_c02349{bottom:644.250450px;}
.y15_c02349{bottom:666.030450px;}
.y14_c02349{bottom:687.900450px;}
.y13_c02349{bottom:710.220450px;}
.y12_c02349{bottom:734.070450px;}
.y11_c02349{bottom:757.830450px;}
.y10_c02349{bottom:781.680450px;}
.yf_c02349{bottom:805.440450px;}
.ye_c02349{bottom:829.110600px;}
.yd_c02349{bottom:873.840450px;}
.yc_c02349{bottom:904.710450px;}
.yb_c02349{bottom:935.760450px;}
.ya_c02349{bottom:966.810450px;}
.y9_c02349{bottom:997.860450px;}
.y8_c02349{bottom:1028.910450px;}
.y7_c02349{bottom:1052.580450px;}
.y6_c02349{bottom:1097.940450px;}
.y5_c02349{bottom:1116.120450px;}
.y4_c02349{bottom:1139.880450px;}
.y1_c02349{bottom:1193.160450px;}
.h8_c02349{height:23.672461px;}
.h3_c02349{height:43.909277px;}
.h7_c02349{height:46.991602px;}
.h4_c02349{height:48.254063px;}
.h2_c02349{height:54.331699px;}
.h6_c02349{height:64.657617px;}
.h5_c02349{height:70.664062px;}
.h1_c02349{height:72.562500px;}
.h0_c02349{height:1263.000000px;}
.w1_c02349{width:892.500000px;}
.w0_c02349{width:892.830000px;}
.x0_c02349{left:0.000000px;}
.x1_c02349{left:127.620000px;}
.x6_c02349{left:135.630000px;}
.x4_c02349{left:138.150000px;}
.x8_c02349{left:148.950000px;}
.x7_c02349{left:159.480000px;}
.xa_c02349{left:170.188641px;}
.x5_c02349{left:180.720000px;}
.x9_c02349{left:191.430000px;}
.x3_c02349{left:265.590000px;}
.x2_c02349{left:438.119868px;}
@media print{
.v1_c02349{vertical-align:-76.480000pt;}
.v2_c02349{vertical-align:-74.560000pt;}
.v3_c02349{vertical-align:-69.440000pt;}
.v4_c02349{vertical-align:-64.640000pt;}
.v0_c02349{vertical-align:0.000000pt;}
.ls1f_c02349{letter-spacing:-0.051200pt;}
.ls20_c02349{letter-spacing:-0.046816pt;}
.ls1d_c02349{letter-spacing:-0.038400pt;}
.ls1e_c02349{letter-spacing:-0.025600pt;}
.ls1c_c02349{letter-spacing:-0.012800pt;}
.ls1b_c02349{letter-spacing:-0.006400pt;}
.ls1a_c02349{letter-spacing:0.000000pt;}
.lse_c02349{letter-spacing:0.005856pt;}
.ls0_c02349{letter-spacing:0.006400pt;}
.ls15_c02349{letter-spacing:0.011712pt;}
.ls8_c02349{letter-spacing:0.012800pt;}
.lsd_c02349{letter-spacing:0.017568pt;}
.ls11_c02349{letter-spacing:0.019200pt;}
.ls16_c02349{letter-spacing:0.023424pt;}
.ls1_c02349{letter-spacing:0.025600pt;}
.ls13_c02349{letter-spacing:0.029280pt;}
.ls10_c02349{letter-spacing:0.032000pt;}
.lsa_c02349{letter-spacing:0.035136pt;}
.ls7_c02349{letter-spacing:0.038400pt;}
.ls12_c02349{letter-spacing:0.040992pt;}
.ls6_c02349{letter-spacing:0.044800pt;}
.lsb_c02349{letter-spacing:0.046848pt;}
.ls3_c02349{letter-spacing:0.051200pt;}
.ls17_c02349{letter-spacing:0.052704pt;}
.ls19_c02349{letter-spacing:0.058560pt;}
.ls14_c02349{letter-spacing:0.064416pt;}
.lsc_c02349{letter-spacing:0.070272pt;}
.ls9_c02349{letter-spacing:0.076128pt;}
.ls18_c02349{letter-spacing:0.081984pt;}
.ls5_c02349{letter-spacing:7.040000pt;}
.ls4_c02349{letter-spacing:12.480000pt;}
.ls2_c02349{letter-spacing:19.440000pt;}
.lsf_c02349{letter-spacing:65.200000pt;}
.ws10_c02349{word-spacing:-0.140800pt;}
.ws0_c02349{word-spacing:-0.140544pt;}
.ws2_c02349{word-spacing:-0.057600pt;}
.ws8_c02349{word-spacing:-0.051200pt;}
.ws6_c02349{word-spacing:-0.038400pt;}
.ws4_c02349{word-spacing:-0.025600pt;}
.ws1d_c02349{word-spacing:-0.019200pt;}
.ws1_c02349{word-spacing:-0.006400pt;}
.ws3_c02349{word-spacing:0.000000pt;}
.ws5_c02349{word-spacing:0.006400pt;}
.ws16_c02349{word-spacing:0.011712pt;}
.ws7_c02349{word-spacing:0.012800pt;}
.ws27_c02349{word-spacing:0.029280pt;}
.ws15_c02349{word-spacing:0.035136pt;}
.ws38_c02349{word-spacing:0.040992pt;}
.ws37_c02349{word-spacing:0.058560pt;}
.ws2d_c02349{word-spacing:0.363072pt;}
.ws22_c02349{word-spacing:1.329312pt;}
.ws17_c02349{word-spacing:1.341024pt;}
.ws2c_c02349{word-spacing:1.346880pt;}
.ws18_c02349{word-spacing:1.352736pt;}
.ws1a_c02349{word-spacing:2.476800pt;}
.ws19_c02349{word-spacing:2.547200pt;}
.ws1e_c02349{word-spacing:3.238368pt;}
.ws1f_c02349{word-spacing:3.250080pt;}
.ws26_c02349{word-spacing:4.526688pt;}
.ws2b_c02349{word-spacing:4.825344pt;}
.ws2a_c02349{word-spacing:4.837056pt;}
.ws12_c02349{word-spacing:5.683200pt;}
.ws11_c02349{word-spacing:5.747200pt;}
.wsb_c02349{word-spacing:5.785600pt;}
.wsc_c02349{word-spacing:5.811200pt;}
.ws20_c02349{word-spacing:6.418176pt;}
.ws21_c02349{word-spacing:6.435744pt;}
.wse_c02349{word-spacing:6.995200pt;}
.wsd_c02349{word-spacing:7.040000pt;}
.wsf_c02349{word-spacing:7.078400pt;}
.ws13_c02349{word-spacing:7.360992pt;}
.ws14_c02349{word-spacing:7.401984pt;}
.ws29_c02349{word-spacing:7.694784pt;}
.ws28_c02349{word-spacing:7.735776pt;}
.ws25_c02349{word-spacing:8.333088pt;}
.ws24_c02349{word-spacing:8.379936pt;}
.ws36_c02349{word-spacing:8.655168pt;}
.ws35_c02349{word-spacing:8.672736pt;}
.ws23_c02349{word-spacing:8.707872pt;}
.ws34_c02349{word-spacing:9.633120pt;}
.ws9_c02349{word-spacing:9.836800pt;}
.wsa_c02349{word-spacing:9.900800pt;}
.ws1b_c02349{word-spacing:11.424000pt;}
.ws1c_c02349{word-spacing:11.443200pt;}
.ws2f_c02349{word-spacing:16.320672pt;}
.ws2e_c02349{word-spacing:16.338240pt;}
.ws32_c02349{word-spacing:18.598656pt;}
.ws33_c02349{word-spacing:18.616224pt;}
.ws31_c02349{word-spacing:19.863552pt;}
.ws30_c02349{word-spacing:19.881120pt;}
._0_c02349{margin-left:-13.440000pt;}
._3_c02349{margin-left:-5.837696pt;}
._1_c02349{margin-left:-1.011200pt;}
._2_c02349{width:1.017600pt;}
.fs3_c02349{font-size:21.440000pt;}
.fs2_c02349{font-size:42.560000pt;}
.fs1_c02349{font-size:58.560000pt;}
.fs0_c02349{font-size:64.000000pt;}
.y0_c02349{bottom:0.000000pt;}
.y3_c02349{bottom:51.308395pt;}
.y2_c02349{bottom:69.227755pt;}
.y2e_c02349{bottom:98.988200pt;}
.y2d_c02349{bottom:115.868120pt;}
.y2c_c02349{bottom:132.667520pt;}
.y2b_c02349{bottom:149.547440pt;}
.y2a_c02349{bottom:166.427360pt;}
.y29_c02349{bottom:183.307280pt;}
.y28_c02349{bottom:216.267067pt;}
.y27_c02349{bottom:229.307827pt;}
.y26_c02349{bottom:246.187747pt;}
.y25_c02349{bottom:262.987147pt;}
.y24_c02349{bottom:296.027067pt;}
.y23_c02349{bottom:308.988200pt;}
.y22_c02349{bottom:325.868120pt;}
.y21_c02349{bottom:342.748040pt;}
.y20_c02349{bottom:359.627960pt;}
.y1f_c02349{bottom:376.507880pt;}
.y1e_c02349{bottom:393.387800pt;}
.y1d_c02349{bottom:410.187200pt;}
.y1c_c02349{bottom:428.107200pt;}
.y1b_c02349{bottom:445.787067pt;}
.y1a_c02349{bottom:473.387067pt;}
.y19_c02349{bottom:518.347067pt;}
.y18_c02349{bottom:533.867067pt;}
.y17_c02349{bottom:553.227067pt;}
.y16_c02349{bottom:572.667067pt;}
.y15_c02349{bottom:592.027067pt;}
.y14_c02349{bottom:611.467067pt;}
.y13_c02349{bottom:631.307067pt;}
.y12_c02349{bottom:652.507067pt;}
.y11_c02349{bottom:673.627067pt;}
.y10_c02349{bottom:694.827067pt;}
.yf_c02349{bottom:715.947067pt;}
.ye_c02349{bottom:736.987200pt;}
.yd_c02349{bottom:776.747067pt;}
.yc_c02349{bottom:804.187067pt;}
.yb_c02349{bottom:831.787067pt;}
.ya_c02349{bottom:859.387067pt;}
.y9_c02349{bottom:886.987067pt;}
.y8_c02349{bottom:914.587067pt;}
.y7_c02349{bottom:935.627067pt;}
.y6_c02349{bottom:975.947067pt;}
.y5_c02349{bottom:992.107067pt;}
.y4_c02349{bottom:1013.227067pt;}
.y1_c02349{bottom:1060.587067pt;}
.h8_c02349{height:21.042187pt;}
.h3_c02349{height:39.030469pt;}
.h7_c02349{height:41.770312pt;}
.h4_c02349{height:42.892500pt;}
.h2_c02349{height:48.294844pt;}
.h6_c02349{height:57.473437pt;}
.h5_c02349{height:62.812500pt;}
.h1_c02349{height:64.500000pt;}
.h0_c02349{height:1122.666667pt;}
.w1_c02349{width:793.333333pt;}
.w0_c02349{width:793.626667pt;}
.x0_c02349{left:0.000000pt;}
.x1_c02349{left:113.440000pt;}
.x6_c02349{left:120.560000pt;}
.x4_c02349{left:122.800000pt;}
.x8_c02349{left:132.400000pt;}
.x7_c02349{left:141.760000pt;}
.xa_c02349{left:151.278792pt;}
.x5_c02349{left:160.640000pt;}
.x9_c02349{left:170.160000pt;}
.x3_c02349{left:236.080000pt;}
.x2_c02349{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ba6adf1617e20638f8c692a.woff2')format("woff");}.ff1_c02350{font-family:ff1_c02350;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02350;src:url('chunks/assets/font_6d3e6d9c0b66f3be4b2e2f8d.woff2')format("woff");}.ff2_c02350{font-family:ff2_c02350;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02350;src:url('chunks/assets/font_8590878f7e04e3f4af499272.woff2')format("woff");}.ff3_c02350{font-family:ff3_c02350;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02350;src:url('chunks/assets/font_3a88021e63f5c477cd383b73.woff2')format("woff");}.ff4_c02350{font-family:ff4_c02350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02350;src:url('chunks/assets/font_9e7faaaafd122d7ba2b23107.woff2')format("woff");}.ff5_c02350{font-family:ff5_c02350;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_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);}
.v2_c02350{vertical-align:-83.520000px;}
.v1_c02350{vertical-align:-78.120000px;}
.v0_c02350{vertical-align:0.000000px;}
.ls1a_c02350{letter-spacing:-0.075600px;}
.ls1e_c02350{letter-spacing:-0.050400px;}
.ls18_c02350{letter-spacing:-0.048600px;}
.ls1c_c02350{letter-spacing:-0.043200px;}
.ls17_c02350{letter-spacing:-0.036000px;}
.ls1f_c02350{letter-spacing:-0.021600px;}
.ls1d_c02350{letter-spacing:-0.014400px;}
.ls16_c02350{letter-spacing:-0.007200px;}
.ls14_c02350{letter-spacing:0.000000px;}
.ls6_c02350{letter-spacing:0.005400px;}
.ls0_c02350{letter-spacing:0.007200px;}
.ls3_c02350{letter-spacing:0.010800px;}
.lsf_c02350{letter-spacing:0.014400px;}
.ls5_c02350{letter-spacing:0.016200px;}
.ls9_c02350{letter-spacing:0.021600px;}
.lsb_c02350{letter-spacing:0.028800px;}
.ls2_c02350{letter-spacing:0.036000px;}
.ls4_c02350{letter-spacing:0.037800px;}
.ls10_c02350{letter-spacing:0.043092px;}
.ls8_c02350{letter-spacing:0.043200px;}
.lsa_c02350{letter-spacing:0.050400px;}
.lsd_c02350{letter-spacing:0.057600px;}
.ls11_c02350{letter-spacing:0.062244px;}
.lse_c02350{letter-spacing:0.064800px;}
.ls19_c02350{letter-spacing:0.070200px;}
.ls1_c02350{letter-spacing:0.072000px;}
.ls12_c02350{letter-spacing:0.076608px;}
.ls15_c02350{letter-spacing:0.092232px;}
.ls1b_c02350{letter-spacing:0.102600px;}
.lsc_c02350{letter-spacing:14.040000px;}
.ls7_c02350{letter-spacing:73.350000px;}
.ls13_c02350{letter-spacing:152.280000px;}
.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;}
}
.ws9_c02350{word-spacing:-12.046608px;}
.ws8_c02350{word-spacing:-12.032244px;}
.ws7_c02350{word-spacing:-12.013092px;}
.ws34_c02350{word-spacing:-0.266400px;}
.ws29_c02350{word-spacing:-0.223200px;}
.ws1e_c02350{word-spacing:-0.180000px;}
.ws0_c02350{word-spacing:-0.158112px;}
.ws6_c02350{word-spacing:-0.156600px;}
.ws27_c02350{word-spacing:-0.129600px;}
.ws4_c02350{word-spacing:-0.124200px;}
.ws1_c02350{word-spacing:-0.064800px;}
.ws3_c02350{word-spacing:-0.059400px;}
.ws1b_c02350{word-spacing:-0.057600px;}
.ws30_c02350{word-spacing:-0.050400px;}
.ws28_c02350{word-spacing:-0.021600px;}
.wsa_c02350{word-spacing:-0.007200px;}
.ws2_c02350{word-spacing:-0.005400px;}
.wsb_c02350{word-spacing:0.000000px;}
.wsc_c02350{word-spacing:0.007200px;}
.ws1a_c02350{word-spacing:0.014400px;}
.ws5_c02350{word-spacing:0.021600px;}
.ws12_c02350{word-spacing:0.036000px;}
.ws17_c02350{word-spacing:1.339200px;}
.ws18_c02350{word-spacing:1.389600px;}
.ws19_c02350{word-spacing:1.483200px;}
.ws10_c02350{word-spacing:4.600800px;}
.wsf_c02350{word-spacing:4.644000px;}
.ws11_c02350{word-spacing:4.680000px;}
.ws15_c02350{word-spacing:6.724800px;}
.ws16_c02350{word-spacing:6.789600px;}
.ws23_c02350{word-spacing:9.928800px;}
.ws22_c02350{word-spacing:9.950400px;}
.ws21_c02350{word-spacing:10.051200px;}
.ws2f_c02350{word-spacing:12.067200px;}
.ws2e_c02350{word-spacing:12.218400px;}
.ws38_c02350{word-spacing:14.364000px;}
.ws37_c02350{word-spacing:14.371200px;}
.ws36_c02350{word-spacing:14.695200px;}
.ws35_c02350{word-spacing:14.724000px;}
.wsd_c02350{word-spacing:14.925600px;}
.wse_c02350{word-spacing:15.033600px;}
.ws1c_c02350{word-spacing:15.112800px;}
.ws1d_c02350{word-spacing:15.134400px;}
.ws24_c02350{word-spacing:18.655200px;}
.ws25_c02350{word-spacing:18.691200px;}
.ws26_c02350{word-spacing:18.777600px;}
.ws33_c02350{word-spacing:19.260000px;}
.ws32_c02350{word-spacing:19.317600px;}
.ws31_c02350{word-spacing:19.389600px;}
.ws20_c02350{word-spacing:22.197600px;}
.ws1f_c02350{word-spacing:22.204800px;}
.ws13_c02350{word-spacing:22.543200px;}
.ws14_c02350{word-spacing:22.593600px;}
.ws2b_c02350{word-spacing:31.269600px;}
.ws2a_c02350{word-spacing:31.370400px;}
.ws2c_c02350{word-spacing:46.922400px;}
.ws2d_c02350{word-spacing:47.145600px;}
._0_c02350{margin-left:-15.120000px;}
._1_c02350{margin-left:-1.080000px;}
._2_c02350{width:1.204200px;}
.fc0_c02350{color:rgb(0,0,0);}
.fs3_c02350{font-size:47.880000px;}
.fs2_c02350{font-size:54.000000px;}
.fs1_c02350{font-size:65.880000px;}
.fs0_c02350{font-size:72.000000px;}
.y0_c02350{bottom:0.000000px;}
.y3_c02350{bottom:57.721944px;}
.y2_c02350{bottom:77.881224px;}
.y23_c02350{bottom:207.390450px;}
.y22_c02350{bottom:238.440450px;}
.y21_c02350{bottom:290.190450px;}
.y20_c02350{bottom:313.860450px;}
.y1f_c02350{bottom:337.710600px;}
.y1e_c02350{bottom:382.260600px;}
.y1d_c02350{bottom:413.310600px;}
.y1c_c02350{bottom:444.360600px;}
.y1b_c02350{bottom:496.110600px;}
.y1a_c02350{bottom:515.640450px;}
.y19_c02350{bottom:530.580450px;}
.y18_c02350{bottom:551.190450px;}
.y17_c02350{bottom:571.980450px;}
.y16_c02350{bottom:616.530450px;}
.y15_c02350{bottom:637.230450px;}
.y14_c02350{bottom:668.280450px;}
.y13_c02350{bottom:699.330450px;}
.y12_c02350{bottom:730.380450px;}
.y11_c02350{bottom:780.870450px;}
.y10_c02350{bottom:798.960450px;}
.yf_c02350{bottom:822.720450px;}
.ye_c02350{bottom:867.270450px;}
.yd_c02350{bottom:887.970450px;}
.yc_c02350{bottom:919.020450px;}
.yb_c02350{bottom:950.070450px;}
.ya_c02350{bottom:981.120450px;}
.y9_c02350{bottom:1031.700450px;}
.y8_c02350{bottom:1048.620450px;}
.y7_c02350{bottom:1068.690450px;}
.y6_c02350{bottom:1092.450450px;}
.y5_c02350{bottom:1116.300450px;}
.y4_c02350{bottom:1139.880450px;}
.y1_c02350{bottom:1193.160450px;}
.h3_c02350{height:43.909277px;}
.h6_c02350{height:46.991602px;}
.h5_c02350{height:52.998047px;}
.h2_c02350{height:54.331699px;}
.h7_c02350{height:70.628906px;}
.h4_c02350{height:70.664062px;}
.h1_c02350{height:72.562500px;}
.h0_c02350{height:1263.000000px;}
.w1_c02350{width:892.500000px;}
.w0_c02350{width:892.830000px;}
.x0_c02350{left:0.000000px;}
.x1_c02350{left:127.620000px;}
.x3_c02350{left:135.630000px;}
.x2_c02350{left:438.119868px;}
@media print{
.v2_c02350{vertical-align:-74.240000pt;}
.v1_c02350{vertical-align:-69.440000pt;}
.v0_c02350{vertical-align:0.000000pt;}
.ls1a_c02350{letter-spacing:-0.067200pt;}
.ls1e_c02350{letter-spacing:-0.044800pt;}
.ls18_c02350{letter-spacing:-0.043200pt;}
.ls1c_c02350{letter-spacing:-0.038400pt;}
.ls17_c02350{letter-spacing:-0.032000pt;}
.ls1f_c02350{letter-spacing:-0.019200pt;}
.ls1d_c02350{letter-spacing:-0.012800pt;}
.ls16_c02350{letter-spacing:-0.006400pt;}
.ls14_c02350{letter-spacing:0.000000pt;}
.ls6_c02350{letter-spacing:0.004800pt;}
.ls0_c02350{letter-spacing:0.006400pt;}
.ls3_c02350{letter-spacing:0.009600pt;}
.lsf_c02350{letter-spacing:0.012800pt;}
.ls5_c02350{letter-spacing:0.014400pt;}
.ls9_c02350{letter-spacing:0.019200pt;}
.lsb_c02350{letter-spacing:0.025600pt;}
.ls2_c02350{letter-spacing:0.032000pt;}
.ls4_c02350{letter-spacing:0.033600pt;}
.ls10_c02350{letter-spacing:0.038304pt;}
.ls8_c02350{letter-spacing:0.038400pt;}
.lsa_c02350{letter-spacing:0.044800pt;}
.lsd_c02350{letter-spacing:0.051200pt;}
.ls11_c02350{letter-spacing:0.055328pt;}
.lse_c02350{letter-spacing:0.057600pt;}
.ls19_c02350{letter-spacing:0.062400pt;}
.ls1_c02350{letter-spacing:0.064000pt;}
.ls12_c02350{letter-spacing:0.068096pt;}
.ls15_c02350{letter-spacing:0.081984pt;}
.ls1b_c02350{letter-spacing:0.091200pt;}
.lsc_c02350{letter-spacing:12.480000pt;}
.ls7_c02350{letter-spacing:65.200000pt;}
.ls13_c02350{letter-spacing:135.360000pt;}
.ws9_c02350{word-spacing:-10.708096pt;}
.ws8_c02350{word-spacing:-10.695328pt;}
.ws7_c02350{word-spacing:-10.678304pt;}
.ws34_c02350{word-spacing:-0.236800pt;}
.ws29_c02350{word-spacing:-0.198400pt;}
.ws1e_c02350{word-spacing:-0.160000pt;}
.ws0_c02350{word-spacing:-0.140544pt;}
.ws6_c02350{word-spacing:-0.139200pt;}
.ws27_c02350{word-spacing:-0.115200pt;}
.ws4_c02350{word-spacing:-0.110400pt;}
.ws1_c02350{word-spacing:-0.057600pt;}
.ws3_c02350{word-spacing:-0.052800pt;}
.ws1b_c02350{word-spacing:-0.051200pt;}
.ws30_c02350{word-spacing:-0.044800pt;}
.ws28_c02350{word-spacing:-0.019200pt;}
.wsa_c02350{word-spacing:-0.006400pt;}
.ws2_c02350{word-spacing:-0.004800pt;}
.wsb_c02350{word-spacing:0.000000pt;}
.wsc_c02350{word-spacing:0.006400pt;}
.ws1a_c02350{word-spacing:0.012800pt;}
.ws5_c02350{word-spacing:0.019200pt;}
.ws12_c02350{word-spacing:0.032000pt;}
.ws17_c02350{word-spacing:1.190400pt;}
.ws18_c02350{word-spacing:1.235200pt;}
.ws19_c02350{word-spacing:1.318400pt;}
.ws10_c02350{word-spacing:4.089600pt;}
.wsf_c02350{word-spacing:4.128000pt;}
.ws11_c02350{word-spacing:4.160000pt;}
.ws15_c02350{word-spacing:5.977600pt;}
.ws16_c02350{word-spacing:6.035200pt;}
.ws23_c02350{word-spacing:8.825600pt;}
.ws22_c02350{word-spacing:8.844800pt;}
.ws21_c02350{word-spacing:8.934400pt;}
.ws2f_c02350{word-spacing:10.726400pt;}
.ws2e_c02350{word-spacing:10.860800pt;}
.ws38_c02350{word-spacing:12.768000pt;}
.ws37_c02350{word-spacing:12.774400pt;}
.ws36_c02350{word-spacing:13.062400pt;}
.ws35_c02350{word-spacing:13.088000pt;}
.wsd_c02350{word-spacing:13.267200pt;}
.wse_c02350{word-spacing:13.363200pt;}
.ws1c_c02350{word-spacing:13.433600pt;}
.ws1d_c02350{word-spacing:13.452800pt;}
.ws24_c02350{word-spacing:16.582400pt;}
.ws25_c02350{word-spacing:16.614400pt;}
.ws26_c02350{word-spacing:16.691200pt;}
.ws33_c02350{word-spacing:17.120000pt;}
.ws32_c02350{word-spacing:17.171200pt;}
.ws31_c02350{word-spacing:17.235200pt;}
.ws20_c02350{word-spacing:19.731200pt;}
.ws1f_c02350{word-spacing:19.737600pt;}
.ws13_c02350{word-spacing:20.038400pt;}
.ws14_c02350{word-spacing:20.083200pt;}
.ws2b_c02350{word-spacing:27.795200pt;}
.ws2a_c02350{word-spacing:27.884800pt;}
.ws2c_c02350{word-spacing:41.708800pt;}
.ws2d_c02350{word-spacing:41.907200pt;}
._0_c02350{margin-left:-13.440000pt;}
._1_c02350{margin-left:-0.960000pt;}
._2_c02350{width:1.070400pt;}
.fs3_c02350{font-size:42.560000pt;}
.fs2_c02350{font-size:48.000000pt;}
.fs1_c02350{font-size:58.560000pt;}
.fs0_c02350{font-size:64.000000pt;}
.y0_c02350{bottom:0.000000pt;}
.y3_c02350{bottom:51.308395pt;}
.y2_c02350{bottom:69.227755pt;}
.y23_c02350{bottom:184.347067pt;}
.y22_c02350{bottom:211.947067pt;}
.y21_c02350{bottom:257.947067pt;}
.y20_c02350{bottom:278.987067pt;}
.y1f_c02350{bottom:300.187200pt;}
.y1e_c02350{bottom:339.787200pt;}
.y1d_c02350{bottom:367.387200pt;}
.y1c_c02350{bottom:394.987200pt;}
.y1b_c02350{bottom:440.987200pt;}
.y1a_c02350{bottom:458.347067pt;}
.y19_c02350{bottom:471.627067pt;}
.y18_c02350{bottom:489.947067pt;}
.y17_c02350{bottom:508.427067pt;}
.y16_c02350{bottom:548.027067pt;}
.y15_c02350{bottom:566.427067pt;}
.y14_c02350{bottom:594.027067pt;}
.y13_c02350{bottom:621.627067pt;}
.y12_c02350{bottom:649.227067pt;}
.y11_c02350{bottom:694.107067pt;}
.y10_c02350{bottom:710.187067pt;}
.yf_c02350{bottom:731.307067pt;}
.ye_c02350{bottom:770.907067pt;}
.yd_c02350{bottom:789.307067pt;}
.yc_c02350{bottom:816.907067pt;}
.yb_c02350{bottom:844.507067pt;}
.ya_c02350{bottom:872.107067pt;}
.y9_c02350{bottom:917.067067pt;}
.y8_c02350{bottom:932.107067pt;}
.y7_c02350{bottom:949.947067pt;}
.y6_c02350{bottom:971.067067pt;}
.y5_c02350{bottom:992.267067pt;}
.y4_c02350{bottom:1013.227067pt;}
.y1_c02350{bottom:1060.587067pt;}
.h3_c02350{height:39.030469pt;}
.h6_c02350{height:41.770312pt;}
.h5_c02350{height:47.109375pt;}
.h2_c02350{height:48.294844pt;}
.h7_c02350{height:62.781250pt;}
.h4_c02350{height:62.812500pt;}
.h1_c02350{height:64.500000pt;}
.h0_c02350{height:1122.666667pt;}
.w1_c02350{width:793.333333pt;}
.w0_c02350{width:793.626667pt;}
.x0_c02350{left:0.000000pt;}
.x1_c02350{left:113.440000pt;}
.x3_c02350{left:120.560000pt;}
.x2_c02350{left:389.439883pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1db9664530bd08b1387c979.woff2')format("woff");}.ff1_c02351{font-family:ff1_c02351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02351;src:url('chunks/assets/font_cdadb4793d274862d7279b9a.woff2')format("woff");}.ff2_c02351{font-family:ff2_c02351;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02351{font-family:ff3_c02351;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_c02351;src:url('chunks/assets/font_fb689d9891240a5206b27bb3.woff2')format("woff");}.ff4_c02351{font-family:ff4_c02351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02351;src:url('chunks/assets/font_fe92d56bc19f424d2bc4133b.woff2')format("woff");}.ff5_c02351{font-family:ff5_c02351;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_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);}
.v1_c02351{vertical-align:-86.040000px;}
.v2_c02351{vertical-align:-83.880000px;}
.v3_c02351{vertical-align:-77.759400px;}
.v0_c02351{vertical-align:0.000000px;}
.ls14_c02351{letter-spacing:-0.360000px;}
.ls13_c02351{letter-spacing:-0.043200px;}
.ls12_c02351{letter-spacing:-0.014400px;}
.ls11_c02351{letter-spacing:-0.007200px;}
.lsf_c02351{letter-spacing:0.000000px;}
.ls6_c02351{letter-spacing:0.007200px;}
.ls2_c02351{letter-spacing:0.014400px;}
.ls3_c02351{letter-spacing:0.021600px;}
.ls4_c02351{letter-spacing:0.028800px;}
.lsd_c02351{letter-spacing:0.036000px;}
.lse_c02351{letter-spacing:0.043200px;}
.ls1_c02351{letter-spacing:0.046116px;}
.ls8_c02351{letter-spacing:0.050400px;}
.ls0_c02351{letter-spacing:0.052704px;}
.lsc_c02351{letter-spacing:0.057600px;}
.lsb_c02351{letter-spacing:0.064800px;}
.ls9_c02351{letter-spacing:0.072000px;}
.ls10_c02351{letter-spacing:0.092232px;}
.ls7_c02351{letter-spacing:14.040000px;}
.lsa_c02351{letter-spacing:73.350000px;}
.ls5_c02351{letter-spacing:123.030000px;}
.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;}
}
.ws1_c02351{word-spacing:-18.036000px;}
.ws0_c02351{word-spacing:-0.158112px;}
.ws7_c02351{word-spacing:-0.115200px;}
.wsa_c02351{word-spacing:-0.079200px;}
.ws5_c02351{word-spacing:-0.072000px;}
.wsd_c02351{word-spacing:-0.057600px;}
.ws23_c02351{word-spacing:-0.036000px;}
.ws9_c02351{word-spacing:-0.028800px;}
.ws6_c02351{word-spacing:-0.021600px;}
.wse_c02351{word-spacing:-0.007200px;}
.ws3_c02351{word-spacing:0.000000px;}
.ws4_c02351{word-spacing:0.007200px;}
.ws8_c02351{word-spacing:0.014400px;}
.ws2_c02351{word-spacing:0.039528px;}
.ws14_c02351{word-spacing:3.535200px;}
.ws18_c02351{word-spacing:6.300000px;}
.ws17_c02351{word-spacing:6.357600px;}
.ws13_c02351{word-spacing:6.408000px;}
.ws19_c02351{word-spacing:6.422400px;}
.ws11_c02351{word-spacing:6.429600px;}
.ws12_c02351{word-spacing:6.451200px;}
.ws1c_c02351{word-spacing:16.495200px;}
.ws1e_c02351{word-spacing:16.509600px;}
.ws1d_c02351{word-spacing:16.531200px;}
.wsc_c02351{word-spacing:17.625600px;}
.wsb_c02351{word-spacing:17.640000px;}
.ws1f_c02351{word-spacing:18.950400px;}
.ws20_c02351{word-spacing:19.137600px;}
.ws22_c02351{word-spacing:25.092000px;}
.ws21_c02351{word-spacing:25.135200px;}
.ws15_c02351{word-spacing:30.520800px;}
.ws16_c02351{word-spacing:30.585600px;}
.wsf_c02351{word-spacing:33.753600px;}
.ws10_c02351{word-spacing:33.811200px;}
.ws1b_c02351{word-spacing:34.408800px;}
.ws1a_c02351{word-spacing:34.452000px;}
._0_c02351{margin-left:-1.324800px;}
.fc0_c02351{color:rgb(0,0,0);}
.fs2_c02351{font-size:47.880000px;}
.fs0_c02351{font-size:65.880000px;}
.fs1_c02351{font-size:72.000000px;}
.y0_c02351{bottom:0.000000px;}
.y4_c02351{bottom:75.721107px;}
.y3_c02351{bottom:113.880450px;}
.y2d_c02351{bottom:156.088533px;}
.y2c_c02351{bottom:169.948596px;}
.y2b_c02351{bottom:183.718884px;}
.y2a_c02351{bottom:197.489172px;}
.y29_c02351{bottom:211.349235px;}
.y28_c02351{bottom:225.119523px;}
.y27_c02351{bottom:238.889811px;}
.y26_c02351{bottom:252.749874px;}
.y25_c02351{bottom:266.520162px;}
.y24_c02351{bottom:280.290450px;}
.y23_c02351{bottom:305.670450px;}
.y22_c02351{bottom:336.720450px;}
.y21_c02351{bottom:367.770450px;}
.y20_c02351{bottom:398.820450px;}
.y1f_c02351{bottom:429.870600px;}
.y1e_c02351{bottom:460.920450px;}
.y1d_c02351{bottom:491.970600px;}
.y1c_c02351{bottom:542.460450px;}
.y1b_c02351{bottom:560.550450px;}
.y1a_c02351{bottom:584.310450px;}
.y19_c02351{bottom:608.160450px;}
.y18_c02351{bottom:652.710450px;}
.y17_c02351{bottom:673.410450px;}
.y16_c02351{bottom:694.110450px;}
.y15_c02351{bottom:714.810450px;}
.y14_c02351{bottom:735.510450px;}
.y13_c02351{bottom:766.380450px;}
.y12_c02351{bottom:797.430450px;}
.y11_c02351{bottom:828.480450px;}
.y10_c02351{bottom:859.530450px;}
.yf_c02351{bottom:890.580450px;}
.ye_c02351{bottom:921.630450px;}
.yd_c02351{bottom:952.680450px;}
.yc_c02351{bottom:976.350450px;}
.yb_c02351{bottom:1021.710450px;}
.ya_c02351{bottom:1036.830450px;}
.y9_c02351{bottom:1058.250774px;}
.y8_c02351{bottom:1074.180450px;}
.y7_c02351{bottom:1092.270450px;}
.y6_c02351{bottom:1116.120450px;}
.y5_c02351{bottom:1139.880450px;}
.y2_c02351{bottom:1172.820522px;}
.y1_c02351{bottom:1194.600450px;}
.h4_c02351{height:43.909277px;}
.h8_c02351{height:46.991602px;}
.h6_c02351{height:48.254063px;}
.h3_c02351{height:54.331699px;}
.h1_c02351{height:66.394687px;}
.h7_c02351{height:70.664062px;}
.h2_c02351{height:72.562212px;}
.h5_c02351{height:72.562500px;}
.h0_c02351{height:1263.000000px;}
.w1_c02351{width:892.500000px;}
.w0_c02351{width:892.830000px;}
.x0_c02351{left:0.000000px;}
.x4_c02351{left:127.619325px;}
.x7_c02351{left:135.630000px;}
.x8_c02351{left:138.150000px;}
.x9_c02351{left:180.720000px;}
.x6_c02351{left:183.150000px;}
.x5_c02351{left:400.500000px;}
.x1_c02351{left:420.930000px;}
.x3_c02351{left:438.120000px;}
.x2_c02351{left:490.950558px;}
@media print{
.v1_c02351{vertical-align:-76.480000pt;}
.v2_c02351{vertical-align:-74.560000pt;}
.v3_c02351{vertical-align:-69.119467pt;}
.v0_c02351{vertical-align:0.000000pt;}
.ls14_c02351{letter-spacing:-0.320000pt;}
.ls13_c02351{letter-spacing:-0.038400pt;}
.ls12_c02351{letter-spacing:-0.012800pt;}
.ls11_c02351{letter-spacing:-0.006400pt;}
.lsf_c02351{letter-spacing:0.000000pt;}
.ls6_c02351{letter-spacing:0.006400pt;}
.ls2_c02351{letter-spacing:0.012800pt;}
.ls3_c02351{letter-spacing:0.019200pt;}
.ls4_c02351{letter-spacing:0.025600pt;}
.lsd_c02351{letter-spacing:0.032000pt;}
.lse_c02351{letter-spacing:0.038400pt;}
.ls1_c02351{letter-spacing:0.040992pt;}
.ls8_c02351{letter-spacing:0.044800pt;}
.ls0_c02351{letter-spacing:0.046848pt;}
.lsc_c02351{letter-spacing:0.051200pt;}
.lsb_c02351{letter-spacing:0.057600pt;}
.ls9_c02351{letter-spacing:0.064000pt;}
.ls10_c02351{letter-spacing:0.081984pt;}
.ls7_c02351{letter-spacing:12.480000pt;}
.lsa_c02351{letter-spacing:65.200000pt;}
.ls5_c02351{letter-spacing:109.360000pt;}
.ws1_c02351{word-spacing:-16.032000pt;}
.ws0_c02351{word-spacing:-0.140544pt;}
.ws7_c02351{word-spacing:-0.102400pt;}
.wsa_c02351{word-spacing:-0.070400pt;}
.ws5_c02351{word-spacing:-0.064000pt;}
.wsd_c02351{word-spacing:-0.051200pt;}
.ws23_c02351{word-spacing:-0.032000pt;}
.ws9_c02351{word-spacing:-0.025600pt;}
.ws6_c02351{word-spacing:-0.019200pt;}
.wse_c02351{word-spacing:-0.006400pt;}
.ws3_c02351{word-spacing:0.000000pt;}
.ws4_c02351{word-spacing:0.006400pt;}
.ws8_c02351{word-spacing:0.012800pt;}
.ws2_c02351{word-spacing:0.035136pt;}
.ws14_c02351{word-spacing:3.142400pt;}
.ws18_c02351{word-spacing:5.600000pt;}
.ws17_c02351{word-spacing:5.651200pt;}
.ws13_c02351{word-spacing:5.696000pt;}
.ws19_c02351{word-spacing:5.708800pt;}
.ws11_c02351{word-spacing:5.715200pt;}
.ws12_c02351{word-spacing:5.734400pt;}
.ws1c_c02351{word-spacing:14.662400pt;}
.ws1e_c02351{word-spacing:14.675200pt;}
.ws1d_c02351{word-spacing:14.694400pt;}
.wsc_c02351{word-spacing:15.667200pt;}
.wsb_c02351{word-spacing:15.680000pt;}
.ws1f_c02351{word-spacing:16.844800pt;}
.ws20_c02351{word-spacing:17.011200pt;}
.ws22_c02351{word-spacing:22.304000pt;}
.ws21_c02351{word-spacing:22.342400pt;}
.ws15_c02351{word-spacing:27.129600pt;}
.ws16_c02351{word-spacing:27.187200pt;}
.wsf_c02351{word-spacing:30.003200pt;}
.ws10_c02351{word-spacing:30.054400pt;}
.ws1b_c02351{word-spacing:30.585600pt;}
.ws1a_c02351{word-spacing:30.624000pt;}
._0_c02351{margin-left:-1.177600pt;}
.fs2_c02351{font-size:42.560000pt;}
.fs0_c02351{font-size:58.560000pt;}
.fs1_c02351{font-size:64.000000pt;}
.y0_c02351{bottom:0.000000pt;}
.y4_c02351{bottom:67.307651pt;}
.y3_c02351{bottom:101.227067pt;}
.y2d_c02351{bottom:138.745363pt;}
.y2c_c02351{bottom:151.065419pt;}
.y2b_c02351{bottom:163.305675pt;}
.y2a_c02351{bottom:175.545931pt;}
.y29_c02351{bottom:187.865987pt;}
.y28_c02351{bottom:200.106243pt;}
.y27_c02351{bottom:212.346499pt;}
.y26_c02351{bottom:224.666555pt;}
.y25_c02351{bottom:236.906811pt;}
.y24_c02351{bottom:249.147067pt;}
.y23_c02351{bottom:271.707067pt;}
.y22_c02351{bottom:299.307067pt;}
.y21_c02351{bottom:326.907067pt;}
.y20_c02351{bottom:354.507067pt;}
.y1f_c02351{bottom:382.107200pt;}
.y1e_c02351{bottom:409.707067pt;}
.y1d_c02351{bottom:437.307200pt;}
.y1c_c02351{bottom:482.187067pt;}
.y1b_c02351{bottom:498.267067pt;}
.y1a_c02351{bottom:519.387067pt;}
.y19_c02351{bottom:540.587067pt;}
.y18_c02351{bottom:580.187067pt;}
.y17_c02351{bottom:598.587067pt;}
.y16_c02351{bottom:616.987067pt;}
.y15_c02351{bottom:635.387067pt;}
.y14_c02351{bottom:653.787067pt;}
.y13_c02351{bottom:681.227067pt;}
.y12_c02351{bottom:708.827067pt;}
.y11_c02351{bottom:736.427067pt;}
.y10_c02351{bottom:764.027067pt;}
.yf_c02351{bottom:791.627067pt;}
.ye_c02351{bottom:819.227067pt;}
.yd_c02351{bottom:846.827067pt;}
.yc_c02351{bottom:867.867067pt;}
.yb_c02351{bottom:908.187067pt;}
.ya_c02351{bottom:921.627067pt;}
.y9_c02351{bottom:940.667355pt;}
.y8_c02351{bottom:954.827067pt;}
.y7_c02351{bottom:970.907067pt;}
.y6_c02351{bottom:992.107067pt;}
.y5_c02351{bottom:1013.227067pt;}
.y2_c02351{bottom:1042.507131pt;}
.y1_c02351{bottom:1061.867067pt;}
.h4_c02351{height:39.030469pt;}
.h8_c02351{height:41.770312pt;}
.h6_c02351{height:42.892500pt;}
.h3_c02351{height:48.294844pt;}
.h1_c02351{height:59.017500pt;}
.h7_c02351{height:62.812500pt;}
.h2_c02351{height:64.499744pt;}
.h5_c02351{height:64.500000pt;}
.h0_c02351{height:1122.666667pt;}
.w1_c02351{width:793.333333pt;}
.w0_c02351{width:793.626667pt;}
.x0_c02351{left:0.000000pt;}
.x4_c02351{left:113.439400pt;}
.x7_c02351{left:120.560000pt;}
.x8_c02351{left:122.800000pt;}
.x9_c02351{left:160.640000pt;}
.x6_c02351{left:162.800000pt;}
.x5_c02351{left:356.000000pt;}
.x1_c02351{left:374.160000pt;}
.x3_c02351{left:389.440000pt;}
.x2_c02351{left:436.400496pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd5e689bb85bc8a4a11386f7.woff2')format("woff");}.ff1_c02352{font-family:ff1_c02352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02352;src:url('chunks/assets/font_07c2b72188c0f4a6c1e2ec37.woff2')format("woff");}.ff2_c02352{font-family:ff2_c02352;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02352{font-family:ff3_c02352;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_c02352;src:url('chunks/assets/font_1df17beda4e7fdf7e99ccb42.woff2')format("woff");}.ff4_c02352{font-family:ff4_c02352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02352;src:url('chunks/assets/font_4457512aecdc399a812e6121.woff2')format("woff");}.ff5_c02352{font-family:ff5_c02352;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_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;}
.ls13_c02352{letter-spacing:-0.028800px;}
.ls11_c02352{letter-spacing:-0.014400px;}
.ls12_c02352{letter-spacing:-0.007200px;}
.lsf_c02352{letter-spacing:0.000000px;}
.ls4_c02352{letter-spacing:0.007200px;}
.ls9_c02352{letter-spacing:0.014400px;}
.ls6_c02352{letter-spacing:0.021600px;}
.ls5_c02352{letter-spacing:0.036000px;}
.lsd_c02352{letter-spacing:0.039528px;}
.ls2_c02352{letter-spacing:0.043200px;}
.ls1_c02352{letter-spacing:0.046116px;}
.ls3_c02352{letter-spacing:0.050400px;}
.ls0_c02352{letter-spacing:0.052704px;}
.lsb_c02352{letter-spacing:0.057600px;}
.ls7_c02352{letter-spacing:0.064800px;}
.lsa_c02352{letter-spacing:0.072000px;}
.lse_c02352{letter-spacing:0.079200px;}
.ls8_c02352{letter-spacing:0.086400px;}
.ls10_c02352{letter-spacing:0.092232px;}
.lsc_c02352{letter-spacing:0.144000px;}
.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;}
}
.ws30_c02352{word-spacing:-0.417600px;}
.ws0_c02352{word-spacing:-0.158112px;}
.ws1_c02352{word-spacing:-0.105408px;}
.ws7_c02352{word-spacing:-0.079200px;}
.ws26_c02352{word-spacing:-0.043200px;}
.ws3_c02352{word-spacing:0.000000px;}
.ws6_c02352{word-spacing:0.014400px;}
.ws2_c02352{word-spacing:0.039528px;}
.ws1f_c02352{word-spacing:0.230400px;}
.ws20_c02352{word-spacing:0.345600px;}
.ws23_c02352{word-spacing:0.878400px;}
.ws22_c02352{word-spacing:0.892800px;}
.ws21_c02352{word-spacing:1.072800px;}
.wsf_c02352{word-spacing:1.915200px;}
.wse_c02352{word-spacing:2.188800px;}
.ws10_c02352{word-spacing:2.404800px;}
.ws19_c02352{word-spacing:2.462400px;}
.ws1c_c02352{word-spacing:4.924800px;}
.ws1d_c02352{word-spacing:5.032800px;}
.ws1e_c02352{word-spacing:5.054400px;}
.wsc_c02352{word-spacing:5.724000px;}
.wsd_c02352{word-spacing:5.738400px;}
.ws13_c02352{word-spacing:7.056000px;}
.ws11_c02352{word-spacing:7.128000px;}
.ws12_c02352{word-spacing:7.185600px;}
.ws27_c02352{word-spacing:8.942400px;}
.ws28_c02352{word-spacing:9.007200px;}
.ws17_c02352{word-spacing:11.044800px;}
.ws16_c02352{word-spacing:11.088000px;}
.ws8_c02352{word-spacing:12.124800px;}
.ws9_c02352{word-spacing:12.132000px;}
.ws1a_c02352{word-spacing:13.183200px;}
.ws1b_c02352{word-spacing:13.212000px;}
.ws2d_c02352{word-spacing:13.838400px;}
.ws2c_c02352{word-spacing:14.032800px;}
.ws25_c02352{word-spacing:14.299200px;}
.ws24_c02352{word-spacing:14.371200px;}
.wsa_c02352{word-spacing:16.876800px;}
.wsb_c02352{word-spacing:16.927200px;}
.ws2e_c02352{word-spacing:17.208000px;}
.ws2f_c02352{word-spacing:17.215200px;}
.ws14_c02352{word-spacing:17.524800px;}
.ws15_c02352{word-spacing:17.625600px;}
.ws29_c02352{word-spacing:25.192800px;}
.ws2a_c02352{word-spacing:28.303200px;}
.ws2b_c02352{word-spacing:28.346400px;}
.ws18_c02352{word-spacing:29.073600px;}
.ws4_c02352{word-spacing:33.076800px;}
.ws5_c02352{word-spacing:33.105600px;}
._1_c02352{margin-left:-1.166400px;}
._0_c02352{width:12.160800px;}
.fc0_c02352{color:rgb(0,0,0);}
.fs2_c02352{font-size:47.880000px;}
.fs0_c02352{font-size:65.880000px;}
.fs1_c02352{font-size:72.000000px;}
.y0_c02352{bottom:0.000000px;}
.y4_c02352{bottom:75.721107px;}
.y3_c02352{bottom:113.880450px;}
.y30_c02352{bottom:137.278533px;}
.y2f_c02352{bottom:151.048821px;}
.y2e_c02352{bottom:164.908884px;}
.y2d_c02352{bottom:178.679172px;}
.y2c_c02352{bottom:192.449460px;}
.y2b_c02352{bottom:206.309523px;}
.y2a_c02352{bottom:220.079811px;}
.y29_c02352{bottom:233.850099px;}
.y28_c02352{bottom:247.710162px;}
.y27_c02352{bottom:261.480450px;}
.y26_c02352{bottom:286.860600px;}
.y25_c02352{bottom:317.910600px;}
.y24_c02352{bottom:348.960600px;}
.y23_c02352{bottom:375.420450px;}
.y22_c02352{bottom:393.690450px;}
.y21_c02352{bottom:417.720450px;}
.y20_c02352{bottom:441.480450px;}
.y1f_c02352{bottom:465.330450px;}
.y1e_c02352{bottom:488.910450px;}
.y1d_c02352{bottom:508.709523px;}
.y1c_c02352{bottom:522.479811px;}
.y1b_c02352{bottom:536.250099px;}
.y1a_c02352{bottom:550.110162px;}
.y19_c02352{bottom:563.880450px;}
.y18_c02352{bottom:589.260450px;}
.y17_c02352{bottom:620.310450px;}
.y16_c02352{bottom:651.360450px;}
.y15_c02352{bottom:682.410450px;}
.y14_c02352{bottom:713.460450px;}
.y13_c02352{bottom:744.510450px;}
.y12_c02352{bottom:775.560450px;}
.y11_c02352{bottom:806.610600px;}
.y10_c02352{bottom:837.660450px;}
.yf_c02352{bottom:868.710450px;}
.ye_c02352{bottom:899.760450px;}
.yd_c02352{bottom:930.810450px;}
.yc_c02352{bottom:961.770450px;}
.yb_c02352{bottom:992.820450px;}
.ya_c02352{bottom:1023.870450px;}
.y9_c02352{bottom:1054.920450px;}
.y8_c02352{bottom:1074.450450px;}
.y7_c02352{bottom:1092.450450px;}
.y6_c02352{bottom:1116.300450px;}
.y5_c02352{bottom:1139.880450px;}
.y2_c02352{bottom:1172.820522px;}
.y1_c02352{bottom:1194.600450px;}
.h4_c02352{height:43.909277px;}
.h7_c02352{height:46.991602px;}
.h3_c02352{height:54.331699px;}
.h1_c02352{height:66.394687px;}
.h6_c02352{height:70.664062px;}
.h2_c02352{height:72.562212px;}
.h5_c02352{height:72.562500px;}
.h0_c02352{height:1263.000000px;}
.w1_c02352{width:892.500000px;}
.w0_c02352{width:892.830000px;}
.x0_c02352{left:0.000000px;}
.x4_c02352{left:127.619325px;}
.x5_c02352{left:135.630000px;}
.x7_c02352{left:148.950000px;}
.x8_c02352{left:170.190000px;}
.x6_c02352{left:181.620000px;}
.x1_c02352{left:420.930000px;}
.x3_c02352{left:438.120000px;}
.x2_c02352{left:490.950558px;}
@media print{
.v0_c02352{vertical-align:0.000000pt;}
.ls13_c02352{letter-spacing:-0.025600pt;}
.ls11_c02352{letter-spacing:-0.012800pt;}
.ls12_c02352{letter-spacing:-0.006400pt;}
.lsf_c02352{letter-spacing:0.000000pt;}
.ls4_c02352{letter-spacing:0.006400pt;}
.ls9_c02352{letter-spacing:0.012800pt;}
.ls6_c02352{letter-spacing:0.019200pt;}
.ls5_c02352{letter-spacing:0.032000pt;}
.lsd_c02352{letter-spacing:0.035136pt;}
.ls2_c02352{letter-spacing:0.038400pt;}
.ls1_c02352{letter-spacing:0.040992pt;}
.ls3_c02352{letter-spacing:0.044800pt;}
.ls0_c02352{letter-spacing:0.046848pt;}
.lsb_c02352{letter-spacing:0.051200pt;}
.ls7_c02352{letter-spacing:0.057600pt;}
.lsa_c02352{letter-spacing:0.064000pt;}
.lse_c02352{letter-spacing:0.070400pt;}
.ls8_c02352{letter-spacing:0.076800pt;}
.ls10_c02352{letter-spacing:0.081984pt;}
.lsc_c02352{letter-spacing:0.128000pt;}
.ws30_c02352{word-spacing:-0.371200pt;}
.ws0_c02352{word-spacing:-0.140544pt;}
.ws1_c02352{word-spacing:-0.093696pt;}
.ws7_c02352{word-spacing:-0.070400pt;}
.ws26_c02352{word-spacing:-0.038400pt;}
.ws3_c02352{word-spacing:0.000000pt;}
.ws6_c02352{word-spacing:0.012800pt;}
.ws2_c02352{word-spacing:0.035136pt;}
.ws1f_c02352{word-spacing:0.204800pt;}
.ws20_c02352{word-spacing:0.307200pt;}
.ws23_c02352{word-spacing:0.780800pt;}
.ws22_c02352{word-spacing:0.793600pt;}
.ws21_c02352{word-spacing:0.953600pt;}
.wsf_c02352{word-spacing:1.702400pt;}
.wse_c02352{word-spacing:1.945600pt;}
.ws10_c02352{word-spacing:2.137600pt;}
.ws19_c02352{word-spacing:2.188800pt;}
.ws1c_c02352{word-spacing:4.377600pt;}
.ws1d_c02352{word-spacing:4.473600pt;}
.ws1e_c02352{word-spacing:4.492800pt;}
.wsc_c02352{word-spacing:5.088000pt;}
.wsd_c02352{word-spacing:5.100800pt;}
.ws13_c02352{word-spacing:6.272000pt;}
.ws11_c02352{word-spacing:6.336000pt;}
.ws12_c02352{word-spacing:6.387200pt;}
.ws27_c02352{word-spacing:7.948800pt;}
.ws28_c02352{word-spacing:8.006400pt;}
.ws17_c02352{word-spacing:9.817600pt;}
.ws16_c02352{word-spacing:9.856000pt;}
.ws8_c02352{word-spacing:10.777600pt;}
.ws9_c02352{word-spacing:10.784000pt;}
.ws1a_c02352{word-spacing:11.718400pt;}
.ws1b_c02352{word-spacing:11.744000pt;}
.ws2d_c02352{word-spacing:12.300800pt;}
.ws2c_c02352{word-spacing:12.473600pt;}
.ws25_c02352{word-spacing:12.710400pt;}
.ws24_c02352{word-spacing:12.774400pt;}
.wsa_c02352{word-spacing:15.001600pt;}
.wsb_c02352{word-spacing:15.046400pt;}
.ws2e_c02352{word-spacing:15.296000pt;}
.ws2f_c02352{word-spacing:15.302400pt;}
.ws14_c02352{word-spacing:15.577600pt;}
.ws15_c02352{word-spacing:15.667200pt;}
.ws29_c02352{word-spacing:22.393600pt;}
.ws2a_c02352{word-spacing:25.158400pt;}
.ws2b_c02352{word-spacing:25.196800pt;}
.ws18_c02352{word-spacing:25.843200pt;}
.ws4_c02352{word-spacing:29.401600pt;}
.ws5_c02352{word-spacing:29.427200pt;}
._1_c02352{margin-left:-1.036800pt;}
._0_c02352{width:10.809600pt;}
.fs2_c02352{font-size:42.560000pt;}
.fs0_c02352{font-size:58.560000pt;}
.fs1_c02352{font-size:64.000000pt;}
.y0_c02352{bottom:0.000000pt;}
.y4_c02352{bottom:67.307651pt;}
.y3_c02352{bottom:101.227067pt;}
.y30_c02352{bottom:122.025363pt;}
.y2f_c02352{bottom:134.265619pt;}
.y2e_c02352{bottom:146.585675pt;}
.y2d_c02352{bottom:158.825931pt;}
.y2c_c02352{bottom:171.066187pt;}
.y2b_c02352{bottom:183.386243pt;}
.y2a_c02352{bottom:195.626499pt;}
.y29_c02352{bottom:207.866755pt;}
.y28_c02352{bottom:220.186811pt;}
.y27_c02352{bottom:232.427067pt;}
.y26_c02352{bottom:254.987200pt;}
.y25_c02352{bottom:282.587200pt;}
.y24_c02352{bottom:310.187200pt;}
.y23_c02352{bottom:333.707067pt;}
.y22_c02352{bottom:349.947067pt;}
.y21_c02352{bottom:371.307067pt;}
.y20_c02352{bottom:392.427067pt;}
.y1f_c02352{bottom:413.627067pt;}
.y1e_c02352{bottom:434.587067pt;}
.y1d_c02352{bottom:452.186243pt;}
.y1c_c02352{bottom:464.426499pt;}
.y1b_c02352{bottom:476.666755pt;}
.y1a_c02352{bottom:488.986811pt;}
.y19_c02352{bottom:501.227067pt;}
.y18_c02352{bottom:523.787067pt;}
.y17_c02352{bottom:551.387067pt;}
.y16_c02352{bottom:578.987067pt;}
.y15_c02352{bottom:606.587067pt;}
.y14_c02352{bottom:634.187067pt;}
.y13_c02352{bottom:661.787067pt;}
.y12_c02352{bottom:689.387067pt;}
.y11_c02352{bottom:716.987200pt;}
.y10_c02352{bottom:744.587067pt;}
.yf_c02352{bottom:772.187067pt;}
.ye_c02352{bottom:799.787067pt;}
.yd_c02352{bottom:827.387067pt;}
.yc_c02352{bottom:854.907067pt;}
.yb_c02352{bottom:882.507067pt;}
.ya_c02352{bottom:910.107067pt;}
.y9_c02352{bottom:937.707067pt;}
.y8_c02352{bottom:955.067067pt;}
.y7_c02352{bottom:971.067067pt;}
.y6_c02352{bottom:992.267067pt;}
.y5_c02352{bottom:1013.227067pt;}
.y2_c02352{bottom:1042.507131pt;}
.y1_c02352{bottom:1061.867067pt;}
.h4_c02352{height:39.030469pt;}
.h7_c02352{height:41.770312pt;}
.h3_c02352{height:48.294844pt;}
.h1_c02352{height:59.017500pt;}
.h6_c02352{height:62.812500pt;}
.h2_c02352{height:64.499744pt;}
.h5_c02352{height:64.500000pt;}
.h0_c02352{height:1122.666667pt;}
.w1_c02352{width:793.333333pt;}
.w0_c02352{width:793.626667pt;}
.x0_c02352{left:0.000000pt;}
.x4_c02352{left:113.439400pt;}
.x5_c02352{left:120.560000pt;}
.x7_c02352{left:132.400000pt;}
.x8_c02352{left:151.280000pt;}
.x6_c02352{left:161.440000pt;}
.x1_c02352{left:374.160000pt;}
.x3_c02352{left:389.440000pt;}
.x2_c02352{left:436.400496pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2df8c2fe220fb7acaff74f43.woff2')format("woff");}.ff1_c02353{font-family:ff1_c02353;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02353;src:url('chunks/assets/font_6080bf7ec549bcbccd2e0431.woff2')format("woff");}.ff2_c02353{font-family:ff2_c02353;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02353{font-family:ff3_c02353;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_c02353;src:url('chunks/assets/font_d5629d8b0ababd936771de6c.woff2')format("woff");}.ff4_c02353{font-family:ff4_c02353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02353;src:url('chunks/assets/font_5428bb2f98d45c6899ef4338.woff2')format("woff");}.ff5_c02353{font-family:ff5_c02353;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_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);}
.v2_c02353{vertical-align:-81.360000px;}
.v1_c02353{vertical-align:-78.120000px;}
.v0_c02353{vertical-align:0.000000px;}
.ls1b_c02353{letter-spacing:-0.360000px;}
.ls1c_c02353{letter-spacing:-0.028800px;}
.ls1a_c02353{letter-spacing:-0.021600px;}
.ls19_c02353{letter-spacing:-0.014400px;}
.ls18_c02353{letter-spacing:-0.007200px;}
.ls17_c02353{letter-spacing:0.000000px;}
.ls12_c02353{letter-spacing:0.007200px;}
.lsb_c02353{letter-spacing:0.010800px;}
.ls5_c02353{letter-spacing:0.014400px;}
.ls3_c02353{letter-spacing:0.019764px;}
.ls8_c02353{letter-spacing:0.021600px;}
.ls11_c02353{letter-spacing:0.026352px;}
.ls7_c02353{letter-spacing:0.028800px;}
.lsf_c02353{letter-spacing:0.032940px;}
.ls9_c02353{letter-spacing:0.036000px;}
.lsd_c02353{letter-spacing:0.039528px;}
.ls6_c02353{letter-spacing:0.043200px;}
.ls1_c02353{letter-spacing:0.046116px;}
.lsa_c02353{letter-spacing:0.050400px;}
.ls0_c02353{letter-spacing:0.052704px;}
.lsc_c02353{letter-spacing:0.057600px;}
.ls10_c02353{letter-spacing:0.059292px;}
.ls13_c02353{letter-spacing:0.064800px;}
.ls2_c02353{letter-spacing:0.065880px;}
.ls15_c02353{letter-spacing:0.072000px;}
.lse_c02353{letter-spacing:0.092232px;}
.ls16_c02353{letter-spacing:20.070000px;}
.ls14_c02353{letter-spacing:68.850000px;}
.ls4_c02353{letter-spacing:73.350000px;}
.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;}
}
.ws4_c02353{word-spacing:-18.014400px;}
.ws1_c02353{word-spacing:-17.985600px;}
.ws30_c02353{word-spacing:-0.309600px;}
.ws16_c02353{word-spacing:-0.230400px;}
.ws39_c02353{word-spacing:-0.194400px;}
.ws2d_c02353{word-spacing:-0.180000px;}
.ws0_c02353{word-spacing:-0.158112px;}
.ws3a_c02353{word-spacing:-0.129600px;}
.ws3_c02353{word-spacing:-0.064800px;}
.wse_c02353{word-spacing:-0.050400px;}
.ws2_c02353{word-spacing:-0.032400px;}
.ws26_c02353{word-spacing:-0.014400px;}
.ws6_c02353{word-spacing:0.000000px;}
.ws31_c02353{word-spacing:0.007200px;}
.ws1e_c02353{word-spacing:0.026352px;}
.ws22_c02353{word-spacing:0.032940px;}
.ws5_c02353{word-spacing:0.039528px;}
.ws25_c02353{word-spacing:0.046116px;}
.wsb_c02353{word-spacing:0.072468px;}
.ws12_c02353{word-spacing:1.418400px;}
.ws13_c02353{word-spacing:1.432800px;}
.ws27_c02353{word-spacing:2.347200px;}
.ws28_c02353{word-spacing:2.412000px;}
.ws29_c02353{word-spacing:2.548800px;}
.ws23_c02353{word-spacing:2.918484px;}
.ws24_c02353{word-spacing:2.944836px;}
.ws2e_c02353{word-spacing:3.204000px;}
.ws2f_c02353{word-spacing:3.240000px;}
.ws20_c02353{word-spacing:3.287412px;}
.ws21_c02353{word-spacing:3.326940px;}
.wsa_c02353{word-spacing:3.669516px;}
.ws9_c02353{word-spacing:3.985740px;}
.ws2b_c02353{word-spacing:4.910400px;}
.ws2a_c02353{word-spacing:5.054400px;}
.ws2c_c02353{word-spacing:5.061600px;}
.ws1c_c02353{word-spacing:6.120252px;}
.ws1b_c02353{word-spacing:6.172956px;}
.ws1a_c02353{word-spacing:6.336000px;}
.ws19_c02353{word-spacing:6.422400px;}
.ws35_c02353{word-spacing:6.832800px;}
.ws36_c02353{word-spacing:6.840000px;}
.ws33_c02353{word-spacing:8.078400px;}
.ws34_c02353{word-spacing:8.107200px;}
.ws32_c02353{word-spacing:8.150400px;}
.ws11_c02353{word-spacing:8.964000px;}
.wsf_c02353{word-spacing:8.971200px;}
.ws10_c02353{word-spacing:8.978400px;}
.ws1f_c02353{word-spacing:9.414252px;}
.ws15_c02353{word-spacing:15.300000px;}
.ws14_c02353{word-spacing:15.386400px;}
.ws37_c02353{word-spacing:15.458400px;}
.ws38_c02353{word-spacing:15.487200px;}
.wsd_c02353{word-spacing:16.783200px;}
.wsc_c02353{word-spacing:16.905600px;}
.ws8_c02353{word-spacing:18.626400px;}
.ws7_c02353{word-spacing:18.727200px;}
.ws18_c02353{word-spacing:28.072800px;}
.ws17_c02353{word-spacing:28.375200px;}
.ws1d_c02353{word-spacing:29.580120px;}
._1_c02353{margin-left:-1.353600px;}
._0_c02353{width:1.166076px;}
.fc1_c02353{color:rgb(33,29,30);}
.fc0_c02353{color:rgb(0,0,0);}
.fs3_c02353{font-size:47.880000px;}
.fs4_c02353{font-size:54.000000px;}
.fs0_c02353{font-size:65.880000px;}
.fs1_c02353{font-size:72.000000px;}
.fs2_c02353{font-size:83.880000px;}
.y0_c02353{bottom:0.000000px;}
.y4_c02353{bottom:75.721107px;}
.y3_c02353{bottom:113.880450px;}
.y2d_c02353{bottom:144.210450px;}
.y2c_c02353{bottom:194.790600px;}
.y2b_c02353{bottom:212.790600px;}
.y2a_c02353{bottom:236.640450px;}
.y29_c02353{bottom:260.400450px;}
.y28_c02353{bottom:284.160450px;}
.y27_c02353{bottom:327.540450px;}
.y26_c02353{bottom:352.920450px;}
.y25_c02353{bottom:404.310450px;}
.y24_c02353{bottom:426.720450px;}
.y23_c02353{bottom:450.480450px;}
.y22_c02353{bottom:474.240450px;}
.y21_c02353{bottom:498.090600px;}
.y20_c02353{bottom:521.670450px;}
.y1f_c02353{bottom:541.470162px;}
.y1e_c02353{bottom:555.240450px;}
.y1d_c02353{bottom:569.911665px;}
.y1c_c02353{bottom:588.901575px;}
.y1b_c02353{bottom:607.891485px;}
.y1a_c02353{bottom:626.790810px;}
.y19_c02353{bottom:645.780720px;}
.y18_c02353{bottom:664.770630px;}
.y17_c02353{bottom:683.760540px;}
.y16_c02353{bottom:702.750450px;}
.y15_c02353{bottom:732.450450px;}
.y14_c02353{bottom:763.500450px;}
.y13_c02353{bottom:813.990450px;}
.y12_c02353{bottom:831.990450px;}
.y11_c02353{bottom:855.840450px;}
.y10_c02353{bottom:879.600450px;}
.yf_c02353{bottom:903.360450px;}
.ye_c02353{bottom:927.210450px;}
.yd_c02353{bottom:950.880450px;}
.yc_c02353{bottom:970.590450px;}
.yb_c02353{bottom:984.360450px;}
.ya_c02353{bottom:1009.740450px;}
.y9_c02353{bottom:1060.320450px;}
.y8_c02353{bottom:1074.900450px;}
.y7_c02353{bottom:1093.890450px;}
.y6_c02353{bottom:1116.120450px;}
.y5_c02353{bottom:1139.880450px;}
.y2_c02353{bottom:1172.820522px;}
.y1_c02353{bottom:1194.600450px;}
.h4_c02353{height:43.909277px;}
.h8_c02353{height:46.991602px;}
.h3_c02353{height:54.331699px;}
.h7_c02353{height:64.657617px;}
.h1_c02353{height:66.394687px;}
.ha_c02353{height:70.628906px;}
.h9_c02353{height:70.664062px;}
.h2_c02353{height:72.562212px;}
.h5_c02353{height:72.562500px;}
.hb_c02353{height:82.323633px;}
.h6_c02353{height:84.535312px;}
.h0_c02353{height:1263.000000px;}
.w1_c02353{width:892.500000px;}
.w0_c02353{width:892.830000px;}
.x0_c02353{left:0.000000px;}
.x4_c02353{left:127.619325px;}
.x5_c02353{left:135.630000px;}
.x8_c02353{left:170.190288px;}
.x6_c02353{left:181.620000px;}
.x7_c02353{left:191.430000px;}
.x1_c02353{left:420.930000px;}
.x3_c02353{left:438.120000px;}
.x2_c02353{left:490.950558px;}
@media print{
.v2_c02353{vertical-align:-72.320000pt;}
.v1_c02353{vertical-align:-69.440000pt;}
.v0_c02353{vertical-align:0.000000pt;}
.ls1b_c02353{letter-spacing:-0.320000pt;}
.ls1c_c02353{letter-spacing:-0.025600pt;}
.ls1a_c02353{letter-spacing:-0.019200pt;}
.ls19_c02353{letter-spacing:-0.012800pt;}
.ls18_c02353{letter-spacing:-0.006400pt;}
.ls17_c02353{letter-spacing:0.000000pt;}
.ls12_c02353{letter-spacing:0.006400pt;}
.lsb_c02353{letter-spacing:0.009600pt;}
.ls5_c02353{letter-spacing:0.012800pt;}
.ls3_c02353{letter-spacing:0.017568pt;}
.ls8_c02353{letter-spacing:0.019200pt;}
.ls11_c02353{letter-spacing:0.023424pt;}
.ls7_c02353{letter-spacing:0.025600pt;}
.lsf_c02353{letter-spacing:0.029280pt;}
.ls9_c02353{letter-spacing:0.032000pt;}
.lsd_c02353{letter-spacing:0.035136pt;}
.ls6_c02353{letter-spacing:0.038400pt;}
.ls1_c02353{letter-spacing:0.040992pt;}
.lsa_c02353{letter-spacing:0.044800pt;}
.ls0_c02353{letter-spacing:0.046848pt;}
.lsc_c02353{letter-spacing:0.051200pt;}
.ls10_c02353{letter-spacing:0.052704pt;}
.ls13_c02353{letter-spacing:0.057600pt;}
.ls2_c02353{letter-spacing:0.058560pt;}
.ls15_c02353{letter-spacing:0.064000pt;}
.lse_c02353{letter-spacing:0.081984pt;}
.ls16_c02353{letter-spacing:17.840000pt;}
.ls14_c02353{letter-spacing:61.200000pt;}
.ls4_c02353{letter-spacing:65.200000pt;}
.ws4_c02353{word-spacing:-16.012800pt;}
.ws1_c02353{word-spacing:-15.987200pt;}
.ws30_c02353{word-spacing:-0.275200pt;}
.ws16_c02353{word-spacing:-0.204800pt;}
.ws39_c02353{word-spacing:-0.172800pt;}
.ws2d_c02353{word-spacing:-0.160000pt;}
.ws0_c02353{word-spacing:-0.140544pt;}
.ws3a_c02353{word-spacing:-0.115200pt;}
.ws3_c02353{word-spacing:-0.057600pt;}
.wse_c02353{word-spacing:-0.044800pt;}
.ws2_c02353{word-spacing:-0.028800pt;}
.ws26_c02353{word-spacing:-0.012800pt;}
.ws6_c02353{word-spacing:0.000000pt;}
.ws31_c02353{word-spacing:0.006400pt;}
.ws1e_c02353{word-spacing:0.023424pt;}
.ws22_c02353{word-spacing:0.029280pt;}
.ws5_c02353{word-spacing:0.035136pt;}
.ws25_c02353{word-spacing:0.040992pt;}
.wsb_c02353{word-spacing:0.064416pt;}
.ws12_c02353{word-spacing:1.260800pt;}
.ws13_c02353{word-spacing:1.273600pt;}
.ws27_c02353{word-spacing:2.086400pt;}
.ws28_c02353{word-spacing:2.144000pt;}
.ws29_c02353{word-spacing:2.265600pt;}
.ws23_c02353{word-spacing:2.594208pt;}
.ws24_c02353{word-spacing:2.617632pt;}
.ws2e_c02353{word-spacing:2.848000pt;}
.ws2f_c02353{word-spacing:2.880000pt;}
.ws20_c02353{word-spacing:2.922144pt;}
.ws21_c02353{word-spacing:2.957280pt;}
.wsa_c02353{word-spacing:3.261792pt;}
.ws9_c02353{word-spacing:3.542880pt;}
.ws2b_c02353{word-spacing:4.364800pt;}
.ws2a_c02353{word-spacing:4.492800pt;}
.ws2c_c02353{word-spacing:4.499200pt;}
.ws1c_c02353{word-spacing:5.440224pt;}
.ws1b_c02353{word-spacing:5.487072pt;}
.ws1a_c02353{word-spacing:5.632000pt;}
.ws19_c02353{word-spacing:5.708800pt;}
.ws35_c02353{word-spacing:6.073600pt;}
.ws36_c02353{word-spacing:6.080000pt;}
.ws33_c02353{word-spacing:7.180800pt;}
.ws34_c02353{word-spacing:7.206400pt;}
.ws32_c02353{word-spacing:7.244800pt;}
.ws11_c02353{word-spacing:7.968000pt;}
.wsf_c02353{word-spacing:7.974400pt;}
.ws10_c02353{word-spacing:7.980800pt;}
.ws1f_c02353{word-spacing:8.368224pt;}
.ws15_c02353{word-spacing:13.600000pt;}
.ws14_c02353{word-spacing:13.676800pt;}
.ws37_c02353{word-spacing:13.740800pt;}
.ws38_c02353{word-spacing:13.766400pt;}
.wsd_c02353{word-spacing:14.918400pt;}
.wsc_c02353{word-spacing:15.027200pt;}
.ws8_c02353{word-spacing:16.556800pt;}
.ws7_c02353{word-spacing:16.646400pt;}
.ws18_c02353{word-spacing:24.953600pt;}
.ws17_c02353{word-spacing:25.222400pt;}
.ws1d_c02353{word-spacing:26.293440pt;}
._1_c02353{margin-left:-1.203200pt;}
._0_c02353{width:1.036512pt;}
.fs3_c02353{font-size:42.560000pt;}
.fs4_c02353{font-size:48.000000pt;}
.fs0_c02353{font-size:58.560000pt;}
.fs1_c02353{font-size:64.000000pt;}
.fs2_c02353{font-size:74.560000pt;}
.y0_c02353{bottom:0.000000pt;}
.y4_c02353{bottom:67.307651pt;}
.y3_c02353{bottom:101.227067pt;}
.y2d_c02353{bottom:128.187067pt;}
.y2c_c02353{bottom:173.147200pt;}
.y2b_c02353{bottom:189.147200pt;}
.y2a_c02353{bottom:210.347067pt;}
.y29_c02353{bottom:231.467067pt;}
.y28_c02353{bottom:252.587067pt;}
.y27_c02353{bottom:291.147067pt;}
.y26_c02353{bottom:313.707067pt;}
.y25_c02353{bottom:359.387067pt;}
.y24_c02353{bottom:379.307067pt;}
.y23_c02353{bottom:400.427067pt;}
.y22_c02353{bottom:421.547067pt;}
.y21_c02353{bottom:442.747200pt;}
.y20_c02353{bottom:463.707067pt;}
.y1f_c02353{bottom:481.306811pt;}
.y1e_c02353{bottom:493.547067pt;}
.y1d_c02353{bottom:506.588147pt;}
.y1c_c02353{bottom:523.468067pt;}
.y1b_c02353{bottom:540.347987pt;}
.y1a_c02353{bottom:557.147387pt;}
.y19_c02353{bottom:574.027307pt;}
.y18_c02353{bottom:590.907227pt;}
.y17_c02353{bottom:607.787147pt;}
.y16_c02353{bottom:624.667067pt;}
.y15_c02353{bottom:651.067067pt;}
.y14_c02353{bottom:678.667067pt;}
.y13_c02353{bottom:723.547067pt;}
.y12_c02353{bottom:739.547067pt;}
.y11_c02353{bottom:760.747067pt;}
.y10_c02353{bottom:781.867067pt;}
.yf_c02353{bottom:802.987067pt;}
.ye_c02353{bottom:824.187067pt;}
.yd_c02353{bottom:845.227067pt;}
.yc_c02353{bottom:862.747067pt;}
.yb_c02353{bottom:874.987067pt;}
.ya_c02353{bottom:897.547067pt;}
.y9_c02353{bottom:942.507067pt;}
.y8_c02353{bottom:955.467067pt;}
.y7_c02353{bottom:972.347067pt;}
.y6_c02353{bottom:992.107067pt;}
.y5_c02353{bottom:1013.227067pt;}
.y2_c02353{bottom:1042.507131pt;}
.y1_c02353{bottom:1061.867067pt;}
.h4_c02353{height:39.030469pt;}
.h8_c02353{height:41.770312pt;}
.h3_c02353{height:48.294844pt;}
.h7_c02353{height:57.473437pt;}
.h1_c02353{height:59.017500pt;}
.ha_c02353{height:62.781250pt;}
.h9_c02353{height:62.812500pt;}
.h2_c02353{height:64.499744pt;}
.h5_c02353{height:64.500000pt;}
.hb_c02353{height:73.176562pt;}
.h6_c02353{height:75.142500pt;}
.h0_c02353{height:1122.666667pt;}
.w1_c02353{width:793.333333pt;}
.w0_c02353{width:793.626667pt;}
.x0_c02353{left:0.000000pt;}
.x4_c02353{left:113.439400pt;}
.x5_c02353{left:120.560000pt;}
.x8_c02353{left:151.280256pt;}
.x6_c02353{left:161.440000pt;}
.x7_c02353{left:170.160000pt;}
.x1_c02353{left:374.160000pt;}
.x3_c02353{left:389.440000pt;}
.x2_c02353{left:436.400496pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c69d14c390263621b4c9863.woff2')format("woff");}.ff1_c02354{font-family:ff1_c02354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02354;src:url('chunks/assets/font_ac56e323baa09c6831548b84.woff2')format("woff");}.ff2_c02354{font-family:ff2_c02354;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02354{font-family:ff3_c02354;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_c02354;src:url('chunks/assets/font_946c6157d0c78b11c4cfa012.woff2')format("woff");}.ff4_c02354{font-family:ff4_c02354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02354;src:url('chunks/assets/font_8d259be32602e1157df1743d.woff2')format("woff");}.ff5_c02354{font-family:ff5_c02354;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_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);}
.v1_c02354{vertical-align:-86.040396px;}
.v2_c02354{vertical-align:-83.880000px;}
.v3_c02354{vertical-align:-81.000600px;}
.v4_c02354{vertical-align:-78.119400px;}
.v0_c02354{vertical-align:0.000000px;}
.ls17_c02354{letter-spacing:-0.021600px;}
.ls16_c02354{letter-spacing:-0.007200px;}
.ls14_c02354{letter-spacing:0.000000px;}
.ls4_c02354{letter-spacing:0.007200px;}
.lsc_c02354{letter-spacing:0.014400px;}
.lsf_c02354{letter-spacing:0.019764px;}
.ls5_c02354{letter-spacing:0.021600px;}
.ls2_c02354{letter-spacing:0.028800px;}
.ls12_c02354{letter-spacing:0.032940px;}
.ls13_c02354{letter-spacing:0.039528px;}
.lsb_c02354{letter-spacing:0.043200px;}
.ls1_c02354{letter-spacing:0.046116px;}
.ls9_c02354{letter-spacing:0.050400px;}
.ls0_c02354{letter-spacing:0.052704px;}
.lsd_c02354{letter-spacing:0.057600px;}
.ls10_c02354{letter-spacing:0.059292px;}
.ls8_c02354{letter-spacing:0.064800px;}
.ls11_c02354{letter-spacing:0.065880px;}
.lsa_c02354{letter-spacing:0.072000px;}
.ls15_c02354{letter-spacing:0.092232px;}
.ls18_c02354{letter-spacing:0.158400px;}
.ls6_c02354{letter-spacing:14.040000px;}
.ls3_c02354{letter-spacing:21.870000px;}
.ls7_c02354{letter-spacing:68.850000px;}
.lse_c02354{letter-spacing:73.350000px;}
.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;}
}
.ws18_c02354{word-spacing:-0.518400px;}
.ws17_c02354{word-spacing:-0.381600px;}
.ws0_c02354{word-spacing:-0.158112px;}
.ws3_c02354{word-spacing:-0.028800px;}
.ws5_c02354{word-spacing:-0.021600px;}
.ws4_c02354{word-spacing:-0.007200px;}
.ws2_c02354{word-spacing:0.000000px;}
.ws1_c02354{word-spacing:0.039528px;}
.ws1f_c02354{word-spacing:0.052704px;}
.ws19_c02354{word-spacing:0.072468px;}
.ws10_c02354{word-spacing:3.434400px;}
.ws11_c02354{word-spacing:3.592800px;}
.ws8_c02354{word-spacing:4.190400px;}
.ws9_c02354{word-spacing:4.262400px;}
.wse_c02354{word-spacing:4.975200px;}
.wsf_c02354{word-spacing:5.040000px;}
.wsc_c02354{word-spacing:6.746400px;}
.wsa_c02354{word-spacing:6.789600px;}
.wsb_c02354{word-spacing:6.847200px;}
.ws1a_c02354{word-spacing:7.984656px;}
.wsd_c02354{word-spacing:10.368000px;}
.ws16_c02354{word-spacing:10.569600px;}
.ws14_c02354{word-spacing:10.692000px;}
.ws15_c02354{word-spacing:10.742400px;}
.ws1c_c02354{word-spacing:10.824084px;}
.ws1b_c02354{word-spacing:10.830672px;}
.ws1d_c02354{word-spacing:16.259184px;}
.ws1e_c02354{word-spacing:16.272360px;}
.ws6_c02354{word-spacing:19.008000px;}
.ws7_c02354{word-spacing:19.051200px;}
.ws12_c02354{word-spacing:24.321600px;}
.ws13_c02354{word-spacing:24.501600px;}
._0_c02354{margin-left:-1.166400px;}
._2_c02354{width:1.146312px;}
._1_c02354{width:24.667200px;}
.fc0_c02354{color:rgb(0,0,0);}
.fs2_c02354{font-size:47.880000px;}
.fs0_c02354{font-size:65.880000px;}
.fs1_c02354{font-size:72.000000px;}
.y0_c02354{bottom:0.000000px;}
.y4_c02354{bottom:75.721107px;}
.y3_c02354{bottom:113.880450px;}
.y2d_c02354{bottom:141.510450px;}
.y2c_c02354{bottom:162.210450px;}
.y2b_c02354{bottom:182.910450px;}
.y2a_c02354{bottom:203.610450px;}
.y29_c02354{bottom:224.310450px;}
.y28_c02354{bottom:245.010450px;}
.y27_c02354{bottom:265.620450px;}
.y26_c02354{bottom:286.320450px;}
.y25_c02354{bottom:307.020450px;}
.y24_c02354{bottom:327.720450px;}
.y23_c02354{bottom:348.420450px;}
.y22_c02354{bottom:369.120450px;}
.y21_c02354{bottom:389.461395px;}
.y20_c02354{bottom:408.451305px;}
.y1f_c02354{bottom:427.441215px;}
.y1e_c02354{bottom:446.431125px;}
.y1d_c02354{bottom:465.330450px;}
.y1c_c02354{bottom:514.560450px;}
.y1b_c02354{bottom:539.940450px;}
.y1a_c02354{bottom:570.990450px;}
.y19_c02354{bottom:602.040450px;}
.y18_c02354{bottom:633.090450px;}
.y17_c02354{bottom:664.140450px;}
.y16_c02354{bottom:695.190450px;}
.y15_c02354{bottom:726.240450px;}
.y14_c02354{bottom:777.540600px;}
.y13_c02354{bottom:799.950450px;}
.y12_c02354{bottom:823.710450px;}
.y11_c02354{bottom:868.350450px;}
.y10_c02354{bottom:889.050450px;}
.yf_c02354{bottom:909.750450px;}
.ye_c02354{bottom:930.270450px;}
.yd_c02354{bottom:950.970450px;}
.yc_c02354{bottom:971.670450px;}
.yb_c02354{bottom:992.370450px;}
.ya_c02354{bottom:1013.070450px;}
.y9_c02354{bottom:1036.740450px;}
.y8_c02354{bottom:1082.100549px;}
.y7_c02354{bottom:1097.940450px;}
.y6_c02354{bottom:1116.120450px;}
.y5_c02354{bottom:1139.880450px;}
.y2_c02354{bottom:1172.820522px;}
.y1_c02354{bottom:1194.600450px;}
.h4_c02354{height:43.909277px;}
.h9_c02354{height:46.991602px;}
.h6_c02354{height:48.254063px;}
.h3_c02354{height:54.331699px;}
.h8_c02354{height:64.657617px;}
.h1_c02354{height:66.394687px;}
.h7_c02354{height:70.664062px;}
.h2_c02354{height:72.562212px;}
.h5_c02354{height:72.562500px;}
.h0_c02354{height:1263.000000px;}
.w1_c02354{width:892.500000px;}
.w0_c02354{width:892.830000px;}
.x0_c02354{left:0.000000px;}
.x4_c02354{left:127.619325px;}
.x6_c02354{left:135.630000px;}
.x7_c02354{left:170.190000px;}
.x8_c02354{left:191.429712px;}
.x5_c02354{left:236.880000px;}
.x1_c02354{left:420.930000px;}
.x3_c02354{left:438.120000px;}
.x2_c02354{left:490.950558px;}
@media print{
.v1_c02354{vertical-align:-76.480352pt;}
.v2_c02354{vertical-align:-74.560000pt;}
.v3_c02354{vertical-align:-72.000533pt;}
.v4_c02354{vertical-align:-69.439467pt;}
.v0_c02354{vertical-align:0.000000pt;}
.ls17_c02354{letter-spacing:-0.019200pt;}
.ls16_c02354{letter-spacing:-0.006400pt;}
.ls14_c02354{letter-spacing:0.000000pt;}
.ls4_c02354{letter-spacing:0.006400pt;}
.lsc_c02354{letter-spacing:0.012800pt;}
.lsf_c02354{letter-spacing:0.017568pt;}
.ls5_c02354{letter-spacing:0.019200pt;}
.ls2_c02354{letter-spacing:0.025600pt;}
.ls12_c02354{letter-spacing:0.029280pt;}
.ls13_c02354{letter-spacing:0.035136pt;}
.lsb_c02354{letter-spacing:0.038400pt;}
.ls1_c02354{letter-spacing:0.040992pt;}
.ls9_c02354{letter-spacing:0.044800pt;}
.ls0_c02354{letter-spacing:0.046848pt;}
.lsd_c02354{letter-spacing:0.051200pt;}
.ls10_c02354{letter-spacing:0.052704pt;}
.ls8_c02354{letter-spacing:0.057600pt;}
.ls11_c02354{letter-spacing:0.058560pt;}
.lsa_c02354{letter-spacing:0.064000pt;}
.ls15_c02354{letter-spacing:0.081984pt;}
.ls18_c02354{letter-spacing:0.140800pt;}
.ls6_c02354{letter-spacing:12.480000pt;}
.ls3_c02354{letter-spacing:19.440000pt;}
.ls7_c02354{letter-spacing:61.200000pt;}
.lse_c02354{letter-spacing:65.200000pt;}
.ws18_c02354{word-spacing:-0.460800pt;}
.ws17_c02354{word-spacing:-0.339200pt;}
.ws0_c02354{word-spacing:-0.140544pt;}
.ws3_c02354{word-spacing:-0.025600pt;}
.ws5_c02354{word-spacing:-0.019200pt;}
.ws4_c02354{word-spacing:-0.006400pt;}
.ws2_c02354{word-spacing:0.000000pt;}
.ws1_c02354{word-spacing:0.035136pt;}
.ws1f_c02354{word-spacing:0.046848pt;}
.ws19_c02354{word-spacing:0.064416pt;}
.ws10_c02354{word-spacing:3.052800pt;}
.ws11_c02354{word-spacing:3.193600pt;}
.ws8_c02354{word-spacing:3.724800pt;}
.ws9_c02354{word-spacing:3.788800pt;}
.wse_c02354{word-spacing:4.422400pt;}
.wsf_c02354{word-spacing:4.480000pt;}
.wsc_c02354{word-spacing:5.996800pt;}
.wsa_c02354{word-spacing:6.035200pt;}
.wsb_c02354{word-spacing:6.086400pt;}
.ws1a_c02354{word-spacing:7.097472pt;}
.wsd_c02354{word-spacing:9.216000pt;}
.ws16_c02354{word-spacing:9.395200pt;}
.ws14_c02354{word-spacing:9.504000pt;}
.ws15_c02354{word-spacing:9.548800pt;}
.ws1c_c02354{word-spacing:9.621408pt;}
.ws1b_c02354{word-spacing:9.627264pt;}
.ws1d_c02354{word-spacing:14.452608pt;}
.ws1e_c02354{word-spacing:14.464320pt;}
.ws6_c02354{word-spacing:16.896000pt;}
.ws7_c02354{word-spacing:16.934400pt;}
.ws12_c02354{word-spacing:21.619200pt;}
.ws13_c02354{word-spacing:21.779200pt;}
._0_c02354{margin-left:-1.036800pt;}
._2_c02354{width:1.018944pt;}
._1_c02354{width:21.926400pt;}
.fs2_c02354{font-size:42.560000pt;}
.fs0_c02354{font-size:58.560000pt;}
.fs1_c02354{font-size:64.000000pt;}
.y0_c02354{bottom:0.000000pt;}
.y4_c02354{bottom:67.307651pt;}
.y3_c02354{bottom:101.227067pt;}
.y2d_c02354{bottom:125.787067pt;}
.y2c_c02354{bottom:144.187067pt;}
.y2b_c02354{bottom:162.587067pt;}
.y2a_c02354{bottom:180.987067pt;}
.y29_c02354{bottom:199.387067pt;}
.y28_c02354{bottom:217.787067pt;}
.y27_c02354{bottom:236.107067pt;}
.y26_c02354{bottom:254.507067pt;}
.y25_c02354{bottom:272.907067pt;}
.y24_c02354{bottom:291.307067pt;}
.y23_c02354{bottom:309.707067pt;}
.y22_c02354{bottom:328.107067pt;}
.y21_c02354{bottom:346.187907pt;}
.y20_c02354{bottom:363.067827pt;}
.y1f_c02354{bottom:379.947747pt;}
.y1e_c02354{bottom:396.827667pt;}
.y1d_c02354{bottom:413.627067pt;}
.y1c_c02354{bottom:457.387067pt;}
.y1b_c02354{bottom:479.947067pt;}
.y1a_c02354{bottom:507.547067pt;}
.y19_c02354{bottom:535.147067pt;}
.y18_c02354{bottom:562.747067pt;}
.y17_c02354{bottom:590.347067pt;}
.y16_c02354{bottom:617.947067pt;}
.y15_c02354{bottom:645.547067pt;}
.y14_c02354{bottom:691.147200pt;}
.y13_c02354{bottom:711.067067pt;}
.y12_c02354{bottom:732.187067pt;}
.y11_c02354{bottom:771.867067pt;}
.y10_c02354{bottom:790.267067pt;}
.yf_c02354{bottom:808.667067pt;}
.ye_c02354{bottom:826.907067pt;}
.yd_c02354{bottom:845.307067pt;}
.yc_c02354{bottom:863.707067pt;}
.yb_c02354{bottom:882.107067pt;}
.ya_c02354{bottom:900.507067pt;}
.y9_c02354{bottom:921.547067pt;}
.y8_c02354{bottom:961.867155pt;}
.y7_c02354{bottom:975.947067pt;}
.y6_c02354{bottom:992.107067pt;}
.y5_c02354{bottom:1013.227067pt;}
.y2_c02354{bottom:1042.507131pt;}
.y1_c02354{bottom:1061.867067pt;}
.h4_c02354{height:39.030469pt;}
.h9_c02354{height:41.770312pt;}
.h6_c02354{height:42.892500pt;}
.h3_c02354{height:48.294844pt;}
.h8_c02354{height:57.473437pt;}
.h1_c02354{height:59.017500pt;}
.h7_c02354{height:62.812500pt;}
.h2_c02354{height:64.499744pt;}
.h5_c02354{height:64.500000pt;}
.h0_c02354{height:1122.666667pt;}
.w1_c02354{width:793.333333pt;}
.w0_c02354{width:793.626667pt;}
.x0_c02354{left:0.000000pt;}
.x4_c02354{left:113.439400pt;}
.x6_c02354{left:120.560000pt;}
.x7_c02354{left:151.280000pt;}
.x8_c02354{left:170.159744pt;}
.x5_c02354{left:210.560000pt;}
.x1_c02354{left:374.160000pt;}
.x3_c02354{left:389.440000pt;}
.x2_c02354{left:436.400496pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0edf31977117ff89f9be213d.woff2')format("woff");}.ff1_c02355{font-family:ff1_c02355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02355;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff2_c02355{font-family:ff2_c02355;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02355{font-family:ff3_c02355;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_c02355;src:url('chunks/assets/font_a35a461ab7cb63d55a20fcbf.woff2')format("woff");}.ff4_c02355{font-family:ff4_c02355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02355{vertical-align:-79.196544px;}
.v1_c02355{vertical-align:-78.120000px;}
.v0_c02355{vertical-align:0.000000px;}
.ls1b_c02355{letter-spacing:-0.057600px;}
.ls19_c02355{letter-spacing:-0.028800px;}
.ls1c_c02355{letter-spacing:-0.021600px;}
.ls1a_c02355{letter-spacing:-0.007200px;}
.ls16_c02355{letter-spacing:0.000000px;}
.lsc_c02355{letter-spacing:0.006588px;}
.lsa_c02355{letter-spacing:0.007200px;}
.ls11_c02355{letter-spacing:0.013176px;}
.ls3_c02355{letter-spacing:0.014400px;}
.ls18_c02355{letter-spacing:0.019764px;}
.ls6_c02355{letter-spacing:0.021600px;}
.ls10_c02355{letter-spacing:0.026352px;}
.ls2_c02355{letter-spacing:0.028800px;}
.lsd_c02355{letter-spacing:0.032940px;}
.ls8_c02355{letter-spacing:0.036000px;}
.ls9_c02355{letter-spacing:0.043200px;}
.ls1_c02355{letter-spacing:0.046116px;}
.ls7_c02355{letter-spacing:0.050400px;}
.ls0_c02355{letter-spacing:0.052704px;}
.ls15_c02355{letter-spacing:0.057600px;}
.ls5_c02355{letter-spacing:0.064800px;}
.lse_c02355{letter-spacing:0.072468px;}
.lsb_c02355{letter-spacing:0.085644px;}
.ls17_c02355{letter-spacing:0.092232px;}
.ls13_c02355{letter-spacing:0.100800px;}
.ls12_c02355{letter-spacing:0.105408px;}
.lsf_c02355{letter-spacing:0.131760px;}
.ls14_c02355{letter-spacing:20.070000px;}
.ls4_c02355{letter-spacing:73.350000px;}
.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;}
}
.ws29_c02355{word-spacing:-0.237600px;}
.ws28_c02355{word-spacing:-0.230400px;}
.ws2f_c02355{word-spacing:-0.158400px;}
.ws0_c02355{word-spacing:-0.158112px;}
.wsb_c02355{word-spacing:-0.093600px;}
.ws23_c02355{word-spacing:-0.043200px;}
.ws2c_c02355{word-spacing:-0.036000px;}
.ws2a_c02355{word-spacing:-0.021600px;}
.ws1e_c02355{word-spacing:-0.013176px;}
.wsc_c02355{word-spacing:-0.007200px;}
.ws2_c02355{word-spacing:0.000000px;}
.ws4_c02355{word-spacing:0.021600px;}
.ws1_c02355{word-spacing:0.039528px;}
.ws5_c02355{word-spacing:0.230400px;}
.ws6_c02355{word-spacing:0.295200px;}
.ws24_c02355{word-spacing:0.302400px;}
.ws9_c02355{word-spacing:2.109600px;}
.wsa_c02355{word-spacing:2.124000px;}
.ws12_c02355{word-spacing:2.575908px;}
.ws11_c02355{word-spacing:2.602260px;}
.ws2b_c02355{word-spacing:2.836800px;}
.ws20_c02355{word-spacing:3.088800px;}
.ws1f_c02355{word-spacing:3.225600px;}
.ws19_c02355{word-spacing:3.979152px;}
.wsd_c02355{word-spacing:3.998916px;}
.ws18_c02355{word-spacing:4.018680px;}
.wsf_c02355{word-spacing:5.771088px;}
.ws10_c02355{word-spacing:5.797440px;}
.ws1c_c02355{word-spacing:6.199308px;}
.ws1d_c02355{word-spacing:6.205896px;}
.ws7_c02355{word-spacing:6.458400px;}
.ws8_c02355{word-spacing:6.508800px;}
.ws1b_c02355{word-spacing:7.266564px;}
.ws21_c02355{word-spacing:8.546400px;}
.ws22_c02355{word-spacing:8.647200px;}
.wse_c02355{word-spacing:9.361548px;}
.ws2d_c02355{word-spacing:13.190400px;}
.ws2e_c02355{word-spacing:13.276800px;}
.ws3_c02355{word-spacing:14.371200px;}
.ws25_c02355{word-spacing:15.480000px;}
.ws27_c02355{word-spacing:15.501600px;}
.ws26_c02355{word-spacing:15.537600px;}
.ws15_c02355{word-spacing:16.239420px;}
.ws1a_c02355{word-spacing:16.581996px;}
.ws13_c02355{word-spacing:17.326440px;}
.ws14_c02355{word-spacing:17.352792px;}
.ws17_c02355{word-spacing:21.200184px;}
.ws16_c02355{word-spacing:21.259476px;}
._1_c02355{margin-left:-2.505600px;}
._0_c02355{margin-left:-1.224000px;}
._2_c02355{width:1.297836px;}
.fc0_c02355{color:rgb(0,0,0);}
.fs3_c02355{font-size:47.880000px;}
.fs0_c02355{font-size:65.880000px;}
.fs1_c02355{font-size:72.000000px;}
.fs2_c02355{font-size:83.880000px;}
.y0_c02355{bottom:0.000000px;}
.y4_c02355{bottom:75.721107px;}
.y3_c02355{bottom:113.880450px;}
.y2e_c02355{bottom:142.860450px;}
.y2d_c02355{bottom:163.560450px;}
.y2c_c02355{bottom:184.260450px;}
.y2b_c02355{bottom:204.960450px;}
.y2a_c02355{bottom:225.660450px;}
.y29_c02355{bottom:256.710450px;}
.y28_c02355{bottom:307.200450px;}
.y27_c02355{bottom:325.290450px;}
.y26_c02355{bottom:349.050450px;}
.y25_c02355{bottom:392.430099px;}
.y24_c02355{bottom:406.200387px;}
.y23_c02355{bottom:420.060450px;}
.y22_c02355{bottom:445.350600px;}
.y21_c02355{bottom:476.400600px;}
.y20_c02355{bottom:526.980450px;}
.y1f_c02355{bottom:544.980450px;}
.y1e_c02355{bottom:568.830450px;}
.y1d_c02355{bottom:612.209586px;}
.y1c_c02355{bottom:625.979874px;}
.y1b_c02355{bottom:639.750162px;}
.y1a_c02355{bottom:653.520450px;}
.y19_c02355{bottom:668.550450px;}
.y18_c02355{bottom:708.780450px;}
.y17_c02355{bottom:723.452610px;}
.y16_c02355{bottom:742.351935px;}
.y15_c02355{bottom:761.341845px;}
.y14_c02355{bottom:780.331755px;}
.y13_c02355{bottom:799.321665px;}
.y12_c02355{bottom:818.311575px;}
.y11_c02355{bottom:837.210900px;}
.y10_c02355{bottom:856.200810px;}
.yf_c02355{bottom:875.190720px;}
.ye_c02355{bottom:894.180630px;}
.yd_c02355{bottom:913.170540px;}
.yc_c02355{bottom:932.160450px;}
.yb_c02355{bottom:961.770450px;}
.ya_c02355{bottom:992.820450px;}
.y9_c02355{bottom:1023.870450px;}
.y8_c02355{bottom:1074.450450px;}
.y7_c02355{bottom:1092.450450px;}
.y6_c02355{bottom:1116.300450px;}
.y5_c02355{bottom:1139.880450px;}
.y2_c02355{bottom:1172.820522px;}
.y1_c02355{bottom:1194.600450px;}
.h4_c02355{height:43.909277px;}
.h8_c02355{height:46.991602px;}
.h3_c02355{height:54.331699px;}
.h9_c02355{height:64.657617px;}
.h1_c02355{height:66.394687px;}
.h6_c02355{height:70.664062px;}
.h2_c02355{height:72.562212px;}
.h5_c02355{height:72.562500px;}
.h7_c02355{height:82.323633px;}
.h0_c02355{height:1263.000000px;}
.w1_c02355{width:892.500000px;}
.w0_c02355{width:892.830000px;}
.x0_c02355{left:0.000000px;}
.x4_c02355{left:127.619325px;}
.x5_c02355{left:135.630000px;}
.x7_c02355{left:170.190288px;}
.x6_c02355{left:191.430000px;}
.x1_c02355{left:420.930000px;}
.x3_c02355{left:438.120000px;}
.x2_c02355{left:490.950558px;}
@media print{
.v2_c02355{vertical-align:-70.396928pt;}
.v1_c02355{vertical-align:-69.440000pt;}
.v0_c02355{vertical-align:0.000000pt;}
.ls1b_c02355{letter-spacing:-0.051200pt;}
.ls19_c02355{letter-spacing:-0.025600pt;}
.ls1c_c02355{letter-spacing:-0.019200pt;}
.ls1a_c02355{letter-spacing:-0.006400pt;}
.ls16_c02355{letter-spacing:0.000000pt;}
.lsc_c02355{letter-spacing:0.005856pt;}
.lsa_c02355{letter-spacing:0.006400pt;}
.ls11_c02355{letter-spacing:0.011712pt;}
.ls3_c02355{letter-spacing:0.012800pt;}
.ls18_c02355{letter-spacing:0.017568pt;}
.ls6_c02355{letter-spacing:0.019200pt;}
.ls10_c02355{letter-spacing:0.023424pt;}
.ls2_c02355{letter-spacing:0.025600pt;}
.lsd_c02355{letter-spacing:0.029280pt;}
.ls8_c02355{letter-spacing:0.032000pt;}
.ls9_c02355{letter-spacing:0.038400pt;}
.ls1_c02355{letter-spacing:0.040992pt;}
.ls7_c02355{letter-spacing:0.044800pt;}
.ls0_c02355{letter-spacing:0.046848pt;}
.ls15_c02355{letter-spacing:0.051200pt;}
.ls5_c02355{letter-spacing:0.057600pt;}
.lse_c02355{letter-spacing:0.064416pt;}
.lsb_c02355{letter-spacing:0.076128pt;}
.ls17_c02355{letter-spacing:0.081984pt;}
.ls13_c02355{letter-spacing:0.089600pt;}
.ls12_c02355{letter-spacing:0.093696pt;}
.lsf_c02355{letter-spacing:0.117120pt;}
.ls14_c02355{letter-spacing:17.840000pt;}
.ls4_c02355{letter-spacing:65.200000pt;}
.ws29_c02355{word-spacing:-0.211200pt;}
.ws28_c02355{word-spacing:-0.204800pt;}
.ws2f_c02355{word-spacing:-0.140800pt;}
.ws0_c02355{word-spacing:-0.140544pt;}
.wsb_c02355{word-spacing:-0.083200pt;}
.ws23_c02355{word-spacing:-0.038400pt;}
.ws2c_c02355{word-spacing:-0.032000pt;}
.ws2a_c02355{word-spacing:-0.019200pt;}
.ws1e_c02355{word-spacing:-0.011712pt;}
.wsc_c02355{word-spacing:-0.006400pt;}
.ws2_c02355{word-spacing:0.000000pt;}
.ws4_c02355{word-spacing:0.019200pt;}
.ws1_c02355{word-spacing:0.035136pt;}
.ws5_c02355{word-spacing:0.204800pt;}
.ws6_c02355{word-spacing:0.262400pt;}
.ws24_c02355{word-spacing:0.268800pt;}
.ws9_c02355{word-spacing:1.875200pt;}
.wsa_c02355{word-spacing:1.888000pt;}
.ws12_c02355{word-spacing:2.289696pt;}
.ws11_c02355{word-spacing:2.313120pt;}
.ws2b_c02355{word-spacing:2.521600pt;}
.ws20_c02355{word-spacing:2.745600pt;}
.ws1f_c02355{word-spacing:2.867200pt;}
.ws19_c02355{word-spacing:3.537024pt;}
.wsd_c02355{word-spacing:3.554592pt;}
.ws18_c02355{word-spacing:3.572160pt;}
.wsf_c02355{word-spacing:5.129856pt;}
.ws10_c02355{word-spacing:5.153280pt;}
.ws1c_c02355{word-spacing:5.510496pt;}
.ws1d_c02355{word-spacing:5.516352pt;}
.ws7_c02355{word-spacing:5.740800pt;}
.ws8_c02355{word-spacing:5.785600pt;}
.ws1b_c02355{word-spacing:6.459168pt;}
.ws21_c02355{word-spacing:7.596800pt;}
.ws22_c02355{word-spacing:7.686400pt;}
.wse_c02355{word-spacing:8.321376pt;}
.ws2d_c02355{word-spacing:11.724800pt;}
.ws2e_c02355{word-spacing:11.801600pt;}
.ws3_c02355{word-spacing:12.774400pt;}
.ws25_c02355{word-spacing:13.760000pt;}
.ws27_c02355{word-spacing:13.779200pt;}
.ws26_c02355{word-spacing:13.811200pt;}
.ws15_c02355{word-spacing:14.435040pt;}
.ws1a_c02355{word-spacing:14.739552pt;}
.ws13_c02355{word-spacing:15.401280pt;}
.ws14_c02355{word-spacing:15.424704pt;}
.ws17_c02355{word-spacing:18.844608pt;}
.ws16_c02355{word-spacing:18.897312pt;}
._1_c02355{margin-left:-2.227200pt;}
._0_c02355{margin-left:-1.088000pt;}
._2_c02355{width:1.153632pt;}
.fs3_c02355{font-size:42.560000pt;}
.fs0_c02355{font-size:58.560000pt;}
.fs1_c02355{font-size:64.000000pt;}
.fs2_c02355{font-size:74.560000pt;}
.y0_c02355{bottom:0.000000pt;}
.y4_c02355{bottom:67.307651pt;}
.y3_c02355{bottom:101.227067pt;}
.y2e_c02355{bottom:126.987067pt;}
.y2d_c02355{bottom:145.387067pt;}
.y2c_c02355{bottom:163.787067pt;}
.y2b_c02355{bottom:182.187067pt;}
.y2a_c02355{bottom:200.587067pt;}
.y29_c02355{bottom:228.187067pt;}
.y28_c02355{bottom:273.067067pt;}
.y27_c02355{bottom:289.147067pt;}
.y26_c02355{bottom:310.267067pt;}
.y25_c02355{bottom:348.826755pt;}
.y24_c02355{bottom:361.067011pt;}
.y23_c02355{bottom:373.387067pt;}
.y22_c02355{bottom:395.867200pt;}
.y21_c02355{bottom:423.467200pt;}
.y20_c02355{bottom:468.427067pt;}
.y1f_c02355{bottom:484.427067pt;}
.y1e_c02355{bottom:505.627067pt;}
.y1d_c02355{bottom:544.186299pt;}
.y1c_c02355{bottom:556.426555pt;}
.y1b_c02355{bottom:568.666811pt;}
.y1a_c02355{bottom:580.907067pt;}
.y19_c02355{bottom:594.267067pt;}
.y18_c02355{bottom:630.027067pt;}
.y17_c02355{bottom:643.068987pt;}
.y16_c02355{bottom:659.868387pt;}
.y15_c02355{bottom:676.748307pt;}
.y14_c02355{bottom:693.628227pt;}
.y13_c02355{bottom:710.508147pt;}
.y12_c02355{bottom:727.388067pt;}
.y11_c02355{bottom:744.187467pt;}
.y10_c02355{bottom:761.067387pt;}
.yf_c02355{bottom:777.947307pt;}
.ye_c02355{bottom:794.827227pt;}
.yd_c02355{bottom:811.707147pt;}
.yc_c02355{bottom:828.587067pt;}
.yb_c02355{bottom:854.907067pt;}
.ya_c02355{bottom:882.507067pt;}
.y9_c02355{bottom:910.107067pt;}
.y8_c02355{bottom:955.067067pt;}
.y7_c02355{bottom:971.067067pt;}
.y6_c02355{bottom:992.267067pt;}
.y5_c02355{bottom:1013.227067pt;}
.y2_c02355{bottom:1042.507131pt;}
.y1_c02355{bottom:1061.867067pt;}
.h4_c02355{height:39.030469pt;}
.h8_c02355{height:41.770312pt;}
.h3_c02355{height:48.294844pt;}
.h9_c02355{height:57.473437pt;}
.h1_c02355{height:59.017500pt;}
.h6_c02355{height:62.812500pt;}
.h2_c02355{height:64.499744pt;}
.h5_c02355{height:64.500000pt;}
.h7_c02355{height:73.176562pt;}
.h0_c02355{height:1122.666667pt;}
.w1_c02355{width:793.333333pt;}
.w0_c02355{width:793.626667pt;}
.x0_c02355{left:0.000000pt;}
.x4_c02355{left:113.439400pt;}
.x5_c02355{left:120.560000pt;}
.x7_c02355{left:151.280256pt;}
.x6_c02355{left:170.160000pt;}
.x1_c02355{left:374.160000pt;}
.x3_c02355{left:389.440000pt;}
.x2_c02355{left:436.400496pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52a6086b7820f30a047bca92.woff2')format("woff");}.ff1_c02356{font-family:ff1_c02356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02356;src:url('chunks/assets/font_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02356{font-family:ff2_c02356;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02356{font-family:ff3_c02356;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_c02356;src:url('chunks/assets/font_d75eae9e91fe9ed7d88e2832.woff2')format("woff");}.ff4_c02356{font-family:ff4_c02356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c02356{letter-spacing:0.000000px;}
.ls8_c02356{letter-spacing:0.007200px;}
.ls3_c02356{letter-spacing:0.014400px;}
.ls2_c02356{letter-spacing:0.021600px;}
.ls4_c02356{letter-spacing:0.036000px;}
.ls5_c02356{letter-spacing:0.043200px;}
.ls1_c02356{letter-spacing:0.046116px;}
.ls0_c02356{letter-spacing:0.052704px;}
.ls7_c02356{letter-spacing:0.092232px;}
.sc__c02356{text-shadow:none;}
.sc0_c02356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02356{-webkit-text-stroke:0px transparent;}
.sc0_c02356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02356{word-spacing:-0.158112px;}
.ws8_c02356{word-spacing:-0.122400px;}
.ws9_c02356{word-spacing:-0.093600px;}
.ws3_c02356{word-spacing:-0.021600px;}
.ws6_c02356{word-spacing:-0.007200px;}
.ws2_c02356{word-spacing:0.000000px;}
.ws1_c02356{word-spacing:0.039528px;}
.ws5_c02356{word-spacing:3.384000px;}
.ws4_c02356{word-spacing:3.585600px;}
.ws7_c02356{word-spacing:6.760800px;}
._0_c02356{margin-left:-1.123200px;}
.fc0_c02356{color:rgb(0,0,0);}
.fs0_c02356{font-size:65.880000px;}
.fs1_c02356{font-size:72.000000px;}
.y0_c02356{bottom:0.000000px;}
.y4_c02356{bottom:75.721107px;}
.y3_c02356{bottom:113.880450px;}
.y11_c02356{bottom:747.574392px;}
.y10_c02356{bottom:785.733735px;}
.yf_c02356{bottom:823.893078px;}
.ye_c02356{bottom:862.052421px;}
.yd_c02356{bottom:900.211764px;}
.yc_c02356{bottom:938.371107px;}
.yb_c02356{bottom:976.530450px;}
.ya_c02356{bottom:1006.680450px;}
.y9_c02356{bottom:1037.730450px;}
.y8_c02356{bottom:1068.780450px;}
.y7_c02356{bottom:1092.450450px;}
.y6_c02356{bottom:1116.300450px;}
.y5_c02356{bottom:1139.880450px;}
.y2_c02356{bottom:1172.820522px;}
.y1_c02356{bottom:1194.600450px;}
.h4_c02356{height:43.909277px;}
.h3_c02356{height:54.331699px;}
.h1_c02356{height:66.394687px;}
.h6_c02356{height:70.664062px;}
.h2_c02356{height:72.562212px;}
.h5_c02356{height:72.562500px;}
.h0_c02356{height:1263.000000px;}
.w1_c02356{width:892.500000px;}
.w0_c02356{width:892.830000px;}
.x0_c02356{left:0.000000px;}
.x4_c02356{left:127.619325px;}
.x5_c02356{left:135.630000px;}
.x6_c02356{left:148.950000px;}
.x1_c02356{left:420.930000px;}
.x3_c02356{left:438.120000px;}
.x2_c02356{left:490.950558px;}
@media print{
.v0_c02356{vertical-align:0.000000pt;}
.ls6_c02356{letter-spacing:0.000000pt;}
.ls8_c02356{letter-spacing:0.006400pt;}
.ls3_c02356{letter-spacing:0.012800pt;}
.ls2_c02356{letter-spacing:0.019200pt;}
.ls4_c02356{letter-spacing:0.032000pt;}
.ls5_c02356{letter-spacing:0.038400pt;}
.ls1_c02356{letter-spacing:0.040992pt;}
.ls0_c02356{letter-spacing:0.046848pt;}
.ls7_c02356{letter-spacing:0.081984pt;}
.ws0_c02356{word-spacing:-0.140544pt;}
.ws8_c02356{word-spacing:-0.108800pt;}
.ws9_c02356{word-spacing:-0.083200pt;}
.ws3_c02356{word-spacing:-0.019200pt;}
.ws6_c02356{word-spacing:-0.006400pt;}
.ws2_c02356{word-spacing:0.000000pt;}
.ws1_c02356{word-spacing:0.035136pt;}
.ws5_c02356{word-spacing:3.008000pt;}
.ws4_c02356{word-spacing:3.187200pt;}
.ws7_c02356{word-spacing:6.009600pt;}
._0_c02356{margin-left:-0.998400pt;}
.fs0_c02356{font-size:58.560000pt;}
.fs1_c02356{font-size:64.000000pt;}
.y0_c02356{bottom:0.000000pt;}
.y4_c02356{bottom:67.307651pt;}
.y3_c02356{bottom:101.227067pt;}
.y11_c02356{bottom:664.510571pt;}
.y10_c02356{bottom:698.429987pt;}
.yf_c02356{bottom:732.349403pt;}
.ye_c02356{bottom:766.268819pt;}
.yd_c02356{bottom:800.188235pt;}
.yc_c02356{bottom:834.107651pt;}
.yb_c02356{bottom:868.027067pt;}
.ya_c02356{bottom:894.827067pt;}
.y9_c02356{bottom:922.427067pt;}
.y8_c02356{bottom:950.027067pt;}
.y7_c02356{bottom:971.067067pt;}
.y6_c02356{bottom:992.267067pt;}
.y5_c02356{bottom:1013.227067pt;}
.y2_c02356{bottom:1042.507131pt;}
.y1_c02356{bottom:1061.867067pt;}
.h4_c02356{height:39.030469pt;}
.h3_c02356{height:48.294844pt;}
.h1_c02356{height:59.017500pt;}
.h6_c02356{height:62.812500pt;}
.h2_c02356{height:64.499744pt;}
.h5_c02356{height:64.500000pt;}
.h0_c02356{height:1122.666667pt;}
.w1_c02356{width:793.333333pt;}
.w0_c02356{width:793.626667pt;}
.x0_c02356{left:0.000000pt;}
.x4_c02356{left:113.439400pt;}
.x5_c02356{left:120.560000pt;}
.x6_c02356{left:132.400000pt;}
.x1_c02356{left:374.160000pt;}
.x3_c02356{left:389.440000pt;}
.x2_c02356{left:436.400496pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f710ec5405813b19c7a1d125.woff2')format("woff");}.ff1_c02357{font-family:ff1_c02357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02357;src:url('chunks/assets/font_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02357{font-family:ff2_c02357;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02357{font-family:ff3_c02357;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_c02357;src:url('chunks/assets/font_f89c90132ec8ffd3b949e01b.woff2')format("woff");}.ff4_c02357{font-family:ff4_c02357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02357;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c02357{font-family:ff5_c02357;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_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);}
.v1_c02357{vertical-align:-69.840000px;}
.v0_c02357{vertical-align:0.000000px;}
.ls13_c02357{letter-spacing:-0.014400px;}
.ls15_c02357{letter-spacing:-0.013176px;}
.ls12_c02357{letter-spacing:0.000000px;}
.ls1_c02357{letter-spacing:0.006588px;}
.lsa_c02357{letter-spacing:0.013176px;}
.ls14_c02357{letter-spacing:0.014400px;}
.lsc_c02357{letter-spacing:0.019764px;}
.lsf_c02357{letter-spacing:0.026352px;}
.ls3_c02357{letter-spacing:0.028800px;}
.lsd_c02357{letter-spacing:0.032940px;}
.ls2_c02357{letter-spacing:0.036000px;}
.lse_c02357{letter-spacing:0.039528px;}
.ls9_c02357{letter-spacing:0.046116px;}
.ls5_c02357{letter-spacing:0.052704px;}
.lsb_c02357{letter-spacing:0.059292px;}
.ls8_c02357{letter-spacing:0.065880px;}
.ls6_c02357{letter-spacing:0.072468px;}
.ls4_c02357{letter-spacing:0.079056px;}
.ls10_c02357{letter-spacing:0.085644px;}
.ls0_c02357{letter-spacing:0.092232px;}
.ls7_c02357{letter-spacing:0.098820px;}
.ls11_c02357{letter-spacing:76.320000px;}
.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;}
}
.ws5_c02357{word-spacing:-0.216000px;}
.ws0_c02357{word-spacing:-0.158112px;}
.ws6_c02357{word-spacing:-0.028800px;}
.ws7_c02357{word-spacing:-0.014400px;}
.ws1_c02357{word-spacing:0.000000px;}
.ws21_c02357{word-spacing:0.006588px;}
.ws4_c02357{word-spacing:0.014400px;}
.ws9_c02357{word-spacing:0.019764px;}
.ws3_c02357{word-spacing:0.039528px;}
.ws2b_c02357{word-spacing:0.052704px;}
.ws12_c02357{word-spacing:0.072468px;}
.ws2_c02357{word-spacing:0.085644px;}
.wsc_c02357{word-spacing:0.395280px;}
.wsd_c02357{word-spacing:0.447984px;}
.ws8_c02357{word-spacing:0.731268px;}
.ws18_c02357{word-spacing:1.100196px;}
.ws17_c02357{word-spacing:1.113372px;}
.wsa_c02357{word-spacing:1.462536px;}
.wsb_c02357{word-spacing:1.482300px;}
.ws19_c02357{word-spacing:3.267648px;}
.ws1a_c02357{word-spacing:3.287412px;}
.ws16_c02357{word-spacing:3.610224px;}
.ws15_c02357{word-spacing:3.656340px;}
.ws11_c02357{word-spacing:6.508944px;}
.ws10_c02357{word-spacing:6.555060px;}
.wsf_c02357{word-spacing:6.877872px;}
.wse_c02357{word-spacing:6.884460px;}
.ws14_c02357{word-spacing:7.951716px;}
.ws13_c02357{word-spacing:7.978068px;}
.ws31_c02357{word-spacing:8.314056px;}
.ws32_c02357{word-spacing:8.327232px;}
.ws22_c02357{word-spacing:10.145520px;}
.ws20_c02357{word-spacing:10.824084px;}
.ws30_c02357{word-spacing:10.837260px;}
.ws1f_c02357{word-spacing:10.843848px;}
.ws2e_c02357{word-spacing:11.897928px;}
.ws2f_c02357{word-spacing:11.963808px;}
.ws1b_c02357{word-spacing:12.299796px;}
.ws1c_c02357{word-spacing:12.306384px;}
.ws27_c02357{word-spacing:15.139224px;}
.ws28_c02357{word-spacing:15.158988px;}
.ws1d_c02357{word-spacing:15.877080px;}
.ws1e_c02357{word-spacing:15.883668px;}
.ws2c_c02357{word-spacing:17.293500px;}
.ws2d_c02357{word-spacing:17.306676px;}
.ws2a_c02357{word-spacing:21.997332px;}
.ws29_c02357{word-spacing:22.010508px;}
.ws25_c02357{word-spacing:22.741776px;}
.ws26_c02357{word-spacing:22.781304px;}
.ws24_c02357{word-spacing:32.096736px;}
.ws23_c02357{word-spacing:32.472252px;}
._0_c02357{margin-left:-1.258308px;}
._1_c02357{width:1.007964px;}
.fc0_c02357{color:rgb(0,0,0);}
.fs2_c02357{font-size:36.000000px;}
.fs3_c02357{font-size:54.000000px;}
.fs0_c02357{font-size:65.880000px;}
.fs1_c02357{font-size:72.000000px;}
.y0_c02357{bottom:0.000000px;}
.y3_c02357{bottom:75.721467px;}
.y2_c02357{bottom:113.880810px;}
.y3b_c02357{bottom:136.380600px;}
.y3a_c02357{bottom:151.861050px;}
.y39_c02357{bottom:167.430600px;}
.y38_c02357{bottom:182.911050px;}
.y37_c02357{bottom:198.480600px;}
.y36_c02357{bottom:213.961050px;}
.y35_c02357{bottom:229.530600px;}
.y34_c02357{bottom:245.011050px;}
.y33_c02357{bottom:260.580600px;}
.y32_c02357{bottom:276.061050px;}
.y31_c02357{bottom:291.630600px;}
.y30_c02357{bottom:307.111050px;}
.y2f_c02357{bottom:322.680600px;}
.y2e_c02357{bottom:338.161050px;}
.y2d_c02357{bottom:353.730600px;}
.y2c_c02357{bottom:369.211050px;}
.y2b_c02357{bottom:384.780600px;}
.y2a_c02357{bottom:400.261050px;}
.y29_c02357{bottom:415.830600px;}
.y28_c02357{bottom:431.311050px;}
.y27_c02357{bottom:446.880600px;}
.y26_c02357{bottom:462.361050px;}
.y25_c02357{bottom:477.930600px;}
.y24_c02357{bottom:494.940600px;}
.y23_c02357{bottom:513.930600px;}
.y22_c02357{bottom:532.830450px;}
.y21_c02357{bottom:551.820450px;}
.y20_c02357{bottom:588.270450px;}
.y1f_c02357{bottom:600.150450px;}
.y1e_c02357{bottom:619.140450px;}
.y1d_c02357{bottom:638.040450px;}
.y1c_c02357{bottom:657.030450px;}
.y1b_c02357{bottom:676.020450px;}
.y1a_c02357{bottom:712.470450px;}
.y19_c02357{bottom:724.350450px;}
.y18_c02357{bottom:743.340450px;}
.y17_c02357{bottom:762.240450px;}
.y16_c02357{bottom:781.230450px;}
.y15_c02357{bottom:800.220450px;}
.y14_c02357{bottom:819.210450px;}
.y13_c02357{bottom:838.200450px;}
.y12_c02357{bottom:857.100450px;}
.y11_c02357{bottom:876.090450px;}
.y10_c02357{bottom:893.550450px;}
.yf_c02357{bottom:905.430450px;}
.ye_c02357{bottom:924.420450px;}
.yd_c02357{bottom:943.410450px;}
.yc_c02357{bottom:962.310450px;}
.yb_c02357{bottom:981.300450px;}
.ya_c02357{bottom:1000.290450px;}
.y9_c02357{bottom:1019.280450px;}
.y8_c02357{bottom:1038.900450px;}
.y7_c02357{bottom:1057.890450px;}
.y6_c02357{bottom:1077.150450px;}
.y5_c02357{bottom:1108.920450px;}
.y4_c02357{bottom:1139.970450px;}
.y1_c02357{bottom:1194.510450px;}
.h6_c02357{height:35.332031px;}
.h3_c02357{height:43.909277px;}
.h2_c02357{height:54.331699px;}
.h7_c02357{height:56.320312px;}
.h5_c02357{height:64.657617px;}
.h1_c02357{height:66.394687px;}
.h4_c02357{height:72.562500px;}
.h0_c02357{height:1263.000000px;}
.w1_c02357{width:892.500000px;}
.w0_c02357{width:892.830000px;}
.x0_c02357{left:0.000000px;}
.x3_c02357{left:127.620045px;}
.x1_c02357{left:128.880000px;}
.x7_c02357{left:148.950000px;}
.x5_c02357{left:173.880000px;}
.x6_c02357{left:392.850000px;}
.x4_c02357{left:406.350000px;}
.x2_c02357{left:438.120720px;}
@media print{
.v1_c02357{vertical-align:-62.080000pt;}
.v0_c02357{vertical-align:0.000000pt;}
.ls13_c02357{letter-spacing:-0.012800pt;}
.ls15_c02357{letter-spacing:-0.011712pt;}
.ls12_c02357{letter-spacing:0.000000pt;}
.ls1_c02357{letter-spacing:0.005856pt;}
.lsa_c02357{letter-spacing:0.011712pt;}
.ls14_c02357{letter-spacing:0.012800pt;}
.lsc_c02357{letter-spacing:0.017568pt;}
.lsf_c02357{letter-spacing:0.023424pt;}
.ls3_c02357{letter-spacing:0.025600pt;}
.lsd_c02357{letter-spacing:0.029280pt;}
.ls2_c02357{letter-spacing:0.032000pt;}
.lse_c02357{letter-spacing:0.035136pt;}
.ls9_c02357{letter-spacing:0.040992pt;}
.ls5_c02357{letter-spacing:0.046848pt;}
.lsb_c02357{letter-spacing:0.052704pt;}
.ls8_c02357{letter-spacing:0.058560pt;}
.ls6_c02357{letter-spacing:0.064416pt;}
.ls4_c02357{letter-spacing:0.070272pt;}
.ls10_c02357{letter-spacing:0.076128pt;}
.ls0_c02357{letter-spacing:0.081984pt;}
.ls7_c02357{letter-spacing:0.087840pt;}
.ls11_c02357{letter-spacing:67.840000pt;}
.ws5_c02357{word-spacing:-0.192000pt;}
.ws0_c02357{word-spacing:-0.140544pt;}
.ws6_c02357{word-spacing:-0.025600pt;}
.ws7_c02357{word-spacing:-0.012800pt;}
.ws1_c02357{word-spacing:0.000000pt;}
.ws21_c02357{word-spacing:0.005856pt;}
.ws4_c02357{word-spacing:0.012800pt;}
.ws9_c02357{word-spacing:0.017568pt;}
.ws3_c02357{word-spacing:0.035136pt;}
.ws2b_c02357{word-spacing:0.046848pt;}
.ws12_c02357{word-spacing:0.064416pt;}
.ws2_c02357{word-spacing:0.076128pt;}
.wsc_c02357{word-spacing:0.351360pt;}
.wsd_c02357{word-spacing:0.398208pt;}
.ws8_c02357{word-spacing:0.650016pt;}
.ws18_c02357{word-spacing:0.977952pt;}
.ws17_c02357{word-spacing:0.989664pt;}
.wsa_c02357{word-spacing:1.300032pt;}
.wsb_c02357{word-spacing:1.317600pt;}
.ws19_c02357{word-spacing:2.904576pt;}
.ws1a_c02357{word-spacing:2.922144pt;}
.ws16_c02357{word-spacing:3.209088pt;}
.ws15_c02357{word-spacing:3.250080pt;}
.ws11_c02357{word-spacing:5.785728pt;}
.ws10_c02357{word-spacing:5.826720pt;}
.wsf_c02357{word-spacing:6.113664pt;}
.wse_c02357{word-spacing:6.119520pt;}
.ws14_c02357{word-spacing:7.068192pt;}
.ws13_c02357{word-spacing:7.091616pt;}
.ws31_c02357{word-spacing:7.390272pt;}
.ws32_c02357{word-spacing:7.401984pt;}
.ws22_c02357{word-spacing:9.018240pt;}
.ws20_c02357{word-spacing:9.621408pt;}
.ws30_c02357{word-spacing:9.633120pt;}
.ws1f_c02357{word-spacing:9.638976pt;}
.ws2e_c02357{word-spacing:10.575936pt;}
.ws2f_c02357{word-spacing:10.634496pt;}
.ws1b_c02357{word-spacing:10.933152pt;}
.ws1c_c02357{word-spacing:10.939008pt;}
.ws27_c02357{word-spacing:13.457088pt;}
.ws28_c02357{word-spacing:13.474656pt;}
.ws1d_c02357{word-spacing:14.112960pt;}
.ws1e_c02357{word-spacing:14.118816pt;}
.ws2c_c02357{word-spacing:15.372000pt;}
.ws2d_c02357{word-spacing:15.383712pt;}
.ws2a_c02357{word-spacing:19.553184pt;}
.ws29_c02357{word-spacing:19.564896pt;}
.ws25_c02357{word-spacing:20.214912pt;}
.ws26_c02357{word-spacing:20.250048pt;}
.ws24_c02357{word-spacing:28.530432pt;}
.ws23_c02357{word-spacing:28.864224pt;}
._0_c02357{margin-left:-1.118496pt;}
._1_c02357{width:0.895968pt;}
.fs2_c02357{font-size:32.000000pt;}
.fs3_c02357{font-size:48.000000pt;}
.fs0_c02357{font-size:58.560000pt;}
.fs1_c02357{font-size:64.000000pt;}
.y0_c02357{bottom:0.000000pt;}
.y3_c02357{bottom:67.307971pt;}
.y2_c02357{bottom:101.227387pt;}
.y3b_c02357{bottom:121.227200pt;}
.y3a_c02357{bottom:134.987600pt;}
.y39_c02357{bottom:148.827200pt;}
.y38_c02357{bottom:162.587600pt;}
.y37_c02357{bottom:176.427200pt;}
.y36_c02357{bottom:190.187600pt;}
.y35_c02357{bottom:204.027200pt;}
.y34_c02357{bottom:217.787600pt;}
.y33_c02357{bottom:231.627200pt;}
.y32_c02357{bottom:245.387600pt;}
.y31_c02357{bottom:259.227200pt;}
.y30_c02357{bottom:272.987600pt;}
.y2f_c02357{bottom:286.827200pt;}
.y2e_c02357{bottom:300.587600pt;}
.y2d_c02357{bottom:314.427200pt;}
.y2c_c02357{bottom:328.187600pt;}
.y2b_c02357{bottom:342.027200pt;}
.y2a_c02357{bottom:355.787600pt;}
.y29_c02357{bottom:369.627200pt;}
.y28_c02357{bottom:383.387600pt;}
.y27_c02357{bottom:397.227200pt;}
.y26_c02357{bottom:410.987600pt;}
.y25_c02357{bottom:424.827200pt;}
.y24_c02357{bottom:439.947200pt;}
.y23_c02357{bottom:456.827200pt;}
.y22_c02357{bottom:473.627067pt;}
.y21_c02357{bottom:490.507067pt;}
.y20_c02357{bottom:522.907067pt;}
.y1f_c02357{bottom:533.467067pt;}
.y1e_c02357{bottom:550.347067pt;}
.y1d_c02357{bottom:567.147067pt;}
.y1c_c02357{bottom:584.027067pt;}
.y1b_c02357{bottom:600.907067pt;}
.y1a_c02357{bottom:633.307067pt;}
.y19_c02357{bottom:643.867067pt;}
.y18_c02357{bottom:660.747067pt;}
.y17_c02357{bottom:677.547067pt;}
.y16_c02357{bottom:694.427067pt;}
.y15_c02357{bottom:711.307067pt;}
.y14_c02357{bottom:728.187067pt;}
.y13_c02357{bottom:745.067067pt;}
.y12_c02357{bottom:761.867067pt;}
.y11_c02357{bottom:778.747067pt;}
.y10_c02357{bottom:794.267067pt;}
.yf_c02357{bottom:804.827067pt;}
.ye_c02357{bottom:821.707067pt;}
.yd_c02357{bottom:838.587067pt;}
.yc_c02357{bottom:855.387067pt;}
.yb_c02357{bottom:872.267067pt;}
.ya_c02357{bottom:889.147067pt;}
.y9_c02357{bottom:906.027067pt;}
.y8_c02357{bottom:923.467067pt;}
.y7_c02357{bottom:940.347067pt;}
.y6_c02357{bottom:957.467067pt;}
.y5_c02357{bottom:985.707067pt;}
.y4_c02357{bottom:1013.307067pt;}
.y1_c02357{bottom:1061.787067pt;}
.h6_c02357{height:31.406250pt;}
.h3_c02357{height:39.030469pt;}
.h2_c02357{height:48.294844pt;}
.h7_c02357{height:50.062500pt;}
.h5_c02357{height:57.473437pt;}
.h1_c02357{height:59.017500pt;}
.h4_c02357{height:64.500000pt;}
.h0_c02357{height:1122.666667pt;}
.w1_c02357{width:793.333333pt;}
.w0_c02357{width:793.626667pt;}
.x0_c02357{left:0.000000pt;}
.x3_c02357{left:113.440040pt;}
.x1_c02357{left:114.560000pt;}
.x7_c02357{left:132.400000pt;}
.x5_c02357{left:154.560000pt;}
.x6_c02357{left:349.200000pt;}
.x4_c02357{left:361.200000pt;}
.x2_c02357{left:389.440640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f50e962316e4b00bdb37c016.woff2')format("woff");}.ff1_c02358{font-family:ff1_c02358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02358;src:url('chunks/assets/font_d18ebdb158b5cef7ea380daf.woff2')format("woff");}.ff2_c02358{font-family:ff2_c02358;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02358{font-family:ff3_c02358;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_c02358;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02358{font-family:ff4_c02358;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02358;src:url('chunks/assets/font_4d100e385d224ade5bb7b229.woff2')format("woff");}.ff5_c02358{font-family:ff5_c02358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02358{vertical-align:-72.360000px;}
.v0_c02358{vertical-align:0.000000px;}
.ls13_c02358{letter-spacing:-0.078156px;}
.ls14_c02358{letter-spacing:-0.012024px;}
.ls12_c02358{letter-spacing:-0.006012px;}
.ls11_c02358{letter-spacing:0.000000px;}
.ls5_c02358{letter-spacing:0.006012px;}
.ls1_c02358{letter-spacing:0.006588px;}
.ls4_c02358{letter-spacing:0.012024px;}
.lsd_c02358{letter-spacing:0.013176px;}
.ls2_c02358{letter-spacing:0.014400px;}
.ls10_c02358{letter-spacing:0.019764px;}
.ls3_c02358{letter-spacing:0.026352px;}
.ls6_c02358{letter-spacing:0.032940px;}
.lse_c02358{letter-spacing:0.039528px;}
.ls7_c02358{letter-spacing:0.046116px;}
.lsc_c02358{letter-spacing:0.052704px;}
.ls8_c02358{letter-spacing:0.059292px;}
.lsf_c02358{letter-spacing:0.065880px;}
.lsb_c02358{letter-spacing:0.072468px;}
.ls9_c02358{letter-spacing:0.085644px;}
.ls0_c02358{letter-spacing:0.092232px;}
.ls15_c02358{letter-spacing:0.268128px;}
.lsa_c02358{letter-spacing:73.350000px;}
.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;}
}
.ws1_c02358{word-spacing:-16.509528px;}
.ws0_c02358{word-spacing:-0.158112px;}
.ws5_c02358{word-spacing:-0.014400px;}
.ws2_c02358{word-spacing:0.000000px;}
.ws14_c02358{word-spacing:0.013176px;}
.ws40_c02358{word-spacing:0.019764px;}
.ws4_c02358{word-spacing:0.039528px;}
.ws1e_c02358{word-spacing:0.046116px;}
.ws2f_c02358{word-spacing:0.052704px;}
.wsd_c02358{word-spacing:0.059292px;}
.ws6_c02358{word-spacing:0.065880px;}
.ws3_c02358{word-spacing:0.085644px;}
.wsc_c02358{word-spacing:0.096192px;}
.ws9_c02358{word-spacing:0.168336px;}
.ws19_c02358{word-spacing:0.401868px;}
.ws1a_c02358{word-spacing:0.408456px;}
.ws2e_c02358{word-spacing:0.757620px;}
.ws22_c02358{word-spacing:0.770796px;}
.ws11_c02358{word-spacing:1.113372px;}
.ws10_c02358{word-spacing:1.146312px;}
.wsf_c02358{word-spacing:1.482300px;}
.wse_c02358{word-spacing:1.495476px;}
.ws35_c02358{word-spacing:1.824876px;}
.ws36_c02358{word-spacing:1.844640px;}
.ws3b_c02358{word-spacing:1.851228px;}
.ws27_c02358{word-spacing:2.180628px;}
.ws28_c02358{word-spacing:2.220156px;}
.ws8_c02358{word-spacing:2.957904px;}
.ws7_c02358{word-spacing:2.975940px;}
.ws33_c02358{word-spacing:3.623400px;}
.ws34_c02358{word-spacing:3.662928px;}
.ws3e_c02358{word-spacing:3.965976px;}
.ws17_c02358{word-spacing:3.979152px;}
.ws18_c02358{word-spacing:3.998916px;}
.ws2a_c02358{word-spacing:4.018680px;}
.ws29_c02358{word-spacing:4.703832px;}
.ws1f_c02358{word-spacing:5.085936px;}
.ws1b_c02358{word-spacing:5.099112px;}
.ws1d_c02358{word-spacing:5.428512px;}
.ws1c_c02358{word-spacing:5.441688px;}
.ws3a_c02358{word-spacing:5.797440px;}
.ws41_c02358{word-spacing:6.502356px;}
.ws42_c02358{word-spacing:6.541884px;}
.ws2c_c02358{word-spacing:6.871284px;}
.ws2d_c02358{word-spacing:6.891048px;}
.ws20_c02358{word-spacing:9.796356px;}
.ws21_c02358{word-spacing:9.809532px;}
.ws26_c02358{word-spacing:10.112580px;}
.ws25_c02358{word-spacing:10.119168px;}
.ws39_c02358{word-spacing:10.138932px;}
.ws15_c02358{word-spacing:11.193012px;}
.ws16_c02358{word-spacing:11.225952px;}
.ws31_c02358{word-spacing:11.944044px;}
.ws30_c02358{word-spacing:11.957220px;}
.ws3d_c02358{word-spacing:12.266856px;}
.ws3c_c02358{word-spacing:12.286620px;}
.ws32_c02358{word-spacing:14.091732px;}
.ws38_c02358{word-spacing:14.440896px;}
.ws37_c02358{word-spacing:14.460660px;}
.ws24_c02358{word-spacing:15.877080px;}
.wsa_c02358{word-spacing:15.925788px;}
.ws23_c02358{word-spacing:15.929784px;}
.wsb_c02358{word-spacing:15.943824px;}
.ws13_c02358{word-spacing:16.562232px;}
.ws12_c02358{word-spacing:16.601760px;}
.ws2b_c02358{word-spacing:18.775800px;}
.ws3f_c02358{word-spacing:28.512864px;}
._0_c02358{margin-left:-1.258308px;}
._1_c02358{width:1.324188px;}
.fc0_c02358{color:rgb(0,0,0);}
.fs4_c02358{font-size:47.880000px;}
.fs3_c02358{font-size:54.000000px;}
.fs2_c02358{font-size:60.120000px;}
.fs0_c02358{font-size:65.880000px;}
.fs1_c02358{font-size:72.000000px;}
.y0_c02358{bottom:0.000000px;}
.y3_c02358{bottom:75.721467px;}
.y2_c02358{bottom:113.880810px;}
.y36_c02358{bottom:136.110450px;}
.y35_c02358{bottom:155.100450px;}
.y34_c02358{bottom:174.090450px;}
.y33_c02358{bottom:192.180450px;}
.y32_c02358{bottom:206.850450px;}
.y31_c02358{bottom:225.840450px;}
.y30_c02358{bottom:244.830450px;}
.y2f_c02358{bottom:263.820450px;}
.y2e_c02358{bottom:282.720450px;}
.y2d_c02358{bottom:300.900450px;}
.y2c_c02358{bottom:315.570450px;}
.y2b_c02358{bottom:334.470450px;}
.y2a_c02358{bottom:353.460600px;}
.y29_c02358{bottom:372.450450px;}
.y28_c02358{bottom:391.440450px;}
.y27_c02358{bottom:410.430600px;}
.y26_c02358{bottom:429.420450px;}
.y25_c02358{bottom:448.320450px;}
.y24_c02358{bottom:467.310450px;}
.y23_c02358{bottom:504.390450px;}
.y22_c02358{bottom:519.060450px;}
.y21_c02358{bottom:538.050450px;}
.y20_c02358{bottom:557.040450px;}
.y1f_c02358{bottom:594.120450px;}
.y1e_c02358{bottom:608.790450px;}
.y1d_c02358{bottom:627.690450px;}
.y1c_c02358{bottom:646.680450px;}
.y1b_c02358{bottom:683.760450px;}
.y1a_c02358{bottom:698.430450px;}
.y19_c02358{bottom:717.420450px;}
.y18_c02358{bottom:736.410450px;}
.y17_c02358{bottom:755.400450px;}
.y16_c02358{bottom:792.480450px;}
.y15_c02358{bottom:807.150450px;}
.y14_c02358{bottom:826.050450px;}
.y13_c02358{bottom:845.040600px;}
.y12_c02358{bottom:864.030450px;}
.y11_c02358{bottom:883.020450px;}
.y10_c02358{bottom:920.100450px;}
.yf_c02358{bottom:934.770450px;}
.ye_c02358{bottom:953.760450px;}
.yd_c02358{bottom:972.660450px;}
.yc_c02358{bottom:991.650450px;}
.yb_c02358{bottom:1010.550450px;}
.ya_c02358{bottom:1029.900450px;}
.y9_c02358{bottom:1047.180450px;}
.y8_c02358{bottom:1064.370450px;}
.y7_c02358{bottom:1081.650450px;}
.y6_c02358{bottom:1099.290450px;}
.y5_c02358{bottom:1118.550450px;}
.y4_c02358{bottom:1139.250450px;}
.y1_c02358{bottom:1194.510450px;}
.h3_c02358{height:43.909277px;}
.h7_c02358{height:46.991602px;}
.h2_c02358{height:54.331699px;}
.h5_c02358{height:60.589687px;}
.h6_c02358{height:64.657617px;}
.h1_c02358{height:66.394687px;}
.h4_c02358{height:72.562500px;}
.h0_c02358{height:1263.000000px;}
.w1_c02358{width:892.500000px;}
.w0_c02358{width:892.830000px;}
.x0_c02358{left:0.000000px;}
.x3_c02358{left:127.620045px;}
.x1_c02358{left:128.880000px;}
.x7_c02358{left:148.950000px;}
.x5_c02358{left:266.850000px;}
.x6_c02358{left:271.800000px;}
.x4_c02358{left:392.850000px;}
.x2_c02358{left:438.120720px;}
@media print{
.v1_c02358{vertical-align:-64.320000pt;}
.v0_c02358{vertical-align:0.000000pt;}
.ls13_c02358{letter-spacing:-0.069472pt;}
.ls14_c02358{letter-spacing:-0.010688pt;}
.ls12_c02358{letter-spacing:-0.005344pt;}
.ls11_c02358{letter-spacing:0.000000pt;}
.ls5_c02358{letter-spacing:0.005344pt;}
.ls1_c02358{letter-spacing:0.005856pt;}
.ls4_c02358{letter-spacing:0.010688pt;}
.lsd_c02358{letter-spacing:0.011712pt;}
.ls2_c02358{letter-spacing:0.012800pt;}
.ls10_c02358{letter-spacing:0.017568pt;}
.ls3_c02358{letter-spacing:0.023424pt;}
.ls6_c02358{letter-spacing:0.029280pt;}
.lse_c02358{letter-spacing:0.035136pt;}
.ls7_c02358{letter-spacing:0.040992pt;}
.lsc_c02358{letter-spacing:0.046848pt;}
.ls8_c02358{letter-spacing:0.052704pt;}
.lsf_c02358{letter-spacing:0.058560pt;}
.lsb_c02358{letter-spacing:0.064416pt;}
.ls9_c02358{letter-spacing:0.076128pt;}
.ls0_c02358{letter-spacing:0.081984pt;}
.ls15_c02358{letter-spacing:0.238336pt;}
.lsa_c02358{letter-spacing:65.200000pt;}
.ws1_c02358{word-spacing:-14.675136pt;}
.ws0_c02358{word-spacing:-0.140544pt;}
.ws5_c02358{word-spacing:-0.012800pt;}
.ws2_c02358{word-spacing:0.000000pt;}
.ws14_c02358{word-spacing:0.011712pt;}
.ws40_c02358{word-spacing:0.017568pt;}
.ws4_c02358{word-spacing:0.035136pt;}
.ws1e_c02358{word-spacing:0.040992pt;}
.ws2f_c02358{word-spacing:0.046848pt;}
.wsd_c02358{word-spacing:0.052704pt;}
.ws6_c02358{word-spacing:0.058560pt;}
.ws3_c02358{word-spacing:0.076128pt;}
.wsc_c02358{word-spacing:0.085504pt;}
.ws9_c02358{word-spacing:0.149632pt;}
.ws19_c02358{word-spacing:0.357216pt;}
.ws1a_c02358{word-spacing:0.363072pt;}
.ws2e_c02358{word-spacing:0.673440pt;}
.ws22_c02358{word-spacing:0.685152pt;}
.ws11_c02358{word-spacing:0.989664pt;}
.ws10_c02358{word-spacing:1.018944pt;}
.wsf_c02358{word-spacing:1.317600pt;}
.wse_c02358{word-spacing:1.329312pt;}
.ws35_c02358{word-spacing:1.622112pt;}
.ws36_c02358{word-spacing:1.639680pt;}
.ws3b_c02358{word-spacing:1.645536pt;}
.ws27_c02358{word-spacing:1.938336pt;}
.ws28_c02358{word-spacing:1.973472pt;}
.ws8_c02358{word-spacing:2.629248pt;}
.ws7_c02358{word-spacing:2.645280pt;}
.ws33_c02358{word-spacing:3.220800pt;}
.ws34_c02358{word-spacing:3.255936pt;}
.ws3e_c02358{word-spacing:3.525312pt;}
.ws17_c02358{word-spacing:3.537024pt;}
.ws18_c02358{word-spacing:3.554592pt;}
.ws2a_c02358{word-spacing:3.572160pt;}
.ws29_c02358{word-spacing:4.181184pt;}
.ws1f_c02358{word-spacing:4.520832pt;}
.ws1b_c02358{word-spacing:4.532544pt;}
.ws1d_c02358{word-spacing:4.825344pt;}
.ws1c_c02358{word-spacing:4.837056pt;}
.ws3a_c02358{word-spacing:5.153280pt;}
.ws41_c02358{word-spacing:5.779872pt;}
.ws42_c02358{word-spacing:5.815008pt;}
.ws2c_c02358{word-spacing:6.107808pt;}
.ws2d_c02358{word-spacing:6.125376pt;}
.ws20_c02358{word-spacing:8.707872pt;}
.ws21_c02358{word-spacing:8.719584pt;}
.ws26_c02358{word-spacing:8.988960pt;}
.ws25_c02358{word-spacing:8.994816pt;}
.ws39_c02358{word-spacing:9.012384pt;}
.ws15_c02358{word-spacing:9.949344pt;}
.ws16_c02358{word-spacing:9.978624pt;}
.ws31_c02358{word-spacing:10.616928pt;}
.ws30_c02358{word-spacing:10.628640pt;}
.ws3d_c02358{word-spacing:10.903872pt;}
.ws3c_c02358{word-spacing:10.921440pt;}
.ws32_c02358{word-spacing:12.525984pt;}
.ws38_c02358{word-spacing:12.836352pt;}
.ws37_c02358{word-spacing:12.853920pt;}
.ws24_c02358{word-spacing:14.112960pt;}
.wsa_c02358{word-spacing:14.156256pt;}
.ws23_c02358{word-spacing:14.159808pt;}
.wsb_c02358{word-spacing:14.172288pt;}
.ws13_c02358{word-spacing:14.721984pt;}
.ws12_c02358{word-spacing:14.757120pt;}
.ws2b_c02358{word-spacing:16.689600pt;}
.ws3f_c02358{word-spacing:25.344768pt;}
._0_c02358{margin-left:-1.118496pt;}
._1_c02358{width:1.177056pt;}
.fs4_c02358{font-size:42.560000pt;}
.fs3_c02358{font-size:48.000000pt;}
.fs2_c02358{font-size:53.440000pt;}
.fs0_c02358{font-size:58.560000pt;}
.fs1_c02358{font-size:64.000000pt;}
.y0_c02358{bottom:0.000000pt;}
.y3_c02358{bottom:67.307971pt;}
.y2_c02358{bottom:101.227387pt;}
.y36_c02358{bottom:120.987067pt;}
.y35_c02358{bottom:137.867067pt;}
.y34_c02358{bottom:154.747067pt;}
.y33_c02358{bottom:170.827067pt;}
.y32_c02358{bottom:183.867067pt;}
.y31_c02358{bottom:200.747067pt;}
.y30_c02358{bottom:217.627067pt;}
.y2f_c02358{bottom:234.507067pt;}
.y2e_c02358{bottom:251.307067pt;}
.y2d_c02358{bottom:267.467067pt;}
.y2c_c02358{bottom:280.507067pt;}
.y2b_c02358{bottom:297.307067pt;}
.y2a_c02358{bottom:314.187200pt;}
.y29_c02358{bottom:331.067067pt;}
.y28_c02358{bottom:347.947067pt;}
.y27_c02358{bottom:364.827200pt;}
.y26_c02358{bottom:381.707067pt;}
.y25_c02358{bottom:398.507067pt;}
.y24_c02358{bottom:415.387067pt;}
.y23_c02358{bottom:448.347067pt;}
.y22_c02358{bottom:461.387067pt;}
.y21_c02358{bottom:478.267067pt;}
.y20_c02358{bottom:495.147067pt;}
.y1f_c02358{bottom:528.107067pt;}
.y1e_c02358{bottom:541.147067pt;}
.y1d_c02358{bottom:557.947067pt;}
.y1c_c02358{bottom:574.827067pt;}
.y1b_c02358{bottom:607.787067pt;}
.y1a_c02358{bottom:620.827067pt;}
.y19_c02358{bottom:637.707067pt;}
.y18_c02358{bottom:654.587067pt;}
.y17_c02358{bottom:671.467067pt;}
.y16_c02358{bottom:704.427067pt;}
.y15_c02358{bottom:717.467067pt;}
.y14_c02358{bottom:734.267067pt;}
.y13_c02358{bottom:751.147200pt;}
.y12_c02358{bottom:768.027067pt;}
.y11_c02358{bottom:784.907067pt;}
.y10_c02358{bottom:817.867067pt;}
.yf_c02358{bottom:830.907067pt;}
.ye_c02358{bottom:847.787067pt;}
.yd_c02358{bottom:864.587067pt;}
.yc_c02358{bottom:881.467067pt;}
.yb_c02358{bottom:898.267067pt;}
.ya_c02358{bottom:915.467067pt;}
.y9_c02358{bottom:930.827067pt;}
.y8_c02358{bottom:946.107067pt;}
.y7_c02358{bottom:961.467067pt;}
.y6_c02358{bottom:977.147067pt;}
.y5_c02358{bottom:994.267067pt;}
.y4_c02358{bottom:1012.667067pt;}
.y1_c02358{bottom:1061.787067pt;}
.h3_c02358{height:39.030469pt;}
.h7_c02358{height:41.770312pt;}
.h2_c02358{height:48.294844pt;}
.h5_c02358{height:53.857500pt;}
.h6_c02358{height:57.473437pt;}
.h1_c02358{height:59.017500pt;}
.h4_c02358{height:64.500000pt;}
.h0_c02358{height:1122.666667pt;}
.w1_c02358{width:793.333333pt;}
.w0_c02358{width:793.626667pt;}
.x0_c02358{left:0.000000pt;}
.x3_c02358{left:113.440040pt;}
.x1_c02358{left:114.560000pt;}
.x7_c02358{left:132.400000pt;}
.x5_c02358{left:237.200000pt;}
.x6_c02358{left:241.600000pt;}
.x4_c02358{left:349.200000pt;}
.x2_c02358{left:389.440640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0132377d83fdcb96d6f4dbb.woff2')format("woff");}.ff1_c02359{font-family:ff1_c02359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02359;src:url('chunks/assets/font_d86b02a81d111a0ad2cca388.woff2')format("woff");}.ff2_c02359{font-family:ff2_c02359;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02359{font-family:ff3_c02359;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_c02359;src:url('chunks/assets/font_76a8aa7a00b4a2be82ca068e.woff2')format("woff");}.ff4_c02359{font-family:ff4_c02359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02359;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c02359{font-family:ff5_c02359;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_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;}
.lsf_c02359{letter-spacing:-0.013176px;}
.lse_c02359{letter-spacing:0.000000px;}
.ls1_c02359{letter-spacing:0.006588px;}
.ls3_c02359{letter-spacing:0.013176px;}
.ls8_c02359{letter-spacing:0.019764px;}
.lsa_c02359{letter-spacing:0.026352px;}
.ls2_c02359{letter-spacing:0.032940px;}
.ls6_c02359{letter-spacing:0.039528px;}
.lsc_c02359{letter-spacing:0.046116px;}
.ls4_c02359{letter-spacing:0.052704px;}
.ls5_c02359{letter-spacing:0.059292px;}
.lsb_c02359{letter-spacing:0.065880px;}
.ls7_c02359{letter-spacing:0.072468px;}
.ls9_c02359{letter-spacing:0.079056px;}
.ls0_c02359{letter-spacing:0.092232px;}
.lsd_c02359{letter-spacing:0.125172px;}
.sc__c02359{text-shadow:none;}
.sc0_c02359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02359{-webkit-text-stroke:0px transparent;}
.sc0_c02359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02359{word-spacing:-0.158112px;}
.ws1_c02359{word-spacing:0.000000px;}
.ws3_c02359{word-spacing:0.039528px;}
.ws16_c02359{word-spacing:0.046116px;}
.ws15_c02359{word-spacing:0.059292px;}
.ws2_c02359{word-spacing:0.085644px;}
.ws4_c02359{word-spacing:0.415044px;}
.ws5_c02359{word-spacing:0.434808px;}
.wsa_c02359{word-spacing:0.461160px;}
.ws14_c02359{word-spacing:0.731268px;}
.ws12_c02359{word-spacing:0.737856px;}
.ws13_c02359{word-spacing:0.744444px;}
.ws21_c02359{word-spacing:0.757620px;}
.ws20_c02359{word-spacing:0.770796px;}
.wsb_c02359{word-spacing:0.790560px;}
.ws7_c02359{word-spacing:2.911896px;}
.ws6_c02359{word-spacing:2.918484px;}
.ws19_c02359{word-spacing:4.374432px;}
.ws1a_c02359{word-spacing:4.381020px;}
.ws1d_c02359{word-spacing:4.400784px;}
.ws1f_c02359{word-spacing:6.515532px;}
.ws1e_c02359{word-spacing:6.548472px;}
.ws1c_c02359{word-spacing:8.682984px;}
.ws1b_c02359{word-spacing:8.722512px;}
.ws9_c02359{word-spacing:9.374724px;}
.ws8_c02359{word-spacing:9.407664px;}
.wsd_c02359{word-spacing:11.173248px;}
.wsc_c02359{word-spacing:11.232540px;}
.ws11_c02359{word-spacing:14.098320px;}
.ws10_c02359{word-spacing:14.111496px;}
.ws17_c02359{word-spacing:16.944336px;}
.ws18_c02359{word-spacing:16.970688px;}
.wse_c02359{word-spacing:21.608640px;}
.wsf_c02359{word-spacing:21.661344px;}
._0_c02359{margin-left:-1.258308px;}
._1_c02359{width:1.040904px;}
.fc0_c02359{color:rgb(0,0,0);}
.fs1_c02359{font-size:47.880000px;}
.fs2_c02359{font-size:54.000000px;}
.fs0_c02359{font-size:65.880000px;}
.y0_c02359{bottom:0.000000px;}
.y3_c02359{bottom:75.721467px;}
.y2_c02359{bottom:113.880810px;}
.y41_c02359{bottom:135.390000px;}
.y40_c02359{bottom:150.959550px;}
.y3f_c02359{bottom:166.440000px;}
.y3e_c02359{bottom:182.009550px;}
.y3d_c02359{bottom:197.490000px;}
.y3c_c02359{bottom:213.059550px;}
.y3b_c02359{bottom:228.540000px;}
.y3a_c02359{bottom:244.109550px;}
.y39_c02359{bottom:259.590000px;}
.y38_c02359{bottom:275.070450px;}
.y37_c02359{bottom:290.640000px;}
.y36_c02359{bottom:306.120450px;}
.y35_c02359{bottom:321.690000px;}
.y34_c02359{bottom:337.170450px;}
.y33_c02359{bottom:352.740000px;}
.y32_c02359{bottom:368.220450px;}
.y31_c02359{bottom:383.790000px;}
.y30_c02359{bottom:399.270450px;}
.y2f_c02359{bottom:414.840000px;}
.y2e_c02359{bottom:430.320450px;}
.y2d_c02359{bottom:445.890000px;}
.y2c_c02359{bottom:461.370450px;}
.y2b_c02359{bottom:476.940000px;}
.y2a_c02359{bottom:492.420450px;}
.y29_c02359{bottom:507.990000px;}
.y28_c02359{bottom:523.470450px;}
.y27_c02359{bottom:539.040000px;}
.y26_c02359{bottom:554.520450px;}
.y25_c02359{bottom:570.090000px;}
.y24_c02359{bottom:585.570450px;}
.y23_c02359{bottom:601.140000px;}
.y22_c02359{bottom:616.620450px;}
.y21_c02359{bottom:632.190000px;}
.y20_c02359{bottom:647.670450px;}
.y1f_c02359{bottom:663.240000px;}
.y1e_c02359{bottom:678.720450px;}
.y1d_c02359{bottom:694.290000px;}
.y1c_c02359{bottom:709.770450px;}
.y1b_c02359{bottom:725.340000px;}
.y1a_c02359{bottom:740.820450px;}
.y19_c02359{bottom:757.830450px;}
.y18_c02359{bottom:776.820450px;}
.y17_c02359{bottom:795.810450px;}
.y16_c02359{bottom:813.900450px;}
.y15_c02359{bottom:828.570450px;}
.y14_c02359{bottom:847.560450px;}
.y13_c02359{bottom:865.650450px;}
.y12_c02359{bottom:880.320450px;}
.y11_c02359{bottom:899.310450px;}
.y10_c02359{bottom:918.300450px;}
.yf_c02359{bottom:937.200450px;}
.ye_c02359{bottom:956.190450px;}
.yd_c02359{bottom:975.180450px;}
.yc_c02359{bottom:994.170450px;}
.yb_c02359{bottom:1013.160450px;}
.ya_c02359{bottom:1032.060450px;}
.y9_c02359{bottom:1051.050450px;}
.y8_c02359{bottom:1069.230450px;}
.y7_c02359{bottom:1083.810450px;}
.y6_c02359{bottom:1102.800450px;}
.y5_c02359{bottom:1121.790600px;}
.y4_c02359{bottom:1140.780450px;}
.y1_c02359{bottom:1194.510450px;}
.h3_c02359{height:43.909277px;}
.h5_c02359{height:46.991602px;}
.h2_c02359{height:54.331699px;}
.h6_c02359{height:56.320312px;}
.h4_c02359{height:64.657617px;}
.h1_c02359{height:66.394687px;}
.h0_c02359{height:1263.000000px;}
.w1_c02359{width:892.500000px;}
.w0_c02359{width:892.830000px;}
.x0_c02359{left:0.000000px;}
.x3_c02359{left:127.620045px;}
.x1_c02359{left:128.880000px;}
.x4_c02359{left:148.950000px;}
.x2_c02359{left:438.120720px;}
@media print{
.v0_c02359{vertical-align:0.000000pt;}
.lsf_c02359{letter-spacing:-0.011712pt;}
.lse_c02359{letter-spacing:0.000000pt;}
.ls1_c02359{letter-spacing:0.005856pt;}
.ls3_c02359{letter-spacing:0.011712pt;}
.ls8_c02359{letter-spacing:0.017568pt;}
.lsa_c02359{letter-spacing:0.023424pt;}
.ls2_c02359{letter-spacing:0.029280pt;}
.ls6_c02359{letter-spacing:0.035136pt;}
.lsc_c02359{letter-spacing:0.040992pt;}
.ls4_c02359{letter-spacing:0.046848pt;}
.ls5_c02359{letter-spacing:0.052704pt;}
.lsb_c02359{letter-spacing:0.058560pt;}
.ls7_c02359{letter-spacing:0.064416pt;}
.ls9_c02359{letter-spacing:0.070272pt;}
.ls0_c02359{letter-spacing:0.081984pt;}
.lsd_c02359{letter-spacing:0.111264pt;}
.ws0_c02359{word-spacing:-0.140544pt;}
.ws1_c02359{word-spacing:0.000000pt;}
.ws3_c02359{word-spacing:0.035136pt;}
.ws16_c02359{word-spacing:0.040992pt;}
.ws15_c02359{word-spacing:0.052704pt;}
.ws2_c02359{word-spacing:0.076128pt;}
.ws4_c02359{word-spacing:0.368928pt;}
.ws5_c02359{word-spacing:0.386496pt;}
.wsa_c02359{word-spacing:0.409920pt;}
.ws14_c02359{word-spacing:0.650016pt;}
.ws12_c02359{word-spacing:0.655872pt;}
.ws13_c02359{word-spacing:0.661728pt;}
.ws21_c02359{word-spacing:0.673440pt;}
.ws20_c02359{word-spacing:0.685152pt;}
.wsb_c02359{word-spacing:0.702720pt;}
.ws7_c02359{word-spacing:2.588352pt;}
.ws6_c02359{word-spacing:2.594208pt;}
.ws19_c02359{word-spacing:3.888384pt;}
.ws1a_c02359{word-spacing:3.894240pt;}
.ws1d_c02359{word-spacing:3.911808pt;}
.ws1f_c02359{word-spacing:5.791584pt;}
.ws1e_c02359{word-spacing:5.820864pt;}
.ws1c_c02359{word-spacing:7.718208pt;}
.ws1b_c02359{word-spacing:7.753344pt;}
.ws9_c02359{word-spacing:8.333088pt;}
.ws8_c02359{word-spacing:8.362368pt;}
.wsd_c02359{word-spacing:9.931776pt;}
.wsc_c02359{word-spacing:9.984480pt;}
.ws11_c02359{word-spacing:12.531840pt;}
.ws10_c02359{word-spacing:12.543552pt;}
.ws17_c02359{word-spacing:15.061632pt;}
.ws18_c02359{word-spacing:15.085056pt;}
.wse_c02359{word-spacing:19.207680pt;}
.wsf_c02359{word-spacing:19.254528pt;}
._0_c02359{margin-left:-1.118496pt;}
._1_c02359{width:0.925248pt;}
.fs1_c02359{font-size:42.560000pt;}
.fs2_c02359{font-size:48.000000pt;}
.fs0_c02359{font-size:58.560000pt;}
.y0_c02359{bottom:0.000000pt;}
.y3_c02359{bottom:67.307971pt;}
.y2_c02359{bottom:101.227387pt;}
.y41_c02359{bottom:120.346667pt;}
.y40_c02359{bottom:134.186267pt;}
.y3f_c02359{bottom:147.946667pt;}
.y3e_c02359{bottom:161.786267pt;}
.y3d_c02359{bottom:175.546667pt;}
.y3c_c02359{bottom:189.386267pt;}
.y3b_c02359{bottom:203.146667pt;}
.y3a_c02359{bottom:216.986267pt;}
.y39_c02359{bottom:230.746667pt;}
.y38_c02359{bottom:244.507067pt;}
.y37_c02359{bottom:258.346667pt;}
.y36_c02359{bottom:272.107067pt;}
.y35_c02359{bottom:285.946667pt;}
.y34_c02359{bottom:299.707067pt;}
.y33_c02359{bottom:313.546667pt;}
.y32_c02359{bottom:327.307067pt;}
.y31_c02359{bottom:341.146667pt;}
.y30_c02359{bottom:354.907067pt;}
.y2f_c02359{bottom:368.746667pt;}
.y2e_c02359{bottom:382.507067pt;}
.y2d_c02359{bottom:396.346667pt;}
.y2c_c02359{bottom:410.107067pt;}
.y2b_c02359{bottom:423.946667pt;}
.y2a_c02359{bottom:437.707067pt;}
.y29_c02359{bottom:451.546667pt;}
.y28_c02359{bottom:465.307067pt;}
.y27_c02359{bottom:479.146667pt;}
.y26_c02359{bottom:492.907067pt;}
.y25_c02359{bottom:506.746667pt;}
.y24_c02359{bottom:520.507067pt;}
.y23_c02359{bottom:534.346667pt;}
.y22_c02359{bottom:548.107067pt;}
.y21_c02359{bottom:561.946667pt;}
.y20_c02359{bottom:575.707067pt;}
.y1f_c02359{bottom:589.546667pt;}
.y1e_c02359{bottom:603.307067pt;}
.y1d_c02359{bottom:617.146667pt;}
.y1c_c02359{bottom:630.907067pt;}
.y1b_c02359{bottom:644.746667pt;}
.y1a_c02359{bottom:658.507067pt;}
.y19_c02359{bottom:673.627067pt;}
.y18_c02359{bottom:690.507067pt;}
.y17_c02359{bottom:707.387067pt;}
.y16_c02359{bottom:723.467067pt;}
.y15_c02359{bottom:736.507067pt;}
.y14_c02359{bottom:753.387067pt;}
.y13_c02359{bottom:769.467067pt;}
.y12_c02359{bottom:782.507067pt;}
.y11_c02359{bottom:799.387067pt;}
.y10_c02359{bottom:816.267067pt;}
.yf_c02359{bottom:833.067067pt;}
.ye_c02359{bottom:849.947067pt;}
.yd_c02359{bottom:866.827067pt;}
.yc_c02359{bottom:883.707067pt;}
.yb_c02359{bottom:900.587067pt;}
.ya_c02359{bottom:917.387067pt;}
.y9_c02359{bottom:934.267067pt;}
.y8_c02359{bottom:950.427067pt;}
.y7_c02359{bottom:963.387067pt;}
.y6_c02359{bottom:980.267067pt;}
.y5_c02359{bottom:997.147200pt;}
.y4_c02359{bottom:1014.027067pt;}
.y1_c02359{bottom:1061.787067pt;}
.h3_c02359{height:39.030469pt;}
.h5_c02359{height:41.770312pt;}
.h2_c02359{height:48.294844pt;}
.h6_c02359{height:50.062500pt;}
.h4_c02359{height:57.473437pt;}
.h1_c02359{height:59.017500pt;}
.h0_c02359{height:1122.666667pt;}
.w1_c02359{width:793.333333pt;}
.w0_c02359{width:793.626667pt;}
.x0_c02359{left:0.000000pt;}
.x3_c02359{left:113.440040pt;}
.x1_c02359{left:114.560000pt;}
.x4_c02359{left:132.400000pt;}
.x2_c02359{left:389.440640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0132377d83fdcb96d6f4dbb.woff2')format("woff");}.ff1_c02360{font-family:ff1_c02360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02360;src:url('chunks/assets/font_0a58d97b557018a63d67cce1.woff2')format("woff");}.ff2_c02360{font-family:ff2_c02360;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02360{font-family:ff3_c02360;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_c02360;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c02360{font-family:ff4_c02360;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_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;}
.ls3_c02360{letter-spacing:0.000000px;}
.ls1_c02360{letter-spacing:0.006588px;}
.ls2_c02360{letter-spacing:0.052704px;}
.ls0_c02360{letter-spacing:0.092232px;}
.sc__c02360{text-shadow:none;}
.sc0_c02360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02360{-webkit-text-stroke:0px transparent;}
.sc0_c02360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02360{word-spacing:-0.158112px;}
.ws1_c02360{word-spacing:0.000000px;}
.ws3_c02360{word-spacing:0.039528px;}
.ws2_c02360{word-spacing:0.085644px;}
._0_c02360{margin-left:-1.258308px;}
.fc0_c02360{color:rgb(0,0,0);}
.fs1_c02360{font-size:54.000000px;}
.fs0_c02360{font-size:65.880000px;}
.y0_c02360{bottom:0.000000px;}
.y3_c02360{bottom:75.721467px;}
.y2_c02360{bottom:113.880810px;}
.y12_c02360{bottom:926.850450px;}
.y11_c02360{bottom:942.420000px;}
.y10_c02360{bottom:957.900450px;}
.yf_c02360{bottom:973.470000px;}
.ye_c02360{bottom:988.950450px;}
.yd_c02360{bottom:1004.520000px;}
.yc_c02360{bottom:1020.000450px;}
.yb_c02360{bottom:1035.570000px;}
.ya_c02360{bottom:1051.050450px;}
.y9_c02360{bottom:1066.620000px;}
.y8_c02360{bottom:1082.100450px;}
.y7_c02360{bottom:1097.670000px;}
.y6_c02360{bottom:1113.150450px;}
.y5_c02360{bottom:1128.720000px;}
.y4_c02360{bottom:1144.200450px;}
.y1_c02360{bottom:1194.510450px;}
.h3_c02360{height:43.909277px;}
.h2_c02360{height:54.331699px;}
.h4_c02360{height:56.320312px;}
.h1_c02360{height:66.394687px;}
.h0_c02360{height:1263.000000px;}
.w1_c02360{width:892.500000px;}
.w0_c02360{width:892.830000px;}
.x0_c02360{left:0.000000px;}
.x3_c02360{left:127.620045px;}
.x1_c02360{left:128.880000px;}
.x2_c02360{left:438.120720px;}
@media print{
.v0_c02360{vertical-align:0.000000pt;}
.ls3_c02360{letter-spacing:0.000000pt;}
.ls1_c02360{letter-spacing:0.005856pt;}
.ls2_c02360{letter-spacing:0.046848pt;}
.ls0_c02360{letter-spacing:0.081984pt;}
.ws0_c02360{word-spacing:-0.140544pt;}
.ws1_c02360{word-spacing:0.000000pt;}
.ws3_c02360{word-spacing:0.035136pt;}
.ws2_c02360{word-spacing:0.076128pt;}
._0_c02360{margin-left:-1.118496pt;}
.fs1_c02360{font-size:48.000000pt;}
.fs0_c02360{font-size:58.560000pt;}
.y0_c02360{bottom:0.000000pt;}
.y3_c02360{bottom:67.307971pt;}
.y2_c02360{bottom:101.227387pt;}
.y12_c02360{bottom:823.867067pt;}
.y11_c02360{bottom:837.706667pt;}
.y10_c02360{bottom:851.467067pt;}
.yf_c02360{bottom:865.306667pt;}
.ye_c02360{bottom:879.067067pt;}
.yd_c02360{bottom:892.906667pt;}
.yc_c02360{bottom:906.667067pt;}
.yb_c02360{bottom:920.506667pt;}
.ya_c02360{bottom:934.267067pt;}
.y9_c02360{bottom:948.106667pt;}
.y8_c02360{bottom:961.867067pt;}
.y7_c02360{bottom:975.706667pt;}
.y6_c02360{bottom:989.467067pt;}
.y5_c02360{bottom:1003.306667pt;}
.y4_c02360{bottom:1017.067067pt;}
.y1_c02360{bottom:1061.787067pt;}
.h3_c02360{height:39.030469pt;}
.h2_c02360{height:48.294844pt;}
.h4_c02360{height:50.062500pt;}
.h1_c02360{height:59.017500pt;}
.h0_c02360{height:1122.666667pt;}
.w1_c02360{width:793.333333pt;}
.w0_c02360{width:793.626667pt;}
.x0_c02360{left:0.000000pt;}
.x3_c02360{left:113.440040pt;}
.x1_c02360{left:114.560000pt;}
.x2_c02360{left:389.440640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bdbc7aaaed60c0cc51f3cd5.woff2')format("woff");}.ff1_c02361{font-family:ff1_c02361;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02361;src:url('chunks/assets/font_c450c5e0f60c7ba10563e745.woff2')format("woff");}.ff2_c02361{font-family:ff2_c02361;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02361{font-family:ff3_c02361;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_c02361;src:url('chunks/assets/font_a200671b14151f1638dd8361.woff2')format("woff");}.ff4_c02361{font-family:ff4_c02361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02361{vertical-align:-82.080000px;}
.v0_c02361{vertical-align:0.000000px;}
.v1_c02361{vertical-align:68.037804px;}
.v2_c02361{vertical-align:69.119964px;}
.ls19_c02361{letter-spacing:-0.288576px;}
.ls18_c02361{letter-spacing:-0.270540px;}
.ls22_c02361{letter-spacing:-0.060120px;}
.ls23_c02361{letter-spacing:-0.050400px;}
.ls1c_c02361{letter-spacing:-0.048096px;}
.ls1f_c02361{letter-spacing:-0.042084px;}
.ls1b_c02361{letter-spacing:-0.030060px;}
.ls17_c02361{letter-spacing:-0.024048px;}
.ls1e_c02361{letter-spacing:-0.018036px;}
.ls14_c02361{letter-spacing:-0.014400px;}
.ls20_c02361{letter-spacing:-0.012024px;}
.ls15_c02361{letter-spacing:-0.007200px;}
.ls1a_c02361{letter-spacing:-0.006012px;}
.ls16_c02361{letter-spacing:-0.005400px;}
.ls13_c02361{letter-spacing:0.000000px;}
.lsd_c02361{letter-spacing:0.006012px;}
.ls8_c02361{letter-spacing:0.007200px;}
.lsc_c02361{letter-spacing:0.012024px;}
.ls5_c02361{letter-spacing:0.014400px;}
.lsf_c02361{letter-spacing:0.018036px;}
.ls4_c02361{letter-spacing:0.021600px;}
.ls7_c02361{letter-spacing:0.028800px;}
.lsa_c02361{letter-spacing:0.036000px;}
.ls3_c02361{letter-spacing:0.043200px;}
.ls0_c02361{letter-spacing:0.046116px;}
.lsb_c02361{letter-spacing:0.048600px;}
.ls9_c02361{letter-spacing:0.050400px;}
.ls1d_c02361{letter-spacing:0.054108px;}
.ls1_c02361{letter-spacing:0.057600px;}
.ls2_c02361{letter-spacing:0.064800px;}
.ls6_c02361{letter-spacing:0.072000px;}
.ls21_c02361{letter-spacing:0.090180px;}
.ls12_c02361{letter-spacing:0.092232px;}
.lse_c02361{letter-spacing:0.108216px;}
.ls11_c02361{letter-spacing:67.320000px;}
.ls10_c02361{letter-spacing:1315.888524px;}
.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;}
}
.ws1_c02361{word-spacing:-15.011964px;}
.ws27_c02361{word-spacing:-0.378756px;}
.ws30_c02361{word-spacing:-0.360720px;}
.ws29_c02361{word-spacing:-0.288576px;}
.ws24_c02361{word-spacing:-0.282564px;}
.ws25_c02361{word-spacing:-0.276552px;}
.ws2b_c02361{word-spacing:-0.270540px;}
.ws2f_c02361{word-spacing:-0.264528px;}
.ws2c_c02361{word-spacing:-0.228456px;}
.ws0_c02361{word-spacing:-0.158112px;}
.ws7_c02361{word-spacing:-0.144000px;}
.ws1d_c02361{word-spacing:-0.122400px;}
.ws1c_c02361{word-spacing:-0.093600px;}
.ws34_c02361{word-spacing:-0.043200px;}
.ws4_c02361{word-spacing:0.000000px;}
.ws6_c02361{word-spacing:0.007200px;}
.ws5_c02361{word-spacing:0.014400px;}
.ws2a_c02361{word-spacing:0.036072px;}
.ws2_c02361{word-spacing:0.046116px;}
.ws3_c02361{word-spacing:0.052704px;}
.ws2e_c02361{word-spacing:0.078156px;}
.ws31_c02361{word-spacing:0.090180px;}
.ws23_c02361{word-spacing:0.096192px;}
.ws2d_c02361{word-spacing:0.102204px;}
.ws1e_c02361{word-spacing:0.113400px;}
.ws21_c02361{word-spacing:0.114228px;}
.ws26_c02361{word-spacing:0.120240px;}
.ws20_c02361{word-spacing:0.129600px;}
.ws28_c02361{word-spacing:0.138276px;}
.ws1f_c02361{word-spacing:0.183600px;}
.ws22_c02361{word-spacing:0.378756px;}
.ws1a_c02361{word-spacing:3.909600px;}
.ws1b_c02361{word-spacing:3.952800px;}
.wsd_c02361{word-spacing:7.020000px;}
.wsc_c02361{word-spacing:7.092000px;}
.ws32_c02361{word-spacing:7.444800px;}
.ws33_c02361{word-spacing:7.610400px;}
.wsa_c02361{word-spacing:7.876800px;}
.wsb_c02361{word-spacing:7.898400px;}
.ws17_c02361{word-spacing:11.772000px;}
.ws16_c02361{word-spacing:11.829600px;}
.ws18_c02361{word-spacing:15.004800px;}
.ws19_c02361{word-spacing:15.120000px;}
.wsf_c02361{word-spacing:15.436800px;}
.wse_c02361{word-spacing:15.465600px;}
.ws11_c02361{word-spacing:16.891200px;}
.ws10_c02361{word-spacing:16.905600px;}
.ws14_c02361{word-spacing:24.105600px;}
.ws12_c02361{word-spacing:24.112800px;}
.ws13_c02361{word-spacing:24.141600px;}
.ws15_c02361{word-spacing:24.199200px;}
.ws9_c02361{word-spacing:26.380800px;}
.ws8_c02361{word-spacing:26.575200px;}
._0_c02361{margin-left:-1.126548px;}
._1_c02361{width:1.202400px;}
._2_c02361{width:430.320924px;}
.fc0_c02361{color:rgb(0,0,0);}
.fs5_c02361{font-size:11.880000px;}
.fs2_c02361{font-size:47.880000px;}
.fs3_c02361{font-size:54.000000px;}
.fs4_c02361{font-size:60.120000px;}
.fs0_c02361{font-size:65.880000px;}
.fs1_c02361{font-size:72.000000px;}
.y0_c02361{bottom:0.000000px;}
.y3_c02361{bottom:75.721467px;}
.y2_c02361{bottom:113.880810px;}
.y3b_c02361{bottom:174.630450px;}
.y3a_c02361{bottom:200.010450px;}
.y39_c02361{bottom:251.580450px;}
.y38_c02361{bottom:269.130450px;}
.y37_c02361{bottom:275.881026px;}
.y34_c02361{bottom:284.610450px;}
.y36_c02361{bottom:293.070837px;}
.y33_c02361{bottom:301.710600px;}
.y35_c02361{bottom:310.350828px;}
.y32_c02361{bottom:328.350846px;}
.y2f_c02361{bottom:337.170450px;}
.y31_c02361{bottom:345.540657px;}
.y2e_c02361{bottom:354.180450px;}
.y30_c02361{bottom:362.820648px;}
.y2d_c02361{bottom:380.820846px;}
.y2a_c02361{bottom:389.640450px;}
.y2c_c02361{bottom:398.100837px;}
.y29_c02361{bottom:406.740450px;}
.y2b_c02361{bottom:415.290648px;}
.y28_c02361{bottom:433.290459px;}
.y27_c02361{bottom:450.570450px;}
.y26_c02361{bottom:486.030600px;}
.y25_c02361{bottom:503.040600px;}
.y24_c02361{bottom:520.320450px;}
.y23_c02361{bottom:538.320450px;}
.y21_c02361{bottom:538.500450px;}
.y20_c02361{bottom:555.600450px;}
.y22_c02361{bottom:572.789892px;}
.y1f_c02361{bottom:572.790450px;}
.y1e_c02361{bottom:590.790459px;}
.y1b_c02361{bottom:599.610450px;}
.y1d_c02361{bottom:608.070450px;}
.y1a_c02361{bottom:616.710450px;}
.y1c_c02361{bottom:625.350828px;}
.y19_c02361{bottom:643.351026px;}
.y16_c02361{bottom:652.080450px;}
.y18_c02361{bottom:660.540837px;}
.y15_c02361{bottom:669.180450px;}
.y17_c02361{bottom:677.820828px;}
.y14_c02361{bottom:697.890450px;}
.y13_c02361{bottom:715.710450px;}
.y12_c02361{bottom:731.640450px;}
.y11_c02361{bottom:746.760450px;}
.y10_c02361{bottom:773.400450px;}
.yf_c02361{bottom:798.600450px;}
.ye_c02361{bottom:829.650450px;}
.yd_c02361{bottom:860.700450px;}
.yc_c02361{bottom:891.750450px;}
.yb_c02361{bottom:922.800450px;}
.ya_c02361{bottom:953.850450px;}
.y9_c02361{bottom:984.900450px;}
.y8_c02361{bottom:1015.950450px;}
.y7_c02361{bottom:1047.000450px;}
.y6_c02361{bottom:1078.050450px;}
.y5_c02361{bottom:1108.920450px;}
.y4_c02361{bottom:1139.970450px;}
.y1_c02361{bottom:1194.510450px;}
.hd_c02361{height:11.659570px;}
.h3_c02361{height:43.909277px;}
.h6_c02361{height:46.991602px;}
.h7_c02361{height:48.254063px;}
.h2_c02361{height:54.331699px;}
.h8_c02361{height:54.421875px;}
.ha_c02361{height:59.004492px;}
.h9_c02361{height:60.589687px;}
.h1_c02361{height:66.394687px;}
.h5_c02361{height:70.664062px;}
.h4_c02361{height:72.562500px;}
.hb_c02361{height:128.627492px;}
.hc_c02361{height:129.709652px;}
.h0_c02361{height:1263.000000px;}
.w1_c02361{width:892.500000px;}
.w0_c02361{width:892.830000px;}
.x0_c02361{left:0.000000px;}
.x3_c02361{left:127.619244px;}
.x1_c02361{left:129.510000px;}
.xf_c02361{left:132.570000px;}
.x6_c02361{left:148.950000px;}
.x7_c02361{left:156.330000px;}
.x5_c02361{left:165.600000px;}
.x9_c02361{left:203.310000px;}
.xa_c02361{left:255.600000px;}
.x4_c02361{left:406.350000px;}
.x2_c02361{left:438.119919px;}
.x8_c02361{left:446.490000px;}
.xd_c02361{left:465.300162px;}
.xe_c02361{left:467.820693px;}
.xb_c02361{left:538.200000px;}
.xc_c02361{left:578.520000px;}
@media print{
.v3_c02361{vertical-align:-72.960000pt;}
.v0_c02361{vertical-align:0.000000pt;}
.v1_c02361{vertical-align:60.478048pt;}
.v2_c02361{vertical-align:61.439968pt;}
.ls19_c02361{letter-spacing:-0.256512pt;}
.ls18_c02361{letter-spacing:-0.240480pt;}
.ls22_c02361{letter-spacing:-0.053440pt;}
.ls23_c02361{letter-spacing:-0.044800pt;}
.ls1c_c02361{letter-spacing:-0.042752pt;}
.ls1f_c02361{letter-spacing:-0.037408pt;}
.ls1b_c02361{letter-spacing:-0.026720pt;}
.ls17_c02361{letter-spacing:-0.021376pt;}
.ls1e_c02361{letter-spacing:-0.016032pt;}
.ls14_c02361{letter-spacing:-0.012800pt;}
.ls20_c02361{letter-spacing:-0.010688pt;}
.ls15_c02361{letter-spacing:-0.006400pt;}
.ls1a_c02361{letter-spacing:-0.005344pt;}
.ls16_c02361{letter-spacing:-0.004800pt;}
.ls13_c02361{letter-spacing:0.000000pt;}
.lsd_c02361{letter-spacing:0.005344pt;}
.ls8_c02361{letter-spacing:0.006400pt;}
.lsc_c02361{letter-spacing:0.010688pt;}
.ls5_c02361{letter-spacing:0.012800pt;}
.lsf_c02361{letter-spacing:0.016032pt;}
.ls4_c02361{letter-spacing:0.019200pt;}
.ls7_c02361{letter-spacing:0.025600pt;}
.lsa_c02361{letter-spacing:0.032000pt;}
.ls3_c02361{letter-spacing:0.038400pt;}
.ls0_c02361{letter-spacing:0.040992pt;}
.lsb_c02361{letter-spacing:0.043200pt;}
.ls9_c02361{letter-spacing:0.044800pt;}
.ls1d_c02361{letter-spacing:0.048096pt;}
.ls1_c02361{letter-spacing:0.051200pt;}
.ls2_c02361{letter-spacing:0.057600pt;}
.ls6_c02361{letter-spacing:0.064000pt;}
.ls21_c02361{letter-spacing:0.080160pt;}
.ls12_c02361{letter-spacing:0.081984pt;}
.lse_c02361{letter-spacing:0.096192pt;}
.ls11_c02361{letter-spacing:59.840000pt;}
.ls10_c02361{letter-spacing:1169.678688pt;}
.ws1_c02361{word-spacing:-13.343968pt;}
.ws27_c02361{word-spacing:-0.336672pt;}
.ws30_c02361{word-spacing:-0.320640pt;}
.ws29_c02361{word-spacing:-0.256512pt;}
.ws24_c02361{word-spacing:-0.251168pt;}
.ws25_c02361{word-spacing:-0.245824pt;}
.ws2b_c02361{word-spacing:-0.240480pt;}
.ws2f_c02361{word-spacing:-0.235136pt;}
.ws2c_c02361{word-spacing:-0.203072pt;}
.ws0_c02361{word-spacing:-0.140544pt;}
.ws7_c02361{word-spacing:-0.128000pt;}
.ws1d_c02361{word-spacing:-0.108800pt;}
.ws1c_c02361{word-spacing:-0.083200pt;}
.ws34_c02361{word-spacing:-0.038400pt;}
.ws4_c02361{word-spacing:0.000000pt;}
.ws6_c02361{word-spacing:0.006400pt;}
.ws5_c02361{word-spacing:0.012800pt;}
.ws2a_c02361{word-spacing:0.032064pt;}
.ws2_c02361{word-spacing:0.040992pt;}
.ws3_c02361{word-spacing:0.046848pt;}
.ws2e_c02361{word-spacing:0.069472pt;}
.ws31_c02361{word-spacing:0.080160pt;}
.ws23_c02361{word-spacing:0.085504pt;}
.ws2d_c02361{word-spacing:0.090848pt;}
.ws1e_c02361{word-spacing:0.100800pt;}
.ws21_c02361{word-spacing:0.101536pt;}
.ws26_c02361{word-spacing:0.106880pt;}
.ws20_c02361{word-spacing:0.115200pt;}
.ws28_c02361{word-spacing:0.122912pt;}
.ws1f_c02361{word-spacing:0.163200pt;}
.ws22_c02361{word-spacing:0.336672pt;}
.ws1a_c02361{word-spacing:3.475200pt;}
.ws1b_c02361{word-spacing:3.513600pt;}
.wsd_c02361{word-spacing:6.240000pt;}
.wsc_c02361{word-spacing:6.304000pt;}
.ws32_c02361{word-spacing:6.617600pt;}
.ws33_c02361{word-spacing:6.764800pt;}
.wsa_c02361{word-spacing:7.001600pt;}
.wsb_c02361{word-spacing:7.020800pt;}
.ws17_c02361{word-spacing:10.464000pt;}
.ws16_c02361{word-spacing:10.515200pt;}
.ws18_c02361{word-spacing:13.337600pt;}
.ws19_c02361{word-spacing:13.440000pt;}
.wsf_c02361{word-spacing:13.721600pt;}
.wse_c02361{word-spacing:13.747200pt;}
.ws11_c02361{word-spacing:15.014400pt;}
.ws10_c02361{word-spacing:15.027200pt;}
.ws14_c02361{word-spacing:21.427200pt;}
.ws12_c02361{word-spacing:21.433600pt;}
.ws13_c02361{word-spacing:21.459200pt;}
.ws15_c02361{word-spacing:21.510400pt;}
.ws9_c02361{word-spacing:23.449600pt;}
.ws8_c02361{word-spacing:23.622400pt;}
._0_c02361{margin-left:-1.001376pt;}
._1_c02361{width:1.068800pt;}
._2_c02361{width:382.507488pt;}
.fs5_c02361{font-size:10.560000pt;}
.fs2_c02361{font-size:42.560000pt;}
.fs3_c02361{font-size:48.000000pt;}
.fs4_c02361{font-size:53.440000pt;}
.fs0_c02361{font-size:58.560000pt;}
.fs1_c02361{font-size:64.000000pt;}
.y0_c02361{bottom:0.000000pt;}
.y3_c02361{bottom:67.307971pt;}
.y2_c02361{bottom:101.227387pt;}
.y3b_c02361{bottom:155.227067pt;}
.y3a_c02361{bottom:177.787067pt;}
.y39_c02361{bottom:223.627067pt;}
.y38_c02361{bottom:239.227067pt;}
.y37_c02361{bottom:245.227579pt;}
.y34_c02361{bottom:252.987067pt;}
.y36_c02361{bottom:260.507411pt;}
.y33_c02361{bottom:268.187200pt;}
.y35_c02361{bottom:275.867403pt;}
.y32_c02361{bottom:291.867419pt;}
.y2f_c02361{bottom:299.707067pt;}
.y31_c02361{bottom:307.147251pt;}
.y2e_c02361{bottom:314.827067pt;}
.y30_c02361{bottom:322.507243pt;}
.y2d_c02361{bottom:338.507419pt;}
.y2a_c02361{bottom:346.347067pt;}
.y2c_c02361{bottom:353.867411pt;}
.y29_c02361{bottom:361.547067pt;}
.y2b_c02361{bottom:369.147243pt;}
.y28_c02361{bottom:385.147075pt;}
.y27_c02361{bottom:400.507067pt;}
.y26_c02361{bottom:432.027200pt;}
.y25_c02361{bottom:447.147200pt;}
.y24_c02361{bottom:462.507067pt;}
.y23_c02361{bottom:478.507067pt;}
.y21_c02361{bottom:478.667067pt;}
.y20_c02361{bottom:493.867067pt;}
.y22_c02361{bottom:509.146571pt;}
.y1f_c02361{bottom:509.147067pt;}
.y1e_c02361{bottom:525.147075pt;}
.y1b_c02361{bottom:532.987067pt;}
.y1d_c02361{bottom:540.507067pt;}
.y1a_c02361{bottom:548.187067pt;}
.y1c_c02361{bottom:555.867403pt;}
.y19_c02361{bottom:571.867579pt;}
.y16_c02361{bottom:579.627067pt;}
.y18_c02361{bottom:587.147411pt;}
.y15_c02361{bottom:594.827067pt;}
.y17_c02361{bottom:602.507403pt;}
.y14_c02361{bottom:620.347067pt;}
.y13_c02361{bottom:636.187067pt;}
.y12_c02361{bottom:650.347067pt;}
.y11_c02361{bottom:663.787067pt;}
.y10_c02361{bottom:687.467067pt;}
.yf_c02361{bottom:709.867067pt;}
.ye_c02361{bottom:737.467067pt;}
.yd_c02361{bottom:765.067067pt;}
.yc_c02361{bottom:792.667067pt;}
.yb_c02361{bottom:820.267067pt;}
.ya_c02361{bottom:847.867067pt;}
.y9_c02361{bottom:875.467067pt;}
.y8_c02361{bottom:903.067067pt;}
.y7_c02361{bottom:930.667067pt;}
.y6_c02361{bottom:958.267067pt;}
.y5_c02361{bottom:985.707067pt;}
.y4_c02361{bottom:1013.307067pt;}
.y1_c02361{bottom:1061.787067pt;}
.hd_c02361{height:10.364062pt;}
.h3_c02361{height:39.030469pt;}
.h6_c02361{height:41.770312pt;}
.h7_c02361{height:42.892500pt;}
.h2_c02361{height:48.294844pt;}
.h8_c02361{height:48.375000pt;}
.ha_c02361{height:52.448437pt;}
.h9_c02361{height:53.857500pt;}
.h1_c02361{height:59.017500pt;}
.h5_c02361{height:62.812500pt;}
.h4_c02361{height:64.500000pt;}
.hb_c02361{height:114.335548pt;}
.hc_c02361{height:115.297468pt;}
.h0_c02361{height:1122.666667pt;}
.w1_c02361{width:793.333333pt;}
.w0_c02361{width:793.626667pt;}
.x0_c02361{left:0.000000pt;}
.x3_c02361{left:113.439328pt;}
.x1_c02361{left:115.120000pt;}
.xf_c02361{left:117.840000pt;}
.x6_c02361{left:132.400000pt;}
.x7_c02361{left:138.960000pt;}
.x5_c02361{left:147.200000pt;}
.x9_c02361{left:180.720000pt;}
.xa_c02361{left:227.200000pt;}
.x4_c02361{left:361.200000pt;}
.x2_c02361{left:389.439928pt;}
.x8_c02361{left:396.880000pt;}
.xd_c02361{left:413.600144pt;}
.xe_c02361{left:415.840616pt;}
.xb_c02361{left:478.400000pt;}
.xc_c02361{left:514.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_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_d226daa620e8706d2a896fac.woff2')format("woff");}.ff1_c02362{font-family:ff1_c02362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02362;src:url('chunks/assets/font_2ec3d7c33e440d0518200aa0.woff2')format("woff");}.ff2_c02362{font-family:ff2_c02362;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02362{font-family:ff3_c02362;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_c02362;src:url('chunks/assets/font_9e1b2d822bdea00fcaa01f25.woff2')format("woff");}.ff4_c02362{font-family:ff4_c02362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02362;src:url('chunks/assets/font_1e28a1142bcd8ff88654055a.woff2')format("woff");}.ff5_c02362{font-family:ff5_c02362;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_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;}
.ls18_c02362{letter-spacing:-0.216000px;}
.ls1c_c02362{letter-spacing:-0.180000px;}
.ls17_c02362{letter-spacing:-0.165600px;}
.ls1b_c02362{letter-spacing:-0.043200px;}
.ls1d_c02362{letter-spacing:-0.036000px;}
.ls16_c02362{letter-spacing:-0.021600px;}
.ls15_c02362{letter-spacing:-0.014400px;}
.ls1a_c02362{letter-spacing:-0.007200px;}
.ls14_c02362{letter-spacing:0.000000px;}
.ls3_c02362{letter-spacing:0.007200px;}
.ls4_c02362{letter-spacing:0.013176px;}
.lsa_c02362{letter-spacing:0.014400px;}
.ls9_c02362{letter-spacing:0.019764px;}
.lse_c02362{letter-spacing:0.021600px;}
.ls7_c02362{letter-spacing:0.026352px;}
.ls1_c02362{letter-spacing:0.028800px;}
.ls5_c02362{letter-spacing:0.032940px;}
.lsc_c02362{letter-spacing:0.036000px;}
.ls8_c02362{letter-spacing:0.039528px;}
.lsf_c02362{letter-spacing:0.043200px;}
.ls0_c02362{letter-spacing:0.046116px;}
.lsb_c02362{letter-spacing:0.050400px;}
.ls19_c02362{letter-spacing:0.052704px;}
.lsd_c02362{letter-spacing:0.057600px;}
.ls12_c02362{letter-spacing:0.064800px;}
.ls6_c02362{letter-spacing:0.065880px;}
.ls11_c02362{letter-spacing:0.072000px;}
.ls2_c02362{letter-spacing:0.086400px;}
.ls13_c02362{letter-spacing:0.092232px;}
.ls10_c02362{letter-spacing:16.200000px;}
.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;}
}
.ws1_c02362{word-spacing:-18.000000px;}
.wsa_c02362{word-spacing:-0.187200px;}
.ws2a_c02362{word-spacing:-0.158400px;}
.ws0_c02362{word-spacing:-0.158112px;}
.ws32_c02362{word-spacing:-0.129600px;}
.ws2d_c02362{word-spacing:-0.108000px;}
.ws34_c02362{word-spacing:-0.093600px;}
.ws9_c02362{word-spacing:-0.086400px;}
.ws35_c02362{word-spacing:-0.072000px;}
.ws29_c02362{word-spacing:-0.043200px;}
.ws20_c02362{word-spacing:-0.021600px;}
.ws21_c02362{word-spacing:-0.007200px;}
.ws4_c02362{word-spacing:0.000000px;}
.ws2_c02362{word-spacing:0.046116px;}
.ws3_c02362{word-spacing:0.052704px;}
.ws14_c02362{word-spacing:0.072468px;}
.wsc_c02362{word-spacing:0.777384px;}
.ws26_c02362{word-spacing:1.000800px;}
.ws25_c02362{word-spacing:1.036800px;}
.ws24_c02362{word-spacing:1.065600px;}
.ws5_c02362{word-spacing:2.347200px;}
.ws6_c02362{word-spacing:2.534400px;}
.ws7_c02362{word-spacing:2.541600px;}
.ws8_c02362{word-spacing:2.685600px;}
.ws3b_c02362{word-spacing:2.880000px;}
.ws3c_c02362{word-spacing:2.916000px;}
.ws3f_c02362{word-spacing:4.255200px;}
.ws3d_c02362{word-spacing:4.262400px;}
.ws3e_c02362{word-spacing:4.276800px;}
.ws30_c02362{word-spacing:4.564800px;}
.ws2f_c02362{word-spacing:4.593600px;}
.ws23_c02362{word-spacing:6.789600px;}
.ws22_c02362{word-spacing:6.811200px;}
.ws12_c02362{word-spacing:6.891048px;}
.ws11_c02362{word-spacing:8.327232px;}
.ws2e_c02362{word-spacing:8.640000px;}
.ws31_c02362{word-spacing:9.324000px;}
.ws1c_c02362{word-spacing:9.914400px;}
.ws1d_c02362{word-spacing:9.964800px;}
.ws1b_c02362{word-spacing:10.058400px;}
.wsb_c02362{word-spacing:10.876788px;}
.ws33_c02362{word-spacing:11.030400px;}
.ws1a_c02362{word-spacing:12.571200px;}
.ws38_c02362{word-spacing:14.565600px;}
.ws36_c02362{word-spacing:14.709600px;}
.ws37_c02362{word-spacing:14.731200px;}
.ws3a_c02362{word-spacing:14.760000px;}
.ws39_c02362{word-spacing:14.767200px;}
.ws10_c02362{word-spacing:14.809824px;}
.ws28_c02362{word-spacing:16.077600px;}
.ws27_c02362{word-spacing:16.200000px;}
.ws18_c02362{word-spacing:17.229600px;}
.ws19_c02362{word-spacing:17.244000px;}
.wsf_c02362{word-spacing:18.413460px;}
.ws13_c02362{word-spacing:32.808240px;}
.ws17_c02362{word-spacing:37.360800px;}
.ws15_c02362{word-spacing:37.411200px;}
.ws16_c02362{word-spacing:37.425600px;}
.wsd_c02362{word-spacing:37.465956px;}
.wse_c02362{word-spacing:37.505484px;}
.ws2b_c02362{word-spacing:38.397600px;}
.ws2c_c02362{word-spacing:38.721600px;}
.ws1f_c02362{word-spacing:39.909600px;}
.ws1e_c02362{word-spacing:40.003200px;}
._0_c02362{margin-left:-1.126548px;}
._1_c02362{width:1.192428px;}
.fc0_c02362{color:rgb(0,0,0);}
.fs2_c02362{font-size:47.880000px;}
.fs0_c02362{font-size:65.880000px;}
.fs1_c02362{font-size:72.000000px;}
.y0_c02362{bottom:0.000000px;}
.y3_c02362{bottom:75.721467px;}
.y2_c02362{bottom:113.880810px;}
.y29_c02362{bottom:143.220600px;}
.y28_c02362{bottom:174.270600px;}
.y27_c02362{bottom:205.320600px;}
.y26_c02362{bottom:236.370600px;}
.y25_c02362{bottom:262.830450px;}
.y24_c02362{bottom:288.120450px;}
.y23_c02362{bottom:319.170450px;}
.y22_c02362{bottom:350.220450px;}
.y21_c02362{bottom:381.270450px;}
.y20_c02362{bottom:412.320450px;}
.y1f_c02362{bottom:443.280450px;}
.y1e_c02362{bottom:474.330450px;}
.y1d_c02362{bottom:505.380450px;}
.y1c_c02362{bottom:536.430450px;}
.y1b_c02362{bottom:567.480450px;}
.y1a_c02362{bottom:598.530450px;}
.y19_c02362{bottom:629.580450px;}
.y18_c02362{bottom:660.630450px;}
.y17_c02362{bottom:687.090450px;}
.y16_c02362{bottom:712.380450px;}
.y15_c02362{bottom:743.430450px;}
.y14_c02362{bottom:774.480450px;}
.y13_c02362{bottom:805.530450px;}
.y12_c02362{bottom:836.580450px;}
.y11_c02362{bottom:867.630450px;}
.y10_c02362{bottom:894.090450px;}
.yf_c02362{bottom:908.672430px;}
.ye_c02362{bottom:927.662340px;}
.yd_c02362{bottom:946.652250px;}
.yc_c02362{bottom:965.551575px;}
.yb_c02362{bottom:984.541485px;}
.ya_c02362{bottom:1003.531395px;}
.y9_c02362{bottom:1022.521305px;}
.y8_c02362{bottom:1041.511215px;}
.y7_c02362{bottom:1060.410540px;}
.y6_c02362{bottom:1079.400450px;}
.y5_c02362{bottom:1109.100450px;}
.y4_c02362{bottom:1140.150450px;}
.y1_c02362{bottom:1194.510450px;}
.h3_c02362{height:43.909277px;}
.h6_c02362{height:46.991602px;}
.h2_c02362{height:54.331699px;}
.h5_c02362{height:64.657617px;}
.h1_c02362{height:66.394687px;}
.h7_c02362{height:70.664062px;}
.h4_c02362{height:72.562500px;}
.h0_c02362{height:1263.000000px;}
.w1_c02362{width:892.500000px;}
.w0_c02362{width:892.830000px;}
.x0_c02362{left:0.000000px;}
.x3_c02362{left:127.619244px;}
.x1_c02362{left:129.510000px;}
.x6_c02362{left:148.950000px;}
.x4_c02362{left:170.190000px;}
.x5_c02362{left:191.429712px;}
.x2_c02362{left:438.119919px;}
@media print{
.v0_c02362{vertical-align:0.000000pt;}
.ls18_c02362{letter-spacing:-0.192000pt;}
.ls1c_c02362{letter-spacing:-0.160000pt;}
.ls17_c02362{letter-spacing:-0.147200pt;}
.ls1b_c02362{letter-spacing:-0.038400pt;}
.ls1d_c02362{letter-spacing:-0.032000pt;}
.ls16_c02362{letter-spacing:-0.019200pt;}
.ls15_c02362{letter-spacing:-0.012800pt;}
.ls1a_c02362{letter-spacing:-0.006400pt;}
.ls14_c02362{letter-spacing:0.000000pt;}
.ls3_c02362{letter-spacing:0.006400pt;}
.ls4_c02362{letter-spacing:0.011712pt;}
.lsa_c02362{letter-spacing:0.012800pt;}
.ls9_c02362{letter-spacing:0.017568pt;}
.lse_c02362{letter-spacing:0.019200pt;}
.ls7_c02362{letter-spacing:0.023424pt;}
.ls1_c02362{letter-spacing:0.025600pt;}
.ls5_c02362{letter-spacing:0.029280pt;}
.lsc_c02362{letter-spacing:0.032000pt;}
.ls8_c02362{letter-spacing:0.035136pt;}
.lsf_c02362{letter-spacing:0.038400pt;}
.ls0_c02362{letter-spacing:0.040992pt;}
.lsb_c02362{letter-spacing:0.044800pt;}
.ls19_c02362{letter-spacing:0.046848pt;}
.lsd_c02362{letter-spacing:0.051200pt;}
.ls12_c02362{letter-spacing:0.057600pt;}
.ls6_c02362{letter-spacing:0.058560pt;}
.ls11_c02362{letter-spacing:0.064000pt;}
.ls2_c02362{letter-spacing:0.076800pt;}
.ls13_c02362{letter-spacing:0.081984pt;}
.ls10_c02362{letter-spacing:14.400000pt;}
.ws1_c02362{word-spacing:-16.000000pt;}
.wsa_c02362{word-spacing:-0.166400pt;}
.ws2a_c02362{word-spacing:-0.140800pt;}
.ws0_c02362{word-spacing:-0.140544pt;}
.ws32_c02362{word-spacing:-0.115200pt;}
.ws2d_c02362{word-spacing:-0.096000pt;}
.ws34_c02362{word-spacing:-0.083200pt;}
.ws9_c02362{word-spacing:-0.076800pt;}
.ws35_c02362{word-spacing:-0.064000pt;}
.ws29_c02362{word-spacing:-0.038400pt;}
.ws20_c02362{word-spacing:-0.019200pt;}
.ws21_c02362{word-spacing:-0.006400pt;}
.ws4_c02362{word-spacing:0.000000pt;}
.ws2_c02362{word-spacing:0.040992pt;}
.ws3_c02362{word-spacing:0.046848pt;}
.ws14_c02362{word-spacing:0.064416pt;}
.wsc_c02362{word-spacing:0.691008pt;}
.ws26_c02362{word-spacing:0.889600pt;}
.ws25_c02362{word-spacing:0.921600pt;}
.ws24_c02362{word-spacing:0.947200pt;}
.ws5_c02362{word-spacing:2.086400pt;}
.ws6_c02362{word-spacing:2.252800pt;}
.ws7_c02362{word-spacing:2.259200pt;}
.ws8_c02362{word-spacing:2.387200pt;}
.ws3b_c02362{word-spacing:2.560000pt;}
.ws3c_c02362{word-spacing:2.592000pt;}
.ws3f_c02362{word-spacing:3.782400pt;}
.ws3d_c02362{word-spacing:3.788800pt;}
.ws3e_c02362{word-spacing:3.801600pt;}
.ws30_c02362{word-spacing:4.057600pt;}
.ws2f_c02362{word-spacing:4.083200pt;}
.ws23_c02362{word-spacing:6.035200pt;}
.ws22_c02362{word-spacing:6.054400pt;}
.ws12_c02362{word-spacing:6.125376pt;}
.ws11_c02362{word-spacing:7.401984pt;}
.ws2e_c02362{word-spacing:7.680000pt;}
.ws31_c02362{word-spacing:8.288000pt;}
.ws1c_c02362{word-spacing:8.812800pt;}
.ws1d_c02362{word-spacing:8.857600pt;}
.ws1b_c02362{word-spacing:8.940800pt;}
.wsb_c02362{word-spacing:9.668256pt;}
.ws33_c02362{word-spacing:9.804800pt;}
.ws1a_c02362{word-spacing:11.174400pt;}
.ws38_c02362{word-spacing:12.947200pt;}
.ws36_c02362{word-spacing:13.075200pt;}
.ws37_c02362{word-spacing:13.094400pt;}
.ws3a_c02362{word-spacing:13.120000pt;}
.ws39_c02362{word-spacing:13.126400pt;}
.ws10_c02362{word-spacing:13.164288pt;}
.ws28_c02362{word-spacing:14.291200pt;}
.ws27_c02362{word-spacing:14.400000pt;}
.ws18_c02362{word-spacing:15.315200pt;}
.ws19_c02362{word-spacing:15.328000pt;}
.wsf_c02362{word-spacing:16.367520pt;}
.ws13_c02362{word-spacing:29.162880pt;}
.ws17_c02362{word-spacing:33.209600pt;}
.ws15_c02362{word-spacing:33.254400pt;}
.ws16_c02362{word-spacing:33.267200pt;}
.wsd_c02362{word-spacing:33.303072pt;}
.wse_c02362{word-spacing:33.338208pt;}
.ws2b_c02362{word-spacing:34.131200pt;}
.ws2c_c02362{word-spacing:34.419200pt;}
.ws1f_c02362{word-spacing:35.475200pt;}
.ws1e_c02362{word-spacing:35.558400pt;}
._0_c02362{margin-left:-1.001376pt;}
._1_c02362{width:1.059936pt;}
.fs2_c02362{font-size:42.560000pt;}
.fs0_c02362{font-size:58.560000pt;}
.fs1_c02362{font-size:64.000000pt;}
.y0_c02362{bottom:0.000000pt;}
.y3_c02362{bottom:67.307971pt;}
.y2_c02362{bottom:101.227387pt;}
.y29_c02362{bottom:127.307200pt;}
.y28_c02362{bottom:154.907200pt;}
.y27_c02362{bottom:182.507200pt;}
.y26_c02362{bottom:210.107200pt;}
.y25_c02362{bottom:233.627067pt;}
.y24_c02362{bottom:256.107067pt;}
.y23_c02362{bottom:283.707067pt;}
.y22_c02362{bottom:311.307067pt;}
.y21_c02362{bottom:338.907067pt;}
.y20_c02362{bottom:366.507067pt;}
.y1f_c02362{bottom:394.027067pt;}
.y1e_c02362{bottom:421.627067pt;}
.y1d_c02362{bottom:449.227067pt;}
.y1c_c02362{bottom:476.827067pt;}
.y1b_c02362{bottom:504.427067pt;}
.y1a_c02362{bottom:532.027067pt;}
.y19_c02362{bottom:559.627067pt;}
.y18_c02362{bottom:587.227067pt;}
.y17_c02362{bottom:610.747067pt;}
.y16_c02362{bottom:633.227067pt;}
.y15_c02362{bottom:660.827067pt;}
.y14_c02362{bottom:688.427067pt;}
.y13_c02362{bottom:716.027067pt;}
.y12_c02362{bottom:743.627067pt;}
.y11_c02362{bottom:771.227067pt;}
.y10_c02362{bottom:794.747067pt;}
.yf_c02362{bottom:807.708827pt;}
.ye_c02362{bottom:824.588747pt;}
.yd_c02362{bottom:841.468667pt;}
.yc_c02362{bottom:858.268067pt;}
.yb_c02362{bottom:875.147987pt;}
.ya_c02362{bottom:892.027907pt;}
.y9_c02362{bottom:908.907827pt;}
.y8_c02362{bottom:925.787747pt;}
.y7_c02362{bottom:942.587147pt;}
.y6_c02362{bottom:959.467067pt;}
.y5_c02362{bottom:985.867067pt;}
.y4_c02362{bottom:1013.467067pt;}
.y1_c02362{bottom:1061.787067pt;}
.h3_c02362{height:39.030469pt;}
.h6_c02362{height:41.770312pt;}
.h2_c02362{height:48.294844pt;}
.h5_c02362{height:57.473437pt;}
.h1_c02362{height:59.017500pt;}
.h7_c02362{height:62.812500pt;}
.h4_c02362{height:64.500000pt;}
.h0_c02362{height:1122.666667pt;}
.w1_c02362{width:793.333333pt;}
.w0_c02362{width:793.626667pt;}
.x0_c02362{left:0.000000pt;}
.x3_c02362{left:113.439328pt;}
.x1_c02362{left:115.120000pt;}
.x6_c02362{left:132.400000pt;}
.x4_c02362{left:151.280000pt;}
.x5_c02362{left:170.159744pt;}
.x2_c02362{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fab7d4ea83af32408980ad24.woff2')format("woff");}.ff1_c02363{font-family:ff1_c02363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02363;src:url('chunks/assets/font_1ef23892706f2e682d1fe2f9.woff2')format("woff");}.ff2_c02363{font-family:ff2_c02363;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02363{font-family:ff3_c02363;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_c02363;src:url('chunks/assets/font_bf6ec7cc7a9bcac31e304e9f.woff2')format("woff");}.ff4_c02363{font-family:ff4_c02363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02363;src:url('chunks/assets/font_64b6e315d0ec8b39c5d9024f.woff2')format("woff");}.ff5_c02363{font-family:ff5_c02363;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02363;src:url('chunks/assets/font_cdb593455e319c4a87c015d2.woff2')format("woff");}.ff6_c02363{font-family:ff6_c02363;line-height:0.664062;font-style: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);}
.v1_c02363{vertical-align:-66.600000px;}
.v0_c02363{vertical-align:0.000000px;}
.ls19_c02363{letter-spacing:-0.021600px;}
.ls18_c02363{letter-spacing:-0.006588px;}
.ls17_c02363{letter-spacing:0.000000px;}
.ls9_c02363{letter-spacing:0.013176px;}
.ls16_c02363{letter-spacing:0.014400px;}
.lsb_c02363{letter-spacing:0.019764px;}
.ls11_c02363{letter-spacing:0.021600px;}
.ls2_c02363{letter-spacing:0.026352px;}
.lsf_c02363{letter-spacing:0.028800px;}
.ls4_c02363{letter-spacing:0.032940px;}
.ls1b_c02363{letter-spacing:0.036000px;}
.lsa_c02363{letter-spacing:0.039528px;}
.ls0_c02363{letter-spacing:0.046116px;}
.ls14_c02363{letter-spacing:0.050400px;}
.ls5_c02363{letter-spacing:0.052704px;}
.lse_c02363{letter-spacing:0.057600px;}
.ls7_c02363{letter-spacing:0.059292px;}
.ls13_c02363{letter-spacing:0.064800px;}
.ls3_c02363{letter-spacing:0.065880px;}
.ls15_c02363{letter-spacing:0.072000px;}
.lsc_c02363{letter-spacing:0.072468px;}
.ls6_c02363{letter-spacing:0.079056px;}
.ls8_c02363{letter-spacing:0.085644px;}
.lsd_c02363{letter-spacing:0.092232px;}
.ls12_c02363{letter-spacing:0.098820px;}
.ls10_c02363{letter-spacing:0.108000px;}
.ls1a_c02363{letter-spacing:3.960000px;}
.ls1_c02363{letter-spacing:249.210000px;}
.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;}
}
.ws1_c02363{word-spacing:-18.028800px;}
.ws2_c02363{word-spacing:-18.000000px;}
.ws24_c02363{word-spacing:-0.266400px;}
.ws0_c02363{word-spacing:-0.158112px;}
.ws23_c02363{word-spacing:-0.021600px;}
.ws47_c02363{word-spacing:-0.014400px;}
.ws5_c02363{word-spacing:0.000000px;}
.wsd_c02363{word-spacing:0.006588px;}
.ws27_c02363{word-spacing:0.019764px;}
.ws25_c02363{word-spacing:0.026352px;}
.ws32_c02363{word-spacing:0.039528px;}
.ws3_c02363{word-spacing:0.046116px;}
.ws4_c02363{word-spacing:0.052704px;}
.ws43_c02363{word-spacing:0.059292px;}
.ws1d_c02363{word-spacing:0.065880px;}
.ws18_c02363{word-spacing:0.375516px;}
.ws17_c02363{word-spacing:0.434808px;}
.ws42_c02363{word-spacing:1.106784px;}
.ws40_c02363{word-spacing:1.126548px;}
.ws41_c02363{word-spacing:1.139724px;}
.ws2f_c02363{word-spacing:1.838052px;}
.ws30_c02363{word-spacing:1.851228px;}
.ws11_c02363{word-spacing:3.649752px;}
.ws12_c02363{word-spacing:3.669516px;}
.ws22_c02363{word-spacing:3.830400px;}
.ws20_c02363{word-spacing:3.852000px;}
.ws21_c02363{word-spacing:3.981600px;}
.ws7_c02363{word-spacing:3.985740px;}
.ws6_c02363{word-spacing:4.025268px;}
.ws8_c02363{word-spacing:4.736772px;}
.ws13_c02363{word-spacing:4.743360px;}
.ws1c_c02363{word-spacing:5.079348px;}
.ws1b_c02363{word-spacing:5.092524px;}
.ws26_c02363{word-spacing:6.146604px;}
.ws10_c02363{word-spacing:6.159780px;}
.ws36_c02363{word-spacing:8.676396px;}
.ws35_c02363{word-spacing:8.715924px;}
.ws2d_c02363{word-spacing:9.743652px;}
.ws2e_c02363{word-spacing:9.770004px;}
.ws39_c02363{word-spacing:10.099404px;}
.ws38_c02363{word-spacing:10.112580px;}
.wsa_c02363{word-spacing:11.529000px;}
.ws9_c02363{word-spacing:11.555352px;}
.ws2c_c02363{word-spacing:12.642372px;}
.ws2b_c02363{word-spacing:12.655548px;}
.ws46_c02363{word-spacing:14.284800px;}
.ws19_c02363{word-spacing:15.119460px;}
.ws1a_c02363{word-spacing:15.158988px;}
.ws1e_c02363{word-spacing:15.364800px;}
.ws1f_c02363{word-spacing:15.480000px;}
.ws44_c02363{word-spacing:15.775200px;}
.ws45_c02363{word-spacing:15.789600px;}
.ws3a_c02363{word-spacing:16.246008px;}
.ws3b_c02363{word-spacing:16.272360px;}
.ws33_c02363{word-spacing:16.588584px;}
.ws34_c02363{word-spacing:16.614936px;}
.ws28_c02363{word-spacing:16.997040px;}
.ws37_c02363{word-spacing:18.426636px;}
.wsf_c02363{word-spacing:19.467540px;}
.wse_c02363{word-spacing:19.513656px;}
.wsb_c02363{word-spacing:19.829880px;}
.ws3c_c02363{word-spacing:19.856232px;}
.ws3d_c02363{word-spacing:19.869408px;}
.wsc_c02363{word-spacing:19.895760px;}
.ws14_c02363{word-spacing:23.815620px;}
.ws29_c02363{word-spacing:27.419256px;}
.ws2a_c02363{word-spacing:27.432432px;}
.ws31_c02363{word-spacing:28.512864px;}
.ws3f_c02363{word-spacing:29.514240px;}
.ws3e_c02363{word-spacing:29.566944px;}
.ws16_c02363{word-spacing:48.626028px;}
.ws15_c02363{word-spacing:49.054248px;}
._2_c02363{margin-left:-4.334400px;}
._0_c02363{margin-left:-1.126548px;}
._1_c02363{width:1.238544px;}
.fc0_c02363{color:rgb(0,0,0);}
.fs1_c02363{font-size:24.120000px;}
.fs4_c02363{font-size:36.000000px;}
.fs2_c02363{font-size:47.880000px;}
.fs5_c02363{font-size:60.120000px;}
.fs0_c02363{font-size:65.880000px;}
.fs3_c02363{font-size:72.000000px;}
.y0_c02363{bottom:0.000000px;}
.y3_c02363{bottom:75.721467px;}
.y2_c02363{bottom:113.880810px;}
.y34_c02363{bottom:160.590450px;}
.y33_c02363{bottom:191.640450px;}
.y32_c02363{bottom:222.690450px;}
.y31_c02363{bottom:253.290450px;}
.y30_c02363{bottom:272.194680px;}
.y2f_c02363{bottom:291.184590px;}
.y2e_c02363{bottom:310.174500px;}
.y2d_c02363{bottom:329.073825px;}
.y2c_c02363{bottom:348.063735px;}
.y2b_c02363{bottom:367.053645px;}
.y2a_c02363{bottom:386.043555px;}
.y29_c02363{bottom:405.033465px;}
.y28_c02363{bottom:424.023375px;}
.y27_c02363{bottom:442.922700px;}
.y26_c02363{bottom:461.912610px;}
.y25_c02363{bottom:480.902520px;}
.y24_c02363{bottom:499.892430px;}
.y23_c02363{bottom:518.882340px;}
.y22_c02363{bottom:537.781665px;}
.y21_c02363{bottom:556.771575px;}
.y20_c02363{bottom:575.761485px;}
.y1f_c02363{bottom:594.751395px;}
.y1e_c02363{bottom:613.741305px;}
.y1d_c02363{bottom:632.640630px;}
.y1c_c02363{bottom:651.630540px;}
.y1b_c02363{bottom:670.620450px;}
.y1a_c02363{bottom:693.210450px;}
.y19_c02363{bottom:715.890450px;}
.y18_c02363{bottom:746.940450px;}
.y17_c02363{bottom:777.990450px;}
.y16_c02363{bottom:798.242700px;}
.y15_c02363{bottom:817.232610px;}
.y14_c02363{bottom:836.222520px;}
.y13_c02363{bottom:855.212430px;}
.y12_c02363{bottom:874.202340px;}
.y11_c02363{bottom:893.101665px;}
.y10_c02363{bottom:912.091575px;}
.yf_c02363{bottom:931.081485px;}
.ye_c02363{bottom:950.071395px;}
.yd_c02363{bottom:969.061305px;}
.yc_c02363{bottom:987.960630px;}
.yb_c02363{bottom:1006.950540px;}
.ya_c02363{bottom:1025.940450px;}
.y9_c02363{bottom:1044.030450px;}
.y8_c02363{bottom:1058.700810px;}
.y7_c02363{bottom:1077.690720px;}
.y6_c02363{bottom:1096.680630px;}
.y5_c02363{bottom:1115.670540px;}
.y4_c02363{bottom:1151.310450px;}
.y1_c02363{bottom:1194.510450px;}
.h4_c02363{height:23.672461px;}
.h9_c02363{height:35.332031px;}
.ha_c02363{height:39.923437px;}
.h3_c02363{height:43.909277px;}
.h6_c02363{height:46.991602px;}
.h2_c02363{height:54.331699px;}
.h5_c02363{height:64.657617px;}
.h1_c02363{height:66.394687px;}
.h7_c02363{height:70.664062px;}
.h8_c02363{height:72.562500px;}
.h0_c02363{height:1263.000000px;}
.w1_c02363{width:892.500000px;}
.w0_c02363{width:892.830000px;}
.x0_c02363{left:0.000000px;}
.x3_c02363{left:127.619244px;}
.x1_c02363{left:129.510000px;}
.x6_c02363{left:148.950000px;}
.x4_c02363{left:170.190288px;}
.x5_c02363{left:191.430000px;}
.x2_c02363{left:438.119919px;}
@media print{
.v1_c02363{vertical-align:-59.200000pt;}
.v0_c02363{vertical-align:0.000000pt;}
.ls19_c02363{letter-spacing:-0.019200pt;}
.ls18_c02363{letter-spacing:-0.005856pt;}
.ls17_c02363{letter-spacing:0.000000pt;}
.ls9_c02363{letter-spacing:0.011712pt;}
.ls16_c02363{letter-spacing:0.012800pt;}
.lsb_c02363{letter-spacing:0.017568pt;}
.ls11_c02363{letter-spacing:0.019200pt;}
.ls2_c02363{letter-spacing:0.023424pt;}
.lsf_c02363{letter-spacing:0.025600pt;}
.ls4_c02363{letter-spacing:0.029280pt;}
.ls1b_c02363{letter-spacing:0.032000pt;}
.lsa_c02363{letter-spacing:0.035136pt;}
.ls0_c02363{letter-spacing:0.040992pt;}
.ls14_c02363{letter-spacing:0.044800pt;}
.ls5_c02363{letter-spacing:0.046848pt;}
.lse_c02363{letter-spacing:0.051200pt;}
.ls7_c02363{letter-spacing:0.052704pt;}
.ls13_c02363{letter-spacing:0.057600pt;}
.ls3_c02363{letter-spacing:0.058560pt;}
.ls15_c02363{letter-spacing:0.064000pt;}
.lsc_c02363{letter-spacing:0.064416pt;}
.ls6_c02363{letter-spacing:0.070272pt;}
.ls8_c02363{letter-spacing:0.076128pt;}
.lsd_c02363{letter-spacing:0.081984pt;}
.ls12_c02363{letter-spacing:0.087840pt;}
.ls10_c02363{letter-spacing:0.096000pt;}
.ls1a_c02363{letter-spacing:3.520000pt;}
.ls1_c02363{letter-spacing:221.520000pt;}
.ws1_c02363{word-spacing:-16.025600pt;}
.ws2_c02363{word-spacing:-16.000000pt;}
.ws24_c02363{word-spacing:-0.236800pt;}
.ws0_c02363{word-spacing:-0.140544pt;}
.ws23_c02363{word-spacing:-0.019200pt;}
.ws47_c02363{word-spacing:-0.012800pt;}
.ws5_c02363{word-spacing:0.000000pt;}
.wsd_c02363{word-spacing:0.005856pt;}
.ws27_c02363{word-spacing:0.017568pt;}
.ws25_c02363{word-spacing:0.023424pt;}
.ws32_c02363{word-spacing:0.035136pt;}
.ws3_c02363{word-spacing:0.040992pt;}
.ws4_c02363{word-spacing:0.046848pt;}
.ws43_c02363{word-spacing:0.052704pt;}
.ws1d_c02363{word-spacing:0.058560pt;}
.ws18_c02363{word-spacing:0.333792pt;}
.ws17_c02363{word-spacing:0.386496pt;}
.ws42_c02363{word-spacing:0.983808pt;}
.ws40_c02363{word-spacing:1.001376pt;}
.ws41_c02363{word-spacing:1.013088pt;}
.ws2f_c02363{word-spacing:1.633824pt;}
.ws30_c02363{word-spacing:1.645536pt;}
.ws11_c02363{word-spacing:3.244224pt;}
.ws12_c02363{word-spacing:3.261792pt;}
.ws22_c02363{word-spacing:3.404800pt;}
.ws20_c02363{word-spacing:3.424000pt;}
.ws21_c02363{word-spacing:3.539200pt;}
.ws7_c02363{word-spacing:3.542880pt;}
.ws6_c02363{word-spacing:3.578016pt;}
.ws8_c02363{word-spacing:4.210464pt;}
.ws13_c02363{word-spacing:4.216320pt;}
.ws1c_c02363{word-spacing:4.514976pt;}
.ws1b_c02363{word-spacing:4.526688pt;}
.ws26_c02363{word-spacing:5.463648pt;}
.ws10_c02363{word-spacing:5.475360pt;}
.ws36_c02363{word-spacing:7.712352pt;}
.ws35_c02363{word-spacing:7.747488pt;}
.ws2d_c02363{word-spacing:8.661024pt;}
.ws2e_c02363{word-spacing:8.684448pt;}
.ws39_c02363{word-spacing:8.977248pt;}
.ws38_c02363{word-spacing:8.988960pt;}
.wsa_c02363{word-spacing:10.248000pt;}
.ws9_c02363{word-spacing:10.271424pt;}
.ws2c_c02363{word-spacing:11.237664pt;}
.ws2b_c02363{word-spacing:11.249376pt;}
.ws46_c02363{word-spacing:12.697600pt;}
.ws19_c02363{word-spacing:13.439520pt;}
.ws1a_c02363{word-spacing:13.474656pt;}
.ws1e_c02363{word-spacing:13.657600pt;}
.ws1f_c02363{word-spacing:13.760000pt;}
.ws44_c02363{word-spacing:14.022400pt;}
.ws45_c02363{word-spacing:14.035200pt;}
.ws3a_c02363{word-spacing:14.440896pt;}
.ws3b_c02363{word-spacing:14.464320pt;}
.ws33_c02363{word-spacing:14.745408pt;}
.ws34_c02363{word-spacing:14.768832pt;}
.ws28_c02363{word-spacing:15.108480pt;}
.ws37_c02363{word-spacing:16.379232pt;}
.wsf_c02363{word-spacing:17.304480pt;}
.wse_c02363{word-spacing:17.345472pt;}
.wsb_c02363{word-spacing:17.626560pt;}
.ws3c_c02363{word-spacing:17.649984pt;}
.ws3d_c02363{word-spacing:17.661696pt;}
.wsc_c02363{word-spacing:17.685120pt;}
.ws14_c02363{word-spacing:21.169440pt;}
.ws29_c02363{word-spacing:24.372672pt;}
.ws2a_c02363{word-spacing:24.384384pt;}
.ws31_c02363{word-spacing:25.344768pt;}
.ws3f_c02363{word-spacing:26.234880pt;}
.ws3e_c02363{word-spacing:26.281728pt;}
.ws16_c02363{word-spacing:43.223136pt;}
.ws15_c02363{word-spacing:43.603776pt;}
._2_c02363{margin-left:-3.852800pt;}
._0_c02363{margin-left:-1.001376pt;}
._1_c02363{width:1.100928pt;}
.fs1_c02363{font-size:21.440000pt;}
.fs4_c02363{font-size:32.000000pt;}
.fs2_c02363{font-size:42.560000pt;}
.fs5_c02363{font-size:53.440000pt;}
.fs0_c02363{font-size:58.560000pt;}
.fs3_c02363{font-size:64.000000pt;}
.y0_c02363{bottom:0.000000pt;}
.y3_c02363{bottom:67.307971pt;}
.y2_c02363{bottom:101.227387pt;}
.y34_c02363{bottom:142.747067pt;}
.y33_c02363{bottom:170.347067pt;}
.y32_c02363{bottom:197.947067pt;}
.y31_c02363{bottom:225.147067pt;}
.y30_c02363{bottom:241.950827pt;}
.y2f_c02363{bottom:258.830747pt;}
.y2e_c02363{bottom:275.710667pt;}
.y2d_c02363{bottom:292.510067pt;}
.y2c_c02363{bottom:309.389987pt;}
.y2b_c02363{bottom:326.269907pt;}
.y2a_c02363{bottom:343.149827pt;}
.y29_c02363{bottom:360.029747pt;}
.y28_c02363{bottom:376.909667pt;}
.y27_c02363{bottom:393.709067pt;}
.y26_c02363{bottom:410.588987pt;}
.y25_c02363{bottom:427.468907pt;}
.y24_c02363{bottom:444.348827pt;}
.y23_c02363{bottom:461.228747pt;}
.y22_c02363{bottom:478.028147pt;}
.y21_c02363{bottom:494.908067pt;}
.y20_c02363{bottom:511.787987pt;}
.y1f_c02363{bottom:528.667907pt;}
.y1e_c02363{bottom:545.547827pt;}
.y1d_c02363{bottom:562.347227pt;}
.y1c_c02363{bottom:579.227147pt;}
.y1b_c02363{bottom:596.107067pt;}
.y1a_c02363{bottom:616.187067pt;}
.y19_c02363{bottom:636.347067pt;}
.y18_c02363{bottom:663.947067pt;}
.y17_c02363{bottom:691.547067pt;}
.y16_c02363{bottom:709.549067pt;}
.y15_c02363{bottom:726.428987pt;}
.y14_c02363{bottom:743.308907pt;}
.y13_c02363{bottom:760.188827pt;}
.y12_c02363{bottom:777.068747pt;}
.y11_c02363{bottom:793.868147pt;}
.y10_c02363{bottom:810.748067pt;}
.yf_c02363{bottom:827.627987pt;}
.ye_c02363{bottom:844.507907pt;}
.yd_c02363{bottom:861.387827pt;}
.yc_c02363{bottom:878.187227pt;}
.yb_c02363{bottom:895.067147pt;}
.ya_c02363{bottom:911.947067pt;}
.y9_c02363{bottom:928.027067pt;}
.y8_c02363{bottom:941.067387pt;}
.y7_c02363{bottom:957.947307pt;}
.y6_c02363{bottom:974.827227pt;}
.y5_c02363{bottom:991.707147pt;}
.y4_c02363{bottom:1023.387067pt;}
.y1_c02363{bottom:1061.787067pt;}
.h4_c02363{height:21.042187pt;}
.h9_c02363{height:31.406250pt;}
.ha_c02363{height:35.487500pt;}
.h3_c02363{height:39.030469pt;}
.h6_c02363{height:41.770312pt;}
.h2_c02363{height:48.294844pt;}
.h5_c02363{height:57.473437pt;}
.h1_c02363{height:59.017500pt;}
.h7_c02363{height:62.812500pt;}
.h8_c02363{height:64.500000pt;}
.h0_c02363{height:1122.666667pt;}
.w1_c02363{width:793.333333pt;}
.w0_c02363{width:793.626667pt;}
.x0_c02363{left:0.000000pt;}
.x3_c02363{left:113.439328pt;}
.x1_c02363{left:115.120000pt;}
.x6_c02363{left:132.400000pt;}
.x4_c02363{left:151.280256pt;}
.x5_c02363{left:170.160000pt;}
.x2_c02363{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_859538f9a5b1a37b4c50b664.woff2')format("woff");}.ff1_c02364{font-family:ff1_c02364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02364;src:url('chunks/assets/font_63dca49a0d8b8a433bb534ca.woff2')format("woff");}.ff2_c02364{font-family:ff2_c02364;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02364{font-family:ff3_c02364;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_c02364;src:url('chunks/assets/font_0b2340373d304f4699302dfe.woff2')format("woff");}.ff4_c02364{font-family:ff4_c02364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02364;src:url('chunks/assets/font_adc40ad9f8749695283e28bc.woff2')format("woff");}.ff5_c02364{font-family:ff5_c02364;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_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);}
.v2_c02364{vertical-align:-78.119400px;}
.v1_c02364{vertical-align:-69.840000px;}
.v0_c02364{vertical-align:0.000000px;}
.ls13_c02364{letter-spacing:-0.050400px;}
.ls14_c02364{letter-spacing:-0.036000px;}
.ls18_c02364{letter-spacing:-0.028800px;}
.ls15_c02364{letter-spacing:-0.014400px;}
.ls17_c02364{letter-spacing:-0.013176px;}
.ls12_c02364{letter-spacing:-0.007200px;}
.ls11_c02364{letter-spacing:0.000000px;}
.lsd_c02364{letter-spacing:0.007200px;}
.ls6_c02364{letter-spacing:0.014400px;}
.ls2_c02364{letter-spacing:0.021600px;}
.ls5_c02364{letter-spacing:0.028800px;}
.ls8_c02364{letter-spacing:0.032940px;}
.lse_c02364{letter-spacing:0.036000px;}
.lsc_c02364{letter-spacing:0.043200px;}
.ls0_c02364{letter-spacing:0.046116px;}
.ls3_c02364{letter-spacing:0.050400px;}
.lsf_c02364{letter-spacing:0.057600px;}
.ls9_c02364{letter-spacing:0.059292px;}
.ls1_c02364{letter-spacing:0.064800px;}
.ls10_c02364{letter-spacing:0.079200px;}
.lsa_c02364{letter-spacing:0.092232px;}
.ls4_c02364{letter-spacing:0.093600px;}
.ls16_c02364{letter-spacing:0.360000px;}
.lsb_c02364{letter-spacing:73.350000px;}
.ls7_c02364{letter-spacing:246.240000px;}
.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;}
}
.ws1a_c02364{word-spacing:-0.208800px;}
.ws21_c02364{word-spacing:-0.201600px;}
.ws0_c02364{word-spacing:-0.158112px;}
.ws6_c02364{word-spacing:-0.122400px;}
.ws9_c02364{word-spacing:-0.115200px;}
.ws12_c02364{word-spacing:-0.108000px;}
.ws38_c02364{word-spacing:-0.100800px;}
.ws39_c02364{word-spacing:-0.086400px;}
.ws7_c02364{word-spacing:-0.079200px;}
.ws16_c02364{word-spacing:-0.028800px;}
.ws8_c02364{word-spacing:-0.021600px;}
.ws1c_c02364{word-spacing:-0.014400px;}
.ws3_c02364{word-spacing:0.000000px;}
.ws2b_c02364{word-spacing:0.028800px;}
.ws1b_c02364{word-spacing:0.036000px;}
.ws1_c02364{word-spacing:0.046116px;}
.ws2_c02364{word-spacing:0.052704px;}
.ws28_c02364{word-spacing:0.059292px;}
.ws2c_c02364{word-spacing:0.676800px;}
.ws2d_c02364{word-spacing:0.691200px;}
.ws25_c02364{word-spacing:1.139724px;}
.ws24_c02364{word-spacing:1.185840px;}
.ws1f_c02364{word-spacing:1.972800px;}
.ws11_c02364{word-spacing:2.037600px;}
.ws1d_c02364{word-spacing:2.109600px;}
.ws1e_c02364{word-spacing:2.145600px;}
.ws20_c02364{word-spacing:2.174400px;}
.ws10_c02364{word-spacing:2.196000px;}
.ws29_c02364{word-spacing:2.390400px;}
.ws2a_c02364{word-spacing:2.469600px;}
.ws34_c02364{word-spacing:5.299200px;}
.ws35_c02364{word-spacing:5.450400px;}
.ws22_c02364{word-spacing:6.535296px;}
.ws3b_c02364{word-spacing:6.645600px;}
.ws3c_c02364{word-spacing:6.789600px;}
.wsb_c02364{word-spacing:8.863200px;}
.wsa_c02364{word-spacing:9.050400px;}
.ws23_c02364{word-spacing:10.468332px;}
.ws3d_c02364{word-spacing:12.585600px;}
.ws14_c02364{word-spacing:12.780000px;}
.ws13_c02364{word-spacing:12.931200px;}
.ws4_c02364{word-spacing:13.255200px;}
.ws5_c02364{word-spacing:13.298400px;}
.ws37_c02364{word-spacing:14.284800px;}
.ws36_c02364{word-spacing:14.299200px;}
.ws2f_c02364{word-spacing:15.105600px;}
.ws2e_c02364{word-spacing:15.112800px;}
.ws31_c02364{word-spacing:15.271200px;}
.ws32_c02364{word-spacing:15.393600px;}
.ws33_c02364{word-spacing:15.480000px;}
.ws27_c02364{word-spacing:18.716508px;}
.ws26_c02364{word-spacing:18.762624px;}
.ws19_c02364{word-spacing:18.972000px;}
.ws18_c02364{word-spacing:19.080000px;}
.ws17_c02364{word-spacing:19.087200px;}
.ws3a_c02364{word-spacing:19.324800px;}
.wsc_c02364{word-spacing:20.145600px;}
.ws15_c02364{word-spacing:26.863200px;}
.ws30_c02364{word-spacing:28.749600px;}
.wsd_c02364{word-spacing:33.458400px;}
.wse_c02364{word-spacing:33.818400px;}
.wsf_c02364{word-spacing:33.840000px;}
._0_c02364{margin-left:-1.126548px;}
._1_c02364{width:1.011348px;}
.fc0_c02364{color:rgb(0,0,0);}
.fs3_c02364{font-size:36.000000px;}
.fs2_c02364{font-size:47.880000px;}
.fs0_c02364{font-size:65.880000px;}
.fs1_c02364{font-size:72.000000px;}
.y0_c02364{bottom:0.000000px;}
.y3_c02364{bottom:75.721467px;}
.y2_c02364{bottom:113.880810px;}
.y2c_c02364{bottom:141.510600px;}
.y2b_c02364{bottom:162.210600px;}
.y2a_c02364{bottom:182.910600px;}
.y29_c02364{bottom:203.610600px;}
.y28_c02364{bottom:224.310600px;}
.y27_c02364{bottom:245.010600px;}
.y26_c02364{bottom:265.620600px;}
.y25_c02364{bottom:286.320600px;}
.y24_c02364{bottom:307.020600px;}
.y23_c02364{bottom:327.720600px;}
.y22_c02364{bottom:348.420600px;}
.y21_c02364{bottom:369.120600px;}
.y20_c02364{bottom:389.820600px;}
.y1f_c02364{bottom:430.050450px;}
.y1e_c02364{bottom:445.080600px;}
.y1d_c02364{bottom:465.780600px;}
.y1c_c02364{bottom:485.220450px;}
.y1b_c02364{bottom:499.891395px;}
.y1a_c02364{bottom:518.881305px;}
.y19_c02364{bottom:537.780630px;}
.y18_c02364{bottom:556.770540px;}
.y17_c02364{bottom:593.220450px;}
.y16_c02364{bottom:615.810450px;}
.y15_c02364{bottom:646.860450px;}
.y14_c02364{bottom:666.300387px;}
.y13_c02364{bottom:680.160450px;}
.y12_c02364{bottom:705.540450px;}
.y11_c02364{bottom:736.590450px;}
.y10_c02364{bottom:767.640450px;}
.yf_c02364{bottom:798.600450px;}
.ye_c02364{bottom:829.650450px;}
.yd_c02364{bottom:860.700450px;}
.yc_c02364{bottom:891.750450px;}
.yb_c02364{bottom:922.800450px;}
.ya_c02364{bottom:953.850450px;}
.y9_c02364{bottom:984.900450px;}
.y8_c02364{bottom:1015.950450px;}
.y7_c02364{bottom:1047.000450px;}
.y6_c02364{bottom:1078.050450px;}
.y5_c02364{bottom:1109.100450px;}
.y4_c02364{bottom:1140.150450px;}
.y1_c02364{bottom:1194.510450px;}
.h7_c02364{height:35.332031px;}
.h3_c02364{height:43.909277px;}
.h5_c02364{height:46.991602px;}
.h2_c02364{height:54.331699px;}
.h8_c02364{height:64.657617px;}
.h1_c02364{height:66.394687px;}
.h4_c02364{height:70.664062px;}
.h6_c02364{height:72.562500px;}
.h0_c02364{height:1263.000000px;}
.w1_c02364{width:892.500000px;}
.w0_c02364{width:892.830000px;}
.x0_c02364{left:0.000000px;}
.x3_c02364{left:127.619244px;}
.x1_c02364{left:129.510000px;}
.x4_c02364{left:148.950000px;}
.x5_c02364{left:170.190000px;}
.x6_c02364{left:191.430000px;}
.x2_c02364{left:438.119919px;}
@media print{
.v2_c02364{vertical-align:-69.439467pt;}
.v1_c02364{vertical-align:-62.080000pt;}
.v0_c02364{vertical-align:0.000000pt;}
.ls13_c02364{letter-spacing:-0.044800pt;}
.ls14_c02364{letter-spacing:-0.032000pt;}
.ls18_c02364{letter-spacing:-0.025600pt;}
.ls15_c02364{letter-spacing:-0.012800pt;}
.ls17_c02364{letter-spacing:-0.011712pt;}
.ls12_c02364{letter-spacing:-0.006400pt;}
.ls11_c02364{letter-spacing:0.000000pt;}
.lsd_c02364{letter-spacing:0.006400pt;}
.ls6_c02364{letter-spacing:0.012800pt;}
.ls2_c02364{letter-spacing:0.019200pt;}
.ls5_c02364{letter-spacing:0.025600pt;}
.ls8_c02364{letter-spacing:0.029280pt;}
.lse_c02364{letter-spacing:0.032000pt;}
.lsc_c02364{letter-spacing:0.038400pt;}
.ls0_c02364{letter-spacing:0.040992pt;}
.ls3_c02364{letter-spacing:0.044800pt;}
.lsf_c02364{letter-spacing:0.051200pt;}
.ls9_c02364{letter-spacing:0.052704pt;}
.ls1_c02364{letter-spacing:0.057600pt;}
.ls10_c02364{letter-spacing:0.070400pt;}
.lsa_c02364{letter-spacing:0.081984pt;}
.ls4_c02364{letter-spacing:0.083200pt;}
.ls16_c02364{letter-spacing:0.320000pt;}
.lsb_c02364{letter-spacing:65.200000pt;}
.ls7_c02364{letter-spacing:218.880000pt;}
.ws1a_c02364{word-spacing:-0.185600pt;}
.ws21_c02364{word-spacing:-0.179200pt;}
.ws0_c02364{word-spacing:-0.140544pt;}
.ws6_c02364{word-spacing:-0.108800pt;}
.ws9_c02364{word-spacing:-0.102400pt;}
.ws12_c02364{word-spacing:-0.096000pt;}
.ws38_c02364{word-spacing:-0.089600pt;}
.ws39_c02364{word-spacing:-0.076800pt;}
.ws7_c02364{word-spacing:-0.070400pt;}
.ws16_c02364{word-spacing:-0.025600pt;}
.ws8_c02364{word-spacing:-0.019200pt;}
.ws1c_c02364{word-spacing:-0.012800pt;}
.ws3_c02364{word-spacing:0.000000pt;}
.ws2b_c02364{word-spacing:0.025600pt;}
.ws1b_c02364{word-spacing:0.032000pt;}
.ws1_c02364{word-spacing:0.040992pt;}
.ws2_c02364{word-spacing:0.046848pt;}
.ws28_c02364{word-spacing:0.052704pt;}
.ws2c_c02364{word-spacing:0.601600pt;}
.ws2d_c02364{word-spacing:0.614400pt;}
.ws25_c02364{word-spacing:1.013088pt;}
.ws24_c02364{word-spacing:1.054080pt;}
.ws1f_c02364{word-spacing:1.753600pt;}
.ws11_c02364{word-spacing:1.811200pt;}
.ws1d_c02364{word-spacing:1.875200pt;}
.ws1e_c02364{word-spacing:1.907200pt;}
.ws20_c02364{word-spacing:1.932800pt;}
.ws10_c02364{word-spacing:1.952000pt;}
.ws29_c02364{word-spacing:2.124800pt;}
.ws2a_c02364{word-spacing:2.195200pt;}
.ws34_c02364{word-spacing:4.710400pt;}
.ws35_c02364{word-spacing:4.844800pt;}
.ws22_c02364{word-spacing:5.809152pt;}
.ws3b_c02364{word-spacing:5.907200pt;}
.ws3c_c02364{word-spacing:6.035200pt;}
.wsb_c02364{word-spacing:7.878400pt;}
.wsa_c02364{word-spacing:8.044800pt;}
.ws23_c02364{word-spacing:9.305184pt;}
.ws3d_c02364{word-spacing:11.187200pt;}
.ws14_c02364{word-spacing:11.360000pt;}
.ws13_c02364{word-spacing:11.494400pt;}
.ws4_c02364{word-spacing:11.782400pt;}
.ws5_c02364{word-spacing:11.820800pt;}
.ws37_c02364{word-spacing:12.697600pt;}
.ws36_c02364{word-spacing:12.710400pt;}
.ws2f_c02364{word-spacing:13.427200pt;}
.ws2e_c02364{word-spacing:13.433600pt;}
.ws31_c02364{word-spacing:13.574400pt;}
.ws32_c02364{word-spacing:13.683200pt;}
.ws33_c02364{word-spacing:13.760000pt;}
.ws27_c02364{word-spacing:16.636896pt;}
.ws26_c02364{word-spacing:16.677888pt;}
.ws19_c02364{word-spacing:16.864000pt;}
.ws18_c02364{word-spacing:16.960000pt;}
.ws17_c02364{word-spacing:16.966400pt;}
.ws3a_c02364{word-spacing:17.177600pt;}
.wsc_c02364{word-spacing:17.907200pt;}
.ws15_c02364{word-spacing:23.878400pt;}
.ws30_c02364{word-spacing:25.555200pt;}
.wsd_c02364{word-spacing:29.740800pt;}
.wse_c02364{word-spacing:30.060800pt;}
.wsf_c02364{word-spacing:30.080000pt;}
._0_c02364{margin-left:-1.001376pt;}
._1_c02364{width:0.898976pt;}
.fs3_c02364{font-size:32.000000pt;}
.fs2_c02364{font-size:42.560000pt;}
.fs0_c02364{font-size:58.560000pt;}
.fs1_c02364{font-size:64.000000pt;}
.y0_c02364{bottom:0.000000pt;}
.y3_c02364{bottom:67.307971pt;}
.y2_c02364{bottom:101.227387pt;}
.y2c_c02364{bottom:125.787200pt;}
.y2b_c02364{bottom:144.187200pt;}
.y2a_c02364{bottom:162.587200pt;}
.y29_c02364{bottom:180.987200pt;}
.y28_c02364{bottom:199.387200pt;}
.y27_c02364{bottom:217.787200pt;}
.y26_c02364{bottom:236.107200pt;}
.y25_c02364{bottom:254.507200pt;}
.y24_c02364{bottom:272.907200pt;}
.y23_c02364{bottom:291.307200pt;}
.y22_c02364{bottom:309.707200pt;}
.y21_c02364{bottom:328.107200pt;}
.y20_c02364{bottom:346.507200pt;}
.y1f_c02364{bottom:382.267067pt;}
.y1e_c02364{bottom:395.627200pt;}
.y1d_c02364{bottom:414.027200pt;}
.y1c_c02364{bottom:431.307067pt;}
.y1b_c02364{bottom:444.347907pt;}
.y1a_c02364{bottom:461.227827pt;}
.y19_c02364{bottom:478.027227pt;}
.y18_c02364{bottom:494.907147pt;}
.y17_c02364{bottom:527.307067pt;}
.y16_c02364{bottom:547.387067pt;}
.y15_c02364{bottom:574.987067pt;}
.y14_c02364{bottom:592.267011pt;}
.y13_c02364{bottom:604.587067pt;}
.y12_c02364{bottom:627.147067pt;}
.y11_c02364{bottom:654.747067pt;}
.y10_c02364{bottom:682.347067pt;}
.yf_c02364{bottom:709.867067pt;}
.ye_c02364{bottom:737.467067pt;}
.yd_c02364{bottom:765.067067pt;}
.yc_c02364{bottom:792.667067pt;}
.yb_c02364{bottom:820.267067pt;}
.ya_c02364{bottom:847.867067pt;}
.y9_c02364{bottom:875.467067pt;}
.y8_c02364{bottom:903.067067pt;}
.y7_c02364{bottom:930.667067pt;}
.y6_c02364{bottom:958.267067pt;}
.y5_c02364{bottom:985.867067pt;}
.y4_c02364{bottom:1013.467067pt;}
.y1_c02364{bottom:1061.787067pt;}
.h7_c02364{height:31.406250pt;}
.h3_c02364{height:39.030469pt;}
.h5_c02364{height:41.770312pt;}
.h2_c02364{height:48.294844pt;}
.h8_c02364{height:57.473437pt;}
.h1_c02364{height:59.017500pt;}
.h4_c02364{height:62.812500pt;}
.h6_c02364{height:64.500000pt;}
.h0_c02364{height:1122.666667pt;}
.w1_c02364{width:793.333333pt;}
.w0_c02364{width:793.626667pt;}
.x0_c02364{left:0.000000pt;}
.x3_c02364{left:113.439328pt;}
.x1_c02364{left:115.120000pt;}
.x4_c02364{left:132.400000pt;}
.x5_c02364{left:151.280000pt;}
.x6_c02364{left:170.160000pt;}
.x2_c02364{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62ef76d06a93f577c4a1b41b.woff2')format("woff");}.ff1_c02365{font-family:ff1_c02365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02365;src:url('chunks/assets/font_1173b3c28a9f02d90484542e.woff2')format("woff");}.ff2_c02365{font-family:ff2_c02365;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02365{font-family:ff3_c02365;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_c02365;src:url('chunks/assets/font_68414b24c1a7580ac8ade666.woff2')format("woff");}.ff4_c02365{font-family:ff4_c02365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02365{vertical-align:-75.959640px;}
.v0_c02365{vertical-align:0.000000px;}
.ls19_c02365{letter-spacing:-0.036000px;}
.ls1e_c02365{letter-spacing:-0.028800px;}
.ls1b_c02365{letter-spacing:-0.021600px;}
.ls1d_c02365{letter-spacing:-0.013176px;}
.ls1a_c02365{letter-spacing:-0.007200px;}
.ls18_c02365{letter-spacing:0.000000px;}
.ls17_c02365{letter-spacing:0.007200px;}
.lse_c02365{letter-spacing:0.013176px;}
.ls4_c02365{letter-spacing:0.014400px;}
.ls10_c02365{letter-spacing:0.019764px;}
.ls8_c02365{letter-spacing:0.021600px;}
.ls14_c02365{letter-spacing:0.026352px;}
.ls5_c02365{letter-spacing:0.028800px;}
.lsb_c02365{letter-spacing:0.032940px;}
.ls6_c02365{letter-spacing:0.036000px;}
.lsd_c02365{letter-spacing:0.039528px;}
.ls1_c02365{letter-spacing:0.043200px;}
.ls0_c02365{letter-spacing:0.046116px;}
.ls7_c02365{letter-spacing:0.050400px;}
.ls13_c02365{letter-spacing:0.052704px;}
.lsa_c02365{letter-spacing:0.057600px;}
.lsc_c02365{letter-spacing:0.059292px;}
.ls2_c02365{letter-spacing:0.064800px;}
.ls12_c02365{letter-spacing:0.065880px;}
.ls3_c02365{letter-spacing:0.072000px;}
.lsf_c02365{letter-spacing:0.072468px;}
.ls9_c02365{letter-spacing:0.079200px;}
.ls1c_c02365{letter-spacing:0.085644px;}
.ls16_c02365{letter-spacing:0.092232px;}
.ls11_c02365{letter-spacing:0.098820px;}
.ls15_c02365{letter-spacing:68.488848px;}
.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;}
}
.ws35_c02365{word-spacing:-0.381600px;}
.ws29_c02365{word-spacing:-0.303048px;}
.ws0_c02365{word-spacing:-0.158112px;}
.ws14_c02365{word-spacing:-0.100800px;}
.wse_c02365{word-spacing:-0.093600px;}
.ws39_c02365{word-spacing:-0.086400px;}
.wsd_c02365{word-spacing:-0.072000px;}
.ws15_c02365{word-spacing:-0.057600px;}
.ws32_c02365{word-spacing:-0.050400px;}
.wsf_c02365{word-spacing:-0.021600px;}
.ws3_c02365{word-spacing:0.000000px;}
.ws10_c02365{word-spacing:0.007200px;}
.ws23_c02365{word-spacing:0.019764px;}
.ws2a_c02365{word-spacing:0.032940px;}
.ws1_c02365{word-spacing:0.046116px;}
.ws2_c02365{word-spacing:0.052704px;}
.ws13_c02365{word-spacing:0.072000px;}
.ws1c_c02365{word-spacing:0.072468px;}
.ws2e_c02365{word-spacing:0.105408px;}
.ws11_c02365{word-spacing:0.172800px;}
.ws2c_c02365{word-spacing:0.355752px;}
.ws12_c02365{word-spacing:0.381600px;}
.ws2b_c02365{word-spacing:0.388692px;}
.ws18_c02365{word-spacing:1.851228px;}
.ws19_c02365{word-spacing:1.877580px;}
.wsb_c02365{word-spacing:3.384000px;}
.wsa_c02365{word-spacing:3.499200px;}
.wsc_c02365{word-spacing:3.664800px;}
.ws22_c02365{word-spacing:5.448276px;}
.ws21_c02365{word-spacing:5.474628px;}
.ws1e_c02365{word-spacing:5.751324px;}
.ws1d_c02365{word-spacing:5.790852px;}
.ws1a_c02365{word-spacing:6.858108px;}
.ws27_c02365{word-spacing:9.750240px;}
.ws5_c02365{word-spacing:10.015200px;}
.ws31_c02365{word-spacing:10.432800px;}
.ws30_c02365{word-spacing:10.684800px;}
.ws2f_c02365{word-spacing:10.785600px;}
.ws26_c02365{word-spacing:11.166660px;}
.ws25_c02365{word-spacing:11.179836px;}
.ws6_c02365{word-spacing:12.096000px;}
.ws7_c02365{word-spacing:12.153600px;}
.ws1b_c02365{word-spacing:14.816412px;}
.ws38_c02365{word-spacing:15.465600px;}
.ws16_c02365{word-spacing:16.614936px;}
.ws4_c02365{word-spacing:16.876800px;}
.ws1f_c02365{word-spacing:17.306676px;}
.ws20_c02365{word-spacing:17.319852px;}
.ws2d_c02365{word-spacing:19.111788px;}
.ws34_c02365{word-spacing:24.091200px;}
.ws37_c02365{word-spacing:24.688800px;}
.ws36_c02365{word-spacing:24.804000px;}
.ws24_c02365{word-spacing:25.633908px;}
.ws33_c02365{word-spacing:26.604000px;}
.ws28_c02365{word-spacing:27.063504px;}
.ws8_c02365{word-spacing:31.651200px;}
.ws9_c02365{word-spacing:31.665600px;}
.ws17_c02365{word-spacing:33.150816px;}
._0_c02365{margin-left:-1.126548px;}
._1_c02365{width:1.027728px;}
.fc0_c02365{color:rgb(0,0,0);}
.fs3_c02365{font-size:24.120000px;}
.fs2_c02365{font-size:47.880000px;}
.fs0_c02365{font-size:65.880000px;}
.fs1_c02365{font-size:72.000000px;}
.y0_c02365{bottom:0.000000px;}
.y3_c02365{bottom:75.721467px;}
.y2_c02365{bottom:113.880810px;}
.y31_c02365{bottom:136.290450px;}
.y30_c02365{bottom:167.340450px;}
.y2f_c02365{bottom:198.390450px;}
.y2e_c02365{bottom:229.440450px;}
.y2d_c02365{bottom:260.490450px;}
.y2c_c02365{bottom:291.540450px;}
.y2b_c02365{bottom:322.590450px;}
.y2a_c02365{bottom:353.640450px;}
.y29_c02365{bottom:384.690450px;}
.y28_c02365{bottom:415.740450px;}
.y27_c02365{bottom:442.200600px;}
.y26_c02365{bottom:456.784680px;}
.y25_c02365{bottom:475.684005px;}
.y24_c02365{bottom:494.673915px;}
.y23_c02365{bottom:532.653735px;}
.y22_c02365{bottom:551.643645px;}
.y21_c02365{bottom:570.633555px;}
.y20_c02365{bottom:589.532880px;}
.y1f_c02365{bottom:608.522790px;}
.y1e_c02365{bottom:627.512700px;}
.y1d_c02365{bottom:646.502610px;}
.y1c_c02365{bottom:665.492520px;}
.y1b_c02365{bottom:684.391845px;}
.y1a_c02365{bottom:703.381755px;}
.y19_c02365{bottom:722.371665px;}
.y18_c02365{bottom:741.361575px;}
.y17_c02365{bottom:760.351485px;}
.y16_c02365{bottom:779.341395px;}
.y15_c02365{bottom:798.240720px;}
.y14_c02365{bottom:817.230630px;}
.y13_c02365{bottom:836.220540px;}
.y12_c02365{bottom:855.210450px;}
.y11_c02365{bottom:875.370450px;}
.y10_c02365{bottom:895.260450px;}
.yf_c02365{bottom:926.310450px;}
.ye_c02365{bottom:945.750162px;}
.yd_c02365{bottom:959.520450px;}
.yc_c02365{bottom:974.550450px;}
.yb_c02365{bottom:995.250450px;}
.ya_c02365{bottom:1015.950450px;}
.y9_c02365{bottom:1036.650450px;}
.y8_c02365{bottom:1057.350450px;}
.y7_c02365{bottom:1078.050450px;}
.y6_c02365{bottom:1098.750450px;}
.y5_c02365{bottom:1119.450450px;}
.y4_c02365{bottom:1140.150450px;}
.y1_c02365{bottom:1194.510450px;}
.h7_c02365{height:23.672461px;}
.h3_c02365{height:43.909277px;}
.h5_c02365{height:46.991602px;}
.h2_c02365{height:54.331699px;}
.h8_c02365{height:64.657617px;}
.h1_c02365{height:66.394687px;}
.h4_c02365{height:70.664062px;}
.h6_c02365{height:72.562500px;}
.h0_c02365{height:1263.000000px;}
.w1_c02365{width:892.500000px;}
.w0_c02365{width:892.830000px;}
.x0_c02365{left:0.000000px;}
.x3_c02365{left:127.619244px;}
.x1_c02365{left:129.510000px;}
.x5_c02365{left:148.950000px;}
.x6_c02365{left:170.190288px;}
.x4_c02365{left:191.430000px;}
.x2_c02365{left:438.119919px;}
@media print{
.v1_c02365{vertical-align:-67.519680pt;}
.v0_c02365{vertical-align:0.000000pt;}
.ls19_c02365{letter-spacing:-0.032000pt;}
.ls1e_c02365{letter-spacing:-0.025600pt;}
.ls1b_c02365{letter-spacing:-0.019200pt;}
.ls1d_c02365{letter-spacing:-0.011712pt;}
.ls1a_c02365{letter-spacing:-0.006400pt;}
.ls18_c02365{letter-spacing:0.000000pt;}
.ls17_c02365{letter-spacing:0.006400pt;}
.lse_c02365{letter-spacing:0.011712pt;}
.ls4_c02365{letter-spacing:0.012800pt;}
.ls10_c02365{letter-spacing:0.017568pt;}
.ls8_c02365{letter-spacing:0.019200pt;}
.ls14_c02365{letter-spacing:0.023424pt;}
.ls5_c02365{letter-spacing:0.025600pt;}
.lsb_c02365{letter-spacing:0.029280pt;}
.ls6_c02365{letter-spacing:0.032000pt;}
.lsd_c02365{letter-spacing:0.035136pt;}
.ls1_c02365{letter-spacing:0.038400pt;}
.ls0_c02365{letter-spacing:0.040992pt;}
.ls7_c02365{letter-spacing:0.044800pt;}
.ls13_c02365{letter-spacing:0.046848pt;}
.lsa_c02365{letter-spacing:0.051200pt;}
.lsc_c02365{letter-spacing:0.052704pt;}
.ls2_c02365{letter-spacing:0.057600pt;}
.ls12_c02365{letter-spacing:0.058560pt;}
.ls3_c02365{letter-spacing:0.064000pt;}
.lsf_c02365{letter-spacing:0.064416pt;}
.ls9_c02365{letter-spacing:0.070400pt;}
.ls1c_c02365{letter-spacing:0.076128pt;}
.ls16_c02365{letter-spacing:0.081984pt;}
.ls11_c02365{letter-spacing:0.087840pt;}
.ls15_c02365{letter-spacing:60.878976pt;}
.ws35_c02365{word-spacing:-0.339200pt;}
.ws29_c02365{word-spacing:-0.269376pt;}
.ws0_c02365{word-spacing:-0.140544pt;}
.ws14_c02365{word-spacing:-0.089600pt;}
.wse_c02365{word-spacing:-0.083200pt;}
.ws39_c02365{word-spacing:-0.076800pt;}
.wsd_c02365{word-spacing:-0.064000pt;}
.ws15_c02365{word-spacing:-0.051200pt;}
.ws32_c02365{word-spacing:-0.044800pt;}
.wsf_c02365{word-spacing:-0.019200pt;}
.ws3_c02365{word-spacing:0.000000pt;}
.ws10_c02365{word-spacing:0.006400pt;}
.ws23_c02365{word-spacing:0.017568pt;}
.ws2a_c02365{word-spacing:0.029280pt;}
.ws1_c02365{word-spacing:0.040992pt;}
.ws2_c02365{word-spacing:0.046848pt;}
.ws13_c02365{word-spacing:0.064000pt;}
.ws1c_c02365{word-spacing:0.064416pt;}
.ws2e_c02365{word-spacing:0.093696pt;}
.ws11_c02365{word-spacing:0.153600pt;}
.ws2c_c02365{word-spacing:0.316224pt;}
.ws12_c02365{word-spacing:0.339200pt;}
.ws2b_c02365{word-spacing:0.345504pt;}
.ws18_c02365{word-spacing:1.645536pt;}
.ws19_c02365{word-spacing:1.668960pt;}
.wsb_c02365{word-spacing:3.008000pt;}
.wsa_c02365{word-spacing:3.110400pt;}
.wsc_c02365{word-spacing:3.257600pt;}
.ws22_c02365{word-spacing:4.842912pt;}
.ws21_c02365{word-spacing:4.866336pt;}
.ws1e_c02365{word-spacing:5.112288pt;}
.ws1d_c02365{word-spacing:5.147424pt;}
.ws1a_c02365{word-spacing:6.096096pt;}
.ws27_c02365{word-spacing:8.666880pt;}
.ws5_c02365{word-spacing:8.902400pt;}
.ws31_c02365{word-spacing:9.273600pt;}
.ws30_c02365{word-spacing:9.497600pt;}
.ws2f_c02365{word-spacing:9.587200pt;}
.ws26_c02365{word-spacing:9.925920pt;}
.ws25_c02365{word-spacing:9.937632pt;}
.ws6_c02365{word-spacing:10.752000pt;}
.ws7_c02365{word-spacing:10.803200pt;}
.ws1b_c02365{word-spacing:13.170144pt;}
.ws38_c02365{word-spacing:13.747200pt;}
.ws16_c02365{word-spacing:14.768832pt;}
.ws4_c02365{word-spacing:15.001600pt;}
.ws1f_c02365{word-spacing:15.383712pt;}
.ws20_c02365{word-spacing:15.395424pt;}
.ws2d_c02365{word-spacing:16.988256pt;}
.ws34_c02365{word-spacing:21.414400pt;}
.ws37_c02365{word-spacing:21.945600pt;}
.ws36_c02365{word-spacing:22.048000pt;}
.ws24_c02365{word-spacing:22.785696pt;}
.ws33_c02365{word-spacing:23.648000pt;}
.ws28_c02365{word-spacing:24.056448pt;}
.ws8_c02365{word-spacing:28.134400pt;}
.ws9_c02365{word-spacing:28.147200pt;}
.ws17_c02365{word-spacing:29.467392pt;}
._0_c02365{margin-left:-1.001376pt;}
._1_c02365{width:0.913536pt;}
.fs3_c02365{font-size:21.440000pt;}
.fs2_c02365{font-size:42.560000pt;}
.fs0_c02365{font-size:58.560000pt;}
.fs1_c02365{font-size:64.000000pt;}
.y0_c02365{bottom:0.000000pt;}
.y3_c02365{bottom:67.307971pt;}
.y2_c02365{bottom:101.227387pt;}
.y31_c02365{bottom:121.147067pt;}
.y30_c02365{bottom:148.747067pt;}
.y2f_c02365{bottom:176.347067pt;}
.y2e_c02365{bottom:203.947067pt;}
.y2d_c02365{bottom:231.547067pt;}
.y2c_c02365{bottom:259.147067pt;}
.y2b_c02365{bottom:286.747067pt;}
.y2a_c02365{bottom:314.347067pt;}
.y29_c02365{bottom:341.947067pt;}
.y28_c02365{bottom:369.547067pt;}
.y27_c02365{bottom:393.067200pt;}
.y26_c02365{bottom:406.030827pt;}
.y25_c02365{bottom:422.830227pt;}
.y24_c02365{bottom:439.710147pt;}
.y23_c02365{bottom:473.469987pt;}
.y22_c02365{bottom:490.349907pt;}
.y21_c02365{bottom:507.229827pt;}
.y20_c02365{bottom:524.029227pt;}
.y1f_c02365{bottom:540.909147pt;}
.y1e_c02365{bottom:557.789067pt;}
.y1d_c02365{bottom:574.668987pt;}
.y1c_c02365{bottom:591.548907pt;}
.y1b_c02365{bottom:608.348307pt;}
.y1a_c02365{bottom:625.228227pt;}
.y19_c02365{bottom:642.108147pt;}
.y18_c02365{bottom:658.988067pt;}
.y17_c02365{bottom:675.867987pt;}
.y16_c02365{bottom:692.747907pt;}
.y15_c02365{bottom:709.547307pt;}
.y14_c02365{bottom:726.427227pt;}
.y13_c02365{bottom:743.307147pt;}
.y12_c02365{bottom:760.187067pt;}
.y11_c02365{bottom:778.107067pt;}
.y10_c02365{bottom:795.787067pt;}
.yf_c02365{bottom:823.387067pt;}
.ye_c02365{bottom:840.666811pt;}
.yd_c02365{bottom:852.907067pt;}
.yc_c02365{bottom:866.267067pt;}
.yb_c02365{bottom:884.667067pt;}
.ya_c02365{bottom:903.067067pt;}
.y9_c02365{bottom:921.467067pt;}
.y8_c02365{bottom:939.867067pt;}
.y7_c02365{bottom:958.267067pt;}
.y6_c02365{bottom:976.667067pt;}
.y5_c02365{bottom:995.067067pt;}
.y4_c02365{bottom:1013.467067pt;}
.y1_c02365{bottom:1061.787067pt;}
.h7_c02365{height:21.042187pt;}
.h3_c02365{height:39.030469pt;}
.h5_c02365{height:41.770312pt;}
.h2_c02365{height:48.294844pt;}
.h8_c02365{height:57.473437pt;}
.h1_c02365{height:59.017500pt;}
.h4_c02365{height:62.812500pt;}
.h6_c02365{height:64.500000pt;}
.h0_c02365{height:1122.666667pt;}
.w1_c02365{width:793.333333pt;}
.w0_c02365{width:793.626667pt;}
.x0_c02365{left:0.000000pt;}
.x3_c02365{left:113.439328pt;}
.x1_c02365{left:115.120000pt;}
.x5_c02365{left:132.400000pt;}
.x6_c02365{left:151.280256pt;}
.x4_c02365{left:170.160000pt;}
.x2_c02365{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f039c8aa9288360fcb05a84.woff2')format("woff");}.ff1_c02366{font-family:ff1_c02366;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02366;src:url('chunks/assets/font_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02366{font-family:ff2_c02366;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02366{font-family:ff3_c02366;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_c02366;src:url('chunks/assets/font_f0bdcb67aa95544f8e884820.woff2')format("woff");}.ff4_c02366{font-family:ff4_c02366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02366;src:url('chunks/assets/font_35689c0954f34bff9086ca51.woff2')format("woff");}.ff5_c02366{font-family:ff5_c02366;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_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;}
.ls18_c02366{letter-spacing:-0.028800px;}
.ls1b_c02366{letter-spacing:-0.026352px;}
.ls17_c02366{letter-spacing:-0.014400px;}
.ls1a_c02366{letter-spacing:-0.006588px;}
.ls16_c02366{letter-spacing:0.000000px;}
.lsc_c02366{letter-spacing:0.006588px;}
.ls3_c02366{letter-spacing:0.007200px;}
.ls10_c02366{letter-spacing:0.013176px;}
.ls5_c02366{letter-spacing:0.014400px;}
.lsa_c02366{letter-spacing:0.019764px;}
.ls4_c02366{letter-spacing:0.021600px;}
.ls1_c02366{letter-spacing:0.028800px;}
.lsf_c02366{letter-spacing:0.032940px;}
.ls12_c02366{letter-spacing:0.036000px;}
.ls6_c02366{letter-spacing:0.043200px;}
.ls0_c02366{letter-spacing:0.046116px;}
.ls8_c02366{letter-spacing:0.050400px;}
.lsd_c02366{letter-spacing:0.052704px;}
.ls11_c02366{letter-spacing:0.057600px;}
.lsb_c02366{letter-spacing:0.059292px;}
.ls9_c02366{letter-spacing:0.064800px;}
.ls13_c02366{letter-spacing:0.065880px;}
.lse_c02366{letter-spacing:0.079056px;}
.ls2_c02366{letter-spacing:0.079200px;}
.ls19_c02366{letter-spacing:0.086400px;}
.ls14_c02366{letter-spacing:0.092232px;}
.ls15_c02366{letter-spacing:0.098820px;}
.ls7_c02366{letter-spacing:1.440000px;}
.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;}
}
.ws1_c02366{word-spacing:-18.086400px;}
.ws2_c02366{word-spacing:-18.000000px;}
.wse_c02366{word-spacing:-0.252000px;}
.ws2b_c02366{word-spacing:-0.237600px;}
.ws2f_c02366{word-spacing:-0.223200px;}
.ws3e_c02366{word-spacing:-0.201600px;}
.ws0_c02366{word-spacing:-0.158112px;}
.ws14_c02366{word-spacing:-0.064800px;}
.ws2a_c02366{word-spacing:-0.043200px;}
.wsd_c02366{word-spacing:-0.021600px;}
.ws2e_c02366{word-spacing:-0.014400px;}
.ws2d_c02366{word-spacing:-0.007200px;}
.ws5_c02366{word-spacing:0.000000px;}
.ws15_c02366{word-spacing:0.014400px;}
.wsf_c02366{word-spacing:0.028800px;}
.ws3_c02366{word-spacing:0.046116px;}
.ws4_c02366{word-spacing:0.052704px;}
.ws38_c02366{word-spacing:0.059292px;}
.ws10_c02366{word-spacing:1.396800px;}
.ws13_c02366{word-spacing:1.411200px;}
.ws12_c02366{word-spacing:1.425600px;}
.ws11_c02366{word-spacing:1.432800px;}
.ws35_c02366{word-spacing:1.475712px;}
.ws22_c02366{word-spacing:1.857816px;}
.ws36_c02366{word-spacing:1.917108px;}
.ws24_c02366{word-spacing:2.239920px;}
.ws23_c02366{word-spacing:2.253096px;}
.ws41_c02366{word-spacing:3.307176px;}
.ws17_c02366{word-spacing:5.105700px;}
.ws32_c02366{word-spacing:5.118876px;}
.ws3d_c02366{word-spacing:5.313600px;}
.ws3c_c02366{word-spacing:5.364000px;}
.ws29_c02366{word-spacing:5.428512px;}
.ws28_c02366{word-spacing:5.454864px;}
.ws16_c02366{word-spacing:5.468040px;}
.ws2c_c02366{word-spacing:5.709600px;}
.ws8_c02366{word-spacing:6.400800px;}
.ws9_c02366{word-spacing:6.436800px;}
.ws31_c02366{word-spacing:6.535296px;}
.ws1b_c02366{word-spacing:6.877872px;}
.ws1c_c02366{word-spacing:6.910812px;}
.ws1d_c02366{word-spacing:7.213860px;}
.ws1e_c02366{word-spacing:7.240212px;}
.ws19_c02366{word-spacing:9.802944px;}
.ws1a_c02366{word-spacing:9.816120px;}
.ws37_c02366{word-spacing:10.125756px;}
.ws25_c02366{word-spacing:10.474920px;}
.ws27_c02366{word-spacing:11.555352px;}
.ws26_c02366{word-spacing:11.561940px;}
.ws18_c02366{word-spacing:11.911104px;}
.ws1f_c02366{word-spacing:13.722804px;}
.ws20_c02366{word-spacing:13.749156px;}
.ws21_c02366{word-spacing:14.104908px;}
.ws33_c02366{word-spacing:15.896844px;}
.wsa_c02366{word-spacing:17.107200px;}
.wsb_c02366{word-spacing:17.272800px;}
.wsc_c02366{word-spacing:17.294400px;}
.ws39_c02366{word-spacing:18.662400px;}
.ws3a_c02366{word-spacing:18.691200px;}
.ws30_c02366{word-spacing:19.829880px;}
.ws40_c02366{word-spacing:21.621816px;}
.ws3f_c02366{word-spacing:21.634992px;}
.ws3b_c02366{word-spacing:22.298400px;}
.ws42_c02366{word-spacing:23.756328px;}
.ws43_c02366{word-spacing:23.769504px;}
.ws34_c02366{word-spacing:24.909228px;}
.ws6_c02366{word-spacing:26.546400px;}
.ws7_c02366{word-spacing:26.704800px;}
._0_c02366{margin-left:-1.126548px;}
._1_c02366{width:1.425600px;}
.fc1_c02366{color:rgb(51,51,51);}
.fc0_c02366{color:rgb(0,0,0);}
.fs4_c02366{font-size:24.120000px;}
.fs3_c02366{font-size:36.000000px;}
.fs2_c02366{font-size:47.880000px;}
.fs0_c02366{font-size:65.880000px;}
.fs1_c02366{font-size:72.000000px;}
.y0_c02366{bottom:0.000000px;}
.y3_c02366{bottom:75.721467px;}
.y2_c02366{bottom:113.880810px;}
.y31_c02366{bottom:134.221305px;}
.y30_c02366{bottom:153.211215px;}
.y2f_c02366{bottom:172.110540px;}
.y2e_c02366{bottom:191.100450px;}
.y2d_c02366{bottom:211.260450px;}
.y2c_c02366{bottom:231.150450px;}
.y2b_c02366{bottom:262.200450px;}
.y2a_c02366{bottom:293.250450px;}
.y29_c02366{bottom:324.300450px;}
.y28_c02366{bottom:343.740450px;}
.y27_c02366{bottom:358.411815px;}
.y26_c02366{bottom:377.401725px;}
.y25_c02366{bottom:396.391635px;}
.y24_c02366{bottom:415.381545px;}
.y23_c02366{bottom:434.280870px;}
.y22_c02366{bottom:453.270780px;}
.y21_c02366{bottom:472.260690px;}
.y20_c02366{bottom:491.250600px;}
.y1f_c02366{bottom:513.750600px;}
.y1e_c02366{bottom:536.430450px;}
.y1d_c02366{bottom:567.480450px;}
.y1c_c02366{bottom:598.530450px;}
.y1b_c02366{bottom:618.060450px;}
.y1a_c02366{bottom:632.642790px;}
.y19_c02366{bottom:651.632700px;}
.y18_c02366{bottom:670.622610px;}
.y17_c02366{bottom:689.612520px;}
.y16_c02366{bottom:708.602430px;}
.y15_c02366{bottom:727.592340px;}
.y14_c02366{bottom:746.491665px;}
.y13_c02366{bottom:765.481575px;}
.y12_c02366{bottom:784.471485px;}
.y11_c02366{bottom:803.461395px;}
.y10_c02366{bottom:822.451305px;}
.yf_c02366{bottom:841.350630px;}
.ye_c02366{bottom:860.340540px;}
.yd_c02366{bottom:879.330450px;}
.yc_c02366{bottom:909.030450px;}
.yb_c02366{bottom:940.080450px;}
.ya_c02366{bottom:959.520450px;}
.y9_c02366{bottom:984.900450px;}
.y8_c02366{bottom:1015.950450px;}
.y7_c02366{bottom:1047.000450px;}
.y6_c02366{bottom:1078.050450px;}
.y5_c02366{bottom:1109.100450px;}
.y4_c02366{bottom:1140.150450px;}
.y1_c02366{bottom:1194.510450px;}
.h9_c02366{height:23.672461px;}
.h8_c02366{height:35.332031px;}
.h3_c02366{height:43.909277px;}
.h5_c02366{height:46.991602px;}
.h2_c02366{height:54.331699px;}
.h7_c02366{height:64.657617px;}
.h1_c02366{height:66.394687px;}
.h4_c02366{height:70.664062px;}
.h6_c02366{height:72.562500px;}
.h0_c02366{height:1263.000000px;}
.w1_c02366{width:892.500000px;}
.w0_c02366{width:892.830000px;}
.x0_c02366{left:0.000000px;}
.x3_c02366{left:127.619244px;}
.x1_c02366{left:129.510000px;}
.x4_c02366{left:148.950000px;}
.x5_c02366{left:170.190000px;}
.x6_c02366{left:191.429712px;}
.x2_c02366{left:438.119919px;}
@media print{
.v0_c02366{vertical-align:0.000000pt;}
.ls18_c02366{letter-spacing:-0.025600pt;}
.ls1b_c02366{letter-spacing:-0.023424pt;}
.ls17_c02366{letter-spacing:-0.012800pt;}
.ls1a_c02366{letter-spacing:-0.005856pt;}
.ls16_c02366{letter-spacing:0.000000pt;}
.lsc_c02366{letter-spacing:0.005856pt;}
.ls3_c02366{letter-spacing:0.006400pt;}
.ls10_c02366{letter-spacing:0.011712pt;}
.ls5_c02366{letter-spacing:0.012800pt;}
.lsa_c02366{letter-spacing:0.017568pt;}
.ls4_c02366{letter-spacing:0.019200pt;}
.ls1_c02366{letter-spacing:0.025600pt;}
.lsf_c02366{letter-spacing:0.029280pt;}
.ls12_c02366{letter-spacing:0.032000pt;}
.ls6_c02366{letter-spacing:0.038400pt;}
.ls0_c02366{letter-spacing:0.040992pt;}
.ls8_c02366{letter-spacing:0.044800pt;}
.lsd_c02366{letter-spacing:0.046848pt;}
.ls11_c02366{letter-spacing:0.051200pt;}
.lsb_c02366{letter-spacing:0.052704pt;}
.ls9_c02366{letter-spacing:0.057600pt;}
.ls13_c02366{letter-spacing:0.058560pt;}
.lse_c02366{letter-spacing:0.070272pt;}
.ls2_c02366{letter-spacing:0.070400pt;}
.ls19_c02366{letter-spacing:0.076800pt;}
.ls14_c02366{letter-spacing:0.081984pt;}
.ls15_c02366{letter-spacing:0.087840pt;}
.ls7_c02366{letter-spacing:1.280000pt;}
.ws1_c02366{word-spacing:-16.076800pt;}
.ws2_c02366{word-spacing:-16.000000pt;}
.wse_c02366{word-spacing:-0.224000pt;}
.ws2b_c02366{word-spacing:-0.211200pt;}
.ws2f_c02366{word-spacing:-0.198400pt;}
.ws3e_c02366{word-spacing:-0.179200pt;}
.ws0_c02366{word-spacing:-0.140544pt;}
.ws14_c02366{word-spacing:-0.057600pt;}
.ws2a_c02366{word-spacing:-0.038400pt;}
.wsd_c02366{word-spacing:-0.019200pt;}
.ws2e_c02366{word-spacing:-0.012800pt;}
.ws2d_c02366{word-spacing:-0.006400pt;}
.ws5_c02366{word-spacing:0.000000pt;}
.ws15_c02366{word-spacing:0.012800pt;}
.wsf_c02366{word-spacing:0.025600pt;}
.ws3_c02366{word-spacing:0.040992pt;}
.ws4_c02366{word-spacing:0.046848pt;}
.ws38_c02366{word-spacing:0.052704pt;}
.ws10_c02366{word-spacing:1.241600pt;}
.ws13_c02366{word-spacing:1.254400pt;}
.ws12_c02366{word-spacing:1.267200pt;}
.ws11_c02366{word-spacing:1.273600pt;}
.ws35_c02366{word-spacing:1.311744pt;}
.ws22_c02366{word-spacing:1.651392pt;}
.ws36_c02366{word-spacing:1.704096pt;}
.ws24_c02366{word-spacing:1.991040pt;}
.ws23_c02366{word-spacing:2.002752pt;}
.ws41_c02366{word-spacing:2.939712pt;}
.ws17_c02366{word-spacing:4.538400pt;}
.ws32_c02366{word-spacing:4.550112pt;}
.ws3d_c02366{word-spacing:4.723200pt;}
.ws3c_c02366{word-spacing:4.768000pt;}
.ws29_c02366{word-spacing:4.825344pt;}
.ws28_c02366{word-spacing:4.848768pt;}
.ws16_c02366{word-spacing:4.860480pt;}
.ws2c_c02366{word-spacing:5.075200pt;}
.ws8_c02366{word-spacing:5.689600pt;}
.ws9_c02366{word-spacing:5.721600pt;}
.ws31_c02366{word-spacing:5.809152pt;}
.ws1b_c02366{word-spacing:6.113664pt;}
.ws1c_c02366{word-spacing:6.142944pt;}
.ws1d_c02366{word-spacing:6.412320pt;}
.ws1e_c02366{word-spacing:6.435744pt;}
.ws19_c02366{word-spacing:8.713728pt;}
.ws1a_c02366{word-spacing:8.725440pt;}
.ws37_c02366{word-spacing:9.000672pt;}
.ws25_c02366{word-spacing:9.311040pt;}
.ws27_c02366{word-spacing:10.271424pt;}
.ws26_c02366{word-spacing:10.277280pt;}
.ws18_c02366{word-spacing:10.587648pt;}
.ws1f_c02366{word-spacing:12.198048pt;}
.ws20_c02366{word-spacing:12.221472pt;}
.ws21_c02366{word-spacing:12.537696pt;}
.ws33_c02366{word-spacing:14.130528pt;}
.wsa_c02366{word-spacing:15.206400pt;}
.wsb_c02366{word-spacing:15.353600pt;}
.wsc_c02366{word-spacing:15.372800pt;}
.ws39_c02366{word-spacing:16.588800pt;}
.ws3a_c02366{word-spacing:16.614400pt;}
.ws30_c02366{word-spacing:17.626560pt;}
.ws40_c02366{word-spacing:19.219392pt;}
.ws3f_c02366{word-spacing:19.231104pt;}
.ws3b_c02366{word-spacing:19.820800pt;}
.ws42_c02366{word-spacing:21.116736pt;}
.ws43_c02366{word-spacing:21.128448pt;}
.ws34_c02366{word-spacing:22.141536pt;}
.ws6_c02366{word-spacing:23.596800pt;}
.ws7_c02366{word-spacing:23.737600pt;}
._0_c02366{margin-left:-1.001376pt;}
._1_c02366{width:1.267200pt;}
.fs4_c02366{font-size:21.440000pt;}
.fs3_c02366{font-size:32.000000pt;}
.fs2_c02366{font-size:42.560000pt;}
.fs0_c02366{font-size:58.560000pt;}
.fs1_c02366{font-size:64.000000pt;}
.y0_c02366{bottom:0.000000pt;}
.y3_c02366{bottom:67.307971pt;}
.y2_c02366{bottom:101.227387pt;}
.y31_c02366{bottom:119.307827pt;}
.y30_c02366{bottom:136.187747pt;}
.y2f_c02366{bottom:152.987147pt;}
.y2e_c02366{bottom:169.867067pt;}
.y2d_c02366{bottom:187.787067pt;}
.y2c_c02366{bottom:205.467067pt;}
.y2b_c02366{bottom:233.067067pt;}
.y2a_c02366{bottom:260.667067pt;}
.y29_c02366{bottom:288.267067pt;}
.y28_c02366{bottom:305.547067pt;}
.y27_c02366{bottom:318.588280pt;}
.y26_c02366{bottom:335.468200pt;}
.y25_c02366{bottom:352.348120pt;}
.y24_c02366{bottom:369.228040pt;}
.y23_c02366{bottom:386.027440pt;}
.y22_c02366{bottom:402.907360pt;}
.y21_c02366{bottom:419.787280pt;}
.y20_c02366{bottom:436.667200pt;}
.y1f_c02366{bottom:456.667200pt;}
.y1e_c02366{bottom:476.827067pt;}
.y1d_c02366{bottom:504.427067pt;}
.y1c_c02366{bottom:532.027067pt;}
.y1b_c02366{bottom:549.387067pt;}
.y1a_c02366{bottom:562.349147pt;}
.y19_c02366{bottom:579.229067pt;}
.y18_c02366{bottom:596.108987pt;}
.y17_c02366{bottom:612.988907pt;}
.y16_c02366{bottom:629.868827pt;}
.y15_c02366{bottom:646.748747pt;}
.y14_c02366{bottom:663.548147pt;}
.y13_c02366{bottom:680.428067pt;}
.y12_c02366{bottom:697.307987pt;}
.y11_c02366{bottom:714.187907pt;}
.y10_c02366{bottom:731.067827pt;}
.yf_c02366{bottom:747.867227pt;}
.ye_c02366{bottom:764.747147pt;}
.yd_c02366{bottom:781.627067pt;}
.yc_c02366{bottom:808.027067pt;}
.yb_c02366{bottom:835.627067pt;}
.ya_c02366{bottom:852.907067pt;}
.y9_c02366{bottom:875.467067pt;}
.y8_c02366{bottom:903.067067pt;}
.y7_c02366{bottom:930.667067pt;}
.y6_c02366{bottom:958.267067pt;}
.y5_c02366{bottom:985.867067pt;}
.y4_c02366{bottom:1013.467067pt;}
.y1_c02366{bottom:1061.787067pt;}
.h9_c02366{height:21.042187pt;}
.h8_c02366{height:31.406250pt;}
.h3_c02366{height:39.030469pt;}
.h5_c02366{height:41.770312pt;}
.h2_c02366{height:48.294844pt;}
.h7_c02366{height:57.473437pt;}
.h1_c02366{height:59.017500pt;}
.h4_c02366{height:62.812500pt;}
.h6_c02366{height:64.500000pt;}
.h0_c02366{height:1122.666667pt;}
.w1_c02366{width:793.333333pt;}
.w0_c02366{width:793.626667pt;}
.x0_c02366{left:0.000000pt;}
.x3_c02366{left:113.439328pt;}
.x1_c02366{left:115.120000pt;}
.x4_c02366{left:132.400000pt;}
.x5_c02366{left:151.280000pt;}
.x6_c02366{left:170.159744pt;}
.x2_c02366{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58e6da9265980441333d8fb8.woff2')format("woff");}.ff1_c02367{font-family:ff1_c02367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02367;src:url('chunks/assets/font_b6e6eeecf38d8e91f5d0b66d.woff2')format("woff");}.ff2_c02367{font-family:ff2_c02367;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02367{font-family:ff3_c02367;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_c02367;src:url('chunks/assets/font_06452cb3f3732a55f87682f1.woff2')format("woff");}.ff4_c02367{font-family:ff4_c02367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02367;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c02367{font-family:ff5_c02367;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02367;src:url('chunks/assets/font_f48459c621e2b68e65664106.woff2')format("woff");}.ff6_c02367{font-family:ff6_c02367;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:ff7_c02367;src:url('chunks/assets/font_cdb593455e319c4a87c015d2.woff2')format("woff");}.ff7_c02367{font-family:ff7_c02367;line-height:0.664062;font-style: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);}
.v1_c02367{vertical-align:-77.760600px;}
.v2_c02367{vertical-align:-66.960000px;}
.v0_c02367{vertical-align:0.000000px;}
.ls26_c02367{letter-spacing:-0.360000px;}
.ls21_c02367{letter-spacing:-0.201600px;}
.ls25_c02367{letter-spacing:-0.064800px;}
.ls1f_c02367{letter-spacing:-0.059292px;}
.ls22_c02367{letter-spacing:-0.036000px;}
.ls1e_c02367{letter-spacing:-0.028800px;}
.ls23_c02367{letter-spacing:-0.021600px;}
.ls24_c02367{letter-spacing:-0.014400px;}
.ls20_c02367{letter-spacing:-0.007200px;}
.ls1d_c02367{letter-spacing:0.000000px;}
.ls19_c02367{letter-spacing:0.006588px;}
.ls3_c02367{letter-spacing:0.007200px;}
.ls1b_c02367{letter-spacing:0.013176px;}
.ls2_c02367{letter-spacing:0.014400px;}
.lsb_c02367{letter-spacing:0.019764px;}
.ls15_c02367{letter-spacing:0.021600px;}
.ls1a_c02367{letter-spacing:0.026352px;}
.ls4_c02367{letter-spacing:0.032940px;}
.ls1_c02367{letter-spacing:0.036000px;}
.lsa_c02367{letter-spacing:0.039528px;}
.ls8_c02367{letter-spacing:0.043200px;}
.ls0_c02367{letter-spacing:0.046116px;}
.ls7_c02367{letter-spacing:0.050400px;}
.ls5_c02367{letter-spacing:0.052704px;}
.ls17_c02367{letter-spacing:0.057600px;}
.lsf_c02367{letter-spacing:0.059292px;}
.ls12_c02367{letter-spacing:0.064800px;}
.lsd_c02367{letter-spacing:0.065880px;}
.ls13_c02367{letter-spacing:0.072000px;}
.lsc_c02367{letter-spacing:0.072468px;}
.ls11_c02367{letter-spacing:0.079200px;}
.ls10_c02367{letter-spacing:0.085644px;}
.ls14_c02367{letter-spacing:0.086400px;}
.ls1c_c02367{letter-spacing:0.092232px;}
.lse_c02367{letter-spacing:0.111996px;}
.ls16_c02367{letter-spacing:0.115200px;}
.ls6_c02367{letter-spacing:71.108640px;}
.ls18_c02367{letter-spacing:164.250000px;}
.ls9_c02367{letter-spacing:249.210000px;}
.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;}
}
.ws1_c02367{word-spacing:-18.000000px;}
.ws0_c02367{word-spacing:-0.158112px;}
.wsb_c02367{word-spacing:-0.115200px;}
.ws24_c02367{word-spacing:-0.072000px;}
.ws32_c02367{word-spacing:-0.036000px;}
.ws2d_c02367{word-spacing:-0.021600px;}
.wsa_c02367{word-spacing:-0.014400px;}
.ws9_c02367{word-spacing:-0.007200px;}
.ws4_c02367{word-spacing:0.000000px;}
.ws10_c02367{word-spacing:0.007200px;}
.ws20_c02367{word-spacing:0.019764px;}
.ws1a_c02367{word-spacing:0.026352px;}
.ws25_c02367{word-spacing:0.036000px;}
.ws2_c02367{word-spacing:0.046116px;}
.ws3_c02367{word-spacing:0.052704px;}
.ws26_c02367{word-spacing:0.093600px;}
.ws27_c02367{word-spacing:0.230400px;}
.ws11_c02367{word-spacing:0.770796px;}
.ws12_c02367{word-spacing:0.790560px;}
.ws1b_c02367{word-spacing:1.416420px;}
.ws7_c02367{word-spacing:1.425600px;}
.ws1c_c02367{word-spacing:1.469124px;}
.ws8_c02367{word-spacing:1.497600px;}
.ws17_c02367{word-spacing:3.616812px;}
.ws13_c02367{word-spacing:4.018680px;}
.ws1d_c02367{word-spacing:5.448276px;}
.wsc_c02367{word-spacing:5.454864px;}
.ws1e_c02367{word-spacing:5.764500px;}
.ws19_c02367{word-spacing:5.817204px;}
.ws2c_c02367{word-spacing:6.300000px;}
.ws2b_c02367{word-spacing:6.307200px;}
.ws2e_c02367{word-spacing:6.364800px;}
.ws2f_c02367{word-spacing:6.429600px;}
.ws2a_c02367{word-spacing:6.494400px;}
.ws37_c02367{word-spacing:7.622316px;}
.ws36_c02367{word-spacing:7.642080px;}
.wsd_c02367{word-spacing:9.038736px;}
.ws1f_c02367{word-spacing:9.051912px;}
.ws5_c02367{word-spacing:9.979200px;}
.ws28_c02367{word-spacing:10.058400px;}
.ws29_c02367{word-spacing:10.101600px;}
.ws6_c02367{word-spacing:10.108800px;}
.ws18_c02367{word-spacing:13.722804px;}
.ws38_c02367{word-spacing:14.091732px;}
.ws3a_c02367{word-spacing:14.460660px;}
.ws39_c02367{word-spacing:14.473836px;}
.ws3b_c02367{word-spacing:14.487012px;}
.ws15_c02367{word-spacing:15.857316px;}
.ws16_c02367{word-spacing:15.910020px;}
.ws14_c02367{word-spacing:16.595172px;}
.ws31_c02367{word-spacing:19.015200px;}
.ws30_c02367{word-spacing:19.080000px;}
.ws23_c02367{word-spacing:24.415200px;}
.ws21_c02367{word-spacing:24.696000px;}
.ws22_c02367{word-spacing:24.868800px;}
.ws34_c02367{word-spacing:28.382400px;}
.ws35_c02367{word-spacing:28.389600px;}
.wsf_c02367{word-spacing:28.396800px;}
.wse_c02367{word-spacing:28.425600px;}
.ws33_c02367{word-spacing:28.504800px;}
._0_c02367{margin-left:-1.126548px;}
._2_c02367{width:1.093608px;}
._1_c02367{width:28.360800px;}
.fc0_c02367{color:rgb(0,0,0);}
.fs2_c02367{font-size:24.120000px;}
.fs4_c02367{font-size:47.880000px;}
.fs3_c02367{font-size:51.120000px;}
.fs0_c02367{font-size:65.880000px;}
.fs1_c02367{font-size:72.000000px;}
.y0_c02367{bottom:0.000000px;}
.y3_c02367{bottom:75.721467px;}
.y2_c02367{bottom:113.880810px;}
.y2d_c02367{bottom:138.541305px;}
.y2c_c02367{bottom:157.531215px;}
.y2b_c02367{bottom:176.430540px;}
.y2a_c02367{bottom:212.070450px;}
.y29_c02367{bottom:232.050450px;}
.y28_c02367{bottom:263.100450px;}
.y27_c02367{bottom:282.360450px;}
.y26_c02367{bottom:307.920600px;}
.y25_c02367{bottom:338.970600px;}
.y24_c02367{bottom:370.020600px;}
.y23_c02367{bottom:401.070600px;}
.y22_c02367{bottom:432.120600px;}
.y21_c02367{bottom:463.170600px;}
.y20_c02367{bottom:494.220600px;}
.y1f_c02367{bottom:525.270600px;}
.y1e_c02367{bottom:546.780450px;}
.y1d_c02367{bottom:566.580450px;}
.y1c_c02367{bottom:597.720450px;}
.y1b_c02367{bottom:628.770450px;}
.y1a_c02367{bottom:655.230450px;}
.y19_c02367{bottom:669.813285px;}
.y18_c02367{bottom:688.712610px;}
.y17_c02367{bottom:707.702520px;}
.y16_c02367{bottom:726.692430px;}
.y15_c02367{bottom:745.682340px;}
.y14_c02367{bottom:764.672250px;}
.y13_c02367{bottom:783.571575px;}
.y12_c02367{bottom:802.561485px;}
.y11_c02367{bottom:821.551395px;}
.y10_c02367{bottom:840.541305px;}
.yf_c02367{bottom:859.531215px;}
.ye_c02367{bottom:878.430540px;}
.yd_c02367{bottom:914.160450px;}
.yc_c02367{bottom:934.050450px;}
.yb_c02367{bottom:984.540600px;}
.ya_c02367{bottom:1000.111215px;}
.y9_c02367{bottom:1019.010540px;}
.y8_c02367{bottom:1038.000450px;}
.y7_c02367{bottom:1058.160450px;}
.y6_c02367{bottom:1078.050450px;}
.y5_c02367{bottom:1109.100450px;}
.y4_c02367{bottom:1140.150450px;}
.y1_c02367{bottom:1194.510450px;}
.h6_c02367{height:23.672461px;}
.hc_c02367{height:24.308437px;}
.h3_c02367{height:43.909277px;}
.h9_c02367{height:46.991602px;}
.hb_c02367{height:49.937344px;}
.h8_c02367{height:53.316562px;}
.h2_c02367{height:54.331699px;}
.h7_c02367{height:64.657617px;}
.h1_c02367{height:66.394687px;}
.ha_c02367{height:70.628906px;}
.h4_c02367{height:70.664062px;}
.h5_c02367{height:72.562500px;}
.h0_c02367{height:1263.000000px;}
.w1_c02367{width:892.500000px;}
.w0_c02367{width:892.830000px;}
.x0_c02367{left:0.000000px;}
.x3_c02367{left:127.619244px;}
.x1_c02367{left:129.510000px;}
.x5_c02367{left:148.950000px;}
.x4_c02367{left:170.190000px;}
.x6_c02367{left:191.430000px;}
.x2_c02367{left:438.119919px;}
@media print{
.v1_c02367{vertical-align:-69.120533pt;}
.v2_c02367{vertical-align:-59.520000pt;}
.v0_c02367{vertical-align:0.000000pt;}
.ls26_c02367{letter-spacing:-0.320000pt;}
.ls21_c02367{letter-spacing:-0.179200pt;}
.ls25_c02367{letter-spacing:-0.057600pt;}
.ls1f_c02367{letter-spacing:-0.052704pt;}
.ls22_c02367{letter-spacing:-0.032000pt;}
.ls1e_c02367{letter-spacing:-0.025600pt;}
.ls23_c02367{letter-spacing:-0.019200pt;}
.ls24_c02367{letter-spacing:-0.012800pt;}
.ls20_c02367{letter-spacing:-0.006400pt;}
.ls1d_c02367{letter-spacing:0.000000pt;}
.ls19_c02367{letter-spacing:0.005856pt;}
.ls3_c02367{letter-spacing:0.006400pt;}
.ls1b_c02367{letter-spacing:0.011712pt;}
.ls2_c02367{letter-spacing:0.012800pt;}
.lsb_c02367{letter-spacing:0.017568pt;}
.ls15_c02367{letter-spacing:0.019200pt;}
.ls1a_c02367{letter-spacing:0.023424pt;}
.ls4_c02367{letter-spacing:0.029280pt;}
.ls1_c02367{letter-spacing:0.032000pt;}
.lsa_c02367{letter-spacing:0.035136pt;}
.ls8_c02367{letter-spacing:0.038400pt;}
.ls0_c02367{letter-spacing:0.040992pt;}
.ls7_c02367{letter-spacing:0.044800pt;}
.ls5_c02367{letter-spacing:0.046848pt;}
.ls17_c02367{letter-spacing:0.051200pt;}
.lsf_c02367{letter-spacing:0.052704pt;}
.ls12_c02367{letter-spacing:0.057600pt;}
.lsd_c02367{letter-spacing:0.058560pt;}
.ls13_c02367{letter-spacing:0.064000pt;}
.lsc_c02367{letter-spacing:0.064416pt;}
.ls11_c02367{letter-spacing:0.070400pt;}
.ls10_c02367{letter-spacing:0.076128pt;}
.ls14_c02367{letter-spacing:0.076800pt;}
.ls1c_c02367{letter-spacing:0.081984pt;}
.lse_c02367{letter-spacing:0.099552pt;}
.ls16_c02367{letter-spacing:0.102400pt;}
.ls6_c02367{letter-spacing:63.207680pt;}
.ls18_c02367{letter-spacing:146.000000pt;}
.ls9_c02367{letter-spacing:221.520000pt;}
.ws1_c02367{word-spacing:-16.000000pt;}
.ws0_c02367{word-spacing:-0.140544pt;}
.wsb_c02367{word-spacing:-0.102400pt;}
.ws24_c02367{word-spacing:-0.064000pt;}
.ws32_c02367{word-spacing:-0.032000pt;}
.ws2d_c02367{word-spacing:-0.019200pt;}
.wsa_c02367{word-spacing:-0.012800pt;}
.ws9_c02367{word-spacing:-0.006400pt;}
.ws4_c02367{word-spacing:0.000000pt;}
.ws10_c02367{word-spacing:0.006400pt;}
.ws20_c02367{word-spacing:0.017568pt;}
.ws1a_c02367{word-spacing:0.023424pt;}
.ws25_c02367{word-spacing:0.032000pt;}
.ws2_c02367{word-spacing:0.040992pt;}
.ws3_c02367{word-spacing:0.046848pt;}
.ws26_c02367{word-spacing:0.083200pt;}
.ws27_c02367{word-spacing:0.204800pt;}
.ws11_c02367{word-spacing:0.685152pt;}
.ws12_c02367{word-spacing:0.702720pt;}
.ws1b_c02367{word-spacing:1.259040pt;}
.ws7_c02367{word-spacing:1.267200pt;}
.ws1c_c02367{word-spacing:1.305888pt;}
.ws8_c02367{word-spacing:1.331200pt;}
.ws17_c02367{word-spacing:3.214944pt;}
.ws13_c02367{word-spacing:3.572160pt;}
.ws1d_c02367{word-spacing:4.842912pt;}
.wsc_c02367{word-spacing:4.848768pt;}
.ws1e_c02367{word-spacing:5.124000pt;}
.ws19_c02367{word-spacing:5.170848pt;}
.ws2c_c02367{word-spacing:5.600000pt;}
.ws2b_c02367{word-spacing:5.606400pt;}
.ws2e_c02367{word-spacing:5.657600pt;}
.ws2f_c02367{word-spacing:5.715200pt;}
.ws2a_c02367{word-spacing:5.772800pt;}
.ws37_c02367{word-spacing:6.775392pt;}
.ws36_c02367{word-spacing:6.792960pt;}
.wsd_c02367{word-spacing:8.034432pt;}
.ws1f_c02367{word-spacing:8.046144pt;}
.ws5_c02367{word-spacing:8.870400pt;}
.ws28_c02367{word-spacing:8.940800pt;}
.ws29_c02367{word-spacing:8.979200pt;}
.ws6_c02367{word-spacing:8.985600pt;}
.ws18_c02367{word-spacing:12.198048pt;}
.ws38_c02367{word-spacing:12.525984pt;}
.ws3a_c02367{word-spacing:12.853920pt;}
.ws39_c02367{word-spacing:12.865632pt;}
.ws3b_c02367{word-spacing:12.877344pt;}
.ws15_c02367{word-spacing:14.095392pt;}
.ws16_c02367{word-spacing:14.142240pt;}
.ws14_c02367{word-spacing:14.751264pt;}
.ws31_c02367{word-spacing:16.902400pt;}
.ws30_c02367{word-spacing:16.960000pt;}
.ws23_c02367{word-spacing:21.702400pt;}
.ws21_c02367{word-spacing:21.952000pt;}
.ws22_c02367{word-spacing:22.105600pt;}
.ws34_c02367{word-spacing:25.228800pt;}
.ws35_c02367{word-spacing:25.235200pt;}
.wsf_c02367{word-spacing:25.241600pt;}
.wse_c02367{word-spacing:25.267200pt;}
.ws33_c02367{word-spacing:25.337600pt;}
._0_c02367{margin-left:-1.001376pt;}
._2_c02367{width:0.972096pt;}
._1_c02367{width:25.209600pt;}
.fs2_c02367{font-size:21.440000pt;}
.fs4_c02367{font-size:42.560000pt;}
.fs3_c02367{font-size:45.440000pt;}
.fs0_c02367{font-size:58.560000pt;}
.fs1_c02367{font-size:64.000000pt;}
.y0_c02367{bottom:0.000000pt;}
.y3_c02367{bottom:67.307971pt;}
.y2_c02367{bottom:101.227387pt;}
.y2d_c02367{bottom:123.147827pt;}
.y2c_c02367{bottom:140.027747pt;}
.y2b_c02367{bottom:156.827147pt;}
.y2a_c02367{bottom:188.507067pt;}
.y29_c02367{bottom:206.267067pt;}
.y28_c02367{bottom:233.867067pt;}
.y27_c02367{bottom:250.987067pt;}
.y26_c02367{bottom:273.707200pt;}
.y25_c02367{bottom:301.307200pt;}
.y24_c02367{bottom:328.907200pt;}
.y23_c02367{bottom:356.507200pt;}
.y22_c02367{bottom:384.107200pt;}
.y21_c02367{bottom:411.707200pt;}
.y20_c02367{bottom:439.307200pt;}
.y1f_c02367{bottom:466.907200pt;}
.y1e_c02367{bottom:486.027067pt;}
.y1d_c02367{bottom:503.627067pt;}
.y1c_c02367{bottom:531.307067pt;}
.y1b_c02367{bottom:558.907067pt;}
.y1a_c02367{bottom:582.427067pt;}
.y19_c02367{bottom:595.389587pt;}
.y18_c02367{bottom:612.188987pt;}
.y17_c02367{bottom:629.068907pt;}
.y16_c02367{bottom:645.948827pt;}
.y15_c02367{bottom:662.828747pt;}
.y14_c02367{bottom:679.708667pt;}
.y13_c02367{bottom:696.508067pt;}
.y12_c02367{bottom:713.387987pt;}
.y11_c02367{bottom:730.267907pt;}
.y10_c02367{bottom:747.147827pt;}
.yf_c02367{bottom:764.027747pt;}
.ye_c02367{bottom:780.827147pt;}
.yd_c02367{bottom:812.587067pt;}
.yc_c02367{bottom:830.267067pt;}
.yb_c02367{bottom:875.147200pt;}
.ya_c02367{bottom:888.987747pt;}
.y9_c02367{bottom:905.787147pt;}
.y8_c02367{bottom:922.667067pt;}
.y7_c02367{bottom:940.587067pt;}
.y6_c02367{bottom:958.267067pt;}
.y5_c02367{bottom:985.867067pt;}
.y4_c02367{bottom:1013.467067pt;}
.y1_c02367{bottom:1061.787067pt;}
.h6_c02367{height:21.042187pt;}
.hc_c02367{height:21.607500pt;}
.h3_c02367{height:39.030469pt;}
.h9_c02367{height:41.770312pt;}
.hb_c02367{height:44.388750pt;}
.h8_c02367{height:47.392500pt;}
.h2_c02367{height:48.294844pt;}
.h7_c02367{height:57.473437pt;}
.h1_c02367{height:59.017500pt;}
.ha_c02367{height:62.781250pt;}
.h4_c02367{height:62.812500pt;}
.h5_c02367{height:64.500000pt;}
.h0_c02367{height:1122.666667pt;}
.w1_c02367{width:793.333333pt;}
.w0_c02367{width:793.626667pt;}
.x0_c02367{left:0.000000pt;}
.x3_c02367{left:113.439328pt;}
.x1_c02367{left:115.120000pt;}
.x5_c02367{left:132.400000pt;}
.x4_c02367{left:151.280000pt;}
.x6_c02367{left:170.160000pt;}
.x2_c02367{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29c0d0ac9f724501c0d3ceb9.woff2')format("woff");}.ff1_c02368{font-family:ff1_c02368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02368;src:url('chunks/assets/font_b6e6eeecf38d8e91f5d0b66d.woff2')format("woff");}.ff2_c02368{font-family:ff2_c02368;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02368{font-family:ff3_c02368;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_c02368;src:url('chunks/assets/font_6f1f564a914fc7f1dce8d1db.woff2')format("woff");}.ff4_c02368{font-family:ff4_c02368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02368{vertical-align:-66.960000px;}
.v0_c02368{vertical-align:0.000000px;}
.ls17_c02368{letter-spacing:-0.026352px;}
.ls18_c02368{letter-spacing:-0.007200px;}
.ls1a_c02368{letter-spacing:-0.006588px;}
.ls16_c02368{letter-spacing:0.000000px;}
.ls7_c02368{letter-spacing:0.007200px;}
.ls2_c02368{letter-spacing:0.013176px;}
.ls19_c02368{letter-spacing:0.014400px;}
.ls1_c02368{letter-spacing:0.019764px;}
.ls6_c02368{letter-spacing:0.021600px;}
.lse_c02368{letter-spacing:0.026352px;}
.ls11_c02368{letter-spacing:0.032940px;}
.ls13_c02368{letter-spacing:0.036000px;}
.ls3_c02368{letter-spacing:0.039528px;}
.ls4_c02368{letter-spacing:0.043200px;}
.ls0_c02368{letter-spacing:0.046116px;}
.lsa_c02368{letter-spacing:0.052704px;}
.ls5_c02368{letter-spacing:0.057600px;}
.ls9_c02368{letter-spacing:0.059292px;}
.ls10_c02368{letter-spacing:0.064800px;}
.ls12_c02368{letter-spacing:0.065880px;}
.lsd_c02368{letter-spacing:0.072000px;}
.lsb_c02368{letter-spacing:0.072468px;}
.lsc_c02368{letter-spacing:0.079056px;}
.ls14_c02368{letter-spacing:0.085644px;}
.ls15_c02368{letter-spacing:0.092232px;}
.lsf_c02368{letter-spacing:0.100800px;}
.ls8_c02368{letter-spacing:163.890000px;}
.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;}
}
.ws35_c02368{word-spacing:-0.360000px;}
.wsb_c02368{word-spacing:-0.237600px;}
.wsf_c02368{word-spacing:-0.201600px;}
.ws0_c02368{word-spacing:-0.158112px;}
.ws1a_c02368{word-spacing:-0.151200px;}
.ws2a_c02368{word-spacing:-0.072000px;}
.ws24_c02368{word-spacing:-0.064800px;}
.wsa_c02368{word-spacing:-0.043200px;}
.ws19_c02368{word-spacing:-0.021600px;}
.wse_c02368{word-spacing:-0.007200px;}
.ws3_c02368{word-spacing:0.000000px;}
.ws21_c02368{word-spacing:0.013176px;}
.ws40_c02368{word-spacing:0.032940px;}
.ws1_c02368{word-spacing:0.046116px;}
.ws2_c02368{word-spacing:0.052704px;}
.ws14_c02368{word-spacing:0.072468px;}
.ws9_c02368{word-spacing:0.079056px;}
.ws33_c02368{word-spacing:0.098820px;}
.ws23_c02368{word-spacing:0.165600px;}
.ws22_c02368{word-spacing:0.194400px;}
.ws28_c02368{word-spacing:2.931660px;}
.ws1d_c02368{word-spacing:2.944836px;}
.ws38_c02368{word-spacing:3.669516px;}
.ws39_c02368{word-spacing:4.031856px;}
.ws25_c02368{word-spacing:4.743360px;}
.ws3f_c02368{word-spacing:5.066172px;}
.ws3e_c02368{word-spacing:5.118876px;}
.ws29_c02368{word-spacing:6.436800px;}
.ws31_c02368{word-spacing:6.891048px;}
.ws32_c02368{word-spacing:6.910812px;}
.ws2b_c02368{word-spacing:7.615728px;}
.ws3d_c02368{word-spacing:7.925364px;}
.ws37_c02368{word-spacing:7.964892px;}
.ws36_c02368{word-spacing:7.991244px;}
.ws3c_c02368{word-spacing:7.997832px;}
.ws18_c02368{word-spacing:8.164800px;}
.ws17_c02368{word-spacing:8.272800px;}
.ws2f_c02368{word-spacing:9.025560px;}
.ws8_c02368{word-spacing:9.770004px;}
.ws6_c02368{word-spacing:9.789768px;}
.ws7_c02368{word-spacing:9.796356px;}
.wsc_c02368{word-spacing:10.360800px;}
.wsd_c02368{word-spacing:10.440000px;}
.ws10_c02368{word-spacing:10.468332px;}
.ws11_c02368{word-spacing:10.474920px;}
.ws20_c02368{word-spacing:10.488096px;}
.ws1f_c02368{word-spacing:15.877080px;}
.ws1e_c02368{word-spacing:15.929784px;}
.ws2e_c02368{word-spacing:16.252596px;}
.ws5_c02368{word-spacing:16.990452px;}
.ws4_c02368{word-spacing:17.036568px;}
.ws13_c02368{word-spacing:18.373932px;}
.ws12_c02368{word-spacing:18.736272px;}
.ws2d_c02368{word-spacing:20.192220px;}
.ws2c_c02368{word-spacing:20.574324px;}
.ws1b_c02368{word-spacing:20.580912px;}
.ws15_c02368{word-spacing:22.154400px;}
.ws16_c02368{word-spacing:22.190400px;}
.ws1c_c02368{word-spacing:26.668224px;}
.ws3a_c02368{word-spacing:28.453572px;}
.ws3b_c02368{word-spacing:28.506276px;}
.ws27_c02368{word-spacing:31.714632px;}
.ws26_c02368{word-spacing:31.727808px;}
.ws34_c02368{word-spacing:34.524000px;}
.ws30_c02368{word-spacing:43.955136px;}
._0_c02368{margin-left:-1.126548px;}
._1_c02368{width:1.324188px;}
.fc0_c02368{color:rgb(0,0,0);}
.fs3_c02368{font-size:24.120000px;}
.fs1_c02368{font-size:47.880000px;}
.fs0_c02368{font-size:65.880000px;}
.fs2_c02368{font-size:72.000000px;}
.y0_c02368{bottom:0.000000px;}
.y3_c02368{bottom:75.721467px;}
.y2_c02368{bottom:113.880810px;}
.y33_c02368{bottom:144.571575px;}
.y32_c02368{bottom:163.561485px;}
.y31_c02368{bottom:182.460810px;}
.y30_c02368{bottom:201.450720px;}
.y2f_c02368{bottom:220.440630px;}
.y2e_c02368{bottom:239.430540px;}
.y2d_c02368{bottom:258.420450px;}
.y2c_c02368{bottom:288.120450px;}
.y2b_c02368{bottom:319.170450px;}
.y2a_c02368{bottom:338.610450px;}
.y29_c02368{bottom:353.281575px;}
.y28_c02368{bottom:372.271485px;}
.y27_c02368{bottom:391.170810px;}
.y26_c02368{bottom:410.160720px;}
.y25_c02368{bottom:429.150630px;}
.y24_c02368{bottom:448.140540px;}
.y23_c02368{bottom:467.130450px;}
.y22_c02368{bottom:496.830450px;}
.y21_c02368{bottom:527.880450px;}
.y20_c02368{bottom:547.320450px;}
.y1f_c02368{bottom:561.991305px;}
.y1e_c02368{bottom:580.981215px;}
.y1d_c02368{bottom:599.880540px;}
.y1c_c02368{bottom:618.870450px;}
.y1b_c02368{bottom:648.570450px;}
.y1a_c02368{bottom:679.620450px;}
.y19_c02368{bottom:699.060450px;}
.y18_c02368{bottom:713.731485px;}
.y17_c02368{bottom:732.721395px;}
.y16_c02368{bottom:751.711305px;}
.y15_c02368{bottom:770.701215px;}
.y14_c02368{bottom:789.600540px;}
.y13_c02368{bottom:808.590450px;}
.y12_c02368{bottom:838.290450px;}
.y11_c02368{bottom:869.340450px;}
.y10_c02368{bottom:900.390450px;}
.yf_c02368{bottom:919.920450px;}
.ye_c02368{bottom:934.500630px;}
.yd_c02368{bottom:953.490540px;}
.yc_c02368{bottom:989.220450px;}
.yb_c02368{bottom:998.760450px;}
.ya_c02368{bottom:1019.460450px;}
.y9_c02368{bottom:1050.510450px;}
.y8_c02368{bottom:1069.950450px;}
.y7_c02368{bottom:1084.622610px;}
.y6_c02368{bottom:1103.612520px;}
.y5_c02368{bottom:1122.511845px;}
.y4_c02368{bottom:1141.501755px;}
.y1_c02368{bottom:1194.510450px;}
.h7_c02368{height:23.672461px;}
.h3_c02368{height:43.909277px;}
.h5_c02368{height:46.991602px;}
.h2_c02368{height:54.331699px;}
.h4_c02368{height:64.657617px;}
.h1_c02368{height:66.394687px;}
.h6_c02368{height:70.664062px;}
.h0_c02368{height:1263.000000px;}
.w1_c02368{width:892.500000px;}
.w0_c02368{width:892.830000px;}
.x0_c02368{left:0.000000px;}
.x3_c02368{left:127.619244px;}
.x1_c02368{left:129.510000px;}
.x5_c02368{left:148.950000px;}
.x4_c02368{left:170.189253px;}
.x6_c02368{left:191.430288px;}
.x7_c02368{left:212.670000px;}
.x2_c02368{left:438.119919px;}
@media print{
.v1_c02368{vertical-align:-59.520000pt;}
.v0_c02368{vertical-align:0.000000pt;}
.ls17_c02368{letter-spacing:-0.023424pt;}
.ls18_c02368{letter-spacing:-0.006400pt;}
.ls1a_c02368{letter-spacing:-0.005856pt;}
.ls16_c02368{letter-spacing:0.000000pt;}
.ls7_c02368{letter-spacing:0.006400pt;}
.ls2_c02368{letter-spacing:0.011712pt;}
.ls19_c02368{letter-spacing:0.012800pt;}
.ls1_c02368{letter-spacing:0.017568pt;}
.ls6_c02368{letter-spacing:0.019200pt;}
.lse_c02368{letter-spacing:0.023424pt;}
.ls11_c02368{letter-spacing:0.029280pt;}
.ls13_c02368{letter-spacing:0.032000pt;}
.ls3_c02368{letter-spacing:0.035136pt;}
.ls4_c02368{letter-spacing:0.038400pt;}
.ls0_c02368{letter-spacing:0.040992pt;}
.lsa_c02368{letter-spacing:0.046848pt;}
.ls5_c02368{letter-spacing:0.051200pt;}
.ls9_c02368{letter-spacing:0.052704pt;}
.ls10_c02368{letter-spacing:0.057600pt;}
.ls12_c02368{letter-spacing:0.058560pt;}
.lsd_c02368{letter-spacing:0.064000pt;}
.lsb_c02368{letter-spacing:0.064416pt;}
.lsc_c02368{letter-spacing:0.070272pt;}
.ls14_c02368{letter-spacing:0.076128pt;}
.ls15_c02368{letter-spacing:0.081984pt;}
.lsf_c02368{letter-spacing:0.089600pt;}
.ls8_c02368{letter-spacing:145.680000pt;}
.ws35_c02368{word-spacing:-0.320000pt;}
.wsb_c02368{word-spacing:-0.211200pt;}
.wsf_c02368{word-spacing:-0.179200pt;}
.ws0_c02368{word-spacing:-0.140544pt;}
.ws1a_c02368{word-spacing:-0.134400pt;}
.ws2a_c02368{word-spacing:-0.064000pt;}
.ws24_c02368{word-spacing:-0.057600pt;}
.wsa_c02368{word-spacing:-0.038400pt;}
.ws19_c02368{word-spacing:-0.019200pt;}
.wse_c02368{word-spacing:-0.006400pt;}
.ws3_c02368{word-spacing:0.000000pt;}
.ws21_c02368{word-spacing:0.011712pt;}
.ws40_c02368{word-spacing:0.029280pt;}
.ws1_c02368{word-spacing:0.040992pt;}
.ws2_c02368{word-spacing:0.046848pt;}
.ws14_c02368{word-spacing:0.064416pt;}
.ws9_c02368{word-spacing:0.070272pt;}
.ws33_c02368{word-spacing:0.087840pt;}
.ws23_c02368{word-spacing:0.147200pt;}
.ws22_c02368{word-spacing:0.172800pt;}
.ws28_c02368{word-spacing:2.605920pt;}
.ws1d_c02368{word-spacing:2.617632pt;}
.ws38_c02368{word-spacing:3.261792pt;}
.ws39_c02368{word-spacing:3.583872pt;}
.ws25_c02368{word-spacing:4.216320pt;}
.ws3f_c02368{word-spacing:4.503264pt;}
.ws3e_c02368{word-spacing:4.550112pt;}
.ws29_c02368{word-spacing:5.721600pt;}
.ws31_c02368{word-spacing:6.125376pt;}
.ws32_c02368{word-spacing:6.142944pt;}
.ws2b_c02368{word-spacing:6.769536pt;}
.ws3d_c02368{word-spacing:7.044768pt;}
.ws37_c02368{word-spacing:7.079904pt;}
.ws36_c02368{word-spacing:7.103328pt;}
.ws3c_c02368{word-spacing:7.109184pt;}
.ws18_c02368{word-spacing:7.257600pt;}
.ws17_c02368{word-spacing:7.353600pt;}
.ws2f_c02368{word-spacing:8.022720pt;}
.ws8_c02368{word-spacing:8.684448pt;}
.ws6_c02368{word-spacing:8.702016pt;}
.ws7_c02368{word-spacing:8.707872pt;}
.wsc_c02368{word-spacing:9.209600pt;}
.wsd_c02368{word-spacing:9.280000pt;}
.ws10_c02368{word-spacing:9.305184pt;}
.ws11_c02368{word-spacing:9.311040pt;}
.ws20_c02368{word-spacing:9.322752pt;}
.ws1f_c02368{word-spacing:14.112960pt;}
.ws1e_c02368{word-spacing:14.159808pt;}
.ws2e_c02368{word-spacing:14.446752pt;}
.ws5_c02368{word-spacing:15.102624pt;}
.ws4_c02368{word-spacing:15.143616pt;}
.ws13_c02368{word-spacing:16.332384pt;}
.ws12_c02368{word-spacing:16.654464pt;}
.ws2d_c02368{word-spacing:17.948640pt;}
.ws2c_c02368{word-spacing:18.288288pt;}
.ws1b_c02368{word-spacing:18.294144pt;}
.ws15_c02368{word-spacing:19.692800pt;}
.ws16_c02368{word-spacing:19.724800pt;}
.ws1c_c02368{word-spacing:23.705088pt;}
.ws3a_c02368{word-spacing:25.292064pt;}
.ws3b_c02368{word-spacing:25.338912pt;}
.ws27_c02368{word-spacing:28.190784pt;}
.ws26_c02368{word-spacing:28.202496pt;}
.ws34_c02368{word-spacing:30.688000pt;}
.ws30_c02368{word-spacing:39.071232pt;}
._0_c02368{margin-left:-1.001376pt;}
._1_c02368{width:1.177056pt;}
.fs3_c02368{font-size:21.440000pt;}
.fs1_c02368{font-size:42.560000pt;}
.fs0_c02368{font-size:58.560000pt;}
.fs2_c02368{font-size:64.000000pt;}
.y0_c02368{bottom:0.000000pt;}
.y3_c02368{bottom:67.307971pt;}
.y2_c02368{bottom:101.227387pt;}
.y33_c02368{bottom:128.508067pt;}
.y32_c02368{bottom:145.387987pt;}
.y31_c02368{bottom:162.187387pt;}
.y30_c02368{bottom:179.067307pt;}
.y2f_c02368{bottom:195.947227pt;}
.y2e_c02368{bottom:212.827147pt;}
.y2d_c02368{bottom:229.707067pt;}
.y2c_c02368{bottom:256.107067pt;}
.y2b_c02368{bottom:283.707067pt;}
.y2a_c02368{bottom:300.987067pt;}
.y29_c02368{bottom:314.028067pt;}
.y28_c02368{bottom:330.907987pt;}
.y27_c02368{bottom:347.707387pt;}
.y26_c02368{bottom:364.587307pt;}
.y25_c02368{bottom:381.467227pt;}
.y24_c02368{bottom:398.347147pt;}
.y23_c02368{bottom:415.227067pt;}
.y22_c02368{bottom:441.627067pt;}
.y21_c02368{bottom:469.227067pt;}
.y20_c02368{bottom:486.507067pt;}
.y1f_c02368{bottom:499.547827pt;}
.y1e_c02368{bottom:516.427747pt;}
.y1d_c02368{bottom:533.227147pt;}
.y1c_c02368{bottom:550.107067pt;}
.y1b_c02368{bottom:576.507067pt;}
.y1a_c02368{bottom:604.107067pt;}
.y19_c02368{bottom:621.387067pt;}
.y18_c02368{bottom:634.427987pt;}
.y17_c02368{bottom:651.307907pt;}
.y16_c02368{bottom:668.187827pt;}
.y15_c02368{bottom:685.067747pt;}
.y14_c02368{bottom:701.867147pt;}
.y13_c02368{bottom:718.747067pt;}
.y12_c02368{bottom:745.147067pt;}
.y11_c02368{bottom:772.747067pt;}
.y10_c02368{bottom:800.347067pt;}
.yf_c02368{bottom:817.707067pt;}
.ye_c02368{bottom:830.667227pt;}
.yd_c02368{bottom:847.547147pt;}
.yc_c02368{bottom:879.307067pt;}
.yb_c02368{bottom:887.787067pt;}
.ya_c02368{bottom:906.187067pt;}
.y9_c02368{bottom:933.787067pt;}
.y8_c02368{bottom:951.067067pt;}
.y7_c02368{bottom:964.108987pt;}
.y6_c02368{bottom:980.988907pt;}
.y5_c02368{bottom:997.788307pt;}
.y4_c02368{bottom:1014.668227pt;}
.y1_c02368{bottom:1061.787067pt;}
.h7_c02368{height:21.042187pt;}
.h3_c02368{height:39.030469pt;}
.h5_c02368{height:41.770312pt;}
.h2_c02368{height:48.294844pt;}
.h4_c02368{height:57.473437pt;}
.h1_c02368{height:59.017500pt;}
.h6_c02368{height:62.812500pt;}
.h0_c02368{height:1122.666667pt;}
.w1_c02368{width:793.333333pt;}
.w0_c02368{width:793.626667pt;}
.x0_c02368{left:0.000000pt;}
.x3_c02368{left:113.439328pt;}
.x1_c02368{left:115.120000pt;}
.x5_c02368{left:132.400000pt;}
.x4_c02368{left:151.279336pt;}
.x6_c02368{left:170.160256pt;}
.x7_c02368{left:189.040000pt;}
.x2_c02368{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62ef76d06a93f577c4a1b41b.woff2')format("woff");}.ff1_c02369{font-family:ff1_c02369;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02369;src:url('chunks/assets/font_b2d81a11cd0795552940e4d1.woff2')format("woff");}.ff2_c02369{font-family:ff2_c02369;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02369{font-family:ff3_c02369;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_c02369;src:url('chunks/assets/font_636822a143ca57da9f902c78.woff2')format("woff");}.ff4_c02369{font-family:ff4_c02369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02369;src:url('chunks/assets/font_9601403d148f07c487746d22.woff2')format("woff");}.ff5_c02369{font-family:ff5_c02369;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02369;src:url('chunks/assets/font_cdb593455e319c4a87c015d2.woff2')format("woff");}.ff6_c02369{font-family:ff6_c02369;line-height:0.664062;font-style: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);}
.v1_c02369{vertical-align:-78.119400px;}
.v0_c02369{vertical-align:0.000000px;}
.ls1d_c02369{letter-spacing:-0.043200px;}
.ls1b_c02369{letter-spacing:-0.028800px;}
.ls1c_c02369{letter-spacing:-0.021600px;}
.ls1a_c02369{letter-spacing:-0.007200px;}
.ls19_c02369{letter-spacing:0.000000px;}
.lsa_c02369{letter-spacing:0.006588px;}
.ls17_c02369{letter-spacing:0.007200px;}
.lsc_c02369{letter-spacing:0.013176px;}
.ls9_c02369{letter-spacing:0.014400px;}
.lsb_c02369{letter-spacing:0.019764px;}
.ls1_c02369{letter-spacing:0.021600px;}
.ls5_c02369{letter-spacing:0.026352px;}
.ls3_c02369{letter-spacing:0.028800px;}
.ls10_c02369{letter-spacing:0.032940px;}
.ls14_c02369{letter-spacing:0.036000px;}
.ls4_c02369{letter-spacing:0.039528px;}
.ls13_c02369{letter-spacing:0.043200px;}
.ls0_c02369{letter-spacing:0.046116px;}
.ls8_c02369{letter-spacing:0.050400px;}
.lsd_c02369{letter-spacing:0.052704px;}
.ls2_c02369{letter-spacing:0.057600px;}
.ls12_c02369{letter-spacing:0.064800px;}
.lsf_c02369{letter-spacing:0.065880px;}
.lse_c02369{letter-spacing:0.072468px;}
.ls6_c02369{letter-spacing:0.079056px;}
.ls11_c02369{letter-spacing:0.079200px;}
.ls18_c02369{letter-spacing:0.092232px;}
.ls15_c02369{letter-spacing:0.108000px;}
.ls16_c02369{letter-spacing:0.129600px;}
.ls7_c02369{letter-spacing:73.350000px;}
.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;}
}
.ws3c_c02369{word-spacing:-0.259200px;}
.ws12_c02369{word-spacing:-0.230400px;}
.ws0_c02369{word-spacing:-0.158112px;}
.ws13_c02369{word-spacing:-0.043200px;}
.ws8_c02369{word-spacing:-0.028800px;}
.ws3b_c02369{word-spacing:-0.007200px;}
.ws3_c02369{word-spacing:0.000000px;}
.ws36_c02369{word-spacing:0.007200px;}
.ws25_c02369{word-spacing:0.039528px;}
.ws1_c02369{word-spacing:0.046116px;}
.ws2_c02369{word-spacing:0.052704px;}
.ws2b_c02369{word-spacing:0.092232px;}
.ws28_c02369{word-spacing:1.495476px;}
.ws7_c02369{word-spacing:1.598400px;}
.ws6_c02369{word-spacing:1.706400px;}
.ws11_c02369{word-spacing:1.929600px;}
.wsf_c02369{word-spacing:2.109600px;}
.ws10_c02369{word-spacing:2.145600px;}
.ws24_c02369{word-spacing:3.294000px;}
.ws1d_c02369{word-spacing:3.972564px;}
.ws1c_c02369{word-spacing:3.998916px;}
.ws32_c02369{word-spacing:4.190400px;}
.ws33_c02369{word-spacing:4.284000px;}
.ws1b_c02369{word-spacing:4.381020px;}
.ws29_c02369{word-spacing:6.159780px;}
.ws2a_c02369{word-spacing:6.179544px;}
.ws37_c02369{word-spacing:6.710400px;}
.ws38_c02369{word-spacing:6.861600px;}
.ws1e_c02369{word-spacing:7.220448px;}
.ws1f_c02369{word-spacing:7.240212px;}
.ws14_c02369{word-spacing:7.602552px;}
.ws16_c02369{word-spacing:7.642080px;}
.ws15_c02369{word-spacing:7.648668px;}
.ws17_c02369{word-spacing:10.152108px;}
.ws18_c02369{word-spacing:10.165284px;}
.ws26_c02369{word-spacing:10.481508px;}
.ws39_c02369{word-spacing:11.073600px;}
.ws3a_c02369{word-spacing:11.080800px;}
.ws1a_c02369{word-spacing:11.555352px;}
.wsb_c02369{word-spacing:11.581704px;}
.wsc_c02369{word-spacing:11.588292px;}
.ws19_c02369{word-spacing:11.594880px;}
.ws23_c02369{word-spacing:12.616020px;}
.ws22_c02369{word-spacing:12.622608px;}
.ws31_c02369{word-spacing:14.623200px;}
.ws30_c02369{word-spacing:14.659200px;}
.ws2f_c02369{word-spacing:14.724000px;}
.ws27_c02369{word-spacing:15.527916px;}
.ws20_c02369{word-spacing:18.736272px;}
.ws21_c02369{word-spacing:18.782388px;}
.ws34_c02369{word-spacing:23.025600px;}
.ws35_c02369{word-spacing:23.040000px;}
.wsd_c02369{word-spacing:23.769504px;}
.wse_c02369{word-spacing:23.809032px;}
.ws2e_c02369{word-spacing:24.415200px;}
.ws2c_c02369{word-spacing:24.696000px;}
.ws2d_c02369{word-spacing:24.868800px;}
.ws9_c02369{word-spacing:27.412668px;}
.wsa_c02369{word-spacing:27.425844px;}
.ws4_c02369{word-spacing:40.960800px;}
.ws5_c02369{word-spacing:40.975200px;}
._0_c02369{margin-left:-1.126548px;}
._1_c02369{width:1.304424px;}
.fc1_c02369{color:rgb(51,51,51);}
.fc0_c02369{color:rgb(0,0,0);}
.fs2_c02369{font-size:36.000000px;}
.fs3_c02369{font-size:47.880000px;}
.fs0_c02369{font-size:65.880000px;}
.fs1_c02369{font-size:72.000000px;}
.y0_c02369{bottom:0.000000px;}
.y3_c02369{bottom:75.721467px;}
.y2_c02369{bottom:113.880810px;}
.y2b_c02369{bottom:191.460450px;}
.y2a_c02369{bottom:222.510450px;}
.y29_c02369{bottom:253.560450px;}
.y28_c02369{bottom:284.610450px;}
.y27_c02369{bottom:315.660450px;}
.y26_c02369{bottom:346.710450px;}
.y25_c02369{bottom:377.760450px;}
.y24_c02369{bottom:408.810450px;}
.y23_c02369{bottom:439.860450px;}
.y22_c02369{bottom:470.910450px;}
.y21_c02369{bottom:501.960450px;}
.y20_c02369{bottom:533.010450px;}
.y1f_c02369{bottom:564.060450px;}
.y1e_c02369{bottom:584.220450px;}
.y1d_c02369{bottom:599.882880px;}
.y1c_c02369{bottom:618.872790px;}
.y1b_c02369{bottom:637.862700px;}
.y1a_c02369{bottom:656.852610px;}
.y19_c02369{bottom:675.842520px;}
.y18_c02369{bottom:694.741845px;}
.y17_c02369{bottom:713.731755px;}
.y16_c02369{bottom:732.721665px;}
.y15_c02369{bottom:751.711575px;}
.y14_c02369{bottom:770.701485px;}
.y13_c02369{bottom:789.600810px;}
.y12_c02369{bottom:808.590720px;}
.y11_c02369{bottom:827.580630px;}
.y10_c02369{bottom:846.570540px;}
.yf_c02369{bottom:865.560450px;}
.ye_c02369{bottom:888.060450px;}
.yd_c02369{bottom:910.740600px;}
.yc_c02369{bottom:961.320450px;}
.yb_c02369{bottom:975.900720px;}
.ya_c02369{bottom:994.890630px;}
.y9_c02369{bottom:1013.880540px;}
.y8_c02369{bottom:1032.870450px;}
.y7_c02369{bottom:1055.370450px;}
.y6_c02369{bottom:1078.050450px;}
.y5_c02369{bottom:1109.100450px;}
.y4_c02369{bottom:1140.150450px;}
.y1_c02369{bottom:1194.510450px;}
.h8_c02369{height:31.795313px;}
.h5_c02369{height:35.332031px;}
.h3_c02369{height:43.909277px;}
.h7_c02369{height:46.991602px;}
.h2_c02369{height:54.331699px;}
.h6_c02369{height:64.657617px;}
.h1_c02369{height:66.394687px;}
.h4_c02369{height:70.664062px;}
.h0_c02369{height:1263.000000px;}
.w1_c02369{width:892.500000px;}
.w0_c02369{width:892.830000px;}
.x0_c02369{left:0.000000px;}
.x3_c02369{left:127.619244px;}
.x1_c02369{left:129.510000px;}
.x4_c02369{left:148.950000px;}
.x5_c02369{left:170.190000px;}
.x2_c02369{left:438.119919px;}
@media print{
.v1_c02369{vertical-align:-69.439467pt;}
.v0_c02369{vertical-align:0.000000pt;}
.ls1d_c02369{letter-spacing:-0.038400pt;}
.ls1b_c02369{letter-spacing:-0.025600pt;}
.ls1c_c02369{letter-spacing:-0.019200pt;}
.ls1a_c02369{letter-spacing:-0.006400pt;}
.ls19_c02369{letter-spacing:0.000000pt;}
.lsa_c02369{letter-spacing:0.005856pt;}
.ls17_c02369{letter-spacing:0.006400pt;}
.lsc_c02369{letter-spacing:0.011712pt;}
.ls9_c02369{letter-spacing:0.012800pt;}
.lsb_c02369{letter-spacing:0.017568pt;}
.ls1_c02369{letter-spacing:0.019200pt;}
.ls5_c02369{letter-spacing:0.023424pt;}
.ls3_c02369{letter-spacing:0.025600pt;}
.ls10_c02369{letter-spacing:0.029280pt;}
.ls14_c02369{letter-spacing:0.032000pt;}
.ls4_c02369{letter-spacing:0.035136pt;}
.ls13_c02369{letter-spacing:0.038400pt;}
.ls0_c02369{letter-spacing:0.040992pt;}
.ls8_c02369{letter-spacing:0.044800pt;}
.lsd_c02369{letter-spacing:0.046848pt;}
.ls2_c02369{letter-spacing:0.051200pt;}
.ls12_c02369{letter-spacing:0.057600pt;}
.lsf_c02369{letter-spacing:0.058560pt;}
.lse_c02369{letter-spacing:0.064416pt;}
.ls6_c02369{letter-spacing:0.070272pt;}
.ls11_c02369{letter-spacing:0.070400pt;}
.ls18_c02369{letter-spacing:0.081984pt;}
.ls15_c02369{letter-spacing:0.096000pt;}
.ls16_c02369{letter-spacing:0.115200pt;}
.ls7_c02369{letter-spacing:65.200000pt;}
.ws3c_c02369{word-spacing:-0.230400pt;}
.ws12_c02369{word-spacing:-0.204800pt;}
.ws0_c02369{word-spacing:-0.140544pt;}
.ws13_c02369{word-spacing:-0.038400pt;}
.ws8_c02369{word-spacing:-0.025600pt;}
.ws3b_c02369{word-spacing:-0.006400pt;}
.ws3_c02369{word-spacing:0.000000pt;}
.ws36_c02369{word-spacing:0.006400pt;}
.ws25_c02369{word-spacing:0.035136pt;}
.ws1_c02369{word-spacing:0.040992pt;}
.ws2_c02369{word-spacing:0.046848pt;}
.ws2b_c02369{word-spacing:0.081984pt;}
.ws28_c02369{word-spacing:1.329312pt;}
.ws7_c02369{word-spacing:1.420800pt;}
.ws6_c02369{word-spacing:1.516800pt;}
.ws11_c02369{word-spacing:1.715200pt;}
.wsf_c02369{word-spacing:1.875200pt;}
.ws10_c02369{word-spacing:1.907200pt;}
.ws24_c02369{word-spacing:2.928000pt;}
.ws1d_c02369{word-spacing:3.531168pt;}
.ws1c_c02369{word-spacing:3.554592pt;}
.ws32_c02369{word-spacing:3.724800pt;}
.ws33_c02369{word-spacing:3.808000pt;}
.ws1b_c02369{word-spacing:3.894240pt;}
.ws29_c02369{word-spacing:5.475360pt;}
.ws2a_c02369{word-spacing:5.492928pt;}
.ws37_c02369{word-spacing:5.964800pt;}
.ws38_c02369{word-spacing:6.099200pt;}
.ws1e_c02369{word-spacing:6.418176pt;}
.ws1f_c02369{word-spacing:6.435744pt;}
.ws14_c02369{word-spacing:6.757824pt;}
.ws16_c02369{word-spacing:6.792960pt;}
.ws15_c02369{word-spacing:6.798816pt;}
.ws17_c02369{word-spacing:9.024096pt;}
.ws18_c02369{word-spacing:9.035808pt;}
.ws26_c02369{word-spacing:9.316896pt;}
.ws39_c02369{word-spacing:9.843200pt;}
.ws3a_c02369{word-spacing:9.849600pt;}
.ws1a_c02369{word-spacing:10.271424pt;}
.wsb_c02369{word-spacing:10.294848pt;}
.wsc_c02369{word-spacing:10.300704pt;}
.ws19_c02369{word-spacing:10.306560pt;}
.ws23_c02369{word-spacing:11.214240pt;}
.ws22_c02369{word-spacing:11.220096pt;}
.ws31_c02369{word-spacing:12.998400pt;}
.ws30_c02369{word-spacing:13.030400pt;}
.ws2f_c02369{word-spacing:13.088000pt;}
.ws27_c02369{word-spacing:13.802592pt;}
.ws20_c02369{word-spacing:16.654464pt;}
.ws21_c02369{word-spacing:16.695456pt;}
.ws34_c02369{word-spacing:20.467200pt;}
.ws35_c02369{word-spacing:20.480000pt;}
.wsd_c02369{word-spacing:21.128448pt;}
.wse_c02369{word-spacing:21.163584pt;}
.ws2e_c02369{word-spacing:21.702400pt;}
.ws2c_c02369{word-spacing:21.952000pt;}
.ws2d_c02369{word-spacing:22.105600pt;}
.ws9_c02369{word-spacing:24.366816pt;}
.wsa_c02369{word-spacing:24.378528pt;}
.ws4_c02369{word-spacing:36.409600pt;}
.ws5_c02369{word-spacing:36.422400pt;}
._0_c02369{margin-left:-1.001376pt;}
._1_c02369{width:1.159488pt;}
.fs2_c02369{font-size:32.000000pt;}
.fs3_c02369{font-size:42.560000pt;}
.fs0_c02369{font-size:58.560000pt;}
.fs1_c02369{font-size:64.000000pt;}
.y0_c02369{bottom:0.000000pt;}
.y3_c02369{bottom:67.307971pt;}
.y2_c02369{bottom:101.227387pt;}
.y2b_c02369{bottom:170.187067pt;}
.y2a_c02369{bottom:197.787067pt;}
.y29_c02369{bottom:225.387067pt;}
.y28_c02369{bottom:252.987067pt;}
.y27_c02369{bottom:280.587067pt;}
.y26_c02369{bottom:308.187067pt;}
.y25_c02369{bottom:335.787067pt;}
.y24_c02369{bottom:363.387067pt;}
.y23_c02369{bottom:390.987067pt;}
.y22_c02369{bottom:418.587067pt;}
.y21_c02369{bottom:446.187067pt;}
.y20_c02369{bottom:473.787067pt;}
.y1f_c02369{bottom:501.387067pt;}
.y1e_c02369{bottom:519.307067pt;}
.y1d_c02369{bottom:533.229227pt;}
.y1c_c02369{bottom:550.109147pt;}
.y1b_c02369{bottom:566.989067pt;}
.y1a_c02369{bottom:583.868987pt;}
.y19_c02369{bottom:600.748907pt;}
.y18_c02369{bottom:617.548307pt;}
.y17_c02369{bottom:634.428227pt;}
.y16_c02369{bottom:651.308147pt;}
.y15_c02369{bottom:668.188067pt;}
.y14_c02369{bottom:685.067987pt;}
.y13_c02369{bottom:701.867387pt;}
.y12_c02369{bottom:718.747307pt;}
.y11_c02369{bottom:735.627227pt;}
.y10_c02369{bottom:752.507147pt;}
.yf_c02369{bottom:769.387067pt;}
.ye_c02369{bottom:789.387067pt;}
.yd_c02369{bottom:809.547200pt;}
.yc_c02369{bottom:854.507067pt;}
.yb_c02369{bottom:867.467307pt;}
.ya_c02369{bottom:884.347227pt;}
.y9_c02369{bottom:901.227147pt;}
.y8_c02369{bottom:918.107067pt;}
.y7_c02369{bottom:938.107067pt;}
.y6_c02369{bottom:958.267067pt;}
.y5_c02369{bottom:985.867067pt;}
.y4_c02369{bottom:1013.467067pt;}
.y1_c02369{bottom:1061.787067pt;}
.h8_c02369{height:28.262500pt;}
.h5_c02369{height:31.406250pt;}
.h3_c02369{height:39.030469pt;}
.h7_c02369{height:41.770312pt;}
.h2_c02369{height:48.294844pt;}
.h6_c02369{height:57.473437pt;}
.h1_c02369{height:59.017500pt;}
.h4_c02369{height:62.812500pt;}
.h0_c02369{height:1122.666667pt;}
.w1_c02369{width:793.333333pt;}
.w0_c02369{width:793.626667pt;}
.x0_c02369{left:0.000000pt;}
.x3_c02369{left:113.439328pt;}
.x1_c02369{left:115.120000pt;}
.x4_c02369{left:132.400000pt;}
.x5_c02369{left:151.280000pt;}
.x2_c02369{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02afb246b3e70b8494d0b855.woff2')format("woff");}.ff1_c02370{font-family:ff1_c02370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02370;src:url('chunks/assets/font_ee224a26dfebfe23cf8fbb13.woff2')format("woff");}.ff2_c02370{font-family:ff2_c02370;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02370{font-family:ff3_c02370;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_c02370;src:url('chunks/assets/font_da12c503904a9a83302aa06e.woff2')format("woff");}.ff4_c02370{font-family:ff4_c02370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02370;src:url('chunks/assets/font_b3414f059bb61d870cca605c.woff2')format("woff");}.ff5_c02370{font-family:ff5_c02370;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_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);}
.v1_c02370{vertical-align:-78.120000px;}
.v0_c02370{vertical-align:0.000000px;}
.ls19_c02370{letter-spacing:-0.021600px;}
.ls18_c02370{letter-spacing:-0.014400px;}
.ls17_c02370{letter-spacing:-0.007200px;}
.ls16_c02370{letter-spacing:0.000000px;}
.ls12_c02370{letter-spacing:0.007200px;}
.lsf_c02370{letter-spacing:0.013176px;}
.ls4_c02370{letter-spacing:0.014400px;}
.lsd_c02370{letter-spacing:0.019764px;}
.ls11_c02370{letter-spacing:0.021600px;}
.lse_c02370{letter-spacing:0.026352px;}
.ls3_c02370{letter-spacing:0.028800px;}
.ls14_c02370{letter-spacing:0.036000px;}
.ls9_c02370{letter-spacing:0.039528px;}
.ls5_c02370{letter-spacing:0.043200px;}
.ls0_c02370{letter-spacing:0.046116px;}
.ls1_c02370{letter-spacing:0.050400px;}
.ls8_c02370{letter-spacing:0.052704px;}
.lsc_c02370{letter-spacing:0.059292px;}
.ls6_c02370{letter-spacing:0.064800px;}
.ls2_c02370{letter-spacing:0.072000px;}
.lsb_c02370{letter-spacing:0.072468px;}
.lsa_c02370{letter-spacing:0.079056px;}
.ls7_c02370{letter-spacing:0.086400px;}
.ls15_c02370{letter-spacing:0.092232px;}
.ls13_c02370{letter-spacing:0.158400px;}
.ls10_c02370{letter-spacing:73.350000px;}
.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;}
}
.wsb_c02370{word-spacing:-0.302400px;}
.wsa_c02370{word-spacing:-0.158400px;}
.ws0_c02370{word-spacing:-0.158112px;}
.wsc_c02370{word-spacing:-0.100800px;}
.ws7_c02370{word-spacing:-0.086400px;}
.ws26_c02370{word-spacing:-0.072000px;}
.ws6_c02370{word-spacing:-0.028800px;}
.ws3_c02370{word-spacing:0.000000px;}
.ws1_c02370{word-spacing:0.046116px;}
.ws2_c02370{word-spacing:0.052704px;}
.ws15_c02370{word-spacing:0.388692px;}
.ws35_c02370{word-spacing:1.533600px;}
.ws33_c02370{word-spacing:1.663200px;}
.ws3a_c02370{word-spacing:1.749600px;}
.ws37_c02370{word-spacing:1.764000px;}
.ws3c_c02370{word-spacing:1.771200px;}
.ws3b_c02370{word-spacing:1.792800px;}
.ws34_c02370{word-spacing:1.814400px;}
.ws28_c02370{word-spacing:1.870992px;}
.ws27_c02370{word-spacing:1.890756px;}
.ws38_c02370{word-spacing:2.109600px;}
.ws39_c02370{word-spacing:2.145600px;}
.ws36_c02370{word-spacing:2.160000px;}
.ws8_c02370{word-spacing:2.505600px;}
.ws9_c02370{word-spacing:2.577600px;}
.ws12_c02370{word-spacing:3.287412px;}
.ws2d_c02370{word-spacing:4.690656px;}
.ws2c_c02370{word-spacing:4.697244px;}
.wsf_c02370{word-spacing:5.133600px;}
.wsd_c02370{word-spacing:5.349600px;}
.ws10_c02370{word-spacing:5.378400px;}
.wse_c02370{word-spacing:5.385600px;}
.ws2a_c02370{word-spacing:6.541884px;}
.ws13_c02370{word-spacing:8.650044px;}
.ws14_c02370{word-spacing:8.656632px;}
.ws1b_c02370{word-spacing:10.158696px;}
.ws11_c02370{word-spacing:10.474920px;}
.ws22_c02370{word-spacing:11.145600px;}
.ws23_c02370{word-spacing:11.160000px;}
.ws16_c02370{word-spacing:11.206188px;}
.ws17_c02370{word-spacing:11.232540px;}
.ws3d_c02370{word-spacing:11.714400px;}
.ws3f_c02370{word-spacing:11.757600px;}
.ws3e_c02370{word-spacing:11.901600px;}
.ws21_c02370{word-spacing:12.132000px;}
.ws20_c02370{word-spacing:12.153600px;}
.ws1c_c02370{word-spacing:12.635784px;}
.ws1d_c02370{word-spacing:12.642372px;}
.ws1e_c02370{word-spacing:16.595172px;}
.ws2b_c02370{word-spacing:18.037944px;}
.ws18_c02370{word-spacing:18.769212px;}
.ws4_c02370{word-spacing:19.951200px;}
.ws5_c02370{word-spacing:20.044800px;}
.ws1a_c02370{word-spacing:20.205396px;}
.ws19_c02370{word-spacing:20.225160px;}
.ws30_c02370{word-spacing:23.443200px;}
.ws32_c02370{word-spacing:23.601600px;}
.ws31_c02370{word-spacing:23.680800px;}
.ws24_c02370{word-spacing:23.716800px;}
.ws25_c02370{word-spacing:23.731200px;}
.ws29_c02370{word-spacing:25.600968px;}
.ws1f_c02370{word-spacing:29.793600px;}
.ws2e_c02370{word-spacing:40.960800px;}
.ws2f_c02370{word-spacing:40.975200px;}
._0_c02370{margin-left:-1.126548px;}
._1_c02370{width:1.021140px;}
.fc1_c02370{color:rgb(51,51,51);}
.fc0_c02370{color:rgb(0,0,0);}
.fs3_c02370{font-size:24.120000px;}
.fs2_c02370{font-size:47.880000px;}
.fs0_c02370{font-size:65.880000px;}
.fs1_c02370{font-size:72.000000px;}
.y0_c02370{bottom:0.000000px;}
.y3_c02370{bottom:75.721467px;}
.y2_c02370{bottom:113.880810px;}
.y2a_c02370{bottom:181.110450px;}
.y29_c02370{bottom:212.160450px;}
.y28_c02370{bottom:243.210450px;}
.y27_c02370{bottom:274.260450px;}
.y26_c02370{bottom:305.310450px;}
.y25_c02370{bottom:355.890450px;}
.y24_c02370{bottom:370.471485px;}
.y23_c02370{bottom:389.461395px;}
.y22_c02370{bottom:408.451305px;}
.y21_c02370{bottom:427.441215px;}
.y20_c02370{bottom:446.431125px;}
.y1f_c02370{bottom:465.330450px;}
.y1e_c02370{bottom:485.490450px;}
.y1d_c02370{bottom:505.380450px;}
.y1c_c02370{bottom:536.430450px;}
.y1b_c02370{bottom:567.480450px;}
.y1a_c02370{bottom:598.530450px;}
.y19_c02370{bottom:649.110450px;}
.y18_c02370{bottom:663.692610px;}
.y17_c02370{bottom:682.682520px;}
.y16_c02370{bottom:701.672430px;}
.y15_c02370{bottom:720.662340px;}
.y14_c02370{bottom:739.652250px;}
.y13_c02370{bottom:758.642160px;}
.y12_c02370{bottom:777.541485px;}
.y11_c02370{bottom:796.531395px;}
.y10_c02370{bottom:815.521305px;}
.yf_c02370{bottom:834.511215px;}
.ye_c02370{bottom:853.501125px;}
.yd_c02370{bottom:872.400450px;}
.yc_c02370{bottom:902.010450px;}
.yb_c02370{bottom:933.150450px;}
.ya_c02370{bottom:959.610450px;}
.y9_c02370{bottom:984.900450px;}
.y8_c02370{bottom:1015.950450px;}
.y7_c02370{bottom:1047.000450px;}
.y6_c02370{bottom:1078.050450px;}
.y5_c02370{bottom:1109.100450px;}
.y4_c02370{bottom:1140.150450px;}
.y1_c02370{bottom:1194.510450px;}
.h9_c02370{height:23.672461px;}
.h3_c02370{height:43.909277px;}
.h5_c02370{height:46.991602px;}
.h2_c02370{height:54.331699px;}
.h8_c02370{height:64.657617px;}
.h1_c02370{height:66.394687px;}
.h7_c02370{height:70.628906px;}
.h4_c02370{height:70.664062px;}
.h6_c02370{height:72.562500px;}
.h0_c02370{height:1263.000000px;}
.w1_c02370{width:892.500000px;}
.w0_c02370{width:892.830000px;}
.x0_c02370{left:0.000000px;}
.x3_c02370{left:127.619244px;}
.x1_c02370{left:129.510000px;}
.x4_c02370{left:148.950000px;}
.x5_c02370{left:170.190000px;}
.x6_c02370{left:191.430000px;}
.x2_c02370{left:438.119919px;}
@media print{
.v1_c02370{vertical-align:-69.440000pt;}
.v0_c02370{vertical-align:0.000000pt;}
.ls19_c02370{letter-spacing:-0.019200pt;}
.ls18_c02370{letter-spacing:-0.012800pt;}
.ls17_c02370{letter-spacing:-0.006400pt;}
.ls16_c02370{letter-spacing:0.000000pt;}
.ls12_c02370{letter-spacing:0.006400pt;}
.lsf_c02370{letter-spacing:0.011712pt;}
.ls4_c02370{letter-spacing:0.012800pt;}
.lsd_c02370{letter-spacing:0.017568pt;}
.ls11_c02370{letter-spacing:0.019200pt;}
.lse_c02370{letter-spacing:0.023424pt;}
.ls3_c02370{letter-spacing:0.025600pt;}
.ls14_c02370{letter-spacing:0.032000pt;}
.ls9_c02370{letter-spacing:0.035136pt;}
.ls5_c02370{letter-spacing:0.038400pt;}
.ls0_c02370{letter-spacing:0.040992pt;}
.ls1_c02370{letter-spacing:0.044800pt;}
.ls8_c02370{letter-spacing:0.046848pt;}
.lsc_c02370{letter-spacing:0.052704pt;}
.ls6_c02370{letter-spacing:0.057600pt;}
.ls2_c02370{letter-spacing:0.064000pt;}
.lsb_c02370{letter-spacing:0.064416pt;}
.lsa_c02370{letter-spacing:0.070272pt;}
.ls7_c02370{letter-spacing:0.076800pt;}
.ls15_c02370{letter-spacing:0.081984pt;}
.ls13_c02370{letter-spacing:0.140800pt;}
.ls10_c02370{letter-spacing:65.200000pt;}
.wsb_c02370{word-spacing:-0.268800pt;}
.wsa_c02370{word-spacing:-0.140800pt;}
.ws0_c02370{word-spacing:-0.140544pt;}
.wsc_c02370{word-spacing:-0.089600pt;}
.ws7_c02370{word-spacing:-0.076800pt;}
.ws26_c02370{word-spacing:-0.064000pt;}
.ws6_c02370{word-spacing:-0.025600pt;}
.ws3_c02370{word-spacing:0.000000pt;}
.ws1_c02370{word-spacing:0.040992pt;}
.ws2_c02370{word-spacing:0.046848pt;}
.ws15_c02370{word-spacing:0.345504pt;}
.ws35_c02370{word-spacing:1.363200pt;}
.ws33_c02370{word-spacing:1.478400pt;}
.ws3a_c02370{word-spacing:1.555200pt;}
.ws37_c02370{word-spacing:1.568000pt;}
.ws3c_c02370{word-spacing:1.574400pt;}
.ws3b_c02370{word-spacing:1.593600pt;}
.ws34_c02370{word-spacing:1.612800pt;}
.ws28_c02370{word-spacing:1.663104pt;}
.ws27_c02370{word-spacing:1.680672pt;}
.ws38_c02370{word-spacing:1.875200pt;}
.ws39_c02370{word-spacing:1.907200pt;}
.ws36_c02370{word-spacing:1.920000pt;}
.ws8_c02370{word-spacing:2.227200pt;}
.ws9_c02370{word-spacing:2.291200pt;}
.ws12_c02370{word-spacing:2.922144pt;}
.ws2d_c02370{word-spacing:4.169472pt;}
.ws2c_c02370{word-spacing:4.175328pt;}
.wsf_c02370{word-spacing:4.563200pt;}
.wsd_c02370{word-spacing:4.755200pt;}
.ws10_c02370{word-spacing:4.780800pt;}
.wse_c02370{word-spacing:4.787200pt;}
.ws2a_c02370{word-spacing:5.815008pt;}
.ws13_c02370{word-spacing:7.688928pt;}
.ws14_c02370{word-spacing:7.694784pt;}
.ws1b_c02370{word-spacing:9.029952pt;}
.ws11_c02370{word-spacing:9.311040pt;}
.ws22_c02370{word-spacing:9.907200pt;}
.ws23_c02370{word-spacing:9.920000pt;}
.ws16_c02370{word-spacing:9.961056pt;}
.ws17_c02370{word-spacing:9.984480pt;}
.ws3d_c02370{word-spacing:10.412800pt;}
.ws3f_c02370{word-spacing:10.451200pt;}
.ws3e_c02370{word-spacing:10.579200pt;}
.ws21_c02370{word-spacing:10.784000pt;}
.ws20_c02370{word-spacing:10.803200pt;}
.ws1c_c02370{word-spacing:11.231808pt;}
.ws1d_c02370{word-spacing:11.237664pt;}
.ws1e_c02370{word-spacing:14.751264pt;}
.ws2b_c02370{word-spacing:16.033728pt;}
.ws18_c02370{word-spacing:16.683744pt;}
.ws4_c02370{word-spacing:17.734400pt;}
.ws5_c02370{word-spacing:17.817600pt;}
.ws1a_c02370{word-spacing:17.960352pt;}
.ws19_c02370{word-spacing:17.977920pt;}
.ws30_c02370{word-spacing:20.838400pt;}
.ws32_c02370{word-spacing:20.979200pt;}
.ws31_c02370{word-spacing:21.049600pt;}
.ws24_c02370{word-spacing:21.081600pt;}
.ws25_c02370{word-spacing:21.094400pt;}
.ws29_c02370{word-spacing:22.756416pt;}
.ws1f_c02370{word-spacing:26.483200pt;}
.ws2e_c02370{word-spacing:36.409600pt;}
.ws2f_c02370{word-spacing:36.422400pt;}
._0_c02370{margin-left:-1.001376pt;}
._1_c02370{width:0.907680pt;}
.fs3_c02370{font-size:21.440000pt;}
.fs2_c02370{font-size:42.560000pt;}
.fs0_c02370{font-size:58.560000pt;}
.fs1_c02370{font-size:64.000000pt;}
.y0_c02370{bottom:0.000000pt;}
.y3_c02370{bottom:67.307971pt;}
.y2_c02370{bottom:101.227387pt;}
.y2a_c02370{bottom:160.987067pt;}
.y29_c02370{bottom:188.587067pt;}
.y28_c02370{bottom:216.187067pt;}
.y27_c02370{bottom:243.787067pt;}
.y26_c02370{bottom:271.387067pt;}
.y25_c02370{bottom:316.347067pt;}
.y24_c02370{bottom:329.307987pt;}
.y23_c02370{bottom:346.187907pt;}
.y22_c02370{bottom:363.067827pt;}
.y21_c02370{bottom:379.947747pt;}
.y20_c02370{bottom:396.827667pt;}
.y1f_c02370{bottom:413.627067pt;}
.y1e_c02370{bottom:431.547067pt;}
.y1d_c02370{bottom:449.227067pt;}
.y1c_c02370{bottom:476.827067pt;}
.y1b_c02370{bottom:504.427067pt;}
.y1a_c02370{bottom:532.027067pt;}
.y19_c02370{bottom:576.987067pt;}
.y18_c02370{bottom:589.948987pt;}
.y17_c02370{bottom:606.828907pt;}
.y16_c02370{bottom:623.708827pt;}
.y15_c02370{bottom:640.588747pt;}
.y14_c02370{bottom:657.468667pt;}
.y13_c02370{bottom:674.348587pt;}
.y12_c02370{bottom:691.147987pt;}
.y11_c02370{bottom:708.027907pt;}
.y10_c02370{bottom:724.907827pt;}
.yf_c02370{bottom:741.787747pt;}
.ye_c02370{bottom:758.667667pt;}
.yd_c02370{bottom:775.467067pt;}
.yc_c02370{bottom:801.787067pt;}
.yb_c02370{bottom:829.467067pt;}
.ya_c02370{bottom:852.987067pt;}
.y9_c02370{bottom:875.467067pt;}
.y8_c02370{bottom:903.067067pt;}
.y7_c02370{bottom:930.667067pt;}
.y6_c02370{bottom:958.267067pt;}
.y5_c02370{bottom:985.867067pt;}
.y4_c02370{bottom:1013.467067pt;}
.y1_c02370{bottom:1061.787067pt;}
.h9_c02370{height:21.042187pt;}
.h3_c02370{height:39.030469pt;}
.h5_c02370{height:41.770312pt;}
.h2_c02370{height:48.294844pt;}
.h8_c02370{height:57.473437pt;}
.h1_c02370{height:59.017500pt;}
.h7_c02370{height:62.781250pt;}
.h4_c02370{height:62.812500pt;}
.h6_c02370{height:64.500000pt;}
.h0_c02370{height:1122.666667pt;}
.w1_c02370{width:793.333333pt;}
.w0_c02370{width:793.626667pt;}
.x0_c02370{left:0.000000pt;}
.x3_c02370{left:113.439328pt;}
.x1_c02370{left:115.120000pt;}
.x4_c02370{left:132.400000pt;}
.x5_c02370{left:151.280000pt;}
.x6_c02370{left:170.160000pt;}
.x2_c02370{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f40838e5596bd4f5f2143bda.woff2')format("woff");}.ff1_c02371{font-family:ff1_c02371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02371;src:url('chunks/assets/font_d1a87ce11a7fd56b54cf3987.woff2')format("woff");}.ff2_c02371{font-family:ff2_c02371;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02371{font-family:ff3_c02371;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_c02371;src:url('chunks/assets/font_f4098f4a7815703ca3cc4157.woff2')format("woff");}.ff4_c02371{font-family:ff4_c02371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02371;src:url('chunks/assets/font_13f85c8a5f09d845a93790c5.woff2')format("woff");}.ff5_c02371{font-family:ff5_c02371;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_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);}
.v1_c02371{vertical-align:-78.120000px;}
.v0_c02371{vertical-align:0.000000px;}
.ls1b_c02371{letter-spacing:-0.216000px;}
.ls19_c02371{letter-spacing:-0.021600px;}
.ls1a_c02371{letter-spacing:-0.014400px;}
.ls18_c02371{letter-spacing:-0.007200px;}
.ls16_c02371{letter-spacing:0.000000px;}
.ls14_c02371{letter-spacing:0.006588px;}
.ls1_c02371{letter-spacing:0.007200px;}
.ls6_c02371{letter-spacing:0.013176px;}
.lsf_c02371{letter-spacing:0.014400px;}
.ls12_c02371{letter-spacing:0.019764px;}
.lse_c02371{letter-spacing:0.021600px;}
.ls8_c02371{letter-spacing:0.026352px;}
.lsc_c02371{letter-spacing:0.028800px;}
.ls5_c02371{letter-spacing:0.032940px;}
.ls10_c02371{letter-spacing:0.036000px;}
.lsb_c02371{letter-spacing:0.039528px;}
.ls2_c02371{letter-spacing:0.043200px;}
.ls0_c02371{letter-spacing:0.046116px;}
.ls4_c02371{letter-spacing:0.052704px;}
.ls3_c02371{letter-spacing:0.057600px;}
.ls9_c02371{letter-spacing:0.059292px;}
.lsd_c02371{letter-spacing:0.064800px;}
.ls17_c02371{letter-spacing:0.065880px;}
.ls7_c02371{letter-spacing:0.072468px;}
.lsa_c02371{letter-spacing:0.079056px;}
.ls11_c02371{letter-spacing:0.079200px;}
.ls15_c02371{letter-spacing:0.092232px;}
.ls13_c02371{letter-spacing:73.350000px;}
.sc__c02371{text-shadow:none;}
.sc0_c02371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02371{-webkit-text-stroke:0px transparent;}
.sc0_c02371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02371{word-spacing:-18.057600px;}
.ws28_c02371{word-spacing:-0.259200px;}
.ws2e_c02371{word-spacing:-0.194400px;}
.ws2c_c02371{word-spacing:-0.180000px;}
.ws29_c02371{word-spacing:-0.165600px;}
.ws0_c02371{word-spacing:-0.158112px;}
.ws1d_c02371{word-spacing:-0.151200px;}
.ws23_c02371{word-spacing:-0.144000px;}
.ws22_c02371{word-spacing:-0.086400px;}
.ws1e_c02371{word-spacing:-0.057600px;}
.ws37_c02371{word-spacing:-0.050400px;}
.ws2d_c02371{word-spacing:-0.036000px;}
.ws2a_c02371{word-spacing:-0.028800px;}
.ws21_c02371{word-spacing:-0.021600px;}
.ws2b_c02371{word-spacing:-0.014400px;}
.ws36_c02371{word-spacing:-0.007200px;}
.ws4_c02371{word-spacing:0.000000px;}
.ws27_c02371{word-spacing:0.007200px;}
.ws1a_c02371{word-spacing:0.026352px;}
.ws3b_c02371{word-spacing:0.032940px;}
.ws19_c02371{word-spacing:0.039528px;}
.ws2_c02371{word-spacing:0.046116px;}
.ws3_c02371{word-spacing:0.052704px;}
.ws10_c02371{word-spacing:0.072468px;}
.ws31_c02371{word-spacing:0.092232px;}
.wsc_c02371{word-spacing:1.462536px;}
.wsb_c02371{word-spacing:1.482300px;}
.ws26_c02371{word-spacing:1.656000px;}
.ws24_c02371{word-spacing:1.792800px;}
.ws25_c02371{word-spacing:1.814400px;}
.wsf_c02371{word-spacing:2.536380px;}
.wse_c02371{word-spacing:2.595672px;}
.ws2f_c02371{word-spacing:4.018680px;}
.ws33_c02371{word-spacing:4.255200px;}
.ws34_c02371{word-spacing:4.284000px;}
.ws35_c02371{word-spacing:4.312800px;}
.ws7_c02371{word-spacing:4.717008px;}
.ws8_c02371{word-spacing:4.723596px;}
.ws39_c02371{word-spacing:5.843556px;}
.ws30_c02371{word-spacing:6.192720px;}
.ws16_c02371{word-spacing:7.951716px;}
.ws3a_c02371{word-spacing:11.930868px;}
.wsa_c02371{word-spacing:12.616020px;}
.ws9_c02371{word-spacing:12.655548px;}
.ws1f_c02371{word-spacing:12.967200px;}
.ws20_c02371{word-spacing:12.981600px;}
.ws32_c02371{word-spacing:16.502400px;}
.ws14_c02371{word-spacing:16.957512px;}
.ws15_c02371{word-spacing:16.977276px;}
.ws11_c02371{word-spacing:18.420048px;}
.ws5_c02371{word-spacing:19.720800px;}
.ws6_c02371{word-spacing:19.756800px;}
.ws17_c02371{word-spacing:20.528208px;}
.ws18_c02371{word-spacing:20.567736px;}
.ws1b_c02371{word-spacing:28.692000px;}
.ws1c_c02371{word-spacing:28.699200px;}
.wsd_c02371{word-spacing:31.378644px;}
.ws38_c02371{word-spacing:31.740984px;}
.ws13_c02371{word-spacing:32.439312px;}
.ws12_c02371{word-spacing:32.465664px;}
._0_c02371{margin-left:-1.126548px;}
._1_c02371{width:1.218780px;}
.fc1_c02371{color:rgb(51,51,51);}
.fc0_c02371{color:rgb(0,0,0);}
.fs2_c02371{font-size:24.120000px;}
.fs3_c02371{font-size:47.880000px;}
.fs0_c02371{font-size:65.880000px;}
.fs1_c02371{font-size:72.000000px;}
.y0_c02371{bottom:0.000000px;}
.y3_c02371{bottom:75.721467px;}
.y2_c02371{bottom:113.880810px;}
.y2e_c02371{bottom:148.890162px;}
.y2d_c02371{bottom:162.660450px;}
.y2c_c02371{bottom:177.331455px;}
.y2b_c02371{bottom:196.321365px;}
.y2a_c02371{bottom:215.311275px;}
.y29_c02371{bottom:234.210600px;}
.y28_c02371{bottom:254.370450px;}
.y27_c02371{bottom:274.260450px;}
.y26_c02371{bottom:305.310450px;}
.y25_c02371{bottom:355.890450px;}
.y24_c02371{bottom:370.470720px;}
.y23_c02371{bottom:389.460630px;}
.y22_c02371{bottom:408.450540px;}
.y21_c02371{bottom:427.440450px;}
.y20_c02371{bottom:457.140450px;}
.y1f_c02371{bottom:488.010450px;}
.y1e_c02371{bottom:514.650450px;}
.y1d_c02371{bottom:539.940450px;}
.y1c_c02371{bottom:570.990450px;}
.y1b_c02371{bottom:602.040450px;}
.y1a_c02371{bottom:633.090450px;}
.y19_c02371{bottom:664.140450px;}
.y18_c02371{bottom:695.190450px;}
.y17_c02371{bottom:726.240450px;}
.y16_c02371{bottom:757.290450px;}
.y15_c02371{bottom:788.250450px;}
.y14_c02371{bottom:819.300450px;}
.y13_c02371{bottom:845.760450px;}
.y12_c02371{bottom:860.342610px;}
.y11_c02371{bottom:879.332520px;}
.y10_c02371{bottom:898.322430px;}
.yf_c02371{bottom:917.312340px;}
.ye_c02371{bottom:936.302250px;}
.yd_c02371{bottom:955.201575px;}
.yc_c02371{bottom:974.191485px;}
.yb_c02371{bottom:993.181395px;}
.ya_c02371{bottom:1012.171305px;}
.y9_c02371{bottom:1031.161215px;}
.y8_c02371{bottom:1050.060540px;}
.y7_c02371{bottom:1069.050450px;}
.y6_c02371{bottom:1089.210450px;}
.y5_c02371{bottom:1109.100450px;}
.y4_c02371{bottom:1140.150450px;}
.y1_c02371{bottom:1194.510450px;}
.h5_c02371{height:23.672461px;}
.h3_c02371{height:43.909277px;}
.h7_c02371{height:46.991602px;}
.h2_c02371{height:54.331699px;}
.h6_c02371{height:64.657617px;}
.h1_c02371{height:66.394687px;}
.h4_c02371{height:70.664062px;}
.h8_c02371{height:72.562500px;}
.h0_c02371{height:1263.000000px;}
.w1_c02371{width:892.500000px;}
.w0_c02371{width:892.830000px;}
.x0_c02371{left:0.000000px;}
.x3_c02371{left:127.619244px;}
.x1_c02371{left:129.510000px;}
.x6_c02371{left:148.950000px;}
.x5_c02371{left:170.190288px;}
.x4_c02371{left:191.430000px;}
.x2_c02371{left:438.119919px;}
@media print{
.v1_c02371{vertical-align:-69.440000pt;}
.v0_c02371{vertical-align:0.000000pt;}
.ls1b_c02371{letter-spacing:-0.192000pt;}
.ls19_c02371{letter-spacing:-0.019200pt;}
.ls1a_c02371{letter-spacing:-0.012800pt;}
.ls18_c02371{letter-spacing:-0.006400pt;}
.ls16_c02371{letter-spacing:0.000000pt;}
.ls14_c02371{letter-spacing:0.005856pt;}
.ls1_c02371{letter-spacing:0.006400pt;}
.ls6_c02371{letter-spacing:0.011712pt;}
.lsf_c02371{letter-spacing:0.012800pt;}
.ls12_c02371{letter-spacing:0.017568pt;}
.lse_c02371{letter-spacing:0.019200pt;}
.ls8_c02371{letter-spacing:0.023424pt;}
.lsc_c02371{letter-spacing:0.025600pt;}
.ls5_c02371{letter-spacing:0.029280pt;}
.ls10_c02371{letter-spacing:0.032000pt;}
.lsb_c02371{letter-spacing:0.035136pt;}
.ls2_c02371{letter-spacing:0.038400pt;}
.ls0_c02371{letter-spacing:0.040992pt;}
.ls4_c02371{letter-spacing:0.046848pt;}
.ls3_c02371{letter-spacing:0.051200pt;}
.ls9_c02371{letter-spacing:0.052704pt;}
.lsd_c02371{letter-spacing:0.057600pt;}
.ls17_c02371{letter-spacing:0.058560pt;}
.ls7_c02371{letter-spacing:0.064416pt;}
.lsa_c02371{letter-spacing:0.070272pt;}
.ls11_c02371{letter-spacing:0.070400pt;}
.ls15_c02371{letter-spacing:0.081984pt;}
.ls13_c02371{letter-spacing:65.200000pt;}
.ws1_c02371{word-spacing:-16.051200pt;}
.ws28_c02371{word-spacing:-0.230400pt;}
.ws2e_c02371{word-spacing:-0.172800pt;}
.ws2c_c02371{word-spacing:-0.160000pt;}
.ws29_c02371{word-spacing:-0.147200pt;}
.ws0_c02371{word-spacing:-0.140544pt;}
.ws1d_c02371{word-spacing:-0.134400pt;}
.ws23_c02371{word-spacing:-0.128000pt;}
.ws22_c02371{word-spacing:-0.076800pt;}
.ws1e_c02371{word-spacing:-0.051200pt;}
.ws37_c02371{word-spacing:-0.044800pt;}
.ws2d_c02371{word-spacing:-0.032000pt;}
.ws2a_c02371{word-spacing:-0.025600pt;}
.ws21_c02371{word-spacing:-0.019200pt;}
.ws2b_c02371{word-spacing:-0.012800pt;}
.ws36_c02371{word-spacing:-0.006400pt;}
.ws4_c02371{word-spacing:0.000000pt;}
.ws27_c02371{word-spacing:0.006400pt;}
.ws1a_c02371{word-spacing:0.023424pt;}
.ws3b_c02371{word-spacing:0.029280pt;}
.ws19_c02371{word-spacing:0.035136pt;}
.ws2_c02371{word-spacing:0.040992pt;}
.ws3_c02371{word-spacing:0.046848pt;}
.ws10_c02371{word-spacing:0.064416pt;}
.ws31_c02371{word-spacing:0.081984pt;}
.wsc_c02371{word-spacing:1.300032pt;}
.wsb_c02371{word-spacing:1.317600pt;}
.ws26_c02371{word-spacing:1.472000pt;}
.ws24_c02371{word-spacing:1.593600pt;}
.ws25_c02371{word-spacing:1.612800pt;}
.wsf_c02371{word-spacing:2.254560pt;}
.wse_c02371{word-spacing:2.307264pt;}
.ws2f_c02371{word-spacing:3.572160pt;}
.ws33_c02371{word-spacing:3.782400pt;}
.ws34_c02371{word-spacing:3.808000pt;}
.ws35_c02371{word-spacing:3.833600pt;}
.ws7_c02371{word-spacing:4.192896pt;}
.ws8_c02371{word-spacing:4.198752pt;}
.ws39_c02371{word-spacing:5.194272pt;}
.ws30_c02371{word-spacing:5.504640pt;}
.ws16_c02371{word-spacing:7.068192pt;}
.ws3a_c02371{word-spacing:10.605216pt;}
.wsa_c02371{word-spacing:11.214240pt;}
.ws9_c02371{word-spacing:11.249376pt;}
.ws1f_c02371{word-spacing:11.526400pt;}
.ws20_c02371{word-spacing:11.539200pt;}
.ws32_c02371{word-spacing:14.668800pt;}
.ws14_c02371{word-spacing:15.073344pt;}
.ws15_c02371{word-spacing:15.090912pt;}
.ws11_c02371{word-spacing:16.373376pt;}
.ws5_c02371{word-spacing:17.529600pt;}
.ws6_c02371{word-spacing:17.561600pt;}
.ws17_c02371{word-spacing:18.247296pt;}
.ws18_c02371{word-spacing:18.282432pt;}
.ws1b_c02371{word-spacing:25.504000pt;}
.ws1c_c02371{word-spacing:25.510400pt;}
.wsd_c02371{word-spacing:27.892128pt;}
.ws38_c02371{word-spacing:28.214208pt;}
.ws13_c02371{word-spacing:28.834944pt;}
.ws12_c02371{word-spacing:28.858368pt;}
._0_c02371{margin-left:-1.001376pt;}
._1_c02371{width:1.083360pt;}
.fs2_c02371{font-size:21.440000pt;}
.fs3_c02371{font-size:42.560000pt;}
.fs0_c02371{font-size:58.560000pt;}
.fs1_c02371{font-size:64.000000pt;}
.y0_c02371{bottom:0.000000pt;}
.y3_c02371{bottom:67.307971pt;}
.y2_c02371{bottom:101.227387pt;}
.y2e_c02371{bottom:132.346811pt;}
.y2d_c02371{bottom:144.587067pt;}
.y2c_c02371{bottom:157.627960pt;}
.y2b_c02371{bottom:174.507880pt;}
.y2a_c02371{bottom:191.387800pt;}
.y29_c02371{bottom:208.187200pt;}
.y28_c02371{bottom:226.107067pt;}
.y27_c02371{bottom:243.787067pt;}
.y26_c02371{bottom:271.387067pt;}
.y25_c02371{bottom:316.347067pt;}
.y24_c02371{bottom:329.307307pt;}
.y23_c02371{bottom:346.187227pt;}
.y22_c02371{bottom:363.067147pt;}
.y21_c02371{bottom:379.947067pt;}
.y20_c02371{bottom:406.347067pt;}
.y1f_c02371{bottom:433.787067pt;}
.y1e_c02371{bottom:457.467067pt;}
.y1d_c02371{bottom:479.947067pt;}
.y1c_c02371{bottom:507.547067pt;}
.y1b_c02371{bottom:535.147067pt;}
.y1a_c02371{bottom:562.747067pt;}
.y19_c02371{bottom:590.347067pt;}
.y18_c02371{bottom:617.947067pt;}
.y17_c02371{bottom:645.547067pt;}
.y16_c02371{bottom:673.147067pt;}
.y15_c02371{bottom:700.667067pt;}
.y14_c02371{bottom:728.267067pt;}
.y13_c02371{bottom:751.787067pt;}
.y12_c02371{bottom:764.748987pt;}
.y11_c02371{bottom:781.628907pt;}
.y10_c02371{bottom:798.508827pt;}
.yf_c02371{bottom:815.388747pt;}
.ye_c02371{bottom:832.268667pt;}
.yd_c02371{bottom:849.068067pt;}
.yc_c02371{bottom:865.947987pt;}
.yb_c02371{bottom:882.827907pt;}
.ya_c02371{bottom:899.707827pt;}
.y9_c02371{bottom:916.587747pt;}
.y8_c02371{bottom:933.387147pt;}
.y7_c02371{bottom:950.267067pt;}
.y6_c02371{bottom:968.187067pt;}
.y5_c02371{bottom:985.867067pt;}
.y4_c02371{bottom:1013.467067pt;}
.y1_c02371{bottom:1061.787067pt;}
.h5_c02371{height:21.042187pt;}
.h3_c02371{height:39.030469pt;}
.h7_c02371{height:41.770312pt;}
.h2_c02371{height:48.294844pt;}
.h6_c02371{height:57.473437pt;}
.h1_c02371{height:59.017500pt;}
.h4_c02371{height:62.812500pt;}
.h8_c02371{height:64.500000pt;}
.h0_c02371{height:1122.666667pt;}
.w1_c02371{width:793.333333pt;}
.w0_c02371{width:793.626667pt;}
.x0_c02371{left:0.000000pt;}
.x3_c02371{left:113.439328pt;}
.x1_c02371{left:115.120000pt;}
.x6_c02371{left:132.400000pt;}
.x5_c02371{left:151.280256pt;}
.x4_c02371{left:170.160000pt;}
.x2_c02371{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0833b1ce3943fe833455e69e.woff2')format("woff");}.ff1_c02372{font-family:ff1_c02372;line-height:1.311035;font-style:normal;font-weight:normal;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_489fd8fd03b5d447708d5783.woff2')format("woff");}.ff2_c02372{font-family:ff2_c02372;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02372{font-family:ff3_c02372;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_c02372;src:url('chunks/assets/font_0a84adbd6a827196f613cf8b.woff2')format("woff");}.ff4_c02372{font-family:ff4_c02372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02372;src:url('chunks/assets/font_f5f063c6e6b4b3fd2426e369.woff2')format("woff");}.ff5_c02372{font-family:ff5_c02372;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_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);}
.v1_c02372{vertical-align:-66.600000px;}
.v0_c02372{vertical-align:0.000000px;}
.ls18_c02372{letter-spacing:-0.216000px;}
.ls19_c02372{letter-spacing:-0.201600px;}
.ls1b_c02372{letter-spacing:-0.050400px;}
.ls1a_c02372{letter-spacing:-0.014400px;}
.ls17_c02372{letter-spacing:0.000000px;}
.lse_c02372{letter-spacing:0.013176px;}
.ls2_c02372{letter-spacing:0.014400px;}
.lsc_c02372{letter-spacing:0.019764px;}
.ls12_c02372{letter-spacing:0.021600px;}
.lsd_c02372{letter-spacing:0.026352px;}
.ls13_c02372{letter-spacing:0.028800px;}
.ls6_c02372{letter-spacing:0.032940px;}
.ls1_c02372{letter-spacing:0.036000px;}
.ls5_c02372{letter-spacing:0.039528px;}
.ls10_c02372{letter-spacing:0.043200px;}
.ls0_c02372{letter-spacing:0.046116px;}
.ls9_c02372{letter-spacing:0.052704px;}
.ls11_c02372{letter-spacing:0.057600px;}
.lsb_c02372{letter-spacing:0.059292px;}
.ls3_c02372{letter-spacing:0.064800px;}
.ls7_c02372{letter-spacing:0.065880px;}
.ls15_c02372{letter-spacing:0.072000px;}
.lsa_c02372{letter-spacing:0.079056px;}
.ls14_c02372{letter-spacing:0.079200px;}
.ls8_c02372{letter-spacing:0.085644px;}
.ls16_c02372{letter-spacing:0.092232px;}
.lsf_c02372{letter-spacing:0.105408px;}
.ls4_c02372{letter-spacing:249.210000px;}
.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;}
}
.ws42_c02372{word-spacing:-0.259200px;}
.ws6_c02372{word-spacing:-0.194400px;}
.ws37_c02372{word-spacing:-0.172800px;}
.ws0_c02372{word-spacing:-0.158112px;}
.ws7_c02372{word-spacing:-0.151200px;}
.ws41_c02372{word-spacing:-0.144000px;}
.ws44_c02372{word-spacing:-0.122400px;}
.ws3d_c02372{word-spacing:-0.093600px;}
.ws46_c02372{word-spacing:-0.072000px;}
.ws36_c02372{word-spacing:-0.064800px;}
.ws45_c02372{word-spacing:-0.057600px;}
.ws43_c02372{word-spacing:-0.043200px;}
.ws4_c02372{word-spacing:-0.036000px;}
.ws5_c02372{word-spacing:-0.014400px;}
.ws3_c02372{word-spacing:0.000000px;}
.ws34_c02372{word-spacing:0.039528px;}
.ws1_c02372{word-spacing:0.046116px;}
.ws2_c02372{word-spacing:0.052704px;}
.ws23_c02372{word-spacing:0.072468px;}
.ws1e_c02372{word-spacing:1.139724px;}
.ws1d_c02372{word-spacing:1.152900px;}
.ws3f_c02372{word-spacing:2.311200px;}
.ws3e_c02372{word-spacing:2.433600px;}
.ws40_c02372{word-spacing:2.448000px;}
.ws28_c02372{word-spacing:3.241296px;}
.ws27_c02372{word-spacing:3.267648px;}
.ws26_c02372{word-spacing:3.294000px;}
.ws25_c02372{word-spacing:3.313764px;}
.ws39_c02372{word-spacing:3.556800px;}
.ws38_c02372{word-spacing:3.578400px;}
.ws1a_c02372{word-spacing:4.005504px;}
.ws14_c02372{word-spacing:4.012092px;}
.ws19_c02372{word-spacing:4.018680px;}
.ws32_c02372{word-spacing:4.348080px;}
.ws33_c02372{word-spacing:4.367844px;}
.ws1c_c02372{word-spacing:4.374432px;}
.ws11_c02372{word-spacing:4.710420px;}
.ws1b_c02372{word-spacing:4.723596px;}
.ws13_c02372{word-spacing:4.743360px;}
.ws12_c02372{word-spacing:4.749948px;}
.wsb_c02372{word-spacing:6.482592px;}
.wsa_c02372{word-spacing:6.502356px;}
.ws17_c02372{word-spacing:7.266564px;}
.ws18_c02372{word-spacing:7.273152px;}
.ws8_c02372{word-spacing:9.051912px;}
.ws9_c02372{word-spacing:9.058500px;}
.ws3b_c02372{word-spacing:9.158400px;}
.ws3a_c02372{word-spacing:9.331200px;}
.ws3c_c02372{word-spacing:9.374400px;}
.ws2f_c02372{word-spacing:12.662136px;}
.ws30_c02372{word-spacing:12.675312px;}
.ws1f_c02372{word-spacing:13.716216px;}
.ws20_c02372{word-spacing:13.755744px;}
.wsf_c02372{word-spacing:14.052204px;}
.ws10_c02372{word-spacing:14.065380px;}
.ws21_c02372{word-spacing:16.588584px;}
.ws22_c02372{word-spacing:16.621524px;}
.ws24_c02372{word-spacing:16.634700px;}
.ws31_c02372{word-spacing:16.950924px;}
.ws2e_c02372{word-spacing:18.057708px;}
.wsc_c02372{word-spacing:18.762624px;}
.ws2c_c02372{word-spacing:23.387400px;}
.ws2d_c02372{word-spacing:23.393988px;}
.ws35_c02372{word-spacing:28.692000px;}
.ws29_c02372{word-spacing:31.385232px;}
.ws16_c02372{word-spacing:32.445900px;}
.ws15_c02372{word-spacing:32.472252px;}
.wse_c02372{word-spacing:36.741276px;}
.wsd_c02372{word-spacing:41.076180px;}
.ws2a_c02372{word-spacing:43.625736px;}
.ws2b_c02372{word-spacing:43.632324px;}
._0_c02372{margin-left:-1.126548px;}
._1_c02372{width:1.324188px;}
.fc0_c02372{color:rgb(0,0,0);}
.fs2_c02372{font-size:24.120000px;}
.fs3_c02372{font-size:47.880000px;}
.fs0_c02372{font-size:65.880000px;}
.fs1_c02372{font-size:72.000000px;}
.y0_c02372{bottom:0.000000px;}
.y3_c02372{bottom:75.721467px;}
.y2_c02372{bottom:113.880810px;}
.y31_c02372{bottom:162.210600px;}
.y30_c02372{bottom:193.260600px;}
.y2f_c02372{bottom:224.310600px;}
.y2e_c02372{bottom:255.270600px;}
.y2d_c02372{bottom:286.320600px;}
.y2c_c02372{bottom:317.370600px;}
.y2b_c02372{bottom:348.420600px;}
.y2a_c02372{bottom:379.470600px;}
.y29_c02372{bottom:410.520600px;}
.y28_c02372{bottom:441.570600px;}
.y27_c02372{bottom:472.620600px;}
.y26_c02372{bottom:492.150450px;}
.y25_c02372{bottom:506.736255px;}
.y24_c02372{bottom:525.726165px;}
.y23_c02372{bottom:544.716075px;}
.y22_c02372{bottom:563.705985px;}
.y21_c02372{bottom:582.695895px;}
.y20_c02372{bottom:601.685805px;}
.y1f_c02372{bottom:620.585130px;}
.y1e_c02372{bottom:639.575040px;}
.y1d_c02372{bottom:658.564950px;}
.y1c_c02372{bottom:677.554860px;}
.y1b_c02372{bottom:696.544770px;}
.y1a_c02372{bottom:715.444095px;}
.y19_c02372{bottom:734.434005px;}
.y18_c02372{bottom:753.423915px;}
.y17_c02372{bottom:772.413825px;}
.y16_c02372{bottom:791.403735px;}
.y15_c02372{bottom:810.303060px;}
.y14_c02372{bottom:829.292970px;}
.y13_c02372{bottom:848.282880px;}
.y12_c02372{bottom:867.272790px;}
.y11_c02372{bottom:886.262700px;}
.y10_c02372{bottom:905.252610px;}
.yf_c02372{bottom:924.151935px;}
.ye_c02372{bottom:943.141845px;}
.yd_c02372{bottom:962.131755px;}
.yc_c02372{bottom:981.121665px;}
.yb_c02372{bottom:1000.111575px;}
.ya_c02372{bottom:1019.010900px;}
.y9_c02372{bottom:1038.000810px;}
.y8_c02372{bottom:1056.990720px;}
.y7_c02372{bottom:1075.980630px;}
.y6_c02372{bottom:1094.970540px;}
.y5_c02372{bottom:1130.610450px;}
.y4_c02372{bottom:1140.150450px;}
.y1_c02372{bottom:1194.510450px;}
.h5_c02372{height:23.672461px;}
.h3_c02372{height:43.909277px;}
.h7_c02372{height:46.991602px;}
.h2_c02372{height:54.331699px;}
.h6_c02372{height:64.657617px;}
.h1_c02372{height:66.394687px;}
.h8_c02372{height:70.664062px;}
.h4_c02372{height:72.562500px;}
.h0_c02372{height:1263.000000px;}
.w1_c02372{width:892.500000px;}
.w0_c02372{width:892.830000px;}
.x0_c02372{left:0.000000px;}
.x3_c02372{left:127.619244px;}
.x1_c02372{left:129.510000px;}
.x4_c02372{left:148.950000px;}
.x5_c02372{left:170.190288px;}
.x6_c02372{left:191.430000px;}
.x2_c02372{left:438.119919px;}
@media print{
.v1_c02372{vertical-align:-59.200000pt;}
.v0_c02372{vertical-align:0.000000pt;}
.ls18_c02372{letter-spacing:-0.192000pt;}
.ls19_c02372{letter-spacing:-0.179200pt;}
.ls1b_c02372{letter-spacing:-0.044800pt;}
.ls1a_c02372{letter-spacing:-0.012800pt;}
.ls17_c02372{letter-spacing:0.000000pt;}
.lse_c02372{letter-spacing:0.011712pt;}
.ls2_c02372{letter-spacing:0.012800pt;}
.lsc_c02372{letter-spacing:0.017568pt;}
.ls12_c02372{letter-spacing:0.019200pt;}
.lsd_c02372{letter-spacing:0.023424pt;}
.ls13_c02372{letter-spacing:0.025600pt;}
.ls6_c02372{letter-spacing:0.029280pt;}
.ls1_c02372{letter-spacing:0.032000pt;}
.ls5_c02372{letter-spacing:0.035136pt;}
.ls10_c02372{letter-spacing:0.038400pt;}
.ls0_c02372{letter-spacing:0.040992pt;}
.ls9_c02372{letter-spacing:0.046848pt;}
.ls11_c02372{letter-spacing:0.051200pt;}
.lsb_c02372{letter-spacing:0.052704pt;}
.ls3_c02372{letter-spacing:0.057600pt;}
.ls7_c02372{letter-spacing:0.058560pt;}
.ls15_c02372{letter-spacing:0.064000pt;}
.lsa_c02372{letter-spacing:0.070272pt;}
.ls14_c02372{letter-spacing:0.070400pt;}
.ls8_c02372{letter-spacing:0.076128pt;}
.ls16_c02372{letter-spacing:0.081984pt;}
.lsf_c02372{letter-spacing:0.093696pt;}
.ls4_c02372{letter-spacing:221.520000pt;}
.ws42_c02372{word-spacing:-0.230400pt;}
.ws6_c02372{word-spacing:-0.172800pt;}
.ws37_c02372{word-spacing:-0.153600pt;}
.ws0_c02372{word-spacing:-0.140544pt;}
.ws7_c02372{word-spacing:-0.134400pt;}
.ws41_c02372{word-spacing:-0.128000pt;}
.ws44_c02372{word-spacing:-0.108800pt;}
.ws3d_c02372{word-spacing:-0.083200pt;}
.ws46_c02372{word-spacing:-0.064000pt;}
.ws36_c02372{word-spacing:-0.057600pt;}
.ws45_c02372{word-spacing:-0.051200pt;}
.ws43_c02372{word-spacing:-0.038400pt;}
.ws4_c02372{word-spacing:-0.032000pt;}
.ws5_c02372{word-spacing:-0.012800pt;}
.ws3_c02372{word-spacing:0.000000pt;}
.ws34_c02372{word-spacing:0.035136pt;}
.ws1_c02372{word-spacing:0.040992pt;}
.ws2_c02372{word-spacing:0.046848pt;}
.ws23_c02372{word-spacing:0.064416pt;}
.ws1e_c02372{word-spacing:1.013088pt;}
.ws1d_c02372{word-spacing:1.024800pt;}
.ws3f_c02372{word-spacing:2.054400pt;}
.ws3e_c02372{word-spacing:2.163200pt;}
.ws40_c02372{word-spacing:2.176000pt;}
.ws28_c02372{word-spacing:2.881152pt;}
.ws27_c02372{word-spacing:2.904576pt;}
.ws26_c02372{word-spacing:2.928000pt;}
.ws25_c02372{word-spacing:2.945568pt;}
.ws39_c02372{word-spacing:3.161600pt;}
.ws38_c02372{word-spacing:3.180800pt;}
.ws1a_c02372{word-spacing:3.560448pt;}
.ws14_c02372{word-spacing:3.566304pt;}
.ws19_c02372{word-spacing:3.572160pt;}
.ws32_c02372{word-spacing:3.864960pt;}
.ws33_c02372{word-spacing:3.882528pt;}
.ws1c_c02372{word-spacing:3.888384pt;}
.ws11_c02372{word-spacing:4.187040pt;}
.ws1b_c02372{word-spacing:4.198752pt;}
.ws13_c02372{word-spacing:4.216320pt;}
.ws12_c02372{word-spacing:4.222176pt;}
.wsb_c02372{word-spacing:5.762304pt;}
.wsa_c02372{word-spacing:5.779872pt;}
.ws17_c02372{word-spacing:6.459168pt;}
.ws18_c02372{word-spacing:6.465024pt;}
.ws8_c02372{word-spacing:8.046144pt;}
.ws9_c02372{word-spacing:8.052000pt;}
.ws3b_c02372{word-spacing:8.140800pt;}
.ws3a_c02372{word-spacing:8.294400pt;}
.ws3c_c02372{word-spacing:8.332800pt;}
.ws2f_c02372{word-spacing:11.255232pt;}
.ws30_c02372{word-spacing:11.266944pt;}
.ws1f_c02372{word-spacing:12.192192pt;}
.ws20_c02372{word-spacing:12.227328pt;}
.wsf_c02372{word-spacing:12.490848pt;}
.ws10_c02372{word-spacing:12.502560pt;}
.ws21_c02372{word-spacing:14.745408pt;}
.ws22_c02372{word-spacing:14.774688pt;}
.ws24_c02372{word-spacing:14.786400pt;}
.ws31_c02372{word-spacing:15.067488pt;}
.ws2e_c02372{word-spacing:16.051296pt;}
.wsc_c02372{word-spacing:16.677888pt;}
.ws2c_c02372{word-spacing:20.788800pt;}
.ws2d_c02372{word-spacing:20.794656pt;}
.ws35_c02372{word-spacing:25.504000pt;}
.ws29_c02372{word-spacing:27.897984pt;}
.ws16_c02372{word-spacing:28.840800pt;}
.ws15_c02372{word-spacing:28.864224pt;}
.wse_c02372{word-spacing:32.658912pt;}
.wsd_c02372{word-spacing:36.512160pt;}
.ws2a_c02372{word-spacing:38.778432pt;}
.ws2b_c02372{word-spacing:38.784288pt;}
._0_c02372{margin-left:-1.001376pt;}
._1_c02372{width:1.177056pt;}
.fs2_c02372{font-size:21.440000pt;}
.fs3_c02372{font-size:42.560000pt;}
.fs0_c02372{font-size:58.560000pt;}
.fs1_c02372{font-size:64.000000pt;}
.y0_c02372{bottom:0.000000pt;}
.y3_c02372{bottom:67.307971pt;}
.y2_c02372{bottom:101.227387pt;}
.y31_c02372{bottom:144.187200pt;}
.y30_c02372{bottom:171.787200pt;}
.y2f_c02372{bottom:199.387200pt;}
.y2e_c02372{bottom:226.907200pt;}
.y2d_c02372{bottom:254.507200pt;}
.y2c_c02372{bottom:282.107200pt;}
.y2b_c02372{bottom:309.707200pt;}
.y2a_c02372{bottom:337.307200pt;}
.y29_c02372{bottom:364.907200pt;}
.y28_c02372{bottom:392.507200pt;}
.y27_c02372{bottom:420.107200pt;}
.y26_c02372{bottom:437.467067pt;}
.y25_c02372{bottom:450.432227pt;}
.y24_c02372{bottom:467.312147pt;}
.y23_c02372{bottom:484.192067pt;}
.y22_c02372{bottom:501.071987pt;}
.y21_c02372{bottom:517.951907pt;}
.y20_c02372{bottom:534.831827pt;}
.y1f_c02372{bottom:551.631227pt;}
.y1e_c02372{bottom:568.511147pt;}
.y1d_c02372{bottom:585.391067pt;}
.y1c_c02372{bottom:602.270987pt;}
.y1b_c02372{bottom:619.150907pt;}
.y1a_c02372{bottom:635.950307pt;}
.y19_c02372{bottom:652.830227pt;}
.y18_c02372{bottom:669.710147pt;}
.y17_c02372{bottom:686.590067pt;}
.y16_c02372{bottom:703.469987pt;}
.y15_c02372{bottom:720.269387pt;}
.y14_c02372{bottom:737.149307pt;}
.y13_c02372{bottom:754.029227pt;}
.y12_c02372{bottom:770.909147pt;}
.y11_c02372{bottom:787.789067pt;}
.y10_c02372{bottom:804.668987pt;}
.yf_c02372{bottom:821.468387pt;}
.ye_c02372{bottom:838.348307pt;}
.yd_c02372{bottom:855.228227pt;}
.yc_c02372{bottom:872.108147pt;}
.yb_c02372{bottom:888.988067pt;}
.ya_c02372{bottom:905.787467pt;}
.y9_c02372{bottom:922.667387pt;}
.y8_c02372{bottom:939.547307pt;}
.y7_c02372{bottom:956.427227pt;}
.y6_c02372{bottom:973.307147pt;}
.y5_c02372{bottom:1004.987067pt;}
.y4_c02372{bottom:1013.467067pt;}
.y1_c02372{bottom:1061.787067pt;}
.h5_c02372{height:21.042187pt;}
.h3_c02372{height:39.030469pt;}
.h7_c02372{height:41.770312pt;}
.h2_c02372{height:48.294844pt;}
.h6_c02372{height:57.473437pt;}
.h1_c02372{height:59.017500pt;}
.h8_c02372{height:62.812500pt;}
.h4_c02372{height:64.500000pt;}
.h0_c02372{height:1122.666667pt;}
.w1_c02372{width:793.333333pt;}
.w0_c02372{width:793.626667pt;}
.x0_c02372{left:0.000000pt;}
.x3_c02372{left:113.439328pt;}
.x1_c02372{left:115.120000pt;}
.x4_c02372{left:132.400000pt;}
.x5_c02372{left:151.280256pt;}
.x6_c02372{left:170.160000pt;}
.x2_c02372{left:389.439928pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f8164bf1767a2b0d40675b3.woff2')format("woff");}.ff1_c02373{font-family:ff1_c02373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02373;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02373{font-family:ff2_c02373;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02373;src:url('chunks/assets/font_aaa8639b1b87bd1801313717.woff2')format("woff");}.ff3_c02373{font-family:ff3_c02373;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02373;src:url('chunks/assets/font_bfb523b8c6443733a8247f81.woff2')format("woff");}.ff4_c02373{font-family:ff4_c02373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c02373{letter-spacing:-0.028800px;}
.ls10_c02373{letter-spacing:-0.021600px;}
.lsc_c02373{letter-spacing:-0.014400px;}
.lsf_c02373{letter-spacing:-0.007200px;}
.lsa_c02373{letter-spacing:0.000000px;}
.ls4_c02373{letter-spacing:0.007200px;}
.ls8_c02373{letter-spacing:0.014400px;}
.ls5_c02373{letter-spacing:0.021600px;}
.ls0_c02373{letter-spacing:0.026352px;}
.ls3_c02373{letter-spacing:0.028800px;}
.lse_c02373{letter-spacing:0.032940px;}
.ls2_c02373{letter-spacing:0.036000px;}
.ls1_c02373{letter-spacing:0.052704px;}
.ls7_c02373{letter-spacing:0.057600px;}
.ls6_c02373{letter-spacing:0.072000px;}
.ls9_c02373{letter-spacing:0.072468px;}
.lsb_c02373{letter-spacing:0.092232px;}
.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;}
}
.ws1_c02373{word-spacing:-18.036000px;}
.ws0_c02373{word-spacing:-0.158112px;}
.ws6_c02373{word-spacing:-0.122400px;}
.wsc_c02373{word-spacing:-0.093600px;}
.wsd_c02373{word-spacing:-0.072000px;}
.ws16_c02373{word-spacing:-0.064800px;}
.ws1c_c02373{word-spacing:-0.014400px;}
.ws1a_c02373{word-spacing:-0.007200px;}
.ws4_c02373{word-spacing:0.000000px;}
.ws19_c02373{word-spacing:0.007200px;}
.ws5_c02373{word-spacing:0.014400px;}
.ws18_c02373{word-spacing:0.019764px;}
.ws1b_c02373{word-spacing:0.021600px;}
.ws3_c02373{word-spacing:0.039528px;}
.ws17_c02373{word-spacing:0.059292px;}
.ws2_c02373{word-spacing:0.065880px;}
.wse_c02373{word-spacing:2.095200px;}
.wsb_c02373{word-spacing:7.401600px;}
.wsa_c02373{word-spacing:7.466400px;}
.ws14_c02373{word-spacing:13.500000px;}
.ws8_c02373{word-spacing:13.579200px;}
.ws13_c02373{word-spacing:13.608000px;}
.ws15_c02373{word-spacing:13.672800px;}
.ws7_c02373{word-spacing:13.680000px;}
.ws9_c02373{word-spacing:13.708800px;}
.wsf_c02373{word-spacing:16.740000px;}
.ws10_c02373{word-spacing:16.912800px;}
.ws11_c02373{word-spacing:18.273600px;}
.ws12_c02373{word-spacing:18.360000px;}
._0_c02373{margin-left:-1.180800px;}
.fc0_c02373{color:rgb(0,0,0);}
.fs0_c02373{font-size:65.880000px;}
.fs1_c02373{font-size:72.000000px;}
.y0_c02373{bottom:0.000000px;}
.y3_c02373{bottom:75.720882px;}
.y2_c02373{bottom:113.880225px;}
.y2d_c02373{bottom:145.200009px;}
.y2c_c02373{bottom:167.070522px;}
.y2b_c02373{bottom:188.850450px;}
.y2a_c02373{bottom:211.980450px;}
.y29_c02373{bottom:236.550450px;}
.y28_c02373{bottom:261.120450px;}
.y27_c02373{bottom:285.510450px;}
.y26_c02373{bottom:310.170450px;}
.y25_c02373{bottom:334.740450px;}
.y24_c02373{bottom:359.310450px;}
.y23_c02373{bottom:383.880450px;}
.y22_c02373{bottom:408.270600px;}
.y21_c02373{bottom:432.930600px;}
.y20_c02373{bottom:457.500450px;}
.y1f_c02373{bottom:482.070450px;}
.y1e_c02373{bottom:506.460600px;}
.y1d_c02373{bottom:531.210450px;}
.y1c_c02373{bottom:555.780450px;}
.y1b_c02373{bottom:580.260450px;}
.y1a_c02373{bottom:604.830450px;}
.y19_c02373{bottom:629.400450px;}
.y18_c02373{bottom:653.970450px;}
.y17_c02373{bottom:678.540450px;}
.y16_c02373{bottom:702.840450px;}
.y15_c02373{bottom:726.960450px;}
.y14_c02373{bottom:748.830450px;}
.y13_c02373{bottom:771.420087px;}
.y12_c02373{bottom:793.290600px;}
.y11_c02373{bottom:815.610450px;}
.y10_c02373{bottom:839.460450px;}
.yf_c02373{bottom:863.220450px;}
.ye_c02373{bottom:887.070450px;}
.yd_c02373{bottom:910.830450px;}
.yc_c02373{bottom:934.680450px;}
.yb_c02373{bottom:958.440450px;}
.ya_c02373{bottom:982.290450px;}
.y9_c02373{bottom:1006.050450px;}
.y8_c02373{bottom:1029.900450px;}
.y7_c02373{bottom:1068.690450px;}
.y6_c02373{bottom:1092.270450px;}
.y5_c02373{bottom:1116.120450px;}
.y4_c02373{bottom:1139.880450px;}
.y1_c02373{bottom:1194.600450px;}
.h3_c02373{height:43.909277px;}
.h2_c02373{height:54.331699px;}
.h6_c02373{height:64.657617px;}
.h1_c02373{height:66.394687px;}
.h5_c02373{height:70.664062px;}
.h4_c02373{height:72.562500px;}
.h0_c02373{height:1263.000000px;}
.w1_c02373{width:892.500000px;}
.w0_c02373{width:892.830000px;}
.x0_c02373{left:0.000000px;}
.x1_c02373{left:127.620000px;}
.x4_c02373{left:157.050000px;}
.x5_c02373{left:297.000000px;}
.x6_c02373{left:347.220000px;}
.x7_c02373{left:385.650000px;}
.x3_c02373{left:406.260000px;}
.x2_c02373{left:438.120675px;}
@media print{
.v0_c02373{vertical-align:0.000000pt;}
.lsd_c02373{letter-spacing:-0.025600pt;}
.ls10_c02373{letter-spacing:-0.019200pt;}
.lsc_c02373{letter-spacing:-0.012800pt;}
.lsf_c02373{letter-spacing:-0.006400pt;}
.lsa_c02373{letter-spacing:0.000000pt;}
.ls4_c02373{letter-spacing:0.006400pt;}
.ls8_c02373{letter-spacing:0.012800pt;}
.ls5_c02373{letter-spacing:0.019200pt;}
.ls0_c02373{letter-spacing:0.023424pt;}
.ls3_c02373{letter-spacing:0.025600pt;}
.lse_c02373{letter-spacing:0.029280pt;}
.ls2_c02373{letter-spacing:0.032000pt;}
.ls1_c02373{letter-spacing:0.046848pt;}
.ls7_c02373{letter-spacing:0.051200pt;}
.ls6_c02373{letter-spacing:0.064000pt;}
.ls9_c02373{letter-spacing:0.064416pt;}
.lsb_c02373{letter-spacing:0.081984pt;}
.ws1_c02373{word-spacing:-16.032000pt;}
.ws0_c02373{word-spacing:-0.140544pt;}
.ws6_c02373{word-spacing:-0.108800pt;}
.wsc_c02373{word-spacing:-0.083200pt;}
.wsd_c02373{word-spacing:-0.064000pt;}
.ws16_c02373{word-spacing:-0.057600pt;}
.ws1c_c02373{word-spacing:-0.012800pt;}
.ws1a_c02373{word-spacing:-0.006400pt;}
.ws4_c02373{word-spacing:0.000000pt;}
.ws19_c02373{word-spacing:0.006400pt;}
.ws5_c02373{word-spacing:0.012800pt;}
.ws18_c02373{word-spacing:0.017568pt;}
.ws1b_c02373{word-spacing:0.019200pt;}
.ws3_c02373{word-spacing:0.035136pt;}
.ws17_c02373{word-spacing:0.052704pt;}
.ws2_c02373{word-spacing:0.058560pt;}
.wse_c02373{word-spacing:1.862400pt;}
.wsb_c02373{word-spacing:6.579200pt;}
.wsa_c02373{word-spacing:6.636800pt;}
.ws14_c02373{word-spacing:12.000000pt;}
.ws8_c02373{word-spacing:12.070400pt;}
.ws13_c02373{word-spacing:12.096000pt;}
.ws15_c02373{word-spacing:12.153600pt;}
.ws7_c02373{word-spacing:12.160000pt;}
.ws9_c02373{word-spacing:12.185600pt;}
.wsf_c02373{word-spacing:14.880000pt;}
.ws10_c02373{word-spacing:15.033600pt;}
.ws11_c02373{word-spacing:16.243200pt;}
.ws12_c02373{word-spacing:16.320000pt;}
._0_c02373{margin-left:-1.049600pt;}
.fs0_c02373{font-size:58.560000pt;}
.fs1_c02373{font-size:64.000000pt;}
.y0_c02373{bottom:0.000000pt;}
.y3_c02373{bottom:67.307451pt;}
.y2_c02373{bottom:101.226867pt;}
.y2d_c02373{bottom:129.066675pt;}
.y2c_c02373{bottom:148.507131pt;}
.y2b_c02373{bottom:167.867067pt;}
.y2a_c02373{bottom:188.427067pt;}
.y29_c02373{bottom:210.267067pt;}
.y28_c02373{bottom:232.107067pt;}
.y27_c02373{bottom:253.787067pt;}
.y26_c02373{bottom:275.707067pt;}
.y25_c02373{bottom:297.547067pt;}
.y24_c02373{bottom:319.387067pt;}
.y23_c02373{bottom:341.227067pt;}
.y22_c02373{bottom:362.907200pt;}
.y21_c02373{bottom:384.827200pt;}
.y20_c02373{bottom:406.667067pt;}
.y1f_c02373{bottom:428.507067pt;}
.y1e_c02373{bottom:450.187200pt;}
.y1d_c02373{bottom:472.187067pt;}
.y1c_c02373{bottom:494.027067pt;}
.y1b_c02373{bottom:515.787067pt;}
.y1a_c02373{bottom:537.627067pt;}
.y19_c02373{bottom:559.467067pt;}
.y18_c02373{bottom:581.307067pt;}
.y17_c02373{bottom:603.147067pt;}
.y16_c02373{bottom:624.747067pt;}
.y15_c02373{bottom:646.187067pt;}
.y14_c02373{bottom:665.627067pt;}
.y13_c02373{bottom:685.706744pt;}
.y12_c02373{bottom:705.147200pt;}
.y11_c02373{bottom:724.987067pt;}
.y10_c02373{bottom:746.187067pt;}
.yf_c02373{bottom:767.307067pt;}
.ye_c02373{bottom:788.507067pt;}
.yd_c02373{bottom:809.627067pt;}
.yc_c02373{bottom:830.827067pt;}
.yb_c02373{bottom:851.947067pt;}
.ya_c02373{bottom:873.147067pt;}
.y9_c02373{bottom:894.267067pt;}
.y8_c02373{bottom:915.467067pt;}
.y7_c02373{bottom:949.947067pt;}
.y6_c02373{bottom:970.907067pt;}
.y5_c02373{bottom:992.107067pt;}
.y4_c02373{bottom:1013.227067pt;}
.y1_c02373{bottom:1061.867067pt;}
.h3_c02373{height:39.030469pt;}
.h2_c02373{height:48.294844pt;}
.h6_c02373{height:57.473437pt;}
.h1_c02373{height:59.017500pt;}
.h5_c02373{height:62.812500pt;}
.h4_c02373{height:64.500000pt;}
.h0_c02373{height:1122.666667pt;}
.w1_c02373{width:793.333333pt;}
.w0_c02373{width:793.626667pt;}
.x0_c02373{left:0.000000pt;}
.x1_c02373{left:113.440000pt;}
.x4_c02373{left:139.600000pt;}
.x5_c02373{left:264.000000pt;}
.x6_c02373{left:308.640000pt;}
.x7_c02373{left:342.800000pt;}
.x3_c02373{left:361.120000pt;}
.x2_c02373{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eca454891e4edfe51610c44f.woff2')format("woff");}.ff1_c02374{font-family:ff1_c02374;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02374{font-family:ff2_c02374;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02374;src:url('chunks/assets/font_760ae4549786c5509d6b61cc.woff2')format("woff");}.ff3_c02374{font-family:ff3_c02374;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02374;src:url('chunks/assets/font_0bd229c9ea979dd14721e539.woff2')format("woff");}.ff4_c02374{font-family:ff4_c02374;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02374{vertical-align:0.000000px;}
.ls7_c02374{letter-spacing:-0.057600px;}
.ls9_c02374{letter-spacing:-0.014400px;}
.ls8_c02374{letter-spacing:-0.007200px;}
.ls5_c02374{letter-spacing:0.000000px;}
.ls4_c02374{letter-spacing:0.007200px;}
.ls3_c02374{letter-spacing:0.014400px;}
.ls2_c02374{letter-spacing:0.021600px;}
.ls0_c02374{letter-spacing:0.026352px;}
.ls1_c02374{letter-spacing:0.052704px;}
.ls6_c02374{letter-spacing:0.092232px;}
.sc__c02374{text-shadow:none;}
.sc0_c02374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02374{-webkit-text-stroke:0px transparent;}
.sc0_c02374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02374{word-spacing:-0.158112px;}
.ws4_c02374{word-spacing:-0.136800px;}
.wsa_c02374{word-spacing:-0.021600px;}
.ws8_c02374{word-spacing:-0.014400px;}
.ws7_c02374{word-spacing:-0.007200px;}
.ws3_c02374{word-spacing:0.000000px;}
.ws6_c02374{word-spacing:0.007200px;}
.ws9_c02374{word-spacing:0.014400px;}
.ws2_c02374{word-spacing:0.039528px;}
.ws5_c02374{word-spacing:0.057600px;}
.ws1_c02374{word-spacing:0.065880px;}
.fc0_c02374{color:rgb(0,0,0);}
.fs0_c02374{font-size:65.880000px;}
.fs1_c02374{font-size:72.000000px;}
.y0_c02374{bottom:0.000000px;}
.y3_c02374{bottom:75.720882px;}
.y2_c02374{bottom:113.880225px;}
.y2e_c02374{bottom:154.017507px;}
.y2d_c02374{bottom:175.797435px;}
.y2c_c02374{bottom:197.667948px;}
.y2b_c02374{bottom:219.447876px;}
.y2a_c02374{bottom:241.318389px;}
.y29_c02374{bottom:263.098317px;}
.y28_c02374{bottom:284.968830px;}
.y27_c02374{bottom:306.748758px;}
.y26_c02374{bottom:328.619271px;}
.y25_c02374{bottom:350.399199px;}
.y24_c02374{bottom:372.179127px;}
.y23_c02374{bottom:394.049640px;}
.y22_c02374{bottom:415.829568px;}
.y21_c02374{bottom:437.700081px;}
.y20_c02374{bottom:459.480009px;}
.y1f_c02374{bottom:481.350522px;}
.y1e_c02374{bottom:503.130450px;}
.y1d_c02374{bottom:525.540600px;}
.y1c_c02374{bottom:550.020450px;}
.y1b_c02374{bottom:574.590450px;}
.y1a_c02374{bottom:598.980450px;}
.y19_c02374{bottom:623.730450px;}
.y18_c02374{bottom:648.300450px;}
.y17_c02374{bottom:672.600450px;}
.y16_c02374{bottom:697.350450px;}
.y15_c02374{bottom:721.740450px;}
.y14_c02374{bottom:746.490450px;}
.y13_c02374{bottom:771.060450px;}
.y12_c02374{bottom:795.360600px;}
.y11_c02374{bottom:820.110600px;}
.y10_c02374{bottom:844.680600px;}
.yf_c02374{bottom:869.070450px;}
.ye_c02374{bottom:893.820450px;}
.yd_c02374{bottom:918.390450px;}
.yc_c02374{bottom:942.870450px;}
.yb_c02374{bottom:967.440450px;}
.ya_c02374{bottom:991.830450px;}
.y9_c02374{bottom:1016.580450px;}
.y8_c02374{bottom:1041.150450px;}
.y7_c02374{bottom:1065.630450px;}
.y6_c02374{bottom:1090.200450px;}
.y5_c02374{bottom:1114.590450px;}
.y4_c02374{bottom:1139.160450px;}
.y1_c02374{bottom:1194.600450px;}
.h3_c02374{height:43.909277px;}
.h2_c02374{height:54.331699px;}
.h6_c02374{height:64.657617px;}
.h1_c02374{height:66.394687px;}
.h5_c02374{height:70.664062px;}
.h4_c02374{height:72.562500px;}
.h0_c02374{height:1263.000000px;}
.w1_c02374{width:892.500000px;}
.w0_c02374{width:892.830000px;}
.x0_c02374{left:0.000000px;}
.x1_c02374{left:127.620000px;}
.x3_c02374{left:300.960000px;}
.x2_c02374{left:438.120675px;}
@media print{
.v0_c02374{vertical-align:0.000000pt;}
.ls7_c02374{letter-spacing:-0.051200pt;}
.ls9_c02374{letter-spacing:-0.012800pt;}
.ls8_c02374{letter-spacing:-0.006400pt;}
.ls5_c02374{letter-spacing:0.000000pt;}
.ls4_c02374{letter-spacing:0.006400pt;}
.ls3_c02374{letter-spacing:0.012800pt;}
.ls2_c02374{letter-spacing:0.019200pt;}
.ls0_c02374{letter-spacing:0.023424pt;}
.ls1_c02374{letter-spacing:0.046848pt;}
.ls6_c02374{letter-spacing:0.081984pt;}
.ws0_c02374{word-spacing:-0.140544pt;}
.ws4_c02374{word-spacing:-0.121600pt;}
.wsa_c02374{word-spacing:-0.019200pt;}
.ws8_c02374{word-spacing:-0.012800pt;}
.ws7_c02374{word-spacing:-0.006400pt;}
.ws3_c02374{word-spacing:0.000000pt;}
.ws6_c02374{word-spacing:0.006400pt;}
.ws9_c02374{word-spacing:0.012800pt;}
.ws2_c02374{word-spacing:0.035136pt;}
.ws5_c02374{word-spacing:0.051200pt;}
.ws1_c02374{word-spacing:0.058560pt;}
.fs0_c02374{font-size:58.560000pt;}
.fs1_c02374{font-size:64.000000pt;}
.y0_c02374{bottom:0.000000pt;}
.y3_c02374{bottom:67.307451pt;}
.y2_c02374{bottom:101.226867pt;}
.y2e_c02374{bottom:136.904451pt;}
.y2d_c02374{bottom:156.264387pt;}
.y2c_c02374{bottom:175.704843pt;}
.y2b_c02374{bottom:195.064779pt;}
.y2a_c02374{bottom:214.505235pt;}
.y29_c02374{bottom:233.865171pt;}
.y28_c02374{bottom:253.305627pt;}
.y27_c02374{bottom:272.665563pt;}
.y26_c02374{bottom:292.106019pt;}
.y25_c02374{bottom:311.465955pt;}
.y24_c02374{bottom:330.825891pt;}
.y23_c02374{bottom:350.266347pt;}
.y22_c02374{bottom:369.626283pt;}
.y21_c02374{bottom:389.066739pt;}
.y20_c02374{bottom:408.426675pt;}
.y1f_c02374{bottom:427.867131pt;}
.y1e_c02374{bottom:447.227067pt;}
.y1d_c02374{bottom:467.147200pt;}
.y1c_c02374{bottom:488.907067pt;}
.y1b_c02374{bottom:510.747067pt;}
.y1a_c02374{bottom:532.427067pt;}
.y19_c02374{bottom:554.427067pt;}
.y18_c02374{bottom:576.267067pt;}
.y17_c02374{bottom:597.867067pt;}
.y16_c02374{bottom:619.867067pt;}
.y15_c02374{bottom:641.547067pt;}
.y14_c02374{bottom:663.547067pt;}
.y13_c02374{bottom:685.387067pt;}
.y12_c02374{bottom:706.987200pt;}
.y11_c02374{bottom:728.987200pt;}
.y10_c02374{bottom:750.827200pt;}
.yf_c02374{bottom:772.507067pt;}
.ye_c02374{bottom:794.507067pt;}
.yd_c02374{bottom:816.347067pt;}
.yc_c02374{bottom:838.107067pt;}
.yb_c02374{bottom:859.947067pt;}
.ya_c02374{bottom:881.627067pt;}
.y9_c02374{bottom:903.627067pt;}
.y8_c02374{bottom:925.467067pt;}
.y7_c02374{bottom:947.227067pt;}
.y6_c02374{bottom:969.067067pt;}
.y5_c02374{bottom:990.747067pt;}
.y4_c02374{bottom:1012.587067pt;}
.y1_c02374{bottom:1061.867067pt;}
.h3_c02374{height:39.030469pt;}
.h2_c02374{height:48.294844pt;}
.h6_c02374{height:57.473437pt;}
.h1_c02374{height:59.017500pt;}
.h5_c02374{height:62.812500pt;}
.h4_c02374{height:64.500000pt;}
.h0_c02374{height:1122.666667pt;}
.w1_c02374{width:793.333333pt;}
.w0_c02374{width:793.626667pt;}
.x0_c02374{left:0.000000pt;}
.x1_c02374{left:113.440000pt;}
.x3_c02374{left:267.520000pt;}
.x2_c02374{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ad7044fb378ec95fb24007c.woff2')format("woff");}.ff1_c02375{font-family:ff1_c02375;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02375{font-family:ff2_c02375;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02375;src:url('chunks/assets/font_0ed9eff85f68f543f127661a.woff2')format("woff");}.ff3_c02375{font-family:ff3_c02375;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02375;src:url('chunks/assets/font_548c3b85707348622d90ef48.woff2')format("woff");}.ff4_c02375{font-family:ff4_c02375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02375{vertical-align:0.000000px;}
.ls9_c02375{letter-spacing:-0.014400px;}
.lsa_c02375{letter-spacing:-0.007200px;}
.ls7_c02375{letter-spacing:0.000000px;}
.ls6_c02375{letter-spacing:0.007200px;}
.ls4_c02375{letter-spacing:0.014400px;}
.ls5_c02375{letter-spacing:0.021600px;}
.ls0_c02375{letter-spacing:0.026352px;}
.ls2_c02375{letter-spacing:0.028800px;}
.ls3_c02375{letter-spacing:0.036000px;}
.ls1_c02375{letter-spacing:0.052704px;}
.ls8_c02375{letter-spacing:0.092232px;}
.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;}
}
.wsd_c02375{word-spacing:-0.201600px;}
.ws10_c02375{word-spacing:-0.172800px;}
.ws0_c02375{word-spacing:-0.158112px;}
.ws9_c02375{word-spacing:-0.129600px;}
.ws11_c02375{word-spacing:-0.122400px;}
.wse_c02375{word-spacing:-0.108000px;}
.ws5_c02375{word-spacing:-0.100800px;}
.wsf_c02375{word-spacing:-0.079200px;}
.ws6_c02375{word-spacing:-0.036000px;}
.ws4_c02375{word-spacing:-0.028800px;}
.wsb_c02375{word-spacing:-0.021600px;}
.wsa_c02375{word-spacing:-0.014400px;}
.wsc_c02375{word-spacing:-0.007200px;}
.ws3_c02375{word-spacing:0.000000px;}
.ws7_c02375{word-spacing:0.007200px;}
.ws8_c02375{word-spacing:0.014400px;}
.ws2_c02375{word-spacing:0.039528px;}
.ws1_c02375{word-spacing:0.065880px;}
._0_c02375{width:1.036800px;}
.fc0_c02375{color:rgb(0,0,0);}
.fs0_c02375{font-size:65.880000px;}
.fs1_c02375{font-size:72.000000px;}
.y0_c02375{bottom:0.000000px;}
.y3_c02375{bottom:75.720882px;}
.y2_c02375{bottom:113.880225px;}
.y2e_c02375{bottom:153.297507px;}
.y2d_c02375{bottom:175.077435px;}
.y2c_c02375{bottom:196.947948px;}
.y2b_c02375{bottom:218.727876px;}
.y2a_c02375{bottom:240.507804px;}
.y29_c02375{bottom:262.378317px;}
.y28_c02375{bottom:284.158245px;}
.y27_c02375{bottom:306.028758px;}
.y26_c02375{bottom:327.808686px;}
.y25_c02375{bottom:349.679199px;}
.y24_c02375{bottom:371.459127px;}
.y23_c02375{bottom:393.329640px;}
.y22_c02375{bottom:415.109568px;}
.y21_c02375{bottom:436.889496px;}
.y20_c02375{bottom:458.760009px;}
.y1f_c02375{bottom:480.539937px;}
.y1e_c02375{bottom:502.410450px;}
.y1d_c02375{bottom:525.540600px;}
.y1c_c02375{bottom:549.840450px;}
.y1b_c02375{bottom:574.590450px;}
.y1a_c02375{bottom:599.160450px;}
.y19_c02375{bottom:623.730450px;}
.y18_c02375{bottom:648.300450px;}
.y17_c02375{bottom:672.600450px;}
.y16_c02375{bottom:697.170450px;}
.y15_c02375{bottom:721.920450px;}
.y14_c02375{bottom:746.490450px;}
.y13_c02375{bottom:771.060450px;}
.y12_c02375{bottom:795.360600px;}
.y11_c02375{bottom:820.110600px;}
.y10_c02375{bottom:844.680600px;}
.yf_c02375{bottom:869.250600px;}
.ye_c02375{bottom:893.820450px;}
.yd_c02375{bottom:918.210450px;}
.yc_c02375{bottom:942.870450px;}
.yb_c02375{bottom:967.440450px;}
.ya_c02375{bottom:992.010450px;}
.y9_c02375{bottom:1016.400450px;}
.y8_c02375{bottom:1041.150450px;}
.y7_c02375{bottom:1065.630450px;}
.y6_c02375{bottom:1090.020450px;}
.y5_c02375{bottom:1114.590450px;}
.y4_c02375{bottom:1139.160450px;}
.y1_c02375{bottom:1194.600450px;}
.h3_c02375{height:43.909277px;}
.h2_c02375{height:54.331699px;}
.h6_c02375{height:64.657617px;}
.h1_c02375{height:66.394687px;}
.h5_c02375{height:70.664062px;}
.h4_c02375{height:72.562500px;}
.h0_c02375{height:1263.000000px;}
.w1_c02375{width:892.500000px;}
.w0_c02375{width:892.830000px;}
.x0_c02375{left:0.000000px;}
.x1_c02375{left:127.620000px;}
.x3_c02375{left:205.200000px;}
.x5_c02375{left:288.630000px;}
.x4_c02375{left:357.660000px;}
.x2_c02375{left:438.120675px;}
@media print{
.v0_c02375{vertical-align:0.000000pt;}
.ls9_c02375{letter-spacing:-0.012800pt;}
.lsa_c02375{letter-spacing:-0.006400pt;}
.ls7_c02375{letter-spacing:0.000000pt;}
.ls6_c02375{letter-spacing:0.006400pt;}
.ls4_c02375{letter-spacing:0.012800pt;}
.ls5_c02375{letter-spacing:0.019200pt;}
.ls0_c02375{letter-spacing:0.023424pt;}
.ls2_c02375{letter-spacing:0.025600pt;}
.ls3_c02375{letter-spacing:0.032000pt;}
.ls1_c02375{letter-spacing:0.046848pt;}
.ls8_c02375{letter-spacing:0.081984pt;}
.wsd_c02375{word-spacing:-0.179200pt;}
.ws10_c02375{word-spacing:-0.153600pt;}
.ws0_c02375{word-spacing:-0.140544pt;}
.ws9_c02375{word-spacing:-0.115200pt;}
.ws11_c02375{word-spacing:-0.108800pt;}
.wse_c02375{word-spacing:-0.096000pt;}
.ws5_c02375{word-spacing:-0.089600pt;}
.wsf_c02375{word-spacing:-0.070400pt;}
.ws6_c02375{word-spacing:-0.032000pt;}
.ws4_c02375{word-spacing:-0.025600pt;}
.wsb_c02375{word-spacing:-0.019200pt;}
.wsa_c02375{word-spacing:-0.012800pt;}
.wsc_c02375{word-spacing:-0.006400pt;}
.ws3_c02375{word-spacing:0.000000pt;}
.ws7_c02375{word-spacing:0.006400pt;}
.ws8_c02375{word-spacing:0.012800pt;}
.ws2_c02375{word-spacing:0.035136pt;}
.ws1_c02375{word-spacing:0.058560pt;}
._0_c02375{width:0.921600pt;}
.fs0_c02375{font-size:58.560000pt;}
.fs1_c02375{font-size:64.000000pt;}
.y0_c02375{bottom:0.000000pt;}
.y3_c02375{bottom:67.307451pt;}
.y2_c02375{bottom:101.226867pt;}
.y2e_c02375{bottom:136.264451pt;}
.y2d_c02375{bottom:155.624387pt;}
.y2c_c02375{bottom:175.064843pt;}
.y2b_c02375{bottom:194.424779pt;}
.y2a_c02375{bottom:213.784715pt;}
.y29_c02375{bottom:233.225171pt;}
.y28_c02375{bottom:252.585107pt;}
.y27_c02375{bottom:272.025563pt;}
.y26_c02375{bottom:291.385499pt;}
.y25_c02375{bottom:310.825955pt;}
.y24_c02375{bottom:330.185891pt;}
.y23_c02375{bottom:349.626347pt;}
.y22_c02375{bottom:368.986283pt;}
.y21_c02375{bottom:388.346219pt;}
.y20_c02375{bottom:407.786675pt;}
.y1f_c02375{bottom:427.146611pt;}
.y1e_c02375{bottom:446.587067pt;}
.y1d_c02375{bottom:467.147200pt;}
.y1c_c02375{bottom:488.747067pt;}
.y1b_c02375{bottom:510.747067pt;}
.y1a_c02375{bottom:532.587067pt;}
.y19_c02375{bottom:554.427067pt;}
.y18_c02375{bottom:576.267067pt;}
.y17_c02375{bottom:597.867067pt;}
.y16_c02375{bottom:619.707067pt;}
.y15_c02375{bottom:641.707067pt;}
.y14_c02375{bottom:663.547067pt;}
.y13_c02375{bottom:685.387067pt;}
.y12_c02375{bottom:706.987200pt;}
.y11_c02375{bottom:728.987200pt;}
.y10_c02375{bottom:750.827200pt;}
.yf_c02375{bottom:772.667200pt;}
.ye_c02375{bottom:794.507067pt;}
.yd_c02375{bottom:816.187067pt;}
.yc_c02375{bottom:838.107067pt;}
.yb_c02375{bottom:859.947067pt;}
.ya_c02375{bottom:881.787067pt;}
.y9_c02375{bottom:903.467067pt;}
.y8_c02375{bottom:925.467067pt;}
.y7_c02375{bottom:947.227067pt;}
.y6_c02375{bottom:968.907067pt;}
.y5_c02375{bottom:990.747067pt;}
.y4_c02375{bottom:1012.587067pt;}
.y1_c02375{bottom:1061.867067pt;}
.h3_c02375{height:39.030469pt;}
.h2_c02375{height:48.294844pt;}
.h6_c02375{height:57.473437pt;}
.h1_c02375{height:59.017500pt;}
.h5_c02375{height:62.812500pt;}
.h4_c02375{height:64.500000pt;}
.h0_c02375{height:1122.666667pt;}
.w1_c02375{width:793.333333pt;}
.w0_c02375{width:793.626667pt;}
.x0_c02375{left:0.000000pt;}
.x1_c02375{left:113.440000pt;}
.x3_c02375{left:182.400000pt;}
.x5_c02375{left:256.560000pt;}
.x4_c02375{left:317.920000pt;}
.x2_c02375{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02c9b8d61946d2c2811b2742.woff2')format("woff");}.ff1_c02376{font-family:ff1_c02376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02376;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02376{font-family:ff2_c02376;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02376;src:url('chunks/assets/font_d18ebdb158b5cef7ea380daf.woff2')format("woff");}.ff3_c02376{font-family:ff3_c02376;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02376;src:url('chunks/assets/font_ba6c603b45d90faf9864dfdf.woff2')format("woff");}.ff4_c02376{font-family:ff4_c02376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c02376{letter-spacing:-0.014400px;}
.lsc_c02376{letter-spacing:0.000000px;}
.ls2_c02376{letter-spacing:0.014400px;}
.ls5_c02376{letter-spacing:0.021600px;}
.ls0_c02376{letter-spacing:0.026352px;}
.lsb_c02376{letter-spacing:0.028800px;}
.ls4_c02376{letter-spacing:0.039528px;}
.ls1_c02376{letter-spacing:0.052704px;}
.lsa_c02376{letter-spacing:0.059292px;}
.ls6_c02376{letter-spacing:0.072468px;}
.ls7_c02376{letter-spacing:0.079056px;}
.ls3_c02376{letter-spacing:0.085644px;}
.lsd_c02376{letter-spacing:0.092232px;}
.ls8_c02376{letter-spacing:0.105408px;}
.ls9_c02376{letter-spacing:0.111996px;}
.sc__c02376{text-shadow:none;}
.sc0_c02376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02376{-webkit-text-stroke:0px transparent;}
.sc0_c02376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02376{word-spacing:-0.158112px;}
.ws5_c02376{word-spacing:-0.129600px;}
.wse_c02376{word-spacing:-0.028800px;}
.ws8_c02376{word-spacing:-0.021600px;}
.wsc_c02376{word-spacing:-0.019764px;}
.wsb_c02376{word-spacing:-0.013176px;}
.ws3_c02376{word-spacing:0.000000px;}
.ws6_c02376{word-spacing:0.006588px;}
.wsa_c02376{word-spacing:0.013176px;}
.ws4_c02376{word-spacing:0.014400px;}
.ws9_c02376{word-spacing:0.019764px;}
.wsd_c02376{word-spacing:0.032940px;}
.ws2_c02376{word-spacing:0.039528px;}
.ws7_c02376{word-spacing:0.052704px;}
.ws1_c02376{word-spacing:0.065880px;}
._0_c02376{margin-left:-1.047492px;}
.fc0_c02376{color:rgb(0,0,0);}
.fs0_c02376{font-size:65.880000px;}
.fs1_c02376{font-size:72.000000px;}
.fs2_c02376{font-size:108.000000px;}
.y0_c02376{bottom:0.000000px;}
.y3_c02376{bottom:75.720882px;}
.y2_c02376{bottom:113.880225px;}
.y2e_c02376{bottom:139.617585px;}
.y2d_c02376{bottom:161.488098px;}
.y2c_c02376{bottom:183.268026px;}
.y2b_c02376{bottom:205.138539px;}
.y2a_c02376{bottom:226.918467px;}
.y29_c02376{bottom:248.788980px;}
.y28_c02376{bottom:270.568908px;}
.y27_c02376{bottom:292.348836px;}
.y26_c02376{bottom:314.219349px;}
.y25_c02376{bottom:335.999277px;}
.y24_c02376{bottom:357.869790px;}
.y23_c02376{bottom:379.649718px;}
.y22_c02376{bottom:401.520231px;}
.y21_c02376{bottom:423.300159px;}
.y20_c02376{bottom:445.170672px;}
.y1f_c02376{bottom:466.950600px;}
.y1e_c02376{bottom:492.782250px;}
.y1d_c02376{bottom:528.422250px;}
.y1c_c02376{bottom:564.151350px;}
.y1b_c02376{bottom:599.880450px;}
.y1a_c02376{bottom:632.370450px;}
.y19_c02376{bottom:654.870450px;}
.y18_c02376{bottom:677.460450px;}
.y17_c02376{bottom:700.050450px;}
.y16_c02376{bottom:723.000450px;}
.y15_c02376{bottom:747.120450px;}
.y14_c02376{bottom:769.710450px;}
.y13_c02376{bottom:792.300450px;}
.y12_c02376{bottom:814.890450px;}
.y11_c02376{bottom:837.840450px;}
.y10_c02376{bottom:861.960450px;}
.yf_c02376{bottom:884.550450px;}
.ye_c02376{bottom:907.140450px;}
.yd_c02376{bottom:930.090450px;}
.yc_c02376{bottom:954.300450px;}
.yb_c02376{bottom:976.800450px;}
.ya_c02376{bottom:999.390450px;}
.y9_c02376{bottom:1022.340450px;}
.y8_c02376{bottom:1046.550450px;}
.y7_c02376{bottom:1069.050450px;}
.y6_c02376{bottom:1091.640450px;}
.y5_c02376{bottom:1114.590450px;}
.y4_c02376{bottom:1139.160450px;}
.y1_c02376{bottom:1194.600450px;}
.h3_c02376{height:43.909277px;}
.h2_c02376{height:54.331699px;}
.h5_c02376{height:64.657617px;}
.h1_c02376{height:66.394687px;}
.h4_c02376{height:72.562500px;}
.h6_c02376{height:108.843750px;}
.h0_c02376{height:1263.000000px;}
.w1_c02376{width:892.500000px;}
.w0_c02376{width:892.830000px;}
.x0_c02376{left:0.000000px;}
.x1_c02376{left:127.620000px;}
.x3_c02376{left:244.170000px;}
.x2_c02376{left:438.120675px;}
@media print{
.v0_c02376{vertical-align:0.000000pt;}
.lse_c02376{letter-spacing:-0.012800pt;}
.lsc_c02376{letter-spacing:0.000000pt;}
.ls2_c02376{letter-spacing:0.012800pt;}
.ls5_c02376{letter-spacing:0.019200pt;}
.ls0_c02376{letter-spacing:0.023424pt;}
.lsb_c02376{letter-spacing:0.025600pt;}
.ls4_c02376{letter-spacing:0.035136pt;}
.ls1_c02376{letter-spacing:0.046848pt;}
.lsa_c02376{letter-spacing:0.052704pt;}
.ls6_c02376{letter-spacing:0.064416pt;}
.ls7_c02376{letter-spacing:0.070272pt;}
.ls3_c02376{letter-spacing:0.076128pt;}
.lsd_c02376{letter-spacing:0.081984pt;}
.ls8_c02376{letter-spacing:0.093696pt;}
.ls9_c02376{letter-spacing:0.099552pt;}
.ws0_c02376{word-spacing:-0.140544pt;}
.ws5_c02376{word-spacing:-0.115200pt;}
.wse_c02376{word-spacing:-0.025600pt;}
.ws8_c02376{word-spacing:-0.019200pt;}
.wsc_c02376{word-spacing:-0.017568pt;}
.wsb_c02376{word-spacing:-0.011712pt;}
.ws3_c02376{word-spacing:0.000000pt;}
.ws6_c02376{word-spacing:0.005856pt;}
.wsa_c02376{word-spacing:0.011712pt;}
.ws4_c02376{word-spacing:0.012800pt;}
.ws9_c02376{word-spacing:0.017568pt;}
.wsd_c02376{word-spacing:0.029280pt;}
.ws2_c02376{word-spacing:0.035136pt;}
.ws7_c02376{word-spacing:0.046848pt;}
.ws1_c02376{word-spacing:0.058560pt;}
._0_c02376{margin-left:-0.931104pt;}
.fs0_c02376{font-size:58.560000pt;}
.fs1_c02376{font-size:64.000000pt;}
.fs2_c02376{font-size:96.000000pt;}
.y0_c02376{bottom:0.000000pt;}
.y3_c02376{bottom:67.307451pt;}
.y2_c02376{bottom:101.226867pt;}
.y2e_c02376{bottom:124.104520pt;}
.y2d_c02376{bottom:143.544976pt;}
.y2c_c02376{bottom:162.904912pt;}
.y2b_c02376{bottom:182.345368pt;}
.y2a_c02376{bottom:201.705304pt;}
.y29_c02376{bottom:221.145760pt;}
.y28_c02376{bottom:240.505696pt;}
.y27_c02376{bottom:259.865632pt;}
.y26_c02376{bottom:279.306088pt;}
.y25_c02376{bottom:298.666024pt;}
.y24_c02376{bottom:318.106480pt;}
.y23_c02376{bottom:337.466416pt;}
.y22_c02376{bottom:356.906872pt;}
.y21_c02376{bottom:376.266808pt;}
.y20_c02376{bottom:395.707264pt;}
.y1f_c02376{bottom:415.067200pt;}
.y1e_c02376{bottom:438.028667pt;}
.y1d_c02376{bottom:469.708667pt;}
.y1c_c02376{bottom:501.467867pt;}
.y1b_c02376{bottom:533.227067pt;}
.y1a_c02376{bottom:562.107067pt;}
.y19_c02376{bottom:582.107067pt;}
.y18_c02376{bottom:602.187067pt;}
.y17_c02376{bottom:622.267067pt;}
.y16_c02376{bottom:642.667067pt;}
.y15_c02376{bottom:664.107067pt;}
.y14_c02376{bottom:684.187067pt;}
.y13_c02376{bottom:704.267067pt;}
.y12_c02376{bottom:724.347067pt;}
.y11_c02376{bottom:744.747067pt;}
.y10_c02376{bottom:766.187067pt;}
.yf_c02376{bottom:786.267067pt;}
.ye_c02376{bottom:806.347067pt;}
.yd_c02376{bottom:826.747067pt;}
.yc_c02376{bottom:848.267067pt;}
.yb_c02376{bottom:868.267067pt;}
.ya_c02376{bottom:888.347067pt;}
.y9_c02376{bottom:908.747067pt;}
.y8_c02376{bottom:930.267067pt;}
.y7_c02376{bottom:950.267067pt;}
.y6_c02376{bottom:970.347067pt;}
.y5_c02376{bottom:990.747067pt;}
.y4_c02376{bottom:1012.587067pt;}
.y1_c02376{bottom:1061.867067pt;}
.h3_c02376{height:39.030469pt;}
.h2_c02376{height:48.294844pt;}
.h5_c02376{height:57.473437pt;}
.h1_c02376{height:59.017500pt;}
.h4_c02376{height:64.500000pt;}
.h6_c02376{height:96.750000pt;}
.h0_c02376{height:1122.666667pt;}
.w1_c02376{width:793.333333pt;}
.w0_c02376{width:793.626667pt;}
.x0_c02376{left:0.000000pt;}
.x1_c02376{left:113.440000pt;}
.x3_c02376{left:217.040000pt;}
.x2_c02376{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50017c932d7a0f5fb0ece921.woff2')format("woff");}.ff1_c02377{font-family:ff1_c02377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02377;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02377{font-family:ff2_c02377;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02377;src:url('chunks/assets/font_b6e6eeecf38d8e91f5d0b66d.woff2')format("woff");}.ff3_c02377{font-family:ff3_c02377;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02377;src:url('chunks/assets/font_f0fff44ad0105829dc84e343.woff2')format("woff");}.ff4_c02377{font-family:ff4_c02377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1a_c02377{letter-spacing:-0.360000px;}
.ls19_c02377{letter-spacing:-0.158400px;}
.ls14_c02377{letter-spacing:-0.050400px;}
.ls17_c02377{letter-spacing:-0.043200px;}
.ls18_c02377{letter-spacing:-0.028800px;}
.ls15_c02377{letter-spacing:-0.021600px;}
.ls1b_c02377{letter-spacing:-0.014400px;}
.ls13_c02377{letter-spacing:-0.007200px;}
.ls16_c02377{letter-spacing:-0.006588px;}
.ls10_c02377{letter-spacing:0.000000px;}
.lsd_c02377{letter-spacing:0.007200px;}
.ls6_c02377{letter-spacing:0.014400px;}
.lse_c02377{letter-spacing:0.019764px;}
.ls3_c02377{letter-spacing:0.021600px;}
.ls0_c02377{letter-spacing:0.026352px;}
.ls9_c02377{letter-spacing:0.028800px;}
.ls5_c02377{letter-spacing:0.032940px;}
.ls7_c02377{letter-spacing:0.036000px;}
.lsb_c02377{letter-spacing:0.043200px;}
.lsc_c02377{letter-spacing:0.050400px;}
.ls1_c02377{letter-spacing:0.052704px;}
.ls8_c02377{letter-spacing:0.057600px;}
.ls4_c02377{letter-spacing:0.059292px;}
.ls2_c02377{letter-spacing:0.072000px;}
.ls12_c02377{letter-spacing:0.075492px;}
.lsf_c02377{letter-spacing:0.079200px;}
.ls11_c02377{letter-spacing:0.092232px;}
.lsa_c02377{letter-spacing:0.093600px;}
.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;}
}
.ws1_c02377{word-spacing:-18.021600px;}
.ws11_c02377{word-spacing:-0.388800px;}
.ws28_c02377{word-spacing:-0.295200px;}
.ws21_c02377{word-spacing:-0.223200px;}
.ws12_c02377{word-spacing:-0.180000px;}
.ws2c_c02377{word-spacing:-0.172800px;}
.ws2b_c02377{word-spacing:-0.165600px;}
.ws0_c02377{word-spacing:-0.158112px;}
.ws24_c02377{word-spacing:-0.115200px;}
.ws17_c02377{word-spacing:-0.100800px;}
.ws1d_c02377{word-spacing:-0.093600px;}
.ws16_c02377{word-spacing:-0.086400px;}
.ws1e_c02377{word-spacing:-0.064800px;}
.ws26_c02377{word-spacing:-0.050400px;}
.ws5_c02377{word-spacing:-0.050328px;}
.ws22_c02377{word-spacing:-0.028800px;}
.ws23_c02377{word-spacing:-0.014400px;}
.ws7_c02377{word-spacing:-0.007200px;}
.ws4_c02377{word-spacing:0.000000px;}
.ws6_c02377{word-spacing:0.007200px;}
.ws3_c02377{word-spacing:0.039528px;}
.ws2_c02377{word-spacing:0.065880px;}
.wsd_c02377{word-spacing:0.098820px;}
.wsa_c02377{word-spacing:0.288000px;}
.ws9_c02377{word-spacing:0.381600px;}
.ws27_c02377{word-spacing:0.428220px;}
.ws8_c02377{word-spacing:0.496800px;}
.ws29_c02377{word-spacing:2.073600px;}
.ws2a_c02377{word-spacing:2.167200px;}
.wsb_c02377{word-spacing:3.992328px;}
.wsc_c02377{word-spacing:4.018680px;}
.wsf_c02377{word-spacing:6.343200px;}
.ws10_c02377{word-spacing:6.444000px;}
.wse_c02377{word-spacing:6.465600px;}
.ws1c_c02377{word-spacing:6.703200px;}
.ws1a_c02377{word-spacing:6.811200px;}
.ws1b_c02377{word-spacing:6.998400px;}
.ws30_c02377{word-spacing:10.058400px;}
.ws2f_c02377{word-spacing:10.065600px;}
.ws25_c02377{word-spacing:14.364000px;}
.ws20_c02377{word-spacing:16.387200px;}
.ws1f_c02377{word-spacing:16.452000px;}
.ws2e_c02377{word-spacing:17.604000px;}
.ws2d_c02377{word-spacing:17.632800px;}
.ws15_c02377{word-spacing:19.584000px;}
.ws14_c02377{word-spacing:19.641600px;}
.ws13_c02377{word-spacing:19.843200px;}
.ws19_c02377{word-spacing:22.586400px;}
.ws18_c02377{word-spacing:22.680000px;}
.ws31_c02377{word-spacing:36.187200px;}
.ws32_c02377{word-spacing:36.230400px;}
.ws33_c02377{word-spacing:36.280800px;}
.ws34_c02377{word-spacing:36.374400px;}
._2_c02377{margin-left:-10.080000px;}
._0_c02377{margin-left:-1.199016px;}
._1_c02377{width:1.225368px;}
.fc0_c02377{color:rgb(0,0,0);}
.fs3_c02377{font-size:11.880000px;}
.fs0_c02377{font-size:65.880000px;}
.fs2_c02377{font-size:72.000000px;}
.fs1_c02377{font-size:83.880000px;}
.y0_c02377{bottom:0.000000px;}
.y3_c02377{bottom:75.720882px;}
.y2_c02377{bottom:113.880225px;}
.y40_c02377{bottom:145.290846px;}
.y3f_c02377{bottom:149.250747px;}
.y3e_c02377{bottom:153.210648px;}
.y3d_c02377{bottom:157.170549px;}
.y3c_c02377{bottom:161.130450px;}
.y3b_c02377{bottom:171.750450px;}
.y3a_c02377{bottom:192.360450px;}
.y39_c02377{bottom:213.240450px;}
.y38_c02377{bottom:233.940450px;}
.y37_c02377{bottom:254.640450px;}
.y36_c02377{bottom:275.340450px;}
.y35_c02377{bottom:296.040450px;}
.y34_c02377{bottom:316.740450px;}
.y33_c02377{bottom:337.260450px;}
.y32_c02377{bottom:358.140450px;}
.y31_c02377{bottom:382.350450px;}
.y30_c02377{bottom:406.200600px;}
.y2f_c02377{bottom:425.012094px;}
.y2e_c02377{bottom:428.971995px;}
.y2d_c02377{bottom:432.931896px;}
.y2c_c02377{bottom:436.981788px;}
.y2b_c02377{bottom:440.941689px;}
.y2a_c02377{bottom:444.901590px;}
.y29_c02377{bottom:448.861491px;}
.y28_c02377{bottom:452.821392px;}
.y27_c02377{bottom:456.781293px;}
.y26_c02377{bottom:460.741194px;}
.y25_c02377{bottom:464.701095px;}
.y24_c02377{bottom:468.660996px;}
.y23_c02377{bottom:472.620897px;}
.y22_c02377{bottom:476.580798px;}
.y21_c02377{bottom:480.540699px;}
.y20_c02377{bottom:484.500600px;}
.y1f_c02377{bottom:495.120450px;}
.y1e_c02377{bottom:518.970450px;}
.y1d_c02377{bottom:542.730450px;}
.y1c_c02377{bottom:566.580450px;}
.y1b_c02377{bottom:590.340450px;}
.y1a_c02377{bottom:614.190450px;}
.y19_c02377{bottom:637.950450px;}
.y18_c02377{bottom:661.800450px;}
.y17_c02377{bottom:685.560450px;}
.y16_c02377{bottom:709.410450px;}
.y15_c02377{bottom:733.170450px;}
.y14_c02377{bottom:757.020450px;}
.y13_c02377{bottom:780.780450px;}
.y12_c02377{bottom:804.540450px;}
.y11_c02377{bottom:828.390450px;}
.y10_c02377{bottom:852.150450px;}
.yf_c02377{bottom:876.000450px;}
.ye_c02377{bottom:899.760450px;}
.yd_c02377{bottom:923.610450px;}
.yc_c02377{bottom:947.370450px;}
.yb_c02377{bottom:971.220450px;}
.ya_c02377{bottom:995.250450px;}
.y9_c02377{bottom:1017.030450px;}
.y8_c02377{bottom:1040.160450px;}
.y7_c02377{bottom:1063.920450px;}
.y6_c02377{bottom:1087.590450px;}
.y5_c02377{bottom:1112.160450px;}
.y4_c02377{bottom:1137.090450px;}
.y1_c02377{bottom:1194.600450px;}
.h8_c02377{height:11.659570px;}
.h3_c02377{height:43.909277px;}
.h2_c02377{height:54.331699px;}
.h6_c02377{height:64.657617px;}
.h1_c02377{height:66.394687px;}
.h7_c02377{height:70.664062px;}
.h5_c02377{height:72.562500px;}
.h4_c02377{height:84.535312px;}
.h0_c02377{height:1263.000000px;}
.w1_c02377{width:892.500000px;}
.w0_c02377{width:892.830000px;}
.x0_c02377{left:0.000000px;}
.x1_c02377{left:127.620000px;}
.x4_c02377{left:148.950000px;}
.x3_c02377{left:323.730000px;}
.x2_c02377{left:438.120675px;}
@media print{
.v0_c02377{vertical-align:0.000000pt;}
.ls1a_c02377{letter-spacing:-0.320000pt;}
.ls19_c02377{letter-spacing:-0.140800pt;}
.ls14_c02377{letter-spacing:-0.044800pt;}
.ls17_c02377{letter-spacing:-0.038400pt;}
.ls18_c02377{letter-spacing:-0.025600pt;}
.ls15_c02377{letter-spacing:-0.019200pt;}
.ls1b_c02377{letter-spacing:-0.012800pt;}
.ls13_c02377{letter-spacing:-0.006400pt;}
.ls16_c02377{letter-spacing:-0.005856pt;}
.ls10_c02377{letter-spacing:0.000000pt;}
.lsd_c02377{letter-spacing:0.006400pt;}
.ls6_c02377{letter-spacing:0.012800pt;}
.lse_c02377{letter-spacing:0.017568pt;}
.ls3_c02377{letter-spacing:0.019200pt;}
.ls0_c02377{letter-spacing:0.023424pt;}
.ls9_c02377{letter-spacing:0.025600pt;}
.ls5_c02377{letter-spacing:0.029280pt;}
.ls7_c02377{letter-spacing:0.032000pt;}
.lsb_c02377{letter-spacing:0.038400pt;}
.lsc_c02377{letter-spacing:0.044800pt;}
.ls1_c02377{letter-spacing:0.046848pt;}
.ls8_c02377{letter-spacing:0.051200pt;}
.ls4_c02377{letter-spacing:0.052704pt;}
.ls2_c02377{letter-spacing:0.064000pt;}
.ls12_c02377{letter-spacing:0.067104pt;}
.lsf_c02377{letter-spacing:0.070400pt;}
.ls11_c02377{letter-spacing:0.081984pt;}
.lsa_c02377{letter-spacing:0.083200pt;}
.ws1_c02377{word-spacing:-16.019200pt;}
.ws11_c02377{word-spacing:-0.345600pt;}
.ws28_c02377{word-spacing:-0.262400pt;}
.ws21_c02377{word-spacing:-0.198400pt;}
.ws12_c02377{word-spacing:-0.160000pt;}
.ws2c_c02377{word-spacing:-0.153600pt;}
.ws2b_c02377{word-spacing:-0.147200pt;}
.ws0_c02377{word-spacing:-0.140544pt;}
.ws24_c02377{word-spacing:-0.102400pt;}
.ws17_c02377{word-spacing:-0.089600pt;}
.ws1d_c02377{word-spacing:-0.083200pt;}
.ws16_c02377{word-spacing:-0.076800pt;}
.ws1e_c02377{word-spacing:-0.057600pt;}
.ws26_c02377{word-spacing:-0.044800pt;}
.ws5_c02377{word-spacing:-0.044736pt;}
.ws22_c02377{word-spacing:-0.025600pt;}
.ws23_c02377{word-spacing:-0.012800pt;}
.ws7_c02377{word-spacing:-0.006400pt;}
.ws4_c02377{word-spacing:0.000000pt;}
.ws6_c02377{word-spacing:0.006400pt;}
.ws3_c02377{word-spacing:0.035136pt;}
.ws2_c02377{word-spacing:0.058560pt;}
.wsd_c02377{word-spacing:0.087840pt;}
.wsa_c02377{word-spacing:0.256000pt;}
.ws9_c02377{word-spacing:0.339200pt;}
.ws27_c02377{word-spacing:0.380640pt;}
.ws8_c02377{word-spacing:0.441600pt;}
.ws29_c02377{word-spacing:1.843200pt;}
.ws2a_c02377{word-spacing:1.926400pt;}
.wsb_c02377{word-spacing:3.548736pt;}
.wsc_c02377{word-spacing:3.572160pt;}
.wsf_c02377{word-spacing:5.638400pt;}
.ws10_c02377{word-spacing:5.728000pt;}
.wse_c02377{word-spacing:5.747200pt;}
.ws1c_c02377{word-spacing:5.958400pt;}
.ws1a_c02377{word-spacing:6.054400pt;}
.ws1b_c02377{word-spacing:6.220800pt;}
.ws30_c02377{word-spacing:8.940800pt;}
.ws2f_c02377{word-spacing:8.947200pt;}
.ws25_c02377{word-spacing:12.768000pt;}
.ws20_c02377{word-spacing:14.566400pt;}
.ws1f_c02377{word-spacing:14.624000pt;}
.ws2e_c02377{word-spacing:15.648000pt;}
.ws2d_c02377{word-spacing:15.673600pt;}
.ws15_c02377{word-spacing:17.408000pt;}
.ws14_c02377{word-spacing:17.459200pt;}
.ws13_c02377{word-spacing:17.638400pt;}
.ws19_c02377{word-spacing:20.076800pt;}
.ws18_c02377{word-spacing:20.160000pt;}
.ws31_c02377{word-spacing:32.166400pt;}
.ws32_c02377{word-spacing:32.204800pt;}
.ws33_c02377{word-spacing:32.249600pt;}
.ws34_c02377{word-spacing:32.332800pt;}
._2_c02377{margin-left:-8.960000pt;}
._0_c02377{margin-left:-1.065792pt;}
._1_c02377{width:1.089216pt;}
.fs3_c02377{font-size:10.560000pt;}
.fs0_c02377{font-size:58.560000pt;}
.fs2_c02377{font-size:64.000000pt;}
.fs1_c02377{font-size:74.560000pt;}
.y0_c02377{bottom:0.000000pt;}
.y3_c02377{bottom:67.307451pt;}
.y2_c02377{bottom:101.226867pt;}
.y40_c02377{bottom:129.147419pt;}
.y3f_c02377{bottom:132.667331pt;}
.y3e_c02377{bottom:136.187243pt;}
.y3d_c02377{bottom:139.707155pt;}
.y3c_c02377{bottom:143.227067pt;}
.y3b_c02377{bottom:152.667067pt;}
.y3a_c02377{bottom:170.987067pt;}
.y39_c02377{bottom:189.547067pt;}
.y38_c02377{bottom:207.947067pt;}
.y37_c02377{bottom:226.347067pt;}
.y36_c02377{bottom:244.747067pt;}
.y35_c02377{bottom:263.147067pt;}
.y34_c02377{bottom:281.547067pt;}
.y33_c02377{bottom:299.787067pt;}
.y32_c02377{bottom:318.347067pt;}
.y31_c02377{bottom:339.867067pt;}
.y30_c02377{bottom:361.067200pt;}
.y2f_c02377{bottom:377.788528pt;}
.y2e_c02377{bottom:381.308440pt;}
.y2d_c02377{bottom:384.828352pt;}
.y2c_c02377{bottom:388.428256pt;}
.y2b_c02377{bottom:391.948168pt;}
.y2a_c02377{bottom:395.468080pt;}
.y29_c02377{bottom:398.987992pt;}
.y28_c02377{bottom:402.507904pt;}
.y27_c02377{bottom:406.027816pt;}
.y26_c02377{bottom:409.547728pt;}
.y25_c02377{bottom:413.067640pt;}
.y24_c02377{bottom:416.587552pt;}
.y23_c02377{bottom:420.107464pt;}
.y22_c02377{bottom:423.627376pt;}
.y21_c02377{bottom:427.147288pt;}
.y20_c02377{bottom:430.667200pt;}
.y1f_c02377{bottom:440.107067pt;}
.y1e_c02377{bottom:461.307067pt;}
.y1d_c02377{bottom:482.427067pt;}
.y1c_c02377{bottom:503.627067pt;}
.y1b_c02377{bottom:524.747067pt;}
.y1a_c02377{bottom:545.947067pt;}
.y19_c02377{bottom:567.067067pt;}
.y18_c02377{bottom:588.267067pt;}
.y17_c02377{bottom:609.387067pt;}
.y16_c02377{bottom:630.587067pt;}
.y15_c02377{bottom:651.707067pt;}
.y14_c02377{bottom:672.907067pt;}
.y13_c02377{bottom:694.027067pt;}
.y12_c02377{bottom:715.147067pt;}
.y11_c02377{bottom:736.347067pt;}
.y10_c02377{bottom:757.467067pt;}
.yf_c02377{bottom:778.667067pt;}
.ye_c02377{bottom:799.787067pt;}
.yd_c02377{bottom:820.987067pt;}
.yc_c02377{bottom:842.107067pt;}
.yb_c02377{bottom:863.307067pt;}
.ya_c02377{bottom:884.667067pt;}
.y9_c02377{bottom:904.027067pt;}
.y8_c02377{bottom:924.587067pt;}
.y7_c02377{bottom:945.707067pt;}
.y6_c02377{bottom:966.747067pt;}
.y5_c02377{bottom:988.587067pt;}
.y4_c02377{bottom:1010.747067pt;}
.y1_c02377{bottom:1061.867067pt;}
.h8_c02377{height:10.364062pt;}
.h3_c02377{height:39.030469pt;}
.h2_c02377{height:48.294844pt;}
.h6_c02377{height:57.473437pt;}
.h1_c02377{height:59.017500pt;}
.h7_c02377{height:62.812500pt;}
.h5_c02377{height:64.500000pt;}
.h4_c02377{height:75.142500pt;}
.h0_c02377{height:1122.666667pt;}
.w1_c02377{width:793.333333pt;}
.w0_c02377{width:793.626667pt;}
.x0_c02377{left:0.000000pt;}
.x1_c02377{left:113.440000pt;}
.x4_c02377{left:132.400000pt;}
.x3_c02377{left:287.760000pt;}
.x2_c02377{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60c1694008d1feb3c24a984d.woff2')format("woff");}.ff1_c02378{font-family:ff1_c02378;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02378;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02378{font-family:ff2_c02378;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02378;src:url('chunks/assets/font_4f581026b92c246964411cb4.woff2')format("woff");}.ff3_c02378{font-family:ff3_c02378;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02378;src:url('chunks/assets/font_4ca13b6a6f57a89082a6a01a.woff2')format("woff");}.ff4_c02378{font-family:ff4_c02378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02378;src:url('chunks/assets/font_481c1499bf7a0f27e279aa1d.woff2')format("woff");}.ff5_c02378{font-family:ff5_c02378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02378;src:url('chunks/assets/font_694b6698ebbd69d4e9c170fd.woff2')format("woff");}.ff6_c02378{font-family:ff6_c02378;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_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;}
.ls11_c02378{letter-spacing:-0.201600px;}
.ls12_c02378{letter-spacing:-0.043200px;}
.ls15_c02378{letter-spacing:-0.036000px;}
.ls14_c02378{letter-spacing:-0.028800px;}
.ls13_c02378{letter-spacing:-0.021600px;}
.lsf_c02378{letter-spacing:-0.014400px;}
.ls10_c02378{letter-spacing:-0.007200px;}
.lsd_c02378{letter-spacing:0.000000px;}
.ls2_c02378{letter-spacing:0.007200px;}
.ls7_c02378{letter-spacing:0.014400px;}
.ls8_c02378{letter-spacing:0.021600px;}
.ls0_c02378{letter-spacing:0.026352px;}
.ls6_c02378{letter-spacing:0.028800px;}
.ls4_c02378{letter-spacing:0.036000px;}
.lsa_c02378{letter-spacing:0.043200px;}
.ls3_c02378{letter-spacing:0.050400px;}
.ls1_c02378{letter-spacing:0.052704px;}
.lsc_c02378{letter-spacing:0.057600px;}
.ls9_c02378{letter-spacing:0.064800px;}
.ls5_c02378{letter-spacing:0.072000px;}
.lsb_c02378{letter-spacing:0.079200px;}
.lse_c02378{letter-spacing:0.092232px;}
.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;}
}
.ws1_c02378{word-spacing:-18.050400px;}
.ws34_c02378{word-spacing:-0.194400px;}
.ws10_c02378{word-spacing:-0.180000px;}
.ws3e_c02378{word-spacing:-0.172800px;}
.ws0_c02378{word-spacing:-0.158112px;}
.ws16_c02378{word-spacing:-0.151200px;}
.ws18_c02378{word-spacing:-0.136800px;}
.ws3f_c02378{word-spacing:-0.129600px;}
.ws5_c02378{word-spacing:-0.122400px;}
.ws2e_c02378{word-spacing:-0.115200px;}
.ws27_c02378{word-spacing:-0.108000px;}
.ws1d_c02378{word-spacing:-0.100800px;}
.ws1f_c02378{word-spacing:-0.093600px;}
.ws2d_c02378{word-spacing:-0.086400px;}
.ws33_c02378{word-spacing:-0.079200px;}
.ws7_c02378{word-spacing:-0.050400px;}
.ws13_c02378{word-spacing:-0.043200px;}
.wsa_c02378{word-spacing:-0.036000px;}
.ws17_c02378{word-spacing:-0.021600px;}
.wsf_c02378{word-spacing:-0.014400px;}
.ws1e_c02378{word-spacing:-0.007200px;}
.ws4_c02378{word-spacing:0.000000px;}
.ws23_c02378{word-spacing:0.007200px;}
.ws6_c02378{word-spacing:0.014400px;}
.ws3_c02378{word-spacing:0.039528px;}
.ws2_c02378{word-spacing:0.065880px;}
.ws3c_c02378{word-spacing:1.058400px;}
.ws38_c02378{word-spacing:1.065600px;}
.ws39_c02378{word-spacing:1.108800px;}
.ws3a_c02378{word-spacing:1.123200px;}
.ws3d_c02378{word-spacing:1.483200px;}
.wsb_c02378{word-spacing:1.728000px;}
.wsc_c02378{word-spacing:1.792800px;}
.ws31_c02378{word-spacing:2.383200px;}
.ws32_c02378{word-spacing:2.476800px;}
.ws26_c02378{word-spacing:4.874400px;}
.ws25_c02378{word-spacing:4.960800px;}
.ws24_c02378{word-spacing:5.032800px;}
.ws9_c02378{word-spacing:7.502400px;}
.ws8_c02378{word-spacing:7.567200px;}
.ws21_c02378{word-spacing:9.259200px;}
.ws20_c02378{word-spacing:9.331200px;}
.ws2c_c02378{word-spacing:9.972000px;}
.ws2b_c02378{word-spacing:10.029600px;}
.ws1a_c02378{word-spacing:10.044000px;}
.ws19_c02378{word-spacing:10.058400px;}
.ws2f_c02378{word-spacing:10.699200px;}
.ws30_c02378{word-spacing:10.728000px;}
.ws37_c02378{word-spacing:10.821600px;}
.ws1c_c02378{word-spacing:13.507200px;}
.ws1b_c02378{word-spacing:13.629600px;}
.ws2a_c02378{word-spacing:15.609600px;}
.ws28_c02378{word-spacing:15.825600px;}
.ws29_c02378{word-spacing:15.883200px;}
.ws15_c02378{word-spacing:17.258400px;}
.ws14_c02378{word-spacing:17.337600px;}
.ws12_c02378{word-spacing:19.778400px;}
.ws11_c02378{word-spacing:19.785600px;}
.wsd_c02378{word-spacing:20.728800px;}
.wse_c02378{word-spacing:20.851200px;}
.ws35_c02378{word-spacing:22.204800px;}
.ws36_c02378{word-spacing:22.320000px;}
.ws3b_c02378{word-spacing:26.971200px;}
.ws22_c02378{word-spacing:29.160000px;}
._4_c02378{margin-left:-29.160000px;}
._3_c02378{margin-left:-13.680000px;}
._2_c02378{margin-left:-11.160000px;}
._1_c02378{margin-left:-10.080000px;}
._6_c02378{margin-left:-3.247200px;}
._0_c02378{margin-left:-1.087200px;}
._7_c02378{width:10.800000px;}
._5_c02378{width:28.728000px;}
.fc0_c02378{color:rgb(0,0,0);}
.fs3_c02378{font-size:11.880000px;}
.fs2_c02378{font-size:47.880000px;}
.fs0_c02378{font-size:65.880000px;}
.fs1_c02378{font-size:72.000000px;}
.y0_c02378{bottom:0.000000px;}
.y3_c02378{bottom:75.720882px;}
.y2_c02378{bottom:113.880225px;}
.y35_c02378{bottom:146.190450px;}
.y34_c02378{bottom:153.750450px;}
.y33_c02378{bottom:174.450600px;}
.y32_c02378{bottom:195.150450px;}
.y31_c02378{bottom:215.850450px;}
.y30_c02378{bottom:236.550450px;}
.y2f_c02378{bottom:257.250450px;}
.y2e_c02378{bottom:277.950450px;}
.y2d_c02378{bottom:298.650450px;}
.y2c_c02378{bottom:319.350450px;}
.y2b_c02378{bottom:340.050450px;}
.y2a_c02378{bottom:360.750600px;}
.y29_c02378{bottom:381.450450px;}
.y28_c02378{bottom:402.150450px;}
.y27_c02378{bottom:422.850450px;}
.y26_c02378{bottom:443.550450px;}
.y25_c02378{bottom:464.250450px;}
.y24_c02378{bottom:484.950600px;}
.y23_c02378{bottom:505.650450px;}
.y22_c02378{bottom:526.350450px;}
.y21_c02378{bottom:547.050450px;}
.y20_c02378{bottom:567.750450px;}
.y1f_c02378{bottom:588.450450px;}
.y1e_c02378{bottom:609.150450px;}
.y1d_c02378{bottom:629.850450px;}
.y1c_c02378{bottom:650.370450px;}
.y1b_c02378{bottom:672.060450px;}
.y1a_c02378{bottom:687.090450px;}
.y19_c02378{bottom:707.790450px;}
.y18_c02378{bottom:728.490450px;}
.y17_c02378{bottom:749.190450px;}
.y16_c02378{bottom:769.890450px;}
.y15_c02378{bottom:790.590450px;}
.y14_c02378{bottom:811.290600px;}
.y13_c02378{bottom:831.990450px;}
.y12_c02378{bottom:852.690450px;}
.y11_c02378{bottom:873.390450px;}
.y10_c02378{bottom:894.090450px;}
.yf_c02378{bottom:914.790600px;}
.ye_c02378{bottom:935.310450px;}
.yd_c02378{bottom:956.010450px;}
.yc_c02378{bottom:975.630450px;}
.yb_c02378{bottom:990.660450px;}
.ya_c02378{bottom:1011.360450px;}
.y9_c02378{bottom:1032.060450px;}
.y8_c02378{bottom:1052.760450px;}
.y7_c02378{bottom:1073.460450px;}
.y6_c02378{bottom:1094.160450px;}
.y5_c02378{bottom:1114.770450px;}
.y4_c02378{bottom:1139.160450px;}
.y1_c02378{bottom:1194.600450px;}
.h8_c02378{height:11.659570px;}
.h3_c02378{height:43.909277px;}
.h6_c02378{height:46.991602px;}
.h2_c02378{height:54.331699px;}
.h1_c02378{height:66.394687px;}
.h7_c02378{height:70.628906px;}
.h5_c02378{height:70.664062px;}
.h4_c02378{height:72.562500px;}
.h0_c02378{height:1263.000000px;}
.w1_c02378{width:892.500000px;}
.w0_c02378{width:892.830000px;}
.x0_c02378{left:0.000000px;}
.x1_c02378{left:127.620000px;}
.x2_c02378{left:438.120675px;}
@media print{
.v0_c02378{vertical-align:0.000000pt;}
.ls11_c02378{letter-spacing:-0.179200pt;}
.ls12_c02378{letter-spacing:-0.038400pt;}
.ls15_c02378{letter-spacing:-0.032000pt;}
.ls14_c02378{letter-spacing:-0.025600pt;}
.ls13_c02378{letter-spacing:-0.019200pt;}
.lsf_c02378{letter-spacing:-0.012800pt;}
.ls10_c02378{letter-spacing:-0.006400pt;}
.lsd_c02378{letter-spacing:0.000000pt;}
.ls2_c02378{letter-spacing:0.006400pt;}
.ls7_c02378{letter-spacing:0.012800pt;}
.ls8_c02378{letter-spacing:0.019200pt;}
.ls0_c02378{letter-spacing:0.023424pt;}
.ls6_c02378{letter-spacing:0.025600pt;}
.ls4_c02378{letter-spacing:0.032000pt;}
.lsa_c02378{letter-spacing:0.038400pt;}
.ls3_c02378{letter-spacing:0.044800pt;}
.ls1_c02378{letter-spacing:0.046848pt;}
.lsc_c02378{letter-spacing:0.051200pt;}
.ls9_c02378{letter-spacing:0.057600pt;}
.ls5_c02378{letter-spacing:0.064000pt;}
.lsb_c02378{letter-spacing:0.070400pt;}
.lse_c02378{letter-spacing:0.081984pt;}
.ws1_c02378{word-spacing:-16.044800pt;}
.ws34_c02378{word-spacing:-0.172800pt;}
.ws10_c02378{word-spacing:-0.160000pt;}
.ws3e_c02378{word-spacing:-0.153600pt;}
.ws0_c02378{word-spacing:-0.140544pt;}
.ws16_c02378{word-spacing:-0.134400pt;}
.ws18_c02378{word-spacing:-0.121600pt;}
.ws3f_c02378{word-spacing:-0.115200pt;}
.ws5_c02378{word-spacing:-0.108800pt;}
.ws2e_c02378{word-spacing:-0.102400pt;}
.ws27_c02378{word-spacing:-0.096000pt;}
.ws1d_c02378{word-spacing:-0.089600pt;}
.ws1f_c02378{word-spacing:-0.083200pt;}
.ws2d_c02378{word-spacing:-0.076800pt;}
.ws33_c02378{word-spacing:-0.070400pt;}
.ws7_c02378{word-spacing:-0.044800pt;}
.ws13_c02378{word-spacing:-0.038400pt;}
.wsa_c02378{word-spacing:-0.032000pt;}
.ws17_c02378{word-spacing:-0.019200pt;}
.wsf_c02378{word-spacing:-0.012800pt;}
.ws1e_c02378{word-spacing:-0.006400pt;}
.ws4_c02378{word-spacing:0.000000pt;}
.ws23_c02378{word-spacing:0.006400pt;}
.ws6_c02378{word-spacing:0.012800pt;}
.ws3_c02378{word-spacing:0.035136pt;}
.ws2_c02378{word-spacing:0.058560pt;}
.ws3c_c02378{word-spacing:0.940800pt;}
.ws38_c02378{word-spacing:0.947200pt;}
.ws39_c02378{word-spacing:0.985600pt;}
.ws3a_c02378{word-spacing:0.998400pt;}
.ws3d_c02378{word-spacing:1.318400pt;}
.wsb_c02378{word-spacing:1.536000pt;}
.wsc_c02378{word-spacing:1.593600pt;}
.ws31_c02378{word-spacing:2.118400pt;}
.ws32_c02378{word-spacing:2.201600pt;}
.ws26_c02378{word-spacing:4.332800pt;}
.ws25_c02378{word-spacing:4.409600pt;}
.ws24_c02378{word-spacing:4.473600pt;}
.ws9_c02378{word-spacing:6.668800pt;}
.ws8_c02378{word-spacing:6.726400pt;}
.ws21_c02378{word-spacing:8.230400pt;}
.ws20_c02378{word-spacing:8.294400pt;}
.ws2c_c02378{word-spacing:8.864000pt;}
.ws2b_c02378{word-spacing:8.915200pt;}
.ws1a_c02378{word-spacing:8.928000pt;}
.ws19_c02378{word-spacing:8.940800pt;}
.ws2f_c02378{word-spacing:9.510400pt;}
.ws30_c02378{word-spacing:9.536000pt;}
.ws37_c02378{word-spacing:9.619200pt;}
.ws1c_c02378{word-spacing:12.006400pt;}
.ws1b_c02378{word-spacing:12.115200pt;}
.ws2a_c02378{word-spacing:13.875200pt;}
.ws28_c02378{word-spacing:14.067200pt;}
.ws29_c02378{word-spacing:14.118400pt;}
.ws15_c02378{word-spacing:15.340800pt;}
.ws14_c02378{word-spacing:15.411200pt;}
.ws12_c02378{word-spacing:17.580800pt;}
.ws11_c02378{word-spacing:17.587200pt;}
.wsd_c02378{word-spacing:18.425600pt;}
.wse_c02378{word-spacing:18.534400pt;}
.ws35_c02378{word-spacing:19.737600pt;}
.ws36_c02378{word-spacing:19.840000pt;}
.ws3b_c02378{word-spacing:23.974400pt;}
.ws22_c02378{word-spacing:25.920000pt;}
._4_c02378{margin-left:-25.920000pt;}
._3_c02378{margin-left:-12.160000pt;}
._2_c02378{margin-left:-9.920000pt;}
._1_c02378{margin-left:-8.960000pt;}
._6_c02378{margin-left:-2.886400pt;}
._0_c02378{margin-left:-0.966400pt;}
._7_c02378{width:9.600000pt;}
._5_c02378{width:25.536000pt;}
.fs3_c02378{font-size:10.560000pt;}
.fs2_c02378{font-size:42.560000pt;}
.fs0_c02378{font-size:58.560000pt;}
.fs1_c02378{font-size:64.000000pt;}
.y0_c02378{bottom:0.000000pt;}
.y3_c02378{bottom:67.307451pt;}
.y2_c02378{bottom:101.226867pt;}
.y35_c02378{bottom:129.947067pt;}
.y34_c02378{bottom:136.667067pt;}
.y33_c02378{bottom:155.067200pt;}
.y32_c02378{bottom:173.467067pt;}
.y31_c02378{bottom:191.867067pt;}
.y30_c02378{bottom:210.267067pt;}
.y2f_c02378{bottom:228.667067pt;}
.y2e_c02378{bottom:247.067067pt;}
.y2d_c02378{bottom:265.467067pt;}
.y2c_c02378{bottom:283.867067pt;}
.y2b_c02378{bottom:302.267067pt;}
.y2a_c02378{bottom:320.667200pt;}
.y29_c02378{bottom:339.067067pt;}
.y28_c02378{bottom:357.467067pt;}
.y27_c02378{bottom:375.867067pt;}
.y26_c02378{bottom:394.267067pt;}
.y25_c02378{bottom:412.667067pt;}
.y24_c02378{bottom:431.067200pt;}
.y23_c02378{bottom:449.467067pt;}
.y22_c02378{bottom:467.867067pt;}
.y21_c02378{bottom:486.267067pt;}
.y20_c02378{bottom:504.667067pt;}
.y1f_c02378{bottom:523.067067pt;}
.y1e_c02378{bottom:541.467067pt;}
.y1d_c02378{bottom:559.867067pt;}
.y1c_c02378{bottom:578.107067pt;}
.y1b_c02378{bottom:597.387067pt;}
.y1a_c02378{bottom:610.747067pt;}
.y19_c02378{bottom:629.147067pt;}
.y18_c02378{bottom:647.547067pt;}
.y17_c02378{bottom:665.947067pt;}
.y16_c02378{bottom:684.347067pt;}
.y15_c02378{bottom:702.747067pt;}
.y14_c02378{bottom:721.147200pt;}
.y13_c02378{bottom:739.547067pt;}
.y12_c02378{bottom:757.947067pt;}
.y11_c02378{bottom:776.347067pt;}
.y10_c02378{bottom:794.747067pt;}
.yf_c02378{bottom:813.147200pt;}
.ye_c02378{bottom:831.387067pt;}
.yd_c02378{bottom:849.787067pt;}
.yc_c02378{bottom:867.227067pt;}
.yb_c02378{bottom:880.587067pt;}
.ya_c02378{bottom:898.987067pt;}
.y9_c02378{bottom:917.387067pt;}
.y8_c02378{bottom:935.787067pt;}
.y7_c02378{bottom:954.187067pt;}
.y6_c02378{bottom:972.587067pt;}
.y5_c02378{bottom:990.907067pt;}
.y4_c02378{bottom:1012.587067pt;}
.y1_c02378{bottom:1061.867067pt;}
.h8_c02378{height:10.364062pt;}
.h3_c02378{height:39.030469pt;}
.h6_c02378{height:41.770312pt;}
.h2_c02378{height:48.294844pt;}
.h1_c02378{height:59.017500pt;}
.h7_c02378{height:62.781250pt;}
.h5_c02378{height:62.812500pt;}
.h4_c02378{height:64.500000pt;}
.h0_c02378{height:1122.666667pt;}
.w1_c02378{width:793.333333pt;}
.w0_c02378{width:793.626667pt;}
.x0_c02378{left:0.000000pt;}
.x1_c02378{left:113.440000pt;}
.x2_c02378{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3049f71d4ba53c7bb0259ee7.woff2')format("woff");}.ff1_c02379{font-family:ff1_c02379;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02379{font-family:ff2_c02379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02379;src:url('chunks/assets/font_4f581026b92c246964411cb4.woff2')format("woff");}.ff3_c02379{font-family:ff3_c02379;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02379;src:url('chunks/assets/font_3885575365280df15f1809a9.woff2')format("woff");}.ff4_c02379{font-family:ff4_c02379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c02379{letter-spacing:-0.093600px;}
.ls12_c02379{letter-spacing:-0.021600px;}
.ls11_c02379{letter-spacing:-0.014400px;}
.ls13_c02379{letter-spacing:-0.007200px;}
.lsf_c02379{letter-spacing:0.000000px;}
.ls3_c02379{letter-spacing:0.007200px;}
.ls6_c02379{letter-spacing:0.014400px;}
.ls4_c02379{letter-spacing:0.021600px;}
.ls0_c02379{letter-spacing:0.026352px;}
.ls7_c02379{letter-spacing:0.028800px;}
.lsb_c02379{letter-spacing:0.036000px;}
.ls5_c02379{letter-spacing:0.043200px;}
.lsd_c02379{letter-spacing:0.050400px;}
.ls1_c02379{letter-spacing:0.052704px;}
.ls9_c02379{letter-spacing:0.057600px;}
.ls8_c02379{letter-spacing:0.079200px;}
.ls2_c02379{letter-spacing:0.085644px;}
.ls10_c02379{letter-spacing:0.092232px;}
.lse_c02379{letter-spacing:0.100800px;}
.lsc_c02379{letter-spacing:0.108000px;}
.lsa_c02379{letter-spacing:0.115200px;}
.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;}
}
.wsf_c02379{word-spacing:-0.367200px;}
.ws1a_c02379{word-spacing:-0.352800px;}
.ws15_c02379{word-spacing:-0.194400px;}
.ws1b_c02379{word-spacing:-0.187200px;}
.ws16_c02379{word-spacing:-0.165600px;}
.ws18_c02379{word-spacing:-0.158400px;}
.ws0_c02379{word-spacing:-0.158112px;}
.ws10_c02379{word-spacing:-0.144000px;}
.wsa_c02379{word-spacing:-0.115200px;}
.ws13_c02379{word-spacing:-0.108000px;}
.ws19_c02379{word-spacing:-0.100800px;}
.ws9_c02379{word-spacing:-0.093600px;}
.ws8_c02379{word-spacing:-0.086400px;}
.wsc_c02379{word-spacing:-0.079200px;}
.ws14_c02379{word-spacing:-0.072000px;}
.wse_c02379{word-spacing:-0.057600px;}
.ws6_c02379{word-spacing:-0.043200px;}
.ws12_c02379{word-spacing:-0.036000px;}
.wsd_c02379{word-spacing:-0.028800px;}
.ws7_c02379{word-spacing:-0.021600px;}
.wsb_c02379{word-spacing:-0.014400px;}
.ws5_c02379{word-spacing:-0.007200px;}
.ws3_c02379{word-spacing:0.000000px;}
.ws4_c02379{word-spacing:0.006588px;}
.ws17_c02379{word-spacing:0.007200px;}
.ws11_c02379{word-spacing:0.021600px;}
.ws2_c02379{word-spacing:0.039528px;}
.ws1_c02379{word-spacing:0.065880px;}
._0_c02379{margin-left:-1.087020px;}
._1_c02379{width:1.058400px;}
.fc0_c02379{color:rgb(0,0,0);}
.fs0_c02379{font-size:65.880000px;}
.fs1_c02379{font-size:72.000000px;}
.y0_c02379{bottom:0.000000px;}
.y3_c02379{bottom:75.720882px;}
.y2_c02379{bottom:113.880225px;}
.y33_c02379{bottom:151.500450px;}
.y32_c02379{bottom:175.260450px;}
.y31_c02379{bottom:199.110450px;}
.y30_c02379{bottom:222.870450px;}
.y2f_c02379{bottom:246.720450px;}
.y2e_c02379{bottom:268.230450px;}
.y2d_c02379{bottom:288.930450px;}
.y2c_c02379{bottom:309.630450px;}
.y2b_c02379{bottom:330.330450px;}
.y2a_c02379{bottom:351.030450px;}
.y29_c02379{bottom:371.730450px;}
.y28_c02379{bottom:392.430450px;}
.y27_c02379{bottom:413.130450px;}
.y26_c02379{bottom:433.830450px;}
.y25_c02379{bottom:454.530450px;}
.y24_c02379{bottom:475.230450px;}
.y23_c02379{bottom:495.930450px;}
.y22_c02379{bottom:516.630450px;}
.y21_c02379{bottom:537.330450px;}
.y20_c02379{bottom:558.030450px;}
.y1f_c02379{bottom:578.730450px;}
.y1e_c02379{bottom:599.430450px;}
.y1d_c02379{bottom:620.130450px;}
.y1c_c02379{bottom:640.830450px;}
.y1b_c02379{bottom:661.440450px;}
.y1a_c02379{bottom:682.140450px;}
.y19_c02379{bottom:702.840450px;}
.y18_c02379{bottom:723.540450px;}
.y17_c02379{bottom:744.240450px;}
.y16_c02379{bottom:764.940450px;}
.y15_c02379{bottom:785.640450px;}
.y14_c02379{bottom:806.340450px;}
.y13_c02379{bottom:827.040450px;}
.y12_c02379{bottom:847.740450px;}
.y11_c02379{bottom:868.440450px;}
.y10_c02379{bottom:889.140450px;}
.yf_c02379{bottom:909.840450px;}
.ye_c02379{bottom:930.540450px;}
.yd_c02379{bottom:951.240450px;}
.yc_c02379{bottom:971.940450px;}
.yb_c02379{bottom:992.640450px;}
.ya_c02379{bottom:1013.340450px;}
.y9_c02379{bottom:1034.040450px;}
.y8_c02379{bottom:1054.740450px;}
.y7_c02379{bottom:1075.440450px;}
.y6_c02379{bottom:1096.140450px;}
.y5_c02379{bottom:1116.660450px;}
.y4_c02379{bottom:1140.690450px;}
.y1_c02379{bottom:1194.600450px;}
.h3_c02379{height:43.909277px;}
.h2_c02379{height:54.331699px;}
.h1_c02379{height:66.394687px;}
.h5_c02379{height:70.664062px;}
.h4_c02379{height:72.562500px;}
.h0_c02379{height:1263.000000px;}
.w1_c02379{width:892.500000px;}
.w0_c02379{width:892.830000px;}
.x0_c02379{left:0.000000px;}
.x1_c02379{left:127.620000px;}
.x2_c02379{left:438.120675px;}
@media print{
.v0_c02379{vertical-align:0.000000pt;}
.ls14_c02379{letter-spacing:-0.083200pt;}
.ls12_c02379{letter-spacing:-0.019200pt;}
.ls11_c02379{letter-spacing:-0.012800pt;}
.ls13_c02379{letter-spacing:-0.006400pt;}
.lsf_c02379{letter-spacing:0.000000pt;}
.ls3_c02379{letter-spacing:0.006400pt;}
.ls6_c02379{letter-spacing:0.012800pt;}
.ls4_c02379{letter-spacing:0.019200pt;}
.ls0_c02379{letter-spacing:0.023424pt;}
.ls7_c02379{letter-spacing:0.025600pt;}
.lsb_c02379{letter-spacing:0.032000pt;}
.ls5_c02379{letter-spacing:0.038400pt;}
.lsd_c02379{letter-spacing:0.044800pt;}
.ls1_c02379{letter-spacing:0.046848pt;}
.ls9_c02379{letter-spacing:0.051200pt;}
.ls8_c02379{letter-spacing:0.070400pt;}
.ls2_c02379{letter-spacing:0.076128pt;}
.ls10_c02379{letter-spacing:0.081984pt;}
.lse_c02379{letter-spacing:0.089600pt;}
.lsc_c02379{letter-spacing:0.096000pt;}
.lsa_c02379{letter-spacing:0.102400pt;}
.wsf_c02379{word-spacing:-0.326400pt;}
.ws1a_c02379{word-spacing:-0.313600pt;}
.ws15_c02379{word-spacing:-0.172800pt;}
.ws1b_c02379{word-spacing:-0.166400pt;}
.ws16_c02379{word-spacing:-0.147200pt;}
.ws18_c02379{word-spacing:-0.140800pt;}
.ws0_c02379{word-spacing:-0.140544pt;}
.ws10_c02379{word-spacing:-0.128000pt;}
.wsa_c02379{word-spacing:-0.102400pt;}
.ws13_c02379{word-spacing:-0.096000pt;}
.ws19_c02379{word-spacing:-0.089600pt;}
.ws9_c02379{word-spacing:-0.083200pt;}
.ws8_c02379{word-spacing:-0.076800pt;}
.wsc_c02379{word-spacing:-0.070400pt;}
.ws14_c02379{word-spacing:-0.064000pt;}
.wse_c02379{word-spacing:-0.051200pt;}
.ws6_c02379{word-spacing:-0.038400pt;}
.ws12_c02379{word-spacing:-0.032000pt;}
.wsd_c02379{word-spacing:-0.025600pt;}
.ws7_c02379{word-spacing:-0.019200pt;}
.wsb_c02379{word-spacing:-0.012800pt;}
.ws5_c02379{word-spacing:-0.006400pt;}
.ws3_c02379{word-spacing:0.000000pt;}
.ws4_c02379{word-spacing:0.005856pt;}
.ws17_c02379{word-spacing:0.006400pt;}
.ws11_c02379{word-spacing:0.019200pt;}
.ws2_c02379{word-spacing:0.035136pt;}
.ws1_c02379{word-spacing:0.058560pt;}
._0_c02379{margin-left:-0.966240pt;}
._1_c02379{width:0.940800pt;}
.fs0_c02379{font-size:58.560000pt;}
.fs1_c02379{font-size:64.000000pt;}
.y0_c02379{bottom:0.000000pt;}
.y3_c02379{bottom:67.307451pt;}
.y2_c02379{bottom:101.226867pt;}
.y33_c02379{bottom:134.667067pt;}
.y32_c02379{bottom:155.787067pt;}
.y31_c02379{bottom:176.987067pt;}
.y30_c02379{bottom:198.107067pt;}
.y2f_c02379{bottom:219.307067pt;}
.y2e_c02379{bottom:238.427067pt;}
.y2d_c02379{bottom:256.827067pt;}
.y2c_c02379{bottom:275.227067pt;}
.y2b_c02379{bottom:293.627067pt;}
.y2a_c02379{bottom:312.027067pt;}
.y29_c02379{bottom:330.427067pt;}
.y28_c02379{bottom:348.827067pt;}
.y27_c02379{bottom:367.227067pt;}
.y26_c02379{bottom:385.627067pt;}
.y25_c02379{bottom:404.027067pt;}
.y24_c02379{bottom:422.427067pt;}
.y23_c02379{bottom:440.827067pt;}
.y22_c02379{bottom:459.227067pt;}
.y21_c02379{bottom:477.627067pt;}
.y20_c02379{bottom:496.027067pt;}
.y1f_c02379{bottom:514.427067pt;}
.y1e_c02379{bottom:532.827067pt;}
.y1d_c02379{bottom:551.227067pt;}
.y1c_c02379{bottom:569.627067pt;}
.y1b_c02379{bottom:587.947067pt;}
.y1a_c02379{bottom:606.347067pt;}
.y19_c02379{bottom:624.747067pt;}
.y18_c02379{bottom:643.147067pt;}
.y17_c02379{bottom:661.547067pt;}
.y16_c02379{bottom:679.947067pt;}
.y15_c02379{bottom:698.347067pt;}
.y14_c02379{bottom:716.747067pt;}
.y13_c02379{bottom:735.147067pt;}
.y12_c02379{bottom:753.547067pt;}
.y11_c02379{bottom:771.947067pt;}
.y10_c02379{bottom:790.347067pt;}
.yf_c02379{bottom:808.747067pt;}
.ye_c02379{bottom:827.147067pt;}
.yd_c02379{bottom:845.547067pt;}
.yc_c02379{bottom:863.947067pt;}
.yb_c02379{bottom:882.347067pt;}
.ya_c02379{bottom:900.747067pt;}
.y9_c02379{bottom:919.147067pt;}
.y8_c02379{bottom:937.547067pt;}
.y7_c02379{bottom:955.947067pt;}
.y6_c02379{bottom:974.347067pt;}
.y5_c02379{bottom:992.587067pt;}
.y4_c02379{bottom:1013.947067pt;}
.y1_c02379{bottom:1061.867067pt;}
.h3_c02379{height:39.030469pt;}
.h2_c02379{height:48.294844pt;}
.h1_c02379{height:59.017500pt;}
.h5_c02379{height:62.812500pt;}
.h4_c02379{height:64.500000pt;}
.h0_c02379{height:1122.666667pt;}
.w1_c02379{width:793.333333pt;}
.w0_c02379{width:793.626667pt;}
.x0_c02379{left:0.000000pt;}
.x1_c02379{left:113.440000pt;}
.x2_c02379{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9386b12689a204f3eea9d142.woff2')format("woff");}.ff1_c02380{font-family:ff1_c02380;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02380{font-family:ff2_c02380;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02380;src:url('chunks/assets/font_4690e0f2f55d336eb5125e45.woff2')format("woff");}.ff3_c02380{font-family:ff3_c02380;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02380;src:url('chunks/assets/font_9054f86a81512176cc0939e6.woff2')format("woff");}.ff4_c02380{font-family:ff4_c02380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsf_c02380{letter-spacing:-0.028800px;}
.lse_c02380{letter-spacing:-0.021600px;}
.ls10_c02380{letter-spacing:-0.007200px;}
.lsc_c02380{letter-spacing:0.000000px;}
.ls5_c02380{letter-spacing:0.007200px;}
.ls6_c02380{letter-spacing:0.014400px;}
.ls3_c02380{letter-spacing:0.021600px;}
.ls0_c02380{letter-spacing:0.026352px;}
.ls8_c02380{letter-spacing:0.028800px;}
.ls9_c02380{letter-spacing:0.036000px;}
.ls7_c02380{letter-spacing:0.043200px;}
.ls4_c02380{letter-spacing:0.050400px;}
.ls1_c02380{letter-spacing:0.052704px;}
.lsb_c02380{letter-spacing:0.057600px;}
.ls2_c02380{letter-spacing:0.065880px;}
.lsa_c02380{letter-spacing:0.086400px;}
.lsd_c02380{letter-spacing:0.092232px;}
.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;}
}
.ws1b_c02380{word-spacing:-0.374400px;}
.ws12_c02380{word-spacing:-0.223200px;}
.ws1a_c02380{word-spacing:-0.187200px;}
.ws0_c02380{word-spacing:-0.158112px;}
.ws14_c02380{word-spacing:-0.129600px;}
.ws1e_c02380{word-spacing:-0.108000px;}
.ws29_c02380{word-spacing:-0.093600px;}
.ws1f_c02380{word-spacing:-0.086400px;}
.ws25_c02380{word-spacing:-0.028800px;}
.ws5_c02380{word-spacing:-0.021600px;}
.ws15_c02380{word-spacing:-0.014400px;}
.ws19_c02380{word-spacing:-0.007200px;}
.ws3_c02380{word-spacing:0.000000px;}
.ws16_c02380{word-spacing:0.021600px;}
.ws4_c02380{word-spacing:0.026352px;}
.ws2_c02380{word-spacing:0.039528px;}
.ws1_c02380{word-spacing:0.065880px;}
.wse_c02380{word-spacing:2.131200px;}
.ws10_c02380{word-spacing:2.138400px;}
.wsf_c02380{word-spacing:2.224800px;}
.ws2a_c02380{word-spacing:2.476800px;}
.wsb_c02380{word-spacing:3.355200px;}
.wsa_c02380{word-spacing:3.412800px;}
.ws9_c02380{word-spacing:3.528000px;}
.ws20_c02380{word-spacing:6.458400px;}
.ws21_c02380{word-spacing:6.472800px;}
.ws24_c02380{word-spacing:9.208800px;}
.ws22_c02380{word-spacing:9.295200px;}
.ws23_c02380{word-spacing:9.360000px;}
.wsc_c02380{word-spacing:10.677600px;}
.wsd_c02380{word-spacing:10.778400px;}
.ws13_c02380{word-spacing:14.400000px;}
.ws18_c02380{word-spacing:15.768000px;}
.ws17_c02380{word-spacing:15.832800px;}
.ws2c_c02380{word-spacing:18.266400px;}
.ws2b_c02380{word-spacing:18.280800px;}
.ws11_c02380{word-spacing:18.331200px;}
.ws26_c02380{word-spacing:18.345600px;}
.ws27_c02380{word-spacing:18.367200px;}
.ws1c_c02380{word-spacing:22.284000px;}
.ws1d_c02380{word-spacing:22.320000px;}
.ws6_c02380{word-spacing:24.026400px;}
.ws7_c02380{word-spacing:26.589600px;}
.ws8_c02380{word-spacing:26.690400px;}
.ws28_c02380{word-spacing:34.459200px;}
._0_c02380{margin-left:-1.044000px;}
.fc0_c02380{color:rgb(0,0,0);}
.fs0_c02380{font-size:65.880000px;}
.fs1_c02380{font-size:72.000000px;}
.y0_c02380{bottom:0.000000px;}
.y3_c02380{bottom:75.720882px;}
.y2_c02380{bottom:113.880225px;}
.y2e_c02380{bottom:140.070450px;}
.y2d_c02380{bottom:163.920450px;}
.y2c_c02380{bottom:187.680450px;}
.y2b_c02380{bottom:211.530450px;}
.y2a_c02380{bottom:235.290450px;}
.y29_c02380{bottom:259.140450px;}
.y28_c02380{bottom:282.900450px;}
.y27_c02380{bottom:306.660450px;}
.y26_c02380{bottom:330.510450px;}
.y25_c02380{bottom:354.270450px;}
.y24_c02380{bottom:378.840450px;}
.y23_c02380{bottom:402.690450px;}
.y22_c02380{bottom:426.450600px;}
.y21_c02380{bottom:450.300450px;}
.y20_c02380{bottom:474.060450px;}
.y1f_c02380{bottom:497.910450px;}
.y1e_c02380{bottom:521.670450px;}
.y1d_c02380{bottom:545.520450px;}
.y1c_c02380{bottom:569.280450px;}
.y1b_c02380{bottom:593.130450px;}
.y1a_c02380{bottom:616.890450px;}
.y19_c02380{bottom:640.740450px;}
.y18_c02380{bottom:664.500450px;}
.y17_c02380{bottom:688.260450px;}
.y16_c02380{bottom:711.930450px;}
.y15_c02380{bottom:735.870450px;}
.y14_c02380{bottom:759.720450px;}
.y13_c02380{bottom:783.480450px;}
.y12_c02380{bottom:807.330450px;}
.y11_c02380{bottom:831.090450px;}
.y10_c02380{bottom:854.940450px;}
.yf_c02380{bottom:878.700450px;}
.ye_c02380{bottom:902.550450px;}
.yd_c02380{bottom:926.310450px;}
.yc_c02380{bottom:950.160450px;}
.yb_c02380{bottom:973.920450px;}
.ya_c02380{bottom:997.770450px;}
.y9_c02380{bottom:1021.530450px;}
.y8_c02380{bottom:1045.380450px;}
.y7_c02380{bottom:1069.140450px;}
.y6_c02380{bottom:1092.810450px;}
.y5_c02380{bottom:1116.570450px;}
.y4_c02380{bottom:1140.690450px;}
.y1_c02380{bottom:1194.600450px;}
.h3_c02380{height:43.909277px;}
.h2_c02380{height:54.331699px;}
.h1_c02380{height:66.394687px;}
.h5_c02380{height:70.664062px;}
.h4_c02380{height:72.562500px;}
.h0_c02380{height:1263.000000px;}
.w1_c02380{width:892.500000px;}
.w0_c02380{width:892.830000px;}
.x0_c02380{left:0.000000px;}
.x1_c02380{left:127.620000px;}
.x2_c02380{left:438.120675px;}
@media print{
.v0_c02380{vertical-align:0.000000pt;}
.lsf_c02380{letter-spacing:-0.025600pt;}
.lse_c02380{letter-spacing:-0.019200pt;}
.ls10_c02380{letter-spacing:-0.006400pt;}
.lsc_c02380{letter-spacing:0.000000pt;}
.ls5_c02380{letter-spacing:0.006400pt;}
.ls6_c02380{letter-spacing:0.012800pt;}
.ls3_c02380{letter-spacing:0.019200pt;}
.ls0_c02380{letter-spacing:0.023424pt;}
.ls8_c02380{letter-spacing:0.025600pt;}
.ls9_c02380{letter-spacing:0.032000pt;}
.ls7_c02380{letter-spacing:0.038400pt;}
.ls4_c02380{letter-spacing:0.044800pt;}
.ls1_c02380{letter-spacing:0.046848pt;}
.lsb_c02380{letter-spacing:0.051200pt;}
.ls2_c02380{letter-spacing:0.058560pt;}
.lsa_c02380{letter-spacing:0.076800pt;}
.lsd_c02380{letter-spacing:0.081984pt;}
.ws1b_c02380{word-spacing:-0.332800pt;}
.ws12_c02380{word-spacing:-0.198400pt;}
.ws1a_c02380{word-spacing:-0.166400pt;}
.ws0_c02380{word-spacing:-0.140544pt;}
.ws14_c02380{word-spacing:-0.115200pt;}
.ws1e_c02380{word-spacing:-0.096000pt;}
.ws29_c02380{word-spacing:-0.083200pt;}
.ws1f_c02380{word-spacing:-0.076800pt;}
.ws25_c02380{word-spacing:-0.025600pt;}
.ws5_c02380{word-spacing:-0.019200pt;}
.ws15_c02380{word-spacing:-0.012800pt;}
.ws19_c02380{word-spacing:-0.006400pt;}
.ws3_c02380{word-spacing:0.000000pt;}
.ws16_c02380{word-spacing:0.019200pt;}
.ws4_c02380{word-spacing:0.023424pt;}
.ws2_c02380{word-spacing:0.035136pt;}
.ws1_c02380{word-spacing:0.058560pt;}
.wse_c02380{word-spacing:1.894400pt;}
.ws10_c02380{word-spacing:1.900800pt;}
.wsf_c02380{word-spacing:1.977600pt;}
.ws2a_c02380{word-spacing:2.201600pt;}
.wsb_c02380{word-spacing:2.982400pt;}
.wsa_c02380{word-spacing:3.033600pt;}
.ws9_c02380{word-spacing:3.136000pt;}
.ws20_c02380{word-spacing:5.740800pt;}
.ws21_c02380{word-spacing:5.753600pt;}
.ws24_c02380{word-spacing:8.185600pt;}
.ws22_c02380{word-spacing:8.262400pt;}
.ws23_c02380{word-spacing:8.320000pt;}
.wsc_c02380{word-spacing:9.491200pt;}
.wsd_c02380{word-spacing:9.580800pt;}
.ws13_c02380{word-spacing:12.800000pt;}
.ws18_c02380{word-spacing:14.016000pt;}
.ws17_c02380{word-spacing:14.073600pt;}
.ws2c_c02380{word-spacing:16.236800pt;}
.ws2b_c02380{word-spacing:16.249600pt;}
.ws11_c02380{word-spacing:16.294400pt;}
.ws26_c02380{word-spacing:16.307200pt;}
.ws27_c02380{word-spacing:16.326400pt;}
.ws1c_c02380{word-spacing:19.808000pt;}
.ws1d_c02380{word-spacing:19.840000pt;}
.ws6_c02380{word-spacing:21.356800pt;}
.ws7_c02380{word-spacing:23.635200pt;}
.ws8_c02380{word-spacing:23.724800pt;}
.ws28_c02380{word-spacing:30.630400pt;}
._0_c02380{margin-left:-0.928000pt;}
.fs0_c02380{font-size:58.560000pt;}
.fs1_c02380{font-size:64.000000pt;}
.y0_c02380{bottom:0.000000pt;}
.y3_c02380{bottom:67.307451pt;}
.y2_c02380{bottom:101.226867pt;}
.y2e_c02380{bottom:124.507067pt;}
.y2d_c02380{bottom:145.707067pt;}
.y2c_c02380{bottom:166.827067pt;}
.y2b_c02380{bottom:188.027067pt;}
.y2a_c02380{bottom:209.147067pt;}
.y29_c02380{bottom:230.347067pt;}
.y28_c02380{bottom:251.467067pt;}
.y27_c02380{bottom:272.587067pt;}
.y26_c02380{bottom:293.787067pt;}
.y25_c02380{bottom:314.907067pt;}
.y24_c02380{bottom:336.747067pt;}
.y23_c02380{bottom:357.947067pt;}
.y22_c02380{bottom:379.067200pt;}
.y21_c02380{bottom:400.267067pt;}
.y20_c02380{bottom:421.387067pt;}
.y1f_c02380{bottom:442.587067pt;}
.y1e_c02380{bottom:463.707067pt;}
.y1d_c02380{bottom:484.907067pt;}
.y1c_c02380{bottom:506.027067pt;}
.y1b_c02380{bottom:527.227067pt;}
.y1a_c02380{bottom:548.347067pt;}
.y19_c02380{bottom:569.547067pt;}
.y18_c02380{bottom:590.667067pt;}
.y17_c02380{bottom:611.787067pt;}
.y16_c02380{bottom:632.827067pt;}
.y15_c02380{bottom:654.107067pt;}
.y14_c02380{bottom:675.307067pt;}
.y13_c02380{bottom:696.427067pt;}
.y12_c02380{bottom:717.627067pt;}
.y11_c02380{bottom:738.747067pt;}
.y10_c02380{bottom:759.947067pt;}
.yf_c02380{bottom:781.067067pt;}
.ye_c02380{bottom:802.267067pt;}
.yd_c02380{bottom:823.387067pt;}
.yc_c02380{bottom:844.587067pt;}
.yb_c02380{bottom:865.707067pt;}
.ya_c02380{bottom:886.907067pt;}
.y9_c02380{bottom:908.027067pt;}
.y8_c02380{bottom:929.227067pt;}
.y7_c02380{bottom:950.347067pt;}
.y6_c02380{bottom:971.387067pt;}
.y5_c02380{bottom:992.507067pt;}
.y4_c02380{bottom:1013.947067pt;}
.y1_c02380{bottom:1061.867067pt;}
.h3_c02380{height:39.030469pt;}
.h2_c02380{height:48.294844pt;}
.h1_c02380{height:59.017500pt;}
.h5_c02380{height:62.812500pt;}
.h4_c02380{height:64.500000pt;}
.h0_c02380{height:1122.666667pt;}
.w1_c02380{width:793.333333pt;}
.w0_c02380{width:793.626667pt;}
.x0_c02380{left:0.000000pt;}
.x1_c02380{left:113.440000pt;}
.x2_c02380{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86cfac6372a274d90eef4a50.woff2')format("woff");}.ff1_c02381{font-family:ff1_c02381;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02381{font-family:ff2_c02381;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02381;src:url('chunks/assets/font_ec6d7b252ba0223683a85c23.woff2')format("woff");}.ff3_c02381{font-family:ff3_c02381;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02381;src:url('chunks/assets/font_1210a296f134ded53e36eab6.woff2')format("woff");}.ff4_c02381{font-family:ff4_c02381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls18_c02381{letter-spacing:-0.079200px;}
.ls1a_c02381{letter-spacing:-0.057600px;}
.ls1d_c02381{letter-spacing:-0.050400px;}
.ls1c_c02381{letter-spacing:-0.043200px;}
.ls17_c02381{letter-spacing:-0.036000px;}
.ls1b_c02381{letter-spacing:-0.028800px;}
.ls19_c02381{letter-spacing:-0.014400px;}
.ls16_c02381{letter-spacing:-0.007200px;}
.ls14_c02381{letter-spacing:0.000000px;}
.lsb_c02381{letter-spacing:0.007200px;}
.lsf_c02381{letter-spacing:0.014400px;}
.ls4_c02381{letter-spacing:0.019764px;}
.ls9_c02381{letter-spacing:0.021600px;}
.ls0_c02381{letter-spacing:0.026352px;}
.ls5_c02381{letter-spacing:0.028800px;}
.ls8_c02381{letter-spacing:0.036000px;}
.ls6_c02381{letter-spacing:0.043200px;}
.ls3_c02381{letter-spacing:0.046116px;}
.ls13_c02381{letter-spacing:0.050400px;}
.ls1_c02381{letter-spacing:0.052704px;}
.lsc_c02381{letter-spacing:0.057600px;}
.ls7_c02381{letter-spacing:0.072000px;}
.ls2_c02381{letter-spacing:0.079056px;}
.lsd_c02381{letter-spacing:0.079200px;}
.ls11_c02381{letter-spacing:0.086400px;}
.ls15_c02381{letter-spacing:0.092232px;}
.lsa_c02381{letter-spacing:0.093600px;}
.ls10_c02381{letter-spacing:0.098820px;}
.ls12_c02381{letter-spacing:0.100800px;}
.lse_c02381{letter-spacing:0.108000px;}
.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;}
}
.ws2e_c02381{word-spacing:-0.368928px;}
.ws16_c02381{word-spacing:-0.201600px;}
.ws2c_c02381{word-spacing:-0.194400px;}
.ws24_c02381{word-spacing:-0.158400px;}
.ws0_c02381{word-spacing:-0.158112px;}
.ws11_c02381{word-spacing:-0.151200px;}
.ws1c_c02381{word-spacing:-0.108000px;}
.ws12_c02381{word-spacing:-0.079200px;}
.wsc_c02381{word-spacing:-0.043200px;}
.ws25_c02381{word-spacing:-0.036000px;}
.ws17_c02381{word-spacing:-0.021600px;}
.ws7_c02381{word-spacing:-0.014400px;}
.ws2d_c02381{word-spacing:-0.007200px;}
.ws3_c02381{word-spacing:0.000000px;}
.wsd_c02381{word-spacing:0.007200px;}
.ws4_c02381{word-spacing:0.013176px;}
.ws2_c02381{word-spacing:0.039528px;}
.ws5_c02381{word-spacing:0.046116px;}
.ws1_c02381{word-spacing:0.065880px;}
.ws6_c02381{word-spacing:0.072468px;}
.ws27_c02381{word-spacing:0.576000px;}
.ws9_c02381{word-spacing:0.676800px;}
.ws8_c02381{word-spacing:0.691200px;}
.ws26_c02381{word-spacing:0.720000px;}
.ws15_c02381{word-spacing:4.147200px;}
.ws13_c02381{word-spacing:4.204800px;}
.ws14_c02381{word-spacing:4.233600px;}
.ws33_c02381{word-spacing:4.291200px;}
.ws3c_c02381{word-spacing:4.557600px;}
.ws3d_c02381{word-spacing:4.600800px;}
.ws34_c02381{word-spacing:6.328800px;}
.ws35_c02381{word-spacing:6.379200px;}
.ws36_c02381{word-spacing:7.452000px;}
.ws37_c02381{word-spacing:7.524000px;}
.wsb_c02381{word-spacing:9.273600px;}
.wsa_c02381{word-spacing:9.288000px;}
.ws19_c02381{word-spacing:9.986400px;}
.ws18_c02381{word-spacing:10.058400px;}
.ws1b_c02381{word-spacing:10.094400px;}
.ws1a_c02381{word-spacing:10.159200px;}
.ws2b_c02381{word-spacing:12.168000px;}
.ws21_c02381{word-spacing:13.924800px;}
.ws23_c02381{word-spacing:13.939200px;}
.wse_c02381{word-spacing:13.996800px;}
.wsf_c02381{word-spacing:14.004000px;}
.ws10_c02381{word-spacing:14.011200px;}
.ws22_c02381{word-spacing:14.068800px;}
.ws20_c02381{word-spacing:14.356800px;}
.ws3b_c02381{word-spacing:15.760800px;}
.ws39_c02381{word-spacing:16.574400px;}
.ws38_c02381{word-spacing:16.833600px;}
.ws3a_c02381{word-spacing:16.848000px;}
.ws31_c02381{word-spacing:19.008000px;}
.ws32_c02381{word-spacing:19.080000px;}
.ws30_c02381{word-spacing:19.778400px;}
.ws2f_c02381{word-spacing:19.785600px;}
.ws1d_c02381{word-spacing:28.792800px;}
.ws1e_c02381{word-spacing:28.800000px;}
.ws1f_c02381{word-spacing:28.857600px;}
.ws2a_c02381{word-spacing:29.383200px;}
.ws29_c02381{word-spacing:29.527200px;}
.ws28_c02381{word-spacing:29.563200px;}
._1_c02381{margin-left:-19.022400px;}
._0_c02381{margin-left:-1.238400px;}
.fc1_c02381{color:rgb(76,76,76);}
.fc0_c02381{color:rgb(0,0,0);}
.fs0_c02381{font-size:65.880000px;}
.fs1_c02381{font-size:72.000000px;}
.y0_c02381{bottom:0.000000px;}
.y3_c02381{bottom:75.720882px;}
.y2_c02381{bottom:113.880225px;}
.y32_c02381{bottom:156.450450px;}
.y31_c02381{bottom:180.300450px;}
.y30_c02381{bottom:204.060450px;}
.y2f_c02381{bottom:227.910450px;}
.y2e_c02381{bottom:251.670450px;}
.y2d_c02381{bottom:275.700450px;}
.y2c_c02381{bottom:295.050450px;}
.y2b_c02381{bottom:315.750450px;}
.y2a_c02381{bottom:336.450450px;}
.y29_c02381{bottom:357.150450px;}
.y28_c02381{bottom:377.850450px;}
.y27_c02381{bottom:398.550450px;}
.y26_c02381{bottom:419.250600px;}
.y25_c02381{bottom:439.950600px;}
.y24_c02381{bottom:460.650450px;}
.y23_c02381{bottom:481.170450px;}
.y22_c02381{bottom:501.870600px;}
.y21_c02381{bottom:525.900450px;}
.y20_c02381{bottom:549.030450px;}
.y1f_c02381{bottom:572.880450px;}
.y1e_c02381{bottom:596.640450px;}
.y1d_c02381{bottom:618.240450px;}
.y1c_c02381{bottom:638.760450px;}
.y1b_c02381{bottom:659.640450px;}
.y1a_c02381{bottom:680.340450px;}
.y19_c02381{bottom:701.040450px;}
.y18_c02381{bottom:721.740450px;}
.y17_c02381{bottom:742.440450px;}
.y16_c02381{bottom:762.960450px;}
.y15_c02381{bottom:783.840450px;}
.y14_c02381{bottom:804.540600px;}
.y13_c02381{bottom:825.240450px;}
.y12_c02381{bottom:845.940450px;}
.y11_c02381{bottom:866.640450px;}
.y10_c02381{bottom:887.250600px;}
.yf_c02381{bottom:907.950450px;}
.ye_c02381{bottom:928.470450px;}
.yd_c02381{bottom:949.350450px;}
.yc_c02381{bottom:970.050450px;}
.yb_c02381{bottom:990.750450px;}
.ya_c02381{bottom:1011.450450px;}
.y9_c02381{bottom:1032.150450px;}
.y8_c02381{bottom:1052.850450px;}
.y7_c02381{bottom:1073.550450px;}
.y6_c02381{bottom:1094.070450px;}
.y5_c02381{bottom:1118.100450px;}
.y4_c02381{bottom:1140.690450px;}
.y1_c02381{bottom:1194.600450px;}
.h3_c02381{height:43.909277px;}
.h2_c02381{height:54.331699px;}
.h6_c02381{height:64.657617px;}
.h1_c02381{height:66.394687px;}
.h5_c02381{height:70.664062px;}
.h4_c02381{height:72.562500px;}
.h0_c02381{height:1263.000000px;}
.w1_c02381{width:892.500000px;}
.w0_c02381{width:892.830000px;}
.x0_c02381{left:0.000000px;}
.x1_c02381{left:127.620000px;}
.x2_c02381{left:438.120675px;}
@media print{
.v0_c02381{vertical-align:0.000000pt;}
.ls18_c02381{letter-spacing:-0.070400pt;}
.ls1a_c02381{letter-spacing:-0.051200pt;}
.ls1d_c02381{letter-spacing:-0.044800pt;}
.ls1c_c02381{letter-spacing:-0.038400pt;}
.ls17_c02381{letter-spacing:-0.032000pt;}
.ls1b_c02381{letter-spacing:-0.025600pt;}
.ls19_c02381{letter-spacing:-0.012800pt;}
.ls16_c02381{letter-spacing:-0.006400pt;}
.ls14_c02381{letter-spacing:0.000000pt;}
.lsb_c02381{letter-spacing:0.006400pt;}
.lsf_c02381{letter-spacing:0.012800pt;}
.ls4_c02381{letter-spacing:0.017568pt;}
.ls9_c02381{letter-spacing:0.019200pt;}
.ls0_c02381{letter-spacing:0.023424pt;}
.ls5_c02381{letter-spacing:0.025600pt;}
.ls8_c02381{letter-spacing:0.032000pt;}
.ls6_c02381{letter-spacing:0.038400pt;}
.ls3_c02381{letter-spacing:0.040992pt;}
.ls13_c02381{letter-spacing:0.044800pt;}
.ls1_c02381{letter-spacing:0.046848pt;}
.lsc_c02381{letter-spacing:0.051200pt;}
.ls7_c02381{letter-spacing:0.064000pt;}
.ls2_c02381{letter-spacing:0.070272pt;}
.lsd_c02381{letter-spacing:0.070400pt;}
.ls11_c02381{letter-spacing:0.076800pt;}
.ls15_c02381{letter-spacing:0.081984pt;}
.lsa_c02381{letter-spacing:0.083200pt;}
.ls10_c02381{letter-spacing:0.087840pt;}
.ls12_c02381{letter-spacing:0.089600pt;}
.lse_c02381{letter-spacing:0.096000pt;}
.ws2e_c02381{word-spacing:-0.327936pt;}
.ws16_c02381{word-spacing:-0.179200pt;}
.ws2c_c02381{word-spacing:-0.172800pt;}
.ws24_c02381{word-spacing:-0.140800pt;}
.ws0_c02381{word-spacing:-0.140544pt;}
.ws11_c02381{word-spacing:-0.134400pt;}
.ws1c_c02381{word-spacing:-0.096000pt;}
.ws12_c02381{word-spacing:-0.070400pt;}
.wsc_c02381{word-spacing:-0.038400pt;}
.ws25_c02381{word-spacing:-0.032000pt;}
.ws17_c02381{word-spacing:-0.019200pt;}
.ws7_c02381{word-spacing:-0.012800pt;}
.ws2d_c02381{word-spacing:-0.006400pt;}
.ws3_c02381{word-spacing:0.000000pt;}
.wsd_c02381{word-spacing:0.006400pt;}
.ws4_c02381{word-spacing:0.011712pt;}
.ws2_c02381{word-spacing:0.035136pt;}
.ws5_c02381{word-spacing:0.040992pt;}
.ws1_c02381{word-spacing:0.058560pt;}
.ws6_c02381{word-spacing:0.064416pt;}
.ws27_c02381{word-spacing:0.512000pt;}
.ws9_c02381{word-spacing:0.601600pt;}
.ws8_c02381{word-spacing:0.614400pt;}
.ws26_c02381{word-spacing:0.640000pt;}
.ws15_c02381{word-spacing:3.686400pt;}
.ws13_c02381{word-spacing:3.737600pt;}
.ws14_c02381{word-spacing:3.763200pt;}
.ws33_c02381{word-spacing:3.814400pt;}
.ws3c_c02381{word-spacing:4.051200pt;}
.ws3d_c02381{word-spacing:4.089600pt;}
.ws34_c02381{word-spacing:5.625600pt;}
.ws35_c02381{word-spacing:5.670400pt;}
.ws36_c02381{word-spacing:6.624000pt;}
.ws37_c02381{word-spacing:6.688000pt;}
.wsb_c02381{word-spacing:8.243200pt;}
.wsa_c02381{word-spacing:8.256000pt;}
.ws19_c02381{word-spacing:8.876800pt;}
.ws18_c02381{word-spacing:8.940800pt;}
.ws1b_c02381{word-spacing:8.972800pt;}
.ws1a_c02381{word-spacing:9.030400pt;}
.ws2b_c02381{word-spacing:10.816000pt;}
.ws21_c02381{word-spacing:12.377600pt;}
.ws23_c02381{word-spacing:12.390400pt;}
.wse_c02381{word-spacing:12.441600pt;}
.wsf_c02381{word-spacing:12.448000pt;}
.ws10_c02381{word-spacing:12.454400pt;}
.ws22_c02381{word-spacing:12.505600pt;}
.ws20_c02381{word-spacing:12.761600pt;}
.ws3b_c02381{word-spacing:14.009600pt;}
.ws39_c02381{word-spacing:14.732800pt;}
.ws38_c02381{word-spacing:14.963200pt;}
.ws3a_c02381{word-spacing:14.976000pt;}
.ws31_c02381{word-spacing:16.896000pt;}
.ws32_c02381{word-spacing:16.960000pt;}
.ws30_c02381{word-spacing:17.580800pt;}
.ws2f_c02381{word-spacing:17.587200pt;}
.ws1d_c02381{word-spacing:25.593600pt;}
.ws1e_c02381{word-spacing:25.600000pt;}
.ws1f_c02381{word-spacing:25.651200pt;}
.ws2a_c02381{word-spacing:26.118400pt;}
.ws29_c02381{word-spacing:26.246400pt;}
.ws28_c02381{word-spacing:26.278400pt;}
._1_c02381{margin-left:-16.908800pt;}
._0_c02381{margin-left:-1.100800pt;}
.fs0_c02381{font-size:58.560000pt;}
.fs1_c02381{font-size:64.000000pt;}
.y0_c02381{bottom:0.000000pt;}
.y3_c02381{bottom:67.307451pt;}
.y2_c02381{bottom:101.226867pt;}
.y32_c02381{bottom:139.067067pt;}
.y31_c02381{bottom:160.267067pt;}
.y30_c02381{bottom:181.387067pt;}
.y2f_c02381{bottom:202.587067pt;}
.y2e_c02381{bottom:223.707067pt;}
.y2d_c02381{bottom:245.067067pt;}
.y2c_c02381{bottom:262.267067pt;}
.y2b_c02381{bottom:280.667067pt;}
.y2a_c02381{bottom:299.067067pt;}
.y29_c02381{bottom:317.467067pt;}
.y28_c02381{bottom:335.867067pt;}
.y27_c02381{bottom:354.267067pt;}
.y26_c02381{bottom:372.667200pt;}
.y25_c02381{bottom:391.067200pt;}
.y24_c02381{bottom:409.467067pt;}
.y23_c02381{bottom:427.707067pt;}
.y22_c02381{bottom:446.107200pt;}
.y21_c02381{bottom:467.467067pt;}
.y20_c02381{bottom:488.027067pt;}
.y1f_c02381{bottom:509.227067pt;}
.y1e_c02381{bottom:530.347067pt;}
.y1d_c02381{bottom:549.547067pt;}
.y1c_c02381{bottom:567.787067pt;}
.y1b_c02381{bottom:586.347067pt;}
.y1a_c02381{bottom:604.747067pt;}
.y19_c02381{bottom:623.147067pt;}
.y18_c02381{bottom:641.547067pt;}
.y17_c02381{bottom:659.947067pt;}
.y16_c02381{bottom:678.187067pt;}
.y15_c02381{bottom:696.747067pt;}
.y14_c02381{bottom:715.147200pt;}
.y13_c02381{bottom:733.547067pt;}
.y12_c02381{bottom:751.947067pt;}
.y11_c02381{bottom:770.347067pt;}
.y10_c02381{bottom:788.667200pt;}
.yf_c02381{bottom:807.067067pt;}
.ye_c02381{bottom:825.307067pt;}
.yd_c02381{bottom:843.867067pt;}
.yc_c02381{bottom:862.267067pt;}
.yb_c02381{bottom:880.667067pt;}
.ya_c02381{bottom:899.067067pt;}
.y9_c02381{bottom:917.467067pt;}
.y8_c02381{bottom:935.867067pt;}
.y7_c02381{bottom:954.267067pt;}
.y6_c02381{bottom:972.507067pt;}
.y5_c02381{bottom:993.867067pt;}
.y4_c02381{bottom:1013.947067pt;}
.y1_c02381{bottom:1061.867067pt;}
.h3_c02381{height:39.030469pt;}
.h2_c02381{height:48.294844pt;}
.h6_c02381{height:57.473437pt;}
.h1_c02381{height:59.017500pt;}
.h5_c02381{height:62.812500pt;}
.h4_c02381{height:64.500000pt;}
.h0_c02381{height:1122.666667pt;}
.w1_c02381{width:793.333333pt;}
.w0_c02381{width:793.626667pt;}
.x0_c02381{left:0.000000pt;}
.x1_c02381{left:113.440000pt;}
.x2_c02381{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5e559f8b81746787f1e36c2.woff2')format("woff");}.ff1_c02382{font-family:ff1_c02382;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02382;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02382{font-family:ff2_c02382;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02382;src:url('chunks/assets/font_c577630e7a72df98670a9649.woff2')format("woff");}.ff3_c02382{font-family:ff3_c02382;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02382;src:url('chunks/assets/font_b57bd9d57b9f441d89cbf83e.woff2')format("woff");}.ff4_c02382{font-family:ff4_c02382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c02382{letter-spacing:-0.036000px;}
.ls14_c02382{letter-spacing:-0.028800px;}
.ls10_c02382{letter-spacing:-0.021600px;}
.ls15_c02382{letter-spacing:-0.019764px;}
.ls12_c02382{letter-spacing:-0.014400px;}
.ls13_c02382{letter-spacing:-0.007200px;}
.lse_c02382{letter-spacing:0.000000px;}
.ls5_c02382{letter-spacing:0.007200px;}
.ls3_c02382{letter-spacing:0.014400px;}
.ls4_c02382{letter-spacing:0.021600px;}
.ls0_c02382{letter-spacing:0.026352px;}
.ls7_c02382{letter-spacing:0.028800px;}
.ls6_c02382{letter-spacing:0.036000px;}
.ls8_c02382{letter-spacing:0.043200px;}
.lsd_c02382{letter-spacing:0.050400px;}
.ls1_c02382{letter-spacing:0.052704px;}
.lsc_c02382{letter-spacing:0.057600px;}
.ls9_c02382{letter-spacing:0.064800px;}
.lsa_c02382{letter-spacing:0.072000px;}
.lsb_c02382{letter-spacing:0.072468px;}
.ls2_c02382{letter-spacing:0.079056px;}
.lsf_c02382{letter-spacing:0.092232px;}
.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;}
}
.ws39_c02382{word-spacing:-0.396000px;}
.ws1c_c02382{word-spacing:-0.352800px;}
.ws34_c02382{word-spacing:-0.288000px;}
.ws31_c02382{word-spacing:-0.201600px;}
.ws32_c02382{word-spacing:-0.172800px;}
.ws37_c02382{word-spacing:-0.165600px;}
.ws2f_c02382{word-spacing:-0.158400px;}
.ws0_c02382{word-spacing:-0.158112px;}
.ws38_c02382{word-spacing:-0.144000px;}
.ws1a_c02382{word-spacing:-0.129600px;}
.ws10_c02382{word-spacing:-0.122400px;}
.wsa_c02382{word-spacing:-0.108000px;}
.ws26_c02382{word-spacing:-0.093600px;}
.ws33_c02382{word-spacing:-0.079200px;}
.ws36_c02382{word-spacing:-0.064800px;}
.ws30_c02382{word-spacing:-0.057600px;}
.ws12_c02382{word-spacing:-0.050400px;}
.ws2c_c02382{word-spacing:-0.043200px;}
.ws35_c02382{word-spacing:-0.036000px;}
.ws11_c02382{word-spacing:-0.028800px;}
.ws1b_c02382{word-spacing:-0.021600px;}
.wsb_c02382{word-spacing:-0.014400px;}
.ws2e_c02382{word-spacing:-0.007200px;}
.ws3_c02382{word-spacing:0.000000px;}
.ws5_c02382{word-spacing:0.013176px;}
.ws2d_c02382{word-spacing:0.014400px;}
.ws4_c02382{word-spacing:0.021600px;}
.ws2_c02382{word-spacing:0.039528px;}
.ws1_c02382{word-spacing:0.065880px;}
.ws2b_c02382{word-spacing:0.111996px;}
.ws18_c02382{word-spacing:0.655200px;}
.ws19_c02382{word-spacing:0.712800px;}
.ws29_c02382{word-spacing:3.391200px;}
.ws27_c02382{word-spacing:3.571200px;}
.ws28_c02382{word-spacing:3.600000px;}
.ws2a_c02382{word-spacing:3.614400px;}
.ws9_c02382{word-spacing:4.608000px;}
.ws8_c02382{word-spacing:4.665600px;}
.ws25_c02382{word-spacing:7.092000px;}
.ws24_c02382{word-spacing:7.149600px;}
.ws23_c02382{word-spacing:7.696800px;}
.ws22_c02382{word-spacing:7.754400px;}
.ws1e_c02382{word-spacing:13.428000px;}
.ws17_c02382{word-spacing:13.514400px;}
.ws16_c02382{word-spacing:13.600800px;}
.ws1d_c02382{word-spacing:13.622400px;}
.ws15_c02382{word-spacing:13.672800px;}
.ws21_c02382{word-spacing:14.666400px;}
.ws1f_c02382{word-spacing:14.680800px;}
.ws20_c02382{word-spacing:14.767200px;}
.wsd_c02382{word-spacing:16.027200px;}
.wsc_c02382{word-spacing:16.178400px;}
.wse_c02382{word-spacing:19.317600px;}
.wsf_c02382{word-spacing:19.440000px;}
.ws7_c02382{word-spacing:19.778400px;}
.ws6_c02382{word-spacing:19.785600px;}
.ws14_c02382{word-spacing:47.116800px;}
.ws13_c02382{word-spacing:47.217600px;}
._2_c02382{margin-left:-4.176000px;}
._0_c02382{margin-left:-1.260000px;}
._1_c02382{width:3.585276px;}
.fc0_c02382{color:rgb(0,0,0);}
.fs2_c02382{font-size:11.880000px;}
.fs0_c02382{font-size:65.880000px;}
.fs1_c02382{font-size:72.000000px;}
.y0_c02382{bottom:0.000000px;}
.y3_c02382{bottom:75.720882px;}
.y2_c02382{bottom:113.880225px;}
.y3f_c02382{bottom:134.311746px;}
.y3e_c02382{bottom:138.271647px;}
.y3d_c02382{bottom:142.231548px;}
.y3c_c02382{bottom:146.191449px;}
.y3b_c02382{bottom:150.151350px;}
.y3a_c02382{bottom:154.111251px;}
.y39_c02382{bottom:158.071152px;}
.y38_c02382{bottom:162.031053px;}
.y37_c02382{bottom:165.990954px;}
.y36_c02382{bottom:169.950855px;}
.y35_c02382{bottom:173.910756px;}
.y34_c02382{bottom:177.870657px;}
.y33_c02382{bottom:181.920549px;}
.y32_c02382{bottom:185.880450px;}
.y31_c02382{bottom:193.440450px;}
.y30_c02382{bottom:214.140450px;}
.y2f_c02382{bottom:234.840450px;}
.y2e_c02382{bottom:255.540450px;}
.y2d_c02382{bottom:276.240450px;}
.y2c_c02382{bottom:296.940450px;}
.y2b_c02382{bottom:317.640450px;}
.y2a_c02382{bottom:338.340450px;}
.y29_c02382{bottom:359.040450px;}
.y28_c02382{bottom:379.740450px;}
.y27_c02382{bottom:400.440450px;}
.y26_c02382{bottom:421.140450px;}
.y25_c02382{bottom:441.840450px;}
.y24_c02382{bottom:462.540450px;}
.y23_c02382{bottom:483.240450px;}
.y22_c02382{bottom:503.760450px;}
.y21_c02382{bottom:524.640450px;}
.y20_c02382{bottom:545.340450px;}
.y1f_c02382{bottom:566.040450px;}
.y1e_c02382{bottom:586.740450px;}
.y1d_c02382{bottom:607.440450px;}
.y1c_c02382{bottom:628.140450px;}
.y1b_c02382{bottom:648.660450px;}
.y1a_c02382{bottom:669.540450px;}
.y19_c02382{bottom:690.150450px;}
.y18_c02382{bottom:714.000450px;}
.y17_c02382{bottom:737.220450px;}
.y16_c02382{bottom:761.070450px;}
.y15_c02382{bottom:782.580450px;}
.y14_c02382{bottom:803.280450px;}
.y13_c02382{bottom:823.980450px;}
.y12_c02382{bottom:844.680600px;}
.y11_c02382{bottom:865.380450px;}
.y10_c02382{bottom:886.080450px;}
.yf_c02382{bottom:906.780450px;}
.ye_c02382{bottom:927.480450px;}
.yd_c02382{bottom:948.180450px;}
.yc_c02382{bottom:968.880450px;}
.yb_c02382{bottom:989.580450px;}
.ya_c02382{bottom:1010.280450px;}
.y9_c02382{bottom:1030.980450px;}
.y8_c02382{bottom:1051.680450px;}
.y7_c02382{bottom:1072.200450px;}
.y6_c02382{bottom:1092.900450px;}
.y5_c02382{bottom:1116.840450px;}
.y4_c02382{bottom:1139.880450px;}
.y1_c02382{bottom:1194.600450px;}
.h6_c02382{height:11.659570px;}
.h3_c02382{height:43.909277px;}
.h2_c02382{height:54.331699px;}
.h1_c02382{height:66.394687px;}
.h5_c02382{height:70.664062px;}
.h4_c02382{height:72.562500px;}
.h0_c02382{height:1263.000000px;}
.w1_c02382{width:892.500000px;}
.w0_c02382{width:892.830000px;}
.x0_c02382{left:0.000000px;}
.x1_c02382{left:127.620000px;}
.x2_c02382{left:438.120675px;}
@media print{
.v0_c02382{vertical-align:0.000000pt;}
.ls11_c02382{letter-spacing:-0.032000pt;}
.ls14_c02382{letter-spacing:-0.025600pt;}
.ls10_c02382{letter-spacing:-0.019200pt;}
.ls15_c02382{letter-spacing:-0.017568pt;}
.ls12_c02382{letter-spacing:-0.012800pt;}
.ls13_c02382{letter-spacing:-0.006400pt;}
.lse_c02382{letter-spacing:0.000000pt;}
.ls5_c02382{letter-spacing:0.006400pt;}
.ls3_c02382{letter-spacing:0.012800pt;}
.ls4_c02382{letter-spacing:0.019200pt;}
.ls0_c02382{letter-spacing:0.023424pt;}
.ls7_c02382{letter-spacing:0.025600pt;}
.ls6_c02382{letter-spacing:0.032000pt;}
.ls8_c02382{letter-spacing:0.038400pt;}
.lsd_c02382{letter-spacing:0.044800pt;}
.ls1_c02382{letter-spacing:0.046848pt;}
.lsc_c02382{letter-spacing:0.051200pt;}
.ls9_c02382{letter-spacing:0.057600pt;}
.lsa_c02382{letter-spacing:0.064000pt;}
.lsb_c02382{letter-spacing:0.064416pt;}
.ls2_c02382{letter-spacing:0.070272pt;}
.lsf_c02382{letter-spacing:0.081984pt;}
.ws39_c02382{word-spacing:-0.352000pt;}
.ws1c_c02382{word-spacing:-0.313600pt;}
.ws34_c02382{word-spacing:-0.256000pt;}
.ws31_c02382{word-spacing:-0.179200pt;}
.ws32_c02382{word-spacing:-0.153600pt;}
.ws37_c02382{word-spacing:-0.147200pt;}
.ws2f_c02382{word-spacing:-0.140800pt;}
.ws0_c02382{word-spacing:-0.140544pt;}
.ws38_c02382{word-spacing:-0.128000pt;}
.ws1a_c02382{word-spacing:-0.115200pt;}
.ws10_c02382{word-spacing:-0.108800pt;}
.wsa_c02382{word-spacing:-0.096000pt;}
.ws26_c02382{word-spacing:-0.083200pt;}
.ws33_c02382{word-spacing:-0.070400pt;}
.ws36_c02382{word-spacing:-0.057600pt;}
.ws30_c02382{word-spacing:-0.051200pt;}
.ws12_c02382{word-spacing:-0.044800pt;}
.ws2c_c02382{word-spacing:-0.038400pt;}
.ws35_c02382{word-spacing:-0.032000pt;}
.ws11_c02382{word-spacing:-0.025600pt;}
.ws1b_c02382{word-spacing:-0.019200pt;}
.wsb_c02382{word-spacing:-0.012800pt;}
.ws2e_c02382{word-spacing:-0.006400pt;}
.ws3_c02382{word-spacing:0.000000pt;}
.ws5_c02382{word-spacing:0.011712pt;}
.ws2d_c02382{word-spacing:0.012800pt;}
.ws4_c02382{word-spacing:0.019200pt;}
.ws2_c02382{word-spacing:0.035136pt;}
.ws1_c02382{word-spacing:0.058560pt;}
.ws2b_c02382{word-spacing:0.099552pt;}
.ws18_c02382{word-spacing:0.582400pt;}
.ws19_c02382{word-spacing:0.633600pt;}
.ws29_c02382{word-spacing:3.014400pt;}
.ws27_c02382{word-spacing:3.174400pt;}
.ws28_c02382{word-spacing:3.200000pt;}
.ws2a_c02382{word-spacing:3.212800pt;}
.ws9_c02382{word-spacing:4.096000pt;}
.ws8_c02382{word-spacing:4.147200pt;}
.ws25_c02382{word-spacing:6.304000pt;}
.ws24_c02382{word-spacing:6.355200pt;}
.ws23_c02382{word-spacing:6.841600pt;}
.ws22_c02382{word-spacing:6.892800pt;}
.ws1e_c02382{word-spacing:11.936000pt;}
.ws17_c02382{word-spacing:12.012800pt;}
.ws16_c02382{word-spacing:12.089600pt;}
.ws1d_c02382{word-spacing:12.108800pt;}
.ws15_c02382{word-spacing:12.153600pt;}
.ws21_c02382{word-spacing:13.036800pt;}
.ws1f_c02382{word-spacing:13.049600pt;}
.ws20_c02382{word-spacing:13.126400pt;}
.wsd_c02382{word-spacing:14.246400pt;}
.wsc_c02382{word-spacing:14.380800pt;}
.wse_c02382{word-spacing:17.171200pt;}
.wsf_c02382{word-spacing:17.280000pt;}
.ws7_c02382{word-spacing:17.580800pt;}
.ws6_c02382{word-spacing:17.587200pt;}
.ws14_c02382{word-spacing:41.881600pt;}
.ws13_c02382{word-spacing:41.971200pt;}
._2_c02382{margin-left:-3.712000pt;}
._0_c02382{margin-left:-1.120000pt;}
._1_c02382{width:3.186912pt;}
.fs2_c02382{font-size:10.560000pt;}
.fs0_c02382{font-size:58.560000pt;}
.fs1_c02382{font-size:64.000000pt;}
.y0_c02382{bottom:0.000000pt;}
.y3_c02382{bottom:67.307451pt;}
.y2_c02382{bottom:101.226867pt;}
.y3f_c02382{bottom:119.388219pt;}
.y3e_c02382{bottom:122.908131pt;}
.y3d_c02382{bottom:126.428043pt;}
.y3c_c02382{bottom:129.947955pt;}
.y3b_c02382{bottom:133.467867pt;}
.y3a_c02382{bottom:136.987779pt;}
.y39_c02382{bottom:140.507691pt;}
.y38_c02382{bottom:144.027603pt;}
.y37_c02382{bottom:147.547515pt;}
.y36_c02382{bottom:151.067427pt;}
.y35_c02382{bottom:154.587339pt;}
.y34_c02382{bottom:158.107251pt;}
.y33_c02382{bottom:161.707155pt;}
.y32_c02382{bottom:165.227067pt;}
.y31_c02382{bottom:171.947067pt;}
.y30_c02382{bottom:190.347067pt;}
.y2f_c02382{bottom:208.747067pt;}
.y2e_c02382{bottom:227.147067pt;}
.y2d_c02382{bottom:245.547067pt;}
.y2c_c02382{bottom:263.947067pt;}
.y2b_c02382{bottom:282.347067pt;}
.y2a_c02382{bottom:300.747067pt;}
.y29_c02382{bottom:319.147067pt;}
.y28_c02382{bottom:337.547067pt;}
.y27_c02382{bottom:355.947067pt;}
.y26_c02382{bottom:374.347067pt;}
.y25_c02382{bottom:392.747067pt;}
.y24_c02382{bottom:411.147067pt;}
.y23_c02382{bottom:429.547067pt;}
.y22_c02382{bottom:447.787067pt;}
.y21_c02382{bottom:466.347067pt;}
.y20_c02382{bottom:484.747067pt;}
.y1f_c02382{bottom:503.147067pt;}
.y1e_c02382{bottom:521.547067pt;}
.y1d_c02382{bottom:539.947067pt;}
.y1c_c02382{bottom:558.347067pt;}
.y1b_c02382{bottom:576.587067pt;}
.y1a_c02382{bottom:595.147067pt;}
.y19_c02382{bottom:613.467067pt;}
.y18_c02382{bottom:634.667067pt;}
.y17_c02382{bottom:655.307067pt;}
.y16_c02382{bottom:676.507067pt;}
.y15_c02382{bottom:695.627067pt;}
.y14_c02382{bottom:714.027067pt;}
.y13_c02382{bottom:732.427067pt;}
.y12_c02382{bottom:750.827200pt;}
.y11_c02382{bottom:769.227067pt;}
.y10_c02382{bottom:787.627067pt;}
.yf_c02382{bottom:806.027067pt;}
.ye_c02382{bottom:824.427067pt;}
.yd_c02382{bottom:842.827067pt;}
.yc_c02382{bottom:861.227067pt;}
.yb_c02382{bottom:879.627067pt;}
.ya_c02382{bottom:898.027067pt;}
.y9_c02382{bottom:916.427067pt;}
.y8_c02382{bottom:934.827067pt;}
.y7_c02382{bottom:953.067067pt;}
.y6_c02382{bottom:971.467067pt;}
.y5_c02382{bottom:992.747067pt;}
.y4_c02382{bottom:1013.227067pt;}
.y1_c02382{bottom:1061.867067pt;}
.h6_c02382{height:10.364062pt;}
.h3_c02382{height:39.030469pt;}
.h2_c02382{height:48.294844pt;}
.h1_c02382{height:59.017500pt;}
.h5_c02382{height:62.812500pt;}
.h4_c02382{height:64.500000pt;}
.h0_c02382{height:1122.666667pt;}
.w1_c02382{width:793.333333pt;}
.w0_c02382{width:793.626667pt;}
.x0_c02382{left:0.000000pt;}
.x1_c02382{left:113.440000pt;}
.x2_c02382{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1faf020f725f9e2e4826df8.woff2')format("woff");}.ff1_c02383{font-family:ff1_c02383;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02383{font-family:ff2_c02383;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02383;src:url('chunks/assets/font_1dcb82c42b8da9ef27b3e525.woff2')format("woff");}.ff3_c02383{font-family:ff3_c02383;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02383;src:url('chunks/assets/font_58e6dd16837a1523b16e4e65.woff2')format("woff");}.ff4_c02383{font-family:ff4_c02383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02383{vertical-align:0.000000px;}
.ls18_c02383{letter-spacing:-0.057600px;}
.ls17_c02383{letter-spacing:-0.050400px;}
.ls15_c02383{letter-spacing:-0.043200px;}
.ls11_c02383{letter-spacing:-0.036000px;}
.ls16_c02383{letter-spacing:-0.028800px;}
.ls14_c02383{letter-spacing:-0.021600px;}
.ls13_c02383{letter-spacing:-0.014400px;}
.ls12_c02383{letter-spacing:-0.007200px;}
.lsf_c02383{letter-spacing:0.000000px;}
.ls2_c02383{letter-spacing:0.007200px;}
.lsa_c02383{letter-spacing:0.014400px;}
.ls5_c02383{letter-spacing:0.021600px;}
.ls0_c02383{letter-spacing:0.026352px;}
.lse_c02383{letter-spacing:0.028800px;}
.ls7_c02383{letter-spacing:0.036000px;}
.ls8_c02383{letter-spacing:0.043200px;}
.ls3_c02383{letter-spacing:0.050400px;}
.ls1_c02383{letter-spacing:0.052704px;}
.ls4_c02383{letter-spacing:0.057600px;}
.ls6_c02383{letter-spacing:0.064800px;}
.ls9_c02383{letter-spacing:0.072000px;}
.lsc_c02383{letter-spacing:0.072468px;}
.lsd_c02383{letter-spacing:0.079056px;}
.ls10_c02383{letter-spacing:0.092232px;}
.lsb_c02383{letter-spacing:0.129600px;}
.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;}
}
.ws2c_c02383{word-spacing:-0.201600px;}
.ws1c_c02383{word-spacing:-0.194400px;}
.ws0_c02383{word-spacing:-0.158112px;}
.wsd_c02383{word-spacing:-0.151200px;}
.ws10_c02383{word-spacing:-0.136800px;}
.ws34_c02383{word-spacing:-0.122400px;}
.ws1a_c02383{word-spacing:-0.108000px;}
.ws3e_c02383{word-spacing:-0.100800px;}
.ws1b_c02383{word-spacing:-0.093600px;}
.ws35_c02383{word-spacing:-0.064800px;}
.ws2d_c02383{word-spacing:-0.028800px;}
.ws39_c02383{word-spacing:-0.021600px;}
.ws17_c02383{word-spacing:-0.014400px;}
.ws19_c02383{word-spacing:-0.007200px;}
.ws3_c02383{word-spacing:0.000000px;}
.ws21_c02383{word-spacing:0.007200px;}
.ws28_c02383{word-spacing:0.013176px;}
.ws27_c02383{word-spacing:0.019764px;}
.wse_c02383{word-spacing:0.021600px;}
.ws1d_c02383{word-spacing:0.028800px;}
.ws2_c02383{word-spacing:0.039528px;}
.ws18_c02383{word-spacing:0.043200px;}
.ws31_c02383{word-spacing:0.050400px;}
.ws1_c02383{word-spacing:0.065880px;}
.ws11_c02383{word-spacing:0.129600px;}
.ws4_c02383{word-spacing:0.216000px;}
.ws7_c02383{word-spacing:0.244800px;}
.ws2e_c02383{word-spacing:0.252000px;}
.ws8_c02383{word-spacing:0.302400px;}
.ws38_c02383{word-spacing:0.770400px;}
.ws37_c02383{word-spacing:0.921600px;}
.ws12_c02383{word-spacing:2.469600px;}
.ws13_c02383{word-spacing:2.498400px;}
.ws25_c02383{word-spacing:3.182400px;}
.ws26_c02383{word-spacing:3.232800px;}
.ws16_c02383{word-spacing:3.780000px;}
.ws14_c02383{word-spacing:3.938400px;}
.ws15_c02383{word-spacing:3.974400px;}
.ws1e_c02383{word-spacing:4.125600px;}
.ws2b_c02383{word-spacing:4.147200px;}
.ws29_c02383{word-spacing:4.204800px;}
.ws1f_c02383{word-spacing:4.212000px;}
.ws2a_c02383{word-spacing:4.233600px;}
.ws20_c02383{word-spacing:4.370400px;}
.ws3a_c02383{word-spacing:5.011200px;}
.ws3b_c02383{word-spacing:5.076000px;}
.wsf_c02383{word-spacing:9.316800px;}
.ws32_c02383{word-spacing:13.291200px;}
.ws33_c02383{word-spacing:13.305600px;}
.ws23_c02383{word-spacing:13.744800px;}
.ws24_c02383{word-spacing:13.975200px;}
.ws22_c02383{word-spacing:14.032800px;}
.ws36_c02383{word-spacing:18.331200px;}
.wsb_c02383{word-spacing:20.721600px;}
.wsc_c02383{word-spacing:20.743200px;}
.ws5_c02383{word-spacing:20.800800px;}
.ws6_c02383{word-spacing:20.887200px;}
.ws9_c02383{word-spacing:33.393600px;}
.ws2f_c02383{word-spacing:33.480000px;}
.wsa_c02383{word-spacing:33.494400px;}
.ws30_c02383{word-spacing:33.501600px;}
.ws3d_c02383{word-spacing:40.197600px;}
.ws3c_c02383{word-spacing:40.341600px;}
._0_c02383{margin-left:-1.317600px;}
.fc0_c02383{color:rgb(0,0,0);}
.fs1_c02383{font-size:11.880000px;}
.fs0_c02383{font-size:65.880000px;}
.fs2_c02383{font-size:72.000000px;}
.y0_c02383{bottom:0.000000px;}
.y3_c02383{bottom:75.720882px;}
.y2_c02383{bottom:113.880225px;}
.y36_c02383{bottom:133.500699px;}
.y35_c02383{bottom:137.460600px;}
.y34_c02383{bottom:145.110450px;}
.y33_c02383{bottom:165.810450px;}
.y32_c02383{bottom:186.510450px;}
.y31_c02383{bottom:207.210600px;}
.y30_c02383{bottom:227.730450px;}
.y2f_c02383{bottom:248.430450px;}
.y2e_c02383{bottom:269.310450px;}
.y2d_c02383{bottom:290.010450px;}
.y2c_c02383{bottom:310.710600px;}
.y2b_c02383{bottom:331.320450px;}
.y2a_c02383{bottom:352.020450px;}
.y29_c02383{bottom:372.720450px;}
.y28_c02383{bottom:393.420450px;}
.y27_c02383{bottom:414.120600px;}
.y26_c02383{bottom:434.820450px;}
.y25_c02383{bottom:455.340600px;}
.y24_c02383{bottom:476.220450px;}
.y23_c02383{bottom:496.920450px;}
.y22_c02383{bottom:520.860600px;}
.y21_c02383{bottom:543.360450px;}
.y20_c02383{bottom:565.950450px;}
.y1f_c02383{bottom:588.360450px;}
.y1e_c02383{bottom:612.210450px;}
.y1d_c02383{bottom:633.720450px;}
.y1c_c02383{bottom:654.420450px;}
.y1b_c02383{bottom:675.120450px;}
.y1a_c02383{bottom:695.820450px;}
.y19_c02383{bottom:716.520450px;}
.y18_c02383{bottom:737.220450px;}
.y17_c02383{bottom:757.920450px;}
.y16_c02383{bottom:778.620450px;}
.y15_c02383{bottom:799.320450px;}
.y14_c02383{bottom:819.840450px;}
.y13_c02383{bottom:840.720450px;}
.y12_c02383{bottom:861.420450px;}
.y11_c02383{bottom:882.120450px;}
.y10_c02383{bottom:902.820450px;}
.yf_c02383{bottom:923.340450px;}
.ye_c02383{bottom:944.220450px;}
.yd_c02383{bottom:964.920450px;}
.yc_c02383{bottom:985.620450px;}
.yb_c02383{bottom:1006.320450px;}
.ya_c02383{bottom:1027.020450px;}
.y9_c02383{bottom:1047.720450px;}
.y8_c02383{bottom:1068.420450px;}
.y7_c02383{bottom:1089.120450px;}
.y6_c02383{bottom:1112.610450px;}
.y5_c02383{bottom:1136.730450px;}
.y4_c02383{bottom:1154.010450px;}
.y1_c02383{bottom:1194.600450px;}
.h4_c02383{height:11.659570px;}
.h3_c02383{height:43.909277px;}
.h2_c02383{height:54.331699px;}
.h7_c02383{height:64.657617px;}
.h1_c02383{height:66.394687px;}
.h6_c02383{height:70.664062px;}
.h5_c02383{height:72.562500px;}
.h0_c02383{height:1263.000000px;}
.w1_c02383{width:892.500000px;}
.w0_c02383{width:892.830000px;}
.x0_c02383{left:0.000000px;}
.x1_c02383{left:127.620000px;}
.x2_c02383{left:438.120675px;}
@media print{
.v0_c02383{vertical-align:0.000000pt;}
.ls18_c02383{letter-spacing:-0.051200pt;}
.ls17_c02383{letter-spacing:-0.044800pt;}
.ls15_c02383{letter-spacing:-0.038400pt;}
.ls11_c02383{letter-spacing:-0.032000pt;}
.ls16_c02383{letter-spacing:-0.025600pt;}
.ls14_c02383{letter-spacing:-0.019200pt;}
.ls13_c02383{letter-spacing:-0.012800pt;}
.ls12_c02383{letter-spacing:-0.006400pt;}
.lsf_c02383{letter-spacing:0.000000pt;}
.ls2_c02383{letter-spacing:0.006400pt;}
.lsa_c02383{letter-spacing:0.012800pt;}
.ls5_c02383{letter-spacing:0.019200pt;}
.ls0_c02383{letter-spacing:0.023424pt;}
.lse_c02383{letter-spacing:0.025600pt;}
.ls7_c02383{letter-spacing:0.032000pt;}
.ls8_c02383{letter-spacing:0.038400pt;}
.ls3_c02383{letter-spacing:0.044800pt;}
.ls1_c02383{letter-spacing:0.046848pt;}
.ls4_c02383{letter-spacing:0.051200pt;}
.ls6_c02383{letter-spacing:0.057600pt;}
.ls9_c02383{letter-spacing:0.064000pt;}
.lsc_c02383{letter-spacing:0.064416pt;}
.lsd_c02383{letter-spacing:0.070272pt;}
.ls10_c02383{letter-spacing:0.081984pt;}
.lsb_c02383{letter-spacing:0.115200pt;}
.ws2c_c02383{word-spacing:-0.179200pt;}
.ws1c_c02383{word-spacing:-0.172800pt;}
.ws0_c02383{word-spacing:-0.140544pt;}
.wsd_c02383{word-spacing:-0.134400pt;}
.ws10_c02383{word-spacing:-0.121600pt;}
.ws34_c02383{word-spacing:-0.108800pt;}
.ws1a_c02383{word-spacing:-0.096000pt;}
.ws3e_c02383{word-spacing:-0.089600pt;}
.ws1b_c02383{word-spacing:-0.083200pt;}
.ws35_c02383{word-spacing:-0.057600pt;}
.ws2d_c02383{word-spacing:-0.025600pt;}
.ws39_c02383{word-spacing:-0.019200pt;}
.ws17_c02383{word-spacing:-0.012800pt;}
.ws19_c02383{word-spacing:-0.006400pt;}
.ws3_c02383{word-spacing:0.000000pt;}
.ws21_c02383{word-spacing:0.006400pt;}
.ws28_c02383{word-spacing:0.011712pt;}
.ws27_c02383{word-spacing:0.017568pt;}
.wse_c02383{word-spacing:0.019200pt;}
.ws1d_c02383{word-spacing:0.025600pt;}
.ws2_c02383{word-spacing:0.035136pt;}
.ws18_c02383{word-spacing:0.038400pt;}
.ws31_c02383{word-spacing:0.044800pt;}
.ws1_c02383{word-spacing:0.058560pt;}
.ws11_c02383{word-spacing:0.115200pt;}
.ws4_c02383{word-spacing:0.192000pt;}
.ws7_c02383{word-spacing:0.217600pt;}
.ws2e_c02383{word-spacing:0.224000pt;}
.ws8_c02383{word-spacing:0.268800pt;}
.ws38_c02383{word-spacing:0.684800pt;}
.ws37_c02383{word-spacing:0.819200pt;}
.ws12_c02383{word-spacing:2.195200pt;}
.ws13_c02383{word-spacing:2.220800pt;}
.ws25_c02383{word-spacing:2.828800pt;}
.ws26_c02383{word-spacing:2.873600pt;}
.ws16_c02383{word-spacing:3.360000pt;}
.ws14_c02383{word-spacing:3.500800pt;}
.ws15_c02383{word-spacing:3.532800pt;}
.ws1e_c02383{word-spacing:3.667200pt;}
.ws2b_c02383{word-spacing:3.686400pt;}
.ws29_c02383{word-spacing:3.737600pt;}
.ws1f_c02383{word-spacing:3.744000pt;}
.ws2a_c02383{word-spacing:3.763200pt;}
.ws20_c02383{word-spacing:3.884800pt;}
.ws3a_c02383{word-spacing:4.454400pt;}
.ws3b_c02383{word-spacing:4.512000pt;}
.wsf_c02383{word-spacing:8.281600pt;}
.ws32_c02383{word-spacing:11.814400pt;}
.ws33_c02383{word-spacing:11.827200pt;}
.ws23_c02383{word-spacing:12.217600pt;}
.ws24_c02383{word-spacing:12.422400pt;}
.ws22_c02383{word-spacing:12.473600pt;}
.ws36_c02383{word-spacing:16.294400pt;}
.wsb_c02383{word-spacing:18.419200pt;}
.wsc_c02383{word-spacing:18.438400pt;}
.ws5_c02383{word-spacing:18.489600pt;}
.ws6_c02383{word-spacing:18.566400pt;}
.ws9_c02383{word-spacing:29.683200pt;}
.ws2f_c02383{word-spacing:29.760000pt;}
.wsa_c02383{word-spacing:29.772800pt;}
.ws30_c02383{word-spacing:29.779200pt;}
.ws3d_c02383{word-spacing:35.731200pt;}
.ws3c_c02383{word-spacing:35.859200pt;}
._0_c02383{margin-left:-1.171200pt;}
.fs1_c02383{font-size:10.560000pt;}
.fs0_c02383{font-size:58.560000pt;}
.fs2_c02383{font-size:64.000000pt;}
.y0_c02383{bottom:0.000000pt;}
.y3_c02383{bottom:67.307451pt;}
.y2_c02383{bottom:101.226867pt;}
.y36_c02383{bottom:118.667288pt;}
.y35_c02383{bottom:122.187200pt;}
.y34_c02383{bottom:128.987067pt;}
.y33_c02383{bottom:147.387067pt;}
.y32_c02383{bottom:165.787067pt;}
.y31_c02383{bottom:184.187200pt;}
.y30_c02383{bottom:202.427067pt;}
.y2f_c02383{bottom:220.827067pt;}
.y2e_c02383{bottom:239.387067pt;}
.y2d_c02383{bottom:257.787067pt;}
.y2c_c02383{bottom:276.187200pt;}
.y2b_c02383{bottom:294.507067pt;}
.y2a_c02383{bottom:312.907067pt;}
.y29_c02383{bottom:331.307067pt;}
.y28_c02383{bottom:349.707067pt;}
.y27_c02383{bottom:368.107200pt;}
.y26_c02383{bottom:386.507067pt;}
.y25_c02383{bottom:404.747200pt;}
.y24_c02383{bottom:423.307067pt;}
.y23_c02383{bottom:441.707067pt;}
.y22_c02383{bottom:462.987200pt;}
.y21_c02383{bottom:482.987067pt;}
.y20_c02383{bottom:503.067067pt;}
.y1f_c02383{bottom:522.987067pt;}
.y1e_c02383{bottom:544.187067pt;}
.y1d_c02383{bottom:563.307067pt;}
.y1c_c02383{bottom:581.707067pt;}
.y1b_c02383{bottom:600.107067pt;}
.y1a_c02383{bottom:618.507067pt;}
.y19_c02383{bottom:636.907067pt;}
.y18_c02383{bottom:655.307067pt;}
.y17_c02383{bottom:673.707067pt;}
.y16_c02383{bottom:692.107067pt;}
.y15_c02383{bottom:710.507067pt;}
.y14_c02383{bottom:728.747067pt;}
.y13_c02383{bottom:747.307067pt;}
.y12_c02383{bottom:765.707067pt;}
.y11_c02383{bottom:784.107067pt;}
.y10_c02383{bottom:802.507067pt;}
.yf_c02383{bottom:820.747067pt;}
.ye_c02383{bottom:839.307067pt;}
.yd_c02383{bottom:857.707067pt;}
.yc_c02383{bottom:876.107067pt;}
.yb_c02383{bottom:894.507067pt;}
.ya_c02383{bottom:912.907067pt;}
.y9_c02383{bottom:931.307067pt;}
.y8_c02383{bottom:949.707067pt;}
.y7_c02383{bottom:968.107067pt;}
.y6_c02383{bottom:988.987067pt;}
.y5_c02383{bottom:1010.427067pt;}
.y4_c02383{bottom:1025.787067pt;}
.y1_c02383{bottom:1061.867067pt;}
.h4_c02383{height:10.364062pt;}
.h3_c02383{height:39.030469pt;}
.h2_c02383{height:48.294844pt;}
.h7_c02383{height:57.473437pt;}
.h1_c02383{height:59.017500pt;}
.h6_c02383{height:62.812500pt;}
.h5_c02383{height:64.500000pt;}
.h0_c02383{height:1122.666667pt;}
.w1_c02383{width:793.333333pt;}
.w0_c02383{width:793.626667pt;}
.x0_c02383{left:0.000000pt;}
.x1_c02383{left:113.440000pt;}
.x2_c02383{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65c062ed14001bf36aff2fe7.woff2')format("woff");}.ff1_c02384{font-family:ff1_c02384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02384;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02384{font-family:ff2_c02384;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02384;src:url('chunks/assets/font_f90a31828256b830e15da81e.woff2')format("woff");}.ff3_c02384{font-family:ff3_c02384;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02384;src:url('chunks/assets/font_274c4d8daab41a6cf65362ba.woff2')format("woff");}.ff4_c02384{font-family:ff4_c02384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c02384{letter-spacing:-0.059292px;}
.ls14_c02384{letter-spacing:-0.024048px;}
.ls11_c02384{letter-spacing:0.000000px;}
.lsc_c02384{letter-spacing:0.006012px;}
.ls8_c02384{letter-spacing:0.006588px;}
.ls13_c02384{letter-spacing:0.007200px;}
.lse_c02384{letter-spacing:0.013176px;}
.lsb_c02384{letter-spacing:0.018036px;}
.ls3_c02384{letter-spacing:0.019764px;}
.ls0_c02384{letter-spacing:0.026352px;}
.ls6_c02384{letter-spacing:0.032940px;}
.lsd_c02384{letter-spacing:0.036072px;}
.ls9_c02384{letter-spacing:0.039528px;}
.ls4_c02384{letter-spacing:0.046116px;}
.ls1_c02384{letter-spacing:0.052704px;}
.lsf_c02384{letter-spacing:0.059292px;}
.lsa_c02384{letter-spacing:0.065880px;}
.ls7_c02384{letter-spacing:0.072468px;}
.ls5_c02384{letter-spacing:0.085644px;}
.ls2_c02384{letter-spacing:0.092232px;}
.ls10_c02384{letter-spacing:0.098820px;}
.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;}
}
.ws1_c02384{word-spacing:-16.410708px;}
.ws10_c02384{word-spacing:-0.306612px;}
.ws0_c02384{word-spacing:-0.158112px;}
.ws1f_c02384{word-spacing:-0.006588px;}
.ws4_c02384{word-spacing:0.000000px;}
.ws6_c02384{word-spacing:0.006588px;}
.ws8_c02384{word-spacing:0.019764px;}
.wsc_c02384{word-spacing:0.026352px;}
.ws15_c02384{word-spacing:0.032940px;}
.ws3_c02384{word-spacing:0.039528px;}
.ws9_c02384{word-spacing:0.046116px;}
.wsb_c02384{word-spacing:0.052704px;}
.ws7_c02384{word-spacing:0.059292px;}
.ws2_c02384{word-spacing:0.065880px;}
.ws5_c02384{word-spacing:0.072468px;}
.ws1c_c02384{word-spacing:0.079056px;}
.wsa_c02384{word-spacing:0.085644px;}
.wsf_c02384{word-spacing:0.114228px;}
.ws17_c02384{word-spacing:4.723596px;}
.ws16_c02384{word-spacing:4.730184px;}
.ws12_c02384{word-spacing:7.978068px;}
.ws11_c02384{word-spacing:7.984656px;}
.ws13_c02384{word-spacing:8.709336px;}
.ws14_c02384{word-spacing:8.715924px;}
.ws19_c02384{word-spacing:11.212776px;}
.ws18_c02384{word-spacing:11.225952px;}
.ws1d_c02384{word-spacing:13.004712px;}
.ws1e_c02384{word-spacing:13.017888px;}
.wsd_c02384{word-spacing:15.913764px;}
.wse_c02384{word-spacing:15.925788px;}
.ws1a_c02384{word-spacing:33.888672px;}
.ws1b_c02384{word-spacing:33.908436px;}
._0_c02384{margin-left:-1.106784px;}
._1_c02384{width:1.113372px;}
.fc0_c02384{color:rgb(0,0,0);}
.fs1_c02384{font-size:11.880000px;}
.fs5_c02384{font-size:18.000000px;}
.fs2_c02384{font-size:47.880000px;}
.fs4_c02384{font-size:60.120000px;}
.fs0_c02384{font-size:65.880000px;}
.fs3_c02384{font-size:72.000000px;}
.y0_c02384{bottom:0.000000px;}
.y3_c02384{bottom:75.720882px;}
.y2_c02384{bottom:113.880225px;}
.y3b_c02384{bottom:133.770450px;}
.y3a_c02384{bottom:142.320450px;}
.y39_c02384{bottom:161.310450px;}
.y38_c02384{bottom:180.300450px;}
.y37_c02384{bottom:199.290600px;}
.y36_c02384{bottom:218.280600px;}
.y35_c02384{bottom:237.180450px;}
.y34_c02384{bottom:256.170450px;}
.y33_c02384{bottom:275.070450px;}
.y32_c02384{bottom:294.150450px;}
.y31_c02384{bottom:313.140450px;}
.y30_c02384{bottom:332.130450px;}
.y2f_c02384{bottom:351.030450px;}
.y2e_c02384{bottom:370.020450px;}
.y2d_c02384{bottom:389.010450px;}
.y2c_c02384{bottom:407.910450px;}
.y2b_c02384{bottom:426.990450px;}
.y2a_c02384{bottom:445.890450px;}
.y29_c02384{bottom:464.880450px;}
.y28_c02384{bottom:483.870600px;}
.y27_c02384{bottom:502.860600px;}
.y26_c02384{bottom:521.850450px;}
.y25_c02384{bottom:540.750450px;}
.y24_c02384{bottom:559.740450px;}
.y23_c02384{bottom:578.460450px;}
.y22_c02384{bottom:595.740450px;}
.y21_c02384{bottom:613.470450px;}
.y20_c02384{bottom:637.410450px;}
.y1f_c02384{bottom:658.470450px;}
.y1e_c02384{bottom:673.863798px;}
.y1d_c02384{bottom:692.853708px;}
.y1c_c02384{bottom:711.843618px;}
.y1b_c02384{bottom:730.833528px;}
.y1a_c02384{bottom:749.643915px;}
.y19_c02384{bottom:768.724410px;}
.y18_c02384{bottom:787.714320px;}
.y17_c02384{bottom:806.704230px;}
.y16_c02384{bottom:825.603555px;}
.y15_c02384{bottom:844.502880px;}
.y14_c02384{bottom:863.583375px;}
.y13_c02384{bottom:882.482700px;}
.y12_c02384{bottom:901.563195px;}
.y11_c02384{bottom:920.553105px;}
.y10_c02384{bottom:939.543015px;}
.yf_c02384{bottom:958.442340px;}
.ye_c02384{bottom:977.341665px;}
.yd_c02384{bottom:996.422160px;}
.yc_c02384{bottom:1015.412070px;}
.yb_c02384{bottom:1034.401980px;}
.ya_c02384{bottom:1053.301305px;}
.y9_c02384{bottom:1072.291215px;}
.y8_c02384{bottom:1091.190540px;}
.y7_c02384{bottom:1110.180450px;}
.y6_c02384{bottom:1132.770450px;}
.y5_c02384{bottom:1150.050549px;}
.y4_c02384{bottom:1154.010450px;}
.y1_c02384{bottom:1194.600450px;}
.h4_c02384{height:11.659570px;}
.ha_c02384{height:17.666016px;}
.h3_c02384{height:43.909277px;}
.h6_c02384{height:46.991602px;}
.h2_c02384{height:54.331699px;}
.h8_c02384{height:59.004492px;}
.h5_c02384{height:64.657617px;}
.h1_c02384{height:66.394687px;}
.h9_c02384{height:70.664062px;}
.h7_c02384{height:72.562500px;}
.h0_c02384{height:1263.000000px;}
.w1_c02384{width:892.500000px;}
.w0_c02384{width:892.830000px;}
.x0_c02384{left:0.000000px;}
.x1_c02384{left:127.620000px;}
.x2_c02384{left:438.120675px;}
@media print{
.v0_c02384{vertical-align:0.000000pt;}
.ls12_c02384{letter-spacing:-0.052704pt;}
.ls14_c02384{letter-spacing:-0.021376pt;}
.ls11_c02384{letter-spacing:0.000000pt;}
.lsc_c02384{letter-spacing:0.005344pt;}
.ls8_c02384{letter-spacing:0.005856pt;}
.ls13_c02384{letter-spacing:0.006400pt;}
.lse_c02384{letter-spacing:0.011712pt;}
.lsb_c02384{letter-spacing:0.016032pt;}
.ls3_c02384{letter-spacing:0.017568pt;}
.ls0_c02384{letter-spacing:0.023424pt;}
.ls6_c02384{letter-spacing:0.029280pt;}
.lsd_c02384{letter-spacing:0.032064pt;}
.ls9_c02384{letter-spacing:0.035136pt;}
.ls4_c02384{letter-spacing:0.040992pt;}
.ls1_c02384{letter-spacing:0.046848pt;}
.lsf_c02384{letter-spacing:0.052704pt;}
.lsa_c02384{letter-spacing:0.058560pt;}
.ls7_c02384{letter-spacing:0.064416pt;}
.ls5_c02384{letter-spacing:0.076128pt;}
.ls2_c02384{letter-spacing:0.081984pt;}
.ls10_c02384{letter-spacing:0.087840pt;}
.ws1_c02384{word-spacing:-14.587296pt;}
.ws10_c02384{word-spacing:-0.272544pt;}
.ws0_c02384{word-spacing:-0.140544pt;}
.ws1f_c02384{word-spacing:-0.005856pt;}
.ws4_c02384{word-spacing:0.000000pt;}
.ws6_c02384{word-spacing:0.005856pt;}
.ws8_c02384{word-spacing:0.017568pt;}
.wsc_c02384{word-spacing:0.023424pt;}
.ws15_c02384{word-spacing:0.029280pt;}
.ws3_c02384{word-spacing:0.035136pt;}
.ws9_c02384{word-spacing:0.040992pt;}
.wsb_c02384{word-spacing:0.046848pt;}
.ws7_c02384{word-spacing:0.052704pt;}
.ws2_c02384{word-spacing:0.058560pt;}
.ws5_c02384{word-spacing:0.064416pt;}
.ws1c_c02384{word-spacing:0.070272pt;}
.wsa_c02384{word-spacing:0.076128pt;}
.wsf_c02384{word-spacing:0.101536pt;}
.ws17_c02384{word-spacing:4.198752pt;}
.ws16_c02384{word-spacing:4.204608pt;}
.ws12_c02384{word-spacing:7.091616pt;}
.ws11_c02384{word-spacing:7.097472pt;}
.ws13_c02384{word-spacing:7.741632pt;}
.ws14_c02384{word-spacing:7.747488pt;}
.ws19_c02384{word-spacing:9.966912pt;}
.ws18_c02384{word-spacing:9.978624pt;}
.ws1d_c02384{word-spacing:11.559744pt;}
.ws1e_c02384{word-spacing:11.571456pt;}
.wsd_c02384{word-spacing:14.145568pt;}
.wse_c02384{word-spacing:14.156256pt;}
.ws1a_c02384{word-spacing:30.123264pt;}
.ws1b_c02384{word-spacing:30.140832pt;}
._0_c02384{margin-left:-0.983808pt;}
._1_c02384{width:0.989664pt;}
.fs1_c02384{font-size:10.560000pt;}
.fs5_c02384{font-size:16.000000pt;}
.fs2_c02384{font-size:42.560000pt;}
.fs4_c02384{font-size:53.440000pt;}
.fs0_c02384{font-size:58.560000pt;}
.fs3_c02384{font-size:64.000000pt;}
.y0_c02384{bottom:0.000000pt;}
.y3_c02384{bottom:67.307451pt;}
.y2_c02384{bottom:101.226867pt;}
.y3b_c02384{bottom:118.907067pt;}
.y3a_c02384{bottom:126.507067pt;}
.y39_c02384{bottom:143.387067pt;}
.y38_c02384{bottom:160.267067pt;}
.y37_c02384{bottom:177.147200pt;}
.y36_c02384{bottom:194.027200pt;}
.y35_c02384{bottom:210.827067pt;}
.y34_c02384{bottom:227.707067pt;}
.y33_c02384{bottom:244.507067pt;}
.y32_c02384{bottom:261.467067pt;}
.y31_c02384{bottom:278.347067pt;}
.y30_c02384{bottom:295.227067pt;}
.y2f_c02384{bottom:312.027067pt;}
.y2e_c02384{bottom:328.907067pt;}
.y2d_c02384{bottom:345.787067pt;}
.y2c_c02384{bottom:362.587067pt;}
.y2b_c02384{bottom:379.547067pt;}
.y2a_c02384{bottom:396.347067pt;}
.y29_c02384{bottom:413.227067pt;}
.y28_c02384{bottom:430.107200pt;}
.y27_c02384{bottom:446.987200pt;}
.y26_c02384{bottom:463.867067pt;}
.y25_c02384{bottom:480.667067pt;}
.y24_c02384{bottom:497.547067pt;}
.y23_c02384{bottom:514.187067pt;}
.y22_c02384{bottom:529.547067pt;}
.y21_c02384{bottom:545.307067pt;}
.y20_c02384{bottom:566.587067pt;}
.y1f_c02384{bottom:585.307067pt;}
.y1e_c02384{bottom:598.990043pt;}
.y1d_c02384{bottom:615.869963pt;}
.y1c_c02384{bottom:632.749883pt;}
.y1b_c02384{bottom:649.629803pt;}
.y1a_c02384{bottom:666.350147pt;}
.y19_c02384{bottom:683.310587pt;}
.y18_c02384{bottom:700.190507pt;}
.y17_c02384{bottom:717.070427pt;}
.y16_c02384{bottom:733.869827pt;}
.y15_c02384{bottom:750.669227pt;}
.y14_c02384{bottom:767.629667pt;}
.y13_c02384{bottom:784.429067pt;}
.y12_c02384{bottom:801.389507pt;}
.y11_c02384{bottom:818.269427pt;}
.y10_c02384{bottom:835.149347pt;}
.yf_c02384{bottom:851.948747pt;}
.ye_c02384{bottom:868.748147pt;}
.yd_c02384{bottom:885.708587pt;}
.yc_c02384{bottom:902.588507pt;}
.yb_c02384{bottom:919.468427pt;}
.ya_c02384{bottom:936.267827pt;}
.y9_c02384{bottom:953.147747pt;}
.y8_c02384{bottom:969.947147pt;}
.y7_c02384{bottom:986.827067pt;}
.y6_c02384{bottom:1006.907067pt;}
.y5_c02384{bottom:1022.267155pt;}
.y4_c02384{bottom:1025.787067pt;}
.y1_c02384{bottom:1061.867067pt;}
.h4_c02384{height:10.364062pt;}
.ha_c02384{height:15.703125pt;}
.h3_c02384{height:39.030469pt;}
.h6_c02384{height:41.770312pt;}
.h2_c02384{height:48.294844pt;}
.h8_c02384{height:52.448437pt;}
.h5_c02384{height:57.473437pt;}
.h1_c02384{height:59.017500pt;}
.h9_c02384{height:62.812500pt;}
.h7_c02384{height:64.500000pt;}
.h0_c02384{height:1122.666667pt;}
.w1_c02384{width:793.333333pt;}
.w0_c02384{width:793.626667pt;}
.x0_c02384{left:0.000000pt;}
.x1_c02384{left:113.440000pt;}
.x2_c02384{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4cbe72b95f780bd90e8b32c.woff2')format("woff");}.ff1_c02385{font-family:ff1_c02385;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02385;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02385{font-family:ff2_c02385;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02385;src:url('chunks/assets/font_ee2dfc3a7e7904fe5850c428.woff2')format("woff");}.ff3_c02385{font-family:ff3_c02385;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02385;src:url('chunks/assets/font_1d682a2a7ba53417af790951.woff2')format("woff");}.ff4_c02385{font-family:ff4_c02385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02385;src:url('chunks/assets/font_0e0b060c5d19fafe00f2841f.woff2')format("woff");}.ff5_c02385{font-family:ff5_c02385;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c02385;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff6_c02385{font-family:ff6_c02385;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_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;}
.lsb_c02385{letter-spacing:-0.360000px;}
.lsc_c02385{letter-spacing:-0.007200px;}
.ls9_c02385{letter-spacing:0.000000px;}
.ls8_c02385{letter-spacing:0.007200px;}
.ls3_c02385{letter-spacing:0.014400px;}
.ls4_c02385{letter-spacing:0.021600px;}
.ls0_c02385{letter-spacing:0.026352px;}
.ls5_c02385{letter-spacing:0.028800px;}
.ls7_c02385{letter-spacing:0.036000px;}
.ls6_c02385{letter-spacing:0.050400px;}
.ls1_c02385{letter-spacing:0.052704px;}
.ls2_c02385{letter-spacing:0.085644px;}
.lsa_c02385{letter-spacing:0.092232px;}
.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;}
}
.ws12_c02385{word-spacing:-0.244800px;}
.ws9_c02385{word-spacing:-0.216000px;}
.ws0_c02385{word-spacing:-0.158112px;}
.ws11_c02385{word-spacing:-0.122400px;}
.ws10_c02385{word-spacing:-0.064800px;}
.ws8_c02385{word-spacing:-0.050400px;}
.wsa_c02385{word-spacing:-0.036000px;}
.ws7_c02385{word-spacing:-0.028800px;}
.wsd_c02385{word-spacing:-0.021600px;}
.ws13_c02385{word-spacing:-0.014400px;}
.wsf_c02385{word-spacing:-0.007200px;}
.ws3_c02385{word-spacing:0.000000px;}
.ws4_c02385{word-spacing:0.006588px;}
.ws2_c02385{word-spacing:0.039528px;}
.wse_c02385{word-spacing:0.057600px;}
.ws1_c02385{word-spacing:0.065880px;}
.ws14_c02385{word-spacing:1.879200px;}
.ws15_c02385{word-spacing:2.052000px;}
.ws16_c02385{word-spacing:2.160000px;}
.wsc_c02385{word-spacing:8.841600px;}
.wsb_c02385{word-spacing:8.899200px;}
.ws6_c02385{word-spacing:19.778400px;}
.ws5_c02385{word-spacing:19.785600px;}
._0_c02385{margin-left:-1.027728px;}
.fc0_c02385{color:rgb(0,0,0);}
.fs1_c02385{font-size:18.000000px;}
.fs0_c02385{font-size:65.880000px;}
.fs2_c02385{font-size:72.000000px;}
.y0_c02385{bottom:0.000000px;}
.y3_c02385{bottom:75.720882px;}
.y2_c02385{bottom:113.880225px;}
.y30_c02385{bottom:153.840600px;}
.y2f_c02385{bottom:177.600600px;}
.y2e_c02385{bottom:201.360600px;}
.y2d_c02385{bottom:225.210600px;}
.y2c_c02385{bottom:248.970600px;}
.y2b_c02385{bottom:272.820600px;}
.y2a_c02385{bottom:296.580600px;}
.y29_c02385{bottom:320.430600px;}
.y28_c02385{bottom:344.190600px;}
.y27_c02385{bottom:368.040600px;}
.y26_c02385{bottom:391.800600px;}
.y25_c02385{bottom:415.650600px;}
.y24_c02385{bottom:439.410600px;}
.y23_c02385{bottom:463.260600px;}
.y22_c02385{bottom:487.020600px;}
.y21_c02385{bottom:510.870600px;}
.y20_c02385{bottom:534.630600px;}
.y1f_c02385{bottom:558.480600px;}
.y1e_c02385{bottom:582.240600px;}
.y1d_c02385{bottom:606.090600px;}
.y1c_c02385{bottom:629.850600px;}
.y1b_c02385{bottom:653.700600px;}
.y1a_c02385{bottom:677.460600px;}
.y19_c02385{bottom:701.220600px;}
.y18_c02385{bottom:725.070600px;}
.y17_c02385{bottom:748.830600px;}
.y16_c02385{bottom:772.680600px;}
.y15_c02385{bottom:796.440600px;}
.y14_c02385{bottom:820.290600px;}
.y13_c02385{bottom:841.800450px;}
.y12_c02385{bottom:862.500600px;}
.y11_c02385{bottom:883.020450px;}
.y10_c02385{bottom:903.900450px;}
.yf_c02385{bottom:924.600450px;}
.ye_c02385{bottom:945.120450px;}
.yd_c02385{bottom:966.000450px;}
.yc_c02385{bottom:986.520450px;}
.yb_c02385{bottom:1007.400450px;}
.ya_c02385{bottom:1028.100450px;}
.y9_c02385{bottom:1048.800450px;}
.y8_c02385{bottom:1069.320450px;}
.y7_c02385{bottom:1090.020450px;}
.y6_c02385{bottom:1110.720450px;}
.y5_c02385{bottom:1134.750450px;}
.y4_c02385{bottom:1152.660450px;}
.y1_c02385{bottom:1194.600450px;}
.h4_c02385{height:17.666016px;}
.h3_c02385{height:43.909277px;}
.h2_c02385{height:54.331699px;}
.h1_c02385{height:66.394687px;}
.h6_c02385{height:70.664062px;}
.h5_c02385{height:72.562500px;}
.h0_c02385{height:1263.000000px;}
.w1_c02385{width:892.500000px;}
.w0_c02385{width:892.830000px;}
.x0_c02385{left:0.000000px;}
.x1_c02385{left:127.620000px;}
.x2_c02385{left:438.120675px;}
@media print{
.v0_c02385{vertical-align:0.000000pt;}
.lsb_c02385{letter-spacing:-0.320000pt;}
.lsc_c02385{letter-spacing:-0.006400pt;}
.ls9_c02385{letter-spacing:0.000000pt;}
.ls8_c02385{letter-spacing:0.006400pt;}
.ls3_c02385{letter-spacing:0.012800pt;}
.ls4_c02385{letter-spacing:0.019200pt;}
.ls0_c02385{letter-spacing:0.023424pt;}
.ls5_c02385{letter-spacing:0.025600pt;}
.ls7_c02385{letter-spacing:0.032000pt;}
.ls6_c02385{letter-spacing:0.044800pt;}
.ls1_c02385{letter-spacing:0.046848pt;}
.ls2_c02385{letter-spacing:0.076128pt;}
.lsa_c02385{letter-spacing:0.081984pt;}
.ws12_c02385{word-spacing:-0.217600pt;}
.ws9_c02385{word-spacing:-0.192000pt;}
.ws0_c02385{word-spacing:-0.140544pt;}
.ws11_c02385{word-spacing:-0.108800pt;}
.ws10_c02385{word-spacing:-0.057600pt;}
.ws8_c02385{word-spacing:-0.044800pt;}
.wsa_c02385{word-spacing:-0.032000pt;}
.ws7_c02385{word-spacing:-0.025600pt;}
.wsd_c02385{word-spacing:-0.019200pt;}
.ws13_c02385{word-spacing:-0.012800pt;}
.wsf_c02385{word-spacing:-0.006400pt;}
.ws3_c02385{word-spacing:0.000000pt;}
.ws4_c02385{word-spacing:0.005856pt;}
.ws2_c02385{word-spacing:0.035136pt;}
.wse_c02385{word-spacing:0.051200pt;}
.ws1_c02385{word-spacing:0.058560pt;}
.ws14_c02385{word-spacing:1.670400pt;}
.ws15_c02385{word-spacing:1.824000pt;}
.ws16_c02385{word-spacing:1.920000pt;}
.wsc_c02385{word-spacing:7.859200pt;}
.wsb_c02385{word-spacing:7.910400pt;}
.ws6_c02385{word-spacing:17.580800pt;}
.ws5_c02385{word-spacing:17.587200pt;}
._0_c02385{margin-left:-0.913536pt;}
.fs1_c02385{font-size:16.000000pt;}
.fs0_c02385{font-size:58.560000pt;}
.fs2_c02385{font-size:64.000000pt;}
.y0_c02385{bottom:0.000000pt;}
.y3_c02385{bottom:67.307451pt;}
.y2_c02385{bottom:101.226867pt;}
.y30_c02385{bottom:136.747200pt;}
.y2f_c02385{bottom:157.867200pt;}
.y2e_c02385{bottom:178.987200pt;}
.y2d_c02385{bottom:200.187200pt;}
.y2c_c02385{bottom:221.307200pt;}
.y2b_c02385{bottom:242.507200pt;}
.y2a_c02385{bottom:263.627200pt;}
.y29_c02385{bottom:284.827200pt;}
.y28_c02385{bottom:305.947200pt;}
.y27_c02385{bottom:327.147200pt;}
.y26_c02385{bottom:348.267200pt;}
.y25_c02385{bottom:369.467200pt;}
.y24_c02385{bottom:390.587200pt;}
.y23_c02385{bottom:411.787200pt;}
.y22_c02385{bottom:432.907200pt;}
.y21_c02385{bottom:454.107200pt;}
.y20_c02385{bottom:475.227200pt;}
.y1f_c02385{bottom:496.427200pt;}
.y1e_c02385{bottom:517.547200pt;}
.y1d_c02385{bottom:538.747200pt;}
.y1c_c02385{bottom:559.867200pt;}
.y1b_c02385{bottom:581.067200pt;}
.y1a_c02385{bottom:602.187200pt;}
.y19_c02385{bottom:623.307200pt;}
.y18_c02385{bottom:644.507200pt;}
.y17_c02385{bottom:665.627200pt;}
.y16_c02385{bottom:686.827200pt;}
.y15_c02385{bottom:707.947200pt;}
.y14_c02385{bottom:729.147200pt;}
.y13_c02385{bottom:748.267067pt;}
.y12_c02385{bottom:766.667200pt;}
.y11_c02385{bottom:784.907067pt;}
.y10_c02385{bottom:803.467067pt;}
.yf_c02385{bottom:821.867067pt;}
.ye_c02385{bottom:840.107067pt;}
.yd_c02385{bottom:858.667067pt;}
.yc_c02385{bottom:876.907067pt;}
.yb_c02385{bottom:895.467067pt;}
.ya_c02385{bottom:913.867067pt;}
.y9_c02385{bottom:932.267067pt;}
.y8_c02385{bottom:950.507067pt;}
.y7_c02385{bottom:968.907067pt;}
.y6_c02385{bottom:987.307067pt;}
.y5_c02385{bottom:1008.667067pt;}
.y4_c02385{bottom:1024.587067pt;}
.y1_c02385{bottom:1061.867067pt;}
.h4_c02385{height:15.703125pt;}
.h3_c02385{height:39.030469pt;}
.h2_c02385{height:48.294844pt;}
.h1_c02385{height:59.017500pt;}
.h6_c02385{height:62.812500pt;}
.h5_c02385{height:64.500000pt;}
.h0_c02385{height:1122.666667pt;}
.w1_c02385{width:793.333333pt;}
.w0_c02385{width:793.626667pt;}
.x0_c02385{left:0.000000pt;}
.x1_c02385{left:113.440000pt;}
.x2_c02385{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3448a57064ca0dc95eeb332e.woff2')format("woff");}.ff1_c02386{font-family:ff1_c02386;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02386{font-family:ff2_c02386;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02386;src:url('chunks/assets/font_d86b02a81d111a0ad2cca388.woff2')format("woff");}.ff3_c02386{font-family:ff3_c02386;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02386;src:url('chunks/assets/font_6a441a189071d6f3db4ce3ed.woff2')format("woff");}.ff4_c02386{font-family:ff4_c02386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02386{vertical-align:0.000000px;}
.ls14_c02386{letter-spacing:-0.057600px;}
.ls11_c02386{letter-spacing:-0.036000px;}
.ls12_c02386{letter-spacing:-0.028800px;}
.ls16_c02386{letter-spacing:-0.021600px;}
.ls13_c02386{letter-spacing:-0.014400px;}
.ls15_c02386{letter-spacing:-0.007200px;}
.lsf_c02386{letter-spacing:0.000000px;}
.ls4_c02386{letter-spacing:0.007200px;}
.ls8_c02386{letter-spacing:0.014400px;}
.ls5_c02386{letter-spacing:0.021600px;}
.ls0_c02386{letter-spacing:0.026352px;}
.ls3_c02386{letter-spacing:0.028800px;}
.ls9_c02386{letter-spacing:0.036000px;}
.lsa_c02386{letter-spacing:0.043200px;}
.lse_c02386{letter-spacing:0.050400px;}
.ls1_c02386{letter-spacing:0.052704px;}
.ls7_c02386{letter-spacing:0.057600px;}
.ls6_c02386{letter-spacing:0.064800px;}
.lsb_c02386{letter-spacing:0.072000px;}
.lsd_c02386{letter-spacing:0.079200px;}
.ls2_c02386{letter-spacing:0.085644px;}
.lsc_c02386{letter-spacing:0.086400px;}
.ls10_c02386{letter-spacing:0.092232px;}
.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;}
}
.ws1_c02386{word-spacing:-16.522704px;}
.ws3a_c02386{word-spacing:-0.396000px;}
.ws16_c02386{word-spacing:-0.208800px;}
.ws2b_c02386{word-spacing:-0.194400px;}
.ws20_c02386{word-spacing:-0.187200px;}
.ws0_c02386{word-spacing:-0.158112px;}
.wsb_c02386{word-spacing:-0.151200px;}
.ws2a_c02386{word-spacing:-0.144000px;}
.ws27_c02386{word-spacing:-0.115200px;}
.ws3d_c02386{word-spacing:-0.100800px;}
.wsa_c02386{word-spacing:-0.093600px;}
.ws1a_c02386{word-spacing:-0.086400px;}
.ws11_c02386{word-spacing:-0.072000px;}
.wsc_c02386{word-spacing:-0.064800px;}
.ws42_c02386{word-spacing:-0.057600px;}
.ws15_c02386{word-spacing:-0.036000px;}
.ws1b_c02386{word-spacing:-0.021600px;}
.ws1c_c02386{word-spacing:-0.014400px;}
.ws23_c02386{word-spacing:-0.007200px;}
.ws4_c02386{word-spacing:0.000000px;}
.ws5_c02386{word-spacing:0.006588px;}
.ws14_c02386{word-spacing:0.036000px;}
.ws3_c02386{word-spacing:0.039528px;}
.ws2_c02386{word-spacing:0.065880px;}
.ws4a_c02386{word-spacing:0.086400px;}
.ws35_c02386{word-spacing:0.151200px;}
.ws26_c02386{word-spacing:1.728000px;}
.ws24_c02386{word-spacing:1.771200px;}
.ws25_c02386{word-spacing:1.814400px;}
.ws47_c02386{word-spacing:1.886400px;}
.ws3e_c02386{word-spacing:2.066400px;}
.ws46_c02386{word-spacing:2.080800px;}
.ws6_c02386{word-spacing:2.131200px;}
.ws3f_c02386{word-spacing:2.188800px;}
.ws7_c02386{word-spacing:2.196000px;}
.ws32_c02386{word-spacing:2.347200px;}
.ws18_c02386{word-spacing:2.383200px;}
.ws22_c02386{word-spacing:2.397600px;}
.ws21_c02386{word-spacing:2.426400px;}
.ws17_c02386{word-spacing:2.462400px;}
.ws31_c02386{word-spacing:2.491200px;}
.ws19_c02386{word-spacing:2.527200px;}
.ws33_c02386{word-spacing:3.124800px;}
.ws34_c02386{word-spacing:3.146400px;}
.ws49_c02386{word-spacing:4.291200px;}
.ws48_c02386{word-spacing:4.305600px;}
.ws39_c02386{word-spacing:5.155200px;}
.ws38_c02386{word-spacing:5.313600px;}
.ws37_c02386{word-spacing:6.444000px;}
.ws36_c02386{word-spacing:6.458400px;}
.wse_c02386{word-spacing:8.647200px;}
.ws41_c02386{word-spacing:9.972000px;}
.ws40_c02386{word-spacing:10.044000px;}
.ws28_c02386{word-spacing:10.310400px;}
.ws29_c02386{word-spacing:10.454400px;}
.wsd_c02386{word-spacing:14.702400px;}
.ws2e_c02386{word-spacing:16.725600px;}
.ws2c_c02386{word-spacing:16.927200px;}
.ws2d_c02386{word-spacing:16.941600px;}
.ws1d_c02386{word-spacing:18.957600px;}
.ws1f_c02386{word-spacing:19.000800px;}
.ws1e_c02386{word-spacing:19.044000px;}
.ws13_c02386{word-spacing:19.778400px;}
.ws12_c02386{word-spacing:19.785600px;}
.ws3c_c02386{word-spacing:21.204000px;}
.ws3b_c02386{word-spacing:21.218400px;}
.ws10_c02386{word-spacing:22.896000px;}
.wsf_c02386{word-spacing:23.018400px;}
.ws45_c02386{word-spacing:23.299200px;}
.ws43_c02386{word-spacing:23.320800px;}
.ws44_c02386{word-spacing:23.385600px;}
.ws2f_c02386{word-spacing:30.542400px;}
.ws30_c02386{word-spacing:30.628800px;}
.ws9_c02386{word-spacing:47.872800px;}
.ws8_c02386{word-spacing:48.009600px;}
._0_c02386{margin-left:-1.278072px;}
._1_c02386{width:1.008000px;}
.fc0_c02386{color:rgb(0,0,0);}
.fs0_c02386{font-size:65.880000px;}
.fs1_c02386{font-size:72.000000px;}
.y0_c02386{bottom:0.000000px;}
.y3_c02386{bottom:75.720882px;}
.y2_c02386{bottom:113.880225px;}
.y34_c02386{bottom:142.950450px;}
.y33_c02386{bottom:163.560450px;}
.y32_c02386{bottom:184.260450px;}
.y31_c02386{bottom:204.960450px;}
.y30_c02386{bottom:225.660450px;}
.y2f_c02386{bottom:246.360450px;}
.y2e_c02386{bottom:267.060450px;}
.y2d_c02386{bottom:287.760450px;}
.y2c_c02386{bottom:308.460450px;}
.y2b_c02386{bottom:329.160450px;}
.y2a_c02386{bottom:349.860450px;}
.y29_c02386{bottom:370.560450px;}
.y28_c02386{bottom:391.260450px;}
.y27_c02386{bottom:411.960450px;}
.y26_c02386{bottom:432.660450px;}
.y25_c02386{bottom:453.180450px;}
.y24_c02386{bottom:474.060450px;}
.y23_c02386{bottom:494.760450px;}
.y22_c02386{bottom:515.460450px;}
.y21_c02386{bottom:536.160450px;}
.y20_c02386{bottom:556.860450px;}
.y1f_c02386{bottom:577.560450px;}
.y1e_c02386{bottom:598.260450px;}
.y1d_c02386{bottom:618.960450px;}
.y1c_c02386{bottom:639.660450px;}
.y1b_c02386{bottom:660.360450px;}
.y1a_c02386{bottom:681.060450px;}
.y19_c02386{bottom:701.760450px;}
.y18_c02386{bottom:722.460450px;}
.y17_c02386{bottom:743.160450px;}
.y16_c02386{bottom:763.860450px;}
.y15_c02386{bottom:784.560450px;}
.y14_c02386{bottom:805.260450px;}
.y13_c02386{bottom:825.960450px;}
.y12_c02386{bottom:846.660450px;}
.y11_c02386{bottom:867.180450px;}
.y10_c02386{bottom:887.880450px;}
.yf_c02386{bottom:908.580450px;}
.ye_c02386{bottom:929.460450px;}
.yd_c02386{bottom:950.160450px;}
.yc_c02386{bottom:970.860450px;}
.yb_c02386{bottom:991.560450px;}
.ya_c02386{bottom:1012.260450px;}
.y9_c02386{bottom:1032.960450px;}
.y8_c02386{bottom:1053.660450px;}
.y7_c02386{bottom:1074.360450px;}
.y6_c02386{bottom:1095.060450px;}
.y5_c02386{bottom:1118.820450px;}
.y4_c02386{bottom:1141.410585px;}
.y1_c02386{bottom:1194.600450px;}
.h3_c02386{height:43.909277px;}
.h2_c02386{height:54.331699px;}
.h1_c02386{height:66.394687px;}
.h4_c02386{height:70.663522px;}
.h5_c02386{height:70.664062px;}
.h6_c02386{height:72.562500px;}
.h0_c02386{height:1263.000000px;}
.w1_c02386{width:892.500000px;}
.w0_c02386{width:892.830000px;}
.x0_c02386{left:0.000000px;}
.x1_c02386{left:127.620000px;}
.x2_c02386{left:438.120675px;}
@media print{
.v0_c02386{vertical-align:0.000000pt;}
.ls14_c02386{letter-spacing:-0.051200pt;}
.ls11_c02386{letter-spacing:-0.032000pt;}
.ls12_c02386{letter-spacing:-0.025600pt;}
.ls16_c02386{letter-spacing:-0.019200pt;}
.ls13_c02386{letter-spacing:-0.012800pt;}
.ls15_c02386{letter-spacing:-0.006400pt;}
.lsf_c02386{letter-spacing:0.000000pt;}
.ls4_c02386{letter-spacing:0.006400pt;}
.ls8_c02386{letter-spacing:0.012800pt;}
.ls5_c02386{letter-spacing:0.019200pt;}
.ls0_c02386{letter-spacing:0.023424pt;}
.ls3_c02386{letter-spacing:0.025600pt;}
.ls9_c02386{letter-spacing:0.032000pt;}
.lsa_c02386{letter-spacing:0.038400pt;}
.lse_c02386{letter-spacing:0.044800pt;}
.ls1_c02386{letter-spacing:0.046848pt;}
.ls7_c02386{letter-spacing:0.051200pt;}
.ls6_c02386{letter-spacing:0.057600pt;}
.lsb_c02386{letter-spacing:0.064000pt;}
.lsd_c02386{letter-spacing:0.070400pt;}
.ls2_c02386{letter-spacing:0.076128pt;}
.lsc_c02386{letter-spacing:0.076800pt;}
.ls10_c02386{letter-spacing:0.081984pt;}
.ws1_c02386{word-spacing:-14.686848pt;}
.ws3a_c02386{word-spacing:-0.352000pt;}
.ws16_c02386{word-spacing:-0.185600pt;}
.ws2b_c02386{word-spacing:-0.172800pt;}
.ws20_c02386{word-spacing:-0.166400pt;}
.ws0_c02386{word-spacing:-0.140544pt;}
.wsb_c02386{word-spacing:-0.134400pt;}
.ws2a_c02386{word-spacing:-0.128000pt;}
.ws27_c02386{word-spacing:-0.102400pt;}
.ws3d_c02386{word-spacing:-0.089600pt;}
.wsa_c02386{word-spacing:-0.083200pt;}
.ws1a_c02386{word-spacing:-0.076800pt;}
.ws11_c02386{word-spacing:-0.064000pt;}
.wsc_c02386{word-spacing:-0.057600pt;}
.ws42_c02386{word-spacing:-0.051200pt;}
.ws15_c02386{word-spacing:-0.032000pt;}
.ws1b_c02386{word-spacing:-0.019200pt;}
.ws1c_c02386{word-spacing:-0.012800pt;}
.ws23_c02386{word-spacing:-0.006400pt;}
.ws4_c02386{word-spacing:0.000000pt;}
.ws5_c02386{word-spacing:0.005856pt;}
.ws14_c02386{word-spacing:0.032000pt;}
.ws3_c02386{word-spacing:0.035136pt;}
.ws2_c02386{word-spacing:0.058560pt;}
.ws4a_c02386{word-spacing:0.076800pt;}
.ws35_c02386{word-spacing:0.134400pt;}
.ws26_c02386{word-spacing:1.536000pt;}
.ws24_c02386{word-spacing:1.574400pt;}
.ws25_c02386{word-spacing:1.612800pt;}
.ws47_c02386{word-spacing:1.676800pt;}
.ws3e_c02386{word-spacing:1.836800pt;}
.ws46_c02386{word-spacing:1.849600pt;}
.ws6_c02386{word-spacing:1.894400pt;}
.ws3f_c02386{word-spacing:1.945600pt;}
.ws7_c02386{word-spacing:1.952000pt;}
.ws32_c02386{word-spacing:2.086400pt;}
.ws18_c02386{word-spacing:2.118400pt;}
.ws22_c02386{word-spacing:2.131200pt;}
.ws21_c02386{word-spacing:2.156800pt;}
.ws17_c02386{word-spacing:2.188800pt;}
.ws31_c02386{word-spacing:2.214400pt;}
.ws19_c02386{word-spacing:2.246400pt;}
.ws33_c02386{word-spacing:2.777600pt;}
.ws34_c02386{word-spacing:2.796800pt;}
.ws49_c02386{word-spacing:3.814400pt;}
.ws48_c02386{word-spacing:3.827200pt;}
.ws39_c02386{word-spacing:4.582400pt;}
.ws38_c02386{word-spacing:4.723200pt;}
.ws37_c02386{word-spacing:5.728000pt;}
.ws36_c02386{word-spacing:5.740800pt;}
.wse_c02386{word-spacing:7.686400pt;}
.ws41_c02386{word-spacing:8.864000pt;}
.ws40_c02386{word-spacing:8.928000pt;}
.ws28_c02386{word-spacing:9.164800pt;}
.ws29_c02386{word-spacing:9.292800pt;}
.wsd_c02386{word-spacing:13.068800pt;}
.ws2e_c02386{word-spacing:14.867200pt;}
.ws2c_c02386{word-spacing:15.046400pt;}
.ws2d_c02386{word-spacing:15.059200pt;}
.ws1d_c02386{word-spacing:16.851200pt;}
.ws1f_c02386{word-spacing:16.889600pt;}
.ws1e_c02386{word-spacing:16.928000pt;}
.ws13_c02386{word-spacing:17.580800pt;}
.ws12_c02386{word-spacing:17.587200pt;}
.ws3c_c02386{word-spacing:18.848000pt;}
.ws3b_c02386{word-spacing:18.860800pt;}
.ws10_c02386{word-spacing:20.352000pt;}
.wsf_c02386{word-spacing:20.460800pt;}
.ws45_c02386{word-spacing:20.710400pt;}
.ws43_c02386{word-spacing:20.729600pt;}
.ws44_c02386{word-spacing:20.787200pt;}
.ws2f_c02386{word-spacing:27.148800pt;}
.ws30_c02386{word-spacing:27.225600pt;}
.ws9_c02386{word-spacing:42.553600pt;}
.ws8_c02386{word-spacing:42.675200pt;}
._0_c02386{margin-left:-1.136064pt;}
._1_c02386{width:0.896000pt;}
.fs0_c02386{font-size:58.560000pt;}
.fs1_c02386{font-size:64.000000pt;}
.y0_c02386{bottom:0.000000pt;}
.y3_c02386{bottom:67.307451pt;}
.y2_c02386{bottom:101.226867pt;}
.y34_c02386{bottom:127.067067pt;}
.y33_c02386{bottom:145.387067pt;}
.y32_c02386{bottom:163.787067pt;}
.y31_c02386{bottom:182.187067pt;}
.y30_c02386{bottom:200.587067pt;}
.y2f_c02386{bottom:218.987067pt;}
.y2e_c02386{bottom:237.387067pt;}
.y2d_c02386{bottom:255.787067pt;}
.y2c_c02386{bottom:274.187067pt;}
.y2b_c02386{bottom:292.587067pt;}
.y2a_c02386{bottom:310.987067pt;}
.y29_c02386{bottom:329.387067pt;}
.y28_c02386{bottom:347.787067pt;}
.y27_c02386{bottom:366.187067pt;}
.y26_c02386{bottom:384.587067pt;}
.y25_c02386{bottom:402.827067pt;}
.y24_c02386{bottom:421.387067pt;}
.y23_c02386{bottom:439.787067pt;}
.y22_c02386{bottom:458.187067pt;}
.y21_c02386{bottom:476.587067pt;}
.y20_c02386{bottom:494.987067pt;}
.y1f_c02386{bottom:513.387067pt;}
.y1e_c02386{bottom:531.787067pt;}
.y1d_c02386{bottom:550.187067pt;}
.y1c_c02386{bottom:568.587067pt;}
.y1b_c02386{bottom:586.987067pt;}
.y1a_c02386{bottom:605.387067pt;}
.y19_c02386{bottom:623.787067pt;}
.y18_c02386{bottom:642.187067pt;}
.y17_c02386{bottom:660.587067pt;}
.y16_c02386{bottom:678.987067pt;}
.y15_c02386{bottom:697.387067pt;}
.y14_c02386{bottom:715.787067pt;}
.y13_c02386{bottom:734.187067pt;}
.y12_c02386{bottom:752.587067pt;}
.y11_c02386{bottom:770.827067pt;}
.y10_c02386{bottom:789.227067pt;}
.yf_c02386{bottom:807.627067pt;}
.ye_c02386{bottom:826.187067pt;}
.yd_c02386{bottom:844.587067pt;}
.yc_c02386{bottom:862.987067pt;}
.yb_c02386{bottom:881.387067pt;}
.ya_c02386{bottom:899.787067pt;}
.y9_c02386{bottom:918.187067pt;}
.y8_c02386{bottom:936.587067pt;}
.y7_c02386{bottom:954.987067pt;}
.y6_c02386{bottom:973.387067pt;}
.y5_c02386{bottom:994.507067pt;}
.y4_c02386{bottom:1014.587187pt;}
.y1_c02386{bottom:1061.867067pt;}
.h3_c02386{height:39.030469pt;}
.h2_c02386{height:48.294844pt;}
.h1_c02386{height:59.017500pt;}
.h4_c02386{height:62.812020pt;}
.h5_c02386{height:62.812500pt;}
.h6_c02386{height:64.500000pt;}
.h0_c02386{height:1122.666667pt;}
.w1_c02386{width:793.333333pt;}
.w0_c02386{width:793.626667pt;}
.x0_c02386{left:0.000000pt;}
.x1_c02386{left:113.440000pt;}
.x2_c02386{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bafc400b7527428bf670ea2.woff2')format("woff");}.ff1_c02387{font-family:ff1_c02387;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02387{font-family:ff2_c02387;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02387;src:url('chunks/assets/font_b2d81a11cd0795552940e4d1.woff2')format("woff");}.ff3_c02387{font-family:ff3_c02387;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02387;src:url('chunks/assets/font_ca77374f70f90f474dfe180f.woff2')format("woff");}.ff4_c02387{font-family:ff4_c02387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02387{vertical-align:0.000000px;}
.ls10_c02387{letter-spacing:-0.064800px;}
.ls11_c02387{letter-spacing:-0.021600px;}
.ls12_c02387{letter-spacing:-0.014400px;}
.ls13_c02387{letter-spacing:-0.007200px;}
.lsf_c02387{letter-spacing:0.000000px;}
.ls4_c02387{letter-spacing:0.007200px;}
.ls5_c02387{letter-spacing:0.014400px;}
.lsc_c02387{letter-spacing:0.021600px;}
.ls0_c02387{letter-spacing:0.026352px;}
.ls2_c02387{letter-spacing:0.028800px;}
.ls6_c02387{letter-spacing:0.036000px;}
.ls3_c02387{letter-spacing:0.043200px;}
.lsd_c02387{letter-spacing:0.050400px;}
.ls1_c02387{letter-spacing:0.052704px;}
.ls8_c02387{letter-spacing:0.057600px;}
.ls7_c02387{letter-spacing:0.064800px;}
.lsb_c02387{letter-spacing:0.079200px;}
.lse_c02387{letter-spacing:0.086400px;}
.ls9_c02387{letter-spacing:0.092232px;}
.lsa_c02387{letter-spacing:0.100800px;}
.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;}
}
.ws13_c02387{word-spacing:-0.244800px;}
.ws16_c02387{word-spacing:-0.208800px;}
.ws25_c02387{word-spacing:-0.187200px;}
.ws2d_c02387{word-spacing:-0.180000px;}
.ws1e_c02387{word-spacing:-0.172800px;}
.ws1c_c02387{word-spacing:-0.165600px;}
.ws0_c02387{word-spacing:-0.158112px;}
.ws2c_c02387{word-spacing:-0.151200px;}
.ws28_c02387{word-spacing:-0.136800px;}
.ws27_c02387{word-spacing:-0.129600px;}
.ws2a_c02387{word-spacing:-0.122400px;}
.ws29_c02387{word-spacing:-0.115200px;}
.ws4_c02387{word-spacing:-0.100800px;}
.ws23_c02387{word-spacing:-0.079200px;}
.ws1f_c02387{word-spacing:-0.072000px;}
.ws6_c02387{word-spacing:-0.064800px;}
.ws24_c02387{word-spacing:-0.050400px;}
.ws2b_c02387{word-spacing:-0.036000px;}
.ws1d_c02387{word-spacing:-0.028800px;}
.ws22_c02387{word-spacing:-0.021600px;}
.ws21_c02387{word-spacing:-0.014400px;}
.ws5_c02387{word-spacing:-0.007200px;}
.ws3_c02387{word-spacing:0.000000px;}
.ws20_c02387{word-spacing:0.014400px;}
.ws2_c02387{word-spacing:0.039528px;}
.ws26_c02387{word-spacing:0.043200px;}
.ws1_c02387{word-spacing:0.065880px;}
.wsd_c02387{word-spacing:2.836800px;}
.wsc_c02387{word-spacing:2.880000px;}
.wse_c02387{word-spacing:2.944800px;}
.ws12_c02387{word-spacing:3.513600px;}
.ws11_c02387{word-spacing:3.578400px;}
.ws8_c02387{word-spacing:6.825600px;}
.ws7_c02387{word-spacing:6.868800px;}
.wsb_c02387{word-spacing:8.200800px;}
.ws9_c02387{word-spacing:8.265600px;}
.wsa_c02387{word-spacing:8.280000px;}
.ws1b_c02387{word-spacing:8.971200px;}
.ws1a_c02387{word-spacing:9.021600px;}
.wsf_c02387{word-spacing:17.172000px;}
.ws10_c02387{word-spacing:17.251200px;}
.ws15_c02387{word-spacing:25.077600px;}
.ws14_c02387{word-spacing:25.185600px;}
.ws19_c02387{word-spacing:26.136000px;}
.ws18_c02387{word-spacing:26.208000px;}
.ws17_c02387{word-spacing:26.272800px;}
._0_c02387{margin-left:-1.036800px;}
.fc0_c02387{color:rgb(0,0,0);}
.fs0_c02387{font-size:65.880000px;}
.fs1_c02387{font-size:72.000000px;}
.y0_c02387{bottom:0.000000px;}
.y3_c02387{bottom:75.720882px;}
.y2_c02387{bottom:113.880225px;}
.y33_c02387{bottom:147.720450px;}
.y32_c02387{bottom:171.570450px;}
.y31_c02387{bottom:196.050450px;}
.y30_c02387{bottom:216.840450px;}
.y2f_c02387{bottom:237.540450px;}
.y2e_c02387{bottom:258.240450px;}
.y2d_c02387{bottom:278.940450px;}
.y2c_c02387{bottom:299.640450px;}
.y2b_c02387{bottom:320.340450px;}
.y2a_c02387{bottom:341.040450px;}
.y29_c02387{bottom:361.740450px;}
.y28_c02387{bottom:382.440450px;}
.y27_c02387{bottom:403.140450px;}
.y26_c02387{bottom:423.840450px;}
.y25_c02387{bottom:444.540450px;}
.y24_c02387{bottom:465.240450px;}
.y23_c02387{bottom:485.940450px;}
.y22_c02387{bottom:506.640450px;}
.y21_c02387{bottom:527.340450px;}
.y20_c02387{bottom:548.040450px;}
.y1f_c02387{bottom:568.740450px;}
.y1e_c02387{bottom:589.440450px;}
.y1d_c02387{bottom:610.140450px;}
.y1c_c02387{bottom:630.840450px;}
.y1b_c02387{bottom:651.540450px;}
.y1a_c02387{bottom:672.240450px;}
.y19_c02387{bottom:692.940450px;}
.y18_c02387{bottom:716.430450px;}
.y17_c02387{bottom:740.550450px;}
.y16_c02387{bottom:763.230522px;}
.y15_c02387{bottom:785.010450px;}
.y14_c02387{bottom:807.420450px;}
.y13_c02387{bottom:828.930450px;}
.y12_c02387{bottom:849.630450px;}
.y11_c02387{bottom:870.330450px;}
.y10_c02387{bottom:891.030450px;}
.yf_c02387{bottom:911.730450px;}
.ye_c02387{bottom:932.430450px;}
.yd_c02387{bottom:953.130450px;}
.yc_c02387{bottom:973.830450px;}
.yb_c02387{bottom:994.530450px;}
.ya_c02387{bottom:1015.230450px;}
.y9_c02387{bottom:1035.930450px;}
.y8_c02387{bottom:1056.630450px;}
.y7_c02387{bottom:1077.330450px;}
.y6_c02387{bottom:1098.030450px;}
.y5_c02387{bottom:1118.730450px;}
.y4_c02387{bottom:1139.430450px;}
.y1_c02387{bottom:1194.600450px;}
.h3_c02387{height:43.909277px;}
.h2_c02387{height:54.331699px;}
.h5_c02387{height:64.657617px;}
.h1_c02387{height:66.394687px;}
.h4_c02387{height:70.664062px;}
.h6_c02387{height:72.562500px;}
.h0_c02387{height:1263.000000px;}
.w1_c02387{width:892.500000px;}
.w0_c02387{width:892.830000px;}
.x0_c02387{left:0.000000px;}
.x1_c02387{left:127.620000px;}
.x2_c02387{left:438.120675px;}
@media print{
.v0_c02387{vertical-align:0.000000pt;}
.ls10_c02387{letter-spacing:-0.057600pt;}
.ls11_c02387{letter-spacing:-0.019200pt;}
.ls12_c02387{letter-spacing:-0.012800pt;}
.ls13_c02387{letter-spacing:-0.006400pt;}
.lsf_c02387{letter-spacing:0.000000pt;}
.ls4_c02387{letter-spacing:0.006400pt;}
.ls5_c02387{letter-spacing:0.012800pt;}
.lsc_c02387{letter-spacing:0.019200pt;}
.ls0_c02387{letter-spacing:0.023424pt;}
.ls2_c02387{letter-spacing:0.025600pt;}
.ls6_c02387{letter-spacing:0.032000pt;}
.ls3_c02387{letter-spacing:0.038400pt;}
.lsd_c02387{letter-spacing:0.044800pt;}
.ls1_c02387{letter-spacing:0.046848pt;}
.ls8_c02387{letter-spacing:0.051200pt;}
.ls7_c02387{letter-spacing:0.057600pt;}
.lsb_c02387{letter-spacing:0.070400pt;}
.lse_c02387{letter-spacing:0.076800pt;}
.ls9_c02387{letter-spacing:0.081984pt;}
.lsa_c02387{letter-spacing:0.089600pt;}
.ws13_c02387{word-spacing:-0.217600pt;}
.ws16_c02387{word-spacing:-0.185600pt;}
.ws25_c02387{word-spacing:-0.166400pt;}
.ws2d_c02387{word-spacing:-0.160000pt;}
.ws1e_c02387{word-spacing:-0.153600pt;}
.ws1c_c02387{word-spacing:-0.147200pt;}
.ws0_c02387{word-spacing:-0.140544pt;}
.ws2c_c02387{word-spacing:-0.134400pt;}
.ws28_c02387{word-spacing:-0.121600pt;}
.ws27_c02387{word-spacing:-0.115200pt;}
.ws2a_c02387{word-spacing:-0.108800pt;}
.ws29_c02387{word-spacing:-0.102400pt;}
.ws4_c02387{word-spacing:-0.089600pt;}
.ws23_c02387{word-spacing:-0.070400pt;}
.ws1f_c02387{word-spacing:-0.064000pt;}
.ws6_c02387{word-spacing:-0.057600pt;}
.ws24_c02387{word-spacing:-0.044800pt;}
.ws2b_c02387{word-spacing:-0.032000pt;}
.ws1d_c02387{word-spacing:-0.025600pt;}
.ws22_c02387{word-spacing:-0.019200pt;}
.ws21_c02387{word-spacing:-0.012800pt;}
.ws5_c02387{word-spacing:-0.006400pt;}
.ws3_c02387{word-spacing:0.000000pt;}
.ws20_c02387{word-spacing:0.012800pt;}
.ws2_c02387{word-spacing:0.035136pt;}
.ws26_c02387{word-spacing:0.038400pt;}
.ws1_c02387{word-spacing:0.058560pt;}
.wsd_c02387{word-spacing:2.521600pt;}
.wsc_c02387{word-spacing:2.560000pt;}
.wse_c02387{word-spacing:2.617600pt;}
.ws12_c02387{word-spacing:3.123200pt;}
.ws11_c02387{word-spacing:3.180800pt;}
.ws8_c02387{word-spacing:6.067200pt;}
.ws7_c02387{word-spacing:6.105600pt;}
.wsb_c02387{word-spacing:7.289600pt;}
.ws9_c02387{word-spacing:7.347200pt;}
.wsa_c02387{word-spacing:7.360000pt;}
.ws1b_c02387{word-spacing:7.974400pt;}
.ws1a_c02387{word-spacing:8.019200pt;}
.wsf_c02387{word-spacing:15.264000pt;}
.ws10_c02387{word-spacing:15.334400pt;}
.ws15_c02387{word-spacing:22.291200pt;}
.ws14_c02387{word-spacing:22.387200pt;}
.ws19_c02387{word-spacing:23.232000pt;}
.ws18_c02387{word-spacing:23.296000pt;}
.ws17_c02387{word-spacing:23.353600pt;}
._0_c02387{margin-left:-0.921600pt;}
.fs0_c02387{font-size:58.560000pt;}
.fs1_c02387{font-size:64.000000pt;}
.y0_c02387{bottom:0.000000pt;}
.y3_c02387{bottom:67.307451pt;}
.y2_c02387{bottom:101.226867pt;}
.y33_c02387{bottom:131.307067pt;}
.y32_c02387{bottom:152.507067pt;}
.y31_c02387{bottom:174.267067pt;}
.y30_c02387{bottom:192.747067pt;}
.y2f_c02387{bottom:211.147067pt;}
.y2e_c02387{bottom:229.547067pt;}
.y2d_c02387{bottom:247.947067pt;}
.y2c_c02387{bottom:266.347067pt;}
.y2b_c02387{bottom:284.747067pt;}
.y2a_c02387{bottom:303.147067pt;}
.y29_c02387{bottom:321.547067pt;}
.y28_c02387{bottom:339.947067pt;}
.y27_c02387{bottom:358.347067pt;}
.y26_c02387{bottom:376.747067pt;}
.y25_c02387{bottom:395.147067pt;}
.y24_c02387{bottom:413.547067pt;}
.y23_c02387{bottom:431.947067pt;}
.y22_c02387{bottom:450.347067pt;}
.y21_c02387{bottom:468.747067pt;}
.y20_c02387{bottom:487.147067pt;}
.y1f_c02387{bottom:505.547067pt;}
.y1e_c02387{bottom:523.947067pt;}
.y1d_c02387{bottom:542.347067pt;}
.y1c_c02387{bottom:560.747067pt;}
.y1b_c02387{bottom:579.147067pt;}
.y1a_c02387{bottom:597.547067pt;}
.y19_c02387{bottom:615.947067pt;}
.y18_c02387{bottom:636.827067pt;}
.y17_c02387{bottom:658.267067pt;}
.y16_c02387{bottom:678.427131pt;}
.y15_c02387{bottom:697.787067pt;}
.y14_c02387{bottom:717.707067pt;}
.y13_c02387{bottom:736.827067pt;}
.y12_c02387{bottom:755.227067pt;}
.y11_c02387{bottom:773.627067pt;}
.y10_c02387{bottom:792.027067pt;}
.yf_c02387{bottom:810.427067pt;}
.ye_c02387{bottom:828.827067pt;}
.yd_c02387{bottom:847.227067pt;}
.yc_c02387{bottom:865.627067pt;}
.yb_c02387{bottom:884.027067pt;}
.ya_c02387{bottom:902.427067pt;}
.y9_c02387{bottom:920.827067pt;}
.y8_c02387{bottom:939.227067pt;}
.y7_c02387{bottom:957.627067pt;}
.y6_c02387{bottom:976.027067pt;}
.y5_c02387{bottom:994.427067pt;}
.y4_c02387{bottom:1012.827067pt;}
.y1_c02387{bottom:1061.867067pt;}
.h3_c02387{height:39.030469pt;}
.h2_c02387{height:48.294844pt;}
.h5_c02387{height:57.473437pt;}
.h1_c02387{height:59.017500pt;}
.h4_c02387{height:62.812500pt;}
.h6_c02387{height:64.500000pt;}
.h0_c02387{height:1122.666667pt;}
.w1_c02387{width:793.333333pt;}
.w0_c02387{width:793.626667pt;}
.x0_c02387{left:0.000000pt;}
.x1_c02387{left:113.440000pt;}
.x2_c02387{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e62beab1ea94fc60b9a14dc.woff2')format("woff");}.ff1_c02388{font-family:ff1_c02388;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02388{font-family:ff2_c02388;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02388;src:url('chunks/assets/font_4f581026b92c246964411cb4.woff2')format("woff");}.ff3_c02388{font-family:ff3_c02388;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02388;src:url('chunks/assets/font_08a6d8278eff7dac7646b68f.woff2')format("woff");}.ff4_c02388{font-family:ff4_c02388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02388{vertical-align:0.000000px;}
.ls11_c02388{letter-spacing:-0.036000px;}
.ls12_c02388{letter-spacing:-0.021600px;}
.lsf_c02388{letter-spacing:-0.014400px;}
.ls10_c02388{letter-spacing:-0.007200px;}
.lsd_c02388{letter-spacing:0.000000px;}
.ls9_c02388{letter-spacing:0.007200px;}
.lsa_c02388{letter-spacing:0.014400px;}
.ls2_c02388{letter-spacing:0.021600px;}
.ls0_c02388{letter-spacing:0.026352px;}
.ls6_c02388{letter-spacing:0.028800px;}
.ls5_c02388{letter-spacing:0.036000px;}
.ls4_c02388{letter-spacing:0.043200px;}
.lsb_c02388{letter-spacing:0.050400px;}
.ls1_c02388{letter-spacing:0.052704px;}
.ls3_c02388{letter-spacing:0.057600px;}
.ls8_c02388{letter-spacing:0.072000px;}
.lsc_c02388{letter-spacing:0.086400px;}
.lse_c02388{letter-spacing:0.092232px;}
.ls7_c02388{letter-spacing:0.100800px;}
.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;}
}
.ws34_c02388{word-spacing:-0.345600px;}
.ws16_c02388{word-spacing:-0.172800px;}
.ws38_c02388{word-spacing:-0.158400px;}
.ws0_c02388{word-spacing:-0.158112px;}
.ws14_c02388{word-spacing:-0.144000px;}
.ws21_c02388{word-spacing:-0.122400px;}
.ws1a_c02388{word-spacing:-0.115200px;}
.ws24_c02388{word-spacing:-0.100800px;}
.ws37_c02388{word-spacing:-0.086400px;}
.ws13_c02388{word-spacing:-0.079200px;}
.ws11_c02388{word-spacing:-0.072000px;}
.ws25_c02388{word-spacing:-0.057600px;}
.ws29_c02388{word-spacing:-0.050400px;}
.ws26_c02388{word-spacing:-0.043200px;}
.ws10_c02388{word-spacing:-0.028800px;}
.ws31_c02388{word-spacing:-0.021600px;}
.ws15_c02388{word-spacing:-0.014400px;}
.ws4_c02388{word-spacing:-0.007200px;}
.ws3_c02388{word-spacing:0.000000px;}
.ws1b_c02388{word-spacing:0.007200px;}
.wsa_c02388{word-spacing:0.014400px;}
.ws2_c02388{word-spacing:0.039528px;}
.ws1_c02388{word-spacing:0.065880px;}
.ws19_c02388{word-spacing:0.252000px;}
.ws18_c02388{word-spacing:0.468000px;}
.ws27_c02388{word-spacing:1.425600px;}
.ws28_c02388{word-spacing:1.447200px;}
.ws8_c02388{word-spacing:1.994400px;}
.ws7_c02388{word-spacing:2.037600px;}
.ws17_c02388{word-spacing:2.131200px;}
.ws9_c02388{word-spacing:2.484000px;}
.ws2a_c02388{word-spacing:3.225600px;}
.ws2b_c02388{word-spacing:3.240000px;}
.ws6_c02388{word-spacing:3.477600px;}
.ws5_c02388{word-spacing:3.693600px;}
.wsc_c02388{word-spacing:4.168800px;}
.wsd_c02388{word-spacing:4.356000px;}
.wsb_c02388{word-spacing:4.384800px;}
.ws32_c02388{word-spacing:7.120800px;}
.ws33_c02388{word-spacing:7.135200px;}
.ws1d_c02388{word-spacing:10.036800px;}
.ws1c_c02388{word-spacing:10.072800px;}
.ws1e_c02388{word-spacing:11.426400px;}
.ws1f_c02388{word-spacing:11.498400px;}
.ws20_c02388{word-spacing:11.534400px;}
.ws2e_c02388{word-spacing:13.586400px;}
.ws2f_c02388{word-spacing:13.672800px;}
.ws30_c02388{word-spacing:13.716000px;}
.ws2c_c02388{word-spacing:17.287200px;}
.ws2d_c02388{word-spacing:17.301600px;}
.wsf_c02388{word-spacing:17.388000px;}
.wse_c02388{word-spacing:17.539200px;}
.ws23_c02388{word-spacing:25.567200px;}
.ws22_c02388{word-spacing:25.624800px;}
.ws12_c02388{word-spacing:32.378400px;}
.ws35_c02388{word-spacing:36.259200px;}
.ws36_c02388{word-spacing:36.352800px;}
._0_c02388{margin-left:-1.404000px;}
.fc0_c02388{color:rgb(0,0,0);}
.fs0_c02388{font-size:65.880000px;}
.fs1_c02388{font-size:72.000000px;}
.y0_c02388{bottom:0.000000px;}
.y3_c02388{bottom:75.720882px;}
.y2_c02388{bottom:113.880225px;}
.y2e_c02388{bottom:140.070600px;}
.y2d_c02388{bottom:163.920600px;}
.y2c_c02388{bottom:187.680600px;}
.y2b_c02388{bottom:211.530600px;}
.y2a_c02388{bottom:235.290600px;}
.y29_c02388{bottom:259.860450px;}
.y28_c02388{bottom:283.620450px;}
.y27_c02388{bottom:307.470450px;}
.y26_c02388{bottom:331.230450px;}
.y25_c02388{bottom:355.080450px;}
.y24_c02388{bottom:378.840450px;}
.y23_c02388{bottom:402.690450px;}
.y22_c02388{bottom:426.450600px;}
.y21_c02388{bottom:450.300450px;}
.y20_c02388{bottom:474.060450px;}
.y1f_c02388{bottom:497.910450px;}
.y1e_c02388{bottom:521.670450px;}
.y1d_c02388{bottom:545.520450px;}
.y1c_c02388{bottom:569.280450px;}
.y1b_c02388{bottom:592.950450px;}
.y1a_c02388{bottom:616.890450px;}
.y19_c02388{bottom:640.740450px;}
.y18_c02388{bottom:664.500450px;}
.y17_c02388{bottom:688.260450px;}
.y16_c02388{bottom:712.110450px;}
.y15_c02388{bottom:735.870450px;}
.y14_c02388{bottom:759.720450px;}
.y13_c02388{bottom:783.480450px;}
.y12_c02388{bottom:807.330450px;}
.y11_c02388{bottom:831.090450px;}
.y10_c02388{bottom:854.940450px;}
.yf_c02388{bottom:878.700450px;}
.ye_c02388{bottom:902.550450px;}
.yd_c02388{bottom:926.310450px;}
.yc_c02388{bottom:950.160450px;}
.yb_c02388{bottom:973.920450px;}
.ya_c02388{bottom:997.770450px;}
.y9_c02388{bottom:1021.530450px;}
.y8_c02388{bottom:1045.380450px;}
.y7_c02388{bottom:1069.140450px;}
.y6_c02388{bottom:1092.990450px;}
.y5_c02388{bottom:1116.570450px;}
.y4_c02388{bottom:1140.690450px;}
.y1_c02388{bottom:1194.600450px;}
.h3_c02388{height:43.909277px;}
.h2_c02388{height:54.331699px;}
.h1_c02388{height:66.394687px;}
.h5_c02388{height:70.664062px;}
.h4_c02388{height:72.562500px;}
.h0_c02388{height:1263.000000px;}
.w1_c02388{width:892.500000px;}
.w0_c02388{width:892.830000px;}
.x0_c02388{left:0.000000px;}
.x1_c02388{left:127.620000px;}
.x2_c02388{left:438.120675px;}
@media print{
.v0_c02388{vertical-align:0.000000pt;}
.ls11_c02388{letter-spacing:-0.032000pt;}
.ls12_c02388{letter-spacing:-0.019200pt;}
.lsf_c02388{letter-spacing:-0.012800pt;}
.ls10_c02388{letter-spacing:-0.006400pt;}
.lsd_c02388{letter-spacing:0.000000pt;}
.ls9_c02388{letter-spacing:0.006400pt;}
.lsa_c02388{letter-spacing:0.012800pt;}
.ls2_c02388{letter-spacing:0.019200pt;}
.ls0_c02388{letter-spacing:0.023424pt;}
.ls6_c02388{letter-spacing:0.025600pt;}
.ls5_c02388{letter-spacing:0.032000pt;}
.ls4_c02388{letter-spacing:0.038400pt;}
.lsb_c02388{letter-spacing:0.044800pt;}
.ls1_c02388{letter-spacing:0.046848pt;}
.ls3_c02388{letter-spacing:0.051200pt;}
.ls8_c02388{letter-spacing:0.064000pt;}
.lsc_c02388{letter-spacing:0.076800pt;}
.lse_c02388{letter-spacing:0.081984pt;}
.ls7_c02388{letter-spacing:0.089600pt;}
.ws34_c02388{word-spacing:-0.307200pt;}
.ws16_c02388{word-spacing:-0.153600pt;}
.ws38_c02388{word-spacing:-0.140800pt;}
.ws0_c02388{word-spacing:-0.140544pt;}
.ws14_c02388{word-spacing:-0.128000pt;}
.ws21_c02388{word-spacing:-0.108800pt;}
.ws1a_c02388{word-spacing:-0.102400pt;}
.ws24_c02388{word-spacing:-0.089600pt;}
.ws37_c02388{word-spacing:-0.076800pt;}
.ws13_c02388{word-spacing:-0.070400pt;}
.ws11_c02388{word-spacing:-0.064000pt;}
.ws25_c02388{word-spacing:-0.051200pt;}
.ws29_c02388{word-spacing:-0.044800pt;}
.ws26_c02388{word-spacing:-0.038400pt;}
.ws10_c02388{word-spacing:-0.025600pt;}
.ws31_c02388{word-spacing:-0.019200pt;}
.ws15_c02388{word-spacing:-0.012800pt;}
.ws4_c02388{word-spacing:-0.006400pt;}
.ws3_c02388{word-spacing:0.000000pt;}
.ws1b_c02388{word-spacing:0.006400pt;}
.wsa_c02388{word-spacing:0.012800pt;}
.ws2_c02388{word-spacing:0.035136pt;}
.ws1_c02388{word-spacing:0.058560pt;}
.ws19_c02388{word-spacing:0.224000pt;}
.ws18_c02388{word-spacing:0.416000pt;}
.ws27_c02388{word-spacing:1.267200pt;}
.ws28_c02388{word-spacing:1.286400pt;}
.ws8_c02388{word-spacing:1.772800pt;}
.ws7_c02388{word-spacing:1.811200pt;}
.ws17_c02388{word-spacing:1.894400pt;}
.ws9_c02388{word-spacing:2.208000pt;}
.ws2a_c02388{word-spacing:2.867200pt;}
.ws2b_c02388{word-spacing:2.880000pt;}
.ws6_c02388{word-spacing:3.091200pt;}
.ws5_c02388{word-spacing:3.283200pt;}
.wsc_c02388{word-spacing:3.705600pt;}
.wsd_c02388{word-spacing:3.872000pt;}
.wsb_c02388{word-spacing:3.897600pt;}
.ws32_c02388{word-spacing:6.329600pt;}
.ws33_c02388{word-spacing:6.342400pt;}
.ws1d_c02388{word-spacing:8.921600pt;}
.ws1c_c02388{word-spacing:8.953600pt;}
.ws1e_c02388{word-spacing:10.156800pt;}
.ws1f_c02388{word-spacing:10.220800pt;}
.ws20_c02388{word-spacing:10.252800pt;}
.ws2e_c02388{word-spacing:12.076800pt;}
.ws2f_c02388{word-spacing:12.153600pt;}
.ws30_c02388{word-spacing:12.192000pt;}
.ws2c_c02388{word-spacing:15.366400pt;}
.ws2d_c02388{word-spacing:15.379200pt;}
.wsf_c02388{word-spacing:15.456000pt;}
.wse_c02388{word-spacing:15.590400pt;}
.ws23_c02388{word-spacing:22.726400pt;}
.ws22_c02388{word-spacing:22.777600pt;}
.ws12_c02388{word-spacing:28.780800pt;}
.ws35_c02388{word-spacing:32.230400pt;}
.ws36_c02388{word-spacing:32.313600pt;}
._0_c02388{margin-left:-1.248000pt;}
.fs0_c02388{font-size:58.560000pt;}
.fs1_c02388{font-size:64.000000pt;}
.y0_c02388{bottom:0.000000pt;}
.y3_c02388{bottom:67.307451pt;}
.y2_c02388{bottom:101.226867pt;}
.y2e_c02388{bottom:124.507200pt;}
.y2d_c02388{bottom:145.707200pt;}
.y2c_c02388{bottom:166.827200pt;}
.y2b_c02388{bottom:188.027200pt;}
.y2a_c02388{bottom:209.147200pt;}
.y29_c02388{bottom:230.987067pt;}
.y28_c02388{bottom:252.107067pt;}
.y27_c02388{bottom:273.307067pt;}
.y26_c02388{bottom:294.427067pt;}
.y25_c02388{bottom:315.627067pt;}
.y24_c02388{bottom:336.747067pt;}
.y23_c02388{bottom:357.947067pt;}
.y22_c02388{bottom:379.067200pt;}
.y21_c02388{bottom:400.267067pt;}
.y20_c02388{bottom:421.387067pt;}
.y1f_c02388{bottom:442.587067pt;}
.y1e_c02388{bottom:463.707067pt;}
.y1d_c02388{bottom:484.907067pt;}
.y1c_c02388{bottom:506.027067pt;}
.y1b_c02388{bottom:527.067067pt;}
.y1a_c02388{bottom:548.347067pt;}
.y19_c02388{bottom:569.547067pt;}
.y18_c02388{bottom:590.667067pt;}
.y17_c02388{bottom:611.787067pt;}
.y16_c02388{bottom:632.987067pt;}
.y15_c02388{bottom:654.107067pt;}
.y14_c02388{bottom:675.307067pt;}
.y13_c02388{bottom:696.427067pt;}
.y12_c02388{bottom:717.627067pt;}
.y11_c02388{bottom:738.747067pt;}
.y10_c02388{bottom:759.947067pt;}
.yf_c02388{bottom:781.067067pt;}
.ye_c02388{bottom:802.267067pt;}
.yd_c02388{bottom:823.387067pt;}
.yc_c02388{bottom:844.587067pt;}
.yb_c02388{bottom:865.707067pt;}
.ya_c02388{bottom:886.907067pt;}
.y9_c02388{bottom:908.027067pt;}
.y8_c02388{bottom:929.227067pt;}
.y7_c02388{bottom:950.347067pt;}
.y6_c02388{bottom:971.547067pt;}
.y5_c02388{bottom:992.507067pt;}
.y4_c02388{bottom:1013.947067pt;}
.y1_c02388{bottom:1061.867067pt;}
.h3_c02388{height:39.030469pt;}
.h2_c02388{height:48.294844pt;}
.h1_c02388{height:59.017500pt;}
.h5_c02388{height:62.812500pt;}
.h4_c02388{height:64.500000pt;}
.h0_c02388{height:1122.666667pt;}
.w1_c02388{width:793.333333pt;}
.w0_c02388{width:793.626667pt;}
.x0_c02388{left:0.000000pt;}
.x1_c02388{left:113.440000pt;}
.x2_c02388{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b492eeb580baec5d8ea4bae.woff2')format("woff");}.ff1_c02389{font-family:ff1_c02389;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02389{font-family:ff2_c02389;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02389;src:url('chunks/assets/font_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff3_c02389{font-family:ff3_c02389;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02389;src:url('chunks/assets/font_2592f18015dcd7a76f8f0dc6.woff2')format("woff");}.ff4_c02389{font-family:ff4_c02389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02389;src:url('chunks/assets/font_df1cd2ddab718e4a6cc82460.woff2')format("woff");}.ff5_c02389{font-family:ff5_c02389;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_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;}
.ls15_c02389{letter-spacing:-0.050400px;}
.ls14_c02389{letter-spacing:-0.014400px;}
.ls16_c02389{letter-spacing:-0.007200px;}
.ls12_c02389{letter-spacing:0.000000px;}
.ls9_c02389{letter-spacing:0.007200px;}
.ls6_c02389{letter-spacing:0.013176px;}
.ls11_c02389{letter-spacing:0.014400px;}
.ls7_c02389{letter-spacing:0.021600px;}
.ls0_c02389{letter-spacing:0.026352px;}
.lsb_c02389{letter-spacing:0.028800px;}
.ls8_c02389{letter-spacing:0.036000px;}
.ls10_c02389{letter-spacing:0.050400px;}
.ls1_c02389{letter-spacing:0.052704px;}
.lsf_c02389{letter-spacing:0.057600px;}
.ls4_c02389{letter-spacing:0.059292px;}
.ls3_c02389{letter-spacing:0.065880px;}
.lsd_c02389{letter-spacing:0.072000px;}
.lse_c02389{letter-spacing:0.072468px;}
.ls5_c02389{letter-spacing:0.085644px;}
.lsc_c02389{letter-spacing:0.086400px;}
.ls13_c02389{letter-spacing:0.092232px;}
.lsa_c02389{letter-spacing:0.100800px;}
.ls2_c02389{letter-spacing:0.144936px;}
.sc__c02389{text-shadow:none;}
.sc0_c02389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02389{-webkit-text-stroke:0px transparent;}
.sc0_c02389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02389{word-spacing:-0.158112px;}
.ws22_c02389{word-spacing:-0.151200px;}
.ws2a_c02389{word-spacing:-0.129600px;}
.ws21_c02389{word-spacing:-0.122400px;}
.ws13_c02389{word-spacing:-0.108000px;}
.wsd_c02389{word-spacing:-0.093600px;}
.ws12_c02389{word-spacing:-0.086400px;}
.ws4_c02389{word-spacing:-0.072000px;}
.ws28_c02389{word-spacing:-0.064800px;}
.ws29_c02389{word-spacing:-0.057600px;}
.ws5_c02389{word-spacing:-0.052704px;}
.ws18_c02389{word-spacing:-0.050400px;}
.wsc_c02389{word-spacing:-0.036000px;}
.ws25_c02389{word-spacing:-0.028800px;}
.ws27_c02389{word-spacing:-0.021600px;}
.ws26_c02389{word-spacing:-0.014400px;}
.ws24_c02389{word-spacing:-0.007200px;}
.ws3_c02389{word-spacing:0.000000px;}
.ws23_c02389{word-spacing:0.014400px;}
.ws17_c02389{word-spacing:0.019764px;}
.ws2_c02389{word-spacing:0.039528px;}
.ws1_c02389{word-spacing:0.065880px;}
.ws8_c02389{word-spacing:0.079056px;}
.ws2b_c02389{word-spacing:0.165600px;}
.ws9_c02389{word-spacing:0.230400px;}
.ws7_c02389{word-spacing:1.087020px;}
.ws6_c02389{word-spacing:1.106784px;}
.ws20_c02389{word-spacing:2.340000px;}
.ws1f_c02389{word-spacing:2.491200px;}
.ws16_c02389{word-spacing:4.989600px;}
.ws19_c02389{word-spacing:6.804000px;}
.ws1a_c02389{word-spacing:6.818400px;}
.ws1d_c02389{word-spacing:7.164000px;}
.ws1e_c02389{word-spacing:7.185600px;}
.ws14_c02389{word-spacing:7.840800px;}
.ws15_c02389{word-spacing:7.855200px;}
.ws10_c02389{word-spacing:7.891200px;}
.ws11_c02389{word-spacing:7.941600px;}
.ws1c_c02389{word-spacing:9.568800px;}
.ws1b_c02389{word-spacing:9.640800px;}
.wsb_c02389{word-spacing:10.627200px;}
.wsa_c02389{word-spacing:10.713600px;}
.wse_c02389{word-spacing:17.496000px;}
.wsf_c02389{word-spacing:17.539200px;}
._0_c02389{margin-left:-1.195200px;}
.fc0_c02389{color:rgb(0,0,0);}
.fs0_c02389{font-size:65.880000px;}
.fs1_c02389{font-size:72.000000px;}
.y0_c02389{bottom:0.000000px;}
.y3_c02389{bottom:75.720882px;}
.y2_c02389{bottom:113.880225px;}
.y32_c02389{bottom:140.790600px;}
.y31_c02389{bottom:161.490600px;}
.y30_c02389{bottom:182.190600px;}
.y2f_c02389{bottom:202.710600px;}
.y2e_c02389{bottom:223.410600px;}
.y2d_c02389{bottom:244.290600px;}
.y2c_c02389{bottom:264.990600px;}
.y2b_c02389{bottom:285.510600px;}
.y2a_c02389{bottom:306.210600px;}
.y29_c02389{bottom:326.910600px;}
.y28_c02389{bottom:347.610600px;}
.y27_c02389{bottom:368.310600px;}
.y26_c02389{bottom:389.190600px;}
.y25_c02389{bottom:409.890600px;}
.y24_c02389{bottom:430.590600px;}
.y23_c02389{bottom:451.290600px;}
.y22_c02389{bottom:471.990600px;}
.y21_c02389{bottom:492.690600px;}
.y20_c02389{bottom:513.390450px;}
.y1f_c02389{bottom:534.090450px;}
.y1e_c02389{bottom:554.790450px;}
.y1d_c02389{bottom:575.490450px;}
.y1c_c02389{bottom:596.190450px;}
.y1b_c02389{bottom:616.890450px;}
.y1a_c02389{bottom:637.590450px;}
.y19_c02389{bottom:658.290450px;}
.y18_c02389{bottom:678.810450px;}
.y17_c02389{bottom:699.690450px;}
.y16_c02389{bottom:720.390450px;}
.y15_c02389{bottom:744.240450px;}
.y14_c02389{bottom:766.740450px;}
.y13_c02389{bottom:789.420450px;}
.y12_c02389{bottom:812.550450px;}
.y11_c02389{bottom:836.310450px;}
.y10_c02389{bottom:860.160450px;}
.yf_c02389{bottom:883.920450px;}
.ye_c02389{bottom:907.770450px;}
.yd_c02389{bottom:931.530450px;}
.yc_c02389{bottom:955.290450px;}
.yb_c02389{bottom:979.140450px;}
.ya_c02389{bottom:1002.900450px;}
.y9_c02389{bottom:1026.750450px;}
.y8_c02389{bottom:1050.780450px;}
.y7_c02389{bottom:1072.560450px;}
.y6_c02389{bottom:1095.150450px;}
.y5_c02389{bottom:1117.650450px;}
.y4_c02389{bottom:1139.880450px;}
.y1_c02389{bottom:1194.600450px;}
.h3_c02389{height:43.909277px;}
.h2_c02389{height:54.331699px;}
.h5_c02389{height:64.657617px;}
.h1_c02389{height:66.394687px;}
.h6_c02389{height:70.664062px;}
.h4_c02389{height:72.562500px;}
.h0_c02389{height:1263.000000px;}
.w1_c02389{width:892.500000px;}
.w0_c02389{width:892.830000px;}
.x0_c02389{left:0.000000px;}
.x1_c02389{left:127.620000px;}
.x4_c02389{left:170.190000px;}
.x3_c02389{left:349.470000px;}
.x2_c02389{left:438.120675px;}
@media print{
.v0_c02389{vertical-align:0.000000pt;}
.ls15_c02389{letter-spacing:-0.044800pt;}
.ls14_c02389{letter-spacing:-0.012800pt;}
.ls16_c02389{letter-spacing:-0.006400pt;}
.ls12_c02389{letter-spacing:0.000000pt;}
.ls9_c02389{letter-spacing:0.006400pt;}
.ls6_c02389{letter-spacing:0.011712pt;}
.ls11_c02389{letter-spacing:0.012800pt;}
.ls7_c02389{letter-spacing:0.019200pt;}
.ls0_c02389{letter-spacing:0.023424pt;}
.lsb_c02389{letter-spacing:0.025600pt;}
.ls8_c02389{letter-spacing:0.032000pt;}
.ls10_c02389{letter-spacing:0.044800pt;}
.ls1_c02389{letter-spacing:0.046848pt;}
.lsf_c02389{letter-spacing:0.051200pt;}
.ls4_c02389{letter-spacing:0.052704pt;}
.ls3_c02389{letter-spacing:0.058560pt;}
.lsd_c02389{letter-spacing:0.064000pt;}
.lse_c02389{letter-spacing:0.064416pt;}
.ls5_c02389{letter-spacing:0.076128pt;}
.lsc_c02389{letter-spacing:0.076800pt;}
.ls13_c02389{letter-spacing:0.081984pt;}
.lsa_c02389{letter-spacing:0.089600pt;}
.ls2_c02389{letter-spacing:0.128832pt;}
.ws0_c02389{word-spacing:-0.140544pt;}
.ws22_c02389{word-spacing:-0.134400pt;}
.ws2a_c02389{word-spacing:-0.115200pt;}
.ws21_c02389{word-spacing:-0.108800pt;}
.ws13_c02389{word-spacing:-0.096000pt;}
.wsd_c02389{word-spacing:-0.083200pt;}
.ws12_c02389{word-spacing:-0.076800pt;}
.ws4_c02389{word-spacing:-0.064000pt;}
.ws28_c02389{word-spacing:-0.057600pt;}
.ws29_c02389{word-spacing:-0.051200pt;}
.ws5_c02389{word-spacing:-0.046848pt;}
.ws18_c02389{word-spacing:-0.044800pt;}
.wsc_c02389{word-spacing:-0.032000pt;}
.ws25_c02389{word-spacing:-0.025600pt;}
.ws27_c02389{word-spacing:-0.019200pt;}
.ws26_c02389{word-spacing:-0.012800pt;}
.ws24_c02389{word-spacing:-0.006400pt;}
.ws3_c02389{word-spacing:0.000000pt;}
.ws23_c02389{word-spacing:0.012800pt;}
.ws17_c02389{word-spacing:0.017568pt;}
.ws2_c02389{word-spacing:0.035136pt;}
.ws1_c02389{word-spacing:0.058560pt;}
.ws8_c02389{word-spacing:0.070272pt;}
.ws2b_c02389{word-spacing:0.147200pt;}
.ws9_c02389{word-spacing:0.204800pt;}
.ws7_c02389{word-spacing:0.966240pt;}
.ws6_c02389{word-spacing:0.983808pt;}
.ws20_c02389{word-spacing:2.080000pt;}
.ws1f_c02389{word-spacing:2.214400pt;}
.ws16_c02389{word-spacing:4.435200pt;}
.ws19_c02389{word-spacing:6.048000pt;}
.ws1a_c02389{word-spacing:6.060800pt;}
.ws1d_c02389{word-spacing:6.368000pt;}
.ws1e_c02389{word-spacing:6.387200pt;}
.ws14_c02389{word-spacing:6.969600pt;}
.ws15_c02389{word-spacing:6.982400pt;}
.ws10_c02389{word-spacing:7.014400pt;}
.ws11_c02389{word-spacing:7.059200pt;}
.ws1c_c02389{word-spacing:8.505600pt;}
.ws1b_c02389{word-spacing:8.569600pt;}
.wsb_c02389{word-spacing:9.446400pt;}
.wsa_c02389{word-spacing:9.523200pt;}
.wse_c02389{word-spacing:15.552000pt;}
.wsf_c02389{word-spacing:15.590400pt;}
._0_c02389{margin-left:-1.062400pt;}
.fs0_c02389{font-size:58.560000pt;}
.fs1_c02389{font-size:64.000000pt;}
.y0_c02389{bottom:0.000000pt;}
.y3_c02389{bottom:67.307451pt;}
.y2_c02389{bottom:101.226867pt;}
.y32_c02389{bottom:125.147200pt;}
.y31_c02389{bottom:143.547200pt;}
.y30_c02389{bottom:161.947200pt;}
.y2f_c02389{bottom:180.187200pt;}
.y2e_c02389{bottom:198.587200pt;}
.y2d_c02389{bottom:217.147200pt;}
.y2c_c02389{bottom:235.547200pt;}
.y2b_c02389{bottom:253.787200pt;}
.y2a_c02389{bottom:272.187200pt;}
.y29_c02389{bottom:290.587200pt;}
.y28_c02389{bottom:308.987200pt;}
.y27_c02389{bottom:327.387200pt;}
.y26_c02389{bottom:345.947200pt;}
.y25_c02389{bottom:364.347200pt;}
.y24_c02389{bottom:382.747200pt;}
.y23_c02389{bottom:401.147200pt;}
.y22_c02389{bottom:419.547200pt;}
.y21_c02389{bottom:437.947200pt;}
.y20_c02389{bottom:456.347067pt;}
.y1f_c02389{bottom:474.747067pt;}
.y1e_c02389{bottom:493.147067pt;}
.y1d_c02389{bottom:511.547067pt;}
.y1c_c02389{bottom:529.947067pt;}
.y1b_c02389{bottom:548.347067pt;}
.y1a_c02389{bottom:566.747067pt;}
.y19_c02389{bottom:585.147067pt;}
.y18_c02389{bottom:603.387067pt;}
.y17_c02389{bottom:621.947067pt;}
.y16_c02389{bottom:640.347067pt;}
.y15_c02389{bottom:661.547067pt;}
.y14_c02389{bottom:681.547067pt;}
.y13_c02389{bottom:701.707067pt;}
.y12_c02389{bottom:722.267067pt;}
.y11_c02389{bottom:743.387067pt;}
.y10_c02389{bottom:764.587067pt;}
.yf_c02389{bottom:785.707067pt;}
.ye_c02389{bottom:806.907067pt;}
.yd_c02389{bottom:828.027067pt;}
.yc_c02389{bottom:849.147067pt;}
.yb_c02389{bottom:870.347067pt;}
.ya_c02389{bottom:891.467067pt;}
.y9_c02389{bottom:912.667067pt;}
.y8_c02389{bottom:934.027067pt;}
.y7_c02389{bottom:953.387067pt;}
.y6_c02389{bottom:973.467067pt;}
.y5_c02389{bottom:993.467067pt;}
.y4_c02389{bottom:1013.227067pt;}
.y1_c02389{bottom:1061.867067pt;}
.h3_c02389{height:39.030469pt;}
.h2_c02389{height:48.294844pt;}
.h5_c02389{height:57.473437pt;}
.h1_c02389{height:59.017500pt;}
.h6_c02389{height:62.812500pt;}
.h4_c02389{height:64.500000pt;}
.h0_c02389{height:1122.666667pt;}
.w1_c02389{width:793.333333pt;}
.w0_c02389{width:793.626667pt;}
.x0_c02389{left:0.000000pt;}
.x1_c02389{left:113.440000pt;}
.x4_c02389{left:151.280000pt;}
.x3_c02389{left:310.640000pt;}
.x2_c02389{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a8eff644b4f0eacb091252e.woff2')format("woff");}.ff1_c02390{font-family:ff1_c02390;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02390{font-family:ff2_c02390;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02390;src:url('chunks/assets/font_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff3_c02390{font-family:ff3_c02390;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02390;src:url('chunks/assets/font_6053b60f2c2824546619707d.woff2')format("woff");}.ff4_c02390{font-family:ff4_c02390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c02390{letter-spacing:-0.050400px;}
.ls16_c02390{letter-spacing:-0.043200px;}
.ls15_c02390{letter-spacing:-0.021600px;}
.ls17_c02390{letter-spacing:-0.007200px;}
.ls12_c02390{letter-spacing:0.000000px;}
.lsd_c02390{letter-spacing:0.007200px;}
.ls4_c02390{letter-spacing:0.014400px;}
.lsa_c02390{letter-spacing:0.021600px;}
.ls0_c02390{letter-spacing:0.026352px;}
.ls7_c02390{letter-spacing:0.028800px;}
.ls6_c02390{letter-spacing:0.036000px;}
.ls2_c02390{letter-spacing:0.043200px;}
.lsc_c02390{letter-spacing:0.050400px;}
.ls1_c02390{letter-spacing:0.052704px;}
.ls3_c02390{letter-spacing:0.057600px;}
.lse_c02390{letter-spacing:0.064800px;}
.ls8_c02390{letter-spacing:0.072000px;}
.lsb_c02390{letter-spacing:0.079200px;}
.ls5_c02390{letter-spacing:0.086400px;}
.ls13_c02390{letter-spacing:0.092232px;}
.ls10_c02390{letter-spacing:0.093600px;}
.ls11_c02390{letter-spacing:0.122400px;}
.ls9_c02390{letter-spacing:0.129600px;}
.lsf_c02390{letter-spacing:0.158400px;}
.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;}
}
.ws15_c02390{word-spacing:-0.489600px;}
.ws1d_c02390{word-spacing:-0.367200px;}
.wsc_c02390{word-spacing:-0.230400px;}
.ws2b_c02390{word-spacing:-0.201600px;}
.ws27_c02390{word-spacing:-0.172800px;}
.ws1a_c02390{word-spacing:-0.165600px;}
.ws17_c02390{word-spacing:-0.158400px;}
.ws0_c02390{word-spacing:-0.158112px;}
.ws4_c02390{word-spacing:-0.129600px;}
.ws28_c02390{word-spacing:-0.122400px;}
.ws20_c02390{word-spacing:-0.115200px;}
.ws24_c02390{word-spacing:-0.108000px;}
.ws2a_c02390{word-spacing:-0.100800px;}
.ws12_c02390{word-spacing:-0.093600px;}
.ws7_c02390{word-spacing:-0.086400px;}
.ws13_c02390{word-spacing:-0.079200px;}
.ws16_c02390{word-spacing:-0.072000px;}
.ws5_c02390{word-spacing:-0.057600px;}
.ws30_c02390{word-spacing:-0.043200px;}
.ws1f_c02390{word-spacing:-0.036000px;}
.wsf_c02390{word-spacing:-0.028800px;}
.ws29_c02390{word-spacing:-0.021600px;}
.ws14_c02390{word-spacing:-0.014400px;}
.ws3_c02390{word-spacing:0.000000px;}
.ws1e_c02390{word-spacing:0.007200px;}
.ws2c_c02390{word-spacing:0.021600px;}
.ws2_c02390{word-spacing:0.039528px;}
.ws1_c02390{word-spacing:0.065880px;}
.ws6_c02390{word-spacing:0.165600px;}
.ws25_c02390{word-spacing:7.804800px;}
.ws26_c02390{word-spacing:7.819200px;}
.ws8_c02390{word-spacing:8.812800px;}
.ws9_c02390{word-spacing:9.021600px;}
.ws2f_c02390{word-spacing:9.626400px;}
.ws2e_c02390{word-spacing:10.000800px;}
.ws2d_c02390{word-spacing:10.137600px;}
.wse_c02390{word-spacing:11.023200px;}
.wsd_c02390{word-spacing:11.124000px;}
.ws11_c02390{word-spacing:12.506400px;}
.ws10_c02390{word-spacing:12.528000px;}
.ws23_c02390{word-spacing:13.615200px;}
.ws22_c02390{word-spacing:13.672800px;}
.ws31_c02390{word-spacing:14.716800px;}
.ws32_c02390{word-spacing:14.760000px;}
.ws21_c02390{word-spacing:17.899200px;}
.ws18_c02390{word-spacing:18.180000px;}
.ws19_c02390{word-spacing:18.345600px;}
.wsa_c02390{word-spacing:23.292000px;}
.wsb_c02390{word-spacing:23.364000px;}
.ws1c_c02390{word-spacing:50.299200px;}
.ws1b_c02390{word-spacing:50.392800px;}
._0_c02390{margin-left:-1.209600px;}
.fc0_c02390{color:rgb(0,0,0);}
.fs2_c02390{font-size:11.880000px;}
.fs0_c02390{font-size:65.880000px;}
.fs1_c02390{font-size:72.000000px;}
.y0_c02390{bottom:0.000000px;}
.y3_c02390{bottom:75.720882px;}
.y2_c02390{bottom:113.880225px;}
.y35_c02390{bottom:138.270450px;}
.y34_c02390{bottom:145.920450px;}
.y33_c02390{bottom:166.620450px;}
.y32_c02390{bottom:187.320450px;}
.y31_c02390{bottom:208.020450px;}
.y30_c02390{bottom:228.720450px;}
.y2f_c02390{bottom:249.420450px;}
.y2e_c02390{bottom:270.120450px;}
.y2d_c02390{bottom:290.820450px;}
.y2c_c02390{bottom:311.520450px;}
.y2b_c02390{bottom:332.040450px;}
.y2a_c02390{bottom:352.920450px;}
.y29_c02390{bottom:373.620450px;}
.y28_c02390{bottom:394.320450px;}
.y27_c02390{bottom:415.020450px;}
.y26_c02390{bottom:435.450450px;}
.y25_c02390{bottom:456.330450px;}
.y24_c02390{bottom:477.030450px;}
.y23_c02390{bottom:497.730450px;}
.y22_c02390{bottom:518.430450px;}
.y21_c02390{bottom:539.130450px;}
.y20_c02390{bottom:559.830450px;}
.y1f_c02390{bottom:580.530450px;}
.y1e_c02390{bottom:601.230450px;}
.y1d_c02390{bottom:621.930450px;}
.y1c_c02390{bottom:642.630450px;}
.y1b_c02390{bottom:663.330450px;}
.y1a_c02390{bottom:684.030450px;}
.y19_c02390{bottom:704.730450px;}
.y18_c02390{bottom:725.430450px;}
.y17_c02390{bottom:746.130450px;}
.y16_c02390{bottom:766.830450px;}
.y15_c02390{bottom:787.530450px;}
.y14_c02390{bottom:808.230450px;}
.y13_c02390{bottom:828.930450px;}
.y12_c02390{bottom:849.630450px;}
.y11_c02390{bottom:870.330450px;}
.y10_c02390{bottom:891.030450px;}
.yf_c02390{bottom:911.730450px;}
.ye_c02390{bottom:932.430450px;}
.yd_c02390{bottom:953.130450px;}
.yc_c02390{bottom:973.830450px;}
.yb_c02390{bottom:994.530450px;}
.ya_c02390{bottom:1015.230450px;}
.y9_c02390{bottom:1035.930450px;}
.y8_c02390{bottom:1056.630450px;}
.y7_c02390{bottom:1077.330450px;}
.y6_c02390{bottom:1098.030450px;}
.y5_c02390{bottom:1118.730450px;}
.y4_c02390{bottom:1139.430450px;}
.y1_c02390{bottom:1194.600450px;}
.h6_c02390{height:11.659570px;}
.h3_c02390{height:43.909277px;}
.h2_c02390{height:54.331699px;}
.h1_c02390{height:66.394687px;}
.h4_c02390{height:70.664062px;}
.h5_c02390{height:72.562500px;}
.h0_c02390{height:1263.000000px;}
.w1_c02390{width:892.500000px;}
.w0_c02390{width:892.830000px;}
.x0_c02390{left:0.000000px;}
.x1_c02390{left:127.620000px;}
.x3_c02390{left:170.190000px;}
.x2_c02390{left:438.120675px;}
@media print{
.v0_c02390{vertical-align:0.000000pt;}
.ls14_c02390{letter-spacing:-0.044800pt;}
.ls16_c02390{letter-spacing:-0.038400pt;}
.ls15_c02390{letter-spacing:-0.019200pt;}
.ls17_c02390{letter-spacing:-0.006400pt;}
.ls12_c02390{letter-spacing:0.000000pt;}
.lsd_c02390{letter-spacing:0.006400pt;}
.ls4_c02390{letter-spacing:0.012800pt;}
.lsa_c02390{letter-spacing:0.019200pt;}
.ls0_c02390{letter-spacing:0.023424pt;}
.ls7_c02390{letter-spacing:0.025600pt;}
.ls6_c02390{letter-spacing:0.032000pt;}
.ls2_c02390{letter-spacing:0.038400pt;}
.lsc_c02390{letter-spacing:0.044800pt;}
.ls1_c02390{letter-spacing:0.046848pt;}
.ls3_c02390{letter-spacing:0.051200pt;}
.lse_c02390{letter-spacing:0.057600pt;}
.ls8_c02390{letter-spacing:0.064000pt;}
.lsb_c02390{letter-spacing:0.070400pt;}
.ls5_c02390{letter-spacing:0.076800pt;}
.ls13_c02390{letter-spacing:0.081984pt;}
.ls10_c02390{letter-spacing:0.083200pt;}
.ls11_c02390{letter-spacing:0.108800pt;}
.ls9_c02390{letter-spacing:0.115200pt;}
.lsf_c02390{letter-spacing:0.140800pt;}
.ws15_c02390{word-spacing:-0.435200pt;}
.ws1d_c02390{word-spacing:-0.326400pt;}
.wsc_c02390{word-spacing:-0.204800pt;}
.ws2b_c02390{word-spacing:-0.179200pt;}
.ws27_c02390{word-spacing:-0.153600pt;}
.ws1a_c02390{word-spacing:-0.147200pt;}
.ws17_c02390{word-spacing:-0.140800pt;}
.ws0_c02390{word-spacing:-0.140544pt;}
.ws4_c02390{word-spacing:-0.115200pt;}
.ws28_c02390{word-spacing:-0.108800pt;}
.ws20_c02390{word-spacing:-0.102400pt;}
.ws24_c02390{word-spacing:-0.096000pt;}
.ws2a_c02390{word-spacing:-0.089600pt;}
.ws12_c02390{word-spacing:-0.083200pt;}
.ws7_c02390{word-spacing:-0.076800pt;}
.ws13_c02390{word-spacing:-0.070400pt;}
.ws16_c02390{word-spacing:-0.064000pt;}
.ws5_c02390{word-spacing:-0.051200pt;}
.ws30_c02390{word-spacing:-0.038400pt;}
.ws1f_c02390{word-spacing:-0.032000pt;}
.wsf_c02390{word-spacing:-0.025600pt;}
.ws29_c02390{word-spacing:-0.019200pt;}
.ws14_c02390{word-spacing:-0.012800pt;}
.ws3_c02390{word-spacing:0.000000pt;}
.ws1e_c02390{word-spacing:0.006400pt;}
.ws2c_c02390{word-spacing:0.019200pt;}
.ws2_c02390{word-spacing:0.035136pt;}
.ws1_c02390{word-spacing:0.058560pt;}
.ws6_c02390{word-spacing:0.147200pt;}
.ws25_c02390{word-spacing:6.937600pt;}
.ws26_c02390{word-spacing:6.950400pt;}
.ws8_c02390{word-spacing:7.833600pt;}
.ws9_c02390{word-spacing:8.019200pt;}
.ws2f_c02390{word-spacing:8.556800pt;}
.ws2e_c02390{word-spacing:8.889600pt;}
.ws2d_c02390{word-spacing:9.011200pt;}
.wse_c02390{word-spacing:9.798400pt;}
.wsd_c02390{word-spacing:9.888000pt;}
.ws11_c02390{word-spacing:11.116800pt;}
.ws10_c02390{word-spacing:11.136000pt;}
.ws23_c02390{word-spacing:12.102400pt;}
.ws22_c02390{word-spacing:12.153600pt;}
.ws31_c02390{word-spacing:13.081600pt;}
.ws32_c02390{word-spacing:13.120000pt;}
.ws21_c02390{word-spacing:15.910400pt;}
.ws18_c02390{word-spacing:16.160000pt;}
.ws19_c02390{word-spacing:16.307200pt;}
.wsa_c02390{word-spacing:20.704000pt;}
.wsb_c02390{word-spacing:20.768000pt;}
.ws1c_c02390{word-spacing:44.710400pt;}
.ws1b_c02390{word-spacing:44.793600pt;}
._0_c02390{margin-left:-1.075200pt;}
.fs2_c02390{font-size:10.560000pt;}
.fs0_c02390{font-size:58.560000pt;}
.fs1_c02390{font-size:64.000000pt;}
.y0_c02390{bottom:0.000000pt;}
.y3_c02390{bottom:67.307451pt;}
.y2_c02390{bottom:101.226867pt;}
.y35_c02390{bottom:122.907067pt;}
.y34_c02390{bottom:129.707067pt;}
.y33_c02390{bottom:148.107067pt;}
.y32_c02390{bottom:166.507067pt;}
.y31_c02390{bottom:184.907067pt;}
.y30_c02390{bottom:203.307067pt;}
.y2f_c02390{bottom:221.707067pt;}
.y2e_c02390{bottom:240.107067pt;}
.y2d_c02390{bottom:258.507067pt;}
.y2c_c02390{bottom:276.907067pt;}
.y2b_c02390{bottom:295.147067pt;}
.y2a_c02390{bottom:313.707067pt;}
.y29_c02390{bottom:332.107067pt;}
.y28_c02390{bottom:350.507067pt;}
.y27_c02390{bottom:368.907067pt;}
.y26_c02390{bottom:387.067067pt;}
.y25_c02390{bottom:405.627067pt;}
.y24_c02390{bottom:424.027067pt;}
.y23_c02390{bottom:442.427067pt;}
.y22_c02390{bottom:460.827067pt;}
.y21_c02390{bottom:479.227067pt;}
.y20_c02390{bottom:497.627067pt;}
.y1f_c02390{bottom:516.027067pt;}
.y1e_c02390{bottom:534.427067pt;}
.y1d_c02390{bottom:552.827067pt;}
.y1c_c02390{bottom:571.227067pt;}
.y1b_c02390{bottom:589.627067pt;}
.y1a_c02390{bottom:608.027067pt;}
.y19_c02390{bottom:626.427067pt;}
.y18_c02390{bottom:644.827067pt;}
.y17_c02390{bottom:663.227067pt;}
.y16_c02390{bottom:681.627067pt;}
.y15_c02390{bottom:700.027067pt;}
.y14_c02390{bottom:718.427067pt;}
.y13_c02390{bottom:736.827067pt;}
.y12_c02390{bottom:755.227067pt;}
.y11_c02390{bottom:773.627067pt;}
.y10_c02390{bottom:792.027067pt;}
.yf_c02390{bottom:810.427067pt;}
.ye_c02390{bottom:828.827067pt;}
.yd_c02390{bottom:847.227067pt;}
.yc_c02390{bottom:865.627067pt;}
.yb_c02390{bottom:884.027067pt;}
.ya_c02390{bottom:902.427067pt;}
.y9_c02390{bottom:920.827067pt;}
.y8_c02390{bottom:939.227067pt;}
.y7_c02390{bottom:957.627067pt;}
.y6_c02390{bottom:976.027067pt;}
.y5_c02390{bottom:994.427067pt;}
.y4_c02390{bottom:1012.827067pt;}
.y1_c02390{bottom:1061.867067pt;}
.h6_c02390{height:10.364062pt;}
.h3_c02390{height:39.030469pt;}
.h2_c02390{height:48.294844pt;}
.h1_c02390{height:59.017500pt;}
.h4_c02390{height:62.812500pt;}
.h5_c02390{height:64.500000pt;}
.h0_c02390{height:1122.666667pt;}
.w1_c02390{width:793.333333pt;}
.w0_c02390{width:793.626667pt;}
.x0_c02390{left:0.000000pt;}
.x1_c02390{left:113.440000pt;}
.x3_c02390{left:151.280000pt;}
.x2_c02390{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dfe019c2e99680f583f44a1.woff2')format("woff");}.ff1_c02391{font-family:ff1_c02391;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02391;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02391{font-family:ff2_c02391;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02391;src:url('chunks/assets/font_56a2ab4825799feb5a21366c.woff2')format("woff");}.ff3_c02391{font-family:ff3_c02391;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02391;src:url('chunks/assets/font_11f275845bfe7c845ec3a8e7.woff2')format("woff");}.ff4_c02391{font-family:ff4_c02391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls13_c02391{letter-spacing:-0.158400px;}
.ls14_c02391{letter-spacing:-0.079200px;}
.ls12_c02391{letter-spacing:-0.021600px;}
.ls10_c02391{letter-spacing:-0.014400px;}
.ls11_c02391{letter-spacing:-0.007200px;}
.lse_c02391{letter-spacing:0.000000px;}
.ls3_c02391{letter-spacing:0.007200px;}
.lsc_c02391{letter-spacing:0.014400px;}
.ls5_c02391{letter-spacing:0.021600px;}
.ls0_c02391{letter-spacing:0.026352px;}
.ls4_c02391{letter-spacing:0.028800px;}
.ls8_c02391{letter-spacing:0.036000px;}
.ls7_c02391{letter-spacing:0.043200px;}
.ls1_c02391{letter-spacing:0.052704px;}
.lsd_c02391{letter-spacing:0.057600px;}
.ls6_c02391{letter-spacing:0.064800px;}
.lsb_c02391{letter-spacing:0.072000px;}
.ls2_c02391{letter-spacing:0.085644px;}
.lsa_c02391{letter-spacing:0.086400px;}
.lsf_c02391{letter-spacing:0.092232px;}
.ls9_c02391{letter-spacing:0.100800px;}
.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;}
}
.ws1_c02391{word-spacing:-17.841600px;}
.ws26_c02391{word-spacing:-0.396000px;}
.wse_c02391{word-spacing:-0.388800px;}
.ws6_c02391{word-spacing:-0.244800px;}
.ws11_c02391{word-spacing:-0.216000px;}
.ws2b_c02391{word-spacing:-0.201600px;}
.ws12_c02391{word-spacing:-0.158400px;}
.ws0_c02391{word-spacing:-0.158112px;}
.ws7_c02391{word-spacing:-0.122400px;}
.ws8_c02391{word-spacing:-0.115200px;}
.ws1c_c02391{word-spacing:-0.108000px;}
.ws16_c02391{word-spacing:-0.093600px;}
.ws1b_c02391{word-spacing:-0.086400px;}
.ws13_c02391{word-spacing:-0.036000px;}
.ws10_c02391{word-spacing:-0.007200px;}
.ws4_c02391{word-spacing:0.000000px;}
.ws5_c02391{word-spacing:0.006588px;}
.wsf_c02391{word-spacing:0.007200px;}
.ws2a_c02391{word-spacing:0.014400px;}
.ws3_c02391{word-spacing:0.039528px;}
.ws2_c02391{word-spacing:0.065880px;}
.ws1f_c02391{word-spacing:4.989600px;}
.ws22_c02391{word-spacing:5.292000px;}
.ws23_c02391{word-spacing:5.306400px;}
.ws21_c02391{word-spacing:6.069600px;}
.ws20_c02391{word-spacing:6.091200px;}
.ws19_c02391{word-spacing:6.804000px;}
.ws1a_c02391{word-spacing:6.818400px;}
.ws1e_c02391{word-spacing:9.568800px;}
.ws1d_c02391{word-spacing:9.640800px;}
.ws15_c02391{word-spacing:10.627200px;}
.ws14_c02391{word-spacing:10.713600px;}
.wsa_c02391{word-spacing:11.066400px;}
.ws9_c02391{word-spacing:11.160000px;}
.wsb_c02391{word-spacing:11.174400px;}
.ws27_c02391{word-spacing:12.218400px;}
.ws29_c02391{word-spacing:12.225600px;}
.ws28_c02391{word-spacing:12.247200px;}
.wsd_c02391{word-spacing:13.953600px;}
.wsc_c02391{word-spacing:14.018400px;}
.ws17_c02391{word-spacing:17.496000px;}
.ws18_c02391{word-spacing:17.539200px;}
.ws25_c02391{word-spacing:27.907200px;}
.ws24_c02391{word-spacing:28.000800px;}
._0_c02391{margin-left:-1.093608px;}
.fc0_c02391{color:rgb(0,0,0);}
.fs0_c02391{font-size:65.880000px;}
.fs1_c02391{font-size:72.000000px;}
.y0_c02391{bottom:0.000000px;}
.y3_c02391{bottom:75.720882px;}
.y2_c02391{bottom:113.880225px;}
.y33_c02391{bottom:148.528170px;}
.y32_c02391{bottom:170.308098px;}
.y31_c02391{bottom:192.178611px;}
.y30_c02391{bottom:213.958539px;}
.y2f_c02391{bottom:235.738467px;}
.y2e_c02391{bottom:257.608980px;}
.y2d_c02391{bottom:279.388908px;}
.y2c_c02391{bottom:301.259421px;}
.y2b_c02391{bottom:323.039349px;}
.y2a_c02391{bottom:344.909862px;}
.y29_c02391{bottom:366.689790px;}
.y28_c02391{bottom:388.560303px;}
.y27_c02391{bottom:410.340231px;}
.y26_c02391{bottom:432.120159px;}
.y25_c02391{bottom:453.990672px;}
.y24_c02391{bottom:475.770600px;}
.y23_c02391{bottom:495.750450px;}
.y22_c02391{bottom:516.630450px;}
.y21_c02391{bottom:537.330450px;}
.y20_c02391{bottom:558.030450px;}
.y1f_c02391{bottom:578.730450px;}
.y1e_c02391{bottom:599.430450px;}
.y1d_c02391{bottom:620.130450px;}
.y1c_c02391{bottom:640.830450px;}
.y1b_c02391{bottom:661.260450px;}
.y1a_c02391{bottom:681.960450px;}
.y19_c02391{bottom:702.660450px;}
.y18_c02391{bottom:723.540450px;}
.y17_c02391{bottom:744.240450px;}
.y16_c02391{bottom:764.940450px;}
.y15_c02391{bottom:785.640450px;}
.y14_c02391{bottom:806.340450px;}
.y13_c02391{bottom:827.040450px;}
.y12_c02391{bottom:847.740450px;}
.y11_c02391{bottom:868.440450px;}
.y10_c02391{bottom:889.140450px;}
.yf_c02391{bottom:909.660450px;}
.ye_c02391{bottom:930.360450px;}
.yd_c02391{bottom:951.060450px;}
.yc_c02391{bottom:971.760450px;}
.yb_c02391{bottom:992.460450px;}
.ya_c02391{bottom:1013.340450px;}
.y9_c02391{bottom:1034.040450px;}
.y8_c02391{bottom:1054.740450px;}
.y7_c02391{bottom:1075.440450px;}
.y6_c02391{bottom:1095.960450px;}
.y5_c02391{bottom:1116.660450px;}
.y4_c02391{bottom:1140.690450px;}
.y1_c02391{bottom:1194.600450px;}
.h3_c02391{height:43.909277px;}
.h2_c02391{height:54.331699px;}
.h6_c02391{height:64.657617px;}
.h1_c02391{height:66.394687px;}
.h5_c02391{height:70.664062px;}
.h4_c02391{height:72.562500px;}
.h0_c02391{height:1263.000000px;}
.w1_c02391{width:892.500000px;}
.w0_c02391{width:892.830000px;}
.x0_c02391{left:0.000000px;}
.x1_c02391{left:127.620000px;}
.x2_c02391{left:438.120675px;}
@media print{
.v0_c02391{vertical-align:0.000000pt;}
.ls13_c02391{letter-spacing:-0.140800pt;}
.ls14_c02391{letter-spacing:-0.070400pt;}
.ls12_c02391{letter-spacing:-0.019200pt;}
.ls10_c02391{letter-spacing:-0.012800pt;}
.ls11_c02391{letter-spacing:-0.006400pt;}
.lse_c02391{letter-spacing:0.000000pt;}
.ls3_c02391{letter-spacing:0.006400pt;}
.lsc_c02391{letter-spacing:0.012800pt;}
.ls5_c02391{letter-spacing:0.019200pt;}
.ls0_c02391{letter-spacing:0.023424pt;}
.ls4_c02391{letter-spacing:0.025600pt;}
.ls8_c02391{letter-spacing:0.032000pt;}
.ls7_c02391{letter-spacing:0.038400pt;}
.ls1_c02391{letter-spacing:0.046848pt;}
.lsd_c02391{letter-spacing:0.051200pt;}
.ls6_c02391{letter-spacing:0.057600pt;}
.lsb_c02391{letter-spacing:0.064000pt;}
.ls2_c02391{letter-spacing:0.076128pt;}
.lsa_c02391{letter-spacing:0.076800pt;}
.lsf_c02391{letter-spacing:0.081984pt;}
.ls9_c02391{letter-spacing:0.089600pt;}
.ws1_c02391{word-spacing:-15.859200pt;}
.ws26_c02391{word-spacing:-0.352000pt;}
.wse_c02391{word-spacing:-0.345600pt;}
.ws6_c02391{word-spacing:-0.217600pt;}
.ws11_c02391{word-spacing:-0.192000pt;}
.ws2b_c02391{word-spacing:-0.179200pt;}
.ws12_c02391{word-spacing:-0.140800pt;}
.ws0_c02391{word-spacing:-0.140544pt;}
.ws7_c02391{word-spacing:-0.108800pt;}
.ws8_c02391{word-spacing:-0.102400pt;}
.ws1c_c02391{word-spacing:-0.096000pt;}
.ws16_c02391{word-spacing:-0.083200pt;}
.ws1b_c02391{word-spacing:-0.076800pt;}
.ws13_c02391{word-spacing:-0.032000pt;}
.ws10_c02391{word-spacing:-0.006400pt;}
.ws4_c02391{word-spacing:0.000000pt;}
.ws5_c02391{word-spacing:0.005856pt;}
.wsf_c02391{word-spacing:0.006400pt;}
.ws2a_c02391{word-spacing:0.012800pt;}
.ws3_c02391{word-spacing:0.035136pt;}
.ws2_c02391{word-spacing:0.058560pt;}
.ws1f_c02391{word-spacing:4.435200pt;}
.ws22_c02391{word-spacing:4.704000pt;}
.ws23_c02391{word-spacing:4.716800pt;}
.ws21_c02391{word-spacing:5.395200pt;}
.ws20_c02391{word-spacing:5.414400pt;}
.ws19_c02391{word-spacing:6.048000pt;}
.ws1a_c02391{word-spacing:6.060800pt;}
.ws1e_c02391{word-spacing:8.505600pt;}
.ws1d_c02391{word-spacing:8.569600pt;}
.ws15_c02391{word-spacing:9.446400pt;}
.ws14_c02391{word-spacing:9.523200pt;}
.wsa_c02391{word-spacing:9.836800pt;}
.ws9_c02391{word-spacing:9.920000pt;}
.wsb_c02391{word-spacing:9.932800pt;}
.ws27_c02391{word-spacing:10.860800pt;}
.ws29_c02391{word-spacing:10.867200pt;}
.ws28_c02391{word-spacing:10.886400pt;}
.wsd_c02391{word-spacing:12.403200pt;}
.wsc_c02391{word-spacing:12.460800pt;}
.ws17_c02391{word-spacing:15.552000pt;}
.ws18_c02391{word-spacing:15.590400pt;}
.ws25_c02391{word-spacing:24.806400pt;}
.ws24_c02391{word-spacing:24.889600pt;}
._0_c02391{margin-left:-0.972096pt;}
.fs0_c02391{font-size:58.560000pt;}
.fs1_c02391{font-size:64.000000pt;}
.y0_c02391{bottom:0.000000pt;}
.y3_c02391{bottom:67.307451pt;}
.y2_c02391{bottom:101.226867pt;}
.y33_c02391{bottom:132.025040pt;}
.y32_c02391{bottom:151.384976pt;}
.y31_c02391{bottom:170.825432pt;}
.y30_c02391{bottom:190.185368pt;}
.y2f_c02391{bottom:209.545304pt;}
.y2e_c02391{bottom:228.985760pt;}
.y2d_c02391{bottom:248.345696pt;}
.y2c_c02391{bottom:267.786152pt;}
.y2b_c02391{bottom:287.146088pt;}
.y2a_c02391{bottom:306.586544pt;}
.y29_c02391{bottom:325.946480pt;}
.y28_c02391{bottom:345.386936pt;}
.y27_c02391{bottom:364.746872pt;}
.y26_c02391{bottom:384.106808pt;}
.y25_c02391{bottom:403.547264pt;}
.y24_c02391{bottom:422.907200pt;}
.y23_c02391{bottom:440.667067pt;}
.y22_c02391{bottom:459.227067pt;}
.y21_c02391{bottom:477.627067pt;}
.y20_c02391{bottom:496.027067pt;}
.y1f_c02391{bottom:514.427067pt;}
.y1e_c02391{bottom:532.827067pt;}
.y1d_c02391{bottom:551.227067pt;}
.y1c_c02391{bottom:569.627067pt;}
.y1b_c02391{bottom:587.787067pt;}
.y1a_c02391{bottom:606.187067pt;}
.y19_c02391{bottom:624.587067pt;}
.y18_c02391{bottom:643.147067pt;}
.y17_c02391{bottom:661.547067pt;}
.y16_c02391{bottom:679.947067pt;}
.y15_c02391{bottom:698.347067pt;}
.y14_c02391{bottom:716.747067pt;}
.y13_c02391{bottom:735.147067pt;}
.y12_c02391{bottom:753.547067pt;}
.y11_c02391{bottom:771.947067pt;}
.y10_c02391{bottom:790.347067pt;}
.yf_c02391{bottom:808.587067pt;}
.ye_c02391{bottom:826.987067pt;}
.yd_c02391{bottom:845.387067pt;}
.yc_c02391{bottom:863.787067pt;}
.yb_c02391{bottom:882.187067pt;}
.ya_c02391{bottom:900.747067pt;}
.y9_c02391{bottom:919.147067pt;}
.y8_c02391{bottom:937.547067pt;}
.y7_c02391{bottom:955.947067pt;}
.y6_c02391{bottom:974.187067pt;}
.y5_c02391{bottom:992.587067pt;}
.y4_c02391{bottom:1013.947067pt;}
.y1_c02391{bottom:1061.867067pt;}
.h3_c02391{height:39.030469pt;}
.h2_c02391{height:48.294844pt;}
.h6_c02391{height:57.473437pt;}
.h1_c02391{height:59.017500pt;}
.h5_c02391{height:62.812500pt;}
.h4_c02391{height:64.500000pt;}
.h0_c02391{height:1122.666667pt;}
.w1_c02391{width:793.333333pt;}
.w0_c02391{width:793.626667pt;}
.x0_c02391{left:0.000000pt;}
.x1_c02391{left:113.440000pt;}
.x2_c02391{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b87a48102e9027426944777.woff2')format("woff");}.ff1_c02392{font-family:ff1_c02392;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02392{font-family:ff2_c02392;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02392;src:url('chunks/assets/font_1d2183eac735ba896dc82a3e.woff2')format("woff");}.ff3_c02392{font-family:ff3_c02392;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02392;src:url('chunks/assets/font_2096e79f1d999bbfd6817ccc.woff2')format("woff");}.ff4_c02392{font-family:ff4_c02392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02392{vertical-align:0.000000px;}
.ls10_c02392{letter-spacing:-0.036000px;}
.lsf_c02392{letter-spacing:-0.021600px;}
.ls12_c02392{letter-spacing:-0.014400px;}
.ls11_c02392{letter-spacing:-0.007200px;}
.lsd_c02392{letter-spacing:0.000000px;}
.ls9_c02392{letter-spacing:0.007200px;}
.ls5_c02392{letter-spacing:0.014400px;}
.ls3_c02392{letter-spacing:0.021600px;}
.ls0_c02392{letter-spacing:0.026352px;}
.ls8_c02392{letter-spacing:0.028800px;}
.lsa_c02392{letter-spacing:0.036000px;}
.ls6_c02392{letter-spacing:0.050400px;}
.ls1_c02392{letter-spacing:0.052704px;}
.lsc_c02392{letter-spacing:0.057600px;}
.ls2_c02392{letter-spacing:0.059292px;}
.ls7_c02392{letter-spacing:0.064800px;}
.ls4_c02392{letter-spacing:0.072000px;}
.lse_c02392{letter-spacing:0.092232px;}
.lsb_c02392{letter-spacing:0.100800px;}
.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;}
}
.ws14_c02392{word-spacing:-0.388800px;}
.ws10_c02392{word-spacing:-0.244800px;}
.ws28_c02392{word-spacing:-0.237600px;}
.ws31_c02392{word-spacing:-0.230400px;}
.ws1c_c02392{word-spacing:-0.172800px;}
.ws0_c02392{word-spacing:-0.158112px;}
.ws7_c02392{word-spacing:-0.144000px;}
.ws6_c02392{word-spacing:-0.136800px;}
.wsc_c02392{word-spacing:-0.115200px;}
.ws21_c02392{word-spacing:-0.093600px;}
.wsb_c02392{word-spacing:-0.057600px;}
.ws2e_c02392{word-spacing:-0.050400px;}
.ws17_c02392{word-spacing:-0.036000px;}
.ws29_c02392{word-spacing:-0.028800px;}
.ws16_c02392{word-spacing:-0.021600px;}
.ws1b_c02392{word-spacing:-0.014400px;}
.ws5_c02392{word-spacing:-0.007200px;}
.ws3_c02392{word-spacing:0.000000px;}
.ws15_c02392{word-spacing:0.007200px;}
.ws30_c02392{word-spacing:0.014400px;}
.wsd_c02392{word-spacing:0.021600px;}
.ws4_c02392{word-spacing:0.032940px;}
.ws2_c02392{word-spacing:0.039528px;}
.ws1_c02392{word-spacing:0.065880px;}
.wsf_c02392{word-spacing:0.669600px;}
.wse_c02392{word-spacing:0.777600px;}
.ws2f_c02392{word-spacing:1.058400px;}
.ws13_c02392{word-spacing:3.124800px;}
.ws11_c02392{word-spacing:3.240000px;}
.ws12_c02392{word-spacing:3.276000px;}
.ws9_c02392{word-spacing:3.333600px;}
.ws8_c02392{word-spacing:3.463200px;}
.wsa_c02392{word-spacing:3.600000px;}
.ws20_c02392{word-spacing:4.960800px;}
.ws1f_c02392{word-spacing:5.032800px;}
.ws1e_c02392{word-spacing:5.371200px;}
.ws1d_c02392{word-spacing:5.493600px;}
.ws24_c02392{word-spacing:8.150400px;}
.ws1a_c02392{word-spacing:8.820000px;}
.ws27_c02392{word-spacing:8.884800px;}
.ws26_c02392{word-spacing:8.913600px;}
.ws18_c02392{word-spacing:8.935200px;}
.ws19_c02392{word-spacing:8.971200px;}
.ws23_c02392{word-spacing:9.244800px;}
.ws22_c02392{word-spacing:9.338400px;}
.ws2d_c02392{word-spacing:12.787200px;}
.ws2c_c02392{word-spacing:12.931200px;}
.ws25_c02392{word-spacing:15.408000px;}
.ws2a_c02392{word-spacing:20.498400px;}
.ws2b_c02392{word-spacing:20.512800px;}
._0_c02392{margin-left:-1.368000px;}
.fc0_c02392{color:rgb(0,0,0);}
.fs0_c02392{font-size:65.880000px;}
.fs1_c02392{font-size:72.000000px;}
.y0_c02392{bottom:0.000000px;}
.y3_c02392{bottom:75.720882px;}
.y2_c02392{bottom:113.880225px;}
.y2e_c02392{bottom:153.389127px;}
.y2d_c02392{bottom:175.259640px;}
.y2c_c02392{bottom:197.039568px;}
.y2b_c02392{bottom:218.910081px;}
.y2a_c02392{bottom:240.690009px;}
.y29_c02392{bottom:262.560522px;}
.y28_c02392{bottom:284.340450px;}
.y27_c02392{bottom:307.470450px;}
.y26_c02392{bottom:331.230450px;}
.y25_c02392{bottom:355.080450px;}
.y24_c02392{bottom:378.840450px;}
.y23_c02392{bottom:402.690450px;}
.y22_c02392{bottom:426.450450px;}
.y21_c02392{bottom:450.300450px;}
.y20_c02392{bottom:474.060450px;}
.y1f_c02392{bottom:497.910450px;}
.y1e_c02392{bottom:521.670450px;}
.y1d_c02392{bottom:545.520450px;}
.y1c_c02392{bottom:569.280450px;}
.y1b_c02392{bottom:593.130450px;}
.y1a_c02392{bottom:616.890450px;}
.y19_c02392{bottom:640.740450px;}
.y18_c02392{bottom:664.500450px;}
.y17_c02392{bottom:688.260450px;}
.y16_c02392{bottom:712.110450px;}
.y15_c02392{bottom:735.870450px;}
.y14_c02392{bottom:759.720450px;}
.y13_c02392{bottom:783.480450px;}
.y12_c02392{bottom:807.150450px;}
.y11_c02392{bottom:831.090450px;}
.y10_c02392{bottom:854.940450px;}
.yf_c02392{bottom:878.700450px;}
.ye_c02392{bottom:902.550450px;}
.yd_c02392{bottom:926.310450px;}
.yc_c02392{bottom:950.160450px;}
.yb_c02392{bottom:973.920450px;}
.ya_c02392{bottom:997.770450px;}
.y9_c02392{bottom:1021.530450px;}
.y8_c02392{bottom:1045.380450px;}
.y7_c02392{bottom:1069.140450px;}
.y6_c02392{bottom:1092.810450px;}
.y5_c02392{bottom:1116.570450px;}
.y4_c02392{bottom:1140.690450px;}
.y1_c02392{bottom:1194.600450px;}
.h3_c02392{height:43.909277px;}
.h2_c02392{height:54.331699px;}
.h6_c02392{height:64.657617px;}
.h1_c02392{height:66.394687px;}
.h5_c02392{height:70.664062px;}
.h4_c02392{height:72.562500px;}
.h0_c02392{height:1263.000000px;}
.w1_c02392{width:892.500000px;}
.w0_c02392{width:892.830000px;}
.x0_c02392{left:0.000000px;}
.x1_c02392{left:127.620000px;}
.x2_c02392{left:438.120675px;}
@media print{
.v0_c02392{vertical-align:0.000000pt;}
.ls10_c02392{letter-spacing:-0.032000pt;}
.lsf_c02392{letter-spacing:-0.019200pt;}
.ls12_c02392{letter-spacing:-0.012800pt;}
.ls11_c02392{letter-spacing:-0.006400pt;}
.lsd_c02392{letter-spacing:0.000000pt;}
.ls9_c02392{letter-spacing:0.006400pt;}
.ls5_c02392{letter-spacing:0.012800pt;}
.ls3_c02392{letter-spacing:0.019200pt;}
.ls0_c02392{letter-spacing:0.023424pt;}
.ls8_c02392{letter-spacing:0.025600pt;}
.lsa_c02392{letter-spacing:0.032000pt;}
.ls6_c02392{letter-spacing:0.044800pt;}
.ls1_c02392{letter-spacing:0.046848pt;}
.lsc_c02392{letter-spacing:0.051200pt;}
.ls2_c02392{letter-spacing:0.052704pt;}
.ls7_c02392{letter-spacing:0.057600pt;}
.ls4_c02392{letter-spacing:0.064000pt;}
.lse_c02392{letter-spacing:0.081984pt;}
.lsb_c02392{letter-spacing:0.089600pt;}
.ws14_c02392{word-spacing:-0.345600pt;}
.ws10_c02392{word-spacing:-0.217600pt;}
.ws28_c02392{word-spacing:-0.211200pt;}
.ws31_c02392{word-spacing:-0.204800pt;}
.ws1c_c02392{word-spacing:-0.153600pt;}
.ws0_c02392{word-spacing:-0.140544pt;}
.ws7_c02392{word-spacing:-0.128000pt;}
.ws6_c02392{word-spacing:-0.121600pt;}
.wsc_c02392{word-spacing:-0.102400pt;}
.ws21_c02392{word-spacing:-0.083200pt;}
.wsb_c02392{word-spacing:-0.051200pt;}
.ws2e_c02392{word-spacing:-0.044800pt;}
.ws17_c02392{word-spacing:-0.032000pt;}
.ws29_c02392{word-spacing:-0.025600pt;}
.ws16_c02392{word-spacing:-0.019200pt;}
.ws1b_c02392{word-spacing:-0.012800pt;}
.ws5_c02392{word-spacing:-0.006400pt;}
.ws3_c02392{word-spacing:0.000000pt;}
.ws15_c02392{word-spacing:0.006400pt;}
.ws30_c02392{word-spacing:0.012800pt;}
.wsd_c02392{word-spacing:0.019200pt;}
.ws4_c02392{word-spacing:0.029280pt;}
.ws2_c02392{word-spacing:0.035136pt;}
.ws1_c02392{word-spacing:0.058560pt;}
.wsf_c02392{word-spacing:0.595200pt;}
.wse_c02392{word-spacing:0.691200pt;}
.ws2f_c02392{word-spacing:0.940800pt;}
.ws13_c02392{word-spacing:2.777600pt;}
.ws11_c02392{word-spacing:2.880000pt;}
.ws12_c02392{word-spacing:2.912000pt;}
.ws9_c02392{word-spacing:2.963200pt;}
.ws8_c02392{word-spacing:3.078400pt;}
.wsa_c02392{word-spacing:3.200000pt;}
.ws20_c02392{word-spacing:4.409600pt;}
.ws1f_c02392{word-spacing:4.473600pt;}
.ws1e_c02392{word-spacing:4.774400pt;}
.ws1d_c02392{word-spacing:4.883200pt;}
.ws24_c02392{word-spacing:7.244800pt;}
.ws1a_c02392{word-spacing:7.840000pt;}
.ws27_c02392{word-spacing:7.897600pt;}
.ws26_c02392{word-spacing:7.923200pt;}
.ws18_c02392{word-spacing:7.942400pt;}
.ws19_c02392{word-spacing:7.974400pt;}
.ws23_c02392{word-spacing:8.217600pt;}
.ws22_c02392{word-spacing:8.300800pt;}
.ws2d_c02392{word-spacing:11.366400pt;}
.ws2c_c02392{word-spacing:11.494400pt;}
.ws25_c02392{word-spacing:13.696000pt;}
.ws2a_c02392{word-spacing:18.220800pt;}
.ws2b_c02392{word-spacing:18.233600pt;}
._0_c02392{margin-left:-1.216000pt;}
.fs0_c02392{font-size:58.560000pt;}
.fs1_c02392{font-size:64.000000pt;}
.y0_c02392{bottom:0.000000pt;}
.y3_c02392{bottom:67.307451pt;}
.y2_c02392{bottom:101.226867pt;}
.y2e_c02392{bottom:136.345891pt;}
.y2d_c02392{bottom:155.786347pt;}
.y2c_c02392{bottom:175.146283pt;}
.y2b_c02392{bottom:194.586739pt;}
.y2a_c02392{bottom:213.946675pt;}
.y29_c02392{bottom:233.387131pt;}
.y28_c02392{bottom:252.747067pt;}
.y27_c02392{bottom:273.307067pt;}
.y26_c02392{bottom:294.427067pt;}
.y25_c02392{bottom:315.627067pt;}
.y24_c02392{bottom:336.747067pt;}
.y23_c02392{bottom:357.947067pt;}
.y22_c02392{bottom:379.067067pt;}
.y21_c02392{bottom:400.267067pt;}
.y20_c02392{bottom:421.387067pt;}
.y1f_c02392{bottom:442.587067pt;}
.y1e_c02392{bottom:463.707067pt;}
.y1d_c02392{bottom:484.907067pt;}
.y1c_c02392{bottom:506.027067pt;}
.y1b_c02392{bottom:527.227067pt;}
.y1a_c02392{bottom:548.347067pt;}
.y19_c02392{bottom:569.547067pt;}
.y18_c02392{bottom:590.667067pt;}
.y17_c02392{bottom:611.787067pt;}
.y16_c02392{bottom:632.987067pt;}
.y15_c02392{bottom:654.107067pt;}
.y14_c02392{bottom:675.307067pt;}
.y13_c02392{bottom:696.427067pt;}
.y12_c02392{bottom:717.467067pt;}
.y11_c02392{bottom:738.747067pt;}
.y10_c02392{bottom:759.947067pt;}
.yf_c02392{bottom:781.067067pt;}
.ye_c02392{bottom:802.267067pt;}
.yd_c02392{bottom:823.387067pt;}
.yc_c02392{bottom:844.587067pt;}
.yb_c02392{bottom:865.707067pt;}
.ya_c02392{bottom:886.907067pt;}
.y9_c02392{bottom:908.027067pt;}
.y8_c02392{bottom:929.227067pt;}
.y7_c02392{bottom:950.347067pt;}
.y6_c02392{bottom:971.387067pt;}
.y5_c02392{bottom:992.507067pt;}
.y4_c02392{bottom:1013.947067pt;}
.y1_c02392{bottom:1061.867067pt;}
.h3_c02392{height:39.030469pt;}
.h2_c02392{height:48.294844pt;}
.h6_c02392{height:57.473437pt;}
.h1_c02392{height:59.017500pt;}
.h5_c02392{height:62.812500pt;}
.h4_c02392{height:64.500000pt;}
.h0_c02392{height:1122.666667pt;}
.w1_c02392{width:793.333333pt;}
.w0_c02392{width:793.626667pt;}
.x0_c02392{left:0.000000pt;}
.x1_c02392{left:113.440000pt;}
.x2_c02392{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e00863edc089beea8fd97ffe.woff2')format("woff");}.ff1_c02393{font-family:ff1_c02393;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02393{font-family:ff2_c02393;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02393;src:url('chunks/assets/font_81a874cdca199c3ad4da9705.woff2')format("woff");}.ff3_c02393{font-family:ff3_c02393;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02393;src:url('chunks/assets/font_53d5cb7337bcb74717df53eb.woff2')format("woff");}.ff4_c02393{font-family:ff4_c02393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02393{vertical-align:0.000000px;}
.ls18_c02393{letter-spacing:-0.050400px;}
.ls13_c02393{letter-spacing:-0.039528px;}
.ls15_c02393{letter-spacing:-0.028800px;}
.ls16_c02393{letter-spacing:-0.021600px;}
.ls14_c02393{letter-spacing:-0.014400px;}
.ls17_c02393{letter-spacing:-0.007200px;}
.ls11_c02393{letter-spacing:0.000000px;}
.lsb_c02393{letter-spacing:0.007200px;}
.lse_c02393{letter-spacing:0.014400px;}
.ls7_c02393{letter-spacing:0.021600px;}
.ls0_c02393{letter-spacing:0.026352px;}
.lsf_c02393{letter-spacing:0.028800px;}
.ls2_c02393{letter-spacing:0.032940px;}
.lsd_c02393{letter-spacing:0.036000px;}
.ls3_c02393{letter-spacing:0.039528px;}
.ls9_c02393{letter-spacing:0.043200px;}
.lsc_c02393{letter-spacing:0.050400px;}
.ls1_c02393{letter-spacing:0.052704px;}
.lsa_c02393{letter-spacing:0.057600px;}
.ls5_c02393{letter-spacing:0.059292px;}
.ls8_c02393{letter-spacing:0.064800px;}
.ls6_c02393{letter-spacing:0.072468px;}
.ls10_c02393{letter-spacing:0.086400px;}
.ls12_c02393{letter-spacing:0.092232px;}
.ls4_c02393{letter-spacing:0.125172px;}
.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;}
}
.ws1_c02393{word-spacing:-16.430472px;}
.ws23_c02393{word-spacing:-0.424800px;}
.ws32_c02393{word-spacing:-0.266400px;}
.ws15_c02393{word-spacing:-0.194400px;}
.ws0_c02393{word-spacing:-0.158112px;}
.ws2a_c02393{word-spacing:-0.144000px;}
.ws25_c02393{word-spacing:-0.136800px;}
.wsd_c02393{word-spacing:-0.122400px;}
.ws37_c02393{word-spacing:-0.108000px;}
.ws1d_c02393{word-spacing:-0.079200px;}
.ws1c_c02393{word-spacing:-0.057600px;}
.ws1e_c02393{word-spacing:-0.043200px;}
.ws8_c02393{word-spacing:-0.032940px;}
.ws16_c02393{word-spacing:-0.028800px;}
.ws24_c02393{word-spacing:-0.021600px;}
.ws19_c02393{word-spacing:-0.014400px;}
.ws31_c02393{word-spacing:-0.007200px;}
.ws4_c02393{word-spacing:0.000000px;}
.wsa_c02393{word-spacing:0.019764px;}
.ws3_c02393{word-spacing:0.039528px;}
.ws5_c02393{word-spacing:0.059292px;}
.ws2_c02393{word-spacing:0.065880px;}
.wsc_c02393{word-spacing:0.561600px;}
.wsb_c02393{word-spacing:0.770400px;}
.ws1f_c02393{word-spacing:1.396800px;}
.ws14_c02393{word-spacing:1.778400px;}
.ws13_c02393{word-spacing:1.792800px;}
.wse_c02393{word-spacing:3.196800px;}
.wsf_c02393{word-spacing:3.218400px;}
.ws27_c02393{word-spacing:3.880800px;}
.ws2d_c02393{word-spacing:3.924000px;}
.ws36_c02393{word-spacing:3.938400px;}
.ws26_c02393{word-spacing:3.967200px;}
.ws2e_c02393{word-spacing:4.039200px;}
.ws38_c02393{word-spacing:6.040800px;}
.ws39_c02393{word-spacing:6.105600px;}
.ws9_c02393{word-spacing:6.871284px;}
.ws6_c02393{word-spacing:7.253388px;}
.ws7_c02393{word-spacing:7.259976px;}
.ws33_c02393{word-spacing:7.473600px;}
.ws34_c02393{word-spacing:7.560000px;}
.ws35_c02393{word-spacing:7.574400px;}
.ws2b_c02393{word-spacing:10.800000px;}
.ws2c_c02393{word-spacing:10.850400px;}
.ws17_c02393{word-spacing:11.786400px;}
.ws18_c02393{word-spacing:11.894400px;}
.ws29_c02393{word-spacing:13.550400px;}
.ws28_c02393{word-spacing:13.615200px;}
.ws20_c02393{word-spacing:21.859200px;}
.ws21_c02393{word-spacing:21.938400px;}
.ws22_c02393{word-spacing:21.981600px;}
.ws1a_c02393{word-spacing:24.832800px;}
.ws1b_c02393{word-spacing:24.868800px;}
.ws30_c02393{word-spacing:25.437600px;}
.ws2f_c02393{word-spacing:25.488000px;}
.ws12_c02393{word-spacing:30.528000px;}
.ws10_c02393{word-spacing:39.830400px;}
.ws11_c02393{word-spacing:39.952800px;}
._1_c02393{margin-left:-1.179252px;}
._0_c02393{width:1.047492px;}
.fc0_c02393{color:rgb(0,0,0);}
.fs0_c02393{font-size:65.880000px;}
.fs1_c02393{font-size:72.000000px;}
.y0_c02393{bottom:0.000000px;}
.y3_c02393{bottom:75.720882px;}
.y2_c02393{bottom:113.880225px;}
.y2e_c02393{bottom:149.250450px;}
.y2d_c02393{bottom:173.010450px;}
.y2c_c02393{bottom:197.580450px;}
.y2b_c02393{bottom:221.430450px;}
.y2a_c02393{bottom:245.190450px;}
.y29_c02393{bottom:269.040450px;}
.y28_c02393{bottom:292.800450px;}
.y27_c02393{bottom:316.650450px;}
.y26_c02393{bottom:340.410450px;}
.y25_c02393{bottom:364.260450px;}
.y24_c02393{bottom:388.020450px;}
.y23_c02393{bottom:411.870450px;}
.y22_c02393{bottom:435.630450px;}
.y21_c02393{bottom:459.480450px;}
.y20_c02393{bottom:483.240450px;}
.y1f_c02393{bottom:507.000450px;}
.y1e_c02393{bottom:530.850450px;}
.y1d_c02393{bottom:554.610450px;}
.y1c_c02393{bottom:578.460450px;}
.y1b_c02393{bottom:602.220450px;}
.y1a_c02393{bottom:626.070450px;}
.y19_c02393{bottom:649.830450px;}
.y18_c02393{bottom:673.680450px;}
.y17_c02393{bottom:697.440450px;}
.y16_c02393{bottom:721.290450px;}
.y15_c02393{bottom:745.050450px;}
.y14_c02393{bottom:768.900450px;}
.y13_c02393{bottom:792.660450px;}
.y12_c02393{bottom:816.510450px;}
.y11_c02393{bottom:840.270450px;}
.y10_c02393{bottom:864.120450px;}
.yf_c02393{bottom:887.880450px;}
.ye_c02393{bottom:911.730450px;}
.yd_c02393{bottom:935.490450px;}
.yc_c02393{bottom:959.340450px;}
.yb_c02393{bottom:983.100450px;}
.ya_c02393{bottom:1006.950450px;}
.y9_c02393{bottom:1030.890450px;}
.y8_c02393{bottom:1052.760450px;}
.y7_c02393{bottom:1075.350450px;}
.y6_c02393{bottom:1097.040450px;}
.y5_c02393{bottom:1119.721242px;}
.y4_c02393{bottom:1141.410585px;}
.y1_c02393{bottom:1194.600450px;}
.h3_c02393{height:43.909277px;}
.h2_c02393{height:54.331699px;}
.h4_c02393{height:64.657617px;}
.h1_c02393{height:66.394687px;}
.h5_c02393{height:70.664062px;}
.h0_c02393{height:1263.000000px;}
.w1_c02393{width:892.500000px;}
.w0_c02393{width:892.830000px;}
.x0_c02393{left:0.000000px;}
.x1_c02393{left:127.620000px;}
.x2_c02393{left:438.120675px;}
@media print{
.v0_c02393{vertical-align:0.000000pt;}
.ls18_c02393{letter-spacing:-0.044800pt;}
.ls13_c02393{letter-spacing:-0.035136pt;}
.ls15_c02393{letter-spacing:-0.025600pt;}
.ls16_c02393{letter-spacing:-0.019200pt;}
.ls14_c02393{letter-spacing:-0.012800pt;}
.ls17_c02393{letter-spacing:-0.006400pt;}
.ls11_c02393{letter-spacing:0.000000pt;}
.lsb_c02393{letter-spacing:0.006400pt;}
.lse_c02393{letter-spacing:0.012800pt;}
.ls7_c02393{letter-spacing:0.019200pt;}
.ls0_c02393{letter-spacing:0.023424pt;}
.lsf_c02393{letter-spacing:0.025600pt;}
.ls2_c02393{letter-spacing:0.029280pt;}
.lsd_c02393{letter-spacing:0.032000pt;}
.ls3_c02393{letter-spacing:0.035136pt;}
.ls9_c02393{letter-spacing:0.038400pt;}
.lsc_c02393{letter-spacing:0.044800pt;}
.ls1_c02393{letter-spacing:0.046848pt;}
.lsa_c02393{letter-spacing:0.051200pt;}
.ls5_c02393{letter-spacing:0.052704pt;}
.ls8_c02393{letter-spacing:0.057600pt;}
.ls6_c02393{letter-spacing:0.064416pt;}
.ls10_c02393{letter-spacing:0.076800pt;}
.ls12_c02393{letter-spacing:0.081984pt;}
.ls4_c02393{letter-spacing:0.111264pt;}
.ws1_c02393{word-spacing:-14.604864pt;}
.ws23_c02393{word-spacing:-0.377600pt;}
.ws32_c02393{word-spacing:-0.236800pt;}
.ws15_c02393{word-spacing:-0.172800pt;}
.ws0_c02393{word-spacing:-0.140544pt;}
.ws2a_c02393{word-spacing:-0.128000pt;}
.ws25_c02393{word-spacing:-0.121600pt;}
.wsd_c02393{word-spacing:-0.108800pt;}
.ws37_c02393{word-spacing:-0.096000pt;}
.ws1d_c02393{word-spacing:-0.070400pt;}
.ws1c_c02393{word-spacing:-0.051200pt;}
.ws1e_c02393{word-spacing:-0.038400pt;}
.ws8_c02393{word-spacing:-0.029280pt;}
.ws16_c02393{word-spacing:-0.025600pt;}
.ws24_c02393{word-spacing:-0.019200pt;}
.ws19_c02393{word-spacing:-0.012800pt;}
.ws31_c02393{word-spacing:-0.006400pt;}
.ws4_c02393{word-spacing:0.000000pt;}
.wsa_c02393{word-spacing:0.017568pt;}
.ws3_c02393{word-spacing:0.035136pt;}
.ws5_c02393{word-spacing:0.052704pt;}
.ws2_c02393{word-spacing:0.058560pt;}
.wsc_c02393{word-spacing:0.499200pt;}
.wsb_c02393{word-spacing:0.684800pt;}
.ws1f_c02393{word-spacing:1.241600pt;}
.ws14_c02393{word-spacing:1.580800pt;}
.ws13_c02393{word-spacing:1.593600pt;}
.wse_c02393{word-spacing:2.841600pt;}
.wsf_c02393{word-spacing:2.860800pt;}
.ws27_c02393{word-spacing:3.449600pt;}
.ws2d_c02393{word-spacing:3.488000pt;}
.ws36_c02393{word-spacing:3.500800pt;}
.ws26_c02393{word-spacing:3.526400pt;}
.ws2e_c02393{word-spacing:3.590400pt;}
.ws38_c02393{word-spacing:5.369600pt;}
.ws39_c02393{word-spacing:5.427200pt;}
.ws9_c02393{word-spacing:6.107808pt;}
.ws6_c02393{word-spacing:6.447456pt;}
.ws7_c02393{word-spacing:6.453312pt;}
.ws33_c02393{word-spacing:6.643200pt;}
.ws34_c02393{word-spacing:6.720000pt;}
.ws35_c02393{word-spacing:6.732800pt;}
.ws2b_c02393{word-spacing:9.600000pt;}
.ws2c_c02393{word-spacing:9.644800pt;}
.ws17_c02393{word-spacing:10.476800pt;}
.ws18_c02393{word-spacing:10.572800pt;}
.ws29_c02393{word-spacing:12.044800pt;}
.ws28_c02393{word-spacing:12.102400pt;}
.ws20_c02393{word-spacing:19.430400pt;}
.ws21_c02393{word-spacing:19.500800pt;}
.ws22_c02393{word-spacing:19.539200pt;}
.ws1a_c02393{word-spacing:22.073600pt;}
.ws1b_c02393{word-spacing:22.105600pt;}
.ws30_c02393{word-spacing:22.611200pt;}
.ws2f_c02393{word-spacing:22.656000pt;}
.ws12_c02393{word-spacing:27.136000pt;}
.ws10_c02393{word-spacing:35.404800pt;}
.ws11_c02393{word-spacing:35.513600pt;}
._1_c02393{margin-left:-1.048224pt;}
._0_c02393{width:0.931104pt;}
.fs0_c02393{font-size:58.560000pt;}
.fs1_c02393{font-size:64.000000pt;}
.y0_c02393{bottom:0.000000pt;}
.y3_c02393{bottom:67.307451pt;}
.y2_c02393{bottom:101.226867pt;}
.y2e_c02393{bottom:132.667067pt;}
.y2d_c02393{bottom:153.787067pt;}
.y2c_c02393{bottom:175.627067pt;}
.y2b_c02393{bottom:196.827067pt;}
.y2a_c02393{bottom:217.947067pt;}
.y29_c02393{bottom:239.147067pt;}
.y28_c02393{bottom:260.267067pt;}
.y27_c02393{bottom:281.467067pt;}
.y26_c02393{bottom:302.587067pt;}
.y25_c02393{bottom:323.787067pt;}
.y24_c02393{bottom:344.907067pt;}
.y23_c02393{bottom:366.107067pt;}
.y22_c02393{bottom:387.227067pt;}
.y21_c02393{bottom:408.427067pt;}
.y20_c02393{bottom:429.547067pt;}
.y1f_c02393{bottom:450.667067pt;}
.y1e_c02393{bottom:471.867067pt;}
.y1d_c02393{bottom:492.987067pt;}
.y1c_c02393{bottom:514.187067pt;}
.y1b_c02393{bottom:535.307067pt;}
.y1a_c02393{bottom:556.507067pt;}
.y19_c02393{bottom:577.627067pt;}
.y18_c02393{bottom:598.827067pt;}
.y17_c02393{bottom:619.947067pt;}
.y16_c02393{bottom:641.147067pt;}
.y15_c02393{bottom:662.267067pt;}
.y14_c02393{bottom:683.467067pt;}
.y13_c02393{bottom:704.587067pt;}
.y12_c02393{bottom:725.787067pt;}
.y11_c02393{bottom:746.907067pt;}
.y10_c02393{bottom:768.107067pt;}
.yf_c02393{bottom:789.227067pt;}
.ye_c02393{bottom:810.427067pt;}
.yd_c02393{bottom:831.547067pt;}
.yc_c02393{bottom:852.747067pt;}
.yb_c02393{bottom:873.867067pt;}
.ya_c02393{bottom:895.067067pt;}
.y9_c02393{bottom:916.347067pt;}
.y8_c02393{bottom:935.787067pt;}
.y7_c02393{bottom:955.867067pt;}
.y6_c02393{bottom:975.147067pt;}
.y5_c02393{bottom:995.307771pt;}
.y4_c02393{bottom:1014.587187pt;}
.y1_c02393{bottom:1061.867067pt;}
.h3_c02393{height:39.030469pt;}
.h2_c02393{height:48.294844pt;}
.h4_c02393{height:57.473437pt;}
.h1_c02393{height:59.017500pt;}
.h5_c02393{height:62.812500pt;}
.h0_c02393{height:1122.666667pt;}
.w1_c02393{width:793.333333pt;}
.w0_c02393{width:793.626667pt;}
.x0_c02393{left:0.000000pt;}
.x1_c02393{left:113.440000pt;}
.x2_c02393{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96626d29c81e1392e88a9de7.woff2')format("woff");}.ff1_c02394{font-family:ff1_c02394;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02394;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02394{font-family:ff2_c02394;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02394;src:url('chunks/assets/font_4da7d56a32bc6cff417df9d0.woff2')format("woff");}.ff3_c02394{font-family:ff3_c02394;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02394;src:url('chunks/assets/font_1726dbcc0f20655280e61d55.woff2')format("woff");}.ff4_c02394{font-family:ff4_c02394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c02394{letter-spacing:-0.072000px;}
.ls13_c02394{letter-spacing:-0.057600px;}
.lsf_c02394{letter-spacing:-0.050400px;}
.ls12_c02394{letter-spacing:-0.043200px;}
.ls10_c02394{letter-spacing:-0.036000px;}
.ls17_c02394{letter-spacing:-0.028800px;}
.ls16_c02394{letter-spacing:-0.021600px;}
.ls15_c02394{letter-spacing:-0.014400px;}
.ls11_c02394{letter-spacing:-0.007200px;}
.lsd_c02394{letter-spacing:0.000000px;}
.lsa_c02394{letter-spacing:0.007200px;}
.ls3_c02394{letter-spacing:0.014400px;}
.lsb_c02394{letter-spacing:0.021600px;}
.ls0_c02394{letter-spacing:0.026352px;}
.ls9_c02394{letter-spacing:0.028800px;}
.ls5_c02394{letter-spacing:0.036000px;}
.ls6_c02394{letter-spacing:0.050400px;}
.ls1_c02394{letter-spacing:0.052704px;}
.ls8_c02394{letter-spacing:0.057600px;}
.ls4_c02394{letter-spacing:0.064800px;}
.lsc_c02394{letter-spacing:0.072000px;}
.ls2_c02394{letter-spacing:0.079056px;}
.ls7_c02394{letter-spacing:0.079200px;}
.lse_c02394{letter-spacing:0.092232px;}
.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;}
}
.ws31_c02394{word-spacing:-0.432000px;}
.ws38_c02394{word-spacing:-0.259200px;}
.ws34_c02394{word-spacing:-0.201600px;}
.ws2b_c02394{word-spacing:-0.165600px;}
.ws0_c02394{word-spacing:-0.158112px;}
.ws12_c02394{word-spacing:-0.144000px;}
.ws24_c02394{word-spacing:-0.136800px;}
.ws15_c02394{word-spacing:-0.122400px;}
.ws2a_c02394{word-spacing:-0.115200px;}
.ws3b_c02394{word-spacing:-0.108000px;}
.ws1b_c02394{word-spacing:-0.100800px;}
.ws18_c02394{word-spacing:-0.093600px;}
.ws11_c02394{word-spacing:-0.086400px;}
.ws1a_c02394{word-spacing:-0.072000px;}
.ws43_c02394{word-spacing:-0.064800px;}
.ws16_c02394{word-spacing:-0.036000px;}
.ws26_c02394{word-spacing:-0.007200px;}
.ws3_c02394{word-spacing:0.000000px;}
.ws20_c02394{word-spacing:0.007200px;}
.ws4_c02394{word-spacing:0.013176px;}
.ws25_c02394{word-spacing:0.021600px;}
.ws2_c02394{word-spacing:0.039528px;}
.ws1_c02394{word-spacing:0.065880px;}
.ws13_c02394{word-spacing:0.223200px;}
.ws5_c02394{word-spacing:0.230400px;}
.ws14_c02394{word-spacing:0.237600px;}
.ws19_c02394{word-spacing:0.252000px;}
.ws32_c02394{word-spacing:0.964800px;}
.ws33_c02394{word-spacing:1.065600px;}
.ws17_c02394{word-spacing:1.742400px;}
.wse_c02394{word-spacing:2.332800px;}
.wsd_c02394{word-spacing:2.390400px;}
.ws40_c02394{word-spacing:3.211200px;}
.ws3f_c02394{word-spacing:3.276000px;}
.ws9_c02394{word-spacing:3.477600px;}
.wsa_c02394{word-spacing:3.492000px;}
.ws27_c02394{word-spacing:3.852000px;}
.ws28_c02394{word-spacing:3.866400px;}
.ws29_c02394{word-spacing:3.916800px;}
.ws2d_c02394{word-spacing:5.889600px;}
.ws2c_c02394{word-spacing:5.947200px;}
.ws2e_c02394{word-spacing:6.048000px;}
.ws35_c02394{word-spacing:6.336000px;}
.ws36_c02394{word-spacing:6.343200px;}
.ws37_c02394{word-spacing:6.508800px;}
.ws3a_c02394{word-spacing:6.696000px;}
.ws39_c02394{word-spacing:6.724800px;}
.ws22_c02394{word-spacing:8.812800px;}
.wsc_c02394{word-spacing:8.942400px;}
.wsb_c02394{word-spacing:8.949600px;}
.ws21_c02394{word-spacing:8.992800px;}
.ws23_c02394{word-spacing:9.021600px;}
.ws3e_c02394{word-spacing:14.342400px;}
.ws10_c02394{word-spacing:14.349600px;}
.ws3c_c02394{word-spacing:14.385600px;}
.ws3d_c02394{word-spacing:14.421600px;}
.ws1d_c02394{word-spacing:17.431200px;}
.ws1c_c02394{word-spacing:17.632800px;}
.wsf_c02394{word-spacing:22.197600px;}
.ws1e_c02394{word-spacing:22.636800px;}
.ws1f_c02394{word-spacing:22.694400px;}
.ws6_c02394{word-spacing:23.500800px;}
.ws8_c02394{word-spacing:23.572800px;}
.ws2f_c02394{word-spacing:23.731200px;}
.ws30_c02394{word-spacing:23.760000px;}
.ws7_c02394{word-spacing:23.796000px;}
.ws42_c02394{word-spacing:39.117600px;}
.ws41_c02394{word-spacing:39.232800px;}
._0_c02394{margin-left:-1.007964px;}
._1_c02394{width:1.166400px;}
.fc0_c02394{color:rgb(0,0,0);}
.fs0_c02394{font-size:65.880000px;}
.fs1_c02394{font-size:72.000000px;}
.y0_c02394{bottom:0.000000px;}
.y3_c02394{bottom:75.720882px;}
.y2_c02394{bottom:113.880225px;}
.y34_c02394{bottom:143.489937px;}
.y33_c02394{bottom:165.360450px;}
.y32_c02394{bottom:185.430450px;}
.y31_c02394{bottom:206.130450px;}
.y30_c02394{bottom:226.650450px;}
.y2f_c02394{bottom:247.530450px;}
.y2e_c02394{bottom:268.230450px;}
.y2d_c02394{bottom:288.930450px;}
.y2c_c02394{bottom:309.630450px;}
.y2b_c02394{bottom:330.330450px;}
.y2a_c02394{bottom:351.030450px;}
.y29_c02394{bottom:371.730450px;}
.y28_c02394{bottom:392.430450px;}
.y27_c02394{bottom:413.130450px;}
.y26_c02394{bottom:433.830450px;}
.y25_c02394{bottom:454.530450px;}
.y24_c02394{bottom:475.230450px;}
.y23_c02394{bottom:495.930450px;}
.y22_c02394{bottom:516.630450px;}
.y21_c02394{bottom:537.330450px;}
.y20_c02394{bottom:558.030450px;}
.y1f_c02394{bottom:578.730450px;}
.y1e_c02394{bottom:599.430450px;}
.y1d_c02394{bottom:620.130450px;}
.y1c_c02394{bottom:640.830450px;}
.y1b_c02394{bottom:661.440450px;}
.y1a_c02394{bottom:682.140450px;}
.y19_c02394{bottom:702.840450px;}
.y18_c02394{bottom:723.540450px;}
.y17_c02394{bottom:744.240450px;}
.y16_c02394{bottom:764.940450px;}
.y15_c02394{bottom:785.640450px;}
.y14_c02394{bottom:806.160450px;}
.y13_c02394{bottom:827.040450px;}
.y12_c02394{bottom:847.740450px;}
.y11_c02394{bottom:868.440450px;}
.y10_c02394{bottom:889.140450px;}
.yf_c02394{bottom:909.660450px;}
.ye_c02394{bottom:930.360450px;}
.yd_c02394{bottom:951.240450px;}
.yc_c02394{bottom:971.940450px;}
.yb_c02394{bottom:992.640450px;}
.ya_c02394{bottom:1013.340450px;}
.y9_c02394{bottom:1034.040450px;}
.y8_c02394{bottom:1054.740450px;}
.y7_c02394{bottom:1075.440450px;}
.y6_c02394{bottom:1096.140450px;}
.y5_c02394{bottom:1116.660450px;}
.y4_c02394{bottom:1140.690450px;}
.y1_c02394{bottom:1194.600450px;}
.h3_c02394{height:43.909277px;}
.h2_c02394{height:54.331699px;}
.h6_c02394{height:64.657617px;}
.h1_c02394{height:66.394687px;}
.h5_c02394{height:70.664062px;}
.h4_c02394{height:72.562500px;}
.h0_c02394{height:1263.000000px;}
.w1_c02394{width:892.500000px;}
.w0_c02394{width:892.830000px;}
.x0_c02394{left:0.000000px;}
.x1_c02394{left:127.620000px;}
.x2_c02394{left:438.120675px;}
@media print{
.v0_c02394{vertical-align:0.000000pt;}
.ls14_c02394{letter-spacing:-0.064000pt;}
.ls13_c02394{letter-spacing:-0.051200pt;}
.lsf_c02394{letter-spacing:-0.044800pt;}
.ls12_c02394{letter-spacing:-0.038400pt;}
.ls10_c02394{letter-spacing:-0.032000pt;}
.ls17_c02394{letter-spacing:-0.025600pt;}
.ls16_c02394{letter-spacing:-0.019200pt;}
.ls15_c02394{letter-spacing:-0.012800pt;}
.ls11_c02394{letter-spacing:-0.006400pt;}
.lsd_c02394{letter-spacing:0.000000pt;}
.lsa_c02394{letter-spacing:0.006400pt;}
.ls3_c02394{letter-spacing:0.012800pt;}
.lsb_c02394{letter-spacing:0.019200pt;}
.ls0_c02394{letter-spacing:0.023424pt;}
.ls9_c02394{letter-spacing:0.025600pt;}
.ls5_c02394{letter-spacing:0.032000pt;}
.ls6_c02394{letter-spacing:0.044800pt;}
.ls1_c02394{letter-spacing:0.046848pt;}
.ls8_c02394{letter-spacing:0.051200pt;}
.ls4_c02394{letter-spacing:0.057600pt;}
.lsc_c02394{letter-spacing:0.064000pt;}
.ls2_c02394{letter-spacing:0.070272pt;}
.ls7_c02394{letter-spacing:0.070400pt;}
.lse_c02394{letter-spacing:0.081984pt;}
.ws31_c02394{word-spacing:-0.384000pt;}
.ws38_c02394{word-spacing:-0.230400pt;}
.ws34_c02394{word-spacing:-0.179200pt;}
.ws2b_c02394{word-spacing:-0.147200pt;}
.ws0_c02394{word-spacing:-0.140544pt;}
.ws12_c02394{word-spacing:-0.128000pt;}
.ws24_c02394{word-spacing:-0.121600pt;}
.ws15_c02394{word-spacing:-0.108800pt;}
.ws2a_c02394{word-spacing:-0.102400pt;}
.ws3b_c02394{word-spacing:-0.096000pt;}
.ws1b_c02394{word-spacing:-0.089600pt;}
.ws18_c02394{word-spacing:-0.083200pt;}
.ws11_c02394{word-spacing:-0.076800pt;}
.ws1a_c02394{word-spacing:-0.064000pt;}
.ws43_c02394{word-spacing:-0.057600pt;}
.ws16_c02394{word-spacing:-0.032000pt;}
.ws26_c02394{word-spacing:-0.006400pt;}
.ws3_c02394{word-spacing:0.000000pt;}
.ws20_c02394{word-spacing:0.006400pt;}
.ws4_c02394{word-spacing:0.011712pt;}
.ws25_c02394{word-spacing:0.019200pt;}
.ws2_c02394{word-spacing:0.035136pt;}
.ws1_c02394{word-spacing:0.058560pt;}
.ws13_c02394{word-spacing:0.198400pt;}
.ws5_c02394{word-spacing:0.204800pt;}
.ws14_c02394{word-spacing:0.211200pt;}
.ws19_c02394{word-spacing:0.224000pt;}
.ws32_c02394{word-spacing:0.857600pt;}
.ws33_c02394{word-spacing:0.947200pt;}
.ws17_c02394{word-spacing:1.548800pt;}
.wse_c02394{word-spacing:2.073600pt;}
.wsd_c02394{word-spacing:2.124800pt;}
.ws40_c02394{word-spacing:2.854400pt;}
.ws3f_c02394{word-spacing:2.912000pt;}
.ws9_c02394{word-spacing:3.091200pt;}
.wsa_c02394{word-spacing:3.104000pt;}
.ws27_c02394{word-spacing:3.424000pt;}
.ws28_c02394{word-spacing:3.436800pt;}
.ws29_c02394{word-spacing:3.481600pt;}
.ws2d_c02394{word-spacing:5.235200pt;}
.ws2c_c02394{word-spacing:5.286400pt;}
.ws2e_c02394{word-spacing:5.376000pt;}
.ws35_c02394{word-spacing:5.632000pt;}
.ws36_c02394{word-spacing:5.638400pt;}
.ws37_c02394{word-spacing:5.785600pt;}
.ws3a_c02394{word-spacing:5.952000pt;}
.ws39_c02394{word-spacing:5.977600pt;}
.ws22_c02394{word-spacing:7.833600pt;}
.wsc_c02394{word-spacing:7.948800pt;}
.wsb_c02394{word-spacing:7.955200pt;}
.ws21_c02394{word-spacing:7.993600pt;}
.ws23_c02394{word-spacing:8.019200pt;}
.ws3e_c02394{word-spacing:12.748800pt;}
.ws10_c02394{word-spacing:12.755200pt;}
.ws3c_c02394{word-spacing:12.787200pt;}
.ws3d_c02394{word-spacing:12.819200pt;}
.ws1d_c02394{word-spacing:15.494400pt;}
.ws1c_c02394{word-spacing:15.673600pt;}
.wsf_c02394{word-spacing:19.731200pt;}
.ws1e_c02394{word-spacing:20.121600pt;}
.ws1f_c02394{word-spacing:20.172800pt;}
.ws6_c02394{word-spacing:20.889600pt;}
.ws8_c02394{word-spacing:20.953600pt;}
.ws2f_c02394{word-spacing:21.094400pt;}
.ws30_c02394{word-spacing:21.120000pt;}
.ws7_c02394{word-spacing:21.152000pt;}
.ws42_c02394{word-spacing:34.771200pt;}
.ws41_c02394{word-spacing:34.873600pt;}
._0_c02394{margin-left:-0.895968pt;}
._1_c02394{width:1.036800pt;}
.fs0_c02394{font-size:58.560000pt;}
.fs1_c02394{font-size:64.000000pt;}
.y0_c02394{bottom:0.000000pt;}
.y3_c02394{bottom:67.307451pt;}
.y2_c02394{bottom:101.226867pt;}
.y34_c02394{bottom:127.546611pt;}
.y33_c02394{bottom:146.987067pt;}
.y32_c02394{bottom:164.827067pt;}
.y31_c02394{bottom:183.227067pt;}
.y30_c02394{bottom:201.467067pt;}
.y2f_c02394{bottom:220.027067pt;}
.y2e_c02394{bottom:238.427067pt;}
.y2d_c02394{bottom:256.827067pt;}
.y2c_c02394{bottom:275.227067pt;}
.y2b_c02394{bottom:293.627067pt;}
.y2a_c02394{bottom:312.027067pt;}
.y29_c02394{bottom:330.427067pt;}
.y28_c02394{bottom:348.827067pt;}
.y27_c02394{bottom:367.227067pt;}
.y26_c02394{bottom:385.627067pt;}
.y25_c02394{bottom:404.027067pt;}
.y24_c02394{bottom:422.427067pt;}
.y23_c02394{bottom:440.827067pt;}
.y22_c02394{bottom:459.227067pt;}
.y21_c02394{bottom:477.627067pt;}
.y20_c02394{bottom:496.027067pt;}
.y1f_c02394{bottom:514.427067pt;}
.y1e_c02394{bottom:532.827067pt;}
.y1d_c02394{bottom:551.227067pt;}
.y1c_c02394{bottom:569.627067pt;}
.y1b_c02394{bottom:587.947067pt;}
.y1a_c02394{bottom:606.347067pt;}
.y19_c02394{bottom:624.747067pt;}
.y18_c02394{bottom:643.147067pt;}
.y17_c02394{bottom:661.547067pt;}
.y16_c02394{bottom:679.947067pt;}
.y15_c02394{bottom:698.347067pt;}
.y14_c02394{bottom:716.587067pt;}
.y13_c02394{bottom:735.147067pt;}
.y12_c02394{bottom:753.547067pt;}
.y11_c02394{bottom:771.947067pt;}
.y10_c02394{bottom:790.347067pt;}
.yf_c02394{bottom:808.587067pt;}
.ye_c02394{bottom:826.987067pt;}
.yd_c02394{bottom:845.547067pt;}
.yc_c02394{bottom:863.947067pt;}
.yb_c02394{bottom:882.347067pt;}
.ya_c02394{bottom:900.747067pt;}
.y9_c02394{bottom:919.147067pt;}
.y8_c02394{bottom:937.547067pt;}
.y7_c02394{bottom:955.947067pt;}
.y6_c02394{bottom:974.347067pt;}
.y5_c02394{bottom:992.587067pt;}
.y4_c02394{bottom:1013.947067pt;}
.y1_c02394{bottom:1061.867067pt;}
.h3_c02394{height:39.030469pt;}
.h2_c02394{height:48.294844pt;}
.h6_c02394{height:57.473437pt;}
.h1_c02394{height:59.017500pt;}
.h5_c02394{height:62.812500pt;}
.h4_c02394{height:64.500000pt;}
.h0_c02394{height:1122.666667pt;}
.w1_c02394{width:793.333333pt;}
.w0_c02394{width:793.626667pt;}
.x0_c02394{left:0.000000pt;}
.x1_c02394{left:113.440000pt;}
.x2_c02394{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc4276210b561c2553763482.woff2')format("woff");}.ff1_c02395{font-family:ff1_c02395;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02395;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02395{font-family:ff2_c02395;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02395;src:url('chunks/assets/font_637c6d7894b3be1583c27d1d.woff2')format("woff");}.ff3_c02395{font-family:ff3_c02395;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02395;src:url('chunks/assets/font_770edcfa078ced20a77a1aa7.woff2')format("woff");}.ff4_c02395{font-family:ff4_c02395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02395;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff5_c02395{font-family:ff5_c02395;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_c02395;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c02395{font-family:ff6_c02395;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_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;}
.ls14_c02395{letter-spacing:-0.158400px;}
.ls12_c02395{letter-spacing:-0.050400px;}
.ls13_c02395{letter-spacing:-0.028800px;}
.ls11_c02395{letter-spacing:-0.007200px;}
.lsf_c02395{letter-spacing:0.000000px;}
.lsd_c02395{letter-spacing:0.007200px;}
.ls8_c02395{letter-spacing:0.014400px;}
.ls9_c02395{letter-spacing:0.021600px;}
.ls0_c02395{letter-spacing:0.026352px;}
.lse_c02395{letter-spacing:0.028800px;}
.ls3_c02395{letter-spacing:0.036000px;}
.lsb_c02395{letter-spacing:0.043200px;}
.ls4_c02395{letter-spacing:0.050400px;}
.ls1_c02395{letter-spacing:0.052704px;}
.lsc_c02395{letter-spacing:0.057600px;}
.ls5_c02395{letter-spacing:0.066132px;}
.ls7_c02395{letter-spacing:0.072000px;}
.lsa_c02395{letter-spacing:0.079200px;}
.ls2_c02395{letter-spacing:0.085644px;}
.ls10_c02395{letter-spacing:0.092232px;}
.ls6_c02395{letter-spacing:63.565308px;}
.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;}
}
.ws1_c02395{word-spacing:-17.841600px;}
.ws11_c02395{word-spacing:-0.439200px;}
.ws1a_c02395{word-spacing:-0.396000px;}
.ws7_c02395{word-spacing:-0.324000px;}
.ws9_c02395{word-spacing:-0.216000px;}
.ws1c_c02395{word-spacing:-0.201600px;}
.ws1d_c02395{word-spacing:-0.194400px;}
.wse_c02395{word-spacing:-0.165600px;}
.ws0_c02395{word-spacing:-0.158112px;}
.wsb_c02395{word-spacing:-0.151200px;}
.ws1e_c02395{word-spacing:-0.122400px;}
.ws16_c02395{word-spacing:-0.115200px;}
.ws10_c02395{word-spacing:-0.108000px;}
.wsf_c02395{word-spacing:-0.100800px;}
.ws12_c02395{word-spacing:-0.093600px;}
.ws15_c02395{word-spacing:-0.079200px;}
.wsc_c02395{word-spacing:-0.072000px;}
.ws14_c02395{word-spacing:-0.064800px;}
.ws20_c02395{word-spacing:-0.057600px;}
.ws8_c02395{word-spacing:-0.050400px;}
.ws6_c02395{word-spacing:-0.043200px;}
.ws1f_c02395{word-spacing:-0.036000px;}
.ws19_c02395{word-spacing:-0.028800px;}
.ws18_c02395{word-spacing:-0.021600px;}
.wsd_c02395{word-spacing:-0.014400px;}
.ws17_c02395{word-spacing:-0.007200px;}
.ws4_c02395{word-spacing:0.000000px;}
.ws5_c02395{word-spacing:0.006588px;}
.ws1b_c02395{word-spacing:0.007200px;}
.ws3_c02395{word-spacing:0.039528px;}
.ws2_c02395{word-spacing:0.065880px;}
.ws13_c02395{word-spacing:0.115200px;}
.wsa_c02395{word-spacing:0.136800px;}
._0_c02395{margin-left:-1.093608px;}
._1_c02395{width:1.483200px;}
.fc0_c02395{color:rgb(0,0,0);}
.fs2_c02395{font-size:60.120000px;}
.fs0_c02395{font-size:65.880000px;}
.fs1_c02395{font-size:72.000000px;}
.y0_c02395{bottom:0.000000px;}
.y3_c02395{bottom:75.720882px;}
.y2_c02395{bottom:113.880225px;}
.y34_c02395{bottom:144.030450px;}
.y33_c02395{bottom:164.730450px;}
.y32_c02395{bottom:185.430450px;}
.y31_c02395{bottom:206.130450px;}
.y30_c02395{bottom:226.830450px;}
.y2f_c02395{bottom:247.530450px;}
.y2e_c02395{bottom:268.230450px;}
.y2d_c02395{bottom:288.930450px;}
.y2c_c02395{bottom:309.630450px;}
.y2b_c02395{bottom:330.330450px;}
.y2a_c02395{bottom:351.030450px;}
.y29_c02395{bottom:371.550450px;}
.y28_c02395{bottom:392.250450px;}
.y27_c02395{bottom:413.130450px;}
.y26_c02395{bottom:433.830450px;}
.y25_c02395{bottom:454.530450px;}
.y24_c02395{bottom:475.230450px;}
.y23_c02395{bottom:495.930450px;}
.y22_c02395{bottom:516.630450px;}
.y21_c02395{bottom:537.330450px;}
.y20_c02395{bottom:557.850450px;}
.y1f_c02395{bottom:578.550450px;}
.y1e_c02395{bottom:599.430450px;}
.y1d_c02395{bottom:620.130450px;}
.y1c_c02395{bottom:640.650450px;}
.y1b_c02395{bottom:661.440450px;}
.y1a_c02395{bottom:682.140450px;}
.y19_c02395{bottom:702.840450px;}
.y18_c02395{bottom:723.540450px;}
.y17_c02395{bottom:744.240450px;}
.y16_c02395{bottom:764.940450px;}
.y15_c02395{bottom:785.640450px;}
.y14_c02395{bottom:806.340450px;}
.y13_c02395{bottom:826.860450px;}
.y12_c02395{bottom:847.740450px;}
.y11_c02395{bottom:868.440450px;}
.y10_c02395{bottom:889.140450px;}
.yf_c02395{bottom:909.840450px;}
.ye_c02395{bottom:930.540600px;}
.yd_c02395{bottom:951.240450px;}
.yc_c02395{bottom:971.940450px;}
.yb_c02395{bottom:992.640450px;}
.ya_c02395{bottom:1013.340450px;}
.y9_c02395{bottom:1033.860450px;}
.y8_c02395{bottom:1054.740450px;}
.y7_c02395{bottom:1075.440450px;}
.y6_c02395{bottom:1096.140450px;}
.y5_c02395{bottom:1116.840450px;}
.y4_c02395{bottom:1140.690450px;}
.y1_c02395{bottom:1194.600450px;}
.h3_c02395{height:43.909277px;}
.h2_c02395{height:54.331699px;}
.h1_c02395{height:66.394687px;}
.h4_c02395{height:70.664062px;}
.h5_c02395{height:72.562500px;}
.h0_c02395{height:1263.000000px;}
.w1_c02395{width:892.500000px;}
.w0_c02395{width:892.830000px;}
.x0_c02395{left:0.000000px;}
.x1_c02395{left:127.620000px;}
.x3_c02395{left:154.620000px;}
.x2_c02395{left:438.120675px;}
@media print{
.v0_c02395{vertical-align:0.000000pt;}
.ls14_c02395{letter-spacing:-0.140800pt;}
.ls12_c02395{letter-spacing:-0.044800pt;}
.ls13_c02395{letter-spacing:-0.025600pt;}
.ls11_c02395{letter-spacing:-0.006400pt;}
.lsf_c02395{letter-spacing:0.000000pt;}
.lsd_c02395{letter-spacing:0.006400pt;}
.ls8_c02395{letter-spacing:0.012800pt;}
.ls9_c02395{letter-spacing:0.019200pt;}
.ls0_c02395{letter-spacing:0.023424pt;}
.lse_c02395{letter-spacing:0.025600pt;}
.ls3_c02395{letter-spacing:0.032000pt;}
.lsb_c02395{letter-spacing:0.038400pt;}
.ls4_c02395{letter-spacing:0.044800pt;}
.ls1_c02395{letter-spacing:0.046848pt;}
.lsc_c02395{letter-spacing:0.051200pt;}
.ls5_c02395{letter-spacing:0.058784pt;}
.ls7_c02395{letter-spacing:0.064000pt;}
.lsa_c02395{letter-spacing:0.070400pt;}
.ls2_c02395{letter-spacing:0.076128pt;}
.ls10_c02395{letter-spacing:0.081984pt;}
.ls6_c02395{letter-spacing:56.502496pt;}
.ws1_c02395{word-spacing:-15.859200pt;}
.ws11_c02395{word-spacing:-0.390400pt;}
.ws1a_c02395{word-spacing:-0.352000pt;}
.ws7_c02395{word-spacing:-0.288000pt;}
.ws9_c02395{word-spacing:-0.192000pt;}
.ws1c_c02395{word-spacing:-0.179200pt;}
.ws1d_c02395{word-spacing:-0.172800pt;}
.wse_c02395{word-spacing:-0.147200pt;}
.ws0_c02395{word-spacing:-0.140544pt;}
.wsb_c02395{word-spacing:-0.134400pt;}
.ws1e_c02395{word-spacing:-0.108800pt;}
.ws16_c02395{word-spacing:-0.102400pt;}
.ws10_c02395{word-spacing:-0.096000pt;}
.wsf_c02395{word-spacing:-0.089600pt;}
.ws12_c02395{word-spacing:-0.083200pt;}
.ws15_c02395{word-spacing:-0.070400pt;}
.wsc_c02395{word-spacing:-0.064000pt;}
.ws14_c02395{word-spacing:-0.057600pt;}
.ws20_c02395{word-spacing:-0.051200pt;}
.ws8_c02395{word-spacing:-0.044800pt;}
.ws6_c02395{word-spacing:-0.038400pt;}
.ws1f_c02395{word-spacing:-0.032000pt;}
.ws19_c02395{word-spacing:-0.025600pt;}
.ws18_c02395{word-spacing:-0.019200pt;}
.wsd_c02395{word-spacing:-0.012800pt;}
.ws17_c02395{word-spacing:-0.006400pt;}
.ws4_c02395{word-spacing:0.000000pt;}
.ws5_c02395{word-spacing:0.005856pt;}
.ws1b_c02395{word-spacing:0.006400pt;}
.ws3_c02395{word-spacing:0.035136pt;}
.ws2_c02395{word-spacing:0.058560pt;}
.ws13_c02395{word-spacing:0.102400pt;}
.wsa_c02395{word-spacing:0.121600pt;}
._0_c02395{margin-left:-0.972096pt;}
._1_c02395{width:1.318400pt;}
.fs2_c02395{font-size:53.440000pt;}
.fs0_c02395{font-size:58.560000pt;}
.fs1_c02395{font-size:64.000000pt;}
.y0_c02395{bottom:0.000000pt;}
.y3_c02395{bottom:67.307451pt;}
.y2_c02395{bottom:101.226867pt;}
.y34_c02395{bottom:128.027067pt;}
.y33_c02395{bottom:146.427067pt;}
.y32_c02395{bottom:164.827067pt;}
.y31_c02395{bottom:183.227067pt;}
.y30_c02395{bottom:201.627067pt;}
.y2f_c02395{bottom:220.027067pt;}
.y2e_c02395{bottom:238.427067pt;}
.y2d_c02395{bottom:256.827067pt;}
.y2c_c02395{bottom:275.227067pt;}
.y2b_c02395{bottom:293.627067pt;}
.y2a_c02395{bottom:312.027067pt;}
.y29_c02395{bottom:330.267067pt;}
.y28_c02395{bottom:348.667067pt;}
.y27_c02395{bottom:367.227067pt;}
.y26_c02395{bottom:385.627067pt;}
.y25_c02395{bottom:404.027067pt;}
.y24_c02395{bottom:422.427067pt;}
.y23_c02395{bottom:440.827067pt;}
.y22_c02395{bottom:459.227067pt;}
.y21_c02395{bottom:477.627067pt;}
.y20_c02395{bottom:495.867067pt;}
.y1f_c02395{bottom:514.267067pt;}
.y1e_c02395{bottom:532.827067pt;}
.y1d_c02395{bottom:551.227067pt;}
.y1c_c02395{bottom:569.467067pt;}
.y1b_c02395{bottom:587.947067pt;}
.y1a_c02395{bottom:606.347067pt;}
.y19_c02395{bottom:624.747067pt;}
.y18_c02395{bottom:643.147067pt;}
.y17_c02395{bottom:661.547067pt;}
.y16_c02395{bottom:679.947067pt;}
.y15_c02395{bottom:698.347067pt;}
.y14_c02395{bottom:716.747067pt;}
.y13_c02395{bottom:734.987067pt;}
.y12_c02395{bottom:753.547067pt;}
.y11_c02395{bottom:771.947067pt;}
.y10_c02395{bottom:790.347067pt;}
.yf_c02395{bottom:808.747067pt;}
.ye_c02395{bottom:827.147200pt;}
.yd_c02395{bottom:845.547067pt;}
.yc_c02395{bottom:863.947067pt;}
.yb_c02395{bottom:882.347067pt;}
.ya_c02395{bottom:900.747067pt;}
.y9_c02395{bottom:918.987067pt;}
.y8_c02395{bottom:937.547067pt;}
.y7_c02395{bottom:955.947067pt;}
.y6_c02395{bottom:974.347067pt;}
.y5_c02395{bottom:992.747067pt;}
.y4_c02395{bottom:1013.947067pt;}
.y1_c02395{bottom:1061.867067pt;}
.h3_c02395{height:39.030469pt;}
.h2_c02395{height:48.294844pt;}
.h1_c02395{height:59.017500pt;}
.h4_c02395{height:62.812500pt;}
.h5_c02395{height:64.500000pt;}
.h0_c02395{height:1122.666667pt;}
.w1_c02395{width:793.333333pt;}
.w0_c02395{width:793.626667pt;}
.x0_c02395{left:0.000000pt;}
.x1_c02395{left:113.440000pt;}
.x3_c02395{left:137.440000pt;}
.x2_c02395{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4712e5f93135075cf7b2746.woff2')format("woff");}.ff1_c02396{font-family:ff1_c02396;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02396{font-family:ff2_c02396;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02396;src:url('chunks/assets/font_0a58d97b557018a63d67cce1.woff2')format("woff");}.ff3_c02396{font-family:ff3_c02396;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02396;src:url('chunks/assets/font_e8a52ffb7e6b8b660e8a2089.woff2')format("woff");}.ff4_c02396{font-family:ff4_c02396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02396;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c02396{font-family:ff5_c02396;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_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;}
.ls10_c02396{letter-spacing:-0.014400px;}
.ls11_c02396{letter-spacing:-0.007200px;}
.lse_c02396{letter-spacing:0.000000px;}
.ls8_c02396{letter-spacing:0.007200px;}
.ls7_c02396{letter-spacing:0.014400px;}
.ls3_c02396{letter-spacing:0.021600px;}
.ls0_c02396{letter-spacing:0.026352px;}
.ls4_c02396{letter-spacing:0.028800px;}
.ls5_c02396{letter-spacing:0.036000px;}
.ls2_c02396{letter-spacing:0.043200px;}
.lsb_c02396{letter-spacing:0.050400px;}
.ls1_c02396{letter-spacing:0.052704px;}
.lsc_c02396{letter-spacing:0.057600px;}
.ls6_c02396{letter-spacing:0.064800px;}
.lsa_c02396{letter-spacing:0.072000px;}
.lsf_c02396{letter-spacing:0.092232px;}
.lsd_c02396{letter-spacing:0.122400px;}
.ls9_c02396{letter-spacing:33.984000px;}
.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;}
}
.ws1_c02396{word-spacing:-18.000000px;}
.ws9_c02396{word-spacing:-0.424800px;}
.ws16_c02396{word-spacing:-0.252000px;}
.ws17_c02396{word-spacing:-0.194400px;}
.ws0_c02396{word-spacing:-0.158112px;}
.ws15_c02396{word-spacing:-0.151200px;}
.ws5_c02396{word-spacing:-0.144000px;}
.ws10_c02396{word-spacing:-0.136800px;}
.wsd_c02396{word-spacing:-0.129600px;}
.ws8_c02396{word-spacing:-0.122400px;}
.ws7_c02396{word-spacing:-0.115200px;}
.wse_c02396{word-spacing:-0.108000px;}
.wsb_c02396{word-spacing:-0.086400px;}
.ws14_c02396{word-spacing:-0.079200px;}
.ws11_c02396{word-spacing:-0.043200px;}
.wsa_c02396{word-spacing:-0.028800px;}
.ws6_c02396{word-spacing:-0.021600px;}
.wsc_c02396{word-spacing:-0.014400px;}
.wsf_c02396{word-spacing:-0.007200px;}
.ws4_c02396{word-spacing:0.000000px;}
.ws12_c02396{word-spacing:0.014400px;}
.ws13_c02396{word-spacing:0.036000px;}
.ws3_c02396{word-spacing:0.039528px;}
.ws2_c02396{word-spacing:0.065880px;}
._0_c02396{margin-left:-1.317600px;}
.fc0_c02396{color:rgb(0,0,0);}
.fs0_c02396{font-size:65.880000px;}
.fs1_c02396{font-size:72.000000px;}
.y0_c02396{bottom:0.000000px;}
.y3_c02396{bottom:75.720882px;}
.y2_c02396{bottom:113.880225px;}
.y33_c02396{bottom:141.416256px;}
.y32_c02396{bottom:163.196184px;}
.y31_c02396{bottom:185.066697px;}
.y30_c02396{bottom:206.846625px;}
.y2f_c02396{bottom:228.717138px;}
.y2e_c02396{bottom:250.497066px;}
.y2d_c02396{bottom:272.276994px;}
.y2c_c02396{bottom:294.147507px;}
.y2b_c02396{bottom:315.927435px;}
.y2a_c02396{bottom:337.797948px;}
.y29_c02396{bottom:359.577876px;}
.y28_c02396{bottom:381.448389px;}
.y27_c02396{bottom:403.228317px;}
.y26_c02396{bottom:425.098830px;}
.y25_c02396{bottom:446.878758px;}
.y24_c02396{bottom:468.658686px;}
.y23_c02396{bottom:490.529199px;}
.y22_c02396{bottom:512.309127px;}
.y21_c02396{bottom:534.179640px;}
.y20_c02396{bottom:555.959568px;}
.y1f_c02396{bottom:577.830081px;}
.y1e_c02396{bottom:599.610009px;}
.y1d_c02396{bottom:621.480522px;}
.y1c_c02396{bottom:643.260450px;}
.y1b_c02396{bottom:663.330450px;}
.y1a_c02396{bottom:684.030450px;}
.y19_c02396{bottom:704.730450px;}
.y18_c02396{bottom:725.430450px;}
.y17_c02396{bottom:746.130450px;}
.y16_c02396{bottom:766.830450px;}
.y15_c02396{bottom:787.530450px;}
.y14_c02396{bottom:808.230450px;}
.y13_c02396{bottom:828.930450px;}
.y12_c02396{bottom:849.630450px;}
.y11_c02396{bottom:870.330450px;}
.y10_c02396{bottom:891.030450px;}
.yf_c02396{bottom:911.730450px;}
.ye_c02396{bottom:932.430450px;}
.yd_c02396{bottom:953.130450px;}
.yc_c02396{bottom:973.830450px;}
.yb_c02396{bottom:994.530450px;}
.ya_c02396{bottom:1015.230450px;}
.y9_c02396{bottom:1035.750450px;}
.y8_c02396{bottom:1056.630450px;}
.y7_c02396{bottom:1077.330450px;}
.y6_c02396{bottom:1098.030450px;}
.y5_c02396{bottom:1118.730450px;}
.y4_c02396{bottom:1139.430450px;}
.y1_c02396{bottom:1194.600450px;}
.h3_c02396{height:43.909277px;}
.h2_c02396{height:54.331699px;}
.h7_c02396{height:64.657617px;}
.h1_c02396{height:66.394687px;}
.h4_c02396{height:70.664062px;}
.h5_c02396{height:72.562500px;}
.h6_c02396{height:75.093750px;}
.h0_c02396{height:1263.000000px;}
.w1_c02396{width:892.500000px;}
.w0_c02396{width:892.830000px;}
.x0_c02396{left:0.000000px;}
.x1_c02396{left:127.620000px;}
.x3_c02396{left:154.620000px;}
.x4_c02396{left:181.620000px;}
.x2_c02396{left:438.120675px;}
@media print{
.v0_c02396{vertical-align:0.000000pt;}
.ls10_c02396{letter-spacing:-0.012800pt;}
.ls11_c02396{letter-spacing:-0.006400pt;}
.lse_c02396{letter-spacing:0.000000pt;}
.ls8_c02396{letter-spacing:0.006400pt;}
.ls7_c02396{letter-spacing:0.012800pt;}
.ls3_c02396{letter-spacing:0.019200pt;}
.ls0_c02396{letter-spacing:0.023424pt;}
.ls4_c02396{letter-spacing:0.025600pt;}
.ls5_c02396{letter-spacing:0.032000pt;}
.ls2_c02396{letter-spacing:0.038400pt;}
.lsb_c02396{letter-spacing:0.044800pt;}
.ls1_c02396{letter-spacing:0.046848pt;}
.lsc_c02396{letter-spacing:0.051200pt;}
.ls6_c02396{letter-spacing:0.057600pt;}
.lsa_c02396{letter-spacing:0.064000pt;}
.lsf_c02396{letter-spacing:0.081984pt;}
.lsd_c02396{letter-spacing:0.108800pt;}
.ls9_c02396{letter-spacing:30.208000pt;}
.ws1_c02396{word-spacing:-16.000000pt;}
.ws9_c02396{word-spacing:-0.377600pt;}
.ws16_c02396{word-spacing:-0.224000pt;}
.ws17_c02396{word-spacing:-0.172800pt;}
.ws0_c02396{word-spacing:-0.140544pt;}
.ws15_c02396{word-spacing:-0.134400pt;}
.ws5_c02396{word-spacing:-0.128000pt;}
.ws10_c02396{word-spacing:-0.121600pt;}
.wsd_c02396{word-spacing:-0.115200pt;}
.ws8_c02396{word-spacing:-0.108800pt;}
.ws7_c02396{word-spacing:-0.102400pt;}
.wse_c02396{word-spacing:-0.096000pt;}
.wsb_c02396{word-spacing:-0.076800pt;}
.ws14_c02396{word-spacing:-0.070400pt;}
.ws11_c02396{word-spacing:-0.038400pt;}
.wsa_c02396{word-spacing:-0.025600pt;}
.ws6_c02396{word-spacing:-0.019200pt;}
.wsc_c02396{word-spacing:-0.012800pt;}
.wsf_c02396{word-spacing:-0.006400pt;}
.ws4_c02396{word-spacing:0.000000pt;}
.ws12_c02396{word-spacing:0.012800pt;}
.ws13_c02396{word-spacing:0.032000pt;}
.ws3_c02396{word-spacing:0.035136pt;}
.ws2_c02396{word-spacing:0.058560pt;}
._0_c02396{margin-left:-1.171200pt;}
.fs0_c02396{font-size:58.560000pt;}
.fs1_c02396{font-size:64.000000pt;}
.y0_c02396{bottom:0.000000pt;}
.y3_c02396{bottom:67.307451pt;}
.y2_c02396{bottom:101.226867pt;}
.y33_c02396{bottom:125.703339pt;}
.y32_c02396{bottom:145.063275pt;}
.y31_c02396{bottom:164.503731pt;}
.y30_c02396{bottom:183.863667pt;}
.y2f_c02396{bottom:203.304123pt;}
.y2e_c02396{bottom:222.664059pt;}
.y2d_c02396{bottom:242.023995pt;}
.y2c_c02396{bottom:261.464451pt;}
.y2b_c02396{bottom:280.824387pt;}
.y2a_c02396{bottom:300.264843pt;}
.y29_c02396{bottom:319.624779pt;}
.y28_c02396{bottom:339.065235pt;}
.y27_c02396{bottom:358.425171pt;}
.y26_c02396{bottom:377.865627pt;}
.y25_c02396{bottom:397.225563pt;}
.y24_c02396{bottom:416.585499pt;}
.y23_c02396{bottom:436.025955pt;}
.y22_c02396{bottom:455.385891pt;}
.y21_c02396{bottom:474.826347pt;}
.y20_c02396{bottom:494.186283pt;}
.y1f_c02396{bottom:513.626739pt;}
.y1e_c02396{bottom:532.986675pt;}
.y1d_c02396{bottom:552.427131pt;}
.y1c_c02396{bottom:571.787067pt;}
.y1b_c02396{bottom:589.627067pt;}
.y1a_c02396{bottom:608.027067pt;}
.y19_c02396{bottom:626.427067pt;}
.y18_c02396{bottom:644.827067pt;}
.y17_c02396{bottom:663.227067pt;}
.y16_c02396{bottom:681.627067pt;}
.y15_c02396{bottom:700.027067pt;}
.y14_c02396{bottom:718.427067pt;}
.y13_c02396{bottom:736.827067pt;}
.y12_c02396{bottom:755.227067pt;}
.y11_c02396{bottom:773.627067pt;}
.y10_c02396{bottom:792.027067pt;}
.yf_c02396{bottom:810.427067pt;}
.ye_c02396{bottom:828.827067pt;}
.yd_c02396{bottom:847.227067pt;}
.yc_c02396{bottom:865.627067pt;}
.yb_c02396{bottom:884.027067pt;}
.ya_c02396{bottom:902.427067pt;}
.y9_c02396{bottom:920.667067pt;}
.y8_c02396{bottom:939.227067pt;}
.y7_c02396{bottom:957.627067pt;}
.y6_c02396{bottom:976.027067pt;}
.y5_c02396{bottom:994.427067pt;}
.y4_c02396{bottom:1012.827067pt;}
.y1_c02396{bottom:1061.867067pt;}
.h3_c02396{height:39.030469pt;}
.h2_c02396{height:48.294844pt;}
.h7_c02396{height:57.473437pt;}
.h1_c02396{height:59.017500pt;}
.h4_c02396{height:62.812500pt;}
.h5_c02396{height:64.500000pt;}
.h6_c02396{height:66.750000pt;}
.h0_c02396{height:1122.666667pt;}
.w1_c02396{width:793.333333pt;}
.w0_c02396{width:793.626667pt;}
.x0_c02396{left:0.000000pt;}
.x1_c02396{left:113.440000pt;}
.x3_c02396{left:137.440000pt;}
.x4_c02396{left:161.440000pt;}
.x2_c02396{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_841b27fdcb0291af6ae27f04.woff2')format("woff");}.ff1_c02397{font-family:ff1_c02397;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02397{font-family:ff2_c02397;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02397;src:url('chunks/assets/font_ee224a26dfebfe23cf8fbb13.woff2')format("woff");}.ff3_c02397{font-family:ff3_c02397;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02397;src:url('chunks/assets/font_bdd08053a781d660bc7bd801.woff2')format("woff");}.ff4_c02397{font-family:ff4_c02397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10_c02397{letter-spacing:-0.013176px;}
.ls11_c02397{letter-spacing:-0.006588px;}
.lse_c02397{letter-spacing:0.000000px;}
.ls12_c02397{letter-spacing:0.006588px;}
.lsc_c02397{letter-spacing:0.013176px;}
.lsa_c02397{letter-spacing:0.019764px;}
.ls0_c02397{letter-spacing:0.026352px;}
.ls8_c02397{letter-spacing:0.032940px;}
.lsb_c02397{letter-spacing:0.039528px;}
.ls9_c02397{letter-spacing:0.046116px;}
.ls1_c02397{letter-spacing:0.052704px;}
.ls2_c02397{letter-spacing:0.059292px;}
.ls7_c02397{letter-spacing:0.065880px;}
.ls4_c02397{letter-spacing:0.072468px;}
.ls3_c02397{letter-spacing:0.079056px;}
.ls5_c02397{letter-spacing:0.085644px;}
.lsf_c02397{letter-spacing:0.092232px;}
.lsd_c02397{letter-spacing:0.098820px;}
.ls6_c02397{letter-spacing:0.111996px;}
.sc__c02397{text-shadow:none;}
.sc0_c02397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02397{-webkit-text-stroke:0px transparent;}
.sc0_c02397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02397{word-spacing:-0.158112px;}
.ws3a_c02397{word-spacing:-0.019764px;}
.ws3_c02397{word-spacing:0.000000px;}
.ws1d_c02397{word-spacing:0.006588px;}
.ws5_c02397{word-spacing:0.013176px;}
.ws23_c02397{word-spacing:0.019764px;}
.ws1e_c02397{word-spacing:0.026352px;}
.ws4_c02397{word-spacing:0.032940px;}
.ws2_c02397{word-spacing:0.039528px;}
.ws12_c02397{word-spacing:0.046116px;}
.ws1f_c02397{word-spacing:0.052704px;}
.wse_c02397{word-spacing:0.059292px;}
.ws1_c02397{word-spacing:0.065880px;}
.ws20_c02397{word-spacing:0.072468px;}
.ws17_c02397{word-spacing:0.098820px;}
.ws28_c02397{word-spacing:0.777384px;}
.ws29_c02397{word-spacing:0.797148px;}
.ws9_c02397{word-spacing:2.529792px;}
.wsa_c02397{word-spacing:2.542968px;}
.ws31_c02397{word-spacing:3.590460px;}
.ws32_c02397{word-spacing:3.662928px;}
.ws14_c02397{word-spacing:3.998916px;}
.ws8_c02397{word-spacing:4.295376px;}
.ws7_c02397{word-spacing:4.321728px;}
.ws6_c02397{word-spacing:4.334904px;}
.ws21_c02397{word-spacing:4.717008px;}
.ws22_c02397{word-spacing:4.743360px;}
.ws35_c02397{word-spacing:5.435100px;}
.ws36_c02397{word-spacing:5.448276px;}
.ws24_c02397{word-spacing:6.192720px;}
.ws2a_c02397{word-spacing:6.535296px;}
.ws11_c02397{word-spacing:7.951716px;}
.ws10_c02397{word-spacing:7.978068px;}
.ws26_c02397{word-spacing:11.542176px;}
.ws25_c02397{word-spacing:11.561940px;}
.ws27_c02397{word-spacing:11.601468px;}
.ws2b_c02397{word-spacing:12.253680px;}
.ws2c_c02397{word-spacing:12.273444px;}
.ws19_c02397{word-spacing:12.280032px;}
.ws18_c02397{word-spacing:12.293208px;}
.ws37_c02397{word-spacing:16.239420px;}
.ws38_c02397{word-spacing:16.252596px;}
.ws15_c02397{word-spacing:18.420048px;}
.ws16_c02397{word-spacing:18.433224px;}
.ws39_c02397{word-spacing:19.184256px;}
.ws1a_c02397{word-spacing:20.916900px;}
.ws1b_c02397{word-spacing:20.923488px;}
.ws2e_c02397{word-spacing:23.446692px;}
.ws2d_c02397{word-spacing:23.459868px;}
.wsd_c02397{word-spacing:24.158196px;}
.wsc_c02397{word-spacing:24.184548px;}
.ws33_c02397{word-spacing:24.500772px;}
.ws34_c02397{word-spacing:24.553476px;}
.ws2f_c02397{word-spacing:24.869700px;}
.ws30_c02397{word-spacing:24.909228px;}
.wsb_c02397{word-spacing:25.218864px;}
.ws1c_c02397{word-spacing:27.419256px;}
.wsf_c02397{word-spacing:31.339116px;}
.ws13_c02397{word-spacing:32.795064px;}
._0_c02397{margin-left:-1.014552px;}
._1_c02397{width:1.291248px;}
.fc0_c02397{color:rgb(0,0,0);}
.fs0_c02397{font-size:65.880000px;}
.y0_c02397{bottom:0.000000px;}
.y3_c02397{bottom:75.720882px;}
.y2_c02397{bottom:113.880225px;}
.y32_c02397{bottom:135.570450px;}
.y31_c02397{bottom:158.160081px;}
.y30_c02397{bottom:179.940009px;}
.y2f_c02397{bottom:201.810522px;}
.y2e_c02397{bottom:223.590450px;}
.y2d_c02397{bottom:245.369568px;}
.y2c_c02397{bottom:267.240081px;}
.y2b_c02397{bottom:289.020009px;}
.y2a_c02397{bottom:310.890522px;}
.y29_c02397{bottom:332.670450px;}
.y28_c02397{bottom:354.540600px;}
.y27_c02397{bottom:376.319937px;}
.y26_c02397{bottom:398.190450px;}
.y25_c02397{bottom:419.965149px;}
.y24_c02397{bottom:441.745077px;}
.y23_c02397{bottom:463.615590px;}
.y22_c02397{bottom:485.395518px;}
.y21_c02397{bottom:507.175446px;}
.y20_c02397{bottom:529.045959px;}
.y1f_c02397{bottom:550.916472px;}
.y1e_c02397{bottom:572.696400px;}
.y1d_c02397{bottom:594.566913px;}
.y1c_c02397{bottom:616.346841px;}
.y1b_c02397{bottom:638.126769px;}
.y1a_c02397{bottom:659.997282px;}
.y19_c02397{bottom:681.686625px;}
.y18_c02397{bottom:703.557138px;}
.y17_c02397{bottom:725.427651px;}
.y16_c02397{bottom:747.298164px;}
.y15_c02397{bottom:769.078092px;}
.y14_c02397{bottom:790.858020px;}
.y13_c02397{bottom:812.728533px;}
.y12_c02397{bottom:834.508461px;}
.y11_c02397{bottom:856.378974px;}
.y10_c02397{bottom:878.158902px;}
.yf_c02397{bottom:900.029415px;}
.ye_c02397{bottom:921.809343px;}
.yd_c02397{bottom:943.679856px;}
.yc_c02397{bottom:965.459784px;}
.yb_c02397{bottom:987.239712px;}
.ya_c02397{bottom:1009.110225px;}
.y9_c02397{bottom:1030.890153px;}
.y8_c02397{bottom:1052.760666px;}
.y7_c02397{bottom:1074.540594px;}
.y6_c02397{bottom:1096.320522px;}
.y5_c02397{bottom:1118.100450px;}
.y4_c02397{bottom:1140.690450px;}
.y1_c02397{bottom:1194.600450px;}
.h3_c02397{height:43.909277px;}
.h2_c02397{height:54.331699px;}
.h4_c02397{height:64.657617px;}
.h1_c02397{height:66.394687px;}
.h0_c02397{height:1263.000000px;}
.w1_c02397{width:892.500000px;}
.w0_c02397{width:892.830000px;}
.x0_c02397{left:0.000000px;}
.x1_c02397{left:127.620000px;}
.x2_c02397{left:438.120675px;}
@media print{
.v0_c02397{vertical-align:0.000000pt;}
.ls10_c02397{letter-spacing:-0.011712pt;}
.ls11_c02397{letter-spacing:-0.005856pt;}
.lse_c02397{letter-spacing:0.000000pt;}
.ls12_c02397{letter-spacing:0.005856pt;}
.lsc_c02397{letter-spacing:0.011712pt;}
.lsa_c02397{letter-spacing:0.017568pt;}
.ls0_c02397{letter-spacing:0.023424pt;}
.ls8_c02397{letter-spacing:0.029280pt;}
.lsb_c02397{letter-spacing:0.035136pt;}
.ls9_c02397{letter-spacing:0.040992pt;}
.ls1_c02397{letter-spacing:0.046848pt;}
.ls2_c02397{letter-spacing:0.052704pt;}
.ls7_c02397{letter-spacing:0.058560pt;}
.ls4_c02397{letter-spacing:0.064416pt;}
.ls3_c02397{letter-spacing:0.070272pt;}
.ls5_c02397{letter-spacing:0.076128pt;}
.lsf_c02397{letter-spacing:0.081984pt;}
.lsd_c02397{letter-spacing:0.087840pt;}
.ls6_c02397{letter-spacing:0.099552pt;}
.ws0_c02397{word-spacing:-0.140544pt;}
.ws3a_c02397{word-spacing:-0.017568pt;}
.ws3_c02397{word-spacing:0.000000pt;}
.ws1d_c02397{word-spacing:0.005856pt;}
.ws5_c02397{word-spacing:0.011712pt;}
.ws23_c02397{word-spacing:0.017568pt;}
.ws1e_c02397{word-spacing:0.023424pt;}
.ws4_c02397{word-spacing:0.029280pt;}
.ws2_c02397{word-spacing:0.035136pt;}
.ws12_c02397{word-spacing:0.040992pt;}
.ws1f_c02397{word-spacing:0.046848pt;}
.wse_c02397{word-spacing:0.052704pt;}
.ws1_c02397{word-spacing:0.058560pt;}
.ws20_c02397{word-spacing:0.064416pt;}
.ws17_c02397{word-spacing:0.087840pt;}
.ws28_c02397{word-spacing:0.691008pt;}
.ws29_c02397{word-spacing:0.708576pt;}
.ws9_c02397{word-spacing:2.248704pt;}
.wsa_c02397{word-spacing:2.260416pt;}
.ws31_c02397{word-spacing:3.191520pt;}
.ws32_c02397{word-spacing:3.255936pt;}
.ws14_c02397{word-spacing:3.554592pt;}
.ws8_c02397{word-spacing:3.818112pt;}
.ws7_c02397{word-spacing:3.841536pt;}
.ws6_c02397{word-spacing:3.853248pt;}
.ws21_c02397{word-spacing:4.192896pt;}
.ws22_c02397{word-spacing:4.216320pt;}
.ws35_c02397{word-spacing:4.831200pt;}
.ws36_c02397{word-spacing:4.842912pt;}
.ws24_c02397{word-spacing:5.504640pt;}
.ws2a_c02397{word-spacing:5.809152pt;}
.ws11_c02397{word-spacing:7.068192pt;}
.ws10_c02397{word-spacing:7.091616pt;}
.ws26_c02397{word-spacing:10.259712pt;}
.ws25_c02397{word-spacing:10.277280pt;}
.ws27_c02397{word-spacing:10.312416pt;}
.ws2b_c02397{word-spacing:10.892160pt;}
.ws2c_c02397{word-spacing:10.909728pt;}
.ws19_c02397{word-spacing:10.915584pt;}
.ws18_c02397{word-spacing:10.927296pt;}
.ws37_c02397{word-spacing:14.435040pt;}
.ws38_c02397{word-spacing:14.446752pt;}
.ws15_c02397{word-spacing:16.373376pt;}
.ws16_c02397{word-spacing:16.385088pt;}
.ws39_c02397{word-spacing:17.052672pt;}
.ws1a_c02397{word-spacing:18.592800pt;}
.ws1b_c02397{word-spacing:18.598656pt;}
.ws2e_c02397{word-spacing:20.841504pt;}
.ws2d_c02397{word-spacing:20.853216pt;}
.wsd_c02397{word-spacing:21.473952pt;}
.wsc_c02397{word-spacing:21.497376pt;}
.ws33_c02397{word-spacing:21.778464pt;}
.ws34_c02397{word-spacing:21.825312pt;}
.ws2f_c02397{word-spacing:22.106400pt;}
.ws30_c02397{word-spacing:22.141536pt;}
.wsb_c02397{word-spacing:22.416768pt;}
.ws1c_c02397{word-spacing:24.372672pt;}
.wsf_c02397{word-spacing:27.856992pt;}
.ws13_c02397{word-spacing:29.151168pt;}
._0_c02397{margin-left:-0.901824pt;}
._1_c02397{width:1.147776pt;}
.fs0_c02397{font-size:58.560000pt;}
.y0_c02397{bottom:0.000000pt;}
.y3_c02397{bottom:67.307451pt;}
.y2_c02397{bottom:101.226867pt;}
.y32_c02397{bottom:120.507067pt;}
.y31_c02397{bottom:140.586739pt;}
.y30_c02397{bottom:159.946675pt;}
.y2f_c02397{bottom:179.387131pt;}
.y2e_c02397{bottom:198.747067pt;}
.y2d_c02397{bottom:218.106283pt;}
.y2c_c02397{bottom:237.546739pt;}
.y2b_c02397{bottom:256.906675pt;}
.y2a_c02397{bottom:276.347131pt;}
.y29_c02397{bottom:295.707067pt;}
.y28_c02397{bottom:315.147200pt;}
.y27_c02397{bottom:334.506611pt;}
.y26_c02397{bottom:353.947067pt;}
.y25_c02397{bottom:373.302355pt;}
.y24_c02397{bottom:392.662291pt;}
.y23_c02397{bottom:412.102747pt;}
.y22_c02397{bottom:431.462683pt;}
.y21_c02397{bottom:450.822619pt;}
.y20_c02397{bottom:470.263075pt;}
.y1f_c02397{bottom:489.703531pt;}
.y1e_c02397{bottom:509.063467pt;}
.y1d_c02397{bottom:528.503923pt;}
.y1c_c02397{bottom:547.863859pt;}
.y1b_c02397{bottom:567.223795pt;}
.y1a_c02397{bottom:586.664251pt;}
.y19_c02397{bottom:605.943667pt;}
.y18_c02397{bottom:625.384123pt;}
.y17_c02397{bottom:644.824579pt;}
.y16_c02397{bottom:664.265035pt;}
.y15_c02397{bottom:683.624971pt;}
.y14_c02397{bottom:702.984907pt;}
.y13_c02397{bottom:722.425363pt;}
.y12_c02397{bottom:741.785299pt;}
.y11_c02397{bottom:761.225755pt;}
.y10_c02397{bottom:780.585691pt;}
.yf_c02397{bottom:800.026147pt;}
.ye_c02397{bottom:819.386083pt;}
.yd_c02397{bottom:838.826539pt;}
.yc_c02397{bottom:858.186475pt;}
.yb_c02397{bottom:877.546411pt;}
.ya_c02397{bottom:896.986867pt;}
.y9_c02397{bottom:916.346803pt;}
.y8_c02397{bottom:935.787259pt;}
.y7_c02397{bottom:955.147195pt;}
.y6_c02397{bottom:974.507131pt;}
.y5_c02397{bottom:993.867067pt;}
.y4_c02397{bottom:1013.947067pt;}
.y1_c02397{bottom:1061.867067pt;}
.h3_c02397{height:39.030469pt;}
.h2_c02397{height:48.294844pt;}
.h4_c02397{height:57.473437pt;}
.h1_c02397{height:59.017500pt;}
.h0_c02397{height:1122.666667pt;}
.w1_c02397{width:793.333333pt;}
.w0_c02397{width:793.626667pt;}
.x0_c02397{left:0.000000pt;}
.x1_c02397{left:113.440000pt;}
.x2_c02397{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cebb2ef1a220e28e7ddbf4b1.woff2')format("woff");}.ff1_c02398{font-family:ff1_c02398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02398;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02398{font-family:ff2_c02398;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02398;src:url('chunks/assets/font_4690e0f2f55d336eb5125e45.woff2')format("woff");}.ff3_c02398{font-family:ff3_c02398;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02398;src:url('chunks/assets/font_7410d56e510638f44d7f56b0.woff2')format("woff");}.ff4_c02398{font-family:ff4_c02398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15_c02398{letter-spacing:-0.111996px;}
.ls16_c02398{letter-spacing:-0.057600px;}
.ls17_c02398{letter-spacing:-0.014400px;}
.ls18_c02398{letter-spacing:-0.007200px;}
.ls13_c02398{letter-spacing:0.000000px;}
.ls3_c02398{letter-spacing:0.006588px;}
.lse_c02398{letter-spacing:0.007200px;}
.lsd_c02398{letter-spacing:0.014400px;}
.ls6_c02398{letter-spacing:0.019764px;}
.lsc_c02398{letter-spacing:0.021600px;}
.ls0_c02398{letter-spacing:0.026352px;}
.ls10_c02398{letter-spacing:0.028800px;}
.ls7_c02398{letter-spacing:0.032940px;}
.lsa_c02398{letter-spacing:0.036000px;}
.ls9_c02398{letter-spacing:0.043200px;}
.ls5_c02398{letter-spacing:0.046116px;}
.lsf_c02398{letter-spacing:0.050400px;}
.ls1_c02398{letter-spacing:0.052704px;}
.lsb_c02398{letter-spacing:0.064800px;}
.ls8_c02398{letter-spacing:0.079056px;}
.ls2_c02398{letter-spacing:0.085644px;}
.ls14_c02398{letter-spacing:0.092232px;}
.ls12_c02398{letter-spacing:0.093600px;}
.ls11_c02398{letter-spacing:0.108000px;}
.ls4_c02398{letter-spacing:0.131760px;}
.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;}
}
.ws1_c02398{word-spacing:-16.555644px;}
.ws2_c02398{word-spacing:-16.358004px;}
.ws14_c02398{word-spacing:-0.266400px;}
.ws28_c02398{word-spacing:-0.172800px;}
.ws0_c02398{word-spacing:-0.158112px;}
.ws29_c02398{word-spacing:-0.129600px;}
.ws18_c02398{word-spacing:-0.122400px;}
.ws32_c02398{word-spacing:-0.108000px;}
.ws1e_c02398{word-spacing:-0.093600px;}
.ws2f_c02398{word-spacing:-0.086400px;}
.ws7_c02398{word-spacing:-0.039528px;}
.ws1d_c02398{word-spacing:-0.028800px;}
.ws13_c02398{word-spacing:-0.021600px;}
.ws15_c02398{word-spacing:-0.014400px;}
.ws5_c02398{word-spacing:0.000000px;}
.ws22_c02398{word-spacing:0.007200px;}
.wsd_c02398{word-spacing:0.013176px;}
.ws4_c02398{word-spacing:0.039528px;}
.wsf_c02398{word-spacing:0.057600px;}
.wsc_c02398{word-spacing:0.059292px;}
.ws3_c02398{word-spacing:0.065880px;}
.ws21_c02398{word-spacing:0.086400px;}
.wse_c02398{word-spacing:0.172800px;}
.ws20_c02398{word-spacing:0.230400px;}
.ws1f_c02398{word-spacing:0.252000px;}
.ws12_c02398{word-spacing:4.255200px;}
.ws2e_c02398{word-spacing:4.845600px;}
.ws2c_c02398{word-spacing:4.874400px;}
.ws2d_c02398{word-spacing:5.025600px;}
.ws11_c02398{word-spacing:6.012000px;}
.ws10_c02398{word-spacing:6.076800px;}
.ws2b_c02398{word-spacing:7.128000px;}
.ws2a_c02398{word-spacing:7.135200px;}
.ws31_c02398{word-spacing:8.208000px;}
.ws30_c02398{word-spacing:8.236800px;}
.ws27_c02398{word-spacing:12.117600px;}
.ws26_c02398{word-spacing:12.211200px;}
.wsb_c02398{word-spacing:14.078556px;}
.wsa_c02398{word-spacing:14.085144px;}
.ws17_c02398{word-spacing:15.379200px;}
.ws16_c02398{word-spacing:15.415200px;}
.ws25_c02398{word-spacing:15.674400px;}
.ws24_c02398{word-spacing:15.717600px;}
.ws23_c02398{word-spacing:15.732000px;}
.ws8_c02398{word-spacing:15.883668px;}
.ws9_c02398{word-spacing:15.910020px;}
.ws19_c02398{word-spacing:16.797600px;}
.ws1a_c02398{word-spacing:27.208800px;}
.ws1c_c02398{word-spacing:27.237600px;}
.ws1b_c02398{word-spacing:27.280800px;}
.ws6_c02398{word-spacing:62.006256px;}
._1_c02398{margin-left:-1.212192px;}
._0_c02398{width:1.199016px;}
.fc0_c02398{color:rgb(0,0,0);}
.fs0_c02398{font-size:65.880000px;}
.fs1_c02398{font-size:72.000000px;}
.y0_c02398{bottom:0.000000px;}
.y3_c02398{bottom:75.720882px;}
.y2_c02398{bottom:113.880225px;}
.y2f_c02398{bottom:158.607585px;}
.y2e_c02398{bottom:180.478098px;}
.y2d_c02398{bottom:202.258026px;}
.y2c_c02398{bottom:224.037954px;}
.y2b_c02398{bottom:245.908467px;}
.y2a_c02398{bottom:267.688395px;}
.y29_c02398{bottom:289.558908px;}
.y28_c02398{bottom:311.338836px;}
.y27_c02398{bottom:333.209349px;}
.y26_c02398{bottom:354.989277px;}
.y25_c02398{bottom:376.859790px;}
.y24_c02398{bottom:398.639718px;}
.y23_c02398{bottom:420.419646px;}
.y22_c02398{bottom:442.290159px;}
.y21_c02398{bottom:464.070087px;}
.y20_c02398{bottom:485.940600px;}
.y1f_c02398{bottom:509.070450px;}
.y1e_c02398{bottom:532.830450px;}
.y1d_c02398{bottom:556.590450px;}
.y1c_c02398{bottom:580.440450px;}
.y1b_c02398{bottom:604.200450px;}
.y1a_c02398{bottom:628.050450px;}
.y19_c02398{bottom:651.810450px;}
.y18_c02398{bottom:675.660450px;}
.y17_c02398{bottom:699.420450px;}
.y16_c02398{bottom:723.270450px;}
.y15_c02398{bottom:747.030450px;}
.y14_c02398{bottom:770.880450px;}
.y13_c02398{bottom:794.640450px;}
.y12_c02398{bottom:818.490450px;}
.y11_c02398{bottom:842.250450px;}
.y10_c02398{bottom:866.100450px;}
.yf_c02398{bottom:889.860450px;}
.ye_c02398{bottom:913.710450px;}
.yd_c02398{bottom:937.470450px;}
.yc_c02398{bottom:961.320450px;}
.yb_c02398{bottom:985.080450px;}
.ya_c02398{bottom:1009.110450px;}
.y9_c02398{bottom:1030.890450px;}
.y8_c02398{bottom:1052.760450px;}
.y7_c02398{bottom:1075.350450px;}
.y6_c02398{bottom:1097.040450px;}
.y5_c02398{bottom:1119.721242px;}
.y4_c02398{bottom:1141.410585px;}
.y1_c02398{bottom:1194.600450px;}
.h3_c02398{height:43.909277px;}
.h2_c02398{height:54.331699px;}
.h4_c02398{height:64.657617px;}
.h1_c02398{height:66.394687px;}
.h5_c02398{height:70.664062px;}
.h0_c02398{height:1263.000000px;}
.w1_c02398{width:892.500000px;}
.w0_c02398{width:892.830000px;}
.x0_c02398{left:0.000000px;}
.x1_c02398{left:127.620000px;}
.x2_c02398{left:438.120675px;}
@media print{
.v0_c02398{vertical-align:0.000000pt;}
.ls15_c02398{letter-spacing:-0.099552pt;}
.ls16_c02398{letter-spacing:-0.051200pt;}
.ls17_c02398{letter-spacing:-0.012800pt;}
.ls18_c02398{letter-spacing:-0.006400pt;}
.ls13_c02398{letter-spacing:0.000000pt;}
.ls3_c02398{letter-spacing:0.005856pt;}
.lse_c02398{letter-spacing:0.006400pt;}
.lsd_c02398{letter-spacing:0.012800pt;}
.ls6_c02398{letter-spacing:0.017568pt;}
.lsc_c02398{letter-spacing:0.019200pt;}
.ls0_c02398{letter-spacing:0.023424pt;}
.ls10_c02398{letter-spacing:0.025600pt;}
.ls7_c02398{letter-spacing:0.029280pt;}
.lsa_c02398{letter-spacing:0.032000pt;}
.ls9_c02398{letter-spacing:0.038400pt;}
.ls5_c02398{letter-spacing:0.040992pt;}
.lsf_c02398{letter-spacing:0.044800pt;}
.ls1_c02398{letter-spacing:0.046848pt;}
.lsb_c02398{letter-spacing:0.057600pt;}
.ls8_c02398{letter-spacing:0.070272pt;}
.ls2_c02398{letter-spacing:0.076128pt;}
.ls14_c02398{letter-spacing:0.081984pt;}
.ls12_c02398{letter-spacing:0.083200pt;}
.ls11_c02398{letter-spacing:0.096000pt;}
.ls4_c02398{letter-spacing:0.117120pt;}
.ws1_c02398{word-spacing:-14.716128pt;}
.ws2_c02398{word-spacing:-14.540448pt;}
.ws14_c02398{word-spacing:-0.236800pt;}
.ws28_c02398{word-spacing:-0.153600pt;}
.ws0_c02398{word-spacing:-0.140544pt;}
.ws29_c02398{word-spacing:-0.115200pt;}
.ws18_c02398{word-spacing:-0.108800pt;}
.ws32_c02398{word-spacing:-0.096000pt;}
.ws1e_c02398{word-spacing:-0.083200pt;}
.ws2f_c02398{word-spacing:-0.076800pt;}
.ws7_c02398{word-spacing:-0.035136pt;}
.ws1d_c02398{word-spacing:-0.025600pt;}
.ws13_c02398{word-spacing:-0.019200pt;}
.ws15_c02398{word-spacing:-0.012800pt;}
.ws5_c02398{word-spacing:0.000000pt;}
.ws22_c02398{word-spacing:0.006400pt;}
.wsd_c02398{word-spacing:0.011712pt;}
.ws4_c02398{word-spacing:0.035136pt;}
.wsf_c02398{word-spacing:0.051200pt;}
.wsc_c02398{word-spacing:0.052704pt;}
.ws3_c02398{word-spacing:0.058560pt;}
.ws21_c02398{word-spacing:0.076800pt;}
.wse_c02398{word-spacing:0.153600pt;}
.ws20_c02398{word-spacing:0.204800pt;}
.ws1f_c02398{word-spacing:0.224000pt;}
.ws12_c02398{word-spacing:3.782400pt;}
.ws2e_c02398{word-spacing:4.307200pt;}
.ws2c_c02398{word-spacing:4.332800pt;}
.ws2d_c02398{word-spacing:4.467200pt;}
.ws11_c02398{word-spacing:5.344000pt;}
.ws10_c02398{word-spacing:5.401600pt;}
.ws2b_c02398{word-spacing:6.336000pt;}
.ws2a_c02398{word-spacing:6.342400pt;}
.ws31_c02398{word-spacing:7.296000pt;}
.ws30_c02398{word-spacing:7.321600pt;}
.ws27_c02398{word-spacing:10.771200pt;}
.ws26_c02398{word-spacing:10.854400pt;}
.wsb_c02398{word-spacing:12.514272pt;}
.wsa_c02398{word-spacing:12.520128pt;}
.ws17_c02398{word-spacing:13.670400pt;}
.ws16_c02398{word-spacing:13.702400pt;}
.ws25_c02398{word-spacing:13.932800pt;}
.ws24_c02398{word-spacing:13.971200pt;}
.ws23_c02398{word-spacing:13.984000pt;}
.ws8_c02398{word-spacing:14.118816pt;}
.ws9_c02398{word-spacing:14.142240pt;}
.ws19_c02398{word-spacing:14.931200pt;}
.ws1a_c02398{word-spacing:24.185600pt;}
.ws1c_c02398{word-spacing:24.211200pt;}
.ws1b_c02398{word-spacing:24.249600pt;}
.ws6_c02398{word-spacing:55.116672pt;}
._1_c02398{margin-left:-1.077504pt;}
._0_c02398{width:1.065792pt;}
.fs0_c02398{font-size:58.560000pt;}
.fs1_c02398{font-size:64.000000pt;}
.y0_c02398{bottom:0.000000pt;}
.y3_c02398{bottom:67.307451pt;}
.y2_c02398{bottom:101.226867pt;}
.y2f_c02398{bottom:140.984520pt;}
.y2e_c02398{bottom:160.424976pt;}
.y2d_c02398{bottom:179.784912pt;}
.y2c_c02398{bottom:199.144848pt;}
.y2b_c02398{bottom:218.585304pt;}
.y2a_c02398{bottom:237.945240pt;}
.y29_c02398{bottom:257.385696pt;}
.y28_c02398{bottom:276.745632pt;}
.y27_c02398{bottom:296.186088pt;}
.y26_c02398{bottom:315.546024pt;}
.y25_c02398{bottom:334.986480pt;}
.y24_c02398{bottom:354.346416pt;}
.y23_c02398{bottom:373.706352pt;}
.y22_c02398{bottom:393.146808pt;}
.y21_c02398{bottom:412.506744pt;}
.y20_c02398{bottom:431.947200pt;}
.y1f_c02398{bottom:452.507067pt;}
.y1e_c02398{bottom:473.627067pt;}
.y1d_c02398{bottom:494.747067pt;}
.y1c_c02398{bottom:515.947067pt;}
.y1b_c02398{bottom:537.067067pt;}
.y1a_c02398{bottom:558.267067pt;}
.y19_c02398{bottom:579.387067pt;}
.y18_c02398{bottom:600.587067pt;}
.y17_c02398{bottom:621.707067pt;}
.y16_c02398{bottom:642.907067pt;}
.y15_c02398{bottom:664.027067pt;}
.y14_c02398{bottom:685.227067pt;}
.y13_c02398{bottom:706.347067pt;}
.y12_c02398{bottom:727.547067pt;}
.y11_c02398{bottom:748.667067pt;}
.y10_c02398{bottom:769.867067pt;}
.yf_c02398{bottom:790.987067pt;}
.ye_c02398{bottom:812.187067pt;}
.yd_c02398{bottom:833.307067pt;}
.yc_c02398{bottom:854.507067pt;}
.yb_c02398{bottom:875.627067pt;}
.ya_c02398{bottom:896.987067pt;}
.y9_c02398{bottom:916.347067pt;}
.y8_c02398{bottom:935.787067pt;}
.y7_c02398{bottom:955.867067pt;}
.y6_c02398{bottom:975.147067pt;}
.y5_c02398{bottom:995.307771pt;}
.y4_c02398{bottom:1014.587187pt;}
.y1_c02398{bottom:1061.867067pt;}
.h3_c02398{height:39.030469pt;}
.h2_c02398{height:48.294844pt;}
.h4_c02398{height:57.473437pt;}
.h1_c02398{height:59.017500pt;}
.h5_c02398{height:62.812500pt;}
.h0_c02398{height:1122.666667pt;}
.w1_c02398{width:793.333333pt;}
.w0_c02398{width:793.626667pt;}
.x0_c02398{left:0.000000pt;}
.x1_c02398{left:113.440000pt;}
.x2_c02398{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8ed6d103a3c985061782602.woff2')format("woff");}.ff1_c02399{font-family:ff1_c02399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02399;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02399{font-family:ff2_c02399;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02399;src:url('chunks/assets/font_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff3_c02399{font-family:ff3_c02399;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02399;src:url('chunks/assets/font_f1f1089d0402cc60d16e6a06.woff2')format("woff");}.ff4_c02399{font-family:ff4_c02399;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15_c02399{letter-spacing:-0.043200px;}
.ls12_c02399{letter-spacing:-0.036000px;}
.ls10_c02399{letter-spacing:-0.028800px;}
.ls11_c02399{letter-spacing:-0.021600px;}
.ls14_c02399{letter-spacing:-0.014400px;}
.ls13_c02399{letter-spacing:-0.007200px;}
.lsf_c02399{letter-spacing:0.000000px;}
.ls6_c02399{letter-spacing:0.007200px;}
.ls3_c02399{letter-spacing:0.014400px;}
.lsb_c02399{letter-spacing:0.021600px;}
.ls0_c02399{letter-spacing:0.026352px;}
.lsc_c02399{letter-spacing:0.028800px;}
.ls4_c02399{letter-spacing:0.036000px;}
.ls5_c02399{letter-spacing:0.043200px;}
.ls9_c02399{letter-spacing:0.050400px;}
.ls1_c02399{letter-spacing:0.052704px;}
.ls8_c02399{letter-spacing:0.057600px;}
.ls7_c02399{letter-spacing:0.064800px;}
.lsd_c02399{letter-spacing:0.072000px;}
.lse_c02399{letter-spacing:0.079200px;}
.lsa_c02399{letter-spacing:0.086400px;}
.ls2_c02399{letter-spacing:0.092232px;}
.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;}
}
.ws1_c02399{word-spacing:-18.000000px;}
.ws0_c02399{word-spacing:-0.158112px;}
.ws7_c02399{word-spacing:-0.129600px;}
.ws11_c02399{word-spacing:-0.115200px;}
.ws18_c02399{word-spacing:-0.108000px;}
.ws3d_c02399{word-spacing:-0.100800px;}
.ws8_c02399{word-spacing:-0.093600px;}
.ws17_c02399{word-spacing:-0.086400px;}
.wsc_c02399{word-spacing:-0.072000px;}
.wsa_c02399{word-spacing:-0.064800px;}
.ws10_c02399{word-spacing:-0.057600px;}
.ws6_c02399{word-spacing:-0.036000px;}
.ws22_c02399{word-spacing:-0.028800px;}
.ws3e_c02399{word-spacing:-0.021600px;}
.ws5_c02399{word-spacing:-0.014400px;}
.wsb_c02399{word-spacing:-0.007200px;}
.ws4_c02399{word-spacing:0.000000px;}
.ws30_c02399{word-spacing:0.007200px;}
.ws27_c02399{word-spacing:0.014400px;}
.ws12_c02399{word-spacing:0.021600px;}
.ws3_c02399{word-spacing:0.039528px;}
.ws2_c02399{word-spacing:0.065880px;}
.ws24_c02399{word-spacing:0.712800px;}
.ws23_c02399{word-spacing:0.748800px;}
.ws3a_c02399{word-spacing:2.066400px;}
.ws3b_c02399{word-spacing:2.109600px;}
.ws3c_c02399{word-spacing:2.167200px;}
.ws19_c02399{word-spacing:2.232000px;}
.ws1a_c02399{word-spacing:2.433600px;}
.ws1b_c02399{word-spacing:2.498400px;}
.wsd_c02399{word-spacing:3.074400px;}
.wse_c02399{word-spacing:3.110400px;}
.wsf_c02399{word-spacing:3.268800px;}
.ws1e_c02399{word-spacing:3.348000px;}
.ws1f_c02399{word-spacing:3.607200px;}
.ws20_c02399{word-spacing:5.270400px;}
.ws26_c02399{word-spacing:5.292000px;}
.ws25_c02399{word-spacing:5.385600px;}
.ws21_c02399{word-spacing:5.428800px;}
.ws33_c02399{word-spacing:10.684800px;}
.ws31_c02399{word-spacing:10.720800px;}
.ws32_c02399{word-spacing:10.749600px;}
.ws2c_c02399{word-spacing:12.038400px;}
.ws2b_c02399{word-spacing:12.211200px;}
.ws2d_c02399{word-spacing:12.931200px;}
.ws1c_c02399{word-spacing:14.731200px;}
.ws1d_c02399{word-spacing:14.745600px;}
.ws16_c02399{word-spacing:16.761600px;}
.ws15_c02399{word-spacing:16.797600px;}
.ws9_c02399{word-spacing:18.244800px;}
.ws2f_c02399{word-spacing:19.425600px;}
.ws2e_c02399{word-spacing:19.476000px;}
.ws36_c02399{word-spacing:19.749600px;}
.ws37_c02399{word-spacing:19.807200px;}
.ws39_c02399{word-spacing:23.018400px;}
.ws38_c02399{word-spacing:23.040000px;}
.ws28_c02399{word-spacing:25.459200px;}
.ws29_c02399{word-spacing:25.603200px;}
.ws35_c02399{word-spacing:26.280000px;}
.ws34_c02399{word-spacing:26.337600px;}
.ws2a_c02399{word-spacing:31.665600px;}
.ws13_c02399{word-spacing:32.752800px;}
.ws14_c02399{word-spacing:32.796000px;}
._0_c02399{margin-left:-1.106784px;}
._1_c02399{width:1.034784px;}
.fc0_c02399{color:rgb(0,0,0);}
.fs0_c02399{font-size:65.880000px;}
.fs1_c02399{font-size:72.000000px;}
.y0_c02399{bottom:0.000000px;}
.y3_c02399{bottom:75.720882px;}
.y2_c02399{bottom:113.880225px;}
.y34_c02399{bottom:143.489937px;}
.y33_c02399{bottom:165.360450px;}
.y32_c02399{bottom:185.430450px;}
.y31_c02399{bottom:206.130450px;}
.y30_c02399{bottom:226.830450px;}
.y2f_c02399{bottom:247.530450px;}
.y2e_c02399{bottom:268.230450px;}
.y2d_c02399{bottom:288.930450px;}
.y2c_c02399{bottom:309.630450px;}
.y2b_c02399{bottom:330.330450px;}
.y2a_c02399{bottom:351.030450px;}
.y29_c02399{bottom:371.730450px;}
.y28_c02399{bottom:392.430450px;}
.y27_c02399{bottom:413.130450px;}
.y26_c02399{bottom:433.830450px;}
.y25_c02399{bottom:454.530450px;}
.y24_c02399{bottom:475.050450px;}
.y23_c02399{bottom:495.750450px;}
.y22_c02399{bottom:516.630450px;}
.y21_c02399{bottom:537.330450px;}
.y20_c02399{bottom:558.030450px;}
.y1f_c02399{bottom:578.730450px;}
.y1e_c02399{bottom:599.430450px;}
.y1d_c02399{bottom:620.130450px;}
.y1c_c02399{bottom:640.830450px;}
.y1b_c02399{bottom:661.440450px;}
.y1a_c02399{bottom:681.960450px;}
.y19_c02399{bottom:702.660450px;}
.y18_c02399{bottom:723.540450px;}
.y17_c02399{bottom:744.240450px;}
.y16_c02399{bottom:764.940450px;}
.y15_c02399{bottom:785.640450px;}
.y14_c02399{bottom:806.340450px;}
.y13_c02399{bottom:827.040450px;}
.y12_c02399{bottom:847.740450px;}
.y11_c02399{bottom:868.440450px;}
.y10_c02399{bottom:889.140450px;}
.yf_c02399{bottom:909.840450px;}
.ye_c02399{bottom:930.540450px;}
.yd_c02399{bottom:951.240450px;}
.yc_c02399{bottom:971.760450px;}
.yb_c02399{bottom:992.460450px;}
.ya_c02399{bottom:1013.340450px;}
.y9_c02399{bottom:1034.040450px;}
.y8_c02399{bottom:1054.740450px;}
.y7_c02399{bottom:1075.440450px;}
.y6_c02399{bottom:1096.140450px;}
.y5_c02399{bottom:1116.660450px;}
.y4_c02399{bottom:1140.690450px;}
.y1_c02399{bottom:1194.600450px;}
.h3_c02399{height:43.909277px;}
.h2_c02399{height:54.331699px;}
.h6_c02399{height:64.657617px;}
.h1_c02399{height:66.394687px;}
.h5_c02399{height:70.664062px;}
.h4_c02399{height:72.562500px;}
.h0_c02399{height:1263.000000px;}
.w1_c02399{width:892.500000px;}
.w0_c02399{width:892.830000px;}
.x0_c02399{left:0.000000px;}
.x1_c02399{left:127.620000px;}
.x2_c02399{left:438.120675px;}
@media print{
.v0_c02399{vertical-align:0.000000pt;}
.ls15_c02399{letter-spacing:-0.038400pt;}
.ls12_c02399{letter-spacing:-0.032000pt;}
.ls10_c02399{letter-spacing:-0.025600pt;}
.ls11_c02399{letter-spacing:-0.019200pt;}
.ls14_c02399{letter-spacing:-0.012800pt;}
.ls13_c02399{letter-spacing:-0.006400pt;}
.lsf_c02399{letter-spacing:0.000000pt;}
.ls6_c02399{letter-spacing:0.006400pt;}
.ls3_c02399{letter-spacing:0.012800pt;}
.lsb_c02399{letter-spacing:0.019200pt;}
.ls0_c02399{letter-spacing:0.023424pt;}
.lsc_c02399{letter-spacing:0.025600pt;}
.ls4_c02399{letter-spacing:0.032000pt;}
.ls5_c02399{letter-spacing:0.038400pt;}
.ls9_c02399{letter-spacing:0.044800pt;}
.ls1_c02399{letter-spacing:0.046848pt;}
.ls8_c02399{letter-spacing:0.051200pt;}
.ls7_c02399{letter-spacing:0.057600pt;}
.lsd_c02399{letter-spacing:0.064000pt;}
.lse_c02399{letter-spacing:0.070400pt;}
.lsa_c02399{letter-spacing:0.076800pt;}
.ls2_c02399{letter-spacing:0.081984pt;}
.ws1_c02399{word-spacing:-16.000000pt;}
.ws0_c02399{word-spacing:-0.140544pt;}
.ws7_c02399{word-spacing:-0.115200pt;}
.ws11_c02399{word-spacing:-0.102400pt;}
.ws18_c02399{word-spacing:-0.096000pt;}
.ws3d_c02399{word-spacing:-0.089600pt;}
.ws8_c02399{word-spacing:-0.083200pt;}
.ws17_c02399{word-spacing:-0.076800pt;}
.wsc_c02399{word-spacing:-0.064000pt;}
.wsa_c02399{word-spacing:-0.057600pt;}
.ws10_c02399{word-spacing:-0.051200pt;}
.ws6_c02399{word-spacing:-0.032000pt;}
.ws22_c02399{word-spacing:-0.025600pt;}
.ws3e_c02399{word-spacing:-0.019200pt;}
.ws5_c02399{word-spacing:-0.012800pt;}
.wsb_c02399{word-spacing:-0.006400pt;}
.ws4_c02399{word-spacing:0.000000pt;}
.ws30_c02399{word-spacing:0.006400pt;}
.ws27_c02399{word-spacing:0.012800pt;}
.ws12_c02399{word-spacing:0.019200pt;}
.ws3_c02399{word-spacing:0.035136pt;}
.ws2_c02399{word-spacing:0.058560pt;}
.ws24_c02399{word-spacing:0.633600pt;}
.ws23_c02399{word-spacing:0.665600pt;}
.ws3a_c02399{word-spacing:1.836800pt;}
.ws3b_c02399{word-spacing:1.875200pt;}
.ws3c_c02399{word-spacing:1.926400pt;}
.ws19_c02399{word-spacing:1.984000pt;}
.ws1a_c02399{word-spacing:2.163200pt;}
.ws1b_c02399{word-spacing:2.220800pt;}
.wsd_c02399{word-spacing:2.732800pt;}
.wse_c02399{word-spacing:2.764800pt;}
.wsf_c02399{word-spacing:2.905600pt;}
.ws1e_c02399{word-spacing:2.976000pt;}
.ws1f_c02399{word-spacing:3.206400pt;}
.ws20_c02399{word-spacing:4.684800pt;}
.ws26_c02399{word-spacing:4.704000pt;}
.ws25_c02399{word-spacing:4.787200pt;}
.ws21_c02399{word-spacing:4.825600pt;}
.ws33_c02399{word-spacing:9.497600pt;}
.ws31_c02399{word-spacing:9.529600pt;}
.ws32_c02399{word-spacing:9.555200pt;}
.ws2c_c02399{word-spacing:10.700800pt;}
.ws2b_c02399{word-spacing:10.854400pt;}
.ws2d_c02399{word-spacing:11.494400pt;}
.ws1c_c02399{word-spacing:13.094400pt;}
.ws1d_c02399{word-spacing:13.107200pt;}
.ws16_c02399{word-spacing:14.899200pt;}
.ws15_c02399{word-spacing:14.931200pt;}
.ws9_c02399{word-spacing:16.217600pt;}
.ws2f_c02399{word-spacing:17.267200pt;}
.ws2e_c02399{word-spacing:17.312000pt;}
.ws36_c02399{word-spacing:17.555200pt;}
.ws37_c02399{word-spacing:17.606400pt;}
.ws39_c02399{word-spacing:20.460800pt;}
.ws38_c02399{word-spacing:20.480000pt;}
.ws28_c02399{word-spacing:22.630400pt;}
.ws29_c02399{word-spacing:22.758400pt;}
.ws35_c02399{word-spacing:23.360000pt;}
.ws34_c02399{word-spacing:23.411200pt;}
.ws2a_c02399{word-spacing:28.147200pt;}
.ws13_c02399{word-spacing:29.113600pt;}
.ws14_c02399{word-spacing:29.152000pt;}
._0_c02399{margin-left:-0.983808pt;}
._1_c02399{width:0.919808pt;}
.fs0_c02399{font-size:58.560000pt;}
.fs1_c02399{font-size:64.000000pt;}
.y0_c02399{bottom:0.000000pt;}
.y3_c02399{bottom:67.307451pt;}
.y2_c02399{bottom:101.226867pt;}
.y34_c02399{bottom:127.546611pt;}
.y33_c02399{bottom:146.987067pt;}
.y32_c02399{bottom:164.827067pt;}
.y31_c02399{bottom:183.227067pt;}
.y30_c02399{bottom:201.627067pt;}
.y2f_c02399{bottom:220.027067pt;}
.y2e_c02399{bottom:238.427067pt;}
.y2d_c02399{bottom:256.827067pt;}
.y2c_c02399{bottom:275.227067pt;}
.y2b_c02399{bottom:293.627067pt;}
.y2a_c02399{bottom:312.027067pt;}
.y29_c02399{bottom:330.427067pt;}
.y28_c02399{bottom:348.827067pt;}
.y27_c02399{bottom:367.227067pt;}
.y26_c02399{bottom:385.627067pt;}
.y25_c02399{bottom:404.027067pt;}
.y24_c02399{bottom:422.267067pt;}
.y23_c02399{bottom:440.667067pt;}
.y22_c02399{bottom:459.227067pt;}
.y21_c02399{bottom:477.627067pt;}
.y20_c02399{bottom:496.027067pt;}
.y1f_c02399{bottom:514.427067pt;}
.y1e_c02399{bottom:532.827067pt;}
.y1d_c02399{bottom:551.227067pt;}
.y1c_c02399{bottom:569.627067pt;}
.y1b_c02399{bottom:587.947067pt;}
.y1a_c02399{bottom:606.187067pt;}
.y19_c02399{bottom:624.587067pt;}
.y18_c02399{bottom:643.147067pt;}
.y17_c02399{bottom:661.547067pt;}
.y16_c02399{bottom:679.947067pt;}
.y15_c02399{bottom:698.347067pt;}
.y14_c02399{bottom:716.747067pt;}
.y13_c02399{bottom:735.147067pt;}
.y12_c02399{bottom:753.547067pt;}
.y11_c02399{bottom:771.947067pt;}
.y10_c02399{bottom:790.347067pt;}
.yf_c02399{bottom:808.747067pt;}
.ye_c02399{bottom:827.147067pt;}
.yd_c02399{bottom:845.547067pt;}
.yc_c02399{bottom:863.787067pt;}
.yb_c02399{bottom:882.187067pt;}
.ya_c02399{bottom:900.747067pt;}
.y9_c02399{bottom:919.147067pt;}
.y8_c02399{bottom:937.547067pt;}
.y7_c02399{bottom:955.947067pt;}
.y6_c02399{bottom:974.347067pt;}
.y5_c02399{bottom:992.587067pt;}
.y4_c02399{bottom:1013.947067pt;}
.y1_c02399{bottom:1061.867067pt;}
.h3_c02399{height:39.030469pt;}
.h2_c02399{height:48.294844pt;}
.h6_c02399{height:57.473437pt;}
.h1_c02399{height:59.017500pt;}
.h5_c02399{height:62.812500pt;}
.h4_c02399{height:64.500000pt;}
.h0_c02399{height:1122.666667pt;}
.w1_c02399{width:793.333333pt;}
.w0_c02399{width:793.626667pt;}
.x0_c02399{left:0.000000pt;}
.x1_c02399{left:113.440000pt;}
.x2_c02399{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fa7fe1a1d78be72c3432009.woff2')format("woff");}.ff1_c02400{font-family:ff1_c02400;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02400;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02400{font-family:ff2_c02400;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02400;src:url('chunks/assets/font_ea3dc8613b3cbe82c5eec2e4.woff2')format("woff");}.ff3_c02400{font-family:ff3_c02400;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02400;src:url('chunks/assets/font_690525da37241dc437bc874b.woff2')format("woff");}.ff4_c02400{font-family:ff4_c02400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19_c02400{letter-spacing:-0.158400px;}
.ls13_c02400{letter-spacing:-0.072000px;}
.ls16_c02400{letter-spacing:-0.050400px;}
.ls17_c02400{letter-spacing:-0.036000px;}
.ls18_c02400{letter-spacing:-0.028800px;}
.ls14_c02400{letter-spacing:-0.021600px;}
.ls15_c02400{letter-spacing:-0.014400px;}
.ls11_c02400{letter-spacing:0.000000px;}
.ls6_c02400{letter-spacing:0.007200px;}
.ls8_c02400{letter-spacing:0.014400px;}
.ls5_c02400{letter-spacing:0.021600px;}
.ls0_c02400{letter-spacing:0.026352px;}
.lsc_c02400{letter-spacing:0.028800px;}
.ls7_c02400{letter-spacing:0.036000px;}
.ls4_c02400{letter-spacing:0.043200px;}
.ls9_c02400{letter-spacing:0.050400px;}
.ls1_c02400{letter-spacing:0.052704px;}
.lsd_c02400{letter-spacing:0.057600px;}
.ls10_c02400{letter-spacing:0.064800px;}
.ls2_c02400{letter-spacing:0.065880px;}
.lsa_c02400{letter-spacing:0.072000px;}
.ls3_c02400{letter-spacing:0.079056px;}
.lsf_c02400{letter-spacing:0.079200px;}
.ls12_c02400{letter-spacing:0.092232px;}
.lsb_c02400{letter-spacing:0.093600px;}
.lse_c02400{letter-spacing:0.100800px;}
.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;}
}
.ws1_c02400{word-spacing:-17.841600px;}
.ws19_c02400{word-spacing:-0.288000px;}
.ws13_c02400{word-spacing:-0.252000px;}
.ws3f_c02400{word-spacing:-0.244800px;}
.ws47_c02400{word-spacing:-0.187200px;}
.ws2d_c02400{word-spacing:-0.172800px;}
.ws0_c02400{word-spacing:-0.158112px;}
.ws1d_c02400{word-spacing:-0.144000px;}
.ws42_c02400{word-spacing:-0.136800px;}
.ws40_c02400{word-spacing:-0.129600px;}
.ws33_c02400{word-spacing:-0.115200px;}
.ws21_c02400{word-spacing:-0.100800px;}
.ws41_c02400{word-spacing:-0.093600px;}
.ws1c_c02400{word-spacing:-0.079200px;}
.wsa_c02400{word-spacing:-0.057600px;}
.ws2e_c02400{word-spacing:-0.050400px;}
.ws2c_c02400{word-spacing:-0.036000px;}
.ws18_c02400{word-spacing:-0.021600px;}
.ws22_c02400{word-spacing:-0.007200px;}
.ws4_c02400{word-spacing:0.000000px;}
.ws6_c02400{word-spacing:0.013176px;}
.ws1a_c02400{word-spacing:0.014400px;}
.ws5_c02400{word-spacing:0.026352px;}
.ws3_c02400{word-spacing:0.039528px;}
.ws2_c02400{word-spacing:0.065880px;}
.ws1e_c02400{word-spacing:0.230400px;}
.ws46_c02400{word-spacing:0.410400px;}
.ws7_c02400{word-spacing:0.432000px;}
.wsf_c02400{word-spacing:2.037600px;}
.wse_c02400{word-spacing:2.145600px;}
.ws17_c02400{word-spacing:3.420000px;}
.ws3d_c02400{word-spacing:3.880800px;}
.ws3e_c02400{word-spacing:3.952800px;}
.ws26_c02400{word-spacing:4.132800px;}
.wsd_c02400{word-spacing:4.219200px;}
.wsb_c02400{word-spacing:4.240800px;}
.wsc_c02400{word-spacing:4.284000px;}
.ws8_c02400{word-spacing:5.623200px;}
.ws9_c02400{word-spacing:5.738400px;}
.ws36_c02400{word-spacing:6.076800px;}
.ws37_c02400{word-spacing:6.098400px;}
.ws12_c02400{word-spacing:6.364800px;}
.ws10_c02400{word-spacing:6.393600px;}
.ws11_c02400{word-spacing:6.501600px;}
.ws28_c02400{word-spacing:7.394400px;}
.ws29_c02400{word-spacing:7.560000px;}
.ws38_c02400{word-spacing:12.492000px;}
.ws39_c02400{word-spacing:12.578400px;}
.ws3a_c02400{word-spacing:12.614400px;}
.ws1f_c02400{word-spacing:14.299200px;}
.ws20_c02400{word-spacing:14.342400px;}
.ws44_c02400{word-spacing:16.891200px;}
.ws43_c02400{word-spacing:16.912800px;}
.ws45_c02400{word-spacing:16.948800px;}
.ws35_c02400{word-spacing:19.699200px;}
.ws34_c02400{word-spacing:19.764000px;}
.ws1b_c02400{word-spacing:22.996800px;}
.ws27_c02400{word-spacing:23.364000px;}
.ws16_c02400{word-spacing:25.106400px;}
.ws15_c02400{word-spacing:25.164000px;}
.ws14_c02400{word-spacing:25.200000px;}
.ws32_c02400{word-spacing:29.815200px;}
.ws2f_c02400{word-spacing:30.204000px;}
.ws31_c02400{word-spacing:30.211200px;}
.ws30_c02400{word-spacing:30.225600px;}
.ws25_c02400{word-spacing:30.816000px;}
.ws24_c02400{word-spacing:30.852000px;}
.ws23_c02400{word-spacing:30.859200px;}
.ws3c_c02400{word-spacing:31.060800px;}
.ws3b_c02400{word-spacing:31.104000px;}
.ws2b_c02400{word-spacing:38.340000px;}
.ws2a_c02400{word-spacing:38.534400px;}
._0_c02400{margin-left:-1.007964px;}
._1_c02400{width:1.468800px;}
.fc0_c02400{color:rgb(0,0,0);}
.fs0_c02400{font-size:65.880000px;}
.fs1_c02400{font-size:72.000000px;}
.y0_c02400{bottom:0.000000px;}
.y3_c02400{bottom:75.720882px;}
.y2_c02400{bottom:113.880225px;}
.y34_c02400{bottom:141.780450px;}
.y33_c02400{bottom:162.480450px;}
.y32_c02400{bottom:183.000450px;}
.y31_c02400{bottom:203.700600px;}
.y30_c02400{bottom:224.580450px;}
.y2f_c02400{bottom:245.280600px;}
.y2e_c02400{bottom:265.980450px;}
.y2d_c02400{bottom:286.680450px;}
.y2c_c02400{bottom:307.380450px;}
.y2b_c02400{bottom:328.080450px;}
.y2a_c02400{bottom:348.780450px;}
.y29_c02400{bottom:369.480450px;}
.y28_c02400{bottom:390.180600px;}
.y27_c02400{bottom:410.880450px;}
.y26_c02400{bottom:431.580450px;}
.y25_c02400{bottom:452.280600px;}
.y24_c02400{bottom:472.980450px;}
.y23_c02400{bottom:493.680600px;}
.y22_c02400{bottom:514.380450px;}
.y21_c02400{bottom:535.080450px;}
.y20_c02400{bottom:555.780450px;}
.y1f_c02400{bottom:576.300450px;}
.y1e_c02400{bottom:597.000450px;}
.y1d_c02400{bottom:617.880450px;}
.y1c_c02400{bottom:638.580450px;}
.y1b_c02400{bottom:659.280450px;}
.y1a_c02400{bottom:679.980450px;}
.y19_c02400{bottom:700.680450px;}
.y18_c02400{bottom:721.380450px;}
.y17_c02400{bottom:741.990450px;}
.y16_c02400{bottom:762.690450px;}
.y15_c02400{bottom:783.390450px;}
.y14_c02400{bottom:803.910450px;}
.y13_c02400{bottom:824.610600px;}
.y12_c02400{bottom:845.490450px;}
.y11_c02400{bottom:866.190450px;}
.y10_c02400{bottom:886.890450px;}
.yf_c02400{bottom:907.590450px;}
.ye_c02400{bottom:928.290600px;}
.yd_c02400{bottom:948.990450px;}
.yc_c02400{bottom:969.690450px;}
.yb_c02400{bottom:990.390450px;}
.ya_c02400{bottom:1011.090450px;}
.y9_c02400{bottom:1031.790450px;}
.y8_c02400{bottom:1052.490450px;}
.y7_c02400{bottom:1073.010450px;}
.y6_c02400{bottom:1097.040450px;}
.y5_c02400{bottom:1119.721242px;}
.y4_c02400{bottom:1141.410585px;}
.y1_c02400{bottom:1194.600450px;}
.h3_c02400{height:43.909277px;}
.h2_c02400{height:54.331699px;}
.h4_c02400{height:64.657617px;}
.h1_c02400{height:66.394687px;}
.h6_c02400{height:70.664062px;}
.h5_c02400{height:72.562500px;}
.h0_c02400{height:1263.000000px;}
.w1_c02400{width:892.500000px;}
.w0_c02400{width:892.830000px;}
.x0_c02400{left:0.000000px;}
.x1_c02400{left:127.620000px;}
.x2_c02400{left:438.120675px;}
@media print{
.v0_c02400{vertical-align:0.000000pt;}
.ls19_c02400{letter-spacing:-0.140800pt;}
.ls13_c02400{letter-spacing:-0.064000pt;}
.ls16_c02400{letter-spacing:-0.044800pt;}
.ls17_c02400{letter-spacing:-0.032000pt;}
.ls18_c02400{letter-spacing:-0.025600pt;}
.ls14_c02400{letter-spacing:-0.019200pt;}
.ls15_c02400{letter-spacing:-0.012800pt;}
.ls11_c02400{letter-spacing:0.000000pt;}
.ls6_c02400{letter-spacing:0.006400pt;}
.ls8_c02400{letter-spacing:0.012800pt;}
.ls5_c02400{letter-spacing:0.019200pt;}
.ls0_c02400{letter-spacing:0.023424pt;}
.lsc_c02400{letter-spacing:0.025600pt;}
.ls7_c02400{letter-spacing:0.032000pt;}
.ls4_c02400{letter-spacing:0.038400pt;}
.ls9_c02400{letter-spacing:0.044800pt;}
.ls1_c02400{letter-spacing:0.046848pt;}
.lsd_c02400{letter-spacing:0.051200pt;}
.ls10_c02400{letter-spacing:0.057600pt;}
.ls2_c02400{letter-spacing:0.058560pt;}
.lsa_c02400{letter-spacing:0.064000pt;}
.ls3_c02400{letter-spacing:0.070272pt;}
.lsf_c02400{letter-spacing:0.070400pt;}
.ls12_c02400{letter-spacing:0.081984pt;}
.lsb_c02400{letter-spacing:0.083200pt;}
.lse_c02400{letter-spacing:0.089600pt;}
.ws1_c02400{word-spacing:-15.859200pt;}
.ws19_c02400{word-spacing:-0.256000pt;}
.ws13_c02400{word-spacing:-0.224000pt;}
.ws3f_c02400{word-spacing:-0.217600pt;}
.ws47_c02400{word-spacing:-0.166400pt;}
.ws2d_c02400{word-spacing:-0.153600pt;}
.ws0_c02400{word-spacing:-0.140544pt;}
.ws1d_c02400{word-spacing:-0.128000pt;}
.ws42_c02400{word-spacing:-0.121600pt;}
.ws40_c02400{word-spacing:-0.115200pt;}
.ws33_c02400{word-spacing:-0.102400pt;}
.ws21_c02400{word-spacing:-0.089600pt;}
.ws41_c02400{word-spacing:-0.083200pt;}
.ws1c_c02400{word-spacing:-0.070400pt;}
.wsa_c02400{word-spacing:-0.051200pt;}
.ws2e_c02400{word-spacing:-0.044800pt;}
.ws2c_c02400{word-spacing:-0.032000pt;}
.ws18_c02400{word-spacing:-0.019200pt;}
.ws22_c02400{word-spacing:-0.006400pt;}
.ws4_c02400{word-spacing:0.000000pt;}
.ws6_c02400{word-spacing:0.011712pt;}
.ws1a_c02400{word-spacing:0.012800pt;}
.ws5_c02400{word-spacing:0.023424pt;}
.ws3_c02400{word-spacing:0.035136pt;}
.ws2_c02400{word-spacing:0.058560pt;}
.ws1e_c02400{word-spacing:0.204800pt;}
.ws46_c02400{word-spacing:0.364800pt;}
.ws7_c02400{word-spacing:0.384000pt;}
.wsf_c02400{word-spacing:1.811200pt;}
.wse_c02400{word-spacing:1.907200pt;}
.ws17_c02400{word-spacing:3.040000pt;}
.ws3d_c02400{word-spacing:3.449600pt;}
.ws3e_c02400{word-spacing:3.513600pt;}
.ws26_c02400{word-spacing:3.673600pt;}
.wsd_c02400{word-spacing:3.750400pt;}
.wsb_c02400{word-spacing:3.769600pt;}
.wsc_c02400{word-spacing:3.808000pt;}
.ws8_c02400{word-spacing:4.998400pt;}
.ws9_c02400{word-spacing:5.100800pt;}
.ws36_c02400{word-spacing:5.401600pt;}
.ws37_c02400{word-spacing:5.420800pt;}
.ws12_c02400{word-spacing:5.657600pt;}
.ws10_c02400{word-spacing:5.683200pt;}
.ws11_c02400{word-spacing:5.779200pt;}
.ws28_c02400{word-spacing:6.572800pt;}
.ws29_c02400{word-spacing:6.720000pt;}
.ws38_c02400{word-spacing:11.104000pt;}
.ws39_c02400{word-spacing:11.180800pt;}
.ws3a_c02400{word-spacing:11.212800pt;}
.ws1f_c02400{word-spacing:12.710400pt;}
.ws20_c02400{word-spacing:12.748800pt;}
.ws44_c02400{word-spacing:15.014400pt;}
.ws43_c02400{word-spacing:15.033600pt;}
.ws45_c02400{word-spacing:15.065600pt;}
.ws35_c02400{word-spacing:17.510400pt;}
.ws34_c02400{word-spacing:17.568000pt;}
.ws1b_c02400{word-spacing:20.441600pt;}
.ws27_c02400{word-spacing:20.768000pt;}
.ws16_c02400{word-spacing:22.316800pt;}
.ws15_c02400{word-spacing:22.368000pt;}
.ws14_c02400{word-spacing:22.400000pt;}
.ws32_c02400{word-spacing:26.502400pt;}
.ws2f_c02400{word-spacing:26.848000pt;}
.ws31_c02400{word-spacing:26.854400pt;}
.ws30_c02400{word-spacing:26.867200pt;}
.ws25_c02400{word-spacing:27.392000pt;}
.ws24_c02400{word-spacing:27.424000pt;}
.ws23_c02400{word-spacing:27.430400pt;}
.ws3c_c02400{word-spacing:27.609600pt;}
.ws3b_c02400{word-spacing:27.648000pt;}
.ws2b_c02400{word-spacing:34.080000pt;}
.ws2a_c02400{word-spacing:34.252800pt;}
._0_c02400{margin-left:-0.895968pt;}
._1_c02400{width:1.305600pt;}
.fs0_c02400{font-size:58.560000pt;}
.fs1_c02400{font-size:64.000000pt;}
.y0_c02400{bottom:0.000000pt;}
.y3_c02400{bottom:67.307451pt;}
.y2_c02400{bottom:101.226867pt;}
.y34_c02400{bottom:126.027067pt;}
.y33_c02400{bottom:144.427067pt;}
.y32_c02400{bottom:162.667067pt;}
.y31_c02400{bottom:181.067200pt;}
.y30_c02400{bottom:199.627067pt;}
.y2f_c02400{bottom:218.027200pt;}
.y2e_c02400{bottom:236.427067pt;}
.y2d_c02400{bottom:254.827067pt;}
.y2c_c02400{bottom:273.227067pt;}
.y2b_c02400{bottom:291.627067pt;}
.y2a_c02400{bottom:310.027067pt;}
.y29_c02400{bottom:328.427067pt;}
.y28_c02400{bottom:346.827200pt;}
.y27_c02400{bottom:365.227067pt;}
.y26_c02400{bottom:383.627067pt;}
.y25_c02400{bottom:402.027200pt;}
.y24_c02400{bottom:420.427067pt;}
.y23_c02400{bottom:438.827200pt;}
.y22_c02400{bottom:457.227067pt;}
.y21_c02400{bottom:475.627067pt;}
.y20_c02400{bottom:494.027067pt;}
.y1f_c02400{bottom:512.267067pt;}
.y1e_c02400{bottom:530.667067pt;}
.y1d_c02400{bottom:549.227067pt;}
.y1c_c02400{bottom:567.627067pt;}
.y1b_c02400{bottom:586.027067pt;}
.y1a_c02400{bottom:604.427067pt;}
.y19_c02400{bottom:622.827067pt;}
.y18_c02400{bottom:641.227067pt;}
.y17_c02400{bottom:659.547067pt;}
.y16_c02400{bottom:677.947067pt;}
.y15_c02400{bottom:696.347067pt;}
.y14_c02400{bottom:714.587067pt;}
.y13_c02400{bottom:732.987200pt;}
.y12_c02400{bottom:751.547067pt;}
.y11_c02400{bottom:769.947067pt;}
.y10_c02400{bottom:788.347067pt;}
.yf_c02400{bottom:806.747067pt;}
.ye_c02400{bottom:825.147200pt;}
.yd_c02400{bottom:843.547067pt;}
.yc_c02400{bottom:861.947067pt;}
.yb_c02400{bottom:880.347067pt;}
.ya_c02400{bottom:898.747067pt;}
.y9_c02400{bottom:917.147067pt;}
.y8_c02400{bottom:935.547067pt;}
.y7_c02400{bottom:953.787067pt;}
.y6_c02400{bottom:975.147067pt;}
.y5_c02400{bottom:995.307771pt;}
.y4_c02400{bottom:1014.587187pt;}
.y1_c02400{bottom:1061.867067pt;}
.h3_c02400{height:39.030469pt;}
.h2_c02400{height:48.294844pt;}
.h4_c02400{height:57.473437pt;}
.h1_c02400{height:59.017500pt;}
.h6_c02400{height:62.812500pt;}
.h5_c02400{height:64.500000pt;}
.h0_c02400{height:1122.666667pt;}
.w1_c02400{width:793.333333pt;}
.w0_c02400{width:793.626667pt;}
.x0_c02400{left:0.000000pt;}
.x1_c02400{left:113.440000pt;}
.x2_c02400{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19f6ffc53e7ea269709387db.woff2')format("woff");}.ff1_c02401{font-family:ff1_c02401;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02401{font-family:ff2_c02401;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02401;src:url('chunks/assets/font_ea3dc8613b3cbe82c5eec2e4.woff2')format("woff");}.ff3_c02401{font-family:ff3_c02401;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02401;src:url('chunks/assets/font_782e2652a7c39f08fe12ad30.woff2')format("woff");}.ff4_c02401{font-family:ff4_c02401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c02401{letter-spacing:-0.338400px;}
.lsf_c02401{letter-spacing:-0.158400px;}
.ls14_c02401{letter-spacing:-0.057600px;}
.ls10_c02401{letter-spacing:-0.043200px;}
.ls13_c02401{letter-spacing:-0.028800px;}
.ls12_c02401{letter-spacing:-0.014400px;}
.ls11_c02401{letter-spacing:-0.007200px;}
.lsc_c02401{letter-spacing:0.000000px;}
.ls3_c02401{letter-spacing:0.007200px;}
.ls4_c02401{letter-spacing:0.014400px;}
.ls5_c02401{letter-spacing:0.021600px;}
.ls0_c02401{letter-spacing:0.026352px;}
.lsb_c02401{letter-spacing:0.028800px;}
.ls9_c02401{letter-spacing:0.036000px;}
.lsa_c02401{letter-spacing:0.043200px;}
.ls6_c02401{letter-spacing:0.050400px;}
.ls1_c02401{letter-spacing:0.052704px;}
.ls7_c02401{letter-spacing:0.057600px;}
.ls2_c02401{letter-spacing:0.072000px;}
.lsd_c02401{letter-spacing:0.092232px;}
.ls8_c02401{letter-spacing:0.100800px;}
.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;}
}
.ws4_c02401{word-spacing:-0.158400px;}
.ws0_c02401{word-spacing:-0.158112px;}
.ws1f_c02401{word-spacing:-0.144000px;}
.ws20_c02401{word-spacing:-0.079200px;}
.ws7_c02401{word-spacing:-0.021600px;}
.ws6_c02401{word-spacing:-0.014400px;}
.ws5_c02401{word-spacing:-0.007200px;}
.ws3_c02401{word-spacing:0.000000px;}
.ws2_c02401{word-spacing:0.039528px;}
.ws1_c02401{word-spacing:0.065880px;}
.ws1d_c02401{word-spacing:0.316800px;}
.ws13_c02401{word-spacing:0.619200px;}
.ws1c_c02401{word-spacing:0.669600px;}
.ws1e_c02401{word-spacing:0.676800px;}
.wsb_c02401{word-spacing:0.957600px;}
.wsa_c02401{word-spacing:1.036800px;}
.wsf_c02401{word-spacing:3.830400px;}
.wse_c02401{word-spacing:3.938400px;}
.ws9_c02401{word-spacing:7.077600px;}
.ws8_c02401{word-spacing:7.178400px;}
.ws1a_c02401{word-spacing:9.993600px;}
.ws19_c02401{word-spacing:10.000800px;}
.ws1b_c02401{word-spacing:10.065600px;}
.wsd_c02401{word-spacing:14.594400px;}
.wsc_c02401{word-spacing:14.738400px;}
.ws14_c02401{word-spacing:21.571200px;}
.ws15_c02401{word-spacing:21.592800px;}
.ws16_c02401{word-spacing:31.543200px;}
.ws18_c02401{word-spacing:31.644000px;}
.ws17_c02401{word-spacing:31.708800px;}
.ws10_c02401{word-spacing:33.408000px;}
.ws12_c02401{word-spacing:33.487200px;}
.ws11_c02401{word-spacing:33.523200px;}
._0_c02401{margin-left:-1.159200px;}
.fc0_c02401{color:rgb(0,0,0);}
.fs0_c02401{font-size:65.880000px;}
.fs1_c02401{font-size:72.000000px;}
.y0_c02401{bottom:0.000000px;}
.y3_c02401{bottom:75.720882px;}
.y2_c02401{bottom:113.880225px;}
.y33_c02401{bottom:139.166328px;}
.y32_c02401{bottom:160.946256px;}
.y31_c02401{bottom:182.816769px;}
.y30_c02401{bottom:204.596697px;}
.y2f_c02401{bottom:226.467210px;}
.y2e_c02401{bottom:248.247138px;}
.y2d_c02401{bottom:270.117651px;}
.y2c_c02401{bottom:291.897579px;}
.y2b_c02401{bottom:313.677507px;}
.y2a_c02401{bottom:335.548020px;}
.y29_c02401{bottom:357.327948px;}
.y28_c02401{bottom:379.198461px;}
.y27_c02401{bottom:400.978389px;}
.y26_c02401{bottom:422.848902px;}
.y25_c02401{bottom:444.628830px;}
.y24_c02401{bottom:466.499343px;}
.y23_c02401{bottom:488.279271px;}
.y22_c02401{bottom:510.059199px;}
.y21_c02401{bottom:531.929712px;}
.y20_c02401{bottom:553.709640px;}
.y1f_c02401{bottom:575.580153px;}
.y1e_c02401{bottom:597.360081px;}
.y1d_c02401{bottom:619.230594px;}
.y1c_c02401{bottom:641.010522px;}
.y1b_c02401{bottom:662.790450px;}
.y1a_c02401{bottom:685.380450px;}
.y19_c02401{bottom:704.730450px;}
.y18_c02401{bottom:725.430450px;}
.y17_c02401{bottom:746.130450px;}
.y16_c02401{bottom:766.830450px;}
.y15_c02401{bottom:787.530450px;}
.y14_c02401{bottom:808.230450px;}
.y13_c02401{bottom:828.930600px;}
.y12_c02401{bottom:849.630450px;}
.y11_c02401{bottom:870.330450px;}
.y10_c02401{bottom:891.030450px;}
.yf_c02401{bottom:911.550450px;}
.ye_c02401{bottom:932.430450px;}
.yd_c02401{bottom:953.130450px;}
.yc_c02401{bottom:973.830450px;}
.yb_c02401{bottom:994.530450px;}
.ya_c02401{bottom:1015.230450px;}
.y9_c02401{bottom:1035.930450px;}
.y8_c02401{bottom:1056.450450px;}
.y7_c02401{bottom:1077.150450px;}
.y6_c02401{bottom:1098.030450px;}
.y5_c02401{bottom:1118.730450px;}
.y4_c02401{bottom:1139.430450px;}
.y1_c02401{bottom:1194.600450px;}
.h3_c02401{height:43.909277px;}
.h2_c02401{height:54.331699px;}
.h6_c02401{height:64.657617px;}
.h1_c02401{height:66.394687px;}
.h5_c02401{height:70.664062px;}
.h4_c02401{height:72.562500px;}
.h0_c02401{height:1263.000000px;}
.w1_c02401{width:892.500000px;}
.w0_c02401{width:892.830000px;}
.x0_c02401{left:0.000000px;}
.x1_c02401{left:127.620000px;}
.x2_c02401{left:438.120675px;}
@media print{
.v0_c02401{vertical-align:0.000000pt;}
.lse_c02401{letter-spacing:-0.300800pt;}
.lsf_c02401{letter-spacing:-0.140800pt;}
.ls14_c02401{letter-spacing:-0.051200pt;}
.ls10_c02401{letter-spacing:-0.038400pt;}
.ls13_c02401{letter-spacing:-0.025600pt;}
.ls12_c02401{letter-spacing:-0.012800pt;}
.ls11_c02401{letter-spacing:-0.006400pt;}
.lsc_c02401{letter-spacing:0.000000pt;}
.ls3_c02401{letter-spacing:0.006400pt;}
.ls4_c02401{letter-spacing:0.012800pt;}
.ls5_c02401{letter-spacing:0.019200pt;}
.ls0_c02401{letter-spacing:0.023424pt;}
.lsb_c02401{letter-spacing:0.025600pt;}
.ls9_c02401{letter-spacing:0.032000pt;}
.lsa_c02401{letter-spacing:0.038400pt;}
.ls6_c02401{letter-spacing:0.044800pt;}
.ls1_c02401{letter-spacing:0.046848pt;}
.ls7_c02401{letter-spacing:0.051200pt;}
.ls2_c02401{letter-spacing:0.064000pt;}
.lsd_c02401{letter-spacing:0.081984pt;}
.ls8_c02401{letter-spacing:0.089600pt;}
.ws4_c02401{word-spacing:-0.140800pt;}
.ws0_c02401{word-spacing:-0.140544pt;}
.ws1f_c02401{word-spacing:-0.128000pt;}
.ws20_c02401{word-spacing:-0.070400pt;}
.ws7_c02401{word-spacing:-0.019200pt;}
.ws6_c02401{word-spacing:-0.012800pt;}
.ws5_c02401{word-spacing:-0.006400pt;}
.ws3_c02401{word-spacing:0.000000pt;}
.ws2_c02401{word-spacing:0.035136pt;}
.ws1_c02401{word-spacing:0.058560pt;}
.ws1d_c02401{word-spacing:0.281600pt;}
.ws13_c02401{word-spacing:0.550400pt;}
.ws1c_c02401{word-spacing:0.595200pt;}
.ws1e_c02401{word-spacing:0.601600pt;}
.wsb_c02401{word-spacing:0.851200pt;}
.wsa_c02401{word-spacing:0.921600pt;}
.wsf_c02401{word-spacing:3.404800pt;}
.wse_c02401{word-spacing:3.500800pt;}
.ws9_c02401{word-spacing:6.291200pt;}
.ws8_c02401{word-spacing:6.380800pt;}
.ws1a_c02401{word-spacing:8.883200pt;}
.ws19_c02401{word-spacing:8.889600pt;}
.ws1b_c02401{word-spacing:8.947200pt;}
.wsd_c02401{word-spacing:12.972800pt;}
.wsc_c02401{word-spacing:13.100800pt;}
.ws14_c02401{word-spacing:19.174400pt;}
.ws15_c02401{word-spacing:19.193600pt;}
.ws16_c02401{word-spacing:28.038400pt;}
.ws18_c02401{word-spacing:28.128000pt;}
.ws17_c02401{word-spacing:28.185600pt;}
.ws10_c02401{word-spacing:29.696000pt;}
.ws12_c02401{word-spacing:29.766400pt;}
.ws11_c02401{word-spacing:29.798400pt;}
._0_c02401{margin-left:-1.030400pt;}
.fs0_c02401{font-size:58.560000pt;}
.fs1_c02401{font-size:64.000000pt;}
.y0_c02401{bottom:0.000000pt;}
.y3_c02401{bottom:67.307451pt;}
.y2_c02401{bottom:101.226867pt;}
.y33_c02401{bottom:123.703403pt;}
.y32_c02401{bottom:143.063339pt;}
.y31_c02401{bottom:162.503795pt;}
.y30_c02401{bottom:181.863731pt;}
.y2f_c02401{bottom:201.304187pt;}
.y2e_c02401{bottom:220.664123pt;}
.y2d_c02401{bottom:240.104579pt;}
.y2c_c02401{bottom:259.464515pt;}
.y2b_c02401{bottom:278.824451pt;}
.y2a_c02401{bottom:298.264907pt;}
.y29_c02401{bottom:317.624843pt;}
.y28_c02401{bottom:337.065299pt;}
.y27_c02401{bottom:356.425235pt;}
.y26_c02401{bottom:375.865691pt;}
.y25_c02401{bottom:395.225627pt;}
.y24_c02401{bottom:414.666083pt;}
.y23_c02401{bottom:434.026019pt;}
.y22_c02401{bottom:453.385955pt;}
.y21_c02401{bottom:472.826411pt;}
.y20_c02401{bottom:492.186347pt;}
.y1f_c02401{bottom:511.626803pt;}
.y1e_c02401{bottom:530.986739pt;}
.y1d_c02401{bottom:550.427195pt;}
.y1c_c02401{bottom:569.787131pt;}
.y1b_c02401{bottom:589.147067pt;}
.y1a_c02401{bottom:609.227067pt;}
.y19_c02401{bottom:626.427067pt;}
.y18_c02401{bottom:644.827067pt;}
.y17_c02401{bottom:663.227067pt;}
.y16_c02401{bottom:681.627067pt;}
.y15_c02401{bottom:700.027067pt;}
.y14_c02401{bottom:718.427067pt;}
.y13_c02401{bottom:736.827200pt;}
.y12_c02401{bottom:755.227067pt;}
.y11_c02401{bottom:773.627067pt;}
.y10_c02401{bottom:792.027067pt;}
.yf_c02401{bottom:810.267067pt;}
.ye_c02401{bottom:828.827067pt;}
.yd_c02401{bottom:847.227067pt;}
.yc_c02401{bottom:865.627067pt;}
.yb_c02401{bottom:884.027067pt;}
.ya_c02401{bottom:902.427067pt;}
.y9_c02401{bottom:920.827067pt;}
.y8_c02401{bottom:939.067067pt;}
.y7_c02401{bottom:957.467067pt;}
.y6_c02401{bottom:976.027067pt;}
.y5_c02401{bottom:994.427067pt;}
.y4_c02401{bottom:1012.827067pt;}
.y1_c02401{bottom:1061.867067pt;}
.h3_c02401{height:39.030469pt;}
.h2_c02401{height:48.294844pt;}
.h6_c02401{height:57.473437pt;}
.h1_c02401{height:59.017500pt;}
.h5_c02401{height:62.812500pt;}
.h4_c02401{height:64.500000pt;}
.h0_c02401{height:1122.666667pt;}
.w1_c02401{width:793.333333pt;}
.w0_c02401{width:793.626667pt;}
.x0_c02401{left:0.000000pt;}
.x1_c02401{left:113.440000pt;}
.x2_c02401{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00f5244d78508909dfa99b6c.woff2')format("woff");}.ff1_c02402{font-family:ff1_c02402;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02402;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02402{font-family:ff2_c02402;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02402;src:url('chunks/assets/font_1fa3fa612d06c8e523d52903.woff2')format("woff");}.ff3_c02402{font-family:ff3_c02402;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02402;src:url('chunks/assets/font_7455187947b55fddce2adcd9.woff2')format("woff");}.ff4_c02402{font-family:ff4_c02402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19_c02402{letter-spacing:-0.086400px;}
.ls1b_c02402{letter-spacing:-0.043200px;}
.ls1c_c02402{letter-spacing:-0.036000px;}
.ls1a_c02402{letter-spacing:-0.021600px;}
.ls17_c02402{letter-spacing:-0.014400px;}
.ls18_c02402{letter-spacing:-0.007200px;}
.ls15_c02402{letter-spacing:0.000000px;}
.ls11_c02402{letter-spacing:0.006588px;}
.lsb_c02402{letter-spacing:0.007200px;}
.ls8_c02402{letter-spacing:0.014400px;}
.ls9_c02402{letter-spacing:0.021600px;}
.ls0_c02402{letter-spacing:0.026352px;}
.ls3_c02402{letter-spacing:0.028800px;}
.ls10_c02402{letter-spacing:0.032940px;}
.ls7_c02402{letter-spacing:0.036000px;}
.lsa_c02402{letter-spacing:0.043200px;}
.ls12_c02402{letter-spacing:0.046116px;}
.ls5_c02402{letter-spacing:0.050400px;}
.ls1_c02402{letter-spacing:0.052704px;}
.ls6_c02402{letter-spacing:0.057600px;}
.ls2_c02402{letter-spacing:0.059292px;}
.lsc_c02402{letter-spacing:0.064800px;}
.ls4_c02402{letter-spacing:0.072000px;}
.ls14_c02402{letter-spacing:0.072468px;}
.lsf_c02402{letter-spacing:0.079056px;}
.lse_c02402{letter-spacing:0.079200px;}
.ls13_c02402{letter-spacing:0.085644px;}
.lsd_c02402{letter-spacing:0.086400px;}
.ls16_c02402{letter-spacing:0.092232px;}
.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;}
}
.ws18_c02402{word-spacing:-0.252000px;}
.ws12_c02402{word-spacing:-0.216000px;}
.ws0_c02402{word-spacing:-0.158112px;}
.ws1b_c02402{word-spacing:-0.100800px;}
.ws20_c02402{word-spacing:-0.079200px;}
.ws2d_c02402{word-spacing:-0.050400px;}
.wsc_c02402{word-spacing:-0.014400px;}
.ws5_c02402{word-spacing:-0.007200px;}
.ws3_c02402{word-spacing:0.000000px;}
.wsd_c02402{word-spacing:0.014400px;}
.ws42_c02402{word-spacing:0.028800px;}
.ws4_c02402{word-spacing:0.032940px;}
.ws2_c02402{word-spacing:0.039528px;}
.ws3c_c02402{word-spacing:0.059292px;}
.ws1_c02402{word-spacing:0.065880px;}
.ws38_c02402{word-spacing:0.085644px;}
.ws3d_c02402{word-spacing:0.092232px;}
.ws41_c02402{word-spacing:0.122400px;}
.ws1d_c02402{word-spacing:0.511200px;}
.ws35_c02402{word-spacing:0.604800px;}
.ws34_c02402{word-spacing:0.619200px;}
.ws1e_c02402{word-spacing:0.705600px;}
.ws1c_c02402{word-spacing:0.727200px;}
.wsa_c02402{word-spacing:0.878400px;}
.wsb_c02402{word-spacing:0.950400px;}
.ws25_c02402{word-spacing:0.957600px;}
.ws2b_c02402{word-spacing:0.979200px;}
.ws24_c02402{word-spacing:1.036800px;}
.ws39_c02402{word-spacing:1.126548px;}
.ws8_c02402{word-spacing:5.227200px;}
.ws9_c02402{word-spacing:5.414400px;}
.ws2c_c02402{word-spacing:6.040800px;}
.ws17_c02402{word-spacing:8.611200px;}
.ws28_c02402{word-spacing:9.367200px;}
.ws27_c02402{word-spacing:9.590400px;}
.ws26_c02402{word-spacing:9.720000px;}
.ws30_c02402{word-spacing:11.404800px;}
.ws2e_c02402{word-spacing:11.433600px;}
.ws2f_c02402{word-spacing:11.448000px;}
.ws15_c02402{word-spacing:12.045600px;}
.ws16_c02402{word-spacing:12.247200px;}
.ws36_c02402{word-spacing:14.407956px;}
.ws37_c02402{word-spacing:14.454072px;}
.ws13_c02402{word-spacing:16.452000px;}
.ws14_c02402{word-spacing:16.581600px;}
.ws22_c02402{word-spacing:17.114400px;}
.ws21_c02402{word-spacing:17.294400px;}
.ws3e_c02402{word-spacing:17.339616px;}
.ws23_c02402{word-spacing:17.366400px;}
.ws19_c02402{word-spacing:18.338400px;}
.ws1a_c02402{word-spacing:18.388800px;}
.ws2a_c02402{word-spacing:18.626400px;}
.ws29_c02402{word-spacing:18.727200px;}
.wsf_c02402{word-spacing:20.102400px;}
.wse_c02402{word-spacing:20.124000px;}
.ws3b_c02402{word-spacing:20.165868px;}
.ws3a_c02402{word-spacing:20.244924px;}
.ws3f_c02402{word-spacing:21.977568px;}
.ws40_c02402{word-spacing:22.003920px;}
.ws7_c02402{word-spacing:26.568000px;}
.ws6_c02402{word-spacing:26.611200px;}
.ws31_c02402{word-spacing:33.408000px;}
.ws33_c02402{word-spacing:33.487200px;}
.ws32_c02402{word-spacing:33.523200px;}
.ws1f_c02402{word-spacing:38.793600px;}
.ws10_c02402{word-spacing:38.851200px;}
.ws11_c02402{word-spacing:38.887200px;}
._0_c02402{margin-left:-1.051200px;}
._1_c02402{width:1.475712px;}
.fc0_c02402{color:rgb(0,0,0);}
.fs0_c02402{font-size:65.880000px;}
.fs1_c02402{font-size:72.000000px;}
.y0_c02402{bottom:0.000000px;}
.y3_c02402{bottom:75.720882px;}
.y2_c02402{bottom:113.880225px;}
.y2f_c02402{bottom:135.570450px;}
.y2e_c02402{bottom:158.700450px;}
.y2d_c02402{bottom:182.280450px;}
.y2c_c02402{bottom:205.769271px;}
.y2b_c02402{bottom:227.549199px;}
.y2a_c02402{bottom:249.419712px;}
.y29_c02402{bottom:271.199640px;}
.y28_c02402{bottom:292.979568px;}
.y27_c02402{bottom:314.850081px;}
.y26_c02402{bottom:336.630009px;}
.y25_c02402{bottom:358.500522px;}
.y24_c02402{bottom:380.280450px;}
.y23_c02402{bottom:402.690450px;}
.y22_c02402{bottom:426.450450px;}
.y21_c02402{bottom:450.300450px;}
.y20_c02402{bottom:474.060450px;}
.y1f_c02402{bottom:497.910450px;}
.y1e_c02402{bottom:521.670450px;}
.y1d_c02402{bottom:545.520450px;}
.y1c_c02402{bottom:569.280450px;}
.y1b_c02402{bottom:593.130450px;}
.y1a_c02402{bottom:616.890450px;}
.y19_c02402{bottom:640.740450px;}
.y18_c02402{bottom:664.500450px;}
.y17_c02402{bottom:688.260450px;}
.y16_c02402{bottom:712.110450px;}
.y15_c02402{bottom:735.870450px;}
.y14_c02402{bottom:759.720450px;}
.y13_c02402{bottom:783.480450px;}
.y12_c02402{bottom:807.330450px;}
.y11_c02402{bottom:831.090450px;}
.y10_c02402{bottom:854.940450px;}
.yf_c02402{bottom:878.700450px;}
.ye_c02402{bottom:902.370450px;}
.yd_c02402{bottom:926.310450px;}
.yc_c02402{bottom:950.160450px;}
.yb_c02402{bottom:973.920450px;}
.ya_c02402{bottom:997.770450px;}
.y9_c02402{bottom:1021.530450px;}
.y8_c02402{bottom:1045.380450px;}
.y7_c02402{bottom:1069.140450px;}
.y6_c02402{bottom:1092.990450px;}
.y5_c02402{bottom:1116.570450px;}
.y4_c02402{bottom:1140.690450px;}
.y1_c02402{bottom:1194.600450px;}
.h3_c02402{height:43.909277px;}
.h2_c02402{height:54.331699px;}
.h6_c02402{height:64.657617px;}
.h1_c02402{height:66.394687px;}
.h5_c02402{height:70.664062px;}
.h4_c02402{height:72.562500px;}
.h0_c02402{height:1263.000000px;}
.w1_c02402{width:892.500000px;}
.w0_c02402{width:892.830000px;}
.x0_c02402{left:0.000000px;}
.x1_c02402{left:127.620000px;}
.x2_c02402{left:438.120675px;}
@media print{
.v0_c02402{vertical-align:0.000000pt;}
.ls19_c02402{letter-spacing:-0.076800pt;}
.ls1b_c02402{letter-spacing:-0.038400pt;}
.ls1c_c02402{letter-spacing:-0.032000pt;}
.ls1a_c02402{letter-spacing:-0.019200pt;}
.ls17_c02402{letter-spacing:-0.012800pt;}
.ls18_c02402{letter-spacing:-0.006400pt;}
.ls15_c02402{letter-spacing:0.000000pt;}
.ls11_c02402{letter-spacing:0.005856pt;}
.lsb_c02402{letter-spacing:0.006400pt;}
.ls8_c02402{letter-spacing:0.012800pt;}
.ls9_c02402{letter-spacing:0.019200pt;}
.ls0_c02402{letter-spacing:0.023424pt;}
.ls3_c02402{letter-spacing:0.025600pt;}
.ls10_c02402{letter-spacing:0.029280pt;}
.ls7_c02402{letter-spacing:0.032000pt;}
.lsa_c02402{letter-spacing:0.038400pt;}
.ls12_c02402{letter-spacing:0.040992pt;}
.ls5_c02402{letter-spacing:0.044800pt;}
.ls1_c02402{letter-spacing:0.046848pt;}
.ls6_c02402{letter-spacing:0.051200pt;}
.ls2_c02402{letter-spacing:0.052704pt;}
.lsc_c02402{letter-spacing:0.057600pt;}
.ls4_c02402{letter-spacing:0.064000pt;}
.ls14_c02402{letter-spacing:0.064416pt;}
.lsf_c02402{letter-spacing:0.070272pt;}
.lse_c02402{letter-spacing:0.070400pt;}
.ls13_c02402{letter-spacing:0.076128pt;}
.lsd_c02402{letter-spacing:0.076800pt;}
.ls16_c02402{letter-spacing:0.081984pt;}
.ws18_c02402{word-spacing:-0.224000pt;}
.ws12_c02402{word-spacing:-0.192000pt;}
.ws0_c02402{word-spacing:-0.140544pt;}
.ws1b_c02402{word-spacing:-0.089600pt;}
.ws20_c02402{word-spacing:-0.070400pt;}
.ws2d_c02402{word-spacing:-0.044800pt;}
.wsc_c02402{word-spacing:-0.012800pt;}
.ws5_c02402{word-spacing:-0.006400pt;}
.ws3_c02402{word-spacing:0.000000pt;}
.wsd_c02402{word-spacing:0.012800pt;}
.ws42_c02402{word-spacing:0.025600pt;}
.ws4_c02402{word-spacing:0.029280pt;}
.ws2_c02402{word-spacing:0.035136pt;}
.ws3c_c02402{word-spacing:0.052704pt;}
.ws1_c02402{word-spacing:0.058560pt;}
.ws38_c02402{word-spacing:0.076128pt;}
.ws3d_c02402{word-spacing:0.081984pt;}
.ws41_c02402{word-spacing:0.108800pt;}
.ws1d_c02402{word-spacing:0.454400pt;}
.ws35_c02402{word-spacing:0.537600pt;}
.ws34_c02402{word-spacing:0.550400pt;}
.ws1e_c02402{word-spacing:0.627200pt;}
.ws1c_c02402{word-spacing:0.646400pt;}
.wsa_c02402{word-spacing:0.780800pt;}
.wsb_c02402{word-spacing:0.844800pt;}
.ws25_c02402{word-spacing:0.851200pt;}
.ws2b_c02402{word-spacing:0.870400pt;}
.ws24_c02402{word-spacing:0.921600pt;}
.ws39_c02402{word-spacing:1.001376pt;}
.ws8_c02402{word-spacing:4.646400pt;}
.ws9_c02402{word-spacing:4.812800pt;}
.ws2c_c02402{word-spacing:5.369600pt;}
.ws17_c02402{word-spacing:7.654400pt;}
.ws28_c02402{word-spacing:8.326400pt;}
.ws27_c02402{word-spacing:8.524800pt;}
.ws26_c02402{word-spacing:8.640000pt;}
.ws30_c02402{word-spacing:10.137600pt;}
.ws2e_c02402{word-spacing:10.163200pt;}
.ws2f_c02402{word-spacing:10.176000pt;}
.ws15_c02402{word-spacing:10.707200pt;}
.ws16_c02402{word-spacing:10.886400pt;}
.ws36_c02402{word-spacing:12.807072pt;}
.ws37_c02402{word-spacing:12.848064pt;}
.ws13_c02402{word-spacing:14.624000pt;}
.ws14_c02402{word-spacing:14.739200pt;}
.ws22_c02402{word-spacing:15.212800pt;}
.ws21_c02402{word-spacing:15.372800pt;}
.ws3e_c02402{word-spacing:15.412992pt;}
.ws23_c02402{word-spacing:15.436800pt;}
.ws19_c02402{word-spacing:16.300800pt;}
.ws1a_c02402{word-spacing:16.345600pt;}
.ws2a_c02402{word-spacing:16.556800pt;}
.ws29_c02402{word-spacing:16.646400pt;}
.wsf_c02402{word-spacing:17.868800pt;}
.wse_c02402{word-spacing:17.888000pt;}
.ws3b_c02402{word-spacing:17.925216pt;}
.ws3a_c02402{word-spacing:17.995488pt;}
.ws3f_c02402{word-spacing:19.535616pt;}
.ws40_c02402{word-spacing:19.559040pt;}
.ws7_c02402{word-spacing:23.616000pt;}
.ws6_c02402{word-spacing:23.654400pt;}
.ws31_c02402{word-spacing:29.696000pt;}
.ws33_c02402{word-spacing:29.766400pt;}
.ws32_c02402{word-spacing:29.798400pt;}
.ws1f_c02402{word-spacing:34.483200pt;}
.ws10_c02402{word-spacing:34.534400pt;}
.ws11_c02402{word-spacing:34.566400pt;}
._0_c02402{margin-left:-0.934400pt;}
._1_c02402{width:1.311744pt;}
.fs0_c02402{font-size:58.560000pt;}
.fs1_c02402{font-size:64.000000pt;}
.y0_c02402{bottom:0.000000pt;}
.y3_c02402{bottom:67.307451pt;}
.y2_c02402{bottom:101.226867pt;}
.y2f_c02402{bottom:120.507067pt;}
.y2e_c02402{bottom:141.067067pt;}
.y2d_c02402{bottom:162.027067pt;}
.y2c_c02402{bottom:182.906019pt;}
.y2b_c02402{bottom:202.265955pt;}
.y2a_c02402{bottom:221.706411pt;}
.y29_c02402{bottom:241.066347pt;}
.y28_c02402{bottom:260.426283pt;}
.y27_c02402{bottom:279.866739pt;}
.y26_c02402{bottom:299.226675pt;}
.y25_c02402{bottom:318.667131pt;}
.y24_c02402{bottom:338.027067pt;}
.y23_c02402{bottom:357.947067pt;}
.y22_c02402{bottom:379.067067pt;}
.y21_c02402{bottom:400.267067pt;}
.y20_c02402{bottom:421.387067pt;}
.y1f_c02402{bottom:442.587067pt;}
.y1e_c02402{bottom:463.707067pt;}
.y1d_c02402{bottom:484.907067pt;}
.y1c_c02402{bottom:506.027067pt;}
.y1b_c02402{bottom:527.227067pt;}
.y1a_c02402{bottom:548.347067pt;}
.y19_c02402{bottom:569.547067pt;}
.y18_c02402{bottom:590.667067pt;}
.y17_c02402{bottom:611.787067pt;}
.y16_c02402{bottom:632.987067pt;}
.y15_c02402{bottom:654.107067pt;}
.y14_c02402{bottom:675.307067pt;}
.y13_c02402{bottom:696.427067pt;}
.y12_c02402{bottom:717.627067pt;}
.y11_c02402{bottom:738.747067pt;}
.y10_c02402{bottom:759.947067pt;}
.yf_c02402{bottom:781.067067pt;}
.ye_c02402{bottom:802.107067pt;}
.yd_c02402{bottom:823.387067pt;}
.yc_c02402{bottom:844.587067pt;}
.yb_c02402{bottom:865.707067pt;}
.ya_c02402{bottom:886.907067pt;}
.y9_c02402{bottom:908.027067pt;}
.y8_c02402{bottom:929.227067pt;}
.y7_c02402{bottom:950.347067pt;}
.y6_c02402{bottom:971.547067pt;}
.y5_c02402{bottom:992.507067pt;}
.y4_c02402{bottom:1013.947067pt;}
.y1_c02402{bottom:1061.867067pt;}
.h3_c02402{height:39.030469pt;}
.h2_c02402{height:48.294844pt;}
.h6_c02402{height:57.473437pt;}
.h1_c02402{height:59.017500pt;}
.h5_c02402{height:62.812500pt;}
.h4_c02402{height:64.500000pt;}
.h0_c02402{height:1122.666667pt;}
.w1_c02402{width:793.333333pt;}
.w0_c02402{width:793.626667pt;}
.x0_c02402{left:0.000000pt;}
.x1_c02402{left:113.440000pt;}
.x2_c02402{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_780d6d9f3ba5545ad9a8f48a.woff2')format("woff");}.ff1_c02403{font-family:ff1_c02403;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02403{font-family:ff2_c02403;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02403;src:url('chunks/assets/font_cc60fac01eebf6d76ce159a4.woff2')format("woff");}.ff3_c02403{font-family:ff3_c02403;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02403;src:url('chunks/assets/font_2673a2eebf323138179d1aeb.woff2')format("woff");}.ff4_c02403{font-family:ff4_c02403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02403;src:url('chunks/assets/font_494ec066df2ae5b79c9a334e.woff2')format("woff");}.ff5_c02403{font-family:ff5_c02403;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;}
.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;}
.ls12_c02403{letter-spacing:-0.036000px;}
.ls11_c02403{letter-spacing:-0.028800px;}
.ls13_c02403{letter-spacing:-0.021600px;}
.ls14_c02403{letter-spacing:-0.014400px;}
.ls10_c02403{letter-spacing:-0.007200px;}
.lse_c02403{letter-spacing:0.000000px;}
.lsc_c02403{letter-spacing:0.007200px;}
.ls7_c02403{letter-spacing:0.014400px;}
.ls4_c02403{letter-spacing:0.021600px;}
.ls0_c02403{letter-spacing:0.026352px;}
.lsa_c02403{letter-spacing:0.028800px;}
.ls3_c02403{letter-spacing:0.036000px;}
.ls6_c02403{letter-spacing:0.043200px;}
.ls1_c02403{letter-spacing:0.052704px;}
.lsb_c02403{letter-spacing:0.057600px;}
.ls5_c02403{letter-spacing:0.064800px;}
.ls2_c02403{letter-spacing:0.079056px;}
.ls9_c02403{letter-spacing:0.079200px;}
.lsd_c02403{letter-spacing:0.086400px;}
.lsf_c02403{letter-spacing:0.092232px;}
.ls8_c02403{letter-spacing:0.100800px;}
.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;}
}
.ws1_c02403{word-spacing:-72.000000px;}
.ws2d_c02403{word-spacing:-0.180000px;}
.ws12_c02403{word-spacing:-0.172800px;}
.ws0_c02403{word-spacing:-0.158112px;}
.ws10_c02403{word-spacing:-0.079200px;}
.ws2a_c02403{word-spacing:-0.072000px;}
.ws1c_c02403{word-spacing:-0.064800px;}
.ws7_c02403{word-spacing:-0.036000px;}
.ws4_c02403{word-spacing:0.000000px;}
.ws6_c02403{word-spacing:0.007200px;}
.ws5_c02403{word-spacing:0.013176px;}
.ws11_c02403{word-spacing:0.028800px;}
.ws13_c02403{word-spacing:0.036000px;}
.ws3_c02403{word-spacing:0.039528px;}
.ws2_c02403{word-spacing:0.065880px;}
.ws1f_c02403{word-spacing:0.230400px;}
.ws20_c02403{word-spacing:0.266400px;}
.ws21_c02403{word-spacing:0.316800px;}
.ws1a_c02403{word-spacing:1.044000px;}
.ws1b_c02403{word-spacing:1.072800px;}
.ws28_c02403{word-spacing:2.419200px;}
.ws27_c02403{word-spacing:2.534400px;}
.ws29_c02403{word-spacing:2.556000px;}
.ws14_c02403{word-spacing:2.728800px;}
.ws15_c02403{word-spacing:2.750400px;}
.ws16_c02403{word-spacing:2.901600px;}
.wse_c02403{word-spacing:4.579200px;}
.wsf_c02403{word-spacing:4.600800px;}
.wsd_c02403{word-spacing:4.665600px;}
.wsb_c02403{word-spacing:5.263200px;}
.wsc_c02403{word-spacing:5.328000px;}
.ws9_c02403{word-spacing:5.515200px;}
.wsa_c02403{word-spacing:5.760000px;}
.ws24_c02403{word-spacing:8.164800px;}
.ws25_c02403{word-spacing:8.258400px;}
.ws26_c02403{word-spacing:8.287200px;}
.ws23_c02403{word-spacing:12.060000px;}
.ws22_c02403{word-spacing:12.225600px;}
.ws17_c02403{word-spacing:12.902400px;}
.ws2b_c02403{word-spacing:18.295200px;}
.ws2c_c02403{word-spacing:18.331200px;}
.ws1d_c02403{word-spacing:20.390400px;}
.ws1e_c02403{word-spacing:20.419200px;}
.ws19_c02403{word-spacing:24.408000px;}
.ws18_c02403{word-spacing:24.472800px;}
.ws8_c02403{word-spacing:34.538400px;}
._0_c02403{margin-left:-1.007964px;}
.fc0_c02403{color:rgb(0,0,0);}
.fs0_c02403{font-size:65.880000px;}
.fs1_c02403{font-size:72.000000px;}
.y0_c02403{bottom:0.000000px;}
.y3_c02403{bottom:75.720882px;}
.y2_c02403{bottom:113.880225px;}
.y33_c02403{bottom:141.956481px;}
.y32_c02403{bottom:163.826994px;}
.y31_c02403{bottom:185.606922px;}
.y30_c02403{bottom:207.477435px;}
.y2f_c02403{bottom:229.257363px;}
.y2e_c02403{bottom:251.127876px;}
.y2d_c02403{bottom:272.907804px;}
.y2c_c02403{bottom:294.778317px;}
.y2b_c02403{bottom:316.558245px;}
.y2a_c02403{bottom:338.338173px;}
.y29_c02403{bottom:360.208686px;}
.y28_c02403{bottom:381.988614px;}
.y27_c02403{bottom:403.859127px;}
.y26_c02403{bottom:425.639055px;}
.y25_c02403{bottom:447.509568px;}
.y24_c02403{bottom:469.380081px;}
.y23_c02403{bottom:491.160009px;}
.y22_c02403{bottom:513.030522px;}
.y21_c02403{bottom:534.810450px;}
.y20_c02403{bottom:554.970450px;}
.y1f_c02403{bottom:575.670450px;}
.y1e_c02403{bottom:596.370450px;}
.y1d_c02403{bottom:617.070450px;}
.y1c_c02403{bottom:637.770450px;}
.y1b_c02403{bottom:658.470450px;}
.y1a_c02403{bottom:679.170450px;}
.y19_c02403{bottom:699.870450px;}
.y18_c02403{bottom:720.570450px;}
.y17_c02403{bottom:741.270450px;}
.y16_c02403{bottom:761.880450px;}
.y15_c02403{bottom:782.580450px;}
.y14_c02403{bottom:803.280450px;}
.y13_c02403{bottom:823.980450px;}
.y12_c02403{bottom:845.130450px;}
.y11_c02403{bottom:865.830450px;}
.y10_c02403{bottom:886.530450px;}
.yf_c02403{bottom:907.050450px;}
.ye_c02403{bottom:927.930450px;}
.yd_c02403{bottom:948.630450px;}
.yc_c02403{bottom:969.240450px;}
.yb_c02403{bottom:990.390450px;}
.ya_c02403{bottom:1011.090450px;}
.y9_c02403{bottom:1031.790450px;}
.y8_c02403{bottom:1052.490450px;}
.y7_c02403{bottom:1073.010450px;}
.y6_c02403{bottom:1097.040450px;}
.y5_c02403{bottom:1119.721242px;}
.y4_c02403{bottom:1141.410585px;}
.y1_c02403{bottom:1194.600450px;}
.h3_c02403{height:43.909277px;}
.h2_c02403{height:54.331699px;}
.h4_c02403{height:64.657617px;}
.h1_c02403{height:66.394687px;}
.h6_c02403{height:70.664062px;}
.h5_c02403{height:72.562500px;}
.h0_c02403{height:1263.000000px;}
.w1_c02403{width:892.500000px;}
.w0_c02403{width:892.830000px;}
.x0_c02403{left:0.000000px;}
.x1_c02403{left:127.620000px;}
.x2_c02403{left:438.120675px;}
@media print{
.v0_c02403{vertical-align:0.000000pt;}
.ls12_c02403{letter-spacing:-0.032000pt;}
.ls11_c02403{letter-spacing:-0.025600pt;}
.ls13_c02403{letter-spacing:-0.019200pt;}
.ls14_c02403{letter-spacing:-0.012800pt;}
.ls10_c02403{letter-spacing:-0.006400pt;}
.lse_c02403{letter-spacing:0.000000pt;}
.lsc_c02403{letter-spacing:0.006400pt;}
.ls7_c02403{letter-spacing:0.012800pt;}
.ls4_c02403{letter-spacing:0.019200pt;}
.ls0_c02403{letter-spacing:0.023424pt;}
.lsa_c02403{letter-spacing:0.025600pt;}
.ls3_c02403{letter-spacing:0.032000pt;}
.ls6_c02403{letter-spacing:0.038400pt;}
.ls1_c02403{letter-spacing:0.046848pt;}
.lsb_c02403{letter-spacing:0.051200pt;}
.ls5_c02403{letter-spacing:0.057600pt;}
.ls2_c02403{letter-spacing:0.070272pt;}
.ls9_c02403{letter-spacing:0.070400pt;}
.lsd_c02403{letter-spacing:0.076800pt;}
.lsf_c02403{letter-spacing:0.081984pt;}
.ls8_c02403{letter-spacing:0.089600pt;}
.ws1_c02403{word-spacing:-64.000000pt;}
.ws2d_c02403{word-spacing:-0.160000pt;}
.ws12_c02403{word-spacing:-0.153600pt;}
.ws0_c02403{word-spacing:-0.140544pt;}
.ws10_c02403{word-spacing:-0.070400pt;}
.ws2a_c02403{word-spacing:-0.064000pt;}
.ws1c_c02403{word-spacing:-0.057600pt;}
.ws7_c02403{word-spacing:-0.032000pt;}
.ws4_c02403{word-spacing:0.000000pt;}
.ws6_c02403{word-spacing:0.006400pt;}
.ws5_c02403{word-spacing:0.011712pt;}
.ws11_c02403{word-spacing:0.025600pt;}
.ws13_c02403{word-spacing:0.032000pt;}
.ws3_c02403{word-spacing:0.035136pt;}
.ws2_c02403{word-spacing:0.058560pt;}
.ws1f_c02403{word-spacing:0.204800pt;}
.ws20_c02403{word-spacing:0.236800pt;}
.ws21_c02403{word-spacing:0.281600pt;}
.ws1a_c02403{word-spacing:0.928000pt;}
.ws1b_c02403{word-spacing:0.953600pt;}
.ws28_c02403{word-spacing:2.150400pt;}
.ws27_c02403{word-spacing:2.252800pt;}
.ws29_c02403{word-spacing:2.272000pt;}
.ws14_c02403{word-spacing:2.425600pt;}
.ws15_c02403{word-spacing:2.444800pt;}
.ws16_c02403{word-spacing:2.579200pt;}
.wse_c02403{word-spacing:4.070400pt;}
.wsf_c02403{word-spacing:4.089600pt;}
.wsd_c02403{word-spacing:4.147200pt;}
.wsb_c02403{word-spacing:4.678400pt;}
.wsc_c02403{word-spacing:4.736000pt;}
.ws9_c02403{word-spacing:4.902400pt;}
.wsa_c02403{word-spacing:5.120000pt;}
.ws24_c02403{word-spacing:7.257600pt;}
.ws25_c02403{word-spacing:7.340800pt;}
.ws26_c02403{word-spacing:7.366400pt;}
.ws23_c02403{word-spacing:10.720000pt;}
.ws22_c02403{word-spacing:10.867200pt;}
.ws17_c02403{word-spacing:11.468800pt;}
.ws2b_c02403{word-spacing:16.262400pt;}
.ws2c_c02403{word-spacing:16.294400pt;}
.ws1d_c02403{word-spacing:18.124800pt;}
.ws1e_c02403{word-spacing:18.150400pt;}
.ws19_c02403{word-spacing:21.696000pt;}
.ws18_c02403{word-spacing:21.753600pt;}
.ws8_c02403{word-spacing:30.700800pt;}
._0_c02403{margin-left:-0.895968pt;}
.fs0_c02403{font-size:58.560000pt;}
.fs1_c02403{font-size:64.000000pt;}
.y0_c02403{bottom:0.000000pt;}
.y3_c02403{bottom:67.307451pt;}
.y2_c02403{bottom:101.226867pt;}
.y33_c02403{bottom:126.183539pt;}
.y32_c02403{bottom:145.623995pt;}
.y31_c02403{bottom:164.983931pt;}
.y30_c02403{bottom:184.424387pt;}
.y2f_c02403{bottom:203.784323pt;}
.y2e_c02403{bottom:223.224779pt;}
.y2d_c02403{bottom:242.584715pt;}
.y2c_c02403{bottom:262.025171pt;}
.y2b_c02403{bottom:281.385107pt;}
.y2a_c02403{bottom:300.745043pt;}
.y29_c02403{bottom:320.185499pt;}
.y28_c02403{bottom:339.545435pt;}
.y27_c02403{bottom:358.985891pt;}
.y26_c02403{bottom:378.345827pt;}
.y25_c02403{bottom:397.786283pt;}
.y24_c02403{bottom:417.226739pt;}
.y23_c02403{bottom:436.586675pt;}
.y22_c02403{bottom:456.027131pt;}
.y21_c02403{bottom:475.387067pt;}
.y20_c02403{bottom:493.307067pt;}
.y1f_c02403{bottom:511.707067pt;}
.y1e_c02403{bottom:530.107067pt;}
.y1d_c02403{bottom:548.507067pt;}
.y1c_c02403{bottom:566.907067pt;}
.y1b_c02403{bottom:585.307067pt;}
.y1a_c02403{bottom:603.707067pt;}
.y19_c02403{bottom:622.107067pt;}
.y18_c02403{bottom:640.507067pt;}
.y17_c02403{bottom:658.907067pt;}
.y16_c02403{bottom:677.227067pt;}
.y15_c02403{bottom:695.627067pt;}
.y14_c02403{bottom:714.027067pt;}
.y13_c02403{bottom:732.427067pt;}
.y12_c02403{bottom:751.227067pt;}
.y11_c02403{bottom:769.627067pt;}
.y10_c02403{bottom:788.027067pt;}
.yf_c02403{bottom:806.267067pt;}
.ye_c02403{bottom:824.827067pt;}
.yd_c02403{bottom:843.227067pt;}
.yc_c02403{bottom:861.547067pt;}
.yb_c02403{bottom:880.347067pt;}
.ya_c02403{bottom:898.747067pt;}
.y9_c02403{bottom:917.147067pt;}
.y8_c02403{bottom:935.547067pt;}
.y7_c02403{bottom:953.787067pt;}
.y6_c02403{bottom:975.147067pt;}
.y5_c02403{bottom:995.307771pt;}
.y4_c02403{bottom:1014.587187pt;}
.y1_c02403{bottom:1061.867067pt;}
.h3_c02403{height:39.030469pt;}
.h2_c02403{height:48.294844pt;}
.h4_c02403{height:57.473437pt;}
.h1_c02403{height:59.017500pt;}
.h6_c02403{height:62.812500pt;}
.h5_c02403{height:64.500000pt;}
.h0_c02403{height:1122.666667pt;}
.w1_c02403{width:793.333333pt;}
.w0_c02403{width:793.626667pt;}
.x0_c02403{left:0.000000pt;}
.x1_c02403{left:113.440000pt;}
.x2_c02403{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55e3eeee94706eb014edb236.woff2')format("woff");}.ff1_c02404{font-family:ff1_c02404;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02404;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02404{font-family:ff2_c02404;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02404;src:url('chunks/assets/font_3c38b8e686314e9340c2118e.woff2')format("woff");}.ff3_c02404{font-family:ff3_c02404;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02404;src:url('chunks/assets/font_fca5478eaf970cb875889fb3.woff2')format("woff");}.ff4_c02404{font-family:ff4_c02404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls19_c02404{letter-spacing:-0.158400px;}
.ls18_c02404{letter-spacing:-0.090972px;}
.ls1b_c02404{letter-spacing:-0.013176px;}
.ls1c_c02404{letter-spacing:-0.007200px;}
.ls1a_c02404{letter-spacing:-0.006588px;}
.ls16_c02404{letter-spacing:0.000000px;}
.lsf_c02404{letter-spacing:0.006588px;}
.ls14_c02404{letter-spacing:0.007200px;}
.lsa_c02404{letter-spacing:0.013176px;}
.ls13_c02404{letter-spacing:0.014400px;}
.ls10_c02404{letter-spacing:0.019764px;}
.ls4_c02404{letter-spacing:0.021600px;}
.ls0_c02404{letter-spacing:0.026352px;}
.lsd_c02404{letter-spacing:0.028800px;}
.ls2_c02404{letter-spacing:0.032940px;}
.ls8_c02404{letter-spacing:0.036000px;}
.lsb_c02404{letter-spacing:0.039528px;}
.ls11_c02404{letter-spacing:0.043200px;}
.ls5_c02404{letter-spacing:0.046116px;}
.ls9_c02404{letter-spacing:0.050400px;}
.ls1_c02404{letter-spacing:0.052704px;}
.ls15_c02404{letter-spacing:0.057600px;}
.ls7_c02404{letter-spacing:0.059292px;}
.ls12_c02404{letter-spacing:0.064800px;}
.lse_c02404{letter-spacing:0.065880px;}
.ls3_c02404{letter-spacing:0.079056px;}
.ls6_c02404{letter-spacing:0.085644px;}
.ls17_c02404{letter-spacing:0.092232px;}
.lsc_c02404{letter-spacing:0.098820px;}
.sc__c02404{text-shadow:none;}
.sc0_c02404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02404{-webkit-text-stroke:0px transparent;}
.sc0_c02404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c02404{word-spacing:-17.841600px;}
.ws37_c02404{word-spacing:-0.237600px;}
.ws34_c02404{word-spacing:-0.216000px;}
.ws36_c02404{word-spacing:-0.187200px;}
.wsd_c02404{word-spacing:-0.165600px;}
.ws3d_c02404{word-spacing:-0.158400px;}
.ws0_c02404{word-spacing:-0.158112px;}
.ws39_c02404{word-spacing:-0.151200px;}
.ws35_c02404{word-spacing:-0.136800px;}
.ws32_c02404{word-spacing:-0.122400px;}
.ws7_c02404{word-spacing:-0.108000px;}
.ws31_c02404{word-spacing:-0.100800px;}
.ws3c_c02404{word-spacing:-0.093600px;}
.ws33_c02404{word-spacing:-0.072000px;}
.wsc_c02404{word-spacing:-0.036000px;}
.ws3b_c02404{word-spacing:-0.028800px;}
.ws14_c02404{word-spacing:-0.021600px;}
.ws15_c02404{word-spacing:-0.014400px;}
.ws3a_c02404{word-spacing:-0.007200px;}
.ws4_c02404{word-spacing:0.000000px;}
.ws20_c02404{word-spacing:0.006588px;}
.ws38_c02404{word-spacing:0.007200px;}
.ws6_c02404{word-spacing:0.013176px;}
.wsa_c02404{word-spacing:0.032940px;}
.ws3_c02404{word-spacing:0.039528px;}
.ws18_c02404{word-spacing:0.046116px;}
.ws10_c02404{word-spacing:0.052704px;}
.ws5_c02404{word-spacing:0.059292px;}
.ws2_c02404{word-spacing:0.065880px;}
.wsb_c02404{word-spacing:0.359100px;}
.ws13_c02404{word-spacing:0.421632px;}
.ws1f_c02404{word-spacing:1.469124px;}
.ws1e_c02404{word-spacing:1.482300px;}
.ws21_c02404{word-spacing:4.407372px;}
.ws27_c02404{word-spacing:5.468040px;}
.ws26_c02404{word-spacing:5.481216px;}
.ws9_c02404{word-spacing:9.005796px;}
.ws8_c02404{word-spacing:9.045324px;}
.ws1c_c02404{word-spacing:9.387900px;}
.ws1b_c02404{word-spacing:9.394488px;}
.wsf_c02404{word-spacing:10.501272px;}
.wse_c02404{word-spacing:10.514448px;}
.ws28_c02404{word-spacing:11.186424px;}
.ws29_c02404{word-spacing:11.193012px;}
.ws16_c02404{word-spacing:11.917692px;}
.ws17_c02404{word-spacing:11.924280px;}
.ws1a_c02404{word-spacing:13.703040px;}
.ws2e_c02404{word-spacing:13.729392px;}
.ws19_c02404{word-spacing:13.735980px;}
.ws2d_c02404{word-spacing:13.762332px;}
.ws22_c02404{word-spacing:14.065380px;}
.ws23_c02404{word-spacing:14.071968px;}
.ws2c_c02404{word-spacing:16.252596px;}
.ws2b_c02404{word-spacing:16.265772px;}
.ws30_c02404{word-spacing:16.595172px;}
.ws2f_c02404{word-spacing:16.601760px;}
.ws2a_c02404{word-spacing:17.016804px;}
.ws11_c02404{word-spacing:18.354168px;}
.ws12_c02404{word-spacing:18.373932px;}
.ws1d_c02404{word-spacing:33.875496px;}
.ws24_c02404{word-spacing:39.264480px;}
.ws25_c02404{word-spacing:39.290832px;}
._0_c02404{margin-left:-1.007964px;}
._1_c02404{width:1.337364px;}
.fc0_c02404{color:rgb(0,0,0);}
.fs2_c02404{font-size:47.880000px;}
.fs0_c02404{font-size:65.880000px;}
.fs1_c02404{font-size:72.000000px;}
.y0_c02404{bottom:0.000000px;}
.y3_c02404{bottom:75.720882px;}
.y2_c02404{bottom:113.880225px;}
.y36_c02404{bottom:148.170450px;}
.y35_c02404{bottom:168.150450px;}
.y34_c02404{bottom:189.030450px;}
.y33_c02404{bottom:209.730450px;}
.y32_c02404{bottom:230.430450px;}
.y31_c02404{bottom:251.130450px;}
.y30_c02404{bottom:271.830450px;}
.y2f_c02404{bottom:292.530450px;}
.y2e_c02404{bottom:313.230450px;}
.y2d_c02404{bottom:333.930450px;}
.y2c_c02404{bottom:354.630450px;}
.y2b_c02404{bottom:374.972520px;}
.y2a_c02404{bottom:393.962430px;}
.y29_c02404{bottom:412.861755px;}
.y28_c02404{bottom:431.851665px;}
.y27_c02404{bottom:450.841575px;}
.y26_c02404{bottom:469.831485px;}
.y25_c02404{bottom:488.821395px;}
.y24_c02404{bottom:507.720720px;}
.y23_c02404{bottom:526.710630px;}
.y22_c02404{bottom:545.700540px;}
.y21_c02404{bottom:564.690450px;}
.y20_c02404{bottom:587.190450px;}
.y1f_c02404{bottom:609.780450px;}
.y1e_c02404{bottom:629.582340px;}
.y1d_c02404{bottom:648.481665px;}
.y1c_c02404{bottom:667.471575px;}
.y1b_c02404{bottom:686.461485px;}
.y1a_c02404{bottom:705.451395px;}
.y19_c02404{bottom:724.441305px;}
.y18_c02404{bottom:743.340630px;}
.y17_c02404{bottom:762.330540px;}
.y16_c02404{bottom:781.320450px;}
.y15_c02404{bottom:800.490450px;}
.y14_c02404{bottom:821.010540px;}
.y13_c02404{bottom:840.000450px;}
.y12_c02404{bottom:859.170450px;}
.y11_c02404{bottom:880.050450px;}
.y10_c02404{bottom:900.391485px;}
.yf_c02404{bottom:919.290810px;}
.ye_c02404{bottom:938.280720px;}
.yd_c02404{bottom:957.270630px;}
.yc_c02404{bottom:976.260540px;}
.yb_c02404{bottom:995.250450px;}
.ya_c02404{bottom:1014.420450px;}
.y9_c02404{bottom:1034.850540px;}
.y8_c02404{bottom:1053.840450px;}
.y7_c02404{bottom:1073.010450px;}
.y6_c02404{bottom:1097.040450px;}
.y5_c02404{bottom:1119.721242px;}
.y4_c02404{bottom:1141.410585px;}
.y1_c02404{bottom:1194.600450px;}
.h3_c02404{height:43.909277px;}
.h2_c02404{height:54.331699px;}
.h4_c02404{height:64.657617px;}
.h1_c02404{height:66.394687px;}
.h6_c02404{height:70.664062px;}
.h5_c02404{height:72.562500px;}
.h0_c02404{height:1263.000000px;}
.w1_c02404{width:892.500000px;}
.w0_c02404{width:892.830000px;}
.x0_c02404{left:0.000000px;}
.x1_c02404{left:127.620000px;}
.x2_c02404{left:438.120675px;}
@media print{
.v0_c02404{vertical-align:0.000000pt;}
.ls19_c02404{letter-spacing:-0.140800pt;}
.ls18_c02404{letter-spacing:-0.080864pt;}
.ls1b_c02404{letter-spacing:-0.011712pt;}
.ls1c_c02404{letter-spacing:-0.006400pt;}
.ls1a_c02404{letter-spacing:-0.005856pt;}
.ls16_c02404{letter-spacing:0.000000pt;}
.lsf_c02404{letter-spacing:0.005856pt;}
.ls14_c02404{letter-spacing:0.006400pt;}
.lsa_c02404{letter-spacing:0.011712pt;}
.ls13_c02404{letter-spacing:0.012800pt;}
.ls10_c02404{letter-spacing:0.017568pt;}
.ls4_c02404{letter-spacing:0.019200pt;}
.ls0_c02404{letter-spacing:0.023424pt;}
.lsd_c02404{letter-spacing:0.025600pt;}
.ls2_c02404{letter-spacing:0.029280pt;}
.ls8_c02404{letter-spacing:0.032000pt;}
.lsb_c02404{letter-spacing:0.035136pt;}
.ls11_c02404{letter-spacing:0.038400pt;}
.ls5_c02404{letter-spacing:0.040992pt;}
.ls9_c02404{letter-spacing:0.044800pt;}
.ls1_c02404{letter-spacing:0.046848pt;}
.ls15_c02404{letter-spacing:0.051200pt;}
.ls7_c02404{letter-spacing:0.052704pt;}
.ls12_c02404{letter-spacing:0.057600pt;}
.lse_c02404{letter-spacing:0.058560pt;}
.ls3_c02404{letter-spacing:0.070272pt;}
.ls6_c02404{letter-spacing:0.076128pt;}
.ls17_c02404{letter-spacing:0.081984pt;}
.lsc_c02404{letter-spacing:0.087840pt;}
.ws1_c02404{word-spacing:-15.859200pt;}
.ws37_c02404{word-spacing:-0.211200pt;}
.ws34_c02404{word-spacing:-0.192000pt;}
.ws36_c02404{word-spacing:-0.166400pt;}
.wsd_c02404{word-spacing:-0.147200pt;}
.ws3d_c02404{word-spacing:-0.140800pt;}
.ws0_c02404{word-spacing:-0.140544pt;}
.ws39_c02404{word-spacing:-0.134400pt;}
.ws35_c02404{word-spacing:-0.121600pt;}
.ws32_c02404{word-spacing:-0.108800pt;}
.ws7_c02404{word-spacing:-0.096000pt;}
.ws31_c02404{word-spacing:-0.089600pt;}
.ws3c_c02404{word-spacing:-0.083200pt;}
.ws33_c02404{word-spacing:-0.064000pt;}
.wsc_c02404{word-spacing:-0.032000pt;}
.ws3b_c02404{word-spacing:-0.025600pt;}
.ws14_c02404{word-spacing:-0.019200pt;}
.ws15_c02404{word-spacing:-0.012800pt;}
.ws3a_c02404{word-spacing:-0.006400pt;}
.ws4_c02404{word-spacing:0.000000pt;}
.ws20_c02404{word-spacing:0.005856pt;}
.ws38_c02404{word-spacing:0.006400pt;}
.ws6_c02404{word-spacing:0.011712pt;}
.wsa_c02404{word-spacing:0.029280pt;}
.ws3_c02404{word-spacing:0.035136pt;}
.ws18_c02404{word-spacing:0.040992pt;}
.ws10_c02404{word-spacing:0.046848pt;}
.ws5_c02404{word-spacing:0.052704pt;}
.ws2_c02404{word-spacing:0.058560pt;}
.wsb_c02404{word-spacing:0.319200pt;}
.ws13_c02404{word-spacing:0.374784pt;}
.ws1f_c02404{word-spacing:1.305888pt;}
.ws1e_c02404{word-spacing:1.317600pt;}
.ws21_c02404{word-spacing:3.917664pt;}
.ws27_c02404{word-spacing:4.860480pt;}
.ws26_c02404{word-spacing:4.872192pt;}
.ws9_c02404{word-spacing:8.005152pt;}
.ws8_c02404{word-spacing:8.040288pt;}
.ws1c_c02404{word-spacing:8.344800pt;}
.ws1b_c02404{word-spacing:8.350656pt;}
.wsf_c02404{word-spacing:9.334464pt;}
.wse_c02404{word-spacing:9.346176pt;}
.ws28_c02404{word-spacing:9.943488pt;}
.ws29_c02404{word-spacing:9.949344pt;}
.ws16_c02404{word-spacing:10.593504pt;}
.ws17_c02404{word-spacing:10.599360pt;}
.ws1a_c02404{word-spacing:12.180480pt;}
.ws2e_c02404{word-spacing:12.203904pt;}
.ws19_c02404{word-spacing:12.209760pt;}
.ws2d_c02404{word-spacing:12.233184pt;}
.ws22_c02404{word-spacing:12.502560pt;}
.ws23_c02404{word-spacing:12.508416pt;}
.ws2c_c02404{word-spacing:14.446752pt;}
.ws2b_c02404{word-spacing:14.458464pt;}
.ws30_c02404{word-spacing:14.751264pt;}
.ws2f_c02404{word-spacing:14.757120pt;}
.ws2a_c02404{word-spacing:15.126048pt;}
.ws11_c02404{word-spacing:16.314816pt;}
.ws12_c02404{word-spacing:16.332384pt;}
.ws1d_c02404{word-spacing:30.111552pt;}
.ws24_c02404{word-spacing:34.901760pt;}
.ws25_c02404{word-spacing:34.925184pt;}
._0_c02404{margin-left:-0.895968pt;}
._1_c02404{width:1.188768pt;}
.fs2_c02404{font-size:42.560000pt;}
.fs0_c02404{font-size:58.560000pt;}
.fs1_c02404{font-size:64.000000pt;}
.y0_c02404{bottom:0.000000pt;}
.y3_c02404{bottom:67.307451pt;}
.y2_c02404{bottom:101.226867pt;}
.y36_c02404{bottom:131.707067pt;}
.y35_c02404{bottom:149.467067pt;}
.y34_c02404{bottom:168.027067pt;}
.y33_c02404{bottom:186.427067pt;}
.y32_c02404{bottom:204.827067pt;}
.y31_c02404{bottom:223.227067pt;}
.y30_c02404{bottom:241.627067pt;}
.y2f_c02404{bottom:260.027067pt;}
.y2e_c02404{bottom:278.427067pt;}
.y2d_c02404{bottom:296.827067pt;}
.y2c_c02404{bottom:315.227067pt;}
.y2b_c02404{bottom:333.308907pt;}
.y2a_c02404{bottom:350.188827pt;}
.y29_c02404{bottom:366.988227pt;}
.y28_c02404{bottom:383.868147pt;}
.y27_c02404{bottom:400.748067pt;}
.y26_c02404{bottom:417.627987pt;}
.y25_c02404{bottom:434.507907pt;}
.y24_c02404{bottom:451.307307pt;}
.y23_c02404{bottom:468.187227pt;}
.y22_c02404{bottom:485.067147pt;}
.y21_c02404{bottom:501.947067pt;}
.y20_c02404{bottom:521.947067pt;}
.y1f_c02404{bottom:542.027067pt;}
.y1e_c02404{bottom:559.628747pt;}
.y1d_c02404{bottom:576.428147pt;}
.y1c_c02404{bottom:593.308067pt;}
.y1b_c02404{bottom:610.187987pt;}
.y1a_c02404{bottom:627.067907pt;}
.y19_c02404{bottom:643.947827pt;}
.y18_c02404{bottom:660.747227pt;}
.y17_c02404{bottom:677.627147pt;}
.y16_c02404{bottom:694.507067pt;}
.y15_c02404{bottom:711.547067pt;}
.y14_c02404{bottom:729.787147pt;}
.y13_c02404{bottom:746.667067pt;}
.y12_c02404{bottom:763.707067pt;}
.y11_c02404{bottom:782.267067pt;}
.y10_c02404{bottom:800.347987pt;}
.yf_c02404{bottom:817.147387pt;}
.ye_c02404{bottom:834.027307pt;}
.yd_c02404{bottom:850.907227pt;}
.yc_c02404{bottom:867.787147pt;}
.yb_c02404{bottom:884.667067pt;}
.ya_c02404{bottom:901.707067pt;}
.y9_c02404{bottom:919.867147pt;}
.y8_c02404{bottom:936.747067pt;}
.y7_c02404{bottom:953.787067pt;}
.y6_c02404{bottom:975.147067pt;}
.y5_c02404{bottom:995.307771pt;}
.y4_c02404{bottom:1014.587187pt;}
.y1_c02404{bottom:1061.867067pt;}
.h3_c02404{height:39.030469pt;}
.h2_c02404{height:48.294844pt;}
.h4_c02404{height:57.473437pt;}
.h1_c02404{height:59.017500pt;}
.h6_c02404{height:62.812500pt;}
.h5_c02404{height:64.500000pt;}
.h0_c02404{height:1122.666667pt;}
.w1_c02404{width:793.333333pt;}
.w0_c02404{width:793.626667pt;}
.x0_c02404{left:0.000000pt;}
.x1_c02404{left:113.440000pt;}
.x2_c02404{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee7568161d17a15f68c6e246.woff2')format("woff");}.ff1_c02405{font-family:ff1_c02405;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02405;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02405{font-family:ff2_c02405;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02405;src:url('chunks/assets/font_cdadb4793d274862d7279b9a.woff2')format("woff");}.ff3_c02405{font-family:ff3_c02405;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02405;src:url('chunks/assets/font_91dbc89a538993b23afeebab.woff2')format("woff");}.ff4_c02405{font-family:ff4_c02405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15_c02405{letter-spacing:-0.057600px;}
.ls11_c02405{letter-spacing:-0.050400px;}
.ls12_c02405{letter-spacing:-0.021600px;}
.ls13_c02405{letter-spacing:-0.014400px;}
.ls14_c02405{letter-spacing:-0.007200px;}
.lsf_c02405{letter-spacing:0.000000px;}
.ls6_c02405{letter-spacing:0.007200px;}
.ls5_c02405{letter-spacing:0.014400px;}
.ls4_c02405{letter-spacing:0.021600px;}
.ls0_c02405{letter-spacing:0.026352px;}
.lsc_c02405{letter-spacing:0.028800px;}
.lsa_c02405{letter-spacing:0.036000px;}
.ls8_c02405{letter-spacing:0.043200px;}
.lse_c02405{letter-spacing:0.050400px;}
.ls1_c02405{letter-spacing:0.052704px;}
.lsb_c02405{letter-spacing:0.057600px;}
.lsd_c02405{letter-spacing:0.064800px;}
.ls9_c02405{letter-spacing:0.065880px;}
.ls2_c02405{letter-spacing:0.072468px;}
.ls10_c02405{letter-spacing:0.092232px;}
.ls7_c02405{letter-spacing:0.093600px;}
.ls3_c02405{letter-spacing:0.125172px;}
.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;}
}
.ws1_c02405{word-spacing:-16.542468px;}
.ws1b_c02405{word-spacing:-0.244800px;}
.ws12_c02405{word-spacing:-0.237600px;}
.wsb_c02405{word-spacing:-0.187200px;}
.ws0_c02405{word-spacing:-0.158112px;}
.ws11_c02405{word-spacing:-0.151200px;}
.wsa_c02405{word-spacing:-0.129600px;}
.ws1a_c02405{word-spacing:-0.108000px;}
.wsf_c02405{word-spacing:-0.093600px;}
.ws35_c02405{word-spacing:-0.079200px;}
.ws1c_c02405{word-spacing:-0.072000px;}
.ws2d_c02405{word-spacing:-0.050400px;}
.ws1d_c02405{word-spacing:-0.043200px;}
.ws7_c02405{word-spacing:-0.032940px;}
.ws34_c02405{word-spacing:-0.021600px;}
.ws38_c02405{word-spacing:-0.014400px;}
.ws4_c02405{word-spacing:0.000000px;}
.ws5_c02405{word-spacing:0.019764px;}
.ws10_c02405{word-spacing:0.026352px;}
.ws3_c02405{word-spacing:0.039528px;}
.ws3e_c02405{word-spacing:0.057600px;}
.ws2_c02405{word-spacing:0.065880px;}
.wsc_c02405{word-spacing:0.230400px;}
.ws2f_c02405{word-spacing:1.000800px;}
.ws2e_c02405{word-spacing:1.058400px;}
.ws20_c02405{word-spacing:2.037600px;}
.ws18_c02405{word-spacing:2.131200px;}
.ws21_c02405{word-spacing:2.145600px;}
.ws19_c02405{word-spacing:2.174400px;}
.ws31_c02405{word-spacing:3.528000px;}
.ws23_c02405{word-spacing:3.564000px;}
.ws22_c02405{word-spacing:3.578400px;}
.ws30_c02405{word-spacing:3.600000px;}
.ws3d_c02405{word-spacing:4.680000px;}
.ws3c_c02405{word-spacing:4.701600px;}
.ws37_c02405{word-spacing:5.623200px;}
.ws36_c02405{word-spacing:5.731200px;}
.ws40_c02405{word-spacing:6.422400px;}
.ws3f_c02405{word-spacing:6.480000px;}
.ws2c_c02405{word-spacing:8.481600px;}
.ws15_c02405{word-spacing:8.546400px;}
.ws16_c02405{word-spacing:8.596800px;}
.ws2b_c02405{word-spacing:8.611200px;}
.ws17_c02405{word-spacing:8.640000px;}
.ws33_c02405{word-spacing:8.740800px;}
.ws32_c02405{word-spacing:8.992800px;}
.ws1e_c02405{word-spacing:9.943200px;}
.ws1f_c02405{word-spacing:9.957600px;}
.ws26_c02405{word-spacing:11.498400px;}
.ws28_c02405{word-spacing:11.793600px;}
.ws27_c02405{word-spacing:11.822400px;}
.ws29_c02405{word-spacing:17.172000px;}
.ws2a_c02405{word-spacing:17.244000px;}
.ws13_c02405{word-spacing:17.985600px;}
.ws14_c02405{word-spacing:18.014400px;}
.wsd_c02405{word-spacing:22.492800px;}
.wse_c02405{word-spacing:22.701600px;}
.ws24_c02405{word-spacing:24.739200px;}
.ws25_c02405{word-spacing:24.825600px;}
.ws9_c02405{word-spacing:27.612000px;}
.ws8_c02405{word-spacing:27.633600px;}
.ws39_c02405{word-spacing:27.892800px;}
.ws3b_c02405{word-spacing:27.914400px;}
.ws3a_c02405{word-spacing:27.928800px;}
.ws6_c02405{word-spacing:42.927408px;}
._1_c02405{margin-left:-1.310400px;}
._0_c02405{width:1.225368px;}
.fc0_c02405{color:rgb(0,0,0);}
.fs0_c02405{font-size:65.880000px;}
.fs1_c02405{font-size:72.000000px;}
.y0_c02405{bottom:0.000000px;}
.y3_c02405{bottom:75.720882px;}
.y2_c02405{bottom:113.880225px;}
.y2e_c02405{bottom:147.720450px;}
.y2d_c02405{bottom:171.570450px;}
.y2c_c02405{bottom:195.330450px;}
.y2b_c02405{bottom:219.180450px;}
.y2a_c02405{bottom:242.940450px;}
.y29_c02405{bottom:266.790450px;}
.y28_c02405{bottom:290.550450px;}
.y27_c02405{bottom:314.400450px;}
.y26_c02405{bottom:338.160450px;}
.y25_c02405{bottom:362.010450px;}
.y24_c02405{bottom:385.770450px;}
.y23_c02405{bottom:409.620450px;}
.y22_c02405{bottom:433.380450px;}
.y21_c02405{bottom:457.230450px;}
.y20_c02405{bottom:480.990450px;}
.y1f_c02405{bottom:504.750450px;}
.y1e_c02405{bottom:528.600450px;}
.y1d_c02405{bottom:552.360450px;}
.y1c_c02405{bottom:576.210450px;}
.y1b_c02405{bottom:599.970450px;}
.y1a_c02405{bottom:623.820450px;}
.y19_c02405{bottom:647.580450px;}
.y18_c02405{bottom:671.430450px;}
.y17_c02405{bottom:695.190450px;}
.y16_c02405{bottom:719.040450px;}
.y15_c02405{bottom:742.800450px;}
.y14_c02405{bottom:766.650450px;}
.y13_c02405{bottom:790.410450px;}
.y12_c02405{bottom:814.260450px;}
.y11_c02405{bottom:838.020450px;}
.y10_c02405{bottom:861.870450px;}
.yf_c02405{bottom:885.720450px;}
.ye_c02405{bottom:908.400450px;}
.yd_c02405{bottom:931.530450px;}
.yc_c02405{bottom:955.290450px;}
.yb_c02405{bottom:979.140450px;}
.ya_c02405{bottom:1002.900450px;}
.y9_c02405{bottom:1027.470450px;}
.y8_c02405{bottom:1051.320450px;}
.y7_c02405{bottom:1075.350450px;}
.y6_c02405{bottom:1097.040450px;}
.y5_c02405{bottom:1119.630657px;}
.y4_c02405{bottom:1141.410585px;}
.y1_c02405{bottom:1194.600450px;}
.h3_c02405{height:43.909277px;}
.h2_c02405{height:54.331699px;}
.h5_c02405{height:64.657617px;}
.h1_c02405{height:66.394687px;}
.h4_c02405{height:70.664062px;}
.h0_c02405{height:1263.000000px;}
.w1_c02405{width:892.500000px;}
.w0_c02405{width:892.830000px;}
.x0_c02405{left:0.000000px;}
.x1_c02405{left:127.620000px;}
.x2_c02405{left:438.120675px;}
@media print{
.v0_c02405{vertical-align:0.000000pt;}
.ls15_c02405{letter-spacing:-0.051200pt;}
.ls11_c02405{letter-spacing:-0.044800pt;}
.ls12_c02405{letter-spacing:-0.019200pt;}
.ls13_c02405{letter-spacing:-0.012800pt;}
.ls14_c02405{letter-spacing:-0.006400pt;}
.lsf_c02405{letter-spacing:0.000000pt;}
.ls6_c02405{letter-spacing:0.006400pt;}
.ls5_c02405{letter-spacing:0.012800pt;}
.ls4_c02405{letter-spacing:0.019200pt;}
.ls0_c02405{letter-spacing:0.023424pt;}
.lsc_c02405{letter-spacing:0.025600pt;}
.lsa_c02405{letter-spacing:0.032000pt;}
.ls8_c02405{letter-spacing:0.038400pt;}
.lse_c02405{letter-spacing:0.044800pt;}
.ls1_c02405{letter-spacing:0.046848pt;}
.lsb_c02405{letter-spacing:0.051200pt;}
.lsd_c02405{letter-spacing:0.057600pt;}
.ls9_c02405{letter-spacing:0.058560pt;}
.ls2_c02405{letter-spacing:0.064416pt;}
.ls10_c02405{letter-spacing:0.081984pt;}
.ls7_c02405{letter-spacing:0.083200pt;}
.ls3_c02405{letter-spacing:0.111264pt;}
.ws1_c02405{word-spacing:-14.704416pt;}
.ws1b_c02405{word-spacing:-0.217600pt;}
.ws12_c02405{word-spacing:-0.211200pt;}
.wsb_c02405{word-spacing:-0.166400pt;}
.ws0_c02405{word-spacing:-0.140544pt;}
.ws11_c02405{word-spacing:-0.134400pt;}
.wsa_c02405{word-spacing:-0.115200pt;}
.ws1a_c02405{word-spacing:-0.096000pt;}
.wsf_c02405{word-spacing:-0.083200pt;}
.ws35_c02405{word-spacing:-0.070400pt;}
.ws1c_c02405{word-spacing:-0.064000pt;}
.ws2d_c02405{word-spacing:-0.044800pt;}
.ws1d_c02405{word-spacing:-0.038400pt;}
.ws7_c02405{word-spacing:-0.029280pt;}
.ws34_c02405{word-spacing:-0.019200pt;}
.ws38_c02405{word-spacing:-0.012800pt;}
.ws4_c02405{word-spacing:0.000000pt;}
.ws5_c02405{word-spacing:0.017568pt;}
.ws10_c02405{word-spacing:0.023424pt;}
.ws3_c02405{word-spacing:0.035136pt;}
.ws3e_c02405{word-spacing:0.051200pt;}
.ws2_c02405{word-spacing:0.058560pt;}
.wsc_c02405{word-spacing:0.204800pt;}
.ws2f_c02405{word-spacing:0.889600pt;}
.ws2e_c02405{word-spacing:0.940800pt;}
.ws20_c02405{word-spacing:1.811200pt;}
.ws18_c02405{word-spacing:1.894400pt;}
.ws21_c02405{word-spacing:1.907200pt;}
.ws19_c02405{word-spacing:1.932800pt;}
.ws31_c02405{word-spacing:3.136000pt;}
.ws23_c02405{word-spacing:3.168000pt;}
.ws22_c02405{word-spacing:3.180800pt;}
.ws30_c02405{word-spacing:3.200000pt;}
.ws3d_c02405{word-spacing:4.160000pt;}
.ws3c_c02405{word-spacing:4.179200pt;}
.ws37_c02405{word-spacing:4.998400pt;}
.ws36_c02405{word-spacing:5.094400pt;}
.ws40_c02405{word-spacing:5.708800pt;}
.ws3f_c02405{word-spacing:5.760000pt;}
.ws2c_c02405{word-spacing:7.539200pt;}
.ws15_c02405{word-spacing:7.596800pt;}
.ws16_c02405{word-spacing:7.641600pt;}
.ws2b_c02405{word-spacing:7.654400pt;}
.ws17_c02405{word-spacing:7.680000pt;}
.ws33_c02405{word-spacing:7.769600pt;}
.ws32_c02405{word-spacing:7.993600pt;}
.ws1e_c02405{word-spacing:8.838400pt;}
.ws1f_c02405{word-spacing:8.851200pt;}
.ws26_c02405{word-spacing:10.220800pt;}
.ws28_c02405{word-spacing:10.483200pt;}
.ws27_c02405{word-spacing:10.508800pt;}
.ws29_c02405{word-spacing:15.264000pt;}
.ws2a_c02405{word-spacing:15.328000pt;}
.ws13_c02405{word-spacing:15.987200pt;}
.ws14_c02405{word-spacing:16.012800pt;}
.wsd_c02405{word-spacing:19.993600pt;}
.wse_c02405{word-spacing:20.179200pt;}
.ws24_c02405{word-spacing:21.990400pt;}
.ws25_c02405{word-spacing:22.067200pt;}
.ws9_c02405{word-spacing:24.544000pt;}
.ws8_c02405{word-spacing:24.563200pt;}
.ws39_c02405{word-spacing:24.793600pt;}
.ws3b_c02405{word-spacing:24.812800pt;}
.ws3a_c02405{word-spacing:24.825600pt;}
.ws6_c02405{word-spacing:38.157696pt;}
._1_c02405{margin-left:-1.164800pt;}
._0_c02405{width:1.089216pt;}
.fs0_c02405{font-size:58.560000pt;}
.fs1_c02405{font-size:64.000000pt;}
.y0_c02405{bottom:0.000000pt;}
.y3_c02405{bottom:67.307451pt;}
.y2_c02405{bottom:101.226867pt;}
.y2e_c02405{bottom:131.307067pt;}
.y2d_c02405{bottom:152.507067pt;}
.y2c_c02405{bottom:173.627067pt;}
.y2b_c02405{bottom:194.827067pt;}
.y2a_c02405{bottom:215.947067pt;}
.y29_c02405{bottom:237.147067pt;}
.y28_c02405{bottom:258.267067pt;}
.y27_c02405{bottom:279.467067pt;}
.y26_c02405{bottom:300.587067pt;}
.y25_c02405{bottom:321.787067pt;}
.y24_c02405{bottom:342.907067pt;}
.y23_c02405{bottom:364.107067pt;}
.y22_c02405{bottom:385.227067pt;}
.y21_c02405{bottom:406.427067pt;}
.y20_c02405{bottom:427.547067pt;}
.y1f_c02405{bottom:448.667067pt;}
.y1e_c02405{bottom:469.867067pt;}
.y1d_c02405{bottom:490.987067pt;}
.y1c_c02405{bottom:512.187067pt;}
.y1b_c02405{bottom:533.307067pt;}
.y1a_c02405{bottom:554.507067pt;}
.y19_c02405{bottom:575.627067pt;}
.y18_c02405{bottom:596.827067pt;}
.y17_c02405{bottom:617.947067pt;}
.y16_c02405{bottom:639.147067pt;}
.y15_c02405{bottom:660.267067pt;}
.y14_c02405{bottom:681.467067pt;}
.y13_c02405{bottom:702.587067pt;}
.y12_c02405{bottom:723.787067pt;}
.y11_c02405{bottom:744.907067pt;}
.y10_c02405{bottom:766.107067pt;}
.yf_c02405{bottom:787.307067pt;}
.ye_c02405{bottom:807.467067pt;}
.yd_c02405{bottom:828.027067pt;}
.yc_c02405{bottom:849.147067pt;}
.yb_c02405{bottom:870.347067pt;}
.ya_c02405{bottom:891.467067pt;}
.y9_c02405{bottom:913.307067pt;}
.y8_c02405{bottom:934.507067pt;}
.y7_c02405{bottom:955.867067pt;}
.y6_c02405{bottom:975.147067pt;}
.y5_c02405{bottom:995.227251pt;}
.y4_c02405{bottom:1014.587187pt;}
.y1_c02405{bottom:1061.867067pt;}
.h3_c02405{height:39.030469pt;}
.h2_c02405{height:48.294844pt;}
.h5_c02405{height:57.473437pt;}
.h1_c02405{height:59.017500pt;}
.h4_c02405{height:62.812500pt;}
.h0_c02405{height:1122.666667pt;}
.w1_c02405{width:793.333333pt;}
.w0_c02405{width:793.626667pt;}
.x0_c02405{left:0.000000pt;}
.x1_c02405{left:113.440000pt;}
.x2_c02405{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ed1a9f30268e4e193c83b49.woff2')format("woff");}.ff1_c02406{font-family:ff1_c02406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02406;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02406{font-family:ff2_c02406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02406;src:url('chunks/assets/font_c450c5e0f60c7ba10563e745.woff2')format("woff");}.ff3_c02406{font-family:ff3_c02406;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02406;src:url('chunks/assets/font_2848076784fb99c15924bb5c.woff2')format("woff");}.ff4_c02406{font-family:ff4_c02406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10_c02406{letter-spacing:-0.050400px;}
.lsf_c02406{letter-spacing:-0.036000px;}
.lsc_c02406{letter-spacing:-0.028800px;}
.lse_c02406{letter-spacing:-0.014400px;}
.lsd_c02406{letter-spacing:-0.007200px;}
.lsa_c02406{letter-spacing:0.000000px;}
.ls5_c02406{letter-spacing:0.007200px;}
.ls3_c02406{letter-spacing:0.014400px;}
.ls4_c02406{letter-spacing:0.021600px;}
.ls0_c02406{letter-spacing:0.026352px;}
.ls7_c02406{letter-spacing:0.028800px;}
.ls8_c02406{letter-spacing:0.036000px;}
.ls2_c02406{letter-spacing:0.043200px;}
.ls1_c02406{letter-spacing:0.052704px;}
.ls6_c02406{letter-spacing:0.057600px;}
.ls9_c02406{letter-spacing:0.079200px;}
.lsb_c02406{letter-spacing:0.092232px;}
.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;}
}
.ws1a_c02406{word-spacing:-0.216000px;}
.wsb_c02406{word-spacing:-0.172800px;}
.ws0_c02406{word-spacing:-0.158112px;}
.wsd_c02406{word-spacing:-0.144000px;}
.wsa_c02406{word-spacing:-0.108000px;}
.ws14_c02406{word-spacing:-0.057600px;}
.wse_c02406{word-spacing:-0.028800px;}
.ws7_c02406{word-spacing:-0.021600px;}
.ws8_c02406{word-spacing:-0.007200px;}
.ws3_c02406{word-spacing:0.000000px;}
.wsc_c02406{word-spacing:0.007200px;}
.ws1b_c02406{word-spacing:0.014400px;}
.ws9_c02406{word-spacing:0.028800px;}
.ws2_c02406{word-spacing:0.039528px;}
.ws1_c02406{word-spacing:0.065880px;}
.ws4_c02406{word-spacing:1.396800px;}
.ws11_c02406{word-spacing:2.620800px;}
.wsf_c02406{word-spacing:2.829600px;}
.ws10_c02406{word-spacing:2.916000px;}
.ws1c_c02406{word-spacing:6.444000px;}
.ws24_c02406{word-spacing:7.430400px;}
.ws25_c02406{word-spacing:7.480800px;}
.ws23_c02406{word-spacing:7.502400px;}
.ws13_c02406{word-spacing:9.662400px;}
.ws12_c02406{word-spacing:9.698400px;}
.ws19_c02406{word-spacing:12.110400px;}
.ws17_c02406{word-spacing:12.124800px;}
.ws21_c02406{word-spacing:12.132000px;}
.ws1d_c02406{word-spacing:12.175200px;}
.ws22_c02406{word-spacing:12.182400px;}
.ws18_c02406{word-spacing:12.276000px;}
.ws1e_c02406{word-spacing:12.290400px;}
.ws1f_c02406{word-spacing:14.630400px;}
.ws20_c02406{word-spacing:14.774400px;}
.ws6_c02406{word-spacing:19.000800px;}
.ws5_c02406{word-spacing:19.036800px;}
.ws16_c02406{word-spacing:25.516800px;}
.ws15_c02406{word-spacing:25.552800px;}
._0_c02406{margin-left:-1.396800px;}
.fc0_c02406{color:rgb(0,0,0);}
.fs2_c02406{font-size:60.120000px;}
.fs0_c02406{font-size:65.880000px;}
.fs1_c02406{font-size:72.000000px;}
.y0_c02406{bottom:0.000000px;}
.y3_c02406{bottom:75.720882px;}
.y2_c02406{bottom:113.880225px;}
.y2f_c02406{bottom:146.278170px;}
.y2e_c02406{bottom:168.058098px;}
.y2d_c02406{bottom:189.838026px;}
.y2c_c02406{bottom:211.708539px;}
.y2b_c02406{bottom:233.488467px;}
.y2a_c02406{bottom:255.358980px;}
.y29_c02406{bottom:277.138908px;}
.y28_c02406{bottom:299.009421px;}
.y27_c02406{bottom:320.789349px;}
.y26_c02406{bottom:342.569277px;}
.y25_c02406{bottom:364.439790px;}
.y24_c02406{bottom:386.219718px;}
.y23_c02406{bottom:408.090231px;}
.y22_c02406{bottom:429.870159px;}
.y21_c02406{bottom:451.740672px;}
.y20_c02406{bottom:473.520600px;}
.y1f_c02406{bottom:496.650450px;}
.y1e_c02406{bottom:520.410450px;}
.y1d_c02406{bottom:544.260450px;}
.y1c_c02406{bottom:568.020450px;}
.y1b_c02406{bottom:591.870450px;}
.y1a_c02406{bottom:615.630450px;}
.y19_c02406{bottom:639.480450px;}
.y18_c02406{bottom:663.240450px;}
.y17_c02406{bottom:687.090450px;}
.y16_c02406{bottom:710.850450px;}
.y15_c02406{bottom:734.700450px;}
.y14_c02406{bottom:758.460450px;}
.y13_c02406{bottom:782.310450px;}
.y12_c02406{bottom:806.070450px;}
.y11_c02406{bottom:829.920450px;}
.y10_c02406{bottom:853.680450px;}
.yf_c02406{bottom:877.530450px;}
.ye_c02406{bottom:901.290450px;}
.yd_c02406{bottom:925.140450px;}
.yc_c02406{bottom:948.900450px;}
.yb_c02406{bottom:972.660450px;}
.ya_c02406{bottom:996.510450px;}
.y9_c02406{bottom:1020.270450px;}
.y8_c02406{bottom:1044.120450px;}
.y7_c02406{bottom:1067.880450px;}
.y6_c02406{bottom:1091.730450px;}
.y5_c02406{bottom:1115.490450px;}
.y4_c02406{bottom:1139.340450px;}
.y1_c02406{bottom:1194.600450px;}
.h3_c02406{height:43.909277px;}
.h2_c02406{height:54.331699px;}
.h5_c02406{height:64.657617px;}
.h1_c02406{height:66.394687px;}
.h4_c02406{height:70.664062px;}
.h0_c02406{height:1263.000000px;}
.w1_c02406{width:892.500000px;}
.w0_c02406{width:892.830000px;}
.x0_c02406{left:0.000000px;}
.x1_c02406{left:127.620000px;}
.x2_c02406{left:438.120675px;}
@media print{
.v0_c02406{vertical-align:0.000000pt;}
.ls10_c02406{letter-spacing:-0.044800pt;}
.lsf_c02406{letter-spacing:-0.032000pt;}
.lsc_c02406{letter-spacing:-0.025600pt;}
.lse_c02406{letter-spacing:-0.012800pt;}
.lsd_c02406{letter-spacing:-0.006400pt;}
.lsa_c02406{letter-spacing:0.000000pt;}
.ls5_c02406{letter-spacing:0.006400pt;}
.ls3_c02406{letter-spacing:0.012800pt;}
.ls4_c02406{letter-spacing:0.019200pt;}
.ls0_c02406{letter-spacing:0.023424pt;}
.ls7_c02406{letter-spacing:0.025600pt;}
.ls8_c02406{letter-spacing:0.032000pt;}
.ls2_c02406{letter-spacing:0.038400pt;}
.ls1_c02406{letter-spacing:0.046848pt;}
.ls6_c02406{letter-spacing:0.051200pt;}
.ls9_c02406{letter-spacing:0.070400pt;}
.lsb_c02406{letter-spacing:0.081984pt;}
.ws1a_c02406{word-spacing:-0.192000pt;}
.wsb_c02406{word-spacing:-0.153600pt;}
.ws0_c02406{word-spacing:-0.140544pt;}
.wsd_c02406{word-spacing:-0.128000pt;}
.wsa_c02406{word-spacing:-0.096000pt;}
.ws14_c02406{word-spacing:-0.051200pt;}
.wse_c02406{word-spacing:-0.025600pt;}
.ws7_c02406{word-spacing:-0.019200pt;}
.ws8_c02406{word-spacing:-0.006400pt;}
.ws3_c02406{word-spacing:0.000000pt;}
.wsc_c02406{word-spacing:0.006400pt;}
.ws1b_c02406{word-spacing:0.012800pt;}
.ws9_c02406{word-spacing:0.025600pt;}
.ws2_c02406{word-spacing:0.035136pt;}
.ws1_c02406{word-spacing:0.058560pt;}
.ws4_c02406{word-spacing:1.241600pt;}
.ws11_c02406{word-spacing:2.329600pt;}
.wsf_c02406{word-spacing:2.515200pt;}
.ws10_c02406{word-spacing:2.592000pt;}
.ws1c_c02406{word-spacing:5.728000pt;}
.ws24_c02406{word-spacing:6.604800pt;}
.ws25_c02406{word-spacing:6.649600pt;}
.ws23_c02406{word-spacing:6.668800pt;}
.ws13_c02406{word-spacing:8.588800pt;}
.ws12_c02406{word-spacing:8.620800pt;}
.ws19_c02406{word-spacing:10.764800pt;}
.ws17_c02406{word-spacing:10.777600pt;}
.ws21_c02406{word-spacing:10.784000pt;}
.ws1d_c02406{word-spacing:10.822400pt;}
.ws22_c02406{word-spacing:10.828800pt;}
.ws18_c02406{word-spacing:10.912000pt;}
.ws1e_c02406{word-spacing:10.924800pt;}
.ws1f_c02406{word-spacing:13.004800pt;}
.ws20_c02406{word-spacing:13.132800pt;}
.ws6_c02406{word-spacing:16.889600pt;}
.ws5_c02406{word-spacing:16.921600pt;}
.ws16_c02406{word-spacing:22.681600pt;}
.ws15_c02406{word-spacing:22.713600pt;}
._0_c02406{margin-left:-1.241600pt;}
.fs2_c02406{font-size:53.440000pt;}
.fs0_c02406{font-size:58.560000pt;}
.fs1_c02406{font-size:64.000000pt;}
.y0_c02406{bottom:0.000000pt;}
.y3_c02406{bottom:67.307451pt;}
.y2_c02406{bottom:101.226867pt;}
.y2f_c02406{bottom:130.025040pt;}
.y2e_c02406{bottom:149.384976pt;}
.y2d_c02406{bottom:168.744912pt;}
.y2c_c02406{bottom:188.185368pt;}
.y2b_c02406{bottom:207.545304pt;}
.y2a_c02406{bottom:226.985760pt;}
.y29_c02406{bottom:246.345696pt;}
.y28_c02406{bottom:265.786152pt;}
.y27_c02406{bottom:285.146088pt;}
.y26_c02406{bottom:304.506024pt;}
.y25_c02406{bottom:323.946480pt;}
.y24_c02406{bottom:343.306416pt;}
.y23_c02406{bottom:362.746872pt;}
.y22_c02406{bottom:382.106808pt;}
.y21_c02406{bottom:401.547264pt;}
.y20_c02406{bottom:420.907200pt;}
.y1f_c02406{bottom:441.467067pt;}
.y1e_c02406{bottom:462.587067pt;}
.y1d_c02406{bottom:483.787067pt;}
.y1c_c02406{bottom:504.907067pt;}
.y1b_c02406{bottom:526.107067pt;}
.y1a_c02406{bottom:547.227067pt;}
.y19_c02406{bottom:568.427067pt;}
.y18_c02406{bottom:589.547067pt;}
.y17_c02406{bottom:610.747067pt;}
.y16_c02406{bottom:631.867067pt;}
.y15_c02406{bottom:653.067067pt;}
.y14_c02406{bottom:674.187067pt;}
.y13_c02406{bottom:695.387067pt;}
.y12_c02406{bottom:716.507067pt;}
.y11_c02406{bottom:737.707067pt;}
.y10_c02406{bottom:758.827067pt;}
.yf_c02406{bottom:780.027067pt;}
.ye_c02406{bottom:801.147067pt;}
.yd_c02406{bottom:822.347067pt;}
.yc_c02406{bottom:843.467067pt;}
.yb_c02406{bottom:864.587067pt;}
.ya_c02406{bottom:885.787067pt;}
.y9_c02406{bottom:906.907067pt;}
.y8_c02406{bottom:928.107067pt;}
.y7_c02406{bottom:949.227067pt;}
.y6_c02406{bottom:970.427067pt;}
.y5_c02406{bottom:991.547067pt;}
.y4_c02406{bottom:1012.747067pt;}
.y1_c02406{bottom:1061.867067pt;}
.h3_c02406{height:39.030469pt;}
.h2_c02406{height:48.294844pt;}
.h5_c02406{height:57.473437pt;}
.h1_c02406{height:59.017500pt;}
.h4_c02406{height:62.812500pt;}
.h0_c02406{height:1122.666667pt;}
.w1_c02406{width:793.333333pt;}
.w0_c02406{width:793.626667pt;}
.x0_c02406{left:0.000000pt;}
.x1_c02406{left:113.440000pt;}
.x2_c02406{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0d37388cbd1e5ba34d06373.woff2')format("woff");}.ff1_c02407{font-family:ff1_c02407;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02407{font-family:ff2_c02407;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02407;src:url('chunks/assets/font_d1a87ce11a7fd56b54cf3987.woff2')format("woff");}.ff3_c02407{font-family:ff3_c02407;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02407;src:url('chunks/assets/font_1fbf3ded0a5619bb41c791f1.woff2')format("woff");}.ff4_c02407{font-family:ff4_c02407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02407;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff5_c02407{font-family:ff5_c02407;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_c02407;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c02407{font-family:ff6_c02407;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_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;}
.ls17_c02407{letter-spacing:-0.072000px;}
.ls15_c02407{letter-spacing:-0.057600px;}
.ls16_c02407{letter-spacing:-0.043200px;}
.ls18_c02407{letter-spacing:-0.036000px;}
.ls14_c02407{letter-spacing:0.000000px;}
.lsb_c02407{letter-spacing:0.006588px;}
.lsc_c02407{letter-spacing:0.013176px;}
.ls4_c02407{letter-spacing:0.014400px;}
.ls13_c02407{letter-spacing:0.019764px;}
.ls5_c02407{letter-spacing:0.021600px;}
.ls0_c02407{letter-spacing:0.026352px;}
.lsa_c02407{letter-spacing:0.032940px;}
.lsf_c02407{letter-spacing:0.039528px;}
.lse_c02407{letter-spacing:0.046116px;}
.ls1_c02407{letter-spacing:0.052704px;}
.ls8_c02407{letter-spacing:0.059292px;}
.lsd_c02407{letter-spacing:0.065880px;}
.ls6_c02407{letter-spacing:0.066132px;}
.ls12_c02407{letter-spacing:0.072468px;}
.ls11_c02407{letter-spacing:0.079056px;}
.ls3_c02407{letter-spacing:0.085644px;}
.ls9_c02407{letter-spacing:0.092232px;}
.ls2_c02407{letter-spacing:0.098820px;}
.ls10_c02407{letter-spacing:44.125308px;}
.ls7_c02407{letter-spacing:128.725308px;}
.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;}
}
.ws1_c02407{word-spacing:-16.529292px;}
.ws0_c02407{word-spacing:-0.158112px;}
.ws5_c02407{word-spacing:-0.006588px;}
.ws4_c02407{word-spacing:0.000000px;}
.ws6_c02407{word-spacing:0.006588px;}
.ws19_c02407{word-spacing:0.013176px;}
.ws1e_c02407{word-spacing:0.026352px;}
.ws14_c02407{word-spacing:0.032940px;}
.ws3_c02407{word-spacing:0.039528px;}
.ws12_c02407{word-spacing:0.046116px;}
.ws13_c02407{word-spacing:0.052704px;}
.wsc_c02407{word-spacing:0.059292px;}
.ws2_c02407{word-spacing:0.065880px;}
.wsd_c02407{word-spacing:0.072000px;}
.ws26_c02407{word-spacing:0.072468px;}
.ws10_c02407{word-spacing:0.079056px;}
.ws1a_c02407{word-spacing:0.092232px;}
.ws15_c02407{word-spacing:0.216000px;}
.ws9_c02407{word-spacing:0.223200px;}
.ws22_c02407{word-spacing:2.911896px;}
.ws21_c02407{word-spacing:2.925072px;}
.wse_c02407{word-spacing:2.938248px;}
.wsf_c02407{word-spacing:2.964600px;}
.ws28_c02407{word-spacing:3.294000px;}
.ws27_c02407{word-spacing:3.307176px;}
.ws20_c02407{word-spacing:4.315140px;}
.ws1f_c02407{word-spacing:4.354668px;}
.ws1d_c02407{word-spacing:7.259976px;}
.ws23_c02407{word-spacing:8.294292px;}
.ws24_c02407{word-spacing:8.307468px;}
.ws1c_c02407{word-spacing:8.650044px;}
.ws1b_c02407{word-spacing:8.682984px;}
.ws25_c02407{word-spacing:9.387900px;}
.ws18_c02407{word-spacing:10.105992px;}
.ws29_c02407{word-spacing:10.138932px;}
.wsb_c02407{word-spacing:12.596256px;}
.wsa_c02407{word-spacing:12.629196px;}
.ws17_c02407{word-spacing:13.709628px;}
.ws16_c02407{word-spacing:13.735980px;}
.ws8_c02407{word-spacing:19.778400px;}
.ws7_c02407{word-spacing:19.785600px;}
.ws11_c02407{word-spacing:28.822500px;}
._0_c02407{margin-left:-1.260000px;}
._1_c02407{width:1.065600px;}
.fc0_c02407{color:rgb(0,0,0);}
.fs2_c02407{font-size:60.120000px;}
.fs0_c02407{font-size:65.880000px;}
.fs1_c02407{font-size:72.000000px;}
.y0_c02407{bottom:0.000000px;}
.y3_c02407{bottom:75.720882px;}
.y2_c02407{bottom:113.880225px;}
.y34_c02407{bottom:138.809937px;}
.y33_c02407{bottom:160.680450px;}
.y32_c02407{bottom:183.267507px;}
.y31_c02407{bottom:205.047435px;}
.y30_c02407{bottom:226.827363px;}
.y2f_c02407{bottom:248.697876px;}
.y2e_c02407{bottom:270.477804px;}
.y2d_c02407{bottom:292.348317px;}
.y2c_c02407{bottom:314.128245px;}
.y2b_c02407{bottom:335.908173px;}
.y2a_c02407{bottom:357.778686px;}
.y29_c02407{bottom:379.558614px;}
.y28_c02407{bottom:401.429127px;}
.y27_c02407{bottom:423.209055px;}
.y26_c02407{bottom:445.079568px;}
.y25_c02407{bottom:466.859496px;}
.y24_c02407{bottom:488.730009px;}
.y23_c02407{bottom:510.509937px;}
.y22_c02407{bottom:532.380450px;}
.y21_c02407{bottom:554.160450px;}
.y20_c02407{bottom:575.940594px;}
.y1f_c02407{bottom:597.811107px;}
.y1e_c02407{bottom:619.500450px;}
.y1d_c02407{bottom:642.090450px;}
.y1c_c02407{bottom:664.770450px;}
.y1b_c02407{bottom:684.480450px;}
.y1a_c02407{bottom:703.470450px;}
.y19_c02407{bottom:722.460450px;}
.y18_c02407{bottom:741.360450px;}
.y17_c02407{bottom:760.530450px;}
.y16_c02407{bottom:781.050450px;}
.y15_c02407{bottom:800.040600px;}
.y14_c02407{bottom:819.030450px;}
.y13_c02407{bottom:838.020450px;}
.y12_c02407{bottom:857.010450px;}
.y11_c02407{bottom:875.910450px;}
.y10_c02407{bottom:894.900450px;}
.yf_c02407{bottom:913.890450px;}
.ye_c02407{bottom:932.880450px;}
.yd_c02407{bottom:952.050450px;}
.yc_c02407{bottom:972.570450px;}
.yb_c02407{bottom:991.470450px;}
.ya_c02407{bottom:1010.460450px;}
.y9_c02407{bottom:1029.630450px;}
.y8_c02407{bottom:1050.330450px;}
.y7_c02407{bottom:1071.030450px;}
.y6_c02407{bottom:1095.060450px;}
.y5_c02407{bottom:1117.650450px;}
.y4_c02407{bottom:1139.880450px;}
.y1_c02407{bottom:1194.600450px;}
.h3_c02407{height:43.909277px;}
.h2_c02407{height:54.331699px;}
.h5_c02407{height:64.657617px;}
.h1_c02407{height:66.394687px;}
.h6_c02407{height:70.664062px;}
.h4_c02407{height:72.562500px;}
.h0_c02407{height:1263.000000px;}
.w1_c02407{width:892.500000px;}
.w0_c02407{width:892.830000px;}
.x0_c02407{left:0.000000px;}
.x1_c02407{left:127.620000px;}
.x4_c02407{left:137.430000px;}
.x3_c02407{left:402.480000px;}
.x2_c02407{left:438.120675px;}
@media print{
.v0_c02407{vertical-align:0.000000pt;}
.ls17_c02407{letter-spacing:-0.064000pt;}
.ls15_c02407{letter-spacing:-0.051200pt;}
.ls16_c02407{letter-spacing:-0.038400pt;}
.ls18_c02407{letter-spacing:-0.032000pt;}
.ls14_c02407{letter-spacing:0.000000pt;}
.lsb_c02407{letter-spacing:0.005856pt;}
.lsc_c02407{letter-spacing:0.011712pt;}
.ls4_c02407{letter-spacing:0.012800pt;}
.ls13_c02407{letter-spacing:0.017568pt;}
.ls5_c02407{letter-spacing:0.019200pt;}
.ls0_c02407{letter-spacing:0.023424pt;}
.lsa_c02407{letter-spacing:0.029280pt;}
.lsf_c02407{letter-spacing:0.035136pt;}
.lse_c02407{letter-spacing:0.040992pt;}
.ls1_c02407{letter-spacing:0.046848pt;}
.ls8_c02407{letter-spacing:0.052704pt;}
.lsd_c02407{letter-spacing:0.058560pt;}
.ls6_c02407{letter-spacing:0.058784pt;}
.ls12_c02407{letter-spacing:0.064416pt;}
.ls11_c02407{letter-spacing:0.070272pt;}
.ls3_c02407{letter-spacing:0.076128pt;}
.ls9_c02407{letter-spacing:0.081984pt;}
.ls2_c02407{letter-spacing:0.087840pt;}
.ls10_c02407{letter-spacing:39.222496pt;}
.ls7_c02407{letter-spacing:114.422496pt;}
.ws1_c02407{word-spacing:-14.692704pt;}
.ws0_c02407{word-spacing:-0.140544pt;}
.ws5_c02407{word-spacing:-0.005856pt;}
.ws4_c02407{word-spacing:0.000000pt;}
.ws6_c02407{word-spacing:0.005856pt;}
.ws19_c02407{word-spacing:0.011712pt;}
.ws1e_c02407{word-spacing:0.023424pt;}
.ws14_c02407{word-spacing:0.029280pt;}
.ws3_c02407{word-spacing:0.035136pt;}
.ws12_c02407{word-spacing:0.040992pt;}
.ws13_c02407{word-spacing:0.046848pt;}
.wsc_c02407{word-spacing:0.052704pt;}
.ws2_c02407{word-spacing:0.058560pt;}
.wsd_c02407{word-spacing:0.064000pt;}
.ws26_c02407{word-spacing:0.064416pt;}
.ws10_c02407{word-spacing:0.070272pt;}
.ws1a_c02407{word-spacing:0.081984pt;}
.ws15_c02407{word-spacing:0.192000pt;}
.ws9_c02407{word-spacing:0.198400pt;}
.ws22_c02407{word-spacing:2.588352pt;}
.ws21_c02407{word-spacing:2.600064pt;}
.wse_c02407{word-spacing:2.611776pt;}
.wsf_c02407{word-spacing:2.635200pt;}
.ws28_c02407{word-spacing:2.928000pt;}
.ws27_c02407{word-spacing:2.939712pt;}
.ws20_c02407{word-spacing:3.835680pt;}
.ws1f_c02407{word-spacing:3.870816pt;}
.ws1d_c02407{word-spacing:6.453312pt;}
.ws23_c02407{word-spacing:7.372704pt;}
.ws24_c02407{word-spacing:7.384416pt;}
.ws1c_c02407{word-spacing:7.688928pt;}
.ws1b_c02407{word-spacing:7.718208pt;}
.ws25_c02407{word-spacing:8.344800pt;}
.ws18_c02407{word-spacing:8.983104pt;}
.ws29_c02407{word-spacing:9.012384pt;}
.wsb_c02407{word-spacing:11.196672pt;}
.wsa_c02407{word-spacing:11.225952pt;}
.ws17_c02407{word-spacing:12.186336pt;}
.ws16_c02407{word-spacing:12.209760pt;}
.ws8_c02407{word-spacing:17.580800pt;}
.ws7_c02407{word-spacing:17.587200pt;}
.ws11_c02407{word-spacing:25.620000pt;}
._0_c02407{margin-left:-1.120000pt;}
._1_c02407{width:0.947200pt;}
.fs2_c02407{font-size:53.440000pt;}
.fs0_c02407{font-size:58.560000pt;}
.fs1_c02407{font-size:64.000000pt;}
.y0_c02407{bottom:0.000000pt;}
.y3_c02407{bottom:67.307451pt;}
.y2_c02407{bottom:101.226867pt;}
.y34_c02407{bottom:123.386611pt;}
.y33_c02407{bottom:142.827067pt;}
.y32_c02407{bottom:162.904451pt;}
.y31_c02407{bottom:182.264387pt;}
.y30_c02407{bottom:201.624323pt;}
.y2f_c02407{bottom:221.064779pt;}
.y2e_c02407{bottom:240.424715pt;}
.y2d_c02407{bottom:259.865171pt;}
.y2c_c02407{bottom:279.225107pt;}
.y2b_c02407{bottom:298.585043pt;}
.y2a_c02407{bottom:318.025499pt;}
.y29_c02407{bottom:337.385435pt;}
.y28_c02407{bottom:356.825891pt;}
.y27_c02407{bottom:376.185827pt;}
.y26_c02407{bottom:395.626283pt;}
.y25_c02407{bottom:414.986219pt;}
.y24_c02407{bottom:434.426675pt;}
.y23_c02407{bottom:453.786611pt;}
.y22_c02407{bottom:473.227067pt;}
.y21_c02407{bottom:492.587067pt;}
.y20_c02407{bottom:511.947195pt;}
.y1f_c02407{bottom:531.387651pt;}
.y1e_c02407{bottom:550.667067pt;}
.y1d_c02407{bottom:570.747067pt;}
.y1c_c02407{bottom:590.907067pt;}
.y1b_c02407{bottom:608.427067pt;}
.y1a_c02407{bottom:625.307067pt;}
.y19_c02407{bottom:642.187067pt;}
.y18_c02407{bottom:658.987067pt;}
.y17_c02407{bottom:676.027067pt;}
.y16_c02407{bottom:694.267067pt;}
.y15_c02407{bottom:711.147200pt;}
.y14_c02407{bottom:728.027067pt;}
.y13_c02407{bottom:744.907067pt;}
.y12_c02407{bottom:761.787067pt;}
.y11_c02407{bottom:778.587067pt;}
.y10_c02407{bottom:795.467067pt;}
.yf_c02407{bottom:812.347067pt;}
.ye_c02407{bottom:829.227067pt;}
.yd_c02407{bottom:846.267067pt;}
.yc_c02407{bottom:864.507067pt;}
.yb_c02407{bottom:881.307067pt;}
.ya_c02407{bottom:898.187067pt;}
.y9_c02407{bottom:915.227067pt;}
.y8_c02407{bottom:933.627067pt;}
.y7_c02407{bottom:952.027067pt;}
.y6_c02407{bottom:973.387067pt;}
.y5_c02407{bottom:993.467067pt;}
.y4_c02407{bottom:1013.227067pt;}
.y1_c02407{bottom:1061.867067pt;}
.h3_c02407{height:39.030469pt;}
.h2_c02407{height:48.294844pt;}
.h5_c02407{height:57.473437pt;}
.h1_c02407{height:59.017500pt;}
.h6_c02407{height:62.812500pt;}
.h4_c02407{height:64.500000pt;}
.h0_c02407{height:1122.666667pt;}
.w1_c02407{width:793.333333pt;}
.w0_c02407{width:793.626667pt;}
.x0_c02407{left:0.000000pt;}
.x1_c02407{left:113.440000pt;}
.x4_c02407{left:122.160000pt;}
.x3_c02407{left:357.760000pt;}
.x2_c02407{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8db14cd07eff217b4376b62.woff2')format("woff");}.ff1_c02408{font-family:ff1_c02408;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02408{font-family:ff2_c02408;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02408;src:url('chunks/assets/font_ec6d7b252ba0223683a85c23.woff2')format("woff");}.ff3_c02408{font-family:ff3_c02408;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02408;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c02408{font-family:ff4_c02408;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02408;src:url('chunks/assets/font_f429e7ed1d736dc8c44256a4.woff2')format("woff");}.ff5_c02408{font-family:ff5_c02408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c02408{letter-spacing:-0.050400px;}
.ls15_c02408{letter-spacing:-0.043200px;}
.ls16_c02408{letter-spacing:-0.036000px;}
.ls13_c02408{letter-spacing:-0.028800px;}
.ls11_c02408{letter-spacing:-0.021600px;}
.ls14_c02408{letter-spacing:-0.014400px;}
.ls10_c02408{letter-spacing:-0.007200px;}
.lse_c02408{letter-spacing:0.000000px;}
.ls5_c02408{letter-spacing:0.007200px;}
.ls3_c02408{letter-spacing:0.014400px;}
.ls8_c02408{letter-spacing:0.021600px;}
.ls0_c02408{letter-spacing:0.026352px;}
.ls6_c02408{letter-spacing:0.028800px;}
.lsb_c02408{letter-spacing:0.036000px;}
.ls4_c02408{letter-spacing:0.043200px;}
.ls9_c02408{letter-spacing:0.050400px;}
.ls1_c02408{letter-spacing:0.052704px;}
.ls7_c02408{letter-spacing:0.057600px;}
.lsc_c02408{letter-spacing:0.064800px;}
.lsd_c02408{letter-spacing:0.072468px;}
.ls2_c02408{letter-spacing:0.079056px;}
.lsa_c02408{letter-spacing:0.085644px;}
.lsf_c02408{letter-spacing:0.092232px;}
.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;}
}
.ws22_c02408{word-spacing:-0.165600px;}
.ws0_c02408{word-spacing:-0.158112px;}
.wsf_c02408{word-spacing:-0.108000px;}
.ws23_c02408{word-spacing:-0.100800px;}
.ws1c_c02408{word-spacing:-0.093600px;}
.ws1e_c02408{word-spacing:-0.072000px;}
.ws21_c02408{word-spacing:-0.064800px;}
.ws1f_c02408{word-spacing:-0.057600px;}
.ws24_c02408{word-spacing:-0.036000px;}
.ws1d_c02408{word-spacing:-0.028800px;}
.ws10_c02408{word-spacing:-0.021600px;}
.ws5_c02408{word-spacing:-0.014400px;}
.ws19_c02408{word-spacing:-0.007200px;}
.ws3_c02408{word-spacing:0.000000px;}
.ws1a_c02408{word-spacing:0.006588px;}
.ws6_c02408{word-spacing:0.007200px;}
.ws4_c02408{word-spacing:0.013176px;}
.ws25_c02408{word-spacing:0.019764px;}
.ws1b_c02408{word-spacing:0.036000px;}
.ws2_c02408{word-spacing:0.039528px;}
.ws1_c02408{word-spacing:0.065880px;}
.ws20_c02408{word-spacing:0.216000px;}
.ws13_c02408{word-spacing:0.691200px;}
.ws12_c02408{word-spacing:0.734400px;}
.ws11_c02408{word-spacing:0.748800px;}
.ws16_c02408{word-spacing:1.749600px;}
.wsc_c02408{word-spacing:3.088800px;}
.wsd_c02408{word-spacing:3.139200px;}
.wse_c02408{word-spacing:3.290400px;}
.ws26_c02408{word-spacing:3.448800px;}
.ws17_c02408{word-spacing:8.114400px;}
.ws18_c02408{word-spacing:8.287200px;}
.ws8_c02408{word-spacing:9.554400px;}
.ws7_c02408{word-spacing:9.741600px;}
.ws28_c02408{word-spacing:25.113600px;}
.ws27_c02408{word-spacing:25.164000px;}
.wsa_c02408{word-spacing:26.488800px;}
.ws9_c02408{word-spacing:26.632800px;}
.wsb_c02408{word-spacing:26.647200px;}
.ws14_c02408{word-spacing:46.994400px;}
.ws15_c02408{word-spacing:47.138400px;}
._0_c02408{margin-left:-1.101600px;}
._1_c02408{width:1.008000px;}
.fc0_c02408{color:rgb(0,0,0);}
.fs0_c02408{font-size:65.880000px;}
.fs1_c02408{font-size:72.000000px;}
.y0_c02408{bottom:0.000000px;}
.y3_c02408{bottom:75.720882px;}
.y2_c02408{bottom:113.880225px;}
.y32_c02408{bottom:146.819937px;}
.y31_c02408{bottom:168.690450px;}
.y30_c02408{bottom:191.820450px;}
.y2f_c02408{bottom:215.580450px;}
.y2e_c02408{bottom:239.430450px;}
.y2d_c02408{bottom:263.190450px;}
.y2c_c02408{bottom:286.860450px;}
.y2b_c02408{bottom:310.800450px;}
.y2a_c02408{bottom:334.560450px;}
.y29_c02408{bottom:358.410450px;}
.y28_c02408{bottom:381.990450px;}
.y27_c02408{bottom:406.110600px;}
.y26_c02408{bottom:428.790600px;}
.y25_c02408{bottom:448.860450px;}
.y24_c02408{bottom:469.560450px;}
.y23_c02408{bottom:490.260450px;}
.y22_c02408{bottom:510.960450px;}
.y21_c02408{bottom:531.660450px;}
.y20_c02408{bottom:552.360450px;}
.y1f_c02408{bottom:572.880450px;}
.y1e_c02408{bottom:593.760450px;}
.y1d_c02408{bottom:614.460450px;}
.y1c_c02408{bottom:635.160450px;}
.y1b_c02408{bottom:655.860450px;}
.y1a_c02408{bottom:676.560450px;}
.y19_c02408{bottom:697.260450px;}
.y18_c02408{bottom:717.780450px;}
.y17_c02408{bottom:741.810450px;}
.y16_c02408{bottom:764.490450px;}
.y15_c02408{bottom:784.560450px;}
.y14_c02408{bottom:805.260450px;}
.y13_c02408{bottom:825.960450px;}
.y12_c02408{bottom:846.660450px;}
.y11_c02408{bottom:867.360600px;}
.y10_c02408{bottom:888.060450px;}
.yf_c02408{bottom:908.760450px;}
.ye_c02408{bottom:929.460450px;}
.yd_c02408{bottom:950.160450px;}
.yc_c02408{bottom:970.860450px;}
.yb_c02408{bottom:991.560450px;}
.ya_c02408{bottom:1012.080450px;}
.y9_c02408{bottom:1032.960450px;}
.y8_c02408{bottom:1053.660450px;}
.y7_c02408{bottom:1074.360450px;}
.y6_c02408{bottom:1094.880450px;}
.y5_c02408{bottom:1118.820450px;}
.y4_c02408{bottom:1141.410585px;}
.y1_c02408{bottom:1194.600450px;}
.h3_c02408{height:43.909277px;}
.h2_c02408{height:54.331699px;}
.h6_c02408{height:64.657617px;}
.h1_c02408{height:66.394687px;}
.h5_c02408{height:70.664062px;}
.h4_c02408{height:72.562500px;}
.h0_c02408{height:1263.000000px;}
.w1_c02408{width:892.500000px;}
.w0_c02408{width:892.830000px;}
.x0_c02408{left:0.000000px;}
.x1_c02408{left:127.620000px;}
.x2_c02408{left:438.120675px;}
@media print{
.v0_c02408{vertical-align:0.000000pt;}
.ls12_c02408{letter-spacing:-0.044800pt;}
.ls15_c02408{letter-spacing:-0.038400pt;}
.ls16_c02408{letter-spacing:-0.032000pt;}
.ls13_c02408{letter-spacing:-0.025600pt;}
.ls11_c02408{letter-spacing:-0.019200pt;}
.ls14_c02408{letter-spacing:-0.012800pt;}
.ls10_c02408{letter-spacing:-0.006400pt;}
.lse_c02408{letter-spacing:0.000000pt;}
.ls5_c02408{letter-spacing:0.006400pt;}
.ls3_c02408{letter-spacing:0.012800pt;}
.ls8_c02408{letter-spacing:0.019200pt;}
.ls0_c02408{letter-spacing:0.023424pt;}
.ls6_c02408{letter-spacing:0.025600pt;}
.lsb_c02408{letter-spacing:0.032000pt;}
.ls4_c02408{letter-spacing:0.038400pt;}
.ls9_c02408{letter-spacing:0.044800pt;}
.ls1_c02408{letter-spacing:0.046848pt;}
.ls7_c02408{letter-spacing:0.051200pt;}
.lsc_c02408{letter-spacing:0.057600pt;}
.lsd_c02408{letter-spacing:0.064416pt;}
.ls2_c02408{letter-spacing:0.070272pt;}
.lsa_c02408{letter-spacing:0.076128pt;}
.lsf_c02408{letter-spacing:0.081984pt;}
.ws22_c02408{word-spacing:-0.147200pt;}
.ws0_c02408{word-spacing:-0.140544pt;}
.wsf_c02408{word-spacing:-0.096000pt;}
.ws23_c02408{word-spacing:-0.089600pt;}
.ws1c_c02408{word-spacing:-0.083200pt;}
.ws1e_c02408{word-spacing:-0.064000pt;}
.ws21_c02408{word-spacing:-0.057600pt;}
.ws1f_c02408{word-spacing:-0.051200pt;}
.ws24_c02408{word-spacing:-0.032000pt;}
.ws1d_c02408{word-spacing:-0.025600pt;}
.ws10_c02408{word-spacing:-0.019200pt;}
.ws5_c02408{word-spacing:-0.012800pt;}
.ws19_c02408{word-spacing:-0.006400pt;}
.ws3_c02408{word-spacing:0.000000pt;}
.ws1a_c02408{word-spacing:0.005856pt;}
.ws6_c02408{word-spacing:0.006400pt;}
.ws4_c02408{word-spacing:0.011712pt;}
.ws25_c02408{word-spacing:0.017568pt;}
.ws1b_c02408{word-spacing:0.032000pt;}
.ws2_c02408{word-spacing:0.035136pt;}
.ws1_c02408{word-spacing:0.058560pt;}
.ws20_c02408{word-spacing:0.192000pt;}
.ws13_c02408{word-spacing:0.614400pt;}
.ws12_c02408{word-spacing:0.652800pt;}
.ws11_c02408{word-spacing:0.665600pt;}
.ws16_c02408{word-spacing:1.555200pt;}
.wsc_c02408{word-spacing:2.745600pt;}
.wsd_c02408{word-spacing:2.790400pt;}
.wse_c02408{word-spacing:2.924800pt;}
.ws26_c02408{word-spacing:3.065600pt;}
.ws17_c02408{word-spacing:7.212800pt;}
.ws18_c02408{word-spacing:7.366400pt;}
.ws8_c02408{word-spacing:8.492800pt;}
.ws7_c02408{word-spacing:8.659200pt;}
.ws28_c02408{word-spacing:22.323200pt;}
.ws27_c02408{word-spacing:22.368000pt;}
.wsa_c02408{word-spacing:23.545600pt;}
.ws9_c02408{word-spacing:23.673600pt;}
.wsb_c02408{word-spacing:23.686400pt;}
.ws14_c02408{word-spacing:41.772800pt;}
.ws15_c02408{word-spacing:41.900800pt;}
._0_c02408{margin-left:-0.979200pt;}
._1_c02408{width:0.896000pt;}
.fs0_c02408{font-size:58.560000pt;}
.fs1_c02408{font-size:64.000000pt;}
.y0_c02408{bottom:0.000000pt;}
.y3_c02408{bottom:67.307451pt;}
.y2_c02408{bottom:101.226867pt;}
.y32_c02408{bottom:130.506611pt;}
.y31_c02408{bottom:149.947067pt;}
.y30_c02408{bottom:170.507067pt;}
.y2f_c02408{bottom:191.627067pt;}
.y2e_c02408{bottom:212.827067pt;}
.y2d_c02408{bottom:233.947067pt;}
.y2c_c02408{bottom:254.987067pt;}
.y2b_c02408{bottom:276.267067pt;}
.y2a_c02408{bottom:297.387067pt;}
.y29_c02408{bottom:318.587067pt;}
.y28_c02408{bottom:339.547067pt;}
.y27_c02408{bottom:360.987200pt;}
.y26_c02408{bottom:381.147200pt;}
.y25_c02408{bottom:398.987067pt;}
.y24_c02408{bottom:417.387067pt;}
.y23_c02408{bottom:435.787067pt;}
.y22_c02408{bottom:454.187067pt;}
.y21_c02408{bottom:472.587067pt;}
.y20_c02408{bottom:490.987067pt;}
.y1f_c02408{bottom:509.227067pt;}
.y1e_c02408{bottom:527.787067pt;}
.y1d_c02408{bottom:546.187067pt;}
.y1c_c02408{bottom:564.587067pt;}
.y1b_c02408{bottom:582.987067pt;}
.y1a_c02408{bottom:601.387067pt;}
.y19_c02408{bottom:619.787067pt;}
.y18_c02408{bottom:638.027067pt;}
.y17_c02408{bottom:659.387067pt;}
.y16_c02408{bottom:679.547067pt;}
.y15_c02408{bottom:697.387067pt;}
.y14_c02408{bottom:715.787067pt;}
.y13_c02408{bottom:734.187067pt;}
.y12_c02408{bottom:752.587067pt;}
.y11_c02408{bottom:770.987200pt;}
.y10_c02408{bottom:789.387067pt;}
.yf_c02408{bottom:807.787067pt;}
.ye_c02408{bottom:826.187067pt;}
.yd_c02408{bottom:844.587067pt;}
.yc_c02408{bottom:862.987067pt;}
.yb_c02408{bottom:881.387067pt;}
.ya_c02408{bottom:899.627067pt;}
.y9_c02408{bottom:918.187067pt;}
.y8_c02408{bottom:936.587067pt;}
.y7_c02408{bottom:954.987067pt;}
.y6_c02408{bottom:973.227067pt;}
.y5_c02408{bottom:994.507067pt;}
.y4_c02408{bottom:1014.587187pt;}
.y1_c02408{bottom:1061.867067pt;}
.h3_c02408{height:39.030469pt;}
.h2_c02408{height:48.294844pt;}
.h6_c02408{height:57.473437pt;}
.h1_c02408{height:59.017500pt;}
.h5_c02408{height:62.812500pt;}
.h4_c02408{height:64.500000pt;}
.h0_c02408{height:1122.666667pt;}
.w1_c02408{width:793.333333pt;}
.w0_c02408{width:793.626667pt;}
.x0_c02408{left:0.000000pt;}
.x1_c02408{left:113.440000pt;}
.x2_c02408{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd01cb2d5a01367f05feb875.woff2')format("woff");}.ff1_c02409{font-family:ff1_c02409;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02409;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02409{font-family:ff2_c02409;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02409;src:url('chunks/assets/font_56a2ab4825799feb5a21366c.woff2')format("woff");}.ff3_c02409{font-family:ff3_c02409;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02409;src:url('chunks/assets/font_b51c55088a717bc5c4a77c37.woff2')format("woff");}.ff4_c02409{font-family:ff4_c02409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c02409{letter-spacing:-0.043200px;}
.ls15_c02409{letter-spacing:-0.036000px;}
.ls16_c02409{letter-spacing:-0.014400px;}
.ls13_c02409{letter-spacing:-0.013176px;}
.ls17_c02409{letter-spacing:-0.007200px;}
.ls10_c02409{letter-spacing:0.000000px;}
.ls7_c02409{letter-spacing:0.007200px;}
.ls8_c02409{letter-spacing:0.014400px;}
.ls4_c02409{letter-spacing:0.021600px;}
.ls0_c02409{letter-spacing:0.026352px;}
.lsb_c02409{letter-spacing:0.028800px;}
.ls12_c02409{letter-spacing:0.032940px;}
.lsc_c02409{letter-spacing:0.036000px;}
.ls5_c02409{letter-spacing:0.043200px;}
.ls3_c02409{letter-spacing:0.050400px;}
.ls1_c02409{letter-spacing:0.052704px;}
.ls6_c02409{letter-spacing:0.057600px;}
.lse_c02409{letter-spacing:0.064800px;}
.ls9_c02409{letter-spacing:0.072000px;}
.lsa_c02409{letter-spacing:0.072468px;}
.lsd_c02409{letter-spacing:0.079200px;}
.ls11_c02409{letter-spacing:0.092232px;}
.lsf_c02409{letter-spacing:0.093600px;}
.ls2_c02409{letter-spacing:0.144936px;}
.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;}
}
.ws1c_c02409{word-spacing:-0.223200px;}
.ws10_c02409{word-spacing:-0.201600px;}
.ws24_c02409{word-spacing:-0.165600px;}
.ws0_c02409{word-spacing:-0.158112px;}
.wsa_c02409{word-spacing:-0.129600px;}
.ws12_c02409{word-spacing:-0.115200px;}
.wse_c02409{word-spacing:-0.086400px;}
.ws13_c02409{word-spacing:-0.057600px;}
.ws6_c02409{word-spacing:-0.052704px;}
.ws1b_c02409{word-spacing:-0.036000px;}
.ws15_c02409{word-spacing:-0.028800px;}
.wsd_c02409{word-spacing:-0.014400px;}
.wsc_c02409{word-spacing:-0.007200px;}
.ws3_c02409{word-spacing:0.000000px;}
.ws11_c02409{word-spacing:0.014400px;}
.ws14_c02409{word-spacing:0.019764px;}
.ws2_c02409{word-spacing:0.039528px;}
.ws4_c02409{word-spacing:0.059292px;}
.ws1_c02409{word-spacing:0.065880px;}
.ws5_c02409{word-spacing:0.105408px;}
.wsf_c02409{word-spacing:0.396000px;}
.wsb_c02409{word-spacing:0.403200px;}
.ws1a_c02409{word-spacing:0.612000px;}
.ws29_c02409{word-spacing:2.390400px;}
.ws2a_c02409{word-spacing:2.520000px;}
.ws1e_c02409{word-spacing:5.983200px;}
.ws1d_c02409{word-spacing:6.098400px;}
.ws7_c02409{word-spacing:6.429600px;}
.ws8_c02409{word-spacing:6.458400px;}
.ws9_c02409{word-spacing:15.796800px;}
.ws26_c02409{word-spacing:16.826400px;}
.ws25_c02409{word-spacing:16.840800px;}
.ws20_c02409{word-spacing:18.648000px;}
.ws21_c02409{word-spacing:18.885600px;}
.ws1f_c02409{word-spacing:19.008000px;}
.ws18_c02409{word-spacing:25.070400px;}
.ws19_c02409{word-spacing:25.164000px;}
.ws17_c02409{word-spacing:25.804800px;}
.ws16_c02409{word-spacing:25.812000px;}
.ws27_c02409{word-spacing:27.230400px;}
.ws28_c02409{word-spacing:27.367200px;}
.ws23_c02409{word-spacing:36.482400px;}
.ws22_c02409{word-spacing:36.727200px;}
._1_c02409{margin-left:-1.139724px;}
._0_c02409{width:1.324188px;}
.fc0_c02409{color:rgb(0,0,0);}
.fs2_c02409{font-size:47.880000px;}
.fs0_c02409{font-size:65.880000px;}
.fs1_c02409{font-size:72.000000px;}
.y0_c02409{bottom:0.000000px;}
.y3_c02409{bottom:75.720882px;}
.y2_c02409{bottom:113.880225px;}
.y31_c02409{bottom:152.488467px;}
.y30_c02409{bottom:174.268395px;}
.y2f_c02409{bottom:196.138908px;}
.y2e_c02409{bottom:217.918836px;}
.y2d_c02409{bottom:239.789349px;}
.y2c_c02409{bottom:261.569277px;}
.y2b_c02409{bottom:283.439790px;}
.y2a_c02409{bottom:305.219718px;}
.y29_c02409{bottom:327.090231px;}
.y28_c02409{bottom:348.870159px;}
.y27_c02409{bottom:370.650087px;}
.y26_c02409{bottom:392.520600px;}
.y25_c02409{bottom:415.110600px;}
.y24_c02409{bottom:434.460600px;}
.y23_c02409{bottom:455.160450px;}
.y22_c02409{bottom:475.860600px;}
.y21_c02409{bottom:496.560450px;}
.y20_c02409{bottom:517.260450px;}
.y1f_c02409{bottom:537.960450px;}
.y1e_c02409{bottom:558.570450px;}
.y1d_c02409{bottom:579.090450px;}
.y1c_c02409{bottom:599.970450px;}
.y1b_c02409{bottom:620.670450px;}
.y1a_c02409{bottom:641.370450px;}
.y19_c02409{bottom:662.070450px;}
.y18_c02409{bottom:682.770450px;}
.y17_c02409{bottom:703.470450px;}
.y16_c02409{bottom:724.170450px;}
.y15_c02409{bottom:744.690450px;}
.y14_c02409{bottom:768.720450px;}
.y13_c02409{bottom:791.400009px;}
.y12_c02409{bottom:813.179937px;}
.y11_c02409{bottom:835.050450px;}
.y10_c02409{bottom:858.180450px;}
.yf_c02409{bottom:881.940450px;}
.ye_c02409{bottom:905.790450px;}
.yd_c02409{bottom:929.370450px;}
.yc_c02409{bottom:953.310450px;}
.yb_c02409{bottom:977.160450px;}
.ya_c02409{bottom:1000.740450px;}
.y9_c02409{bottom:1025.490450px;}
.y8_c02409{bottom:1049.340450px;}
.y7_c02409{bottom:1073.100450px;}
.y6_c02409{bottom:1097.130450px;}
.y5_c02409{bottom:1119.721242px;}
.y4_c02409{bottom:1141.410585px;}
.y1_c02409{bottom:1194.600450px;}
.h3_c02409{height:43.909277px;}
.h2_c02409{height:54.331699px;}
.h4_c02409{height:64.657617px;}
.h1_c02409{height:66.394687px;}
.h5_c02409{height:70.664062px;}
.h6_c02409{height:72.562500px;}
.h0_c02409{height:1263.000000px;}
.w1_c02409{width:892.500000px;}
.w0_c02409{width:892.830000px;}
.x0_c02409{left:0.000000px;}
.x1_c02409{left:127.620000px;}
.x2_c02409{left:438.120675px;}
@media print{
.v0_c02409{vertical-align:0.000000pt;}
.ls14_c02409{letter-spacing:-0.038400pt;}
.ls15_c02409{letter-spacing:-0.032000pt;}
.ls16_c02409{letter-spacing:-0.012800pt;}
.ls13_c02409{letter-spacing:-0.011712pt;}
.ls17_c02409{letter-spacing:-0.006400pt;}
.ls10_c02409{letter-spacing:0.000000pt;}
.ls7_c02409{letter-spacing:0.006400pt;}
.ls8_c02409{letter-spacing:0.012800pt;}
.ls4_c02409{letter-spacing:0.019200pt;}
.ls0_c02409{letter-spacing:0.023424pt;}
.lsb_c02409{letter-spacing:0.025600pt;}
.ls12_c02409{letter-spacing:0.029280pt;}
.lsc_c02409{letter-spacing:0.032000pt;}
.ls5_c02409{letter-spacing:0.038400pt;}
.ls3_c02409{letter-spacing:0.044800pt;}
.ls1_c02409{letter-spacing:0.046848pt;}
.ls6_c02409{letter-spacing:0.051200pt;}
.lse_c02409{letter-spacing:0.057600pt;}
.ls9_c02409{letter-spacing:0.064000pt;}
.lsa_c02409{letter-spacing:0.064416pt;}
.lsd_c02409{letter-spacing:0.070400pt;}
.ls11_c02409{letter-spacing:0.081984pt;}
.lsf_c02409{letter-spacing:0.083200pt;}
.ls2_c02409{letter-spacing:0.128832pt;}
.ws1c_c02409{word-spacing:-0.198400pt;}
.ws10_c02409{word-spacing:-0.179200pt;}
.ws24_c02409{word-spacing:-0.147200pt;}
.ws0_c02409{word-spacing:-0.140544pt;}
.wsa_c02409{word-spacing:-0.115200pt;}
.ws12_c02409{word-spacing:-0.102400pt;}
.wse_c02409{word-spacing:-0.076800pt;}
.ws13_c02409{word-spacing:-0.051200pt;}
.ws6_c02409{word-spacing:-0.046848pt;}
.ws1b_c02409{word-spacing:-0.032000pt;}
.ws15_c02409{word-spacing:-0.025600pt;}
.wsd_c02409{word-spacing:-0.012800pt;}
.wsc_c02409{word-spacing:-0.006400pt;}
.ws3_c02409{word-spacing:0.000000pt;}
.ws11_c02409{word-spacing:0.012800pt;}
.ws14_c02409{word-spacing:0.017568pt;}
.ws2_c02409{word-spacing:0.035136pt;}
.ws4_c02409{word-spacing:0.052704pt;}
.ws1_c02409{word-spacing:0.058560pt;}
.ws5_c02409{word-spacing:0.093696pt;}
.wsf_c02409{word-spacing:0.352000pt;}
.wsb_c02409{word-spacing:0.358400pt;}
.ws1a_c02409{word-spacing:0.544000pt;}
.ws29_c02409{word-spacing:2.124800pt;}
.ws2a_c02409{word-spacing:2.240000pt;}
.ws1e_c02409{word-spacing:5.318400pt;}
.ws1d_c02409{word-spacing:5.420800pt;}
.ws7_c02409{word-spacing:5.715200pt;}
.ws8_c02409{word-spacing:5.740800pt;}
.ws9_c02409{word-spacing:14.041600pt;}
.ws26_c02409{word-spacing:14.956800pt;}
.ws25_c02409{word-spacing:14.969600pt;}
.ws20_c02409{word-spacing:16.576000pt;}
.ws21_c02409{word-spacing:16.787200pt;}
.ws1f_c02409{word-spacing:16.896000pt;}
.ws18_c02409{word-spacing:22.284800pt;}
.ws19_c02409{word-spacing:22.368000pt;}
.ws17_c02409{word-spacing:22.937600pt;}
.ws16_c02409{word-spacing:22.944000pt;}
.ws27_c02409{word-spacing:24.204800pt;}
.ws28_c02409{word-spacing:24.326400pt;}
.ws23_c02409{word-spacing:32.428800pt;}
.ws22_c02409{word-spacing:32.646400pt;}
._1_c02409{margin-left:-1.013088pt;}
._0_c02409{width:1.177056pt;}
.fs2_c02409{font-size:42.560000pt;}
.fs0_c02409{font-size:58.560000pt;}
.fs1_c02409{font-size:64.000000pt;}
.y0_c02409{bottom:0.000000pt;}
.y3_c02409{bottom:67.307451pt;}
.y2_c02409{bottom:101.226867pt;}
.y31_c02409{bottom:135.545304pt;}
.y30_c02409{bottom:154.905240pt;}
.y2f_c02409{bottom:174.345696pt;}
.y2e_c02409{bottom:193.705632pt;}
.y2d_c02409{bottom:213.146088pt;}
.y2c_c02409{bottom:232.506024pt;}
.y2b_c02409{bottom:251.946480pt;}
.y2a_c02409{bottom:271.306416pt;}
.y29_c02409{bottom:290.746872pt;}
.y28_c02409{bottom:310.106808pt;}
.y27_c02409{bottom:329.466744pt;}
.y26_c02409{bottom:348.907200pt;}
.y25_c02409{bottom:368.987200pt;}
.y24_c02409{bottom:386.187200pt;}
.y23_c02409{bottom:404.587067pt;}
.y22_c02409{bottom:422.987200pt;}
.y21_c02409{bottom:441.387067pt;}
.y20_c02409{bottom:459.787067pt;}
.y1f_c02409{bottom:478.187067pt;}
.y1e_c02409{bottom:496.507067pt;}
.y1d_c02409{bottom:514.747067pt;}
.y1c_c02409{bottom:533.307067pt;}
.y1b_c02409{bottom:551.707067pt;}
.y1a_c02409{bottom:570.107067pt;}
.y19_c02409{bottom:588.507067pt;}
.y18_c02409{bottom:606.907067pt;}
.y17_c02409{bottom:625.307067pt;}
.y16_c02409{bottom:643.707067pt;}
.y15_c02409{bottom:661.947067pt;}
.y14_c02409{bottom:683.307067pt;}
.y13_c02409{bottom:703.466675pt;}
.y12_c02409{bottom:722.826611pt;}
.y11_c02409{bottom:742.267067pt;}
.y10_c02409{bottom:762.827067pt;}
.yf_c02409{bottom:783.947067pt;}
.ye_c02409{bottom:805.147067pt;}
.yd_c02409{bottom:826.107067pt;}
.yc_c02409{bottom:847.387067pt;}
.yb_c02409{bottom:868.587067pt;}
.ya_c02409{bottom:889.547067pt;}
.y9_c02409{bottom:911.547067pt;}
.y8_c02409{bottom:932.747067pt;}
.y7_c02409{bottom:953.867067pt;}
.y6_c02409{bottom:975.227067pt;}
.y5_c02409{bottom:995.307771pt;}
.y4_c02409{bottom:1014.587187pt;}
.y1_c02409{bottom:1061.867067pt;}
.h3_c02409{height:39.030469pt;}
.h2_c02409{height:48.294844pt;}
.h4_c02409{height:57.473437pt;}
.h1_c02409{height:59.017500pt;}
.h5_c02409{height:62.812500pt;}
.h6_c02409{height:64.500000pt;}
.h0_c02409{height:1122.666667pt;}
.w1_c02409{width:793.333333pt;}
.w0_c02409{width:793.626667pt;}
.x0_c02409{left:0.000000pt;}
.x1_c02409{left:113.440000pt;}
.x2_c02409{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10d068ca4f0b3bcd1921f22f.woff2')format("woff");}.ff1_c02410{font-family:ff1_c02410;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02410{font-family:ff2_c02410;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02410;src:url('chunks/assets/font_ea3dc8613b3cbe82c5eec2e4.woff2')format("woff");}.ff3_c02410{font-family:ff3_c02410;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02410;src:url('chunks/assets/font_c7c6f62b170045c03948b595.woff2')format("woff");}.ff4_c02410{font-family:ff4_c02410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02410{vertical-align:0.000000px;}
.ls1e_c02410{letter-spacing:-0.072000px;}
.ls18_c02410{letter-spacing:-0.057600px;}
.ls1b_c02410{letter-spacing:-0.043200px;}
.ls1c_c02410{letter-spacing:-0.032940px;}
.ls1a_c02410{letter-spacing:-0.014400px;}
.ls19_c02410{letter-spacing:-0.007200px;}
.ls1d_c02410{letter-spacing:-0.006588px;}
.ls17_c02410{letter-spacing:0.000000px;}
.lsc_c02410{letter-spacing:0.006588px;}
.ls7_c02410{letter-spacing:0.007200px;}
.ls12_c02410{letter-spacing:0.013176px;}
.ls15_c02410{letter-spacing:0.014400px;}
.lsf_c02410{letter-spacing:0.019764px;}
.ls16_c02410{letter-spacing:0.021600px;}
.ls0_c02410{letter-spacing:0.026352px;}
.ls6_c02410{letter-spacing:0.028800px;}
.ls10_c02410{letter-spacing:0.032940px;}
.ls9_c02410{letter-spacing:0.036000px;}
.lsd_c02410{letter-spacing:0.039528px;}
.ls8_c02410{letter-spacing:0.043200px;}
.ls4_c02410{letter-spacing:0.050400px;}
.ls1_c02410{letter-spacing:0.052704px;}
.ls5_c02410{letter-spacing:0.057600px;}
.lse_c02410{letter-spacing:0.059292px;}
.ls3_c02410{letter-spacing:0.064800px;}
.ls11_c02410{letter-spacing:0.065880px;}
.ls14_c02410{letter-spacing:0.072468px;}
.ls13_c02410{letter-spacing:0.085644px;}
.lsb_c02410{letter-spacing:0.086400px;}
.ls2_c02410{letter-spacing:0.092232px;}
.lsa_c02410{letter-spacing:0.093600px;}
.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;}
}
.ws18_c02410{word-spacing:-0.424800px;}
.wsc_c02410{word-spacing:-0.223200px;}
.ws36_c02410{word-spacing:-0.165600px;}
.ws0_c02410{word-spacing:-0.158112px;}
.ws3d_c02410{word-spacing:-0.151200px;}
.ws1b_c02410{word-spacing:-0.086400px;}
.ws1c_c02410{word-spacing:-0.072000px;}
.ws3e_c02410{word-spacing:-0.043200px;}
.ws37_c02410{word-spacing:-0.036000px;}
.ws14_c02410{word-spacing:-0.028800px;}
.ws3_c02410{word-spacing:0.000000px;}
.ws2e_c02410{word-spacing:0.019764px;}
.ws24_c02410{word-spacing:0.026352px;}
.ws2_c02410{word-spacing:0.039528px;}
.ws23_c02410{word-spacing:0.059292px;}
.ws1_c02410{word-spacing:0.065880px;}
.ws22_c02410{word-spacing:0.072468px;}
.ws2d_c02410{word-spacing:0.079056px;}
.ws1f_c02410{word-spacing:0.085644px;}
.ws26_c02410{word-spacing:0.098820px;}
.ws17_c02410{word-spacing:0.216000px;}
.ws11_c02410{word-spacing:0.223200px;}
.ws4_c02410{word-spacing:0.237600px;}
.ws48_c02410{word-spacing:0.259200px;}
.ws49_c02410{word-spacing:0.316800px;}
.ws16_c02410{word-spacing:0.324000px;}
.ws12_c02410{word-spacing:0.331200px;}
.ws13_c02410{word-spacing:0.374400px;}
.ws25_c02410{word-spacing:0.480924px;}
.ws33_c02410{word-spacing:2.368800px;}
.ws3c_c02410{word-spacing:2.476800px;}
.ws35_c02410{word-spacing:2.498400px;}
.ws34_c02410{word-spacing:2.527200px;}
.ws15_c02410{word-spacing:2.844000px;}
.ws39_c02410{word-spacing:3.585600px;}
.ws38_c02410{word-spacing:3.600000px;}
.ws6_c02410{word-spacing:3.715200px;}
.ws7_c02410{word-spacing:3.787200px;}
.ws5_c02410{word-spacing:3.823200px;}
.ws3a_c02410{word-spacing:4.953600px;}
.ws3b_c02410{word-spacing:5.083200px;}
.ws1a_c02410{word-spacing:8.150400px;}
.ws19_c02410{word-spacing:8.179200px;}
.ws27_c02410{word-spacing:8.307468px;}
.ws28_c02410{word-spacing:8.340408px;}
.ws32_c02410{word-spacing:13.550400px;}
.ws31_c02410{word-spacing:13.651200px;}
.ws2f_c02410{word-spacing:14.724000px;}
.ws2c_c02410{word-spacing:14.809824px;}
.ws30_c02410{word-spacing:14.824800px;}
.ws2b_c02410{word-spacing:14.842764px;}
.ws21_c02410{word-spacing:19.467540px;}
.ws20_c02410{word-spacing:19.487304px;}
.wse_c02410{word-spacing:20.037600px;}
.wsd_c02410{word-spacing:20.124000px;}
.ws2a_c02410{word-spacing:21.246300px;}
.ws29_c02410{word-spacing:21.318768px;}
.ws44_c02410{word-spacing:22.896000px;}
.ws45_c02410{word-spacing:23.032800px;}
.ws43_c02410{word-spacing:23.047200px;}
.wsa_c02410{word-spacing:23.752800px;}
.wsb_c02410{word-spacing:23.767200px;}
.ws8_c02410{word-spacing:23.940000px;}
.ws9_c02410{word-spacing:24.091200px;}
.ws3f_c02410{word-spacing:25.092000px;}
.ws40_c02410{word-spacing:25.149600px;}
.ws46_c02410{word-spacing:27.230400px;}
.ws47_c02410{word-spacing:27.367200px;}
.ws42_c02410{word-spacing:31.233600px;}
.ws41_c02410{word-spacing:31.327200px;}
.wsf_c02410{word-spacing:33.674400px;}
.ws10_c02410{word-spacing:33.854400px;}
.ws1d_c02410{word-spacing:42.732000px;}
.ws1e_c02410{word-spacing:42.811200px;}
._0_c02410{margin-left:-1.139724px;}
._1_c02410{width:1.337364px;}
.fc0_c02410{color:rgb(0,0,0);}
.fs0_c02410{font-size:65.880000px;}
.fs1_c02410{font-size:72.000000px;}
.y0_c02410{bottom:0.000000px;}
.y3_c02410{bottom:75.720882px;}
.y2_c02410{bottom:113.880225px;}
.y35_c02410{bottom:136.110600px;}
.y34_c02410{bottom:156.810600px;}
.y33_c02410{bottom:177.510600px;}
.y32_c02410{bottom:198.210600px;}
.y31_c02410{bottom:218.910600px;}
.y30_c02410{bottom:239.610600px;}
.y2f_c02410{bottom:260.310600px;}
.y2e_c02410{bottom:280.830600px;}
.y2d_c02410{bottom:301.710600px;}
.y2c_c02410{bottom:322.410600px;}
.y2b_c02410{bottom:343.110600px;}
.y2a_c02410{bottom:363.810600px;}
.y29_c02410{bottom:384.420600px;}
.y28_c02410{bottom:405.120600px;}
.y27_c02410{bottom:425.820600px;}
.y26_c02410{bottom:446.520600px;}
.y25_c02410{bottom:467.220600px;}
.y24_c02410{bottom:487.920600px;}
.y23_c02410{bottom:508.440600px;}
.y22_c02410{bottom:532.470450px;}
.y21_c02410{bottom:555.060450px;}
.y20_c02410{bottom:574.861368px;}
.y1f_c02410{bottom:593.851278px;}
.y1e_c02410{bottom:612.841188px;}
.y1d_c02410{bottom:631.831098px;}
.y1c_c02410{bottom:650.730423px;}
.y1b_c02410{bottom:669.720333px;}
.y1a_c02410{bottom:688.710243px;}
.y19_c02410{bottom:707.700153px;}
.y18_c02410{bottom:726.690063px;}
.y17_c02410{bottom:745.500450px;}
.y16_c02410{bottom:764.940450px;}
.y15_c02410{bottom:785.640450px;}
.y14_c02410{bottom:806.340450px;}
.y13_c02410{bottom:827.040450px;}
.y12_c02410{bottom:847.740450px;}
.y11_c02410{bottom:868.440450px;}
.y10_c02410{bottom:889.140450px;}
.yf_c02410{bottom:909.840450px;}
.ye_c02410{bottom:930.540450px;}
.yd_c02410{bottom:951.060450px;}
.yc_c02410{bottom:971.940450px;}
.yb_c02410{bottom:992.640450px;}
.ya_c02410{bottom:1013.340450px;}
.y9_c02410{bottom:1034.040450px;}
.y8_c02410{bottom:1054.740450px;}
.y7_c02410{bottom:1075.440450px;}
.y6_c02410{bottom:1096.140450px;}
.y5_c02410{bottom:1116.660450px;}
.y4_c02410{bottom:1140.690450px;}
.y1_c02410{bottom:1194.600450px;}
.h3_c02410{height:43.909277px;}
.h2_c02410{height:54.331699px;}
.h6_c02410{height:64.657617px;}
.h1_c02410{height:66.394687px;}
.h5_c02410{height:70.664062px;}
.h4_c02410{height:72.562500px;}
.h0_c02410{height:1263.000000px;}
.w1_c02410{width:892.500000px;}
.w0_c02410{width:892.830000px;}
.x0_c02410{left:0.000000px;}
.x1_c02410{left:127.620000px;}
.x2_c02410{left:438.120675px;}
@media print{
.v0_c02410{vertical-align:0.000000pt;}
.ls1e_c02410{letter-spacing:-0.064000pt;}
.ls18_c02410{letter-spacing:-0.051200pt;}
.ls1b_c02410{letter-spacing:-0.038400pt;}
.ls1c_c02410{letter-spacing:-0.029280pt;}
.ls1a_c02410{letter-spacing:-0.012800pt;}
.ls19_c02410{letter-spacing:-0.006400pt;}
.ls1d_c02410{letter-spacing:-0.005856pt;}
.ls17_c02410{letter-spacing:0.000000pt;}
.lsc_c02410{letter-spacing:0.005856pt;}
.ls7_c02410{letter-spacing:0.006400pt;}
.ls12_c02410{letter-spacing:0.011712pt;}
.ls15_c02410{letter-spacing:0.012800pt;}
.lsf_c02410{letter-spacing:0.017568pt;}
.ls16_c02410{letter-spacing:0.019200pt;}
.ls0_c02410{letter-spacing:0.023424pt;}
.ls6_c02410{letter-spacing:0.025600pt;}
.ls10_c02410{letter-spacing:0.029280pt;}
.ls9_c02410{letter-spacing:0.032000pt;}
.lsd_c02410{letter-spacing:0.035136pt;}
.ls8_c02410{letter-spacing:0.038400pt;}
.ls4_c02410{letter-spacing:0.044800pt;}
.ls1_c02410{letter-spacing:0.046848pt;}
.ls5_c02410{letter-spacing:0.051200pt;}
.lse_c02410{letter-spacing:0.052704pt;}
.ls3_c02410{letter-spacing:0.057600pt;}
.ls11_c02410{letter-spacing:0.058560pt;}
.ls14_c02410{letter-spacing:0.064416pt;}
.ls13_c02410{letter-spacing:0.076128pt;}
.lsb_c02410{letter-spacing:0.076800pt;}
.ls2_c02410{letter-spacing:0.081984pt;}
.lsa_c02410{letter-spacing:0.083200pt;}
.ws18_c02410{word-spacing:-0.377600pt;}
.wsc_c02410{word-spacing:-0.198400pt;}
.ws36_c02410{word-spacing:-0.147200pt;}
.ws0_c02410{word-spacing:-0.140544pt;}
.ws3d_c02410{word-spacing:-0.134400pt;}
.ws1b_c02410{word-spacing:-0.076800pt;}
.ws1c_c02410{word-spacing:-0.064000pt;}
.ws3e_c02410{word-spacing:-0.038400pt;}
.ws37_c02410{word-spacing:-0.032000pt;}
.ws14_c02410{word-spacing:-0.025600pt;}
.ws3_c02410{word-spacing:0.000000pt;}
.ws2e_c02410{word-spacing:0.017568pt;}
.ws24_c02410{word-spacing:0.023424pt;}
.ws2_c02410{word-spacing:0.035136pt;}
.ws23_c02410{word-spacing:0.052704pt;}
.ws1_c02410{word-spacing:0.058560pt;}
.ws22_c02410{word-spacing:0.064416pt;}
.ws2d_c02410{word-spacing:0.070272pt;}
.ws1f_c02410{word-spacing:0.076128pt;}
.ws26_c02410{word-spacing:0.087840pt;}
.ws17_c02410{word-spacing:0.192000pt;}
.ws11_c02410{word-spacing:0.198400pt;}
.ws4_c02410{word-spacing:0.211200pt;}
.ws48_c02410{word-spacing:0.230400pt;}
.ws49_c02410{word-spacing:0.281600pt;}
.ws16_c02410{word-spacing:0.288000pt;}
.ws12_c02410{word-spacing:0.294400pt;}
.ws13_c02410{word-spacing:0.332800pt;}
.ws25_c02410{word-spacing:0.427488pt;}
.ws33_c02410{word-spacing:2.105600pt;}
.ws3c_c02410{word-spacing:2.201600pt;}
.ws35_c02410{word-spacing:2.220800pt;}
.ws34_c02410{word-spacing:2.246400pt;}
.ws15_c02410{word-spacing:2.528000pt;}
.ws39_c02410{word-spacing:3.187200pt;}
.ws38_c02410{word-spacing:3.200000pt;}
.ws6_c02410{word-spacing:3.302400pt;}
.ws7_c02410{word-spacing:3.366400pt;}
.ws5_c02410{word-spacing:3.398400pt;}
.ws3a_c02410{word-spacing:4.403200pt;}
.ws3b_c02410{word-spacing:4.518400pt;}
.ws1a_c02410{word-spacing:7.244800pt;}
.ws19_c02410{word-spacing:7.270400pt;}
.ws27_c02410{word-spacing:7.384416pt;}
.ws28_c02410{word-spacing:7.413696pt;}
.ws32_c02410{word-spacing:12.044800pt;}
.ws31_c02410{word-spacing:12.134400pt;}
.ws2f_c02410{word-spacing:13.088000pt;}
.ws2c_c02410{word-spacing:13.164288pt;}
.ws30_c02410{word-spacing:13.177600pt;}
.ws2b_c02410{word-spacing:13.193568pt;}
.ws21_c02410{word-spacing:17.304480pt;}
.ws20_c02410{word-spacing:17.322048pt;}
.wse_c02410{word-spacing:17.811200pt;}
.wsd_c02410{word-spacing:17.888000pt;}
.ws2a_c02410{word-spacing:18.885600pt;}
.ws29_c02410{word-spacing:18.950016pt;}
.ws44_c02410{word-spacing:20.352000pt;}
.ws45_c02410{word-spacing:20.473600pt;}
.ws43_c02410{word-spacing:20.486400pt;}
.wsa_c02410{word-spacing:21.113600pt;}
.wsb_c02410{word-spacing:21.126400pt;}
.ws8_c02410{word-spacing:21.280000pt;}
.ws9_c02410{word-spacing:21.414400pt;}
.ws3f_c02410{word-spacing:22.304000pt;}
.ws40_c02410{word-spacing:22.355200pt;}
.ws46_c02410{word-spacing:24.204800pt;}
.ws47_c02410{word-spacing:24.326400pt;}
.ws42_c02410{word-spacing:27.763200pt;}
.ws41_c02410{word-spacing:27.846400pt;}
.wsf_c02410{word-spacing:29.932800pt;}
.ws10_c02410{word-spacing:30.092800pt;}
.ws1d_c02410{word-spacing:37.984000pt;}
.ws1e_c02410{word-spacing:38.054400pt;}
._0_c02410{margin-left:-1.013088pt;}
._1_c02410{width:1.188768pt;}
.fs0_c02410{font-size:58.560000pt;}
.fs1_c02410{font-size:64.000000pt;}
.y0_c02410{bottom:0.000000pt;}
.y3_c02410{bottom:67.307451pt;}
.y2_c02410{bottom:101.226867pt;}
.y35_c02410{bottom:120.987200pt;}
.y34_c02410{bottom:139.387200pt;}
.y33_c02410{bottom:157.787200pt;}
.y32_c02410{bottom:176.187200pt;}
.y31_c02410{bottom:194.587200pt;}
.y30_c02410{bottom:212.987200pt;}
.y2f_c02410{bottom:231.387200pt;}
.y2e_c02410{bottom:249.627200pt;}
.y2d_c02410{bottom:268.187200pt;}
.y2c_c02410{bottom:286.587200pt;}
.y2b_c02410{bottom:304.987200pt;}
.y2a_c02410{bottom:323.387200pt;}
.y29_c02410{bottom:341.707200pt;}
.y28_c02410{bottom:360.107200pt;}
.y27_c02410{bottom:378.507200pt;}
.y26_c02410{bottom:396.907200pt;}
.y25_c02410{bottom:415.307200pt;}
.y24_c02410{bottom:433.707200pt;}
.y23_c02410{bottom:451.947200pt;}
.y22_c02410{bottom:473.307067pt;}
.y21_c02410{bottom:493.387067pt;}
.y20_c02410{bottom:510.987883pt;}
.y1f_c02410{bottom:527.867803pt;}
.y1e_c02410{bottom:544.747723pt;}
.y1d_c02410{bottom:561.627643pt;}
.y1c_c02410{bottom:578.427043pt;}
.y1b_c02410{bottom:595.306963pt;}
.y1a_c02410{bottom:612.186883pt;}
.y19_c02410{bottom:629.066803pt;}
.y18_c02410{bottom:645.946723pt;}
.y17_c02410{bottom:662.667067pt;}
.y16_c02410{bottom:679.947067pt;}
.y15_c02410{bottom:698.347067pt;}
.y14_c02410{bottom:716.747067pt;}
.y13_c02410{bottom:735.147067pt;}
.y12_c02410{bottom:753.547067pt;}
.y11_c02410{bottom:771.947067pt;}
.y10_c02410{bottom:790.347067pt;}
.yf_c02410{bottom:808.747067pt;}
.ye_c02410{bottom:827.147067pt;}
.yd_c02410{bottom:845.387067pt;}
.yc_c02410{bottom:863.947067pt;}
.yb_c02410{bottom:882.347067pt;}
.ya_c02410{bottom:900.747067pt;}
.y9_c02410{bottom:919.147067pt;}
.y8_c02410{bottom:937.547067pt;}
.y7_c02410{bottom:955.947067pt;}
.y6_c02410{bottom:974.347067pt;}
.y5_c02410{bottom:992.587067pt;}
.y4_c02410{bottom:1013.947067pt;}
.y1_c02410{bottom:1061.867067pt;}
.h3_c02410{height:39.030469pt;}
.h2_c02410{height:48.294844pt;}
.h6_c02410{height:57.473437pt;}
.h1_c02410{height:59.017500pt;}
.h5_c02410{height:62.812500pt;}
.h4_c02410{height:64.500000pt;}
.h0_c02410{height:1122.666667pt;}
.w1_c02410{width:793.333333pt;}
.w0_c02410{width:793.626667pt;}
.x0_c02410{left:0.000000pt;}
.x1_c02410{left:113.440000pt;}
.x2_c02410{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4745eb86d6f697c25b92c80f.woff2')format("woff");}.ff1_c02411{font-family:ff1_c02411;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02411{font-family:ff2_c02411;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02411;src:url('chunks/assets/font_0cec2893f087417c014c03ae.woff2')format("woff");}.ff3_c02411{font-family:ff3_c02411;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02411;src:url('chunks/assets/font_41ce8569e48f013fc1bcfc86.woff2')format("woff");}.ff4_c02411{font-family:ff4_c02411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02411{vertical-align:0.000000px;}
.ls11_c02411{letter-spacing:-0.050400px;}
.ls13_c02411{letter-spacing:-0.014400px;}
.ls12_c02411{letter-spacing:-0.007200px;}
.ls10_c02411{letter-spacing:0.000000px;}
.ls5_c02411{letter-spacing:0.007200px;}
.ls2_c02411{letter-spacing:0.013176px;}
.ls9_c02411{letter-spacing:0.014400px;}
.lsd_c02411{letter-spacing:0.021600px;}
.ls0_c02411{letter-spacing:0.026352px;}
.lsb_c02411{letter-spacing:0.028800px;}
.ls4_c02411{letter-spacing:0.036000px;}
.ls8_c02411{letter-spacing:0.043200px;}
.ls6_c02411{letter-spacing:0.050400px;}
.ls1_c02411{letter-spacing:0.052704px;}
.lsc_c02411{letter-spacing:0.057600px;}
.ls7_c02411{letter-spacing:0.064800px;}
.ls3_c02411{letter-spacing:0.079056px;}
.lsf_c02411{letter-spacing:0.079200px;}
.lse_c02411{letter-spacing:0.086400px;}
.lsa_c02411{letter-spacing:0.092232px;}
.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;}
}
.wsf_c02411{word-spacing:-0.374400px;}
.ws1f_c02411{word-spacing:-0.201600px;}
.ws24_c02411{word-spacing:-0.194400px;}
.wsd_c02411{word-spacing:-0.180000px;}
.ws15_c02411{word-spacing:-0.172800px;}
.ws9_c02411{word-spacing:-0.165600px;}
.ws0_c02411{word-spacing:-0.158112px;}
.ws23_c02411{word-spacing:-0.144000px;}
.ws14_c02411{word-spacing:-0.136800px;}
.wse_c02411{word-spacing:-0.129600px;}
.ws25_c02411{word-spacing:-0.108000px;}
.ws21_c02411{word-spacing:-0.100800px;}
.ws13_c02411{word-spacing:-0.093600px;}
.ws19_c02411{word-spacing:-0.072000px;}
.ws1c_c02411{word-spacing:-0.064800px;}
.ws20_c02411{word-spacing:-0.050400px;}
.ws12_c02411{word-spacing:-0.043200px;}
.wsc_c02411{word-spacing:-0.036000px;}
.ws1b_c02411{word-spacing:-0.028800px;}
.ws6_c02411{word-spacing:-0.021600px;}
.ws1d_c02411{word-spacing:-0.014400px;}
.ws1e_c02411{word-spacing:-0.007200px;}
.ws3_c02411{word-spacing:0.000000px;}
.ws1a_c02411{word-spacing:0.007200px;}
.ws5_c02411{word-spacing:0.013176px;}
.ws22_c02411{word-spacing:0.014400px;}
.ws2_c02411{word-spacing:0.039528px;}
.ws1_c02411{word-spacing:0.065880px;}
.ws4_c02411{word-spacing:0.079056px;}
.ws18_c02411{word-spacing:0.100800px;}
.ws17_c02411{word-spacing:1.382400px;}
.ws16_c02411{word-spacing:1.425600px;}
.ws7_c02411{word-spacing:2.030400px;}
.ws8_c02411{word-spacing:2.210400px;}
.ws10_c02411{word-spacing:3.492000px;}
.ws11_c02411{word-spacing:3.564000px;}
.wsb_c02411{word-spacing:9.727200px;}
.wsa_c02411{word-spacing:9.770400px;}
._0_c02411{margin-left:-1.029600px;}
._1_c02411{width:1.166400px;}
.fc0_c02411{color:rgb(0,0,0);}
.fs0_c02411{font-size:65.880000px;}
.fs1_c02411{font-size:72.000000px;}
.y0_c02411{bottom:0.000000px;}
.y3_c02411{bottom:75.720882px;}
.y2_c02411{bottom:113.880225px;}
.y33_c02411{bottom:151.860009px;}
.y32_c02411{bottom:173.639937px;}
.y31_c02411{bottom:195.510450px;}
.y30_c02411{bottom:218.100450px;}
.y2f_c02411{bottom:237.450450px;}
.y2e_c02411{bottom:258.150450px;}
.y2d_c02411{bottom:278.670450px;}
.y2c_c02411{bottom:299.370450px;}
.y2b_c02411{bottom:320.250450px;}
.y2a_c02411{bottom:340.950450px;}
.y29_c02411{bottom:361.650450px;}
.y28_c02411{bottom:382.350450px;}
.y27_c02411{bottom:403.050450px;}
.y26_c02411{bottom:423.660450px;}
.y25_c02411{bottom:444.360450px;}
.y24_c02411{bottom:465.060450px;}
.y23_c02411{bottom:485.760450px;}
.y22_c02411{bottom:506.460450px;}
.y21_c02411{bottom:527.160450px;}
.y20_c02411{bottom:547.860450px;}
.y1f_c02411{bottom:568.560450px;}
.y1e_c02411{bottom:589.080450px;}
.y1d_c02411{bottom:613.110450px;}
.y1c_c02411{bottom:635.790009px;}
.y1b_c02411{bottom:657.569937px;}
.y1a_c02411{bottom:679.440450px;}
.y19_c02411{bottom:702.030450px;}
.y18_c02411{bottom:721.380450px;}
.y17_c02411{bottom:741.990450px;}
.y16_c02411{bottom:762.690450px;}
.y15_c02411{bottom:783.390450px;}
.y14_c02411{bottom:804.090450px;}
.y13_c02411{bottom:824.790600px;}
.y12_c02411{bottom:845.310450px;}
.y11_c02411{bottom:866.190450px;}
.y10_c02411{bottom:886.890450px;}
.yf_c02411{bottom:907.590450px;}
.ye_c02411{bottom:928.110450px;}
.yd_c02411{bottom:948.990450px;}
.yc_c02411{bottom:969.690450px;}
.yb_c02411{bottom:990.390450px;}
.ya_c02411{bottom:1011.090450px;}
.y9_c02411{bottom:1031.790450px;}
.y8_c02411{bottom:1052.490450px;}
.y7_c02411{bottom:1073.010450px;}
.y6_c02411{bottom:1097.040450px;}
.y5_c02411{bottom:1119.721242px;}
.y4_c02411{bottom:1141.410585px;}
.y1_c02411{bottom:1194.600450px;}
.h3_c02411{height:43.909277px;}
.h2_c02411{height:54.331699px;}
.h4_c02411{height:64.657617px;}
.h1_c02411{height:66.394687px;}
.h6_c02411{height:70.664062px;}
.h5_c02411{height:72.562500px;}
.h0_c02411{height:1263.000000px;}
.w1_c02411{width:892.500000px;}
.w0_c02411{width:892.830000px;}
.x0_c02411{left:0.000000px;}
.x1_c02411{left:127.620000px;}
.x2_c02411{left:438.120675px;}
@media print{
.v0_c02411{vertical-align:0.000000pt;}
.ls11_c02411{letter-spacing:-0.044800pt;}
.ls13_c02411{letter-spacing:-0.012800pt;}
.ls12_c02411{letter-spacing:-0.006400pt;}
.ls10_c02411{letter-spacing:0.000000pt;}
.ls5_c02411{letter-spacing:0.006400pt;}
.ls2_c02411{letter-spacing:0.011712pt;}
.ls9_c02411{letter-spacing:0.012800pt;}
.lsd_c02411{letter-spacing:0.019200pt;}
.ls0_c02411{letter-spacing:0.023424pt;}
.lsb_c02411{letter-spacing:0.025600pt;}
.ls4_c02411{letter-spacing:0.032000pt;}
.ls8_c02411{letter-spacing:0.038400pt;}
.ls6_c02411{letter-spacing:0.044800pt;}
.ls1_c02411{letter-spacing:0.046848pt;}
.lsc_c02411{letter-spacing:0.051200pt;}
.ls7_c02411{letter-spacing:0.057600pt;}
.ls3_c02411{letter-spacing:0.070272pt;}
.lsf_c02411{letter-spacing:0.070400pt;}
.lse_c02411{letter-spacing:0.076800pt;}
.lsa_c02411{letter-spacing:0.081984pt;}
.wsf_c02411{word-spacing:-0.332800pt;}
.ws1f_c02411{word-spacing:-0.179200pt;}
.ws24_c02411{word-spacing:-0.172800pt;}
.wsd_c02411{word-spacing:-0.160000pt;}
.ws15_c02411{word-spacing:-0.153600pt;}
.ws9_c02411{word-spacing:-0.147200pt;}
.ws0_c02411{word-spacing:-0.140544pt;}
.ws23_c02411{word-spacing:-0.128000pt;}
.ws14_c02411{word-spacing:-0.121600pt;}
.wse_c02411{word-spacing:-0.115200pt;}
.ws25_c02411{word-spacing:-0.096000pt;}
.ws21_c02411{word-spacing:-0.089600pt;}
.ws13_c02411{word-spacing:-0.083200pt;}
.ws19_c02411{word-spacing:-0.064000pt;}
.ws1c_c02411{word-spacing:-0.057600pt;}
.ws20_c02411{word-spacing:-0.044800pt;}
.ws12_c02411{word-spacing:-0.038400pt;}
.wsc_c02411{word-spacing:-0.032000pt;}
.ws1b_c02411{word-spacing:-0.025600pt;}
.ws6_c02411{word-spacing:-0.019200pt;}
.ws1d_c02411{word-spacing:-0.012800pt;}
.ws1e_c02411{word-spacing:-0.006400pt;}
.ws3_c02411{word-spacing:0.000000pt;}
.ws1a_c02411{word-spacing:0.006400pt;}
.ws5_c02411{word-spacing:0.011712pt;}
.ws22_c02411{word-spacing:0.012800pt;}
.ws2_c02411{word-spacing:0.035136pt;}
.ws1_c02411{word-spacing:0.058560pt;}
.ws4_c02411{word-spacing:0.070272pt;}
.ws18_c02411{word-spacing:0.089600pt;}
.ws17_c02411{word-spacing:1.228800pt;}
.ws16_c02411{word-spacing:1.267200pt;}
.ws7_c02411{word-spacing:1.804800pt;}
.ws8_c02411{word-spacing:1.964800pt;}
.ws10_c02411{word-spacing:3.104000pt;}
.ws11_c02411{word-spacing:3.168000pt;}
.wsb_c02411{word-spacing:8.646400pt;}
.wsa_c02411{word-spacing:8.684800pt;}
._0_c02411{margin-left:-0.915200pt;}
._1_c02411{width:1.036800pt;}
.fs0_c02411{font-size:58.560000pt;}
.fs1_c02411{font-size:64.000000pt;}
.y0_c02411{bottom:0.000000pt;}
.y3_c02411{bottom:67.307451pt;}
.y2_c02411{bottom:101.226867pt;}
.y33_c02411{bottom:134.986675pt;}
.y32_c02411{bottom:154.346611pt;}
.y31_c02411{bottom:173.787067pt;}
.y30_c02411{bottom:193.867067pt;}
.y2f_c02411{bottom:211.067067pt;}
.y2e_c02411{bottom:229.467067pt;}
.y2d_c02411{bottom:247.707067pt;}
.y2c_c02411{bottom:266.107067pt;}
.y2b_c02411{bottom:284.667067pt;}
.y2a_c02411{bottom:303.067067pt;}
.y29_c02411{bottom:321.467067pt;}
.y28_c02411{bottom:339.867067pt;}
.y27_c02411{bottom:358.267067pt;}
.y26_c02411{bottom:376.587067pt;}
.y25_c02411{bottom:394.987067pt;}
.y24_c02411{bottom:413.387067pt;}
.y23_c02411{bottom:431.787067pt;}
.y22_c02411{bottom:450.187067pt;}
.y21_c02411{bottom:468.587067pt;}
.y20_c02411{bottom:486.987067pt;}
.y1f_c02411{bottom:505.387067pt;}
.y1e_c02411{bottom:523.627067pt;}
.y1d_c02411{bottom:544.987067pt;}
.y1c_c02411{bottom:565.146675pt;}
.y1b_c02411{bottom:584.506611pt;}
.y1a_c02411{bottom:603.947067pt;}
.y19_c02411{bottom:624.027067pt;}
.y18_c02411{bottom:641.227067pt;}
.y17_c02411{bottom:659.547067pt;}
.y16_c02411{bottom:677.947067pt;}
.y15_c02411{bottom:696.347067pt;}
.y14_c02411{bottom:714.747067pt;}
.y13_c02411{bottom:733.147200pt;}
.y12_c02411{bottom:751.387067pt;}
.y11_c02411{bottom:769.947067pt;}
.y10_c02411{bottom:788.347067pt;}
.yf_c02411{bottom:806.747067pt;}
.ye_c02411{bottom:824.987067pt;}
.yd_c02411{bottom:843.547067pt;}
.yc_c02411{bottom:861.947067pt;}
.yb_c02411{bottom:880.347067pt;}
.ya_c02411{bottom:898.747067pt;}
.y9_c02411{bottom:917.147067pt;}
.y8_c02411{bottom:935.547067pt;}
.y7_c02411{bottom:953.787067pt;}
.y6_c02411{bottom:975.147067pt;}
.y5_c02411{bottom:995.307771pt;}
.y4_c02411{bottom:1014.587187pt;}
.y1_c02411{bottom:1061.867067pt;}
.h3_c02411{height:39.030469pt;}
.h2_c02411{height:48.294844pt;}
.h4_c02411{height:57.473437pt;}
.h1_c02411{height:59.017500pt;}
.h6_c02411{height:62.812500pt;}
.h5_c02411{height:64.500000pt;}
.h0_c02411{height:1122.666667pt;}
.w1_c02411{width:793.333333pt;}
.w0_c02411{width:793.626667pt;}
.x0_c02411{left:0.000000pt;}
.x1_c02411{left:113.440000pt;}
.x2_c02411{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53188e0b6f213c9da3a9c4bd.woff2')format("woff");}.ff1_c02412{font-family:ff1_c02412;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02412{font-family:ff2_c02412;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02412;src:url('chunks/assets/font_0cec2893f087417c014c03ae.woff2')format("woff");}.ff3_c02412{font-family:ff3_c02412;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02412;src:url('chunks/assets/font_bea76e23ee72d00f224b5002.woff2')format("woff");}.ff4_c02412{font-family:ff4_c02412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02412{vertical-align:0.000000px;}
.ls11_c02412{letter-spacing:-0.158400px;}
.lsf_c02412{letter-spacing:-0.050400px;}
.lsd_c02412{letter-spacing:-0.043200px;}
.ls10_c02412{letter-spacing:-0.021600px;}
.lse_c02412{letter-spacing:-0.007200px;}
.lsb_c02412{letter-spacing:0.000000px;}
.lsa_c02412{letter-spacing:0.007200px;}
.ls3_c02412{letter-spacing:0.014400px;}
.ls7_c02412{letter-spacing:0.021600px;}
.ls0_c02412{letter-spacing:0.026352px;}
.ls8_c02412{letter-spacing:0.028800px;}
.ls6_c02412{letter-spacing:0.036000px;}
.ls4_c02412{letter-spacing:0.043200px;}
.ls9_c02412{letter-spacing:0.050400px;}
.ls1_c02412{letter-spacing:0.052704px;}
.ls5_c02412{letter-spacing:0.064800px;}
.ls2_c02412{letter-spacing:0.085644px;}
.lsc_c02412{letter-spacing:0.092232px;}
.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;}
}
.ws1_c02412{word-spacing:-17.841600px;}
.wsf_c02412{word-spacing:-0.201600px;}
.ws0_c02412{word-spacing:-0.158112px;}
.ws8_c02412{word-spacing:-0.144000px;}
.ws14_c02412{word-spacing:-0.136800px;}
.ws1b_c02412{word-spacing:-0.115200px;}
.ws10_c02412{word-spacing:-0.086400px;}
.ws13_c02412{word-spacing:-0.043200px;}
.ws1a_c02412{word-spacing:-0.036000px;}
.ws7_c02412{word-spacing:-0.014400px;}
.ws4_c02412{word-spacing:0.000000px;}
.ws5_c02412{word-spacing:0.006588px;}
.wsa_c02412{word-spacing:0.007200px;}
.wsc_c02412{word-spacing:0.021600px;}
.ws3_c02412{word-spacing:0.039528px;}
.ws2_c02412{word-spacing:0.065880px;}
.ws6_c02412{word-spacing:0.223200px;}
.wsb_c02412{word-spacing:0.230400px;}
.ws18_c02412{word-spacing:4.629600px;}
.ws19_c02412{word-spacing:4.730400px;}
.ws15_c02412{word-spacing:8.618400px;}
.ws17_c02412{word-spacing:8.625600px;}
.ws16_c02412{word-spacing:8.640000px;}
.ws11_c02412{word-spacing:12.463200px;}
.ws12_c02412{word-spacing:12.556800px;}
.wsd_c02412{word-spacing:33.393600px;}
.wse_c02412{word-spacing:33.444000px;}
.ws9_c02412{word-spacing:39.931200px;}
._0_c02412{margin-left:-1.353600px;}
._1_c02412{width:1.317600px;}
.fc0_c02412{color:rgb(0,0,0);}
.fs0_c02412{font-size:65.880000px;}
.fs1_c02412{font-size:72.000000px;}
.y0_c02412{bottom:0.000000px;}
.y3_c02412{bottom:75.720882px;}
.y2_c02412{bottom:113.880225px;}
.y30_c02412{bottom:137.546184px;}
.y2f_c02412{bottom:159.326112px;}
.y2e_c02412{bottom:181.196625px;}
.y2d_c02412{bottom:202.976553px;}
.y2c_c02412{bottom:224.847066px;}
.y2b_c02412{bottom:246.626994px;}
.y2a_c02412{bottom:268.497507px;}
.y29_c02412{bottom:290.277435px;}
.y28_c02412{bottom:312.147948px;}
.y27_c02412{bottom:333.927876px;}
.y26_c02412{bottom:355.707804px;}
.y25_c02412{bottom:377.578317px;}
.y24_c02412{bottom:399.358245px;}
.y23_c02412{bottom:421.228758px;}
.y22_c02412{bottom:443.008686px;}
.y21_c02412{bottom:464.879199px;}
.y20_c02412{bottom:486.659127px;}
.y1f_c02412{bottom:508.439055px;}
.y1e_c02412{bottom:530.309568px;}
.y1d_c02412{bottom:552.089496px;}
.y1c_c02412{bottom:573.960009px;}
.y1b_c02412{bottom:595.739937px;}
.y1a_c02412{bottom:617.610450px;}
.y19_c02412{bottom:640.740450px;}
.y18_c02412{bottom:664.500450px;}
.y17_c02412{bottom:688.260450px;}
.y16_c02412{bottom:712.110450px;}
.y15_c02412{bottom:735.870450px;}
.y14_c02412{bottom:759.720450px;}
.y13_c02412{bottom:783.480450px;}
.y12_c02412{bottom:807.150450px;}
.y11_c02412{bottom:830.910450px;}
.y10_c02412{bottom:854.940450px;}
.yf_c02412{bottom:878.700450px;}
.ye_c02412{bottom:902.550450px;}
.yd_c02412{bottom:926.130450px;}
.yc_c02412{bottom:949.980450px;}
.yb_c02412{bottom:973.920450px;}
.ya_c02412{bottom:997.770450px;}
.y9_c02412{bottom:1021.530450px;}
.y8_c02412{bottom:1045.380450px;}
.y7_c02412{bottom:1069.140450px;}
.y6_c02412{bottom:1092.810450px;}
.y5_c02412{bottom:1116.570450px;}
.y4_c02412{bottom:1140.690450px;}
.y1_c02412{bottom:1194.600450px;}
.h3_c02412{height:43.909277px;}
.h2_c02412{height:54.331699px;}
.h6_c02412{height:64.657617px;}
.h1_c02412{height:66.394687px;}
.h5_c02412{height:70.664062px;}
.h4_c02412{height:72.562500px;}
.h0_c02412{height:1263.000000px;}
.w1_c02412{width:892.500000px;}
.w0_c02412{width:892.830000px;}
.x0_c02412{left:0.000000px;}
.x1_c02412{left:127.620000px;}
.x2_c02412{left:438.120675px;}
@media print{
.v0_c02412{vertical-align:0.000000pt;}
.ls11_c02412{letter-spacing:-0.140800pt;}
.lsf_c02412{letter-spacing:-0.044800pt;}
.lsd_c02412{letter-spacing:-0.038400pt;}
.ls10_c02412{letter-spacing:-0.019200pt;}
.lse_c02412{letter-spacing:-0.006400pt;}
.lsb_c02412{letter-spacing:0.000000pt;}
.lsa_c02412{letter-spacing:0.006400pt;}
.ls3_c02412{letter-spacing:0.012800pt;}
.ls7_c02412{letter-spacing:0.019200pt;}
.ls0_c02412{letter-spacing:0.023424pt;}
.ls8_c02412{letter-spacing:0.025600pt;}
.ls6_c02412{letter-spacing:0.032000pt;}
.ls4_c02412{letter-spacing:0.038400pt;}
.ls9_c02412{letter-spacing:0.044800pt;}
.ls1_c02412{letter-spacing:0.046848pt;}
.ls5_c02412{letter-spacing:0.057600pt;}
.ls2_c02412{letter-spacing:0.076128pt;}
.lsc_c02412{letter-spacing:0.081984pt;}
.ws1_c02412{word-spacing:-15.859200pt;}
.wsf_c02412{word-spacing:-0.179200pt;}
.ws0_c02412{word-spacing:-0.140544pt;}
.ws8_c02412{word-spacing:-0.128000pt;}
.ws14_c02412{word-spacing:-0.121600pt;}
.ws1b_c02412{word-spacing:-0.102400pt;}
.ws10_c02412{word-spacing:-0.076800pt;}
.ws13_c02412{word-spacing:-0.038400pt;}
.ws1a_c02412{word-spacing:-0.032000pt;}
.ws7_c02412{word-spacing:-0.012800pt;}
.ws4_c02412{word-spacing:0.000000pt;}
.ws5_c02412{word-spacing:0.005856pt;}
.wsa_c02412{word-spacing:0.006400pt;}
.wsc_c02412{word-spacing:0.019200pt;}
.ws3_c02412{word-spacing:0.035136pt;}
.ws2_c02412{word-spacing:0.058560pt;}
.ws6_c02412{word-spacing:0.198400pt;}
.wsb_c02412{word-spacing:0.204800pt;}
.ws18_c02412{word-spacing:4.115200pt;}
.ws19_c02412{word-spacing:4.204800pt;}
.ws15_c02412{word-spacing:7.660800pt;}
.ws17_c02412{word-spacing:7.667200pt;}
.ws16_c02412{word-spacing:7.680000pt;}
.ws11_c02412{word-spacing:11.078400pt;}
.ws12_c02412{word-spacing:11.161600pt;}
.wsd_c02412{word-spacing:29.683200pt;}
.wse_c02412{word-spacing:29.728000pt;}
.ws9_c02412{word-spacing:35.494400pt;}
._0_c02412{margin-left:-1.203200pt;}
._1_c02412{width:1.171200pt;}
.fs0_c02412{font-size:58.560000pt;}
.fs1_c02412{font-size:64.000000pt;}
.y0_c02412{bottom:0.000000pt;}
.y3_c02412{bottom:67.307451pt;}
.y2_c02412{bottom:101.226867pt;}
.y30_c02412{bottom:122.263275pt;}
.y2f_c02412{bottom:141.623211pt;}
.y2e_c02412{bottom:161.063667pt;}
.y2d_c02412{bottom:180.423603pt;}
.y2c_c02412{bottom:199.864059pt;}
.y2b_c02412{bottom:219.223995pt;}
.y2a_c02412{bottom:238.664451pt;}
.y29_c02412{bottom:258.024387pt;}
.y28_c02412{bottom:277.464843pt;}
.y27_c02412{bottom:296.824779pt;}
.y26_c02412{bottom:316.184715pt;}
.y25_c02412{bottom:335.625171pt;}
.y24_c02412{bottom:354.985107pt;}
.y23_c02412{bottom:374.425563pt;}
.y22_c02412{bottom:393.785499pt;}
.y21_c02412{bottom:413.225955pt;}
.y20_c02412{bottom:432.585891pt;}
.y1f_c02412{bottom:451.945827pt;}
.y1e_c02412{bottom:471.386283pt;}
.y1d_c02412{bottom:490.746219pt;}
.y1c_c02412{bottom:510.186675pt;}
.y1b_c02412{bottom:529.546611pt;}
.y1a_c02412{bottom:548.987067pt;}
.y19_c02412{bottom:569.547067pt;}
.y18_c02412{bottom:590.667067pt;}
.y17_c02412{bottom:611.787067pt;}
.y16_c02412{bottom:632.987067pt;}
.y15_c02412{bottom:654.107067pt;}
.y14_c02412{bottom:675.307067pt;}
.y13_c02412{bottom:696.427067pt;}
.y12_c02412{bottom:717.467067pt;}
.y11_c02412{bottom:738.587067pt;}
.y10_c02412{bottom:759.947067pt;}
.yf_c02412{bottom:781.067067pt;}
.ye_c02412{bottom:802.267067pt;}
.yd_c02412{bottom:823.227067pt;}
.yc_c02412{bottom:844.427067pt;}
.yb_c02412{bottom:865.707067pt;}
.ya_c02412{bottom:886.907067pt;}
.y9_c02412{bottom:908.027067pt;}
.y8_c02412{bottom:929.227067pt;}
.y7_c02412{bottom:950.347067pt;}
.y6_c02412{bottom:971.387067pt;}
.y5_c02412{bottom:992.507067pt;}
.y4_c02412{bottom:1013.947067pt;}
.y1_c02412{bottom:1061.867067pt;}
.h3_c02412{height:39.030469pt;}
.h2_c02412{height:48.294844pt;}
.h6_c02412{height:57.473437pt;}
.h1_c02412{height:59.017500pt;}
.h5_c02412{height:62.812500pt;}
.h4_c02412{height:64.500000pt;}
.h0_c02412{height:1122.666667pt;}
.w1_c02412{width:793.333333pt;}
.w0_c02412{width:793.626667pt;}
.x0_c02412{left:0.000000pt;}
.x1_c02412{left:113.440000pt;}
.x2_c02412{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0745a1f16f2da2cff24aeccf.woff2')format("woff");}.ff1_c02413{font-family:ff1_c02413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02413;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02413{font-family:ff2_c02413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02413;src:url('chunks/assets/font_82e2fdc546ab5f2f39b4c895.woff2')format("woff");}.ff3_c02413{font-family:ff3_c02413;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02413;src:url('chunks/assets/font_f5c4eabc8d407a7b3949e076.woff2')format("woff");}.ff4_c02413{font-family:ff4_c02413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls17_c02413{letter-spacing:-0.270108px;}
.ls1a_c02413{letter-spacing:-0.028800px;}
.ls19_c02413{letter-spacing:-0.014400px;}
.ls16_c02413{letter-spacing:-0.013176px;}
.ls18_c02413{letter-spacing:-0.007200px;}
.ls14_c02413{letter-spacing:0.000000px;}
.lsb_c02413{letter-spacing:0.007200px;}
.ls9_c02413{letter-spacing:0.014400px;}
.ls5_c02413{letter-spacing:0.021600px;}
.ls0_c02413{letter-spacing:0.026352px;}
.ls7_c02413{letter-spacing:0.028800px;}
.ls2_c02413{letter-spacing:0.032940px;}
.ls10_c02413{letter-spacing:0.036000px;}
.ls6_c02413{letter-spacing:0.043200px;}
.ls11_c02413{letter-spacing:0.050400px;}
.ls1_c02413{letter-spacing:0.052704px;}
.lsc_c02413{letter-spacing:0.057600px;}
.ls8_c02413{letter-spacing:0.064800px;}
.lse_c02413{letter-spacing:0.065880px;}
.lsa_c02413{letter-spacing:0.072000px;}
.ls12_c02413{letter-spacing:0.079200px;}
.ls3_c02413{letter-spacing:0.085644px;}
.ls13_c02413{letter-spacing:0.086400px;}
.ls15_c02413{letter-spacing:0.092232px;}
.lsd_c02413{letter-spacing:0.098820px;}
.lsf_c02413{letter-spacing:0.100800px;}
.ls4_c02413{letter-spacing:0.138348px;}
.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;}
}
.ws2_c02413{word-spacing:-16.568820px;}
.ws1_c02413{word-spacing:-16.555644px;}
.ws13_c02413{word-spacing:-0.216000px;}
.ws0_c02413{word-spacing:-0.158112px;}
.ws1a_c02413{word-spacing:-0.144000px;}
.ws1c_c02413{word-spacing:-0.122400px;}
.ws6_c02413{word-spacing:-0.115200px;}
.ws1d_c02413{word-spacing:-0.108000px;}
.ws2a_c02413{word-spacing:-0.086400px;}
.ws19_c02413{word-spacing:-0.064800px;}
.wsa_c02413{word-spacing:-0.046116px;}
.ws15_c02413{word-spacing:-0.043200px;}
.ws21_c02413{word-spacing:-0.036000px;}
.ws26_c02413{word-spacing:-0.028800px;}
.ws14_c02413{word-spacing:-0.014400px;}
.ws18_c02413{word-spacing:-0.007200px;}
.ws5_c02413{word-spacing:0.000000px;}
.ws1b_c02413{word-spacing:0.007200px;}
.ws1e_c02413{word-spacing:0.026352px;}
.ws4_c02413{word-spacing:0.039528px;}
.ws7_c02413{word-spacing:0.059292px;}
.ws3_c02413{word-spacing:0.065880px;}
.ws9_c02413{word-spacing:0.105408px;}
.ws24_c02413{word-spacing:3.513600px;}
.ws25_c02413{word-spacing:3.549600px;}
.wsf_c02413{word-spacing:4.636800px;}
.ws10_c02413{word-spacing:4.672800px;}
.ws23_c02413{word-spacing:11.368800px;}
.ws22_c02413{word-spacing:11.404800px;}
.ws11_c02413{word-spacing:13.204800px;}
.ws12_c02413{word-spacing:13.219200px;}
.wsc_c02413{word-spacing:13.816800px;}
.ws27_c02413{word-spacing:13.903200px;}
.ws20_c02413{word-spacing:13.939200px;}
.wsb_c02413{word-spacing:13.953600px;}
.ws1f_c02413{word-spacing:14.047200px;}
.ws17_c02413{word-spacing:14.320800px;}
.ws16_c02413{word-spacing:14.385600px;}
.ws29_c02413{word-spacing:14.608800px;}
.ws28_c02413{word-spacing:14.630400px;}
.wsd_c02413{word-spacing:17.906400px;}
.wse_c02413{word-spacing:17.956800px;}
.ws2c_c02413{word-spacing:19.648800px;}
.ws2b_c02413{word-spacing:19.814400px;}
.ws2d_c02413{word-spacing:19.828800px;}
.ws8_c02413{word-spacing:36.464580px;}
._1_c02413{margin-left:-1.548000px;}
._0_c02413{width:1.271484px;}
.fc0_c02413{color:rgb(0,0,0);}
.fs0_c02413{font-size:65.880000px;}
.fs1_c02413{font-size:72.000000px;}
.y0_c02413{bottom:0.000000px;}
.y3_c02413{bottom:75.720882px;}
.y2_c02413{bottom:113.880225px;}
.y31_c02413{bottom:145.378245px;}
.y30_c02413{bottom:167.248758px;}
.y2f_c02413{bottom:189.028686px;}
.y2e_c02413{bottom:210.899199px;}
.y2d_c02413{bottom:232.679127px;}
.y2c_c02413{bottom:254.549640px;}
.y2b_c02413{bottom:276.329568px;}
.y2a_c02413{bottom:298.200081px;}
.y29_c02413{bottom:319.980009px;}
.y28_c02413{bottom:341.759937px;}
.y27_c02413{bottom:363.630450px;}
.y26_c02413{bottom:383.700450px;}
.y25_c02413{bottom:404.400450px;}
.y24_c02413{bottom:425.100450px;}
.y23_c02413{bottom:445.800450px;}
.y22_c02413{bottom:466.500600px;}
.y21_c02413{bottom:487.020600px;}
.y20_c02413{bottom:507.900450px;}
.y1f_c02413{bottom:528.600450px;}
.y1e_c02413{bottom:549.300450px;}
.y1d_c02413{bottom:570.000450px;}
.y1c_c02413{bottom:590.700450px;}
.y1b_c02413{bottom:611.400450px;}
.y1a_c02413{bottom:632.100450px;}
.y19_c02413{bottom:652.800450px;}
.y18_c02413{bottom:673.320450px;}
.y17_c02413{bottom:697.440450px;}
.y16_c02413{bottom:719.939937px;}
.y15_c02413{bottom:741.810450px;}
.y14_c02413{bottom:764.940450px;}
.y13_c02413{bottom:788.700450px;}
.y12_c02413{bottom:812.550450px;}
.y11_c02413{bottom:836.310450px;}
.y10_c02413{bottom:860.160450px;}
.yf_c02413{bottom:883.920450px;}
.ye_c02413{bottom:907.770450px;}
.yd_c02413{bottom:932.250450px;}
.yc_c02413{bottom:956.100450px;}
.yb_c02413{bottom:979.860450px;}
.ya_c02413{bottom:1003.710450px;}
.y9_c02413{bottom:1027.470450px;}
.y8_c02413{bottom:1051.500450px;}
.y7_c02413{bottom:1073.280450px;}
.y6_c02413{bottom:1095.780999px;}
.y5_c02413{bottom:1117.740450px;}
.y4_c02413{bottom:1139.880450px;}
.y1_c02413{bottom:1194.600450px;}
.h3_c02413{height:43.909277px;}
.h2_c02413{height:54.331699px;}
.h5_c02413{height:64.657617px;}
.h1_c02413{height:66.394687px;}
.h6_c02413{height:70.664062px;}
.h4_c02413{height:72.562500px;}
.h0_c02413{height:1263.000000px;}
.w1_c02413{width:892.500000px;}
.w0_c02413{width:892.830000px;}
.x0_c02413{left:0.000000px;}
.x1_c02413{left:127.620000px;}
.x3_c02413{left:325.800000px;}
.x2_c02413{left:438.120675px;}
@media print{
.v0_c02413{vertical-align:0.000000pt;}
.ls17_c02413{letter-spacing:-0.240096pt;}
.ls1a_c02413{letter-spacing:-0.025600pt;}
.ls19_c02413{letter-spacing:-0.012800pt;}
.ls16_c02413{letter-spacing:-0.011712pt;}
.ls18_c02413{letter-spacing:-0.006400pt;}
.ls14_c02413{letter-spacing:0.000000pt;}
.lsb_c02413{letter-spacing:0.006400pt;}
.ls9_c02413{letter-spacing:0.012800pt;}
.ls5_c02413{letter-spacing:0.019200pt;}
.ls0_c02413{letter-spacing:0.023424pt;}
.ls7_c02413{letter-spacing:0.025600pt;}
.ls2_c02413{letter-spacing:0.029280pt;}
.ls10_c02413{letter-spacing:0.032000pt;}
.ls6_c02413{letter-spacing:0.038400pt;}
.ls11_c02413{letter-spacing:0.044800pt;}
.ls1_c02413{letter-spacing:0.046848pt;}
.lsc_c02413{letter-spacing:0.051200pt;}
.ls8_c02413{letter-spacing:0.057600pt;}
.lse_c02413{letter-spacing:0.058560pt;}
.lsa_c02413{letter-spacing:0.064000pt;}
.ls12_c02413{letter-spacing:0.070400pt;}
.ls3_c02413{letter-spacing:0.076128pt;}
.ls13_c02413{letter-spacing:0.076800pt;}
.ls15_c02413{letter-spacing:0.081984pt;}
.lsd_c02413{letter-spacing:0.087840pt;}
.lsf_c02413{letter-spacing:0.089600pt;}
.ls4_c02413{letter-spacing:0.122976pt;}
.ws2_c02413{word-spacing:-14.727840pt;}
.ws1_c02413{word-spacing:-14.716128pt;}
.ws13_c02413{word-spacing:-0.192000pt;}
.ws0_c02413{word-spacing:-0.140544pt;}
.ws1a_c02413{word-spacing:-0.128000pt;}
.ws1c_c02413{word-spacing:-0.108800pt;}
.ws6_c02413{word-spacing:-0.102400pt;}
.ws1d_c02413{word-spacing:-0.096000pt;}
.ws2a_c02413{word-spacing:-0.076800pt;}
.ws19_c02413{word-spacing:-0.057600pt;}
.wsa_c02413{word-spacing:-0.040992pt;}
.ws15_c02413{word-spacing:-0.038400pt;}
.ws21_c02413{word-spacing:-0.032000pt;}
.ws26_c02413{word-spacing:-0.025600pt;}
.ws14_c02413{word-spacing:-0.012800pt;}
.ws18_c02413{word-spacing:-0.006400pt;}
.ws5_c02413{word-spacing:0.000000pt;}
.ws1b_c02413{word-spacing:0.006400pt;}
.ws1e_c02413{word-spacing:0.023424pt;}
.ws4_c02413{word-spacing:0.035136pt;}
.ws7_c02413{word-spacing:0.052704pt;}
.ws3_c02413{word-spacing:0.058560pt;}
.ws9_c02413{word-spacing:0.093696pt;}
.ws24_c02413{word-spacing:3.123200pt;}
.ws25_c02413{word-spacing:3.155200pt;}
.wsf_c02413{word-spacing:4.121600pt;}
.ws10_c02413{word-spacing:4.153600pt;}
.ws23_c02413{word-spacing:10.105600pt;}
.ws22_c02413{word-spacing:10.137600pt;}
.ws11_c02413{word-spacing:11.737600pt;}
.ws12_c02413{word-spacing:11.750400pt;}
.wsc_c02413{word-spacing:12.281600pt;}
.ws27_c02413{word-spacing:12.358400pt;}
.ws20_c02413{word-spacing:12.390400pt;}
.wsb_c02413{word-spacing:12.403200pt;}
.ws1f_c02413{word-spacing:12.486400pt;}
.ws17_c02413{word-spacing:12.729600pt;}
.ws16_c02413{word-spacing:12.787200pt;}
.ws29_c02413{word-spacing:12.985600pt;}
.ws28_c02413{word-spacing:13.004800pt;}
.wsd_c02413{word-spacing:15.916800pt;}
.wse_c02413{word-spacing:15.961600pt;}
.ws2c_c02413{word-spacing:17.465600pt;}
.ws2b_c02413{word-spacing:17.612800pt;}
.ws2d_c02413{word-spacing:17.625600pt;}
.ws8_c02413{word-spacing:32.412960pt;}
._1_c02413{margin-left:-1.376000pt;}
._0_c02413{width:1.130208pt;}
.fs0_c02413{font-size:58.560000pt;}
.fs1_c02413{font-size:64.000000pt;}
.y0_c02413{bottom:0.000000pt;}
.y3_c02413{bottom:67.307451pt;}
.y2_c02413{bottom:101.226867pt;}
.y31_c02413{bottom:129.225107pt;}
.y30_c02413{bottom:148.665563pt;}
.y2f_c02413{bottom:168.025499pt;}
.y2e_c02413{bottom:187.465955pt;}
.y2d_c02413{bottom:206.825891pt;}
.y2c_c02413{bottom:226.266347pt;}
.y2b_c02413{bottom:245.626283pt;}
.y2a_c02413{bottom:265.066739pt;}
.y29_c02413{bottom:284.426675pt;}
.y28_c02413{bottom:303.786611pt;}
.y27_c02413{bottom:323.227067pt;}
.y26_c02413{bottom:341.067067pt;}
.y25_c02413{bottom:359.467067pt;}
.y24_c02413{bottom:377.867067pt;}
.y23_c02413{bottom:396.267067pt;}
.y22_c02413{bottom:414.667200pt;}
.y21_c02413{bottom:432.907200pt;}
.y20_c02413{bottom:451.467067pt;}
.y1f_c02413{bottom:469.867067pt;}
.y1e_c02413{bottom:488.267067pt;}
.y1d_c02413{bottom:506.667067pt;}
.y1c_c02413{bottom:525.067067pt;}
.y1b_c02413{bottom:543.467067pt;}
.y1a_c02413{bottom:561.867067pt;}
.y19_c02413{bottom:580.267067pt;}
.y18_c02413{bottom:598.507067pt;}
.y17_c02413{bottom:619.947067pt;}
.y16_c02413{bottom:639.946611pt;}
.y15_c02413{bottom:659.387067pt;}
.y14_c02413{bottom:679.947067pt;}
.y13_c02413{bottom:701.067067pt;}
.y12_c02413{bottom:722.267067pt;}
.y11_c02413{bottom:743.387067pt;}
.y10_c02413{bottom:764.587067pt;}
.yf_c02413{bottom:785.707067pt;}
.ye_c02413{bottom:806.907067pt;}
.yd_c02413{bottom:828.667067pt;}
.yc_c02413{bottom:849.867067pt;}
.yb_c02413{bottom:870.987067pt;}
.ya_c02413{bottom:892.187067pt;}
.y9_c02413{bottom:913.307067pt;}
.y8_c02413{bottom:934.667067pt;}
.y7_c02413{bottom:954.027067pt;}
.y6_c02413{bottom:974.027555pt;}
.y5_c02413{bottom:993.547067pt;}
.y4_c02413{bottom:1013.227067pt;}
.y1_c02413{bottom:1061.867067pt;}
.h3_c02413{height:39.030469pt;}
.h2_c02413{height:48.294844pt;}
.h5_c02413{height:57.473437pt;}
.h1_c02413{height:59.017500pt;}
.h6_c02413{height:62.812500pt;}
.h4_c02413{height:64.500000pt;}
.h0_c02413{height:1122.666667pt;}
.w1_c02413{width:793.333333pt;}
.w0_c02413{width:793.626667pt;}
.x0_c02413{left:0.000000pt;}
.x1_c02413{left:113.440000pt;}
.x3_c02413{left:289.600000pt;}
.x2_c02413{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5be52b430a3d1622db8fac9.woff2')format("woff");}.ff1_c02414{font-family:ff1_c02414;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02414{font-family:ff2_c02414;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02414;src:url('chunks/assets/font_fe0932067d5d66897c3def32.woff2')format("woff");}.ff3_c02414{font-family:ff3_c02414;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02414;src:url('chunks/assets/font_96fd2040eeaf0208889874e1.woff2')format("woff");}.ff4_c02414{font-family:ff4_c02414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02414;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff5_c02414{font-family:ff5_c02414;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_c02414;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c02414{font-family:ff6_c02414;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c02414;src:url('chunks/assets/font_40c0f37a615a52acf22c593f.woff2')format("woff");}.ff7_c02414{font-family:ff7_c02414;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_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;}
.ls18_c02414{letter-spacing:-0.129600px;}
.ls1a_c02414{letter-spacing:-0.072000px;}
.ls19_c02414{letter-spacing:-0.043200px;}
.ls1b_c02414{letter-spacing:-0.028800px;}
.ls16_c02414{letter-spacing:-0.021600px;}
.ls15_c02414{letter-spacing:-0.014400px;}
.ls17_c02414{letter-spacing:-0.007200px;}
.ls13_c02414{letter-spacing:0.000000px;}
.lsc_c02414{letter-spacing:0.007200px;}
.lsa_c02414{letter-spacing:0.014400px;}
.lsb_c02414{letter-spacing:0.021600px;}
.ls0_c02414{letter-spacing:0.026352px;}
.ls6_c02414{letter-spacing:0.028800px;}
.ls7_c02414{letter-spacing:0.036000px;}
.ls3_c02414{letter-spacing:0.039528px;}
.ls8_c02414{letter-spacing:0.043200px;}
.lsd_c02414{letter-spacing:0.050400px;}
.ls1_c02414{letter-spacing:0.052704px;}
.ls4_c02414{letter-spacing:0.057600px;}
.ls2_c02414{letter-spacing:0.059292px;}
.lsf_c02414{letter-spacing:0.079056px;}
.ls10_c02414{letter-spacing:0.079200px;}
.ls11_c02414{letter-spacing:0.086400px;}
.ls14_c02414{letter-spacing:0.092232px;}
.lse_c02414{letter-spacing:0.098820px;}
.ls12_c02414{letter-spacing:33.984000px;}
.ls5_c02414{letter-spacing:120.024000px;}
.ls9_c02414{letter-spacing:133.308000px;}
.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;}
}
.ws1_c02414{word-spacing:-72.000000px;}
.ws2_c02414{word-spacing:-54.000000px;}
.ws3_c02414{word-spacing:-18.036000px;}
.ws5_c02414{word-spacing:-18.000000px;}
.ws4_c02414{word-spacing:-16.568820px;}
.ws19_c02414{word-spacing:-0.237600px;}
.ws18_c02414{word-spacing:-0.208800px;}
.wsb_c02414{word-spacing:-0.201600px;}
.ws3e_c02414{word-spacing:-0.187200px;}
.ws42_c02414{word-spacing:-0.180000px;}
.wse_c02414{word-spacing:-0.165600px;}
.ws0_c02414{word-spacing:-0.158112px;}
.ws14_c02414{word-spacing:-0.151200px;}
.wsd_c02414{word-spacing:-0.144000px;}
.ws3d_c02414{word-spacing:-0.136800px;}
.ws1a_c02414{word-spacing:-0.122400px;}
.ws12_c02414{word-spacing:-0.100800px;}
.ws13_c02414{word-spacing:-0.057600px;}
.ws10_c02414{word-spacing:-0.043200px;}
.wsf_c02414{word-spacing:-0.036000px;}
.ws11_c02414{word-spacing:-0.028800px;}
.ws17_c02414{word-spacing:-0.021600px;}
.ws15_c02414{word-spacing:-0.014400px;}
.ws16_c02414{word-spacing:-0.007200px;}
.ws8_c02414{word-spacing:0.000000px;}
.ws29_c02414{word-spacing:0.013176px;}
.wsc_c02414{word-spacing:0.014400px;}
.ws9_c02414{word-spacing:0.032940px;}
.ws7_c02414{word-spacing:0.039528px;}
.wsa_c02414{word-spacing:0.052704px;}
.ws6_c02414{word-spacing:0.065880px;}
.ws34_c02414{word-spacing:0.950400px;}
.ws33_c02414{word-spacing:1.058400px;}
.ws35_c02414{word-spacing:1.152000px;}
.ws2e_c02414{word-spacing:5.673600px;}
.ws30_c02414{word-spacing:5.680800px;}
.ws31_c02414{word-spacing:5.724000px;}
.ws2f_c02414{word-spacing:5.752800px;}
.ws2c_c02414{word-spacing:5.911200px;}
.ws2a_c02414{word-spacing:6.040800px;}
.ws2b_c02414{word-spacing:6.112800px;}
.ws2d_c02414{word-spacing:6.249600px;}
.ws43_c02414{word-spacing:6.796800px;}
.ws44_c02414{word-spacing:6.847200px;}
.ws38_c02414{word-spacing:8.467200px;}
.ws37_c02414{word-spacing:8.568000px;}
.ws36_c02414{word-spacing:8.589600px;}
.ws39_c02414{word-spacing:8.683200px;}
.ws23_c02414{word-spacing:10.713600px;}
.ws22_c02414{word-spacing:10.771200px;}
.ws21_c02414{word-spacing:11.023200px;}
.ws20_c02414{word-spacing:11.052000px;}
.ws32_c02414{word-spacing:13.226400px;}
.ws3f_c02414{word-spacing:13.874400px;}
.ws41_c02414{word-spacing:14.054400px;}
.ws40_c02414{word-spacing:14.068800px;}
.ws1d_c02414{word-spacing:19.612800px;}
.ws1b_c02414{word-spacing:19.648800px;}
.ws1c_c02414{word-spacing:19.785600px;}
.ws3b_c02414{word-spacing:21.542400px;}
.ws3a_c02414{word-spacing:21.909600px;}
.ws3c_c02414{word-spacing:21.981600px;}
.ws28_c02414{word-spacing:22.917600px;}
.ws27_c02414{word-spacing:22.982400px;}
.ws45_c02414{word-spacing:32.299200px;}
.ws46_c02414{word-spacing:32.392800px;}
.ws1f_c02414{word-spacing:37.677600px;}
.ws1e_c02414{word-spacing:37.699200px;}
.ws26_c02414{word-spacing:48.067200px;}
.ws25_c02414{word-spacing:48.081600px;}
.ws24_c02414{word-spacing:48.088800px;}
._3_c02414{margin-left:-8.697600px;}
._1_c02414{margin-left:-7.459200px;}
._2_c02414{margin-left:-5.817600px;}
._0_c02414{margin-left:-1.396800px;}
.fc0_c02414{color:rgb(0,0,0);}
.fs2_c02414{font-size:54.000000px;}
.fs0_c02414{font-size:65.880000px;}
.fs1_c02414{font-size:72.000000px;}
.y0_c02414{bottom:0.000000px;}
.y3_c02414{bottom:75.720882px;}
.y2_c02414{bottom:113.880225px;}
.y34_c02414{bottom:142.230081px;}
.y33_c02414{bottom:164.010009px;}
.y32_c02414{bottom:185.880522px;}
.y31_c02414{bottom:207.660450px;}
.y30_c02414{bottom:227.640450px;}
.y2f_c02414{bottom:248.520450px;}
.y2e_c02414{bottom:269.220450px;}
.y2d_c02414{bottom:289.920450px;}
.y2c_c02414{bottom:310.620450px;}
.y2b_c02414{bottom:331.320450px;}
.y2a_c02414{bottom:352.020450px;}
.y29_c02414{bottom:372.450450px;}
.y28_c02414{bottom:393.330450px;}
.y27_c02414{bottom:414.030450px;}
.y26_c02414{bottom:434.730450px;}
.y25_c02414{bottom:455.340450px;}
.y24_c02414{bottom:476.130450px;}
.y23_c02414{bottom:496.830450px;}
.y22_c02414{bottom:517.530450px;}
.y21_c02414{bottom:538.230450px;}
.y20_c02414{bottom:562.170450px;}
.y1f_c02414{bottom:584.760450px;}
.y1e_c02414{bottom:604.830450px;}
.y1d_c02414{bottom:625.530450px;}
.y1c_c02414{bottom:646.230450px;}
.y1b_c02414{bottom:666.930450px;}
.y1a_c02414{bottom:687.630450px;}
.y19_c02414{bottom:708.150450px;}
.y18_c02414{bottom:728.130450px;}
.y17_c02414{bottom:747.030450px;}
.y16_c02414{bottom:767.730450px;}
.y15_c02414{bottom:788.430450px;}
.y14_c02414{bottom:808.950450px;}
.y13_c02414{bottom:829.020450px;}
.y12_c02414{bottom:845.310450px;}
.y11_c02414{bottom:866.010450px;}
.y10_c02414{bottom:886.710450px;}
.yf_c02414{bottom:907.410450px;}
.ye_c02414{bottom:928.110450px;}
.yd_c02414{bottom:948.810450px;}
.yc_c02414{bottom:969.510450px;}
.yb_c02414{bottom:990.210450px;}
.ya_c02414{bottom:1010.910450px;}
.y9_c02414{bottom:1031.610450px;}
.y8_c02414{bottom:1052.310450px;}
.y7_c02414{bottom:1073.010450px;}
.y6_c02414{bottom:1095.060450px;}
.y5_c02414{bottom:1118.820450px;}
.y4_c02414{bottom:1140.690450px;}
.y1_c02414{bottom:1194.600450px;}
.h3_c02414{height:43.909277px;}
.h6_c02414{height:52.998047px;}
.h2_c02414{height:54.331699px;}
.h8_c02414{height:64.657617px;}
.h1_c02414{height:66.394687px;}
.h4_c02414{height:70.664062px;}
.h7_c02414{height:72.562500px;}
.h5_c02414{height:75.093750px;}
.h0_c02414{height:1263.000000px;}
.w1_c02414{width:892.500000px;}
.w0_c02414{width:892.830000px;}
.x0_c02414{left:0.000000px;}
.x1_c02414{left:127.620000px;}
.x3_c02414{left:137.430000px;}
.x5_c02414{left:154.620000px;}
.x4_c02414{left:181.620000px;}
.x2_c02414{left:438.120675px;}
@media print{
.v0_c02414{vertical-align:0.000000pt;}
.ls18_c02414{letter-spacing:-0.115200pt;}
.ls1a_c02414{letter-spacing:-0.064000pt;}
.ls19_c02414{letter-spacing:-0.038400pt;}
.ls1b_c02414{letter-spacing:-0.025600pt;}
.ls16_c02414{letter-spacing:-0.019200pt;}
.ls15_c02414{letter-spacing:-0.012800pt;}
.ls17_c02414{letter-spacing:-0.006400pt;}
.ls13_c02414{letter-spacing:0.000000pt;}
.lsc_c02414{letter-spacing:0.006400pt;}
.lsa_c02414{letter-spacing:0.012800pt;}
.lsb_c02414{letter-spacing:0.019200pt;}
.ls0_c02414{letter-spacing:0.023424pt;}
.ls6_c02414{letter-spacing:0.025600pt;}
.ls7_c02414{letter-spacing:0.032000pt;}
.ls3_c02414{letter-spacing:0.035136pt;}
.ls8_c02414{letter-spacing:0.038400pt;}
.lsd_c02414{letter-spacing:0.044800pt;}
.ls1_c02414{letter-spacing:0.046848pt;}
.ls4_c02414{letter-spacing:0.051200pt;}
.ls2_c02414{letter-spacing:0.052704pt;}
.lsf_c02414{letter-spacing:0.070272pt;}
.ls10_c02414{letter-spacing:0.070400pt;}
.ls11_c02414{letter-spacing:0.076800pt;}
.ls14_c02414{letter-spacing:0.081984pt;}
.lse_c02414{letter-spacing:0.087840pt;}
.ls12_c02414{letter-spacing:30.208000pt;}
.ls5_c02414{letter-spacing:106.688000pt;}
.ls9_c02414{letter-spacing:118.496000pt;}
.ws1_c02414{word-spacing:-64.000000pt;}
.ws2_c02414{word-spacing:-48.000000pt;}
.ws3_c02414{word-spacing:-16.032000pt;}
.ws5_c02414{word-spacing:-16.000000pt;}
.ws4_c02414{word-spacing:-14.727840pt;}
.ws19_c02414{word-spacing:-0.211200pt;}
.ws18_c02414{word-spacing:-0.185600pt;}
.wsb_c02414{word-spacing:-0.179200pt;}
.ws3e_c02414{word-spacing:-0.166400pt;}
.ws42_c02414{word-spacing:-0.160000pt;}
.wse_c02414{word-spacing:-0.147200pt;}
.ws0_c02414{word-spacing:-0.140544pt;}
.ws14_c02414{word-spacing:-0.134400pt;}
.wsd_c02414{word-spacing:-0.128000pt;}
.ws3d_c02414{word-spacing:-0.121600pt;}
.ws1a_c02414{word-spacing:-0.108800pt;}
.ws12_c02414{word-spacing:-0.089600pt;}
.ws13_c02414{word-spacing:-0.051200pt;}
.ws10_c02414{word-spacing:-0.038400pt;}
.wsf_c02414{word-spacing:-0.032000pt;}
.ws11_c02414{word-spacing:-0.025600pt;}
.ws17_c02414{word-spacing:-0.019200pt;}
.ws15_c02414{word-spacing:-0.012800pt;}
.ws16_c02414{word-spacing:-0.006400pt;}
.ws8_c02414{word-spacing:0.000000pt;}
.ws29_c02414{word-spacing:0.011712pt;}
.wsc_c02414{word-spacing:0.012800pt;}
.ws9_c02414{word-spacing:0.029280pt;}
.ws7_c02414{word-spacing:0.035136pt;}
.wsa_c02414{word-spacing:0.046848pt;}
.ws6_c02414{word-spacing:0.058560pt;}
.ws34_c02414{word-spacing:0.844800pt;}
.ws33_c02414{word-spacing:0.940800pt;}
.ws35_c02414{word-spacing:1.024000pt;}
.ws2e_c02414{word-spacing:5.043200pt;}
.ws30_c02414{word-spacing:5.049600pt;}
.ws31_c02414{word-spacing:5.088000pt;}
.ws2f_c02414{word-spacing:5.113600pt;}
.ws2c_c02414{word-spacing:5.254400pt;}
.ws2a_c02414{word-spacing:5.369600pt;}
.ws2b_c02414{word-spacing:5.433600pt;}
.ws2d_c02414{word-spacing:5.555200pt;}
.ws43_c02414{word-spacing:6.041600pt;}
.ws44_c02414{word-spacing:6.086400pt;}
.ws38_c02414{word-spacing:7.526400pt;}
.ws37_c02414{word-spacing:7.616000pt;}
.ws36_c02414{word-spacing:7.635200pt;}
.ws39_c02414{word-spacing:7.718400pt;}
.ws23_c02414{word-spacing:9.523200pt;}
.ws22_c02414{word-spacing:9.574400pt;}
.ws21_c02414{word-spacing:9.798400pt;}
.ws20_c02414{word-spacing:9.824000pt;}
.ws32_c02414{word-spacing:11.756800pt;}
.ws3f_c02414{word-spacing:12.332800pt;}
.ws41_c02414{word-spacing:12.492800pt;}
.ws40_c02414{word-spacing:12.505600pt;}
.ws1d_c02414{word-spacing:17.433600pt;}
.ws1b_c02414{word-spacing:17.465600pt;}
.ws1c_c02414{word-spacing:17.587200pt;}
.ws3b_c02414{word-spacing:19.148800pt;}
.ws3a_c02414{word-spacing:19.475200pt;}
.ws3c_c02414{word-spacing:19.539200pt;}
.ws28_c02414{word-spacing:20.371200pt;}
.ws27_c02414{word-spacing:20.428800pt;}
.ws45_c02414{word-spacing:28.710400pt;}
.ws46_c02414{word-spacing:28.793600pt;}
.ws1f_c02414{word-spacing:33.491200pt;}
.ws1e_c02414{word-spacing:33.510400pt;}
.ws26_c02414{word-spacing:42.726400pt;}
.ws25_c02414{word-spacing:42.739200pt;}
.ws24_c02414{word-spacing:42.745600pt;}
._3_c02414{margin-left:-7.731200pt;}
._1_c02414{margin-left:-6.630400pt;}
._2_c02414{margin-left:-5.171200pt;}
._0_c02414{margin-left:-1.241600pt;}
.fs2_c02414{font-size:48.000000pt;}
.fs0_c02414{font-size:58.560000pt;}
.fs1_c02414{font-size:64.000000pt;}
.y0_c02414{bottom:0.000000pt;}
.y3_c02414{bottom:67.307451pt;}
.y2_c02414{bottom:101.226867pt;}
.y34_c02414{bottom:126.426739pt;}
.y33_c02414{bottom:145.786675pt;}
.y32_c02414{bottom:165.227131pt;}
.y31_c02414{bottom:184.587067pt;}
.y30_c02414{bottom:202.347067pt;}
.y2f_c02414{bottom:220.907067pt;}
.y2e_c02414{bottom:239.307067pt;}
.y2d_c02414{bottom:257.707067pt;}
.y2c_c02414{bottom:276.107067pt;}
.y2b_c02414{bottom:294.507067pt;}
.y2a_c02414{bottom:312.907067pt;}
.y29_c02414{bottom:331.067067pt;}
.y28_c02414{bottom:349.627067pt;}
.y27_c02414{bottom:368.027067pt;}
.y26_c02414{bottom:386.427067pt;}
.y25_c02414{bottom:404.747067pt;}
.y24_c02414{bottom:423.227067pt;}
.y23_c02414{bottom:441.627067pt;}
.y22_c02414{bottom:460.027067pt;}
.y21_c02414{bottom:478.427067pt;}
.y20_c02414{bottom:499.707067pt;}
.y1f_c02414{bottom:519.787067pt;}
.y1e_c02414{bottom:537.627067pt;}
.y1d_c02414{bottom:556.027067pt;}
.y1c_c02414{bottom:574.427067pt;}
.y1b_c02414{bottom:592.827067pt;}
.y1a_c02414{bottom:611.227067pt;}
.y19_c02414{bottom:629.467067pt;}
.y18_c02414{bottom:647.227067pt;}
.y17_c02414{bottom:664.027067pt;}
.y16_c02414{bottom:682.427067pt;}
.y15_c02414{bottom:700.827067pt;}
.y14_c02414{bottom:719.067067pt;}
.y13_c02414{bottom:736.907067pt;}
.y12_c02414{bottom:751.387067pt;}
.y11_c02414{bottom:769.787067pt;}
.y10_c02414{bottom:788.187067pt;}
.yf_c02414{bottom:806.587067pt;}
.ye_c02414{bottom:824.987067pt;}
.yd_c02414{bottom:843.387067pt;}
.yc_c02414{bottom:861.787067pt;}
.yb_c02414{bottom:880.187067pt;}
.ya_c02414{bottom:898.587067pt;}
.y9_c02414{bottom:916.987067pt;}
.y8_c02414{bottom:935.387067pt;}
.y7_c02414{bottom:953.787067pt;}
.y6_c02414{bottom:973.387067pt;}
.y5_c02414{bottom:994.507067pt;}
.y4_c02414{bottom:1013.947067pt;}
.y1_c02414{bottom:1061.867067pt;}
.h3_c02414{height:39.030469pt;}
.h6_c02414{height:47.109375pt;}
.h2_c02414{height:48.294844pt;}
.h8_c02414{height:57.473437pt;}
.h1_c02414{height:59.017500pt;}
.h4_c02414{height:62.812500pt;}
.h7_c02414{height:64.500000pt;}
.h5_c02414{height:66.750000pt;}
.h0_c02414{height:1122.666667pt;}
.w1_c02414{width:793.333333pt;}
.w0_c02414{width:793.626667pt;}
.x0_c02414{left:0.000000pt;}
.x1_c02414{left:113.440000pt;}
.x3_c02414{left:122.160000pt;}
.x5_c02414{left:137.440000pt;}
.x4_c02414{left:161.440000pt;}
.x2_c02414{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3127d77c79db5f55f82a8ec.woff2')format("woff");}.ff1_c02415{font-family:ff1_c02415;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02415;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02415{font-family:ff2_c02415;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02415;src:url('chunks/assets/font_895c4c258a444f668318d593.woff2')format("woff");}.ff3_c02415{font-family:ff3_c02415;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02415;src:url('chunks/assets/font_2a16c706e5c04739030fc670.woff2')format("woff");}.ff4_c02415{font-family:ff4_c02415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c02415{letter-spacing:-0.158400px;}
.lse_c02415{letter-spacing:-0.050400px;}
.ls13_c02415{letter-spacing:-0.036000px;}
.ls12_c02415{letter-spacing:-0.028800px;}
.ls11_c02415{letter-spacing:-0.021600px;}
.lsf_c02415{letter-spacing:-0.014400px;}
.ls10_c02415{letter-spacing:-0.007200px;}
.lsc_c02415{letter-spacing:0.000000px;}
.ls4_c02415{letter-spacing:0.007200px;}
.ls5_c02415{letter-spacing:0.014400px;}
.ls6_c02415{letter-spacing:0.021600px;}
.ls0_c02415{letter-spacing:0.026352px;}
.ls3_c02415{letter-spacing:0.028800px;}
.ls8_c02415{letter-spacing:0.036000px;}
.lsb_c02415{letter-spacing:0.043200px;}
.lsa_c02415{letter-spacing:0.050400px;}
.ls1_c02415{letter-spacing:0.052704px;}
.ls7_c02415{letter-spacing:0.057600px;}
.ls9_c02415{letter-spacing:0.064800px;}
.lsd_c02415{letter-spacing:0.092232px;}
.ls2_c02415{letter-spacing:0.098820px;}
.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;}
}
.ws2_c02415{word-spacing:-17.841600px;}
.ws1_c02415{word-spacing:-16.568820px;}
.ws22_c02415{word-spacing:-0.374400px;}
.ws14_c02415{word-spacing:-0.288000px;}
.ws0_c02415{word-spacing:-0.158112px;}
.ws1d_c02415{word-spacing:-0.151200px;}
.ws21_c02415{word-spacing:-0.100800px;}
.ws20_c02415{word-spacing:-0.064800px;}
.ws23_c02415{word-spacing:-0.043200px;}
.ws1c_c02415{word-spacing:-0.036000px;}
.ws7_c02415{word-spacing:-0.028800px;}
.ws19_c02415{word-spacing:-0.021600px;}
.ws18_c02415{word-spacing:-0.014400px;}
.ws17_c02415{word-spacing:-0.007200px;}
.ws5_c02415{word-spacing:0.000000px;}
.ws1a_c02415{word-spacing:0.007200px;}
.ws15_c02415{word-spacing:0.014400px;}
.ws1b_c02415{word-spacing:0.021600px;}
.ws4_c02415{word-spacing:0.039528px;}
.ws3_c02415{word-spacing:0.065880px;}
.ws6_c02415{word-spacing:0.230400px;}
.ws24_c02415{word-spacing:0.396000px;}
.wsf_c02415{word-spacing:0.907200px;}
.ws1f_c02415{word-spacing:0.950400px;}
.wsd_c02415{word-spacing:0.972000px;}
.ws1e_c02415{word-spacing:0.993600px;}
.wse_c02415{word-spacing:1.080000px;}
.ws16_c02415{word-spacing:1.382400px;}
.ws12_c02415{word-spacing:4.975200px;}
.ws13_c02415{word-spacing:5.004000px;}
.ws11_c02415{word-spacing:6.386400px;}
.ws10_c02415{word-spacing:6.472800px;}
.wsa_c02415{word-spacing:17.136000px;}
.ws9_c02415{word-spacing:17.143200px;}
.ws8_c02415{word-spacing:17.272800px;}
.wsb_c02415{word-spacing:25.070400px;}
.wsc_c02415{word-spacing:25.164000px;}
._0_c02415{margin-left:-1.375200px;}
.fc0_c02415{color:rgb(0,0,0);}
.fs0_c02415{font-size:65.880000px;}
.fs1_c02415{font-size:72.000000px;}
.y0_c02415{bottom:0.000000px;}
.y3_c02415{bottom:75.720882px;}
.y2_c02415{bottom:113.880225px;}
.y2f_c02415{bottom:137.548758px;}
.y2e_c02415{bottom:159.328686px;}
.y2d_c02415{bottom:181.199199px;}
.y2c_c02415{bottom:202.979127px;}
.y2b_c02415{bottom:224.849640px;}
.y2a_c02415{bottom:246.629568px;}
.y29_c02415{bottom:268.500081px;}
.y28_c02415{bottom:290.280009px;}
.y27_c02415{bottom:312.150522px;}
.y26_c02415{bottom:333.930450px;}
.y25_c02415{bottom:357.060450px;}
.y24_c02415{bottom:380.820450px;}
.y23_c02415{bottom:404.670450px;}
.y22_c02415{bottom:428.430450px;}
.y21_c02415{bottom:452.280450px;}
.y20_c02415{bottom:476.040450px;}
.y1f_c02415{bottom:499.890450px;}
.y1e_c02415{bottom:523.650450px;}
.y1d_c02415{bottom:547.500450px;}
.y1c_c02415{bottom:571.260450px;}
.y1b_c02415{bottom:595.110450px;}
.y1a_c02415{bottom:618.870450px;}
.y19_c02415{bottom:642.720450px;}
.y18_c02415{bottom:666.480450px;}
.y17_c02415{bottom:690.330450px;}
.y16_c02415{bottom:714.090450px;}
.y15_c02415{bottom:737.850450px;}
.y14_c02415{bottom:761.700450px;}
.y13_c02415{bottom:785.460450px;}
.y12_c02415{bottom:809.130450px;}
.y11_c02415{bottom:833.070450px;}
.y10_c02415{bottom:856.920450px;}
.yf_c02415{bottom:880.680450px;}
.ye_c02415{bottom:904.530450px;}
.yd_c02415{bottom:928.290450px;}
.yc_c02415{bottom:952.140450px;}
.yb_c02415{bottom:975.900450px;}
.ya_c02415{bottom:999.750450px;}
.y9_c02415{bottom:1023.510450px;}
.y8_c02415{bottom:1047.360450px;}
.y7_c02415{bottom:1070.940450px;}
.y6_c02415{bottom:1094.790450px;}
.y5_c02415{bottom:1118.910450px;}
.y4_c02415{bottom:1141.410585px;}
.y1_c02415{bottom:1194.600450px;}
.h3_c02415{height:43.909277px;}
.h2_c02415{height:54.331699px;}
.h6_c02415{height:64.657617px;}
.h1_c02415{height:66.394687px;}
.h5_c02415{height:70.664062px;}
.h4_c02415{height:72.562500px;}
.h0_c02415{height:1263.000000px;}
.w1_c02415{width:892.500000px;}
.w0_c02415{width:892.830000px;}
.x0_c02415{left:0.000000px;}
.x1_c02415{left:127.620000px;}
.x2_c02415{left:438.120675px;}
@media print{
.v0_c02415{vertical-align:0.000000pt;}
.ls14_c02415{letter-spacing:-0.140800pt;}
.lse_c02415{letter-spacing:-0.044800pt;}
.ls13_c02415{letter-spacing:-0.032000pt;}
.ls12_c02415{letter-spacing:-0.025600pt;}
.ls11_c02415{letter-spacing:-0.019200pt;}
.lsf_c02415{letter-spacing:-0.012800pt;}
.ls10_c02415{letter-spacing:-0.006400pt;}
.lsc_c02415{letter-spacing:0.000000pt;}
.ls4_c02415{letter-spacing:0.006400pt;}
.ls5_c02415{letter-spacing:0.012800pt;}
.ls6_c02415{letter-spacing:0.019200pt;}
.ls0_c02415{letter-spacing:0.023424pt;}
.ls3_c02415{letter-spacing:0.025600pt;}
.ls8_c02415{letter-spacing:0.032000pt;}
.lsb_c02415{letter-spacing:0.038400pt;}
.lsa_c02415{letter-spacing:0.044800pt;}
.ls1_c02415{letter-spacing:0.046848pt;}
.ls7_c02415{letter-spacing:0.051200pt;}
.ls9_c02415{letter-spacing:0.057600pt;}
.lsd_c02415{letter-spacing:0.081984pt;}
.ls2_c02415{letter-spacing:0.087840pt;}
.ws2_c02415{word-spacing:-15.859200pt;}
.ws1_c02415{word-spacing:-14.727840pt;}
.ws22_c02415{word-spacing:-0.332800pt;}
.ws14_c02415{word-spacing:-0.256000pt;}
.ws0_c02415{word-spacing:-0.140544pt;}
.ws1d_c02415{word-spacing:-0.134400pt;}
.ws21_c02415{word-spacing:-0.089600pt;}
.ws20_c02415{word-spacing:-0.057600pt;}
.ws23_c02415{word-spacing:-0.038400pt;}
.ws1c_c02415{word-spacing:-0.032000pt;}
.ws7_c02415{word-spacing:-0.025600pt;}
.ws19_c02415{word-spacing:-0.019200pt;}
.ws18_c02415{word-spacing:-0.012800pt;}
.ws17_c02415{word-spacing:-0.006400pt;}
.ws5_c02415{word-spacing:0.000000pt;}
.ws1a_c02415{word-spacing:0.006400pt;}
.ws15_c02415{word-spacing:0.012800pt;}
.ws1b_c02415{word-spacing:0.019200pt;}
.ws4_c02415{word-spacing:0.035136pt;}
.ws3_c02415{word-spacing:0.058560pt;}
.ws6_c02415{word-spacing:0.204800pt;}
.ws24_c02415{word-spacing:0.352000pt;}
.wsf_c02415{word-spacing:0.806400pt;}
.ws1f_c02415{word-spacing:0.844800pt;}
.wsd_c02415{word-spacing:0.864000pt;}
.ws1e_c02415{word-spacing:0.883200pt;}
.wse_c02415{word-spacing:0.960000pt;}
.ws16_c02415{word-spacing:1.228800pt;}
.ws12_c02415{word-spacing:4.422400pt;}
.ws13_c02415{word-spacing:4.448000pt;}
.ws11_c02415{word-spacing:5.676800pt;}
.ws10_c02415{word-spacing:5.753600pt;}
.wsa_c02415{word-spacing:15.232000pt;}
.ws9_c02415{word-spacing:15.238400pt;}
.ws8_c02415{word-spacing:15.353600pt;}
.wsb_c02415{word-spacing:22.284800pt;}
.wsc_c02415{word-spacing:22.368000pt;}
._0_c02415{margin-left:-1.222400pt;}
.fs0_c02415{font-size:58.560000pt;}
.fs1_c02415{font-size:64.000000pt;}
.y0_c02415{bottom:0.000000pt;}
.y3_c02415{bottom:67.307451pt;}
.y2_c02415{bottom:101.226867pt;}
.y2f_c02415{bottom:122.265563pt;}
.y2e_c02415{bottom:141.625499pt;}
.y2d_c02415{bottom:161.065955pt;}
.y2c_c02415{bottom:180.425891pt;}
.y2b_c02415{bottom:199.866347pt;}
.y2a_c02415{bottom:219.226283pt;}
.y29_c02415{bottom:238.666739pt;}
.y28_c02415{bottom:258.026675pt;}
.y27_c02415{bottom:277.467131pt;}
.y26_c02415{bottom:296.827067pt;}
.y25_c02415{bottom:317.387067pt;}
.y24_c02415{bottom:338.507067pt;}
.y23_c02415{bottom:359.707067pt;}
.y22_c02415{bottom:380.827067pt;}
.y21_c02415{bottom:402.027067pt;}
.y20_c02415{bottom:423.147067pt;}
.y1f_c02415{bottom:444.347067pt;}
.y1e_c02415{bottom:465.467067pt;}
.y1d_c02415{bottom:486.667067pt;}
.y1c_c02415{bottom:507.787067pt;}
.y1b_c02415{bottom:528.987067pt;}
.y1a_c02415{bottom:550.107067pt;}
.y19_c02415{bottom:571.307067pt;}
.y18_c02415{bottom:592.427067pt;}
.y17_c02415{bottom:613.627067pt;}
.y16_c02415{bottom:634.747067pt;}
.y15_c02415{bottom:655.867067pt;}
.y14_c02415{bottom:677.067067pt;}
.y13_c02415{bottom:698.187067pt;}
.y12_c02415{bottom:719.227067pt;}
.y11_c02415{bottom:740.507067pt;}
.y10_c02415{bottom:761.707067pt;}
.yf_c02415{bottom:782.827067pt;}
.ye_c02415{bottom:804.027067pt;}
.yd_c02415{bottom:825.147067pt;}
.yc_c02415{bottom:846.347067pt;}
.yb_c02415{bottom:867.467067pt;}
.ya_c02415{bottom:888.667067pt;}
.y9_c02415{bottom:909.787067pt;}
.y8_c02415{bottom:930.987067pt;}
.y7_c02415{bottom:951.947067pt;}
.y6_c02415{bottom:973.147067pt;}
.y5_c02415{bottom:994.587067pt;}
.y4_c02415{bottom:1014.587187pt;}
.y1_c02415{bottom:1061.867067pt;}
.h3_c02415{height:39.030469pt;}
.h2_c02415{height:48.294844pt;}
.h6_c02415{height:57.473437pt;}
.h1_c02415{height:59.017500pt;}
.h5_c02415{height:62.812500pt;}
.h4_c02415{height:64.500000pt;}
.h0_c02415{height:1122.666667pt;}
.w1_c02415{width:793.333333pt;}
.w0_c02415{width:793.626667pt;}
.x0_c02415{left:0.000000pt;}
.x1_c02415{left:113.440000pt;}
.x2_c02415{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38289efc932260c422efc88f.woff2')format("woff");}.ff1_c02416{font-family:ff1_c02416;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02416{font-family:ff2_c02416;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02416;src:url('chunks/assets/font_2ec3d7c33e440d0518200aa0.woff2')format("woff");}.ff3_c02416{font-family:ff3_c02416;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02416;src:url('chunks/assets/font_89ddb39dfedcd148c6f7871c.woff2')format("woff");}.ff4_c02416{font-family:ff4_c02416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02416{vertical-align:0.000000px;}
.ls19_c02416{letter-spacing:-0.014400px;}
.ls18_c02416{letter-spacing:-0.007200px;}
.ls16_c02416{letter-spacing:0.000000px;}
.ls14_c02416{letter-spacing:0.007200px;}
.ls8_c02416{letter-spacing:0.013176px;}
.ls10_c02416{letter-spacing:0.014400px;}
.ls3_c02416{letter-spacing:0.019764px;}
.lsf_c02416{letter-spacing:0.021600px;}
.ls0_c02416{letter-spacing:0.026352px;}
.ls13_c02416{letter-spacing:0.028800px;}
.ls2_c02416{letter-spacing:0.032940px;}
.lsd_c02416{letter-spacing:0.036000px;}
.ls6_c02416{letter-spacing:0.039528px;}
.ls12_c02416{letter-spacing:0.043200px;}
.ls9_c02416{letter-spacing:0.046116px;}
.ls15_c02416{letter-spacing:0.050400px;}
.ls1_c02416{letter-spacing:0.052704px;}
.ls11_c02416{letter-spacing:0.057600px;}
.ls7_c02416{letter-spacing:0.059292px;}
.lse_c02416{letter-spacing:0.064800px;}
.lsb_c02416{letter-spacing:0.065880px;}
.lsc_c02416{letter-spacing:0.079056px;}
.ls17_c02416{letter-spacing:0.092232px;}
.lsa_c02416{letter-spacing:0.098820px;}
.ls5_c02416{letter-spacing:0.144936px;}
.ls4_c02416{letter-spacing:0.164700px;}
.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;}
}
.ws29_c02416{word-spacing:-0.396000px;}
.ws26_c02416{word-spacing:-0.381600px;}
.ws17_c02416{word-spacing:-0.208800px;}
.ws20_c02416{word-spacing:-0.194400px;}
.ws1b_c02416{word-spacing:-0.172800px;}
.ws1f_c02416{word-spacing:-0.158400px;}
.ws0_c02416{word-spacing:-0.158112px;}
.ws1d_c02416{word-spacing:-0.151200px;}
.ws2b_c02416{word-spacing:-0.129600px;}
.ws28_c02416{word-spacing:-0.122400px;}
.ws21_c02416{word-spacing:-0.108000px;}
.ws2a_c02416{word-spacing:-0.100800px;}
.ws25_c02416{word-spacing:-0.093600px;}
.ws27_c02416{word-spacing:-0.079200px;}
.ws6_c02416{word-spacing:-0.072468px;}
.ws18_c02416{word-spacing:-0.072000px;}
.ws22_c02416{word-spacing:-0.064800px;}
.ws16_c02416{word-spacing:-0.057600px;}
.ws7_c02416{word-spacing:-0.052704px;}
.ws1c_c02416{word-spacing:-0.036000px;}
.ws23_c02416{word-spacing:-0.028800px;}
.ws19_c02416{word-spacing:-0.021600px;}
.ws1a_c02416{word-spacing:-0.014400px;}
.ws15_c02416{word-spacing:-0.007200px;}
.ws3_c02416{word-spacing:0.000000px;}
.ws1e_c02416{word-spacing:0.007200px;}
.ws14_c02416{word-spacing:0.013176px;}
.ws24_c02416{word-spacing:0.014400px;}
.ws9_c02416{word-spacing:0.032940px;}
.ws2_c02416{word-spacing:0.039528px;}
.wsb_c02416{word-spacing:0.046116px;}
.wsa_c02416{word-spacing:0.052704px;}
.ws4_c02416{word-spacing:0.059292px;}
.ws1_c02416{word-spacing:0.065880px;}
.ws5_c02416{word-spacing:0.072468px;}
.wsc_c02416{word-spacing:0.079056px;}
.ws8_c02416{word-spacing:1.857816px;}
.ws13_c02416{word-spacing:4.005504px;}
.ws12_c02416{word-spacing:4.703832px;}
.ws11_c02416{word-spacing:4.717008px;}
.ws10_c02416{word-spacing:6.489180px;}
.wsf_c02416{word-spacing:6.535296px;}
.wse_c02416{word-spacing:24.520536px;}
.wsd_c02416{word-spacing:24.546888px;}
._0_c02416{margin-left:-1.047492px;}
._1_c02416{width:1.337364px;}
.fc0_c02416{color:rgb(0,0,0);}
.fs2_c02416{font-size:11.880000px;}
.fs0_c02416{font-size:65.880000px;}
.fs1_c02416{font-size:72.000000px;}
.y0_c02416{bottom:0.000000px;}
.y3_c02416{bottom:75.720882px;}
.y2_c02416{bottom:113.880225px;}
.y35_c02416{bottom:140.250648px;}
.y34_c02416{bottom:144.210549px;}
.y33_c02416{bottom:148.170450px;}
.y32_c02416{bottom:155.730450px;}
.y31_c02416{bottom:176.430450px;}
.y30_c02416{bottom:197.130450px;}
.y2f_c02416{bottom:217.830450px;}
.y2e_c02416{bottom:238.530450px;}
.y2d_c02416{bottom:259.230450px;}
.y2c_c02416{bottom:279.930450px;}
.y2b_c02416{bottom:300.630450px;}
.y2a_c02416{bottom:321.330450px;}
.y29_c02416{bottom:342.030450px;}
.y28_c02416{bottom:362.730450px;}
.y27_c02416{bottom:383.430450px;}
.y26_c02416{bottom:403.950450px;}
.y25_c02416{bottom:424.830450px;}
.y24_c02416{bottom:445.530450px;}
.y23_c02416{bottom:466.230450px;}
.y22_c02416{bottom:486.930450px;}
.y21_c02416{bottom:507.630450px;}
.y20_c02416{bottom:528.330450px;}
.y1f_c02416{bottom:549.030450px;}
.y1e_c02416{bottom:569.730450px;}
.y1d_c02416{bottom:590.430450px;}
.y1c_c02416{bottom:611.130450px;}
.y1b_c02416{bottom:631.650450px;}
.y1a_c02416{bottom:655.680450px;}
.y19_c02416{bottom:678.360450px;}
.y18_c02416{bottom:700.858026px;}
.y17_c02416{bottom:722.728539px;}
.y16_c02416{bottom:744.508467px;}
.y15_c02416{bottom:766.378980px;}
.y14_c02416{bottom:788.158908px;}
.y13_c02416{bottom:810.029421px;}
.y12_c02416{bottom:831.809349px;}
.y11_c02416{bottom:853.589277px;}
.y10_c02416{bottom:875.459790px;}
.yf_c02416{bottom:897.239718px;}
.ye_c02416{bottom:919.110231px;}
.yd_c02416{bottom:940.890159px;}
.yc_c02416{bottom:962.760672px;}
.yb_c02416{bottom:984.540600px;}
.ya_c02416{bottom:1007.130450px;}
.y9_c02416{bottom:1028.910450px;}
.y8_c02416{bottom:1051.500450px;}
.y7_c02416{bottom:1073.190450px;}
.y6_c02416{bottom:1095.779937px;}
.y5_c02416{bottom:1117.650450px;}
.y4_c02416{bottom:1139.880450px;}
.y1_c02416{bottom:1194.600450px;}
.h7_c02416{height:11.659570px;}
.h3_c02416{height:43.909277px;}
.h2_c02416{height:54.331699px;}
.h5_c02416{height:64.657617px;}
.h1_c02416{height:66.394687px;}
.h6_c02416{height:70.664062px;}
.h4_c02416{height:72.562500px;}
.h0_c02416{height:1263.000000px;}
.w1_c02416{width:892.500000px;}
.w0_c02416{width:892.830000px;}
.x0_c02416{left:0.000000px;}
.x1_c02416{left:127.620000px;}
.x3_c02416{left:312.570000px;}
.x2_c02416{left:438.120675px;}
@media print{
.v0_c02416{vertical-align:0.000000pt;}
.ls19_c02416{letter-spacing:-0.012800pt;}
.ls18_c02416{letter-spacing:-0.006400pt;}
.ls16_c02416{letter-spacing:0.000000pt;}
.ls14_c02416{letter-spacing:0.006400pt;}
.ls8_c02416{letter-spacing:0.011712pt;}
.ls10_c02416{letter-spacing:0.012800pt;}
.ls3_c02416{letter-spacing:0.017568pt;}
.lsf_c02416{letter-spacing:0.019200pt;}
.ls0_c02416{letter-spacing:0.023424pt;}
.ls13_c02416{letter-spacing:0.025600pt;}
.ls2_c02416{letter-spacing:0.029280pt;}
.lsd_c02416{letter-spacing:0.032000pt;}
.ls6_c02416{letter-spacing:0.035136pt;}
.ls12_c02416{letter-spacing:0.038400pt;}
.ls9_c02416{letter-spacing:0.040992pt;}
.ls15_c02416{letter-spacing:0.044800pt;}
.ls1_c02416{letter-spacing:0.046848pt;}
.ls11_c02416{letter-spacing:0.051200pt;}
.ls7_c02416{letter-spacing:0.052704pt;}
.lse_c02416{letter-spacing:0.057600pt;}
.lsb_c02416{letter-spacing:0.058560pt;}
.lsc_c02416{letter-spacing:0.070272pt;}
.ls17_c02416{letter-spacing:0.081984pt;}
.lsa_c02416{letter-spacing:0.087840pt;}
.ls5_c02416{letter-spacing:0.128832pt;}
.ls4_c02416{letter-spacing:0.146400pt;}
.ws29_c02416{word-spacing:-0.352000pt;}
.ws26_c02416{word-spacing:-0.339200pt;}
.ws17_c02416{word-spacing:-0.185600pt;}
.ws20_c02416{word-spacing:-0.172800pt;}
.ws1b_c02416{word-spacing:-0.153600pt;}
.ws1f_c02416{word-spacing:-0.140800pt;}
.ws0_c02416{word-spacing:-0.140544pt;}
.ws1d_c02416{word-spacing:-0.134400pt;}
.ws2b_c02416{word-spacing:-0.115200pt;}
.ws28_c02416{word-spacing:-0.108800pt;}
.ws21_c02416{word-spacing:-0.096000pt;}
.ws2a_c02416{word-spacing:-0.089600pt;}
.ws25_c02416{word-spacing:-0.083200pt;}
.ws27_c02416{word-spacing:-0.070400pt;}
.ws6_c02416{word-spacing:-0.064416pt;}
.ws18_c02416{word-spacing:-0.064000pt;}
.ws22_c02416{word-spacing:-0.057600pt;}
.ws16_c02416{word-spacing:-0.051200pt;}
.ws7_c02416{word-spacing:-0.046848pt;}
.ws1c_c02416{word-spacing:-0.032000pt;}
.ws23_c02416{word-spacing:-0.025600pt;}
.ws19_c02416{word-spacing:-0.019200pt;}
.ws1a_c02416{word-spacing:-0.012800pt;}
.ws15_c02416{word-spacing:-0.006400pt;}
.ws3_c02416{word-spacing:0.000000pt;}
.ws1e_c02416{word-spacing:0.006400pt;}
.ws14_c02416{word-spacing:0.011712pt;}
.ws24_c02416{word-spacing:0.012800pt;}
.ws9_c02416{word-spacing:0.029280pt;}
.ws2_c02416{word-spacing:0.035136pt;}
.wsb_c02416{word-spacing:0.040992pt;}
.wsa_c02416{word-spacing:0.046848pt;}
.ws4_c02416{word-spacing:0.052704pt;}
.ws1_c02416{word-spacing:0.058560pt;}
.ws5_c02416{word-spacing:0.064416pt;}
.wsc_c02416{word-spacing:0.070272pt;}
.ws8_c02416{word-spacing:1.651392pt;}
.ws13_c02416{word-spacing:3.560448pt;}
.ws12_c02416{word-spacing:4.181184pt;}
.ws11_c02416{word-spacing:4.192896pt;}
.ws10_c02416{word-spacing:5.768160pt;}
.wsf_c02416{word-spacing:5.809152pt;}
.wse_c02416{word-spacing:21.796032pt;}
.wsd_c02416{word-spacing:21.819456pt;}
._0_c02416{margin-left:-0.931104pt;}
._1_c02416{width:1.188768pt;}
.fs2_c02416{font-size:10.560000pt;}
.fs0_c02416{font-size:58.560000pt;}
.fs1_c02416{font-size:64.000000pt;}
.y0_c02416{bottom:0.000000pt;}
.y3_c02416{bottom:67.307451pt;}
.y2_c02416{bottom:101.226867pt;}
.y35_c02416{bottom:124.667243pt;}
.y34_c02416{bottom:128.187155pt;}
.y33_c02416{bottom:131.707067pt;}
.y32_c02416{bottom:138.427067pt;}
.y31_c02416{bottom:156.827067pt;}
.y30_c02416{bottom:175.227067pt;}
.y2f_c02416{bottom:193.627067pt;}
.y2e_c02416{bottom:212.027067pt;}
.y2d_c02416{bottom:230.427067pt;}
.y2c_c02416{bottom:248.827067pt;}
.y2b_c02416{bottom:267.227067pt;}
.y2a_c02416{bottom:285.627067pt;}
.y29_c02416{bottom:304.027067pt;}
.y28_c02416{bottom:322.427067pt;}
.y27_c02416{bottom:340.827067pt;}
.y26_c02416{bottom:359.067067pt;}
.y25_c02416{bottom:377.627067pt;}
.y24_c02416{bottom:396.027067pt;}
.y23_c02416{bottom:414.427067pt;}
.y22_c02416{bottom:432.827067pt;}
.y21_c02416{bottom:451.227067pt;}
.y20_c02416{bottom:469.627067pt;}
.y1f_c02416{bottom:488.027067pt;}
.y1e_c02416{bottom:506.427067pt;}
.y1d_c02416{bottom:524.827067pt;}
.y1c_c02416{bottom:543.227067pt;}
.y1b_c02416{bottom:561.467067pt;}
.y1a_c02416{bottom:582.827067pt;}
.y19_c02416{bottom:602.987067pt;}
.y18_c02416{bottom:622.984912pt;}
.y17_c02416{bottom:642.425368pt;}
.y16_c02416{bottom:661.785304pt;}
.y15_c02416{bottom:681.225760pt;}
.y14_c02416{bottom:700.585696pt;}
.y13_c02416{bottom:720.026152pt;}
.y12_c02416{bottom:739.386088pt;}
.y11_c02416{bottom:758.746024pt;}
.y10_c02416{bottom:778.186480pt;}
.yf_c02416{bottom:797.546416pt;}
.ye_c02416{bottom:816.986872pt;}
.yd_c02416{bottom:836.346808pt;}
.yc_c02416{bottom:855.787264pt;}
.yb_c02416{bottom:875.147200pt;}
.ya_c02416{bottom:895.227067pt;}
.y9_c02416{bottom:914.587067pt;}
.y8_c02416{bottom:934.667067pt;}
.y7_c02416{bottom:953.947067pt;}
.y6_c02416{bottom:974.026611pt;}
.y5_c02416{bottom:993.467067pt;}
.y4_c02416{bottom:1013.227067pt;}
.y1_c02416{bottom:1061.867067pt;}
.h7_c02416{height:10.364062pt;}
.h3_c02416{height:39.030469pt;}
.h2_c02416{height:48.294844pt;}
.h5_c02416{height:57.473437pt;}
.h1_c02416{height:59.017500pt;}
.h6_c02416{height:62.812500pt;}
.h4_c02416{height:64.500000pt;}
.h0_c02416{height:1122.666667pt;}
.w1_c02416{width:793.333333pt;}
.w0_c02416{width:793.626667pt;}
.x0_c02416{left:0.000000pt;}
.x1_c02416{left:113.440000pt;}
.x3_c02416{left:277.840000pt;}
.x2_c02416{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49cf9f3f42a81cc9297003b0.woff2')format("woff");}.ff1_c02417{font-family:ff1_c02417;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02417{font-family:ff2_c02417;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02417;src:url('chunks/assets/font_489fd8fd03b5d447708d5783.woff2')format("woff");}.ff3_c02417{font-family:ff3_c02417;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02417;src:url('chunks/assets/font_cf4f3bf1afb295adc03c0c4e.woff2')format("woff");}.ff4_c02417{font-family:ff4_c02417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c02417{vertical-align:0.000000px;}
.ls13_c02417{letter-spacing:-0.021600px;}
.ls12_c02417{letter-spacing:-0.007200px;}
.ls10_c02417{letter-spacing:0.000000px;}
.ls6_c02417{letter-spacing:0.007200px;}
.ls7_c02417{letter-spacing:0.014400px;}
.ls3_c02417{letter-spacing:0.021600px;}
.ls0_c02417{letter-spacing:0.026352px;}
.ls9_c02417{letter-spacing:0.028800px;}
.lsb_c02417{letter-spacing:0.036000px;}
.lsd_c02417{letter-spacing:0.043200px;}
.ls1_c02417{letter-spacing:0.052704px;}
.ls4_c02417{letter-spacing:0.057600px;}
.ls8_c02417{letter-spacing:0.064800px;}
.ls2_c02417{letter-spacing:0.065880px;}
.lsc_c02417{letter-spacing:0.072000px;}
.lse_c02417{letter-spacing:0.079200px;}
.lsf_c02417{letter-spacing:0.086400px;}
.ls11_c02417{letter-spacing:0.092232px;}
.ls5_c02417{letter-spacing:0.093600px;}
.lsa_c02417{letter-spacing:0.108000px;}
.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;}
}
.wsc_c02417{word-spacing:-0.453600px;}
.ws20_c02417{word-spacing:-0.424800px;}
.wsa_c02417{word-spacing:-0.417600px;}
.ws28_c02417{word-spacing:-0.352800px;}
.ws1a_c02417{word-spacing:-0.259200px;}
.ws21_c02417{word-spacing:-0.252000px;}
.ws29_c02417{word-spacing:-0.187200px;}
.ws2f_c02417{word-spacing:-0.180000px;}
.ws22_c02417{word-spacing:-0.172800px;}
.wsf_c02417{word-spacing:-0.158400px;}
.ws0_c02417{word-spacing:-0.158112px;}
.ws7_c02417{word-spacing:-0.151200px;}
.ws12_c02417{word-spacing:-0.144000px;}
.wsd_c02417{word-spacing:-0.136800px;}
.ws2d_c02417{word-spacing:-0.129600px;}
.ws2a_c02417{word-spacing:-0.122400px;}
.ws1b_c02417{word-spacing:-0.100800px;}
.wse_c02417{word-spacing:-0.093600px;}
.ws17_c02417{word-spacing:-0.072000px;}
.ws1e_c02417{word-spacing:-0.043200px;}
.ws2e_c02417{word-spacing:-0.028800px;}
.ws13_c02417{word-spacing:-0.021600px;}
.ws5_c02417{word-spacing:-0.007200px;}
.ws3_c02417{word-spacing:0.000000px;}
.ws4_c02417{word-spacing:0.026352px;}
.ws2_c02417{word-spacing:0.039528px;}
.ws6_c02417{word-spacing:0.064800px;}
.ws1_c02417{word-spacing:0.065880px;}
.ws1d_c02417{word-spacing:2.440800px;}
.ws1c_c02417{word-spacing:2.484000px;}
.ws24_c02417{word-spacing:2.664000px;}
.ws23_c02417{word-spacing:2.779200px;}
.ws27_c02417{word-spacing:4.514400px;}
.ws11_c02417{word-spacing:4.521600px;}
.ws10_c02417{word-spacing:4.629600px;}
.ws25_c02417{word-spacing:4.644000px;}
.ws26_c02417{word-spacing:4.680000px;}
.ws9_c02417{word-spacing:7.848000px;}
.ws8_c02417{word-spacing:7.927200px;}
.ws1f_c02417{word-spacing:17.265600px;}
.ws19_c02417{word-spacing:18.194400px;}
.ws18_c02417{word-spacing:18.324000px;}
.wsb_c02417{word-spacing:21.938400px;}
.ws2c_c02417{word-spacing:24.400800px;}
.ws2b_c02417{word-spacing:24.832800px;}
.ws15_c02417{word-spacing:32.472000px;}
.ws14_c02417{word-spacing:32.630400px;}
.ws16_c02417{word-spacing:32.781600px;}
._0_c02417{margin-left:-1.185840px;}
.fc0_c02417{color:rgb(0,0,0);}
.fs0_c02417{font-size:65.880000px;}
.fs1_c02417{font-size:72.000000px;}
.y0_c02417{bottom:0.000000px;}
.y3_c02417{bottom:75.720882px;}
.y2_c02417{bottom:113.880225px;}
.y2e_c02417{bottom:149.429568px;}
.y2d_c02417{bottom:171.300081px;}
.y2c_c02417{bottom:193.080009px;}
.y2b_c02417{bottom:214.950522px;}
.y2a_c02417{bottom:236.730450px;}
.y29_c02417{bottom:259.860450px;}
.y28_c02417{bottom:283.620450px;}
.y27_c02417{bottom:307.470450px;}
.y26_c02417{bottom:331.230450px;}
.y25_c02417{bottom:355.080450px;}
.y24_c02417{bottom:378.840450px;}
.y23_c02417{bottom:402.690450px;}
.y22_c02417{bottom:426.450450px;}
.y21_c02417{bottom:450.300450px;}
.y20_c02417{bottom:474.060450px;}
.y1f_c02417{bottom:497.910450px;}
.y1e_c02417{bottom:521.670450px;}
.y1d_c02417{bottom:545.520450px;}
.y1c_c02417{bottom:569.280450px;}
.y1b_c02417{bottom:593.130450px;}
.y1a_c02417{bottom:616.890450px;}
.y19_c02417{bottom:640.740450px;}
.y18_c02417{bottom:664.500450px;}
.y17_c02417{bottom:688.260450px;}
.y16_c02417{bottom:712.110450px;}
.y15_c02417{bottom:735.690450px;}
.y14_c02417{bottom:759.720450px;}
.y13_c02417{bottom:783.480450px;}
.y12_c02417{bottom:807.330450px;}
.y11_c02417{bottom:831.090450px;}
.y10_c02417{bottom:854.940450px;}
.yf_c02417{bottom:878.700450px;}
.ye_c02417{bottom:902.550450px;}
.yd_c02417{bottom:926.310450px;}
.yc_c02417{bottom:950.160450px;}
.yb_c02417{bottom:973.920450px;}
.ya_c02417{bottom:997.770450px;}
.y9_c02417{bottom:1021.530450px;}
.y8_c02417{bottom:1045.380450px;}
.y7_c02417{bottom:1069.140450px;}
.y6_c02417{bottom:1092.990450px;}
.y5_c02417{bottom:1116.570450px;}
.y4_c02417{bottom:1140.690450px;}
.y1_c02417{bottom:1194.600450px;}
.h3_c02417{height:43.909277px;}
.h2_c02417{height:54.331699px;}
.h6_c02417{height:64.657617px;}
.h1_c02417{height:66.394687px;}
.h5_c02417{height:70.664062px;}
.h4_c02417{height:72.562500px;}
.h0_c02417{height:1263.000000px;}
.w1_c02417{width:892.500000px;}
.w0_c02417{width:892.830000px;}
.x0_c02417{left:0.000000px;}
.x1_c02417{left:127.620000px;}
.x2_c02417{left:438.120675px;}
@media print{
.v0_c02417{vertical-align:0.000000pt;}
.ls13_c02417{letter-spacing:-0.019200pt;}
.ls12_c02417{letter-spacing:-0.006400pt;}
.ls10_c02417{letter-spacing:0.000000pt;}
.ls6_c02417{letter-spacing:0.006400pt;}
.ls7_c02417{letter-spacing:0.012800pt;}
.ls3_c02417{letter-spacing:0.019200pt;}
.ls0_c02417{letter-spacing:0.023424pt;}
.ls9_c02417{letter-spacing:0.025600pt;}
.lsb_c02417{letter-spacing:0.032000pt;}
.lsd_c02417{letter-spacing:0.038400pt;}
.ls1_c02417{letter-spacing:0.046848pt;}
.ls4_c02417{letter-spacing:0.051200pt;}
.ls8_c02417{letter-spacing:0.057600pt;}
.ls2_c02417{letter-spacing:0.058560pt;}
.lsc_c02417{letter-spacing:0.064000pt;}
.lse_c02417{letter-spacing:0.070400pt;}
.lsf_c02417{letter-spacing:0.076800pt;}
.ls11_c02417{letter-spacing:0.081984pt;}
.ls5_c02417{letter-spacing:0.083200pt;}
.lsa_c02417{letter-spacing:0.096000pt;}
.wsc_c02417{word-spacing:-0.403200pt;}
.ws20_c02417{word-spacing:-0.377600pt;}
.wsa_c02417{word-spacing:-0.371200pt;}
.ws28_c02417{word-spacing:-0.313600pt;}
.ws1a_c02417{word-spacing:-0.230400pt;}
.ws21_c02417{word-spacing:-0.224000pt;}
.ws29_c02417{word-spacing:-0.166400pt;}
.ws2f_c02417{word-spacing:-0.160000pt;}
.ws22_c02417{word-spacing:-0.153600pt;}
.wsf_c02417{word-spacing:-0.140800pt;}
.ws0_c02417{word-spacing:-0.140544pt;}
.ws7_c02417{word-spacing:-0.134400pt;}
.ws12_c02417{word-spacing:-0.128000pt;}
.wsd_c02417{word-spacing:-0.121600pt;}
.ws2d_c02417{word-spacing:-0.115200pt;}
.ws2a_c02417{word-spacing:-0.108800pt;}
.ws1b_c02417{word-spacing:-0.089600pt;}
.wse_c02417{word-spacing:-0.083200pt;}
.ws17_c02417{word-spacing:-0.064000pt;}
.ws1e_c02417{word-spacing:-0.038400pt;}
.ws2e_c02417{word-spacing:-0.025600pt;}
.ws13_c02417{word-spacing:-0.019200pt;}
.ws5_c02417{word-spacing:-0.006400pt;}
.ws3_c02417{word-spacing:0.000000pt;}
.ws4_c02417{word-spacing:0.023424pt;}
.ws2_c02417{word-spacing:0.035136pt;}
.ws6_c02417{word-spacing:0.057600pt;}
.ws1_c02417{word-spacing:0.058560pt;}
.ws1d_c02417{word-spacing:2.169600pt;}
.ws1c_c02417{word-spacing:2.208000pt;}
.ws24_c02417{word-spacing:2.368000pt;}
.ws23_c02417{word-spacing:2.470400pt;}
.ws27_c02417{word-spacing:4.012800pt;}
.ws11_c02417{word-spacing:4.019200pt;}
.ws10_c02417{word-spacing:4.115200pt;}
.ws25_c02417{word-spacing:4.128000pt;}
.ws26_c02417{word-spacing:4.160000pt;}
.ws9_c02417{word-spacing:6.976000pt;}
.ws8_c02417{word-spacing:7.046400pt;}
.ws1f_c02417{word-spacing:15.347200pt;}
.ws19_c02417{word-spacing:16.172800pt;}
.ws18_c02417{word-spacing:16.288000pt;}
.wsb_c02417{word-spacing:19.500800pt;}
.ws2c_c02417{word-spacing:21.689600pt;}
.ws2b_c02417{word-spacing:22.073600pt;}
.ws15_c02417{word-spacing:28.864000pt;}
.ws14_c02417{word-spacing:29.004800pt;}
.ws16_c02417{word-spacing:29.139200pt;}
._0_c02417{margin-left:-1.054080pt;}
.fs0_c02417{font-size:58.560000pt;}
.fs1_c02417{font-size:64.000000pt;}
.y0_c02417{bottom:0.000000pt;}
.y3_c02417{bottom:67.307451pt;}
.y2_c02417{bottom:101.226867pt;}
.y2e_c02417{bottom:132.826283pt;}
.y2d_c02417{bottom:152.266739pt;}
.y2c_c02417{bottom:171.626675pt;}
.y2b_c02417{bottom:191.067131pt;}
.y2a_c02417{bottom:210.427067pt;}
.y29_c02417{bottom:230.987067pt;}
.y28_c02417{bottom:252.107067pt;}
.y27_c02417{bottom:273.307067pt;}
.y26_c02417{bottom:294.427067pt;}
.y25_c02417{bottom:315.627067pt;}
.y24_c02417{bottom:336.747067pt;}
.y23_c02417{bottom:357.947067pt;}
.y22_c02417{bottom:379.067067pt;}
.y21_c02417{bottom:400.267067pt;}
.y20_c02417{bottom:421.387067pt;}
.y1f_c02417{bottom:442.587067pt;}
.y1e_c02417{bottom:463.707067pt;}
.y1d_c02417{bottom:484.907067pt;}
.y1c_c02417{bottom:506.027067pt;}
.y1b_c02417{bottom:527.227067pt;}
.y1a_c02417{bottom:548.347067pt;}
.y19_c02417{bottom:569.547067pt;}
.y18_c02417{bottom:590.667067pt;}
.y17_c02417{bottom:611.787067pt;}
.y16_c02417{bottom:632.987067pt;}
.y15_c02417{bottom:653.947067pt;}
.y14_c02417{bottom:675.307067pt;}
.y13_c02417{bottom:696.427067pt;}
.y12_c02417{bottom:717.627067pt;}
.y11_c02417{bottom:738.747067pt;}
.y10_c02417{bottom:759.947067pt;}
.yf_c02417{bottom:781.067067pt;}
.ye_c02417{bottom:802.267067pt;}
.yd_c02417{bottom:823.387067pt;}
.yc_c02417{bottom:844.587067pt;}
.yb_c02417{bottom:865.707067pt;}
.ya_c02417{bottom:886.907067pt;}
.y9_c02417{bottom:908.027067pt;}
.y8_c02417{bottom:929.227067pt;}
.y7_c02417{bottom:950.347067pt;}
.y6_c02417{bottom:971.547067pt;}
.y5_c02417{bottom:992.507067pt;}
.y4_c02417{bottom:1013.947067pt;}
.y1_c02417{bottom:1061.867067pt;}
.h3_c02417{height:39.030469pt;}
.h2_c02417{height:48.294844pt;}
.h6_c02417{height:57.473437pt;}
.h1_c02417{height:59.017500pt;}
.h5_c02417{height:62.812500pt;}
.h4_c02417{height:64.500000pt;}
.h0_c02417{height:1122.666667pt;}
.w1_c02417{width:793.333333pt;}
.w0_c02417{width:793.626667pt;}
.x0_c02417{left:0.000000pt;}
.x1_c02417{left:113.440000pt;}
.x2_c02417{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ce7e7e0f8abbe5eedca7dd4.woff2')format("woff");}.ff1_c02418{font-family:ff1_c02418;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02418;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02418{font-family:ff2_c02418;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02418;src:url('chunks/assets/font_c577630e7a72df98670a9649.woff2')format("woff");}.ff3_c02418{font-family:ff3_c02418;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02418;src:url('chunks/assets/font_2e7a832e508bb84c15715f19.woff2')format("woff");}.ff4_c02418{font-family:ff4_c02418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02418;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff5_c02418{font-family:ff5_c02418;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_c02418;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c02418{font-family:ff6_c02418;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_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;}
.ls15_c02418{letter-spacing:-0.201600px;}
.ls16_c02418{letter-spacing:-0.072000px;}
.ls14_c02418{letter-spacing:-0.028800px;}
.ls18_c02418{letter-spacing:-0.021600px;}
.ls17_c02418{letter-spacing:-0.007200px;}
.ls11_c02418{letter-spacing:0.000000px;}
.ls5_c02418{letter-spacing:0.007200px;}
.ls9_c02418{letter-spacing:0.014400px;}
.lsa_c02418{letter-spacing:0.021600px;}
.ls0_c02418{letter-spacing:0.026352px;}
.ls6_c02418{letter-spacing:0.028800px;}
.ls4_c02418{letter-spacing:0.032940px;}
.lsb_c02418{letter-spacing:0.036000px;}
.ls7_c02418{letter-spacing:0.043200px;}
.ls2_c02418{letter-spacing:0.046116px;}
.ls8_c02418{letter-spacing:0.050400px;}
.ls1_c02418{letter-spacing:0.052704px;}
.lsd_c02418{letter-spacing:0.057600px;}
.lsf_c02418{letter-spacing:0.066132px;}
.lse_c02418{letter-spacing:0.072000px;}
.ls3_c02418{letter-spacing:0.079056px;}
.lsc_c02418{letter-spacing:0.086400px;}
.ls12_c02418{letter-spacing:0.092232px;}
.ls13_c02418{letter-spacing:0.138348px;}
.ls10_c02418{letter-spacing:63.565308px;}
.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;}
}
.ws34_c02418{word-spacing:-0.288000px;}
.ws12_c02418{word-spacing:-0.194400px;}
.ws38_c02418{word-spacing:-0.158400px;}
.ws0_c02418{word-spacing:-0.158112px;}
.ws36_c02418{word-spacing:-0.151200px;}
.ws39_c02418{word-spacing:-0.144000px;}
.ws1a_c02418{word-spacing:-0.108000px;}
.ws35_c02418{word-spacing:-0.093600px;}
.ws1f_c02418{word-spacing:-0.086400px;}
.ws19_c02418{word-spacing:-0.043200px;}
.ws24_c02418{word-spacing:-0.036000px;}
.ws14_c02418{word-spacing:-0.028800px;}
.ws13_c02418{word-spacing:-0.021600px;}
.ws33_c02418{word-spacing:-0.014400px;}
.ws8_c02418{word-spacing:-0.007200px;}
.ws3_c02418{word-spacing:0.000000px;}
.ws37_c02418{word-spacing:0.007200px;}
.ws3a_c02418{word-spacing:0.028800px;}
.ws2_c02418{word-spacing:0.039528px;}
.ws4_c02418{word-spacing:0.046116px;}
.ws1_c02418{word-spacing:0.065880px;}
.ws1b_c02418{word-spacing:1.764000px;}
.ws1c_c02418{word-spacing:1.800000px;}
.wsc_c02418{word-spacing:2.433600px;}
.wsb_c02418{word-spacing:2.476800px;}
.ws18_c02418{word-spacing:3.564000px;}
.ws17_c02418{word-spacing:3.571200px;}
.ws10_c02418{word-spacing:3.787200px;}
.ws11_c02418{word-spacing:3.830400px;}
.ws32_c02418{word-spacing:6.696000px;}
.ws2b_c02418{word-spacing:6.933600px;}
.ws2c_c02418{word-spacing:7.027200px;}
.ws2a_c02418{word-spacing:7.192800px;}
.ws9_c02418{word-spacing:11.059200px;}
.wsa_c02418{word-spacing:11.152800px;}
.ws31_c02418{word-spacing:11.844000px;}
.ws30_c02418{word-spacing:11.851200px;}
.ws7_c02418{word-spacing:14.711004px;}
.ws5_c02418{word-spacing:14.770296px;}
.ws6_c02418{word-spacing:14.816412px;}
.wsd_c02418{word-spacing:16.063200px;}
.wsf_c02418{word-spacing:16.070400px;}
.wse_c02418{word-spacing:16.077600px;}
.ws23_c02418{word-spacing:16.804800px;}
.ws16_c02418{word-spacing:16.898400px;}
.ws15_c02418{word-spacing:16.912800px;}
.ws1e_c02418{word-spacing:17.121600px;}
.ws1d_c02418{word-spacing:17.164800px;}
.ws26_c02418{word-spacing:17.517600px;}
.ws27_c02418{word-spacing:17.553600px;}
.ws25_c02418{word-spacing:17.625600px;}
.ws2d_c02418{word-spacing:21.902400px;}
.ws2e_c02418{word-spacing:21.952800px;}
.ws2f_c02418{word-spacing:23.051412px;}
.ws20_c02418{word-spacing:23.673600px;}
.ws21_c02418{word-spacing:23.745600px;}
.ws22_c02418{word-spacing:23.788800px;}
.ws29_c02418{word-spacing:45.669600px;}
.ws28_c02418{word-spacing:45.698400px;}
._0_c02418{margin-left:-1.324800px;}
.fc0_c02418{color:rgb(0,0,0);}
.fs2_c02418{font-size:47.880000px;}
.fs3_c02418{font-size:60.120000px;}
.fs0_c02418{font-size:65.880000px;}
.fs1_c02418{font-size:72.000000px;}
.y0_c02418{bottom:0.000000px;}
.y3_c02418{bottom:75.720882px;}
.y2_c02418{bottom:113.880225px;}
.y34_c02418{bottom:133.410009px;}
.y33_c02418{bottom:155.189937px;}
.y32_c02418{bottom:177.060450px;}
.y31_c02418{bottom:197.130600px;}
.y30_c02418{bottom:217.650600px;}
.y2f_c02418{bottom:238.530600px;}
.y2e_c02418{bottom:259.230450px;}
.y2d_c02418{bottom:279.750450px;}
.y2c_c02418{bottom:300.630450px;}
.y2b_c02418{bottom:321.330450px;}
.y2a_c02418{bottom:342.030450px;}
.y29_c02418{bottom:362.730600px;}
.y28_c02418{bottom:383.430600px;}
.y27_c02418{bottom:404.130600px;}
.y26_c02418{bottom:424.830600px;}
.y25_c02418{bottom:445.530600px;}
.y24_c02418{bottom:466.230600px;}
.y23_c02418{bottom:486.750600px;}
.y22_c02418{bottom:510.780600px;}
.y21_c02418{bottom:532.560450px;}
.y20_c02418{bottom:555.240522px;}
.y1f_c02418{bottom:577.020450px;}
.y1e_c02418{bottom:597.180450px;}
.y1d_c02418{bottom:617.880450px;}
.y1c_c02418{bottom:638.580450px;}
.y1b_c02418{bottom:659.280450px;}
.y1a_c02418{bottom:679.980450px;}
.y19_c02418{bottom:700.500450px;}
.y18_c02418{bottom:721.380450px;}
.y17_c02418{bottom:741.990450px;}
.y16_c02418{bottom:762.690450px;}
.y15_c02418{bottom:783.390450px;}
.y14_c02418{bottom:804.090450px;}
.y13_c02418{bottom:824.790600px;}
.y12_c02418{bottom:845.490450px;}
.y11_c02418{bottom:866.190450px;}
.y10_c02418{bottom:886.890450px;}
.yf_c02418{bottom:907.590450px;}
.ye_c02418{bottom:928.110450px;}
.yd_c02418{bottom:948.990450px;}
.yc_c02418{bottom:969.690450px;}
.yb_c02418{bottom:990.390450px;}
.ya_c02418{bottom:1011.090450px;}
.y9_c02418{bottom:1031.790450px;}
.y8_c02418{bottom:1052.490450px;}
.y7_c02418{bottom:1073.010450px;}
.y6_c02418{bottom:1097.040450px;}
.y5_c02418{bottom:1118.820450px;}
.y4_c02418{bottom:1141.410585px;}
.y1_c02418{bottom:1194.600450px;}
.h3_c02418{height:43.909277px;}
.h2_c02418{height:54.331699px;}
.h6_c02418{height:64.657617px;}
.h1_c02418{height:66.394687px;}
.h5_c02418{height:70.664062px;}
.h4_c02418{height:72.562500px;}
.h0_c02418{height:1263.000000px;}
.w1_c02418{width:892.500000px;}
.w0_c02418{width:892.830000px;}
.x0_c02418{left:0.000000px;}
.x1_c02418{left:127.620000px;}
.x3_c02418{left:154.620000px;}
.x4_c02418{left:181.620000px;}
.x2_c02418{left:438.120675px;}
@media print{
.v0_c02418{vertical-align:0.000000pt;}
.ls15_c02418{letter-spacing:-0.179200pt;}
.ls16_c02418{letter-spacing:-0.064000pt;}
.ls14_c02418{letter-spacing:-0.025600pt;}
.ls18_c02418{letter-spacing:-0.019200pt;}
.ls17_c02418{letter-spacing:-0.006400pt;}
.ls11_c02418{letter-spacing:0.000000pt;}
.ls5_c02418{letter-spacing:0.006400pt;}
.ls9_c02418{letter-spacing:0.012800pt;}
.lsa_c02418{letter-spacing:0.019200pt;}
.ls0_c02418{letter-spacing:0.023424pt;}
.ls6_c02418{letter-spacing:0.025600pt;}
.ls4_c02418{letter-spacing:0.029280pt;}
.lsb_c02418{letter-spacing:0.032000pt;}
.ls7_c02418{letter-spacing:0.038400pt;}
.ls2_c02418{letter-spacing:0.040992pt;}
.ls8_c02418{letter-spacing:0.044800pt;}
.ls1_c02418{letter-spacing:0.046848pt;}
.lsd_c02418{letter-spacing:0.051200pt;}
.lsf_c02418{letter-spacing:0.058784pt;}
.lse_c02418{letter-spacing:0.064000pt;}
.ls3_c02418{letter-spacing:0.070272pt;}
.lsc_c02418{letter-spacing:0.076800pt;}
.ls12_c02418{letter-spacing:0.081984pt;}
.ls13_c02418{letter-spacing:0.122976pt;}
.ls10_c02418{letter-spacing:56.502496pt;}
.ws34_c02418{word-spacing:-0.256000pt;}
.ws12_c02418{word-spacing:-0.172800pt;}
.ws38_c02418{word-spacing:-0.140800pt;}
.ws0_c02418{word-spacing:-0.140544pt;}
.ws36_c02418{word-spacing:-0.134400pt;}
.ws39_c02418{word-spacing:-0.128000pt;}
.ws1a_c02418{word-spacing:-0.096000pt;}
.ws35_c02418{word-spacing:-0.083200pt;}
.ws1f_c02418{word-spacing:-0.076800pt;}
.ws19_c02418{word-spacing:-0.038400pt;}
.ws24_c02418{word-spacing:-0.032000pt;}
.ws14_c02418{word-spacing:-0.025600pt;}
.ws13_c02418{word-spacing:-0.019200pt;}
.ws33_c02418{word-spacing:-0.012800pt;}
.ws8_c02418{word-spacing:-0.006400pt;}
.ws3_c02418{word-spacing:0.000000pt;}
.ws37_c02418{word-spacing:0.006400pt;}
.ws3a_c02418{word-spacing:0.025600pt;}
.ws2_c02418{word-spacing:0.035136pt;}
.ws4_c02418{word-spacing:0.040992pt;}
.ws1_c02418{word-spacing:0.058560pt;}
.ws1b_c02418{word-spacing:1.568000pt;}
.ws1c_c02418{word-spacing:1.600000pt;}
.wsc_c02418{word-spacing:2.163200pt;}
.wsb_c02418{word-spacing:2.201600pt;}
.ws18_c02418{word-spacing:3.168000pt;}
.ws17_c02418{word-spacing:3.174400pt;}
.ws10_c02418{word-spacing:3.366400pt;}
.ws11_c02418{word-spacing:3.404800pt;}
.ws32_c02418{word-spacing:5.952000pt;}
.ws2b_c02418{word-spacing:6.163200pt;}
.ws2c_c02418{word-spacing:6.246400pt;}
.ws2a_c02418{word-spacing:6.393600pt;}
.ws9_c02418{word-spacing:9.830400pt;}
.wsa_c02418{word-spacing:9.913600pt;}
.ws31_c02418{word-spacing:10.528000pt;}
.ws30_c02418{word-spacing:10.534400pt;}
.ws7_c02418{word-spacing:13.076448pt;}
.ws5_c02418{word-spacing:13.129152pt;}
.ws6_c02418{word-spacing:13.170144pt;}
.wsd_c02418{word-spacing:14.278400pt;}
.wsf_c02418{word-spacing:14.284800pt;}
.wse_c02418{word-spacing:14.291200pt;}
.ws23_c02418{word-spacing:14.937600pt;}
.ws16_c02418{word-spacing:15.020800pt;}
.ws15_c02418{word-spacing:15.033600pt;}
.ws1e_c02418{word-spacing:15.219200pt;}
.ws1d_c02418{word-spacing:15.257600pt;}
.ws26_c02418{word-spacing:15.571200pt;}
.ws27_c02418{word-spacing:15.603200pt;}
.ws25_c02418{word-spacing:15.667200pt;}
.ws2d_c02418{word-spacing:19.468800pt;}
.ws2e_c02418{word-spacing:19.513600pt;}
.ws2f_c02418{word-spacing:20.490144pt;}
.ws20_c02418{word-spacing:21.043200pt;}
.ws21_c02418{word-spacing:21.107200pt;}
.ws22_c02418{word-spacing:21.145600pt;}
.ws29_c02418{word-spacing:40.595200pt;}
.ws28_c02418{word-spacing:40.620800pt;}
._0_c02418{margin-left:-1.177600pt;}
.fs2_c02418{font-size:42.560000pt;}
.fs3_c02418{font-size:53.440000pt;}
.fs0_c02418{font-size:58.560000pt;}
.fs1_c02418{font-size:64.000000pt;}
.y0_c02418{bottom:0.000000pt;}
.y3_c02418{bottom:67.307451pt;}
.y2_c02418{bottom:101.226867pt;}
.y34_c02418{bottom:118.586675pt;}
.y33_c02418{bottom:137.946611pt;}
.y32_c02418{bottom:157.387067pt;}
.y31_c02418{bottom:175.227200pt;}
.y30_c02418{bottom:193.467200pt;}
.y2f_c02418{bottom:212.027200pt;}
.y2e_c02418{bottom:230.427067pt;}
.y2d_c02418{bottom:248.667067pt;}
.y2c_c02418{bottom:267.227067pt;}
.y2b_c02418{bottom:285.627067pt;}
.y2a_c02418{bottom:304.027067pt;}
.y29_c02418{bottom:322.427200pt;}
.y28_c02418{bottom:340.827200pt;}
.y27_c02418{bottom:359.227200pt;}
.y26_c02418{bottom:377.627200pt;}
.y25_c02418{bottom:396.027200pt;}
.y24_c02418{bottom:414.427200pt;}
.y23_c02418{bottom:432.667200pt;}
.y22_c02418{bottom:454.027200pt;}
.y21_c02418{bottom:473.387067pt;}
.y20_c02418{bottom:493.547131pt;}
.y1f_c02418{bottom:512.907067pt;}
.y1e_c02418{bottom:530.827067pt;}
.y1d_c02418{bottom:549.227067pt;}
.y1c_c02418{bottom:567.627067pt;}
.y1b_c02418{bottom:586.027067pt;}
.y1a_c02418{bottom:604.427067pt;}
.y19_c02418{bottom:622.667067pt;}
.y18_c02418{bottom:641.227067pt;}
.y17_c02418{bottom:659.547067pt;}
.y16_c02418{bottom:677.947067pt;}
.y15_c02418{bottom:696.347067pt;}
.y14_c02418{bottom:714.747067pt;}
.y13_c02418{bottom:733.147200pt;}
.y12_c02418{bottom:751.547067pt;}
.y11_c02418{bottom:769.947067pt;}
.y10_c02418{bottom:788.347067pt;}
.yf_c02418{bottom:806.747067pt;}
.ye_c02418{bottom:824.987067pt;}
.yd_c02418{bottom:843.547067pt;}
.yc_c02418{bottom:861.947067pt;}
.yb_c02418{bottom:880.347067pt;}
.ya_c02418{bottom:898.747067pt;}
.y9_c02418{bottom:917.147067pt;}
.y8_c02418{bottom:935.547067pt;}
.y7_c02418{bottom:953.787067pt;}
.y6_c02418{bottom:975.147067pt;}
.y5_c02418{bottom:994.507067pt;}
.y4_c02418{bottom:1014.587187pt;}
.y1_c02418{bottom:1061.867067pt;}
.h3_c02418{height:39.030469pt;}
.h2_c02418{height:48.294844pt;}
.h6_c02418{height:57.473437pt;}
.h1_c02418{height:59.017500pt;}
.h5_c02418{height:62.812500pt;}
.h4_c02418{height:64.500000pt;}
.h0_c02418{height:1122.666667pt;}
.w1_c02418{width:793.333333pt;}
.w0_c02418{width:793.626667pt;}
.x0_c02418{left:0.000000pt;}
.x1_c02418{left:113.440000pt;}
.x3_c02418{left:137.440000pt;}
.x4_c02418{left:161.440000pt;}
.x2_c02418{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_655feeb14d2b1fc43291406c.woff2')format("woff");}.ff1_c02419{font-family:ff1_c02419;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02419;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02419{font-family:ff2_c02419;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02419;src:url('chunks/assets/font_1d2183eac735ba896dc82a3e.woff2')format("woff");}.ff3_c02419{font-family:ff3_c02419;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02419;src:url('chunks/assets/font_dbf37ede219553bea78cf54f.woff2')format("woff");}.ff4_c02419{font-family:ff4_c02419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsf_c02419{letter-spacing:-0.064800px;}
.ls13_c02419{letter-spacing:-0.043200px;}
.ls10_c02419{letter-spacing:-0.021600px;}
.ls12_c02419{letter-spacing:-0.014400px;}
.ls11_c02419{letter-spacing:-0.007200px;}
.lsc_c02419{letter-spacing:0.000000px;}
.lse_c02419{letter-spacing:0.007200px;}
.ls8_c02419{letter-spacing:0.014400px;}
.ls7_c02419{letter-spacing:0.021600px;}
.ls0_c02419{letter-spacing:0.026352px;}
.ls9_c02419{letter-spacing:0.028800px;}
.ls5_c02419{letter-spacing:0.036000px;}
.lsa_c02419{letter-spacing:0.043200px;}
.ls3_c02419{letter-spacing:0.050400px;}
.ls1_c02419{letter-spacing:0.052704px;}
.ls4_c02419{letter-spacing:0.057600px;}
.ls2_c02419{letter-spacing:0.059292px;}
.ls6_c02419{letter-spacing:0.072000px;}
.lsb_c02419{letter-spacing:0.079200px;}
.lsd_c02419{letter-spacing:0.092232px;}
.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;}
}
.ws9_c02419{word-spacing:-0.230400px;}
.ws26_c02419{word-spacing:-0.208800px;}
.ws15_c02419{word-spacing:-0.158400px;}
.ws0_c02419{word-spacing:-0.158112px;}
.ws11_c02419{word-spacing:-0.136800px;}
.wsd_c02419{word-spacing:-0.122400px;}
.ws22_c02419{word-spacing:-0.115200px;}
.wsc_c02419{word-spacing:-0.108000px;}
.ws2f_c02419{word-spacing:-0.050400px;}
.ws8_c02419{word-spacing:-0.036000px;}
.ws20_c02419{word-spacing:-0.028800px;}
.ws5_c02419{word-spacing:-0.007200px;}
.ws3_c02419{word-spacing:0.000000px;}
.ws16_c02419{word-spacing:0.007200px;}
.ws30_c02419{word-spacing:0.021600px;}
.ws2_c02419{word-spacing:0.039528px;}
.wsa_c02419{word-spacing:0.064800px;}
.ws1_c02419{word-spacing:0.065880px;}
.ws4_c02419{word-spacing:1.113372px;}
.ws2c_c02419{word-spacing:2.044800px;}
.ws7_c02419{word-spacing:2.102400px;}
.ws2d_c02419{word-spacing:2.152800px;}
.wsf_c02419{word-spacing:2.721600px;}
.ws27_c02419{word-spacing:2.793600px;}
.wse_c02419{word-spacing:2.822400px;}
.ws28_c02419{word-spacing:2.865600px;}
.ws10_c02419{word-spacing:2.901600px;}
.ws29_c02419{word-spacing:2.923200px;}
.ws2b_c02419{word-spacing:5.313600px;}
.ws2a_c02419{word-spacing:5.385600px;}
.ws18_c02419{word-spacing:5.688000px;}
.wsb_c02419{word-spacing:5.709600px;}
.ws17_c02419{word-spacing:5.738400px;}
.ws1d_c02419{word-spacing:7.891200px;}
.ws1c_c02419{word-spacing:8.114400px;}
.ws1b_c02419{word-spacing:8.301600px;}
.ws19_c02419{word-spacing:11.433600px;}
.ws1a_c02419{word-spacing:11.505600px;}
.ws1e_c02419{word-spacing:13.636800px;}
.ws1f_c02419{word-spacing:13.708800px;}
.ws25_c02419{word-spacing:13.845600px;}
.ws23_c02419{word-spacing:14.004000px;}
.ws24_c02419{word-spacing:14.011200px;}
.ws6_c02419{word-spacing:14.349600px;}
.ws2e_c02419{word-spacing:17.618400px;}
.ws13_c02419{word-spacing:21.067200px;}
.ws21_c02419{word-spacing:21.088800px;}
.ws12_c02419{word-spacing:21.218400px;}
.ws14_c02419{word-spacing:21.225600px;}
._0_c02419{margin-left:-1.166076px;}
.fc0_c02419{color:rgb(0,0,0);}
.fs0_c02419{font-size:65.880000px;}
.fs1_c02419{font-size:72.000000px;}
.y0_c02419{bottom:0.000000px;}
.y3_c02419{bottom:75.720882px;}
.y2_c02419{bottom:113.880225px;}
.y2f_c02419{bottom:135.568686px;}
.y2e_c02419{bottom:157.348614px;}
.y2d_c02419{bottom:179.219127px;}
.y2c_c02419{bottom:200.999055px;}
.y2b_c02419{bottom:222.869568px;}
.y2a_c02419{bottom:244.649496px;}
.y29_c02419{bottom:266.520009px;}
.y28_c02419{bottom:288.299937px;}
.y27_c02419{bottom:310.170450px;}
.y26_c02419{bottom:333.210450px;}
.y25_c02419{bottom:357.060450px;}
.y24_c02419{bottom:380.820450px;}
.y23_c02419{bottom:404.670450px;}
.y22_c02419{bottom:428.430450px;}
.y21_c02419{bottom:452.280450px;}
.y20_c02419{bottom:476.040450px;}
.y1f_c02419{bottom:499.890450px;}
.y1e_c02419{bottom:523.650450px;}
.y1d_c02419{bottom:547.500450px;}
.y1c_c02419{bottom:571.260450px;}
.y1b_c02419{bottom:594.930450px;}
.y1a_c02419{bottom:618.870450px;}
.y19_c02419{bottom:642.720450px;}
.y18_c02419{bottom:666.480450px;}
.y17_c02419{bottom:690.330450px;}
.y16_c02419{bottom:714.090450px;}
.y15_c02419{bottom:737.850450px;}
.y14_c02419{bottom:761.700450px;}
.y13_c02419{bottom:785.460450px;}
.y12_c02419{bottom:809.310450px;}
.y11_c02419{bottom:833.070450px;}
.y10_c02419{bottom:856.920450px;}
.yf_c02419{bottom:880.680450px;}
.ye_c02419{bottom:904.530450px;}
.yd_c02419{bottom:928.290450px;}
.yc_c02419{bottom:952.140450px;}
.yb_c02419{bottom:975.900450px;}
.ya_c02419{bottom:999.750450px;}
.y9_c02419{bottom:1023.510450px;}
.y8_c02419{bottom:1047.360450px;}
.y7_c02419{bottom:1071.120450px;}
.y6_c02419{bottom:1094.790450px;}
.y5_c02419{bottom:1118.820450px;}
.y4_c02419{bottom:1140.690450px;}
.y1_c02419{bottom:1194.600450px;}
.h3_c02419{height:43.909277px;}
.h2_c02419{height:54.331699px;}
.h6_c02419{height:64.657617px;}
.h1_c02419{height:66.394687px;}
.h5_c02419{height:70.664062px;}
.h4_c02419{height:72.562500px;}
.h0_c02419{height:1263.000000px;}
.w1_c02419{width:892.500000px;}
.w0_c02419{width:892.830000px;}
.x0_c02419{left:0.000000px;}
.x1_c02419{left:127.620000px;}
.x2_c02419{left:438.120675px;}
@media print{
.v0_c02419{vertical-align:0.000000pt;}
.lsf_c02419{letter-spacing:-0.057600pt;}
.ls13_c02419{letter-spacing:-0.038400pt;}
.ls10_c02419{letter-spacing:-0.019200pt;}
.ls12_c02419{letter-spacing:-0.012800pt;}
.ls11_c02419{letter-spacing:-0.006400pt;}
.lsc_c02419{letter-spacing:0.000000pt;}
.lse_c02419{letter-spacing:0.006400pt;}
.ls8_c02419{letter-spacing:0.012800pt;}
.ls7_c02419{letter-spacing:0.019200pt;}
.ls0_c02419{letter-spacing:0.023424pt;}
.ls9_c02419{letter-spacing:0.025600pt;}
.ls5_c02419{letter-spacing:0.032000pt;}
.lsa_c02419{letter-spacing:0.038400pt;}
.ls3_c02419{letter-spacing:0.044800pt;}
.ls1_c02419{letter-spacing:0.046848pt;}
.ls4_c02419{letter-spacing:0.051200pt;}
.ls2_c02419{letter-spacing:0.052704pt;}
.ls6_c02419{letter-spacing:0.064000pt;}
.lsb_c02419{letter-spacing:0.070400pt;}
.lsd_c02419{letter-spacing:0.081984pt;}
.ws9_c02419{word-spacing:-0.204800pt;}
.ws26_c02419{word-spacing:-0.185600pt;}
.ws15_c02419{word-spacing:-0.140800pt;}
.ws0_c02419{word-spacing:-0.140544pt;}
.ws11_c02419{word-spacing:-0.121600pt;}
.wsd_c02419{word-spacing:-0.108800pt;}
.ws22_c02419{word-spacing:-0.102400pt;}
.wsc_c02419{word-spacing:-0.096000pt;}
.ws2f_c02419{word-spacing:-0.044800pt;}
.ws8_c02419{word-spacing:-0.032000pt;}
.ws20_c02419{word-spacing:-0.025600pt;}
.ws5_c02419{word-spacing:-0.006400pt;}
.ws3_c02419{word-spacing:0.000000pt;}
.ws16_c02419{word-spacing:0.006400pt;}
.ws30_c02419{word-spacing:0.019200pt;}
.ws2_c02419{word-spacing:0.035136pt;}
.wsa_c02419{word-spacing:0.057600pt;}
.ws1_c02419{word-spacing:0.058560pt;}
.ws4_c02419{word-spacing:0.989664pt;}
.ws2c_c02419{word-spacing:1.817600pt;}
.ws7_c02419{word-spacing:1.868800pt;}
.ws2d_c02419{word-spacing:1.913600pt;}
.wsf_c02419{word-spacing:2.419200pt;}
.ws27_c02419{word-spacing:2.483200pt;}
.wse_c02419{word-spacing:2.508800pt;}
.ws28_c02419{word-spacing:2.547200pt;}
.ws10_c02419{word-spacing:2.579200pt;}
.ws29_c02419{word-spacing:2.598400pt;}
.ws2b_c02419{word-spacing:4.723200pt;}
.ws2a_c02419{word-spacing:4.787200pt;}
.ws18_c02419{word-spacing:5.056000pt;}
.wsb_c02419{word-spacing:5.075200pt;}
.ws17_c02419{word-spacing:5.100800pt;}
.ws1d_c02419{word-spacing:7.014400pt;}
.ws1c_c02419{word-spacing:7.212800pt;}
.ws1b_c02419{word-spacing:7.379200pt;}
.ws19_c02419{word-spacing:10.163200pt;}
.ws1a_c02419{word-spacing:10.227200pt;}
.ws1e_c02419{word-spacing:12.121600pt;}
.ws1f_c02419{word-spacing:12.185600pt;}
.ws25_c02419{word-spacing:12.307200pt;}
.ws23_c02419{word-spacing:12.448000pt;}
.ws24_c02419{word-spacing:12.454400pt;}
.ws6_c02419{word-spacing:12.755200pt;}
.ws2e_c02419{word-spacing:15.660800pt;}
.ws13_c02419{word-spacing:18.726400pt;}
.ws21_c02419{word-spacing:18.745600pt;}
.ws12_c02419{word-spacing:18.860800pt;}
.ws14_c02419{word-spacing:18.867200pt;}
._0_c02419{margin-left:-1.036512pt;}
.fs0_c02419{font-size:58.560000pt;}
.fs1_c02419{font-size:64.000000pt;}
.y0_c02419{bottom:0.000000pt;}
.y3_c02419{bottom:67.307451pt;}
.y2_c02419{bottom:101.226867pt;}
.y2f_c02419{bottom:120.505499pt;}
.y2e_c02419{bottom:139.865435pt;}
.y2d_c02419{bottom:159.305891pt;}
.y2c_c02419{bottom:178.665827pt;}
.y2b_c02419{bottom:198.106283pt;}
.y2a_c02419{bottom:217.466219pt;}
.y29_c02419{bottom:236.906675pt;}
.y28_c02419{bottom:256.266611pt;}
.y27_c02419{bottom:275.707067pt;}
.y26_c02419{bottom:296.187067pt;}
.y25_c02419{bottom:317.387067pt;}
.y24_c02419{bottom:338.507067pt;}
.y23_c02419{bottom:359.707067pt;}
.y22_c02419{bottom:380.827067pt;}
.y21_c02419{bottom:402.027067pt;}
.y20_c02419{bottom:423.147067pt;}
.y1f_c02419{bottom:444.347067pt;}
.y1e_c02419{bottom:465.467067pt;}
.y1d_c02419{bottom:486.667067pt;}
.y1c_c02419{bottom:507.787067pt;}
.y1b_c02419{bottom:528.827067pt;}
.y1a_c02419{bottom:550.107067pt;}
.y19_c02419{bottom:571.307067pt;}
.y18_c02419{bottom:592.427067pt;}
.y17_c02419{bottom:613.627067pt;}
.y16_c02419{bottom:634.747067pt;}
.y15_c02419{bottom:655.867067pt;}
.y14_c02419{bottom:677.067067pt;}
.y13_c02419{bottom:698.187067pt;}
.y12_c02419{bottom:719.387067pt;}
.y11_c02419{bottom:740.507067pt;}
.y10_c02419{bottom:761.707067pt;}
.yf_c02419{bottom:782.827067pt;}
.ye_c02419{bottom:804.027067pt;}
.yd_c02419{bottom:825.147067pt;}
.yc_c02419{bottom:846.347067pt;}
.yb_c02419{bottom:867.467067pt;}
.ya_c02419{bottom:888.667067pt;}
.y9_c02419{bottom:909.787067pt;}
.y8_c02419{bottom:930.987067pt;}
.y7_c02419{bottom:952.107067pt;}
.y6_c02419{bottom:973.147067pt;}
.y5_c02419{bottom:994.507067pt;}
.y4_c02419{bottom:1013.947067pt;}
.y1_c02419{bottom:1061.867067pt;}
.h3_c02419{height:39.030469pt;}
.h2_c02419{height:48.294844pt;}
.h6_c02419{height:57.473437pt;}
.h1_c02419{height:59.017500pt;}
.h5_c02419{height:62.812500pt;}
.h4_c02419{height:64.500000pt;}
.h0_c02419{height:1122.666667pt;}
.w1_c02419{width:793.333333pt;}
.w0_c02419{width:793.626667pt;}
.x0_c02419{left:0.000000pt;}
.x1_c02419{left:113.440000pt;}
.x2_c02419{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_133b8c277af1ed2250e35d65.woff2')format("woff");}.ff1_c02420{font-family:ff1_c02420;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02420;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02420{font-family:ff2_c02420;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02420;src:url('chunks/assets/font_1fa3fa612d06c8e523d52903.woff2')format("woff");}.ff3_c02420{font-family:ff3_c02420;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02420;src:url('chunks/assets/font_1049d3490afe9fabdc49ab6a.woff2')format("woff");}.ff4_c02420{font-family:ff4_c02420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02420;src:url('chunks/assets/font_1468dca53fe1267ef208d41c.woff2')format("woff");}.ff5_c02420{font-family:ff5_c02420;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_c02420;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c02420{font-family:ff6_c02420;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_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;}
.ls10_c02420{letter-spacing:-0.021600px;}
.ls11_c02420{letter-spacing:-0.014400px;}
.ls12_c02420{letter-spacing:-0.007200px;}
.lse_c02420{letter-spacing:0.000000px;}
.ls9_c02420{letter-spacing:0.007200px;}
.lsa_c02420{letter-spacing:0.014400px;}
.ls6_c02420{letter-spacing:0.021600px;}
.ls0_c02420{letter-spacing:0.026352px;}
.lsc_c02420{letter-spacing:0.028800px;}
.ls4_c02420{letter-spacing:0.036000px;}
.lsb_c02420{letter-spacing:0.043200px;}
.ls8_c02420{letter-spacing:0.050400px;}
.ls1_c02420{letter-spacing:0.052704px;}
.ls7_c02420{letter-spacing:0.057600px;}
.ls3_c02420{letter-spacing:0.065880px;}
.ls2_c02420{letter-spacing:0.079056px;}
.lsd_c02420{letter-spacing:0.086400px;}
.lsf_c02420{letter-spacing:0.092232px;}
.ls5_c02420{letter-spacing:54.864000px;}
.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;}
}
.ws1_c02420{word-spacing:-72.000000px;}
.ws32_c02420{word-spacing:-0.180000px;}
.ws25_c02420{word-spacing:-0.158400px;}
.ws0_c02420{word-spacing:-0.158112px;}
.wsa_c02420{word-spacing:-0.122400px;}
.ws28_c02420{word-spacing:-0.100800px;}
.ws1c_c02420{word-spacing:-0.093600px;}
.wsd_c02420{word-spacing:-0.050400px;}
.ws21_c02420{word-spacing:-0.043200px;}
.ws7_c02420{word-spacing:-0.036000px;}
.ws17_c02420{word-spacing:-0.028800px;}
.ws22_c02420{word-spacing:-0.014400px;}
.ws16_c02420{word-spacing:-0.007200px;}
.ws4_c02420{word-spacing:0.000000px;}
.ws5_c02420{word-spacing:0.013176px;}
.ws6_c02420{word-spacing:0.026352px;}
.ws3_c02420{word-spacing:0.039528px;}
.ws2_c02420{word-spacing:0.065880px;}
.ws9_c02420{word-spacing:0.302400px;}
.ws8_c02420{word-spacing:0.338400px;}
.ws2b_c02420{word-spacing:2.059200px;}
.ws2c_c02420{word-spacing:2.160000px;}
.ws13_c02420{word-spacing:4.190400px;}
.ws12_c02420{word-spacing:4.219200px;}
.ws15_c02420{word-spacing:4.240800px;}
.ws14_c02420{word-spacing:4.327200px;}
.ws24_c02420{word-spacing:5.018400px;}
.wsc_c02420{word-spacing:5.364000px;}
.wsb_c02420{word-spacing:5.392800px;}
.ws1a_c02420{word-spacing:5.731200px;}
.ws1b_c02420{word-spacing:5.832000px;}
.ws2a_c02420{word-spacing:6.040800px;}
.ws29_c02420{word-spacing:6.112800px;}
.ws26_c02420{word-spacing:8.582400px;}
.ws1d_c02420{word-spacing:9.216000px;}
.ws1e_c02420{word-spacing:9.338400px;}
.ws19_c02420{word-spacing:10.663200px;}
.ws18_c02420{word-spacing:10.764000px;}
.ws2e_c02420{word-spacing:16.444800px;}
.ws2d_c02420{word-spacing:16.524000px;}
.ws2f_c02420{word-spacing:20.124000px;}
.ws30_c02420{word-spacing:20.707200px;}
.ws31_c02420{word-spacing:20.880000px;}
.ws1f_c02420{word-spacing:21.873600px;}
.ws20_c02420{word-spacing:21.931200px;}
.ws11_c02420{word-spacing:28.389600px;}
.ws10_c02420{word-spacing:28.440000px;}
.ws27_c02420{word-spacing:32.774400px;}
.ws23_c02420{word-spacing:33.343200px;}
.wse_c02420{word-spacing:40.924800px;}
.wsf_c02420{word-spacing:41.040000px;}
._0_c02420{margin-left:-1.216800px;}
.fc0_c02420{color:rgb(0,0,0);}
.fs0_c02420{font-size:65.880000px;}
.fs1_c02420{font-size:72.000000px;}
.y0_c02420{bottom:0.000000px;}
.y3_c02420{bottom:75.720882px;}
.y2_c02420{bottom:113.880225px;}
.y33_c02420{bottom:139.078317px;}
.y32_c02420{bottom:160.948830px;}
.y31_c02420{bottom:182.728758px;}
.y30_c02420{bottom:204.599271px;}
.y2f_c02420{bottom:226.379199px;}
.y2e_c02420{bottom:248.249712px;}
.y2d_c02420{bottom:270.029640px;}
.y2c_c02420{bottom:291.900153px;}
.y2b_c02420{bottom:313.680081px;}
.y2a_c02420{bottom:335.460009px;}
.y29_c02420{bottom:357.330522px;}
.y28_c02420{bottom:379.110450px;}
.y27_c02420{bottom:401.700600px;}
.y26_c02420{bottom:421.050450px;}
.y25_c02420{bottom:441.750450px;}
.y24_c02420{bottom:462.450600px;}
.y23_c02420{bottom:483.060450px;}
.y22_c02420{bottom:505.110600px;}
.y21_c02420{bottom:525.810450px;}
.y20_c02420{bottom:546.510450px;}
.y1f_c02420{bottom:568.560450px;}
.y1e_c02420{bottom:589.260450px;}
.y1d_c02420{bottom:609.870450px;}
.y1c_c02420{bottom:631.920450px;}
.y1b_c02420{bottom:652.620450px;}
.y1a_c02420{bottom:673.230450px;}
.y19_c02420{bottom:695.100450px;}
.y18_c02420{bottom:715.980450px;}
.y17_c02420{bottom:736.680450px;}
.y16_c02420{bottom:757.380450px;}
.y15_c02420{bottom:777.990450px;}
.y14_c02420{bottom:800.040600px;}
.y13_c02420{bottom:820.740450px;}
.y12_c02420{bottom:841.440450px;}
.y11_c02420{bottom:863.310450px;}
.y10_c02420{bottom:884.190450px;}
.yf_c02420{bottom:904.890450px;}
.ye_c02420{bottom:925.590450px;}
.yd_c02420{bottom:946.290600px;}
.yc_c02420{bottom:966.990450px;}
.yb_c02420{bottom:987.600450px;}
.ya_c02420{bottom:1009.650450px;}
.y9_c02420{bottom:1030.260450px;}
.y8_c02420{bottom:1052.310450px;}
.y7_c02420{bottom:1073.010450px;}
.y6_c02420{bottom:1094.880450px;}
.y5_c02420{bottom:1118.820450px;}
.y4_c02420{bottom:1141.410585px;}
.y1_c02420{bottom:1194.600450px;}
.h3_c02420{height:43.909277px;}
.h2_c02420{height:54.331699px;}
.h7_c02420{height:64.657617px;}
.h1_c02420{height:66.394687px;}
.h6_c02420{height:70.664062px;}
.h4_c02420{height:72.562500px;}
.h5_c02420{height:75.093750px;}
.h0_c02420{height:1263.000000px;}
.w1_c02420{width:892.500000px;}
.w0_c02420{width:892.830000px;}
.x0_c02420{left:0.000000px;}
.x1_c02420{left:127.620000px;}
.x4_c02420{left:132.570000px;}
.x3_c02420{left:138.240000px;}
.x5_c02420{left:159.570000px;}
.x2_c02420{left:438.120675px;}
@media print{
.v0_c02420{vertical-align:0.000000pt;}
.ls10_c02420{letter-spacing:-0.019200pt;}
.ls11_c02420{letter-spacing:-0.012800pt;}
.ls12_c02420{letter-spacing:-0.006400pt;}
.lse_c02420{letter-spacing:0.000000pt;}
.ls9_c02420{letter-spacing:0.006400pt;}
.lsa_c02420{letter-spacing:0.012800pt;}
.ls6_c02420{letter-spacing:0.019200pt;}
.ls0_c02420{letter-spacing:0.023424pt;}
.lsc_c02420{letter-spacing:0.025600pt;}
.ls4_c02420{letter-spacing:0.032000pt;}
.lsb_c02420{letter-spacing:0.038400pt;}
.ls8_c02420{letter-spacing:0.044800pt;}
.ls1_c02420{letter-spacing:0.046848pt;}
.ls7_c02420{letter-spacing:0.051200pt;}
.ls3_c02420{letter-spacing:0.058560pt;}
.ls2_c02420{letter-spacing:0.070272pt;}
.lsd_c02420{letter-spacing:0.076800pt;}
.lsf_c02420{letter-spacing:0.081984pt;}
.ls5_c02420{letter-spacing:48.768000pt;}
.ws1_c02420{word-spacing:-64.000000pt;}
.ws32_c02420{word-spacing:-0.160000pt;}
.ws25_c02420{word-spacing:-0.140800pt;}
.ws0_c02420{word-spacing:-0.140544pt;}
.wsa_c02420{word-spacing:-0.108800pt;}
.ws28_c02420{word-spacing:-0.089600pt;}
.ws1c_c02420{word-spacing:-0.083200pt;}
.wsd_c02420{word-spacing:-0.044800pt;}
.ws21_c02420{word-spacing:-0.038400pt;}
.ws7_c02420{word-spacing:-0.032000pt;}
.ws17_c02420{word-spacing:-0.025600pt;}
.ws22_c02420{word-spacing:-0.012800pt;}
.ws16_c02420{word-spacing:-0.006400pt;}
.ws4_c02420{word-spacing:0.000000pt;}
.ws5_c02420{word-spacing:0.011712pt;}
.ws6_c02420{word-spacing:0.023424pt;}
.ws3_c02420{word-spacing:0.035136pt;}
.ws2_c02420{word-spacing:0.058560pt;}
.ws9_c02420{word-spacing:0.268800pt;}
.ws8_c02420{word-spacing:0.300800pt;}
.ws2b_c02420{word-spacing:1.830400pt;}
.ws2c_c02420{word-spacing:1.920000pt;}
.ws13_c02420{word-spacing:3.724800pt;}
.ws12_c02420{word-spacing:3.750400pt;}
.ws15_c02420{word-spacing:3.769600pt;}
.ws14_c02420{word-spacing:3.846400pt;}
.ws24_c02420{word-spacing:4.460800pt;}
.wsc_c02420{word-spacing:4.768000pt;}
.wsb_c02420{word-spacing:4.793600pt;}
.ws1a_c02420{word-spacing:5.094400pt;}
.ws1b_c02420{word-spacing:5.184000pt;}
.ws2a_c02420{word-spacing:5.369600pt;}
.ws29_c02420{word-spacing:5.433600pt;}
.ws26_c02420{word-spacing:7.628800pt;}
.ws1d_c02420{word-spacing:8.192000pt;}
.ws1e_c02420{word-spacing:8.300800pt;}
.ws19_c02420{word-spacing:9.478400pt;}
.ws18_c02420{word-spacing:9.568000pt;}
.ws2e_c02420{word-spacing:14.617600pt;}
.ws2d_c02420{word-spacing:14.688000pt;}
.ws2f_c02420{word-spacing:17.888000pt;}
.ws30_c02420{word-spacing:18.406400pt;}
.ws31_c02420{word-spacing:18.560000pt;}
.ws1f_c02420{word-spacing:19.443200pt;}
.ws20_c02420{word-spacing:19.494400pt;}
.ws11_c02420{word-spacing:25.235200pt;}
.ws10_c02420{word-spacing:25.280000pt;}
.ws27_c02420{word-spacing:29.132800pt;}
.ws23_c02420{word-spacing:29.638400pt;}
.wse_c02420{word-spacing:36.377600pt;}
.wsf_c02420{word-spacing:36.480000pt;}
._0_c02420{margin-left:-1.081600pt;}
.fs0_c02420{font-size:58.560000pt;}
.fs1_c02420{font-size:64.000000pt;}
.y0_c02420{bottom:0.000000pt;}
.y3_c02420{bottom:67.307451pt;}
.y2_c02420{bottom:101.226867pt;}
.y33_c02420{bottom:123.625171pt;}
.y32_c02420{bottom:143.065627pt;}
.y31_c02420{bottom:162.425563pt;}
.y30_c02420{bottom:181.866019pt;}
.y2f_c02420{bottom:201.225955pt;}
.y2e_c02420{bottom:220.666411pt;}
.y2d_c02420{bottom:240.026347pt;}
.y2c_c02420{bottom:259.466803pt;}
.y2b_c02420{bottom:278.826739pt;}
.y2a_c02420{bottom:298.186675pt;}
.y29_c02420{bottom:317.627131pt;}
.y28_c02420{bottom:336.987067pt;}
.y27_c02420{bottom:357.067200pt;}
.y26_c02420{bottom:374.267067pt;}
.y25_c02420{bottom:392.667067pt;}
.y24_c02420{bottom:411.067200pt;}
.y23_c02420{bottom:429.387067pt;}
.y22_c02420{bottom:448.987200pt;}
.y21_c02420{bottom:467.387067pt;}
.y20_c02420{bottom:485.787067pt;}
.y1f_c02420{bottom:505.387067pt;}
.y1e_c02420{bottom:523.787067pt;}
.y1d_c02420{bottom:542.107067pt;}
.y1c_c02420{bottom:561.707067pt;}
.y1b_c02420{bottom:580.107067pt;}
.y1a_c02420{bottom:598.427067pt;}
.y19_c02420{bottom:617.867067pt;}
.y18_c02420{bottom:636.427067pt;}
.y17_c02420{bottom:654.827067pt;}
.y16_c02420{bottom:673.227067pt;}
.y15_c02420{bottom:691.547067pt;}
.y14_c02420{bottom:711.147200pt;}
.y13_c02420{bottom:729.547067pt;}
.y12_c02420{bottom:747.947067pt;}
.y11_c02420{bottom:767.387067pt;}
.y10_c02420{bottom:785.947067pt;}
.yf_c02420{bottom:804.347067pt;}
.ye_c02420{bottom:822.747067pt;}
.yd_c02420{bottom:841.147200pt;}
.yc_c02420{bottom:859.547067pt;}
.yb_c02420{bottom:877.867067pt;}
.ya_c02420{bottom:897.467067pt;}
.y9_c02420{bottom:915.787067pt;}
.y8_c02420{bottom:935.387067pt;}
.y7_c02420{bottom:953.787067pt;}
.y6_c02420{bottom:973.227067pt;}
.y5_c02420{bottom:994.507067pt;}
.y4_c02420{bottom:1014.587187pt;}
.y1_c02420{bottom:1061.867067pt;}
.h3_c02420{height:39.030469pt;}
.h2_c02420{height:48.294844pt;}
.h7_c02420{height:57.473437pt;}
.h1_c02420{height:59.017500pt;}
.h6_c02420{height:62.812500pt;}
.h4_c02420{height:64.500000pt;}
.h5_c02420{height:66.750000pt;}
.h0_c02420{height:1122.666667pt;}
.w1_c02420{width:793.333333pt;}
.w0_c02420{width:793.626667pt;}
.x0_c02420{left:0.000000pt;}
.x1_c02420{left:113.440000pt;}
.x4_c02420{left:117.840000pt;}
.x3_c02420{left:122.880000pt;}
.x5_c02420{left:141.840000pt;}
.x2_c02420{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cec218182a96a21ddb62529.woff2')format("woff");}.ff1_c02421{font-family:ff1_c02421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02421;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02421{font-family:ff2_c02421;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02421;src:url('chunks/assets/font_0cec2893f087417c014c03ae.woff2')format("woff");}.ff3_c02421{font-family:ff3_c02421;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02421;src:url('chunks/assets/font_73c38cca5f279428b4f30e39.woff2')format("woff");}.ff4_c02421{font-family:ff4_c02421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c02421{letter-spacing:-0.092232px;}
.ls12_c02421{letter-spacing:-0.032940px;}
.ls10_c02421{letter-spacing:-0.013176px;}
.lsf_c02421{letter-spacing:0.000000px;}
.ls8_c02421{letter-spacing:0.006588px;}
.ls4_c02421{letter-spacing:0.013176px;}
.ls3_c02421{letter-spacing:0.019764px;}
.ls0_c02421{letter-spacing:0.026352px;}
.lsd_c02421{letter-spacing:0.032940px;}
.ls5_c02421{letter-spacing:0.039528px;}
.ls7_c02421{letter-spacing:0.046116px;}
.ls1_c02421{letter-spacing:0.052704px;}
.lsa_c02421{letter-spacing:0.059292px;}
.ls9_c02421{letter-spacing:0.065880px;}
.ls6_c02421{letter-spacing:0.072468px;}
.lse_c02421{letter-spacing:0.079056px;}
.ls2_c02421{letter-spacing:0.085644px;}
.lsc_c02421{letter-spacing:0.092232px;}
.lsb_c02421{letter-spacing:0.098820px;}
.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;}
}
.ws2_c02421{word-spacing:-16.516116px;}
.ws1_c02421{word-spacing:-16.377768px;}
.wsc_c02421{word-spacing:-0.296460px;}
.ws0_c02421{word-spacing:-0.158112px;}
.ws11_c02421{word-spacing:-0.006588px;}
.ws5_c02421{word-spacing:0.000000px;}
.ws6_c02421{word-spacing:0.006588px;}
.wsb_c02421{word-spacing:0.019764px;}
.wse_c02421{word-spacing:0.026352px;}
.ws13_c02421{word-spacing:0.032940px;}
.ws4_c02421{word-spacing:0.039528px;}
.ws12_c02421{word-spacing:0.046116px;}
.wsa_c02421{word-spacing:0.052704px;}
.ws1e_c02421{word-spacing:0.059292px;}
.ws3_c02421{word-spacing:0.065880px;}
.ws7_c02421{word-spacing:0.072468px;}
.ws9_c02421{word-spacing:0.079056px;}
.wsd_c02421{word-spacing:0.085644px;}
.ws14_c02421{word-spacing:0.092232px;}
.ws8_c02421{word-spacing:0.105408px;}
.ws16_c02421{word-spacing:0.362340px;}
.ws15_c02421{word-spacing:0.401868px;}
.ws1d_c02421{word-spacing:0.421632px;}
.ws17_c02421{word-spacing:0.751032px;}
.ws25_c02421{word-spacing:2.569320px;}
.ws27_c02421{word-spacing:5.771088px;}
.ws26_c02421{word-spacing:5.790852px;}
.ws18_c02421{word-spacing:6.522120px;}
.ws19_c02421{word-spacing:6.528708px;}
.ws1f_c02421{word-spacing:9.394488px;}
.ws23_c02421{word-spacing:10.837260px;}
.ws24_c02421{word-spacing:10.850436px;}
.ws1c_c02421{word-spacing:11.199600px;}
.ws20_c02421{word-spacing:13.360464px;}
.ws1a_c02421{word-spacing:15.877080px;}
.ws1b_c02421{word-spacing:15.916608px;}
.wsf_c02421{word-spacing:30.271860px;}
.ws10_c02421{word-spacing:30.291624px;}
.ws21_c02421{word-spacing:37.801944px;}
.ws22_c02421{word-spacing:37.854648px;}
._0_c02421{margin-left:-1.185840px;}
._1_c02421{width:1.021140px;}
.fc0_c02421{color:rgb(0,0,0);}
.fs1_c02421{font-size:11.880000px;}
.fs0_c02421{font-size:65.880000px;}
.y0_c02421{bottom:0.000000px;}
.y3_c02421{bottom:75.720882px;}
.y2_c02421{bottom:113.880225px;}
.y35_c02421{bottom:136.830450px;}
.y34_c02421{bottom:153.390450px;}
.y33_c02421{bottom:163.469937px;}
.y32_c02421{bottom:185.340450px;}
.y31_c02421{bottom:207.116328px;}
.y30_c02421{bottom:228.896256px;}
.y2f_c02421{bottom:250.766769px;}
.y2e_c02421{bottom:272.546697px;}
.y2d_c02421{bottom:294.417210px;}
.y2c_c02421{bottom:316.197138px;}
.y2b_c02421{bottom:338.067651px;}
.y2a_c02421{bottom:359.756994px;}
.y29_c02421{bottom:381.627507px;}
.y28_c02421{bottom:403.498020px;}
.y27_c02421{bottom:425.277948px;}
.y26_c02421{bottom:447.148461px;}
.y25_c02421{bottom:468.928389px;}
.y24_c02421{bottom:490.798902px;}
.y23_c02421{bottom:512.578830px;}
.y22_c02421{bottom:534.449343px;}
.y21_c02421{bottom:556.229271px;}
.y20_c02421{bottom:578.009199px;}
.y1f_c02421{bottom:599.879712px;}
.y1e_c02421{bottom:621.659640px;}
.y1d_c02421{bottom:643.530153px;}
.y1c_c02421{bottom:665.310081px;}
.y1b_c02421{bottom:687.180594px;}
.y1a_c02421{bottom:708.960522px;}
.y19_c02421{bottom:730.740450px;}
.y18_c02421{bottom:753.240450px;}
.y17_c02421{bottom:775.920450px;}
.y16_c02421{bottom:795.634320px;}
.y15_c02421{bottom:814.624230px;}
.y14_c02421{bottom:833.614140px;}
.y13_c02421{bottom:852.604050px;}
.y12_c02421{bottom:871.503375px;}
.y11_c02421{bottom:890.493285px;}
.y10_c02421{bottom:909.483195px;}
.yf_c02421{bottom:928.382520px;}
.ye_c02421{bottom:947.463015px;}
.yd_c02421{bottom:966.362340px;}
.yc_c02421{bottom:985.352250px;}
.yb_c02421{bottom:1004.342160px;}
.ya_c02421{bottom:1023.332070px;}
.y9_c02421{bottom:1042.321980px;}
.y8_c02421{bottom:1061.221305px;}
.y7_c02421{bottom:1080.211215px;}
.y6_c02421{bottom:1099.110540px;}
.y5_c02421{bottom:1118.100450px;}
.y4_c02421{bottom:1140.690450px;}
.y1_c02421{bottom:1194.600450px;}
.h5_c02421{height:11.659570px;}
.h3_c02421{height:43.909277px;}
.h2_c02421{height:54.331699px;}
.h4_c02421{height:64.657617px;}
.h1_c02421{height:66.394687px;}
.h0_c02421{height:1263.000000px;}
.w1_c02421{width:892.500000px;}
.w0_c02421{width:892.830000px;}
.x0_c02421{left:0.000000px;}
.x1_c02421{left:127.620000px;}
.x2_c02421{left:438.120675px;}
@media print{
.v0_c02421{vertical-align:0.000000pt;}
.ls11_c02421{letter-spacing:-0.081984pt;}
.ls12_c02421{letter-spacing:-0.029280pt;}
.ls10_c02421{letter-spacing:-0.011712pt;}
.lsf_c02421{letter-spacing:0.000000pt;}
.ls8_c02421{letter-spacing:0.005856pt;}
.ls4_c02421{letter-spacing:0.011712pt;}
.ls3_c02421{letter-spacing:0.017568pt;}
.ls0_c02421{letter-spacing:0.023424pt;}
.lsd_c02421{letter-spacing:0.029280pt;}
.ls5_c02421{letter-spacing:0.035136pt;}
.ls7_c02421{letter-spacing:0.040992pt;}
.ls1_c02421{letter-spacing:0.046848pt;}
.lsa_c02421{letter-spacing:0.052704pt;}
.ls9_c02421{letter-spacing:0.058560pt;}
.ls6_c02421{letter-spacing:0.064416pt;}
.lse_c02421{letter-spacing:0.070272pt;}
.ls2_c02421{letter-spacing:0.076128pt;}
.lsc_c02421{letter-spacing:0.081984pt;}
.lsb_c02421{letter-spacing:0.087840pt;}
.ws2_c02421{word-spacing:-14.680992pt;}
.ws1_c02421{word-spacing:-14.558016pt;}
.wsc_c02421{word-spacing:-0.263520pt;}
.ws0_c02421{word-spacing:-0.140544pt;}
.ws11_c02421{word-spacing:-0.005856pt;}
.ws5_c02421{word-spacing:0.000000pt;}
.ws6_c02421{word-spacing:0.005856pt;}
.wsb_c02421{word-spacing:0.017568pt;}
.wse_c02421{word-spacing:0.023424pt;}
.ws13_c02421{word-spacing:0.029280pt;}
.ws4_c02421{word-spacing:0.035136pt;}
.ws12_c02421{word-spacing:0.040992pt;}
.wsa_c02421{word-spacing:0.046848pt;}
.ws1e_c02421{word-spacing:0.052704pt;}
.ws3_c02421{word-spacing:0.058560pt;}
.ws7_c02421{word-spacing:0.064416pt;}
.ws9_c02421{word-spacing:0.070272pt;}
.wsd_c02421{word-spacing:0.076128pt;}
.ws14_c02421{word-spacing:0.081984pt;}
.ws8_c02421{word-spacing:0.093696pt;}
.ws16_c02421{word-spacing:0.322080pt;}
.ws15_c02421{word-spacing:0.357216pt;}
.ws1d_c02421{word-spacing:0.374784pt;}
.ws17_c02421{word-spacing:0.667584pt;}
.ws25_c02421{word-spacing:2.283840pt;}
.ws27_c02421{word-spacing:5.129856pt;}
.ws26_c02421{word-spacing:5.147424pt;}
.ws18_c02421{word-spacing:5.797440pt;}
.ws19_c02421{word-spacing:5.803296pt;}
.ws1f_c02421{word-spacing:8.350656pt;}
.ws23_c02421{word-spacing:9.633120pt;}
.ws24_c02421{word-spacing:9.644832pt;}
.ws1c_c02421{word-spacing:9.955200pt;}
.ws20_c02421{word-spacing:11.875968pt;}
.ws1a_c02421{word-spacing:14.112960pt;}
.ws1b_c02421{word-spacing:14.148096pt;}
.wsf_c02421{word-spacing:26.908320pt;}
.ws10_c02421{word-spacing:26.925888pt;}
.ws21_c02421{word-spacing:33.601728pt;}
.ws22_c02421{word-spacing:33.648576pt;}
._0_c02421{margin-left:-1.054080pt;}
._1_c02421{width:0.907680pt;}
.fs1_c02421{font-size:10.560000pt;}
.fs0_c02421{font-size:58.560000pt;}
.y0_c02421{bottom:0.000000pt;}
.y3_c02421{bottom:67.307451pt;}
.y2_c02421{bottom:101.226867pt;}
.y35_c02421{bottom:121.627067pt;}
.y34_c02421{bottom:136.347067pt;}
.y33_c02421{bottom:145.306611pt;}
.y32_c02421{bottom:164.747067pt;}
.y31_c02421{bottom:184.103403pt;}
.y30_c02421{bottom:203.463339pt;}
.y2f_c02421{bottom:222.903795pt;}
.y2e_c02421{bottom:242.263731pt;}
.y2d_c02421{bottom:261.704187pt;}
.y2c_c02421{bottom:281.064123pt;}
.y2b_c02421{bottom:300.504579pt;}
.y2a_c02421{bottom:319.783995pt;}
.y29_c02421{bottom:339.224451pt;}
.y28_c02421{bottom:358.664907pt;}
.y27_c02421{bottom:378.024843pt;}
.y26_c02421{bottom:397.465299pt;}
.y25_c02421{bottom:416.825235pt;}
.y24_c02421{bottom:436.265691pt;}
.y23_c02421{bottom:455.625627pt;}
.y22_c02421{bottom:475.066083pt;}
.y21_c02421{bottom:494.426019pt;}
.y20_c02421{bottom:513.785955pt;}
.y1f_c02421{bottom:533.226411pt;}
.y1e_c02421{bottom:552.586347pt;}
.y1d_c02421{bottom:572.026803pt;}
.y1c_c02421{bottom:591.386739pt;}
.y1b_c02421{bottom:610.827195pt;}
.y1a_c02421{bottom:630.187131pt;}
.y19_c02421{bottom:649.547067pt;}
.y18_c02421{bottom:669.547067pt;}
.y17_c02421{bottom:689.707067pt;}
.y16_c02421{bottom:707.230507pt;}
.y15_c02421{bottom:724.110427pt;}
.y14_c02421{bottom:740.990347pt;}
.y13_c02421{bottom:757.870267pt;}
.y12_c02421{bottom:774.669667pt;}
.y11_c02421{bottom:791.549587pt;}
.y10_c02421{bottom:808.429507pt;}
.yf_c02421{bottom:825.228907pt;}
.ye_c02421{bottom:842.189347pt;}
.yd_c02421{bottom:858.988747pt;}
.yc_c02421{bottom:875.868667pt;}
.yb_c02421{bottom:892.748587pt;}
.ya_c02421{bottom:909.628507pt;}
.y9_c02421{bottom:926.508427pt;}
.y8_c02421{bottom:943.307827pt;}
.y7_c02421{bottom:960.187747pt;}
.y6_c02421{bottom:976.987147pt;}
.y5_c02421{bottom:993.867067pt;}
.y4_c02421{bottom:1013.947067pt;}
.y1_c02421{bottom:1061.867067pt;}
.h5_c02421{height:10.364062pt;}
.h3_c02421{height:39.030469pt;}
.h2_c02421{height:48.294844pt;}
.h4_c02421{height:57.473437pt;}
.h1_c02421{height:59.017500pt;}
.h0_c02421{height:1122.666667pt;}
.w1_c02421{width:793.333333pt;}
.w0_c02421{width:793.626667pt;}
.x0_c02421{left:0.000000pt;}
.x1_c02421{left:113.440000pt;}
.x2_c02421{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc3013ba43ece136dfcc25a0.woff2')format("woff");}.ff1_c02422{font-family:ff1_c02422;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02422{font-family:ff2_c02422;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02422;src:url('chunks/assets/font_cf6d2f74b49ed7a896ed132b.woff2')format("woff");}.ff3_c02422{font-family:ff3_c02422;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02422;src:url('chunks/assets/font_3129585be041677d45735980.woff2')format("woff");}.ff4_c02422{font-family:ff4_c02422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c02422{letter-spacing:-0.046116px;}
.ls10_c02422{letter-spacing:-0.019764px;}
.ls11_c02422{letter-spacing:-0.006588px;}
.lse_c02422{letter-spacing:0.000000px;}
.ls9_c02422{letter-spacing:0.006588px;}
.ls5_c02422{letter-spacing:0.013176px;}
.ls2_c02422{letter-spacing:0.019764px;}
.ls0_c02422{letter-spacing:0.026352px;}
.ls3_c02422{letter-spacing:0.032940px;}
.lsb_c02422{letter-spacing:0.039528px;}
.ls8_c02422{letter-spacing:0.046116px;}
.ls1_c02422{letter-spacing:0.052704px;}
.lsc_c02422{letter-spacing:0.065880px;}
.ls6_c02422{letter-spacing:0.072468px;}
.lsa_c02422{letter-spacing:0.079056px;}
.ls7_c02422{letter-spacing:0.085644px;}
.lsf_c02422{letter-spacing:0.092232px;}
.lsd_c02422{letter-spacing:0.098820px;}
.ls4_c02422{letter-spacing:0.151524px;}
.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;}
}
.ws1_c02422{word-spacing:-16.621524px;}
.ws0_c02422{word-spacing:-0.158112px;}
.ws4_c02422{word-spacing:0.000000px;}
.ws1b_c02422{word-spacing:0.026352px;}
.ws3_c02422{word-spacing:0.039528px;}
.wsd_c02422{word-spacing:0.046116px;}
.ws1e_c02422{word-spacing:0.052704px;}
.ws6_c02422{word-spacing:0.059292px;}
.ws2_c02422{word-spacing:0.065880px;}
.ws5_c02422{word-spacing:0.072468px;}
.wsc_c02422{word-spacing:0.079056px;}
.ws10_c02422{word-spacing:0.085644px;}
.ws11_c02422{word-spacing:0.092232px;}
.ws7_c02422{word-spacing:0.111996px;}
.wsf_c02422{word-spacing:5.099112px;}
.wse_c02422{word-spacing:5.105700px;}
.ws1d_c02422{word-spacing:7.227036px;}
.ws1c_c02422{word-spacing:7.299504px;}
.wsa_c02422{word-spacing:11.522412px;}
.ws9_c02422{word-spacing:11.535588px;}
.wsb_c02422{word-spacing:11.568528px;}
.ws8_c02422{word-spacing:14.467248px;}
.ws1a_c02422{word-spacing:18.044532px;}
.ws19_c02422{word-spacing:18.057708px;}
.ws13_c02422{word-spacing:21.970980px;}
.ws12_c02422{word-spacing:22.023684px;}
.ws15_c02422{word-spacing:23.426928px;}
.ws14_c02422{word-spacing:23.453280px;}
.ws16_c02422{word-spacing:29.935872px;}
.ws18_c02422{word-spacing:34.237836px;}
.ws17_c02422{word-spacing:34.264188px;}
._1_c02422{margin-left:-1.179252px;}
._0_c02422{width:1.001376px;}
.fc0_c02422{color:rgb(0,0,0);}
.fs0_c02422{font-size:65.880000px;}
.y0_c02422{bottom:0.000000px;}
.y3_c02422{bottom:75.720882px;}
.y2_c02422{bottom:113.880225px;}
.y31_c02422{bottom:156.630450px;}
.y30_c02422{bottom:179.220558px;}
.y2f_c02422{bottom:201.000486px;}
.y2e_c02422{bottom:222.870999px;}
.y2d_c02422{bottom:244.650927px;}
.y2c_c02422{bottom:266.521440px;}
.y2b_c02422{bottom:288.210783px;}
.y2a_c02422{bottom:310.081296px;}
.y29_c02422{bottom:331.951809px;}
.y28_c02422{bottom:353.731737px;}
.y27_c02422{bottom:375.602250px;}
.y26_c02422{bottom:397.291593px;}
.y25_c02422{bottom:419.251044px;}
.y24_c02422{bottom:441.030972px;}
.y23_c02422{bottom:462.810900px;}
.y22_c02422{bottom:484.681413px;}
.y21_c02422{bottom:506.461341px;}
.y20_c02422{bottom:528.331854px;}
.y1f_c02422{bottom:550.111782px;}
.y1e_c02422{bottom:571.982295px;}
.y1d_c02422{bottom:593.671638px;}
.y1c_c02422{bottom:615.631089px;}
.y1b_c02422{bottom:637.411017px;}
.y1a_c02422{bottom:659.190945px;}
.y19_c02422{bottom:681.061458px;}
.y18_c02422{bottom:702.750801px;}
.y17_c02422{bottom:724.710252px;}
.y16_c02422{bottom:746.490180px;}
.y15_c02422{bottom:768.270108px;}
.y14_c02422{bottom:790.140621px;}
.y13_c02422{bottom:812.011134px;}
.y12_c02422{bottom:833.791062px;}
.y11_c02422{bottom:855.480405px;}
.y10_c02422{bottom:877.439856px;}
.yf_c02422{bottom:899.219784px;}
.ye_c02422{bottom:921.090297px;}
.yd_c02422{bottom:942.870225px;}
.yc_c02422{bottom:964.650153px;}
.yb_c02422{bottom:986.520666px;}
.ya_c02422{bottom:1008.391179px;}
.y9_c02422{bottom:1030.171107px;}
.y8_c02422{bottom:1051.860450px;}
.y7_c02422{bottom:1074.540450px;}
.y6_c02422{bottom:1097.130450px;}
.y5_c02422{bottom:1118.820450px;}
.y4_c02422{bottom:1141.410585px;}
.y1_c02422{bottom:1194.600450px;}
.h3_c02422{height:43.909277px;}
.h2_c02422{height:54.331699px;}
.h4_c02422{height:64.657617px;}
.h1_c02422{height:66.394687px;}
.h0_c02422{height:1263.000000px;}
.w1_c02422{width:892.500000px;}
.w0_c02422{width:892.830000px;}
.x0_c02422{left:0.000000px;}
.x1_c02422{left:127.620000px;}
.x3_c02422{left:148.950297px;}
.x2_c02422{left:438.120675px;}
@media print{
.v0_c02422{vertical-align:0.000000pt;}
.ls12_c02422{letter-spacing:-0.040992pt;}
.ls10_c02422{letter-spacing:-0.017568pt;}
.ls11_c02422{letter-spacing:-0.005856pt;}
.lse_c02422{letter-spacing:0.000000pt;}
.ls9_c02422{letter-spacing:0.005856pt;}
.ls5_c02422{letter-spacing:0.011712pt;}
.ls2_c02422{letter-spacing:0.017568pt;}
.ls0_c02422{letter-spacing:0.023424pt;}
.ls3_c02422{letter-spacing:0.029280pt;}
.lsb_c02422{letter-spacing:0.035136pt;}
.ls8_c02422{letter-spacing:0.040992pt;}
.ls1_c02422{letter-spacing:0.046848pt;}
.lsc_c02422{letter-spacing:0.058560pt;}
.ls6_c02422{letter-spacing:0.064416pt;}
.lsa_c02422{letter-spacing:0.070272pt;}
.ls7_c02422{letter-spacing:0.076128pt;}
.lsf_c02422{letter-spacing:0.081984pt;}
.lsd_c02422{letter-spacing:0.087840pt;}
.ls4_c02422{letter-spacing:0.134688pt;}
.ws1_c02422{word-spacing:-14.774688pt;}
.ws0_c02422{word-spacing:-0.140544pt;}
.ws4_c02422{word-spacing:0.000000pt;}
.ws1b_c02422{word-spacing:0.023424pt;}
.ws3_c02422{word-spacing:0.035136pt;}
.wsd_c02422{word-spacing:0.040992pt;}
.ws1e_c02422{word-spacing:0.046848pt;}
.ws6_c02422{word-spacing:0.052704pt;}
.ws2_c02422{word-spacing:0.058560pt;}
.ws5_c02422{word-spacing:0.064416pt;}
.wsc_c02422{word-spacing:0.070272pt;}
.ws10_c02422{word-spacing:0.076128pt;}
.ws11_c02422{word-spacing:0.081984pt;}
.ws7_c02422{word-spacing:0.099552pt;}
.wsf_c02422{word-spacing:4.532544pt;}
.wse_c02422{word-spacing:4.538400pt;}
.ws1d_c02422{word-spacing:6.424032pt;}
.ws1c_c02422{word-spacing:6.488448pt;}
.wsa_c02422{word-spacing:10.242144pt;}
.ws9_c02422{word-spacing:10.253856pt;}
.wsb_c02422{word-spacing:10.283136pt;}
.ws8_c02422{word-spacing:12.859776pt;}
.ws1a_c02422{word-spacing:16.039584pt;}
.ws19_c02422{word-spacing:16.051296pt;}
.ws13_c02422{word-spacing:19.529760pt;}
.ws12_c02422{word-spacing:19.576608pt;}
.ws15_c02422{word-spacing:20.823936pt;}
.ws14_c02422{word-spacing:20.847360pt;}
.ws16_c02422{word-spacing:26.609664pt;}
.ws18_c02422{word-spacing:30.433632pt;}
.ws17_c02422{word-spacing:30.457056pt;}
._1_c02422{margin-left:-1.048224pt;}
._0_c02422{width:0.890112pt;}
.fs0_c02422{font-size:58.560000pt;}
.y0_c02422{bottom:0.000000pt;}
.y3_c02422{bottom:67.307451pt;}
.y2_c02422{bottom:101.226867pt;}
.y31_c02422{bottom:139.227067pt;}
.y30_c02422{bottom:159.307163pt;}
.y2f_c02422{bottom:178.667099pt;}
.y2e_c02422{bottom:198.107555pt;}
.y2d_c02422{bottom:217.467491pt;}
.y2c_c02422{bottom:236.907947pt;}
.y2b_c02422{bottom:256.187363pt;}
.y2a_c02422{bottom:275.627819pt;}
.y29_c02422{bottom:295.068275pt;}
.y28_c02422{bottom:314.428211pt;}
.y27_c02422{bottom:333.868667pt;}
.y26_c02422{bottom:353.148083pt;}
.y25_c02422{bottom:372.667595pt;}
.y24_c02422{bottom:392.027531pt;}
.y23_c02422{bottom:411.387467pt;}
.y22_c02422{bottom:430.827923pt;}
.y21_c02422{bottom:450.187859pt;}
.y20_c02422{bottom:469.628315pt;}
.y1f_c02422{bottom:488.988251pt;}
.y1e_c02422{bottom:508.428707pt;}
.y1d_c02422{bottom:527.708123pt;}
.y1c_c02422{bottom:547.227635pt;}
.y1b_c02422{bottom:566.587571pt;}
.y1a_c02422{bottom:585.947507pt;}
.y19_c02422{bottom:605.387963pt;}
.y18_c02422{bottom:624.667379pt;}
.y17_c02422{bottom:644.186891pt;}
.y16_c02422{bottom:663.546827pt;}
.y15_c02422{bottom:682.906763pt;}
.y14_c02422{bottom:702.347219pt;}
.y13_c02422{bottom:721.787675pt;}
.y12_c02422{bottom:741.147611pt;}
.y11_c02422{bottom:760.427027pt;}
.y10_c02422{bottom:779.946539pt;}
.yf_c02422{bottom:799.306475pt;}
.ye_c02422{bottom:818.746931pt;}
.yd_c02422{bottom:838.106867pt;}
.yc_c02422{bottom:857.466803pt;}
.yb_c02422{bottom:876.907259pt;}
.ya_c02422{bottom:896.347715pt;}
.y9_c02422{bottom:915.707651pt;}
.y8_c02422{bottom:934.987067pt;}
.y7_c02422{bottom:955.147067pt;}
.y6_c02422{bottom:975.227067pt;}
.y5_c02422{bottom:994.507067pt;}
.y4_c02422{bottom:1014.587187pt;}
.y1_c02422{bottom:1061.867067pt;}
.h3_c02422{height:39.030469pt;}
.h2_c02422{height:48.294844pt;}
.h4_c02422{height:57.473437pt;}
.h1_c02422{height:59.017500pt;}
.h0_c02422{height:1122.666667pt;}
.w1_c02422{width:793.333333pt;}
.w0_c02422{width:793.626667pt;}
.x0_c02422{left:0.000000pt;}
.x1_c02422{left:113.440000pt;}
.x3_c02422{left:132.400264pt;}
.x2_c02422{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac603819230787a1fd99af67.woff2')format("woff");}.ff1_c02423{font-family:ff1_c02423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02423;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02423{font-family:ff2_c02423;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02423;src:url('chunks/assets/font_cf6d2f74b49ed7a896ed132b.woff2')format("woff");}.ff3_c02423{font-family:ff3_c02423;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02423;src:url('chunks/assets/font_63b66a7ea3d86cffe51eb057.woff2')format("woff");}.ff4_c02423{font-family:ff4_c02423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c02423{letter-spacing:-0.043200px;}
.ls13_c02423{letter-spacing:-0.021600px;}
.ls12_c02423{letter-spacing:-0.014400px;}
.ls10_c02423{letter-spacing:-0.007200px;}
.lse_c02423{letter-spacing:0.000000px;}
.ls3_c02423{letter-spacing:0.007200px;}
.ls5_c02423{letter-spacing:0.014400px;}
.ls8_c02423{letter-spacing:0.021600px;}
.ls0_c02423{letter-spacing:0.026352px;}
.ls9_c02423{letter-spacing:0.028800px;}
.lsc_c02423{letter-spacing:0.036000px;}
.ls4_c02423{letter-spacing:0.043200px;}
.ls7_c02423{letter-spacing:0.050400px;}
.ls1_c02423{letter-spacing:0.052704px;}
.ls6_c02423{letter-spacing:0.057600px;}
.lsa_c02423{letter-spacing:0.072000px;}
.ls2_c02423{letter-spacing:0.072468px;}
.lsb_c02423{letter-spacing:0.079056px;}
.lsd_c02423{letter-spacing:0.079200px;}
.lsf_c02423{letter-spacing:0.092232px;}
.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;}
}
.ws1_c02423{word-spacing:-18.050400px;}
.ws24_c02423{word-spacing:-0.288000px;}
.wsd_c02423{word-spacing:-0.273600px;}
.wsc_c02423{word-spacing:-0.252000px;}
.ws27_c02423{word-spacing:-0.201600px;}
.ws20_c02423{word-spacing:-0.194400px;}
.ws0_c02423{word-spacing:-0.158112px;}
.ws23_c02423{word-spacing:-0.144000px;}
.ws2a_c02423{word-spacing:-0.136800px;}
.ws1b_c02423{word-spacing:-0.129600px;}
.ws29_c02423{word-spacing:-0.122400px;}
.ws22_c02423{word-spacing:-0.115200px;}
.ws8_c02423{word-spacing:-0.108000px;}
.ws25_c02423{word-spacing:-0.100800px;}
.ws7_c02423{word-spacing:-0.093600px;}
.ws2e_c02423{word-spacing:-0.086400px;}
.ws6_c02423{word-spacing:-0.079200px;}
.ws26_c02423{word-spacing:-0.064800px;}
.ws2b_c02423{word-spacing:-0.043200px;}
.ws28_c02423{word-spacing:-0.036000px;}
.ws21_c02423{word-spacing:-0.028800px;}
.ws10_c02423{word-spacing:-0.021600px;}
.ws16_c02423{word-spacing:-0.014400px;}
.ws9_c02423{word-spacing:-0.007200px;}
.ws4_c02423{word-spacing:0.000000px;}
.ws1f_c02423{word-spacing:0.013176px;}
.ws2c_c02423{word-spacing:0.014400px;}
.ws5_c02423{word-spacing:0.019764px;}
.ws3_c02423{word-spacing:0.039528px;}
.ws2d_c02423{word-spacing:0.057600px;}
.ws2_c02423{word-spacing:0.065880px;}
.ws12_c02423{word-spacing:1.598400px;}
.ws11_c02423{word-spacing:1.648800px;}
.ws13_c02423{word-spacing:1.843200px;}
.ws1a_c02423{word-spacing:3.211200px;}
.ws19_c02423{word-spacing:3.240000px;}
.wsf_c02423{word-spacing:4.989600px;}
.wse_c02423{word-spacing:5.032800px;}
.ws15_c02423{word-spacing:8.510400px;}
.ws14_c02423{word-spacing:8.596800px;}
.ws18_c02423{word-spacing:16.084800px;}
.ws17_c02423{word-spacing:16.149600px;}
.ws1e_c02423{word-spacing:17.546400px;}
.wsa_c02423{word-spacing:18.612000px;}
.wsb_c02423{word-spacing:18.676800px;}
.ws1d_c02423{word-spacing:33.357600px;}
.ws1c_c02423{word-spacing:33.465600px;}
._0_c02423{margin-left:-1.224000px;}
.fc0_c02423{color:rgb(0,0,0);}
.fs2_c02423{font-size:11.880000px;}
.fs0_c02423{font-size:65.880000px;}
.fs1_c02423{font-size:72.000000px;}
.y0_c02423{bottom:0.000000px;}
.y3_c02423{bottom:75.720882px;}
.y2_c02423{bottom:113.880225px;}
.y3d_c02423{bottom:133.681599px;}
.y3c_c02423{bottom:137.641500px;}
.y3b_c02423{bottom:141.601401px;}
.y3a_c02423{bottom:145.561302px;}
.y39_c02423{bottom:149.521203px;}
.y38_c02423{bottom:153.481104px;}
.y37_c02423{bottom:157.441005px;}
.y36_c02423{bottom:161.400906px;}
.y35_c02423{bottom:165.450798px;}
.y34_c02423{bottom:169.410699px;}
.y33_c02423{bottom:173.370600px;}
.y32_c02423{bottom:180.930450px;}
.y31_c02423{bottom:201.630450px;}
.y30_c02423{bottom:222.330450px;}
.y2f_c02423{bottom:243.030450px;}
.y2e_c02423{bottom:263.550450px;}
.y2d_c02423{bottom:284.430450px;}
.y2c_c02423{bottom:305.130450px;}
.y2b_c02423{bottom:325.830450px;}
.y2a_c02423{bottom:346.530450px;}
.y29_c02423{bottom:367.230450px;}
.y28_c02423{bottom:387.930450px;}
.y27_c02423{bottom:408.630450px;}
.y26_c02423{bottom:429.330450px;}
.y25_c02423{bottom:450.030450px;}
.y24_c02423{bottom:470.730450px;}
.y23_c02423{bottom:491.430450px;}
.y22_c02423{bottom:512.130450px;}
.y21_c02423{bottom:532.830450px;}
.y20_c02423{bottom:553.530450px;}
.y1f_c02423{bottom:574.230450px;}
.y1e_c02423{bottom:594.930450px;}
.y1d_c02423{bottom:615.630450px;}
.y1c_c02423{bottom:636.330450px;}
.y1b_c02423{bottom:656.850450px;}
.y1a_c02423{bottom:680.790450px;}
.y19_c02423{bottom:703.470450px;}
.y18_c02423{bottom:723.540450px;}
.y17_c02423{bottom:744.240450px;}
.y16_c02423{bottom:764.940450px;}
.y15_c02423{bottom:785.640450px;}
.y14_c02423{bottom:806.340450px;}
.y13_c02423{bottom:827.040450px;}
.y12_c02423{bottom:847.740450px;}
.y11_c02423{bottom:868.440450px;}
.y10_c02423{bottom:889.140450px;}
.yf_c02423{bottom:909.840450px;}
.ye_c02423{bottom:930.540450px;}
.yd_c02423{bottom:951.240450px;}
.yc_c02423{bottom:971.940450px;}
.yb_c02423{bottom:992.640450px;}
.ya_c02423{bottom:1013.340450px;}
.y9_c02423{bottom:1034.040450px;}
.y8_c02423{bottom:1054.560450px;}
.y7_c02423{bottom:1075.440450px;}
.y6_c02423{bottom:1096.140450px;}
.y5_c02423{bottom:1116.660450px;}
.y4_c02423{bottom:1140.690450px;}
.y1_c02423{bottom:1194.600450px;}
.h7_c02423{height:11.659570px;}
.h3_c02423{height:43.909277px;}
.h2_c02423{height:54.331699px;}
.h6_c02423{height:64.657617px;}
.h1_c02423{height:66.394687px;}
.h5_c02423{height:70.664062px;}
.h4_c02423{height:72.562500px;}
.h0_c02423{height:1263.000000px;}
.w1_c02423{width:892.500000px;}
.w0_c02423{width:892.830000px;}
.x0_c02423{left:0.000000px;}
.x1_c02423{left:127.620000px;}
.x2_c02423{left:438.120675px;}
@media print{
.v0_c02423{vertical-align:0.000000pt;}
.ls11_c02423{letter-spacing:-0.038400pt;}
.ls13_c02423{letter-spacing:-0.019200pt;}
.ls12_c02423{letter-spacing:-0.012800pt;}
.ls10_c02423{letter-spacing:-0.006400pt;}
.lse_c02423{letter-spacing:0.000000pt;}
.ls3_c02423{letter-spacing:0.006400pt;}
.ls5_c02423{letter-spacing:0.012800pt;}
.ls8_c02423{letter-spacing:0.019200pt;}
.ls0_c02423{letter-spacing:0.023424pt;}
.ls9_c02423{letter-spacing:0.025600pt;}
.lsc_c02423{letter-spacing:0.032000pt;}
.ls4_c02423{letter-spacing:0.038400pt;}
.ls7_c02423{letter-spacing:0.044800pt;}
.ls1_c02423{letter-spacing:0.046848pt;}
.ls6_c02423{letter-spacing:0.051200pt;}
.lsa_c02423{letter-spacing:0.064000pt;}
.ls2_c02423{letter-spacing:0.064416pt;}
.lsb_c02423{letter-spacing:0.070272pt;}
.lsd_c02423{letter-spacing:0.070400pt;}
.lsf_c02423{letter-spacing:0.081984pt;}
.ws1_c02423{word-spacing:-16.044800pt;}
.ws24_c02423{word-spacing:-0.256000pt;}
.wsd_c02423{word-spacing:-0.243200pt;}
.wsc_c02423{word-spacing:-0.224000pt;}
.ws27_c02423{word-spacing:-0.179200pt;}
.ws20_c02423{word-spacing:-0.172800pt;}
.ws0_c02423{word-spacing:-0.140544pt;}
.ws23_c02423{word-spacing:-0.128000pt;}
.ws2a_c02423{word-spacing:-0.121600pt;}
.ws1b_c02423{word-spacing:-0.115200pt;}
.ws29_c02423{word-spacing:-0.108800pt;}
.ws22_c02423{word-spacing:-0.102400pt;}
.ws8_c02423{word-spacing:-0.096000pt;}
.ws25_c02423{word-spacing:-0.089600pt;}
.ws7_c02423{word-spacing:-0.083200pt;}
.ws2e_c02423{word-spacing:-0.076800pt;}
.ws6_c02423{word-spacing:-0.070400pt;}
.ws26_c02423{word-spacing:-0.057600pt;}
.ws2b_c02423{word-spacing:-0.038400pt;}
.ws28_c02423{word-spacing:-0.032000pt;}
.ws21_c02423{word-spacing:-0.025600pt;}
.ws10_c02423{word-spacing:-0.019200pt;}
.ws16_c02423{word-spacing:-0.012800pt;}
.ws9_c02423{word-spacing:-0.006400pt;}
.ws4_c02423{word-spacing:0.000000pt;}
.ws1f_c02423{word-spacing:0.011712pt;}
.ws2c_c02423{word-spacing:0.012800pt;}
.ws5_c02423{word-spacing:0.017568pt;}
.ws3_c02423{word-spacing:0.035136pt;}
.ws2d_c02423{word-spacing:0.051200pt;}
.ws2_c02423{word-spacing:0.058560pt;}
.ws12_c02423{word-spacing:1.420800pt;}
.ws11_c02423{word-spacing:1.465600pt;}
.ws13_c02423{word-spacing:1.638400pt;}
.ws1a_c02423{word-spacing:2.854400pt;}
.ws19_c02423{word-spacing:2.880000pt;}
.wsf_c02423{word-spacing:4.435200pt;}
.wse_c02423{word-spacing:4.473600pt;}
.ws15_c02423{word-spacing:7.564800pt;}
.ws14_c02423{word-spacing:7.641600pt;}
.ws18_c02423{word-spacing:14.297600pt;}
.ws17_c02423{word-spacing:14.355200pt;}
.ws1e_c02423{word-spacing:15.596800pt;}
.wsa_c02423{word-spacing:16.544000pt;}
.wsb_c02423{word-spacing:16.601600pt;}
.ws1d_c02423{word-spacing:29.651200pt;}
.ws1c_c02423{word-spacing:29.747200pt;}
._0_c02423{margin-left:-1.088000pt;}
.fs2_c02423{font-size:10.560000pt;}
.fs0_c02423{font-size:58.560000pt;}
.fs1_c02423{font-size:64.000000pt;}
.y0_c02423{bottom:0.000000pt;}
.y3_c02423{bottom:67.307451pt;}
.y2_c02423{bottom:101.226867pt;}
.y3d_c02423{bottom:118.828088pt;}
.y3c_c02423{bottom:122.348000pt;}
.y3b_c02423{bottom:125.867912pt;}
.y3a_c02423{bottom:129.387824pt;}
.y39_c02423{bottom:132.907736pt;}
.y38_c02423{bottom:136.427648pt;}
.y37_c02423{bottom:139.947560pt;}
.y36_c02423{bottom:143.467472pt;}
.y35_c02423{bottom:147.067376pt;}
.y34_c02423{bottom:150.587288pt;}
.y33_c02423{bottom:154.107200pt;}
.y32_c02423{bottom:160.827067pt;}
.y31_c02423{bottom:179.227067pt;}
.y30_c02423{bottom:197.627067pt;}
.y2f_c02423{bottom:216.027067pt;}
.y2e_c02423{bottom:234.267067pt;}
.y2d_c02423{bottom:252.827067pt;}
.y2c_c02423{bottom:271.227067pt;}
.y2b_c02423{bottom:289.627067pt;}
.y2a_c02423{bottom:308.027067pt;}
.y29_c02423{bottom:326.427067pt;}
.y28_c02423{bottom:344.827067pt;}
.y27_c02423{bottom:363.227067pt;}
.y26_c02423{bottom:381.627067pt;}
.y25_c02423{bottom:400.027067pt;}
.y24_c02423{bottom:418.427067pt;}
.y23_c02423{bottom:436.827067pt;}
.y22_c02423{bottom:455.227067pt;}
.y21_c02423{bottom:473.627067pt;}
.y20_c02423{bottom:492.027067pt;}
.y1f_c02423{bottom:510.427067pt;}
.y1e_c02423{bottom:528.827067pt;}
.y1d_c02423{bottom:547.227067pt;}
.y1c_c02423{bottom:565.627067pt;}
.y1b_c02423{bottom:583.867067pt;}
.y1a_c02423{bottom:605.147067pt;}
.y19_c02423{bottom:625.307067pt;}
.y18_c02423{bottom:643.147067pt;}
.y17_c02423{bottom:661.547067pt;}
.y16_c02423{bottom:679.947067pt;}
.y15_c02423{bottom:698.347067pt;}
.y14_c02423{bottom:716.747067pt;}
.y13_c02423{bottom:735.147067pt;}
.y12_c02423{bottom:753.547067pt;}
.y11_c02423{bottom:771.947067pt;}
.y10_c02423{bottom:790.347067pt;}
.yf_c02423{bottom:808.747067pt;}
.ye_c02423{bottom:827.147067pt;}
.yd_c02423{bottom:845.547067pt;}
.yc_c02423{bottom:863.947067pt;}
.yb_c02423{bottom:882.347067pt;}
.ya_c02423{bottom:900.747067pt;}
.y9_c02423{bottom:919.147067pt;}
.y8_c02423{bottom:937.387067pt;}
.y7_c02423{bottom:955.947067pt;}
.y6_c02423{bottom:974.347067pt;}
.y5_c02423{bottom:992.587067pt;}
.y4_c02423{bottom:1013.947067pt;}
.y1_c02423{bottom:1061.867067pt;}
.h7_c02423{height:10.364062pt;}
.h3_c02423{height:39.030469pt;}
.h2_c02423{height:48.294844pt;}
.h6_c02423{height:57.473437pt;}
.h1_c02423{height:59.017500pt;}
.h5_c02423{height:62.812500pt;}
.h4_c02423{height:64.500000pt;}
.h0_c02423{height:1122.666667pt;}
.w1_c02423{width:793.333333pt;}
.w0_c02423{width:793.626667pt;}
.x0_c02423{left:0.000000pt;}
.x1_c02423{left:113.440000pt;}
.x2_c02423{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_233087ccefbbbb56a09eef96.woff2')format("woff");}.ff1_c02424{font-family:ff1_c02424;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02424;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02424{font-family:ff2_c02424;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02424;src:url('chunks/assets/font_5c9359357d29b2ac38aad689.woff2')format("woff");}.ff3_c02424{font-family:ff3_c02424;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02424;src:url('chunks/assets/font_dbff7a81fbca3ec964ffd744.woff2')format("woff");}.ff4_c02424{font-family:ff4_c02424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c02424{letter-spacing:-0.028800px;}
.lse_c02424{letter-spacing:-0.021600px;}
.lsf_c02424{letter-spacing:-0.014400px;}
.ls10_c02424{letter-spacing:-0.007200px;}
.lsc_c02424{letter-spacing:0.000000px;}
.ls8_c02424{letter-spacing:0.007200px;}
.lsa_c02424{letter-spacing:0.014400px;}
.ls5_c02424{letter-spacing:0.021600px;}
.ls0_c02424{letter-spacing:0.026352px;}
.ls9_c02424{letter-spacing:0.028800px;}
.ls3_c02424{letter-spacing:0.036000px;}
.ls4_c02424{letter-spacing:0.043200px;}
.ls7_c02424{letter-spacing:0.050400px;}
.ls1_c02424{letter-spacing:0.052704px;}
.ls6_c02424{letter-spacing:0.057600px;}
.ls2_c02424{letter-spacing:0.065880px;}
.lsd_c02424{letter-spacing:0.092232px;}
.lsb_c02424{letter-spacing:0.100800px;}
.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;}
}
.ws34_c02424{word-spacing:-0.280800px;}
.ws0_c02424{word-spacing:-0.158112px;}
.ws16_c02424{word-spacing:-0.151200px;}
.wsd_c02424{word-spacing:-0.122400px;}
.wsc_c02424{word-spacing:-0.115200px;}
.ws18_c02424{word-spacing:-0.079200px;}
.ws1f_c02424{word-spacing:-0.057600px;}
.wsb_c02424{word-spacing:-0.050400px;}
.ws7_c02424{word-spacing:-0.043200px;}
.ws12_c02424{word-spacing:-0.028800px;}
.ws10_c02424{word-spacing:-0.021600px;}
.ws1a_c02424{word-spacing:-0.014400px;}
.ws5_c02424{word-spacing:-0.007200px;}
.ws3_c02424{word-spacing:0.000000px;}
.ws17_c02424{word-spacing:0.007200px;}
.ws30_c02424{word-spacing:0.014400px;}
.ws4_c02424{word-spacing:0.026352px;}
.ws2_c02424{word-spacing:0.039528px;}
.ws29_c02424{word-spacing:0.050400px;}
.ws1_c02424{word-spacing:0.065880px;}
.ws11_c02424{word-spacing:0.136800px;}
.ws2d_c02424{word-spacing:0.316800px;}
.ws24_c02424{word-spacing:1.281600px;}
.ws22_c02424{word-spacing:1.375200px;}
.ws23_c02424{word-spacing:1.468800px;}
.ws27_c02424{word-spacing:2.044800px;}
.ws2e_c02424{word-spacing:2.059200px;}
.ws2f_c02424{word-spacing:2.116800px;}
.ws28_c02424{word-spacing:2.152800px;}
.ws19_c02424{word-spacing:3.938400px;}
.ws21_c02424{word-spacing:4.276800px;}
.ws20_c02424{word-spacing:4.327200px;}
.ws13_c02424{word-spacing:5.212800px;}
.ws26_c02424{word-spacing:5.313600px;}
.ws14_c02424{word-spacing:5.328000px;}
.ws25_c02424{word-spacing:5.385600px;}
.ws15_c02424{word-spacing:5.414400px;}
.ws1e_c02424{word-spacing:7.473600px;}
.ws1d_c02424{word-spacing:7.588800px;}
.wsa_c02424{word-spacing:12.988800px;}
.ws9_c02424{word-spacing:13.104000px;}
.ws8_c02424{word-spacing:13.233600px;}
.ws6_c02424{word-spacing:13.284000px;}
.ws1b_c02424{word-spacing:13.572000px;}
.ws1c_c02424{word-spacing:13.586400px;}
.ws2c_c02424{word-spacing:16.408800px;}
.ws2b_c02424{word-spacing:16.444800px;}
.ws2a_c02424{word-spacing:16.567200px;}
.ws33_c02424{word-spacing:25.732800px;}
.ws31_c02424{word-spacing:25.898400px;}
.ws32_c02424{word-spacing:25.927200px;}
.wsf_c02424{word-spacing:30.844800px;}
.wse_c02424{word-spacing:30.952800px;}
._0_c02424{margin-left:-1.185840px;}
.fc0_c02424{color:rgb(0,0,0);}
.fs1_c02424{font-size:11.880000px;}
.fs0_c02424{font-size:65.880000px;}
.fs2_c02424{font-size:72.000000px;}
.y0_c02424{bottom:0.000000px;}
.y3_c02424{bottom:75.720882px;}
.y2_c02424{bottom:113.880225px;}
.y2f_c02424{bottom:149.429127px;}
.y2e_c02424{bottom:171.299640px;}
.y2d_c02424{bottom:193.079568px;}
.y2c_c02424{bottom:214.950081px;}
.y2b_c02424{bottom:236.730009px;}
.y2a_c02424{bottom:258.509937px;}
.y29_c02424{bottom:280.380450px;}
.y28_c02424{bottom:303.510450px;}
.y27_c02424{bottom:327.270450px;}
.y26_c02424{bottom:351.120450px;}
.y25_c02424{bottom:374.880450px;}
.y24_c02424{bottom:398.730450px;}
.y23_c02424{bottom:422.490450px;}
.y22_c02424{bottom:446.340450px;}
.y21_c02424{bottom:470.100450px;}
.y20_c02424{bottom:493.950450px;}
.y1f_c02424{bottom:517.710450px;}
.y1e_c02424{bottom:541.560450px;}
.y1d_c02424{bottom:565.320450px;}
.y1c_c02424{bottom:589.080450px;}
.y1b_c02424{bottom:612.750450px;}
.y1a_c02424{bottom:636.690450px;}
.y19_c02424{bottom:660.540450px;}
.y18_c02424{bottom:684.300450px;}
.y17_c02424{bottom:708.150450px;}
.y16_c02424{bottom:731.910450px;}
.y15_c02424{bottom:755.760450px;}
.y14_c02424{bottom:779.520450px;}
.y13_c02424{bottom:803.370450px;}
.y12_c02424{bottom:827.130450px;}
.y11_c02424{bottom:850.980450px;}
.y10_c02424{bottom:874.740450px;}
.yf_c02424{bottom:898.590450px;}
.ye_c02424{bottom:922.350450px;}
.yd_c02424{bottom:946.200450px;}
.yc_c02424{bottom:969.960450px;}
.yb_c02424{bottom:993.810450px;}
.ya_c02424{bottom:1017.570450px;}
.y9_c02424{bottom:1041.420450px;}
.y8_c02424{bottom:1065.180450px;}
.y7_c02424{bottom:1089.030450px;}
.y6_c02424{bottom:1112.610450px;}
.y5_c02424{bottom:1136.730450px;}
.y4_c02424{bottom:1154.010450px;}
.y1_c02424{bottom:1194.600450px;}
.h4_c02424{height:11.659570px;}
.h3_c02424{height:43.909277px;}
.h2_c02424{height:54.331699px;}
.h7_c02424{height:64.657617px;}
.h1_c02424{height:66.394687px;}
.h6_c02424{height:70.664062px;}
.h5_c02424{height:72.562500px;}
.h0_c02424{height:1263.000000px;}
.w1_c02424{width:892.500000px;}
.w0_c02424{width:892.830000px;}
.x0_c02424{left:0.000000px;}
.x1_c02424{left:127.620000px;}
.x2_c02424{left:438.120675px;}
@media print{
.v0_c02424{vertical-align:0.000000pt;}
.ls11_c02424{letter-spacing:-0.025600pt;}
.lse_c02424{letter-spacing:-0.019200pt;}
.lsf_c02424{letter-spacing:-0.012800pt;}
.ls10_c02424{letter-spacing:-0.006400pt;}
.lsc_c02424{letter-spacing:0.000000pt;}
.ls8_c02424{letter-spacing:0.006400pt;}
.lsa_c02424{letter-spacing:0.012800pt;}
.ls5_c02424{letter-spacing:0.019200pt;}
.ls0_c02424{letter-spacing:0.023424pt;}
.ls9_c02424{letter-spacing:0.025600pt;}
.ls3_c02424{letter-spacing:0.032000pt;}
.ls4_c02424{letter-spacing:0.038400pt;}
.ls7_c02424{letter-spacing:0.044800pt;}
.ls1_c02424{letter-spacing:0.046848pt;}
.ls6_c02424{letter-spacing:0.051200pt;}
.ls2_c02424{letter-spacing:0.058560pt;}
.lsd_c02424{letter-spacing:0.081984pt;}
.lsb_c02424{letter-spacing:0.089600pt;}
.ws34_c02424{word-spacing:-0.249600pt;}
.ws0_c02424{word-spacing:-0.140544pt;}
.ws16_c02424{word-spacing:-0.134400pt;}
.wsd_c02424{word-spacing:-0.108800pt;}
.wsc_c02424{word-spacing:-0.102400pt;}
.ws18_c02424{word-spacing:-0.070400pt;}
.ws1f_c02424{word-spacing:-0.051200pt;}
.wsb_c02424{word-spacing:-0.044800pt;}
.ws7_c02424{word-spacing:-0.038400pt;}
.ws12_c02424{word-spacing:-0.025600pt;}
.ws10_c02424{word-spacing:-0.019200pt;}
.ws1a_c02424{word-spacing:-0.012800pt;}
.ws5_c02424{word-spacing:-0.006400pt;}
.ws3_c02424{word-spacing:0.000000pt;}
.ws17_c02424{word-spacing:0.006400pt;}
.ws30_c02424{word-spacing:0.012800pt;}
.ws4_c02424{word-spacing:0.023424pt;}
.ws2_c02424{word-spacing:0.035136pt;}
.ws29_c02424{word-spacing:0.044800pt;}
.ws1_c02424{word-spacing:0.058560pt;}
.ws11_c02424{word-spacing:0.121600pt;}
.ws2d_c02424{word-spacing:0.281600pt;}
.ws24_c02424{word-spacing:1.139200pt;}
.ws22_c02424{word-spacing:1.222400pt;}
.ws23_c02424{word-spacing:1.305600pt;}
.ws27_c02424{word-spacing:1.817600pt;}
.ws2e_c02424{word-spacing:1.830400pt;}
.ws2f_c02424{word-spacing:1.881600pt;}
.ws28_c02424{word-spacing:1.913600pt;}
.ws19_c02424{word-spacing:3.500800pt;}
.ws21_c02424{word-spacing:3.801600pt;}
.ws20_c02424{word-spacing:3.846400pt;}
.ws13_c02424{word-spacing:4.633600pt;}
.ws26_c02424{word-spacing:4.723200pt;}
.ws14_c02424{word-spacing:4.736000pt;}
.ws25_c02424{word-spacing:4.787200pt;}
.ws15_c02424{word-spacing:4.812800pt;}
.ws1e_c02424{word-spacing:6.643200pt;}
.ws1d_c02424{word-spacing:6.745600pt;}
.wsa_c02424{word-spacing:11.545600pt;}
.ws9_c02424{word-spacing:11.648000pt;}
.ws8_c02424{word-spacing:11.763200pt;}
.ws6_c02424{word-spacing:11.808000pt;}
.ws1b_c02424{word-spacing:12.064000pt;}
.ws1c_c02424{word-spacing:12.076800pt;}
.ws2c_c02424{word-spacing:14.585600pt;}
.ws2b_c02424{word-spacing:14.617600pt;}
.ws2a_c02424{word-spacing:14.726400pt;}
.ws33_c02424{word-spacing:22.873600pt;}
.ws31_c02424{word-spacing:23.020800pt;}
.ws32_c02424{word-spacing:23.046400pt;}
.wsf_c02424{word-spacing:27.417600pt;}
.wse_c02424{word-spacing:27.513600pt;}
._0_c02424{margin-left:-1.054080pt;}
.fs1_c02424{font-size:10.560000pt;}
.fs0_c02424{font-size:58.560000pt;}
.fs2_c02424{font-size:64.000000pt;}
.y0_c02424{bottom:0.000000pt;}
.y3_c02424{bottom:67.307451pt;}
.y2_c02424{bottom:101.226867pt;}
.y2f_c02424{bottom:132.825891pt;}
.y2e_c02424{bottom:152.266347pt;}
.y2d_c02424{bottom:171.626283pt;}
.y2c_c02424{bottom:191.066739pt;}
.y2b_c02424{bottom:210.426675pt;}
.y2a_c02424{bottom:229.786611pt;}
.y29_c02424{bottom:249.227067pt;}
.y28_c02424{bottom:269.787067pt;}
.y27_c02424{bottom:290.907067pt;}
.y26_c02424{bottom:312.107067pt;}
.y25_c02424{bottom:333.227067pt;}
.y24_c02424{bottom:354.427067pt;}
.y23_c02424{bottom:375.547067pt;}
.y22_c02424{bottom:396.747067pt;}
.y21_c02424{bottom:417.867067pt;}
.y20_c02424{bottom:439.067067pt;}
.y1f_c02424{bottom:460.187067pt;}
.y1e_c02424{bottom:481.387067pt;}
.y1d_c02424{bottom:502.507067pt;}
.y1c_c02424{bottom:523.627067pt;}
.y1b_c02424{bottom:544.667067pt;}
.y1a_c02424{bottom:565.947067pt;}
.y19_c02424{bottom:587.147067pt;}
.y18_c02424{bottom:608.267067pt;}
.y17_c02424{bottom:629.467067pt;}
.y16_c02424{bottom:650.587067pt;}
.y15_c02424{bottom:671.787067pt;}
.y14_c02424{bottom:692.907067pt;}
.y13_c02424{bottom:714.107067pt;}
.y12_c02424{bottom:735.227067pt;}
.y11_c02424{bottom:756.427067pt;}
.y10_c02424{bottom:777.547067pt;}
.yf_c02424{bottom:798.747067pt;}
.ye_c02424{bottom:819.867067pt;}
.yd_c02424{bottom:841.067067pt;}
.yc_c02424{bottom:862.187067pt;}
.yb_c02424{bottom:883.387067pt;}
.ya_c02424{bottom:904.507067pt;}
.y9_c02424{bottom:925.707067pt;}
.y8_c02424{bottom:946.827067pt;}
.y7_c02424{bottom:968.027067pt;}
.y6_c02424{bottom:988.987067pt;}
.y5_c02424{bottom:1010.427067pt;}
.y4_c02424{bottom:1025.787067pt;}
.y1_c02424{bottom:1061.867067pt;}
.h4_c02424{height:10.364062pt;}
.h3_c02424{height:39.030469pt;}
.h2_c02424{height:48.294844pt;}
.h7_c02424{height:57.473437pt;}
.h1_c02424{height:59.017500pt;}
.h6_c02424{height:62.812500pt;}
.h5_c02424{height:64.500000pt;}
.h0_c02424{height:1122.666667pt;}
.w1_c02424{width:793.333333pt;}
.w0_c02424{width:793.626667pt;}
.x0_c02424{left:0.000000pt;}
.x1_c02424{left:113.440000pt;}
.x2_c02424{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e16b79841e754f3be795e844.woff2')format("woff");}.ff1_c02425{font-family:ff1_c02425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02425;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02425{font-family:ff2_c02425;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02425;src:url('chunks/assets/font_3e04779d7afda23b3c5a02fe.woff2')format("woff");}.ff3_c02425{font-family:ff3_c02425;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02425;src:url('chunks/assets/font_48ca3fe7696010b91f76a7a5.woff2')format("woff");}.ff4_c02425{font-family:ff4_c02425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c02425{letter-spacing:-0.059292px;}
.ls10_c02425{letter-spacing:-0.019764px;}
.lsf_c02425{letter-spacing:-0.006588px;}
.lse_c02425{letter-spacing:0.000000px;}
.ls9_c02425{letter-spacing:0.006588px;}
.ls6_c02425{letter-spacing:0.013176px;}
.ls3_c02425{letter-spacing:0.019764px;}
.ls0_c02425{letter-spacing:0.026352px;}
.lsb_c02425{letter-spacing:0.032940px;}
.lsd_c02425{letter-spacing:0.039528px;}
.ls7_c02425{letter-spacing:0.046116px;}
.ls1_c02425{letter-spacing:0.052704px;}
.ls4_c02425{letter-spacing:0.059292px;}
.lsc_c02425{letter-spacing:0.065880px;}
.ls8_c02425{letter-spacing:0.072468px;}
.ls2_c02425{letter-spacing:0.079056px;}
.lsa_c02425{letter-spacing:0.092232px;}
.ls5_c02425{letter-spacing:0.111996px;}
.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;}
}
.ws18_c02425{word-spacing:-0.382104px;}
.ws0_c02425{word-spacing:-0.158112px;}
.ws7_c02425{word-spacing:-0.019764px;}
.ws3_c02425{word-spacing:0.000000px;}
.ws4_c02425{word-spacing:0.013176px;}
.ws29_c02425{word-spacing:0.019764px;}
.ws28_c02425{word-spacing:0.026352px;}
.ws6_c02425{word-spacing:0.032940px;}
.ws2_c02425{word-spacing:0.039528px;}
.wsc_c02425{word-spacing:0.046116px;}
.ws21_c02425{word-spacing:0.052704px;}
.ws20_c02425{word-spacing:0.059292px;}
.ws1_c02425{word-spacing:0.065880px;}
.ws5_c02425{word-spacing:0.072468px;}
.ws13_c02425{word-spacing:0.085644px;}
.ws8_c02425{word-spacing:0.092232px;}
.ws17_c02425{word-spacing:0.368928px;}
.ws16_c02425{word-spacing:0.395280px;}
.wsb_c02425{word-spacing:0.751032px;}
.ws1b_c02425{word-spacing:2.549556px;}
.ws1c_c02425{word-spacing:2.562732px;}
.ws24_c02425{word-spacing:2.931660px;}
.ws23_c02425{word-spacing:2.951424px;}
.ws22_c02425{word-spacing:3.998916px;}
.wsd_c02425{word-spacing:6.884460px;}
.ws9_c02425{word-spacing:9.434016px;}
.wsa_c02425{word-spacing:9.453780px;}
.ws27_c02425{word-spacing:12.273444px;}
.ws1e_c02425{word-spacing:14.421132px;}
.ws1f_c02425{word-spacing:14.434308px;}
.ws26_c02425{word-spacing:15.185340px;}
.ws25_c02425{word-spacing:15.191928px;}
.ws19_c02425{word-spacing:15.857316px;}
.ws1a_c02425{word-spacing:15.896844px;}
.ws10_c02425{word-spacing:16.239420px;}
.ws11_c02425{word-spacing:16.278948px;}
.ws1d_c02425{word-spacing:16.977276px;}
.ws14_c02425{word-spacing:17.280324px;}
.ws15_c02425{word-spacing:17.326440px;}
.ws12_c02425{word-spacing:18.380520px;}
.wse_c02425{word-spacing:19.098612px;}
.wsf_c02425{word-spacing:19.124964px;}
._2_c02425{margin-left:-17.583372px;}
._3_c02425{margin-left:-15.653088px;}
._5_c02425{margin-left:-12.938832px;}
._4_c02425{margin-left:-2.569320px;}
._1_c02425{margin-left:-1.284660px;}
._0_c02425{width:1.370304px;}
.fc0_c02425{color:rgb(0,0,0);}
.fs1_c02425{font-size:11.880000px;}
.fs0_c02425{font-size:65.880000px;}
.y0_c02425{bottom:0.000000px;}
.y3_c02425{bottom:75.720882px;}
.y2_c02425{bottom:113.880225px;}
.y35_c02425{bottom:133.140756px;}
.y34_c02425{bottom:137.100657px;}
.y33_c02425{bottom:141.150549px;}
.y32_c02425{bottom:145.110450px;}
.y31_c02425{bottom:155.097534px;}
.y30_c02425{bottom:176.968047px;}
.y2f_c02425{bottom:198.747975px;}
.y2e_c02425{bottom:220.618488px;}
.y2d_c02425{bottom:242.398416px;}
.y2c_c02425{bottom:264.268929px;}
.y2b_c02425{bottom:286.048857px;}
.y2a_c02425{bottom:307.828785px;}
.y29_c02425{bottom:329.608713px;}
.y28_c02425{bottom:351.479226px;}
.y27_c02425{bottom:373.349739px;}
.y26_c02425{bottom:395.129667px;}
.y25_c02425{bottom:417.000180px;}
.y24_c02425{bottom:438.780108px;}
.y23_c02425{bottom:460.650621px;}
.y22_c02425{bottom:482.430549px;}
.y21_c02425{bottom:504.210477px;}
.y20_c02425{bottom:526.080990px;}
.y1f_c02425{bottom:547.860918px;}
.y1e_c02425{bottom:569.731431px;}
.y1d_c02425{bottom:591.511359px;}
.y1c_c02425{bottom:613.381872px;}
.y1b_c02425{bottom:635.161800px;}
.y1a_c02425{bottom:656.851143px;}
.y19_c02425{bottom:678.810594px;}
.y18_c02425{bottom:700.499937px;}
.y17_c02425{bottom:722.370450px;}
.y16_c02425{bottom:744.960450px;}
.y15_c02425{bottom:766.740450px;}
.y14_c02425{bottom:789.420450px;}
.y13_c02425{bottom:812.009343px;}
.y12_c02425{bottom:833.789271px;}
.y11_c02425{bottom:855.569199px;}
.y10_c02425{bottom:877.439712px;}
.yf_c02425{bottom:899.219640px;}
.ye_c02425{bottom:921.090153px;}
.yd_c02425{bottom:942.870081px;}
.yc_c02425{bottom:964.740594px;}
.yb_c02425{bottom:986.520522px;}
.ya_c02425{bottom:1008.300450px;}
.y9_c02425{bottom:1030.890450px;}
.y8_c02425{bottom:1052.760450px;}
.y7_c02425{bottom:1074.450450px;}
.y6_c02425{bottom:1097.040450px;}
.y5_c02425{bottom:1118.820450px;}
.y4_c02425{bottom:1141.410585px;}
.y1_c02425{bottom:1194.600450px;}
.h5_c02425{height:11.659570px;}
.h3_c02425{height:43.909277px;}
.h2_c02425{height:54.331699px;}
.h4_c02425{height:64.657617px;}
.h1_c02425{height:66.394687px;}
.h0_c02425{height:1263.000000px;}
.w1_c02425{width:892.500000px;}
.w0_c02425{width:892.830000px;}
.x0_c02425{left:0.000000px;}
.x1_c02425{left:127.620000px;}
.x2_c02425{left:438.120675px;}
@media print{
.v0_c02425{vertical-align:0.000000pt;}
.ls11_c02425{letter-spacing:-0.052704pt;}
.ls10_c02425{letter-spacing:-0.017568pt;}
.lsf_c02425{letter-spacing:-0.005856pt;}
.lse_c02425{letter-spacing:0.000000pt;}
.ls9_c02425{letter-spacing:0.005856pt;}
.ls6_c02425{letter-spacing:0.011712pt;}
.ls3_c02425{letter-spacing:0.017568pt;}
.ls0_c02425{letter-spacing:0.023424pt;}
.lsb_c02425{letter-spacing:0.029280pt;}
.lsd_c02425{letter-spacing:0.035136pt;}
.ls7_c02425{letter-spacing:0.040992pt;}
.ls1_c02425{letter-spacing:0.046848pt;}
.ls4_c02425{letter-spacing:0.052704pt;}
.lsc_c02425{letter-spacing:0.058560pt;}
.ls8_c02425{letter-spacing:0.064416pt;}
.ls2_c02425{letter-spacing:0.070272pt;}
.lsa_c02425{letter-spacing:0.081984pt;}
.ls5_c02425{letter-spacing:0.099552pt;}
.ws18_c02425{word-spacing:-0.339648pt;}
.ws0_c02425{word-spacing:-0.140544pt;}
.ws7_c02425{word-spacing:-0.017568pt;}
.ws3_c02425{word-spacing:0.000000pt;}
.ws4_c02425{word-spacing:0.011712pt;}
.ws29_c02425{word-spacing:0.017568pt;}
.ws28_c02425{word-spacing:0.023424pt;}
.ws6_c02425{word-spacing:0.029280pt;}
.ws2_c02425{word-spacing:0.035136pt;}
.wsc_c02425{word-spacing:0.040992pt;}
.ws21_c02425{word-spacing:0.046848pt;}
.ws20_c02425{word-spacing:0.052704pt;}
.ws1_c02425{word-spacing:0.058560pt;}
.ws5_c02425{word-spacing:0.064416pt;}
.ws13_c02425{word-spacing:0.076128pt;}
.ws8_c02425{word-spacing:0.081984pt;}
.ws17_c02425{word-spacing:0.327936pt;}
.ws16_c02425{word-spacing:0.351360pt;}
.wsb_c02425{word-spacing:0.667584pt;}
.ws1b_c02425{word-spacing:2.266272pt;}
.ws1c_c02425{word-spacing:2.277984pt;}
.ws24_c02425{word-spacing:2.605920pt;}
.ws23_c02425{word-spacing:2.623488pt;}
.ws22_c02425{word-spacing:3.554592pt;}
.wsd_c02425{word-spacing:6.119520pt;}
.ws9_c02425{word-spacing:8.385792pt;}
.wsa_c02425{word-spacing:8.403360pt;}
.ws27_c02425{word-spacing:10.909728pt;}
.ws1e_c02425{word-spacing:12.818784pt;}
.ws1f_c02425{word-spacing:12.830496pt;}
.ws26_c02425{word-spacing:13.498080pt;}
.ws25_c02425{word-spacing:13.503936pt;}
.ws19_c02425{word-spacing:14.095392pt;}
.ws1a_c02425{word-spacing:14.130528pt;}
.ws10_c02425{word-spacing:14.435040pt;}
.ws11_c02425{word-spacing:14.470176pt;}
.ws1d_c02425{word-spacing:15.090912pt;}
.ws14_c02425{word-spacing:15.360288pt;}
.ws15_c02425{word-spacing:15.401280pt;}
.ws12_c02425{word-spacing:16.338240pt;}
.wse_c02425{word-spacing:16.976544pt;}
.wsf_c02425{word-spacing:16.999968pt;}
._2_c02425{margin-left:-15.629664pt;}
._3_c02425{margin-left:-13.913856pt;}
._5_c02425{margin-left:-11.501184pt;}
._4_c02425{margin-left:-2.283840pt;}
._1_c02425{margin-left:-1.141920pt;}
._0_c02425{width:1.218048pt;}
.fs1_c02425{font-size:10.560000pt;}
.fs0_c02425{font-size:58.560000pt;}
.y0_c02425{bottom:0.000000pt;}
.y3_c02425{bottom:67.307451pt;}
.y2_c02425{bottom:101.226867pt;}
.y35_c02425{bottom:118.347339pt;}
.y34_c02425{bottom:121.867251pt;}
.y33_c02425{bottom:125.467155pt;}
.y32_c02425{bottom:128.987067pt;}
.y31_c02425{bottom:137.864475pt;}
.y30_c02425{bottom:157.304931pt;}
.y2f_c02425{bottom:176.664867pt;}
.y2e_c02425{bottom:196.105323pt;}
.y2d_c02425{bottom:215.465259pt;}
.y2c_c02425{bottom:234.905715pt;}
.y2b_c02425{bottom:254.265651pt;}
.y2a_c02425{bottom:273.625587pt;}
.y29_c02425{bottom:292.985523pt;}
.y28_c02425{bottom:312.425979pt;}
.y27_c02425{bottom:331.866435pt;}
.y26_c02425{bottom:351.226371pt;}
.y25_c02425{bottom:370.666827pt;}
.y24_c02425{bottom:390.026763pt;}
.y23_c02425{bottom:409.467219pt;}
.y22_c02425{bottom:428.827155pt;}
.y21_c02425{bottom:448.187091pt;}
.y20_c02425{bottom:467.627547pt;}
.y1f_c02425{bottom:486.987483pt;}
.y1e_c02425{bottom:506.427939pt;}
.y1d_c02425{bottom:525.787875pt;}
.y1c_c02425{bottom:545.228331pt;}
.y1b_c02425{bottom:564.588267pt;}
.y1a_c02425{bottom:583.867683pt;}
.y19_c02425{bottom:603.387195pt;}
.y18_c02425{bottom:622.666611pt;}
.y17_c02425{bottom:642.107067pt;}
.y16_c02425{bottom:662.187067pt;}
.y15_c02425{bottom:681.547067pt;}
.y14_c02425{bottom:701.707067pt;}
.y13_c02425{bottom:721.786083pt;}
.y12_c02425{bottom:741.146019pt;}
.y11_c02425{bottom:760.505955pt;}
.y10_c02425{bottom:779.946411pt;}
.yf_c02425{bottom:799.306347pt;}
.ye_c02425{bottom:818.746803pt;}
.yd_c02425{bottom:838.106739pt;}
.yc_c02425{bottom:857.547195pt;}
.yb_c02425{bottom:876.907131pt;}
.ya_c02425{bottom:896.267067pt;}
.y9_c02425{bottom:916.347067pt;}
.y8_c02425{bottom:935.787067pt;}
.y7_c02425{bottom:955.067067pt;}
.y6_c02425{bottom:975.147067pt;}
.y5_c02425{bottom:994.507067pt;}
.y4_c02425{bottom:1014.587187pt;}
.y1_c02425{bottom:1061.867067pt;}
.h5_c02425{height:10.364062pt;}
.h3_c02425{height:39.030469pt;}
.h2_c02425{height:48.294844pt;}
.h4_c02425{height:57.473437pt;}
.h1_c02425{height:59.017500pt;}
.h0_c02425{height:1122.666667pt;}
.w1_c02425{width:793.333333pt;}
.w0_c02425{width:793.626667pt;}
.x0_c02425{left:0.000000pt;}
.x1_c02425{left:113.440000pt;}
.x2_c02425{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e583e205d650d81114c2900d.woff2')format("woff");}.ff1_c02426{font-family:ff1_c02426;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02426{font-family:ff2_c02426;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02426;src:url('chunks/assets/font_1ef23892706f2e682d1fe2f9.woff2')format("woff");}.ff3_c02426{font-family:ff3_c02426;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02426;src:url('chunks/assets/font_47054f236b6911250ff65e5b.woff2')format("woff");}.ff4_c02426{font-family:ff4_c02426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02426;src:url('chunks/assets/font_2574eb09efe9670499da51e3.woff2')format("woff");}.ff5_c02426{font-family:ff5_c02426;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_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;}
.ls14_c02426{letter-spacing:-0.026352px;}
.ls13_c02426{letter-spacing:0.000000px;}
.lsc_c02426{letter-spacing:0.006588px;}
.ls7_c02426{letter-spacing:0.013176px;}
.ls3_c02426{letter-spacing:0.019764px;}
.ls0_c02426{letter-spacing:0.026352px;}
.ls8_c02426{letter-spacing:0.032940px;}
.ls4_c02426{letter-spacing:0.039528px;}
.ls6_c02426{letter-spacing:0.046116px;}
.ls11_c02426{letter-spacing:0.052668px;}
.ls1_c02426{letter-spacing:0.052704px;}
.ls9_c02426{letter-spacing:0.059292px;}
.lsa_c02426{letter-spacing:0.065880px;}
.ls12_c02426{letter-spacing:0.071820px;}
.ls2_c02426{letter-spacing:0.072468px;}
.lsd_c02426{letter-spacing:0.079056px;}
.lse_c02426{letter-spacing:0.081396px;}
.lsb_c02426{letter-spacing:0.085644px;}
.ls15_c02426{letter-spacing:0.086184px;}
.ls5_c02426{letter-spacing:0.092232px;}
.lsf_c02426{letter-spacing:0.124488px;}
.ls10_c02426{letter-spacing:0.177156px;}
.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;}
}
.ws3b_c02426{word-spacing:-0.335988px;}
.ws34_c02426{word-spacing:-0.162792px;}
.ws0_c02426{word-spacing:-0.158112px;}
.ws33_c02426{word-spacing:-0.143640px;}
.ws3_c02426{word-spacing:0.000000px;}
.ws4_c02426{word-spacing:0.019764px;}
.ws21_c02426{word-spacing:0.026352px;}
.ws29_c02426{word-spacing:0.032940px;}
.ws2_c02426{word-spacing:0.039528px;}
.wsa_c02426{word-spacing:0.046116px;}
.ws13_c02426{word-spacing:0.052704px;}
.ws38_c02426{word-spacing:0.059292px;}
.ws1_c02426{word-spacing:0.065880px;}
.ws5_c02426{word-spacing:0.072468px;}
.ws35_c02426{word-spacing:0.085644px;}
.ws2e_c02426{word-spacing:0.092232px;}
.ws3d_c02426{word-spacing:0.388692px;}
.wsb_c02426{word-spacing:0.401868px;}
.ws3c_c02426{word-spacing:0.415044px;}
.ws20_c02426{word-spacing:1.838052px;}
.ws1f_c02426{word-spacing:1.844640px;}
.ws42_c02426{word-spacing:3.274236px;}
.ws43_c02426{word-spacing:3.287412px;}
.ws10_c02426{word-spacing:3.294000px;}
.ws12_c02426{word-spacing:3.636576px;}
.ws11_c02426{word-spacing:3.656340px;}
.ws2b_c02426{word-spacing:4.334904px;}
.ws2c_c02426{word-spacing:4.348080px;}
.ws31_c02426{word-spacing:5.491836px;}
.ws30_c02426{word-spacing:5.544504px;}
.ws32_c02426{word-spacing:5.582808px;}
.ws2f_c02426{word-spacing:5.587596px;}
.wsd_c02426{word-spacing:5.797440px;}
.wsc_c02426{word-spacing:5.804028px;}
.wse_c02426{word-spacing:6.541884px;}
.wsf_c02426{word-spacing:6.555060px;}
.ws28_c02426{word-spacing:6.877872px;}
.ws2d_c02426{word-spacing:6.884460px;}
.ws27_c02426{word-spacing:6.904224px;}
.ws22_c02426{word-spacing:8.340408px;}
.ws23_c02426{word-spacing:8.360172px;}
.ws2a_c02426{word-spacing:9.045324px;}
.ws26_c02426{word-spacing:9.368136px;}
.ws25_c02426{word-spacing:9.374724px;}
.ws24_c02426{word-spacing:9.394488px;}
.ws41_c02426{word-spacing:9.756828px;}
.ws40_c02426{word-spacing:9.763416px;}
.ws19_c02426{word-spacing:12.293208px;}
.ws18_c02426{word-spacing:12.299796px;}
.ws3f_c02426{word-spacing:15.185340px;}
.ws3e_c02426{word-spacing:15.198516px;}
.ws17_c02426{word-spacing:16.595172px;}
.ws16_c02426{word-spacing:16.608348px;}
.ws3a_c02426{word-spacing:16.977276px;}
.ws39_c02426{word-spacing:16.983864px;}
.ws37_c02426{word-spacing:18.018180px;}
.ws36_c02426{word-spacing:18.051120px;}
.ws1b_c02426{word-spacing:18.749448px;}
.ws1c_c02426{word-spacing:18.769212px;}
.ws14_c02426{word-spacing:20.916900px;}
.ws1e_c02426{word-spacing:21.246300px;}
.ws1d_c02426{word-spacing:21.266064px;}
.ws1a_c02426{word-spacing:22.339908px;}
.ws9_c02426{word-spacing:24.494184px;}
.ws8_c02426{word-spacing:24.527124px;}
.ws15_c02426{word-spacing:27.419256px;}
.ws7_c02426{word-spacing:28.097820px;}
.ws6_c02426{word-spacing:38.230164px;}
._2_c02426{margin-left:-38.157696px;}
._5_c02426{margin-left:-16.917984px;}
._4_c02426{margin-left:-6.838344px;}
._3_c02426{margin-left:-3.597048px;}
._0_c02426{margin-left:-1.159488px;}
._1_c02426{width:1.113372px;}
.fc0_c02426{color:rgb(0,0,0);}
.fs1_c02426{font-size:11.880000px;}
.fs2_c02426{font-size:47.880000px;}
.fs0_c02426{font-size:65.880000px;}
.y0_c02426{bottom:0.000000px;}
.y3_c02426{bottom:75.720882px;}
.y2_c02426{bottom:113.880225px;}
.y3b_c02426{bottom:130.710600px;}
.y3a_c02426{bottom:138.004200px;}
.y39_c02426{bottom:156.903525px;}
.y38_c02426{bottom:175.893435px;}
.y37_c02426{bottom:194.883345px;}
.y36_c02426{bottom:213.873255px;}
.y35_c02426{bottom:232.863165px;}
.y34_c02426{bottom:251.762490px;}
.y33_c02426{bottom:270.752400px;}
.y32_c02426{bottom:289.742310px;}
.y31_c02426{bottom:308.732220px;}
.y30_c02426{bottom:327.722130px;}
.y2f_c02426{bottom:346.712040px;}
.y2e_c02426{bottom:365.611365px;}
.y2d_c02426{bottom:384.601275px;}
.y2c_c02426{bottom:403.500600px;}
.y2b_c02426{bottom:421.680537px;}
.y2a_c02426{bottom:435.540600px;}
.y29_c02426{bottom:450.123915px;}
.y28_c02426{bottom:469.113825px;}
.y27_c02426{bottom:488.103735px;}
.y26_c02426{bottom:507.093645px;}
.y25_c02426{bottom:526.083555px;}
.y24_c02426{bottom:545.073465px;}
.y23_c02426{bottom:563.972790px;}
.y22_c02426{bottom:582.962700px;}
.y21_c02426{bottom:601.952610px;}
.y20_c02426{bottom:620.851935px;}
.y1f_c02426{bottom:639.932430px;}
.y1e_c02426{bottom:658.831755px;}
.y1d_c02426{bottom:677.821665px;}
.y1c_c02426{bottom:696.811575px;}
.y1b_c02426{bottom:715.801485px;}
.y1a_c02426{bottom:734.791395px;}
.y19_c02426{bottom:753.690720px;}
.y18_c02426{bottom:772.680630px;}
.y17_c02426{bottom:791.670540px;}
.y16_c02426{bottom:810.660450px;}
.y15_c02426{bottom:829.651305px;}
.y14_c02426{bottom:848.641215px;}
.y13_c02426{bottom:867.540540px;}
.y12_c02426{bottom:886.530450px;}
.y11_c02426{bottom:905.520450px;}
.y10_c02426{bottom:924.510450px;}
.yf_c02426{bottom:943.500450px;}
.ye_c02426{bottom:962.400450px;}
.yd_c02426{bottom:981.390810px;}
.yc_c02426{bottom:1000.380720px;}
.yb_c02426{bottom:1019.370630px;}
.ya_c02426{bottom:1038.360540px;}
.y9_c02426{bottom:1057.350450px;}
.y8_c02426{bottom:1076.251215px;}
.y7_c02426{bottom:1095.241125px;}
.y6_c02426{bottom:1114.140450px;}
.y5_c02426{bottom:1136.730450px;}
.y4_c02426{bottom:1154.010450px;}
.y1_c02426{bottom:1194.600450px;}
.h4_c02426{height:11.659570px;}
.h3_c02426{height:43.909277px;}
.h6_c02426{height:46.991602px;}
.h2_c02426{height:54.331699px;}
.h5_c02426{height:64.657617px;}
.h1_c02426{height:66.394687px;}
.h0_c02426{height:1263.000000px;}
.w1_c02426{width:892.500000px;}
.w0_c02426{width:892.830000px;}
.x0_c02426{left:0.000000px;}
.x1_c02426{left:127.620000px;}
.x2_c02426{left:438.120675px;}
@media print{
.v0_c02426{vertical-align:0.000000pt;}
.ls14_c02426{letter-spacing:-0.023424pt;}
.ls13_c02426{letter-spacing:0.000000pt;}
.lsc_c02426{letter-spacing:0.005856pt;}
.ls7_c02426{letter-spacing:0.011712pt;}
.ls3_c02426{letter-spacing:0.017568pt;}
.ls0_c02426{letter-spacing:0.023424pt;}
.ls8_c02426{letter-spacing:0.029280pt;}
.ls4_c02426{letter-spacing:0.035136pt;}
.ls6_c02426{letter-spacing:0.040992pt;}
.ls11_c02426{letter-spacing:0.046816pt;}
.ls1_c02426{letter-spacing:0.046848pt;}
.ls9_c02426{letter-spacing:0.052704pt;}
.lsa_c02426{letter-spacing:0.058560pt;}
.ls12_c02426{letter-spacing:0.063840pt;}
.ls2_c02426{letter-spacing:0.064416pt;}
.lsd_c02426{letter-spacing:0.070272pt;}
.lse_c02426{letter-spacing:0.072352pt;}
.lsb_c02426{letter-spacing:0.076128pt;}
.ls15_c02426{letter-spacing:0.076608pt;}
.ls5_c02426{letter-spacing:0.081984pt;}
.lsf_c02426{letter-spacing:0.110656pt;}
.ls10_c02426{letter-spacing:0.157472pt;}
.ws3b_c02426{word-spacing:-0.298656pt;}
.ws34_c02426{word-spacing:-0.144704pt;}
.ws0_c02426{word-spacing:-0.140544pt;}
.ws33_c02426{word-spacing:-0.127680pt;}
.ws3_c02426{word-spacing:0.000000pt;}
.ws4_c02426{word-spacing:0.017568pt;}
.ws21_c02426{word-spacing:0.023424pt;}
.ws29_c02426{word-spacing:0.029280pt;}
.ws2_c02426{word-spacing:0.035136pt;}
.wsa_c02426{word-spacing:0.040992pt;}
.ws13_c02426{word-spacing:0.046848pt;}
.ws38_c02426{word-spacing:0.052704pt;}
.ws1_c02426{word-spacing:0.058560pt;}
.ws5_c02426{word-spacing:0.064416pt;}
.ws35_c02426{word-spacing:0.076128pt;}
.ws2e_c02426{word-spacing:0.081984pt;}
.ws3d_c02426{word-spacing:0.345504pt;}
.wsb_c02426{word-spacing:0.357216pt;}
.ws3c_c02426{word-spacing:0.368928pt;}
.ws20_c02426{word-spacing:1.633824pt;}
.ws1f_c02426{word-spacing:1.639680pt;}
.ws42_c02426{word-spacing:2.910432pt;}
.ws43_c02426{word-spacing:2.922144pt;}
.ws10_c02426{word-spacing:2.928000pt;}
.ws12_c02426{word-spacing:3.232512pt;}
.ws11_c02426{word-spacing:3.250080pt;}
.ws2b_c02426{word-spacing:3.853248pt;}
.ws2c_c02426{word-spacing:3.864960pt;}
.ws31_c02426{word-spacing:4.881632pt;}
.ws30_c02426{word-spacing:4.928448pt;}
.ws32_c02426{word-spacing:4.962496pt;}
.ws2f_c02426{word-spacing:4.966752pt;}
.wsd_c02426{word-spacing:5.153280pt;}
.wsc_c02426{word-spacing:5.159136pt;}
.wse_c02426{word-spacing:5.815008pt;}
.wsf_c02426{word-spacing:5.826720pt;}
.ws28_c02426{word-spacing:6.113664pt;}
.ws2d_c02426{word-spacing:6.119520pt;}
.ws27_c02426{word-spacing:6.137088pt;}
.ws22_c02426{word-spacing:7.413696pt;}
.ws23_c02426{word-spacing:7.431264pt;}
.ws2a_c02426{word-spacing:8.040288pt;}
.ws26_c02426{word-spacing:8.327232pt;}
.ws25_c02426{word-spacing:8.333088pt;}
.ws24_c02426{word-spacing:8.350656pt;}
.ws41_c02426{word-spacing:8.672736pt;}
.ws40_c02426{word-spacing:8.678592pt;}
.ws19_c02426{word-spacing:10.927296pt;}
.ws18_c02426{word-spacing:10.933152pt;}
.ws3f_c02426{word-spacing:13.498080pt;}
.ws3e_c02426{word-spacing:13.509792pt;}
.ws17_c02426{word-spacing:14.751264pt;}
.ws16_c02426{word-spacing:14.762976pt;}
.ws3a_c02426{word-spacing:15.090912pt;}
.ws39_c02426{word-spacing:15.096768pt;}
.ws37_c02426{word-spacing:16.016160pt;}
.ws36_c02426{word-spacing:16.045440pt;}
.ws1b_c02426{word-spacing:16.666176pt;}
.ws1c_c02426{word-spacing:16.683744pt;}
.ws14_c02426{word-spacing:18.592800pt;}
.ws1e_c02426{word-spacing:18.885600pt;}
.ws1d_c02426{word-spacing:18.903168pt;}
.ws1a_c02426{word-spacing:19.857696pt;}
.ws9_c02426{word-spacing:21.772608pt;}
.ws8_c02426{word-spacing:21.801888pt;}
.ws15_c02426{word-spacing:24.372672pt;}
.ws7_c02426{word-spacing:24.975840pt;}
.ws6_c02426{word-spacing:33.982368pt;}
._2_c02426{margin-left:-33.917952pt;}
._5_c02426{margin-left:-15.038208pt;}
._4_c02426{margin-left:-6.078528pt;}
._3_c02426{margin-left:-3.197376pt;}
._0_c02426{margin-left:-1.030656pt;}
._1_c02426{width:0.989664pt;}
.fs1_c02426{font-size:10.560000pt;}
.fs2_c02426{font-size:42.560000pt;}
.fs0_c02426{font-size:58.560000pt;}
.y0_c02426{bottom:0.000000pt;}
.y3_c02426{bottom:67.307451pt;}
.y2_c02426{bottom:101.226867pt;}
.y3b_c02426{bottom:116.187200pt;}
.y3a_c02426{bottom:122.670400pt;}
.y39_c02426{bottom:139.469800pt;}
.y38_c02426{bottom:156.349720pt;}
.y37_c02426{bottom:173.229640pt;}
.y36_c02426{bottom:190.109560pt;}
.y35_c02426{bottom:206.989480pt;}
.y34_c02426{bottom:223.788880pt;}
.y33_c02426{bottom:240.668800pt;}
.y32_c02426{bottom:257.548720pt;}
.y31_c02426{bottom:274.428640pt;}
.y30_c02426{bottom:291.308560pt;}
.y2f_c02426{bottom:308.188480pt;}
.y2e_c02426{bottom:324.987880pt;}
.y2d_c02426{bottom:341.867800pt;}
.y2c_c02426{bottom:358.667200pt;}
.y2b_c02426{bottom:374.827144pt;}
.y2a_c02426{bottom:387.147200pt;}
.y29_c02426{bottom:400.110147pt;}
.y28_c02426{bottom:416.990067pt;}
.y27_c02426{bottom:433.869987pt;}
.y26_c02426{bottom:450.749907pt;}
.y25_c02426{bottom:467.629827pt;}
.y24_c02426{bottom:484.509747pt;}
.y23_c02426{bottom:501.309147pt;}
.y22_c02426{bottom:518.189067pt;}
.y21_c02426{bottom:535.068987pt;}
.y20_c02426{bottom:551.868387pt;}
.y1f_c02426{bottom:568.828827pt;}
.y1e_c02426{bottom:585.628227pt;}
.y1d_c02426{bottom:602.508147pt;}
.y1c_c02426{bottom:619.388067pt;}
.y1b_c02426{bottom:636.267987pt;}
.y1a_c02426{bottom:653.147907pt;}
.y19_c02426{bottom:669.947307pt;}
.y18_c02426{bottom:686.827227pt;}
.y17_c02426{bottom:703.707147pt;}
.y16_c02426{bottom:720.587067pt;}
.y15_c02426{bottom:737.467827pt;}
.y14_c02426{bottom:754.347747pt;}
.y13_c02426{bottom:771.147147pt;}
.y12_c02426{bottom:788.027067pt;}
.y11_c02426{bottom:804.907067pt;}
.y10_c02426{bottom:821.787067pt;}
.yf_c02426{bottom:838.667067pt;}
.ye_c02426{bottom:855.467067pt;}
.yd_c02426{bottom:872.347387pt;}
.yc_c02426{bottom:889.227307pt;}
.yb_c02426{bottom:906.107227pt;}
.ya_c02426{bottom:922.987147pt;}
.y9_c02426{bottom:939.867067pt;}
.y8_c02426{bottom:956.667747pt;}
.y7_c02426{bottom:973.547667pt;}
.y6_c02426{bottom:990.347067pt;}
.y5_c02426{bottom:1010.427067pt;}
.y4_c02426{bottom:1025.787067pt;}
.y1_c02426{bottom:1061.867067pt;}
.h4_c02426{height:10.364062pt;}
.h3_c02426{height:39.030469pt;}
.h6_c02426{height:41.770312pt;}
.h2_c02426{height:48.294844pt;}
.h5_c02426{height:57.473437pt;}
.h1_c02426{height:59.017500pt;}
.h0_c02426{height:1122.666667pt;}
.w1_c02426{width:793.333333pt;}
.w0_c02426{width:793.626667pt;}
.x0_c02426{left:0.000000pt;}
.x1_c02426{left:113.440000pt;}
.x2_c02426{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19590f8f193ec6d844836b55.woff2')format("woff");}.ff1_c02427{font-family:ff1_c02427;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02427{font-family:ff2_c02427;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02427;src:url('chunks/assets/font_aaa8639b1b87bd1801313717.woff2')format("woff");}.ff3_c02427{font-family:ff3_c02427;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02427;src:url('chunks/assets/font_e39f283628cc27a316bcba37.woff2')format("woff");}.ff4_c02427{font-family:ff4_c02427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c02427{letter-spacing:-0.144000px;}
.ls10_c02427{letter-spacing:-0.021600px;}
.ls13_c02427{letter-spacing:-0.014400px;}
.ls11_c02427{letter-spacing:-0.007200px;}
.lse_c02427{letter-spacing:0.000000px;}
.ls7_c02427{letter-spacing:0.007200px;}
.ls2_c02427{letter-spacing:0.013176px;}
.lsa_c02427{letter-spacing:0.014400px;}
.ls6_c02427{letter-spacing:0.021600px;}
.ls0_c02427{letter-spacing:0.026352px;}
.lsb_c02427{letter-spacing:0.028800px;}
.ls8_c02427{letter-spacing:0.036000px;}
.ls3_c02427{letter-spacing:0.043200px;}
.ls5_c02427{letter-spacing:0.050400px;}
.ls1_c02427{letter-spacing:0.052704px;}
.ls9_c02427{letter-spacing:0.057600px;}
.lsd_c02427{letter-spacing:0.064800px;}
.ls4_c02427{letter-spacing:0.079200px;}
.lsf_c02427{letter-spacing:0.092232px;}
.lsc_c02427{letter-spacing:0.115200px;}
.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;}
}
.ws2d_c02427{word-spacing:-0.230400px;}
.ws20_c02427{word-spacing:-0.208800px;}
.wsf_c02427{word-spacing:-0.172800px;}
.ws0_c02427{word-spacing:-0.158112px;}
.ws16_c02427{word-spacing:-0.122400px;}
.ws28_c02427{word-spacing:-0.093600px;}
.ws17_c02427{word-spacing:-0.057600px;}
.wse_c02427{word-spacing:-0.043200px;}
.ws10_c02427{word-spacing:-0.036000px;}
.wsd_c02427{word-spacing:-0.021600px;}
.ws1b_c02427{word-spacing:-0.014400px;}
.ws5_c02427{word-spacing:-0.007200px;}
.ws3_c02427{word-spacing:0.000000px;}
.wsc_c02427{word-spacing:0.007200px;}
.ws9_c02427{word-spacing:0.021600px;}
.ws2_c02427{word-spacing:0.039528px;}
.ws1_c02427{word-spacing:0.065880px;}
.ws11_c02427{word-spacing:0.612000px;}
.ws12_c02427{word-spacing:0.734400px;}
.ws8_c02427{word-spacing:1.720800px;}
.ws6_c02427{word-spacing:1.756800px;}
.ws7_c02427{word-spacing:1.800000px;}
.ws25_c02427{word-spacing:3.038400px;}
.ws26_c02427{word-spacing:3.110400px;}
.ws27_c02427{word-spacing:3.124800px;}
.ws2a_c02427{word-spacing:4.586400px;}
.ws29_c02427{word-spacing:4.615200px;}
.ws1c_c02427{word-spacing:5.299200px;}
.ws1d_c02427{word-spacing:5.364000px;}
.ws14_c02427{word-spacing:6.069600px;}
.ws15_c02427{word-spacing:6.098400px;}
.ws22_c02427{word-spacing:9.259200px;}
.ws21_c02427{word-spacing:9.324000px;}
.ws1e_c02427{word-spacing:9.979200px;}
.ws1f_c02427{word-spacing:10.036800px;}
.ws13_c02427{word-spacing:11.383200px;}
.ws2b_c02427{word-spacing:17.186400px;}
.ws2c_c02427{word-spacing:17.208000px;}
.ws24_c02427{word-spacing:17.251200px;}
.ws23_c02427{word-spacing:17.265600px;}
.ws1a_c02427{word-spacing:20.649600px;}
.ws18_c02427{word-spacing:20.872800px;}
.ws19_c02427{word-spacing:20.894400px;}
.ws4_c02427{word-spacing:29.916108px;}
.wsb_c02427{word-spacing:37.749600px;}
.wsa_c02427{word-spacing:37.800000px;}
._0_c02427{margin-left:-1.346400px;}
.fc0_c02427{color:rgb(0,0,0);}
.fs1_c02427{font-size:11.880000px;}
.fs0_c02427{font-size:65.880000px;}
.fs2_c02427{font-size:72.000000px;}
.y0_c02427{bottom:0.000000px;}
.y3_c02427{bottom:75.720882px;}
.y2_c02427{bottom:113.880225px;}
.y2e_c02427{bottom:137.280612px;}
.y2d_c02427{bottom:174.091062px;}
.y2c_c02427{bottom:210.990450px;}
.y2b_c02427{bottom:234.030600px;}
.y2a_c02427{bottom:257.880600px;}
.y29_c02427{bottom:281.640600px;}
.y28_c02427{bottom:305.490600px;}
.y27_c02427{bottom:329.250600px;}
.y26_c02427{bottom:353.100600px;}
.y25_c02427{bottom:376.860600px;}
.y24_c02427{bottom:400.710600px;}
.y23_c02427{bottom:424.470600px;}
.y22_c02427{bottom:448.320600px;}
.y21_c02427{bottom:472.080600px;}
.y20_c02427{bottom:495.930600px;}
.y1f_c02427{bottom:519.690600px;}
.y1e_c02427{bottom:543.540600px;}
.y1d_c02427{bottom:567.300600px;}
.y1c_c02427{bottom:591.150600px;}
.y1b_c02427{bottom:614.910600px;}
.y1a_c02427{bottom:638.490600px;}
.y19_c02427{bottom:662.520600px;}
.y18_c02427{bottom:686.280600px;}
.y17_c02427{bottom:710.130600px;}
.y16_c02427{bottom:733.890600px;}
.y15_c02427{bottom:757.740600px;}
.y14_c02427{bottom:781.500600px;}
.y13_c02427{bottom:805.170600px;}
.y12_c02427{bottom:828.930600px;}
.y11_c02427{bottom:852.960450px;}
.y10_c02427{bottom:876.720450px;}
.yf_c02427{bottom:900.570450px;}
.ye_c02427{bottom:924.330450px;}
.yd_c02427{bottom:948.180450px;}
.yc_c02427{bottom:971.940450px;}
.yb_c02427{bottom:995.790450px;}
.ya_c02427{bottom:1019.550450px;}
.y9_c02427{bottom:1043.220450px;}
.y8_c02427{bottom:1066.980450px;}
.y7_c02427{bottom:1090.830450px;}
.y6_c02427{bottom:1114.860450px;}
.y5_c02427{bottom:1136.730450px;}
.y4_c02427{bottom:1154.010450px;}
.y1_c02427{bottom:1194.600450px;}
.h4_c02427{height:11.659570px;}
.h3_c02427{height:43.909277px;}
.h2_c02427{height:54.331699px;}
.h7_c02427{height:64.657617px;}
.h1_c02427{height:66.394687px;}
.h6_c02427{height:70.664062px;}
.h5_c02427{height:72.562500px;}
.h0_c02427{height:1263.000000px;}
.w1_c02427{width:892.500000px;}
.w0_c02427{width:892.830000px;}
.x0_c02427{left:0.000000px;}
.x1_c02427{left:127.620000px;}
.x2_c02427{left:438.120675px;}
@media print{
.v0_c02427{vertical-align:0.000000pt;}
.ls12_c02427{letter-spacing:-0.128000pt;}
.ls10_c02427{letter-spacing:-0.019200pt;}
.ls13_c02427{letter-spacing:-0.012800pt;}
.ls11_c02427{letter-spacing:-0.006400pt;}
.lse_c02427{letter-spacing:0.000000pt;}
.ls7_c02427{letter-spacing:0.006400pt;}
.ls2_c02427{letter-spacing:0.011712pt;}
.lsa_c02427{letter-spacing:0.012800pt;}
.ls6_c02427{letter-spacing:0.019200pt;}
.ls0_c02427{letter-spacing:0.023424pt;}
.lsb_c02427{letter-spacing:0.025600pt;}
.ls8_c02427{letter-spacing:0.032000pt;}
.ls3_c02427{letter-spacing:0.038400pt;}
.ls5_c02427{letter-spacing:0.044800pt;}
.ls1_c02427{letter-spacing:0.046848pt;}
.ls9_c02427{letter-spacing:0.051200pt;}
.lsd_c02427{letter-spacing:0.057600pt;}
.ls4_c02427{letter-spacing:0.070400pt;}
.lsf_c02427{letter-spacing:0.081984pt;}
.lsc_c02427{letter-spacing:0.102400pt;}
.ws2d_c02427{word-spacing:-0.204800pt;}
.ws20_c02427{word-spacing:-0.185600pt;}
.wsf_c02427{word-spacing:-0.153600pt;}
.ws0_c02427{word-spacing:-0.140544pt;}
.ws16_c02427{word-spacing:-0.108800pt;}
.ws28_c02427{word-spacing:-0.083200pt;}
.ws17_c02427{word-spacing:-0.051200pt;}
.wse_c02427{word-spacing:-0.038400pt;}
.ws10_c02427{word-spacing:-0.032000pt;}
.wsd_c02427{word-spacing:-0.019200pt;}
.ws1b_c02427{word-spacing:-0.012800pt;}
.ws5_c02427{word-spacing:-0.006400pt;}
.ws3_c02427{word-spacing:0.000000pt;}
.wsc_c02427{word-spacing:0.006400pt;}
.ws9_c02427{word-spacing:0.019200pt;}
.ws2_c02427{word-spacing:0.035136pt;}
.ws1_c02427{word-spacing:0.058560pt;}
.ws11_c02427{word-spacing:0.544000pt;}
.ws12_c02427{word-spacing:0.652800pt;}
.ws8_c02427{word-spacing:1.529600pt;}
.ws6_c02427{word-spacing:1.561600pt;}
.ws7_c02427{word-spacing:1.600000pt;}
.ws25_c02427{word-spacing:2.700800pt;}
.ws26_c02427{word-spacing:2.764800pt;}
.ws27_c02427{word-spacing:2.777600pt;}
.ws2a_c02427{word-spacing:4.076800pt;}
.ws29_c02427{word-spacing:4.102400pt;}
.ws1c_c02427{word-spacing:4.710400pt;}
.ws1d_c02427{word-spacing:4.768000pt;}
.ws14_c02427{word-spacing:5.395200pt;}
.ws15_c02427{word-spacing:5.420800pt;}
.ws22_c02427{word-spacing:8.230400pt;}
.ws21_c02427{word-spacing:8.288000pt;}
.ws1e_c02427{word-spacing:8.870400pt;}
.ws1f_c02427{word-spacing:8.921600pt;}
.ws13_c02427{word-spacing:10.118400pt;}
.ws2b_c02427{word-spacing:15.276800pt;}
.ws2c_c02427{word-spacing:15.296000pt;}
.ws24_c02427{word-spacing:15.334400pt;}
.ws23_c02427{word-spacing:15.347200pt;}
.ws1a_c02427{word-spacing:18.355200pt;}
.ws18_c02427{word-spacing:18.553600pt;}
.ws19_c02427{word-spacing:18.572800pt;}
.ws4_c02427{word-spacing:26.592096pt;}
.wsb_c02427{word-spacing:33.555200pt;}
.wsa_c02427{word-spacing:33.600000pt;}
._0_c02427{margin-left:-1.196800pt;}
.fs1_c02427{font-size:10.560000pt;}
.fs0_c02427{font-size:58.560000pt;}
.fs2_c02427{font-size:64.000000pt;}
.y0_c02427{bottom:0.000000pt;}
.y3_c02427{bottom:67.307451pt;}
.y2_c02427{bottom:101.226867pt;}
.y2e_c02427{bottom:122.027211pt;}
.y2d_c02427{bottom:154.747611pt;}
.y2c_c02427{bottom:187.547067pt;}
.y2b_c02427{bottom:208.027200pt;}
.y2a_c02427{bottom:229.227200pt;}
.y29_c02427{bottom:250.347200pt;}
.y28_c02427{bottom:271.547200pt;}
.y27_c02427{bottom:292.667200pt;}
.y26_c02427{bottom:313.867200pt;}
.y25_c02427{bottom:334.987200pt;}
.y24_c02427{bottom:356.187200pt;}
.y23_c02427{bottom:377.307200pt;}
.y22_c02427{bottom:398.507200pt;}
.y21_c02427{bottom:419.627200pt;}
.y20_c02427{bottom:440.827200pt;}
.y1f_c02427{bottom:461.947200pt;}
.y1e_c02427{bottom:483.147200pt;}
.y1d_c02427{bottom:504.267200pt;}
.y1c_c02427{bottom:525.467200pt;}
.y1b_c02427{bottom:546.587200pt;}
.y1a_c02427{bottom:567.547200pt;}
.y19_c02427{bottom:588.907200pt;}
.y18_c02427{bottom:610.027200pt;}
.y17_c02427{bottom:631.227200pt;}
.y16_c02427{bottom:652.347200pt;}
.y15_c02427{bottom:673.547200pt;}
.y14_c02427{bottom:694.667200pt;}
.y13_c02427{bottom:715.707200pt;}
.y12_c02427{bottom:736.827200pt;}
.y11_c02427{bottom:758.187067pt;}
.y10_c02427{bottom:779.307067pt;}
.yf_c02427{bottom:800.507067pt;}
.ye_c02427{bottom:821.627067pt;}
.yd_c02427{bottom:842.827067pt;}
.yc_c02427{bottom:863.947067pt;}
.yb_c02427{bottom:885.147067pt;}
.ya_c02427{bottom:906.267067pt;}
.y9_c02427{bottom:927.307067pt;}
.y8_c02427{bottom:948.427067pt;}
.y7_c02427{bottom:969.627067pt;}
.y6_c02427{bottom:990.987067pt;}
.y5_c02427{bottom:1010.427067pt;}
.y4_c02427{bottom:1025.787067pt;}
.y1_c02427{bottom:1061.867067pt;}
.h4_c02427{height:10.364062pt;}
.h3_c02427{height:39.030469pt;}
.h2_c02427{height:48.294844pt;}
.h7_c02427{height:57.473437pt;}
.h1_c02427{height:59.017500pt;}
.h6_c02427{height:62.812500pt;}
.h5_c02427{height:64.500000pt;}
.h0_c02427{height:1122.666667pt;}
.w1_c02427{width:793.333333pt;}
.w0_c02427{width:793.626667pt;}
.x0_c02427{left:0.000000pt;}
.x1_c02427{left:113.440000pt;}
.x2_c02427{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ed1a9f30268e4e193c83b49.woff2')format("woff");}.ff1_c02428{font-family:ff1_c02428;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02428{font-family:ff2_c02428;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02428;src:url('chunks/assets/font_1dcb82c42b8da9ef27b3e525.woff2')format("woff");}.ff3_c02428{font-family:ff3_c02428;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02428;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c02428{font-family:ff4_c02428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c02428{letter-spacing:0.000000px;}
.ls0_c02428{letter-spacing:0.026352px;}
.ls1_c02428{letter-spacing:0.052704px;}
.ls3_c02428{letter-spacing:0.092232px;}
.sc__c02428{text-shadow:none;}
.sc0_c02428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02428{-webkit-text-stroke:0px transparent;}
.sc0_c02428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02428{word-spacing:-0.158112px;}
.ws3_c02428{word-spacing:0.000000px;}
.ws2_c02428{word-spacing:0.039528px;}
.ws1_c02428{word-spacing:0.065880px;}
.fc0_c02428{color:rgb(0,0,0);}
.fs0_c02428{font-size:65.880000px;}
.y0_c02428{bottom:0.000000px;}
.y3_c02428{bottom:75.720882px;}
.y2_c02428{bottom:113.880225px;}
.y8_c02428{bottom:994.259370px;}
.y7_c02428{bottom:1031.069820px;}
.y6_c02428{bottom:1067.880270px;}
.y5_c02428{bottom:1104.690720px;}
.y4_c02428{bottom:1141.501170px;}
.y1_c02428{bottom:1194.600450px;}
.h3_c02428{height:43.909277px;}
.h2_c02428{height:54.331699px;}
.h4_c02428{height:64.657617px;}
.h1_c02428{height:66.394687px;}
.h0_c02428{height:1263.000000px;}
.w1_c02428{width:892.500000px;}
.w0_c02428{width:892.830000px;}
.x0_c02428{left:0.000000px;}
.x1_c02428{left:127.620000px;}
.x2_c02428{left:438.120675px;}
@media print{
.v0_c02428{vertical-align:0.000000pt;}
.ls2_c02428{letter-spacing:0.000000pt;}
.ls0_c02428{letter-spacing:0.023424pt;}
.ls1_c02428{letter-spacing:0.046848pt;}
.ls3_c02428{letter-spacing:0.081984pt;}
.ws0_c02428{word-spacing:-0.140544pt;}
.ws3_c02428{word-spacing:0.000000pt;}
.ws2_c02428{word-spacing:0.035136pt;}
.ws1_c02428{word-spacing:0.058560pt;}
.fs0_c02428{font-size:58.560000pt;}
.y0_c02428{bottom:0.000000pt;}
.y3_c02428{bottom:67.307451pt;}
.y2_c02428{bottom:101.226867pt;}
.y8_c02428{bottom:883.786107pt;}
.y7_c02428{bottom:916.506507pt;}
.y6_c02428{bottom:949.226907pt;}
.y5_c02428{bottom:981.947307pt;}
.y4_c02428{bottom:1014.667707pt;}
.y1_c02428{bottom:1061.867067pt;}
.h3_c02428{height:39.030469pt;}
.h2_c02428{height:48.294844pt;}
.h4_c02428{height:57.473437pt;}
.h1_c02428{height:59.017500pt;}
.h0_c02428{height:1122.666667pt;}
.w1_c02428{width:793.333333pt;}
.w0_c02428{width:793.626667pt;}
.x0_c02428{left:0.000000pt;}
.x1_c02428{left:113.440000pt;}
.x2_c02428{left:389.440600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eec2d1bea8da5463237fa855.woff2')format("woff");}.ff1_c02429{font-family:ff1_c02429;line-height:1.311035;font-style:normal;font-weight:normal;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_81a874cdca199c3ad4da9705.woff2')format("woff");}.ff2_c02429{font-family:ff2_c02429;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02429{font-family:ff3_c02429;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_c02429;src:url('chunks/assets/font_5cbde7ef7c59020997788373.woff2')format("woff");}.ff4_c02429{font-family:ff4_c02429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4_c02429{vertical-align:-1.080000px;}
.v0_c02429{vertical-align:0.000000px;}
.v1_c02429{vertical-align:44.640000px;}
.v2_c02429{vertical-align:55.081152px;}
.v3_c02429{vertical-align:77.400000px;}
.ls26_c02429{letter-spacing:-0.144000px;}
.ls25_c02429{letter-spacing:-0.090972px;}
.ls24_c02429{letter-spacing:-0.019224px;}
.ls23_c02429{letter-spacing:-0.014400px;}
.ls20_c02429{letter-spacing:0.000000px;}
.ls2_c02429{letter-spacing:0.007200px;}
.ls1_c02429{letter-spacing:0.014400px;}
.ls4_c02429{letter-spacing:0.021600px;}
.ls3_c02429{letter-spacing:0.028800px;}
.ls0_c02429{letter-spacing:0.032940px;}
.ls1b_c02429{letter-spacing:0.043092px;}
.ls21_c02429{letter-spacing:0.046116px;}
.ls6_c02429{letter-spacing:0.047880px;}
.ls1a_c02429{letter-spacing:0.052668px;}
.ls1c_c02429{letter-spacing:0.057456px;}
.ls19_c02429{letter-spacing:0.062244px;}
.lsf_c02429{letter-spacing:0.067032px;}
.ls13_c02429{letter-spacing:0.076608px;}
.ls1f_c02429{letter-spacing:0.081396px;}
.ls7_c02429{letter-spacing:0.086184px;}
.ls10_c02429{letter-spacing:0.090972px;}
.ls22_c02429{letter-spacing:0.092232px;}
.ls11_c02429{letter-spacing:0.095760px;}
.ls1d_c02429{letter-spacing:0.100548px;}
.ls16_c02429{letter-spacing:0.105336px;}
.ls18_c02429{letter-spacing:0.110124px;}
.lsc_c02429{letter-spacing:0.114912px;}
.ls12_c02429{letter-spacing:0.119700px;}
.ls5_c02429{letter-spacing:0.124488px;}
.lsd_c02429{letter-spacing:0.134064px;}
.ls9_c02429{letter-spacing:0.143640px;}
.lsb_c02429{letter-spacing:0.162792px;}
.ls15_c02429{letter-spacing:0.181944px;}
.ls17_c02429{letter-spacing:119.430000px;}
.ls8_c02429{letter-spacing:119.790000px;}
.lse_c02429{letter-spacing:142.110000px;}
.lsa_c02429{letter-spacing:142.470000px;}
.ls14_c02429{letter-spacing:157.950000px;}
.ls1e_c02429{letter-spacing:158.310000px;}
.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;}
}
.ws15_c02429{word-spacing:-0.225036px;}
.ws10_c02429{word-spacing:-0.215460px;}
.ws19_c02429{word-spacing:-0.210672px;}
.wsd_c02429{word-spacing:-0.208800px;}
.ws14_c02429{word-spacing:-0.205884px;}
.ws20_c02429{word-spacing:-0.201096px;}
.ws1c_c02429{word-spacing:-0.196308px;}
.ws23_c02429{word-spacing:-0.191520px;}
.ws18_c02429{word-spacing:-0.181944px;}
.ws24_c02429{word-spacing:-0.177156px;}
.ws25_c02429{word-spacing:-0.172368px;}
.ws1a_c02429{word-spacing:-0.167580px;}
.ws0_c02429{word-spacing:-0.158112px;}
.ws1d_c02429{word-spacing:-0.153216px;}
.ws22_c02429{word-spacing:-0.148428px;}
.ws1f_c02429{word-spacing:-0.143640px;}
.ws11_c02429{word-spacing:-0.138852px;}
.ws21_c02429{word-spacing:-0.134064px;}
.wsf_c02429{word-spacing:-0.124956px;}
.ws5_c02429{word-spacing:-0.086400px;}
.wse_c02429{word-spacing:-0.079200px;}
.ws6_c02429{word-spacing:-0.064800px;}
.ws7_c02429{word-spacing:-0.028800px;}
.wsc_c02429{word-spacing:-0.014400px;}
.ws1_c02429{word-spacing:0.000000px;}
.ws4_c02429{word-spacing:0.014400px;}
.ws3_c02429{word-spacing:0.046116px;}
.ws2_c02429{word-spacing:0.059292px;}
.ws16_c02429{word-spacing:0.201096px;}
.wsa_c02429{word-spacing:7.891200px;}
.wsb_c02429{word-spacing:7.920000px;}
.ws9_c02429{word-spacing:8.136000px;}
.ws8_c02429{word-spacing:8.280000px;}
.ws12_c02429{word-spacing:124.325208px;}
.ws13_c02429{word-spacing:146.986812px;}
.ws1e_c02429{word-spacing:148.088052px;}
.ws17_c02429{word-spacing:170.749656px;}
.ws1b_c02429{word-spacing:186.928308px;}
._1c_c02429{margin-left:-77.038920px;}
._23_c02429{margin-left:-59.876640px;}
._1b_c02429{margin-left:-52.716348px;}
._10_c02429{margin-left:-37.469952px;}
._17_c02429{margin-left:-35.964288px;}
._30_c02429{margin-left:-16.421544px;}
._d_c02429{margin-left:-14.410044px;}
._29_c02429{margin-left:-12.996180px;}
._1_c02429{margin-left:-1.008000px;}
._2c_c02429{width:1.244268px;}
._2d_c02429{width:29.520000px;}
._4_c02429{width:79.370676px;}
._c_c02429{width:80.782704px;}
._5_c02429{width:85.853628px;}
._3_c02429{width:91.254492px;}
._6_c02429{width:92.304000px;}
._9_c02429{width:97.363368px;}
._a_c02429{width:103.395744px;}
._2f_c02429{width:113.670000px;}
._f_c02429{width:119.097288px;}
._1a_c02429{width:120.321504px;}
._8_c02429{width:125.803368px;}
._13_c02429{width:126.804564px;}
._14_c02429{width:133.479756px;}
._b_c02429{width:141.710328px;}
._1e_c02429{width:142.874208px;}
._20_c02429{width:145.903572px;}
._2a_c02429{width:150.699924px;}
._15_c02429{width:157.950000px;}
._16_c02429{width:159.030000px;}
._2_c02429{width:188.163144px;}
._33_c02429{width:190.129104px;}
._26_c02429{width:192.300336px;}
._0_c02429{width:194.400000px;}
._34_c02429{width:221.452200px;}
._27_c02429{width:237.882348px;}
._18_c02429{width:243.998892px;}
._12_c02429{width:249.215544px;}
._25_c02429{width:252.724896px;}
._36_c02429{width:267.026652px;}
._37_c02429{width:306.386532px;}
._21_c02429{width:326.239848px;}
._1f_c02429{width:342.085860px;}
._22_c02429{width:353.636784px;}
._32_c02429{width:424.969632px;}
._28_c02429{width:435.534228px;}
._7_c02429{width:438.452640px;}
._19_c02429{width:450.125784px;}
._2e_c02429{width:555.877116px;}
._2b_c02429{width:582.431364px;}
._24_c02429{width:623.203704px;}
._31_c02429{width:630.215604px;}
._1d_c02429{width:636.351552px;}
._11_c02429{width:643.192308px;}
._35_c02429{width:665.651592px;}
._e_c02429{width:693.782316px;}
.fc0_c02429{color:rgb(0,0,0);}
.fs3_c02429{font-size:47.880000px;}
.fs1_c02429{font-size:65.880000px;}
.fs0_c02429{font-size:72.000000px;}
.fs2_c02429{font-size:96.120000px;}
.y0_c02429{bottom:0.000000px;}
.y3_c02429{bottom:75.450162px;}
.y2_c02429{bottom:113.609505px;}
.y2b_c02429{bottom:144.390000px;}
.y2a_c02429{bottom:158.970000px;}
.y29_c02429{bottom:173.460000px;}
.y28_c02429{bottom:188.040000px;}
.y27_c02429{bottom:202.620000px;}
.y26_c02429{bottom:217.110000px;}
.y25_c02429{bottom:231.690000px;}
.y24_c02429{bottom:246.180000px;}
.y23_c02429{bottom:260.760000px;}
.y22_c02429{bottom:275.340000px;}
.y21_c02429{bottom:289.830000px;}
.y20_c02429{bottom:304.410000px;}
.y1f_c02429{bottom:318.990000px;}
.y1e_c02429{bottom:333.480000px;}
.y1d_c02429{bottom:348.060000px;}
.y1c_c02429{bottom:362.640000px;}
.y1b_c02429{bottom:377.130000px;}
.y1a_c02429{bottom:391.710000px;}
.y19_c02429{bottom:406.290000px;}
.y18_c02429{bottom:420.780000px;}
.y17_c02429{bottom:435.360000px;}
.y16_c02429{bottom:449.940000px;}
.y15_c02429{bottom:464.430000px;}
.y14_c02429{bottom:479.010000px;}
.y13_c02429{bottom:493.590000px;}
.y12_c02429{bottom:508.080000px;}
.y11_c02429{bottom:522.660000px;}
.y10_c02429{bottom:537.240000px;}
.yf_c02429{bottom:551.730000px;}
.ye_c02429{bottom:567.390000px;}
.yc_c02429{bottom:572.969712px;}
.yd_c02429{bottom:572.970000px;}
.yb_c02429{bottom:575.580000px;}
.ya_c02429{bottom:605.640000px;}
.y9_c02429{bottom:629.400000px;}
.y8_c02429{bottom:653.430000px;}
.y7_c02429{bottom:677.190000px;}
.y6_c02429{bottom:701.040000px;}
.y5_c02429{bottom:724.620000px;}
.y4_c02429{bottom:748.380000px;}
.y1_c02429{bottom:824.430000px;}
.h4_c02429{height:43.909277px;}
.ha_c02429{height:47.174063px;}
.h3_c02429{height:54.331699px;}
.h5_c02429{height:70.664062px;}
.h2_c02429{height:72.562500px;}
.h6_c02429{height:96.870938px;}
.h8_c02429{height:103.334062px;}
.h7_c02429{height:103.335215px;}
.h9_c02429{height:125.654062px;}
.h1_c02429{height:892.500000px;}
.h0_c02429{height:892.830000px;}
.w0_c02429{width:1263.000000px;}
.x0_c02429{left:0.000000px;}
.x8_c02429{left:61.185750px;}
.x3_c02429{left:106.276938px;}
.x1_c02429{left:109.605900px;}
.x5_c02429{left:167.925750px;}
.x9_c02429{left:396.525516px;}
.xa_c02429{left:439.005849px;}
.x6_c02429{left:458.445750px;}
.xb_c02429{left:481.575957px;}
.xc_c02429{left:524.055093px;}
.xd_c02429{left:566.535426px;}
.x4_c02429{left:591.195750px;}
.xe_c02429{left:609.105534px;}
.x2_c02429{left:623.056128px;}
.x7_c02429{left:631.425750px;}
.xf_c02429{left:651.585867px;}
.x10_c02429{left:694.155975px;}
.x11_c02429{left:736.725750px;}
.x12_c02429{left:779.206083px;}
.x13_c02429{left:821.776191px;}
.x14_c02429{left:864.256524px;}
.x15_c02429{left:906.826632px;}
.x16_c02429{left:949.306965px;}
.x17_c02429{left:991.787298px;}
.x18_c02429{left:1034.357406px;}
.x19_c02429{left:1076.837739px;}
.x1a_c02429{left:1120.935750px;}
.x1b_c02429{left:1163.505750px;}
.x1c_c02429{left:1202.925750px;}
@media print{
.v4_c02429{vertical-align:-0.960000pt;}
.v0_c02429{vertical-align:0.000000pt;}
.v1_c02429{vertical-align:39.680000pt;}
.v2_c02429{vertical-align:48.961024pt;}
.v3_c02429{vertical-align:68.800000pt;}
.ls26_c02429{letter-spacing:-0.128000pt;}
.ls25_c02429{letter-spacing:-0.080864pt;}
.ls24_c02429{letter-spacing:-0.017088pt;}
.ls23_c02429{letter-spacing:-0.012800pt;}
.ls20_c02429{letter-spacing:0.000000pt;}
.ls2_c02429{letter-spacing:0.006400pt;}
.ls1_c02429{letter-spacing:0.012800pt;}
.ls4_c02429{letter-spacing:0.019200pt;}
.ls3_c02429{letter-spacing:0.025600pt;}
.ls0_c02429{letter-spacing:0.029280pt;}
.ls1b_c02429{letter-spacing:0.038304pt;}
.ls21_c02429{letter-spacing:0.040992pt;}
.ls6_c02429{letter-spacing:0.042560pt;}
.ls1a_c02429{letter-spacing:0.046816pt;}
.ls1c_c02429{letter-spacing:0.051072pt;}
.ls19_c02429{letter-spacing:0.055328pt;}
.lsf_c02429{letter-spacing:0.059584pt;}
.ls13_c02429{letter-spacing:0.068096pt;}
.ls1f_c02429{letter-spacing:0.072352pt;}
.ls7_c02429{letter-spacing:0.076608pt;}
.ls10_c02429{letter-spacing:0.080864pt;}
.ls22_c02429{letter-spacing:0.081984pt;}
.ls11_c02429{letter-spacing:0.085120pt;}
.ls1d_c02429{letter-spacing:0.089376pt;}
.ls16_c02429{letter-spacing:0.093632pt;}
.ls18_c02429{letter-spacing:0.097888pt;}
.lsc_c02429{letter-spacing:0.102144pt;}
.ls12_c02429{letter-spacing:0.106400pt;}
.ls5_c02429{letter-spacing:0.110656pt;}
.lsd_c02429{letter-spacing:0.119168pt;}
.ls9_c02429{letter-spacing:0.127680pt;}
.lsb_c02429{letter-spacing:0.144704pt;}
.ls15_c02429{letter-spacing:0.161728pt;}
.ls17_c02429{letter-spacing:106.160000pt;}
.ls8_c02429{letter-spacing:106.480000pt;}
.lse_c02429{letter-spacing:126.320000pt;}
.lsa_c02429{letter-spacing:126.640000pt;}
.ls14_c02429{letter-spacing:140.400000pt;}
.ls1e_c02429{letter-spacing:140.720000pt;}
.ws15_c02429{word-spacing:-0.200032pt;}
.ws10_c02429{word-spacing:-0.191520pt;}
.ws19_c02429{word-spacing:-0.187264pt;}
.wsd_c02429{word-spacing:-0.185600pt;}
.ws14_c02429{word-spacing:-0.183008pt;}
.ws20_c02429{word-spacing:-0.178752pt;}
.ws1c_c02429{word-spacing:-0.174496pt;}
.ws23_c02429{word-spacing:-0.170240pt;}
.ws18_c02429{word-spacing:-0.161728pt;}
.ws24_c02429{word-spacing:-0.157472pt;}
.ws25_c02429{word-spacing:-0.153216pt;}
.ws1a_c02429{word-spacing:-0.148960pt;}
.ws0_c02429{word-spacing:-0.140544pt;}
.ws1d_c02429{word-spacing:-0.136192pt;}
.ws22_c02429{word-spacing:-0.131936pt;}
.ws1f_c02429{word-spacing:-0.127680pt;}
.ws11_c02429{word-spacing:-0.123424pt;}
.ws21_c02429{word-spacing:-0.119168pt;}
.wsf_c02429{word-spacing:-0.111072pt;}
.ws5_c02429{word-spacing:-0.076800pt;}
.wse_c02429{word-spacing:-0.070400pt;}
.ws6_c02429{word-spacing:-0.057600pt;}
.ws7_c02429{word-spacing:-0.025600pt;}
.wsc_c02429{word-spacing:-0.012800pt;}
.ws1_c02429{word-spacing:0.000000pt;}
.ws4_c02429{word-spacing:0.012800pt;}
.ws3_c02429{word-spacing:0.040992pt;}
.ws2_c02429{word-spacing:0.052704pt;}
.ws16_c02429{word-spacing:0.178752pt;}
.wsa_c02429{word-spacing:7.014400pt;}
.wsb_c02429{word-spacing:7.040000pt;}
.ws9_c02429{word-spacing:7.232000pt;}
.ws8_c02429{word-spacing:7.360000pt;}
.ws12_c02429{word-spacing:110.511296pt;}
.ws13_c02429{word-spacing:130.654944pt;}
.ws1e_c02429{word-spacing:131.633824pt;}
.ws17_c02429{word-spacing:151.777472pt;}
.ws1b_c02429{word-spacing:166.158496pt;}
._1c_c02429{margin-left:-68.479040pt;}
._23_c02429{margin-left:-53.223680pt;}
._1b_c02429{margin-left:-46.858976pt;}
._10_c02429{margin-left:-33.306624pt;}
._17_c02429{margin-left:-31.968256pt;}
._30_c02429{margin-left:-14.596928pt;}
._d_c02429{margin-left:-12.808928pt;}
._29_c02429{margin-left:-11.552160pt;}
._1_c02429{margin-left:-0.896000pt;}
._2c_c02429{width:1.106016pt;}
._2d_c02429{width:26.240000pt;}
._4_c02429{width:70.551712pt;}
._c_c02429{width:71.806848pt;}
._5_c02429{width:76.314336pt;}
._3_c02429{width:81.115104pt;}
._6_c02429{width:82.048000pt;}
._9_c02429{width:86.545216pt;}
._a_c02429{width:91.907328pt;}
._2f_c02429{width:101.040000pt;}
._f_c02429{width:105.864256pt;}
._1a_c02429{width:106.952448pt;}
._8_c02429{width:111.825216pt;}
._13_c02429{width:112.715168pt;}
._14_c02429{width:118.648672pt;}
._b_c02429{width:125.964736pt;}
._1e_c02429{width:126.999296pt;}
._20_c02429{width:129.692064pt;}
._2a_c02429{width:133.955488pt;}
._15_c02429{width:140.400000pt;}
._16_c02429{width:141.360000pt;}
._2_c02429{width:167.256128pt;}
._33_c02429{width:169.003648pt;}
._26_c02429{width:170.933632pt;}
._0_c02429{width:172.800000pt;}
._34_c02429{width:196.846400pt;}
._27_c02429{width:211.450976pt;}
._18_c02429{width:216.887904pt;}
._12_c02429{width:221.524928pt;}
._25_c02429{width:224.644352pt;}
._36_c02429{width:237.357024pt;}
._37_c02429{width:272.343584pt;}
._21_c02429{width:289.990976pt;}
._1f_c02429{width:304.076320pt;}
._22_c02429{width:314.343808pt;}
._32_c02429{width:377.750784pt;}
._28_c02429{width:387.141536pt;}
._7_c02429{width:389.735680pt;}
._19_c02429{width:400.111808pt;}
._2e_c02429{width:494.112992pt;}
._2b_c02429{width:517.716768pt;}
._24_c02429{width:553.958848pt;}
._31_c02429{width:560.191648pt;}
._1d_c02429{width:565.645824pt;}
._11_c02429{width:571.726496pt;}
._35_c02429{width:591.690304pt;}
._e_c02429{width:616.695392pt;}
.fs3_c02429{font-size:42.560000pt;}
.fs1_c02429{font-size:58.560000pt;}
.fs0_c02429{font-size:64.000000pt;}
.fs2_c02429{font-size:85.440000pt;}
.y0_c02429{bottom:0.000000pt;}
.y3_c02429{bottom:67.066811pt;}
.y2_c02429{bottom:100.986227pt;}
.y2b_c02429{bottom:128.346667pt;}
.y2a_c02429{bottom:141.306667pt;}
.y29_c02429{bottom:154.186667pt;}
.y28_c02429{bottom:167.146667pt;}
.y27_c02429{bottom:180.106667pt;}
.y26_c02429{bottom:192.986667pt;}
.y25_c02429{bottom:205.946667pt;}
.y24_c02429{bottom:218.826667pt;}
.y23_c02429{bottom:231.786667pt;}
.y22_c02429{bottom:244.746667pt;}
.y21_c02429{bottom:257.626667pt;}
.y20_c02429{bottom:270.586667pt;}
.y1f_c02429{bottom:283.546667pt;}
.y1e_c02429{bottom:296.426667pt;}
.y1d_c02429{bottom:309.386667pt;}
.y1c_c02429{bottom:322.346667pt;}
.y1b_c02429{bottom:335.226667pt;}
.y1a_c02429{bottom:348.186667pt;}
.y19_c02429{bottom:361.146667pt;}
.y18_c02429{bottom:374.026667pt;}
.y17_c02429{bottom:386.986667pt;}
.y16_c02429{bottom:399.946667pt;}
.y15_c02429{bottom:412.826667pt;}
.y14_c02429{bottom:425.786667pt;}
.y13_c02429{bottom:438.746667pt;}
.y12_c02429{bottom:451.626667pt;}
.y11_c02429{bottom:464.586667pt;}
.y10_c02429{bottom:477.546667pt;}
.yf_c02429{bottom:490.426667pt;}
.ye_c02429{bottom:504.346667pt;}
.yc_c02429{bottom:509.306411pt;}
.yd_c02429{bottom:509.306667pt;}
.yb_c02429{bottom:511.626667pt;}
.ya_c02429{bottom:538.346667pt;}
.y9_c02429{bottom:559.466667pt;}
.y8_c02429{bottom:580.826667pt;}
.y7_c02429{bottom:601.946667pt;}
.y6_c02429{bottom:623.146667pt;}
.y5_c02429{bottom:644.106667pt;}
.y4_c02429{bottom:665.226667pt;}
.y1_c02429{bottom:732.826667pt;}
.h4_c02429{height:39.030469pt;}
.ha_c02429{height:41.932500pt;}
.h3_c02429{height:48.294844pt;}
.h5_c02429{height:62.812500pt;}
.h2_c02429{height:64.500000pt;}
.h6_c02429{height:86.107500pt;}
.h8_c02429{height:91.852500pt;}
.h7_c02429{height:91.853524pt;}
.h9_c02429{height:111.692500pt;}
.h1_c02429{height:793.333333pt;}
.h0_c02429{height:793.626667pt;}
.w0_c02429{width:1122.666667pt;}
.x0_c02429{left:0.000000pt;}
.x8_c02429{left:54.387333pt;}
.x3_c02429{left:94.468389pt;}
.x1_c02429{left:97.427467pt;}
.x5_c02429{left:149.267333pt;}
.x9_c02429{left:352.467125pt;}
.xa_c02429{left:390.227421pt;}
.x6_c02429{left:407.507333pt;}
.xb_c02429{left:428.067517pt;}
.xc_c02429{left:465.826749pt;}
.xd_c02429{left:503.587045pt;}
.x4_c02429{left:525.507333pt;}
.xe_c02429{left:541.427141pt;}
.x2_c02429{left:553.827669pt;}
.x7_c02429{left:561.267333pt;}
.xf_c02429{left:579.187437pt;}
.x10_c02429{left:617.027533pt;}
.x11_c02429{left:654.867333pt;}
.x12_c02429{left:692.627629pt;}
.x13_c02429{left:730.467725pt;}
.x14_c02429{left:768.228021pt;}
.x15_c02429{left:806.068117pt;}
.x16_c02429{left:843.828413pt;}
.x17_c02429{left:881.588709pt;}
.x18_c02429{left:919.428805pt;}
.x19_c02429{left:957.189101pt;}
.x1a_c02429{left:996.387333pt;}
.x1b_c02429{left:1034.227333pt;}
.x1c_c02429{left:1069.267333pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c02430 {
      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_c02430 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c02430 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c02430 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_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_21e0cde486303a4973774b00.woff2')format("woff");}.ff1_c02431{font-family:ff1_c02431;line-height:1.311035;font-style:normal;font-weight:normal;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_82e2fdc546ab5f2f39b4c895.woff2')format("woff");}.ff2_c02431{font-family:ff2_c02431;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02431{font-family:ff3_c02431;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_c02431;src:url('chunks/assets/font_bc86f7d3cac5c2ab43895096.woff2')format("woff");}.ff4_c02431{font-family:ff4_c02431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c02431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6_c02431{vertical-align:-12.240000px;}
.v5_c02431{vertical-align:-5.040000px;}
.v4_c02431{vertical-align:-1.080000px;}
.v0_c02431{vertical-align:0.000000px;}
.v7_c02431{vertical-align:8.280000px;}
.v1_c02431{vertical-align:44.640000px;}
.v2_c02431{vertical-align:55.081152px;}
.v3_c02431{vertical-align:77.400000px;}
.ls1a_c02431{letter-spacing:-0.144000px;}
.ls19_c02431{letter-spacing:-0.090972px;}
.ls18_c02431{letter-spacing:-0.019224px;}
.ls15_c02431{letter-spacing:0.000000px;}
.ls0_c02431{letter-spacing:0.032940px;}
.ls6_c02431{letter-spacing:0.033516px;}
.ls1_c02431{letter-spacing:0.038304px;}
.ls14_c02431{letter-spacing:0.039528px;}
.ls16_c02431{letter-spacing:0.046116px;}
.ls7_c02431{letter-spacing:0.047880px;}
.lse_c02431{letter-spacing:0.052668px;}
.lsf_c02431{letter-spacing:0.057456px;}
.lsc_c02431{letter-spacing:0.071820px;}
.lsd_c02431{letter-spacing:0.081396px;}
.lsa_c02431{letter-spacing:0.086184px;}
.ls9_c02431{letter-spacing:0.090972px;}
.ls17_c02431{letter-spacing:0.092232px;}
.ls10_c02431{letter-spacing:0.095760px;}
.ls11_c02431{letter-spacing:0.100548px;}
.ls4_c02431{letter-spacing:0.105336px;}
.ls13_c02431{letter-spacing:0.110124px;}
.ls8_c02431{letter-spacing:0.119700px;}
.lsb_c02431{letter-spacing:0.124488px;}
.ls5_c02431{letter-spacing:0.134064px;}
.ls12_c02431{letter-spacing:0.162792px;}
.ls3_c02431{letter-spacing:0.181944px;}
.ls2_c02431{letter-spacing:157.950000px;}
.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;}
}
.ws7_c02431{word-spacing:-0.225036px;}
.wse_c02431{word-spacing:-0.215460px;}
.wsa_c02431{word-spacing:-0.210672px;}
.ws16_c02431{word-spacing:-0.201096px;}
.ws6_c02431{word-spacing:-0.196308px;}
.ws14_c02431{word-spacing:-0.191520px;}
.ws13_c02431{word-spacing:-0.186732px;}
.wsc_c02431{word-spacing:-0.181944px;}
.wsd_c02431{word-spacing:-0.177156px;}
.ws10_c02431{word-spacing:-0.172368px;}
.wsf_c02431{word-spacing:-0.162792px;}
.ws0_c02431{word-spacing:-0.158112px;}
.ws12_c02431{word-spacing:-0.148428px;}
.ws11_c02431{word-spacing:-0.143640px;}
.ws9_c02431{word-spacing:-0.138852px;}
.ws5_c02431{word-spacing:-0.129276px;}
.ws4_c02431{word-spacing:-0.124956px;}
.ws8_c02431{word-spacing:-0.124488px;}
.ws1_c02431{word-spacing:0.000000px;}
.ws3_c02431{word-spacing:0.046116px;}
.ws19_c02431{word-spacing:0.052704px;}
.ws2_c02431{word-spacing:0.059292px;}
.ws18_c02431{word-spacing:0.092232px;}
.ws17_c02431{word-spacing:0.167580px;}
.ws15_c02431{word-spacing:170.749656px;}
.wsb_c02431{word-spacing:186.928308px;}
._15_c02431{margin-left:-53.280864px;}
._14_c02431{margin-left:-51.948396px;}
._2a_c02431{margin-left:-37.440000px;}
._2b_c02431{margin-left:-36.362916px;}
._21_c02431{margin-left:-15.599088px;}
._a_c02431{margin-left:-1.086876px;}
._6_c02431{width:1.139544px;}
._8_c02431{width:29.400912px;}
._3_c02431{width:79.370676px;}
._4_c02431{width:85.853628px;}
._2_c02431{width:91.254492px;}
._5_c02431{width:92.304000px;}
._35_c02431{width:108.981864px;}
._36_c02431{width:110.066472px;}
._34_c02431{width:111.154392px;}
._1e_c02431{width:118.938600px;}
._13_c02431{width:125.803368px;}
._1f_c02431{width:126.990000px;}
._30_c02431{width:128.361384px;}
._28_c02431{width:132.737832px;}
._9_c02431{width:134.006112px;}
._17_c02431{width:141.643368px;}
._12_c02431{width:142.830000px;}
._e_c02431{width:157.590000px;}
._10_c02431{width:158.670000px;}
._f_c02431{width:159.750000px;}
._2d_c02431{width:164.745396px;}
._26_c02431{width:166.105188px;}
._22_c02431{width:181.905588px;}
._1_c02431{width:188.163144px;}
._23_c02431{width:193.387212px;}
._0_c02431{width:194.400000px;}
._2e_c02431{width:204.160212px;}
._18_c02431{width:267.093684px;}
._2c_c02431{width:279.506268px;}
._c_c02431{width:281.405016px;}
._27_c02431{width:325.497708px;}
._d_c02431{width:328.104468px;}
._31_c02431{width:338.042268px;}
._b_c02431{width:369.690948px;}
._11_c02431{width:393.501672px;}
._7_c02431{width:409.038732px;}
._1d_c02431{width:440.328312px;}
._16_c02431{width:497.495736px;}
._1b_c02431{width:563.423004px;}
._1c_c02431{width:568.311552px;}
._2f_c02431{width:583.877340px;}
._25_c02431{width:633.442716px;}
._29_c02431{width:669.639996px;}
._24_c02431{width:672.163272px;}
._1a_c02431{width:709.974108px;}
._20_c02431{width:796.282596px;}
._19_c02431{width:957.987720px;}
._37_c02431{width:1041.581592px;}
._33_c02431{width:1149.412140px;}
._32_c02431{width:1306.710000px;}
.fc0_c02431{color:rgb(0,0,0);}
.fs3_c02431{font-size:47.880000px;}
.fs1_c02431{font-size:65.880000px;}
.fs0_c02431{font-size:72.000000px;}
.fs2_c02431{font-size:96.120000px;}
.y0_c02431{bottom:0.000000px;}
.y3_c02431{bottom:75.450162px;}
.y2_c02431{bottom:113.609505px;}
.y2c_c02431{bottom:148.799118px;}
.y2b_c02431{bottom:170.669631px;}
.y2a_c02431{bottom:192.449559px;}
.y29_c02431{bottom:214.229487px;}
.y28_c02431{bottom:236.100000px;}
.y27_c02431{bottom:257.880000px;}
.y26_c02431{bottom:275.520000px;}
.y25_c02431{bottom:293.070000px;}
.y24_c02431{bottom:310.980000px;}
.y23_c02431{bottom:325.560000px;}
.y22_c02431{bottom:340.140000px;}
.y21_c02431{bottom:354.630000px;}
.y20_c02431{bottom:369.210000px;}
.y1f_c02431{bottom:383.700000px;}
.y1e_c02431{bottom:398.280000px;}
.y1d_c02431{bottom:412.860000px;}
.y1c_c02431{bottom:427.350000px;}
.y1b_c02431{bottom:441.930000px;}
.y1a_c02431{bottom:456.510000px;}
.y19_c02431{bottom:471.000000px;}
.y18_c02431{bottom:485.580000px;}
.y17_c02431{bottom:500.160000px;}
.y16_c02431{bottom:514.650000px;}
.y15_c02431{bottom:529.230000px;}
.y14_c02431{bottom:543.810000px;}
.y13_c02431{bottom:558.300000px;}
.y12_c02431{bottom:572.880000px;}
.y11_c02431{bottom:587.460000px;}
.y10_c02431{bottom:601.950000px;}
.yf_c02431{bottom:616.530000px;}
.ye_c02431{bottom:631.110000px;}
.yd_c02431{bottom:645.600000px;}
.yc_c02431{bottom:660.180000px;}
.yb_c02431{bottom:674.760000px;}
.ya_c02431{bottom:689.250000px;}
.y9_c02431{bottom:703.830000px;}
.y8_c02431{bottom:718.410000px;}
.y7_c02431{bottom:733.980000px;}
.y5_c02431{bottom:739.559712px;}
.y6_c02431{bottom:739.560000px;}
.y4_c02431{bottom:742.170000px;}
.y1_c02431{bottom:824.430000px;}
.h4_c02431{height:43.909277px;}
.ha_c02431{height:46.991602px;}
.h9_c02431{height:47.174063px;}
.hb_c02431{height:48.254063px;}
.h3_c02431{height:54.331699px;}
.hc_c02431{height:66.394687px;}
.h2_c02431{height:72.562500px;}
.h5_c02431{height:96.870938px;}
.h7_c02431{height:103.334062px;}
.h6_c02431{height:103.335215px;}
.h8_c02431{height:125.654063px;}
.h1_c02431{height:892.500000px;}
.h0_c02431{height:892.830000px;}
.w0_c02431{width:1263.000000px;}
.x0_c02431{left:0.000000px;}
.x4_c02431{left:61.185750px;}
.x3_c02431{left:106.276938px;}
.x1_c02431{left:109.605900px;}
.x5_c02431{left:396.525516px;}
.x6_c02431{left:439.005849px;}
.x7_c02431{left:481.575957px;}
.x8_c02431{left:524.055093px;}
.x9_c02431{left:566.535426px;}
.xa_c02431{left:609.105534px;}
.x2_c02431{left:623.056128px;}
.xb_c02431{left:651.585867px;}
.xc_c02431{left:694.155975px;}
.xd_c02431{left:736.725750px;}
.xe_c02431{left:779.206083px;}
.xf_c02431{left:821.776191px;}
.x10_c02431{left:864.256524px;}
.x11_c02431{left:906.826632px;}
.x12_c02431{left:949.306965px;}
.x13_c02431{left:991.787298px;}
.x14_c02431{left:1034.357406px;}
.x15_c02431{left:1076.837739px;}
.x16_c02431{left:1120.935750px;}
.x17_c02431{left:1163.505750px;}
.x18_c02431{left:1202.925750px;}
@media print{
.v6_c02431{vertical-align:-10.880000pt;}
.v5_c02431{vertical-align:-4.480000pt;}
.v4_c02431{vertical-align:-0.960000pt;}
.v0_c02431{vertical-align:0.000000pt;}
.v7_c02431{vertical-align:7.360000pt;}
.v1_c02431{vertical-align:39.680000pt;}
.v2_c02431{vertical-align:48.961024pt;}
.v3_c02431{vertical-align:68.800000pt;}
.ls1a_c02431{letter-spacing:-0.128000pt;}
.ls19_c02431{letter-spacing:-0.080864pt;}
.ls18_c02431{letter-spacing:-0.017088pt;}
.ls15_c02431{letter-spacing:0.000000pt;}
.ls0_c02431{letter-spacing:0.029280pt;}
.ls6_c02431{letter-spacing:0.029792pt;}
.ls1_c02431{letter-spacing:0.034048pt;}
.ls14_c02431{letter-spacing:0.035136pt;}
.ls16_c02431{letter-spacing:0.040992pt;}
.ls7_c02431{letter-spacing:0.042560pt;}
.lse_c02431{letter-spacing:0.046816pt;}
.lsf_c02431{letter-spacing:0.051072pt;}
.lsc_c02431{letter-spacing:0.063840pt;}
.lsd_c02431{letter-spacing:0.072352pt;}
.lsa_c02431{letter-spacing:0.076608pt;}
.ls9_c02431{letter-spacing:0.080864pt;}
.ls17_c02431{letter-spacing:0.081984pt;}
.ls10_c02431{letter-spacing:0.085120pt;}
.ls11_c02431{letter-spacing:0.089376pt;}
.ls4_c02431{letter-spacing:0.093632pt;}
.ls13_c02431{letter-spacing:0.097888pt;}
.ls8_c02431{letter-spacing:0.106400pt;}
.lsb_c02431{letter-spacing:0.110656pt;}
.ls5_c02431{letter-spacing:0.119168pt;}
.ls12_c02431{letter-spacing:0.144704pt;}
.ls3_c02431{letter-spacing:0.161728pt;}
.ls2_c02431{letter-spacing:140.400000pt;}
.ws7_c02431{word-spacing:-0.200032pt;}
.wse_c02431{word-spacing:-0.191520pt;}
.wsa_c02431{word-spacing:-0.187264pt;}
.ws16_c02431{word-spacing:-0.178752pt;}
.ws6_c02431{word-spacing:-0.174496pt;}
.ws14_c02431{word-spacing:-0.170240pt;}
.ws13_c02431{word-spacing:-0.165984pt;}
.wsc_c02431{word-spacing:-0.161728pt;}
.wsd_c02431{word-spacing:-0.157472pt;}
.ws10_c02431{word-spacing:-0.153216pt;}
.wsf_c02431{word-spacing:-0.144704pt;}
.ws0_c02431{word-spacing:-0.140544pt;}
.ws12_c02431{word-spacing:-0.131936pt;}
.ws11_c02431{word-spacing:-0.127680pt;}
.ws9_c02431{word-spacing:-0.123424pt;}
.ws5_c02431{word-spacing:-0.114912pt;}
.ws4_c02431{word-spacing:-0.111072pt;}
.ws8_c02431{word-spacing:-0.110656pt;}
.ws1_c02431{word-spacing:0.000000pt;}
.ws3_c02431{word-spacing:0.040992pt;}
.ws19_c02431{word-spacing:0.046848pt;}
.ws2_c02431{word-spacing:0.052704pt;}
.ws18_c02431{word-spacing:0.081984pt;}
.ws17_c02431{word-spacing:0.148960pt;}
.ws15_c02431{word-spacing:151.777472pt;}
.wsb_c02431{word-spacing:166.158496pt;}
._15_c02431{margin-left:-47.360768pt;}
._14_c02431{margin-left:-46.176352pt;}
._2a_c02431{margin-left:-33.280000pt;}
._2b_c02431{margin-left:-32.322592pt;}
._21_c02431{margin-left:-13.865856pt;}
._a_c02431{margin-left:-0.966112pt;}
._6_c02431{width:1.012928pt;}
._8_c02431{width:26.134144pt;}
._3_c02431{width:70.551712pt;}
._4_c02431{width:76.314336pt;}
._2_c02431{width:81.115104pt;}
._5_c02431{width:82.048000pt;}
._35_c02431{width:96.872768pt;}
._36_c02431{width:97.836864pt;}
._34_c02431{width:98.803904pt;}
._1e_c02431{width:105.723200pt;}
._13_c02431{width:111.825216pt;}
._1f_c02431{width:112.880000pt;}
._30_c02431{width:114.099008pt;}
._28_c02431{width:117.989184pt;}
._9_c02431{width:119.116544pt;}
._17_c02431{width:125.905216pt;}
._12_c02431{width:126.960000pt;}
._e_c02431{width:140.080000pt;}
._10_c02431{width:141.040000pt;}
._f_c02431{width:142.000000pt;}
._2d_c02431{width:146.440352pt;}
._26_c02431{width:147.649056pt;}
._22_c02431{width:161.693856pt;}
._1_c02431{width:167.256128pt;}
._23_c02431{width:171.899744pt;}
._0_c02431{width:172.800000pt;}
._2e_c02431{width:181.475744pt;}
._18_c02431{width:237.416608pt;}
._2c_c02431{width:248.450016pt;}
._c_c02431{width:250.137792pt;}
._27_c02431{width:289.331296pt;}
._d_c02431{width:291.648416pt;}
._31_c02431{width:300.482016pt;}
._b_c02431{width:328.614176pt;}
._11_c02431{width:349.779264pt;}
._7_c02431{width:363.589984pt;}
._1d_c02431{width:391.402944pt;}
._16_c02431{width:442.218432pt;}
._1b_c02431{width:500.820448pt;}
._1c_c02431{width:505.165824pt;}
._2f_c02431{width:519.002080pt;}
._25_c02431{width:563.060192pt;}
._29_c02431{width:595.235552pt;}
._24_c02431{width:597.478464pt;}
._1a_c02431{width:631.088096pt;}
._20_c02431{width:707.806752pt;}
._19_c02431{width:851.544640pt;}
._37_c02431{width:925.850304pt;}
._33_c02431{width:1021.699680pt;}
._32_c02431{width:1161.520000pt;}
.fs3_c02431{font-size:42.560000pt;}
.fs1_c02431{font-size:58.560000pt;}
.fs0_c02431{font-size:64.000000pt;}
.fs2_c02431{font-size:85.440000pt;}
.y0_c02431{bottom:0.000000pt;}
.y3_c02431{bottom:67.066811pt;}
.y2_c02431{bottom:100.986227pt;}
.y2c_c02431{bottom:132.265883pt;}
.y2b_c02431{bottom:151.706339pt;}
.y2a_c02431{bottom:171.066275pt;}
.y29_c02431{bottom:190.426211pt;}
.y28_c02431{bottom:209.866667pt;}
.y27_c02431{bottom:229.226667pt;}
.y26_c02431{bottom:244.906667pt;}
.y25_c02431{bottom:260.506667pt;}
.y24_c02431{bottom:276.426667pt;}
.y23_c02431{bottom:289.386667pt;}
.y22_c02431{bottom:302.346667pt;}
.y21_c02431{bottom:315.226667pt;}
.y20_c02431{bottom:328.186667pt;}
.y1f_c02431{bottom:341.066667pt;}
.y1e_c02431{bottom:354.026667pt;}
.y1d_c02431{bottom:366.986667pt;}
.y1c_c02431{bottom:379.866667pt;}
.y1b_c02431{bottom:392.826667pt;}
.y1a_c02431{bottom:405.786667pt;}
.y19_c02431{bottom:418.666667pt;}
.y18_c02431{bottom:431.626667pt;}
.y17_c02431{bottom:444.586667pt;}
.y16_c02431{bottom:457.466667pt;}
.y15_c02431{bottom:470.426667pt;}
.y14_c02431{bottom:483.386667pt;}
.y13_c02431{bottom:496.266667pt;}
.y12_c02431{bottom:509.226667pt;}
.y11_c02431{bottom:522.186667pt;}
.y10_c02431{bottom:535.066667pt;}
.yf_c02431{bottom:548.026667pt;}
.ye_c02431{bottom:560.986667pt;}
.yd_c02431{bottom:573.866667pt;}
.yc_c02431{bottom:586.826667pt;}
.yb_c02431{bottom:599.786667pt;}
.ya_c02431{bottom:612.666667pt;}
.y9_c02431{bottom:625.626667pt;}
.y8_c02431{bottom:638.586667pt;}
.y7_c02431{bottom:652.426667pt;}
.y5_c02431{bottom:657.386411pt;}
.y6_c02431{bottom:657.386667pt;}
.y4_c02431{bottom:659.706667pt;}
.y1_c02431{bottom:732.826667pt;}
.h4_c02431{height:39.030469pt;}
.ha_c02431{height:41.770312pt;}
.h9_c02431{height:41.932500pt;}
.hb_c02431{height:42.892500pt;}
.h3_c02431{height:48.294844pt;}
.hc_c02431{height:59.017500pt;}
.h2_c02431{height:64.500000pt;}
.h5_c02431{height:86.107500pt;}
.h7_c02431{height:91.852500pt;}
.h6_c02431{height:91.853524pt;}
.h8_c02431{height:111.692500pt;}
.h1_c02431{height:793.333333pt;}
.h0_c02431{height:793.626667pt;}
.w0_c02431{width:1122.666667pt;}
.x0_c02431{left:0.000000pt;}
.x4_c02431{left:54.387333pt;}
.x3_c02431{left:94.468389pt;}
.x1_c02431{left:97.427467pt;}
.x5_c02431{left:352.467125pt;}
.x6_c02431{left:390.227421pt;}
.x7_c02431{left:428.067517pt;}
.x8_c02431{left:465.826749pt;}
.x9_c02431{left:503.587045pt;}
.xa_c02431{left:541.427141pt;}
.x2_c02431{left:553.827669pt;}
.xb_c02431{left:579.187437pt;}
.xc_c02431{left:617.027533pt;}
.xd_c02431{left:654.867333pt;}
.xe_c02431{left:692.627629pt;}
.xf_c02431{left:730.467725pt;}
.x10_c02431{left:768.228021pt;}
.x11_c02431{left:806.068117pt;}
.x12_c02431{left:843.828413pt;}
.x13_c02431{left:881.588709pt;}
.x14_c02431{left:919.428805pt;}
.x15_c02431{left:957.189101pt;}
.x16_c02431{left:996.387333pt;}
.x17_c02431{left:1034.227333pt;}
.x18_c02431{left:1069.267333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e0999e14716e58c7d44c00a.woff2')format("woff");}.ff1_c02432{font-family:ff1_c02432;line-height:1.311035;font-style:normal;font-weight:normal;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_cf6d2f74b49ed7a896ed132b.woff2')format("woff");}.ff2_c02432{font-family:ff2_c02432;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02432{font-family:ff3_c02432;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_c02432;src:url('chunks/assets/font_a38ba2c3b51ea4ef3433d657.woff2')format("woff");}.ff4_c02432{font-family:ff4_c02432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c02432{letter-spacing:0.000000px;}
.ls0_c02432{letter-spacing:0.032940px;}
.ls2_c02432{letter-spacing:0.039528px;}
.ls6_c02432{letter-spacing:0.046116px;}
.ls8_c02432{letter-spacing:0.059292px;}
.ls9_c02432{letter-spacing:0.065880px;}
.ls1_c02432{letter-spacing:0.072468px;}
.ls3_c02432{letter-spacing:0.079056px;}
.ls7_c02432{letter-spacing:0.085644px;}
.ls5_c02432{letter-spacing:0.092232px;}
.ls4_c02432{letter-spacing:0.098820px;}
.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;}
}
.wsa_c02432{word-spacing:-0.329400px;}
.ws0_c02432{word-spacing:-0.158112px;}
.ws7_c02432{word-spacing:-0.006588px;}
.ws1_c02432{word-spacing:0.000000px;}
.ws8_c02432{word-spacing:0.006588px;}
.ws6_c02432{word-spacing:0.013176px;}
.ws4_c02432{word-spacing:0.019764px;}
.wsb_c02432{word-spacing:0.026352px;}
.ws3_c02432{word-spacing:0.046116px;}
.ws5_c02432{word-spacing:0.052704px;}
.ws2_c02432{word-spacing:0.059292px;}
.ws9_c02432{word-spacing:0.092232px;}
._1_c02432{margin-left:-1.363716px;}
._0_c02432{width:194.400000px;}
.fc0_c02432{color:rgb(0,0,0);}
.fs1_c02432{font-size:65.880000px;}
.fs0_c02432{font-size:72.000000px;}
.y0_c02432{bottom:0.000000px;}
.y3_c02432{bottom:75.450162px;}
.y2_c02432{bottom:113.609505px;}
.y1f_c02432{bottom:143.579118px;}
.y1e_c02432{bottom:165.359046px;}
.y1d_c02432{bottom:187.229559px;}
.y1c_c02432{bottom:209.009487px;}
.y1b_c02432{bottom:230.880000px;}
.y1a_c02432{bottom:253.470000px;}
.y19_c02432{bottom:276.060000px;}
.y18_c02432{bottom:298.650000px;}
.y17_c02432{bottom:321.150000px;}
.y16_c02432{bottom:343.830000px;}
.y15_c02432{bottom:366.330000px;}
.y14_c02432{bottom:388.920000px;}
.y13_c02432{bottom:411.510000px;}
.y12_c02432{bottom:434.010000px;}
.y11_c02432{bottom:456.600000px;}
.y10_c02432{bottom:479.190000px;}
.yf_c02432{bottom:501.780000px;}
.ye_c02432{bottom:524.280000px;}
.yd_c02432{bottom:546.960000px;}
.yc_c02432{bottom:569.460000px;}
.yb_c02432{bottom:592.050000px;}
.ya_c02432{bottom:614.640000px;}
.y9_c02432{bottom:637.230000px;}
.y8_c02432{bottom:659.730000px;}
.y7_c02432{bottom:682.320000px;}
.y6_c02432{bottom:704.820000px;}
.y5_c02432{bottom:727.410000px;}
.y4_c02432{bottom:749.190000px;}
.y1_c02432{bottom:824.430000px;}
.h4_c02432{height:43.909277px;}
.h3_c02432{height:54.331699px;}
.h6_c02432{height:64.657617px;}
.h5_c02432{height:66.394687px;}
.h2_c02432{height:72.562500px;}
.h1_c02432{height:892.500000px;}
.h0_c02432{height:892.830000px;}
.w0_c02432{width:1263.000000px;}
.x0_c02432{left:0.000000px;}
.x3_c02432{left:106.276938px;}
.x1_c02432{left:109.605900px;}
.x4_c02432{left:325.875750px;}
.x5_c02432{left:364.305750px;}
.x2_c02432{left:623.056128px;}
@media print{
.v0_c02432{vertical-align:0.000000pt;}
.lsa_c02432{letter-spacing:0.000000pt;}
.ls0_c02432{letter-spacing:0.029280pt;}
.ls2_c02432{letter-spacing:0.035136pt;}
.ls6_c02432{letter-spacing:0.040992pt;}
.ls8_c02432{letter-spacing:0.052704pt;}
.ls9_c02432{letter-spacing:0.058560pt;}
.ls1_c02432{letter-spacing:0.064416pt;}
.ls3_c02432{letter-spacing:0.070272pt;}
.ls7_c02432{letter-spacing:0.076128pt;}
.ls5_c02432{letter-spacing:0.081984pt;}
.ls4_c02432{letter-spacing:0.087840pt;}
.wsa_c02432{word-spacing:-0.292800pt;}
.ws0_c02432{word-spacing:-0.140544pt;}
.ws7_c02432{word-spacing:-0.005856pt;}
.ws1_c02432{word-spacing:0.000000pt;}
.ws8_c02432{word-spacing:0.005856pt;}
.ws6_c02432{word-spacing:0.011712pt;}
.ws4_c02432{word-spacing:0.017568pt;}
.wsb_c02432{word-spacing:0.023424pt;}
.ws3_c02432{word-spacing:0.040992pt;}
.ws5_c02432{word-spacing:0.046848pt;}
.ws2_c02432{word-spacing:0.052704pt;}
.ws9_c02432{word-spacing:0.081984pt;}
._1_c02432{margin-left:-1.212192pt;}
._0_c02432{width:172.800000pt;}
.fs1_c02432{font-size:58.560000pt;}
.fs0_c02432{font-size:64.000000pt;}
.y0_c02432{bottom:0.000000pt;}
.y3_c02432{bottom:67.066811pt;}
.y2_c02432{bottom:100.986227pt;}
.y1f_c02432{bottom:127.625883pt;}
.y1e_c02432{bottom:146.985819pt;}
.y1d_c02432{bottom:166.426275pt;}
.y1c_c02432{bottom:185.786211pt;}
.y1b_c02432{bottom:205.226667pt;}
.y1a_c02432{bottom:225.306667pt;}
.y19_c02432{bottom:245.386667pt;}
.y18_c02432{bottom:265.466667pt;}
.y17_c02432{bottom:285.466667pt;}
.y16_c02432{bottom:305.626667pt;}
.y15_c02432{bottom:325.626667pt;}
.y14_c02432{bottom:345.706667pt;}
.y13_c02432{bottom:365.786667pt;}
.y12_c02432{bottom:385.786667pt;}
.y11_c02432{bottom:405.866667pt;}
.y10_c02432{bottom:425.946667pt;}
.yf_c02432{bottom:446.026667pt;}
.ye_c02432{bottom:466.026667pt;}
.yd_c02432{bottom:486.186667pt;}
.yc_c02432{bottom:506.186667pt;}
.yb_c02432{bottom:526.266667pt;}
.ya_c02432{bottom:546.346667pt;}
.y9_c02432{bottom:566.426667pt;}
.y8_c02432{bottom:586.426667pt;}
.y7_c02432{bottom:606.506667pt;}
.y6_c02432{bottom:626.506667pt;}
.y5_c02432{bottom:646.586667pt;}
.y4_c02432{bottom:665.946667pt;}
.y1_c02432{bottom:732.826667pt;}
.h4_c02432{height:39.030469pt;}
.h3_c02432{height:48.294844pt;}
.h6_c02432{height:57.473437pt;}
.h5_c02432{height:59.017500pt;}
.h2_c02432{height:64.500000pt;}
.h1_c02432{height:793.333333pt;}
.h0_c02432{height:793.626667pt;}
.w0_c02432{width:1122.666667pt;}
.x0_c02432{left:0.000000pt;}
.x3_c02432{left:94.468389pt;}
.x1_c02432{left:97.427467pt;}
.x4_c02432{left:289.667333pt;}
.x5_c02432{left:323.827333pt;}
.x2_c02432{left:553.827669pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2844c23518c256345c3fbe06.woff2')format("woff");}.ff1_c02433{font-family:ff1_c02433;line-height:1.311035;font-style:normal;font-weight:normal;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_ba1266696bd41063277abf4c.woff2')format("woff");}.ff2_c02433{font-family:ff2_c02433;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02433{font-family:ff3_c02433;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_c02433;src:url('chunks/assets/font_5cbde7ef7c59020997788373.woff2')format("woff");}.ff4_c02433{font-family:ff4_c02433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02433{vertical-align:-1.080000px;}
.v0_c02433{vertical-align:0.000000px;}
.v1_c02433{vertical-align:55.081152px;}
.v2_c02433{vertical-align:77.400000px;}
.ls25_c02433{letter-spacing:-0.144000px;}
.ls23_c02433{letter-spacing:-0.057600px;}
.ls24_c02433{letter-spacing:-0.004788px;}
.ls1f_c02433{letter-spacing:0.000000px;}
.ls22_c02433{letter-spacing:0.007200px;}
.ls1_c02433{letter-spacing:0.014400px;}
.ls3_c02433{letter-spacing:0.021600px;}
.ls2_c02433{letter-spacing:0.028800px;}
.ls0_c02433{letter-spacing:0.032940px;}
.ls19_c02433{letter-spacing:0.043092px;}
.ls20_c02433{letter-spacing:0.046116px;}
.lsc_c02433{letter-spacing:0.047880px;}
.ls18_c02433{letter-spacing:0.052668px;}
.ls1a_c02433{letter-spacing:0.057456px;}
.ls17_c02433{letter-spacing:0.062244px;}
.lsd_c02433{letter-spacing:0.067032px;}
.ls1e_c02433{letter-spacing:0.071820px;}
.ls13_c02433{letter-spacing:0.076608px;}
.ls1c_c02433{letter-spacing:0.081396px;}
.ls5_c02433{letter-spacing:0.086184px;}
.ls10_c02433{letter-spacing:0.090972px;}
.ls21_c02433{letter-spacing:0.092232px;}
.ls11_c02433{letter-spacing:0.095760px;}
.ls1b_c02433{letter-spacing:0.100548px;}
.ls15_c02433{letter-spacing:0.105336px;}
.ls16_c02433{letter-spacing:0.110124px;}
.ls7_c02433{letter-spacing:0.114912px;}
.ls12_c02433{letter-spacing:0.119700px;}
.ls4_c02433{letter-spacing:0.124488px;}
.ls8_c02433{letter-spacing:0.134064px;}
.lsb_c02433{letter-spacing:0.181944px;}
.ls1d_c02433{letter-spacing:115.110000px;}
.ls6_c02433{letter-spacing:115.470000px;}
.ls9_c02433{letter-spacing:137.430000px;}
.ls14_c02433{letter-spacing:137.790000px;}
.lsa_c02433{letter-spacing:138.150000px;}
.lse_c02433{letter-spacing:153.990000px;}
.lsf_c02433{letter-spacing:180.270000px;}
.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;}
}
.ws11_c02433{word-spacing:-0.225036px;}
.wsf_c02433{word-spacing:-0.215460px;}
.ws15_c02433{word-spacing:-0.210672px;}
.wsb_c02433{word-spacing:-0.208800px;}
.ws10_c02433{word-spacing:-0.205884px;}
.ws1a_c02433{word-spacing:-0.201096px;}
.ws17_c02433{word-spacing:-0.196308px;}
.ws1d_c02433{word-spacing:-0.191520px;}
.ws14_c02433{word-spacing:-0.181944px;}
.ws1e_c02433{word-spacing:-0.177156px;}
.ws1f_c02433{word-spacing:-0.172368px;}
.ws16_c02433{word-spacing:-0.167580px;}
.ws20_c02433{word-spacing:-0.162792px;}
.ws0_c02433{word-spacing:-0.158112px;}
.ws18_c02433{word-spacing:-0.153216px;}
.ws1c_c02433{word-spacing:-0.148428px;}
.ws19_c02433{word-spacing:-0.143640px;}
.ws12_c02433{word-spacing:-0.138852px;}
.wsd_c02433{word-spacing:-0.136800px;}
.ws1b_c02433{word-spacing:-0.134064px;}
.ws4_c02433{word-spacing:-0.086400px;}
.wsc_c02433{word-spacing:-0.079200px;}
.ws5_c02433{word-spacing:-0.057600px;}
.wsa_c02433{word-spacing:-0.014400px;}
.ws1_c02433{word-spacing:0.000000px;}
.ws3_c02433{word-spacing:0.046116px;}
.wse_c02433{word-spacing:0.057600px;}
.ws2_c02433{word-spacing:0.059292px;}
.ws13_c02433{word-spacing:0.201096px;}
.ws8_c02433{word-spacing:7.891200px;}
.ws9_c02433{word-spacing:7.920000px;}
.ws7_c02433{word-spacing:8.136000px;}
.ws6_c02433{word-spacing:8.280000px;}
._1e_c02433{margin-left:-37.906632px;}
._14_c02433{margin-left:-16.488000px;}
._1_c02433{margin-left:-1.152000px;}
._19_c02433{width:25.813368px;}
._8_c02433{width:76.442040px;}
._2_c02433{width:92.331792px;}
._3_c02433{width:93.384000px;}
._7_c02433{width:98.803368px;}
._27_c02433{width:100.009440px;}
._b_c02433{width:105.926112px;}
._9_c02433{width:114.982704px;}
._5_c02433{width:121.483368px;}
._6_c02433{width:122.563368px;}
._12_c02433{width:129.493512px;}
._13_c02433{width:131.319756px;}
._11_c02433{width:137.070000px;}
._f_c02433{width:138.403368px;}
._1c_c02433{width:141.536736px;}
._26_c02433{width:148.683924px;}
._10_c02433{width:153.990000px;}
._25_c02433{width:157.144032px;}
._1b_c02433{width:159.871572px;}
._a_c02433{width:164.662704px;}
._17_c02433{width:180.523368px;}
._2d_c02433{width:188.113104px;}
._22_c02433{width:190.140336px;}
._0_c02433{width:194.400000px;}
._23_c02433{width:218.658348px;}
._15_c02433{width:225.782892px;}
._e_c02433{width:247.343544px;}
._2f_c02433{width:248.666652px;}
._21_c02433{width:250.564896px;}
._30_c02433{width:288.170532px;}
._1d_c02433{width:324.079848px;}
._1a_c02433{width:340.069860px;}
._1f_c02433{width:351.476784px;}
._31_c02433{width:371.945484px;}
._24_c02433{width:433.014228px;}
._4_c02433{width:436.076640px;}
._29_c02433{width:447.050052px;}
._2c_c02433{width:451.824660px;}
._16_c02433{width:463.949784px;}
._2a_c02433{width:537.517116px;}
._28_c02433{width:580.271364px;}
._20_c02433{width:604.987704px;}
._2b_c02433{width:628.055604px;}
._18_c02433{width:634.335552px;}
._d_c02433{width:640.816308px;}
._2e_c02433{width:663.491592px;}
._c_c02433{width:691.406316px;}
.fc0_c02433{color:rgb(0,0,0);}
.fs4_c02433{font-size:47.880000px;}
.fs3_c02433{font-size:60.120000px;}
.fs1_c02433{font-size:65.880000px;}
.fs0_c02433{font-size:72.000000px;}
.fs2_c02433{font-size:108.000000px;}
.y0_c02433{bottom:0.000000px;}
.y3_c02433{bottom:75.450162px;}
.y2_c02433{bottom:113.609505px;}
.y2d_c02433{bottom:137.190150px;}
.y2c_c02433{bottom:151.680000px;}
.y2b_c02433{bottom:166.260000px;}
.y2a_c02433{bottom:180.840000px;}
.y29_c02433{bottom:195.330000px;}
.y28_c02433{bottom:209.910000px;}
.y27_c02433{bottom:224.490000px;}
.y26_c02433{bottom:238.980000px;}
.y25_c02433{bottom:253.560000px;}
.y24_c02433{bottom:268.140000px;}
.y23_c02433{bottom:282.630000px;}
.y22_c02433{bottom:297.210000px;}
.y21_c02433{bottom:311.790000px;}
.y20_c02433{bottom:326.280000px;}
.y1f_c02433{bottom:340.860000px;}
.y1e_c02433{bottom:355.350000px;}
.y1d_c02433{bottom:369.930000px;}
.y1c_c02433{bottom:384.510000px;}
.y1b_c02433{bottom:399.000000px;}
.y1a_c02433{bottom:413.580000px;}
.y19_c02433{bottom:428.160000px;}
.y18_c02433{bottom:442.650000px;}
.y17_c02433{bottom:457.230000px;}
.y16_c02433{bottom:471.810000px;}
.y15_c02433{bottom:486.300000px;}
.y14_c02433{bottom:500.880000px;}
.y13_c02433{bottom:515.460000px;}
.y12_c02433{bottom:529.950000px;}
.y11_c02433{bottom:544.530000px;}
.y10_c02433{bottom:559.110000px;}
.yb_c02433{bottom:574.230000px;}
.yf_c02433{bottom:593.130000px;}
.ya_c02433{bottom:598.530000px;}
.yd_c02433{bottom:598.709712px;}
.ye_c02433{bottom:598.710000px;}
.yc_c02433{bottom:612.480000px;}
.y9_c02433{bottom:630.930000px;}
.y8_c02433{bottom:653.250000px;}
.y7_c02433{bottom:677.190000px;}
.y6_c02433{bottom:701.040000px;}
.y5_c02433{bottom:724.800000px;}
.y4_c02433{bottom:748.380000px;}
.y1_c02433{bottom:824.430000px;}
.h4_c02433{height:43.909277px;}
.hd_c02433{height:47.174063px;}
.h9_c02433{height:48.254063px;}
.h3_c02433{height:54.331699px;}
.h8_c02433{height:59.004492px;}
.h6_c02433{height:66.394687px;}
.h5_c02433{height:70.664062px;}
.h2_c02433{height:72.562500px;}
.hb_c02433{height:103.334062px;}
.ha_c02433{height:103.335215px;}
.h7_c02433{height:108.843750px;}
.hc_c02433{height:125.654063px;}
.h1_c02433{height:892.500000px;}
.h0_c02433{height:892.830000px;}
.w0_c02433{width:1263.000000px;}
.x0_c02433{left:0.000000px;}
.x8_c02433{left:61.185750px;}
.x7_c02433{left:72.345750px;}
.x3_c02433{left:106.276938px;}
.x1_c02433{left:109.605900px;}
.x4_c02433{left:173.325750px;}
.x9_c02433{left:395.805750px;}
.xa_c02433{left:437.294967px;}
.xb_c02433{left:478.784184px;}
.x5_c02433{left:488.685750px;}
.xc_c02433{left:520.273401px;}
.xd_c02433{left:561.762618px;}
.xe_c02433{left:603.162060px;}
.x2_c02433{left:623.056128px;}
.x6_c02433{left:631.425750px;}
.xf_c02433{left:644.651277px;}
.x10_c02433{left:686.140494px;}
.x11_c02433{left:727.545750px;}
.x12_c02433{left:769.034967px;}
.x13_c02433{left:810.434409px;}
.x14_c02433{left:851.923626px;}
.x15_c02433{left:893.412843px;}
.x16_c02433{left:934.902060px;}
.x17_c02433{left:976.391277px;}
.x18_c02433{left:1017.700944px;}
.x19_c02433{left:1059.279936px;}
.x1a_c02433{left:1102.215750px;}
.x1b_c02433{left:1143.705750px;}
.x1c_c02433{left:1182.135750px;}
@media print{
.v3_c02433{vertical-align:-0.960000pt;}
.v0_c02433{vertical-align:0.000000pt;}
.v1_c02433{vertical-align:48.961024pt;}
.v2_c02433{vertical-align:68.800000pt;}
.ls25_c02433{letter-spacing:-0.128000pt;}
.ls23_c02433{letter-spacing:-0.051200pt;}
.ls24_c02433{letter-spacing:-0.004256pt;}
.ls1f_c02433{letter-spacing:0.000000pt;}
.ls22_c02433{letter-spacing:0.006400pt;}
.ls1_c02433{letter-spacing:0.012800pt;}
.ls3_c02433{letter-spacing:0.019200pt;}
.ls2_c02433{letter-spacing:0.025600pt;}
.ls0_c02433{letter-spacing:0.029280pt;}
.ls19_c02433{letter-spacing:0.038304pt;}
.ls20_c02433{letter-spacing:0.040992pt;}
.lsc_c02433{letter-spacing:0.042560pt;}
.ls18_c02433{letter-spacing:0.046816pt;}
.ls1a_c02433{letter-spacing:0.051072pt;}
.ls17_c02433{letter-spacing:0.055328pt;}
.lsd_c02433{letter-spacing:0.059584pt;}
.ls1e_c02433{letter-spacing:0.063840pt;}
.ls13_c02433{letter-spacing:0.068096pt;}
.ls1c_c02433{letter-spacing:0.072352pt;}
.ls5_c02433{letter-spacing:0.076608pt;}
.ls10_c02433{letter-spacing:0.080864pt;}
.ls21_c02433{letter-spacing:0.081984pt;}
.ls11_c02433{letter-spacing:0.085120pt;}
.ls1b_c02433{letter-spacing:0.089376pt;}
.ls15_c02433{letter-spacing:0.093632pt;}
.ls16_c02433{letter-spacing:0.097888pt;}
.ls7_c02433{letter-spacing:0.102144pt;}
.ls12_c02433{letter-spacing:0.106400pt;}
.ls4_c02433{letter-spacing:0.110656pt;}
.ls8_c02433{letter-spacing:0.119168pt;}
.lsb_c02433{letter-spacing:0.161728pt;}
.ls1d_c02433{letter-spacing:102.320000pt;}
.ls6_c02433{letter-spacing:102.640000pt;}
.ls9_c02433{letter-spacing:122.160000pt;}
.ls14_c02433{letter-spacing:122.480000pt;}
.lsa_c02433{letter-spacing:122.800000pt;}
.lse_c02433{letter-spacing:136.880000pt;}
.lsf_c02433{letter-spacing:160.240000pt;}
.ws11_c02433{word-spacing:-0.200032pt;}
.wsf_c02433{word-spacing:-0.191520pt;}
.ws15_c02433{word-spacing:-0.187264pt;}
.wsb_c02433{word-spacing:-0.185600pt;}
.ws10_c02433{word-spacing:-0.183008pt;}
.ws1a_c02433{word-spacing:-0.178752pt;}
.ws17_c02433{word-spacing:-0.174496pt;}
.ws1d_c02433{word-spacing:-0.170240pt;}
.ws14_c02433{word-spacing:-0.161728pt;}
.ws1e_c02433{word-spacing:-0.157472pt;}
.ws1f_c02433{word-spacing:-0.153216pt;}
.ws16_c02433{word-spacing:-0.148960pt;}
.ws20_c02433{word-spacing:-0.144704pt;}
.ws0_c02433{word-spacing:-0.140544pt;}
.ws18_c02433{word-spacing:-0.136192pt;}
.ws1c_c02433{word-spacing:-0.131936pt;}
.ws19_c02433{word-spacing:-0.127680pt;}
.ws12_c02433{word-spacing:-0.123424pt;}
.wsd_c02433{word-spacing:-0.121600pt;}
.ws1b_c02433{word-spacing:-0.119168pt;}
.ws4_c02433{word-spacing:-0.076800pt;}
.wsc_c02433{word-spacing:-0.070400pt;}
.ws5_c02433{word-spacing:-0.051200pt;}
.wsa_c02433{word-spacing:-0.012800pt;}
.ws1_c02433{word-spacing:0.000000pt;}
.ws3_c02433{word-spacing:0.040992pt;}
.wse_c02433{word-spacing:0.051200pt;}
.ws2_c02433{word-spacing:0.052704pt;}
.ws13_c02433{word-spacing:0.178752pt;}
.ws8_c02433{word-spacing:7.014400pt;}
.ws9_c02433{word-spacing:7.040000pt;}
.ws7_c02433{word-spacing:7.232000pt;}
.ws6_c02433{word-spacing:7.360000pt;}
._1e_c02433{margin-left:-33.694784pt;}
._14_c02433{margin-left:-14.656000pt;}
._1_c02433{margin-left:-1.024000pt;}
._19_c02433{width:22.945216pt;}
._8_c02433{width:67.948480pt;}
._2_c02433{width:82.072704pt;}
._3_c02433{width:83.008000pt;}
._7_c02433{width:87.825216pt;}
._27_c02433{width:88.897280pt;}
._b_c02433{width:94.156544pt;}
._9_c02433{width:102.206848pt;}
._5_c02433{width:107.985216pt;}
._6_c02433{width:108.945216pt;}
._12_c02433{width:115.105344pt;}
._13_c02433{width:116.728672pt;}
._11_c02433{width:121.840000pt;}
._f_c02433{width:123.025216pt;}
._1c_c02433{width:125.810432pt;}
._26_c02433{width:132.163488pt;}
._10_c02433{width:136.880000pt;}
._25_c02433{width:139.683584pt;}
._1b_c02433{width:142.108064pt;}
._a_c02433{width:146.366848pt;}
._17_c02433{width:160.465216pt;}
._2d_c02433{width:167.211648pt;}
._22_c02433{width:169.013632pt;}
._0_c02433{width:172.800000pt;}
._23_c02433{width:194.362976pt;}
._15_c02433{width:200.695904pt;}
._e_c02433{width:219.860928pt;}
._2f_c02433{width:221.037024pt;}
._21_c02433{width:222.724352pt;}
._30_c02433{width:256.151584pt;}
._1d_c02433{width:288.070976pt;}
._1a_c02433{width:302.284320pt;}
._1f_c02433{width:312.423808pt;}
._31_c02433{width:330.618208pt;}
._24_c02433{width:384.901536pt;}
._4_c02433{width:387.623680pt;}
._29_c02433{width:397.377824pt;}
._2c_c02433{width:401.621920pt;}
._16_c02433{width:412.399808pt;}
._2a_c02433{width:477.792992pt;}
._28_c02433{width:515.796768pt;}
._20_c02433{width:537.766848pt;}
._2b_c02433{width:558.271648pt;}
._18_c02433{width:563.853824pt;}
._d_c02433{width:569.614496pt;}
._2e_c02433{width:589.770304pt;}
._c_c02433{width:614.583392pt;}
.fs4_c02433{font-size:42.560000pt;}
.fs3_c02433{font-size:53.440000pt;}
.fs1_c02433{font-size:58.560000pt;}
.fs0_c02433{font-size:64.000000pt;}
.fs2_c02433{font-size:96.000000pt;}
.y0_c02433{bottom:0.000000pt;}
.y3_c02433{bottom:67.066811pt;}
.y2_c02433{bottom:100.986227pt;}
.y2d_c02433{bottom:121.946800pt;}
.y2c_c02433{bottom:134.826667pt;}
.y2b_c02433{bottom:147.786667pt;}
.y2a_c02433{bottom:160.746667pt;}
.y29_c02433{bottom:173.626667pt;}
.y28_c02433{bottom:186.586667pt;}
.y27_c02433{bottom:199.546667pt;}
.y26_c02433{bottom:212.426667pt;}
.y25_c02433{bottom:225.386667pt;}
.y24_c02433{bottom:238.346667pt;}
.y23_c02433{bottom:251.226667pt;}
.y22_c02433{bottom:264.186667pt;}
.y21_c02433{bottom:277.146667pt;}
.y20_c02433{bottom:290.026667pt;}
.y1f_c02433{bottom:302.986667pt;}
.y1e_c02433{bottom:315.866667pt;}
.y1d_c02433{bottom:328.826667pt;}
.y1c_c02433{bottom:341.786667pt;}
.y1b_c02433{bottom:354.666667pt;}
.y1a_c02433{bottom:367.626667pt;}
.y19_c02433{bottom:380.586667pt;}
.y18_c02433{bottom:393.466667pt;}
.y17_c02433{bottom:406.426667pt;}
.y16_c02433{bottom:419.386667pt;}
.y15_c02433{bottom:432.266667pt;}
.y14_c02433{bottom:445.226667pt;}
.y13_c02433{bottom:458.186667pt;}
.y12_c02433{bottom:471.066667pt;}
.y11_c02433{bottom:484.026667pt;}
.y10_c02433{bottom:496.986667pt;}
.yb_c02433{bottom:510.426667pt;}
.yf_c02433{bottom:527.226667pt;}
.ya_c02433{bottom:532.026667pt;}
.yd_c02433{bottom:532.186411pt;}
.ye_c02433{bottom:532.186667pt;}
.yc_c02433{bottom:544.426667pt;}
.y9_c02433{bottom:560.826667pt;}
.y8_c02433{bottom:580.666667pt;}
.y7_c02433{bottom:601.946667pt;}
.y6_c02433{bottom:623.146667pt;}
.y5_c02433{bottom:644.266667pt;}
.y4_c02433{bottom:665.226667pt;}
.y1_c02433{bottom:732.826667pt;}
.h4_c02433{height:39.030469pt;}
.hd_c02433{height:41.932500pt;}
.h9_c02433{height:42.892500pt;}
.h3_c02433{height:48.294844pt;}
.h8_c02433{height:52.448437pt;}
.h6_c02433{height:59.017500pt;}
.h5_c02433{height:62.812500pt;}
.h2_c02433{height:64.500000pt;}
.hb_c02433{height:91.852500pt;}
.ha_c02433{height:91.853524pt;}
.h7_c02433{height:96.750000pt;}
.hc_c02433{height:111.692500pt;}
.h1_c02433{height:793.333333pt;}
.h0_c02433{height:793.626667pt;}
.w0_c02433{width:1122.666667pt;}
.x0_c02433{left:0.000000pt;}
.x8_c02433{left:54.387333pt;}
.x7_c02433{left:64.307333pt;}
.x3_c02433{left:94.468389pt;}
.x1_c02433{left:97.427467pt;}
.x4_c02433{left:154.067333pt;}
.x9_c02433{left:351.827333pt;}
.xa_c02433{left:388.706637pt;}
.xb_c02433{left:425.585941pt;}
.x5_c02433{left:434.387333pt;}
.xc_c02433{left:462.465245pt;}
.xd_c02433{left:499.344549pt;}
.xe_c02433{left:536.144053pt;}
.x2_c02433{left:553.827669pt;}
.x6_c02433{left:561.267333pt;}
.xf_c02433{left:573.023357pt;}
.x10_c02433{left:609.902661pt;}
.x11_c02433{left:646.707333pt;}
.x12_c02433{left:683.586637pt;}
.x13_c02433{left:720.386141pt;}
.x14_c02433{left:757.265445pt;}
.x15_c02433{left:794.144749pt;}
.x16_c02433{left:831.024053pt;}
.x17_c02433{left:867.903357pt;}
.x18_c02433{left:904.623061pt;}
.x19_c02433{left:941.582165pt;}
.x1a_c02433{left:979.747333pt;}
.x1b_c02433{left:1016.627333pt;}
.x1c_c02433{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc5fc9555d9eb8ef2f51141b.woff2')format("woff");}.ff1_c02434{font-family:ff1_c02434;line-height:1.311035;font-style:normal;font-weight:normal;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_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff2_c02434{font-family:ff2_c02434;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02434{font-family:ff3_c02434;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_c02434;src:url('chunks/assets/font_756e118655a50364ba449192.woff2')format("woff");}.ff4_c02434{font-family:ff4_c02434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02434{vertical-align:-1.080000px;}
.v0_c02434{vertical-align:0.000000px;}
.v1_c02434{vertical-align:55.081152px;}
.v2_c02434{vertical-align:77.400000px;}
.ls23_c02434{letter-spacing:-0.144000px;}
.ls22_c02434{letter-spacing:-0.004788px;}
.ls20_c02434{letter-spacing:0.000000px;}
.lsa_c02434{letter-spacing:0.023940px;}
.lsb_c02434{letter-spacing:0.028728px;}
.ls0_c02434{letter-spacing:0.032940px;}
.ls6_c02434{letter-spacing:0.033516px;}
.ls1c_c02434{letter-spacing:0.038304px;}
.ls7_c02434{letter-spacing:0.043092px;}
.ls21_c02434{letter-spacing:0.046116px;}
.ls1e_c02434{letter-spacing:0.047880px;}
.ls1d_c02434{letter-spacing:0.052668px;}
.ls1a_c02434{letter-spacing:0.062244px;}
.lsf_c02434{letter-spacing:0.067032px;}
.lsd_c02434{letter-spacing:0.086184px;}
.ls11_c02434{letter-spacing:0.090972px;}
.ls1_c02434{letter-spacing:0.092232px;}
.ls2_c02434{letter-spacing:0.095760px;}
.ls17_c02434{letter-spacing:0.100548px;}
.ls15_c02434{letter-spacing:0.105336px;}
.lsc_c02434{letter-spacing:0.110124px;}
.ls16_c02434{letter-spacing:0.124488px;}
.ls14_c02434{letter-spacing:0.129276px;}
.ls10_c02434{letter-spacing:0.134064px;}
.ls1b_c02434{letter-spacing:0.138852px;}
.ls13_c02434{letter-spacing:0.143640px;}
.ls12_c02434{letter-spacing:0.148428px;}
.ls19_c02434{letter-spacing:0.158004px;}
.lse_c02434{letter-spacing:0.167580px;}
.ls1f_c02434{letter-spacing:0.172368px;}
.ls5_c02434{letter-spacing:0.181944px;}
.ls3_c02434{letter-spacing:137.430000px;}
.ls8_c02434{letter-spacing:137.790000px;}
.ls9_c02434{letter-spacing:138.150000px;}
.ls4_c02434{letter-spacing:153.990000px;}
.ls18_c02434{letter-spacing:180.270000px;}
.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;}
}
.ws1a_c02434{word-spacing:-0.263340px;}
.wsa_c02434{word-spacing:-0.258552px;}
.ws15_c02434{word-spacing:-0.248976px;}
.wsf_c02434{word-spacing:-0.239400px;}
.ws10_c02434{word-spacing:-0.234612px;}
.ws16_c02434{word-spacing:-0.229824px;}
.wsd_c02434{word-spacing:-0.225036px;}
.ws11_c02434{word-spacing:-0.220248px;}
.ws13_c02434{word-spacing:-0.215460px;}
.ws9_c02434{word-spacing:-0.201096px;}
.ws12_c02434{word-spacing:-0.196308px;}
.ws14_c02434{word-spacing:-0.191520px;}
.ws4_c02434{word-spacing:-0.186732px;}
.wse_c02434{word-spacing:-0.181944px;}
.ws0_c02434{word-spacing:-0.158112px;}
.wsb_c02434{word-spacing:-0.158004px;}
.wsc_c02434{word-spacing:-0.153216px;}
.ws18_c02434{word-spacing:-0.143640px;}
.ws19_c02434{word-spacing:-0.138852px;}
.ws6_c02434{word-spacing:-0.134064px;}
.ws17_c02434{word-spacing:-0.129276px;}
.ws5_c02434{word-spacing:-0.124488px;}
.ws8_c02434{word-spacing:-0.119700px;}
.ws1_c02434{word-spacing:0.000000px;}
.ws3_c02434{word-spacing:0.046116px;}
.ws2_c02434{word-spacing:0.059292px;}
.ws7_c02434{word-spacing:0.244188px;}
._2e_c02434{margin-left:-17.280000px;}
._6_c02434{margin-left:-16.200000px;}
._5_c02434{margin-left:-1.080000px;}
._9_c02434{width:1.201788px;}
._f_c02434{width:26.280000px;}
._1_c02434{width:92.331792px;}
._2_c02434{width:93.384000px;}
._15_c02434{width:99.630000px;}
._17_c02434{width:106.393344px;}
._16_c02434{width:113.668776px;}
._b_c02434{width:121.483368px;}
._1a_c02434{width:122.670000px;}
._8_c02434{width:129.686112px;}
._4_c02434{width:137.683368px;}
._11_c02434{width:138.976632px;}
._d_c02434{width:153.630000px;}
._c_c02434{width:154.710000px;}
._7_c02434{width:163.963368px;}
._12_c02434{width:180.630000px;}
._0_c02434{width:194.400000px;}
._13_c02434{width:206.917992px;}
._1e_c02434{width:218.964096px;}
._2f_c02434{width:233.270640px;}
._28_c02434{width:244.525140px;}
._29_c02434{width:248.192748px;}
._19_c02434{width:274.615020px;}
._a_c02434{width:279.956232px;}
._26_c02434{width:289.039176px;}
._33_c02434{width:291.316176px;}
._24_c02434{width:297.346356px;}
._37_c02434{width:305.195976px;}
._2d_c02434{width:327.448512px;}
._27_c02434{width:332.305632px;}
._1d_c02434{width:337.479984px;}
._39_c02434{width:340.090920px;}
._3_c02434{width:356.619096px;}
._e_c02434{width:360.749052px;}
._2b_c02434{width:389.062584px;}
._22_c02434{width:424.759824px;}
._2a_c02434{width:429.227028px;}
._32_c02434{width:434.596464px;}
._23_c02434{width:444.946032px;}
._1b_c02434{width:447.153300px;}
._25_c02434{width:465.479568px;}
._20_c02434{width:600.860376px;}
._31_c02434{width:606.701124px;}
._38_c02434{width:616.181976px;}
._35_c02434{width:623.602764px;}
._1c_c02434{width:636.736248px;}
._14_c02434{width:641.282760px;}
._21_c02434{width:667.353420px;}
._1f_c02434{width:749.898540px;}
._2c_c02434{width:756.323928px;}
._34_c02434{width:768.688740px;}
._30_c02434{width:779.205888px;}
._10_c02434{width:920.765196px;}
._36_c02434{width:1034.545140px;}
._18_c02434{width:1108.012104px;}
.fc0_c02434{color:rgb(0,0,0);}
.fs4_c02434{font-size:47.880000px;}
.fs3_c02434{font-size:60.120000px;}
.fs1_c02434{font-size:65.880000px;}
.fs0_c02434{font-size:72.000000px;}
.fs2_c02434{font-size:108.000000px;}
.y0_c02434{bottom:0.000000px;}
.y3_c02434{bottom:75.450162px;}
.y2_c02434{bottom:113.609505px;}
.y30_c02434{bottom:147.090000px;}
.y2f_c02434{bottom:161.580000px;}
.y2e_c02434{bottom:176.160000px;}
.y2d_c02434{bottom:190.740000px;}
.y2c_c02434{bottom:205.230000px;}
.y2b_c02434{bottom:219.810000px;}
.y2a_c02434{bottom:234.390000px;}
.y29_c02434{bottom:248.880000px;}
.y28_c02434{bottom:263.460000px;}
.y27_c02434{bottom:278.040000px;}
.y26_c02434{bottom:292.530000px;}
.y25_c02434{bottom:307.110000px;}
.y24_c02434{bottom:321.600000px;}
.y23_c02434{bottom:336.180000px;}
.y22_c02434{bottom:350.760000px;}
.y21_c02434{bottom:365.250000px;}
.y20_c02434{bottom:379.830000px;}
.y1f_c02434{bottom:394.410000px;}
.y1e_c02434{bottom:408.900000px;}
.y1d_c02434{bottom:423.480000px;}
.y1c_c02434{bottom:438.060000px;}
.y1b_c02434{bottom:452.550000px;}
.y1a_c02434{bottom:467.130000px;}
.y19_c02434{bottom:481.710000px;}
.y18_c02434{bottom:496.200000px;}
.y17_c02434{bottom:510.780000px;}
.y16_c02434{bottom:525.360000px;}
.y15_c02434{bottom:539.850000px;}
.y14_c02434{bottom:554.430000px;}
.y13_c02434{bottom:569.010000px;}
.y12_c02434{bottom:583.500000px;}
.y11_c02434{bottom:598.080000px;}
.y10_c02434{bottom:612.660000px;}
.yf_c02434{bottom:627.150000px;}
.ye_c02434{bottom:641.730000px;}
.yd_c02434{bottom:656.310000px;}
.yc_c02434{bottom:670.800000px;}
.yb_c02434{bottom:685.380000px;}
.ya_c02434{bottom:699.870000px;}
.y5_c02434{bottom:714.990000px;}
.y9_c02434{bottom:733.980000px;}
.y4_c02434{bottom:739.380000px;}
.y7_c02434{bottom:739.559712px;}
.y8_c02434{bottom:739.560000px;}
.y6_c02434{bottom:753.330000px;}
.y1_c02434{bottom:824.430000px;}
.h4_c02434{height:43.909277px;}
.hb_c02434{height:47.174062px;}
.h7_c02434{height:48.254063px;}
.h3_c02434{height:54.331699px;}
.h6_c02434{height:59.004492px;}
.h2_c02434{height:72.562500px;}
.h9_c02434{height:103.334062px;}
.h8_c02434{height:103.335215px;}
.h5_c02434{height:108.843750px;}
.ha_c02434{height:125.654063px;}
.h1_c02434{height:892.500000px;}
.h0_c02434{height:892.830000px;}
.w0_c02434{width:1263.000000px;}
.x0_c02434{left:0.000000px;}
.x5_c02434{left:61.185750px;}
.x4_c02434{left:72.345750px;}
.x3_c02434{left:106.276938px;}
.x1_c02434{left:109.605900px;}
.x6_c02434{left:395.805750px;}
.x7_c02434{left:437.294967px;}
.x8_c02434{left:478.784184px;}
.x9_c02434{left:520.273401px;}
.xa_c02434{left:561.762618px;}
.xb_c02434{left:603.162060px;}
.x2_c02434{left:618.826632px;}
.xc_c02434{left:644.651277px;}
.xd_c02434{left:686.140494px;}
.xe_c02434{left:727.545750px;}
.xf_c02434{left:769.034967px;}
.x10_c02434{left:810.434409px;}
.x11_c02434{left:851.923626px;}
.x12_c02434{left:893.412843px;}
.x13_c02434{left:934.902060px;}
.x14_c02434{left:976.391277px;}
.x15_c02434{left:1017.700944px;}
.x16_c02434{left:1059.279936px;}
.x17_c02434{left:1102.215750px;}
.x18_c02434{left:1143.705750px;}
.x19_c02434{left:1182.135750px;}
@media print{
.v3_c02434{vertical-align:-0.960000pt;}
.v0_c02434{vertical-align:0.000000pt;}
.v1_c02434{vertical-align:48.961024pt;}
.v2_c02434{vertical-align:68.800000pt;}
.ls23_c02434{letter-spacing:-0.128000pt;}
.ls22_c02434{letter-spacing:-0.004256pt;}
.ls20_c02434{letter-spacing:0.000000pt;}
.lsa_c02434{letter-spacing:0.021280pt;}
.lsb_c02434{letter-spacing:0.025536pt;}
.ls0_c02434{letter-spacing:0.029280pt;}
.ls6_c02434{letter-spacing:0.029792pt;}
.ls1c_c02434{letter-spacing:0.034048pt;}
.ls7_c02434{letter-spacing:0.038304pt;}
.ls21_c02434{letter-spacing:0.040992pt;}
.ls1e_c02434{letter-spacing:0.042560pt;}
.ls1d_c02434{letter-spacing:0.046816pt;}
.ls1a_c02434{letter-spacing:0.055328pt;}
.lsf_c02434{letter-spacing:0.059584pt;}
.lsd_c02434{letter-spacing:0.076608pt;}
.ls11_c02434{letter-spacing:0.080864pt;}
.ls1_c02434{letter-spacing:0.081984pt;}
.ls2_c02434{letter-spacing:0.085120pt;}
.ls17_c02434{letter-spacing:0.089376pt;}
.ls15_c02434{letter-spacing:0.093632pt;}
.lsc_c02434{letter-spacing:0.097888pt;}
.ls16_c02434{letter-spacing:0.110656pt;}
.ls14_c02434{letter-spacing:0.114912pt;}
.ls10_c02434{letter-spacing:0.119168pt;}
.ls1b_c02434{letter-spacing:0.123424pt;}
.ls13_c02434{letter-spacing:0.127680pt;}
.ls12_c02434{letter-spacing:0.131936pt;}
.ls19_c02434{letter-spacing:0.140448pt;}
.lse_c02434{letter-spacing:0.148960pt;}
.ls1f_c02434{letter-spacing:0.153216pt;}
.ls5_c02434{letter-spacing:0.161728pt;}
.ls3_c02434{letter-spacing:122.160000pt;}
.ls8_c02434{letter-spacing:122.480000pt;}
.ls9_c02434{letter-spacing:122.800000pt;}
.ls4_c02434{letter-spacing:136.880000pt;}
.ls18_c02434{letter-spacing:160.240000pt;}
.ws1a_c02434{word-spacing:-0.234080pt;}
.wsa_c02434{word-spacing:-0.229824pt;}
.ws15_c02434{word-spacing:-0.221312pt;}
.wsf_c02434{word-spacing:-0.212800pt;}
.ws10_c02434{word-spacing:-0.208544pt;}
.ws16_c02434{word-spacing:-0.204288pt;}
.wsd_c02434{word-spacing:-0.200032pt;}
.ws11_c02434{word-spacing:-0.195776pt;}
.ws13_c02434{word-spacing:-0.191520pt;}
.ws9_c02434{word-spacing:-0.178752pt;}
.ws12_c02434{word-spacing:-0.174496pt;}
.ws14_c02434{word-spacing:-0.170240pt;}
.ws4_c02434{word-spacing:-0.165984pt;}
.wse_c02434{word-spacing:-0.161728pt;}
.ws0_c02434{word-spacing:-0.140544pt;}
.wsb_c02434{word-spacing:-0.140448pt;}
.wsc_c02434{word-spacing:-0.136192pt;}
.ws18_c02434{word-spacing:-0.127680pt;}
.ws19_c02434{word-spacing:-0.123424pt;}
.ws6_c02434{word-spacing:-0.119168pt;}
.ws17_c02434{word-spacing:-0.114912pt;}
.ws5_c02434{word-spacing:-0.110656pt;}
.ws8_c02434{word-spacing:-0.106400pt;}
.ws1_c02434{word-spacing:0.000000pt;}
.ws3_c02434{word-spacing:0.040992pt;}
.ws2_c02434{word-spacing:0.052704pt;}
.ws7_c02434{word-spacing:0.217056pt;}
._2e_c02434{margin-left:-15.360000pt;}
._6_c02434{margin-left:-14.400000pt;}
._5_c02434{margin-left:-0.960000pt;}
._9_c02434{width:1.068256pt;}
._f_c02434{width:23.360000pt;}
._1_c02434{width:82.072704pt;}
._2_c02434{width:83.008000pt;}
._15_c02434{width:88.560000pt;}
._17_c02434{width:94.571861pt;}
._16_c02434{width:101.038912pt;}
._b_c02434{width:107.985216pt;}
._1a_c02434{width:109.040000pt;}
._8_c02434{width:115.276544pt;}
._4_c02434{width:122.385216pt;}
._11_c02434{width:123.534784pt;}
._d_c02434{width:136.560000pt;}
._c_c02434{width:137.520000pt;}
._7_c02434{width:145.745216pt;}
._12_c02434{width:160.560000pt;}
._0_c02434{width:172.800000pt;}
._13_c02434{width:183.927104pt;}
._1e_c02434{width:194.634752pt;}
._2f_c02434{width:207.351680pt;}
._28_c02434{width:217.355680pt;}
._29_c02434{width:220.615776pt;}
._19_c02434{width:244.102240pt;}
._a_c02434{width:248.849984pt;}
._26_c02434{width:256.923712pt;}
._33_c02434{width:258.947712pt;}
._24_c02434{width:264.307872pt;}
._37_c02434{width:271.285312pt;}
._2d_c02434{width:291.065344pt;}
._27_c02434{width:295.382784pt;}
._1d_c02434{width:299.982208pt;}
._39_c02434{width:302.303040pt;}
._3_c02434{width:316.994752pt;}
._e_c02434{width:320.665824pt;}
._2b_c02434{width:345.833408pt;}
._22_c02434{width:377.564288pt;}
._2a_c02434{width:381.535136pt;}
._32_c02434{width:386.307968pt;}
._23_c02434{width:395.507584pt;}
._1b_c02434{width:397.469600pt;}
._25_c02434{width:413.759616pt;}
._20_c02434{width:534.098112pt;}
._31_c02434{width:539.289888pt;}
._38_c02434{width:547.717312pt;}
._35_c02434{width:554.313568pt;}
._1c_c02434{width:565.987776pt;}
._14_c02434{width:570.029120pt;}
._21_c02434{width:593.203040pt;}
._1f_c02434{width:666.576480pt;}
._2c_c02434{width:672.287936pt;}
._34_c02434{width:683.278880pt;}
._30_c02434{width:692.627456pt;}
._10_c02434{width:818.457952pt;}
._36_c02434{width:919.595680pt;}
._18_c02434{width:984.899648pt;}
.fs4_c02434{font-size:42.560000pt;}
.fs3_c02434{font-size:53.440000pt;}
.fs1_c02434{font-size:58.560000pt;}
.fs0_c02434{font-size:64.000000pt;}
.fs2_c02434{font-size:96.000000pt;}
.y0_c02434{bottom:0.000000pt;}
.y3_c02434{bottom:67.066811pt;}
.y2_c02434{bottom:100.986227pt;}
.y30_c02434{bottom:130.746667pt;}
.y2f_c02434{bottom:143.626667pt;}
.y2e_c02434{bottom:156.586667pt;}
.y2d_c02434{bottom:169.546667pt;}
.y2c_c02434{bottom:182.426667pt;}
.y2b_c02434{bottom:195.386667pt;}
.y2a_c02434{bottom:208.346667pt;}
.y29_c02434{bottom:221.226667pt;}
.y28_c02434{bottom:234.186667pt;}
.y27_c02434{bottom:247.146667pt;}
.y26_c02434{bottom:260.026667pt;}
.y25_c02434{bottom:272.986667pt;}
.y24_c02434{bottom:285.866667pt;}
.y23_c02434{bottom:298.826667pt;}
.y22_c02434{bottom:311.786667pt;}
.y21_c02434{bottom:324.666667pt;}
.y20_c02434{bottom:337.626667pt;}
.y1f_c02434{bottom:350.586667pt;}
.y1e_c02434{bottom:363.466667pt;}
.y1d_c02434{bottom:376.426667pt;}
.y1c_c02434{bottom:389.386667pt;}
.y1b_c02434{bottom:402.266667pt;}
.y1a_c02434{bottom:415.226667pt;}
.y19_c02434{bottom:428.186667pt;}
.y18_c02434{bottom:441.066667pt;}
.y17_c02434{bottom:454.026667pt;}
.y16_c02434{bottom:466.986667pt;}
.y15_c02434{bottom:479.866667pt;}
.y14_c02434{bottom:492.826667pt;}
.y13_c02434{bottom:505.786667pt;}
.y12_c02434{bottom:518.666667pt;}
.y11_c02434{bottom:531.626667pt;}
.y10_c02434{bottom:544.586667pt;}
.yf_c02434{bottom:557.466667pt;}
.ye_c02434{bottom:570.426667pt;}
.yd_c02434{bottom:583.386667pt;}
.yc_c02434{bottom:596.266667pt;}
.yb_c02434{bottom:609.226667pt;}
.ya_c02434{bottom:622.106667pt;}
.y5_c02434{bottom:635.546667pt;}
.y9_c02434{bottom:652.426667pt;}
.y4_c02434{bottom:657.226667pt;}
.y7_c02434{bottom:657.386411pt;}
.y8_c02434{bottom:657.386667pt;}
.y6_c02434{bottom:669.626667pt;}
.y1_c02434{bottom:732.826667pt;}
.h4_c02434{height:39.030469pt;}
.hb_c02434{height:41.932500pt;}
.h7_c02434{height:42.892500pt;}
.h3_c02434{height:48.294844pt;}
.h6_c02434{height:52.448437pt;}
.h2_c02434{height:64.500000pt;}
.h9_c02434{height:91.852500pt;}
.h8_c02434{height:91.853524pt;}
.h5_c02434{height:96.750000pt;}
.ha_c02434{height:111.692500pt;}
.h1_c02434{height:793.333333pt;}
.h0_c02434{height:793.626667pt;}
.w0_c02434{width:1122.666667pt;}
.x0_c02434{left:0.000000pt;}
.x5_c02434{left:54.387333pt;}
.x4_c02434{left:64.307333pt;}
.x3_c02434{left:94.468389pt;}
.x1_c02434{left:97.427467pt;}
.x6_c02434{left:351.827333pt;}
.x7_c02434{left:388.706637pt;}
.x8_c02434{left:425.585941pt;}
.x9_c02434{left:462.465245pt;}
.xa_c02434{left:499.344549pt;}
.xb_c02434{left:536.144053pt;}
.x2_c02434{left:550.068117pt;}
.xc_c02434{left:573.023357pt;}
.xd_c02434{left:609.902661pt;}
.xe_c02434{left:646.707333pt;}
.xf_c02434{left:683.586637pt;}
.x10_c02434{left:720.386141pt;}
.x11_c02434{left:757.265445pt;}
.x12_c02434{left:794.144749pt;}
.x13_c02434{left:831.024053pt;}
.x14_c02434{left:867.903357pt;}
.x15_c02434{left:904.623061pt;}
.x16_c02434{left:941.582165pt;}
.x17_c02434{left:979.747333pt;}
.x18_c02434{left:1016.627333pt;}
.x19_c02434{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc5fc9555d9eb8ef2f51141b.woff2')format("woff");}.ff1_c02435{font-family:ff1_c02435;line-height:1.311035;font-style:normal;font-weight:normal;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_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff2_c02435{font-family:ff2_c02435;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02435{font-family:ff3_c02435;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_c02435;src:url('chunks/assets/font_b6baece395448e5d4812b37b.woff2')format("woff");}.ff4_c02435{font-family:ff4_c02435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5_c02435{vertical-align:-13.680000px;}
.v4_c02435{vertical-align:-5.400000px;}
.v3_c02435{vertical-align:-1.080000px;}
.v0_c02435{vertical-align:0.000000px;}
.v6_c02435{vertical-align:8.280000px;}
.v1_c02435{vertical-align:55.081152px;}
.v2_c02435{vertical-align:77.400000px;}
.ls1d_c02435{letter-spacing:-0.144000px;}
.ls1c_c02435{letter-spacing:-0.004788px;}
.ls1a_c02435{letter-spacing:0.000000px;}
.ls18_c02435{letter-spacing:0.013176px;}
.ls19_c02435{letter-spacing:0.019764px;}
.ls0_c02435{letter-spacing:0.032940px;}
.ls7_c02435{letter-spacing:0.033516px;}
.ls5_c02435{letter-spacing:0.038304px;}
.ls1b_c02435{letter-spacing:0.046116px;}
.ls8_c02435{letter-spacing:0.047880px;}
.ls10_c02435{letter-spacing:0.052668px;}
.ls12_c02435{letter-spacing:0.057456px;}
.ls17_c02435{letter-spacing:0.067032px;}
.lsd_c02435{letter-spacing:0.071820px;}
.lse_c02435{letter-spacing:0.081396px;}
.lsb_c02435{letter-spacing:0.086184px;}
.lsa_c02435{letter-spacing:0.090972px;}
.ls1_c02435{letter-spacing:0.092232px;}
.ls13_c02435{letter-spacing:0.095760px;}
.ls15_c02435{letter-spacing:0.100548px;}
.ls2_c02435{letter-spacing:0.105336px;}
.ls16_c02435{letter-spacing:0.110124px;}
.ls9_c02435{letter-spacing:0.119700px;}
.lsc_c02435{letter-spacing:0.124488px;}
.ls6_c02435{letter-spacing:0.134064px;}
.ls4_c02435{letter-spacing:0.181944px;}
.ls11_c02435{letter-spacing:137.430000px;}
.ls14_c02435{letter-spacing:137.790000px;}
.lsf_c02435{letter-spacing:138.150000px;}
.ls3_c02435{letter-spacing:153.990000px;}
.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;}
}
.ws6_c02435{word-spacing:-0.225036px;}
.wsc_c02435{word-spacing:-0.215460px;}
.ws9_c02435{word-spacing:-0.210672px;}
.ws13_c02435{word-spacing:-0.201096px;}
.ws4_c02435{word-spacing:-0.196308px;}
.ws12_c02435{word-spacing:-0.191520px;}
.ws11_c02435{word-spacing:-0.186732px;}
.wsa_c02435{word-spacing:-0.181944px;}
.wsb_c02435{word-spacing:-0.177156px;}
.wse_c02435{word-spacing:-0.172368px;}
.wsd_c02435{word-spacing:-0.162792px;}
.ws0_c02435{word-spacing:-0.158112px;}
.ws14_c02435{word-spacing:-0.158004px;}
.ws10_c02435{word-spacing:-0.148428px;}
.wsf_c02435{word-spacing:-0.143640px;}
.ws8_c02435{word-spacing:-0.138852px;}
.ws5_c02435{word-spacing:-0.129276px;}
.ws7_c02435{word-spacing:-0.124488px;}
.ws1_c02435{word-spacing:0.000000px;}
.ws3_c02435{word-spacing:0.046116px;}
.ws2_c02435{word-spacing:0.059292px;}
.ws16_c02435{word-spacing:0.072468px;}
.ws15_c02435{word-spacing:0.079056px;}
._17_c02435{margin-left:-38.520000px;}
._b_c02435{margin-left:-16.920000px;}
._1c_c02435{margin-left:-15.840000px;}
._4_c02435{margin-left:-1.080000px;}
._7_c02435{width:1.139544px;}
._5_c02435{width:26.280000px;}
._2e_c02435{width:28.800000px;}
._2f_c02435{width:81.442224px;}
._1_c02435{width:92.331792px;}
._2_c02435{width:93.384000px;}
._31_c02435{width:105.206112px;}
._33_c02435{width:106.278336px;}
._18_c02435{width:114.622704px;}
._16_c02435{width:116.778600px;}
._24_c02435{width:121.123368px;}
._19_c02435{width:122.563368px;}
._2b_c02435{width:126.194508px;}
._6_c02435{width:129.686112px;}
._c_c02435{width:137.683368px;}
._22_c02435{width:138.933864px;}
._21_c02435{width:153.598068px;}
._26_c02435{width:155.927988px;}
._28_c02435{width:162.578520px;}
._1a_c02435{width:163.603368px;}
._25_c02435{width:164.683368px;}
._1d_c02435{width:179.745588px;}
._1e_c02435{width:191.227212px;}
._0_c02435{width:194.400000px;}
._29_c02435{width:202.000212px;}
._10_c02435{width:264.933684px;}
._a_c02435{width:279.231264px;}
._23_c02435{width:323.330832px;}
._d_c02435{width:327.024468px;}
._2c_c02435{width:335.875392px;}
._9_c02435{width:367.524072px;}
._e_c02435{width:391.334796px;}
._8_c02435{width:406.878732px;}
._15_c02435{width:438.168312px;}
._f_c02435{width:511.175736px;}
._13_c02435{width:561.263004px;}
._14_c02435{width:566.151552px;}
._2a_c02435{width:581.717340px;}
._20_c02435{width:631.282716px;}
._27_c02435{width:667.473120px;}
._1f_c02435{width:670.003272px;}
._12_c02435{width:707.814108px;}
._1b_c02435{width:794.122596px;}
._3_c02435{width:807.102864px;}
._11_c02435{width:955.820844px;}
._34_c02435{width:1043.162352px;}
._32_c02435{width:1145.041416px;}
._2d_c02435{width:1152.720000px;}
._30_c02435{width:1168.801416px;}
.fc0_c02435{color:rgb(0,0,0);}
.fs4_c02435{font-size:47.880000px;}
.fs3_c02435{font-size:60.120000px;}
.fs1_c02435{font-size:65.880000px;}
.fs0_c02435{font-size:72.000000px;}
.fs2_c02435{font-size:108.000000px;}
.y0_c02435{bottom:0.000000px;}
.y3_c02435{bottom:75.450162px;}
.y2_c02435{bottom:113.609505px;}
.y2e_c02435{bottom:137.729631px;}
.y2d_c02435{bottom:159.509559px;}
.y2c_c02435{bottom:181.380072px;}
.y2b_c02435{bottom:203.160000px;}
.y2a_c02435{bottom:225.120000px;}
.y29_c02435{bottom:242.760000px;}
.y28_c02435{bottom:260.400000px;}
.y27_c02435{bottom:278.040000px;}
.y26_c02435{bottom:292.530000px;}
.y25_c02435{bottom:307.110000px;}
.y24_c02435{bottom:321.600000px;}
.y23_c02435{bottom:336.180000px;}
.y22_c02435{bottom:350.760000px;}
.y21_c02435{bottom:365.250000px;}
.y20_c02435{bottom:379.830000px;}
.y1f_c02435{bottom:394.410000px;}
.y1e_c02435{bottom:408.900000px;}
.y1d_c02435{bottom:423.480000px;}
.y1c_c02435{bottom:438.060000px;}
.y1b_c02435{bottom:452.550000px;}
.y1a_c02435{bottom:467.130000px;}
.y19_c02435{bottom:481.710000px;}
.y18_c02435{bottom:496.200000px;}
.y17_c02435{bottom:510.780000px;}
.y16_c02435{bottom:525.360000px;}
.y15_c02435{bottom:539.850000px;}
.y14_c02435{bottom:554.430000px;}
.y13_c02435{bottom:569.010000px;}
.y12_c02435{bottom:583.500000px;}
.y11_c02435{bottom:598.080000px;}
.y10_c02435{bottom:612.660000px;}
.yf_c02435{bottom:627.150000px;}
.ye_c02435{bottom:641.730000px;}
.yd_c02435{bottom:656.310000px;}
.yc_c02435{bottom:670.800000px;}
.yb_c02435{bottom:685.380000px;}
.ya_c02435{bottom:699.870000px;}
.y5_c02435{bottom:714.990000px;}
.y9_c02435{bottom:733.980000px;}
.y4_c02435{bottom:739.380000px;}
.y7_c02435{bottom:739.559712px;}
.y8_c02435{bottom:739.560000px;}
.y6_c02435{bottom:753.330000px;}
.y1_c02435{bottom:824.430000px;}
.h4_c02435{height:43.909277px;}
.hc_c02435{height:46.991602px;}
.hb_c02435{height:47.174062px;}
.h7_c02435{height:48.254063px;}
.h3_c02435{height:54.331699px;}
.h6_c02435{height:59.004492px;}
.hd_c02435{height:64.657617px;}
.h2_c02435{height:72.562500px;}
.h9_c02435{height:103.334062px;}
.h8_c02435{height:103.335215px;}
.h5_c02435{height:108.843750px;}
.ha_c02435{height:125.654063px;}
.h1_c02435{height:892.500000px;}
.h0_c02435{height:892.830000px;}
.w0_c02435{width:1263.000000px;}
.x0_c02435{left:0.000000px;}
.x5_c02435{left:61.185750px;}
.x4_c02435{left:72.345750px;}
.x3_c02435{left:106.276938px;}
.x1_c02435{left:109.605900px;}
.x6_c02435{left:395.805750px;}
.x7_c02435{left:437.294967px;}
.x8_c02435{left:478.784184px;}
.x9_c02435{left:520.273401px;}
.xa_c02435{left:561.762618px;}
.xb_c02435{left:603.162060px;}
.x2_c02435{left:618.826632px;}
.xc_c02435{left:644.651277px;}
.xd_c02435{left:686.140494px;}
.xe_c02435{left:727.545750px;}
.xf_c02435{left:769.034967px;}
.x10_c02435{left:810.434409px;}
.x11_c02435{left:851.923626px;}
.x12_c02435{left:893.412843px;}
.x13_c02435{left:934.902060px;}
.x14_c02435{left:976.391277px;}
.x15_c02435{left:1017.700944px;}
.x16_c02435{left:1059.279936px;}
.x17_c02435{left:1102.215750px;}
.x18_c02435{left:1143.705750px;}
.x19_c02435{left:1182.135750px;}
@media print{
.v5_c02435{vertical-align:-12.160000pt;}
.v4_c02435{vertical-align:-4.800000pt;}
.v3_c02435{vertical-align:-0.960000pt;}
.v0_c02435{vertical-align:0.000000pt;}
.v6_c02435{vertical-align:7.360000pt;}
.v1_c02435{vertical-align:48.961024pt;}
.v2_c02435{vertical-align:68.800000pt;}
.ls1d_c02435{letter-spacing:-0.128000pt;}
.ls1c_c02435{letter-spacing:-0.004256pt;}
.ls1a_c02435{letter-spacing:0.000000pt;}
.ls18_c02435{letter-spacing:0.011712pt;}
.ls19_c02435{letter-spacing:0.017568pt;}
.ls0_c02435{letter-spacing:0.029280pt;}
.ls7_c02435{letter-spacing:0.029792pt;}
.ls5_c02435{letter-spacing:0.034048pt;}
.ls1b_c02435{letter-spacing:0.040992pt;}
.ls8_c02435{letter-spacing:0.042560pt;}
.ls10_c02435{letter-spacing:0.046816pt;}
.ls12_c02435{letter-spacing:0.051072pt;}
.ls17_c02435{letter-spacing:0.059584pt;}
.lsd_c02435{letter-spacing:0.063840pt;}
.lse_c02435{letter-spacing:0.072352pt;}
.lsb_c02435{letter-spacing:0.076608pt;}
.lsa_c02435{letter-spacing:0.080864pt;}
.ls1_c02435{letter-spacing:0.081984pt;}
.ls13_c02435{letter-spacing:0.085120pt;}
.ls15_c02435{letter-spacing:0.089376pt;}
.ls2_c02435{letter-spacing:0.093632pt;}
.ls16_c02435{letter-spacing:0.097888pt;}
.ls9_c02435{letter-spacing:0.106400pt;}
.lsc_c02435{letter-spacing:0.110656pt;}
.ls6_c02435{letter-spacing:0.119168pt;}
.ls4_c02435{letter-spacing:0.161728pt;}
.ls11_c02435{letter-spacing:122.160000pt;}
.ls14_c02435{letter-spacing:122.480000pt;}
.lsf_c02435{letter-spacing:122.800000pt;}
.ls3_c02435{letter-spacing:136.880000pt;}
.ws6_c02435{word-spacing:-0.200032pt;}
.wsc_c02435{word-spacing:-0.191520pt;}
.ws9_c02435{word-spacing:-0.187264pt;}
.ws13_c02435{word-spacing:-0.178752pt;}
.ws4_c02435{word-spacing:-0.174496pt;}
.ws12_c02435{word-spacing:-0.170240pt;}
.ws11_c02435{word-spacing:-0.165984pt;}
.wsa_c02435{word-spacing:-0.161728pt;}
.wsb_c02435{word-spacing:-0.157472pt;}
.wse_c02435{word-spacing:-0.153216pt;}
.wsd_c02435{word-spacing:-0.144704pt;}
.ws0_c02435{word-spacing:-0.140544pt;}
.ws14_c02435{word-spacing:-0.140448pt;}
.ws10_c02435{word-spacing:-0.131936pt;}
.wsf_c02435{word-spacing:-0.127680pt;}
.ws8_c02435{word-spacing:-0.123424pt;}
.ws5_c02435{word-spacing:-0.114912pt;}
.ws7_c02435{word-spacing:-0.110656pt;}
.ws1_c02435{word-spacing:0.000000pt;}
.ws3_c02435{word-spacing:0.040992pt;}
.ws2_c02435{word-spacing:0.052704pt;}
.ws16_c02435{word-spacing:0.064416pt;}
.ws15_c02435{word-spacing:0.070272pt;}
._17_c02435{margin-left:-34.240000pt;}
._b_c02435{margin-left:-15.040000pt;}
._1c_c02435{margin-left:-14.080000pt;}
._4_c02435{margin-left:-0.960000pt;}
._7_c02435{width:1.012928pt;}
._5_c02435{width:23.360000pt;}
._2e_c02435{width:25.600000pt;}
._2f_c02435{width:72.393088pt;}
._1_c02435{width:82.072704pt;}
._2_c02435{width:83.008000pt;}
._31_c02435{width:93.516544pt;}
._33_c02435{width:94.469632pt;}
._18_c02435{width:101.886848pt;}
._16_c02435{width:103.803200pt;}
._24_c02435{width:107.665216pt;}
._19_c02435{width:108.945216pt;}
._2b_c02435{width:112.172896pt;}
._6_c02435{width:115.276544pt;}
._c_c02435{width:122.385216pt;}
._22_c02435{width:123.496768pt;}
._21_c02435{width:136.531616pt;}
._26_c02435{width:138.602656pt;}
._28_c02435{width:144.514240pt;}
._1a_c02435{width:145.425216pt;}
._25_c02435{width:146.385216pt;}
._1d_c02435{width:159.773856pt;}
._1e_c02435{width:169.979744pt;}
._0_c02435{width:172.800000pt;}
._29_c02435{width:179.555744pt;}
._10_c02435{width:235.496608pt;}
._a_c02435{width:248.205568pt;}
._23_c02435{width:287.405184pt;}
._d_c02435{width:290.688416pt;}
._2c_c02435{width:298.555904pt;}
._9_c02435{width:326.688064pt;}
._e_c02435{width:347.853152pt;}
._8_c02435{width:361.669984pt;}
._15_c02435{width:389.482944pt;}
._f_c02435{width:454.378432pt;}
._13_c02435{width:498.900448pt;}
._14_c02435{width:503.245824pt;}
._2a_c02435{width:517.082080pt;}
._20_c02435{width:561.140192pt;}
._27_c02435{width:593.309440pt;}
._1f_c02435{width:595.558464pt;}
._12_c02435{width:629.168096pt;}
._1b_c02435{width:705.886752pt;}
._3_c02435{width:717.424768pt;}
._11_c02435{width:849.618528pt;}
._34_c02435{width:927.255424pt;}
._32_c02435{width:1017.814592pt;}
._2d_c02435{width:1024.640000pt;}
._30_c02435{width:1038.934592pt;}
.fs4_c02435{font-size:42.560000pt;}
.fs3_c02435{font-size:53.440000pt;}
.fs1_c02435{font-size:58.560000pt;}
.fs0_c02435{font-size:64.000000pt;}
.fs2_c02435{font-size:96.000000pt;}
.y0_c02435{bottom:0.000000pt;}
.y3_c02435{bottom:67.066811pt;}
.y2_c02435{bottom:100.986227pt;}
.y2e_c02435{bottom:122.426339pt;}
.y2d_c02435{bottom:141.786275pt;}
.y2c_c02435{bottom:161.226731pt;}
.y2b_c02435{bottom:180.586667pt;}
.y2a_c02435{bottom:200.106667pt;}
.y29_c02435{bottom:215.786667pt;}
.y28_c02435{bottom:231.466667pt;}
.y27_c02435{bottom:247.146667pt;}
.y26_c02435{bottom:260.026667pt;}
.y25_c02435{bottom:272.986667pt;}
.y24_c02435{bottom:285.866667pt;}
.y23_c02435{bottom:298.826667pt;}
.y22_c02435{bottom:311.786667pt;}
.y21_c02435{bottom:324.666667pt;}
.y20_c02435{bottom:337.626667pt;}
.y1f_c02435{bottom:350.586667pt;}
.y1e_c02435{bottom:363.466667pt;}
.y1d_c02435{bottom:376.426667pt;}
.y1c_c02435{bottom:389.386667pt;}
.y1b_c02435{bottom:402.266667pt;}
.y1a_c02435{bottom:415.226667pt;}
.y19_c02435{bottom:428.186667pt;}
.y18_c02435{bottom:441.066667pt;}
.y17_c02435{bottom:454.026667pt;}
.y16_c02435{bottom:466.986667pt;}
.y15_c02435{bottom:479.866667pt;}
.y14_c02435{bottom:492.826667pt;}
.y13_c02435{bottom:505.786667pt;}
.y12_c02435{bottom:518.666667pt;}
.y11_c02435{bottom:531.626667pt;}
.y10_c02435{bottom:544.586667pt;}
.yf_c02435{bottom:557.466667pt;}
.ye_c02435{bottom:570.426667pt;}
.yd_c02435{bottom:583.386667pt;}
.yc_c02435{bottom:596.266667pt;}
.yb_c02435{bottom:609.226667pt;}
.ya_c02435{bottom:622.106667pt;}
.y5_c02435{bottom:635.546667pt;}
.y9_c02435{bottom:652.426667pt;}
.y4_c02435{bottom:657.226667pt;}
.y7_c02435{bottom:657.386411pt;}
.y8_c02435{bottom:657.386667pt;}
.y6_c02435{bottom:669.626667pt;}
.y1_c02435{bottom:732.826667pt;}
.h4_c02435{height:39.030469pt;}
.hc_c02435{height:41.770312pt;}
.hb_c02435{height:41.932500pt;}
.h7_c02435{height:42.892500pt;}
.h3_c02435{height:48.294844pt;}
.h6_c02435{height:52.448437pt;}
.hd_c02435{height:57.473437pt;}
.h2_c02435{height:64.500000pt;}
.h9_c02435{height:91.852500pt;}
.h8_c02435{height:91.853524pt;}
.h5_c02435{height:96.750000pt;}
.ha_c02435{height:111.692500pt;}
.h1_c02435{height:793.333333pt;}
.h0_c02435{height:793.626667pt;}
.w0_c02435{width:1122.666667pt;}
.x0_c02435{left:0.000000pt;}
.x5_c02435{left:54.387333pt;}
.x4_c02435{left:64.307333pt;}
.x3_c02435{left:94.468389pt;}
.x1_c02435{left:97.427467pt;}
.x6_c02435{left:351.827333pt;}
.x7_c02435{left:388.706637pt;}
.x8_c02435{left:425.585941pt;}
.x9_c02435{left:462.465245pt;}
.xa_c02435{left:499.344549pt;}
.xb_c02435{left:536.144053pt;}
.x2_c02435{left:550.068117pt;}
.xc_c02435{left:573.023357pt;}
.xd_c02435{left:609.902661pt;}
.xe_c02435{left:646.707333pt;}
.xf_c02435{left:683.586637pt;}
.x10_c02435{left:720.386141pt;}
.x11_c02435{left:757.265445pt;}
.x12_c02435{left:794.144749pt;}
.x13_c02435{left:831.024053pt;}
.x14_c02435{left:867.903357pt;}
.x15_c02435{left:904.623061pt;}
.x16_c02435{left:941.582165pt;}
.x17_c02435{left:979.747333pt;}
.x18_c02435{left:1016.627333pt;}
.x19_c02435{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e5ea2fecc8c4f181819470e.woff2')format("woff");}.ff1_c02436{font-family:ff1_c02436;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02436;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff2_c02436{font-family:ff2_c02436;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02436{font-family:ff3_c02436;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_c02436;src:url('chunks/assets/font_0bd229c9ea979dd14721e539.woff2')format("woff");}.ff4_c02436{font-family:ff4_c02436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c02436{letter-spacing:0.000000px;}
.lsb_c02436{letter-spacing:0.013176px;}
.ls10_c02436{letter-spacing:0.026352px;}
.ls0_c02436{letter-spacing:0.032940px;}
.lsf_c02436{letter-spacing:0.046116px;}
.ls4_c02436{letter-spacing:0.052704px;}
.ls2_c02436{letter-spacing:0.059292px;}
.lsc_c02436{letter-spacing:0.065880px;}
.ls8_c02436{letter-spacing:0.072468px;}
.lsa_c02436{letter-spacing:0.079056px;}
.lsd_c02436{letter-spacing:0.085644px;}
.ls1_c02436{letter-spacing:0.092232px;}
.ls3_c02436{letter-spacing:0.098820px;}
.ls5_c02436{letter-spacing:0.118584px;}
.ls6_c02436{letter-spacing:0.125172px;}
.ls9_c02436{letter-spacing:0.131760px;}
.ls7_c02436{letter-spacing:0.138348px;}
.sc__c02436{text-shadow:none;}
.sc0_c02436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02436{-webkit-text-stroke:0px transparent;}
.sc0_c02436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02436{word-spacing:-0.158112px;}
.ws9_c02436{word-spacing:-0.046116px;}
.wsb_c02436{word-spacing:-0.039528px;}
.ws8_c02436{word-spacing:-0.032940px;}
.ws7_c02436{word-spacing:-0.026352px;}
.ws5_c02436{word-spacing:-0.006588px;}
.ws1_c02436{word-spacing:0.000000px;}
.ws10_c02436{word-spacing:0.006588px;}
.wsc_c02436{word-spacing:0.013176px;}
.wsa_c02436{word-spacing:0.019764px;}
.wsf_c02436{word-spacing:0.026352px;}
.ws4_c02436{word-spacing:0.032940px;}
.ws6_c02436{word-spacing:0.039528px;}
.ws3_c02436{word-spacing:0.046116px;}
.ws2_c02436{word-spacing:0.059292px;}
.wsd_c02436{word-spacing:0.065880px;}
.wse_c02436{word-spacing:0.079056px;}
._1_c02436{margin-left:-1.278072px;}
._0_c02436{width:194.400000px;}
.fc0_c02436{color:rgb(0,0,0);}
.fs1_c02436{font-size:65.880000px;}
.fs0_c02436{font-size:72.000000px;}
.y0_c02436{bottom:0.000000px;}
.y3_c02436{bottom:75.450162px;}
.y2_c02436{bottom:113.609505px;}
.y1f_c02436{bottom:141.329559px;}
.y1e_c02436{bottom:163.109487px;}
.y1d_c02436{bottom:184.980000px;}
.y1c_c02436{bottom:207.660000px;}
.y1b_c02436{bottom:230.160000px;}
.y1a_c02436{bottom:252.660000px;}
.y19_c02436{bottom:275.340000px;}
.y18_c02436{bottom:297.930000px;}
.y17_c02436{bottom:320.340000px;}
.y16_c02436{bottom:343.020000px;}
.y15_c02436{bottom:365.520000px;}
.y14_c02436{bottom:388.200000px;}
.y13_c02436{bottom:410.790000px;}
.y12_c02436{bottom:433.200000px;}
.y11_c02436{bottom:455.880000px;}
.y10_c02436{bottom:478.470000px;}
.yf_c02436{bottom:500.970000px;}
.ye_c02436{bottom:523.560000px;}
.yd_c02436{bottom:546.150000px;}
.yc_c02436{bottom:568.740000px;}
.yb_c02436{bottom:591.330000px;}
.ya_c02436{bottom:613.830000px;}
.y9_c02436{bottom:636.420000px;}
.y8_c02436{bottom:659.010000px;}
.y7_c02436{bottom:681.600000px;}
.y6_c02436{bottom:704.190000px;}
.y5_c02436{bottom:726.600000px;}
.y4_c02436{bottom:749.190000px;}
.y1_c02436{bottom:824.430000px;}
.h4_c02436{height:43.909277px;}
.h3_c02436{height:54.331699px;}
.h6_c02436{height:64.657617px;}
.h5_c02436{height:66.394687px;}
.h2_c02436{height:72.562500px;}
.h1_c02436{height:892.500000px;}
.h0_c02436{height:892.830000px;}
.w0_c02436{width:1263.000000px;}
.x0_c02436{left:0.000000px;}
.x3_c02436{left:106.276938px;}
.x1_c02436{left:109.605900px;}
.x4_c02436{left:291.405750px;}
.x2_c02436{left:618.826632px;}
@media print{
.v0_c02436{vertical-align:0.000000pt;}
.lse_c02436{letter-spacing:0.000000pt;}
.lsb_c02436{letter-spacing:0.011712pt;}
.ls10_c02436{letter-spacing:0.023424pt;}
.ls0_c02436{letter-spacing:0.029280pt;}
.lsf_c02436{letter-spacing:0.040992pt;}
.ls4_c02436{letter-spacing:0.046848pt;}
.ls2_c02436{letter-spacing:0.052704pt;}
.lsc_c02436{letter-spacing:0.058560pt;}
.ls8_c02436{letter-spacing:0.064416pt;}
.lsa_c02436{letter-spacing:0.070272pt;}
.lsd_c02436{letter-spacing:0.076128pt;}
.ls1_c02436{letter-spacing:0.081984pt;}
.ls3_c02436{letter-spacing:0.087840pt;}
.ls5_c02436{letter-spacing:0.105408pt;}
.ls6_c02436{letter-spacing:0.111264pt;}
.ls9_c02436{letter-spacing:0.117120pt;}
.ls7_c02436{letter-spacing:0.122976pt;}
.ws0_c02436{word-spacing:-0.140544pt;}
.ws9_c02436{word-spacing:-0.040992pt;}
.wsb_c02436{word-spacing:-0.035136pt;}
.ws8_c02436{word-spacing:-0.029280pt;}
.ws7_c02436{word-spacing:-0.023424pt;}
.ws5_c02436{word-spacing:-0.005856pt;}
.ws1_c02436{word-spacing:0.000000pt;}
.ws10_c02436{word-spacing:0.005856pt;}
.wsc_c02436{word-spacing:0.011712pt;}
.wsa_c02436{word-spacing:0.017568pt;}
.wsf_c02436{word-spacing:0.023424pt;}
.ws4_c02436{word-spacing:0.029280pt;}
.ws6_c02436{word-spacing:0.035136pt;}
.ws3_c02436{word-spacing:0.040992pt;}
.ws2_c02436{word-spacing:0.052704pt;}
.wsd_c02436{word-spacing:0.058560pt;}
.wse_c02436{word-spacing:0.070272pt;}
._1_c02436{margin-left:-1.136064pt;}
._0_c02436{width:172.800000pt;}
.fs1_c02436{font-size:58.560000pt;}
.fs0_c02436{font-size:64.000000pt;}
.y0_c02436{bottom:0.000000pt;}
.y3_c02436{bottom:67.066811pt;}
.y2_c02436{bottom:100.986227pt;}
.y1f_c02436{bottom:125.626275pt;}
.y1e_c02436{bottom:144.986211pt;}
.y1d_c02436{bottom:164.426667pt;}
.y1c_c02436{bottom:184.586667pt;}
.y1b_c02436{bottom:204.586667pt;}
.y1a_c02436{bottom:224.586667pt;}
.y19_c02436{bottom:244.746667pt;}
.y18_c02436{bottom:264.826667pt;}
.y17_c02436{bottom:284.746667pt;}
.y16_c02436{bottom:304.906667pt;}
.y15_c02436{bottom:324.906667pt;}
.y14_c02436{bottom:345.066667pt;}
.y13_c02436{bottom:365.146667pt;}
.y12_c02436{bottom:385.066667pt;}
.y11_c02436{bottom:405.226667pt;}
.y10_c02436{bottom:425.306667pt;}
.yf_c02436{bottom:445.306667pt;}
.ye_c02436{bottom:465.386667pt;}
.yd_c02436{bottom:485.466667pt;}
.yc_c02436{bottom:505.546667pt;}
.yb_c02436{bottom:525.626667pt;}
.ya_c02436{bottom:545.626667pt;}
.y9_c02436{bottom:565.706667pt;}
.y8_c02436{bottom:585.786667pt;}
.y7_c02436{bottom:605.866667pt;}
.y6_c02436{bottom:625.946667pt;}
.y5_c02436{bottom:645.866667pt;}
.y4_c02436{bottom:665.946667pt;}
.y1_c02436{bottom:732.826667pt;}
.h4_c02436{height:39.030469pt;}
.h3_c02436{height:48.294844pt;}
.h6_c02436{height:57.473437pt;}
.h5_c02436{height:59.017500pt;}
.h2_c02436{height:64.500000pt;}
.h1_c02436{height:793.333333pt;}
.h0_c02436{height:793.626667pt;}
.w0_c02436{width:1122.666667pt;}
.x0_c02436{left:0.000000pt;}
.x3_c02436{left:94.468389pt;}
.x1_c02436{left:97.427467pt;}
.x4_c02436{left:259.027333pt;}
.x2_c02436{left:550.068117pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2539c08c2c40e0e199915c0.woff2')format("woff");}.ff1_c02437{font-family:ff1_c02437;line-height:1.311035;font-style:normal;font-weight:normal;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_fb1ff65aae3f9134bb5f393a.woff2')format("woff");}.ff2_c02437{font-family:ff2_c02437;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02437{font-family:ff3_c02437;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_c02437;src:url('chunks/assets/font_5cbde7ef7c59020997788373.woff2')format("woff");}.ff4_c02437{font-family:ff4_c02437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4_c02437{vertical-align:-1.080000px;}
.v0_c02437{vertical-align:0.000000px;}
.v1_c02437{vertical-align:55.081152px;}
.v2_c02437{vertical-align:60.840000px;}
.v3_c02437{vertical-align:76.320000px;}
.ls23_c02437{letter-spacing:-0.176904px;}
.ls24_c02437{letter-spacing:-0.144000px;}
.ls21_c02437{letter-spacing:-0.019152px;}
.ls1e_c02437{letter-spacing:0.000000px;}
.ls20_c02437{letter-spacing:0.007200px;}
.ls2_c02437{letter-spacing:0.014400px;}
.ls4_c02437{letter-spacing:0.021600px;}
.ls3_c02437{letter-spacing:0.028800px;}
.ls0_c02437{letter-spacing:0.032940px;}
.ls22_c02437{letter-spacing:0.033516px;}
.ls5_c02437{letter-spacing:0.033552px;}
.ls19_c02437{letter-spacing:0.043092px;}
.ls1f_c02437{letter-spacing:0.046116px;}
.lsc_c02437{letter-spacing:0.047880px;}
.ls6_c02437{letter-spacing:0.050328px;}
.ls18_c02437{letter-spacing:0.052668px;}
.ls1a_c02437{letter-spacing:0.057456px;}
.ls17_c02437{letter-spacing:0.062244px;}
.lsd_c02437{letter-spacing:0.067032px;}
.ls13_c02437{letter-spacing:0.076608px;}
.ls1d_c02437{letter-spacing:0.081396px;}
.ls9_c02437{letter-spacing:0.086184px;}
.ls10_c02437{letter-spacing:0.090972px;}
.ls1_c02437{letter-spacing:0.092232px;}
.ls11_c02437{letter-spacing:0.095760px;}
.ls1b_c02437{letter-spacing:0.100548px;}
.ls15_c02437{letter-spacing:0.105336px;}
.ls16_c02437{letter-spacing:0.110124px;}
.lsa_c02437{letter-spacing:0.114912px;}
.ls12_c02437{letter-spacing:0.119700px;}
.ls7_c02437{letter-spacing:0.124488px;}
.lsb_c02437{letter-spacing:0.134064px;}
.lsf_c02437{letter-spacing:0.181944px;}
.ls1c_c02437{letter-spacing:137.430000px;}
.ls8_c02437{letter-spacing:137.790000px;}
.lse_c02437{letter-spacing:138.150000px;}
.ls14_c02437{letter-spacing:153.990000px;}
.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;}
}
.ws13_c02437{word-spacing:-0.225036px;}
.ws11_c02437{word-spacing:-0.215460px;}
.ws17_c02437{word-spacing:-0.210672px;}
.wsb_c02437{word-spacing:-0.208800px;}
.ws12_c02437{word-spacing:-0.205884px;}
.ws1c_c02437{word-spacing:-0.201096px;}
.ws19_c02437{word-spacing:-0.196308px;}
.ws1f_c02437{word-spacing:-0.191520px;}
.ws16_c02437{word-spacing:-0.181944px;}
.ws20_c02437{word-spacing:-0.177156px;}
.ws21_c02437{word-spacing:-0.172368px;}
.ws18_c02437{word-spacing:-0.167580px;}
.ws0_c02437{word-spacing:-0.158112px;}
.ws1a_c02437{word-spacing:-0.153216px;}
.ws1e_c02437{word-spacing:-0.148428px;}
.ws1b_c02437{word-spacing:-0.143640px;}
.ws10_c02437{word-spacing:-0.142596px;}
.ws14_c02437{word-spacing:-0.138852px;}
.ws1d_c02437{word-spacing:-0.134064px;}
.wsf_c02437{word-spacing:-0.125820px;}
.wse_c02437{word-spacing:-0.115200px;}
.ws4_c02437{word-spacing:-0.086400px;}
.wsc_c02437{word-spacing:-0.079200px;}
.ws5_c02437{word-spacing:-0.057600px;}
.wsd_c02437{word-spacing:-0.028800px;}
.wsa_c02437{word-spacing:-0.014400px;}
.ws1_c02437{word-spacing:0.000000px;}
.ws3_c02437{word-spacing:0.046116px;}
.ws2_c02437{word-spacing:0.059292px;}
.ws15_c02437{word-spacing:0.201096px;}
.ws8_c02437{word-spacing:7.891200px;}
.ws9_c02437{word-spacing:7.920000px;}
.ws7_c02437{word-spacing:8.136000px;}
.ws6_c02437{word-spacing:8.280000px;}
._15_c02437{margin-left:-15.768000px;}
._1_c02437{margin-left:-1.152000px;}
._1f_c02437{width:25.885368px;}
._4_c02437{width:78.670692px;}
._5_c02437{width:79.704000px;}
._3_c02437{width:96.650568px;}
._a_c02437{width:99.163368px;}
._2_c02437{width:105.652008px;}
._10_c02437{width:115.119756px;}
._7_c02437{width:121.483368px;}
._8_c02437{width:122.563368px;}
._c_c02437{width:129.324168px;}
._22_c02437{width:130.586688px;}
._24_c02437{width:132.483924px;}
._9_c02437{width:137.683368px;}
._18_c02437{width:138.904632px;}
._b_c02437{width:140.162040px;}
._1b_c02437{width:143.671572px;}
._11_c02437{width:153.630000px;}
._1a_c02437{width:154.816632px;}
._12_c02437{width:164.430000px;}
._16_c02437{width:180.990000px;}
._29_c02437{width:188.113104px;}
._21_c02437{width:190.140336px;}
._0_c02437{width:194.400000px;}
._2a_c02437{width:219.436200px;}
._13_c02437{width:225.782892px;}
._f_c02437{width:231.143544px;}
._20_c02437{width:234.364896px;}
._2c_c02437{width:264.866652px;}
._2d_c02437{width:288.170532px;}
._1c_c02437{width:307.879848px;}
._19_c02437{width:323.869860px;}
._1d_c02437{width:335.276784px;}
._26_c02437{width:430.850052px;}
._6_c02437{width:436.076640px;}
._14_c02437{width:447.749784px;}
._23_c02437{width:449.214228px;}
._27_c02437{width:553.717116px;}
._25_c02437{width:564.071364px;}
._1e_c02437{width:604.987704px;}
._17_c02437{width:618.135552px;}
._28_c02437{width:628.055604px;}
._e_c02437{width:640.816308px;}
._2b_c02437{width:647.291592px;}
._d_c02437{width:691.406316px;}
.fc0_c02437{color:rgb(0,0,0);}
.fs5_c02437{font-size:42.120000px;}
.fs4_c02437{font-size:47.880000px;}
.fs3_c02437{font-size:60.120000px;}
.fs1_c02437{font-size:65.880000px;}
.fs0_c02437{font-size:72.000000px;}
.fs2_c02437{font-size:83.880000px;}
.y0_c02437{bottom:0.000000px;}
.y3_c02437{bottom:75.450162px;}
.y2_c02437{bottom:113.609505px;}
.y2c_c02437{bottom:146.460000px;}
.y2b_c02437{bottom:160.950000px;}
.y2a_c02437{bottom:175.530000px;}
.y29_c02437{bottom:190.110000px;}
.y28_c02437{bottom:204.600000px;}
.y27_c02437{bottom:219.180000px;}
.y26_c02437{bottom:233.760000px;}
.y25_c02437{bottom:248.250000px;}
.y24_c02437{bottom:262.830000px;}
.y23_c02437{bottom:277.320000px;}
.y22_c02437{bottom:291.900000px;}
.y21_c02437{bottom:306.480000px;}
.y20_c02437{bottom:320.970000px;}
.y1f_c02437{bottom:335.550000px;}
.y1e_c02437{bottom:350.130000px;}
.y1d_c02437{bottom:364.620000px;}
.y1c_c02437{bottom:379.200000px;}
.y1b_c02437{bottom:393.780000px;}
.y1a_c02437{bottom:408.270000px;}
.y19_c02437{bottom:422.850000px;}
.y18_c02437{bottom:437.430000px;}
.y17_c02437{bottom:451.920000px;}
.y16_c02437{bottom:466.500000px;}
.y15_c02437{bottom:481.080000px;}
.y14_c02437{bottom:495.570000px;}
.y13_c02437{bottom:510.150000px;}
.y12_c02437{bottom:524.730000px;}
.y11_c02437{bottom:539.220000px;}
.yc_c02437{bottom:554.340000px;}
.yb_c02437{bottom:576.300000px;}
.y10_c02437{bottom:594.840000px;}
.ye_c02437{bottom:598.709712px;}
.yf_c02437{bottom:598.710000px;}
.ya_c02437{bottom:604.020000px;}
.yd_c02437{bottom:612.480000px;}
.y9_c02437{bottom:630.929856px;}
.y8_c02437{bottom:653.250000px;}
.y7_c02437{bottom:677.190000px;}
.y6_c02437{bottom:701.040000px;}
.y5_c02437{bottom:724.800000px;}
.y4_c02437{bottom:748.380000px;}
.y1_c02437{bottom:824.430000px;}
.h4_c02437{height:43.909277px;}
.he_c02437{height:47.174063px;}
.hf_c02437{height:47.174662px;}
.h9_c02437{height:48.254063px;}
.h3_c02437{height:54.331699px;}
.h8_c02437{height:59.004492px;}
.h6_c02437{height:66.394687px;}
.h5_c02437{height:70.664062px;}
.h2_c02437{height:72.562500px;}
.h7_c02437{height:84.535312px;}
.hc_c02437{height:103.289063px;}
.hb_c02437{height:103.334062px;}
.ha_c02437{height:103.335215px;}
.hd_c02437{height:118.769063px;}
.h1_c02437{height:892.500000px;}
.h0_c02437{height:892.830000px;}
.w0_c02437{width:1263.000000px;}
.x0_c02437{left:0.000000px;}
.x8_c02437{left:61.185750px;}
.x7_c02437{left:77.025900px;}
.x3_c02437{left:106.276938px;}
.x1_c02437{left:109.605900px;}
.x6_c02437{left:159.825750px;}
.x4_c02437{left:173.325750px;}
.x5_c02437{left:392.925750px;}
.xa_c02437{left:395.895471px;}
.x9_c02437{left:399.135750px;}
.xb_c02437{left:437.294913px;}
.xc_c02437{left:478.784130px;}
.xd_c02437{left:520.273347px;}
.xe_c02437{left:561.762564px;}
.xf_c02437{left:603.162006px;}
.x2_c02437{left:618.826632px;}
.x10_c02437{left:644.655750px;}
.x11_c02437{left:686.144967px;}
.x12_c02437{left:727.545750px;}
.x13_c02437{left:769.034967px;}
.x14_c02437{left:810.434409px;}
.x15_c02437{left:851.923626px;}
.x16_c02437{left:893.412843px;}
.x17_c02437{left:934.902060px;}
.x18_c02437{left:976.391277px;}
.x19_c02437{left:1017.700944px;}
.x1a_c02437{left:1059.281133px;}
.x1b_c02437{left:1102.215750px;}
.x1c_c02437{left:1143.705750px;}
.x1d_c02437{left:1182.135750px;}
@media print{
.v4_c02437{vertical-align:-0.960000pt;}
.v0_c02437{vertical-align:0.000000pt;}
.v1_c02437{vertical-align:48.961024pt;}
.v2_c02437{vertical-align:54.080000pt;}
.v3_c02437{vertical-align:67.840000pt;}
.ls23_c02437{letter-spacing:-0.157248pt;}
.ls24_c02437{letter-spacing:-0.128000pt;}
.ls21_c02437{letter-spacing:-0.017024pt;}
.ls1e_c02437{letter-spacing:0.000000pt;}
.ls20_c02437{letter-spacing:0.006400pt;}
.ls2_c02437{letter-spacing:0.012800pt;}
.ls4_c02437{letter-spacing:0.019200pt;}
.ls3_c02437{letter-spacing:0.025600pt;}
.ls0_c02437{letter-spacing:0.029280pt;}
.ls22_c02437{letter-spacing:0.029792pt;}
.ls5_c02437{letter-spacing:0.029824pt;}
.ls19_c02437{letter-spacing:0.038304pt;}
.ls1f_c02437{letter-spacing:0.040992pt;}
.lsc_c02437{letter-spacing:0.042560pt;}
.ls6_c02437{letter-spacing:0.044736pt;}
.ls18_c02437{letter-spacing:0.046816pt;}
.ls1a_c02437{letter-spacing:0.051072pt;}
.ls17_c02437{letter-spacing:0.055328pt;}
.lsd_c02437{letter-spacing:0.059584pt;}
.ls13_c02437{letter-spacing:0.068096pt;}
.ls1d_c02437{letter-spacing:0.072352pt;}
.ls9_c02437{letter-spacing:0.076608pt;}
.ls10_c02437{letter-spacing:0.080864pt;}
.ls1_c02437{letter-spacing:0.081984pt;}
.ls11_c02437{letter-spacing:0.085120pt;}
.ls1b_c02437{letter-spacing:0.089376pt;}
.ls15_c02437{letter-spacing:0.093632pt;}
.ls16_c02437{letter-spacing:0.097888pt;}
.lsa_c02437{letter-spacing:0.102144pt;}
.ls12_c02437{letter-spacing:0.106400pt;}
.ls7_c02437{letter-spacing:0.110656pt;}
.lsb_c02437{letter-spacing:0.119168pt;}
.lsf_c02437{letter-spacing:0.161728pt;}
.ls1c_c02437{letter-spacing:122.160000pt;}
.ls8_c02437{letter-spacing:122.480000pt;}
.lse_c02437{letter-spacing:122.800000pt;}
.ls14_c02437{letter-spacing:136.880000pt;}
.ws13_c02437{word-spacing:-0.200032pt;}
.ws11_c02437{word-spacing:-0.191520pt;}
.ws17_c02437{word-spacing:-0.187264pt;}
.wsb_c02437{word-spacing:-0.185600pt;}
.ws12_c02437{word-spacing:-0.183008pt;}
.ws1c_c02437{word-spacing:-0.178752pt;}
.ws19_c02437{word-spacing:-0.174496pt;}
.ws1f_c02437{word-spacing:-0.170240pt;}
.ws16_c02437{word-spacing:-0.161728pt;}
.ws20_c02437{word-spacing:-0.157472pt;}
.ws21_c02437{word-spacing:-0.153216pt;}
.ws18_c02437{word-spacing:-0.148960pt;}
.ws0_c02437{word-spacing:-0.140544pt;}
.ws1a_c02437{word-spacing:-0.136192pt;}
.ws1e_c02437{word-spacing:-0.131936pt;}
.ws1b_c02437{word-spacing:-0.127680pt;}
.ws10_c02437{word-spacing:-0.126752pt;}
.ws14_c02437{word-spacing:-0.123424pt;}
.ws1d_c02437{word-spacing:-0.119168pt;}
.wsf_c02437{word-spacing:-0.111840pt;}
.wse_c02437{word-spacing:-0.102400pt;}
.ws4_c02437{word-spacing:-0.076800pt;}
.wsc_c02437{word-spacing:-0.070400pt;}
.ws5_c02437{word-spacing:-0.051200pt;}
.wsd_c02437{word-spacing:-0.025600pt;}
.wsa_c02437{word-spacing:-0.012800pt;}
.ws1_c02437{word-spacing:0.000000pt;}
.ws3_c02437{word-spacing:0.040992pt;}
.ws2_c02437{word-spacing:0.052704pt;}
.ws15_c02437{word-spacing:0.178752pt;}
.ws8_c02437{word-spacing:7.014400pt;}
.ws9_c02437{word-spacing:7.040000pt;}
.ws7_c02437{word-spacing:7.232000pt;}
.ws6_c02437{word-spacing:7.360000pt;}
._15_c02437{margin-left:-14.016000pt;}
._1_c02437{margin-left:-1.024000pt;}
._1f_c02437{width:23.009216pt;}
._4_c02437{width:69.929504pt;}
._5_c02437{width:70.848000pt;}
._3_c02437{width:85.911616pt;}
._a_c02437{width:88.145216pt;}
._2_c02437{width:93.912896pt;}
._10_c02437{width:102.328672pt;}
._7_c02437{width:107.985216pt;}
._8_c02437{width:108.945216pt;}
._c_c02437{width:114.954816pt;}
._22_c02437{width:116.077056pt;}
._24_c02437{width:117.763488pt;}
._9_c02437{width:122.385216pt;}
._18_c02437{width:123.470784pt;}
._b_c02437{width:124.588480pt;}
._1b_c02437{width:127.708064pt;}
._11_c02437{width:136.560000pt;}
._1a_c02437{width:137.614784pt;}
._12_c02437{width:146.160000pt;}
._16_c02437{width:160.880000pt;}
._29_c02437{width:167.211648pt;}
._21_c02437{width:169.013632pt;}
._0_c02437{width:172.800000pt;}
._2a_c02437{width:195.054400pt;}
._13_c02437{width:200.695904pt;}
._f_c02437{width:205.460928pt;}
._20_c02437{width:208.324352pt;}
._2c_c02437{width:235.437024pt;}
._2d_c02437{width:256.151584pt;}
._1c_c02437{width:273.670976pt;}
._19_c02437{width:287.884320pt;}
._1d_c02437{width:298.023808pt;}
._26_c02437{width:382.977824pt;}
._6_c02437{width:387.623680pt;}
._14_c02437{width:397.999808pt;}
._23_c02437{width:399.301536pt;}
._27_c02437{width:492.192992pt;}
._25_c02437{width:501.396768pt;}
._1e_c02437{width:537.766848pt;}
._17_c02437{width:549.453824pt;}
._28_c02437{width:558.271648pt;}
._e_c02437{width:569.614496pt;}
._2b_c02437{width:575.370304pt;}
._d_c02437{width:614.583392pt;}
.fs5_c02437{font-size:37.440000pt;}
.fs4_c02437{font-size:42.560000pt;}
.fs3_c02437{font-size:53.440000pt;}
.fs1_c02437{font-size:58.560000pt;}
.fs0_c02437{font-size:64.000000pt;}
.fs2_c02437{font-size:74.560000pt;}
.y0_c02437{bottom:0.000000pt;}
.y3_c02437{bottom:67.066811pt;}
.y2_c02437{bottom:100.986227pt;}
.y2c_c02437{bottom:130.186667pt;}
.y2b_c02437{bottom:143.066667pt;}
.y2a_c02437{bottom:156.026667pt;}
.y29_c02437{bottom:168.986667pt;}
.y28_c02437{bottom:181.866667pt;}
.y27_c02437{bottom:194.826667pt;}
.y26_c02437{bottom:207.786667pt;}
.y25_c02437{bottom:220.666667pt;}
.y24_c02437{bottom:233.626667pt;}
.y23_c02437{bottom:246.506667pt;}
.y22_c02437{bottom:259.466667pt;}
.y21_c02437{bottom:272.426667pt;}
.y20_c02437{bottom:285.306667pt;}
.y1f_c02437{bottom:298.266667pt;}
.y1e_c02437{bottom:311.226667pt;}
.y1d_c02437{bottom:324.106667pt;}
.y1c_c02437{bottom:337.066667pt;}
.y1b_c02437{bottom:350.026667pt;}
.y1a_c02437{bottom:362.906667pt;}
.y19_c02437{bottom:375.866667pt;}
.y18_c02437{bottom:388.826667pt;}
.y17_c02437{bottom:401.706667pt;}
.y16_c02437{bottom:414.666667pt;}
.y15_c02437{bottom:427.626667pt;}
.y14_c02437{bottom:440.506667pt;}
.y13_c02437{bottom:453.466667pt;}
.y12_c02437{bottom:466.426667pt;}
.y11_c02437{bottom:479.306667pt;}
.yc_c02437{bottom:492.746667pt;}
.yb_c02437{bottom:512.266667pt;}
.y10_c02437{bottom:528.746667pt;}
.ye_c02437{bottom:532.186411pt;}
.yf_c02437{bottom:532.186667pt;}
.ya_c02437{bottom:536.906667pt;}
.yd_c02437{bottom:544.426667pt;}
.y9_c02437{bottom:560.826539pt;}
.y8_c02437{bottom:580.666667pt;}
.y7_c02437{bottom:601.946667pt;}
.y6_c02437{bottom:623.146667pt;}
.y5_c02437{bottom:644.266667pt;}
.y4_c02437{bottom:665.226667pt;}
.y1_c02437{bottom:732.826667pt;}
.h4_c02437{height:39.030469pt;}
.he_c02437{height:41.932500pt;}
.hf_c02437{height:41.933033pt;}
.h9_c02437{height:42.892500pt;}
.h3_c02437{height:48.294844pt;}
.h8_c02437{height:52.448437pt;}
.h6_c02437{height:59.017500pt;}
.h5_c02437{height:62.812500pt;}
.h2_c02437{height:64.500000pt;}
.h7_c02437{height:75.142500pt;}
.hc_c02437{height:91.812500pt;}
.hb_c02437{height:91.852500pt;}
.ha_c02437{height:91.853524pt;}
.hd_c02437{height:105.572500pt;}
.h1_c02437{height:793.333333pt;}
.h0_c02437{height:793.626667pt;}
.w0_c02437{width:1122.666667pt;}
.x0_c02437{left:0.000000pt;}
.x8_c02437{left:54.387333pt;}
.x7_c02437{left:68.467467pt;}
.x3_c02437{left:94.468389pt;}
.x1_c02437{left:97.427467pt;}
.x6_c02437{left:142.067333pt;}
.x4_c02437{left:154.067333pt;}
.x5_c02437{left:349.267333pt;}
.xa_c02437{left:351.907085pt;}
.x9_c02437{left:354.787333pt;}
.xb_c02437{left:388.706589pt;}
.xc_c02437{left:425.585893pt;}
.xd_c02437{left:462.465197pt;}
.xe_c02437{left:499.344501pt;}
.xf_c02437{left:536.144005pt;}
.x2_c02437{left:550.068117pt;}
.x10_c02437{left:573.027333pt;}
.x11_c02437{left:609.906637pt;}
.x12_c02437{left:646.707333pt;}
.x13_c02437{left:683.586637pt;}
.x14_c02437{left:720.386141pt;}
.x15_c02437{left:757.265445pt;}
.x16_c02437{left:794.144749pt;}
.x17_c02437{left:831.024053pt;}
.x18_c02437{left:867.903357pt;}
.x19_c02437{left:904.623061pt;}
.x1a_c02437{left:941.583229pt;}
.x1b_c02437{left:979.747333pt;}
.x1c_c02437{left:1016.627333pt;}
.x1d_c02437{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa703178b839bdb0fb163c90.woff2')format("woff");}.ff1_c02438{font-family:ff1_c02438;line-height:1.311035;font-style:normal;font-weight:normal;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_aa7333877a38f3e3b00b8c56.woff2')format("woff");}.ff2_c02438{font-family:ff2_c02438;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02438{font-family:ff3_c02438;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_c02438;src:url('chunks/assets/font_94016fb0e9c6d7c66d353e5a.woff2')format("woff");}.ff4_c02438{font-family:ff4_c02438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4_c02438{vertical-align:-1.080000px;}
.v0_c02438{vertical-align:0.000000px;}
.v1_c02438{vertical-align:55.081152px;}
.v2_c02438{vertical-align:60.840000px;}
.v3_c02438{vertical-align:76.320000px;}
.ls23_c02438{letter-spacing:-0.176904px;}
.ls24_c02438{letter-spacing:-0.144000px;}
.ls22_c02438{letter-spacing:-0.019152px;}
.ls20_c02438{letter-spacing:0.000000px;}
.lse_c02438{letter-spacing:0.023940px;}
.ls10_c02438{letter-spacing:0.028728px;}
.ls0_c02438{letter-spacing:0.032940px;}
.lsc_c02438{letter-spacing:0.033516px;}
.ls2_c02438{letter-spacing:0.033552px;}
.ls1e_c02438{letter-spacing:0.038304px;}
.lsd_c02438{letter-spacing:0.043092px;}
.ls21_c02438{letter-spacing:0.046116px;}
.ls3_c02438{letter-spacing:0.050328px;}
.ls1f_c02438{letter-spacing:0.052668px;}
.ls1c_c02438{letter-spacing:0.062244px;}
.ls13_c02438{letter-spacing:0.067032px;}
.ls9_c02438{letter-spacing:0.071820px;}
.ls15_c02438{letter-spacing:0.090972px;}
.ls1_c02438{letter-spacing:0.092232px;}
.lsb_c02438{letter-spacing:0.095760px;}
.ls1a_c02438{letter-spacing:0.100548px;}
.ls4_c02438{letter-spacing:0.105336px;}
.ls11_c02438{letter-spacing:0.110124px;}
.ls19_c02438{letter-spacing:0.124488px;}
.ls18_c02438{letter-spacing:0.129276px;}
.ls14_c02438{letter-spacing:0.134064px;}
.ls1d_c02438{letter-spacing:0.138852px;}
.ls17_c02438{letter-spacing:0.143640px;}
.ls16_c02438{letter-spacing:0.148428px;}
.ls1b_c02438{letter-spacing:0.158004px;}
.ls12_c02438{letter-spacing:0.167580px;}
.ls8_c02438{letter-spacing:0.181944px;}
.ls5_c02438{letter-spacing:137.430000px;}
.ls7_c02438{letter-spacing:137.790000px;}
.lsa_c02438{letter-spacing:138.150000px;}
.ls6_c02438{letter-spacing:153.990000px;}
.lsf_c02438{letter-spacing:180.270000px;}
.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;}
}
.wse_c02438{word-spacing:-0.258552px;}
.ws18_c02438{word-spacing:-0.248976px;}
.ws13_c02438{word-spacing:-0.239400px;}
.ws14_c02438{word-spacing:-0.234612px;}
.ws19_c02438{word-spacing:-0.229824px;}
.ws11_c02438{word-spacing:-0.225036px;}
.ws15_c02438{word-spacing:-0.220248px;}
.ws16_c02438{word-spacing:-0.215460px;}
.wsd_c02438{word-spacing:-0.201096px;}
.ws6_c02438{word-spacing:-0.196308px;}
.ws17_c02438{word-spacing:-0.191520px;}
.ws8_c02438{word-spacing:-0.186732px;}
.ws12_c02438{word-spacing:-0.181944px;}
.ws7_c02438{word-spacing:-0.162792px;}
.ws0_c02438{word-spacing:-0.158112px;}
.wsf_c02438{word-spacing:-0.158004px;}
.ws10_c02438{word-spacing:-0.153216px;}
.ws1b_c02438{word-spacing:-0.143640px;}
.ws5_c02438{word-spacing:-0.142596px;}
.wsa_c02438{word-spacing:-0.134064px;}
.ws1a_c02438{word-spacing:-0.129276px;}
.ws4_c02438{word-spacing:-0.125820px;}
.ws9_c02438{word-spacing:-0.124488px;}
.wsc_c02438{word-spacing:-0.119700px;}
.ws1_c02438{word-spacing:0.000000px;}
.ws3_c02438{word-spacing:0.046116px;}
.ws2_c02438{word-spacing:0.059292px;}
.wsb_c02438{word-spacing:0.244188px;}
._8_c02438{margin-left:-16.200000px;}
._5_c02438{margin-left:-1.374156px;}
._10_c02438{width:1.201788px;}
._12_c02438{width:25.513020px;}
._d_c02438{width:26.574156px;}
._3_c02438{width:78.670692px;}
._4_c02438{width:79.704000px;}
._2_c02438{width:96.650568px;}
._1_c02438{width:105.652008px;}
._1e_c02438{width:120.763368px;}
._9_c02438{width:121.843368px;}
._b_c02438{width:129.686112px;}
._7_c02438{width:137.683368px;}
._15_c02438{width:138.922776px;}
._e_c02438{width:153.063612px;}
._1b_c02438{width:154.196388px;}
._a_c02438{width:163.603368px;}
._f_c02438{width:181.196388px;}
._0_c02438{width:194.400000px;}
._1f_c02438{width:218.964096px;}
._16_c02438{width:223.412148px;}
._2f_c02438{width:233.270640px;}
._29_c02438{width:244.819296px;}
._2a_c02438{width:248.486904px;}
._19_c02438{width:274.615020px;}
._27_c02438{width:289.333332px;}
._33_c02438{width:291.904488px;}
._11_c02438{width:296.156232px;}
._25_c02438{width:297.640512px;}
._2e_c02438{width:327.742668px;}
._28_c02438{width:332.305632px;}
._1d_c02438{width:336.988296px;}
._6_c02438{width:339.803640px;}
._c_c02438{width:355.745484px;}
._13_c02438{width:359.841420px;}
._2c_c02438{width:389.062584px;}
._23_c02438{width:425.053980px;}
._2b_c02438{width:429.521184px;}
._1a_c02438{width:431.247456px;}
._32_c02438{width:434.596464px;}
._24_c02438{width:445.240188px;}
._26_c02438{width:481.973724px;}
._21_c02438{width:585.248688px;}
._31_c02438{width:606.701124px;}
._35_c02438{width:623.602764px;}
._1c_c02438{width:636.736248px;}
._17_c02438{width:641.576916px;}
._22_c02438{width:667.647576px;}
._20_c02438{width:750.192696px;}
._34_c02438{width:768.688740px;}
._2d_c02438{width:772.523928px;}
._30_c02438{width:779.500044px;}
._14_c02438{width:904.565196px;}
._36_c02438{width:1033.637508px;}
._18_c02438{width:1124.212104px;}
.fc0_c02438{color:rgb(0,0,0);}
.fs5_c02438{font-size:42.120000px;}
.fs4_c02438{font-size:47.880000px;}
.fs3_c02438{font-size:60.120000px;}
.fs1_c02438{font-size:65.880000px;}
.fs0_c02438{font-size:72.000000px;}
.fs2_c02438{font-size:83.880000px;}
.y0_c02438{bottom:0.000000px;}
.y3_c02438{bottom:75.450162px;}
.y2_c02438{bottom:113.609505px;}
.y30_c02438{bottom:141.780000px;}
.y2f_c02438{bottom:156.360000px;}
.y2e_c02438{bottom:170.850000px;}
.y2d_c02438{bottom:185.430000px;}
.y2c_c02438{bottom:199.920000px;}
.y2b_c02438{bottom:214.500000px;}
.y2a_c02438{bottom:229.080000px;}
.y29_c02438{bottom:243.570000px;}
.y28_c02438{bottom:258.150000px;}
.y27_c02438{bottom:272.730000px;}
.y26_c02438{bottom:287.220000px;}
.y25_c02438{bottom:301.800000px;}
.y24_c02438{bottom:316.380000px;}
.y23_c02438{bottom:330.870000px;}
.y22_c02438{bottom:345.450000px;}
.y21_c02438{bottom:360.030000px;}
.y20_c02438{bottom:374.520000px;}
.y1f_c02438{bottom:389.100000px;}
.y1e_c02438{bottom:403.680000px;}
.y1d_c02438{bottom:418.170000px;}
.y1c_c02438{bottom:432.750000px;}
.y1b_c02438{bottom:447.330000px;}
.y1a_c02438{bottom:461.820000px;}
.y19_c02438{bottom:476.400000px;}
.y18_c02438{bottom:490.980000px;}
.y17_c02438{bottom:505.470000px;}
.y16_c02438{bottom:520.050000px;}
.y15_c02438{bottom:534.630000px;}
.y14_c02438{bottom:549.120000px;}
.y13_c02438{bottom:563.700000px;}
.y12_c02438{bottom:578.190000px;}
.y11_c02438{bottom:592.770000px;}
.y10_c02438{bottom:607.350000px;}
.yf_c02438{bottom:621.840000px;}
.ye_c02438{bottom:636.420000px;}
.yd_c02438{bottom:651.000000px;}
.yc_c02438{bottom:665.490000px;}
.yb_c02438{bottom:680.070000px;}
.y6_c02438{bottom:695.190000px;}
.y5_c02438{bottom:717.150000px;}
.ya_c02438{bottom:735.690000px;}
.y8_c02438{bottom:739.559712px;}
.y9_c02438{bottom:739.560000px;}
.y4_c02438{bottom:744.870000px;}
.y7_c02438{bottom:753.330000px;}
.y1_c02438{bottom:824.430000px;}
.h4_c02438{height:43.909277px;}
.hc_c02438{height:47.174062px;}
.hd_c02438{height:47.174662px;}
.h7_c02438{height:48.254063px;}
.h3_c02438{height:54.331699px;}
.h6_c02438{height:59.004492px;}
.h2_c02438{height:72.562500px;}
.h5_c02438{height:84.535312px;}
.ha_c02438{height:103.289062px;}
.h9_c02438{height:103.334062px;}
.h8_c02438{height:103.335215px;}
.hb_c02438{height:118.769062px;}
.h1_c02438{height:892.500000px;}
.h0_c02438{height:892.830000px;}
.w0_c02438{width:1263.000000px;}
.x0_c02438{left:0.000000px;}
.x6_c02438{left:61.185750px;}
.x5_c02438{left:77.025900px;}
.x3_c02438{left:106.276938px;}
.x1_c02438{left:109.605900px;}
.x4_c02438{left:159.825750px;}
.x8_c02438{left:395.895471px;}
.x7_c02438{left:399.135750px;}
.x9_c02438{left:437.294913px;}
.xa_c02438{left:478.784130px;}
.xb_c02438{left:520.273347px;}
.xc_c02438{left:561.762564px;}
.xd_c02438{left:603.162006px;}
.x2_c02438{left:618.826632px;}
.xe_c02438{left:644.655750px;}
.xf_c02438{left:686.144967px;}
.x10_c02438{left:727.545750px;}
.x11_c02438{left:769.034967px;}
.x12_c02438{left:810.434409px;}
.x13_c02438{left:851.923626px;}
.x14_c02438{left:893.412843px;}
.x15_c02438{left:934.902060px;}
.x16_c02438{left:976.391277px;}
.x17_c02438{left:1017.700944px;}
.x18_c02438{left:1059.281133px;}
.x19_c02438{left:1102.215750px;}
.x1a_c02438{left:1143.705750px;}
.x1b_c02438{left:1182.135750px;}
@media print{
.v4_c02438{vertical-align:-0.960000pt;}
.v0_c02438{vertical-align:0.000000pt;}
.v1_c02438{vertical-align:48.961024pt;}
.v2_c02438{vertical-align:54.080000pt;}
.v3_c02438{vertical-align:67.840000pt;}
.ls23_c02438{letter-spacing:-0.157248pt;}
.ls24_c02438{letter-spacing:-0.128000pt;}
.ls22_c02438{letter-spacing:-0.017024pt;}
.ls20_c02438{letter-spacing:0.000000pt;}
.lse_c02438{letter-spacing:0.021280pt;}
.ls10_c02438{letter-spacing:0.025536pt;}
.ls0_c02438{letter-spacing:0.029280pt;}
.lsc_c02438{letter-spacing:0.029792pt;}
.ls2_c02438{letter-spacing:0.029824pt;}
.ls1e_c02438{letter-spacing:0.034048pt;}
.lsd_c02438{letter-spacing:0.038304pt;}
.ls21_c02438{letter-spacing:0.040992pt;}
.ls3_c02438{letter-spacing:0.044736pt;}
.ls1f_c02438{letter-spacing:0.046816pt;}
.ls1c_c02438{letter-spacing:0.055328pt;}
.ls13_c02438{letter-spacing:0.059584pt;}
.ls9_c02438{letter-spacing:0.063840pt;}
.ls15_c02438{letter-spacing:0.080864pt;}
.ls1_c02438{letter-spacing:0.081984pt;}
.lsb_c02438{letter-spacing:0.085120pt;}
.ls1a_c02438{letter-spacing:0.089376pt;}
.ls4_c02438{letter-spacing:0.093632pt;}
.ls11_c02438{letter-spacing:0.097888pt;}
.ls19_c02438{letter-spacing:0.110656pt;}
.ls18_c02438{letter-spacing:0.114912pt;}
.ls14_c02438{letter-spacing:0.119168pt;}
.ls1d_c02438{letter-spacing:0.123424pt;}
.ls17_c02438{letter-spacing:0.127680pt;}
.ls16_c02438{letter-spacing:0.131936pt;}
.ls1b_c02438{letter-spacing:0.140448pt;}
.ls12_c02438{letter-spacing:0.148960pt;}
.ls8_c02438{letter-spacing:0.161728pt;}
.ls5_c02438{letter-spacing:122.160000pt;}
.ls7_c02438{letter-spacing:122.480000pt;}
.lsa_c02438{letter-spacing:122.800000pt;}
.ls6_c02438{letter-spacing:136.880000pt;}
.lsf_c02438{letter-spacing:160.240000pt;}
.wse_c02438{word-spacing:-0.229824pt;}
.ws18_c02438{word-spacing:-0.221312pt;}
.ws13_c02438{word-spacing:-0.212800pt;}
.ws14_c02438{word-spacing:-0.208544pt;}
.ws19_c02438{word-spacing:-0.204288pt;}
.ws11_c02438{word-spacing:-0.200032pt;}
.ws15_c02438{word-spacing:-0.195776pt;}
.ws16_c02438{word-spacing:-0.191520pt;}
.wsd_c02438{word-spacing:-0.178752pt;}
.ws6_c02438{word-spacing:-0.174496pt;}
.ws17_c02438{word-spacing:-0.170240pt;}
.ws8_c02438{word-spacing:-0.165984pt;}
.ws12_c02438{word-spacing:-0.161728pt;}
.ws7_c02438{word-spacing:-0.144704pt;}
.ws0_c02438{word-spacing:-0.140544pt;}
.wsf_c02438{word-spacing:-0.140448pt;}
.ws10_c02438{word-spacing:-0.136192pt;}
.ws1b_c02438{word-spacing:-0.127680pt;}
.ws5_c02438{word-spacing:-0.126752pt;}
.wsa_c02438{word-spacing:-0.119168pt;}
.ws1a_c02438{word-spacing:-0.114912pt;}
.ws4_c02438{word-spacing:-0.111840pt;}
.ws9_c02438{word-spacing:-0.110656pt;}
.wsc_c02438{word-spacing:-0.106400pt;}
.ws1_c02438{word-spacing:0.000000pt;}
.ws3_c02438{word-spacing:0.040992pt;}
.ws2_c02438{word-spacing:0.052704pt;}
.wsb_c02438{word-spacing:0.217056pt;}
._8_c02438{margin-left:-14.400000pt;}
._5_c02438{margin-left:-1.221472pt;}
._10_c02438{width:1.068256pt;}
._12_c02438{width:22.678240pt;}
._d_c02438{width:23.621472pt;}
._3_c02438{width:69.929504pt;}
._4_c02438{width:70.848000pt;}
._2_c02438{width:85.911616pt;}
._1_c02438{width:93.912896pt;}
._1e_c02438{width:107.345216pt;}
._9_c02438{width:108.305216pt;}
._b_c02438{width:115.276544pt;}
._7_c02438{width:122.385216pt;}
._15_c02438{width:123.486912pt;}
._e_c02438{width:136.056544pt;}
._1b_c02438{width:137.063456pt;}
._a_c02438{width:145.425216pt;}
._f_c02438{width:161.063456pt;}
._0_c02438{width:172.800000pt;}
._1f_c02438{width:194.634752pt;}
._16_c02438{width:198.588576pt;}
._2f_c02438{width:207.351680pt;}
._29_c02438{width:217.617152pt;}
._2a_c02438{width:220.877248pt;}
._19_c02438{width:244.102240pt;}
._27_c02438{width:257.185184pt;}
._33_c02438{width:259.470656pt;}
._11_c02438{width:263.249984pt;}
._25_c02438{width:264.569344pt;}
._2e_c02438{width:291.326816pt;}
._28_c02438{width:295.382784pt;}
._1d_c02438{width:299.545152pt;}
._6_c02438{width:302.047680pt;}
._c_c02438{width:316.218208pt;}
._13_c02438{width:319.859040pt;}
._2c_c02438{width:345.833408pt;}
._23_c02438{width:377.825760pt;}
._2b_c02438{width:381.796608pt;}
._1a_c02438{width:383.331072pt;}
._32_c02438{width:386.307968pt;}
._24_c02438{width:395.769056pt;}
._26_c02438{width:428.421088pt;}
._21_c02438{width:520.221056pt;}
._31_c02438{width:539.289888pt;}
._35_c02438{width:554.313568pt;}
._1c_c02438{width:565.987776pt;}
._17_c02438{width:570.290592pt;}
._22_c02438{width:593.464512pt;}
._20_c02438{width:666.837952pt;}
._34_c02438{width:683.278880pt;}
._2d_c02438{width:686.687936pt;}
._30_c02438{width:692.888928pt;}
._14_c02438{width:804.057952pt;}
._36_c02438{width:918.788896pt;}
._18_c02438{width:999.299648pt;}
.fs5_c02438{font-size:37.440000pt;}
.fs4_c02438{font-size:42.560000pt;}
.fs3_c02438{font-size:53.440000pt;}
.fs1_c02438{font-size:58.560000pt;}
.fs0_c02438{font-size:64.000000pt;}
.fs2_c02438{font-size:74.560000pt;}
.y0_c02438{bottom:0.000000pt;}
.y3_c02438{bottom:67.066811pt;}
.y2_c02438{bottom:100.986227pt;}
.y30_c02438{bottom:126.026667pt;}
.y2f_c02438{bottom:138.986667pt;}
.y2e_c02438{bottom:151.866667pt;}
.y2d_c02438{bottom:164.826667pt;}
.y2c_c02438{bottom:177.706667pt;}
.y2b_c02438{bottom:190.666667pt;}
.y2a_c02438{bottom:203.626667pt;}
.y29_c02438{bottom:216.506667pt;}
.y28_c02438{bottom:229.466667pt;}
.y27_c02438{bottom:242.426667pt;}
.y26_c02438{bottom:255.306667pt;}
.y25_c02438{bottom:268.266667pt;}
.y24_c02438{bottom:281.226667pt;}
.y23_c02438{bottom:294.106667pt;}
.y22_c02438{bottom:307.066667pt;}
.y21_c02438{bottom:320.026667pt;}
.y20_c02438{bottom:332.906667pt;}
.y1f_c02438{bottom:345.866667pt;}
.y1e_c02438{bottom:358.826667pt;}
.y1d_c02438{bottom:371.706667pt;}
.y1c_c02438{bottom:384.666667pt;}
.y1b_c02438{bottom:397.626667pt;}
.y1a_c02438{bottom:410.506667pt;}
.y19_c02438{bottom:423.466667pt;}
.y18_c02438{bottom:436.426667pt;}
.y17_c02438{bottom:449.306667pt;}
.y16_c02438{bottom:462.266667pt;}
.y15_c02438{bottom:475.226667pt;}
.y14_c02438{bottom:488.106667pt;}
.y13_c02438{bottom:501.066667pt;}
.y12_c02438{bottom:513.946667pt;}
.y11_c02438{bottom:526.906667pt;}
.y10_c02438{bottom:539.866667pt;}
.yf_c02438{bottom:552.746667pt;}
.ye_c02438{bottom:565.706667pt;}
.yd_c02438{bottom:578.666667pt;}
.yc_c02438{bottom:591.546667pt;}
.yb_c02438{bottom:604.506667pt;}
.y6_c02438{bottom:617.946667pt;}
.y5_c02438{bottom:637.466667pt;}
.ya_c02438{bottom:653.946667pt;}
.y8_c02438{bottom:657.386411pt;}
.y9_c02438{bottom:657.386667pt;}
.y4_c02438{bottom:662.106667pt;}
.y7_c02438{bottom:669.626667pt;}
.y1_c02438{bottom:732.826667pt;}
.h4_c02438{height:39.030469pt;}
.hc_c02438{height:41.932500pt;}
.hd_c02438{height:41.933033pt;}
.h7_c02438{height:42.892500pt;}
.h3_c02438{height:48.294844pt;}
.h6_c02438{height:52.448437pt;}
.h2_c02438{height:64.500000pt;}
.h5_c02438{height:75.142500pt;}
.ha_c02438{height:91.812500pt;}
.h9_c02438{height:91.852500pt;}
.h8_c02438{height:91.853524pt;}
.hb_c02438{height:105.572500pt;}
.h1_c02438{height:793.333333pt;}
.h0_c02438{height:793.626667pt;}
.w0_c02438{width:1122.666667pt;}
.x0_c02438{left:0.000000pt;}
.x6_c02438{left:54.387333pt;}
.x5_c02438{left:68.467467pt;}
.x3_c02438{left:94.468389pt;}
.x1_c02438{left:97.427467pt;}
.x4_c02438{left:142.067333pt;}
.x8_c02438{left:351.907085pt;}
.x7_c02438{left:354.787333pt;}
.x9_c02438{left:388.706589pt;}
.xa_c02438{left:425.585893pt;}
.xb_c02438{left:462.465197pt;}
.xc_c02438{left:499.344501pt;}
.xd_c02438{left:536.144005pt;}
.x2_c02438{left:550.068117pt;}
.xe_c02438{left:573.027333pt;}
.xf_c02438{left:609.906637pt;}
.x10_c02438{left:646.707333pt;}
.x11_c02438{left:683.586637pt;}
.x12_c02438{left:720.386141pt;}
.x13_c02438{left:757.265445pt;}
.x14_c02438{left:794.144749pt;}
.x15_c02438{left:831.024053pt;}
.x16_c02438{left:867.903357pt;}
.x17_c02438{left:904.623061pt;}
.x18_c02438{left:941.583229pt;}
.x19_c02438{left:979.747333pt;}
.x1a_c02438{left:1016.627333pt;}
.x1b_c02438{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc63caeec060b0bcc409fce1.woff2')format("woff");}.ff1_c02439{font-family:ff1_c02439;line-height:1.311035;font-style:normal;font-weight:normal;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_b0d08cd8c41e093985d899de.woff2')format("woff");}.ff2_c02439{font-family:ff2_c02439;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02439{font-family:ff3_c02439;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_c02439;src:url('chunks/assets/font_4722fb2ac23774e7e8015757.woff2')format("woff");}.ff4_c02439{font-family:ff4_c02439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7_c02439{vertical-align:-13.320000px;}
.v5_c02439{vertical-align:-6.120000px;}
.v4_c02439{vertical-align:-1.080000px;}
.v0_c02439{vertical-align:0.000000px;}
.v6_c02439{vertical-align:1.080000px;}
.v8_c02439{vertical-align:8.280000px;}
.v1_c02439{vertical-align:55.081152px;}
.v2_c02439{vertical-align:60.840000px;}
.v3_c02439{vertical-align:76.320000px;}
.ls20_c02439{letter-spacing:-0.176904px;}
.ls21_c02439{letter-spacing:-0.144000px;}
.ls1f_c02439{letter-spacing:-0.019152px;}
.ls1d_c02439{letter-spacing:0.000000px;}
.ls1b_c02439{letter-spacing:0.023940px;}
.ls0_c02439{letter-spacing:0.032940px;}
.lsc_c02439{letter-spacing:0.033516px;}
.ls2_c02439{letter-spacing:0.033552px;}
.lsa_c02439{letter-spacing:0.038304px;}
.ls1c_c02439{letter-spacing:0.043092px;}
.ls1e_c02439{letter-spacing:0.046116px;}
.ls4_c02439{letter-spacing:0.047880px;}
.ls3_c02439{letter-spacing:0.050328px;}
.ls14_c02439{letter-spacing:0.052668px;}
.ls15_c02439{letter-spacing:0.057456px;}
.ls12_c02439{letter-spacing:0.071820px;}
.ls13_c02439{letter-spacing:0.081396px;}
.lsf_c02439{letter-spacing:0.086184px;}
.lse_c02439{letter-spacing:0.090972px;}
.ls1_c02439{letter-spacing:0.092232px;}
.ls8_c02439{letter-spacing:0.095760px;}
.ls16_c02439{letter-spacing:0.100548px;}
.ls9_c02439{letter-spacing:0.105336px;}
.ls19_c02439{letter-spacing:0.110124px;}
.lsd_c02439{letter-spacing:0.119700px;}
.ls10_c02439{letter-spacing:0.124488px;}
.lsb_c02439{letter-spacing:0.134064px;}
.ls7_c02439{letter-spacing:0.172368px;}
.ls6_c02439{letter-spacing:0.181944px;}
.ls17_c02439{letter-spacing:114.750000px;}
.ls11_c02439{letter-spacing:137.430000px;}
.ls18_c02439{letter-spacing:138.150000px;}
.ls5_c02439{letter-spacing:153.990000px;}
.ls1a_c02439{letter-spacing:1357.110000px;}
.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;}
}
.ws7_c02439{word-spacing:-0.263340px;}
.wsb_c02439{word-spacing:-0.225036px;}
.ws10_c02439{word-spacing:-0.215460px;}
.wsd_c02439{word-spacing:-0.210672px;}
.ws16_c02439{word-spacing:-0.201096px;}
.ws9_c02439{word-spacing:-0.196308px;}
.ws15_c02439{word-spacing:-0.191520px;}
.ws8_c02439{word-spacing:-0.186732px;}
.wse_c02439{word-spacing:-0.181944px;}
.wsf_c02439{word-spacing:-0.177156px;}
.ws12_c02439{word-spacing:-0.172368px;}
.ws11_c02439{word-spacing:-0.162792px;}
.ws0_c02439{word-spacing:-0.158112px;}
.ws14_c02439{word-spacing:-0.148428px;}
.ws13_c02439{word-spacing:-0.143640px;}
.ws5_c02439{word-spacing:-0.142596px;}
.ws6_c02439{word-spacing:-0.138852px;}
.ws18_c02439{word-spacing:-0.134064px;}
.wsa_c02439{word-spacing:-0.129276px;}
.ws4_c02439{word-spacing:-0.125820px;}
.wsc_c02439{word-spacing:-0.124488px;}
.ws17_c02439{word-spacing:-0.114912px;}
.ws1_c02439{word-spacing:0.000000px;}
.ws3_c02439{word-spacing:0.046116px;}
.ws2_c02439{word-spacing:0.059292px;}
._2c_c02439{margin-left:-21.600000px;}
._10_c02439{margin-left:-16.560000px;}
._6_c02439{margin-left:-1.080000px;}
._a_c02439{width:1.053360px;}
._7_c02439{width:26.280000px;}
._3_c02439{width:78.670692px;}
._4_c02439{width:79.704000px;}
._2d_c02439{width:81.354384px;}
._2_c02439{width:96.650568px;}
._1_c02439{width:105.652008px;}
._30_c02439{width:106.735896px;}
._25_c02439{width:114.982704px;}
._1d_c02439{width:116.778600px;}
._2a_c02439{width:126.194508px;}
._2f_c02439{width:128.340648px;}
._8_c02439{width:129.686112px;}
._11_c02439{width:137.683368px;}
._12_c02439{width:153.990000px;}
._24_c02439{width:155.927988px;}
._27_c02439{width:162.578520px;}
._22_c02439{width:163.931436px;}
._13_c02439{width:179.910000px;}
._1f_c02439{width:191.227212px;}
._0_c02439{width:194.400000px;}
._28_c02439{width:202.000212px;}
._17_c02439{width:264.933684px;}
._f_c02439{width:279.231264px;}
._5_c02439{width:305.195976px;}
._23_c02439{width:323.330832px;}
._14_c02439{width:327.110652px;}
._2b_c02439{width:335.875392px;}
._b_c02439{width:340.239348px;}
._e_c02439{width:367.524072px;}
._15_c02439{width:391.334796px;}
._d_c02439{width:406.964916px;}
._1c_c02439{width:438.168312px;}
._16_c02439{width:511.175736px;}
._1a_c02439{width:561.263004px;}
._1b_c02439{width:566.151552px;}
._29_c02439{width:581.717340px;}
._9_c02439{width:616.181976px;}
._21_c02439{width:631.282716px;}
._26_c02439{width:667.473120px;}
._20_c02439{width:670.003272px;}
._19_c02439{width:707.814108px;}
._1e_c02439{width:794.122596px;}
._c_c02439{width:807.102864px;}
._18_c02439{width:955.820844px;}
._32_c02439{width:1115.963892px;}
._2e_c02439{width:1217.368944px;}
._31_c02439{width:1241.128944px;}
.fc0_c02439{color:rgb(0,0,0);}
.fs6_c02439{font-size:11.880000px;}
.fs5_c02439{font-size:42.120000px;}
.fs4_c02439{font-size:47.880000px;}
.fs3_c02439{font-size:60.120000px;}
.fs1_c02439{font-size:65.880000px;}
.fs0_c02439{font-size:72.000000px;}
.fs2_c02439{font-size:83.880000px;}
.y0_c02439{bottom:0.000000px;}
.y3_c02439{bottom:75.450162px;}
.y2_c02439{bottom:113.609505px;}
.y2f_c02439{bottom:152.130000px;}
.y2e_c02439{bottom:161.670000px;}
.y2d_c02439{bottom:179.220000px;}
.y2c_c02439{bottom:196.860000px;}
.y2b_c02439{bottom:214.500000px;}
.y2a_c02439{bottom:229.080000px;}
.y29_c02439{bottom:243.570000px;}
.y28_c02439{bottom:258.150000px;}
.y27_c02439{bottom:272.730000px;}
.y26_c02439{bottom:287.220000px;}
.y25_c02439{bottom:301.800000px;}
.y24_c02439{bottom:316.380000px;}
.y23_c02439{bottom:330.870000px;}
.y22_c02439{bottom:345.450000px;}
.y21_c02439{bottom:360.030000px;}
.y20_c02439{bottom:374.520000px;}
.y1f_c02439{bottom:389.100000px;}
.y1e_c02439{bottom:403.680000px;}
.y1d_c02439{bottom:418.170000px;}
.y1c_c02439{bottom:432.750000px;}
.y1b_c02439{bottom:447.330000px;}
.y1a_c02439{bottom:461.820000px;}
.y19_c02439{bottom:476.400000px;}
.y18_c02439{bottom:490.980000px;}
.y17_c02439{bottom:505.470000px;}
.y16_c02439{bottom:520.050000px;}
.y15_c02439{bottom:534.630000px;}
.y14_c02439{bottom:549.120000px;}
.y13_c02439{bottom:563.700000px;}
.y12_c02439{bottom:578.190000px;}
.y11_c02439{bottom:592.770000px;}
.y10_c02439{bottom:607.350000px;}
.yf_c02439{bottom:621.840000px;}
.ye_c02439{bottom:636.420000px;}
.yd_c02439{bottom:651.000000px;}
.yc_c02439{bottom:665.490000px;}
.yb_c02439{bottom:680.070000px;}
.y6_c02439{bottom:695.190000px;}
.y5_c02439{bottom:717.150000px;}
.ya_c02439{bottom:735.690000px;}
.y8_c02439{bottom:739.559712px;}
.y9_c02439{bottom:739.560000px;}
.y4_c02439{bottom:744.870000px;}
.y7_c02439{bottom:753.330000px;}
.y1_c02439{bottom:824.430000px;}
.he_c02439{height:11.972812px;}
.h4_c02439{height:43.909277px;}
.hd_c02439{height:46.991602px;}
.hc_c02439{height:47.174062px;}
.h7_c02439{height:48.254063px;}
.h3_c02439{height:54.331699px;}
.h6_c02439{height:59.004492px;}
.h2_c02439{height:72.562500px;}
.h5_c02439{height:84.535312px;}
.ha_c02439{height:103.289062px;}
.h9_c02439{height:103.334062px;}
.h8_c02439{height:103.335215px;}
.hb_c02439{height:118.769062px;}
.h1_c02439{height:892.500000px;}
.h0_c02439{height:892.830000px;}
.w0_c02439{width:1263.000000px;}
.x0_c02439{left:0.000000px;}
.x6_c02439{left:61.185750px;}
.x5_c02439{left:77.025900px;}
.x3_c02439{left:106.276938px;}
.x1_c02439{left:109.605900px;}
.x4_c02439{left:159.825750px;}
.x8_c02439{left:395.895471px;}
.x7_c02439{left:399.135750px;}
.x9_c02439{left:437.294913px;}
.xa_c02439{left:478.784130px;}
.xb_c02439{left:520.273347px;}
.xc_c02439{left:561.762564px;}
.xd_c02439{left:603.162006px;}
.x2_c02439{left:618.826632px;}
.x1c_c02439{left:631.425750px;}
.xe_c02439{left:644.655750px;}
.xf_c02439{left:686.144967px;}
.x10_c02439{left:727.545750px;}
.x11_c02439{left:769.034967px;}
.x12_c02439{left:810.434409px;}
.x13_c02439{left:851.923626px;}
.x14_c02439{left:893.412843px;}
.x15_c02439{left:934.902060px;}
.x16_c02439{left:976.391277px;}
.x17_c02439{left:1017.700944px;}
.x18_c02439{left:1059.281133px;}
.x19_c02439{left:1102.215750px;}
.x1a_c02439{left:1143.705750px;}
.x1b_c02439{left:1182.135750px;}
@media print{
.v7_c02439{vertical-align:-11.840000pt;}
.v5_c02439{vertical-align:-5.440000pt;}
.v4_c02439{vertical-align:-0.960000pt;}
.v0_c02439{vertical-align:0.000000pt;}
.v6_c02439{vertical-align:0.960000pt;}
.v8_c02439{vertical-align:7.360000pt;}
.v1_c02439{vertical-align:48.961024pt;}
.v2_c02439{vertical-align:54.080000pt;}
.v3_c02439{vertical-align:67.840000pt;}
.ls20_c02439{letter-spacing:-0.157248pt;}
.ls21_c02439{letter-spacing:-0.128000pt;}
.ls1f_c02439{letter-spacing:-0.017024pt;}
.ls1d_c02439{letter-spacing:0.000000pt;}
.ls1b_c02439{letter-spacing:0.021280pt;}
.ls0_c02439{letter-spacing:0.029280pt;}
.lsc_c02439{letter-spacing:0.029792pt;}
.ls2_c02439{letter-spacing:0.029824pt;}
.lsa_c02439{letter-spacing:0.034048pt;}
.ls1c_c02439{letter-spacing:0.038304pt;}
.ls1e_c02439{letter-spacing:0.040992pt;}
.ls4_c02439{letter-spacing:0.042560pt;}
.ls3_c02439{letter-spacing:0.044736pt;}
.ls14_c02439{letter-spacing:0.046816pt;}
.ls15_c02439{letter-spacing:0.051072pt;}
.ls12_c02439{letter-spacing:0.063840pt;}
.ls13_c02439{letter-spacing:0.072352pt;}
.lsf_c02439{letter-spacing:0.076608pt;}
.lse_c02439{letter-spacing:0.080864pt;}
.ls1_c02439{letter-spacing:0.081984pt;}
.ls8_c02439{letter-spacing:0.085120pt;}
.ls16_c02439{letter-spacing:0.089376pt;}
.ls9_c02439{letter-spacing:0.093632pt;}
.ls19_c02439{letter-spacing:0.097888pt;}
.lsd_c02439{letter-spacing:0.106400pt;}
.ls10_c02439{letter-spacing:0.110656pt;}
.lsb_c02439{letter-spacing:0.119168pt;}
.ls7_c02439{letter-spacing:0.153216pt;}
.ls6_c02439{letter-spacing:0.161728pt;}
.ls17_c02439{letter-spacing:102.000000pt;}
.ls11_c02439{letter-spacing:122.160000pt;}
.ls18_c02439{letter-spacing:122.800000pt;}
.ls5_c02439{letter-spacing:136.880000pt;}
.ls1a_c02439{letter-spacing:1206.320000pt;}
.ws7_c02439{word-spacing:-0.234080pt;}
.wsb_c02439{word-spacing:-0.200032pt;}
.ws10_c02439{word-spacing:-0.191520pt;}
.wsd_c02439{word-spacing:-0.187264pt;}
.ws16_c02439{word-spacing:-0.178752pt;}
.ws9_c02439{word-spacing:-0.174496pt;}
.ws15_c02439{word-spacing:-0.170240pt;}
.ws8_c02439{word-spacing:-0.165984pt;}
.wse_c02439{word-spacing:-0.161728pt;}
.wsf_c02439{word-spacing:-0.157472pt;}
.ws12_c02439{word-spacing:-0.153216pt;}
.ws11_c02439{word-spacing:-0.144704pt;}
.ws0_c02439{word-spacing:-0.140544pt;}
.ws14_c02439{word-spacing:-0.131936pt;}
.ws13_c02439{word-spacing:-0.127680pt;}
.ws5_c02439{word-spacing:-0.126752pt;}
.ws6_c02439{word-spacing:-0.123424pt;}
.ws18_c02439{word-spacing:-0.119168pt;}
.wsa_c02439{word-spacing:-0.114912pt;}
.ws4_c02439{word-spacing:-0.111840pt;}
.wsc_c02439{word-spacing:-0.110656pt;}
.ws17_c02439{word-spacing:-0.102144pt;}
.ws1_c02439{word-spacing:0.000000pt;}
.ws3_c02439{word-spacing:0.040992pt;}
.ws2_c02439{word-spacing:0.052704pt;}
._2c_c02439{margin-left:-19.200000pt;}
._10_c02439{margin-left:-14.720000pt;}
._6_c02439{margin-left:-0.960000pt;}
._a_c02439{width:0.936320pt;}
._7_c02439{width:23.360000pt;}
._3_c02439{width:69.929504pt;}
._4_c02439{width:70.848000pt;}
._2d_c02439{width:72.315008pt;}
._2_c02439{width:85.911616pt;}
._1_c02439{width:93.912896pt;}
._30_c02439{width:94.876352pt;}
._25_c02439{width:102.206848pt;}
._1d_c02439{width:103.803200pt;}
._2a_c02439{width:112.172896pt;}
._2f_c02439{width:114.080576pt;}
._8_c02439{width:115.276544pt;}
._11_c02439{width:122.385216pt;}
._12_c02439{width:136.880000pt;}
._24_c02439{width:138.602656pt;}
._27_c02439{width:144.514240pt;}
._22_c02439{width:145.716832pt;}
._13_c02439{width:159.920000pt;}
._1f_c02439{width:169.979744pt;}
._0_c02439{width:172.800000pt;}
._28_c02439{width:179.555744pt;}
._17_c02439{width:235.496608pt;}
._f_c02439{width:248.205568pt;}
._5_c02439{width:271.285312pt;}
._23_c02439{width:287.405184pt;}
._14_c02439{width:290.765024pt;}
._2b_c02439{width:298.555904pt;}
._b_c02439{width:302.434976pt;}
._e_c02439{width:326.688064pt;}
._15_c02439{width:347.853152pt;}
._d_c02439{width:361.746592pt;}
._1c_c02439{width:389.482944pt;}
._16_c02439{width:454.378432pt;}
._1a_c02439{width:498.900448pt;}
._1b_c02439{width:503.245824pt;}
._29_c02439{width:517.082080pt;}
._9_c02439{width:547.717312pt;}
._21_c02439{width:561.140192pt;}
._26_c02439{width:593.309440pt;}
._20_c02439{width:595.558464pt;}
._19_c02439{width:629.168096pt;}
._1e_c02439{width:705.886752pt;}
._c_c02439{width:717.424768pt;}
._18_c02439{width:849.618528pt;}
._32_c02439{width:991.967904pt;}
._2e_c02439{width:1082.105728pt;}
._31_c02439{width:1103.225728pt;}
.fs6_c02439{font-size:10.560000pt;}
.fs5_c02439{font-size:37.440000pt;}
.fs4_c02439{font-size:42.560000pt;}
.fs3_c02439{font-size:53.440000pt;}
.fs1_c02439{font-size:58.560000pt;}
.fs0_c02439{font-size:64.000000pt;}
.fs2_c02439{font-size:74.560000pt;}
.y0_c02439{bottom:0.000000pt;}
.y3_c02439{bottom:67.066811pt;}
.y2_c02439{bottom:100.986227pt;}
.y2f_c02439{bottom:135.226667pt;}
.y2e_c02439{bottom:143.706667pt;}
.y2d_c02439{bottom:159.306667pt;}
.y2c_c02439{bottom:174.986667pt;}
.y2b_c02439{bottom:190.666667pt;}
.y2a_c02439{bottom:203.626667pt;}
.y29_c02439{bottom:216.506667pt;}
.y28_c02439{bottom:229.466667pt;}
.y27_c02439{bottom:242.426667pt;}
.y26_c02439{bottom:255.306667pt;}
.y25_c02439{bottom:268.266667pt;}
.y24_c02439{bottom:281.226667pt;}
.y23_c02439{bottom:294.106667pt;}
.y22_c02439{bottom:307.066667pt;}
.y21_c02439{bottom:320.026667pt;}
.y20_c02439{bottom:332.906667pt;}
.y1f_c02439{bottom:345.866667pt;}
.y1e_c02439{bottom:358.826667pt;}
.y1d_c02439{bottom:371.706667pt;}
.y1c_c02439{bottom:384.666667pt;}
.y1b_c02439{bottom:397.626667pt;}
.y1a_c02439{bottom:410.506667pt;}
.y19_c02439{bottom:423.466667pt;}
.y18_c02439{bottom:436.426667pt;}
.y17_c02439{bottom:449.306667pt;}
.y16_c02439{bottom:462.266667pt;}
.y15_c02439{bottom:475.226667pt;}
.y14_c02439{bottom:488.106667pt;}
.y13_c02439{bottom:501.066667pt;}
.y12_c02439{bottom:513.946667pt;}
.y11_c02439{bottom:526.906667pt;}
.y10_c02439{bottom:539.866667pt;}
.yf_c02439{bottom:552.746667pt;}
.ye_c02439{bottom:565.706667pt;}
.yd_c02439{bottom:578.666667pt;}
.yc_c02439{bottom:591.546667pt;}
.yb_c02439{bottom:604.506667pt;}
.y6_c02439{bottom:617.946667pt;}
.y5_c02439{bottom:637.466667pt;}
.ya_c02439{bottom:653.946667pt;}
.y8_c02439{bottom:657.386411pt;}
.y9_c02439{bottom:657.386667pt;}
.y4_c02439{bottom:662.106667pt;}
.y7_c02439{bottom:669.626667pt;}
.y1_c02439{bottom:732.826667pt;}
.he_c02439{height:10.642500pt;}
.h4_c02439{height:39.030469pt;}
.hd_c02439{height:41.770312pt;}
.hc_c02439{height:41.932500pt;}
.h7_c02439{height:42.892500pt;}
.h3_c02439{height:48.294844pt;}
.h6_c02439{height:52.448437pt;}
.h2_c02439{height:64.500000pt;}
.h5_c02439{height:75.142500pt;}
.ha_c02439{height:91.812500pt;}
.h9_c02439{height:91.852500pt;}
.h8_c02439{height:91.853524pt;}
.hb_c02439{height:105.572500pt;}
.h1_c02439{height:793.333333pt;}
.h0_c02439{height:793.626667pt;}
.w0_c02439{width:1122.666667pt;}
.x0_c02439{left:0.000000pt;}
.x6_c02439{left:54.387333pt;}
.x5_c02439{left:68.467467pt;}
.x3_c02439{left:94.468389pt;}
.x1_c02439{left:97.427467pt;}
.x4_c02439{left:142.067333pt;}
.x8_c02439{left:351.907085pt;}
.x7_c02439{left:354.787333pt;}
.x9_c02439{left:388.706589pt;}
.xa_c02439{left:425.585893pt;}
.xb_c02439{left:462.465197pt;}
.xc_c02439{left:499.344501pt;}
.xd_c02439{left:536.144005pt;}
.x2_c02439{left:550.068117pt;}
.x1c_c02439{left:561.267333pt;}
.xe_c02439{left:573.027333pt;}
.xf_c02439{left:609.906637pt;}
.x10_c02439{left:646.707333pt;}
.x11_c02439{left:683.586637pt;}
.x12_c02439{left:720.386141pt;}
.x13_c02439{left:757.265445pt;}
.x14_c02439{left:794.144749pt;}
.x15_c02439{left:831.024053pt;}
.x16_c02439{left:867.903357pt;}
.x17_c02439{left:904.623061pt;}
.x18_c02439{left:941.583229pt;}
.x19_c02439{left:979.747333pt;}
.x1a_c02439{left:1016.627333pt;}
.x1b_c02439{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90f67b8af75aea921cf6fc0f.woff2')format("woff");}.ff1_c02440{font-family:ff1_c02440;line-height:1.311035;font-style:normal;font-weight:normal;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_8e2c7c66c231b11de1dc1a72.woff2')format("woff");}.ff2_c02440{font-family:ff2_c02440;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02440{font-family:ff3_c02440;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_c02440;src:url('chunks/assets/font_548c3b85707348622d90ef48.woff2')format("woff");}.ff4_c02440{font-family:ff4_c02440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02440{vertical-align:-72.359400px;}
.v0_c02440{vertical-align:0.000000px;}
.lsf_c02440{letter-spacing:0.000000px;}
.ls3_c02440{letter-spacing:0.007200px;}
.ls4_c02440{letter-spacing:0.013176px;}
.ls2_c02440{letter-spacing:0.028800px;}
.ls0_c02440{letter-spacing:0.032940px;}
.ls8_c02440{letter-spacing:0.039528px;}
.ls10_c02440{letter-spacing:0.046116px;}
.ls11_c02440{letter-spacing:0.052704px;}
.ls7_c02440{letter-spacing:0.059292px;}
.lsa_c02440{letter-spacing:0.065880px;}
.lsc_c02440{letter-spacing:0.072468px;}
.lsd_c02440{letter-spacing:0.079056px;}
.ls5_c02440{letter-spacing:0.085644px;}
.ls1_c02440{letter-spacing:0.092232px;}
.ls6_c02440{letter-spacing:0.105408px;}
.ls9_c02440{letter-spacing:0.111996px;}
.lsb_c02440{letter-spacing:0.125172px;}
.lse_c02440{letter-spacing:2097.629400px;}
.sc__c02440{text-shadow:none;}
.sc0_c02440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02440{-webkit-text-stroke:0px transparent;}
.sc0_c02440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02440{word-spacing:-0.158112px;}
.ws5_c02440{word-spacing:-0.122400px;}
.wse_c02440{word-spacing:-0.032940px;}
.ws4_c02440{word-spacing:-0.028800px;}
.wsb_c02440{word-spacing:-0.019764px;}
.ws8_c02440{word-spacing:-0.013176px;}
.ws1_c02440{word-spacing:0.000000px;}
.ws7_c02440{word-spacing:0.006588px;}
.ws10_c02440{word-spacing:0.013176px;}
.wsf_c02440{word-spacing:0.019764px;}
.wsc_c02440{word-spacing:0.026352px;}
.ws9_c02440{word-spacing:0.032940px;}
.wsd_c02440{word-spacing:0.039528px;}
.ws3_c02440{word-spacing:0.046116px;}
.wsa_c02440{word-spacing:0.052704px;}
.ws2_c02440{word-spacing:0.059292px;}
.ws6_c02440{word-spacing:0.079056px;}
._1_c02440{margin-left:-1.065600px;}
._0_c02440{width:194.400000px;}
.fc0_c02440{color:rgb(0,0,0);}
.fs2_c02440{font-size:11.880000px;}
.fs1_c02440{font-size:65.880000px;}
.fs0_c02440{font-size:72.000000px;}
.y0_c02440{bottom:0.000000px;}
.y3_c02440{bottom:75.450162px;}
.y2_c02440{bottom:113.609505px;}
.y1e_c02440{bottom:173.010000px;}
.y1d_c02440{bottom:183.090000px;}
.y1c_c02440{bottom:205.590000px;}
.y1b_c02440{bottom:228.180000px;}
.y1a_c02440{bottom:250.770000px;}
.y19_c02440{bottom:273.360000px;}
.y18_c02440{bottom:295.950000px;}
.y17_c02440{bottom:318.360000px;}
.y16_c02440{bottom:340.950000px;}
.y15_c02440{bottom:363.630000px;}
.y14_c02440{bottom:386.220000px;}
.y13_c02440{bottom:408.810000px;}
.y12_c02440{bottom:431.220000px;}
.y11_c02440{bottom:453.900000px;}
.y10_c02440{bottom:476.490000px;}
.yf_c02440{bottom:499.080000px;}
.ye_c02440{bottom:521.580000px;}
.yd_c02440{bottom:544.080000px;}
.yc_c02440{bottom:566.760000px;}
.yb_c02440{bottom:589.350000px;}
.ya_c02440{bottom:611.850000px;}
.y9_c02440{bottom:634.350000px;}
.y8_c02440{bottom:657.030000px;}
.y7_c02440{bottom:679.620000px;}
.y6_c02440{bottom:702.120000px;}
.y5_c02440{bottom:724.620000px;}
.y4_c02440{bottom:747.660000px;}
.y1_c02440{bottom:824.430000px;}
.h7_c02440{height:11.659570px;}
.h4_c02440{height:43.909277px;}
.h3_c02440{height:54.331699px;}
.h6_c02440{height:64.657617px;}
.h5_c02440{height:66.394687px;}
.h2_c02440{height:72.562500px;}
.h1_c02440{height:892.500000px;}
.h0_c02440{height:892.830000px;}
.w0_c02440{width:1263.000000px;}
.x0_c02440{left:0.000000px;}
.x3_c02440{left:106.276938px;}
.x1_c02440{left:109.605900px;}
.x4_c02440{left:183.855900px;}
.x6_c02440{left:280.245750px;}
.x5_c02440{left:343.515750px;}
.x2_c02440{left:618.826632px;}
@media print{
.v1_c02440{vertical-align:-64.319467pt;}
.v0_c02440{vertical-align:0.000000pt;}
.lsf_c02440{letter-spacing:0.000000pt;}
.ls3_c02440{letter-spacing:0.006400pt;}
.ls4_c02440{letter-spacing:0.011712pt;}
.ls2_c02440{letter-spacing:0.025600pt;}
.ls0_c02440{letter-spacing:0.029280pt;}
.ls8_c02440{letter-spacing:0.035136pt;}
.ls10_c02440{letter-spacing:0.040992pt;}
.ls11_c02440{letter-spacing:0.046848pt;}
.ls7_c02440{letter-spacing:0.052704pt;}
.lsa_c02440{letter-spacing:0.058560pt;}
.lsc_c02440{letter-spacing:0.064416pt;}
.lsd_c02440{letter-spacing:0.070272pt;}
.ls5_c02440{letter-spacing:0.076128pt;}
.ls1_c02440{letter-spacing:0.081984pt;}
.ls6_c02440{letter-spacing:0.093696pt;}
.ls9_c02440{letter-spacing:0.099552pt;}
.lsb_c02440{letter-spacing:0.111264pt;}
.lse_c02440{letter-spacing:1864.559467pt;}
.ws0_c02440{word-spacing:-0.140544pt;}
.ws5_c02440{word-spacing:-0.108800pt;}
.wse_c02440{word-spacing:-0.029280pt;}
.ws4_c02440{word-spacing:-0.025600pt;}
.wsb_c02440{word-spacing:-0.017568pt;}
.ws8_c02440{word-spacing:-0.011712pt;}
.ws1_c02440{word-spacing:0.000000pt;}
.ws7_c02440{word-spacing:0.005856pt;}
.ws10_c02440{word-spacing:0.011712pt;}
.wsf_c02440{word-spacing:0.017568pt;}
.wsc_c02440{word-spacing:0.023424pt;}
.ws9_c02440{word-spacing:0.029280pt;}
.wsd_c02440{word-spacing:0.035136pt;}
.ws3_c02440{word-spacing:0.040992pt;}
.wsa_c02440{word-spacing:0.046848pt;}
.ws2_c02440{word-spacing:0.052704pt;}
.ws6_c02440{word-spacing:0.070272pt;}
._1_c02440{margin-left:-0.947200pt;}
._0_c02440{width:172.800000pt;}
.fs2_c02440{font-size:10.560000pt;}
.fs1_c02440{font-size:58.560000pt;}
.fs0_c02440{font-size:64.000000pt;}
.y0_c02440{bottom:0.000000pt;}
.y3_c02440{bottom:67.066811pt;}
.y2_c02440{bottom:100.986227pt;}
.y1e_c02440{bottom:153.786667pt;}
.y1d_c02440{bottom:162.746667pt;}
.y1c_c02440{bottom:182.746667pt;}
.y1b_c02440{bottom:202.826667pt;}
.y1a_c02440{bottom:222.906667pt;}
.y19_c02440{bottom:242.986667pt;}
.y18_c02440{bottom:263.066667pt;}
.y17_c02440{bottom:282.986667pt;}
.y16_c02440{bottom:303.066667pt;}
.y15_c02440{bottom:323.226667pt;}
.y14_c02440{bottom:343.306667pt;}
.y13_c02440{bottom:363.386667pt;}
.y12_c02440{bottom:383.306667pt;}
.y11_c02440{bottom:403.466667pt;}
.y10_c02440{bottom:423.546667pt;}
.yf_c02440{bottom:443.626667pt;}
.ye_c02440{bottom:463.626667pt;}
.yd_c02440{bottom:483.626667pt;}
.yc_c02440{bottom:503.786667pt;}
.yb_c02440{bottom:523.866667pt;}
.ya_c02440{bottom:543.866667pt;}
.y9_c02440{bottom:563.866667pt;}
.y8_c02440{bottom:584.026667pt;}
.y7_c02440{bottom:604.106667pt;}
.y6_c02440{bottom:624.106667pt;}
.y5_c02440{bottom:644.106667pt;}
.y4_c02440{bottom:664.586667pt;}
.y1_c02440{bottom:732.826667pt;}
.h7_c02440{height:10.364062pt;}
.h4_c02440{height:39.030469pt;}
.h3_c02440{height:48.294844pt;}
.h6_c02440{height:57.473437pt;}
.h5_c02440{height:59.017500pt;}
.h2_c02440{height:64.500000pt;}
.h1_c02440{height:793.333333pt;}
.h0_c02440{height:793.626667pt;}
.w0_c02440{width:1122.666667pt;}
.x0_c02440{left:0.000000pt;}
.x3_c02440{left:94.468389pt;}
.x1_c02440{left:97.427467pt;}
.x4_c02440{left:163.427467pt;}
.x6_c02440{left:249.107333pt;}
.x5_c02440{left:305.347333pt;}
.x2_c02440{left:550.068117pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abfc33317de8e1fc7a5658ff.woff2')format("woff");}.ff1_c02441{font-family:ff1_c02441;line-height:1.311035;font-style:normal;font-weight:normal;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_a8bc68dd51a61df0200486f4.woff2')format("woff");}.ff2_c02441{font-family:ff2_c02441;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02441{font-family:ff3_c02441;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_c02441;src:url('chunks/assets/font_5cbde7ef7c59020997788373.woff2')format("woff");}.ff4_c02441{font-family:ff4_c02441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02441{vertical-align:-1.080000px;}
.v0_c02441{vertical-align:0.000000px;}
.v1_c02441{vertical-align:55.081152px;}
.v2_c02441{vertical-align:77.400000px;}
.ls27_c02441{letter-spacing:-0.144000px;}
.ls24_c02441{letter-spacing:0.000000px;}
.ls26_c02441{letter-spacing:0.007200px;}
.ls2_c02441{letter-spacing:0.014400px;}
.ls4_c02441{letter-spacing:0.021600px;}
.ls3_c02441{letter-spacing:0.028800px;}
.ls0_c02441{letter-spacing:0.032940px;}
.ls5_c02441{letter-spacing:0.038448px;}
.ls1c_c02441{letter-spacing:0.043092px;}
.ls25_c02441{letter-spacing:0.046116px;}
.lsc_c02441{letter-spacing:0.047880px;}
.ls1a_c02441{letter-spacing:0.052668px;}
.ls1d_c02441{letter-spacing:0.057456px;}
.ls18_c02441{letter-spacing:0.062244px;}
.lsd_c02441{letter-spacing:0.067032px;}
.ls23_c02441{letter-spacing:0.071820px;}
.ls12_c02441{letter-spacing:0.076608px;}
.ls21_c02441{letter-spacing:0.081396px;}
.ls7_c02441{letter-spacing:0.086184px;}
.lsf_c02441{letter-spacing:0.090972px;}
.ls1_c02441{letter-spacing:0.092232px;}
.ls10_c02441{letter-spacing:0.095760px;}
.ls1e_c02441{letter-spacing:0.100548px;}
.ls14_c02441{letter-spacing:0.105336px;}
.ls17_c02441{letter-spacing:0.110124px;}
.ls8_c02441{letter-spacing:0.114912px;}
.ls11_c02441{letter-spacing:0.119700px;}
.ls6_c02441{letter-spacing:0.124488px;}
.ls9_c02441{letter-spacing:0.134064px;}
.lsb_c02441{letter-spacing:0.181944px;}
.ls1b_c02441{letter-spacing:114.750000px;}
.ls20_c02441{letter-spacing:115.110000px;}
.lsa_c02441{letter-spacing:115.470000px;}
.ls22_c02441{letter-spacing:135.630000px;}
.ls13_c02441{letter-spacing:137.430000px;}
.ls15_c02441{letter-spacing:137.790000px;}
.ls16_c02441{letter-spacing:138.150000px;}
.ls19_c02441{letter-spacing:147.870000px;}
.lse_c02441{letter-spacing:153.990000px;}
.ls1f_c02441{letter-spacing:171.630000px;}
.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;}
}
.ws10_c02441{word-spacing:-0.225036px;}
.wse_c02441{word-spacing:-0.215460px;}
.ws14_c02441{word-spacing:-0.210672px;}
.wsb_c02441{word-spacing:-0.208800px;}
.wsf_c02441{word-spacing:-0.205884px;}
.ws19_c02441{word-spacing:-0.201096px;}
.ws16_c02441{word-spacing:-0.196308px;}
.ws1c_c02441{word-spacing:-0.191520px;}
.ws13_c02441{word-spacing:-0.181944px;}
.ws1d_c02441{word-spacing:-0.177156px;}
.ws1e_c02441{word-spacing:-0.172368px;}
.ws15_c02441{word-spacing:-0.167580px;}
.ws1f_c02441{word-spacing:-0.162792px;}
.ws0_c02441{word-spacing:-0.158112px;}
.ws17_c02441{word-spacing:-0.153216px;}
.ws1b_c02441{word-spacing:-0.148428px;}
.ws18_c02441{word-spacing:-0.143640px;}
.ws11_c02441{word-spacing:-0.138852px;}
.ws1a_c02441{word-spacing:-0.134064px;}
.ws4_c02441{word-spacing:-0.086400px;}
.wsc_c02441{word-spacing:-0.079200px;}
.wsd_c02441{word-spacing:-0.067284px;}
.ws5_c02441{word-spacing:-0.057600px;}
.wsa_c02441{word-spacing:-0.014400px;}
.ws1_c02441{word-spacing:0.000000px;}
.ws3_c02441{word-spacing:0.046116px;}
.ws2_c02441{word-spacing:0.059292px;}
.ws12_c02441{word-spacing:0.201096px;}
.ws8_c02441{word-spacing:7.891200px;}
.ws9_c02441{word-spacing:7.920000px;}
.ws7_c02441{word-spacing:8.136000px;}
.ws6_c02441{word-spacing:8.280000px;}
._35_c02441{margin-left:-39.088800px;}
._1f_c02441{margin-left:-16.480800px;}
._2d_c02441{margin-left:-2.880000px;}
._1_c02441{margin-left:-1.152000px;}
._1a_c02441{width:17.136504px;}
._9_c02441{width:74.302704px;}
._4_c02441{width:76.117176px;}
._d_c02441{width:77.182704px;}
._3_c02441{width:78.652476px;}
._2_c02441{width:80.093664px;}
._5_c02441{width:81.504000px;}
._6_c02441{width:85.824000px;}
._22_c02441{width:97.003368px;}
._8_c02441{width:98.443368px;}
._c_c02441{width:99.883368px;}
._10_c02441{width:105.926712px;}
._e_c02441{width:109.208232px;}
._12_c02441{width:114.847704px;}
._16_c02441{width:115.888536px;}
._19_c02441{width:117.639756px;}
._2f_c02441{width:119.323368px;}
._b_c02441{width:121.483368px;}
._a_c02441{width:122.542704px;}
._1b_c02441{width:130.048056px;}
._24_c02441{width:132.219504px;}
._1e_c02441{width:136.141056px;}
._f_c02441{width:137.964168px;}
._20_c02441{width:138.980808px;}
._25_c02441{width:146.191572px;}
._30_c02441{width:150.843924px;}
._29_c02441{width:151.981056px;}
._17_c02441{width:153.118944px;}
._15_c02441{width:154.245528px;}
._2b_c02441{width:155.333448px;}
._18_c02441{width:171.630000px;}
._37_c02441{width:190.273104px;}
._2c_c02441{width:192.300336px;}
._0_c02441{width:194.400000px;}
._38_c02441{width:221.596200px;}
._1c_c02441{width:228.302892px;}
._14_c02441{width:233.663544px;}
._2a_c02441{width:236.884896px;}
._3a_c02441{width:251.186652px;}
._3b_c02441{width:290.690532px;}
._26_c02441{width:310.399848px;}
._23_c02441{width:326.389860px;}
._27_c02441{width:353.636784px;}
._3c_c02441{width:358.265484px;}
._2e_c02441{width:435.534228px;}
._7_c02441{width:438.596640px;}
._32_c02441{width:449.210052px;}
._36_c02441{width:453.984660px;}
._1d_c02441{width:466.109784px;}
._33_c02441{width:555.877116px;}
._31_c02441{width:582.431364px;}
._28_c02441{width:623.347704px;}
._34_c02441{width:630.215604px;}
._21_c02441{width:636.495552px;}
._13_c02441{width:643.336308px;}
._39_c02441{width:665.651592px;}
._11_c02441{width:693.926316px;}
.fc0_c02441{color:rgb(0,0,0);}
.fs4_c02441{font-size:47.880000px;}
.fs3_c02441{font-size:60.120000px;}
.fs1_c02441{font-size:65.880000px;}
.fs0_c02441{font-size:72.000000px;}
.fs2_c02441{font-size:96.120000px;}
.y0_c02441{bottom:0.000000px;}
.y3_c02441{bottom:75.450162px;}
.y2_c02441{bottom:113.609505px;}
.y2d_c02441{bottom:143.130000px;}
.y2c_c02441{bottom:157.620000px;}
.y2b_c02441{bottom:172.200000px;}
.y2a_c02441{bottom:186.780000px;}
.y29_c02441{bottom:201.270000px;}
.y28_c02441{bottom:215.850000px;}
.y27_c02441{bottom:230.430000px;}
.y26_c02441{bottom:244.920000px;}
.y25_c02441{bottom:259.500000px;}
.y24_c02441{bottom:274.080000px;}
.y23_c02441{bottom:288.570000px;}
.y22_c02441{bottom:303.150000px;}
.y21_c02441{bottom:317.730000px;}
.y20_c02441{bottom:332.220000px;}
.y1f_c02441{bottom:346.800000px;}
.y1e_c02441{bottom:361.380000px;}
.y1d_c02441{bottom:375.870000px;}
.y1c_c02441{bottom:390.450000px;}
.y1b_c02441{bottom:405.030000px;}
.y1a_c02441{bottom:419.520000px;}
.y19_c02441{bottom:434.100000px;}
.y18_c02441{bottom:448.680000px;}
.y17_c02441{bottom:463.170000px;}
.y16_c02441{bottom:477.750000px;}
.y15_c02441{bottom:492.240000px;}
.y14_c02441{bottom:506.820000px;}
.y13_c02441{bottom:521.400000px;}
.y12_c02441{bottom:535.890000px;}
.y11_c02441{bottom:550.470000px;}
.y10_c02441{bottom:565.050000px;}
.yb_c02441{bottom:580.170000px;}
.yf_c02441{bottom:595.110000px;}
.yd_c02441{bottom:600.689712px;}
.ye_c02441{bottom:600.690000px;}
.ya_c02441{bottom:603.300000px;}
.yc_c02441{bottom:614.460000px;}
.y9_c02441{bottom:633.000072px;}
.y8_c02441{bottom:654.780000px;}
.y7_c02441{bottom:677.190000px;}
.y6_c02441{bottom:701.040000px;}
.y5_c02441{bottom:724.800000px;}
.y4_c02441{bottom:748.380000px;}
.y1_c02441{bottom:824.430000px;}
.h4_c02441{height:43.909277px;}
.he_c02441{height:47.174063px;}
.hf_c02441{height:47.174663px;}
.ha_c02441{height:48.254063px;}
.h3_c02441{height:54.331699px;}
.h9_c02441{height:59.004492px;}
.h7_c02441{height:64.657617px;}
.h6_c02441{height:66.394687px;}
.h5_c02441{height:70.664062px;}
.h2_c02441{height:72.562500px;}
.h8_c02441{height:96.870938px;}
.hc_c02441{height:103.334062px;}
.hb_c02441{height:103.335215px;}
.hd_c02441{height:125.654063px;}
.h1_c02441{height:892.500000px;}
.h0_c02441{height:892.830000px;}
.w0_c02441{width:1263.000000px;}
.x0_c02441{left:0.000000px;}
.x7_c02441{left:61.185750px;}
.x6_c02441{left:71.535900px;}
.x3_c02441{left:106.276938px;}
.x1_c02441{left:109.605900px;}
.x4_c02441{left:173.325750px;}
.x8_c02441{left:393.375750px;}
.x9_c02441{left:396.526254px;}
.xa_c02441{left:437.837118px;}
.x5_c02441{left:448.545750px;}
.xb_c02441{left:478.787685px;}
.xc_c02441{left:520.278099px;}
.xd_c02441{left:561.768513px;}
.xe_c02441{left:603.169152px;}
.x2_c02441{left:618.826632px;}
.xf_c02441{left:644.655750px;}
.x10_c02441{left:686.146164px;}
.x11_c02441{left:727.545750px;}
.x12_c02441{left:768.946389px;}
.x13_c02441{left:810.436803px;}
.x14_c02441{left:851.927217px;}
.x15_c02441{left:893.417631px;}
.x16_c02441{left:934.908045px;}
.x17_c02441{left:976.308684px;}
.x18_c02441{left:1017.799098px;}
.x19_c02441{left:1059.289512px;}
.x1a_c02441{left:1101.135750px;}
.x1b_c02441{left:1142.625750px;}
.x1c_c02441{left:1182.135750px;}
@media print{
.v3_c02441{vertical-align:-0.960000pt;}
.v0_c02441{vertical-align:0.000000pt;}
.v1_c02441{vertical-align:48.961024pt;}
.v2_c02441{vertical-align:68.800000pt;}
.ls27_c02441{letter-spacing:-0.128000pt;}
.ls24_c02441{letter-spacing:0.000000pt;}
.ls26_c02441{letter-spacing:0.006400pt;}
.ls2_c02441{letter-spacing:0.012800pt;}
.ls4_c02441{letter-spacing:0.019200pt;}
.ls3_c02441{letter-spacing:0.025600pt;}
.ls0_c02441{letter-spacing:0.029280pt;}
.ls5_c02441{letter-spacing:0.034176pt;}
.ls1c_c02441{letter-spacing:0.038304pt;}
.ls25_c02441{letter-spacing:0.040992pt;}
.lsc_c02441{letter-spacing:0.042560pt;}
.ls1a_c02441{letter-spacing:0.046816pt;}
.ls1d_c02441{letter-spacing:0.051072pt;}
.ls18_c02441{letter-spacing:0.055328pt;}
.lsd_c02441{letter-spacing:0.059584pt;}
.ls23_c02441{letter-spacing:0.063840pt;}
.ls12_c02441{letter-spacing:0.068096pt;}
.ls21_c02441{letter-spacing:0.072352pt;}
.ls7_c02441{letter-spacing:0.076608pt;}
.lsf_c02441{letter-spacing:0.080864pt;}
.ls1_c02441{letter-spacing:0.081984pt;}
.ls10_c02441{letter-spacing:0.085120pt;}
.ls1e_c02441{letter-spacing:0.089376pt;}
.ls14_c02441{letter-spacing:0.093632pt;}
.ls17_c02441{letter-spacing:0.097888pt;}
.ls8_c02441{letter-spacing:0.102144pt;}
.ls11_c02441{letter-spacing:0.106400pt;}
.ls6_c02441{letter-spacing:0.110656pt;}
.ls9_c02441{letter-spacing:0.119168pt;}
.lsb_c02441{letter-spacing:0.161728pt;}
.ls1b_c02441{letter-spacing:102.000000pt;}
.ls20_c02441{letter-spacing:102.320000pt;}
.lsa_c02441{letter-spacing:102.640000pt;}
.ls22_c02441{letter-spacing:120.560000pt;}
.ls13_c02441{letter-spacing:122.160000pt;}
.ls15_c02441{letter-spacing:122.480000pt;}
.ls16_c02441{letter-spacing:122.800000pt;}
.ls19_c02441{letter-spacing:131.440000pt;}
.lse_c02441{letter-spacing:136.880000pt;}
.ls1f_c02441{letter-spacing:152.560000pt;}
.ws10_c02441{word-spacing:-0.200032pt;}
.wse_c02441{word-spacing:-0.191520pt;}
.ws14_c02441{word-spacing:-0.187264pt;}
.wsb_c02441{word-spacing:-0.185600pt;}
.wsf_c02441{word-spacing:-0.183008pt;}
.ws19_c02441{word-spacing:-0.178752pt;}
.ws16_c02441{word-spacing:-0.174496pt;}
.ws1c_c02441{word-spacing:-0.170240pt;}
.ws13_c02441{word-spacing:-0.161728pt;}
.ws1d_c02441{word-spacing:-0.157472pt;}
.ws1e_c02441{word-spacing:-0.153216pt;}
.ws15_c02441{word-spacing:-0.148960pt;}
.ws1f_c02441{word-spacing:-0.144704pt;}
.ws0_c02441{word-spacing:-0.140544pt;}
.ws17_c02441{word-spacing:-0.136192pt;}
.ws1b_c02441{word-spacing:-0.131936pt;}
.ws18_c02441{word-spacing:-0.127680pt;}
.ws11_c02441{word-spacing:-0.123424pt;}
.ws1a_c02441{word-spacing:-0.119168pt;}
.ws4_c02441{word-spacing:-0.076800pt;}
.wsc_c02441{word-spacing:-0.070400pt;}
.wsd_c02441{word-spacing:-0.059808pt;}
.ws5_c02441{word-spacing:-0.051200pt;}
.wsa_c02441{word-spacing:-0.012800pt;}
.ws1_c02441{word-spacing:0.000000pt;}
.ws3_c02441{word-spacing:0.040992pt;}
.ws2_c02441{word-spacing:0.052704pt;}
.ws12_c02441{word-spacing:0.178752pt;}
.ws8_c02441{word-spacing:7.014400pt;}
.ws9_c02441{word-spacing:7.040000pt;}
.ws7_c02441{word-spacing:7.232000pt;}
.ws6_c02441{word-spacing:7.360000pt;}
._35_c02441{margin-left:-34.745600pt;}
._1f_c02441{margin-left:-14.649600pt;}
._2d_c02441{margin-left:-2.560000pt;}
._1_c02441{margin-left:-1.024000pt;}
._1a_c02441{width:15.232448pt;}
._9_c02441{width:66.046848pt;}
._4_c02441{width:67.659712pt;}
._d_c02441{width:68.606848pt;}
._3_c02441{width:69.913312pt;}
._2_c02441{width:71.194368pt;}
._5_c02441{width:72.448000pt;}
._6_c02441{width:76.288000pt;}
._22_c02441{width:86.225216pt;}
._8_c02441{width:87.505216pt;}
._c_c02441{width:88.785216pt;}
._10_c02441{width:94.157077pt;}
._e_c02441{width:97.073984pt;}
._12_c02441{width:102.086848pt;}
._16_c02441{width:103.012032pt;}
._19_c02441{width:104.568672pt;}
._2f_c02441{width:106.065216pt;}
._b_c02441{width:107.985216pt;}
._a_c02441{width:108.926848pt;}
._1b_c02441{width:115.598272pt;}
._24_c02441{width:117.528448pt;}
._1e_c02441{width:121.014272pt;}
._f_c02441{width:122.634816pt;}
._20_c02441{width:123.538496pt;}
._25_c02441{width:129.948064pt;}
._30_c02441{width:134.083488pt;}
._29_c02441{width:135.094272pt;}
._17_c02441{width:136.105728pt;}
._15_c02441{width:137.107136pt;}
._2b_c02441{width:138.074176pt;}
._18_c02441{width:152.560000pt;}
._37_c02441{width:169.131648pt;}
._2c_c02441{width:170.933632pt;}
._0_c02441{width:172.800000pt;}
._38_c02441{width:196.974400pt;}
._1c_c02441{width:202.935904pt;}
._14_c02441{width:207.700928pt;}
._2a_c02441{width:210.564352pt;}
._3a_c02441{width:223.277024pt;}
._3b_c02441{width:258.391584pt;}
._26_c02441{width:275.910976pt;}
._23_c02441{width:290.124320pt;}
._27_c02441{width:314.343808pt;}
._3c_c02441{width:318.458208pt;}
._2e_c02441{width:387.141536pt;}
._7_c02441{width:389.863680pt;}
._32_c02441{width:399.297824pt;}
._36_c02441{width:403.541920pt;}
._1d_c02441{width:414.319808pt;}
._33_c02441{width:494.112992pt;}
._31_c02441{width:517.716768pt;}
._28_c02441{width:554.086848pt;}
._34_c02441{width:560.191648pt;}
._21_c02441{width:565.773824pt;}
._13_c02441{width:571.854496pt;}
._39_c02441{width:591.690304pt;}
._11_c02441{width:616.823392pt;}
.fs4_c02441{font-size:42.560000pt;}
.fs3_c02441{font-size:53.440000pt;}
.fs1_c02441{font-size:58.560000pt;}
.fs0_c02441{font-size:64.000000pt;}
.fs2_c02441{font-size:85.440000pt;}
.y0_c02441{bottom:0.000000pt;}
.y3_c02441{bottom:67.066811pt;}
.y2_c02441{bottom:100.986227pt;}
.y2d_c02441{bottom:127.226667pt;}
.y2c_c02441{bottom:140.106667pt;}
.y2b_c02441{bottom:153.066667pt;}
.y2a_c02441{bottom:166.026667pt;}
.y29_c02441{bottom:178.906667pt;}
.y28_c02441{bottom:191.866667pt;}
.y27_c02441{bottom:204.826667pt;}
.y26_c02441{bottom:217.706667pt;}
.y25_c02441{bottom:230.666667pt;}
.y24_c02441{bottom:243.626667pt;}
.y23_c02441{bottom:256.506667pt;}
.y22_c02441{bottom:269.466667pt;}
.y21_c02441{bottom:282.426667pt;}
.y20_c02441{bottom:295.306667pt;}
.y1f_c02441{bottom:308.266667pt;}
.y1e_c02441{bottom:321.226667pt;}
.y1d_c02441{bottom:334.106667pt;}
.y1c_c02441{bottom:347.066667pt;}
.y1b_c02441{bottom:360.026667pt;}
.y1a_c02441{bottom:372.906667pt;}
.y19_c02441{bottom:385.866667pt;}
.y18_c02441{bottom:398.826667pt;}
.y17_c02441{bottom:411.706667pt;}
.y16_c02441{bottom:424.666667pt;}
.y15_c02441{bottom:437.546667pt;}
.y14_c02441{bottom:450.506667pt;}
.y13_c02441{bottom:463.466667pt;}
.y12_c02441{bottom:476.346667pt;}
.y11_c02441{bottom:489.306667pt;}
.y10_c02441{bottom:502.266667pt;}
.yb_c02441{bottom:515.706667pt;}
.yf_c02441{bottom:528.986667pt;}
.yd_c02441{bottom:533.946411pt;}
.ye_c02441{bottom:533.946667pt;}
.ya_c02441{bottom:536.266667pt;}
.yc_c02441{bottom:546.186667pt;}
.y9_c02441{bottom:562.666731pt;}
.y8_c02441{bottom:582.026667pt;}
.y7_c02441{bottom:601.946667pt;}
.y6_c02441{bottom:623.146667pt;}
.y5_c02441{bottom:644.266667pt;}
.y4_c02441{bottom:665.226667pt;}
.y1_c02441{bottom:732.826667pt;}
.h4_c02441{height:39.030469pt;}
.he_c02441{height:41.932500pt;}
.hf_c02441{height:41.933033pt;}
.ha_c02441{height:42.892500pt;}
.h3_c02441{height:48.294844pt;}
.h9_c02441{height:52.448437pt;}
.h7_c02441{height:57.473437pt;}
.h6_c02441{height:59.017500pt;}
.h5_c02441{height:62.812500pt;}
.h2_c02441{height:64.500000pt;}
.h8_c02441{height:86.107500pt;}
.hc_c02441{height:91.852500pt;}
.hb_c02441{height:91.853524pt;}
.hd_c02441{height:111.692500pt;}
.h1_c02441{height:793.333333pt;}
.h0_c02441{height:793.626667pt;}
.w0_c02441{width:1122.666667pt;}
.x0_c02441{left:0.000000pt;}
.x7_c02441{left:54.387333pt;}
.x6_c02441{left:63.587467pt;}
.x3_c02441{left:94.468389pt;}
.x1_c02441{left:97.427467pt;}
.x4_c02441{left:154.067333pt;}
.x8_c02441{left:349.667333pt;}
.x9_c02441{left:352.467781pt;}
.xa_c02441{left:389.188549pt;}
.x5_c02441{left:398.707333pt;}
.xb_c02441{left:425.589053pt;}
.xc_c02441{left:462.469421pt;}
.xd_c02441{left:499.349789pt;}
.xe_c02441{left:536.150357pt;}
.x2_c02441{left:550.068117pt;}
.xf_c02441{left:573.027333pt;}
.x10_c02441{left:609.907701pt;}
.x11_c02441{left:646.707333pt;}
.x12_c02441{left:683.507901pt;}
.x13_c02441{left:720.388269pt;}
.x14_c02441{left:757.268637pt;}
.x15_c02441{left:794.149005pt;}
.x16_c02441{left:831.029373pt;}
.x17_c02441{left:867.829941pt;}
.x18_c02441{left:904.710309pt;}
.x19_c02441{left:941.590677pt;}
.x1a_c02441{left:978.787333pt;}
.x1b_c02441{left:1015.667333pt;}
.x1c_c02441{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c8dda23924fbc880dbe17c5.woff2')format("woff");}.ff1_c02442{font-family:ff1_c02442;line-height:1.311035;font-style:normal;font-weight:normal;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_27a5c02097793cafb6b96687.woff2')format("woff");}.ff2_c02442{font-family:ff2_c02442;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02442{font-family:ff3_c02442;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_c02442;src:url('chunks/assets/font_756e118655a50364ba449192.woff2')format("woff");}.ff4_c02442{font-family:ff4_c02442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02442{vertical-align:-1.080000px;}
.v0_c02442{vertical-align:0.000000px;}
.v1_c02442{vertical-align:55.081152px;}
.v2_c02442{vertical-align:77.400000px;}
.ls23_c02442{letter-spacing:-0.144000px;}
.ls21_c02442{letter-spacing:0.000000px;}
.lsb_c02442{letter-spacing:0.023940px;}
.lsd_c02442{letter-spacing:0.028728px;}
.ls0_c02442{letter-spacing:0.032940px;}
.ls8_c02442{letter-spacing:0.033516px;}
.ls1d_c02442{letter-spacing:0.038304px;}
.ls2_c02442{letter-spacing:0.038448px;}
.ls9_c02442{letter-spacing:0.043092px;}
.ls22_c02442{letter-spacing:0.046116px;}
.ls1f_c02442{letter-spacing:0.047880px;}
.ls1e_c02442{letter-spacing:0.052668px;}
.ls1b_c02442{letter-spacing:0.062244px;}
.ls10_c02442{letter-spacing:0.067032px;}
.ls4_c02442{letter-spacing:0.086184px;}
.ls12_c02442{letter-spacing:0.090972px;}
.ls1_c02442{letter-spacing:0.092232px;}
.ls3_c02442{letter-spacing:0.095760px;}
.ls19_c02442{letter-spacing:0.100548px;}
.ls17_c02442{letter-spacing:0.105336px;}
.lse_c02442{letter-spacing:0.110124px;}
.ls18_c02442{letter-spacing:0.124488px;}
.ls16_c02442{letter-spacing:0.129276px;}
.ls11_c02442{letter-spacing:0.134064px;}
.ls1c_c02442{letter-spacing:0.138852px;}
.ls15_c02442{letter-spacing:0.143640px;}
.ls14_c02442{letter-spacing:0.148428px;}
.ls1a_c02442{letter-spacing:0.158004px;}
.lsf_c02442{letter-spacing:0.167580px;}
.ls20_c02442{letter-spacing:0.172368px;}
.ls7_c02442{letter-spacing:0.181944px;}
.ls13_c02442{letter-spacing:135.630000px;}
.ls6_c02442{letter-spacing:137.790000px;}
.ls5_c02442{letter-spacing:138.150000px;}
.lsa_c02442{letter-spacing:153.990000px;}
.lsc_c02442{letter-spacing:171.630000px;}
.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;}
}
.ws1b_c02442{word-spacing:-0.263340px;}
.wsb_c02442{word-spacing:-0.258552px;}
.ws16_c02442{word-spacing:-0.248976px;}
.ws10_c02442{word-spacing:-0.239400px;}
.ws11_c02442{word-spacing:-0.234612px;}
.ws17_c02442{word-spacing:-0.229824px;}
.wse_c02442{word-spacing:-0.225036px;}
.ws12_c02442{word-spacing:-0.220248px;}
.ws14_c02442{word-spacing:-0.215460px;}
.wsa_c02442{word-spacing:-0.201096px;}
.ws13_c02442{word-spacing:-0.196308px;}
.ws15_c02442{word-spacing:-0.191520px;}
.ws5_c02442{word-spacing:-0.186732px;}
.wsf_c02442{word-spacing:-0.181944px;}
.ws0_c02442{word-spacing:-0.158112px;}
.wsc_c02442{word-spacing:-0.158004px;}
.wsd_c02442{word-spacing:-0.153216px;}
.ws19_c02442{word-spacing:-0.143640px;}
.ws1a_c02442{word-spacing:-0.138852px;}
.ws7_c02442{word-spacing:-0.134064px;}
.ws18_c02442{word-spacing:-0.129276px;}
.ws6_c02442{word-spacing:-0.124488px;}
.ws9_c02442{word-spacing:-0.119700px;}
.ws4_c02442{word-spacing:-0.067284px;}
.ws1_c02442{word-spacing:0.000000px;}
.ws3_c02442{word-spacing:0.046116px;}
.ws2_c02442{word-spacing:0.059292px;}
.ws8_c02442{word-spacing:0.244188px;}
._12_c02442{margin-left:-15.991992px;}
._11_c02442{margin-left:-2.880000px;}
._1_c02442{margin-left:-1.288008px;}
._f_c02442{width:1.201788px;}
._19_c02442{width:17.488008px;}
._4_c02442{width:76.117176px;}
._3_c02442{width:78.652476px;}
._2_c02442{width:80.093664px;}
._5_c02442{width:81.504000px;}
._6_c02442{width:85.824000px;}
._9_c02442{width:97.003368px;}
._3e_c02442{width:99.163368px;}
._1e_c02442{width:112.590000px;}
._a_c02442{width:114.982704px;}
._8_c02442{width:121.123368px;}
._34_c02442{width:122.163264px;}
._e_c02442{width:130.222224px;}
._25_c02442{width:135.270000px;}
._20_c02442{width:136.750104px;}
._c_c02442{width:137.790000px;}
._16_c02442{width:138.832848px;}
._15_c02442{width:151.110000px;}
._b_c02442{width:153.990000px;}
._13_c02442{width:155.216736px;}
._d_c02442{width:170.843472px;}
._0_c02442{width:194.400000px;}
._22_c02442{width:221.124096px;}
._18_c02442{width:225.486000px;}
._33_c02442{width:235.430640px;}
._2d_c02442{width:246.893148px;}
._2e_c02442{width:250.560756px;}
._1c_c02442{width:276.775020px;}
._2b_c02442{width:291.407184px;}
._38_c02442{width:293.892192px;}
._10_c02442{width:298.316232px;}
._29_c02442{width:299.714364px;}
._3c_c02442{width:307.355976px;}
._21_c02442{width:323.136000px;}
._32_c02442{width:329.816520px;}
._2c_c02442{width:334.465632px;}
._7_c02442{width:342.939096px;}
._14_c02442{width:361.915272px;}
._30_c02442{width:391.222584px;}
._27_c02442{width:427.127832px;}
._2f_c02442{width:431.595036px;}
._37_c02442{width:436.756464px;}
._28_c02442{width:447.314040px;}
._1d_c02442{width:449.521308px;}
._2a_c02442{width:484.047576px;}
._24_c02442{width:603.436392px;}
._36_c02442{width:608.861124px;}
._3d_c02442{width:617.469984px;}
._1f_c02442{width:623.056248px;}
._3a_c02442{width:625.762764px;}
._1a_c02442{width:643.650768px;}
._26_c02442{width:669.721428px;}
._23_c02442{width:752.266548px;}
._39_c02442{width:770.848740px;}
._31_c02442{width:774.683928px;}
._35_c02442{width:781.573896px;}
._3f_c02442{width:809.262864px;}
._17_c02442{width:922.925196px;}
._3b_c02442{width:1036.913148px;}
._1b_c02442{width:1126.372104px;}
.fc0_c02442{color:rgb(0,0,0);}
.fs4_c02442{font-size:47.880000px;}
.fs3_c02442{font-size:60.120000px;}
.fs1_c02442{font-size:65.880000px;}
.fs0_c02442{font-size:72.000000px;}
.fs2_c02442{font-size:96.120000px;}
.y0_c02442{bottom:0.000000px;}
.y3_c02442{bottom:75.450162px;}
.y2_c02442{bottom:113.609505px;}
.y31_c02442{bottom:136.470000px;}
.y30_c02442{bottom:151.050000px;}
.y2f_c02442{bottom:165.540000px;}
.y2e_c02442{bottom:180.120000px;}
.y2d_c02442{bottom:194.700000px;}
.y2c_c02442{bottom:209.190000px;}
.y2b_c02442{bottom:223.770000px;}
.y2a_c02442{bottom:238.350000px;}
.y29_c02442{bottom:252.840000px;}
.y28_c02442{bottom:267.420000px;}
.y27_c02442{bottom:282.000000px;}
.y26_c02442{bottom:296.490000px;}
.y25_c02442{bottom:311.070000px;}
.y24_c02442{bottom:325.650000px;}
.y23_c02442{bottom:340.140000px;}
.y22_c02442{bottom:354.720000px;}
.y21_c02442{bottom:369.300000px;}
.y20_c02442{bottom:383.790000px;}
.y1f_c02442{bottom:398.370000px;}
.y1e_c02442{bottom:412.860000px;}
.y1d_c02442{bottom:427.440000px;}
.y1c_c02442{bottom:442.020000px;}
.y1b_c02442{bottom:456.510000px;}
.y1a_c02442{bottom:471.090000px;}
.y19_c02442{bottom:485.670000px;}
.y18_c02442{bottom:500.160000px;}
.y17_c02442{bottom:514.740000px;}
.y16_c02442{bottom:529.320000px;}
.y15_c02442{bottom:543.810000px;}
.y14_c02442{bottom:558.390000px;}
.y13_c02442{bottom:572.970000px;}
.y12_c02442{bottom:587.460000px;}
.y11_c02442{bottom:602.040000px;}
.y10_c02442{bottom:616.620000px;}
.yf_c02442{bottom:631.110000px;}
.ye_c02442{bottom:645.690000px;}
.yd_c02442{bottom:660.270000px;}
.yc_c02442{bottom:674.760000px;}
.yb_c02442{bottom:689.340000px;}
.ya_c02442{bottom:703.920000px;}
.y5_c02442{bottom:719.040000px;}
.y9_c02442{bottom:733.980000px;}
.y7_c02442{bottom:739.559712px;}
.y8_c02442{bottom:739.560000px;}
.y4_c02442{bottom:742.170000px;}
.y6_c02442{bottom:753.330000px;}
.y1_c02442{bottom:824.430000px;}
.h4_c02442{height:43.909277px;}
.hb_c02442{height:47.174063px;}
.h7_c02442{height:48.254063px;}
.h3_c02442{height:54.331699px;}
.h6_c02442{height:59.004492px;}
.h2_c02442{height:72.562500px;}
.h5_c02442{height:96.870938px;}
.h9_c02442{height:103.334062px;}
.h8_c02442{height:103.335215px;}
.ha_c02442{height:125.654063px;}
.h1_c02442{height:892.500000px;}
.h0_c02442{height:892.830000px;}
.w0_c02442{width:1263.000000px;}
.x0_c02442{left:0.000000px;}
.x5_c02442{left:61.185750px;}
.x4_c02442{left:71.535900px;}
.x3_c02442{left:106.276938px;}
.x1_c02442{left:109.605900px;}
.x6_c02442{left:393.375750px;}
.x7_c02442{left:396.526254px;}
.x8_c02442{left:437.837118px;}
.x9_c02442{left:478.787685px;}
.xa_c02442{left:520.278099px;}
.xb_c02442{left:561.768513px;}
.xc_c02442{left:603.169152px;}
.x2_c02442{left:618.826632px;}
.xd_c02442{left:644.655750px;}
.xe_c02442{left:686.146164px;}
.xf_c02442{left:727.545750px;}
.x10_c02442{left:768.946389px;}
.x11_c02442{left:810.436803px;}
.x12_c02442{left:851.927217px;}
.x13_c02442{left:893.417631px;}
.x14_c02442{left:934.908045px;}
.x15_c02442{left:976.308684px;}
.x16_c02442{left:1017.799098px;}
.x17_c02442{left:1059.289512px;}
.x18_c02442{left:1101.135750px;}
.x19_c02442{left:1142.625750px;}
.x1a_c02442{left:1182.135750px;}
@media print{
.v3_c02442{vertical-align:-0.960000pt;}
.v0_c02442{vertical-align:0.000000pt;}
.v1_c02442{vertical-align:48.961024pt;}
.v2_c02442{vertical-align:68.800000pt;}
.ls23_c02442{letter-spacing:-0.128000pt;}
.ls21_c02442{letter-spacing:0.000000pt;}
.lsb_c02442{letter-spacing:0.021280pt;}
.lsd_c02442{letter-spacing:0.025536pt;}
.ls0_c02442{letter-spacing:0.029280pt;}
.ls8_c02442{letter-spacing:0.029792pt;}
.ls1d_c02442{letter-spacing:0.034048pt;}
.ls2_c02442{letter-spacing:0.034176pt;}
.ls9_c02442{letter-spacing:0.038304pt;}
.ls22_c02442{letter-spacing:0.040992pt;}
.ls1f_c02442{letter-spacing:0.042560pt;}
.ls1e_c02442{letter-spacing:0.046816pt;}
.ls1b_c02442{letter-spacing:0.055328pt;}
.ls10_c02442{letter-spacing:0.059584pt;}
.ls4_c02442{letter-spacing:0.076608pt;}
.ls12_c02442{letter-spacing:0.080864pt;}
.ls1_c02442{letter-spacing:0.081984pt;}
.ls3_c02442{letter-spacing:0.085120pt;}
.ls19_c02442{letter-spacing:0.089376pt;}
.ls17_c02442{letter-spacing:0.093632pt;}
.lse_c02442{letter-spacing:0.097888pt;}
.ls18_c02442{letter-spacing:0.110656pt;}
.ls16_c02442{letter-spacing:0.114912pt;}
.ls11_c02442{letter-spacing:0.119168pt;}
.ls1c_c02442{letter-spacing:0.123424pt;}
.ls15_c02442{letter-spacing:0.127680pt;}
.ls14_c02442{letter-spacing:0.131936pt;}
.ls1a_c02442{letter-spacing:0.140448pt;}
.lsf_c02442{letter-spacing:0.148960pt;}
.ls20_c02442{letter-spacing:0.153216pt;}
.ls7_c02442{letter-spacing:0.161728pt;}
.ls13_c02442{letter-spacing:120.560000pt;}
.ls6_c02442{letter-spacing:122.480000pt;}
.ls5_c02442{letter-spacing:122.800000pt;}
.lsa_c02442{letter-spacing:136.880000pt;}
.lsc_c02442{letter-spacing:152.560000pt;}
.ws1b_c02442{word-spacing:-0.234080pt;}
.wsb_c02442{word-spacing:-0.229824pt;}
.ws16_c02442{word-spacing:-0.221312pt;}
.ws10_c02442{word-spacing:-0.212800pt;}
.ws11_c02442{word-spacing:-0.208544pt;}
.ws17_c02442{word-spacing:-0.204288pt;}
.wse_c02442{word-spacing:-0.200032pt;}
.ws12_c02442{word-spacing:-0.195776pt;}
.ws14_c02442{word-spacing:-0.191520pt;}
.wsa_c02442{word-spacing:-0.178752pt;}
.ws13_c02442{word-spacing:-0.174496pt;}
.ws15_c02442{word-spacing:-0.170240pt;}
.ws5_c02442{word-spacing:-0.165984pt;}
.wsf_c02442{word-spacing:-0.161728pt;}
.ws0_c02442{word-spacing:-0.140544pt;}
.wsc_c02442{word-spacing:-0.140448pt;}
.wsd_c02442{word-spacing:-0.136192pt;}
.ws19_c02442{word-spacing:-0.127680pt;}
.ws1a_c02442{word-spacing:-0.123424pt;}
.ws7_c02442{word-spacing:-0.119168pt;}
.ws18_c02442{word-spacing:-0.114912pt;}
.ws6_c02442{word-spacing:-0.110656pt;}
.ws9_c02442{word-spacing:-0.106400pt;}
.ws4_c02442{word-spacing:-0.059808pt;}
.ws1_c02442{word-spacing:0.000000pt;}
.ws3_c02442{word-spacing:0.040992pt;}
.ws2_c02442{word-spacing:0.052704pt;}
.ws8_c02442{word-spacing:0.217056pt;}
._12_c02442{margin-left:-14.215104pt;}
._11_c02442{margin-left:-2.560000pt;}
._1_c02442{margin-left:-1.144896pt;}
._f_c02442{width:1.068256pt;}
._19_c02442{width:15.544896pt;}
._4_c02442{width:67.659712pt;}
._3_c02442{width:69.913312pt;}
._2_c02442{width:71.194368pt;}
._5_c02442{width:72.448000pt;}
._6_c02442{width:76.288000pt;}
._9_c02442{width:86.225216pt;}
._3e_c02442{width:88.145216pt;}
._1e_c02442{width:100.080000pt;}
._a_c02442{width:102.206848pt;}
._8_c02442{width:107.665216pt;}
._34_c02442{width:108.589568pt;}
._e_c02442{width:115.753088pt;}
._25_c02442{width:120.240000pt;}
._20_c02442{width:121.555648pt;}
._c_c02442{width:122.480000pt;}
._16_c02442{width:123.406976pt;}
._15_c02442{width:134.320000pt;}
._b_c02442{width:136.880000pt;}
._13_c02442{width:137.970432pt;}
._d_c02442{width:151.860864pt;}
._0_c02442{width:172.800000pt;}
._22_c02442{width:196.554752pt;}
._18_c02442{width:200.432000pt;}
._33_c02442{width:209.271680pt;}
._2d_c02442{width:219.460576pt;}
._2e_c02442{width:222.720672pt;}
._1c_c02442{width:246.022240pt;}
._2b_c02442{width:259.028608pt;}
._38_c02442{width:261.237504pt;}
._10_c02442{width:265.169984pt;}
._29_c02442{width:266.412768pt;}
._3c_c02442{width:273.205312pt;}
._21_c02442{width:287.232000pt;}
._32_c02442{width:293.170240pt;}
._2c_c02442{width:297.302784pt;}
._7_c02442{width:304.834752pt;}
._14_c02442{width:321.702464pt;}
._30_c02442{width:347.753408pt;}
._27_c02442{width:379.669184pt;}
._2f_c02442{width:383.640032pt;}
._37_c02442{width:388.227968pt;}
._28_c02442{width:397.612480pt;}
._1d_c02442{width:399.574496pt;}
._2a_c02442{width:430.264512pt;}
._24_c02442{width:536.387904pt;}
._36_c02442{width:541.209888pt;}
._3d_c02442{width:548.862208pt;}
._1f_c02442{width:553.827776pt;}
._3a_c02442{width:556.233568pt;}
._1a_c02442{width:572.134016pt;}
._26_c02442{width:595.307936pt;}
._23_c02442{width:668.681376pt;}
._39_c02442{width:685.198880pt;}
._31_c02442{width:688.607936pt;}
._35_c02442{width:694.732352pt;}
._3f_c02442{width:719.344768pt;}
._17_c02442{width:820.377952pt;}
._3b_c02442{width:921.700576pt;}
._1b_c02442{width:1001.219648pt;}
.fs4_c02442{font-size:42.560000pt;}
.fs3_c02442{font-size:53.440000pt;}
.fs1_c02442{font-size:58.560000pt;}
.fs0_c02442{font-size:64.000000pt;}
.fs2_c02442{font-size:85.440000pt;}
.y0_c02442{bottom:0.000000pt;}
.y3_c02442{bottom:67.066811pt;}
.y2_c02442{bottom:100.986227pt;}
.y31_c02442{bottom:121.306667pt;}
.y30_c02442{bottom:134.266667pt;}
.y2f_c02442{bottom:147.146667pt;}
.y2e_c02442{bottom:160.106667pt;}
.y2d_c02442{bottom:173.066667pt;}
.y2c_c02442{bottom:185.946667pt;}
.y2b_c02442{bottom:198.906667pt;}
.y2a_c02442{bottom:211.866667pt;}
.y29_c02442{bottom:224.746667pt;}
.y28_c02442{bottom:237.706667pt;}
.y27_c02442{bottom:250.666667pt;}
.y26_c02442{bottom:263.546667pt;}
.y25_c02442{bottom:276.506667pt;}
.y24_c02442{bottom:289.466667pt;}
.y23_c02442{bottom:302.346667pt;}
.y22_c02442{bottom:315.306667pt;}
.y21_c02442{bottom:328.266667pt;}
.y20_c02442{bottom:341.146667pt;}
.y1f_c02442{bottom:354.106667pt;}
.y1e_c02442{bottom:366.986667pt;}
.y1d_c02442{bottom:379.946667pt;}
.y1c_c02442{bottom:392.906667pt;}
.y1b_c02442{bottom:405.786667pt;}
.y1a_c02442{bottom:418.746667pt;}
.y19_c02442{bottom:431.706667pt;}
.y18_c02442{bottom:444.586667pt;}
.y17_c02442{bottom:457.546667pt;}
.y16_c02442{bottom:470.506667pt;}
.y15_c02442{bottom:483.386667pt;}
.y14_c02442{bottom:496.346667pt;}
.y13_c02442{bottom:509.306667pt;}
.y12_c02442{bottom:522.186667pt;}
.y11_c02442{bottom:535.146667pt;}
.y10_c02442{bottom:548.106667pt;}
.yf_c02442{bottom:560.986667pt;}
.ye_c02442{bottom:573.946667pt;}
.yd_c02442{bottom:586.906667pt;}
.yc_c02442{bottom:599.786667pt;}
.yb_c02442{bottom:612.746667pt;}
.ya_c02442{bottom:625.706667pt;}
.y5_c02442{bottom:639.146667pt;}
.y9_c02442{bottom:652.426667pt;}
.y7_c02442{bottom:657.386411pt;}
.y8_c02442{bottom:657.386667pt;}
.y4_c02442{bottom:659.706667pt;}
.y6_c02442{bottom:669.626667pt;}
.y1_c02442{bottom:732.826667pt;}
.h4_c02442{height:39.030469pt;}
.hb_c02442{height:41.932500pt;}
.h7_c02442{height:42.892500pt;}
.h3_c02442{height:48.294844pt;}
.h6_c02442{height:52.448437pt;}
.h2_c02442{height:64.500000pt;}
.h5_c02442{height:86.107500pt;}
.h9_c02442{height:91.852500pt;}
.h8_c02442{height:91.853524pt;}
.ha_c02442{height:111.692500pt;}
.h1_c02442{height:793.333333pt;}
.h0_c02442{height:793.626667pt;}
.w0_c02442{width:1122.666667pt;}
.x0_c02442{left:0.000000pt;}
.x5_c02442{left:54.387333pt;}
.x4_c02442{left:63.587467pt;}
.x3_c02442{left:94.468389pt;}
.x1_c02442{left:97.427467pt;}
.x6_c02442{left:349.667333pt;}
.x7_c02442{left:352.467781pt;}
.x8_c02442{left:389.188549pt;}
.x9_c02442{left:425.589053pt;}
.xa_c02442{left:462.469421pt;}
.xb_c02442{left:499.349789pt;}
.xc_c02442{left:536.150357pt;}
.x2_c02442{left:550.068117pt;}
.xd_c02442{left:573.027333pt;}
.xe_c02442{left:609.907701pt;}
.xf_c02442{left:646.707333pt;}
.x10_c02442{left:683.507901pt;}
.x11_c02442{left:720.388269pt;}
.x12_c02442{left:757.268637pt;}
.x13_c02442{left:794.149005pt;}
.x14_c02442{left:831.029373pt;}
.x15_c02442{left:867.829941pt;}
.x16_c02442{left:904.710309pt;}
.x17_c02442{left:941.590677pt;}
.x18_c02442{left:978.787333pt;}
.x19_c02442{left:1015.667333pt;}
.x1a_c02442{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e818866f00a81a03735a474.woff2')format("woff");}.ff1_c02443{font-family:ff1_c02443;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02443;src:url('chunks/assets/font_137e9bb12288e5899c5452e2.woff2')format("woff");}.ff2_c02443{font-family:ff2_c02443;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02443{font-family:ff3_c02443;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_c02443;src:url('chunks/assets/font_bc6a1c26ca10b4c0e97fca2a.woff2')format("woff");}.ff4_c02443{font-family:ff4_c02443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7_c02443{vertical-align:-13.320000px;}
.v5_c02443{vertical-align:-7.200000px;}
.v4_c02443{vertical-align:-6.120000px;}
.v3_c02443{vertical-align:-1.080000px;}
.v0_c02443{vertical-align:0.000000px;}
.v6_c02443{vertical-align:8.280000px;}
.v8_c02443{vertical-align:12.240000px;}
.v1_c02443{vertical-align:55.081152px;}
.v2_c02443{vertical-align:77.400000px;}
.ls1e_c02443{letter-spacing:-0.144000px;}
.ls1c_c02443{letter-spacing:0.000000px;}
.ls1a_c02443{letter-spacing:0.023940px;}
.ls0_c02443{letter-spacing:0.032940px;}
.ls8_c02443{letter-spacing:0.033516px;}
.ls3_c02443{letter-spacing:0.038304px;}
.ls2_c02443{letter-spacing:0.038448px;}
.ls1b_c02443{letter-spacing:0.043092px;}
.ls1d_c02443{letter-spacing:0.046116px;}
.ls9_c02443{letter-spacing:0.047880px;}
.ls11_c02443{letter-spacing:0.052668px;}
.ls12_c02443{letter-spacing:0.057456px;}
.lsf_c02443{letter-spacing:0.071820px;}
.ls10_c02443{letter-spacing:0.081396px;}
.lsc_c02443{letter-spacing:0.086184px;}
.lsb_c02443{letter-spacing:0.090972px;}
.ls1_c02443{letter-spacing:0.092232px;}
.ls13_c02443{letter-spacing:0.095760px;}
.ls14_c02443{letter-spacing:0.100548px;}
.ls6_c02443{letter-spacing:0.105336px;}
.ls16_c02443{letter-spacing:0.110124px;}
.lsa_c02443{letter-spacing:0.119700px;}
.lsd_c02443{letter-spacing:0.124488px;}
.ls7_c02443{letter-spacing:0.134064px;}
.ls5_c02443{letter-spacing:0.181944px;}
.ls19_c02443{letter-spacing:72.990000px;}
.ls17_c02443{letter-spacing:137.430000px;}
.ls15_c02443{letter-spacing:137.790000px;}
.lse_c02443{letter-spacing:138.150000px;}
.ls4_c02443{letter-spacing:153.990000px;}
.ls18_c02443{letter-spacing:1359.270000px;}
.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;}
}
.ws7_c02443{word-spacing:-0.225036px;}
.wsd_c02443{word-spacing:-0.215460px;}
.wsa_c02443{word-spacing:-0.210672px;}
.ws14_c02443{word-spacing:-0.201096px;}
.ws6_c02443{word-spacing:-0.196308px;}
.ws13_c02443{word-spacing:-0.191520px;}
.ws12_c02443{word-spacing:-0.186732px;}
.wsb_c02443{word-spacing:-0.181944px;}
.wsc_c02443{word-spacing:-0.177156px;}
.wsf_c02443{word-spacing:-0.172368px;}
.wse_c02443{word-spacing:-0.162792px;}
.ws0_c02443{word-spacing:-0.158112px;}
.ws11_c02443{word-spacing:-0.148428px;}
.ws10_c02443{word-spacing:-0.143640px;}
.ws9_c02443{word-spacing:-0.138852px;}
.ws16_c02443{word-spacing:-0.134064px;}
.ws5_c02443{word-spacing:-0.129276px;}
.ws8_c02443{word-spacing:-0.124488px;}
.ws15_c02443{word-spacing:-0.114912px;}
.ws4_c02443{word-spacing:-0.067284px;}
.ws1_c02443{word-spacing:0.000000px;}
.ws3_c02443{word-spacing:0.046116px;}
.ws2_c02443{word-spacing:0.059292px;}
._14_c02443{margin-left:-15.991992px;}
._13_c02443{margin-left:-2.880000px;}
._1_c02443{margin-left:-1.288008px;}
._7_c02443{width:1.139544px;}
._e_c02443{width:16.813368px;}
._20_c02443{width:18.106632px;}
._30_c02443{width:50.608008px;}
._36_c02443{width:73.207764px;}
._4_c02443{width:76.117176px;}
._3_c02443{width:78.652476px;}
._2_c02443{width:80.093664px;}
._5_c02443{width:81.504000px;}
._6_c02443{width:85.824000px;}
._31_c02443{width:90.082224px;}
._33_c02443{width:100.524168px;}
._34_c02443{width:105.564168px;}
._35_c02443{width:106.719660px;}
._1e_c02443{width:118.938600px;}
._d_c02443{width:121.843368px;}
._2e_c02443{width:128.562516px;}
._f_c02443{width:129.862224px;}
._29_c02443{width:135.630000px;}
._1f_c02443{width:136.856736px;}
._c_c02443{width:138.150000px;}
._a_c02443{width:151.470000px;}
._9_c02443{width:153.630000px;}
._b_c02443{width:154.710000px;}
._28_c02443{width:158.295996px;}
._37_c02443{width:162.082224px;}
._26_c02443{width:165.219444px;}
._15_c02443{width:171.523368px;}
._22_c02443{width:181.905588px;}
._23_c02443{width:193.387212px;}
._0_c02443{width:194.400000px;}
._2c_c02443{width:204.160212px;}
._18_c02443{width:267.093684px;}
._2b_c02443{width:280.787400px;}
._11_c02443{width:281.807280px;}
._27_c02443{width:325.698840px;}
._12_c02443{width:329.184468px;}
._2f_c02443{width:337.103856px;}
._10_c02443{width:369.892080px;}
._16_c02443{width:393.702804px;}
._8_c02443{width:409.038732px;}
._1d_c02443{width:440.328312px;}
._17_c02443{width:513.335736px;}
._1b_c02443{width:563.423004px;}
._1c_c02443{width:568.311552px;}
._2d_c02443{width:583.877340px;}
._25_c02443{width:633.442716px;}
._2a_c02443{width:669.841128px;}
._24_c02443{width:672.163272px;}
._1a_c02443{width:709.974108px;}
._21_c02443{width:796.282596px;}
._19_c02443{width:958.188852px;}
._39_c02443{width:1120.643892px;}
._32_c02443{width:1222.048944px;}
._38_c02443{width:1245.808944px;}
.fc0_c02443{color:rgb(0,0,0);}
.fs4_c02443{font-size:47.880000px;}
.fs3_c02443{font-size:60.120000px;}
.fs1_c02443{font-size:65.880000px;}
.fs0_c02443{font-size:72.000000px;}
.fs2_c02443{font-size:96.120000px;}
.y0_c02443{bottom:0.000000px;}
.y3_c02443{bottom:75.450162px;}
.y2_c02443{bottom:113.609505px;}
.y2d_c02443{bottom:156.269631px;}
.y2c_c02443{bottom:178.049559px;}
.y2b_c02443{bottom:199.829487px;}
.y2a_c02443{bottom:221.700000px;}
.y29_c02443{bottom:243.660000px;}
.y28_c02443{bottom:261.300000px;}
.y27_c02443{bottom:278.850000px;}
.y26_c02443{bottom:296.490000px;}
.y25_c02443{bottom:311.070000px;}
.y24_c02443{bottom:325.650000px;}
.y23_c02443{bottom:340.140000px;}
.y22_c02443{bottom:354.720000px;}
.y21_c02443{bottom:369.300000px;}
.y20_c02443{bottom:383.790000px;}
.y1f_c02443{bottom:398.370000px;}
.y1e_c02443{bottom:412.860000px;}
.y1d_c02443{bottom:427.440000px;}
.y1c_c02443{bottom:442.020000px;}
.y1b_c02443{bottom:456.510000px;}
.y1a_c02443{bottom:471.090000px;}
.y19_c02443{bottom:485.670000px;}
.y18_c02443{bottom:500.160000px;}
.y17_c02443{bottom:514.740000px;}
.y16_c02443{bottom:529.320000px;}
.y15_c02443{bottom:543.810000px;}
.y14_c02443{bottom:558.390000px;}
.y13_c02443{bottom:572.970000px;}
.y12_c02443{bottom:587.460000px;}
.y11_c02443{bottom:602.040000px;}
.y10_c02443{bottom:616.620000px;}
.yf_c02443{bottom:631.110000px;}
.ye_c02443{bottom:645.690000px;}
.yd_c02443{bottom:660.270000px;}
.yc_c02443{bottom:674.760000px;}
.yb_c02443{bottom:689.340000px;}
.ya_c02443{bottom:703.920000px;}
.y5_c02443{bottom:719.040000px;}
.y9_c02443{bottom:733.980000px;}
.y7_c02443{bottom:739.559712px;}
.y8_c02443{bottom:739.560000px;}
.y4_c02443{bottom:742.170000px;}
.y6_c02443{bottom:753.330000px;}
.y1_c02443{bottom:824.430000px;}
.h4_c02443{height:43.909277px;}
.hc_c02443{height:46.991602px;}
.hb_c02443{height:47.174063px;}
.h7_c02443{height:48.254063px;}
.h3_c02443{height:54.331699px;}
.h6_c02443{height:59.004492px;}
.hd_c02443{height:64.657617px;}
.h2_c02443{height:72.562500px;}
.h5_c02443{height:96.870938px;}
.h9_c02443{height:103.334062px;}
.h8_c02443{height:103.335215px;}
.ha_c02443{height:125.654063px;}
.h1_c02443{height:892.500000px;}
.h0_c02443{height:892.830000px;}
.w0_c02443{width:1263.000000px;}
.x0_c02443{left:0.000000px;}
.x5_c02443{left:61.185750px;}
.x4_c02443{left:71.535900px;}
.x3_c02443{left:106.276938px;}
.x1_c02443{left:109.605900px;}
.x6_c02443{left:393.375750px;}
.x7_c02443{left:396.526254px;}
.x8_c02443{left:437.837118px;}
.x9_c02443{left:478.787685px;}
.xa_c02443{left:520.278099px;}
.xb_c02443{left:561.768513px;}
.xc_c02443{left:603.169152px;}
.x2_c02443{left:618.826632px;}
.xd_c02443{left:644.655750px;}
.xe_c02443{left:686.146164px;}
.xf_c02443{left:727.545750px;}
.x10_c02443{left:768.946389px;}
.x11_c02443{left:810.436803px;}
.x12_c02443{left:851.927217px;}
.x13_c02443{left:893.417631px;}
.x14_c02443{left:934.908045px;}
.x15_c02443{left:976.308684px;}
.x16_c02443{left:1017.799098px;}
.x17_c02443{left:1059.289512px;}
.x18_c02443{left:1101.135750px;}
.x19_c02443{left:1142.625750px;}
.x1a_c02443{left:1182.135750px;}
@media print{
.v7_c02443{vertical-align:-11.840000pt;}
.v5_c02443{vertical-align:-6.400000pt;}
.v4_c02443{vertical-align:-5.440000pt;}
.v3_c02443{vertical-align:-0.960000pt;}
.v0_c02443{vertical-align:0.000000pt;}
.v6_c02443{vertical-align:7.360000pt;}
.v8_c02443{vertical-align:10.880000pt;}
.v1_c02443{vertical-align:48.961024pt;}
.v2_c02443{vertical-align:68.800000pt;}
.ls1e_c02443{letter-spacing:-0.128000pt;}
.ls1c_c02443{letter-spacing:0.000000pt;}
.ls1a_c02443{letter-spacing:0.021280pt;}
.ls0_c02443{letter-spacing:0.029280pt;}
.ls8_c02443{letter-spacing:0.029792pt;}
.ls3_c02443{letter-spacing:0.034048pt;}
.ls2_c02443{letter-spacing:0.034176pt;}
.ls1b_c02443{letter-spacing:0.038304pt;}
.ls1d_c02443{letter-spacing:0.040992pt;}
.ls9_c02443{letter-spacing:0.042560pt;}
.ls11_c02443{letter-spacing:0.046816pt;}
.ls12_c02443{letter-spacing:0.051072pt;}
.lsf_c02443{letter-spacing:0.063840pt;}
.ls10_c02443{letter-spacing:0.072352pt;}
.lsc_c02443{letter-spacing:0.076608pt;}
.lsb_c02443{letter-spacing:0.080864pt;}
.ls1_c02443{letter-spacing:0.081984pt;}
.ls13_c02443{letter-spacing:0.085120pt;}
.ls14_c02443{letter-spacing:0.089376pt;}
.ls6_c02443{letter-spacing:0.093632pt;}
.ls16_c02443{letter-spacing:0.097888pt;}
.lsa_c02443{letter-spacing:0.106400pt;}
.lsd_c02443{letter-spacing:0.110656pt;}
.ls7_c02443{letter-spacing:0.119168pt;}
.ls5_c02443{letter-spacing:0.161728pt;}
.ls19_c02443{letter-spacing:64.880000pt;}
.ls17_c02443{letter-spacing:122.160000pt;}
.ls15_c02443{letter-spacing:122.480000pt;}
.lse_c02443{letter-spacing:122.800000pt;}
.ls4_c02443{letter-spacing:136.880000pt;}
.ls18_c02443{letter-spacing:1208.240000pt;}
.ws7_c02443{word-spacing:-0.200032pt;}
.wsd_c02443{word-spacing:-0.191520pt;}
.wsa_c02443{word-spacing:-0.187264pt;}
.ws14_c02443{word-spacing:-0.178752pt;}
.ws6_c02443{word-spacing:-0.174496pt;}
.ws13_c02443{word-spacing:-0.170240pt;}
.ws12_c02443{word-spacing:-0.165984pt;}
.wsb_c02443{word-spacing:-0.161728pt;}
.wsc_c02443{word-spacing:-0.157472pt;}
.wsf_c02443{word-spacing:-0.153216pt;}
.wse_c02443{word-spacing:-0.144704pt;}
.ws0_c02443{word-spacing:-0.140544pt;}
.ws11_c02443{word-spacing:-0.131936pt;}
.ws10_c02443{word-spacing:-0.127680pt;}
.ws9_c02443{word-spacing:-0.123424pt;}
.ws16_c02443{word-spacing:-0.119168pt;}
.ws5_c02443{word-spacing:-0.114912pt;}
.ws8_c02443{word-spacing:-0.110656pt;}
.ws15_c02443{word-spacing:-0.102144pt;}
.ws4_c02443{word-spacing:-0.059808pt;}
.ws1_c02443{word-spacing:0.000000pt;}
.ws3_c02443{word-spacing:0.040992pt;}
.ws2_c02443{word-spacing:0.052704pt;}
._14_c02443{margin-left:-14.215104pt;}
._13_c02443{margin-left:-2.560000pt;}
._1_c02443{margin-left:-1.144896pt;}
._7_c02443{width:1.012928pt;}
._e_c02443{width:14.945216pt;}
._20_c02443{width:16.094784pt;}
._30_c02443{width:44.984896pt;}
._36_c02443{width:65.073568pt;}
._4_c02443{width:67.659712pt;}
._3_c02443{width:69.913312pt;}
._2_c02443{width:71.194368pt;}
._5_c02443{width:72.448000pt;}
._6_c02443{width:76.288000pt;}
._31_c02443{width:80.073088pt;}
._33_c02443{width:89.354816pt;}
._34_c02443{width:93.834816pt;}
._35_c02443{width:94.861920pt;}
._1e_c02443{width:105.723200pt;}
._d_c02443{width:108.305216pt;}
._2e_c02443{width:114.277792pt;}
._f_c02443{width:115.433088pt;}
._29_c02443{width:120.560000pt;}
._1f_c02443{width:121.650432pt;}
._c_c02443{width:122.800000pt;}
._a_c02443{width:134.640000pt;}
._9_c02443{width:136.560000pt;}
._b_c02443{width:137.520000pt;}
._28_c02443{width:140.707552pt;}
._37_c02443{width:144.073088pt;}
._26_c02443{width:146.861728pt;}
._15_c02443{width:152.465216pt;}
._22_c02443{width:161.693856pt;}
._23_c02443{width:171.899744pt;}
._0_c02443{width:172.800000pt;}
._2c_c02443{width:181.475744pt;}
._18_c02443{width:237.416608pt;}
._2b_c02443{width:249.588800pt;}
._11_c02443{width:250.495360pt;}
._27_c02443{width:289.510080pt;}
._12_c02443{width:292.608416pt;}
._2f_c02443{width:299.647872pt;}
._10_c02443{width:328.792960pt;}
._16_c02443{width:349.958048pt;}
._8_c02443{width:363.589984pt;}
._1d_c02443{width:391.402944pt;}
._17_c02443{width:456.298432pt;}
._1b_c02443{width:500.820448pt;}
._1c_c02443{width:505.165824pt;}
._2d_c02443{width:519.002080pt;}
._25_c02443{width:563.060192pt;}
._2a_c02443{width:595.414336pt;}
._24_c02443{width:597.478464pt;}
._1a_c02443{width:631.088096pt;}
._21_c02443{width:707.806752pt;}
._19_c02443{width:851.723424pt;}
._39_c02443{width:996.127904pt;}
._32_c02443{width:1086.265728pt;}
._38_c02443{width:1107.385728pt;}
.fs4_c02443{font-size:42.560000pt;}
.fs3_c02443{font-size:53.440000pt;}
.fs1_c02443{font-size:58.560000pt;}
.fs0_c02443{font-size:64.000000pt;}
.fs2_c02443{font-size:85.440000pt;}
.y0_c02443{bottom:0.000000pt;}
.y3_c02443{bottom:67.066811pt;}
.y2_c02443{bottom:100.986227pt;}
.y2d_c02443{bottom:138.906339pt;}
.y2c_c02443{bottom:158.266275pt;}
.y2b_c02443{bottom:177.626211pt;}
.y2a_c02443{bottom:197.066667pt;}
.y29_c02443{bottom:216.586667pt;}
.y28_c02443{bottom:232.266667pt;}
.y27_c02443{bottom:247.866667pt;}
.y26_c02443{bottom:263.546667pt;}
.y25_c02443{bottom:276.506667pt;}
.y24_c02443{bottom:289.466667pt;}
.y23_c02443{bottom:302.346667pt;}
.y22_c02443{bottom:315.306667pt;}
.y21_c02443{bottom:328.266667pt;}
.y20_c02443{bottom:341.146667pt;}
.y1f_c02443{bottom:354.106667pt;}
.y1e_c02443{bottom:366.986667pt;}
.y1d_c02443{bottom:379.946667pt;}
.y1c_c02443{bottom:392.906667pt;}
.y1b_c02443{bottom:405.786667pt;}
.y1a_c02443{bottom:418.746667pt;}
.y19_c02443{bottom:431.706667pt;}
.y18_c02443{bottom:444.586667pt;}
.y17_c02443{bottom:457.546667pt;}
.y16_c02443{bottom:470.506667pt;}
.y15_c02443{bottom:483.386667pt;}
.y14_c02443{bottom:496.346667pt;}
.y13_c02443{bottom:509.306667pt;}
.y12_c02443{bottom:522.186667pt;}
.y11_c02443{bottom:535.146667pt;}
.y10_c02443{bottom:548.106667pt;}
.yf_c02443{bottom:560.986667pt;}
.ye_c02443{bottom:573.946667pt;}
.yd_c02443{bottom:586.906667pt;}
.yc_c02443{bottom:599.786667pt;}
.yb_c02443{bottom:612.746667pt;}
.ya_c02443{bottom:625.706667pt;}
.y5_c02443{bottom:639.146667pt;}
.y9_c02443{bottom:652.426667pt;}
.y7_c02443{bottom:657.386411pt;}
.y8_c02443{bottom:657.386667pt;}
.y4_c02443{bottom:659.706667pt;}
.y6_c02443{bottom:669.626667pt;}
.y1_c02443{bottom:732.826667pt;}
.h4_c02443{height:39.030469pt;}
.hc_c02443{height:41.770312pt;}
.hb_c02443{height:41.932500pt;}
.h7_c02443{height:42.892500pt;}
.h3_c02443{height:48.294844pt;}
.h6_c02443{height:52.448437pt;}
.hd_c02443{height:57.473437pt;}
.h2_c02443{height:64.500000pt;}
.h5_c02443{height:86.107500pt;}
.h9_c02443{height:91.852500pt;}
.h8_c02443{height:91.853524pt;}
.ha_c02443{height:111.692500pt;}
.h1_c02443{height:793.333333pt;}
.h0_c02443{height:793.626667pt;}
.w0_c02443{width:1122.666667pt;}
.x0_c02443{left:0.000000pt;}
.x5_c02443{left:54.387333pt;}
.x4_c02443{left:63.587467pt;}
.x3_c02443{left:94.468389pt;}
.x1_c02443{left:97.427467pt;}
.x6_c02443{left:349.667333pt;}
.x7_c02443{left:352.467781pt;}
.x8_c02443{left:389.188549pt;}
.x9_c02443{left:425.589053pt;}
.xa_c02443{left:462.469421pt;}
.xb_c02443{left:499.349789pt;}
.xc_c02443{left:536.150357pt;}
.x2_c02443{left:550.068117pt;}
.xd_c02443{left:573.027333pt;}
.xe_c02443{left:609.907701pt;}
.xf_c02443{left:646.707333pt;}
.x10_c02443{left:683.507901pt;}
.x11_c02443{left:720.388269pt;}
.x12_c02443{left:757.268637pt;}
.x13_c02443{left:794.149005pt;}
.x14_c02443{left:831.029373pt;}
.x15_c02443{left:867.829941pt;}
.x16_c02443{left:904.710309pt;}
.x17_c02443{left:941.590677pt;}
.x18_c02443{left:978.787333pt;}
.x19_c02443{left:1015.667333pt;}
.x1a_c02443{left:1050.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_448b547365e30c0315879485.woff2')format("woff");}.ff1_c02444{font-family:ff1_c02444;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02444;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff2_c02444{font-family:ff2_c02444;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02444{font-family:ff3_c02444;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_c02444;src:url('chunks/assets/font_ba6c603b45d90faf9864dfdf.woff2')format("woff");}.ff4_c02444{font-family:ff4_c02444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c02444{letter-spacing:0.000000px;}
.ls2_c02444{letter-spacing:0.013176px;}
.ls0_c02444{letter-spacing:0.032940px;}
.lsc_c02444{letter-spacing:0.039528px;}
.ls4_c02444{letter-spacing:0.046116px;}
.ls6_c02444{letter-spacing:0.052704px;}
.lsb_c02444{letter-spacing:0.059292px;}
.ls7_c02444{letter-spacing:0.065880px;}
.ls5_c02444{letter-spacing:0.072468px;}
.lsa_c02444{letter-spacing:0.079056px;}
.ls3_c02444{letter-spacing:0.085644px;}
.ls1_c02444{letter-spacing:0.092232px;}
.ls8_c02444{letter-spacing:0.105408px;}
.ls9_c02444{letter-spacing:0.111996px;}
.sc__c02444{text-shadow:none;}
.sc0_c02444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02444{-webkit-text-stroke:0px transparent;}
.sc0_c02444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02444{word-spacing:-0.158112px;}
.wsa_c02444{word-spacing:-0.019764px;}
.ws9_c02444{word-spacing:-0.013176px;}
.ws1_c02444{word-spacing:0.000000px;}
.ws5_c02444{word-spacing:0.006588px;}
.wsb_c02444{word-spacing:0.013176px;}
.ws6_c02444{word-spacing:0.019764px;}
.ws8_c02444{word-spacing:0.026352px;}
.wsc_c02444{word-spacing:0.032940px;}
.ws7_c02444{word-spacing:0.039528px;}
.ws3_c02444{word-spacing:0.046116px;}
.wsd_c02444{word-spacing:0.052704px;}
.ws2_c02444{word-spacing:0.059292px;}
.ws4_c02444{word-spacing:0.079056px;}
._1_c02444{margin-left:-1.047492px;}
._0_c02444{width:194.400000px;}
.fc0_c02444{color:rgb(0,0,0);}
.fs1_c02444{font-size:65.880000px;}
.fs0_c02444{font-size:72.000000px;}
.y0_c02444{bottom:0.000000px;}
.y3_c02444{bottom:75.450162px;}
.y2_c02444{bottom:113.609505px;}
.y1c_c02444{bottom:208.290072px;}
.y1b_c02444{bottom:230.070000px;}
.y1a_c02444{bottom:252.750000px;}
.y19_c02444{bottom:275.340000px;}
.y18_c02444{bottom:297.930000px;}
.y17_c02444{bottom:320.430000px;}
.y16_c02444{bottom:342.930000px;}
.y15_c02444{bottom:365.610000px;}
.y14_c02444{bottom:388.200000px;}
.y13_c02444{bottom:410.790000px;}
.y12_c02444{bottom:433.290000px;}
.y11_c02444{bottom:455.790000px;}
.y10_c02444{bottom:478.470000px;}
.yf_c02444{bottom:501.060000px;}
.ye_c02444{bottom:523.560000px;}
.yd_c02444{bottom:546.060000px;}
.yc_c02444{bottom:568.740000px;}
.yb_c02444{bottom:591.330000px;}
.ya_c02444{bottom:613.920000px;}
.y9_c02444{bottom:636.330000px;}
.y8_c02444{bottom:659.010000px;}
.y7_c02444{bottom:681.600000px;}
.y6_c02444{bottom:704.190000px;}
.y5_c02444{bottom:726.600000px;}
.y4_c02444{bottom:749.190000px;}
.y1_c02444{bottom:824.430000px;}
.h4_c02444{height:43.909277px;}
.h3_c02444{height:54.331699px;}
.h6_c02444{height:64.657617px;}
.h5_c02444{height:66.394687px;}
.h2_c02444{height:72.562500px;}
.h1_c02444{height:892.500000px;}
.h0_c02444{height:892.830000px;}
.w0_c02444{width:1263.000000px;}
.x0_c02444{left:0.000000px;}
.x3_c02444{left:106.276938px;}
.x1_c02444{left:109.605900px;}
.x4_c02444{left:239.475750px;}
.x2_c02444{left:618.826632px;}
.x5_c02444{left:631.425750px;}
@media print{
.v0_c02444{vertical-align:0.000000pt;}
.lsd_c02444{letter-spacing:0.000000pt;}
.ls2_c02444{letter-spacing:0.011712pt;}
.ls0_c02444{letter-spacing:0.029280pt;}
.lsc_c02444{letter-spacing:0.035136pt;}
.ls4_c02444{letter-spacing:0.040992pt;}
.ls6_c02444{letter-spacing:0.046848pt;}
.lsb_c02444{letter-spacing:0.052704pt;}
.ls7_c02444{letter-spacing:0.058560pt;}
.ls5_c02444{letter-spacing:0.064416pt;}
.lsa_c02444{letter-spacing:0.070272pt;}
.ls3_c02444{letter-spacing:0.076128pt;}
.ls1_c02444{letter-spacing:0.081984pt;}
.ls8_c02444{letter-spacing:0.093696pt;}
.ls9_c02444{letter-spacing:0.099552pt;}
.ws0_c02444{word-spacing:-0.140544pt;}
.wsa_c02444{word-spacing:-0.017568pt;}
.ws9_c02444{word-spacing:-0.011712pt;}
.ws1_c02444{word-spacing:0.000000pt;}
.ws5_c02444{word-spacing:0.005856pt;}
.wsb_c02444{word-spacing:0.011712pt;}
.ws6_c02444{word-spacing:0.017568pt;}
.ws8_c02444{word-spacing:0.023424pt;}
.wsc_c02444{word-spacing:0.029280pt;}
.ws7_c02444{word-spacing:0.035136pt;}
.ws3_c02444{word-spacing:0.040992pt;}
.wsd_c02444{word-spacing:0.046848pt;}
.ws2_c02444{word-spacing:0.052704pt;}
.ws4_c02444{word-spacing:0.070272pt;}
._1_c02444{margin-left:-0.931104pt;}
._0_c02444{width:172.800000pt;}
.fs1_c02444{font-size:58.560000pt;}
.fs0_c02444{font-size:64.000000pt;}
.y0_c02444{bottom:0.000000pt;}
.y3_c02444{bottom:67.066811pt;}
.y2_c02444{bottom:100.986227pt;}
.y1c_c02444{bottom:185.146731pt;}
.y1b_c02444{bottom:204.506667pt;}
.y1a_c02444{bottom:224.666667pt;}
.y19_c02444{bottom:244.746667pt;}
.y18_c02444{bottom:264.826667pt;}
.y17_c02444{bottom:284.826667pt;}
.y16_c02444{bottom:304.826667pt;}
.y15_c02444{bottom:324.986667pt;}
.y14_c02444{bottom:345.066667pt;}
.y13_c02444{bottom:365.146667pt;}
.y12_c02444{bottom:385.146667pt;}
.y11_c02444{bottom:405.146667pt;}
.y10_c02444{bottom:425.306667pt;}
.yf_c02444{bottom:445.386667pt;}
.ye_c02444{bottom:465.386667pt;}
.yd_c02444{bottom:485.386667pt;}
.yc_c02444{bottom:505.546667pt;}
.yb_c02444{bottom:525.626667pt;}
.ya_c02444{bottom:545.706667pt;}
.y9_c02444{bottom:565.626667pt;}
.y8_c02444{bottom:585.786667pt;}
.y7_c02444{bottom:605.866667pt;}
.y6_c02444{bottom:625.946667pt;}
.y5_c02444{bottom:645.866667pt;}
.y4_c02444{bottom:665.946667pt;}
.y1_c02444{bottom:732.826667pt;}
.h4_c02444{height:39.030469pt;}
.h3_c02444{height:48.294844pt;}
.h6_c02444{height:57.473437pt;}
.h5_c02444{height:59.017500pt;}
.h2_c02444{height:64.500000pt;}
.h1_c02444{height:793.333333pt;}
.h0_c02444{height:793.626667pt;}
.w0_c02444{width:1122.666667pt;}
.x0_c02444{left:0.000000pt;}
.x3_c02444{left:94.468389pt;}
.x1_c02444{left:97.427467pt;}
.x4_c02444{left:212.867333pt;}
.x2_c02444{left:550.068117pt;}
.x5_c02444{left:561.267333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11ace392ee63e5bbbfc7d4b5.woff2')format("woff");}.ff1_c02445{font-family:ff1_c02445;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02445{font-family:ff2_c02445;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02445;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff3_c02445{font-family:ff3_c02445;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02445;src:url('chunks/assets/font_dc8d152e63435cf35fd4ef9c.woff2')format("woff");}.ff4_c02445{font-family:ff4_c02445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02445{vertical-align:-80.637984px;}
.v4_c02445{vertical-align:-1.082088px;}
.v0_c02445{vertical-align:0.000000px;}
.v2_c02445{vertical-align:44.640000px;}
.v3_c02445{vertical-align:77.400000px;}
.ls24_c02445{letter-spacing:-0.216432px;}
.ls28_c02445{letter-spacing:-0.144000px;}
.ls27_c02445{letter-spacing:-0.057672px;}
.ls26_c02445{letter-spacing:-0.042084px;}
.ls21_c02445{letter-spacing:-0.030060px;}
.ls25_c02445{letter-spacing:-0.024048px;}
.ls20_c02445{letter-spacing:-0.014400px;}
.ls29_c02445{letter-spacing:-0.004788px;}
.ls1f_c02445{letter-spacing:0.000000px;}
.ls6_c02445{letter-spacing:0.007200px;}
.ls5_c02445{letter-spacing:0.014400px;}
.ls2a_c02445{letter-spacing:0.019152px;}
.ls4_c02445{letter-spacing:0.021600px;}
.ls8_c02445{letter-spacing:0.024048px;}
.ls7_c02445{letter-spacing:0.028800px;}
.ls1_c02445{letter-spacing:0.032940px;}
.ls3_c02445{letter-spacing:0.036000px;}
.ls0_c02445{letter-spacing:0.039528px;}
.ls1c_c02445{letter-spacing:0.043092px;}
.ls12_c02445{letter-spacing:0.047880px;}
.ls1b_c02445{letter-spacing:0.052668px;}
.ls1d_c02445{letter-spacing:0.057456px;}
.ls1a_c02445{letter-spacing:0.062244px;}
.ls23_c02445{letter-spacing:0.066132px;}
.ls13_c02445{letter-spacing:0.067032px;}
.ls17_c02445{letter-spacing:0.076608px;}
.ls9_c02445{letter-spacing:0.078156px;}
.ls14_c02445{letter-spacing:0.090972px;}
.ls2_c02445{letter-spacing:0.092232px;}
.ls15_c02445{letter-spacing:0.095760px;}
.ls1e_c02445{letter-spacing:0.100548px;}
.ls18_c02445{letter-spacing:0.105336px;}
.ls19_c02445{letter-spacing:0.110124px;}
.ls10_c02445{letter-spacing:0.114912px;}
.ls16_c02445{letter-spacing:0.119700px;}
.lse_c02445{letter-spacing:0.124488px;}
.ls11_c02445{letter-spacing:0.134064px;}
.ls22_c02445{letter-spacing:0.144288px;}
.lsa_c02445{letter-spacing:0.150300px;}
.lsf_c02445{letter-spacing:0.181944px;}
.lsc_c02445{letter-spacing:133.470000px;}
.lsd_c02445{letter-spacing:133.830000px;}
.lsb_c02445{letter-spacing:1139.489400px;}
.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;}
}
.ws1_c02445{word-spacing:-14.813568px;}
.ws14_c02445{word-spacing:-0.270540px;}
.ws1f_c02445{word-spacing:-0.225036px;}
.ws1a_c02445{word-spacing:-0.215460px;}
.ws19_c02445{word-spacing:-0.211464px;}
.ws23_c02445{word-spacing:-0.210672px;}
.wse_c02445{word-spacing:-0.208800px;}
.ws1e_c02445{word-spacing:-0.205884px;}
.ws29_c02445{word-spacing:-0.201096px;}
.ws26_c02445{word-spacing:-0.196308px;}
.ws2c_c02445{word-spacing:-0.191520px;}
.ws22_c02445{word-spacing:-0.181944px;}
.ws24_c02445{word-spacing:-0.167580px;}
.ws0_c02445{word-spacing:-0.158112px;}
.ws27_c02445{word-spacing:-0.153216px;}
.ws2b_c02445{word-spacing:-0.148428px;}
.ws28_c02445{word-spacing:-0.143640px;}
.ws20_c02445{word-spacing:-0.138852px;}
.ws2a_c02445{word-spacing:-0.134064px;}
.ws6_c02445{word-spacing:-0.108000px;}
.ws18_c02445{word-spacing:-0.093600px;}
.wsf_c02445{word-spacing:-0.079200px;}
.ws9_c02445{word-spacing:-0.064800px;}
.ws7_c02445{word-spacing:-0.050400px;}
.ws17_c02445{word-spacing:-0.021600px;}
.ws8_c02445{word-spacing:-0.014400px;}
.ws2_c02445{word-spacing:0.000000px;}
.ws15_c02445{word-spacing:0.012024px;}
.ws5_c02445{word-spacing:0.014400px;}
.ws12_c02445{word-spacing:0.024048px;}
.ws3_c02445{word-spacing:0.052704px;}
.ws4_c02445{word-spacing:0.059292px;}
.ws10_c02445{word-spacing:0.066132px;}
.ws13_c02445{word-spacing:0.114228px;}
.ws11_c02445{word-spacing:0.120240px;}
.ws16_c02445{word-spacing:0.132264px;}
.ws21_c02445{word-spacing:0.201096px;}
.wsc_c02445{word-spacing:7.891200px;}
.wsd_c02445{word-spacing:7.920000px;}
.wsb_c02445{word-spacing:8.136000px;}
.wsa_c02445{word-spacing:8.280000px;}
.ws1c_c02445{word-spacing:121.409316px;}
.ws1d_c02445{word-spacing:121.768416px;}
.ws25_c02445{word-spacing:145.167372px;}
.ws1b_c02445{word-spacing:145.526472px;}
._a_c02445{margin-left:-24.481044px;}
._13_c02445{margin-left:-22.661532px;}
._0_c02445{margin-left:-1.108800px;}
._1b_c02445{width:1.098468px;}
._c_c02445{width:23.416092px;}
._6_c02445{width:77.040000px;}
._7_c02445{width:84.960000px;}
._3_c02445{width:89.064000px;}
._4_c02445{width:97.344000px;}
._2_c02445{width:109.224000px;}
._8_c02445{width:127.800000px;}
._5_c02445{width:139.824000px;}
._22_c02445{width:144.446112px;}
._21_c02445{width:145.526112px;}
._f_c02445{width:215.560548px;}
._15_c02445{width:220.263120px;}
._1e_c02445{width:232.881516px;}
._1a_c02445{width:274.381128px;}
._e_c02445{width:307.735092px;}
._1c_c02445{width:319.055940px;}
._10_c02445{width:326.180484px;}
._19_c02445{width:334.805688px;}
._16_c02445{width:408.320640px;}
._14_c02445{width:424.267452px;}
._17_c02445{width:435.717576px;}
._1d_c02445{width:509.692176px;}
._9_c02445{width:512.711388px;}
._20_c02445{width:531.290052px;}
._11_c02445{width:548.147376px;}
._1f_c02445{width:664.512156px;}
._18_c02445{width:705.385296px;}
._1_c02445{width:711.664128px;}
._d_c02445{width:717.451056px;}
._12_c02445{width:718.533144px;}
._b_c02445{width:768.041064px;}
.fc0_c02445{color:rgb(0,0,0);}
.fs4_c02445{font-size:47.880000px;}
.fs2_c02445{font-size:60.120000px;}
.fs1_c02445{font-size:65.880000px;}
.fs0_c02445{font-size:72.000000px;}
.fs3_c02445{font-size:96.120000px;}
.y0_c02445{bottom:0.000000px;}
.y3_c02445{bottom:75.450162px;}
.y2_c02445{bottom:113.609505px;}
.y33_c02445{bottom:140.610150px;}
.y32_c02445{bottom:156.990000px;}
.y31_c02445{bottom:157.260000px;}
.y30_c02445{bottom:173.550000px;}
.y2f_c02445{bottom:173.820000px;}
.y2e_c02445{bottom:190.470000px;}
.y2d_c02445{bottom:206.850000px;}
.y2c_c02445{bottom:207.120000px;}
.y2b_c02445{bottom:223.680000px;}
.y2a_c02445{bottom:240.060000px;}
.y29_c02445{bottom:240.330000px;}
.y28_c02445{bottom:256.710000px;}
.y27_c02445{bottom:256.980000px;}
.y26_c02445{bottom:273.270000px;}
.y25_c02445{bottom:273.540000px;}
.y24_c02445{bottom:289.920000px;}
.y23_c02445{bottom:290.190000px;}
.y22_c02445{bottom:306.480000px;}
.y21_c02445{bottom:306.750000px;}
.y20_c02445{bottom:323.130000px;}
.y1f_c02445{bottom:323.400000px;}
.y1e_c02445{bottom:340.050000px;}
.y1d_c02445{bottom:356.610000px;}
.y1c_c02445{bottom:372.990000px;}
.y1b_c02445{bottom:373.260000px;}
.y1a_c02445{bottom:389.640000px;}
.y19_c02445{bottom:389.910000px;}
.y18_c02445{bottom:406.200000px;}
.y17_c02445{bottom:406.470000px;}
.y16_c02445{bottom:422.850000px;}
.y15_c02445{bottom:423.120000px;}
.y14_c02445{bottom:439.500000px;}
.y13_c02445{bottom:439.770000px;}
.y12_c02445{bottom:456.060000px;}
.y11_c02445{bottom:456.330000px;}
.y10_c02445{bottom:471.990000px;}
.yf_c02445{bottom:480.180000px;}
.ye_c02445{bottom:510.240000px;}
.yd_c02445{bottom:554.159496px;}
.yc_c02445{bottom:571.619847px;}
.yb_c02445{bottom:588.629298px;}
.ya_c02445{bottom:608.520000px;}
.y9_c02445{bottom:629.580000px;}
.y8_c02445{bottom:653.430000px;}
.y7_c02445{bottom:677.010000px;}
.y6_c02445{bottom:700.860000px;}
.y5_c02445{bottom:724.620000px;}
.y4_c02445{bottom:748.380000px;}
.y1_c02445{bottom:824.430000px;}
.h4_c02445{height:43.909277px;}
.h9_c02445{height:47.171974px;}
.hc_c02445{height:47.173462px;}
.hb_c02445{height:47.174062px;}
.ha_c02445{height:48.254063px;}
.h3_c02445{height:54.331699px;}
.h6_c02445{height:60.589687px;}
.h5_c02445{height:70.664062px;}
.h2_c02445{height:72.562500px;}
.h7_c02445{height:96.870938px;}
.h8_c02445{height:125.654063px;}
.h1_c02445{height:892.500000px;}
.h0_c02445{height:892.830000px;}
.w0_c02445{width:1263.000000px;}
.x0_c02445{left:0.000000px;}
.x1_c02445{left:106.275900px;}
.x8_c02445{left:114.375750px;}
.x4_c02445{left:186.465750px;}
.x6_c02445{left:304.725750px;}
.x5_c02445{left:329.385750px;}
.x9_c02445{left:463.125750px;}
.xa_c02445{left:508.575750px;}
.xb_c02445{left:553.935750px;}
.x3_c02445{left:591.195750px;}
.xc_c02445{left:599.385750px;}
.x2_c02445{left:618.825480px;}
.x7_c02445{left:631.425750px;}
.x15_c02445{left:653.385750px;}
.xd_c02445{left:690.195750px;}
.xe_c02445{left:735.555750px;}
.xf_c02445{left:781.005750px;}
.x10_c02445{left:826.455750px;}
.x11_c02445{left:914.295750px;}
.x12_c02445{left:959.655750px;}
.x13_c02445{left:1005.105750px;}
.x14_c02445{left:1050.465750px;}
@media print{
.v1_c02445{vertical-align:-71.678208pt;}
.v4_c02445{vertical-align:-0.961856pt;}
.v0_c02445{vertical-align:0.000000pt;}
.v2_c02445{vertical-align:39.680000pt;}
.v3_c02445{vertical-align:68.800000pt;}
.ls24_c02445{letter-spacing:-0.192384pt;}
.ls28_c02445{letter-spacing:-0.128000pt;}
.ls27_c02445{letter-spacing:-0.051264pt;}
.ls26_c02445{letter-spacing:-0.037408pt;}
.ls21_c02445{letter-spacing:-0.026720pt;}
.ls25_c02445{letter-spacing:-0.021376pt;}
.ls20_c02445{letter-spacing:-0.012800pt;}
.ls29_c02445{letter-spacing:-0.004256pt;}
.ls1f_c02445{letter-spacing:0.000000pt;}
.ls6_c02445{letter-spacing:0.006400pt;}
.ls5_c02445{letter-spacing:0.012800pt;}
.ls2a_c02445{letter-spacing:0.017024pt;}
.ls4_c02445{letter-spacing:0.019200pt;}
.ls8_c02445{letter-spacing:0.021376pt;}
.ls7_c02445{letter-spacing:0.025600pt;}
.ls1_c02445{letter-spacing:0.029280pt;}
.ls3_c02445{letter-spacing:0.032000pt;}
.ls0_c02445{letter-spacing:0.035136pt;}
.ls1c_c02445{letter-spacing:0.038304pt;}
.ls12_c02445{letter-spacing:0.042560pt;}
.ls1b_c02445{letter-spacing:0.046816pt;}
.ls1d_c02445{letter-spacing:0.051072pt;}
.ls1a_c02445{letter-spacing:0.055328pt;}
.ls23_c02445{letter-spacing:0.058784pt;}
.ls13_c02445{letter-spacing:0.059584pt;}
.ls17_c02445{letter-spacing:0.068096pt;}
.ls9_c02445{letter-spacing:0.069472pt;}
.ls14_c02445{letter-spacing:0.080864pt;}
.ls2_c02445{letter-spacing:0.081984pt;}
.ls15_c02445{letter-spacing:0.085120pt;}
.ls1e_c02445{letter-spacing:0.089376pt;}
.ls18_c02445{letter-spacing:0.093632pt;}
.ls19_c02445{letter-spacing:0.097888pt;}
.ls10_c02445{letter-spacing:0.102144pt;}
.ls16_c02445{letter-spacing:0.106400pt;}
.lse_c02445{letter-spacing:0.110656pt;}
.ls11_c02445{letter-spacing:0.119168pt;}
.ls22_c02445{letter-spacing:0.128256pt;}
.lsa_c02445{letter-spacing:0.133600pt;}
.lsf_c02445{letter-spacing:0.161728pt;}
.lsc_c02445{letter-spacing:118.640000pt;}
.lsd_c02445{letter-spacing:118.960000pt;}
.lsb_c02445{letter-spacing:1012.879467pt;}
.ws1_c02445{word-spacing:-13.167616pt;}
.ws14_c02445{word-spacing:-0.240480pt;}
.ws1f_c02445{word-spacing:-0.200032pt;}
.ws1a_c02445{word-spacing:-0.191520pt;}
.ws19_c02445{word-spacing:-0.187968pt;}
.ws23_c02445{word-spacing:-0.187264pt;}
.wse_c02445{word-spacing:-0.185600pt;}
.ws1e_c02445{word-spacing:-0.183008pt;}
.ws29_c02445{word-spacing:-0.178752pt;}
.ws26_c02445{word-spacing:-0.174496pt;}
.ws2c_c02445{word-spacing:-0.170240pt;}
.ws22_c02445{word-spacing:-0.161728pt;}
.ws24_c02445{word-spacing:-0.148960pt;}
.ws0_c02445{word-spacing:-0.140544pt;}
.ws27_c02445{word-spacing:-0.136192pt;}
.ws2b_c02445{word-spacing:-0.131936pt;}
.ws28_c02445{word-spacing:-0.127680pt;}
.ws20_c02445{word-spacing:-0.123424pt;}
.ws2a_c02445{word-spacing:-0.119168pt;}
.ws6_c02445{word-spacing:-0.096000pt;}
.ws18_c02445{word-spacing:-0.083200pt;}
.wsf_c02445{word-spacing:-0.070400pt;}
.ws9_c02445{word-spacing:-0.057600pt;}
.ws7_c02445{word-spacing:-0.044800pt;}
.ws17_c02445{word-spacing:-0.019200pt;}
.ws8_c02445{word-spacing:-0.012800pt;}
.ws2_c02445{word-spacing:0.000000pt;}
.ws15_c02445{word-spacing:0.010688pt;}
.ws5_c02445{word-spacing:0.012800pt;}
.ws12_c02445{word-spacing:0.021376pt;}
.ws3_c02445{word-spacing:0.046848pt;}
.ws4_c02445{word-spacing:0.052704pt;}
.ws10_c02445{word-spacing:0.058784pt;}
.ws13_c02445{word-spacing:0.101536pt;}
.ws11_c02445{word-spacing:0.106880pt;}
.ws16_c02445{word-spacing:0.117568pt;}
.ws21_c02445{word-spacing:0.178752pt;}
.wsc_c02445{word-spacing:7.014400pt;}
.wsd_c02445{word-spacing:7.040000pt;}
.wsb_c02445{word-spacing:7.232000pt;}
.wsa_c02445{word-spacing:7.360000pt;}
.ws1c_c02445{word-spacing:107.919392pt;}
.ws1d_c02445{word-spacing:108.238592pt;}
.ws25_c02445{word-spacing:129.037664pt;}
.ws1b_c02445{word-spacing:129.356864pt;}
._a_c02445{margin-left:-21.760928pt;}
._13_c02445{margin-left:-20.143584pt;}
._0_c02445{margin-left:-0.985600pt;}
._1b_c02445{width:0.976416pt;}
._c_c02445{width:20.814304pt;}
._6_c02445{width:68.480000pt;}
._7_c02445{width:75.520000pt;}
._3_c02445{width:79.168000pt;}
._4_c02445{width:86.528000pt;}
._2_c02445{width:97.088000pt;}
._8_c02445{width:113.600000pt;}
._5_c02445{width:124.288000pt;}
._22_c02445{width:128.396544pt;}
._21_c02445{width:129.356544pt;}
._f_c02445{width:191.609376pt;}
._15_c02445{width:195.789440pt;}
._1e_c02445{width:207.005792pt;}
._1a_c02445{width:243.894336pt;}
._e_c02445{width:273.542304pt;}
._1c_c02445{width:283.605280pt;}
._10_c02445{width:289.938208pt;}
._19_c02445{width:297.605056pt;}
._16_c02445{width:362.951680pt;}
._14_c02445{width:377.126624pt;}
._17_c02445{width:387.304512pt;}
._1d_c02445{width:453.059712pt;}
._9_c02445{width:455.743456pt;}
._20_c02445{width:472.257824pt;}
._11_c02445{width:487.242112pt;}
._1f_c02445{width:590.677472pt;}
._18_c02445{width:627.009152pt;}
._1_c02445{width:632.590336pt;}
._d_c02445{width:637.734272pt;}
._12_c02445{width:638.696128pt;}
._b_c02445{width:682.703168pt;}
.fs4_c02445{font-size:42.560000pt;}
.fs2_c02445{font-size:53.440000pt;}
.fs1_c02445{font-size:58.560000pt;}
.fs0_c02445{font-size:64.000000pt;}
.fs3_c02445{font-size:85.440000pt;}
.y0_c02445{bottom:0.000000pt;}
.y3_c02445{bottom:67.066811pt;}
.y2_c02445{bottom:100.986227pt;}
.y33_c02445{bottom:124.986800pt;}
.y32_c02445{bottom:139.546667pt;}
.y31_c02445{bottom:139.786667pt;}
.y30_c02445{bottom:154.266667pt;}
.y2f_c02445{bottom:154.506667pt;}
.y2e_c02445{bottom:169.306667pt;}
.y2d_c02445{bottom:183.866667pt;}
.y2c_c02445{bottom:184.106667pt;}
.y2b_c02445{bottom:198.826667pt;}
.y2a_c02445{bottom:213.386667pt;}
.y29_c02445{bottom:213.626667pt;}
.y28_c02445{bottom:228.186667pt;}
.y27_c02445{bottom:228.426667pt;}
.y26_c02445{bottom:242.906667pt;}
.y25_c02445{bottom:243.146667pt;}
.y24_c02445{bottom:257.706667pt;}
.y23_c02445{bottom:257.946667pt;}
.y22_c02445{bottom:272.426667pt;}
.y21_c02445{bottom:272.666667pt;}
.y20_c02445{bottom:287.226667pt;}
.y1f_c02445{bottom:287.466667pt;}
.y1e_c02445{bottom:302.266667pt;}
.y1d_c02445{bottom:316.986667pt;}
.y1c_c02445{bottom:331.546667pt;}
.y1b_c02445{bottom:331.786667pt;}
.y1a_c02445{bottom:346.346667pt;}
.y19_c02445{bottom:346.586667pt;}
.y18_c02445{bottom:361.066667pt;}
.y17_c02445{bottom:361.306667pt;}
.y16_c02445{bottom:375.866667pt;}
.y15_c02445{bottom:376.106667pt;}
.y14_c02445{bottom:390.666667pt;}
.y13_c02445{bottom:390.906667pt;}
.y12_c02445{bottom:405.386667pt;}
.y11_c02445{bottom:405.626667pt;}
.y10_c02445{bottom:419.546667pt;}
.yf_c02445{bottom:426.826667pt;}
.ye_c02445{bottom:453.546667pt;}
.yd_c02445{bottom:492.586219pt;}
.yc_c02445{bottom:508.106531pt;}
.yb_c02445{bottom:523.226043pt;}
.ya_c02445{bottom:540.906667pt;}
.y9_c02445{bottom:559.626667pt;}
.y8_c02445{bottom:580.826667pt;}
.y7_c02445{bottom:601.786667pt;}
.y6_c02445{bottom:622.986667pt;}
.y5_c02445{bottom:644.106667pt;}
.y4_c02445{bottom:665.226667pt;}
.y1_c02445{bottom:732.826667pt;}
.h4_c02445{height:39.030469pt;}
.h9_c02445{height:41.930644pt;}
.hc_c02445{height:41.931967pt;}
.hb_c02445{height:41.932500pt;}
.ha_c02445{height:42.892500pt;}
.h3_c02445{height:48.294844pt;}
.h6_c02445{height:53.857500pt;}
.h5_c02445{height:62.812500pt;}
.h2_c02445{height:64.500000pt;}
.h7_c02445{height:86.107500pt;}
.h8_c02445{height:111.692500pt;}
.h1_c02445{height:793.333333pt;}
.h0_c02445{height:793.626667pt;}
.w0_c02445{width:1122.666667pt;}
.x0_c02445{left:0.000000pt;}
.x1_c02445{left:94.467467pt;}
.x8_c02445{left:101.667333pt;}
.x4_c02445{left:165.747333pt;}
.x6_c02445{left:270.867333pt;}
.x5_c02445{left:292.787333pt;}
.x9_c02445{left:411.667333pt;}
.xa_c02445{left:452.067333pt;}
.xb_c02445{left:492.387333pt;}
.x3_c02445{left:525.507333pt;}
.xc_c02445{left:532.787333pt;}
.x2_c02445{left:550.067093pt;}
.x7_c02445{left:561.267333pt;}
.x15_c02445{left:580.787333pt;}
.xd_c02445{left:613.507333pt;}
.xe_c02445{left:653.827333pt;}
.xf_c02445{left:694.227333pt;}
.x10_c02445{left:734.627333pt;}
.x11_c02445{left:812.707333pt;}
.x12_c02445{left:853.027333pt;}
.x13_c02445{left:893.427333pt;}
.x14_c02445{left:933.747333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b96ff2e3bc20f0f7e67e9905.woff2')format("woff");}.ff1_c02446{font-family:ff1_c02446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02446;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02446{font-family:ff2_c02446;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02446;src:url('chunks/assets/font_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff3_c02446{font-family:ff3_c02446;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02446;src:url('chunks/assets/font_9a27ff2f9e181067a050c8b0.woff2')format("woff");}.ff4_c02446{font-family:ff4_c02446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02446{vertical-align:-1.082088px;}
.v0_c02446{vertical-align:0.000000px;}
.ls1c_c02446{letter-spacing:0.000000px;}
.ls11_c02446{letter-spacing:0.023940px;}
.ls13_c02446{letter-spacing:0.028728px;}
.ls1_c02446{letter-spacing:0.032940px;}
.lsf_c02446{letter-spacing:0.033516px;}
.ls0_c02446{letter-spacing:0.039528px;}
.ls10_c02446{letter-spacing:0.043092px;}
.ls3_c02446{letter-spacing:0.052668px;}
.ls5_c02446{letter-spacing:0.062244px;}
.ls15_c02446{letter-spacing:0.067032px;}
.lsd_c02446{letter-spacing:0.071820px;}
.lsa_c02446{letter-spacing:0.076608px;}
.ls9_c02446{letter-spacing:0.081396px;}
.ls7_c02446{letter-spacing:0.086184px;}
.lse_c02446{letter-spacing:0.090972px;}
.ls2_c02446{letter-spacing:0.092232px;}
.ls12_c02446{letter-spacing:0.095760px;}
.ls8_c02446{letter-spacing:0.100548px;}
.lsc_c02446{letter-spacing:0.105336px;}
.lsb_c02446{letter-spacing:0.110124px;}
.ls6_c02446{letter-spacing:0.119700px;}
.ls1a_c02446{letter-spacing:0.124488px;}
.ls19_c02446{letter-spacing:0.129276px;}
.ls16_c02446{letter-spacing:0.134064px;}
.ls18_c02446{letter-spacing:0.143640px;}
.ls17_c02446{letter-spacing:0.148428px;}
.ls1b_c02446{letter-spacing:0.158004px;}
.ls14_c02446{letter-spacing:0.167580px;}
.ls4_c02446{letter-spacing:0.181944px;}
.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;}
}
.ws16_c02446{word-spacing:-0.258552px;}
.ws1d_c02446{word-spacing:-0.248976px;}
.ws19_c02446{word-spacing:-0.239400px;}
.ws1a_c02446{word-spacing:-0.234612px;}
.ws18_c02446{word-spacing:-0.225036px;}
.ws1b_c02446{word-spacing:-0.220248px;}
.ws1c_c02446{word-spacing:-0.215460px;}
.ws8_c02446{word-spacing:-0.210672px;}
.wsd_c02446{word-spacing:-0.201096px;}
.wse_c02446{word-spacing:-0.196308px;}
.wsa_c02446{word-spacing:-0.191520px;}
.ws14_c02446{word-spacing:-0.186732px;}
.ws10_c02446{word-spacing:-0.181944px;}
.ws9_c02446{word-spacing:-0.177156px;}
.wsb_c02446{word-spacing:-0.172368px;}
.wsc_c02446{word-spacing:-0.167580px;}
.wsf_c02446{word-spacing:-0.162792px;}
.ws0_c02446{word-spacing:-0.158112px;}
.ws17_c02446{word-spacing:-0.158004px;}
.ws7_c02446{word-spacing:-0.153216px;}
.ws4_c02446{word-spacing:-0.143640px;}
.ws12_c02446{word-spacing:-0.134064px;}
.ws11_c02446{word-spacing:-0.124488px;}
.ws15_c02446{word-spacing:-0.119700px;}
.ws1_c02446{word-spacing:0.000000px;}
.ws2_c02446{word-spacing:0.052704px;}
.ws3_c02446{word-spacing:0.059292px;}
.ws13_c02446{word-spacing:0.244188px;}
.ws6_c02446{word-spacing:145.167372px;}
.ws5_c02446{word-spacing:145.526472px;}
._1_c02446{margin-left:-24.483744px;}
._2_c02446{margin-left:-23.041944px;}
._4_c02446{margin-left:-1.081332px;}
._11_c02446{width:1.201788px;}
._a_c02446{width:122.486112px;}
._9_c02446{width:144.446112px;}
._8_c02446{width:145.526112px;}
._6_c02446{width:272.283228px;}
._7_c02446{width:303.605532px;}
._15_c02446{width:307.360116px;}
._2b_c02446{width:317.510640px;}
._25_c02446{width:328.767264px;}
._26_c02446{width:332.434872px;}
._c_c02446{width:349.107444px;}
._18_c02446{width:358.855020px;}
._23_c02446{width:373.281300px;}
._12_c02446{width:380.397024px;}
._21_c02446{width:381.588480px;}
._d_c02446{width:388.540656px;}
._2a_c02446{width:411.689844px;}
._24_c02446{width:416.546424px;}
._1b_c02446{width:421.723980px;}
._e_c02446{width:423.751608px;}
._13_c02446{width:444.991176px;}
._f_c02446{width:456.186276px;}
._28_c02446{width:473.303376px;}
._1f_c02446{width:509.001156px;}
._27_c02446{width:513.469152px;}
._5_c02446{width:522.963756px;}
._20_c02446{width:529.187364px;}
._19_c02446{width:531.395424px;}
._22_c02446{width:565.920900px;}
._0_c02446{width:637.957908px;}
._10_c02446{width:665.105868px;}
._1d_c02446{width:685.103832px;}
._2d_c02446{width:690.941124px;}
._3_c02446{width:712.296396px;}
._1a_c02446{width:720.977040px;}
._16_c02446{width:725.524092px;}
._b_c02446{width:747.731592px;}
._1e_c02446{width:751.594752px;}
._1c_c02446{width:834.139872px;}
._29_c02446{width:856.763928px;}
._2c_c02446{width:863.447220px;}
._14_c02446{width:1005.005988px;}
._17_c02446{width:1208.452104px;}
.fc0_c02446{color:rgb(0,0,0);}
.fs2_c02446{font-size:47.880000px;}
.fs1_c02446{font-size:65.880000px;}
.fs0_c02446{font-size:72.000000px;}
.y0_c02446{bottom:0.000000px;}
.y3_c02446{bottom:75.450162px;}
.y2_c02446{bottom:113.609505px;}
.y2f_c02446{bottom:144.840000px;}
.y2e_c02446{bottom:159.330000px;}
.y2d_c02446{bottom:173.910000px;}
.y2c_c02446{bottom:188.490000px;}
.y2b_c02446{bottom:202.980000px;}
.y2a_c02446{bottom:217.560000px;}
.y29_c02446{bottom:232.140000px;}
.y28_c02446{bottom:246.630000px;}
.y27_c02446{bottom:261.210000px;}
.y26_c02446{bottom:275.790000px;}
.y25_c02446{bottom:290.280000px;}
.y24_c02446{bottom:304.860000px;}
.y23_c02446{bottom:319.440000px;}
.y22_c02446{bottom:333.930000px;}
.y21_c02446{bottom:348.510000px;}
.y20_c02446{bottom:363.090000px;}
.y1f_c02446{bottom:377.580000px;}
.y1e_c02446{bottom:392.160000px;}
.y1d_c02446{bottom:406.650000px;}
.y1c_c02446{bottom:421.230000px;}
.y1b_c02446{bottom:437.880000px;}
.y1a_c02446{bottom:454.440000px;}
.y19_c02446{bottom:471.090000px;}
.y18_c02446{bottom:487.740000px;}
.y17_c02446{bottom:504.300000px;}
.y16_c02446{bottom:520.950000px;}
.y15_c02446{bottom:537.600000px;}
.y14_c02446{bottom:554.160000px;}
.y13_c02446{bottom:570.810000px;}
.y12_c02446{bottom:587.460000px;}
.y11_c02446{bottom:603.750000px;}
.y10_c02446{bottom:604.020000px;}
.yf_c02446{bottom:620.400000px;}
.ye_c02446{bottom:620.670000px;}
.yd_c02446{bottom:637.320000px;}
.yc_c02446{bottom:653.880000px;}
.yb_c02446{bottom:670.530000px;}
.ya_c02446{bottom:687.180000px;}
.y9_c02446{bottom:703.740000px;}
.y8_c02446{bottom:720.120000px;}
.y7_c02446{bottom:720.390000px;}
.y6_c02446{bottom:737.040000px;}
.y5_c02446{bottom:753.330000px;}
.y4_c02446{bottom:753.600000px;}
.y1_c02446{bottom:824.430000px;}
.h4_c02446{height:43.909277px;}
.h5_c02446{height:47.171974px;}
.h7_c02446{height:47.174062px;}
.h6_c02446{height:48.254063px;}
.h3_c02446{height:54.331699px;}
.h2_c02446{height:72.562500px;}
.h1_c02446{height:892.500000px;}
.h0_c02446{height:892.830000px;}
.w0_c02446{width:1263.000000px;}
.x0_c02446{left:0.000000px;}
.x1_c02446{left:106.275900px;}
.x3_c02446{left:114.375750px;}
.x2_c02446{left:618.825480px;}
.x4_c02446{left:653.385750px;}
@media print{
.v1_c02446{vertical-align:-0.961856pt;}
.v0_c02446{vertical-align:0.000000pt;}
.ls1c_c02446{letter-spacing:0.000000pt;}
.ls11_c02446{letter-spacing:0.021280pt;}
.ls13_c02446{letter-spacing:0.025536pt;}
.ls1_c02446{letter-spacing:0.029280pt;}
.lsf_c02446{letter-spacing:0.029792pt;}
.ls0_c02446{letter-spacing:0.035136pt;}
.ls10_c02446{letter-spacing:0.038304pt;}
.ls3_c02446{letter-spacing:0.046816pt;}
.ls5_c02446{letter-spacing:0.055328pt;}
.ls15_c02446{letter-spacing:0.059584pt;}
.lsd_c02446{letter-spacing:0.063840pt;}
.lsa_c02446{letter-spacing:0.068096pt;}
.ls9_c02446{letter-spacing:0.072352pt;}
.ls7_c02446{letter-spacing:0.076608pt;}
.lse_c02446{letter-spacing:0.080864pt;}
.ls2_c02446{letter-spacing:0.081984pt;}
.ls12_c02446{letter-spacing:0.085120pt;}
.ls8_c02446{letter-spacing:0.089376pt;}
.lsc_c02446{letter-spacing:0.093632pt;}
.lsb_c02446{letter-spacing:0.097888pt;}
.ls6_c02446{letter-spacing:0.106400pt;}
.ls1a_c02446{letter-spacing:0.110656pt;}
.ls19_c02446{letter-spacing:0.114912pt;}
.ls16_c02446{letter-spacing:0.119168pt;}
.ls18_c02446{letter-spacing:0.127680pt;}
.ls17_c02446{letter-spacing:0.131936pt;}
.ls1b_c02446{letter-spacing:0.140448pt;}
.ls14_c02446{letter-spacing:0.148960pt;}
.ls4_c02446{letter-spacing:0.161728pt;}
.ws16_c02446{word-spacing:-0.229824pt;}
.ws1d_c02446{word-spacing:-0.221312pt;}
.ws19_c02446{word-spacing:-0.212800pt;}
.ws1a_c02446{word-spacing:-0.208544pt;}
.ws18_c02446{word-spacing:-0.200032pt;}
.ws1b_c02446{word-spacing:-0.195776pt;}
.ws1c_c02446{word-spacing:-0.191520pt;}
.ws8_c02446{word-spacing:-0.187264pt;}
.wsd_c02446{word-spacing:-0.178752pt;}
.wse_c02446{word-spacing:-0.174496pt;}
.wsa_c02446{word-spacing:-0.170240pt;}
.ws14_c02446{word-spacing:-0.165984pt;}
.ws10_c02446{word-spacing:-0.161728pt;}
.ws9_c02446{word-spacing:-0.157472pt;}
.wsb_c02446{word-spacing:-0.153216pt;}
.wsc_c02446{word-spacing:-0.148960pt;}
.wsf_c02446{word-spacing:-0.144704pt;}
.ws0_c02446{word-spacing:-0.140544pt;}
.ws17_c02446{word-spacing:-0.140448pt;}
.ws7_c02446{word-spacing:-0.136192pt;}
.ws4_c02446{word-spacing:-0.127680pt;}
.ws12_c02446{word-spacing:-0.119168pt;}
.ws11_c02446{word-spacing:-0.110656pt;}
.ws15_c02446{word-spacing:-0.106400pt;}
.ws1_c02446{word-spacing:0.000000pt;}
.ws2_c02446{word-spacing:0.046848pt;}
.ws3_c02446{word-spacing:0.052704pt;}
.ws13_c02446{word-spacing:0.217056pt;}
.ws6_c02446{word-spacing:129.037664pt;}
.ws5_c02446{word-spacing:129.356864pt;}
._1_c02446{margin-left:-21.763328pt;}
._2_c02446{margin-left:-20.481728pt;}
._4_c02446{margin-left:-0.961184pt;}
._11_c02446{width:1.068256pt;}
._a_c02446{width:108.876544pt;}
._9_c02446{width:128.396544pt;}
._8_c02446{width:129.356544pt;}
._6_c02446{width:242.029536pt;}
._7_c02446{width:269.871584pt;}
._15_c02446{width:273.208992pt;}
._2b_c02446{width:282.231680pt;}
._25_c02446{width:292.237568pt;}
._26_c02446{width:295.497664pt;}
._c_c02446{width:310.317728pt;}
._18_c02446{width:318.982240pt;}
._23_c02446{width:331.805600pt;}
._12_c02446{width:338.130688pt;}
._21_c02446{width:339.189760pt;}
._d_c02446{width:345.369472pt;}
._2a_c02446{width:365.946528pt;}
._24_c02446{width:370.263488pt;}
._1b_c02446{width:374.865760pt;}
._e_c02446{width:376.668096pt;}
._13_c02446{width:395.547712pt;}
._f_c02446{width:405.498912pt;}
._28_c02446{width:420.714112pt;}
._1f_c02446{width:452.445472pt;}
._27_c02446{width:456.417024pt;}
._5_c02446{width:464.856672pt;}
._20_c02446{width:470.388768pt;}
._19_c02446{width:472.351488pt;}
._22_c02446{width:503.040800pt;}
._0_c02446{width:567.073696pt;}
._10_c02446{width:591.205216pt;}
._1d_c02446{width:608.981184pt;}
._2d_c02446{width:614.169888pt;}
._3_c02446{width:633.152352pt;}
._1a_c02446{width:640.868480pt;}
._16_c02446{width:644.910304pt;}
._b_c02446{width:664.650304pt;}
._1e_c02446{width:668.084224pt;}
._1c_c02446{width:741.457664pt;}
._29_c02446{width:761.567936pt;}
._2c_c02446{width:767.508640pt;}
._14_c02446{width:893.338656pt;}
._17_c02446{width:1074.179648pt;}
.fs2_c02446{font-size:42.560000pt;}
.fs1_c02446{font-size:58.560000pt;}
.fs0_c02446{font-size:64.000000pt;}
.y0_c02446{bottom:0.000000pt;}
.y3_c02446{bottom:67.066811pt;}
.y2_c02446{bottom:100.986227pt;}
.y2f_c02446{bottom:128.746667pt;}
.y2e_c02446{bottom:141.626667pt;}
.y2d_c02446{bottom:154.586667pt;}
.y2c_c02446{bottom:167.546667pt;}
.y2b_c02446{bottom:180.426667pt;}
.y2a_c02446{bottom:193.386667pt;}
.y29_c02446{bottom:206.346667pt;}
.y28_c02446{bottom:219.226667pt;}
.y27_c02446{bottom:232.186667pt;}
.y26_c02446{bottom:245.146667pt;}
.y25_c02446{bottom:258.026667pt;}
.y24_c02446{bottom:270.986667pt;}
.y23_c02446{bottom:283.946667pt;}
.y22_c02446{bottom:296.826667pt;}
.y21_c02446{bottom:309.786667pt;}
.y20_c02446{bottom:322.746667pt;}
.y1f_c02446{bottom:335.626667pt;}
.y1e_c02446{bottom:348.586667pt;}
.y1d_c02446{bottom:361.466667pt;}
.y1c_c02446{bottom:374.426667pt;}
.y1b_c02446{bottom:389.226667pt;}
.y1a_c02446{bottom:403.946667pt;}
.y19_c02446{bottom:418.746667pt;}
.y18_c02446{bottom:433.546667pt;}
.y17_c02446{bottom:448.266667pt;}
.y16_c02446{bottom:463.066667pt;}
.y15_c02446{bottom:477.866667pt;}
.y14_c02446{bottom:492.586667pt;}
.y13_c02446{bottom:507.386667pt;}
.y12_c02446{bottom:522.186667pt;}
.y11_c02446{bottom:536.666667pt;}
.y10_c02446{bottom:536.906667pt;}
.yf_c02446{bottom:551.466667pt;}
.ye_c02446{bottom:551.706667pt;}
.yd_c02446{bottom:566.506667pt;}
.yc_c02446{bottom:581.226667pt;}
.yb_c02446{bottom:596.026667pt;}
.ya_c02446{bottom:610.826667pt;}
.y9_c02446{bottom:625.546667pt;}
.y8_c02446{bottom:640.106667pt;}
.y7_c02446{bottom:640.346667pt;}
.y6_c02446{bottom:655.146667pt;}
.y5_c02446{bottom:669.626667pt;}
.y4_c02446{bottom:669.866667pt;}
.y1_c02446{bottom:732.826667pt;}
.h4_c02446{height:39.030469pt;}
.h5_c02446{height:41.930644pt;}
.h7_c02446{height:41.932500pt;}
.h6_c02446{height:42.892500pt;}
.h3_c02446{height:48.294844pt;}
.h2_c02446{height:64.500000pt;}
.h1_c02446{height:793.333333pt;}
.h0_c02446{height:793.626667pt;}
.w0_c02446{width:1122.666667pt;}
.x0_c02446{left:0.000000pt;}
.x1_c02446{left:94.467467pt;}
.x3_c02446{left:101.667333pt;}
.x2_c02446{left:550.067093pt;}
.x4_c02446{left:580.787333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b96ff2e3bc20f0f7e67e9905.woff2')format("woff");}.ff1_c02447{font-family:ff1_c02447;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02447;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02447{font-family:ff2_c02447;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02447;src:url('chunks/assets/font_1173b3c28a9f02d90484542e.woff2')format("woff");}.ff3_c02447{font-family:ff3_c02447;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02447;src:url('chunks/assets/font_94d9f7fdf78f207b4b7aa5ec.woff2')format("woff");}.ff4_c02447{font-family:ff4_c02447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c02447{vertical-align:-19.800000px;}
.v1_c02447{vertical-align:-1.080000px;}
.v0_c02447{vertical-align:0.000000px;}
.ls17_c02447{letter-spacing:0.000000px;}
.ls1_c02447{letter-spacing:0.032940px;}
.lsd_c02447{letter-spacing:0.033516px;}
.ls8_c02447{letter-spacing:0.038304px;}
.ls0_c02447{letter-spacing:0.039528px;}
.lsa_c02447{letter-spacing:0.047880px;}
.ls9_c02447{letter-spacing:0.052668px;}
.ls14_c02447{letter-spacing:0.057456px;}
.ls12_c02447{letter-spacing:0.071820px;}
.ls13_c02447{letter-spacing:0.081396px;}
.ls10_c02447{letter-spacing:0.086184px;}
.lsf_c02447{letter-spacing:0.090972px;}
.ls2_c02447{letter-spacing:0.092232px;}
.ls7_c02447{letter-spacing:0.095760px;}
.ls15_c02447{letter-spacing:0.100548px;}
.lsc_c02447{letter-spacing:0.105336px;}
.ls3_c02447{letter-spacing:0.110124px;}
.lse_c02447{letter-spacing:0.119700px;}
.ls11_c02447{letter-spacing:0.124488px;}
.ls5_c02447{letter-spacing:0.134064px;}
.ls6_c02447{letter-spacing:0.138852px;}
.ls18_c02447{letter-spacing:0.148428px;}
.lsb_c02447{letter-spacing:0.172368px;}
.ls4_c02447{letter-spacing:0.181944px;}
.ls16_c02447{letter-spacing:1393.470000px;}
.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;}
}
.wse_c02447{word-spacing:-0.263340px;}
.ws9_c02447{word-spacing:-0.239400px;}
.ws6_c02447{word-spacing:-0.229824px;}
.ws5_c02447{word-spacing:-0.225036px;}
.ws14_c02447{word-spacing:-0.215460px;}
.ws11_c02447{word-spacing:-0.210672px;}
.ws4_c02447{word-spacing:-0.201096px;}
.wsf_c02447{word-spacing:-0.196308px;}
.ws18_c02447{word-spacing:-0.191520px;}
.ws7_c02447{word-spacing:-0.186732px;}
.ws12_c02447{word-spacing:-0.181944px;}
.ws13_c02447{word-spacing:-0.177156px;}
.ws16_c02447{word-spacing:-0.172368px;}
.ws15_c02447{word-spacing:-0.162792px;}
.ws0_c02447{word-spacing:-0.158112px;}
.ws17_c02447{word-spacing:-0.148428px;}
.wsc_c02447{word-spacing:-0.143640px;}
.wsd_c02447{word-spacing:-0.138852px;}
.ws8_c02447{word-spacing:-0.129276px;}
.ws10_c02447{word-spacing:-0.124488px;}
.ws1_c02447{word-spacing:0.000000px;}
.ws2_c02447{word-spacing:0.052704px;}
.ws3_c02447{word-spacing:0.059292px;}
.wsb_c02447{word-spacing:145.167372px;}
.wsa_c02447{word-spacing:145.526472px;}
._1b_c02447{margin-left:-22.750488px;}
._3_c02447{margin-left:-1.019844px;}
._8_c02447{width:1.009512px;}
._2c_c02447{width:73.464012px;}
._2a_c02447{width:97.282224px;}
._2b_c02447{width:121.342068px;}
._2_c02447{width:144.446112px;}
._1_c02447{width:145.526112px;}
._1a_c02447{width:201.019392px;}
._28_c02447{width:210.374352px;}
._23_c02447{width:240.107832px;}
._25_c02447{width:246.758364px;}
._21_c02447{width:248.051124px;}
._1d_c02447{width:263.985588px;}
._1e_c02447{width:275.467212px;}
._26_c02447{width:286.241004px;}
._14_c02447{width:349.173684px;}
._10_c02447{width:363.350952px;}
._4_c02447{width:375.435864px;}
._a_c02447{width:389.435976px;}
._22_c02447{width:407.510676px;}
._11_c02447{width:411.394500px;}
._29_c02447{width:420.055236px;}
._c_c02447{width:424.523196px;}
._f_c02447{width:451.703916px;}
._12_c02447{width:475.515432px;}
._e_c02447{width:491.248764px;}
._0_c02447{width:518.836464px;}
._19_c02447{width:522.409104px;}
._9_c02447{width:528.805080px;}
._13_c02447{width:595.416528px;}
._17_c02447{width:645.503004px;}
._18_c02447{width:650.392344px;}
._27_c02447{width:665.958132px;}
._b_c02447{width:700.301664px;}
._6_c02447{width:707.842764px;}
._20_c02447{width:715.522716px;}
._24_c02447{width:751.653756px;}
._1f_c02447{width:754.243272px;}
._16_c02447{width:792.054108px;}
._5_c02447{width:852.928740px;}
._1c_c02447{width:878.363388px;}
._d_c02447{width:891.342864px;}
._15_c02447{width:1040.000688px;}
._7_c02447{width:1118.725776px;}
.fc0_c02447{color:rgb(0,0,0);}
.fs2_c02447{font-size:47.880000px;}
.fs1_c02447{font-size:65.880000px;}
.fs0_c02447{font-size:72.000000px;}
.y0_c02447{bottom:0.000000px;}
.y3_c02447{bottom:75.450162px;}
.y2_c02447{bottom:113.609505px;}
.y2c_c02447{bottom:136.560657px;}
.y2b_c02447{bottom:174.720000px;}
.y2a_c02447{bottom:200.730000px;}
.y29_c02447{bottom:215.310000px;}
.y28_c02447{bottom:229.890000px;}
.y27_c02447{bottom:244.380000px;}
.y26_c02447{bottom:258.960000px;}
.y25_c02447{bottom:273.540000px;}
.y24_c02447{bottom:288.030000px;}
.y23_c02447{bottom:302.610000px;}
.y22_c02447{bottom:317.190000px;}
.y21_c02447{bottom:331.680000px;}
.y20_c02447{bottom:346.260000px;}
.y1f_c02447{bottom:360.840000px;}
.y1e_c02447{bottom:375.330000px;}
.y1d_c02447{bottom:389.910000px;}
.y1c_c02447{bottom:404.400000px;}
.y1b_c02447{bottom:418.980000px;}
.y1a_c02447{bottom:433.560000px;}
.y19_c02447{bottom:448.050000px;}
.y18_c02447{bottom:462.630000px;}
.y17_c02447{bottom:477.210000px;}
.y16_c02447{bottom:491.700000px;}
.y15_c02447{bottom:506.280000px;}
.y14_c02447{bottom:520.860000px;}
.y13_c02447{bottom:535.350000px;}
.y12_c02447{bottom:549.930000px;}
.y11_c02447{bottom:564.510000px;}
.y10_c02447{bottom:579.000000px;}
.yf_c02447{bottom:593.580000px;}
.ye_c02447{bottom:608.160000px;}
.yd_c02447{bottom:622.650000px;}
.yc_c02447{bottom:637.230000px;}
.yb_c02447{bottom:651.810000px;}
.ya_c02447{bottom:666.300000px;}
.y9_c02447{bottom:680.880000px;}
.y8_c02447{bottom:695.460000px;}
.y7_c02447{bottom:709.950000px;}
.y6_c02447{bottom:724.530000px;}
.y5_c02447{bottom:739.110000px;}
.y4_c02447{bottom:753.600000px;}
.y1_c02447{bottom:824.430000px;}
.h4_c02447{height:43.909277px;}
.h6_c02447{height:46.991602px;}
.h5_c02447{height:47.174063px;}
.h3_c02447{height:54.331699px;}
.h2_c02447{height:72.562500px;}
.h1_c02447{height:892.500000px;}
.h0_c02447{height:892.830000px;}
.w0_c02447{width:1263.000000px;}
.x0_c02447{left:0.000000px;}
.x1_c02447{left:106.275900px;}
.x3_c02447{left:114.375750px;}
.x2_c02447{left:618.825480px;}
@media print{
.v2_c02447{vertical-align:-17.600000pt;}
.v1_c02447{vertical-align:-0.960000pt;}
.v0_c02447{vertical-align:0.000000pt;}
.ls17_c02447{letter-spacing:0.000000pt;}
.ls1_c02447{letter-spacing:0.029280pt;}
.lsd_c02447{letter-spacing:0.029792pt;}
.ls8_c02447{letter-spacing:0.034048pt;}
.ls0_c02447{letter-spacing:0.035136pt;}
.lsa_c02447{letter-spacing:0.042560pt;}
.ls9_c02447{letter-spacing:0.046816pt;}
.ls14_c02447{letter-spacing:0.051072pt;}
.ls12_c02447{letter-spacing:0.063840pt;}
.ls13_c02447{letter-spacing:0.072352pt;}
.ls10_c02447{letter-spacing:0.076608pt;}
.lsf_c02447{letter-spacing:0.080864pt;}
.ls2_c02447{letter-spacing:0.081984pt;}
.ls7_c02447{letter-spacing:0.085120pt;}
.ls15_c02447{letter-spacing:0.089376pt;}
.lsc_c02447{letter-spacing:0.093632pt;}
.ls3_c02447{letter-spacing:0.097888pt;}
.lse_c02447{letter-spacing:0.106400pt;}
.ls11_c02447{letter-spacing:0.110656pt;}
.ls5_c02447{letter-spacing:0.119168pt;}
.ls6_c02447{letter-spacing:0.123424pt;}
.ls18_c02447{letter-spacing:0.131936pt;}
.lsb_c02447{letter-spacing:0.153216pt;}
.ls4_c02447{letter-spacing:0.161728pt;}
.ls16_c02447{letter-spacing:1238.640000pt;}
.wse_c02447{word-spacing:-0.234080pt;}
.ws9_c02447{word-spacing:-0.212800pt;}
.ws6_c02447{word-spacing:-0.204288pt;}
.ws5_c02447{word-spacing:-0.200032pt;}
.ws14_c02447{word-spacing:-0.191520pt;}
.ws11_c02447{word-spacing:-0.187264pt;}
.ws4_c02447{word-spacing:-0.178752pt;}
.wsf_c02447{word-spacing:-0.174496pt;}
.ws18_c02447{word-spacing:-0.170240pt;}
.ws7_c02447{word-spacing:-0.165984pt;}
.ws12_c02447{word-spacing:-0.161728pt;}
.ws13_c02447{word-spacing:-0.157472pt;}
.ws16_c02447{word-spacing:-0.153216pt;}
.ws15_c02447{word-spacing:-0.144704pt;}
.ws0_c02447{word-spacing:-0.140544pt;}
.ws17_c02447{word-spacing:-0.131936pt;}
.wsc_c02447{word-spacing:-0.127680pt;}
.wsd_c02447{word-spacing:-0.123424pt;}
.ws8_c02447{word-spacing:-0.114912pt;}
.ws10_c02447{word-spacing:-0.110656pt;}
.ws1_c02447{word-spacing:0.000000pt;}
.ws2_c02447{word-spacing:0.046848pt;}
.ws3_c02447{word-spacing:0.052704pt;}
.wsb_c02447{word-spacing:129.037664pt;}
.wsa_c02447{word-spacing:129.356864pt;}
._1b_c02447{margin-left:-20.222656pt;}
._3_c02447{margin-left:-0.906528pt;}
._8_c02447{width:0.897344pt;}
._2c_c02447{width:65.301344pt;}
._2a_c02447{width:86.473088pt;}
._2b_c02447{width:107.859616pt;}
._2_c02447{width:128.396544pt;}
._1_c02447{width:129.356544pt;}
._1a_c02447{width:178.683904pt;}
._28_c02447{width:186.999424pt;}
._23_c02447{width:213.429184pt;}
._25_c02447{width:219.340768pt;}
._21_c02447{width:220.489888pt;}
._1d_c02447{width:234.653856pt;}
._1e_c02447{width:244.859744pt;}
._26_c02447{width:254.436448pt;}
._14_c02447{width:310.376608pt;}
._10_c02447{width:322.978624pt;}
._4_c02447{width:333.720768pt;}
._a_c02447{width:346.165312pt;}
._22_c02447{width:362.231712pt;}
._11_c02447{width:365.684000pt;}
._29_c02447{width:373.382432pt;}
._c_c02447{width:377.353952pt;}
._f_c02447{width:401.514592pt;}
._12_c02447{width:422.680384pt;}
._e_c02447{width:436.665568pt;}
._0_c02447{width:461.187968pt;}
._19_c02447{width:464.363648pt;}
._9_c02447{width:470.048960pt;}
._13_c02447{width:529.259136pt;}
._17_c02447{width:573.780448pt;}
._18_c02447{width:578.126528pt;}
._27_c02447{width:591.962784pt;}
._b_c02447{width:622.490368pt;}
._6_c02447{width:629.193568pt;}
._20_c02447{width:636.020192pt;}
._24_c02447{width:668.136672pt;}
._1f_c02447{width:670.438464pt;}
._16_c02447{width:704.048096pt;}
._5_c02447{width:758.158880pt;}
._1c_c02447{width:780.767456pt;}
._d_c02447{width:792.304768pt;}
._15_c02447{width:924.445056pt;}
._7_c02447{width:994.422912pt;}
.fs2_c02447{font-size:42.560000pt;}
.fs1_c02447{font-size:58.560000pt;}
.fs0_c02447{font-size:64.000000pt;}
.y0_c02447{bottom:0.000000pt;}
.y3_c02447{bottom:67.066811pt;}
.y2_c02447{bottom:100.986227pt;}
.y2c_c02447{bottom:121.387251pt;}
.y2b_c02447{bottom:155.306667pt;}
.y2a_c02447{bottom:178.426667pt;}
.y29_c02447{bottom:191.386667pt;}
.y28_c02447{bottom:204.346667pt;}
.y27_c02447{bottom:217.226667pt;}
.y26_c02447{bottom:230.186667pt;}
.y25_c02447{bottom:243.146667pt;}
.y24_c02447{bottom:256.026667pt;}
.y23_c02447{bottom:268.986667pt;}
.y22_c02447{bottom:281.946667pt;}
.y21_c02447{bottom:294.826667pt;}
.y20_c02447{bottom:307.786667pt;}
.y1f_c02447{bottom:320.746667pt;}
.y1e_c02447{bottom:333.626667pt;}
.y1d_c02447{bottom:346.586667pt;}
.y1c_c02447{bottom:359.466667pt;}
.y1b_c02447{bottom:372.426667pt;}
.y1a_c02447{bottom:385.386667pt;}
.y19_c02447{bottom:398.266667pt;}
.y18_c02447{bottom:411.226667pt;}
.y17_c02447{bottom:424.186667pt;}
.y16_c02447{bottom:437.066667pt;}
.y15_c02447{bottom:450.026667pt;}
.y14_c02447{bottom:462.986667pt;}
.y13_c02447{bottom:475.866667pt;}
.y12_c02447{bottom:488.826667pt;}
.y11_c02447{bottom:501.786667pt;}
.y10_c02447{bottom:514.666667pt;}
.yf_c02447{bottom:527.626667pt;}
.ye_c02447{bottom:540.586667pt;}
.yd_c02447{bottom:553.466667pt;}
.yc_c02447{bottom:566.426667pt;}
.yb_c02447{bottom:579.386667pt;}
.ya_c02447{bottom:592.266667pt;}
.y9_c02447{bottom:605.226667pt;}
.y8_c02447{bottom:618.186667pt;}
.y7_c02447{bottom:631.066667pt;}
.y6_c02447{bottom:644.026667pt;}
.y5_c02447{bottom:656.986667pt;}
.y4_c02447{bottom:669.866667pt;}
.y1_c02447{bottom:732.826667pt;}
.h4_c02447{height:39.030469pt;}
.h6_c02447{height:41.770312pt;}
.h5_c02447{height:41.932500pt;}
.h3_c02447{height:48.294844pt;}
.h2_c02447{height:64.500000pt;}
.h1_c02447{height:793.333333pt;}
.h0_c02447{height:793.626667pt;}
.w0_c02447{width:1122.666667pt;}
.x0_c02447{left:0.000000pt;}
.x1_c02447{left:94.467467pt;}
.x3_c02447{left:101.667333pt;}
.x2_c02447{left:550.067093pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0450576cf7d89dec5b6a490a.woff2')format("woff");}.ff1_c02448{font-family:ff1_c02448;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02448{font-family:ff2_c02448;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02448;src:url('chunks/assets/font_0ed9eff85f68f543f127661a.woff2')format("woff");}.ff3_c02448{font-family:ff3_c02448;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02448;src:url('chunks/assets/font_ce589c56ccc0dd3804abba53.woff2')format("woff");}.ff4_c02448{font-family:ff4_c02448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c02448{vertical-align:-1.082088px;}
.v0_c02448{vertical-align:0.000000px;}
.v1_c02448{vertical-align:22.320000px;}
.v2_c02448{vertical-align:77.400000px;}
.ls28_c02448{letter-spacing:-0.216432px;}
.ls2a_c02448{letter-spacing:-0.144000px;}
.ls23_c02448{letter-spacing:-0.096192px;}
.ls24_c02448{letter-spacing:-0.066132px;}
.ls2d_c02448{letter-spacing:-0.043092px;}
.ls29_c02448{letter-spacing:-0.042084px;}
.ls25_c02448{letter-spacing:-0.030060px;}
.ls22_c02448{letter-spacing:-0.024048px;}
.ls21_c02448{letter-spacing:-0.014400px;}
.ls2b_c02448{letter-spacing:-0.004788px;}
.ls20_c02448{letter-spacing:0.000000px;}
.lsc_c02448{letter-spacing:0.007200px;}
.ls3_c02448{letter-spacing:0.014400px;}
.ls6_c02448{letter-spacing:0.018036px;}
.ls2c_c02448{letter-spacing:0.019152px;}
.ls9_c02448{letter-spacing:0.024048px;}
.ls4_c02448{letter-spacing:0.028800px;}
.ls1_c02448{letter-spacing:0.032940px;}
.ls1f_c02448{letter-spacing:0.033516px;}
.ls5_c02448{letter-spacing:0.036072px;}
.ls0_c02448{letter-spacing:0.039528px;}
.ls19_c02448{letter-spacing:0.043092px;}
.ls1b_c02448{letter-spacing:0.047880px;}
.ls7_c02448{letter-spacing:0.048096px;}
.ls14_c02448{letter-spacing:0.052668px;}
.ls1a_c02448{letter-spacing:0.057456px;}
.ls13_c02448{letter-spacing:0.062244px;}
.ls27_c02448{letter-spacing:0.066132px;}
.ls1c_c02448{letter-spacing:0.067032px;}
.ls1d_c02448{letter-spacing:0.076608px;}
.lsa_c02448{letter-spacing:0.078156px;}
.ls1e_c02448{letter-spacing:0.081396px;}
.ls16_c02448{letter-spacing:0.090972px;}
.ls2_c02448{letter-spacing:0.092232px;}
.ls17_c02448{letter-spacing:0.095760px;}
.ls8_c02448{letter-spacing:0.096192px;}
.ls15_c02448{letter-spacing:0.100548px;}
.ls11_c02448{letter-spacing:0.105336px;}
.ls12_c02448{letter-spacing:0.110124px;}
.ls10_c02448{letter-spacing:0.114912px;}
.ls18_c02448{letter-spacing:0.119700px;}
.lse_c02448{letter-spacing:0.124488px;}
.lsd_c02448{letter-spacing:0.134064px;}
.ls26_c02448{letter-spacing:0.144288px;}
.lsb_c02448{letter-spacing:0.150300px;}
.lsf_c02448{letter-spacing:0.181944px;}
.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;}
}
.ws2_c02448{word-spacing:-18.000000px;}
.ws1_c02448{word-spacing:-14.813568px;}
.wsa_c02448{word-spacing:-0.306612px;}
.ws2e_c02448{word-spacing:-0.272916px;}
.ws15_c02448{word-spacing:-0.270540px;}
.ws9_c02448{word-spacing:-0.246492px;}
.ws21_c02448{word-spacing:-0.225036px;}
.ws19_c02448{word-spacing:-0.215460px;}
.ws27_c02448{word-spacing:-0.210672px;}
.ws1e_c02448{word-spacing:-0.205884px;}
.ws28_c02448{word-spacing:-0.201096px;}
.ws1f_c02448{word-spacing:-0.196308px;}
.ws24_c02448{word-spacing:-0.191520px;}
.ws31_c02448{word-spacing:-0.186732px;}
.ws26_c02448{word-spacing:-0.181944px;}
.ws2f_c02448{word-spacing:-0.172368px;}
.ws2d_c02448{word-spacing:-0.167580px;}
.ws0_c02448{word-spacing:-0.158112px;}
.ws22_c02448{word-spacing:-0.153216px;}
.ws2a_c02448{word-spacing:-0.148428px;}
.ws23_c02448{word-spacing:-0.143640px;}
.ws2b_c02448{word-spacing:-0.138852px;}
.ws29_c02448{word-spacing:-0.134064px;}
.ws30_c02448{word-spacing:-0.124488px;}
.ws7_c02448{word-spacing:-0.086400px;}
.ws18_c02448{word-spacing:-0.064800px;}
.ws8_c02448{word-spacing:-0.057600px;}
.ws3_c02448{word-spacing:0.000000px;}
.ws16_c02448{word-spacing:0.012024px;}
.ws6_c02448{word-spacing:0.014400px;}
.ws13_c02448{word-spacing:0.024048px;}
.ws4_c02448{word-spacing:0.052704px;}
.ws5_c02448{word-spacing:0.059292px;}
.ws11_c02448{word-spacing:0.066132px;}
.wsb_c02448{word-spacing:0.072144px;}
.ws14_c02448{word-spacing:0.114228px;}
.ws12_c02448{word-spacing:0.120240px;}
.ws17_c02448{word-spacing:0.132264px;}
.ws10_c02448{word-spacing:0.156312px;}
.wsf_c02448{word-spacing:0.180360px;}
.ws2c_c02448{word-spacing:0.201096px;}
.wsd_c02448{word-spacing:5.032044px;}
.wsc_c02448{word-spacing:5.080140px;}
.wse_c02448{word-spacing:5.224428px;}
.ws1b_c02448{word-spacing:107.007012px;}
.ws1c_c02448{word-spacing:107.366112px;}
.ws20_c02448{word-spacing:130.769856px;}
.ws1a_c02448{word-spacing:131.128956px;}
.ws25_c02448{word-spacing:185.846220px;}
.ws1d_c02448{word-spacing:209.968164px;}
._e_c02448{margin-left:-210.113244px;}
._1a_c02448{margin-left:-185.857956px;}
._c_c02448{margin-left:-24.485832px;}
._13_c02448{margin-left:-23.332176px;}
._0_c02448{margin-left:-1.152000px;}
._1_c02448{width:1.040076px;}
._d_c02448{width:23.030280px;}
._10_c02448{width:24.481044px;}
._8_c02448{width:62.640000px;}
._9_c02448{width:70.560000px;}
._4_c02448{width:74.664000px;}
._5_c02448{width:82.944000px;}
._7_c02448{width:89.424000px;}
._3_c02448{width:94.824000px;}
._6_c02448{width:101.664000px;}
._a_c02448{width:104.259744px;}
._26_c02448{width:107.366112px;}
._25_c02448{width:130.046112px;}
._24_c02448{width:131.126112px;}
._27_c02448{width:185.480280px;}
._21_c02448{width:201.158244px;}
._15_c02448{width:205.952004px;}
._1c_c02448{width:218.522412px;}
._14_c02448{width:293.423976px;}
._18_c02448{width:304.696836px;}
._1b_c02448{width:311.826168px;}
._20_c02448{width:320.408172px;}
._29_c02448{width:366.156432px;}
._22_c02448{width:374.209020px;}
._16_c02448{width:393.918336px;}
._19_c02448{width:409.908348px;}
._17_c02448{width:421.315272px;}
._12_c02448{width:495.294660px;}
._f_c02448{width:498.357072px;}
._1e_c02448{width:508.632120px;}
._23_c02448{width:533.789784px;}
._1d_c02448{width:623.555604px;}
._1f_c02448{width:691.026192px;}
._11_c02448{width:703.096740px;}
._28_c02448{width:733.334868px;}
._b_c02448{width:753.686748px;}
._2_c02448{width:925.898400px;}
._2a_c02448{width:990.603684px;}
.fc0_c02448{color:rgb(0,0,0);}
.fs3_c02448{font-size:47.880000px;}
.fs2_c02448{font-size:60.120000px;}
.fs1_c02448{font-size:65.880000px;}
.fs0_c02448{font-size:72.000000px;}
.y0_c02448{bottom:0.000000px;}
.y3_c02448{bottom:75.450162px;}
.y2_c02448{bottom:113.609505px;}
.y3a_c02448{bottom:147.630000px;}
.y39_c02448{bottom:164.280000px;}
.y38_c02448{bottom:180.660000px;}
.y37_c02448{bottom:180.930000px;}
.y36_c02448{bottom:197.490000px;}
.y35_c02448{bottom:214.140000px;}
.y34_c02448{bottom:230.520000px;}
.y33_c02448{bottom:230.790000px;}
.y32_c02448{bottom:247.080000px;}
.y31_c02448{bottom:247.350000px;}
.y30_c02448{bottom:263.730000px;}
.y2f_c02448{bottom:264.000000px;}
.y2e_c02448{bottom:280.380000px;}
.y2d_c02448{bottom:280.650000px;}
.y2c_c02448{bottom:296.940000px;}
.y2b_c02448{bottom:297.210000px;}
.y2a_c02448{bottom:313.590000px;}
.y29_c02448{bottom:313.860000px;}
.y28_c02448{bottom:330.240000px;}
.y27_c02448{bottom:330.510000px;}
.y26_c02448{bottom:346.800000px;}
.y25_c02448{bottom:347.070000px;}
.y24_c02448{bottom:363.450000px;}
.y23_c02448{bottom:363.720000px;}
.y22_c02448{bottom:380.100000px;}
.y21_c02448{bottom:380.370000px;}
.y20_c02448{bottom:396.660000px;}
.y1f_c02448{bottom:396.930000px;}
.y1e_c02448{bottom:413.310000px;}
.y1d_c02448{bottom:413.580000px;}
.y1c_c02448{bottom:429.960000px;}
.y1b_c02448{bottom:430.230000px;}
.y1a_c02448{bottom:446.520000px;}
.y19_c02448{bottom:446.790000px;}
.y18_c02448{bottom:463.440000px;}
.y17_c02448{bottom:479.820000px;}
.y16_c02448{bottom:480.090000px;}
.y15_c02448{bottom:496.380000px;}
.y14_c02448{bottom:496.650000px;}
.y13_c02448{bottom:513.030000px;}
.y12_c02448{bottom:513.300000px;}
.yf_c02448{bottom:528.870000px;}
.y11_c02448{bottom:534.450000px;}
.ye_c02448{bottom:542.640000px;}
.y10_c02448{bottom:548.220000px;}
.yd_c02448{bottom:567.120000px;}
.yc_c02448{bottom:587.458902px;}
.yb_c02448{bottom:604.558533px;}
.ya_c02448{bottom:624.359055px;}
.y9_c02448{bottom:644.338434px;}
.y8_c02448{bottom:664.229136px;}
.y7_c02448{bottom:683.849298px;}
.y6_c02448{bottom:703.740000px;}
.y5_c02448{bottom:724.620000px;}
.y4_c02448{bottom:748.380000px;}
.y1_c02448{bottom:824.430000px;}
.h4_c02448{height:43.909277px;}
.h9_c02448{height:47.171974px;}
.ha_c02448{height:47.174063px;}
.hb_c02448{height:47.174663px;}
.h8_c02448{height:48.254063px;}
.h3_c02448{height:54.331699px;}
.h6_c02448{height:59.004492px;}
.h5_c02448{height:60.589687px;}
.h2_c02448{height:72.562500px;}
.h7_c02448{height:125.654062px;}
.h1_c02448{height:892.500000px;}
.h0_c02448{height:892.830000px;}
.w0_c02448{width:1263.000000px;}
.x0_c02448{left:0.000000px;}
.x1_c02448{left:106.275900px;}
.x8_c02448{left:114.375750px;}
.x4_c02448{left:173.325750px;}
.x7_c02448{left:304.725750px;}
.x6_c02448{left:359.176614px;}
.x5_c02448{left:379.785750px;}
.x9_c02448{left:461.325750px;}
.xa_c02448{left:503.175750px;}
.xb_c02448{left:544.935750px;}
.xc_c02448{left:586.785750px;}
.x3_c02448{left:591.195750px;}
.x2_c02448{left:618.825480px;}
.xd_c02448{left:628.635750px;}
.x18_c02448{left:635.475750px;}
.xe_c02448{left:670.395750px;}
.xf_c02448{left:712.245750px;}
.x10_c02448{left:754.005750px;}
.x11_c02448{left:795.945750px;}
.x12_c02448{left:837.705750px;}
.x13_c02448{left:876.585750px;}
.x14_c02448{left:918.345750px;}
.x15_c02448{left:960.195750px;}
.x16_c02448{left:1001.955750px;}
.x17_c02448{left:1090.335750px;}
@media print{
.v3_c02448{vertical-align:-0.961856pt;}
.v0_c02448{vertical-align:0.000000pt;}
.v1_c02448{vertical-align:19.840000pt;}
.v2_c02448{vertical-align:68.800000pt;}
.ls28_c02448{letter-spacing:-0.192384pt;}
.ls2a_c02448{letter-spacing:-0.128000pt;}
.ls23_c02448{letter-spacing:-0.085504pt;}
.ls24_c02448{letter-spacing:-0.058784pt;}
.ls2d_c02448{letter-spacing:-0.038304pt;}
.ls29_c02448{letter-spacing:-0.037408pt;}
.ls25_c02448{letter-spacing:-0.026720pt;}
.ls22_c02448{letter-spacing:-0.021376pt;}
.ls21_c02448{letter-spacing:-0.012800pt;}
.ls2b_c02448{letter-spacing:-0.004256pt;}
.ls20_c02448{letter-spacing:0.000000pt;}
.lsc_c02448{letter-spacing:0.006400pt;}
.ls3_c02448{letter-spacing:0.012800pt;}
.ls6_c02448{letter-spacing:0.016032pt;}
.ls2c_c02448{letter-spacing:0.017024pt;}
.ls9_c02448{letter-spacing:0.021376pt;}
.ls4_c02448{letter-spacing:0.025600pt;}
.ls1_c02448{letter-spacing:0.029280pt;}
.ls1f_c02448{letter-spacing:0.029792pt;}
.ls5_c02448{letter-spacing:0.032064pt;}
.ls0_c02448{letter-spacing:0.035136pt;}
.ls19_c02448{letter-spacing:0.038304pt;}
.ls1b_c02448{letter-spacing:0.042560pt;}
.ls7_c02448{letter-spacing:0.042752pt;}
.ls14_c02448{letter-spacing:0.046816pt;}
.ls1a_c02448{letter-spacing:0.051072pt;}
.ls13_c02448{letter-spacing:0.055328pt;}
.ls27_c02448{letter-spacing:0.058784pt;}
.ls1c_c02448{letter-spacing:0.059584pt;}
.ls1d_c02448{letter-spacing:0.068096pt;}
.lsa_c02448{letter-spacing:0.069472pt;}
.ls1e_c02448{letter-spacing:0.072352pt;}
.ls16_c02448{letter-spacing:0.080864pt;}
.ls2_c02448{letter-spacing:0.081984pt;}
.ls17_c02448{letter-spacing:0.085120pt;}
.ls8_c02448{letter-spacing:0.085504pt;}
.ls15_c02448{letter-spacing:0.089376pt;}
.ls11_c02448{letter-spacing:0.093632pt;}
.ls12_c02448{letter-spacing:0.097888pt;}
.ls10_c02448{letter-spacing:0.102144pt;}
.ls18_c02448{letter-spacing:0.106400pt;}
.lse_c02448{letter-spacing:0.110656pt;}
.lsd_c02448{letter-spacing:0.119168pt;}
.ls26_c02448{letter-spacing:0.128256pt;}
.lsb_c02448{letter-spacing:0.133600pt;}
.lsf_c02448{letter-spacing:0.161728pt;}
.ws2_c02448{word-spacing:-16.000000pt;}
.ws1_c02448{word-spacing:-13.167616pt;}
.wsa_c02448{word-spacing:-0.272544pt;}
.ws2e_c02448{word-spacing:-0.242592pt;}
.ws15_c02448{word-spacing:-0.240480pt;}
.ws9_c02448{word-spacing:-0.219104pt;}
.ws21_c02448{word-spacing:-0.200032pt;}
.ws19_c02448{word-spacing:-0.191520pt;}
.ws27_c02448{word-spacing:-0.187264pt;}
.ws1e_c02448{word-spacing:-0.183008pt;}
.ws28_c02448{word-spacing:-0.178752pt;}
.ws1f_c02448{word-spacing:-0.174496pt;}
.ws24_c02448{word-spacing:-0.170240pt;}
.ws31_c02448{word-spacing:-0.165984pt;}
.ws26_c02448{word-spacing:-0.161728pt;}
.ws2f_c02448{word-spacing:-0.153216pt;}
.ws2d_c02448{word-spacing:-0.148960pt;}
.ws0_c02448{word-spacing:-0.140544pt;}
.ws22_c02448{word-spacing:-0.136192pt;}
.ws2a_c02448{word-spacing:-0.131936pt;}
.ws23_c02448{word-spacing:-0.127680pt;}
.ws2b_c02448{word-spacing:-0.123424pt;}
.ws29_c02448{word-spacing:-0.119168pt;}
.ws30_c02448{word-spacing:-0.110656pt;}
.ws7_c02448{word-spacing:-0.076800pt;}
.ws18_c02448{word-spacing:-0.057600pt;}
.ws8_c02448{word-spacing:-0.051200pt;}
.ws3_c02448{word-spacing:0.000000pt;}
.ws16_c02448{word-spacing:0.010688pt;}
.ws6_c02448{word-spacing:0.012800pt;}
.ws13_c02448{word-spacing:0.021376pt;}
.ws4_c02448{word-spacing:0.046848pt;}
.ws5_c02448{word-spacing:0.052704pt;}
.ws11_c02448{word-spacing:0.058784pt;}
.wsb_c02448{word-spacing:0.064128pt;}
.ws14_c02448{word-spacing:0.101536pt;}
.ws12_c02448{word-spacing:0.106880pt;}
.ws17_c02448{word-spacing:0.117568pt;}
.ws10_c02448{word-spacing:0.138944pt;}
.wsf_c02448{word-spacing:0.160320pt;}
.ws2c_c02448{word-spacing:0.178752pt;}
.wsd_c02448{word-spacing:4.472928pt;}
.wsc_c02448{word-spacing:4.515680pt;}
.wse_c02448{word-spacing:4.643936pt;}
.ws1b_c02448{word-spacing:95.117344pt;}
.ws1c_c02448{word-spacing:95.436544pt;}
.ws20_c02448{word-spacing:116.239872pt;}
.ws1a_c02448{word-spacing:116.559072pt;}
.ws25_c02448{word-spacing:165.196640pt;}
.ws1d_c02448{word-spacing:186.638368pt;}
._e_c02448{margin-left:-186.767328pt;}
._1a_c02448{margin-left:-165.207072pt;}
._c_c02448{margin-left:-21.765184pt;}
._13_c02448{margin-left:-20.739712pt;}
._0_c02448{margin-left:-1.024000pt;}
._1_c02448{width:0.924512pt;}
._d_c02448{width:20.471360pt;}
._10_c02448{width:21.760928pt;}
._8_c02448{width:55.680000pt;}
._9_c02448{width:62.720000pt;}
._4_c02448{width:66.368000pt;}
._5_c02448{width:73.728000pt;}
._7_c02448{width:79.488000pt;}
._3_c02448{width:84.288000pt;}
._6_c02448{width:90.368000pt;}
._a_c02448{width:92.675328pt;}
._26_c02448{width:95.436544pt;}
._25_c02448{width:115.596544pt;}
._24_c02448{width:116.556544pt;}
._27_c02448{width:164.871360pt;}
._21_c02448{width:178.807328pt;}
._15_c02448{width:183.068448pt;}
._1c_c02448{width:194.242144pt;}
._14_c02448{width:260.821312pt;}
._18_c02448{width:270.841632pt;}
._1b_c02448{width:277.178816pt;}
._20_c02448{width:284.807264pt;}
._29_c02448{width:325.472384pt;}
._22_c02448{width:332.630240pt;}
._16_c02448{width:350.149632pt;}
._19_c02448{width:364.362976pt;}
._17_c02448{width:374.502464pt;}
._12_c02448{width:440.261920pt;}
._f_c02448{width:442.984064pt;}
._1e_c02448{width:452.117440pt;}
._23_c02448{width:474.479808pt;}
._1d_c02448{width:554.271648pt;}
._1f_c02448{width:614.245504pt;}
._11_c02448{width:624.974880pt;}
._28_c02448{width:651.853216pt;}
._b_c02448{width:669.943776pt;}
._2_c02448{width:823.020800pt;}
._2a_c02448{width:880.536608pt;}
.fs3_c02448{font-size:42.560000pt;}
.fs2_c02448{font-size:53.440000pt;}
.fs1_c02448{font-size:58.560000pt;}
.fs0_c02448{font-size:64.000000pt;}
.y0_c02448{bottom:0.000000pt;}
.y3_c02448{bottom:67.066811pt;}
.y2_c02448{bottom:100.986227pt;}
.y3a_c02448{bottom:131.226667pt;}
.y39_c02448{bottom:146.026667pt;}
.y38_c02448{bottom:160.586667pt;}
.y37_c02448{bottom:160.826667pt;}
.y36_c02448{bottom:175.546667pt;}
.y35_c02448{bottom:190.346667pt;}
.y34_c02448{bottom:204.906667pt;}
.y33_c02448{bottom:205.146667pt;}
.y32_c02448{bottom:219.626667pt;}
.y31_c02448{bottom:219.866667pt;}
.y30_c02448{bottom:234.426667pt;}
.y2f_c02448{bottom:234.666667pt;}
.y2e_c02448{bottom:249.226667pt;}
.y2d_c02448{bottom:249.466667pt;}
.y2c_c02448{bottom:263.946667pt;}
.y2b_c02448{bottom:264.186667pt;}
.y2a_c02448{bottom:278.746667pt;}
.y29_c02448{bottom:278.986667pt;}
.y28_c02448{bottom:293.546667pt;}
.y27_c02448{bottom:293.786667pt;}
.y26_c02448{bottom:308.266667pt;}
.y25_c02448{bottom:308.506667pt;}
.y24_c02448{bottom:323.066667pt;}
.y23_c02448{bottom:323.306667pt;}
.y22_c02448{bottom:337.866667pt;}
.y21_c02448{bottom:338.106667pt;}
.y20_c02448{bottom:352.586667pt;}
.y1f_c02448{bottom:352.826667pt;}
.y1e_c02448{bottom:367.386667pt;}
.y1d_c02448{bottom:367.626667pt;}
.y1c_c02448{bottom:382.186667pt;}
.y1b_c02448{bottom:382.426667pt;}
.y1a_c02448{bottom:396.906667pt;}
.y19_c02448{bottom:397.146667pt;}
.y18_c02448{bottom:411.946667pt;}
.y17_c02448{bottom:426.506667pt;}
.y16_c02448{bottom:426.746667pt;}
.y15_c02448{bottom:441.226667pt;}
.y14_c02448{bottom:441.466667pt;}
.y13_c02448{bottom:456.026667pt;}
.y12_c02448{bottom:456.266667pt;}
.yf_c02448{bottom:470.106667pt;}
.y11_c02448{bottom:475.066667pt;}
.ye_c02448{bottom:482.346667pt;}
.y10_c02448{bottom:487.306667pt;}
.yd_c02448{bottom:504.106667pt;}
.yc_c02448{bottom:522.185691pt;}
.yb_c02448{bottom:537.385363pt;}
.ya_c02448{bottom:554.985827pt;}
.y9_c02448{bottom:572.745275pt;}
.y8_c02448{bottom:590.425899pt;}
.y7_c02448{bottom:607.866043pt;}
.y6_c02448{bottom:625.546667pt;}
.y5_c02448{bottom:644.106667pt;}
.y4_c02448{bottom:665.226667pt;}
.y1_c02448{bottom:732.826667pt;}
.h4_c02448{height:39.030469pt;}
.h9_c02448{height:41.930644pt;}
.ha_c02448{height:41.932500pt;}
.hb_c02448{height:41.933033pt;}
.h8_c02448{height:42.892500pt;}
.h3_c02448{height:48.294844pt;}
.h6_c02448{height:52.448437pt;}
.h5_c02448{height:53.857500pt;}
.h2_c02448{height:64.500000pt;}
.h7_c02448{height:111.692500pt;}
.h1_c02448{height:793.333333pt;}
.h0_c02448{height:793.626667pt;}
.w0_c02448{width:1122.666667pt;}
.x0_c02448{left:0.000000pt;}
.x1_c02448{left:94.467467pt;}
.x8_c02448{left:101.667333pt;}
.x4_c02448{left:154.067333pt;}
.x7_c02448{left:270.867333pt;}
.x6_c02448{left:319.268101pt;}
.x5_c02448{left:337.587333pt;}
.x9_c02448{left:410.067333pt;}
.xa_c02448{left:447.267333pt;}
.xb_c02448{left:484.387333pt;}
.xc_c02448{left:521.587333pt;}
.x3_c02448{left:525.507333pt;}
.x2_c02448{left:550.067093pt;}
.xd_c02448{left:558.787333pt;}
.x18_c02448{left:564.867333pt;}
.xe_c02448{left:595.907333pt;}
.xf_c02448{left:633.107333pt;}
.x10_c02448{left:670.227333pt;}
.x11_c02448{left:707.507333pt;}
.x12_c02448{left:744.627333pt;}
.x13_c02448{left:779.187333pt;}
.x14_c02448{left:816.307333pt;}
.x15_c02448{left:853.507333pt;}
.x16_c02448{left:890.627333pt;}
.x17_c02448{left:969.187333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b96ff2e3bc20f0f7e67e9905.woff2')format("woff");}.ff1_c02449{font-family:ff1_c02449;line-height:1.311035;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02449{font-family:ff2_c02449;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02449;src:url('chunks/assets/font_ee2dfc3a7e7904fe5850c428.woff2')format("woff");}.ff3_c02449{font-family:ff3_c02449;line-height:1.002930;font-style:normal;font-weight:normal;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_2805f75bdce1d57193a929f4.woff2')format("woff");}.ff4_c02449{font-family:ff4_c02449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02449{vertical-align:-1.082088px;}
.v0_c02449{vertical-align:0.000000px;}
.ls1c_c02449{letter-spacing:0.000000px;}
.ls13_c02449{letter-spacing:0.023940px;}
.ls14_c02449{letter-spacing:0.028728px;}
.ls1_c02449{letter-spacing:0.032940px;}
.ls18_c02449{letter-spacing:0.033516px;}
.lsf_c02449{letter-spacing:0.038304px;}
.ls0_c02449{letter-spacing:0.039528px;}
.ls5_c02449{letter-spacing:0.057456px;}
.lsc_c02449{letter-spacing:0.062244px;}
.ls11_c02449{letter-spacing:0.067032px;}
.ls7_c02449{letter-spacing:0.071820px;}
.ls6_c02449{letter-spacing:0.076608px;}
.lse_c02449{letter-spacing:0.081396px;}
.ls9_c02449{letter-spacing:0.086184px;}
.lsa_c02449{letter-spacing:0.090972px;}
.ls2_c02449{letter-spacing:0.092232px;}
.ls15_c02449{letter-spacing:0.095760px;}
.lsd_c02449{letter-spacing:0.100548px;}
.ls17_c02449{letter-spacing:0.105336px;}
.ls8_c02449{letter-spacing:0.110124px;}
.ls3_c02449{letter-spacing:0.119700px;}
.ls16_c02449{letter-spacing:0.124488px;}
.ls19_c02449{letter-spacing:0.129276px;}
.lsb_c02449{letter-spacing:0.134064px;}
.ls12_c02449{letter-spacing:0.148428px;}
.ls1b_c02449{letter-spacing:0.158004px;}
.ls10_c02449{letter-spacing:0.167580px;}
.ls1a_c02449{letter-spacing:0.172368px;}
.ls4_c02449{letter-spacing:0.181944px;}
.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;}
}
.ws9_c02449{word-spacing:-0.272916px;}
.ws1e_c02449{word-spacing:-0.263340px;}
.ws14_c02449{word-spacing:-0.258552px;}
.ws1f_c02449{word-spacing:-0.248976px;}
.ws16_c02449{word-spacing:-0.239400px;}
.wsf_c02449{word-spacing:-0.225036px;}
.ws1d_c02449{word-spacing:-0.220248px;}
.ws1a_c02449{word-spacing:-0.215460px;}
.ws4_c02449{word-spacing:-0.210672px;}
.wsc_c02449{word-spacing:-0.201096px;}
.ws1b_c02449{word-spacing:-0.196308px;}
.ws11_c02449{word-spacing:-0.191520px;}
.ws19_c02449{word-spacing:-0.186732px;}
.wse_c02449{word-spacing:-0.181944px;}
.wsd_c02449{word-spacing:-0.177156px;}
.ws12_c02449{word-spacing:-0.172368px;}
.wsa_c02449{word-spacing:-0.167580px;}
.wsb_c02449{word-spacing:-0.162792px;}
.ws0_c02449{word-spacing:-0.158112px;}
.ws15_c02449{word-spacing:-0.158004px;}
.ws10_c02449{word-spacing:-0.153216px;}
.ws8_c02449{word-spacing:-0.148428px;}
.ws13_c02449{word-spacing:-0.129276px;}
.ws1c_c02449{word-spacing:-0.124488px;}
.ws18_c02449{word-spacing:-0.119700px;}
.ws1_c02449{word-spacing:0.000000px;}
.ws2_c02449{word-spacing:0.052704px;}
.ws3_c02449{word-spacing:0.059292px;}
.ws17_c02449{word-spacing:0.244188px;}
.ws6_c02449{word-spacing:130.769856px;}
.ws5_c02449{word-spacing:131.128956px;}
.ws7_c02449{word-spacing:185.846220px;}
._3_c02449{margin-left:-186.483024px;}
._2_c02449{margin-left:-23.442804px;}
._0_c02449{margin-left:-1.015056px;}
._e_c02449{width:1.299636px;}
._6_c02449{width:107.006112px;}
._8_c02449{width:108.088056px;}
._7_c02449{width:130.044168px;}
._5_c02449{width:131.126112px;}
._9_c02449{width:185.484168px;}
._12_c02449{width:186.617088px;}
._1f_c02449{width:195.972840px;}
._14_c02449{width:225.703044px;}
._d_c02449{width:257.814648px;}
._18_c02449{width:259.980336px;}
._11_c02449{width:289.137744px;}
._1a_c02449{width:292.795200px;}
._23_c02449{width:314.298684px;}
._24_c02449{width:317.966292px;}
._a_c02449{width:334.706652px;}
._16_c02449{width:344.453508px;}
._29_c02449{width:367.121412px;}
._28_c02449{width:393.105888px;}
._20_c02449{width:407.125152px;}
._19_c02449{width:430.522596px;}
._b_c02449{width:441.783972px;}
._22_c02449{width:494.533368px;}
._2b_c02449{width:504.436464px;}
._1c_c02449{width:514.721088px;}
._f_c02449{width:516.926844px;}
._1b_c02449{width:552.468168px;}
._4_c02449{width:650.111364px;}
._1e_c02449{width:651.557340px;}
._17_c02449{width:670.568976px;}
._25_c02449{width:685.890576px;}
._10_c02449{width:697.894092px;}
._27_c02449{width:701.122716px;}
._1_c02449{width:704.037096px;}
._13_c02449{width:706.574736px;}
._c_c02449{width:711.056304px;}
._21_c02449{width:737.126964px;}
._1d_c02449{width:777.654108px;}
._2a_c02449{width:848.980944px;}
._26_c02449{width:863.961084px;}
._15_c02449{width:1194.052104px;}
.fc0_c02449{color:rgb(0,0,0);}
.fs2_c02449{font-size:47.880000px;}
.fs1_c02449{font-size:65.880000px;}
.fs0_c02449{font-size:72.000000px;}
.y0_c02449{bottom:0.000000px;}
.y3_c02449{bottom:75.450162px;}
.y2_c02449{bottom:113.609505px;}
.y2a_c02449{bottom:138.720000px;}
.y29_c02449{bottom:155.370000px;}
.y28_c02449{bottom:171.930000px;}
.y27_c02449{bottom:188.580000px;}
.y26_c02449{bottom:205.230000px;}
.y25_c02449{bottom:221.790000px;}
.y24_c02449{bottom:238.440000px;}
.y23_c02449{bottom:255.090000px;}
.y22_c02449{bottom:271.650000px;}
.y21_c02449{bottom:288.300000px;}
.y20_c02449{bottom:304.950000px;}
.y1f_c02449{bottom:321.510000px;}
.y1e_c02449{bottom:338.160000px;}
.y1d_c02449{bottom:354.810000px;}
.y1c_c02449{bottom:371.370000px;}
.y1b_c02449{bottom:388.020000px;}
.y1a_c02449{bottom:404.580000px;}
.y19_c02449{bottom:421.230000px;}
.y18_c02449{bottom:437.880000px;}
.y17_c02449{bottom:454.440000px;}
.y16_c02449{bottom:471.090000px;}
.y15_c02449{bottom:487.740000px;}
.y14_c02449{bottom:504.300000px;}
.y13_c02449{bottom:520.950000px;}
.y12_c02449{bottom:537.600000px;}
.y11_c02449{bottom:554.160000px;}
.y10_c02449{bottom:570.810000px;}
.yf_c02449{bottom:587.460000px;}
.ye_c02449{bottom:604.020000px;}
.yd_c02449{bottom:620.670000px;}
.yc_c02449{bottom:637.320000px;}
.yb_c02449{bottom:653.880000px;}
.ya_c02449{bottom:670.530000px;}
.y9_c02449{bottom:687.180000px;}
.y8_c02449{bottom:703.470000px;}
.y7_c02449{bottom:703.740000px;}
.y6_c02449{bottom:720.390000px;}
.y5_c02449{bottom:737.040000px;}
.y4_c02449{bottom:753.600000px;}
.y1_c02449{bottom:824.430000px;}
.h4_c02449{height:43.909277px;}
.h6_c02449{height:47.171974px;}
.h5_c02449{height:47.174063px;}
.h8_c02449{height:47.174662px;}
.h7_c02449{height:48.254063px;}
.h3_c02449{height:54.331699px;}
.h2_c02449{height:72.562500px;}
.h1_c02449{height:892.500000px;}
.h0_c02449{height:892.830000px;}
.w0_c02449{width:1263.000000px;}
.x0_c02449{left:0.000000px;}
.x1_c02449{left:106.275900px;}
.x3_c02449{left:114.375750px;}
.x2_c02449{left:618.825480px;}
.x4_c02449{left:635.475750px;}
@media print{
.v1_c02449{vertical-align:-0.961856pt;}
.v0_c02449{vertical-align:0.000000pt;}
.ls1c_c02449{letter-spacing:0.000000pt;}
.ls13_c02449{letter-spacing:0.021280pt;}
.ls14_c02449{letter-spacing:0.025536pt;}
.ls1_c02449{letter-spacing:0.029280pt;}
.ls18_c02449{letter-spacing:0.029792pt;}
.lsf_c02449{letter-spacing:0.034048pt;}
.ls0_c02449{letter-spacing:0.035136pt;}
.ls5_c02449{letter-spacing:0.051072pt;}
.lsc_c02449{letter-spacing:0.055328pt;}
.ls11_c02449{letter-spacing:0.059584pt;}
.ls7_c02449{letter-spacing:0.063840pt;}
.ls6_c02449{letter-spacing:0.068096pt;}
.lse_c02449{letter-spacing:0.072352pt;}
.ls9_c02449{letter-spacing:0.076608pt;}
.lsa_c02449{letter-spacing:0.080864pt;}
.ls2_c02449{letter-spacing:0.081984pt;}
.ls15_c02449{letter-spacing:0.085120pt;}
.lsd_c02449{letter-spacing:0.089376pt;}
.ls17_c02449{letter-spacing:0.093632pt;}
.ls8_c02449{letter-spacing:0.097888pt;}
.ls3_c02449{letter-spacing:0.106400pt;}
.ls16_c02449{letter-spacing:0.110656pt;}
.ls19_c02449{letter-spacing:0.114912pt;}
.lsb_c02449{letter-spacing:0.119168pt;}
.ls12_c02449{letter-spacing:0.131936pt;}
.ls1b_c02449{letter-spacing:0.140448pt;}
.ls10_c02449{letter-spacing:0.148960pt;}
.ls1a_c02449{letter-spacing:0.153216pt;}
.ls4_c02449{letter-spacing:0.161728pt;}
.ws9_c02449{word-spacing:-0.242592pt;}
.ws1e_c02449{word-spacing:-0.234080pt;}
.ws14_c02449{word-spacing:-0.229824pt;}
.ws1f_c02449{word-spacing:-0.221312pt;}
.ws16_c02449{word-spacing:-0.212800pt;}
.wsf_c02449{word-spacing:-0.200032pt;}
.ws1d_c02449{word-spacing:-0.195776pt;}
.ws1a_c02449{word-spacing:-0.191520pt;}
.ws4_c02449{word-spacing:-0.187264pt;}
.wsc_c02449{word-spacing:-0.178752pt;}
.ws1b_c02449{word-spacing:-0.174496pt;}
.ws11_c02449{word-spacing:-0.170240pt;}
.ws19_c02449{word-spacing:-0.165984pt;}
.wse_c02449{word-spacing:-0.161728pt;}
.wsd_c02449{word-spacing:-0.157472pt;}
.ws12_c02449{word-spacing:-0.153216pt;}
.wsa_c02449{word-spacing:-0.148960pt;}
.wsb_c02449{word-spacing:-0.144704pt;}
.ws0_c02449{word-spacing:-0.140544pt;}
.ws15_c02449{word-spacing:-0.140448pt;}
.ws10_c02449{word-spacing:-0.136192pt;}
.ws8_c02449{word-spacing:-0.131936pt;}
.ws13_c02449{word-spacing:-0.114912pt;}
.ws1c_c02449{word-spacing:-0.110656pt;}
.ws18_c02449{word-spacing:-0.106400pt;}
.ws1_c02449{word-spacing:0.000000pt;}
.ws2_c02449{word-spacing:0.046848pt;}
.ws3_c02449{word-spacing:0.052704pt;}
.ws17_c02449{word-spacing:0.217056pt;}
.ws6_c02449{word-spacing:116.239872pt;}
.ws5_c02449{word-spacing:116.559072pt;}
.ws7_c02449{word-spacing:165.196640pt;}
._3_c02449{margin-left:-165.762688pt;}
._2_c02449{margin-left:-20.838048pt;}
._0_c02449{margin-left:-0.902272pt;}
._e_c02449{width:1.155232pt;}
._6_c02449{width:95.116544pt;}
._8_c02449{width:96.078272pt;}
._7_c02449{width:115.594816pt;}
._5_c02449{width:116.556544pt;}
._9_c02449{width:164.874816pt;}
._12_c02449{width:165.881856pt;}
._1f_c02449{width:174.198080pt;}
._14_c02449{width:200.624928pt;}
._d_c02449{width:229.168576pt;}
._18_c02449{width:231.093632pt;}
._11_c02449{width:257.011328pt;}
._1a_c02449{width:260.262400pt;}
._23_c02449{width:279.376608pt;}
._24_c02449{width:282.636704pt;}
._a_c02449{width:297.517024pt;}
._16_c02449{width:306.180896pt;}
._29_c02449{width:326.330144pt;}
._28_c02449{width:349.427456pt;}
._20_c02449{width:361.889024pt;}
._19_c02449{width:382.686752pt;}
._b_c02449{width:392.696864pt;}
._22_c02449{width:439.585216pt;}
._2b_c02449{width:448.387968pt;}
._1c_c02449{width:457.529856pt;}
._f_c02449{width:459.490528pt;}
._1b_c02449{width:491.082816pt;}
._4_c02449{width:577.876768pt;}
._1e_c02449{width:579.162080pt;}
._17_c02449{width:596.061312pt;}
._25_c02449{width:609.680512pt;}
._10_c02449{width:620.350304pt;}
._27_c02449{width:623.220192pt;}
._1_c02449{width:625.810752pt;}
._13_c02449{width:628.066432pt;}
._c_c02449{width:632.050048pt;}
._21_c02449{width:655.223968pt;}
._1d_c02449{width:691.248096pt;}
._2a_c02449{width:754.649728pt;}
._26_c02449{width:767.965408pt;}
._15_c02449{width:1061.379648pt;}
.fs2_c02449{font-size:42.560000pt;}
.fs1_c02449{font-size:58.560000pt;}
.fs0_c02449{font-size:64.000000pt;}
.y0_c02449{bottom:0.000000pt;}
.y3_c02449{bottom:67.066811pt;}
.y2_c02449{bottom:100.986227pt;}
.y2a_c02449{bottom:123.306667pt;}
.y29_c02449{bottom:138.106667pt;}
.y28_c02449{bottom:152.826667pt;}
.y27_c02449{bottom:167.626667pt;}
.y26_c02449{bottom:182.426667pt;}
.y25_c02449{bottom:197.146667pt;}
.y24_c02449{bottom:211.946667pt;}
.y23_c02449{bottom:226.746667pt;}
.y22_c02449{bottom:241.466667pt;}
.y21_c02449{bottom:256.266667pt;}
.y20_c02449{bottom:271.066667pt;}
.y1f_c02449{bottom:285.786667pt;}
.y1e_c02449{bottom:300.586667pt;}
.y1d_c02449{bottom:315.386667pt;}
.y1c_c02449{bottom:330.106667pt;}
.y1b_c02449{bottom:344.906667pt;}
.y1a_c02449{bottom:359.626667pt;}
.y19_c02449{bottom:374.426667pt;}
.y18_c02449{bottom:389.226667pt;}
.y17_c02449{bottom:403.946667pt;}
.y16_c02449{bottom:418.746667pt;}
.y15_c02449{bottom:433.546667pt;}
.y14_c02449{bottom:448.266667pt;}
.y13_c02449{bottom:463.066667pt;}
.y12_c02449{bottom:477.866667pt;}
.y11_c02449{bottom:492.586667pt;}
.y10_c02449{bottom:507.386667pt;}
.yf_c02449{bottom:522.186667pt;}
.ye_c02449{bottom:536.906667pt;}
.yd_c02449{bottom:551.706667pt;}
.yc_c02449{bottom:566.506667pt;}
.yb_c02449{bottom:581.226667pt;}
.ya_c02449{bottom:596.026667pt;}
.y9_c02449{bottom:610.826667pt;}
.y8_c02449{bottom:625.306667pt;}
.y7_c02449{bottom:625.546667pt;}
.y6_c02449{bottom:640.346667pt;}
.y5_c02449{bottom:655.146667pt;}
.y4_c02449{bottom:669.866667pt;}
.y1_c02449{bottom:732.826667pt;}
.h4_c02449{height:39.030469pt;}
.h6_c02449{height:41.930644pt;}
.h5_c02449{height:41.932500pt;}
.h8_c02449{height:41.933033pt;}
.h7_c02449{height:42.892500pt;}
.h3_c02449{height:48.294844pt;}
.h2_c02449{height:64.500000pt;}
.h1_c02449{height:793.333333pt;}
.h0_c02449{height:793.626667pt;}
.w0_c02449{width:1122.666667pt;}
.x0_c02449{left:0.000000pt;}
.x1_c02449{left:94.467467pt;}
.x3_c02449{left:101.667333pt;}
.x2_c02449{left:550.067093pt;}
.x4_c02449{left:564.867333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b96ff2e3bc20f0f7e67e9905.woff2')format("woff");}.ff1_c02450{font-family:ff1_c02450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02450;src:url('chunks/assets/font_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff2_c02450{font-family:ff2_c02450;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c02450;src:url('chunks/assets/font_637c6d7894b3be1583c27d1d.woff2')format("woff");}.ff3_c02450{font-family:ff3_c02450;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c02450;src:url('chunks/assets/font_0540eb0b34e7fcf24a6ebc9d.woff2')format("woff");}.ff4_c02450{font-family:ff4_c02450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02450{vertical-align:-1.080000px;}
.v0_c02450{vertical-align:0.000000px;}
.ls18_c02450{letter-spacing:0.000000px;}
.ls17_c02450{letter-spacing:0.023940px;}
.ls1_c02450{letter-spacing:0.032940px;}
.ls8_c02450{letter-spacing:0.033516px;}
.ls3_c02450{letter-spacing:0.038304px;}
.ls0_c02450{letter-spacing:0.039528px;}
.lsb_c02450{letter-spacing:0.043092px;}
.ls10_c02450{letter-spacing:0.047880px;}
.lsf_c02450{letter-spacing:0.052668px;}
.ls12_c02450{letter-spacing:0.057456px;}
.ls15_c02450{letter-spacing:0.062244px;}
.ls16_c02450{letter-spacing:0.071820px;}
.ls9_c02450{letter-spacing:0.086184px;}
.ls6_c02450{letter-spacing:0.090972px;}
.ls2_c02450{letter-spacing:0.092232px;}
.lsc_c02450{letter-spacing:0.095760px;}
.ls14_c02450{letter-spacing:0.100548px;}
.lsa_c02450{letter-spacing:0.105336px;}
.lsd_c02450{letter-spacing:0.110124px;}
.ls5_c02450{letter-spacing:0.119700px;}
.ls11_c02450{letter-spacing:0.124488px;}
.ls4_c02450{letter-spacing:0.134064px;}
.lse_c02450{letter-spacing:0.138852px;}
.ls13_c02450{letter-spacing:0.143640px;}
.ls19_c02450{letter-spacing:0.148428px;}
.ls7_c02450{letter-spacing:0.181944px;}
.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;}
}
.ws5_c02450{word-spacing:-0.272916px;}
.ws13_c02450{word-spacing:-0.239400px;}
.ws18_c02450{word-spacing:-0.234612px;}
.ws12_c02450{word-spacing:-0.229824px;}
.ws6_c02450{word-spacing:-0.225036px;}
.ws16_c02450{word-spacing:-0.215460px;}
.ws7_c02450{word-spacing:-0.210672px;}
.ws11_c02450{word-spacing:-0.201096px;}
.wse_c02450{word-spacing:-0.196308px;}
.ws19_c02450{word-spacing:-0.191520px;}
.ws10_c02450{word-spacing:-0.186732px;}
.ws8_c02450{word-spacing:-0.181944px;}
.wsd_c02450{word-spacing:-0.177156px;}
.ws1b_c02450{word-spacing:-0.162792px;}
.ws0_c02450{word-spacing:-0.158112px;}
.ws1a_c02450{word-spacing:-0.153216px;}
.ws17_c02450{word-spacing:-0.148428px;}
.ws14_c02450{word-spacing:-0.143640px;}
.ws15_c02450{word-spacing:-0.138852px;}
.wsf_c02450{word-spacing:-0.134064px;}
.ws4_c02450{word-spacing:-0.129276px;}
.wsc_c02450{word-spacing:-0.124488px;}
.ws1_c02450{word-spacing:0.000000px;}
.ws2_c02450{word-spacing:0.052704px;}
.ws3_c02450{word-spacing:0.059292px;}
.wsa_c02450{word-spacing:130.769856px;}
.ws9_c02450{word-spacing:131.128956px;}
.wsb_c02450{word-spacing:185.846220px;}
._9_c02450{margin-left:-185.801940px;}
._5_c02450{margin-left:-1.431612px;}
._0_c02450{width:1.139544px;}
._2d_c02450{width:58.404168px;}
._2b_c02450{width:82.882224px;}
._2c_c02450{width:107.353836px;}
._3_c02450{width:130.046112px;}
._2_c02450{width:131.126112px;}
._1d_c02450{width:132.258492px;}
._4_c02450{width:186.566112px;}
._16_c02450{width:233.043048px;}
._2e_c02450{width:245.600280px;}
._26_c02450{width:249.585588px;}
._27_c02450{width:261.065700px;}
._18_c02450{width:271.840212px;}
._19_c02450{width:288.864828px;}
._e_c02450{width:303.110640px;}
._a_c02450{width:334.773684px;}
._17_c02450{width:348.611004px;}
._6_c02450{width:349.774488px;}
._1b_c02450{width:359.229276px;}
._f_c02450{width:361.859400px;}
._12_c02450{width:375.035976px;}
._14_c02450{width:396.867744px;}
._b_c02450{width:402.145632px;}
._29_c02450{width:404.927460px;}
._13_c02450{width:409.991652px;}
._22_c02450{width:437.715684px;}
._c_c02450{width:458.902584px;}
._7_c02450{width:461.526408px;}
._1_c02450{width:476.718732px;}
._1c_c02450{width:499.417128px;}
._25_c02450{width:508.008312px;}
._11_c02450{width:514.405080px;}
._8_c02450{width:581.014224px;}
._23_c02450{width:631.103004px;}
._24_c02450{width:635.990040px;}
._1e_c02450{width:676.541124px;}
._20_c02450{width:693.442764px;}
._28_c02450{width:739.841760px;}
._1a_c02450{width:820.088640px;}
._1f_c02450{width:838.528740px;}
._d_c02450{width:842.363928px;}
._21_c02450{width:876.942864px;}
._15_c02450{width:1026.012456px;}
._10_c02450{width:1103.597208px;}
._2a_c02450{width:1277.851680px;}
.fc0_c02450{color:rgb(0,0,0);}
.fs3_c02450{font-size:11.880000px;}
.fs2_c02450{font-size:47.880000px;}
.fs1_c02450{font-size:65.880000px;}
.fs0_c02450{font-size:72.000000px;}
.y0_c02450{bottom:0.000000px;}
.y3_c02450{bottom:75.450162px;}
.y2_c02450{bottom:113.609505px;}
.y2a_c02450{bottom:130.170150px;}
.y29_c02450{bottom:138.720000px;}
.y28_c02450{bottom:155.370000px;}
.y27_c02450{bottom:171.930000px;}
.y26_c02450{bottom:188.580000px;}
.y25_c02450{bottom:205.230000px;}
.y24_c02450{bottom:221.790000px;}
.y23_c02450{bottom:238.440000px;}
.y22_c02450{bottom:255.090000px;}
.y21_c02450{bottom:271.650000px;}
.y20_c02450{bottom:288.300000px;}
.y1f_c02450{bottom:304.950000px;}
.y1e_c02450{bottom:321.510000px;}
.y1d_c02450{bottom:338.160000px;}
.y1c_c02450{bottom:354.810000px;}
.y1b_c02450{bottom:371.370000px;}
.y1a_c02450{bottom:388.020000px;}
.y19_c02450{bottom:404.580000px;}
.y18_c02450{bottom:421.230000px;}
.y17_c02450{bottom:437.880000px;}
.y16_c02450{bottom:454.440000px;}
.y15_c02450{bottom:471.090000px;}
.y14_c02450{bottom:487.740000px;}
.y13_c02450{bottom:504.300000px;}
.y12_c02450{bottom:520.950000px;}
.y11_c02450{bottom:537.600000px;}
.y10_c02450{bottom:554.160000px;}
.yf_c02450{bottom:570.810000px;}
.ye_c02450{bottom:587.460000px;}
.yd_c02450{bottom:604.020000px;}
.yc_c02450{bottom:620.670000px;}
.yb_c02450{bottom:637.320000px;}
.ya_c02450{bottom:653.880000px;}
.y9_c02450{bottom:670.530000px;}
.y8_c02450{bottom:687.180000px;}
.y7_c02450{bottom:703.740000px;}
.y6_c02450{bottom:720.390000px;}
.y5_c02450{bottom:737.040000px;}
.y4_c02450{bottom:753.600000px;}
.y1_c02450{bottom:824.430000px;}
.h7_c02450{height:7.918066px;}
.h4_c02450{height:43.909277px;}
.h5_c02450{height:47.174063px;}
.h6_c02450{height:47.174662px;}
.h3_c02450{height:54.331699px;}
.h2_c02450{height:72.562500px;}
.h1_c02450{height:892.500000px;}
.h0_c02450{height:892.830000px;}
.w0_c02450{width:1263.000000px;}
.x0_c02450{left:0.000000px;}
.x1_c02450{left:106.275900px;}
.x3_c02450{left:114.375750px;}
.x2_c02450{left:618.825480px;}
@media print{
.v1_c02450{vertical-align:-0.960000pt;}
.v0_c02450{vertical-align:0.000000pt;}
.ls18_c02450{letter-spacing:0.000000pt;}
.ls17_c02450{letter-spacing:0.021280pt;}
.ls1_c02450{letter-spacing:0.029280pt;}
.ls8_c02450{letter-spacing:0.029792pt;}
.ls3_c02450{letter-spacing:0.034048pt;}
.ls0_c02450{letter-spacing:0.035136pt;}
.lsb_c02450{letter-spacing:0.038304pt;}
.ls10_c02450{letter-spacing:0.042560pt;}
.lsf_c02450{letter-spacing:0.046816pt;}
.ls12_c02450{letter-spacing:0.051072pt;}
.ls15_c02450{letter-spacing:0.055328pt;}
.ls16_c02450{letter-spacing:0.063840pt;}
.ls9_c02450{letter-spacing:0.076608pt;}
.ls6_c02450{letter-spacing:0.080864pt;}
.ls2_c02450{letter-spacing:0.081984pt;}
.lsc_c02450{letter-spacing:0.085120pt;}
.ls14_c02450{letter-spacing:0.089376pt;}
.lsa_c02450{letter-spacing:0.093632pt;}
.lsd_c02450{letter-spacing:0.097888pt;}
.ls5_c02450{letter-spacing:0.106400pt;}
.ls11_c02450{letter-spacing:0.110656pt;}
.ls4_c02450{letter-spacing:0.119168pt;}
.lse_c02450{letter-spacing:0.123424pt;}
.ls13_c02450{letter-spacing:0.127680pt;}
.ls19_c02450{letter-spacing:0.131936pt;}
.ls7_c02450{letter-spacing:0.161728pt;}
.ws5_c02450{word-spacing:-0.242592pt;}
.ws13_c02450{word-spacing:-0.212800pt;}
.ws18_c02450{word-spacing:-0.208544pt;}
.ws12_c02450{word-spacing:-0.204288pt;}
.ws6_c02450{word-spacing:-0.200032pt;}
.ws16_c02450{word-spacing:-0.191520pt;}
.ws7_c02450{word-spacing:-0.187264pt;}
.ws11_c02450{word-spacing:-0.178752pt;}
.wse_c02450{word-spacing:-0.174496pt;}
.ws19_c02450{word-spacing:-0.170240pt;}
.ws10_c02450{word-spacing:-0.165984pt;}
.ws8_c02450{word-spacing:-0.161728pt;}
.wsd_c02450{word-spacing:-0.157472pt;}
.ws1b_c02450{word-spacing:-0.144704pt;}
.ws0_c02450{word-spacing:-0.140544pt;}
.ws1a_c02450{word-spacing:-0.136192pt;}
.ws17_c02450{word-spacing:-0.131936pt;}
.ws14_c02450{word-spacing:-0.127680pt;}
.ws15_c02450{word-spacing:-0.123424pt;}
.wsf_c02450{word-spacing:-0.119168pt;}
.ws4_c02450{word-spacing:-0.114912pt;}
.wsc_c02450{word-spacing:-0.110656pt;}
.ws1_c02450{word-spacing:0.000000pt;}
.ws2_c02450{word-spacing:0.046848pt;}
.ws3_c02450{word-spacing:0.052704pt;}
.wsa_c02450{word-spacing:116.239872pt;}
.ws9_c02450{word-spacing:116.559072pt;}
.wsb_c02450{word-spacing:165.196640pt;}
._9_c02450{margin-left:-165.157280pt;}
._5_c02450{margin-left:-1.272544pt;}
._0_c02450{width:1.012928pt;}
._2d_c02450{width:51.914816pt;}
._2b_c02450{width:73.673088pt;}
._2c_c02450{width:95.425632pt;}
._3_c02450{width:115.596544pt;}
._2_c02450{width:116.556544pt;}
._1d_c02450{width:117.563104pt;}
._4_c02450{width:165.836544pt;}
._16_c02450{width:207.149376pt;}
._2e_c02450{width:218.311360pt;}
._26_c02450{width:221.853856pt;}
._27_c02450{width:232.058400pt;}
._18_c02450{width:241.635744pt;}
._19_c02450{width:256.768736pt;}
._e_c02450{width:269.431680pt;}
._a_c02450{width:297.576608pt;}
._17_c02450{width:309.876448pt;}
._6_c02450{width:310.910656pt;}
._1b_c02450{width:319.314912pt;}
._f_c02450{width:321.652800pt;}
._12_c02450{width:333.365312pt;}
._14_c02450{width:352.771328pt;}
._b_c02450{width:357.462784pt;}
._29_c02450{width:359.935520pt;}
._13_c02450{width:364.437024pt;}
._22_c02450{width:389.080608pt;}
._c_c02450{width:407.913408pt;}
._7_c02450{width:410.245696pt;}
._1_c02450{width:423.749984pt;}
._1c_c02450{width:443.926336pt;}
._25_c02450{width:451.562944pt;}
._11_c02450{width:457.248960pt;}
._8_c02450{width:516.457088pt;}
._23_c02450{width:560.980448pt;}
._24_c02450{width:565.324480pt;}
._1e_c02450{width:601.369888pt;}
._20_c02450{width:616.393568pt;}
._28_c02450{width:657.637120pt;}
._1a_c02450{width:728.967680pt;}
._1f_c02450{width:745.358880pt;}
._d_c02450{width:748.767936pt;}
._21_c02450{width:779.504768pt;}
._15_c02450{width:912.011072pt;}
._10_c02450{width:980.975296pt;}
._2a_c02450{width:1135.868160pt;}
.fs3_c02450{font-size:10.560000pt;}
.fs2_c02450{font-size:42.560000pt;}
.fs1_c02450{font-size:58.560000pt;}
.fs0_c02450{font-size:64.000000pt;}
.y0_c02450{bottom:0.000000pt;}
.y3_c02450{bottom:67.066811pt;}
.y2_c02450{bottom:100.986227pt;}
.y2a_c02450{bottom:115.706800pt;}
.y29_c02450{bottom:123.306667pt;}
.y28_c02450{bottom:138.106667pt;}
.y27_c02450{bottom:152.826667pt;}
.y26_c02450{bottom:167.626667pt;}
.y25_c02450{bottom:182.426667pt;}
.y24_c02450{bottom:197.146667pt;}
.y23_c02450{bottom:211.946667pt;}
.y22_c02450{bottom:226.746667pt;}
.y21_c02450{bottom:241.466667pt;}
.y20_c02450{bottom:256.266667pt;}
.y1f_c02450{bottom:271.066667pt;}
.y1e_c02450{bottom:285.786667pt;}
.y1d_c02450{bottom:300.586667pt;}
.y1c_c02450{bottom:315.386667pt;}
.y1b_c02450{bottom:330.106667pt;}
.y1a_c02450{bottom:344.906667pt;}
.y19_c02450{bottom:359.626667pt;}
.y18_c02450{bottom:374.426667pt;}
.y17_c02450{bottom:389.226667pt;}
.y16_c02450{bottom:403.946667pt;}
.y15_c02450{bottom:418.746667pt;}
.y14_c02450{bottom:433.546667pt;}
.y13_c02450{bottom:448.266667pt;}
.y12_c02450{bottom:463.066667pt;}
.y11_c02450{bottom:477.866667pt;}
.y10_c02450{bottom:492.586667pt;}
.yf_c02450{bottom:507.386667pt;}
.ye_c02450{bottom:522.186667pt;}
.yd_c02450{bottom:536.906667pt;}
.yc_c02450{bottom:551.706667pt;}
.yb_c02450{bottom:566.506667pt;}
.ya_c02450{bottom:581.226667pt;}
.y9_c02450{bottom:596.026667pt;}
.y8_c02450{bottom:610.826667pt;}
.y7_c02450{bottom:625.546667pt;}
.y6_c02450{bottom:640.346667pt;}
.y5_c02450{bottom:655.146667pt;}
.y4_c02450{bottom:669.866667pt;}
.y1_c02450{bottom:732.826667pt;}
.h7_c02450{height:7.038281pt;}
.h4_c02450{height:39.030469pt;}
.h5_c02450{height:41.932500pt;}
.h6_c02450{height:41.933033pt;}
.h3_c02450{height:48.294844pt;}
.h2_c02450{height:64.500000pt;}
.h1_c02450{height:793.333333pt;}
.h0_c02450{height:793.626667pt;}
.w0_c02450{width:1122.666667pt;}
.x0_c02450{left:0.000000pt;}
.x1_c02450{left:94.467467pt;}
.x3_c02450{left:101.667333pt;}
.x2_c02450{left:550.067093pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b533eb94966a6a8c34e2e720.woff2')format("woff");}.ff1_c02451{font-family:ff1_c02451;line-height:1.311035;font-style:normal;font-weight:normal;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_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff2_c02451{font-family:ff2_c02451;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02451{font-family:ff3_c02451;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_c02451;src:url('chunks/assets/font_d6fbcf4a07b3a594fa172e52.woff2')format("woff");}.ff4_c02451{font-family:ff4_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;}
.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;}
.ls18_c02451{letter-spacing:-0.050400px;}
.ls17_c02451{letter-spacing:-0.043200px;}
.ls14_c02451{letter-spacing:-0.021600px;}
.ls16_c02451{letter-spacing:-0.014400px;}
.ls15_c02451{letter-spacing:-0.007200px;}
.ls13_c02451{letter-spacing:0.000000px;}
.ls11_c02451{letter-spacing:0.007200px;}
.lsa_c02451{letter-spacing:0.013176px;}
.ls3_c02451{letter-spacing:0.014400px;}
.lsc_c02451{letter-spacing:0.019764px;}
.ls10_c02451{letter-spacing:0.021600px;}
.lsf_c02451{letter-spacing:0.026352px;}
.ls6_c02451{letter-spacing:0.028800px;}
.ls4_c02451{letter-spacing:0.036000px;}
.lsb_c02451{letter-spacing:0.039528px;}
.ls9_c02451{letter-spacing:0.046116px;}
.ls7_c02451{letter-spacing:0.050400px;}
.lse_c02451{letter-spacing:0.052704px;}
.ls5_c02451{letter-spacing:0.057600px;}
.ls1_c02451{letter-spacing:0.059292px;}
.ls12_c02451{letter-spacing:0.064800px;}
.ls2_c02451{letter-spacing:0.079056px;}
.ls8_c02451{letter-spacing:0.079200px;}
.lsd_c02451{letter-spacing:0.098820px;}
.ls0_c02451{letter-spacing:194.400000px;}
.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;}
}
.ws22_c02451{word-spacing:-0.388800px;}
.wsb_c02451{word-spacing:-0.273600px;}
.ws24_c02451{word-spacing:-0.252000px;}
.ws28_c02451{word-spacing:-0.165600px;}
.ws4_c02451{word-spacing:-0.129600px;}
.ws27_c02451{word-spacing:-0.108000px;}
.wsc_c02451{word-spacing:-0.100800px;}
.ws2_c02451{word-spacing:-0.093600px;}
.wse_c02451{word-spacing:-0.086400px;}
.ws10_c02451{word-spacing:-0.079200px;}
.ws21_c02451{word-spacing:-0.072000px;}
.ws26_c02451{word-spacing:-0.050400px;}
.ws13_c02451{word-spacing:-0.036000px;}
.ws25_c02451{word-spacing:-0.028800px;}
.ws1e_c02451{word-spacing:-0.021600px;}
.ws1f_c02451{word-spacing:-0.014400px;}
.wsd_c02451{word-spacing:-0.007200px;}
.ws18_c02451{word-spacing:-0.006588px;}
.ws0_c02451{word-spacing:0.000000px;}
.ws5_c02451{word-spacing:0.007200px;}
.ws19_c02451{word-spacing:0.013176px;}
.ws6_c02451{word-spacing:0.014400px;}
.ws3_c02451{word-spacing:0.021600px;}
.ws1_c02451{word-spacing:0.032940px;}
.ws1a_c02451{word-spacing:0.039528px;}
.ws1d_c02451{word-spacing:0.046116px;}
.ws29_c02451{word-spacing:0.050400px;}
.ws16_c02451{word-spacing:0.052704px;}
.ws1b_c02451{word-spacing:0.065880px;}
.ws17_c02451{word-spacing:0.072468px;}
.ws1c_c02451{word-spacing:0.079056px;}
.wsf_c02451{word-spacing:0.309600px;}
.wsa_c02451{word-spacing:4.284000px;}
.ws7_c02451{word-spacing:5.328000px;}
.ws14_c02451{word-spacing:12.642372px;}
.ws15_c02451{word-spacing:12.675312px;}
.ws23_c02451{word-spacing:14.270400px;}
.ws20_c02451{word-spacing:21.232800px;}
.ws8_c02451{word-spacing:26.143200px;}
.ws9_c02451{word-spacing:26.287200px;}
.ws12_c02451{word-spacing:27.640800px;}
.ws11_c02451{word-spacing:27.734400px;}
._0_c02451{margin-left:-1.389600px;}
.fc0_c02451{color:rgb(0,0,0);}
.fs3_c02451{font-size:11.880000px;}
.fs2_c02451{font-size:47.880000px;}
.fs1_c02451{font-size:65.880000px;}
.fs0_c02451{font-size:72.000000px;}
.y0_c02451{bottom:0.000000px;}
.y3_c02451{bottom:75.720882px;}
.y2_c02451{bottom:113.880225px;}
.y35_c02451{bottom:133.230450px;}
.y34_c02451{bottom:140.610450px;}
.y33_c02451{bottom:162.300450px;}
.y32_c02451{bottom:183.000450px;}
.y31_c02451{bottom:203.700450px;}
.y30_c02451{bottom:224.400450px;}
.y2f_c02451{bottom:245.010450px;}
.y2e_c02451{bottom:265.710450px;}
.y2d_c02451{bottom:286.410450px;}
.y2c_c02451{bottom:307.110450px;}
.y2b_c02451{bottom:327.810450px;}
.y2a_c02451{bottom:348.510450px;}
.y29_c02451{bottom:369.030450px;}
.y28_c02451{bottom:390.720450px;}
.y27_c02451{bottom:411.420450px;}
.y26_c02451{bottom:431.940450px;}
.y25_c02451{bottom:453.360600px;}
.y24_c02451{bottom:475.590600px;}
.y23_c02451{bottom:491.430600px;}
.y22_c02451{bottom:512.130450px;}
.y21_c02451{bottom:533.370450px;}
.y20_c02451{bottom:552.360450px;}
.y1f_c02451{bottom:571.350450px;}
.y1e_c02451{bottom:590.250450px;}
.y1d_c02451{bottom:609.240450px;}
.y1c_c02451{bottom:628.230450px;}
.y1b_c02451{bottom:647.220450px;}
.y1a_c02451{bottom:666.211215px;}
.y19_c02451{bottom:685.201125px;}
.y18_c02451{bottom:704.100450px;}
.y17_c02451{bottom:723.270450px;}
.y16_c02451{bottom:744.960450px;}
.y15_c02451{bottom:765.660450px;}
.y14_c02451{bottom:786.180450px;}
.y13_c02451{bottom:807.600450px;}
.y12_c02451{bottom:828.030450px;}
.y11_c02451{bottom:843.600450px;}
.y10_c02451{bottom:865.200450px;}
.yf_c02451{bottom:885.900450px;}
.ye_c02451{bottom:906.600450px;}
.yd_c02451{bottom:927.120450px;}
.yc_c02451{bottom:948.720450px;}
.yb_c02451{bottom:969.420450px;}
.ya_c02451{bottom:990.120450px;}
.y9_c02451{bottom:1010.820450px;}
.y8_c02451{bottom:1031.340450px;}
.y7_c02451{bottom:1052.850450px;}
.y6_c02451{bottom:1077.330450px;}
.y5_c02451{bottom:1101.090450px;}
.y4_c02451{bottom:1139.880450px;}
.y1_c02451{bottom:1194.600450px;}
.h9_c02451{height:11.972812px;}
.h5_c02451{height:42.011895px;}
.h3_c02451{height:43.909277px;}
.h8_c02451{height:48.254063px;}
.h2_c02451{height:54.331699px;}
.h6_c02451{height:57.805840px;}
.h4_c02451{height:63.175781px;}
.h7_c02451{height:66.394687px;}
.h1_c02451{height:72.562500px;}
.h0_c02451{height:1263.000000px;}
.w1_c02451{width:892.500000px;}
.w0_c02451{width:892.830000px;}
.x0_c02451{left:0.000000px;}
.x3_c02451{left:127.619793px;}
.x1_c02451{left:134.730000px;}
.x6_c02451{left:148.950000px;}
.x4_c02451{left:331.740000px;}
.x5_c02451{left:367.020000px;}
.x2_c02451{left:442.349964px;}
@media print{
.v0_c02451{vertical-align:0.000000pt;}
.ls18_c02451{letter-spacing:-0.044800pt;}
.ls17_c02451{letter-spacing:-0.038400pt;}
.ls14_c02451{letter-spacing:-0.019200pt;}
.ls16_c02451{letter-spacing:-0.012800pt;}
.ls15_c02451{letter-spacing:-0.006400pt;}
.ls13_c02451{letter-spacing:0.000000pt;}
.ls11_c02451{letter-spacing:0.006400pt;}
.lsa_c02451{letter-spacing:0.011712pt;}
.ls3_c02451{letter-spacing:0.012800pt;}
.lsc_c02451{letter-spacing:0.017568pt;}
.ls10_c02451{letter-spacing:0.019200pt;}
.lsf_c02451{letter-spacing:0.023424pt;}
.ls6_c02451{letter-spacing:0.025600pt;}
.ls4_c02451{letter-spacing:0.032000pt;}
.lsb_c02451{letter-spacing:0.035136pt;}
.ls9_c02451{letter-spacing:0.040992pt;}
.ls7_c02451{letter-spacing:0.044800pt;}
.lse_c02451{letter-spacing:0.046848pt;}
.ls5_c02451{letter-spacing:0.051200pt;}
.ls1_c02451{letter-spacing:0.052704pt;}
.ls12_c02451{letter-spacing:0.057600pt;}
.ls2_c02451{letter-spacing:0.070272pt;}
.ls8_c02451{letter-spacing:0.070400pt;}
.lsd_c02451{letter-spacing:0.087840pt;}
.ls0_c02451{letter-spacing:172.800000pt;}
.ws22_c02451{word-spacing:-0.345600pt;}
.wsb_c02451{word-spacing:-0.243200pt;}
.ws24_c02451{word-spacing:-0.224000pt;}
.ws28_c02451{word-spacing:-0.147200pt;}
.ws4_c02451{word-spacing:-0.115200pt;}
.ws27_c02451{word-spacing:-0.096000pt;}
.wsc_c02451{word-spacing:-0.089600pt;}
.ws2_c02451{word-spacing:-0.083200pt;}
.wse_c02451{word-spacing:-0.076800pt;}
.ws10_c02451{word-spacing:-0.070400pt;}
.ws21_c02451{word-spacing:-0.064000pt;}
.ws26_c02451{word-spacing:-0.044800pt;}
.ws13_c02451{word-spacing:-0.032000pt;}
.ws25_c02451{word-spacing:-0.025600pt;}
.ws1e_c02451{word-spacing:-0.019200pt;}
.ws1f_c02451{word-spacing:-0.012800pt;}
.wsd_c02451{word-spacing:-0.006400pt;}
.ws18_c02451{word-spacing:-0.005856pt;}
.ws0_c02451{word-spacing:0.000000pt;}
.ws5_c02451{word-spacing:0.006400pt;}
.ws19_c02451{word-spacing:0.011712pt;}
.ws6_c02451{word-spacing:0.012800pt;}
.ws3_c02451{word-spacing:0.019200pt;}
.ws1_c02451{word-spacing:0.029280pt;}
.ws1a_c02451{word-spacing:0.035136pt;}
.ws1d_c02451{word-spacing:0.040992pt;}
.ws29_c02451{word-spacing:0.044800pt;}
.ws16_c02451{word-spacing:0.046848pt;}
.ws1b_c02451{word-spacing:0.058560pt;}
.ws17_c02451{word-spacing:0.064416pt;}
.ws1c_c02451{word-spacing:0.070272pt;}
.wsf_c02451{word-spacing:0.275200pt;}
.wsa_c02451{word-spacing:3.808000pt;}
.ws7_c02451{word-spacing:4.736000pt;}
.ws14_c02451{word-spacing:11.237664pt;}
.ws15_c02451{word-spacing:11.266944pt;}
.ws23_c02451{word-spacing:12.684800pt;}
.ws20_c02451{word-spacing:18.873600pt;}
.ws8_c02451{word-spacing:23.238400pt;}
.ws9_c02451{word-spacing:23.366400pt;}
.ws12_c02451{word-spacing:24.569600pt;}
.ws11_c02451{word-spacing:24.652800pt;}
._0_c02451{margin-left:-1.235200pt;}
.fs3_c02451{font-size:10.560000pt;}
.fs2_c02451{font-size:42.560000pt;}
.fs1_c02451{font-size:58.560000pt;}
.fs0_c02451{font-size:64.000000pt;}
.y0_c02451{bottom:0.000000pt;}
.y3_c02451{bottom:67.307451pt;}
.y2_c02451{bottom:101.226867pt;}
.y35_c02451{bottom:118.427067pt;}
.y34_c02451{bottom:124.987067pt;}
.y33_c02451{bottom:144.267067pt;}
.y32_c02451{bottom:162.667067pt;}
.y31_c02451{bottom:181.067067pt;}
.y30_c02451{bottom:199.467067pt;}
.y2f_c02451{bottom:217.787067pt;}
.y2e_c02451{bottom:236.187067pt;}
.y2d_c02451{bottom:254.587067pt;}
.y2c_c02451{bottom:272.987067pt;}
.y2b_c02451{bottom:291.387067pt;}
.y2a_c02451{bottom:309.787067pt;}
.y29_c02451{bottom:328.027067pt;}
.y28_c02451{bottom:347.307067pt;}
.y27_c02451{bottom:365.707067pt;}
.y26_c02451{bottom:383.947067pt;}
.y25_c02451{bottom:402.987200pt;}
.y24_c02451{bottom:422.747200pt;}
.y23_c02451{bottom:436.827200pt;}
.y22_c02451{bottom:455.227067pt;}
.y21_c02451{bottom:474.107067pt;}
.y20_c02451{bottom:490.987067pt;}
.y1f_c02451{bottom:507.867067pt;}
.y1e_c02451{bottom:524.667067pt;}
.y1d_c02451{bottom:541.547067pt;}
.y1c_c02451{bottom:558.427067pt;}
.y1b_c02451{bottom:575.307067pt;}
.y1a_c02451{bottom:592.187747pt;}
.y19_c02451{bottom:609.067667pt;}
.y18_c02451{bottom:625.867067pt;}
.y17_c02451{bottom:642.907067pt;}
.y16_c02451{bottom:662.187067pt;}
.y15_c02451{bottom:680.587067pt;}
.y14_c02451{bottom:698.827067pt;}
.y13_c02451{bottom:717.867067pt;}
.y12_c02451{bottom:736.027067pt;}
.y11_c02451{bottom:749.867067pt;}
.y10_c02451{bottom:769.067067pt;}
.yf_c02451{bottom:787.467067pt;}
.ye_c02451{bottom:805.867067pt;}
.yd_c02451{bottom:824.107067pt;}
.yc_c02451{bottom:843.307067pt;}
.yb_c02451{bottom:861.707067pt;}
.ya_c02451{bottom:880.107067pt;}
.y9_c02451{bottom:898.507067pt;}
.y8_c02451{bottom:916.747067pt;}
.y7_c02451{bottom:935.867067pt;}
.y6_c02451{bottom:957.627067pt;}
.y5_c02451{bottom:978.747067pt;}
.y4_c02451{bottom:1013.227067pt;}
.y1_c02451{bottom:1061.867067pt;}
.h9_c02451{height:10.642500pt;}
.h5_c02451{height:37.343906pt;}
.h3_c02451{height:39.030469pt;}
.h8_c02451{height:42.892500pt;}
.h2_c02451{height:48.294844pt;}
.h6_c02451{height:51.382969pt;}
.h4_c02451{height:56.156250pt;}
.h7_c02451{height:59.017500pt;}
.h1_c02451{height:64.500000pt;}
.h0_c02451{height:1122.666667pt;}
.w1_c02451{width:793.333333pt;}
.w0_c02451{width:793.626667pt;}
.x0_c02451{left:0.000000pt;}
.x3_c02451{left:113.439816pt;}
.x1_c02451{left:119.760000pt;}
.x6_c02451{left:132.400000pt;}
.x4_c02451{left:294.880000pt;}
.x5_c02451{left:326.240000pt;}
.x2_c02451{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e92617901883d8c90b5ffe49.woff2')format("woff");}.ff1_c02452{font-family:ff1_c02452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02452;src:url('chunks/assets/font_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02452{font-family:ff2_c02452;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02452{font-family:ff3_c02452;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_c02452;src:url('chunks/assets/font_689766a62fca107e8af796d3.woff2')format("woff");}.ff4_c02452{font-family:ff4_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;}
.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;}
.lsc_c02452{letter-spacing:-0.021600px;}
.lsb_c02452{letter-spacing:-0.014400px;}
.lsa_c02452{letter-spacing:-0.007200px;}
.ls9_c02452{letter-spacing:0.000000px;}
.ls3_c02452{letter-spacing:0.007200px;}
.ls4_c02452{letter-spacing:0.014400px;}
.ls5_c02452{letter-spacing:0.021600px;}
.ls8_c02452{letter-spacing:0.043200px;}
.ls7_c02452{letter-spacing:0.057600px;}
.ls1_c02452{letter-spacing:0.059292px;}
.ls6_c02452{letter-spacing:0.064800px;}
.ls2_c02452{letter-spacing:0.079056px;}
.ls0_c02452{letter-spacing:194.400000px;}
.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;}
}
.wsc_c02452{word-spacing:-0.381600px;}
.ws14_c02452{word-spacing:-0.374400px;}
.ws12_c02452{word-spacing:-0.252000px;}
.ws13_c02452{word-spacing:-0.223200px;}
.wsa_c02452{word-spacing:-0.115200px;}
.ws10_c02452{word-spacing:-0.108000px;}
.wse_c02452{word-spacing:-0.100800px;}
.wsf_c02452{word-spacing:-0.086400px;}
.ws8_c02452{word-spacing:-0.079200px;}
.ws5_c02452{word-spacing:-0.072000px;}
.ws15_c02452{word-spacing:-0.043200px;}
.ws7_c02452{word-spacing:-0.021600px;}
.ws9_c02452{word-spacing:-0.014400px;}
.ws6_c02452{word-spacing:-0.007200px;}
.ws0_c02452{word-spacing:0.000000px;}
.ws2_c02452{word-spacing:0.007200px;}
.ws3_c02452{word-spacing:0.014400px;}
.ws11_c02452{word-spacing:0.021600px;}
.wsd_c02452{word-spacing:0.028800px;}
.ws1_c02452{word-spacing:0.032940px;}
.wsb_c02452{word-spacing:14.270400px;}
.ws4_c02452{word-spacing:21.232800px;}
._0_c02452{margin-left:-1.144800px;}
.fc0_c02452{color:rgb(0,0,0);}
.fs1_c02452{font-size:65.880000px;}
.fs0_c02452{font-size:72.000000px;}
.y0_c02452{bottom:0.000000px;}
.y3_c02452{bottom:75.720882px;}
.y2_c02452{bottom:113.880225px;}
.y32_c02452{bottom:142.590450px;}
.y31_c02452{bottom:163.290450px;}
.y30_c02452{bottom:183.990450px;}
.y2f_c02452{bottom:204.690450px;}
.y2e_c02452{bottom:225.930450px;}
.y2d_c02452{bottom:247.530450px;}
.y2c_c02452{bottom:268.230450px;}
.y2b_c02452{bottom:288.930450px;}
.y2a_c02452{bottom:309.630450px;}
.y29_c02452{bottom:330.330450px;}
.y28_c02452{bottom:351.030450px;}
.y27_c02452{bottom:371.730450px;}
.y26_c02452{bottom:392.430450px;}
.y25_c02452{bottom:413.130450px;}
.y24_c02452{bottom:433.830450px;}
.y23_c02452{bottom:454.350450px;}
.y22_c02452{bottom:475.950450px;}
.y21_c02452{bottom:496.650450px;}
.y20_c02452{bottom:517.170450px;}
.y1f_c02452{bottom:538.680450px;}
.y1e_c02452{bottom:577.650450px;}
.y1d_c02452{bottom:597.630450px;}
.y1c_c02452{bottom:619.320450px;}
.y1b_c02452{bottom:640.020450px;}
.y1a_c02452{bottom:660.720450px;}
.y19_c02452{bottom:681.420450px;}
.y18_c02452{bottom:702.120450px;}
.y17_c02452{bottom:722.820450px;}
.y16_c02452{bottom:743.520450px;}
.y15_c02452{bottom:764.220450px;}
.y14_c02452{bottom:784.920450px;}
.y13_c02452{bottom:805.620450px;}
.y12_c02452{bottom:826.140450px;}
.y11_c02452{bottom:847.740450px;}
.y10_c02452{bottom:868.440450px;}
.yf_c02452{bottom:888.960450px;}
.ye_c02452{bottom:910.380450px;}
.yd_c02452{bottom:950.070450px;}
.yc_c02452{bottom:971.400450px;}
.yb_c02452{bottom:993.000450px;}
.ya_c02452{bottom:1013.700450px;}
.y9_c02452{bottom:1034.400450px;}
.y8_c02452{bottom:1054.920450px;}
.y7_c02452{bottom:1076.610450px;}
.y6_c02452{bottom:1097.310450px;}
.y5_c02452{bottom:1117.830450px;}
.y4_c02452{bottom:1139.250450px;}
.y1_c02452{bottom:1194.600450px;}
.h3_c02452{height:43.909277px;}
.h2_c02452{height:54.331699px;}
.h4_c02452{height:63.175781px;}
.h5_c02452{height:66.394687px;}
.h1_c02452{height:72.562500px;}
.h0_c02452{height:1263.000000px;}
.w1_c02452{width:892.500000px;}
.w0_c02452{width:892.830000px;}
.x0_c02452{left:0.000000px;}
.x3_c02452{left:127.619793px;}
.x1_c02452{left:134.730000px;}
.x4_c02452{left:148.950000px;}
.x2_c02452{left:442.349964px;}
@media print{
.v0_c02452{vertical-align:0.000000pt;}
.lsc_c02452{letter-spacing:-0.019200pt;}
.lsb_c02452{letter-spacing:-0.012800pt;}
.lsa_c02452{letter-spacing:-0.006400pt;}
.ls9_c02452{letter-spacing:0.000000pt;}
.ls3_c02452{letter-spacing:0.006400pt;}
.ls4_c02452{letter-spacing:0.012800pt;}
.ls5_c02452{letter-spacing:0.019200pt;}
.ls8_c02452{letter-spacing:0.038400pt;}
.ls7_c02452{letter-spacing:0.051200pt;}
.ls1_c02452{letter-spacing:0.052704pt;}
.ls6_c02452{letter-spacing:0.057600pt;}
.ls2_c02452{letter-spacing:0.070272pt;}
.ls0_c02452{letter-spacing:172.800000pt;}
.wsc_c02452{word-spacing:-0.339200pt;}
.ws14_c02452{word-spacing:-0.332800pt;}
.ws12_c02452{word-spacing:-0.224000pt;}
.ws13_c02452{word-spacing:-0.198400pt;}
.wsa_c02452{word-spacing:-0.102400pt;}
.ws10_c02452{word-spacing:-0.096000pt;}
.wse_c02452{word-spacing:-0.089600pt;}
.wsf_c02452{word-spacing:-0.076800pt;}
.ws8_c02452{word-spacing:-0.070400pt;}
.ws5_c02452{word-spacing:-0.064000pt;}
.ws15_c02452{word-spacing:-0.038400pt;}
.ws7_c02452{word-spacing:-0.019200pt;}
.ws9_c02452{word-spacing:-0.012800pt;}
.ws6_c02452{word-spacing:-0.006400pt;}
.ws0_c02452{word-spacing:0.000000pt;}
.ws2_c02452{word-spacing:0.006400pt;}
.ws3_c02452{word-spacing:0.012800pt;}
.ws11_c02452{word-spacing:0.019200pt;}
.wsd_c02452{word-spacing:0.025600pt;}
.ws1_c02452{word-spacing:0.029280pt;}
.wsb_c02452{word-spacing:12.684800pt;}
.ws4_c02452{word-spacing:18.873600pt;}
._0_c02452{margin-left:-1.017600pt;}
.fs1_c02452{font-size:58.560000pt;}
.fs0_c02452{font-size:64.000000pt;}
.y0_c02452{bottom:0.000000pt;}
.y3_c02452{bottom:67.307451pt;}
.y2_c02452{bottom:101.226867pt;}
.y32_c02452{bottom:126.747067pt;}
.y31_c02452{bottom:145.147067pt;}
.y30_c02452{bottom:163.547067pt;}
.y2f_c02452{bottom:181.947067pt;}
.y2e_c02452{bottom:200.827067pt;}
.y2d_c02452{bottom:220.027067pt;}
.y2c_c02452{bottom:238.427067pt;}
.y2b_c02452{bottom:256.827067pt;}
.y2a_c02452{bottom:275.227067pt;}
.y29_c02452{bottom:293.627067pt;}
.y28_c02452{bottom:312.027067pt;}
.y27_c02452{bottom:330.427067pt;}
.y26_c02452{bottom:348.827067pt;}
.y25_c02452{bottom:367.227067pt;}
.y24_c02452{bottom:385.627067pt;}
.y23_c02452{bottom:403.867067pt;}
.y22_c02452{bottom:423.067067pt;}
.y21_c02452{bottom:441.467067pt;}
.y20_c02452{bottom:459.707067pt;}
.y1f_c02452{bottom:478.827067pt;}
.y1e_c02452{bottom:513.467067pt;}
.y1d_c02452{bottom:531.227067pt;}
.y1c_c02452{bottom:550.507067pt;}
.y1b_c02452{bottom:568.907067pt;}
.y1a_c02452{bottom:587.307067pt;}
.y19_c02452{bottom:605.707067pt;}
.y18_c02452{bottom:624.107067pt;}
.y17_c02452{bottom:642.507067pt;}
.y16_c02452{bottom:660.907067pt;}
.y15_c02452{bottom:679.307067pt;}
.y14_c02452{bottom:697.707067pt;}
.y13_c02452{bottom:716.107067pt;}
.y12_c02452{bottom:734.347067pt;}
.y11_c02452{bottom:753.547067pt;}
.y10_c02452{bottom:771.947067pt;}
.yf_c02452{bottom:790.187067pt;}
.ye_c02452{bottom:809.227067pt;}
.yd_c02452{bottom:844.507067pt;}
.yc_c02452{bottom:863.467067pt;}
.yb_c02452{bottom:882.667067pt;}
.ya_c02452{bottom:901.067067pt;}
.y9_c02452{bottom:919.467067pt;}
.y8_c02452{bottom:937.707067pt;}
.y7_c02452{bottom:956.987067pt;}
.y6_c02452{bottom:975.387067pt;}
.y5_c02452{bottom:993.627067pt;}
.y4_c02452{bottom:1012.667067pt;}
.y1_c02452{bottom:1061.867067pt;}
.h3_c02452{height:39.030469pt;}
.h2_c02452{height:48.294844pt;}
.h4_c02452{height:56.156250pt;}
.h5_c02452{height:59.017500pt;}
.h1_c02452{height:64.500000pt;}
.h0_c02452{height:1122.666667pt;}
.w1_c02452{width:793.333333pt;}
.w0_c02452{width:793.626667pt;}
.x0_c02452{left:0.000000pt;}
.x3_c02452{left:113.439816pt;}
.x1_c02452{left:119.760000pt;}
.x4_c02452{left:132.400000pt;}
.x2_c02452{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34e971284147ad792c040889.woff2')format("woff");}.ff1_c02453{font-family:ff1_c02453;line-height:1.311035;font-style:normal;font-weight:normal;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_b6e6eeecf38d8e91f5d0b66d.woff2')format("woff");}.ff2_c02453{font-family:ff2_c02453;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02453{font-family:ff3_c02453;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_c02453;src:url('chunks/assets/font_3c0f84af884033420d9c1f06.woff2')format("woff");}.ff4_c02453{font-family:ff4_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;}
.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;}
.ls17_c02453{letter-spacing:-0.360000px;}
.ls15_c02453{letter-spacing:-0.129600px;}
.ls16_c02453{letter-spacing:-0.050400px;}
.ls14_c02453{letter-spacing:-0.028800px;}
.ls12_c02453{letter-spacing:-0.014400px;}
.ls13_c02453{letter-spacing:-0.007200px;}
.ls11_c02453{letter-spacing:0.000000px;}
.ls8_c02453{letter-spacing:0.007200px;}
.lsd_c02453{letter-spacing:0.013176px;}
.ls3_c02453{letter-spacing:0.014400px;}
.ls9_c02453{letter-spacing:0.021600px;}
.lsf_c02453{letter-spacing:0.026352px;}
.ls7_c02453{letter-spacing:0.028800px;}
.ls5_c02453{letter-spacing:0.036000px;}
.ls6_c02453{letter-spacing:0.043200px;}
.lse_c02453{letter-spacing:0.046116px;}
.ls4_c02453{letter-spacing:0.050400px;}
.ls10_c02453{letter-spacing:0.052704px;}
.ls1_c02453{letter-spacing:0.059292px;}
.lsb_c02453{letter-spacing:0.064800px;}
.lsc_c02453{letter-spacing:0.065880px;}
.ls2_c02453{letter-spacing:0.079056px;}
.lsa_c02453{letter-spacing:0.100800px;}
.ls0_c02453{letter-spacing:194.400000px;}
.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;}
}
.ws1_c02453{word-spacing:-18.100800px;}
.ws0_c02453{word-spacing:-18.021600px;}
.wsb_c02453{word-spacing:-0.223200px;}
.ws1e_c02453{word-spacing:-0.208800px;}
.ws8_c02453{word-spacing:-0.165600px;}
.ws1a_c02453{word-spacing:-0.136800px;}
.wsc_c02453{word-spacing:-0.122400px;}
.ws1f_c02453{word-spacing:-0.108000px;}
.ws15_c02453{word-spacing:-0.100800px;}
.ws10_c02453{word-spacing:-0.093600px;}
.wse_c02453{word-spacing:-0.079200px;}
.ws17_c02453{word-spacing:-0.072000px;}
.ws13_c02453{word-spacing:-0.057600px;}
.ws11_c02453{word-spacing:-0.036000px;}
.wsd_c02453{word-spacing:-0.028800px;}
.wsf_c02453{word-spacing:-0.021600px;}
.ws16_c02453{word-spacing:-0.014400px;}
.ws4_c02453{word-spacing:-0.007200px;}
.ws2_c02453{word-spacing:0.000000px;}
.ws12_c02453{word-spacing:0.007200px;}
.ws20_c02453{word-spacing:0.013176px;}
.ws5_c02453{word-spacing:0.014400px;}
.ws21_c02453{word-spacing:0.026352px;}
.ws14_c02453{word-spacing:0.028800px;}
.ws3_c02453{word-spacing:0.032940px;}
.ws25_c02453{word-spacing:0.039528px;}
.ws23_c02453{word-spacing:0.046116px;}
.ws19_c02453{word-spacing:0.050400px;}
.ws24_c02453{word-spacing:0.065880px;}
.ws22_c02453{word-spacing:0.079056px;}
.ws18_c02453{word-spacing:0.129600px;}
.ws1b_c02453{word-spacing:10.764000px;}
.ws1c_c02453{word-spacing:10.785600px;}
.ws1d_c02453{word-spacing:14.270400px;}
.ws9_c02453{word-spacing:19.044000px;}
.wsa_c02453{word-spacing:19.065600px;}
.ws6_c02453{word-spacing:19.360800px;}
.ws7_c02453{word-spacing:19.375200px;}
._0_c02453{margin-left:-1.029600px;}
.fc0_c02453{color:rgb(0,0,0);}
.fs2_c02453{font-size:47.880000px;}
.fs1_c02453{font-size:65.880000px;}
.fs0_c02453{font-size:72.000000px;}
.y0_c02453{bottom:0.000000px;}
.y3_c02453{bottom:75.720882px;}
.y2_c02453{bottom:113.880225px;}
.y37_c02453{bottom:144.570450px;}
.y36_c02453{bottom:165.811485px;}
.y35_c02453{bottom:184.801395px;}
.y34_c02453{bottom:203.791305px;}
.y33_c02453{bottom:222.781215px;}
.y32_c02453{bottom:241.771125px;}
.y31_c02453{bottom:260.670450px;}
.y30_c02453{bottom:280.020450px;}
.y2f_c02453{bottom:300.720450px;}
.y2e_c02453{bottom:321.240450px;}
.y2d_c02453{bottom:342.930450px;}
.y2c_c02453{bottom:363.630450px;}
.y2b_c02453{bottom:384.150450px;}
.y2a_c02453{bottom:405.570450px;}
.y29_c02453{bottom:425.999523px;}
.y28_c02453{bottom:439.769811px;}
.y27_c02453{bottom:453.540099px;}
.y26_c02453{bottom:467.400162px;}
.y25_c02453{bottom:481.170450px;}
.y24_c02453{bottom:496.740450px;}
.y23_c02453{bottom:517.440600px;}
.y22_c02453{bottom:539.130450px;}
.y21_c02453{bottom:559.830450px;}
.y20_c02453{bottom:580.530450px;}
.y1f_c02453{bottom:601.230450px;}
.y1e_c02453{bottom:620.670450px;}
.y1d_c02453{bottom:635.700450px;}
.y1c_c02453{bottom:656.400450px;}
.y1b_c02453{bottom:677.100450px;}
.y1a_c02453{bottom:697.800450px;}
.y19_c02453{bottom:718.500450px;}
.y18_c02453{bottom:739.200450px;}
.y17_c02453{bottom:759.900450px;}
.y16_c02453{bottom:780.600450px;}
.y15_c02453{bottom:801.120450px;}
.y14_c02453{bottom:822.720450px;}
.y13_c02453{bottom:843.240450px;}
.y12_c02453{bottom:864.390450px;}
.y11_c02453{bottom:884.100540px;}
.y10_c02453{bottom:903.090450px;}
.yf_c02453{bottom:921.000387px;}
.ye_c02453{bottom:934.860450px;}
.yd_c02453{bottom:950.700450px;}
.yc_c02453{bottom:972.300450px;}
.yb_c02453{bottom:993.000450px;}
.ya_c02453{bottom:1013.700450px;}
.y9_c02453{bottom:1034.400450px;}
.y8_c02453{bottom:1054.920450px;}
.y7_c02453{bottom:1076.610450px;}
.y6_c02453{bottom:1097.310450px;}
.y5_c02453{bottom:1117.830450px;}
.y4_c02453{bottom:1139.250450px;}
.y1_c02453{bottom:1194.600450px;}
.h7_c02453{height:42.011895px;}
.h3_c02453{height:43.909277px;}
.h5_c02453{height:48.254063px;}
.h2_c02453{height:54.331699px;}
.h8_c02453{height:57.805840px;}
.h9_c02453{height:63.171641px;}
.h4_c02453{height:63.175781px;}
.h6_c02453{height:66.394687px;}
.h1_c02453{height:72.562500px;}
.h0_c02453{height:1263.000000px;}
.w1_c02453{width:892.500000px;}
.w0_c02453{width:892.830000px;}
.x0_c02453{left:0.000000px;}
.x3_c02453{left:127.619793px;}
.x1_c02453{left:134.730000px;}
.x4_c02453{left:148.950000px;}
.x2_c02453{left:442.349964px;}
@media print{
.v0_c02453{vertical-align:0.000000pt;}
.ls17_c02453{letter-spacing:-0.320000pt;}
.ls15_c02453{letter-spacing:-0.115200pt;}
.ls16_c02453{letter-spacing:-0.044800pt;}
.ls14_c02453{letter-spacing:-0.025600pt;}
.ls12_c02453{letter-spacing:-0.012800pt;}
.ls13_c02453{letter-spacing:-0.006400pt;}
.ls11_c02453{letter-spacing:0.000000pt;}
.ls8_c02453{letter-spacing:0.006400pt;}
.lsd_c02453{letter-spacing:0.011712pt;}
.ls3_c02453{letter-spacing:0.012800pt;}
.ls9_c02453{letter-spacing:0.019200pt;}
.lsf_c02453{letter-spacing:0.023424pt;}
.ls7_c02453{letter-spacing:0.025600pt;}
.ls5_c02453{letter-spacing:0.032000pt;}
.ls6_c02453{letter-spacing:0.038400pt;}
.lse_c02453{letter-spacing:0.040992pt;}
.ls4_c02453{letter-spacing:0.044800pt;}
.ls10_c02453{letter-spacing:0.046848pt;}
.ls1_c02453{letter-spacing:0.052704pt;}
.lsb_c02453{letter-spacing:0.057600pt;}
.lsc_c02453{letter-spacing:0.058560pt;}
.ls2_c02453{letter-spacing:0.070272pt;}
.lsa_c02453{letter-spacing:0.089600pt;}
.ls0_c02453{letter-spacing:172.800000pt;}
.ws1_c02453{word-spacing:-16.089600pt;}
.ws0_c02453{word-spacing:-16.019200pt;}
.wsb_c02453{word-spacing:-0.198400pt;}
.ws1e_c02453{word-spacing:-0.185600pt;}
.ws8_c02453{word-spacing:-0.147200pt;}
.ws1a_c02453{word-spacing:-0.121600pt;}
.wsc_c02453{word-spacing:-0.108800pt;}
.ws1f_c02453{word-spacing:-0.096000pt;}
.ws15_c02453{word-spacing:-0.089600pt;}
.ws10_c02453{word-spacing:-0.083200pt;}
.wse_c02453{word-spacing:-0.070400pt;}
.ws17_c02453{word-spacing:-0.064000pt;}
.ws13_c02453{word-spacing:-0.051200pt;}
.ws11_c02453{word-spacing:-0.032000pt;}
.wsd_c02453{word-spacing:-0.025600pt;}
.wsf_c02453{word-spacing:-0.019200pt;}
.ws16_c02453{word-spacing:-0.012800pt;}
.ws4_c02453{word-spacing:-0.006400pt;}
.ws2_c02453{word-spacing:0.000000pt;}
.ws12_c02453{word-spacing:0.006400pt;}
.ws20_c02453{word-spacing:0.011712pt;}
.ws5_c02453{word-spacing:0.012800pt;}
.ws21_c02453{word-spacing:0.023424pt;}
.ws14_c02453{word-spacing:0.025600pt;}
.ws3_c02453{word-spacing:0.029280pt;}
.ws25_c02453{word-spacing:0.035136pt;}
.ws23_c02453{word-spacing:0.040992pt;}
.ws19_c02453{word-spacing:0.044800pt;}
.ws24_c02453{word-spacing:0.058560pt;}
.ws22_c02453{word-spacing:0.070272pt;}
.ws18_c02453{word-spacing:0.115200pt;}
.ws1b_c02453{word-spacing:9.568000pt;}
.ws1c_c02453{word-spacing:9.587200pt;}
.ws1d_c02453{word-spacing:12.684800pt;}
.ws9_c02453{word-spacing:16.928000pt;}
.wsa_c02453{word-spacing:16.947200pt;}
.ws6_c02453{word-spacing:17.209600pt;}
.ws7_c02453{word-spacing:17.222400pt;}
._0_c02453{margin-left:-0.915200pt;}
.fs2_c02453{font-size:42.560000pt;}
.fs1_c02453{font-size:58.560000pt;}
.fs0_c02453{font-size:64.000000pt;}
.y0_c02453{bottom:0.000000pt;}
.y3_c02453{bottom:67.307451pt;}
.y2_c02453{bottom:101.226867pt;}
.y37_c02453{bottom:128.507067pt;}
.y36_c02453{bottom:147.387987pt;}
.y35_c02453{bottom:164.267907pt;}
.y34_c02453{bottom:181.147827pt;}
.y33_c02453{bottom:198.027747pt;}
.y32_c02453{bottom:214.907667pt;}
.y31_c02453{bottom:231.707067pt;}
.y30_c02453{bottom:248.907067pt;}
.y2f_c02453{bottom:267.307067pt;}
.y2e_c02453{bottom:285.547067pt;}
.y2d_c02453{bottom:304.827067pt;}
.y2c_c02453{bottom:323.227067pt;}
.y2b_c02453{bottom:341.467067pt;}
.y2a_c02453{bottom:360.507067pt;}
.y29_c02453{bottom:378.666243pt;}
.y28_c02453{bottom:390.906499pt;}
.y27_c02453{bottom:403.146755pt;}
.y26_c02453{bottom:415.466811pt;}
.y25_c02453{bottom:427.707067pt;}
.y24_c02453{bottom:441.547067pt;}
.y23_c02453{bottom:459.947200pt;}
.y22_c02453{bottom:479.227067pt;}
.y21_c02453{bottom:497.627067pt;}
.y20_c02453{bottom:516.027067pt;}
.y1f_c02453{bottom:534.427067pt;}
.y1e_c02453{bottom:551.707067pt;}
.y1d_c02453{bottom:565.067067pt;}
.y1c_c02453{bottom:583.467067pt;}
.y1b_c02453{bottom:601.867067pt;}
.y1a_c02453{bottom:620.267067pt;}
.y19_c02453{bottom:638.667067pt;}
.y18_c02453{bottom:657.067067pt;}
.y17_c02453{bottom:675.467067pt;}
.y16_c02453{bottom:693.867067pt;}
.y15_c02453{bottom:712.107067pt;}
.y14_c02453{bottom:731.307067pt;}
.y13_c02453{bottom:749.547067pt;}
.y12_c02453{bottom:768.347067pt;}
.y11_c02453{bottom:785.867147pt;}
.y10_c02453{bottom:802.747067pt;}
.yf_c02453{bottom:818.667011pt;}
.ye_c02453{bottom:830.987067pt;}
.yd_c02453{bottom:845.067067pt;}
.yc_c02453{bottom:864.267067pt;}
.yb_c02453{bottom:882.667067pt;}
.ya_c02453{bottom:901.067067pt;}
.y9_c02453{bottom:919.467067pt;}
.y8_c02453{bottom:937.707067pt;}
.y7_c02453{bottom:956.987067pt;}
.y6_c02453{bottom:975.387067pt;}
.y5_c02453{bottom:993.627067pt;}
.y4_c02453{bottom:1012.667067pt;}
.y1_c02453{bottom:1061.867067pt;}
.h7_c02453{height:37.343906pt;}
.h3_c02453{height:39.030469pt;}
.h5_c02453{height:42.892500pt;}
.h2_c02453{height:48.294844pt;}
.h8_c02453{height:51.382969pt;}
.h9_c02453{height:56.152570pt;}
.h4_c02453{height:56.156250pt;}
.h6_c02453{height:59.017500pt;}
.h1_c02453{height:64.500000pt;}
.h0_c02453{height:1122.666667pt;}
.w1_c02453{width:793.333333pt;}
.w0_c02453{width:793.626667pt;}
.x0_c02453{left:0.000000pt;}
.x3_c02453{left:113.439816pt;}
.x1_c02453{left:119.760000pt;}
.x4_c02453{left:132.400000pt;}
.x2_c02453{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af19b303475f26a84a4ce6d8.woff2')format("woff");}.ff1_c02454{font-family:ff1_c02454;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02454;src:url('chunks/assets/font_4f581026b92c246964411cb4.woff2')format("woff");}.ff2_c02454{font-family:ff2_c02454;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02454{font-family:ff3_c02454;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_c02454;src:url('chunks/assets/font_280f84a6daa7c502a08a5e81.woff2')format("woff");}.ff4_c02454{font-family:ff4_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:ff5_c02454;src:url('chunks/assets/font_4e8ab239fecc9d6a39961d85.woff2')format("woff");}.ff5_c02454{font-family:ff5_c02454;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_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;}
.lsf_c02454{letter-spacing:-0.021600px;}
.lse_c02454{letter-spacing:-0.014400px;}
.ls10_c02454{letter-spacing:-0.007200px;}
.lsd_c02454{letter-spacing:0.000000px;}
.lsb_c02454{letter-spacing:0.007200px;}
.ls7_c02454{letter-spacing:0.014400px;}
.ls4_c02454{letter-spacing:0.021600px;}
.ls6_c02454{letter-spacing:0.028800px;}
.ls9_c02454{letter-spacing:0.036000px;}
.ls8_c02454{letter-spacing:0.043200px;}
.lsc_c02454{letter-spacing:0.050400px;}
.lsa_c02454{letter-spacing:0.057600px;}
.ls1_c02454{letter-spacing:0.059292px;}
.ls5_c02454{letter-spacing:0.064800px;}
.ls3_c02454{letter-spacing:0.072000px;}
.ls2_c02454{letter-spacing:0.079056px;}
.ls0_c02454{letter-spacing:194.400000px;}
.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;}
}
.ws7_c02454{word-spacing:-0.208800px;}
.ws4_c02454{word-spacing:-0.136800px;}
.ws8_c02454{word-spacing:-0.129600px;}
.ws9_c02454{word-spacing:-0.115200px;}
.wsc_c02454{word-spacing:-0.093600px;}
.wsd_c02454{word-spacing:-0.079200px;}
.ws17_c02454{word-spacing:-0.064800px;}
.wse_c02454{word-spacing:-0.036000px;}
.wsb_c02454{word-spacing:-0.028800px;}
.wsf_c02454{word-spacing:-0.021600px;}
.wsa_c02454{word-spacing:-0.014400px;}
.ws5_c02454{word-spacing:-0.007200px;}
.ws0_c02454{word-spacing:0.000000px;}
.ws15_c02454{word-spacing:0.007200px;}
.ws2_c02454{word-spacing:0.014400px;}
.ws18_c02454{word-spacing:0.021600px;}
.ws1_c02454{word-spacing:0.032940px;}
.ws16_c02454{word-spacing:0.064800px;}
.ws19_c02454{word-spacing:0.115200px;}
.ws3_c02454{word-spacing:2.808000px;}
.ws6_c02454{word-spacing:14.270400px;}
.ws13_c02454{word-spacing:19.058400px;}
.ws12_c02454{word-spacing:19.116000px;}
.ws14_c02454{word-spacing:21.916800px;}
.ws10_c02454{word-spacing:59.968800px;}
.ws11_c02454{word-spacing:60.069600px;}
._1_c02454{margin-left:-22.924800px;}
._0_c02454{margin-left:-1.209600px;}
.fc0_c02454{color:rgb(0,0,0);}
.fs3_c02454{font-size:11.880000px;}
.fs2_c02454{font-size:47.880000px;}
.fs1_c02454{font-size:65.880000px;}
.fs0_c02454{font-size:72.000000px;}
.y0_c02454{bottom:0.000000px;}
.y3_c02454{bottom:75.720882px;}
.y2_c02454{bottom:113.880225px;}
.y57_c02454{bottom:132.332124px;}
.y56_c02454{bottom:135.752079px;}
.y55_c02454{bottom:139.172034px;}
.y54_c02454{bottom:142.681980px;}
.y53_c02454{bottom:146.101935px;}
.y52_c02454{bottom:149.521890px;}
.y51_c02454{bottom:153.031836px;}
.y50_c02454{bottom:156.451791px;}
.y4f_c02454{bottom:159.871746px;}
.y4e_c02454{bottom:163.381692px;}
.y4d_c02454{bottom:166.801647px;}
.y4c_c02454{bottom:170.221602px;}
.y4b_c02454{bottom:173.731548px;}
.y4a_c02454{bottom:177.151503px;}
.y49_c02454{bottom:180.571458px;}
.y48_c02454{bottom:184.081404px;}
.y47_c02454{bottom:187.501359px;}
.y46_c02454{bottom:190.921314px;}
.y45_c02454{bottom:194.431260px;}
.y44_c02454{bottom:197.851215px;}
.y43_c02454{bottom:201.271170px;}
.y42_c02454{bottom:204.781116px;}
.y41_c02454{bottom:208.201071px;}
.y40_c02454{bottom:211.621026px;}
.y3f_c02454{bottom:215.130972px;}
.y3e_c02454{bottom:218.550927px;}
.y3d_c02454{bottom:221.970882px;}
.y3c_c02454{bottom:225.480828px;}
.y3b_c02454{bottom:228.900783px;}
.y3a_c02454{bottom:232.320738px;}
.y39_c02454{bottom:235.830684px;}
.y38_c02454{bottom:239.250639px;}
.y37_c02454{bottom:242.670594px;}
.y36_c02454{bottom:246.180540px;}
.y35_c02454{bottom:249.600495px;}
.y34_c02454{bottom:253.020450px;}
.y33_c02454{bottom:260.490450px;}
.y32_c02454{bottom:282.090450px;}
.y31_c02454{bottom:302.790450px;}
.y30_c02454{bottom:323.490450px;}
.y2f_c02454{bottom:344.190450px;}
.y2e_c02454{bottom:364.890450px;}
.y2d_c02454{bottom:385.590450px;}
.y2c_c02454{bottom:406.290450px;}
.y2b_c02454{bottom:426.990450px;}
.y2a_c02454{bottom:447.690450px;}
.y29_c02454{bottom:468.390450px;}
.y28_c02454{bottom:489.090450px;}
.y27_c02454{bottom:509.790450px;}
.y26_c02454{bottom:530.490450px;}
.y25_c02454{bottom:551.010450px;}
.y24_c02454{bottom:572.610450px;}
.y23_c02454{bottom:593.310450px;}
.y22_c02454{bottom:614.010450px;}
.y21_c02454{bottom:634.530450px;}
.y20_c02454{bottom:655.950450px;}
.y1f_c02454{bottom:676.109460px;}
.y1e_c02454{bottom:689.879748px;}
.y1d_c02454{bottom:703.739811px;}
.y1c_c02454{bottom:717.510099px;}
.y1b_c02454{bottom:731.280387px;}
.y1a_c02454{bottom:745.140450px;}
.y19_c02454{bottom:760.260450px;}
.y18_c02454{bottom:781.680450px;}
.y17_c02454{bottom:803.280450px;}
.y16_c02454{bottom:823.980450px;}
.y15_c02454{bottom:844.680450px;}
.y14_c02454{bottom:865.380450px;}
.y13_c02454{bottom:886.080450px;}
.y12_c02454{bottom:906.780450px;}
.y11_c02454{bottom:927.480450px;}
.y10_c02454{bottom:948.180450px;}
.yf_c02454{bottom:968.880450px;}
.ye_c02454{bottom:989.580450px;}
.yd_c02454{bottom:1010.280450px;}
.yc_c02454{bottom:1030.800450px;}
.yb_c02454{bottom:1052.400450px;}
.ya_c02454{bottom:1073.100450px;}
.y9_c02454{bottom:1093.620450px;}
.y8_c02454{bottom:1115.130450px;}
.y7_c02454{bottom:1133.310252px;}
.y6_c02454{bottom:1136.820495px;}
.y5_c02454{bottom:1140.240450px;}
.y4_c02454{bottom:1145.820450px;}
.y1_c02454{bottom:1194.600450px;}
.h5_c02454{height:10.424004px;}
.h4_c02454{height:42.011895px;}
.h3_c02454{height:43.909277px;}
.h7_c02454{height:48.254063px;}
.h2_c02454{height:54.331699px;}
.h6_c02454{height:63.175781px;}
.h8_c02454{height:70.628906px;}
.h1_c02454{height:72.562500px;}
.h0_c02454{height:1263.000000px;}
.w1_c02454{width:892.500000px;}
.w0_c02454{width:892.830000px;}
.x0_c02454{left:0.000000px;}
.x3_c02454{left:127.619793px;}
.x1_c02454{left:134.730000px;}
.x4_c02454{left:148.950000px;}
.x2_c02454{left:442.349964px;}
@media print{
.v0_c02454{vertical-align:0.000000pt;}
.lsf_c02454{letter-spacing:-0.019200pt;}
.lse_c02454{letter-spacing:-0.012800pt;}
.ls10_c02454{letter-spacing:-0.006400pt;}
.lsd_c02454{letter-spacing:0.000000pt;}
.lsb_c02454{letter-spacing:0.006400pt;}
.ls7_c02454{letter-spacing:0.012800pt;}
.ls4_c02454{letter-spacing:0.019200pt;}
.ls6_c02454{letter-spacing:0.025600pt;}
.ls9_c02454{letter-spacing:0.032000pt;}
.ls8_c02454{letter-spacing:0.038400pt;}
.lsc_c02454{letter-spacing:0.044800pt;}
.lsa_c02454{letter-spacing:0.051200pt;}
.ls1_c02454{letter-spacing:0.052704pt;}
.ls5_c02454{letter-spacing:0.057600pt;}
.ls3_c02454{letter-spacing:0.064000pt;}
.ls2_c02454{letter-spacing:0.070272pt;}
.ls0_c02454{letter-spacing:172.800000pt;}
.ws7_c02454{word-spacing:-0.185600pt;}
.ws4_c02454{word-spacing:-0.121600pt;}
.ws8_c02454{word-spacing:-0.115200pt;}
.ws9_c02454{word-spacing:-0.102400pt;}
.wsc_c02454{word-spacing:-0.083200pt;}
.wsd_c02454{word-spacing:-0.070400pt;}
.ws17_c02454{word-spacing:-0.057600pt;}
.wse_c02454{word-spacing:-0.032000pt;}
.wsb_c02454{word-spacing:-0.025600pt;}
.wsf_c02454{word-spacing:-0.019200pt;}
.wsa_c02454{word-spacing:-0.012800pt;}
.ws5_c02454{word-spacing:-0.006400pt;}
.ws0_c02454{word-spacing:0.000000pt;}
.ws15_c02454{word-spacing:0.006400pt;}
.ws2_c02454{word-spacing:0.012800pt;}
.ws18_c02454{word-spacing:0.019200pt;}
.ws1_c02454{word-spacing:0.029280pt;}
.ws16_c02454{word-spacing:0.057600pt;}
.ws19_c02454{word-spacing:0.102400pt;}
.ws3_c02454{word-spacing:2.496000pt;}
.ws6_c02454{word-spacing:12.684800pt;}
.ws13_c02454{word-spacing:16.940800pt;}
.ws12_c02454{word-spacing:16.992000pt;}
.ws14_c02454{word-spacing:19.481600pt;}
.ws10_c02454{word-spacing:53.305600pt;}
.ws11_c02454{word-spacing:53.395200pt;}
._1_c02454{margin-left:-20.377600pt;}
._0_c02454{margin-left:-1.075200pt;}
.fs3_c02454{font-size:10.560000pt;}
.fs2_c02454{font-size:42.560000pt;}
.fs1_c02454{font-size:58.560000pt;}
.fs0_c02454{font-size:64.000000pt;}
.y0_c02454{bottom:0.000000pt;}
.y3_c02454{bottom:67.307451pt;}
.y2_c02454{bottom:101.226867pt;}
.y57_c02454{bottom:117.628555pt;}
.y56_c02454{bottom:120.668515pt;}
.y55_c02454{bottom:123.708475pt;}
.y54_c02454{bottom:126.828427pt;}
.y53_c02454{bottom:129.868387pt;}
.y52_c02454{bottom:132.908347pt;}
.y51_c02454{bottom:136.028299pt;}
.y50_c02454{bottom:139.068259pt;}
.y4f_c02454{bottom:142.108219pt;}
.y4e_c02454{bottom:145.228171pt;}
.y4d_c02454{bottom:148.268131pt;}
.y4c_c02454{bottom:151.308091pt;}
.y4b_c02454{bottom:154.428043pt;}
.y4a_c02454{bottom:157.468003pt;}
.y49_c02454{bottom:160.507963pt;}
.y48_c02454{bottom:163.627915pt;}
.y47_c02454{bottom:166.667875pt;}
.y46_c02454{bottom:169.707835pt;}
.y45_c02454{bottom:172.827787pt;}
.y44_c02454{bottom:175.867747pt;}
.y43_c02454{bottom:178.907707pt;}
.y42_c02454{bottom:182.027659pt;}
.y41_c02454{bottom:185.067619pt;}
.y40_c02454{bottom:188.107579pt;}
.y3f_c02454{bottom:191.227531pt;}
.y3e_c02454{bottom:194.267491pt;}
.y3d_c02454{bottom:197.307451pt;}
.y3c_c02454{bottom:200.427403pt;}
.y3b_c02454{bottom:203.467363pt;}
.y3a_c02454{bottom:206.507323pt;}
.y39_c02454{bottom:209.627275pt;}
.y38_c02454{bottom:212.667235pt;}
.y37_c02454{bottom:215.707195pt;}
.y36_c02454{bottom:218.827147pt;}
.y35_c02454{bottom:221.867107pt;}
.y34_c02454{bottom:224.907067pt;}
.y33_c02454{bottom:231.547067pt;}
.y32_c02454{bottom:250.747067pt;}
.y31_c02454{bottom:269.147067pt;}
.y30_c02454{bottom:287.547067pt;}
.y2f_c02454{bottom:305.947067pt;}
.y2e_c02454{bottom:324.347067pt;}
.y2d_c02454{bottom:342.747067pt;}
.y2c_c02454{bottom:361.147067pt;}
.y2b_c02454{bottom:379.547067pt;}
.y2a_c02454{bottom:397.947067pt;}
.y29_c02454{bottom:416.347067pt;}
.y28_c02454{bottom:434.747067pt;}
.y27_c02454{bottom:453.147067pt;}
.y26_c02454{bottom:471.547067pt;}
.y25_c02454{bottom:489.787067pt;}
.y24_c02454{bottom:508.987067pt;}
.y23_c02454{bottom:527.387067pt;}
.y22_c02454{bottom:545.787067pt;}
.y21_c02454{bottom:564.027067pt;}
.y20_c02454{bottom:583.067067pt;}
.y1f_c02454{bottom:600.986187pt;}
.y1e_c02454{bottom:613.226443pt;}
.y1d_c02454{bottom:625.546499pt;}
.y1c_c02454{bottom:637.786755pt;}
.y1b_c02454{bottom:650.027011pt;}
.y1a_c02454{bottom:662.347067pt;}
.y19_c02454{bottom:675.787067pt;}
.y18_c02454{bottom:694.827067pt;}
.y17_c02454{bottom:714.027067pt;}
.y16_c02454{bottom:732.427067pt;}
.y15_c02454{bottom:750.827067pt;}
.y14_c02454{bottom:769.227067pt;}
.y13_c02454{bottom:787.627067pt;}
.y12_c02454{bottom:806.027067pt;}
.y11_c02454{bottom:824.427067pt;}
.y10_c02454{bottom:842.827067pt;}
.yf_c02454{bottom:861.227067pt;}
.ye_c02454{bottom:879.627067pt;}
.yd_c02454{bottom:898.027067pt;}
.yc_c02454{bottom:916.267067pt;}
.yb_c02454{bottom:935.467067pt;}
.ya_c02454{bottom:953.867067pt;}
.y9_c02454{bottom:972.107067pt;}
.y8_c02454{bottom:991.227067pt;}
.y7_c02454{bottom:1007.386891pt;}
.y6_c02454{bottom:1010.507107pt;}
.y5_c02454{bottom:1013.547067pt;}
.y4_c02454{bottom:1018.507067pt;}
.y1_c02454{bottom:1061.867067pt;}
.h5_c02454{height:9.265781pt;}
.h4_c02454{height:37.343906pt;}
.h3_c02454{height:39.030469pt;}
.h7_c02454{height:42.892500pt;}
.h2_c02454{height:48.294844pt;}
.h6_c02454{height:56.156250pt;}
.h8_c02454{height:62.781250pt;}
.h1_c02454{height:64.500000pt;}
.h0_c02454{height:1122.666667pt;}
.w1_c02454{width:793.333333pt;}
.w0_c02454{width:793.626667pt;}
.x0_c02454{left:0.000000pt;}
.x3_c02454{left:113.439816pt;}
.x1_c02454{left:119.760000pt;}
.x4_c02454{left:132.400000pt;}
.x2_c02454{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a87dcfd44bdba64c7c62a187.woff2')format("woff");}.ff1_c02455{font-family:ff1_c02455;line-height:1.311035;font-style:normal;font-weight:normal;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_a20bd5acb8af7509624904cd.woff2')format("woff");}.ff2_c02455{font-family:ff2_c02455;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02455{font-family:ff3_c02455;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_c02455;src:url('chunks/assets/font_de36944e8872884c1bf2aff7.woff2')format("woff");}.ff4_c02455{font-family:ff4_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;}
.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;}
.lsd_c02455{letter-spacing:-0.072000px;}
.lsc_c02455{letter-spacing:-0.050400px;}
.lsb_c02455{letter-spacing:-0.014400px;}
.lsa_c02455{letter-spacing:0.000000px;}
.ls6_c02455{letter-spacing:0.007200px;}
.ls9_c02455{letter-spacing:0.014400px;}
.ls5_c02455{letter-spacing:0.021600px;}
.ls3_c02455{letter-spacing:0.028800px;}
.ls4_c02455{letter-spacing:0.036000px;}
.ls7_c02455{letter-spacing:0.050400px;}
.ls1_c02455{letter-spacing:0.059292px;}
.ls8_c02455{letter-spacing:0.072000px;}
.ls2_c02455{letter-spacing:0.079056px;}
.ls0_c02455{letter-spacing:194.400000px;}
.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;}
}
.ws2_c02455{word-spacing:-0.237600px;}
.wsd_c02455{word-spacing:-0.136800px;}
.ws7_c02455{word-spacing:-0.122400px;}
.ws10_c02455{word-spacing:-0.108000px;}
.wsb_c02455{word-spacing:-0.100800px;}
.ws11_c02455{word-spacing:-0.093600px;}
.ws12_c02455{word-spacing:-0.086400px;}
.wsf_c02455{word-spacing:-0.072000px;}
.wse_c02455{word-spacing:-0.050400px;}
.ws5_c02455{word-spacing:-0.036000px;}
.wsa_c02455{word-spacing:-0.028800px;}
.ws8_c02455{word-spacing:-0.021600px;}
.ws13_c02455{word-spacing:-0.014400px;}
.ws6_c02455{word-spacing:-0.007200px;}
.ws0_c02455{word-spacing:0.000000px;}
.ws3_c02455{word-spacing:0.014400px;}
.ws1_c02455{word-spacing:0.032940px;}
.ws9_c02455{word-spacing:0.050400px;}
.wsc_c02455{word-spacing:0.072000px;}
.ws4_c02455{word-spacing:11.131200px;}
._0_c02455{margin-left:-1.008000px;}
.fc0_c02455{color:rgb(0,0,0);}
.fs2_c02455{font-size:11.880000px;}
.fs1_c02455{font-size:65.880000px;}
.fs0_c02455{font-size:72.000000px;}
.y0_c02455{bottom:0.000000px;}
.y3_c02455{bottom:75.720882px;}
.y2_c02455{bottom:113.880225px;}
.y3a_c02455{bottom:139.440600px;}
.y39_c02455{bottom:160.140600px;}
.y38_c02455{bottom:180.840600px;}
.y37_c02455{bottom:201.540600px;}
.y36_c02455{bottom:222.240600px;}
.y35_c02455{bottom:242.940600px;}
.y34_c02455{bottom:263.640600px;}
.y33_c02455{bottom:284.340600px;}
.y32_c02455{bottom:305.040600px;}
.y31_c02455{bottom:325.740600px;}
.y30_c02455{bottom:346.440600px;}
.y2f_c02455{bottom:367.140600px;}
.y2e_c02455{bottom:387.840600px;}
.y2d_c02455{bottom:409.080450px;}
.y2c_c02455{bottom:429.780450px;}
.y2b_c02455{bottom:451.380450px;}
.y2a_c02455{bottom:472.080450px;}
.y29_c02455{bottom:492.780450px;}
.y28_c02455{bottom:513.480450px;}
.y27_c02455{bottom:534.180450px;}
.y26_c02455{bottom:554.880450px;}
.y25_c02455{bottom:575.580450px;}
.y24_c02455{bottom:596.280450px;}
.y23_c02455{bottom:616.800450px;}
.y22_c02455{bottom:637.680450px;}
.y21_c02455{bottom:658.380450px;}
.y20_c02455{bottom:679.080450px;}
.y1f_c02455{bottom:699.780450px;}
.y1e_c02455{bottom:720.480450px;}
.y1d_c02455{bottom:741.180450px;}
.y1c_c02455{bottom:761.880450px;}
.y1b_c02455{bottom:782.400450px;}
.y1a_c02455{bottom:803.280450px;}
.y19_c02455{bottom:823.980450px;}
.y18_c02455{bottom:844.680450px;}
.y17_c02455{bottom:865.380450px;}
.y16_c02455{bottom:886.080450px;}
.y15_c02455{bottom:906.780450px;}
.y14_c02455{bottom:927.480450px;}
.y13_c02455{bottom:948.180450px;}
.y12_c02455{bottom:968.700450px;}
.y11_c02455{bottom:989.580450px;}
.y10_c02455{bottom:1010.280450px;}
.yf_c02455{bottom:1030.800450px;}
.ye_c02455{bottom:1052.400450px;}
.yd_c02455{bottom:1073.100450px;}
.yc_c02455{bottom:1093.620450px;}
.yb_c02455{bottom:1115.130450px;}
.ya_c02455{bottom:1133.310441px;}
.y9_c02455{bottom:1136.820684px;}
.y8_c02455{bottom:1140.240639px;}
.y7_c02455{bottom:1143.660594px;}
.y6_c02455{bottom:1147.170540px;}
.y5_c02455{bottom:1150.590495px;}
.y4_c02455{bottom:1154.010450px;}
.y1_c02455{bottom:1194.600450px;}
.h4_c02455{height:10.424004px;}
.h3_c02455{height:43.909277px;}
.h2_c02455{height:54.331699px;}
.h5_c02455{height:63.175781px;}
.h1_c02455{height:72.562500px;}
.h0_c02455{height:1263.000000px;}
.w1_c02455{width:892.500000px;}
.w0_c02455{width:892.830000px;}
.x0_c02455{left:0.000000px;}
.x3_c02455{left:127.619793px;}
.x1_c02455{left:134.730000px;}
.x4_c02455{left:148.950000px;}
.x2_c02455{left:442.349964px;}
@media print{
.v0_c02455{vertical-align:0.000000pt;}
.lsd_c02455{letter-spacing:-0.064000pt;}
.lsc_c02455{letter-spacing:-0.044800pt;}
.lsb_c02455{letter-spacing:-0.012800pt;}
.lsa_c02455{letter-spacing:0.000000pt;}
.ls6_c02455{letter-spacing:0.006400pt;}
.ls9_c02455{letter-spacing:0.012800pt;}
.ls5_c02455{letter-spacing:0.019200pt;}
.ls3_c02455{letter-spacing:0.025600pt;}
.ls4_c02455{letter-spacing:0.032000pt;}
.ls7_c02455{letter-spacing:0.044800pt;}
.ls1_c02455{letter-spacing:0.052704pt;}
.ls8_c02455{letter-spacing:0.064000pt;}
.ls2_c02455{letter-spacing:0.070272pt;}
.ls0_c02455{letter-spacing:172.800000pt;}
.ws2_c02455{word-spacing:-0.211200pt;}
.wsd_c02455{word-spacing:-0.121600pt;}
.ws7_c02455{word-spacing:-0.108800pt;}
.ws10_c02455{word-spacing:-0.096000pt;}
.wsb_c02455{word-spacing:-0.089600pt;}
.ws11_c02455{word-spacing:-0.083200pt;}
.ws12_c02455{word-spacing:-0.076800pt;}
.wsf_c02455{word-spacing:-0.064000pt;}
.wse_c02455{word-spacing:-0.044800pt;}
.ws5_c02455{word-spacing:-0.032000pt;}
.wsa_c02455{word-spacing:-0.025600pt;}
.ws8_c02455{word-spacing:-0.019200pt;}
.ws13_c02455{word-spacing:-0.012800pt;}
.ws6_c02455{word-spacing:-0.006400pt;}
.ws0_c02455{word-spacing:0.000000pt;}
.ws3_c02455{word-spacing:0.012800pt;}
.ws1_c02455{word-spacing:0.029280pt;}
.ws9_c02455{word-spacing:0.044800pt;}
.wsc_c02455{word-spacing:0.064000pt;}
.ws4_c02455{word-spacing:9.894400pt;}
._0_c02455{margin-left:-0.896000pt;}
.fs2_c02455{font-size:10.560000pt;}
.fs1_c02455{font-size:58.560000pt;}
.fs0_c02455{font-size:64.000000pt;}
.y0_c02455{bottom:0.000000pt;}
.y3_c02455{bottom:67.307451pt;}
.y2_c02455{bottom:101.226867pt;}
.y3a_c02455{bottom:123.947200pt;}
.y39_c02455{bottom:142.347200pt;}
.y38_c02455{bottom:160.747200pt;}
.y37_c02455{bottom:179.147200pt;}
.y36_c02455{bottom:197.547200pt;}
.y35_c02455{bottom:215.947200pt;}
.y34_c02455{bottom:234.347200pt;}
.y33_c02455{bottom:252.747200pt;}
.y32_c02455{bottom:271.147200pt;}
.y31_c02455{bottom:289.547200pt;}
.y30_c02455{bottom:307.947200pt;}
.y2f_c02455{bottom:326.347200pt;}
.y2e_c02455{bottom:344.747200pt;}
.y2d_c02455{bottom:363.627067pt;}
.y2c_c02455{bottom:382.027067pt;}
.y2b_c02455{bottom:401.227067pt;}
.y2a_c02455{bottom:419.627067pt;}
.y29_c02455{bottom:438.027067pt;}
.y28_c02455{bottom:456.427067pt;}
.y27_c02455{bottom:474.827067pt;}
.y26_c02455{bottom:493.227067pt;}
.y25_c02455{bottom:511.627067pt;}
.y24_c02455{bottom:530.027067pt;}
.y23_c02455{bottom:548.267067pt;}
.y22_c02455{bottom:566.827067pt;}
.y21_c02455{bottom:585.227067pt;}
.y20_c02455{bottom:603.627067pt;}
.y1f_c02455{bottom:622.027067pt;}
.y1e_c02455{bottom:640.427067pt;}
.y1d_c02455{bottom:658.827067pt;}
.y1c_c02455{bottom:677.227067pt;}
.y1b_c02455{bottom:695.467067pt;}
.y1a_c02455{bottom:714.027067pt;}
.y19_c02455{bottom:732.427067pt;}
.y18_c02455{bottom:750.827067pt;}
.y17_c02455{bottom:769.227067pt;}
.y16_c02455{bottom:787.627067pt;}
.y15_c02455{bottom:806.027067pt;}
.y14_c02455{bottom:824.427067pt;}
.y13_c02455{bottom:842.827067pt;}
.y12_c02455{bottom:861.067067pt;}
.y11_c02455{bottom:879.627067pt;}
.y10_c02455{bottom:898.027067pt;}
.yf_c02455{bottom:916.267067pt;}
.ye_c02455{bottom:935.467067pt;}
.yd_c02455{bottom:953.867067pt;}
.yc_c02455{bottom:972.107067pt;}
.yb_c02455{bottom:991.227067pt;}
.ya_c02455{bottom:1007.387059pt;}
.y9_c02455{bottom:1010.507275pt;}
.y8_c02455{bottom:1013.547235pt;}
.y7_c02455{bottom:1016.587195pt;}
.y6_c02455{bottom:1019.707147pt;}
.y5_c02455{bottom:1022.747107pt;}
.y4_c02455{bottom:1025.787067pt;}
.y1_c02455{bottom:1061.867067pt;}
.h4_c02455{height:9.265781pt;}
.h3_c02455{height:39.030469pt;}
.h2_c02455{height:48.294844pt;}
.h5_c02455{height:56.156250pt;}
.h1_c02455{height:64.500000pt;}
.h0_c02455{height:1122.666667pt;}
.w1_c02455{width:793.333333pt;}
.w0_c02455{width:793.626667pt;}
.x0_c02455{left:0.000000pt;}
.x3_c02455{left:113.439816pt;}
.x1_c02455{left:119.760000pt;}
.x4_c02455{left:132.400000pt;}
.x2_c02455{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5e8ac48084bb684a389bb05.woff2')format("woff");}.ff1_c02456{font-family:ff1_c02456;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02456;src:url('chunks/assets/font_ea3dc8613b3cbe82c5eec2e4.woff2')format("woff");}.ff2_c02456{font-family:ff2_c02456;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02456{font-family:ff3_c02456;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_c02456;src:url('chunks/assets/font_6c87b2d8799fefed6b96646f.woff2')format("woff");}.ff4_c02456{font-family:ff4_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;}
.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;}
.lsd_c02456{letter-spacing:-0.018036px;}
.lsc_c02456{letter-spacing:-0.014400px;}
.lse_c02456{letter-spacing:-0.007200px;}
.lsb_c02456{letter-spacing:0.000000px;}
.ls5_c02456{letter-spacing:0.007200px;}
.ls8_c02456{letter-spacing:0.014400px;}
.ls4_c02456{letter-spacing:0.021600px;}
.ls7_c02456{letter-spacing:0.028800px;}
.ls3_c02456{letter-spacing:0.036000px;}
.ls9_c02456{letter-spacing:0.043200px;}
.ls1_c02456{letter-spacing:0.059292px;}
.ls6_c02456{letter-spacing:0.064800px;}
.ls2_c02456{letter-spacing:0.079056px;}
.lsa_c02456{letter-spacing:0.079200px;}
.ls0_c02456{letter-spacing:194.400000px;}
.sc__c02456{text-shadow:none;}
.sc0_c02456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02456{-webkit-text-stroke:0px transparent;}
.sc0_c02456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02456{word-spacing:-15.011964px;}
.ws1d_c02456{word-spacing:-0.259200px;}
.ws1c_c02456{word-spacing:-0.230400px;}
.wsc_c02456{word-spacing:-0.208800px;}
.ws10_c02456{word-spacing:-0.201600px;}
.ws19_c02456{word-spacing:-0.187200px;}
.wsd_c02456{word-spacing:-0.180000px;}
.ws1b_c02456{word-spacing:-0.172800px;}
.ws11_c02456{word-spacing:-0.144000px;}
.ws16_c02456{word-spacing:-0.136800px;}
.ws14_c02456{word-spacing:-0.122400px;}
.ws18_c02456{word-spacing:-0.115200px;}
.ws12_c02456{word-spacing:-0.108000px;}
.wsf_c02456{word-spacing:-0.100800px;}
.ws1a_c02456{word-spacing:-0.086400px;}
.ws1e_c02456{word-spacing:-0.079200px;}
.ws1f_c02456{word-spacing:-0.057600px;}
.ws15_c02456{word-spacing:-0.043200px;}
.ws17_c02456{word-spacing:-0.028800px;}
.ws13_c02456{word-spacing:-0.021600px;}
.ws3_c02456{word-spacing:-0.014400px;}
.wsa_c02456{word-spacing:-0.007200px;}
.ws1_c02456{word-spacing:0.000000px;}
.wse_c02456{word-spacing:0.007200px;}
.ws4_c02456{word-spacing:0.014400px;}
.ws2_c02456{word-spacing:0.032940px;}
.ws21_c02456{word-spacing:0.057600px;}
.ws20_c02456{word-spacing:0.079200px;}
.ws9_c02456{word-spacing:10.527012px;}
.ws8_c02456{word-spacing:10.800000px;}
.ws6_c02456{word-spacing:13.838400px;}
.ws5_c02456{word-spacing:13.881600px;}
.ws7_c02456{word-spacing:14.032800px;}
.wsb_c02456{word-spacing:14.270400px;}
._0_c02456{margin-left:-1.029600px;}
._1_c02456{width:1.123200px;}
.fc0_c02456{color:rgb(0,0,0);}
.fs2_c02456{font-size:60.120000px;}
.fs1_c02456{font-size:65.880000px;}
.fs0_c02456{font-size:72.000000px;}
.y0_c02456{bottom:0.000000px;}
.y3_c02456{bottom:75.720882px;}
.y2_c02456{bottom:113.880225px;}
.y34_c02456{bottom:147.810450px;}
.y33_c02456{bottom:168.510450px;}
.y32_c02456{bottom:189.210450px;}
.y31_c02456{bottom:209.910450px;}
.y30_c02456{bottom:230.610450px;}
.y2f_c02456{bottom:251.310450px;}
.y2e_c02456{bottom:272.010450px;}
.y2d_c02456{bottom:292.710450px;}
.y2c_c02456{bottom:313.410450px;}
.y2b_c02456{bottom:334.110450px;}
.y2a_c02456{bottom:354.810450px;}
.y29_c02456{bottom:375.510450px;}
.y28_c02456{bottom:396.210450px;}
.y27_c02456{bottom:416.910450px;}
.y26_c02456{bottom:437.610450px;}
.y25_c02456{bottom:458.310450px;}
.y24_c02456{bottom:479.010450px;}
.y23_c02456{bottom:499.710450px;}
.y22_c02456{bottom:520.410450px;}
.y21_c02456{bottom:541.110450px;}
.y20_c02456{bottom:561.810450px;}
.y1f_c02456{bottom:582.510450px;}
.y1e_c02456{bottom:603.210450px;}
.y1d_c02456{bottom:623.910450px;}
.y1c_c02456{bottom:644.610450px;}
.y1b_c02456{bottom:665.310450px;}
.y1a_c02456{bottom:686.010450px;}
.y19_c02456{bottom:706.710450px;}
.y18_c02456{bottom:727.410450px;}
.y17_c02456{bottom:748.110450px;}
.y16_c02456{bottom:768.810450px;}
.y15_c02456{bottom:789.510450px;}
.y14_c02456{bottom:810.210450px;}
.y13_c02456{bottom:830.910450px;}
.y12_c02456{bottom:851.610450px;}
.y11_c02456{bottom:872.310450px;}
.y10_c02456{bottom:893.010450px;}
.yf_c02456{bottom:913.710450px;}
.ye_c02456{bottom:934.410450px;}
.yd_c02456{bottom:955.110450px;}
.yc_c02456{bottom:975.630450px;}
.yb_c02456{bottom:996.510450px;}
.ya_c02456{bottom:1017.210450px;}
.y9_c02456{bottom:1037.730450px;}
.y8_c02456{bottom:1058.700702px;}
.y7_c02456{bottom:1076.610450px;}
.y6_c02456{bottom:1097.310450px;}
.y5_c02456{bottom:1117.830450px;}
.y4_c02456{bottom:1139.250450px;}
.y1_c02456{bottom:1194.600450px;}
.h3_c02456{height:43.909277px;}
.h2_c02456{height:54.331699px;}
.h4_c02456{height:63.175781px;}
.h5_c02456{height:72.561492px;}
.h1_c02456{height:72.562500px;}
.h0_c02456{height:1263.000000px;}
.w1_c02456{width:892.500000px;}
.w0_c02456{width:892.830000px;}
.x0_c02456{left:0.000000px;}
.x3_c02456{left:127.619793px;}
.x1_c02456{left:134.730000px;}
.x4_c02456{left:148.950000px;}
.x2_c02456{left:442.349964px;}
@media print{
.v0_c02456{vertical-align:0.000000pt;}
.lsd_c02456{letter-spacing:-0.016032pt;}
.lsc_c02456{letter-spacing:-0.012800pt;}
.lse_c02456{letter-spacing:-0.006400pt;}
.lsb_c02456{letter-spacing:0.000000pt;}
.ls5_c02456{letter-spacing:0.006400pt;}
.ls8_c02456{letter-spacing:0.012800pt;}
.ls4_c02456{letter-spacing:0.019200pt;}
.ls7_c02456{letter-spacing:0.025600pt;}
.ls3_c02456{letter-spacing:0.032000pt;}
.ls9_c02456{letter-spacing:0.038400pt;}
.ls1_c02456{letter-spacing:0.052704pt;}
.ls6_c02456{letter-spacing:0.057600pt;}
.ls2_c02456{letter-spacing:0.070272pt;}
.lsa_c02456{letter-spacing:0.070400pt;}
.ls0_c02456{letter-spacing:172.800000pt;}
.ws0_c02456{word-spacing:-13.343968pt;}
.ws1d_c02456{word-spacing:-0.230400pt;}
.ws1c_c02456{word-spacing:-0.204800pt;}
.wsc_c02456{word-spacing:-0.185600pt;}
.ws10_c02456{word-spacing:-0.179200pt;}
.ws19_c02456{word-spacing:-0.166400pt;}
.wsd_c02456{word-spacing:-0.160000pt;}
.ws1b_c02456{word-spacing:-0.153600pt;}
.ws11_c02456{word-spacing:-0.128000pt;}
.ws16_c02456{word-spacing:-0.121600pt;}
.ws14_c02456{word-spacing:-0.108800pt;}
.ws18_c02456{word-spacing:-0.102400pt;}
.ws12_c02456{word-spacing:-0.096000pt;}
.wsf_c02456{word-spacing:-0.089600pt;}
.ws1a_c02456{word-spacing:-0.076800pt;}
.ws1e_c02456{word-spacing:-0.070400pt;}
.ws1f_c02456{word-spacing:-0.051200pt;}
.ws15_c02456{word-spacing:-0.038400pt;}
.ws17_c02456{word-spacing:-0.025600pt;}
.ws13_c02456{word-spacing:-0.019200pt;}
.ws3_c02456{word-spacing:-0.012800pt;}
.wsa_c02456{word-spacing:-0.006400pt;}
.ws1_c02456{word-spacing:0.000000pt;}
.wse_c02456{word-spacing:0.006400pt;}
.ws4_c02456{word-spacing:0.012800pt;}
.ws2_c02456{word-spacing:0.029280pt;}
.ws21_c02456{word-spacing:0.051200pt;}
.ws20_c02456{word-spacing:0.070400pt;}
.ws9_c02456{word-spacing:9.357344pt;}
.ws8_c02456{word-spacing:9.600000pt;}
.ws6_c02456{word-spacing:12.300800pt;}
.ws5_c02456{word-spacing:12.339200pt;}
.ws7_c02456{word-spacing:12.473600pt;}
.wsb_c02456{word-spacing:12.684800pt;}
._0_c02456{margin-left:-0.915200pt;}
._1_c02456{width:0.998400pt;}
.fs2_c02456{font-size:53.440000pt;}
.fs1_c02456{font-size:58.560000pt;}
.fs0_c02456{font-size:64.000000pt;}
.y0_c02456{bottom:0.000000pt;}
.y3_c02456{bottom:67.307451pt;}
.y2_c02456{bottom:101.226867pt;}
.y34_c02456{bottom:131.387067pt;}
.y33_c02456{bottom:149.787067pt;}
.y32_c02456{bottom:168.187067pt;}
.y31_c02456{bottom:186.587067pt;}
.y30_c02456{bottom:204.987067pt;}
.y2f_c02456{bottom:223.387067pt;}
.y2e_c02456{bottom:241.787067pt;}
.y2d_c02456{bottom:260.187067pt;}
.y2c_c02456{bottom:278.587067pt;}
.y2b_c02456{bottom:296.987067pt;}
.y2a_c02456{bottom:315.387067pt;}
.y29_c02456{bottom:333.787067pt;}
.y28_c02456{bottom:352.187067pt;}
.y27_c02456{bottom:370.587067pt;}
.y26_c02456{bottom:388.987067pt;}
.y25_c02456{bottom:407.387067pt;}
.y24_c02456{bottom:425.787067pt;}
.y23_c02456{bottom:444.187067pt;}
.y22_c02456{bottom:462.587067pt;}
.y21_c02456{bottom:480.987067pt;}
.y20_c02456{bottom:499.387067pt;}
.y1f_c02456{bottom:517.787067pt;}
.y1e_c02456{bottom:536.187067pt;}
.y1d_c02456{bottom:554.587067pt;}
.y1c_c02456{bottom:572.987067pt;}
.y1b_c02456{bottom:591.387067pt;}
.y1a_c02456{bottom:609.787067pt;}
.y19_c02456{bottom:628.187067pt;}
.y18_c02456{bottom:646.587067pt;}
.y17_c02456{bottom:664.987067pt;}
.y16_c02456{bottom:683.387067pt;}
.y15_c02456{bottom:701.787067pt;}
.y14_c02456{bottom:720.187067pt;}
.y13_c02456{bottom:738.587067pt;}
.y12_c02456{bottom:756.987067pt;}
.y11_c02456{bottom:775.387067pt;}
.y10_c02456{bottom:793.787067pt;}
.yf_c02456{bottom:812.187067pt;}
.ye_c02456{bottom:830.587067pt;}
.yd_c02456{bottom:848.987067pt;}
.yc_c02456{bottom:867.227067pt;}
.yb_c02456{bottom:885.787067pt;}
.ya_c02456{bottom:904.187067pt;}
.y9_c02456{bottom:922.427067pt;}
.y8_c02456{bottom:941.067291pt;}
.y7_c02456{bottom:956.987067pt;}
.y6_c02456{bottom:975.387067pt;}
.y5_c02456{bottom:993.627067pt;}
.y4_c02456{bottom:1012.667067pt;}
.y1_c02456{bottom:1061.867067pt;}
.h3_c02456{height:39.030469pt;}
.h2_c02456{height:48.294844pt;}
.h4_c02456{height:56.156250pt;}
.h5_c02456{height:64.499104pt;}
.h1_c02456{height:64.500000pt;}
.h0_c02456{height:1122.666667pt;}
.w1_c02456{width:793.333333pt;}
.w0_c02456{width:793.626667pt;}
.x0_c02456{left:0.000000pt;}
.x3_c02456{left:113.439816pt;}
.x1_c02456{left:119.760000pt;}
.x4_c02456{left:132.400000pt;}
.x2_c02456{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f49a62cbb6ecd41a36321c2.woff2')format("woff");}.ff1_c02457{font-family:ff1_c02457;line-height:1.311035;font-style:normal;font-weight:normal;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_0cec2893f087417c014c03ae.woff2')format("woff");}.ff2_c02457{font-family:ff2_c02457;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02457{font-family:ff3_c02457;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_c02457;src:url('chunks/assets/font_d58f72e3cbc043a1ef39a651.woff2')format("woff");}.ff4_c02457{font-family:ff4_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;}
.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;}
.ls11_c02457{letter-spacing:-0.043200px;}
.ls12_c02457{letter-spacing:-0.028800px;}
.ls10_c02457{letter-spacing:-0.014400px;}
.lsf_c02457{letter-spacing:-0.007200px;}
.lse_c02457{letter-spacing:0.000000px;}
.lsa_c02457{letter-spacing:0.007200px;}
.ls5_c02457{letter-spacing:0.014400px;}
.ls3_c02457{letter-spacing:0.021600px;}
.ls7_c02457{letter-spacing:0.028800px;}
.ls6_c02457{letter-spacing:0.036000px;}
.lsc_c02457{letter-spacing:0.043200px;}
.ls8_c02457{letter-spacing:0.050400px;}
.lsd_c02457{letter-spacing:0.057600px;}
.ls1_c02457{letter-spacing:0.059292px;}
.ls4_c02457{letter-spacing:0.064800px;}
.lsb_c02457{letter-spacing:0.072000px;}
.ls2_c02457{letter-spacing:0.079056px;}
.ls9_c02457{letter-spacing:0.115200px;}
.ls0_c02457{letter-spacing:194.400000px;}
.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;}
}
.ws16_c02457{word-spacing:-0.280800px;}
.ws14_c02457{word-spacing:-0.252000px;}
.ws1a_c02457{word-spacing:-0.180000px;}
.ws1d_c02457{word-spacing:-0.172800px;}
.wsc_c02457{word-spacing:-0.165600px;}
.wsd_c02457{word-spacing:-0.158400px;}
.ws1f_c02457{word-spacing:-0.136800px;}
.ws17_c02457{word-spacing:-0.122400px;}
.ws18_c02457{word-spacing:-0.108000px;}
.ws20_c02457{word-spacing:-0.100800px;}
.wsb_c02457{word-spacing:-0.086400px;}
.ws1e_c02457{word-spacing:-0.079200px;}
.ws15_c02457{word-spacing:-0.072000px;}
.ws19_c02457{word-spacing:-0.057600px;}
.ws7_c02457{word-spacing:-0.036000px;}
.ws1c_c02457{word-spacing:-0.028800px;}
.ws2_c02457{word-spacing:-0.021600px;}
.ws8_c02457{word-spacing:-0.007200px;}
.ws0_c02457{word-spacing:0.000000px;}
.ws3_c02457{word-spacing:0.007200px;}
.ws4_c02457{word-spacing:0.014400px;}
.ws1b_c02457{word-spacing:0.028800px;}
.ws1_c02457{word-spacing:0.032940px;}
.ws5_c02457{word-spacing:1.375200px;}
.ws6_c02457{word-spacing:1.425600px;}
.ws11_c02457{word-spacing:2.246400px;}
.ws12_c02457{word-spacing:2.368800px;}
.ws13_c02457{word-spacing:2.491200px;}
.ws9_c02457{word-spacing:8.193600px;}
.wsa_c02457{word-spacing:8.251200px;}
.ws10_c02457{word-spacing:44.884800px;}
.wsf_c02457{word-spacing:45.223200px;}
.wse_c02457{word-spacing:45.360000px;}
._0_c02457{margin-left:-1.317600px;}
.fc0_c02457{color:rgb(0,0,0);}
.fs2_c02457{font-size:11.880000px;}
.fs1_c02457{font-size:65.880000px;}
.fs0_c02457{font-size:72.000000px;}
.y0_c02457{bottom:0.000000px;}
.y3_c02457{bottom:75.720882px;}
.y2_c02457{bottom:113.880225px;}
.y35_c02457{bottom:134.040600px;}
.y34_c02457{bottom:154.740600px;}
.y33_c02457{bottom:175.440600px;}
.y32_c02457{bottom:196.140600px;}
.y31_c02457{bottom:216.840600px;}
.y30_c02457{bottom:237.540600px;}
.y2f_c02457{bottom:258.960450px;}
.y2e_c02457{bottom:280.560450px;}
.y2d_c02457{bottom:301.260450px;}
.y2c_c02457{bottom:321.960450px;}
.y2b_c02457{bottom:342.660450px;}
.y2a_c02457{bottom:363.360450px;}
.y29_c02457{bottom:384.060450px;}
.y28_c02457{bottom:404.760450px;}
.y27_c02457{bottom:425.460450px;}
.y26_c02457{bottom:446.160450px;}
.y25_c02457{bottom:466.860450px;}
.y24_c02457{bottom:487.560450px;}
.y23_c02457{bottom:508.260450px;}
.y22_c02457{bottom:528.960450px;}
.y21_c02457{bottom:549.660450px;}
.y20_c02457{bottom:570.360450px;}
.y1f_c02457{bottom:591.060450px;}
.y1e_c02457{bottom:611.760450px;}
.y1d_c02457{bottom:632.460450px;}
.y1c_c02457{bottom:652.980450px;}
.y1b_c02457{bottom:674.580450px;}
.y1a_c02457{bottom:695.280450px;}
.y19_c02457{bottom:715.980450px;}
.y18_c02457{bottom:736.500450px;}
.y17_c02457{bottom:758.010450px;}
.y16_c02457{bottom:779.430450px;}
.y15_c02457{bottom:800.310450px;}
.y14_c02457{bottom:821.010450px;}
.y13_c02457{bottom:841.710450px;}
.y12_c02457{bottom:862.410450px;}
.y11_c02457{bottom:883.110450px;}
.y10_c02457{bottom:903.810450px;}
.yf_c02457{bottom:925.050450px;}
.ye_c02457{bottom:946.650450px;}
.yd_c02457{bottom:967.350450px;}
.yc_c02457{bottom:988.050450px;}
.yb_c02457{bottom:1008.750450px;}
.ya_c02457{bottom:1029.270450px;}
.y9_c02457{bottom:1050.960450px;}
.y8_c02457{bottom:1071.660450px;}
.y7_c02457{bottom:1092.180450px;}
.y6_c02457{bottom:1113.600450px;}
.y5_c02457{bottom:1131.870450px;}
.y4_c02457{bottom:1139.250450px;}
.y1_c02457{bottom:1194.600450px;}
.h4_c02457{height:10.424004px;}
.h3_c02457{height:43.909277px;}
.h2_c02457{height:54.331699px;}
.h5_c02457{height:63.175781px;}
.h1_c02457{height:72.562500px;}
.h0_c02457{height:1263.000000px;}
.w1_c02457{width:892.500000px;}
.w0_c02457{width:892.830000px;}
.x0_c02457{left:0.000000px;}
.x5_c02457{left:125.010000px;}
.x3_c02457{left:127.619793px;}
.x1_c02457{left:134.730000px;}
.x4_c02457{left:148.950000px;}
.x2_c02457{left:442.349964px;}
@media print{
.v0_c02457{vertical-align:0.000000pt;}
.ls11_c02457{letter-spacing:-0.038400pt;}
.ls12_c02457{letter-spacing:-0.025600pt;}
.ls10_c02457{letter-spacing:-0.012800pt;}
.lsf_c02457{letter-spacing:-0.006400pt;}
.lse_c02457{letter-spacing:0.000000pt;}
.lsa_c02457{letter-spacing:0.006400pt;}
.ls5_c02457{letter-spacing:0.012800pt;}
.ls3_c02457{letter-spacing:0.019200pt;}
.ls7_c02457{letter-spacing:0.025600pt;}
.ls6_c02457{letter-spacing:0.032000pt;}
.lsc_c02457{letter-spacing:0.038400pt;}
.ls8_c02457{letter-spacing:0.044800pt;}
.lsd_c02457{letter-spacing:0.051200pt;}
.ls1_c02457{letter-spacing:0.052704pt;}
.ls4_c02457{letter-spacing:0.057600pt;}
.lsb_c02457{letter-spacing:0.064000pt;}
.ls2_c02457{letter-spacing:0.070272pt;}
.ls9_c02457{letter-spacing:0.102400pt;}
.ls0_c02457{letter-spacing:172.800000pt;}
.ws16_c02457{word-spacing:-0.249600pt;}
.ws14_c02457{word-spacing:-0.224000pt;}
.ws1a_c02457{word-spacing:-0.160000pt;}
.ws1d_c02457{word-spacing:-0.153600pt;}
.wsc_c02457{word-spacing:-0.147200pt;}
.wsd_c02457{word-spacing:-0.140800pt;}
.ws1f_c02457{word-spacing:-0.121600pt;}
.ws17_c02457{word-spacing:-0.108800pt;}
.ws18_c02457{word-spacing:-0.096000pt;}
.ws20_c02457{word-spacing:-0.089600pt;}
.wsb_c02457{word-spacing:-0.076800pt;}
.ws1e_c02457{word-spacing:-0.070400pt;}
.ws15_c02457{word-spacing:-0.064000pt;}
.ws19_c02457{word-spacing:-0.051200pt;}
.ws7_c02457{word-spacing:-0.032000pt;}
.ws1c_c02457{word-spacing:-0.025600pt;}
.ws2_c02457{word-spacing:-0.019200pt;}
.ws8_c02457{word-spacing:-0.006400pt;}
.ws0_c02457{word-spacing:0.000000pt;}
.ws3_c02457{word-spacing:0.006400pt;}
.ws4_c02457{word-spacing:0.012800pt;}
.ws1b_c02457{word-spacing:0.025600pt;}
.ws1_c02457{word-spacing:0.029280pt;}
.ws5_c02457{word-spacing:1.222400pt;}
.ws6_c02457{word-spacing:1.267200pt;}
.ws11_c02457{word-spacing:1.996800pt;}
.ws12_c02457{word-spacing:2.105600pt;}
.ws13_c02457{word-spacing:2.214400pt;}
.ws9_c02457{word-spacing:7.283200pt;}
.wsa_c02457{word-spacing:7.334400pt;}
.ws10_c02457{word-spacing:39.897600pt;}
.wsf_c02457{word-spacing:40.198400pt;}
.wse_c02457{word-spacing:40.320000pt;}
._0_c02457{margin-left:-1.171200pt;}
.fs2_c02457{font-size:10.560000pt;}
.fs1_c02457{font-size:58.560000pt;}
.fs0_c02457{font-size:64.000000pt;}
.y0_c02457{bottom:0.000000pt;}
.y3_c02457{bottom:67.307451pt;}
.y2_c02457{bottom:101.226867pt;}
.y35_c02457{bottom:119.147200pt;}
.y34_c02457{bottom:137.547200pt;}
.y33_c02457{bottom:155.947200pt;}
.y32_c02457{bottom:174.347200pt;}
.y31_c02457{bottom:192.747200pt;}
.y30_c02457{bottom:211.147200pt;}
.y2f_c02457{bottom:230.187067pt;}
.y2e_c02457{bottom:249.387067pt;}
.y2d_c02457{bottom:267.787067pt;}
.y2c_c02457{bottom:286.187067pt;}
.y2b_c02457{bottom:304.587067pt;}
.y2a_c02457{bottom:322.987067pt;}
.y29_c02457{bottom:341.387067pt;}
.y28_c02457{bottom:359.787067pt;}
.y27_c02457{bottom:378.187067pt;}
.y26_c02457{bottom:396.587067pt;}
.y25_c02457{bottom:414.987067pt;}
.y24_c02457{bottom:433.387067pt;}
.y23_c02457{bottom:451.787067pt;}
.y22_c02457{bottom:470.187067pt;}
.y21_c02457{bottom:488.587067pt;}
.y20_c02457{bottom:506.987067pt;}
.y1f_c02457{bottom:525.387067pt;}
.y1e_c02457{bottom:543.787067pt;}
.y1d_c02457{bottom:562.187067pt;}
.y1c_c02457{bottom:580.427067pt;}
.y1b_c02457{bottom:599.627067pt;}
.y1a_c02457{bottom:618.027067pt;}
.y19_c02457{bottom:636.427067pt;}
.y18_c02457{bottom:654.667067pt;}
.y17_c02457{bottom:673.787067pt;}
.y16_c02457{bottom:692.827067pt;}
.y15_c02457{bottom:711.387067pt;}
.y14_c02457{bottom:729.787067pt;}
.y13_c02457{bottom:748.187067pt;}
.y12_c02457{bottom:766.587067pt;}
.y11_c02457{bottom:784.987067pt;}
.y10_c02457{bottom:803.387067pt;}
.yf_c02457{bottom:822.267067pt;}
.ye_c02457{bottom:841.467067pt;}
.yd_c02457{bottom:859.867067pt;}
.yc_c02457{bottom:878.267067pt;}
.yb_c02457{bottom:896.667067pt;}
.ya_c02457{bottom:914.907067pt;}
.y9_c02457{bottom:934.187067pt;}
.y8_c02457{bottom:952.587067pt;}
.y7_c02457{bottom:970.827067pt;}
.y6_c02457{bottom:989.867067pt;}
.y5_c02457{bottom:1006.107067pt;}
.y4_c02457{bottom:1012.667067pt;}
.y1_c02457{bottom:1061.867067pt;}
.h4_c02457{height:9.265781pt;}
.h3_c02457{height:39.030469pt;}
.h2_c02457{height:48.294844pt;}
.h5_c02457{height:56.156250pt;}
.h1_c02457{height:64.500000pt;}
.h0_c02457{height:1122.666667pt;}
.w1_c02457{width:793.333333pt;}
.w0_c02457{width:793.626667pt;}
.x0_c02457{left:0.000000pt;}
.x5_c02457{left:111.120000pt;}
.x3_c02457{left:113.439816pt;}
.x1_c02457{left:119.760000pt;}
.x4_c02457{left:132.400000pt;}
.x2_c02457{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da4d6db1def73dccf788d122.woff2')format("woff");}.ff1_c02458{font-family:ff1_c02458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02458;src:url('chunks/assets/font_cf6d2f74b49ed7a896ed132b.woff2')format("woff");}.ff2_c02458{font-family:ff2_c02458;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02458{font-family:ff3_c02458;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_c02458;src:url('chunks/assets/font_4fedca31cb1b0c1e0377f51c.woff2')format("woff");}.ff4_c02458{font-family:ff4_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:ff5_c02458;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c02458{font-family:ff5_c02458;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_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;}
.ls11_c02458{letter-spacing:-0.028800px;}
.ls10_c02458{letter-spacing:-0.021600px;}
.lsf_c02458{letter-spacing:-0.014400px;}
.lse_c02458{letter-spacing:-0.007200px;}
.lsd_c02458{letter-spacing:0.000000px;}
.ls7_c02458{letter-spacing:0.007200px;}
.ls8_c02458{letter-spacing:0.014400px;}
.ls4_c02458{letter-spacing:0.021600px;}
.ls9_c02458{letter-spacing:0.028800px;}
.ls3_c02458{letter-spacing:0.036000px;}
.ls5_c02458{letter-spacing:0.043200px;}
.ls1_c02458{letter-spacing:0.059292px;}
.lsa_c02458{letter-spacing:0.064800px;}
.ls2_c02458{letter-spacing:0.079056px;}
.ls6_c02458{letter-spacing:0.086400px;}
.lsc_c02458{letter-spacing:0.115200px;}
.lsb_c02458{letter-spacing:30.384000px;}
.ls0_c02458{letter-spacing:194.400000px;}
.sc__c02458{text-shadow:none;}
.sc0_c02458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02458{-webkit-text-stroke:0px transparent;}
.sc0_c02458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02458{word-spacing:-18.000000px;}
.ws9_c02458{word-spacing:-0.187200px;}
.ws12_c02458{word-spacing:-0.151200px;}
.ws11_c02458{word-spacing:-0.122400px;}
.ws1e_c02458{word-spacing:-0.115200px;}
.ws14_c02458{word-spacing:-0.100800px;}
.wse_c02458{word-spacing:-0.093600px;}
.ws10_c02458{word-spacing:-0.079200px;}
.ws13_c02458{word-spacing:-0.072000px;}
.ws15_c02458{word-spacing:-0.043200px;}
.ws1a_c02458{word-spacing:-0.036000px;}
.ws7_c02458{word-spacing:-0.021600px;}
.wsf_c02458{word-spacing:-0.014400px;}
.wsa_c02458{word-spacing:-0.007200px;}
.ws1_c02458{word-spacing:0.000000px;}
.ws3_c02458{word-spacing:0.007200px;}
.ws4_c02458{word-spacing:0.014400px;}
.ws2_c02458{word-spacing:0.032940px;}
.ws18_c02458{word-spacing:1.231200px;}
.ws19_c02458{word-spacing:1.411200px;}
.ws8_c02458{word-spacing:5.968800px;}
.ws1b_c02458{word-spacing:8.244000px;}
.ws6_c02458{word-spacing:8.582400px;}
.ws5_c02458{word-spacing:8.604000px;}
.ws17_c02458{word-spacing:11.095200px;}
.ws16_c02458{word-spacing:11.116800px;}
.ws1d_c02458{word-spacing:19.036800px;}
.ws1c_c02458{word-spacing:19.072800px;}
.wsc_c02458{word-spacing:21.441600px;}
.wsb_c02458{word-spacing:21.614400px;}
.wsd_c02458{word-spacing:21.621600px;}
._0_c02458{margin-left:-1.144800px;}
.fc0_c02458{color:rgb(0,0,0);}
.fs1_c02458{font-size:65.880000px;}
.fs0_c02458{font-size:72.000000px;}
.y0_c02458{bottom:0.000000px;}
.y3_c02458{bottom:75.720882px;}
.y2_c02458{bottom:113.880225px;}
.y32_c02458{bottom:162.210600px;}
.y31_c02458{bottom:201.000600px;}
.y30_c02458{bottom:221.790600px;}
.y2f_c02458{bottom:243.210600px;}
.y2e_c02458{bottom:264.810450px;}
.y2d_c02458{bottom:285.510450px;}
.y2c_c02458{bottom:306.210450px;}
.y2b_c02458{bottom:326.910450px;}
.y2a_c02458{bottom:347.610450px;}
.y29_c02458{bottom:368.310450px;}
.y28_c02458{bottom:389.010450px;}
.y27_c02458{bottom:409.710450px;}
.y26_c02458{bottom:430.230450px;}
.y25_c02458{bottom:451.830450px;}
.y24_c02458{bottom:472.530450px;}
.y23_c02458{bottom:493.050450px;}
.y22_c02458{bottom:514.560450px;}
.y21_c02458{bottom:535.980450px;}
.y20_c02458{bottom:556.680450px;}
.y1f_c02458{bottom:577.380450px;}
.y1e_c02458{bottom:598.080450px;}
.y1d_c02458{bottom:618.780450px;}
.y1c_c02458{bottom:639.480450px;}
.y1b_c02458{bottom:660.900450px;}
.y1a_c02458{bottom:682.590450px;}
.y19_c02458{bottom:703.290450px;}
.y18_c02458{bottom:723.990450px;}
.y17_c02458{bottom:744.690450px;}
.y16_c02458{bottom:765.390450px;}
.y15_c02458{bottom:786.000450px;}
.y14_c02458{bottom:806.700450px;}
.y13_c02458{bottom:827.400450px;}
.y12_c02458{bottom:848.100450px;}
.y11_c02458{bottom:868.800450px;}
.y10_c02458{bottom:889.500450px;}
.yf_c02458{bottom:910.200450px;}
.ye_c02458{bottom:930.900450px;}
.yd_c02458{bottom:951.600450px;}
.yc_c02458{bottom:972.300450px;}
.yb_c02458{bottom:992.820450px;}
.ya_c02458{bottom:1014.510450px;}
.y9_c02458{bottom:1035.210450px;}
.y8_c02458{bottom:1055.910450px;}
.y7_c02458{bottom:1076.610450px;}
.y6_c02458{bottom:1097.130450px;}
.y5_c02458{bottom:1118.550450px;}
.y4_c02458{bottom:1139.970450px;}
.y1_c02458{bottom:1194.600450px;}
.h3_c02458{height:43.909277px;}
.h2_c02458{height:54.331699px;}
.h4_c02458{height:63.175781px;}
.h1_c02458{height:72.562500px;}
.h5_c02458{height:75.093750px;}
.h0_c02458{height:1263.000000px;}
.w1_c02458{width:892.500000px;}
.w0_c02458{width:892.830000px;}
.x0_c02458{left:0.000000px;}
.x3_c02458{left:127.619793px;}
.x1_c02458{left:134.730000px;}
.x4_c02458{left:148.950000px;}
.x5_c02458{left:154.620000px;}
.x6_c02458{left:181.620000px;}
.x2_c02458{left:442.349964px;}
@media print{
.v0_c02458{vertical-align:0.000000pt;}
.ls11_c02458{letter-spacing:-0.025600pt;}
.ls10_c02458{letter-spacing:-0.019200pt;}
.lsf_c02458{letter-spacing:-0.012800pt;}
.lse_c02458{letter-spacing:-0.006400pt;}
.lsd_c02458{letter-spacing:0.000000pt;}
.ls7_c02458{letter-spacing:0.006400pt;}
.ls8_c02458{letter-spacing:0.012800pt;}
.ls4_c02458{letter-spacing:0.019200pt;}
.ls9_c02458{letter-spacing:0.025600pt;}
.ls3_c02458{letter-spacing:0.032000pt;}
.ls5_c02458{letter-spacing:0.038400pt;}
.ls1_c02458{letter-spacing:0.052704pt;}
.lsa_c02458{letter-spacing:0.057600pt;}
.ls2_c02458{letter-spacing:0.070272pt;}
.ls6_c02458{letter-spacing:0.076800pt;}
.lsc_c02458{letter-spacing:0.102400pt;}
.lsb_c02458{letter-spacing:27.008000pt;}
.ls0_c02458{letter-spacing:172.800000pt;}
.ws0_c02458{word-spacing:-16.000000pt;}
.ws9_c02458{word-spacing:-0.166400pt;}
.ws12_c02458{word-spacing:-0.134400pt;}
.ws11_c02458{word-spacing:-0.108800pt;}
.ws1e_c02458{word-spacing:-0.102400pt;}
.ws14_c02458{word-spacing:-0.089600pt;}
.wse_c02458{word-spacing:-0.083200pt;}
.ws10_c02458{word-spacing:-0.070400pt;}
.ws13_c02458{word-spacing:-0.064000pt;}
.ws15_c02458{word-spacing:-0.038400pt;}
.ws1a_c02458{word-spacing:-0.032000pt;}
.ws7_c02458{word-spacing:-0.019200pt;}
.wsf_c02458{word-spacing:-0.012800pt;}
.wsa_c02458{word-spacing:-0.006400pt;}
.ws1_c02458{word-spacing:0.000000pt;}
.ws3_c02458{word-spacing:0.006400pt;}
.ws4_c02458{word-spacing:0.012800pt;}
.ws2_c02458{word-spacing:0.029280pt;}
.ws18_c02458{word-spacing:1.094400pt;}
.ws19_c02458{word-spacing:1.254400pt;}
.ws8_c02458{word-spacing:5.305600pt;}
.ws1b_c02458{word-spacing:7.328000pt;}
.ws6_c02458{word-spacing:7.628800pt;}
.ws5_c02458{word-spacing:7.648000pt;}
.ws17_c02458{word-spacing:9.862400pt;}
.ws16_c02458{word-spacing:9.881600pt;}
.ws1d_c02458{word-spacing:16.921600pt;}
.ws1c_c02458{word-spacing:16.953600pt;}
.wsc_c02458{word-spacing:19.059200pt;}
.wsb_c02458{word-spacing:19.212800pt;}
.wsd_c02458{word-spacing:19.219200pt;}
._0_c02458{margin-left:-1.017600pt;}
.fs1_c02458{font-size:58.560000pt;}
.fs0_c02458{font-size:64.000000pt;}
.y0_c02458{bottom:0.000000pt;}
.y3_c02458{bottom:67.307451pt;}
.y2_c02458{bottom:101.226867pt;}
.y32_c02458{bottom:144.187200pt;}
.y31_c02458{bottom:178.667200pt;}
.y30_c02458{bottom:197.147200pt;}
.y2f_c02458{bottom:216.187200pt;}
.y2e_c02458{bottom:235.387067pt;}
.y2d_c02458{bottom:253.787067pt;}
.y2c_c02458{bottom:272.187067pt;}
.y2b_c02458{bottom:290.587067pt;}
.y2a_c02458{bottom:308.987067pt;}
.y29_c02458{bottom:327.387067pt;}
.y28_c02458{bottom:345.787067pt;}
.y27_c02458{bottom:364.187067pt;}
.y26_c02458{bottom:382.427067pt;}
.y25_c02458{bottom:401.627067pt;}
.y24_c02458{bottom:420.027067pt;}
.y23_c02458{bottom:438.267067pt;}
.y22_c02458{bottom:457.387067pt;}
.y21_c02458{bottom:476.427067pt;}
.y20_c02458{bottom:494.827067pt;}
.y1f_c02458{bottom:513.227067pt;}
.y1e_c02458{bottom:531.627067pt;}
.y1d_c02458{bottom:550.027067pt;}
.y1c_c02458{bottom:568.427067pt;}
.y1b_c02458{bottom:587.467067pt;}
.y1a_c02458{bottom:606.747067pt;}
.y19_c02458{bottom:625.147067pt;}
.y18_c02458{bottom:643.547067pt;}
.y17_c02458{bottom:661.947067pt;}
.y16_c02458{bottom:680.347067pt;}
.y15_c02458{bottom:698.667067pt;}
.y14_c02458{bottom:717.067067pt;}
.y13_c02458{bottom:735.467067pt;}
.y12_c02458{bottom:753.867067pt;}
.y11_c02458{bottom:772.267067pt;}
.y10_c02458{bottom:790.667067pt;}
.yf_c02458{bottom:809.067067pt;}
.ye_c02458{bottom:827.467067pt;}
.yd_c02458{bottom:845.867067pt;}
.yc_c02458{bottom:864.267067pt;}
.yb_c02458{bottom:882.507067pt;}
.ya_c02458{bottom:901.787067pt;}
.y9_c02458{bottom:920.187067pt;}
.y8_c02458{bottom:938.587067pt;}
.y7_c02458{bottom:956.987067pt;}
.y6_c02458{bottom:975.227067pt;}
.y5_c02458{bottom:994.267067pt;}
.y4_c02458{bottom:1013.307067pt;}
.y1_c02458{bottom:1061.867067pt;}
.h3_c02458{height:39.030469pt;}
.h2_c02458{height:48.294844pt;}
.h4_c02458{height:56.156250pt;}
.h1_c02458{height:64.500000pt;}
.h5_c02458{height:66.750000pt;}
.h0_c02458{height:1122.666667pt;}
.w1_c02458{width:793.333333pt;}
.w0_c02458{width:793.626667pt;}
.x0_c02458{left:0.000000pt;}
.x3_c02458{left:113.439816pt;}
.x1_c02458{left:119.760000pt;}
.x4_c02458{left:132.400000pt;}
.x5_c02458{left:137.440000pt;}
.x6_c02458{left:161.440000pt;}
.x2_c02458{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b3890b8e8c457a2ac345f58.woff2')format("woff");}.ff1_c02459{font-family:ff1_c02459;line-height:1.311035;font-style:normal;font-weight:normal;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_ba1266696bd41063277abf4c.woff2')format("woff");}.ff2_c02459{font-family:ff2_c02459;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02459{font-family:ff3_c02459;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_c02459;src:url('chunks/assets/font_743b526928770f377b09f5ba.woff2')format("woff");}.ff4_c02459{font-family:ff4_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;}
.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;}
.lsd_c02459{letter-spacing:-0.064800px;}
.lsf_c02459{letter-spacing:-0.043200px;}
.ls12_c02459{letter-spacing:-0.028800px;}
.ls10_c02459{letter-spacing:-0.021600px;}
.lse_c02459{letter-spacing:-0.014400px;}
.ls11_c02459{letter-spacing:-0.007200px;}
.lsc_c02459{letter-spacing:0.000000px;}
.ls9_c02459{letter-spacing:0.007200px;}
.ls4_c02459{letter-spacing:0.014400px;}
.ls6_c02459{letter-spacing:0.021600px;}
.ls3_c02459{letter-spacing:0.028800px;}
.ls8_c02459{letter-spacing:0.036000px;}
.ls7_c02459{letter-spacing:0.043200px;}
.lsa_c02459{letter-spacing:0.050400px;}
.lsb_c02459{letter-spacing:0.057600px;}
.ls1_c02459{letter-spacing:0.059292px;}
.ls5_c02459{letter-spacing:0.064800px;}
.ls2_c02459{letter-spacing:0.079056px;}
.ls0_c02459{letter-spacing:194.400000px;}
.sc__c02459{text-shadow:none;}
.sc0_c02459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02459{-webkit-text-stroke:0px transparent;}
.sc0_c02459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02459{word-spacing:-17.935200px;}
.ws12_c02459{word-spacing:-0.216000px;}
.wsb_c02459{word-spacing:-0.208800px;}
.ws20_c02459{word-spacing:-0.180000px;}
.ws17_c02459{word-spacing:-0.172800px;}
.ws22_c02459{word-spacing:-0.165600px;}
.ws1f_c02459{word-spacing:-0.158400px;}
.ws1c_c02459{word-spacing:-0.136800px;}
.wsc_c02459{word-spacing:-0.129600px;}
.ws14_c02459{word-spacing:-0.115200px;}
.wsf_c02459{word-spacing:-0.108000px;}
.ws1e_c02459{word-spacing:-0.100800px;}
.wse_c02459{word-spacing:-0.093600px;}
.ws1d_c02459{word-spacing:-0.072000px;}
.ws7_c02459{word-spacing:-0.064800px;}
.ws24_c02459{word-spacing:-0.057600px;}
.ws1b_c02459{word-spacing:-0.050400px;}
.ws11_c02459{word-spacing:-0.043200px;}
.ws13_c02459{word-spacing:-0.036000px;}
.ws3_c02459{word-spacing:-0.028800px;}
.ws10_c02459{word-spacing:-0.021600px;}
.wsd_c02459{word-spacing:-0.014400px;}
.ws8_c02459{word-spacing:-0.007200px;}
.ws1_c02459{word-spacing:0.000000px;}
.ws4_c02459{word-spacing:0.014400px;}
.ws21_c02459{word-spacing:0.028800px;}
.ws2_c02459{word-spacing:0.032940px;}
.ws23_c02459{word-spacing:0.036000px;}
.ws1a_c02459{word-spacing:1.872000px;}
.ws19_c02459{word-spacing:2.059200px;}
.ws18_c02459{word-spacing:2.152800px;}
.wsa_c02459{word-spacing:13.507200px;}
.ws9_c02459{word-spacing:13.665600px;}
.ws6_c02459{word-spacing:20.440800px;}
.ws5_c02459{word-spacing:20.563200px;}
.ws16_c02459{word-spacing:40.161600px;}
.ws15_c02459{word-spacing:40.672800px;}
._0_c02459{margin-left:-1.051200px;}
.fc0_c02459{color:rgb(0,0,0);}
.fs1_c02459{font-size:65.880000px;}
.fs0_c02459{font-size:72.000000px;}
.y0_c02459{bottom:0.000000px;}
.y3_c02459{bottom:75.720882px;}
.y2_c02459{bottom:113.880225px;}
.y31_c02459{bottom:146.640450px;}
.y30_c02459{bottom:168.240450px;}
.y2f_c02459{bottom:189.840450px;}
.y2e_c02459{bottom:210.540450px;}
.y2d_c02459{bottom:231.240450px;}
.y2c_c02459{bottom:251.940450px;}
.y2b_c02459{bottom:272.640450px;}
.y2a_c02459{bottom:293.340450px;}
.y29_c02459{bottom:314.040450px;}
.y28_c02459{bottom:334.740450px;}
.y27_c02459{bottom:355.440450px;}
.y26_c02459{bottom:376.140450px;}
.y25_c02459{bottom:396.840450px;}
.y24_c02459{bottom:417.540450px;}
.y23_c02459{bottom:438.240450px;}
.y22_c02459{bottom:458.940450px;}
.y21_c02459{bottom:479.640450px;}
.y20_c02459{bottom:500.160450px;}
.y1f_c02459{bottom:521.760450px;}
.y1e_c02459{bottom:542.460450px;}
.y1d_c02459{bottom:562.980450px;}
.y1c_c02459{bottom:584.400450px;}
.y1b_c02459{bottom:623.910450px;}
.y1a_c02459{bottom:662.700450px;}
.y19_c02459{bottom:701.490450px;}
.y18_c02459{bottom:723.000450px;}
.y17_c02459{bottom:744.690450px;}
.y16_c02459{bottom:765.390450px;}
.y15_c02459{bottom:786.000450px;}
.y14_c02459{bottom:806.700450px;}
.y13_c02459{bottom:827.400450px;}
.y12_c02459{bottom:848.100450px;}
.y11_c02459{bottom:868.800450px;}
.y10_c02459{bottom:889.500450px;}
.yf_c02459{bottom:910.200450px;}
.ye_c02459{bottom:930.900450px;}
.yd_c02459{bottom:951.600450px;}
.yc_c02459{bottom:972.300450px;}
.yb_c02459{bottom:993.000450px;}
.ya_c02459{bottom:1013.700450px;}
.y9_c02459{bottom:1034.400450px;}
.y8_c02459{bottom:1054.920450px;}
.y7_c02459{bottom:1076.610450px;}
.y6_c02459{bottom:1097.310450px;}
.y5_c02459{bottom:1117.830450px;}
.y4_c02459{bottom:1139.250450px;}
.y1_c02459{bottom:1194.600450px;}
.h3_c02459{height:43.909277px;}
.h2_c02459{height:54.331699px;}
.h4_c02459{height:63.175781px;}
.h1_c02459{height:72.562500px;}
.h0_c02459{height:1263.000000px;}
.w1_c02459{width:892.500000px;}
.w0_c02459{width:892.830000px;}
.x0_c02459{left:0.000000px;}
.x4_c02459{left:125.010000px;}
.x3_c02459{left:127.619793px;}
.x1_c02459{left:134.730000px;}
.x5_c02459{left:148.860000px;}
.x2_c02459{left:442.349964px;}
@media print{
.v0_c02459{vertical-align:0.000000pt;}
.lsd_c02459{letter-spacing:-0.057600pt;}
.lsf_c02459{letter-spacing:-0.038400pt;}
.ls12_c02459{letter-spacing:-0.025600pt;}
.ls10_c02459{letter-spacing:-0.019200pt;}
.lse_c02459{letter-spacing:-0.012800pt;}
.ls11_c02459{letter-spacing:-0.006400pt;}
.lsc_c02459{letter-spacing:0.000000pt;}
.ls9_c02459{letter-spacing:0.006400pt;}
.ls4_c02459{letter-spacing:0.012800pt;}
.ls6_c02459{letter-spacing:0.019200pt;}
.ls3_c02459{letter-spacing:0.025600pt;}
.ls8_c02459{letter-spacing:0.032000pt;}
.ls7_c02459{letter-spacing:0.038400pt;}
.lsa_c02459{letter-spacing:0.044800pt;}
.lsb_c02459{letter-spacing:0.051200pt;}
.ls1_c02459{letter-spacing:0.052704pt;}
.ls5_c02459{letter-spacing:0.057600pt;}
.ls2_c02459{letter-spacing:0.070272pt;}
.ls0_c02459{letter-spacing:172.800000pt;}
.ws0_c02459{word-spacing:-15.942400pt;}
.ws12_c02459{word-spacing:-0.192000pt;}
.wsb_c02459{word-spacing:-0.185600pt;}
.ws20_c02459{word-spacing:-0.160000pt;}
.ws17_c02459{word-spacing:-0.153600pt;}
.ws22_c02459{word-spacing:-0.147200pt;}
.ws1f_c02459{word-spacing:-0.140800pt;}
.ws1c_c02459{word-spacing:-0.121600pt;}
.wsc_c02459{word-spacing:-0.115200pt;}
.ws14_c02459{word-spacing:-0.102400pt;}
.wsf_c02459{word-spacing:-0.096000pt;}
.ws1e_c02459{word-spacing:-0.089600pt;}
.wse_c02459{word-spacing:-0.083200pt;}
.ws1d_c02459{word-spacing:-0.064000pt;}
.ws7_c02459{word-spacing:-0.057600pt;}
.ws24_c02459{word-spacing:-0.051200pt;}
.ws1b_c02459{word-spacing:-0.044800pt;}
.ws11_c02459{word-spacing:-0.038400pt;}
.ws13_c02459{word-spacing:-0.032000pt;}
.ws3_c02459{word-spacing:-0.025600pt;}
.ws10_c02459{word-spacing:-0.019200pt;}
.wsd_c02459{word-spacing:-0.012800pt;}
.ws8_c02459{word-spacing:-0.006400pt;}
.ws1_c02459{word-spacing:0.000000pt;}
.ws4_c02459{word-spacing:0.012800pt;}
.ws21_c02459{word-spacing:0.025600pt;}
.ws2_c02459{word-spacing:0.029280pt;}
.ws23_c02459{word-spacing:0.032000pt;}
.ws1a_c02459{word-spacing:1.664000pt;}
.ws19_c02459{word-spacing:1.830400pt;}
.ws18_c02459{word-spacing:1.913600pt;}
.wsa_c02459{word-spacing:12.006400pt;}
.ws9_c02459{word-spacing:12.147200pt;}
.ws6_c02459{word-spacing:18.169600pt;}
.ws5_c02459{word-spacing:18.278400pt;}
.ws16_c02459{word-spacing:35.699200pt;}
.ws15_c02459{word-spacing:36.153600pt;}
._0_c02459{margin-left:-0.934400pt;}
.fs1_c02459{font-size:58.560000pt;}
.fs0_c02459{font-size:64.000000pt;}
.y0_c02459{bottom:0.000000pt;}
.y3_c02459{bottom:67.307451pt;}
.y2_c02459{bottom:101.226867pt;}
.y31_c02459{bottom:130.347067pt;}
.y30_c02459{bottom:149.547067pt;}
.y2f_c02459{bottom:168.747067pt;}
.y2e_c02459{bottom:187.147067pt;}
.y2d_c02459{bottom:205.547067pt;}
.y2c_c02459{bottom:223.947067pt;}
.y2b_c02459{bottom:242.347067pt;}
.y2a_c02459{bottom:260.747067pt;}
.y29_c02459{bottom:279.147067pt;}
.y28_c02459{bottom:297.547067pt;}
.y27_c02459{bottom:315.947067pt;}
.y26_c02459{bottom:334.347067pt;}
.y25_c02459{bottom:352.747067pt;}
.y24_c02459{bottom:371.147067pt;}
.y23_c02459{bottom:389.547067pt;}
.y22_c02459{bottom:407.947067pt;}
.y21_c02459{bottom:426.347067pt;}
.y20_c02459{bottom:444.587067pt;}
.y1f_c02459{bottom:463.787067pt;}
.y1e_c02459{bottom:482.187067pt;}
.y1d_c02459{bottom:500.427067pt;}
.y1c_c02459{bottom:519.467067pt;}
.y1b_c02459{bottom:554.587067pt;}
.y1a_c02459{bottom:589.067067pt;}
.y19_c02459{bottom:623.547067pt;}
.y18_c02459{bottom:642.667067pt;}
.y17_c02459{bottom:661.947067pt;}
.y16_c02459{bottom:680.347067pt;}
.y15_c02459{bottom:698.667067pt;}
.y14_c02459{bottom:717.067067pt;}
.y13_c02459{bottom:735.467067pt;}
.y12_c02459{bottom:753.867067pt;}
.y11_c02459{bottom:772.267067pt;}
.y10_c02459{bottom:790.667067pt;}
.yf_c02459{bottom:809.067067pt;}
.ye_c02459{bottom:827.467067pt;}
.yd_c02459{bottom:845.867067pt;}
.yc_c02459{bottom:864.267067pt;}
.yb_c02459{bottom:882.667067pt;}
.ya_c02459{bottom:901.067067pt;}
.y9_c02459{bottom:919.467067pt;}
.y8_c02459{bottom:937.707067pt;}
.y7_c02459{bottom:956.987067pt;}
.y6_c02459{bottom:975.387067pt;}
.y5_c02459{bottom:993.627067pt;}
.y4_c02459{bottom:1012.667067pt;}
.y1_c02459{bottom:1061.867067pt;}
.h3_c02459{height:39.030469pt;}
.h2_c02459{height:48.294844pt;}
.h4_c02459{height:56.156250pt;}
.h1_c02459{height:64.500000pt;}
.h0_c02459{height:1122.666667pt;}
.w1_c02459{width:793.333333pt;}
.w0_c02459{width:793.626667pt;}
.x0_c02459{left:0.000000pt;}
.x4_c02459{left:111.120000pt;}
.x3_c02459{left:113.439816pt;}
.x1_c02459{left:119.760000pt;}
.x5_c02459{left:132.320000pt;}
.x2_c02459{left:393.199968pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00733d480cfa0205af449166.woff2')format("woff");}.ff1_c02460{font-family:ff1_c02460;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02460;src:url('chunks/assets/font_0f252be849ffed392e89c5ba.woff2')format("woff");}.ff2_c02460{font-family:ff2_c02460;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02460{font-family:ff3_c02460;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_c02460;src:url('chunks/assets/font_5dccb32f319797771c50d3f8.woff2')format("woff");}.ff4_c02460{font-family:ff4_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;}
.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;}
.lsf_c02460{letter-spacing:-0.021600px;}
.lsd_c02460{letter-spacing:-0.014400px;}
.lse_c02460{letter-spacing:-0.007200px;}
.lsc_c02460{letter-spacing:0.000000px;}
.ls2_c02460{letter-spacing:0.007200px;}
.ls4_c02460{letter-spacing:0.014400px;}
.ls6_c02460{letter-spacing:0.021600px;}
.ls5_c02460{letter-spacing:0.028800px;}
.ls3_c02460{letter-spacing:0.036000px;}
.ls7_c02460{letter-spacing:0.043200px;}
.ls8_c02460{letter-spacing:0.050400px;}
.lsa_c02460{letter-spacing:0.057600px;}
.ls1_c02460{letter-spacing:0.059292px;}
.ls9_c02460{letter-spacing:0.079200px;}
.lsb_c02460{letter-spacing:0.092232px;}
.ls0_c02460{letter-spacing:194.400000px;}
.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;}
}
.ws16_c02460{word-spacing:-0.230400px;}
.wsa_c02460{word-spacing:-0.208800px;}
.ws12_c02460{word-spacing:-0.172800px;}
.ws22_c02460{word-spacing:-0.165600px;}
.wsf_c02460{word-spacing:-0.158400px;}
.ws0_c02460{word-spacing:-0.158112px;}
.ws1f_c02460{word-spacing:-0.151200px;}
.wsb_c02460{word-spacing:-0.129600px;}
.ws11_c02460{word-spacing:-0.122400px;}
.ws17_c02460{word-spacing:-0.115200px;}
.ws15_c02460{word-spacing:-0.108000px;}
.ws21_c02460{word-spacing:-0.100800px;}
.ws18_c02460{word-spacing:-0.093600px;}
.ws19_c02460{word-spacing:-0.086400px;}
.wsc_c02460{word-spacing:-0.079200px;}
.ws1e_c02460{word-spacing:-0.072000px;}
.ws20_c02460{word-spacing:-0.057600px;}
.ws14_c02460{word-spacing:-0.043200px;}
.ws13_c02460{word-spacing:-0.028800px;}
.wse_c02460{word-spacing:-0.021600px;}
.ws7_c02460{word-spacing:-0.014400px;}
.ws3_c02460{word-spacing:-0.007200px;}
.ws1_c02460{word-spacing:0.000000px;}
.ws10_c02460{word-spacing:0.007200px;}
.ws4_c02460{word-spacing:0.014400px;}
.ws1c_c02460{word-spacing:0.021600px;}
.ws2_c02460{word-spacing:0.032940px;}
.ws1d_c02460{word-spacing:0.050400px;}
.wsd_c02460{word-spacing:0.093600px;}
.ws5_c02460{word-spacing:4.284000px;}
.ws6_c02460{word-spacing:4.298400px;}
.ws1a_c02460{word-spacing:4.658400px;}
.ws1b_c02460{word-spacing:4.665600px;}
.ws9_c02460{word-spacing:13.507200px;}
.ws8_c02460{word-spacing:13.665600px;}
._0_c02460{margin-left:-1.116000px;}
.fc0_c02460{color:rgb(0,0,0);}
.fs3_c02460{font-size:11.880000px;}
.fs2_c02460{font-size:47.880000px;}
.fs1_c02460{font-size:65.880000px;}
.fs0_c02460{font-size:72.000000px;}
.y0_c02460{bottom:0.000000px;}
.y3_c02460{bottom:75.720882px;}
.y2_c02460{bottom:113.880225px;}
.y36_c02460{bottom:133.590495px;}
.y35_c02460{bottom:137.010450px;}
.y34_c02460{bottom:144.570450px;}
.y33_c02460{bottom:166.170450px;}
.y32_c02460{bottom:186.870450px;}
.y31_c02460{bottom:207.570450px;}
.y30_c02460{bottom:228.270450px;}
.y2f_c02460{bottom:248.970450px;}
.y2e_c02460{bottom:269.670450px;}
.y2d_c02460{bottom:290.370450px;}
.y2c_c02460{bottom:311.070450px;}
.y2b_c02460{bottom:331.770450px;}
.y2a_c02460{bottom:352.470450px;}
.y29_c02460{bottom:373.170450px;}
.y28_c02460{bottom:393.870450px;}
.y27_c02460{bottom:414.570450px;}
.y26_c02460{bottom:435.270450px;}
.y25_c02460{bottom:455.970450px;}
.y24_c02460{bottom:476.670450px;}
.y23_c02460{bottom:497.370450px;}
.y22_c02460{bottom:518.070450px;}
.y21_c02460{bottom:538.770450px;}
.y20_c02460{bottom:559.290450px;}
.y1f_c02460{bottom:580.890450px;}
.y1e_c02460{bottom:601.590450px;}
.y1d_c02460{bottom:622.110450px;}
.y1c_c02460{bottom:643.530450px;}
.y1b_c02460{bottom:665.760450px;}
.y1a_c02460{bottom:681.600450px;}
.y19_c02460{bottom:703.290450px;}
.y18_c02460{bottom:723.990450px;}
.y17_c02460{bottom:744.690450px;}
.y16_c02460{bottom:765.390450px;}
.y15_c02460{bottom:786.000450px;}
.y14_c02460{bottom:806.700450px;}
.y13_c02460{bottom:827.400450px;}
.y12_c02460{bottom:848.100450px;}
.y11_c02460{bottom:868.800450px;}
.y10_c02460{bottom:889.500450px;}
.yf_c02460{bottom:910.200450px;}
.ye_c02460{bottom:930.900450px;}
.yd_c02460{bottom:951.600450px;}
.yc_c02460{bottom:972.300450px;}
.yb_c02460{bottom:993.000450px;}
.ya_c02460{bottom:1013.700450px;}
.y9_c02460{bottom:1034.400450px;}
.y8_c02460{bottom:1054.920450px;}
.y7_c02460{bottom:1076.610450px;}
.y6_c02460{bottom:1097.310450px;}
.y5_c02460{bottom:1117.830450px;}
.y4_c02460{bottom:1139.250450px;}
.y1_c02460{bottom:1194.600450px;}
.h6_c02460{height:11.972812px;}
.h3_c02460{height:43.909277px;}
.h5_c02460{height:48.254063px;}
.h2_c02460{height:54.331699px;}
.h4_c02460{height:63.175781px;}
.h1_c02460{height:72.562500px;}
.h0_c02460{height:1263.000000px;}
.w1_c02460{width:892.500000px;}
.w0_c02460{width:892.830000px;}
.x0_c02460{left:0.000000px;}
.x4_c02460{left:125.010000px;}
.x3_c02460{left:127.619793px;}
.x1_c02460{left:134.730000px;}
.x5_c02460{left:148.860000px;}
.x2_c02460{left:438.120468px;}
@media print{
.v0_c02460{vertical-align:0.000000pt;}
.lsf_c02460{letter-spacing:-0.019200pt;}
.lsd_c02460{letter-spacing:-0.012800pt;}
.lse_c02460{letter-spacing:-0.006400pt;}
.lsc_c02460{letter-spacing:0.000000pt;}
.ls2_c02460{letter-spacing:0.006400pt;}
.ls4_c02460{letter-spacing:0.012800pt;}
.ls6_c02460{letter-spacing:0.019200pt;}
.ls5_c02460{letter-spacing:0.025600pt;}
.ls3_c02460{letter-spacing:0.032000pt;}
.ls7_c02460{letter-spacing:0.038400pt;}
.ls8_c02460{letter-spacing:0.044800pt;}
.lsa_c02460{letter-spacing:0.051200pt;}
.ls1_c02460{letter-spacing:0.052704pt;}
.ls9_c02460{letter-spacing:0.070400pt;}
.lsb_c02460{letter-spacing:0.081984pt;}
.ls0_c02460{letter-spacing:172.800000pt;}
.ws16_c02460{word-spacing:-0.204800pt;}
.wsa_c02460{word-spacing:-0.185600pt;}
.ws12_c02460{word-spacing:-0.153600pt;}
.ws22_c02460{word-spacing:-0.147200pt;}
.wsf_c02460{word-spacing:-0.140800pt;}
.ws0_c02460{word-spacing:-0.140544pt;}
.ws1f_c02460{word-spacing:-0.134400pt;}
.wsb_c02460{word-spacing:-0.115200pt;}
.ws11_c02460{word-spacing:-0.108800pt;}
.ws17_c02460{word-spacing:-0.102400pt;}
.ws15_c02460{word-spacing:-0.096000pt;}
.ws21_c02460{word-spacing:-0.089600pt;}
.ws18_c02460{word-spacing:-0.083200pt;}
.ws19_c02460{word-spacing:-0.076800pt;}
.wsc_c02460{word-spacing:-0.070400pt;}
.ws1e_c02460{word-spacing:-0.064000pt;}
.ws20_c02460{word-spacing:-0.051200pt;}
.ws14_c02460{word-spacing:-0.038400pt;}
.ws13_c02460{word-spacing:-0.025600pt;}
.wse_c02460{word-spacing:-0.019200pt;}
.ws7_c02460{word-spacing:-0.012800pt;}
.ws3_c02460{word-spacing:-0.006400pt;}
.ws1_c02460{word-spacing:0.000000pt;}
.ws10_c02460{word-spacing:0.006400pt;}
.ws4_c02460{word-spacing:0.012800pt;}
.ws1c_c02460{word-spacing:0.019200pt;}
.ws2_c02460{word-spacing:0.029280pt;}
.ws1d_c02460{word-spacing:0.044800pt;}
.wsd_c02460{word-spacing:0.083200pt;}
.ws5_c02460{word-spacing:3.808000pt;}
.ws6_c02460{word-spacing:3.820800pt;}
.ws1a_c02460{word-spacing:4.140800pt;}
.ws1b_c02460{word-spacing:4.147200pt;}
.ws9_c02460{word-spacing:12.006400pt;}
.ws8_c02460{word-spacing:12.147200pt;}
._0_c02460{margin-left:-0.992000pt;}
.fs3_c02460{font-size:10.560000pt;}
.fs2_c02460{font-size:42.560000pt;}
.fs1_c02460{font-size:58.560000pt;}
.fs0_c02460{font-size:64.000000pt;}
.y0_c02460{bottom:0.000000pt;}
.y3_c02460{bottom:67.307451pt;}
.y2_c02460{bottom:101.226867pt;}
.y36_c02460{bottom:118.747107pt;}
.y35_c02460{bottom:121.787067pt;}
.y34_c02460{bottom:128.507067pt;}
.y33_c02460{bottom:147.707067pt;}
.y32_c02460{bottom:166.107067pt;}
.y31_c02460{bottom:184.507067pt;}
.y30_c02460{bottom:202.907067pt;}
.y2f_c02460{bottom:221.307067pt;}
.y2e_c02460{bottom:239.707067pt;}
.y2d_c02460{bottom:258.107067pt;}
.y2c_c02460{bottom:276.507067pt;}
.y2b_c02460{bottom:294.907067pt;}
.y2a_c02460{bottom:313.307067pt;}
.y29_c02460{bottom:331.707067pt;}
.y28_c02460{bottom:350.107067pt;}
.y27_c02460{bottom:368.507067pt;}
.y26_c02460{bottom:386.907067pt;}
.y25_c02460{bottom:405.307067pt;}
.y24_c02460{bottom:423.707067pt;}
.y23_c02460{bottom:442.107067pt;}
.y22_c02460{bottom:460.507067pt;}
.y21_c02460{bottom:478.907067pt;}
.y20_c02460{bottom:497.147067pt;}
.y1f_c02460{bottom:516.347067pt;}
.y1e_c02460{bottom:534.747067pt;}
.y1d_c02460{bottom:552.987067pt;}
.y1c_c02460{bottom:572.027067pt;}
.y1b_c02460{bottom:591.787067pt;}
.y1a_c02460{bottom:605.867067pt;}
.y19_c02460{bottom:625.147067pt;}
.y18_c02460{bottom:643.547067pt;}
.y17_c02460{bottom:661.947067pt;}
.y16_c02460{bottom:680.347067pt;}
.y15_c02460{bottom:698.667067pt;}
.y14_c02460{bottom:717.067067pt;}
.y13_c02460{bottom:735.467067pt;}
.y12_c02460{bottom:753.867067pt;}
.y11_c02460{bottom:772.267067pt;}
.y10_c02460{bottom:790.667067pt;}
.yf_c02460{bottom:809.067067pt;}
.ye_c02460{bottom:827.467067pt;}
.yd_c02460{bottom:845.867067pt;}
.yc_c02460{bottom:864.267067pt;}
.yb_c02460{bottom:882.667067pt;}
.ya_c02460{bottom:901.067067pt;}
.y9_c02460{bottom:919.467067pt;}
.y8_c02460{bottom:937.707067pt;}
.y7_c02460{bottom:956.987067pt;}
.y6_c02460{bottom:975.387067pt;}
.y5_c02460{bottom:993.627067pt;}
.y4_c02460{bottom:1012.667067pt;}
.y1_c02460{bottom:1061.867067pt;}
.h6_c02460{height:10.642500pt;}
.h3_c02460{height:39.030469pt;}
.h5_c02460{height:42.892500pt;}
.h2_c02460{height:48.294844pt;}
.h4_c02460{height:56.156250pt;}
.h1_c02460{height:64.500000pt;}
.h0_c02460{height:1122.666667pt;}
.w1_c02460{width:793.333333pt;}
.w0_c02460{width:793.626667pt;}
.x0_c02460{left:0.000000pt;}
.x4_c02460{left:111.120000pt;}
.x3_c02460{left:113.439816pt;}
.x1_c02460{left:119.760000pt;}
.x5_c02460{left:132.320000pt;}
.x2_c02460{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6a9fcb7ce2ce5c72181cc32.woff2')format("woff");}.ff1_c02461{font-family:ff1_c02461;line-height:1.311035;font-style:normal;font-weight:normal;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_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff2_c02461{font-family:ff2_c02461;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02461{font-family:ff3_c02461;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_c02461;src:url('chunks/assets/font_f0f3c528cb661140f4cbd8fe.woff2')format("woff");}.ff4_c02461{font-family:ff4_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;}
.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;}
.lse_c02461{letter-spacing:-0.028800px;}
.ls11_c02461{letter-spacing:-0.021600px;}
.lsf_c02461{letter-spacing:-0.014400px;}
.ls10_c02461{letter-spacing:-0.007200px;}
.lsd_c02461{letter-spacing:0.000000px;}
.ls4_c02461{letter-spacing:0.007200px;}
.ls2_c02461{letter-spacing:0.014400px;}
.ls9_c02461{letter-spacing:0.021600px;}
.ls7_c02461{letter-spacing:0.028800px;}
.ls3_c02461{letter-spacing:0.036000px;}
.ls5_c02461{letter-spacing:0.043200px;}
.lsa_c02461{letter-spacing:0.050400px;}
.ls6_c02461{letter-spacing:0.057600px;}
.ls1_c02461{letter-spacing:0.059292px;}
.ls8_c02461{letter-spacing:0.072000px;}
.lsb_c02461{letter-spacing:0.079200px;}
.lsc_c02461{letter-spacing:0.092232px;}
.ls0_c02461{letter-spacing:194.400000px;}
.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;}
}
.ws16_c02461{word-spacing:-0.439200px;}
.ws13_c02461{word-spacing:-0.352800px;}
.ws1a_c02461{word-spacing:-0.216000px;}
.wsd_c02461{word-spacing:-0.208800px;}
.ws11_c02461{word-spacing:-0.187200px;}
.ws1b_c02461{word-spacing:-0.158400px;}
.ws0_c02461{word-spacing:-0.158112px;}
.wse_c02461{word-spacing:-0.136800px;}
.wsf_c02461{word-spacing:-0.129600px;}
.ws12_c02461{word-spacing:-0.115200px;}
.ws18_c02461{word-spacing:-0.093600px;}
.ws4_c02461{word-spacing:-0.086400px;}
.ws8_c02461{word-spacing:-0.079200px;}
.ws14_c02461{word-spacing:-0.050400px;}
.ws9_c02461{word-spacing:-0.043200px;}
.ws15_c02461{word-spacing:-0.028800px;}
.ws10_c02461{word-spacing:-0.021600px;}
.ws3_c02461{word-spacing:-0.014400px;}
.wsa_c02461{word-spacing:-0.007200px;}
.ws1_c02461{word-spacing:0.000000px;}
.ws19_c02461{word-spacing:0.007200px;}
.ws5_c02461{word-spacing:0.014400px;}
.ws17_c02461{word-spacing:0.028800px;}
.ws2_c02461{word-spacing:0.032940px;}
.ws6_c02461{word-spacing:5.270400px;}
.ws7_c02461{word-spacing:5.306400px;}
.wsc_c02461{word-spacing:21.492000px;}
.wsb_c02461{word-spacing:21.542400px;}
._0_c02461{margin-left:-1.123200px;}
.fc0_c02461{color:rgb(0,0,0);}
.fs1_c02461{font-size:65.880000px;}
.fs0_c02461{font-size:72.000000px;}
.y0_c02461{bottom:0.000000px;}
.y3_c02461{bottom:75.720882px;}
.y2_c02461{bottom:113.880225px;}
.y28_c02461{bottom:155.640450px;}
.y27_c02461{bottom:194.430450px;}
.y26_c02461{bottom:233.220450px;}
.y25_c02461{bottom:272.100450px;}
.y24_c02461{bottom:310.890450px;}
.y23_c02461{bottom:349.680450px;}
.y22_c02461{bottom:388.470450px;}
.y21_c02461{bottom:427.260450px;}
.y20_c02461{bottom:466.050450px;}
.y1f_c02461{bottom:504.840450px;}
.y1e_c02461{bottom:543.720450px;}
.y1d_c02461{bottom:582.510450px;}
.y1c_c02461{bottom:621.300450px;}
.y1b_c02461{bottom:660.090450px;}
.y1a_c02461{bottom:681.600450px;}
.y19_c02461{bottom:703.290450px;}
.y18_c02461{bottom:723.990450px;}
.y17_c02461{bottom:744.690450px;}
.y16_c02461{bottom:765.390450px;}
.y15_c02461{bottom:786.000450px;}
.y14_c02461{bottom:806.700450px;}
.y13_c02461{bottom:827.400450px;}
.y12_c02461{bottom:848.100450px;}
.y11_c02461{bottom:868.800450px;}
.y10_c02461{bottom:889.500450px;}
.yf_c02461{bottom:910.200450px;}
.ye_c02461{bottom:930.900450px;}
.yd_c02461{bottom:951.600450px;}
.yc_c02461{bottom:972.300450px;}
.yb_c02461{bottom:993.000450px;}
.ya_c02461{bottom:1013.700450px;}
.y9_c02461{bottom:1034.400450px;}
.y8_c02461{bottom:1054.920450px;}
.y7_c02461{bottom:1076.610450px;}
.y6_c02461{bottom:1097.310450px;}
.y5_c02461{bottom:1117.830450px;}
.y4_c02461{bottom:1139.250450px;}
.y1_c02461{bottom:1194.600450px;}
.h3_c02461{height:43.909277px;}
.h2_c02461{height:54.331699px;}
.h4_c02461{height:63.175781px;}
.h1_c02461{height:72.562500px;}
.h0_c02461{height:1263.000000px;}
.w1_c02461{width:892.500000px;}
.w0_c02461{width:892.830000px;}
.x0_c02461{left:0.000000px;}
.x4_c02461{left:125.010000px;}
.x3_c02461{left:127.619793px;}
.x1_c02461{left:134.730000px;}
.x5_c02461{left:148.860000px;}
.x2_c02461{left:438.120468px;}
@media print{
.v0_c02461{vertical-align:0.000000pt;}
.lse_c02461{letter-spacing:-0.025600pt;}
.ls11_c02461{letter-spacing:-0.019200pt;}
.lsf_c02461{letter-spacing:-0.012800pt;}
.ls10_c02461{letter-spacing:-0.006400pt;}
.lsd_c02461{letter-spacing:0.000000pt;}
.ls4_c02461{letter-spacing:0.006400pt;}
.ls2_c02461{letter-spacing:0.012800pt;}
.ls9_c02461{letter-spacing:0.019200pt;}
.ls7_c02461{letter-spacing:0.025600pt;}
.ls3_c02461{letter-spacing:0.032000pt;}
.ls5_c02461{letter-spacing:0.038400pt;}
.lsa_c02461{letter-spacing:0.044800pt;}
.ls6_c02461{letter-spacing:0.051200pt;}
.ls1_c02461{letter-spacing:0.052704pt;}
.ls8_c02461{letter-spacing:0.064000pt;}
.lsb_c02461{letter-spacing:0.070400pt;}
.lsc_c02461{letter-spacing:0.081984pt;}
.ls0_c02461{letter-spacing:172.800000pt;}
.ws16_c02461{word-spacing:-0.390400pt;}
.ws13_c02461{word-spacing:-0.313600pt;}
.ws1a_c02461{word-spacing:-0.192000pt;}
.wsd_c02461{word-spacing:-0.185600pt;}
.ws11_c02461{word-spacing:-0.166400pt;}
.ws1b_c02461{word-spacing:-0.140800pt;}
.ws0_c02461{word-spacing:-0.140544pt;}
.wse_c02461{word-spacing:-0.121600pt;}
.wsf_c02461{word-spacing:-0.115200pt;}
.ws12_c02461{word-spacing:-0.102400pt;}
.ws18_c02461{word-spacing:-0.083200pt;}
.ws4_c02461{word-spacing:-0.076800pt;}
.ws8_c02461{word-spacing:-0.070400pt;}
.ws14_c02461{word-spacing:-0.044800pt;}
.ws9_c02461{word-spacing:-0.038400pt;}
.ws15_c02461{word-spacing:-0.025600pt;}
.ws10_c02461{word-spacing:-0.019200pt;}
.ws3_c02461{word-spacing:-0.012800pt;}
.wsa_c02461{word-spacing:-0.006400pt;}
.ws1_c02461{word-spacing:0.000000pt;}
.ws19_c02461{word-spacing:0.006400pt;}
.ws5_c02461{word-spacing:0.012800pt;}
.ws17_c02461{word-spacing:0.025600pt;}
.ws2_c02461{word-spacing:0.029280pt;}
.ws6_c02461{word-spacing:4.684800pt;}
.ws7_c02461{word-spacing:4.716800pt;}
.wsc_c02461{word-spacing:19.104000pt;}
.wsb_c02461{word-spacing:19.148800pt;}
._0_c02461{margin-left:-0.998400pt;}
.fs1_c02461{font-size:58.560000pt;}
.fs0_c02461{font-size:64.000000pt;}
.y0_c02461{bottom:0.000000pt;}
.y3_c02461{bottom:67.307451pt;}
.y2_c02461{bottom:101.226867pt;}
.y28_c02461{bottom:138.347067pt;}
.y27_c02461{bottom:172.827067pt;}
.y26_c02461{bottom:207.307067pt;}
.y25_c02461{bottom:241.867067pt;}
.y24_c02461{bottom:276.347067pt;}
.y23_c02461{bottom:310.827067pt;}
.y22_c02461{bottom:345.307067pt;}
.y21_c02461{bottom:379.787067pt;}
.y20_c02461{bottom:414.267067pt;}
.y1f_c02461{bottom:448.747067pt;}
.y1e_c02461{bottom:483.307067pt;}
.y1d_c02461{bottom:517.787067pt;}
.y1c_c02461{bottom:552.267067pt;}
.y1b_c02461{bottom:586.747067pt;}
.y1a_c02461{bottom:605.867067pt;}
.y19_c02461{bottom:625.147067pt;}
.y18_c02461{bottom:643.547067pt;}
.y17_c02461{bottom:661.947067pt;}
.y16_c02461{bottom:680.347067pt;}
.y15_c02461{bottom:698.667067pt;}
.y14_c02461{bottom:717.067067pt;}
.y13_c02461{bottom:735.467067pt;}
.y12_c02461{bottom:753.867067pt;}
.y11_c02461{bottom:772.267067pt;}
.y10_c02461{bottom:790.667067pt;}
.yf_c02461{bottom:809.067067pt;}
.ye_c02461{bottom:827.467067pt;}
.yd_c02461{bottom:845.867067pt;}
.yc_c02461{bottom:864.267067pt;}
.yb_c02461{bottom:882.667067pt;}
.ya_c02461{bottom:901.067067pt;}
.y9_c02461{bottom:919.467067pt;}
.y8_c02461{bottom:937.707067pt;}
.y7_c02461{bottom:956.987067pt;}
.y6_c02461{bottom:975.387067pt;}
.y5_c02461{bottom:993.627067pt;}
.y4_c02461{bottom:1012.667067pt;}
.y1_c02461{bottom:1061.867067pt;}
.h3_c02461{height:39.030469pt;}
.h2_c02461{height:48.294844pt;}
.h4_c02461{height:56.156250pt;}
.h1_c02461{height:64.500000pt;}
.h0_c02461{height:1122.666667pt;}
.w1_c02461{width:793.333333pt;}
.w0_c02461{width:793.626667pt;}
.x0_c02461{left:0.000000pt;}
.x4_c02461{left:111.120000pt;}
.x3_c02461{left:113.439816pt;}
.x1_c02461{left:119.760000pt;}
.x5_c02461{left:132.320000pt;}
.x2_c02461{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_032b7246982d97a78030f833.woff2')format("woff");}.ff1_c02462{font-family:ff1_c02462;line-height:1.311035;font-style:normal;font-weight:normal;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_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff2_c02462{font-family:ff2_c02462;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02462{font-family:ff3_c02462;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_c02462;src:url('chunks/assets/font_0db8fb602ac0d4021232c752.woff2')format("woff");}.ff4_c02462{font-family:ff4_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:ff5_c02462;src:url('chunks/assets/font_59848e8dd092636766aec9f4.woff2')format("woff");}.ff5_c02462{font-family:ff5_c02462;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;}
.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;}
.ls14_c02462{letter-spacing:-0.021600px;}
.ls13_c02462{letter-spacing:-0.014400px;}
.ls12_c02462{letter-spacing:-0.007200px;}
.ls11_c02462{letter-spacing:0.000000px;}
.ls2_c02462{letter-spacing:0.007200px;}
.ls4_c02462{letter-spacing:0.014400px;}
.ls3_c02462{letter-spacing:0.021600px;}
.lsa_c02462{letter-spacing:0.028800px;}
.ls5_c02462{letter-spacing:0.036000px;}
.ls8_c02462{letter-spacing:0.043200px;}
.ls7_c02462{letter-spacing:0.057600px;}
.ls1_c02462{letter-spacing:0.059292px;}
.lsd_c02462{letter-spacing:0.065880px;}
.ls9_c02462{letter-spacing:0.072000px;}
.lsf_c02462{letter-spacing:0.072468px;}
.lsb_c02462{letter-spacing:0.079200px;}
.lse_c02462{letter-spacing:0.085644px;}
.ls10_c02462{letter-spacing:0.092232px;}
.ls6_c02462{letter-spacing:0.093600px;}
.lsc_c02462{letter-spacing:0.171288px;}
.ls0_c02462{letter-spacing:194.400000px;}
.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;}
}
.ws1_c02462{word-spacing:-72.000000px;}
.ws17_c02462{word-spacing:-0.252000px;}
.ws1b_c02462{word-spacing:-0.216000px;}
.wsa_c02462{word-spacing:-0.165600px;}
.ws0_c02462{word-spacing:-0.158112px;}
.ws13_c02462{word-spacing:-0.136800px;}
.ws16_c02462{word-spacing:-0.079200px;}
.wsd_c02462{word-spacing:-0.057600px;}
.ws9_c02462{word-spacing:-0.036000px;}
.ws12_c02462{word-spacing:-0.028800px;}
.ws11_c02462{word-spacing:-0.021600px;}
.ws14_c02462{word-spacing:-0.014400px;}
.ws5_c02462{word-spacing:-0.007200px;}
.ws2_c02462{word-spacing:0.000000px;}
.ws1d_c02462{word-spacing:0.006588px;}
.ws4_c02462{word-spacing:0.007200px;}
.ws6_c02462{word-spacing:0.014400px;}
.ws1e_c02462{word-spacing:0.019764px;}
.ws18_c02462{word-spacing:0.021600px;}
.ws1c_c02462{word-spacing:0.026352px;}
.ws10_c02462{word-spacing:0.028800px;}
.ws3_c02462{word-spacing:0.032940px;}
.ws15_c02462{word-spacing:3.211200px;}
.wsc_c02462{word-spacing:17.517600px;}
.ws7_c02462{word-spacing:17.618400px;}
.ws8_c02462{word-spacing:17.625600px;}
.wsb_c02462{word-spacing:17.683200px;}
.ws19_c02462{word-spacing:22.932000px;}
.ws1a_c02462{word-spacing:22.982400px;}
.wsf_c02462{word-spacing:25.488000px;}
.wse_c02462{word-spacing:25.538400px;}
._0_c02462{margin-left:-1.188000px;}
.fc0_c02462{color:rgb(0,0,0);}
.fs2_c02462{font-size:47.880000px;}
.fs1_c02462{font-size:65.880000px;}
.fs0_c02462{font-size:72.000000px;}
.y0_c02462{bottom:0.000000px;}
.y3_c02462{bottom:75.720882px;}
.y2_c02462{bottom:113.880225px;}
.y2f_c02462{bottom:135.390450px;}
.y2e_c02462{bottom:174.180450px;}
.y2d_c02462{bottom:195.780600px;}
.y2c_c02462{bottom:217.020450px;}
.y2b_c02462{bottom:236.370450px;}
.y2a_c02462{bottom:256.890450px;}
.y29_c02462{bottom:278.490600px;}
.y28_c02462{bottom:299.190600px;}
.y27_c02462{bottom:319.710600px;}
.y26_c02462{bottom:341.130450px;}
.y25_c02462{bottom:378.481017px;}
.y24_c02462{bottom:409.350450px;}
.y23_c02462{bottom:425.100450px;}
.y22_c02462{bottom:446.700450px;}
.y21_c02462{bottom:467.400450px;}
.y20_c02462{bottom:487.920450px;}
.y1f_c02462{bottom:509.520450px;}
.y1e_c02462{bottom:530.220450px;}
.y1d_c02462{bottom:550.740450px;}
.y1c_c02462{bottom:572.250450px;}
.y1b_c02462{bottom:609.511017px;}
.y1a_c02462{bottom:640.380450px;}
.y19_c02462{bottom:656.130450px;}
.y18_c02462{bottom:677.820450px;}
.y17_c02462{bottom:698.520450px;}
.y16_c02462{bottom:719.220450px;}
.y15_c02462{bottom:739.740450px;}
.y14_c02462{bottom:761.340450px;}
.y13_c02462{bottom:782.040450px;}
.y12_c02462{bottom:802.740450px;}
.y11_c02462{bottom:823.260450px;}
.y10_c02462{bottom:844.680600px;}
.yf_c02462{bottom:879.960810px;}
.ye_c02462{bottom:908.760630px;}
.yd_c02462{bottom:937.560450px;}
.yc_c02462{bottom:953.310450px;}
.yb_c02462{bottom:974.910450px;}
.ya_c02462{bottom:995.610450px;}
.y9_c02462{bottom:1016.130450px;}
.y8_c02462{bottom:1037.730450px;}
.y7_c02462{bottom:1058.430450px;}
.y6_c02462{bottom:1078.950450px;}
.y5_c02462{bottom:1100.460450px;}
.y4_c02462{bottom:1139.880450px;}
.y1_c02462{bottom:1194.600450px;}
.h3_c02462{height:43.909277px;}
.h5_c02462{height:48.254063px;}
.h2_c02462{height:54.331699px;}
.h6_c02462{height:57.805840px;}
.h4_c02462{height:63.175781px;}
.h1_c02462{height:72.562500px;}
.h0_c02462{height:1263.000000px;}
.w1_c02462{width:892.500000px;}
.w0_c02462{width:892.830000px;}
.x0_c02462{left:0.000000px;}
.x3_c02462{left:127.619793px;}
.x1_c02462{left:134.730000px;}
.x4_c02462{left:148.950000px;}
.x2_c02462{left:438.120468px;}
@media print{
.v0_c02462{vertical-align:0.000000pt;}
.ls14_c02462{letter-spacing:-0.019200pt;}
.ls13_c02462{letter-spacing:-0.012800pt;}
.ls12_c02462{letter-spacing:-0.006400pt;}
.ls11_c02462{letter-spacing:0.000000pt;}
.ls2_c02462{letter-spacing:0.006400pt;}
.ls4_c02462{letter-spacing:0.012800pt;}
.ls3_c02462{letter-spacing:0.019200pt;}
.lsa_c02462{letter-spacing:0.025600pt;}
.ls5_c02462{letter-spacing:0.032000pt;}
.ls8_c02462{letter-spacing:0.038400pt;}
.ls7_c02462{letter-spacing:0.051200pt;}
.ls1_c02462{letter-spacing:0.052704pt;}
.lsd_c02462{letter-spacing:0.058560pt;}
.ls9_c02462{letter-spacing:0.064000pt;}
.lsf_c02462{letter-spacing:0.064416pt;}
.lsb_c02462{letter-spacing:0.070400pt;}
.lse_c02462{letter-spacing:0.076128pt;}
.ls10_c02462{letter-spacing:0.081984pt;}
.ls6_c02462{letter-spacing:0.083200pt;}
.lsc_c02462{letter-spacing:0.152256pt;}
.ls0_c02462{letter-spacing:172.800000pt;}
.ws1_c02462{word-spacing:-64.000000pt;}
.ws17_c02462{word-spacing:-0.224000pt;}
.ws1b_c02462{word-spacing:-0.192000pt;}
.wsa_c02462{word-spacing:-0.147200pt;}
.ws0_c02462{word-spacing:-0.140544pt;}
.ws13_c02462{word-spacing:-0.121600pt;}
.ws16_c02462{word-spacing:-0.070400pt;}
.wsd_c02462{word-spacing:-0.051200pt;}
.ws9_c02462{word-spacing:-0.032000pt;}
.ws12_c02462{word-spacing:-0.025600pt;}
.ws11_c02462{word-spacing:-0.019200pt;}
.ws14_c02462{word-spacing:-0.012800pt;}
.ws5_c02462{word-spacing:-0.006400pt;}
.ws2_c02462{word-spacing:0.000000pt;}
.ws1d_c02462{word-spacing:0.005856pt;}
.ws4_c02462{word-spacing:0.006400pt;}
.ws6_c02462{word-spacing:0.012800pt;}
.ws1e_c02462{word-spacing:0.017568pt;}
.ws18_c02462{word-spacing:0.019200pt;}
.ws1c_c02462{word-spacing:0.023424pt;}
.ws10_c02462{word-spacing:0.025600pt;}
.ws3_c02462{word-spacing:0.029280pt;}
.ws15_c02462{word-spacing:2.854400pt;}
.wsc_c02462{word-spacing:15.571200pt;}
.ws7_c02462{word-spacing:15.660800pt;}
.ws8_c02462{word-spacing:15.667200pt;}
.wsb_c02462{word-spacing:15.718400pt;}
.ws19_c02462{word-spacing:20.384000pt;}
.ws1a_c02462{word-spacing:20.428800pt;}
.wsf_c02462{word-spacing:22.656000pt;}
.wse_c02462{word-spacing:22.700800pt;}
._0_c02462{margin-left:-1.056000pt;}
.fs2_c02462{font-size:42.560000pt;}
.fs1_c02462{font-size:58.560000pt;}
.fs0_c02462{font-size:64.000000pt;}
.y0_c02462{bottom:0.000000pt;}
.y3_c02462{bottom:67.307451pt;}
.y2_c02462{bottom:101.226867pt;}
.y2f_c02462{bottom:120.347067pt;}
.y2e_c02462{bottom:154.827067pt;}
.y2d_c02462{bottom:174.027200pt;}
.y2c_c02462{bottom:192.907067pt;}
.y2b_c02462{bottom:210.107067pt;}
.y2a_c02462{bottom:228.347067pt;}
.y29_c02462{bottom:247.547200pt;}
.y28_c02462{bottom:265.947200pt;}
.y27_c02462{bottom:284.187200pt;}
.y26_c02462{bottom:303.227067pt;}
.y25_c02462{bottom:336.427571pt;}
.y24_c02462{bottom:363.867067pt;}
.y23_c02462{bottom:377.867067pt;}
.y22_c02462{bottom:397.067067pt;}
.y21_c02462{bottom:415.467067pt;}
.y20_c02462{bottom:433.707067pt;}
.y1f_c02462{bottom:452.907067pt;}
.y1e_c02462{bottom:471.307067pt;}
.y1d_c02462{bottom:489.547067pt;}
.y1c_c02462{bottom:508.667067pt;}
.y1b_c02462{bottom:541.787571pt;}
.y1a_c02462{bottom:569.227067pt;}
.y19_c02462{bottom:583.227067pt;}
.y18_c02462{bottom:602.507067pt;}
.y17_c02462{bottom:620.907067pt;}
.y16_c02462{bottom:639.307067pt;}
.y15_c02462{bottom:657.547067pt;}
.y14_c02462{bottom:676.747067pt;}
.y13_c02462{bottom:695.147067pt;}
.y12_c02462{bottom:713.547067pt;}
.y11_c02462{bottom:731.787067pt;}
.y10_c02462{bottom:750.827200pt;}
.yf_c02462{bottom:782.187387pt;}
.ye_c02462{bottom:807.787227pt;}
.yd_c02462{bottom:833.387067pt;}
.yc_c02462{bottom:847.387067pt;}
.yb_c02462{bottom:866.587067pt;}
.ya_c02462{bottom:884.987067pt;}
.y9_c02462{bottom:903.227067pt;}
.y8_c02462{bottom:922.427067pt;}
.y7_c02462{bottom:940.827067pt;}
.y6_c02462{bottom:959.067067pt;}
.y5_c02462{bottom:978.187067pt;}
.y4_c02462{bottom:1013.227067pt;}
.y1_c02462{bottom:1061.867067pt;}
.h3_c02462{height:39.030469pt;}
.h5_c02462{height:42.892500pt;}
.h2_c02462{height:48.294844pt;}
.h6_c02462{height:51.382969pt;}
.h4_c02462{height:56.156250pt;}
.h1_c02462{height:64.500000pt;}
.h0_c02462{height:1122.666667pt;}
.w1_c02462{width:793.333333pt;}
.w0_c02462{width:793.626667pt;}
.x0_c02462{left:0.000000pt;}
.x3_c02462{left:113.439816pt;}
.x1_c02462{left:119.760000pt;}
.x4_c02462{left:132.400000pt;}
.x2_c02462{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbca11209082840aa9e2458a.woff2')format("woff");}.ff1_c02463{font-family:ff1_c02463;line-height:1.311035;font-style:normal;font-weight:normal;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_1173b3c28a9f02d90484542e.woff2')format("woff");}.ff2_c02463{font-family:ff2_c02463;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02463{font-family:ff3_c02463;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_c02463;src:url('chunks/assets/font_7f0711f34abb5ff8b8e41e75.woff2')format("woff");}.ff4_c02463{font-family:ff4_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:ff5_c02463;src:url('chunks/assets/font_59848e8dd092636766aec9f4.woff2')format("woff");}.ff5_c02463{font-family:ff5_c02463;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;}
.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;}
.ls12_c02463{letter-spacing:-0.072000px;}
.ls16_c02463{letter-spacing:-0.043200px;}
.ls15_c02463{letter-spacing:-0.028800px;}
.ls14_c02463{letter-spacing:-0.021600px;}
.ls11_c02463{letter-spacing:-0.014400px;}
.ls13_c02463{letter-spacing:-0.007200px;}
.ls10_c02463{letter-spacing:0.000000px;}
.ls8_c02463{letter-spacing:0.007200px;}
.lsd_c02463{letter-spacing:0.014400px;}
.ls4_c02463{letter-spacing:0.021600px;}
.ls6_c02463{letter-spacing:0.028800px;}
.ls3_c02463{letter-spacing:0.036000px;}
.ls2_c02463{letter-spacing:0.043200px;}
.lsa_c02463{letter-spacing:0.050400px;}
.ls5_c02463{letter-spacing:0.057600px;}
.ls1_c02463{letter-spacing:0.059292px;}
.lsb_c02463{letter-spacing:0.064800px;}
.ls7_c02463{letter-spacing:0.072000px;}
.lse_c02463{letter-spacing:0.079200px;}
.lsc_c02463{letter-spacing:0.086400px;}
.lsf_c02463{letter-spacing:0.092232px;}
.ls9_c02463{letter-spacing:0.100800px;}
.ls0_c02463{letter-spacing:194.400000px;}
.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;}
}
.ws1d_c02463{word-spacing:-0.194400px;}
.ws1e_c02463{word-spacing:-0.172800px;}
.ws14_c02463{word-spacing:-0.158400px;}
.ws0_c02463{word-spacing:-0.158112px;}
.ws29_c02463{word-spacing:-0.151200px;}
.ws1f_c02463{word-spacing:-0.144000px;}
.wsf_c02463{word-spacing:-0.136800px;}
.ws2a_c02463{word-spacing:-0.115200px;}
.wsa_c02463{word-spacing:-0.100800px;}
.ws2b_c02463{word-spacing:-0.086400px;}
.ws1c_c02463{word-spacing:-0.043200px;}
.ws1b_c02463{word-spacing:-0.036000px;}
.wsd_c02463{word-spacing:-0.021600px;}
.ws15_c02463{word-spacing:-0.014400px;}
.ws3_c02463{word-spacing:-0.007200px;}
.ws1_c02463{word-spacing:0.000000px;}
.ws20_c02463{word-spacing:0.007200px;}
.ws4_c02463{word-spacing:0.014400px;}
.wse_c02463{word-spacing:0.021600px;}
.ws2_c02463{word-spacing:0.032940px;}
.ws9_c02463{word-spacing:1.620000px;}
.ws8_c02463{word-spacing:1.778400px;}
.ws2c_c02463{word-spacing:2.476800px;}
.ws2d_c02463{word-spacing:2.512800px;}
.ws6_c02463{word-spacing:4.521600px;}
.ws5_c02463{word-spacing:4.636800px;}
.ws7_c02463{word-spacing:4.752000px;}
.ws26_c02463{word-spacing:8.452800px;}
.ws28_c02463{word-spacing:8.517600px;}
.ws27_c02463{word-spacing:8.625600px;}
.ws1a_c02463{word-spacing:8.942400px;}
.ws19_c02463{word-spacing:9.043200px;}
.wsb_c02463{word-spacing:10.389600px;}
.wsc_c02463{word-spacing:10.454400px;}
.ws17_c02463{word-spacing:13.514400px;}
.ws16_c02463{word-spacing:13.636800px;}
.ws18_c02463{word-spacing:13.658400px;}
.ws24_c02463{word-spacing:21.787200px;}
.ws25_c02463{word-spacing:21.859200px;}
.ws23_c02463{word-spacing:21.866400px;}
.ws13_c02463{word-spacing:26.107200px;}
.ws10_c02463{word-spacing:26.121600px;}
.ws12_c02463{word-spacing:26.229600px;}
.ws11_c02463{word-spacing:26.244000px;}
.ws21_c02463{word-spacing:30.758400px;}
.ws22_c02463{word-spacing:31.003200px;}
._0_c02463{margin-left:-1.008000px;}
.fc0_c02463{color:rgb(0,0,0);}
.fs1_c02463{font-size:65.880000px;}
.fs0_c02463{font-size:72.000000px;}
.y0_c02463{bottom:0.000000px;}
.y3_c02463{bottom:75.720882px;}
.y2_c02463{bottom:113.880225px;}
.y34_c02463{bottom:135.210450px;}
.y33_c02463{bottom:155.910450px;}
.y32_c02463{bottom:176.610450px;}
.y31_c02463{bottom:197.310450px;}
.y30_c02463{bottom:218.730450px;}
.y2f_c02463{bottom:240.420450px;}
.y2e_c02463{bottom:261.120450px;}
.y2d_c02463{bottom:281.820450px;}
.y2c_c02463{bottom:302.520450px;}
.y2b_c02463{bottom:323.220450px;}
.y2a_c02463{bottom:343.740450px;}
.y29_c02463{bottom:365.340600px;}
.y28_c02463{bottom:386.040600px;}
.y27_c02463{bottom:406.740600px;}
.y26_c02463{bottom:427.440600px;}
.y25_c02463{bottom:447.960600px;}
.y24_c02463{bottom:469.380450px;}
.y23_c02463{bottom:490.800450px;}
.y22_c02463{bottom:511.500450px;}
.y21_c02463{bottom:532.200450px;}
.y20_c02463{bottom:552.900450px;}
.y1f_c02463{bottom:574.410450px;}
.y1e_c02463{bottom:596.010450px;}
.y1d_c02463{bottom:616.710450px;}
.y1c_c02463{bottom:637.410450px;}
.y1b_c02463{bottom:658.110450px;}
.y1a_c02463{bottom:678.630450px;}
.y19_c02463{bottom:700.230450px;}
.y18_c02463{bottom:720.930450px;}
.y17_c02463{bottom:741.450450px;}
.y16_c02463{bottom:762.960450px;}
.y15_c02463{bottom:784.380450px;}
.y14_c02463{bottom:805.080450px;}
.y13_c02463{bottom:825.780450px;}
.y12_c02463{bottom:846.480450px;}
.y11_c02463{bottom:867.900450px;}
.y10_c02463{bottom:889.500450px;}
.yf_c02463{bottom:910.200450px;}
.ye_c02463{bottom:930.900450px;}
.yd_c02463{bottom:951.600450px;}
.yc_c02463{bottom:972.300450px;}
.yb_c02463{bottom:993.000450px;}
.ya_c02463{bottom:1013.700450px;}
.y9_c02463{bottom:1034.220450px;}
.y8_c02463{bottom:1055.910450px;}
.y7_c02463{bottom:1076.610450px;}
.y6_c02463{bottom:1097.310450px;}
.y5_c02463{bottom:1117.830450px;}
.y4_c02463{bottom:1139.250450px;}
.y1_c02463{bottom:1194.600450px;}
.h3_c02463{height:43.909277px;}
.h2_c02463{height:54.331699px;}
.h4_c02463{height:63.175781px;}
.h1_c02463{height:72.562500px;}
.h0_c02463{height:1263.000000px;}
.w1_c02463{width:892.500000px;}
.w0_c02463{width:892.830000px;}
.x0_c02463{left:0.000000px;}
.x5_c02463{left:125.010000px;}
.x3_c02463{left:127.619793px;}
.x1_c02463{left:134.730000px;}
.x4_c02463{left:148.950000px;}
.x2_c02463{left:438.120468px;}
@media print{
.v0_c02463{vertical-align:0.000000pt;}
.ls12_c02463{letter-spacing:-0.064000pt;}
.ls16_c02463{letter-spacing:-0.038400pt;}
.ls15_c02463{letter-spacing:-0.025600pt;}
.ls14_c02463{letter-spacing:-0.019200pt;}
.ls11_c02463{letter-spacing:-0.012800pt;}
.ls13_c02463{letter-spacing:-0.006400pt;}
.ls10_c02463{letter-spacing:0.000000pt;}
.ls8_c02463{letter-spacing:0.006400pt;}
.lsd_c02463{letter-spacing:0.012800pt;}
.ls4_c02463{letter-spacing:0.019200pt;}
.ls6_c02463{letter-spacing:0.025600pt;}
.ls3_c02463{letter-spacing:0.032000pt;}
.ls2_c02463{letter-spacing:0.038400pt;}
.lsa_c02463{letter-spacing:0.044800pt;}
.ls5_c02463{letter-spacing:0.051200pt;}
.ls1_c02463{letter-spacing:0.052704pt;}
.lsb_c02463{letter-spacing:0.057600pt;}
.ls7_c02463{letter-spacing:0.064000pt;}
.lse_c02463{letter-spacing:0.070400pt;}
.lsc_c02463{letter-spacing:0.076800pt;}
.lsf_c02463{letter-spacing:0.081984pt;}
.ls9_c02463{letter-spacing:0.089600pt;}
.ls0_c02463{letter-spacing:172.800000pt;}
.ws1d_c02463{word-spacing:-0.172800pt;}
.ws1e_c02463{word-spacing:-0.153600pt;}
.ws14_c02463{word-spacing:-0.140800pt;}
.ws0_c02463{word-spacing:-0.140544pt;}
.ws29_c02463{word-spacing:-0.134400pt;}
.ws1f_c02463{word-spacing:-0.128000pt;}
.wsf_c02463{word-spacing:-0.121600pt;}
.ws2a_c02463{word-spacing:-0.102400pt;}
.wsa_c02463{word-spacing:-0.089600pt;}
.ws2b_c02463{word-spacing:-0.076800pt;}
.ws1c_c02463{word-spacing:-0.038400pt;}
.ws1b_c02463{word-spacing:-0.032000pt;}
.wsd_c02463{word-spacing:-0.019200pt;}
.ws15_c02463{word-spacing:-0.012800pt;}
.ws3_c02463{word-spacing:-0.006400pt;}
.ws1_c02463{word-spacing:0.000000pt;}
.ws20_c02463{word-spacing:0.006400pt;}
.ws4_c02463{word-spacing:0.012800pt;}
.wse_c02463{word-spacing:0.019200pt;}
.ws2_c02463{word-spacing:0.029280pt;}
.ws9_c02463{word-spacing:1.440000pt;}
.ws8_c02463{word-spacing:1.580800pt;}
.ws2c_c02463{word-spacing:2.201600pt;}
.ws2d_c02463{word-spacing:2.233600pt;}
.ws6_c02463{word-spacing:4.019200pt;}
.ws5_c02463{word-spacing:4.121600pt;}
.ws7_c02463{word-spacing:4.224000pt;}
.ws26_c02463{word-spacing:7.513600pt;}
.ws28_c02463{word-spacing:7.571200pt;}
.ws27_c02463{word-spacing:7.667200pt;}
.ws1a_c02463{word-spacing:7.948800pt;}
.ws19_c02463{word-spacing:8.038400pt;}
.wsb_c02463{word-spacing:9.235200pt;}
.wsc_c02463{word-spacing:9.292800pt;}
.ws17_c02463{word-spacing:12.012800pt;}
.ws16_c02463{word-spacing:12.121600pt;}
.ws18_c02463{word-spacing:12.140800pt;}
.ws24_c02463{word-spacing:19.366400pt;}
.ws25_c02463{word-spacing:19.430400pt;}
.ws23_c02463{word-spacing:19.436800pt;}
.ws13_c02463{word-spacing:23.206400pt;}
.ws10_c02463{word-spacing:23.219200pt;}
.ws12_c02463{word-spacing:23.315200pt;}
.ws11_c02463{word-spacing:23.328000pt;}
.ws21_c02463{word-spacing:27.340800pt;}
.ws22_c02463{word-spacing:27.558400pt;}
._0_c02463{margin-left:-0.896000pt;}
.fs1_c02463{font-size:58.560000pt;}
.fs0_c02463{font-size:64.000000pt;}
.y0_c02463{bottom:0.000000pt;}
.y3_c02463{bottom:67.307451pt;}
.y2_c02463{bottom:101.226867pt;}
.y34_c02463{bottom:120.187067pt;}
.y33_c02463{bottom:138.587067pt;}
.y32_c02463{bottom:156.987067pt;}
.y31_c02463{bottom:175.387067pt;}
.y30_c02463{bottom:194.427067pt;}
.y2f_c02463{bottom:213.707067pt;}
.y2e_c02463{bottom:232.107067pt;}
.y2d_c02463{bottom:250.507067pt;}
.y2c_c02463{bottom:268.907067pt;}
.y2b_c02463{bottom:287.307067pt;}
.y2a_c02463{bottom:305.547067pt;}
.y29_c02463{bottom:324.747200pt;}
.y28_c02463{bottom:343.147200pt;}
.y27_c02463{bottom:361.547200pt;}
.y26_c02463{bottom:379.947200pt;}
.y25_c02463{bottom:398.187200pt;}
.y24_c02463{bottom:417.227067pt;}
.y23_c02463{bottom:436.267067pt;}
.y22_c02463{bottom:454.667067pt;}
.y21_c02463{bottom:473.067067pt;}
.y20_c02463{bottom:491.467067pt;}
.y1f_c02463{bottom:510.587067pt;}
.y1e_c02463{bottom:529.787067pt;}
.y1d_c02463{bottom:548.187067pt;}
.y1c_c02463{bottom:566.587067pt;}
.y1b_c02463{bottom:584.987067pt;}
.y1a_c02463{bottom:603.227067pt;}
.y19_c02463{bottom:622.427067pt;}
.y18_c02463{bottom:640.827067pt;}
.y17_c02463{bottom:659.067067pt;}
.y16_c02463{bottom:678.187067pt;}
.y15_c02463{bottom:697.227067pt;}
.y14_c02463{bottom:715.627067pt;}
.y13_c02463{bottom:734.027067pt;}
.y12_c02463{bottom:752.427067pt;}
.y11_c02463{bottom:771.467067pt;}
.y10_c02463{bottom:790.667067pt;}
.yf_c02463{bottom:809.067067pt;}
.ye_c02463{bottom:827.467067pt;}
.yd_c02463{bottom:845.867067pt;}
.yc_c02463{bottom:864.267067pt;}
.yb_c02463{bottom:882.667067pt;}
.ya_c02463{bottom:901.067067pt;}
.y9_c02463{bottom:919.307067pt;}
.y8_c02463{bottom:938.587067pt;}
.y7_c02463{bottom:956.987067pt;}
.y6_c02463{bottom:975.387067pt;}
.y5_c02463{bottom:993.627067pt;}
.y4_c02463{bottom:1012.667067pt;}
.y1_c02463{bottom:1061.867067pt;}
.h3_c02463{height:39.030469pt;}
.h2_c02463{height:48.294844pt;}
.h4_c02463{height:56.156250pt;}
.h1_c02463{height:64.500000pt;}
.h0_c02463{height:1122.666667pt;}
.w1_c02463{width:793.333333pt;}
.w0_c02463{width:793.626667pt;}
.x0_c02463{left:0.000000pt;}
.x5_c02463{left:111.120000pt;}
.x3_c02463{left:113.439816pt;}
.x1_c02463{left:119.760000pt;}
.x4_c02463{left:132.400000pt;}
.x2_c02463{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_715b8e6e7a8a937297d9101d.woff2')format("woff");}.ff1_c02464{font-family:ff1_c02464;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02464;src:url('chunks/assets/font_0ed9eff85f68f543f127661a.woff2')format("woff");}.ff2_c02464{font-family:ff2_c02464;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02464{font-family:ff3_c02464;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_c02464;src:url('chunks/assets/font_28c646139eec983a1f43e657.woff2')format("woff");}.ff4_c02464{font-family:ff4_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;}
.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;}
.lsf_c02464{letter-spacing:-0.036000px;}
.ls10_c02464{letter-spacing:-0.028800px;}
.lsd_c02464{letter-spacing:-0.014400px;}
.lse_c02464{letter-spacing:-0.007200px;}
.lsc_c02464{letter-spacing:0.000000px;}
.ls5_c02464{letter-spacing:0.007200px;}
.ls2_c02464{letter-spacing:0.014400px;}
.ls6_c02464{letter-spacing:0.021600px;}
.ls7_c02464{letter-spacing:0.028800px;}
.ls9_c02464{letter-spacing:0.036000px;}
.ls8_c02464{letter-spacing:0.043200px;}
.ls3_c02464{letter-spacing:0.050400px;}
.ls4_c02464{letter-spacing:0.057600px;}
.ls1_c02464{letter-spacing:0.059292px;}
.lsa_c02464{letter-spacing:0.064800px;}
.lsb_c02464{letter-spacing:0.092232px;}
.ls0_c02464{letter-spacing:194.400000px;}
.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;}
}
.ws1b_c02464{word-spacing:-0.244800px;}
.ws0_c02464{word-spacing:-0.158112px;}
.wsa_c02464{word-spacing:-0.108000px;}
.ws15_c02464{word-spacing:-0.064800px;}
.ws12_c02464{word-spacing:-0.057600px;}
.ws11_c02464{word-spacing:-0.036000px;}
.wsb_c02464{word-spacing:-0.021600px;}
.ws3_c02464{word-spacing:-0.014400px;}
.wsc_c02464{word-spacing:-0.007200px;}
.ws1_c02464{word-spacing:0.000000px;}
.wsf_c02464{word-spacing:0.007200px;}
.ws4_c02464{word-spacing:0.014400px;}
.ws2_c02464{word-spacing:0.032940px;}
.ws10_c02464{word-spacing:2.476800px;}
.ws18_c02464{word-spacing:2.966400px;}
.ws1a_c02464{word-spacing:3.088800px;}
.ws19_c02464{word-spacing:3.117600px;}
.ws8_c02464{word-spacing:3.319200px;}
.ws7_c02464{word-spacing:3.513600px;}
.ws9_c02464{word-spacing:3.549600px;}
.ws13_c02464{word-spacing:3.888000px;}
.ws14_c02464{word-spacing:3.996000px;}
.ws1e_c02464{word-spacing:9.979200px;}
.ws1f_c02464{word-spacing:10.015200px;}
.ws1c_c02464{word-spacing:14.400000px;}
.ws1d_c02464{word-spacing:14.407200px;}
.ws6_c02464{word-spacing:15.350400px;}
.ws5_c02464{word-spacing:15.429600px;}
.wse_c02464{word-spacing:17.517600px;}
.wsd_c02464{word-spacing:17.683200px;}
.ws16_c02464{word-spacing:21.556800px;}
.ws17_c02464{word-spacing:21.607200px;}
._0_c02464{margin-left:-1.216800px;}
.fc0_c02464{color:rgb(0,0,0);}
.fs1_c02464{font-size:65.880000px;}
.fs0_c02464{font-size:72.000000px;}
.y0_c02464{bottom:0.000000px;}
.y3_c02464{bottom:75.720882px;}
.y2_c02464{bottom:113.880225px;}
.y33_c02464{bottom:152.310450px;}
.y32_c02464{bottom:173.010450px;}
.y31_c02464{bottom:194.340450px;}
.y30_c02464{bottom:215.940450px;}
.y2f_c02464{bottom:236.640450px;}
.y2e_c02464{bottom:257.340450px;}
.y2d_c02464{bottom:277.860450px;}
.y2c_c02464{bottom:299.460450px;}
.y2b_c02464{bottom:320.160450px;}
.y2a_c02464{bottom:340.860450px;}
.y29_c02464{bottom:361.380450px;}
.y28_c02464{bottom:382.890450px;}
.y27_c02464{bottom:404.310600px;}
.y26_c02464{bottom:425.010600px;}
.y25_c02464{bottom:445.710600px;}
.y24_c02464{bottom:467.130450px;}
.y23_c02464{bottom:488.730450px;}
.y22_c02464{bottom:509.430450px;}
.y21_c02464{bottom:529.950450px;}
.y20_c02464{bottom:551.640450px;}
.y1f_c02464{bottom:572.340450px;}
.y1e_c02464{bottom:592.860450px;}
.y1d_c02464{bottom:614.280450px;}
.y1c_c02464{bottom:635.700450px;}
.y1b_c02464{bottom:656.400450px;}
.y1a_c02464{bottom:677.100450px;}
.y19_c02464{bottom:697.800450px;}
.y18_c02464{bottom:719.310450px;}
.y17_c02464{bottom:740.910450px;}
.y16_c02464{bottom:761.610450px;}
.y15_c02464{bottom:782.130450px;}
.y14_c02464{bottom:803.730450px;}
.y13_c02464{bottom:824.430450px;}
.y12_c02464{bottom:844.950450px;}
.y11_c02464{bottom:866.370450px;}
.y10_c02464{bottom:888.060450px;}
.yf_c02464{bottom:908.760450px;}
.ye_c02464{bottom:929.460450px;}
.yd_c02464{bottom:950.160450px;}
.yc_c02464{bottom:971.400450px;}
.yb_c02464{bottom:993.000450px;}
.ya_c02464{bottom:1013.700450px;}
.y9_c02464{bottom:1034.220450px;}
.y8_c02464{bottom:1055.910450px;}
.y7_c02464{bottom:1076.610450px;}
.y6_c02464{bottom:1097.310450px;}
.y5_c02464{bottom:1117.830450px;}
.y4_c02464{bottom:1139.250450px;}
.y1_c02464{bottom:1194.600450px;}
.h3_c02464{height:43.909277px;}
.h2_c02464{height:54.331699px;}
.h4_c02464{height:63.175781px;}
.h1_c02464{height:72.562500px;}
.h0_c02464{height:1263.000000px;}
.w1_c02464{width:892.500000px;}
.w0_c02464{width:892.830000px;}
.x0_c02464{left:0.000000px;}
.x3_c02464{left:127.619793px;}
.x1_c02464{left:134.730000px;}
.x4_c02464{left:148.950000px;}
.x2_c02464{left:438.120468px;}
@media print{
.v0_c02464{vertical-align:0.000000pt;}
.lsf_c02464{letter-spacing:-0.032000pt;}
.ls10_c02464{letter-spacing:-0.025600pt;}
.lsd_c02464{letter-spacing:-0.012800pt;}
.lse_c02464{letter-spacing:-0.006400pt;}
.lsc_c02464{letter-spacing:0.000000pt;}
.ls5_c02464{letter-spacing:0.006400pt;}
.ls2_c02464{letter-spacing:0.012800pt;}
.ls6_c02464{letter-spacing:0.019200pt;}
.ls7_c02464{letter-spacing:0.025600pt;}
.ls9_c02464{letter-spacing:0.032000pt;}
.ls8_c02464{letter-spacing:0.038400pt;}
.ls3_c02464{letter-spacing:0.044800pt;}
.ls4_c02464{letter-spacing:0.051200pt;}
.ls1_c02464{letter-spacing:0.052704pt;}
.lsa_c02464{letter-spacing:0.057600pt;}
.lsb_c02464{letter-spacing:0.081984pt;}
.ls0_c02464{letter-spacing:172.800000pt;}
.ws1b_c02464{word-spacing:-0.217600pt;}
.ws0_c02464{word-spacing:-0.140544pt;}
.wsa_c02464{word-spacing:-0.096000pt;}
.ws15_c02464{word-spacing:-0.057600pt;}
.ws12_c02464{word-spacing:-0.051200pt;}
.ws11_c02464{word-spacing:-0.032000pt;}
.wsb_c02464{word-spacing:-0.019200pt;}
.ws3_c02464{word-spacing:-0.012800pt;}
.wsc_c02464{word-spacing:-0.006400pt;}
.ws1_c02464{word-spacing:0.000000pt;}
.wsf_c02464{word-spacing:0.006400pt;}
.ws4_c02464{word-spacing:0.012800pt;}
.ws2_c02464{word-spacing:0.029280pt;}
.ws10_c02464{word-spacing:2.201600pt;}
.ws18_c02464{word-spacing:2.636800pt;}
.ws1a_c02464{word-spacing:2.745600pt;}
.ws19_c02464{word-spacing:2.771200pt;}
.ws8_c02464{word-spacing:2.950400pt;}
.ws7_c02464{word-spacing:3.123200pt;}
.ws9_c02464{word-spacing:3.155200pt;}
.ws13_c02464{word-spacing:3.456000pt;}
.ws14_c02464{word-spacing:3.552000pt;}
.ws1e_c02464{word-spacing:8.870400pt;}
.ws1f_c02464{word-spacing:8.902400pt;}
.ws1c_c02464{word-spacing:12.800000pt;}
.ws1d_c02464{word-spacing:12.806400pt;}
.ws6_c02464{word-spacing:13.644800pt;}
.ws5_c02464{word-spacing:13.715200pt;}
.wse_c02464{word-spacing:15.571200pt;}
.wsd_c02464{word-spacing:15.718400pt;}
.ws16_c02464{word-spacing:19.161600pt;}
.ws17_c02464{word-spacing:19.206400pt;}
._0_c02464{margin-left:-1.081600pt;}
.fs1_c02464{font-size:58.560000pt;}
.fs0_c02464{font-size:64.000000pt;}
.y0_c02464{bottom:0.000000pt;}
.y3_c02464{bottom:67.307451pt;}
.y2_c02464{bottom:101.226867pt;}
.y33_c02464{bottom:135.387067pt;}
.y32_c02464{bottom:153.787067pt;}
.y31_c02464{bottom:172.747067pt;}
.y30_c02464{bottom:191.947067pt;}
.y2f_c02464{bottom:210.347067pt;}
.y2e_c02464{bottom:228.747067pt;}
.y2d_c02464{bottom:246.987067pt;}
.y2c_c02464{bottom:266.187067pt;}
.y2b_c02464{bottom:284.587067pt;}
.y2a_c02464{bottom:302.987067pt;}
.y29_c02464{bottom:321.227067pt;}
.y28_c02464{bottom:340.347067pt;}
.y27_c02464{bottom:359.387200pt;}
.y26_c02464{bottom:377.787200pt;}
.y25_c02464{bottom:396.187200pt;}
.y24_c02464{bottom:415.227067pt;}
.y23_c02464{bottom:434.427067pt;}
.y22_c02464{bottom:452.827067pt;}
.y21_c02464{bottom:471.067067pt;}
.y20_c02464{bottom:490.347067pt;}
.y1f_c02464{bottom:508.747067pt;}
.y1e_c02464{bottom:526.987067pt;}
.y1d_c02464{bottom:546.027067pt;}
.y1c_c02464{bottom:565.067067pt;}
.y1b_c02464{bottom:583.467067pt;}
.y1a_c02464{bottom:601.867067pt;}
.y19_c02464{bottom:620.267067pt;}
.y18_c02464{bottom:639.387067pt;}
.y17_c02464{bottom:658.587067pt;}
.y16_c02464{bottom:676.987067pt;}
.y15_c02464{bottom:695.227067pt;}
.y14_c02464{bottom:714.427067pt;}
.y13_c02464{bottom:732.827067pt;}
.y12_c02464{bottom:751.067067pt;}
.y11_c02464{bottom:770.107067pt;}
.y10_c02464{bottom:789.387067pt;}
.yf_c02464{bottom:807.787067pt;}
.ye_c02464{bottom:826.187067pt;}
.yd_c02464{bottom:844.587067pt;}
.yc_c02464{bottom:863.467067pt;}
.yb_c02464{bottom:882.667067pt;}
.ya_c02464{bottom:901.067067pt;}
.y9_c02464{bottom:919.307067pt;}
.y8_c02464{bottom:938.587067pt;}
.y7_c02464{bottom:956.987067pt;}
.y6_c02464{bottom:975.387067pt;}
.y5_c02464{bottom:993.627067pt;}
.y4_c02464{bottom:1012.667067pt;}
.y1_c02464{bottom:1061.867067pt;}
.h3_c02464{height:39.030469pt;}
.h2_c02464{height:48.294844pt;}
.h4_c02464{height:56.156250pt;}
.h1_c02464{height:64.500000pt;}
.h0_c02464{height:1122.666667pt;}
.w1_c02464{width:793.333333pt;}
.w0_c02464{width:793.626667pt;}
.x0_c02464{left:0.000000pt;}
.x3_c02464{left:113.439816pt;}
.x1_c02464{left:119.760000pt;}
.x4_c02464{left:132.400000pt;}
.x2_c02464{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccc3529f38b7b2a64992930d.woff2')format("woff");}.ff1_c02465{font-family:ff1_c02465;line-height:1.311035;font-style:normal;font-weight:normal;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_ee2dfc3a7e7904fe5850c428.woff2')format("woff");}.ff2_c02465{font-family:ff2_c02465;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02465{font-family:ff3_c02465;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_c02465;src:url('chunks/assets/font_330df9900b785c2b8098a9e9.woff2')format("woff");}.ff4_c02465{font-family:ff4_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:ff5_c02465;src:url('chunks/assets/font_59848e8dd092636766aec9f4.woff2')format("woff");}.ff5_c02465{font-family:ff5_c02465;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;}
.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;}
.ls13_c02465{letter-spacing:-0.180000px;}
.ls12_c02465{letter-spacing:-0.028800px;}
.ls11_c02465{letter-spacing:-0.021600px;}
.ls10_c02465{letter-spacing:-0.014400px;}
.ls14_c02465{letter-spacing:-0.007200px;}
.lsf_c02465{letter-spacing:0.000000px;}
.ls4_c02465{letter-spacing:0.007200px;}
.ls9_c02465{letter-spacing:0.014400px;}
.lsc_c02465{letter-spacing:0.021600px;}
.ls3_c02465{letter-spacing:0.028800px;}
.ls6_c02465{letter-spacing:0.036000px;}
.ls2_c02465{letter-spacing:0.043200px;}
.ls5_c02465{letter-spacing:0.050400px;}
.ls7_c02465{letter-spacing:0.057600px;}
.ls1_c02465{letter-spacing:0.059292px;}
.lsa_c02465{letter-spacing:0.064800px;}
.lsd_c02465{letter-spacing:0.065880px;}
.ls8_c02465{letter-spacing:0.072000px;}
.lsb_c02465{letter-spacing:0.079200px;}
.lse_c02465{letter-spacing:0.092232px;}
.ls0_c02465{letter-spacing:194.400000px;}
.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;}
}
.ws1_c02465{word-spacing:-72.000000px;}
.ws2d_c02465{word-spacing:-0.288000px;}
.ws30_c02465{word-spacing:-0.165600px;}
.ws0_c02465{word-spacing:-0.158112px;}
.ws9_c02465{word-spacing:-0.122400px;}
.ws31_c02465{word-spacing:-0.100800px;}
.ws21_c02465{word-spacing:-0.057600px;}
.ws34_c02465{word-spacing:-0.028800px;}
.ws1e_c02465{word-spacing:-0.021600px;}
.wsa_c02465{word-spacing:-0.014400px;}
.wsb_c02465{word-spacing:-0.007200px;}
.ws2_c02465{word-spacing:0.000000px;}
.ws4_c02465{word-spacing:0.014400px;}
.ws1f_c02465{word-spacing:0.026352px;}
.ws3_c02465{word-spacing:0.032940px;}
.ws1b_c02465{word-spacing:0.036000px;}
.wsd_c02465{word-spacing:0.216000px;}
.wse_c02465{word-spacing:0.244800px;}
.ws11_c02465{word-spacing:1.382400px;}
.ws5_c02465{word-spacing:1.396800px;}
.ws6_c02465{word-spacing:1.411200px;}
.ws12_c02465{word-spacing:1.425600px;}
.ws1a_c02465{word-spacing:2.347200px;}
.ws19_c02465{word-spacing:2.484000px;}
.wsc_c02465{word-spacing:3.484800px;}
.ws14_c02465{word-spacing:3.549600px;}
.ws16_c02465{word-spacing:3.564000px;}
.ws13_c02465{word-spacing:3.592800px;}
.ws15_c02465{word-spacing:3.600000px;}
.ws17_c02465{word-spacing:3.636000px;}
.ws18_c02465{word-spacing:3.780000px;}
.ws23_c02465{word-spacing:5.932800px;}
.ws22_c02465{word-spacing:6.156000px;}
.ws2b_c02465{word-spacing:6.364800px;}
.ws29_c02465{word-spacing:6.372000px;}
.ws2a_c02465{word-spacing:6.393600px;}
.ws1d_c02465{word-spacing:7.905600px;}
.ws1c_c02465{word-spacing:7.948800px;}
.ws33_c02465{word-spacing:8.539200px;}
.ws32_c02465{word-spacing:8.553600px;}
.ws2f_c02465{word-spacing:8.863200px;}
.ws2e_c02465{word-spacing:8.971200px;}
.ws10_c02465{word-spacing:10.641600px;}
.wsf_c02465{word-spacing:10.771200px;}
.ws24_c02465{word-spacing:11.044800px;}
.ws25_c02465{word-spacing:11.188800px;}
.ws28_c02465{word-spacing:13.867200px;}
.ws27_c02465{word-spacing:13.946400px;}
.ws26_c02465{word-spacing:13.989600px;}
.ws7_c02465{word-spacing:16.142400px;}
.ws8_c02465{word-spacing:16.149600px;}
.ws2c_c02465{word-spacing:16.920000px;}
.ws20_c02465{word-spacing:18.669600px;}
._0_c02465{margin-left:-1.209600px;}
._1_c02465{width:3.477600px;}
.fc0_c02465{color:rgb(0,0,0);}
.fs1_c02465{font-size:65.880000px;}
.fs0_c02465{font-size:72.000000px;}
.y0_c02465{bottom:0.000000px;}
.y3_c02465{bottom:75.720882px;}
.y2_c02465{bottom:113.880225px;}
.y34_c02465{bottom:136.920450px;}
.y33_c02465{bottom:158.430450px;}
.y32_c02465{bottom:180.030450px;}
.y31_c02465{bottom:200.730450px;}
.y30_c02465{bottom:221.250450px;}
.y2f_c02465{bottom:242.850450px;}
.y2e_c02465{bottom:263.550450px;}
.y2d_c02465{bottom:284.070450px;}
.y2c_c02465{bottom:305.490450px;}
.y2b_c02465{bottom:327.000450px;}
.y2a_c02465{bottom:347.700450px;}
.y29_c02465{bottom:369.120450px;}
.y28_c02465{bottom:390.720450px;}
.y27_c02465{bottom:411.420450px;}
.y26_c02465{bottom:432.120450px;}
.y25_c02465{bottom:452.820450px;}
.y24_c02465{bottom:473.520450px;}
.y23_c02465{bottom:494.220450px;}
.y22_c02465{bottom:514.740450px;}
.y21_c02465{bottom:536.430450px;}
.y20_c02465{bottom:557.130450px;}
.y1f_c02465{bottom:577.650450px;}
.y1e_c02465{bottom:598.800450px;}
.y1d_c02465{bottom:618.780450px;}
.y1c_c02465{bottom:639.480450px;}
.y1b_c02465{bottom:660.900450px;}
.y1a_c02465{bottom:681.600450px;}
.y19_c02465{bottom:703.290450px;}
.y18_c02465{bottom:723.990450px;}
.y17_c02465{bottom:744.690450px;}
.y16_c02465{bottom:765.390450px;}
.y15_c02465{bottom:786.000450px;}
.y14_c02465{bottom:806.700450px;}
.y13_c02465{bottom:827.400450px;}
.y12_c02465{bottom:848.100450px;}
.y11_c02465{bottom:868.800450px;}
.y10_c02465{bottom:889.500450px;}
.yf_c02465{bottom:910.200450px;}
.ye_c02465{bottom:930.900450px;}
.yd_c02465{bottom:951.600450px;}
.yc_c02465{bottom:972.300450px;}
.yb_c02465{bottom:993.000450px;}
.ya_c02465{bottom:1013.700450px;}
.y9_c02465{bottom:1034.220450px;}
.y8_c02465{bottom:1055.910450px;}
.y7_c02465{bottom:1076.610450px;}
.y6_c02465{bottom:1097.310450px;}
.y5_c02465{bottom:1117.830450px;}
.y4_c02465{bottom:1139.250450px;}
.y1_c02465{bottom:1194.600450px;}
.h3_c02465{height:43.909277px;}
.h2_c02465{height:54.331699px;}
.h4_c02465{height:63.175781px;}
.h5_c02465{height:66.394687px;}
.h1_c02465{height:72.562500px;}
.h0_c02465{height:1263.000000px;}
.w1_c02465{width:892.500000px;}
.w0_c02465{width:892.830000px;}
.x0_c02465{left:0.000000px;}
.x5_c02465{left:125.010000px;}
.x3_c02465{left:127.619793px;}
.x1_c02465{left:134.730000px;}
.x6_c02465{left:138.240000px;}
.x4_c02465{left:148.950000px;}
.x2_c02465{left:438.120468px;}
@media print{
.v0_c02465{vertical-align:0.000000pt;}
.ls13_c02465{letter-spacing:-0.160000pt;}
.ls12_c02465{letter-spacing:-0.025600pt;}
.ls11_c02465{letter-spacing:-0.019200pt;}
.ls10_c02465{letter-spacing:-0.012800pt;}
.ls14_c02465{letter-spacing:-0.006400pt;}
.lsf_c02465{letter-spacing:0.000000pt;}
.ls4_c02465{letter-spacing:0.006400pt;}
.ls9_c02465{letter-spacing:0.012800pt;}
.lsc_c02465{letter-spacing:0.019200pt;}
.ls3_c02465{letter-spacing:0.025600pt;}
.ls6_c02465{letter-spacing:0.032000pt;}
.ls2_c02465{letter-spacing:0.038400pt;}
.ls5_c02465{letter-spacing:0.044800pt;}
.ls7_c02465{letter-spacing:0.051200pt;}
.ls1_c02465{letter-spacing:0.052704pt;}
.lsa_c02465{letter-spacing:0.057600pt;}
.lsd_c02465{letter-spacing:0.058560pt;}
.ls8_c02465{letter-spacing:0.064000pt;}
.lsb_c02465{letter-spacing:0.070400pt;}
.lse_c02465{letter-spacing:0.081984pt;}
.ls0_c02465{letter-spacing:172.800000pt;}
.ws1_c02465{word-spacing:-64.000000pt;}
.ws2d_c02465{word-spacing:-0.256000pt;}
.ws30_c02465{word-spacing:-0.147200pt;}
.ws0_c02465{word-spacing:-0.140544pt;}
.ws9_c02465{word-spacing:-0.108800pt;}
.ws31_c02465{word-spacing:-0.089600pt;}
.ws21_c02465{word-spacing:-0.051200pt;}
.ws34_c02465{word-spacing:-0.025600pt;}
.ws1e_c02465{word-spacing:-0.019200pt;}
.wsa_c02465{word-spacing:-0.012800pt;}
.wsb_c02465{word-spacing:-0.006400pt;}
.ws2_c02465{word-spacing:0.000000pt;}
.ws4_c02465{word-spacing:0.012800pt;}
.ws1f_c02465{word-spacing:0.023424pt;}
.ws3_c02465{word-spacing:0.029280pt;}
.ws1b_c02465{word-spacing:0.032000pt;}
.wsd_c02465{word-spacing:0.192000pt;}
.wse_c02465{word-spacing:0.217600pt;}
.ws11_c02465{word-spacing:1.228800pt;}
.ws5_c02465{word-spacing:1.241600pt;}
.ws6_c02465{word-spacing:1.254400pt;}
.ws12_c02465{word-spacing:1.267200pt;}
.ws1a_c02465{word-spacing:2.086400pt;}
.ws19_c02465{word-spacing:2.208000pt;}
.wsc_c02465{word-spacing:3.097600pt;}
.ws14_c02465{word-spacing:3.155200pt;}
.ws16_c02465{word-spacing:3.168000pt;}
.ws13_c02465{word-spacing:3.193600pt;}
.ws15_c02465{word-spacing:3.200000pt;}
.ws17_c02465{word-spacing:3.232000pt;}
.ws18_c02465{word-spacing:3.360000pt;}
.ws23_c02465{word-spacing:5.273600pt;}
.ws22_c02465{word-spacing:5.472000pt;}
.ws2b_c02465{word-spacing:5.657600pt;}
.ws29_c02465{word-spacing:5.664000pt;}
.ws2a_c02465{word-spacing:5.683200pt;}
.ws1d_c02465{word-spacing:7.027200pt;}
.ws1c_c02465{word-spacing:7.065600pt;}
.ws33_c02465{word-spacing:7.590400pt;}
.ws32_c02465{word-spacing:7.603200pt;}
.ws2f_c02465{word-spacing:7.878400pt;}
.ws2e_c02465{word-spacing:7.974400pt;}
.ws10_c02465{word-spacing:9.459200pt;}
.wsf_c02465{word-spacing:9.574400pt;}
.ws24_c02465{word-spacing:9.817600pt;}
.ws25_c02465{word-spacing:9.945600pt;}
.ws28_c02465{word-spacing:12.326400pt;}
.ws27_c02465{word-spacing:12.396800pt;}
.ws26_c02465{word-spacing:12.435200pt;}
.ws7_c02465{word-spacing:14.348800pt;}
.ws8_c02465{word-spacing:14.355200pt;}
.ws2c_c02465{word-spacing:15.040000pt;}
.ws20_c02465{word-spacing:16.595200pt;}
._0_c02465{margin-left:-1.075200pt;}
._1_c02465{width:3.091200pt;}
.fs1_c02465{font-size:58.560000pt;}
.fs0_c02465{font-size:64.000000pt;}
.y0_c02465{bottom:0.000000pt;}
.y3_c02465{bottom:67.307451pt;}
.y2_c02465{bottom:101.226867pt;}
.y34_c02465{bottom:121.707067pt;}
.y33_c02465{bottom:140.827067pt;}
.y32_c02465{bottom:160.027067pt;}
.y31_c02465{bottom:178.427067pt;}
.y30_c02465{bottom:196.667067pt;}
.y2f_c02465{bottom:215.867067pt;}
.y2e_c02465{bottom:234.267067pt;}
.y2d_c02465{bottom:252.507067pt;}
.y2c_c02465{bottom:271.547067pt;}
.y2b_c02465{bottom:290.667067pt;}
.y2a_c02465{bottom:309.067067pt;}
.y29_c02465{bottom:328.107067pt;}
.y28_c02465{bottom:347.307067pt;}
.y27_c02465{bottom:365.707067pt;}
.y26_c02465{bottom:384.107067pt;}
.y25_c02465{bottom:402.507067pt;}
.y24_c02465{bottom:420.907067pt;}
.y23_c02465{bottom:439.307067pt;}
.y22_c02465{bottom:457.547067pt;}
.y21_c02465{bottom:476.827067pt;}
.y20_c02465{bottom:495.227067pt;}
.y1f_c02465{bottom:513.467067pt;}
.y1e_c02465{bottom:532.267067pt;}
.y1d_c02465{bottom:550.027067pt;}
.y1c_c02465{bottom:568.427067pt;}
.y1b_c02465{bottom:587.467067pt;}
.y1a_c02465{bottom:605.867067pt;}
.y19_c02465{bottom:625.147067pt;}
.y18_c02465{bottom:643.547067pt;}
.y17_c02465{bottom:661.947067pt;}
.y16_c02465{bottom:680.347067pt;}
.y15_c02465{bottom:698.667067pt;}
.y14_c02465{bottom:717.067067pt;}
.y13_c02465{bottom:735.467067pt;}
.y12_c02465{bottom:753.867067pt;}
.y11_c02465{bottom:772.267067pt;}
.y10_c02465{bottom:790.667067pt;}
.yf_c02465{bottom:809.067067pt;}
.ye_c02465{bottom:827.467067pt;}
.yd_c02465{bottom:845.867067pt;}
.yc_c02465{bottom:864.267067pt;}
.yb_c02465{bottom:882.667067pt;}
.ya_c02465{bottom:901.067067pt;}
.y9_c02465{bottom:919.307067pt;}
.y8_c02465{bottom:938.587067pt;}
.y7_c02465{bottom:956.987067pt;}
.y6_c02465{bottom:975.387067pt;}
.y5_c02465{bottom:993.627067pt;}
.y4_c02465{bottom:1012.667067pt;}
.y1_c02465{bottom:1061.867067pt;}
.h3_c02465{height:39.030469pt;}
.h2_c02465{height:48.294844pt;}
.h4_c02465{height:56.156250pt;}
.h5_c02465{height:59.017500pt;}
.h1_c02465{height:64.500000pt;}
.h0_c02465{height:1122.666667pt;}
.w1_c02465{width:793.333333pt;}
.w0_c02465{width:793.626667pt;}
.x0_c02465{left:0.000000pt;}
.x5_c02465{left:111.120000pt;}
.x3_c02465{left:113.439816pt;}
.x1_c02465{left:119.760000pt;}
.x6_c02465{left:122.880000pt;}
.x4_c02465{left:132.400000pt;}
.x2_c02465{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb2c9d6f8d940119ad443aa1.woff2')format("woff");}.ff1_c02466{font-family:ff1_c02466;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02466;src:url('chunks/assets/font_637c6d7894b3be1583c27d1d.woff2')format("woff");}.ff2_c02466{font-family:ff2_c02466;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02466{font-family:ff3_c02466;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_c02466;src:url('chunks/assets/font_c822be7c7efab7a0538974d4.woff2')format("woff");}.ff4_c02466{font-family:ff4_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;}
.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;}
.lsf_c02466{letter-spacing:-0.014400px;}
.ls10_c02466{letter-spacing:-0.007200px;}
.lse_c02466{letter-spacing:0.000000px;}
.ls4_c02466{letter-spacing:0.007200px;}
.ls3_c02466{letter-spacing:0.014400px;}
.ls7_c02466{letter-spacing:0.021600px;}
.ls6_c02466{letter-spacing:0.028800px;}
.ls8_c02466{letter-spacing:0.043200px;}
.ls2_c02466{letter-spacing:0.050400px;}
.ls5_c02466{letter-spacing:0.057600px;}
.ls1_c02466{letter-spacing:0.059292px;}
.lsc_c02466{letter-spacing:0.064800px;}
.lsa_c02466{letter-spacing:0.072000px;}
.ls9_c02466{letter-spacing:0.086400px;}
.lsd_c02466{letter-spacing:0.092232px;}
.lsb_c02466{letter-spacing:0.093600px;}
.ls0_c02466{letter-spacing:194.400000px;}
.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;}
}
.ws10_c02466{word-spacing:-0.259200px;}
.ws11_c02466{word-spacing:-0.237600px;}
.ws0_c02466{word-spacing:-0.158112px;}
.ws6_c02466{word-spacing:-0.050400px;}
.wsa_c02466{word-spacing:-0.021600px;}
.ws7_c02466{word-spacing:-0.007200px;}
.ws1_c02466{word-spacing:0.000000px;}
.wsb_c02466{word-spacing:0.007200px;}
.ws3_c02466{word-spacing:0.014400px;}
.ws2_c02466{word-spacing:0.032940px;}
.ws16_c02466{word-spacing:1.051200px;}
.ws17_c02466{word-spacing:1.072800px;}
.ws13_c02466{word-spacing:3.124800px;}
.ws12_c02466{word-spacing:3.196800px;}
.ws5_c02466{word-spacing:3.535200px;}
.ws4_c02466{word-spacing:3.549600px;}
.ws18_c02466{word-spacing:3.931200px;}
.ws1a_c02466{word-spacing:3.938400px;}
.ws19_c02466{word-spacing:4.024800px;}
.ws14_c02466{word-spacing:8.092800px;}
.ws15_c02466{word-spacing:8.222400px;}
.ws9_c02466{word-spacing:17.517600px;}
.ws8_c02466{word-spacing:17.683200px;}
.wse_c02466{word-spacing:34.293600px;}
.wsf_c02466{word-spacing:34.488000px;}
.wsc_c02466{word-spacing:34.718400px;}
.wsd_c02466{word-spacing:34.876800px;}
._0_c02466{margin-left:-1.224000px;}
.fc0_c02466{color:rgb(0,0,0);}
.fs1_c02466{font-size:65.880000px;}
.fs0_c02466{font-size:72.000000px;}
.y0_c02466{bottom:0.000000px;}
.y3_c02466{bottom:75.720882px;}
.y2_c02466{bottom:113.880225px;}
.y1d_c02466{bottom:598.440450px;}
.y1c_c02466{bottom:635.610450px;}
.y1b_c02466{bottom:657.210450px;}
.y1a_c02466{bottom:678.810450px;}
.y19_c02466{bottom:699.510450px;}
.y18_c02466{bottom:720.210450px;}
.y17_c02466{bottom:740.910450px;}
.y16_c02466{bottom:761.610450px;}
.y15_c02466{bottom:782.130450px;}
.y14_c02466{bottom:803.730450px;}
.y13_c02466{bottom:824.430450px;}
.y12_c02466{bottom:845.130450px;}
.y11_c02466{bottom:865.650450px;}
.y10_c02466{bottom:887.070450px;}
.yf_c02466{bottom:908.580450px;}
.ye_c02466{bottom:929.280450px;}
.yd_c02466{bottom:949.980450px;}
.yc_c02466{bottom:970.680450px;}
.yb_c02466{bottom:992.100450px;}
.ya_c02466{bottom:1013.700450px;}
.y9_c02466{bottom:1034.400450px;}
.y8_c02466{bottom:1054.920450px;}
.y7_c02466{bottom:1076.610450px;}
.y6_c02466{bottom:1097.310450px;}
.y5_c02466{bottom:1117.830450px;}
.y4_c02466{bottom:1139.250450px;}
.y1_c02466{bottom:1194.600450px;}
.h3_c02466{height:43.909277px;}
.h2_c02466{height:54.331699px;}
.h5_c02466{height:57.805840px;}
.h4_c02466{height:63.175781px;}
.h1_c02466{height:72.562500px;}
.h0_c02466{height:1263.000000px;}
.w1_c02466{width:892.500000px;}
.w0_c02466{width:892.830000px;}
.x0_c02466{left:0.000000px;}
.x3_c02466{left:127.619793px;}
.x1_c02466{left:134.730000px;}
.x4_c02466{left:148.950000px;}
.x2_c02466{left:438.120468px;}
@media print{
.v0_c02466{vertical-align:0.000000pt;}
.lsf_c02466{letter-spacing:-0.012800pt;}
.ls10_c02466{letter-spacing:-0.006400pt;}
.lse_c02466{letter-spacing:0.000000pt;}
.ls4_c02466{letter-spacing:0.006400pt;}
.ls3_c02466{letter-spacing:0.012800pt;}
.ls7_c02466{letter-spacing:0.019200pt;}
.ls6_c02466{letter-spacing:0.025600pt;}
.ls8_c02466{letter-spacing:0.038400pt;}
.ls2_c02466{letter-spacing:0.044800pt;}
.ls5_c02466{letter-spacing:0.051200pt;}
.ls1_c02466{letter-spacing:0.052704pt;}
.lsc_c02466{letter-spacing:0.057600pt;}
.lsa_c02466{letter-spacing:0.064000pt;}
.ls9_c02466{letter-spacing:0.076800pt;}
.lsd_c02466{letter-spacing:0.081984pt;}
.lsb_c02466{letter-spacing:0.083200pt;}
.ls0_c02466{letter-spacing:172.800000pt;}
.ws10_c02466{word-spacing:-0.230400pt;}
.ws11_c02466{word-spacing:-0.211200pt;}
.ws0_c02466{word-spacing:-0.140544pt;}
.ws6_c02466{word-spacing:-0.044800pt;}
.wsa_c02466{word-spacing:-0.019200pt;}
.ws7_c02466{word-spacing:-0.006400pt;}
.ws1_c02466{word-spacing:0.000000pt;}
.wsb_c02466{word-spacing:0.006400pt;}
.ws3_c02466{word-spacing:0.012800pt;}
.ws2_c02466{word-spacing:0.029280pt;}
.ws16_c02466{word-spacing:0.934400pt;}
.ws17_c02466{word-spacing:0.953600pt;}
.ws13_c02466{word-spacing:2.777600pt;}
.ws12_c02466{word-spacing:2.841600pt;}
.ws5_c02466{word-spacing:3.142400pt;}
.ws4_c02466{word-spacing:3.155200pt;}
.ws18_c02466{word-spacing:3.494400pt;}
.ws1a_c02466{word-spacing:3.500800pt;}
.ws19_c02466{word-spacing:3.577600pt;}
.ws14_c02466{word-spacing:7.193600pt;}
.ws15_c02466{word-spacing:7.308800pt;}
.ws9_c02466{word-spacing:15.571200pt;}
.ws8_c02466{word-spacing:15.718400pt;}
.wse_c02466{word-spacing:30.483200pt;}
.wsf_c02466{word-spacing:30.656000pt;}
.wsc_c02466{word-spacing:30.860800pt;}
.wsd_c02466{word-spacing:31.001600pt;}
._0_c02466{margin-left:-1.088000pt;}
.fs1_c02466{font-size:58.560000pt;}
.fs0_c02466{font-size:64.000000pt;}
.y0_c02466{bottom:0.000000pt;}
.y3_c02466{bottom:67.307451pt;}
.y2_c02466{bottom:101.226867pt;}
.y1d_c02466{bottom:531.947067pt;}
.y1c_c02466{bottom:564.987067pt;}
.y1b_c02466{bottom:584.187067pt;}
.y1a_c02466{bottom:603.387067pt;}
.y19_c02466{bottom:621.787067pt;}
.y18_c02466{bottom:640.187067pt;}
.y17_c02466{bottom:658.587067pt;}
.y16_c02466{bottom:676.987067pt;}
.y15_c02466{bottom:695.227067pt;}
.y14_c02466{bottom:714.427067pt;}
.y13_c02466{bottom:732.827067pt;}
.y12_c02466{bottom:751.227067pt;}
.y11_c02466{bottom:769.467067pt;}
.y10_c02466{bottom:788.507067pt;}
.yf_c02466{bottom:807.627067pt;}
.ye_c02466{bottom:826.027067pt;}
.yd_c02466{bottom:844.427067pt;}
.yc_c02466{bottom:862.827067pt;}
.yb_c02466{bottom:881.867067pt;}
.ya_c02466{bottom:901.067067pt;}
.y9_c02466{bottom:919.467067pt;}
.y8_c02466{bottom:937.707067pt;}
.y7_c02466{bottom:956.987067pt;}
.y6_c02466{bottom:975.387067pt;}
.y5_c02466{bottom:993.627067pt;}
.y4_c02466{bottom:1012.667067pt;}
.y1_c02466{bottom:1061.867067pt;}
.h3_c02466{height:39.030469pt;}
.h2_c02466{height:48.294844pt;}
.h5_c02466{height:51.382969pt;}
.h4_c02466{height:56.156250pt;}
.h1_c02466{height:64.500000pt;}
.h0_c02466{height:1122.666667pt;}
.w1_c02466{width:793.333333pt;}
.w0_c02466{width:793.626667pt;}
.x0_c02466{left:0.000000pt;}
.x3_c02466{left:113.439816pt;}
.x1_c02466{left:119.760000pt;}
.x4_c02466{left:132.400000pt;}
.x2_c02466{left:389.440416pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_929afc5dee9bc1e6697d722e.woff2')format("woff");}.ff1_c02467{font-family:ff1_c02467;line-height:1.311035;font-style:normal;font-weight:normal;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_cdadb4793d274862d7279b9a.woff2')format("woff");}.ff2_c02467{font-family:ff2_c02467;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02467{font-family:ff3_c02467;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_c02467;src:url('chunks/assets/font_8784bbeec50ee97aebe57300.woff2')format("woff");}.ff4_c02467{font-family:ff4_c02467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02467;src:url('chunks/assets/font_def3918aea17097b9f85ff5b.woff2')format("woff");}.ff5_c02467{font-family:ff5_c02467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02467{vertical-align:-78.120000px;}
.v2_c02467{vertical-align:-9.000000px;}
.v0_c02467{vertical-align:0.000000px;}
.v3_c02467{vertical-align:6.120000px;}
.ls1a_c02467{letter-spacing:-0.086400px;}
.ls1d_c02467{letter-spacing:-0.043200px;}
.ls1b_c02467{letter-spacing:-0.021600px;}
.ls1e_c02467{letter-spacing:-0.014400px;}
.ls19_c02467{letter-spacing:-0.007200px;}
.ls18_c02467{letter-spacing:0.000000px;}
.ls5_c02467{letter-spacing:0.006588px;}
.ls12_c02467{letter-spacing:0.007200px;}
.ls10_c02467{letter-spacing:0.014400px;}
.ls1_c02467{letter-spacing:0.019764px;}
.ls9_c02467{letter-spacing:0.021600px;}
.lsd_c02467{letter-spacing:0.026352px;}
.ls15_c02467{letter-spacing:0.028800px;}
.ls14_c02467{letter-spacing:0.036000px;}
.ls7_c02467{letter-spacing:0.039528px;}
.lsc_c02467{letter-spacing:0.043200px;}
.ls21_c02467{letter-spacing:0.046116px;}
.ls20_c02467{letter-spacing:0.052704px;}
.lse_c02467{letter-spacing:0.057600px;}
.ls1c_c02467{letter-spacing:0.059292px;}
.ls13_c02467{letter-spacing:0.064800px;}
.ls1f_c02467{letter-spacing:0.065880px;}
.ls16_c02467{letter-spacing:0.072000px;}
.ls11_c02467{letter-spacing:0.079056px;}
.lsb_c02467{letter-spacing:0.079200px;}
.lsf_c02467{letter-spacing:0.085644px;}
.ls17_c02467{letter-spacing:0.092232px;}
.ls6_c02467{letter-spacing:0.098820px;}
.ls3_c02467{letter-spacing:0.144000px;}
.ls8_c02467{letter-spacing:0.180000px;}
.ls2_c02467{letter-spacing:23.040000px;}
.ls4_c02467{letter-spacing:114.840000px;}
.ls0_c02467{letter-spacing:194.400000px;}
.lsa_c02467{letter-spacing:408.686796px;}
.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;}
}
.ws3_c02467{word-spacing:-18.043200px;}
.ws5_c02467{word-spacing:-16.555644px;}
.ws2_c02467{word-spacing:-16.509528px;}
.ws4_c02467{word-spacing:-16.496352px;}
.ws1_c02467{word-spacing:-11.970000px;}
.ws13_c02467{word-spacing:-0.266400px;}
.wsc_c02467{word-spacing:-0.187200px;}
.ws20_c02467{word-spacing:-0.172800px;}
.ws0_c02467{word-spacing:-0.158112px;}
.ws1e_c02467{word-spacing:-0.115200px;}
.ws10_c02467{word-spacing:-0.108000px;}
.ws22_c02467{word-spacing:-0.028800px;}
.wsf_c02467{word-spacing:-0.021600px;}
.ws17_c02467{word-spacing:-0.014400px;}
.ws1a_c02467{word-spacing:-0.007200px;}
.wsa_c02467{word-spacing:-0.006588px;}
.ws6_c02467{word-spacing:0.000000px;}
.ws8_c02467{word-spacing:0.007200px;}
.wsb_c02467{word-spacing:0.032940px;}
.ws19_c02467{word-spacing:0.046116px;}
.ws18_c02467{word-spacing:0.052704px;}
.ws7_c02467{word-spacing:0.072468px;}
.ws9_c02467{word-spacing:0.085644px;}
.ws11_c02467{word-spacing:0.280800px;}
.ws1f_c02467{word-spacing:2.124000px;}
.ws1d_c02467{word-spacing:2.527200px;}
.ws1b_c02467{word-spacing:6.055200px;}
.ws14_c02467{word-spacing:6.688800px;}
.ws25_c02467{word-spacing:8.208000px;}
.wsd_c02467{word-spacing:10.123200px;}
.ws15_c02467{word-spacing:13.442400px;}
.wse_c02467{word-spacing:16.192800px;}
.ws21_c02467{word-spacing:38.902140px;}
.ws23_c02467{word-spacing:50.868000px;}
.ws16_c02467{word-spacing:51.724800px;}
.ws1c_c02467{word-spacing:56.534400px;}
.ws12_c02467{word-spacing:72.367200px;}
.ws24_c02467{word-spacing:94.346748px;}
._0_c02467{margin-left:-194.400000px;}
._5_c02467{margin-left:-1.144800px;}
._1_c02467{width:49.176000px;}
._3_c02467{width:55.216800px;}
._2_c02467{width:239.536800px;}
._4_c02467{width:254.689956px;}
.fc0_c02467{color:rgb(0,0,0);}
.fs4_c02467{font-size:24.120000px;}
.fs2_c02467{font-size:36.000000px;}
.fs3_c02467{font-size:47.880000px;}
.fs1_c02467{font-size:65.880000px;}
.fs0_c02467{font-size:72.000000px;}
.y0_c02467{bottom:0.000000px;}
.y3_c02467{bottom:75.720882px;}
.y2_c02467{bottom:113.880225px;}
.y4e_c02467{bottom:139.080450px;}
.y4d_c02467{bottom:159.780450px;}
.y4c_c02467{bottom:180.480450px;}
.y4b_c02467{bottom:201.180450px;}
.y47_c02467{bottom:216.301215px;}
.y4a_c02467{bottom:221.880450px;}
.y46_c02467{bottom:235.291125px;}
.y49_c02467{bottom:240.510450px;}
.y45_c02467{bottom:252.660450px;}
.y48_c02467{bottom:254.190450px;}
.y44_c02467{bottom:271.650450px;}
.y43_c02467{bottom:281.190450px;}
.y42_c02467{bottom:301.890450px;}
.y41_c02467{bottom:322.590450px;}
.y40_c02467{bottom:343.290450px;}
.y3c_c02467{bottom:358.501215px;}
.y3f_c02467{bottom:363.990450px;}
.y3b_c02467{bottom:377.491125px;}
.y3e_c02467{bottom:382.620450px;}
.y3a_c02467{bottom:394.860600px;}
.y3d_c02467{bottom:396.390450px;}
.y39_c02467{bottom:413.850450px;}
.y38_c02467{bottom:423.390450px;}
.y37_c02467{bottom:444.090450px;}
.y36_c02467{bottom:464.790450px;}
.y32_c02467{bottom:480.001215px;}
.y35_c02467{bottom:485.490450px;}
.y31_c02467{bottom:498.900540px;}
.y34_c02467{bottom:504.120600px;}
.y30_c02467{bottom:516.360600px;}
.y33_c02467{bottom:517.890450px;}
.y2f_c02467{bottom:535.350450px;}
.y2e_c02467{bottom:544.890450px;}
.y2d_c02467{bottom:565.590450px;}
.y2c_c02467{bottom:586.290450px;}
.y28_c02467{bottom:601.410630px;}
.y2b_c02467{bottom:606.990450px;}
.y27_c02467{bottom:620.400540px;}
.y2a_c02467{bottom:625.620450px;}
.y26_c02467{bottom:637.860450px;}
.y29_c02467{bottom:639.390450px;}
.y25_c02467{bottom:656.850450px;}
.y24_c02467{bottom:666.390450px;}
.y23_c02467{bottom:687.090450px;}
.y20_c02467{bottom:702.210630px;}
.y22_c02467{bottom:707.790450px;}
.y1f_c02467{bottom:721.200540px;}
.y21_c02467{bottom:726.420450px;}
.y1e_c02467{bottom:738.660450px;}
.y1d_c02467{bottom:757.650450px;}
.y1c_c02467{bottom:767.190450px;}
.y1b_c02467{bottom:787.890450px;}
.y18_c02467{bottom:803.010630px;}
.y1a_c02467{bottom:808.590450px;}
.y17_c02467{bottom:822.000540px;}
.y19_c02467{bottom:827.220450px;}
.y16_c02467{bottom:839.460450px;}
.y15_c02467{bottom:859.170450px;}
.y14_c02467{bottom:871.410450px;}
.y13_c02467{bottom:892.110450px;}
.y12_c02467{bottom:912.810450px;}
.y11_c02467{bottom:931.440450px;}
.y10_c02467{bottom:943.680450px;}
.yf_c02467{bottom:963.210450px;}
.ye_c02467{bottom:975.630450px;}
.yd_c02467{bottom:996.330450px;}
.y9_c02467{bottom:1011.541215px;}
.yc_c02467{bottom:1017.030450px;}
.y8_c02467{bottom:1030.531125px;}
.yb_c02467{bottom:1035.660450px;}
.y7_c02467{bottom:1047.900450px;}
.ya_c02467{bottom:1049.430450px;}
.y6_c02467{bottom:1088.940450px;}
.y5_c02467{bottom:1101.180450px;}
.y4_c02467{bottom:1139.880450px;}
.y1_c02467{bottom:1194.600450px;}
.h9_c02467{height:23.672461px;}
.h8_c02467{height:35.332031px;}
.h4_c02467{height:36.281250px;}
.h3_c02467{height:43.909277px;}
.h2_c02467{height:54.331699px;}
.h5_c02467{height:64.657617px;}
.h6_c02467{height:66.394687px;}
.h7_c02467{height:70.664062px;}
.h1_c02467{height:72.562500px;}
.h0_c02467{height:1263.000000px;}
.w1_c02467{width:892.500000px;}
.w0_c02467{width:892.830000px;}
.x0_c02467{left:0.000000px;}
.x3_c02467{left:127.618713px;}
.x5_c02467{left:135.630000px;}
.x1_c02467{left:138.780000px;}
.x6_c02467{left:188.820000px;}
.x4_c02467{left:325.800000px;}
.x7_c02467{left:337.680801px;}
.x2_c02467{left:438.119388px;}
.x8_c02467{left:443.970000px;}
@media print{
.v1_c02467{vertical-align:-69.440000pt;}
.v2_c02467{vertical-align:-8.000000pt;}
.v0_c02467{vertical-align:0.000000pt;}
.v3_c02467{vertical-align:5.440000pt;}
.ls1a_c02467{letter-spacing:-0.076800pt;}
.ls1d_c02467{letter-spacing:-0.038400pt;}
.ls1b_c02467{letter-spacing:-0.019200pt;}
.ls1e_c02467{letter-spacing:-0.012800pt;}
.ls19_c02467{letter-spacing:-0.006400pt;}
.ls18_c02467{letter-spacing:0.000000pt;}
.ls5_c02467{letter-spacing:0.005856pt;}
.ls12_c02467{letter-spacing:0.006400pt;}
.ls10_c02467{letter-spacing:0.012800pt;}
.ls1_c02467{letter-spacing:0.017568pt;}
.ls9_c02467{letter-spacing:0.019200pt;}
.lsd_c02467{letter-spacing:0.023424pt;}
.ls15_c02467{letter-spacing:0.025600pt;}
.ls14_c02467{letter-spacing:0.032000pt;}
.ls7_c02467{letter-spacing:0.035136pt;}
.lsc_c02467{letter-spacing:0.038400pt;}
.ls21_c02467{letter-spacing:0.040992pt;}
.ls20_c02467{letter-spacing:0.046848pt;}
.lse_c02467{letter-spacing:0.051200pt;}
.ls1c_c02467{letter-spacing:0.052704pt;}
.ls13_c02467{letter-spacing:0.057600pt;}
.ls1f_c02467{letter-spacing:0.058560pt;}
.ls16_c02467{letter-spacing:0.064000pt;}
.ls11_c02467{letter-spacing:0.070272pt;}
.lsb_c02467{letter-spacing:0.070400pt;}
.lsf_c02467{letter-spacing:0.076128pt;}
.ls17_c02467{letter-spacing:0.081984pt;}
.ls6_c02467{letter-spacing:0.087840pt;}
.ls3_c02467{letter-spacing:0.128000pt;}
.ls8_c02467{letter-spacing:0.160000pt;}
.ls2_c02467{letter-spacing:20.480000pt;}
.ls4_c02467{letter-spacing:102.080000pt;}
.ls0_c02467{letter-spacing:172.800000pt;}
.lsa_c02467{letter-spacing:363.277152pt;}
.ws3_c02467{word-spacing:-16.038400pt;}
.ws5_c02467{word-spacing:-14.716128pt;}
.ws2_c02467{word-spacing:-14.675136pt;}
.ws4_c02467{word-spacing:-14.663424pt;}
.ws1_c02467{word-spacing:-10.640000pt;}
.ws13_c02467{word-spacing:-0.236800pt;}
.wsc_c02467{word-spacing:-0.166400pt;}
.ws20_c02467{word-spacing:-0.153600pt;}
.ws0_c02467{word-spacing:-0.140544pt;}
.ws1e_c02467{word-spacing:-0.102400pt;}
.ws10_c02467{word-spacing:-0.096000pt;}
.ws22_c02467{word-spacing:-0.025600pt;}
.wsf_c02467{word-spacing:-0.019200pt;}
.ws17_c02467{word-spacing:-0.012800pt;}
.ws1a_c02467{word-spacing:-0.006400pt;}
.wsa_c02467{word-spacing:-0.005856pt;}
.ws6_c02467{word-spacing:0.000000pt;}
.ws8_c02467{word-spacing:0.006400pt;}
.wsb_c02467{word-spacing:0.029280pt;}
.ws19_c02467{word-spacing:0.040992pt;}
.ws18_c02467{word-spacing:0.046848pt;}
.ws7_c02467{word-spacing:0.064416pt;}
.ws9_c02467{word-spacing:0.076128pt;}
.ws11_c02467{word-spacing:0.249600pt;}
.ws1f_c02467{word-spacing:1.888000pt;}
.ws1d_c02467{word-spacing:2.246400pt;}
.ws1b_c02467{word-spacing:5.382400pt;}
.ws14_c02467{word-spacing:5.945600pt;}
.ws25_c02467{word-spacing:7.296000pt;}
.wsd_c02467{word-spacing:8.998400pt;}
.ws15_c02467{word-spacing:11.948800pt;}
.wse_c02467{word-spacing:14.393600pt;}
.ws21_c02467{word-spacing:34.579680pt;}
.ws23_c02467{word-spacing:45.216000pt;}
.ws16_c02467{word-spacing:45.977600pt;}
.ws1c_c02467{word-spacing:50.252800pt;}
.ws12_c02467{word-spacing:64.326400pt;}
.ws24_c02467{word-spacing:83.863776pt;}
._0_c02467{margin-left:-172.800000pt;}
._5_c02467{margin-left:-1.017600pt;}
._1_c02467{width:43.712000pt;}
._3_c02467{width:49.081600pt;}
._2_c02467{width:212.921600pt;}
._4_c02467{width:226.391072pt;}
.fs4_c02467{font-size:21.440000pt;}
.fs2_c02467{font-size:32.000000pt;}
.fs3_c02467{font-size:42.560000pt;}
.fs1_c02467{font-size:58.560000pt;}
.fs0_c02467{font-size:64.000000pt;}
.y0_c02467{bottom:0.000000pt;}
.y3_c02467{bottom:67.307451pt;}
.y2_c02467{bottom:101.226867pt;}
.y4e_c02467{bottom:123.627067pt;}
.y4d_c02467{bottom:142.027067pt;}
.y4c_c02467{bottom:160.427067pt;}
.y4b_c02467{bottom:178.827067pt;}
.y47_c02467{bottom:192.267747pt;}
.y4a_c02467{bottom:197.227067pt;}
.y46_c02467{bottom:209.147667pt;}
.y49_c02467{bottom:213.787067pt;}
.y45_c02467{bottom:224.587067pt;}
.y48_c02467{bottom:225.947067pt;}
.y44_c02467{bottom:241.467067pt;}
.y43_c02467{bottom:249.947067pt;}
.y42_c02467{bottom:268.347067pt;}
.y41_c02467{bottom:286.747067pt;}
.y40_c02467{bottom:305.147067pt;}
.y3c_c02467{bottom:318.667747pt;}
.y3f_c02467{bottom:323.547067pt;}
.y3b_c02467{bottom:335.547667pt;}
.y3e_c02467{bottom:340.107067pt;}
.y3a_c02467{bottom:350.987200pt;}
.y3d_c02467{bottom:352.347067pt;}
.y39_c02467{bottom:367.867067pt;}
.y38_c02467{bottom:376.347067pt;}
.y37_c02467{bottom:394.747067pt;}
.y36_c02467{bottom:413.147067pt;}
.y32_c02467{bottom:426.667747pt;}
.y35_c02467{bottom:431.547067pt;}
.y31_c02467{bottom:443.467147pt;}
.y34_c02467{bottom:448.107200pt;}
.y30_c02467{bottom:458.987200pt;}
.y33_c02467{bottom:460.347067pt;}
.y2f_c02467{bottom:475.867067pt;}
.y2e_c02467{bottom:484.347067pt;}
.y2d_c02467{bottom:502.747067pt;}
.y2c_c02467{bottom:521.147067pt;}
.y28_c02467{bottom:534.587227pt;}
.y2b_c02467{bottom:539.547067pt;}
.y27_c02467{bottom:551.467147pt;}
.y2a_c02467{bottom:556.107067pt;}
.y26_c02467{bottom:566.987067pt;}
.y29_c02467{bottom:568.347067pt;}
.y25_c02467{bottom:583.867067pt;}
.y24_c02467{bottom:592.347067pt;}
.y23_c02467{bottom:610.747067pt;}
.y20_c02467{bottom:624.187227pt;}
.y22_c02467{bottom:629.147067pt;}
.y1f_c02467{bottom:641.067147pt;}
.y21_c02467{bottom:645.707067pt;}
.y1e_c02467{bottom:656.587067pt;}
.y1d_c02467{bottom:673.467067pt;}
.y1c_c02467{bottom:681.947067pt;}
.y1b_c02467{bottom:700.347067pt;}
.y18_c02467{bottom:713.787227pt;}
.y1a_c02467{bottom:718.747067pt;}
.y17_c02467{bottom:730.667147pt;}
.y19_c02467{bottom:735.307067pt;}
.y16_c02467{bottom:746.187067pt;}
.y15_c02467{bottom:763.707067pt;}
.y14_c02467{bottom:774.587067pt;}
.y13_c02467{bottom:792.987067pt;}
.y12_c02467{bottom:811.387067pt;}
.y11_c02467{bottom:827.947067pt;}
.y10_c02467{bottom:838.827067pt;}
.yf_c02467{bottom:856.187067pt;}
.ye_c02467{bottom:867.227067pt;}
.yd_c02467{bottom:885.627067pt;}
.y9_c02467{bottom:899.147747pt;}
.yc_c02467{bottom:904.027067pt;}
.y8_c02467{bottom:916.027667pt;}
.yb_c02467{bottom:920.587067pt;}
.y7_c02467{bottom:931.467067pt;}
.ya_c02467{bottom:932.827067pt;}
.y6_c02467{bottom:967.947067pt;}
.y5_c02467{bottom:978.827067pt;}
.y4_c02467{bottom:1013.227067pt;}
.y1_c02467{bottom:1061.867067pt;}
.h9_c02467{height:21.042187pt;}
.h8_c02467{height:31.406250pt;}
.h4_c02467{height:32.250000pt;}
.h3_c02467{height:39.030469pt;}
.h2_c02467{height:48.294844pt;}
.h5_c02467{height:57.473437pt;}
.h6_c02467{height:59.017500pt;}
.h7_c02467{height:62.812500pt;}
.h1_c02467{height:64.500000pt;}
.h0_c02467{height:1122.666667pt;}
.w1_c02467{width:793.333333pt;}
.w0_c02467{width:793.626667pt;}
.x0_c02467{left:0.000000pt;}
.x3_c02467{left:113.438856pt;}
.x5_c02467{left:120.560000pt;}
.x1_c02467{left:123.360000pt;}
.x6_c02467{left:167.840000pt;}
.x4_c02467{left:289.600000pt;}
.x7_c02467{left:300.160712pt;}
.x2_c02467{left:389.439456pt;}
.x8_c02467{left:394.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_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_90ea5f9cd2ca30d0b4b09024.woff2')format("woff");}.ff1_c02468{font-family:ff1_c02468;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02468;src:url('chunks/assets/font_895c4c258a444f668318d593.woff2')format("woff");}.ff2_c02468{font-family:ff2_c02468;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02468{font-family:ff3_c02468;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_c02468;src:url('chunks/assets/font_e99952c96e28bf8ec977e36f.woff2')format("woff");}.ff4_c02468{font-family:ff4_c02468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02468{vertical-align:-9.000000px;}
.v0_c02468{vertical-align:0.000000px;}
.v2_c02468{vertical-align:6.120000px;}
.ls1b_c02468{letter-spacing:-0.086400px;}
.ls1c_c02468{letter-spacing:-0.021600px;}
.ls20_c02468{letter-spacing:-0.019764px;}
.ls1f_c02468{letter-spacing:-0.013176px;}
.ls1a_c02468{letter-spacing:-0.007200px;}
.ls19_c02468{letter-spacing:0.000000px;}
.lsa_c02468{letter-spacing:0.007200px;}
.ls14_c02468{letter-spacing:0.013176px;}
.ls5_c02468{letter-spacing:0.014400px;}
.ls1_c02468{letter-spacing:0.019764px;}
.lsf_c02468{letter-spacing:0.021600px;}
.ls22_c02468{letter-spacing:0.026352px;}
.ls9_c02468{letter-spacing:0.028800px;}
.lsd_c02468{letter-spacing:0.032940px;}
.lsc_c02468{letter-spacing:0.036000px;}
.ls8_c02468{letter-spacing:0.043200px;}
.ls1d_c02468{letter-spacing:0.046116px;}
.lsb_c02468{letter-spacing:0.050400px;}
.ls18_c02468{letter-spacing:0.057600px;}
.ls11_c02468{letter-spacing:0.064800px;}
.ls23_c02468{letter-spacing:0.065880px;}
.ls13_c02468{letter-spacing:0.072000px;}
.ls10_c02468{letter-spacing:0.072468px;}
.ls1e_c02468{letter-spacing:0.079056px;}
.ls16_c02468{letter-spacing:0.079200px;}
.ls21_c02468{letter-spacing:0.085644px;}
.ls7_c02468{letter-spacing:0.086400px;}
.ls4_c02468{letter-spacing:0.090180px;}
.lse_c02468{letter-spacing:0.092232px;}
.ls17_c02468{letter-spacing:0.100800px;}
.ls12_c02468{letter-spacing:0.124488px;}
.ls15_c02468{letter-spacing:0.131760px;}
.ls2_c02468{letter-spacing:0.144000px;}
.ls6_c02468{letter-spacing:0.181944px;}
.ls3_c02468{letter-spacing:90.720000px;}
.ls0_c02468{letter-spacing:194.400000px;}
.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;}
}
.ws2_c02468{word-spacing:-16.450236px;}
.ws1_c02468{word-spacing:-12.151944px;}
.ws19_c02468{word-spacing:-0.201600px;}
.ws0_c02468{word-spacing:-0.158112px;}
.wse_c02468{word-spacing:-0.151200px;}
.ws20_c02468{word-spacing:-0.144000px;}
.ws1a_c02468{word-spacing:-0.122400px;}
.wsd_c02468{word-spacing:-0.115200px;}
.ws1f_c02468{word-spacing:-0.072000px;}
.ws28_c02468{word-spacing:-0.050400px;}
.ws15_c02468{word-spacing:-0.021600px;}
.ws7_c02468{word-spacing:-0.014400px;}
.ws3_c02468{word-spacing:0.000000px;}
.ws5_c02468{word-spacing:0.007200px;}
.ws6_c02468{word-spacing:0.046116px;}
.wsf_c02468{word-spacing:0.059292px;}
.ws16_c02468{word-spacing:0.065880px;}
.ws4_c02468{word-spacing:0.072468px;}
.ws8_c02468{word-spacing:0.273600px;}
.ws26_c02468{word-spacing:0.684000px;}
.ws25_c02468{word-spacing:0.712800px;}
.ws9_c02468{word-spacing:7.156800px;}
.ws22_c02468{word-spacing:7.459200px;}
.ws1d_c02468{word-spacing:7.740000px;}
.ws1e_c02468{word-spacing:7.884000px;}
.wsb_c02468{word-spacing:8.272800px;}
.wsc_c02468{word-spacing:8.409600px;}
.ws10_c02468{word-spacing:10.132344px;}
.ws14_c02468{word-spacing:10.267200px;}
.ws18_c02468{word-spacing:11.455200px;}
.ws1c_c02468{word-spacing:14.436000px;}
.ws17_c02468{word-spacing:20.469600px;}
.wsa_c02468{word-spacing:21.103200px;}
.ws27_c02468{word-spacing:23.400000px;}
.ws12_c02468{word-spacing:23.781600px;}
.ws13_c02468{word-spacing:23.817600px;}
.ws1b_c02468{word-spacing:26.913600px;}
.ws11_c02468{word-spacing:31.996800px;}
.ws23_c02468{word-spacing:51.710400px;}
.ws21_c02468{word-spacing:61.480800px;}
.ws24_c02468{word-spacing:67.003200px;}
._0_c02468{margin-left:-194.400000px;}
._4_c02468{margin-left:-1.028232px;}
._6_c02468{width:20.316240px;}
._7_c02468{width:26.922240px;}
._5_c02468{width:31.838184px;}
._1_c02468{width:49.176000px;}
._8_c02468{width:51.762240px;}
._3_c02468{width:98.056800px;}
._2_c02468{width:111.736800px;}
.fc0_c02468{color:rgb(0,0,0);}
.fs2_c02468{font-size:47.880000px;}
.fs3_c02468{font-size:60.120000px;}
.fs1_c02468{font-size:65.880000px;}
.fs0_c02468{font-size:72.000000px;}
.y0_c02468{bottom:0.000000px;}
.y3_c02468{bottom:75.720882px;}
.y2_c02468{bottom:113.880225px;}
.y4b_c02468{bottom:148.080450px;}
.y4a_c02468{bottom:168.780450px;}
.y49_c02468{bottom:189.480450px;}
.y48_c02468{bottom:210.180450px;}
.y47_c02468{bottom:230.880450px;}
.y46_c02468{bottom:251.580450px;}
.y45_c02468{bottom:272.100450px;}
.y44_c02468{bottom:292.980450px;}
.y3d_c02468{bottom:306.930873px;}
.y43_c02468{bottom:313.680450px;}
.y42_c02468{bottom:334.380450px;}
.y3c_c02468{bottom:340.860720px;}
.y3f_c02468{bottom:344.910693px;}
.y41_c02468{bottom:355.080450px;}
.y3b_c02468{bottom:359.850630px;}
.y40_c02468{bottom:375.600450px;}
.y3a_c02468{bottom:378.840540px;}
.y39_c02468{bottom:396.300450px;}
.y3e_c02468{bottom:397.830450px;}
.y38_c02468{bottom:417.900450px;}
.y37_c02468{bottom:438.600450px;}
.y36_c02468{bottom:459.300450px;}
.y35_c02468{bottom:480.000450px;}
.y34_c02468{bottom:500.700450px;}
.y33_c02468{bottom:521.400450px;}
.y32_c02468{bottom:541.920450px;}
.y31_c02468{bottom:562.800450px;}
.y2a_c02468{bottom:579.000171px;}
.y30_c02468{bottom:583.500450px;}
.y2d_c02468{bottom:594.030693px;}
.y2f_c02468{bottom:604.200450px;}
.y29_c02468{bottom:612.930018px;}
.y2e_c02468{bottom:624.720450px;}
.y2c_c02468{bottom:627.960540px;}
.y28_c02468{bottom:645.420450px;}
.y2b_c02468{bottom:646.950450px;}
.y27_c02468{bottom:667.020450px;}
.y26_c02468{bottom:687.720450px;}
.y25_c02468{bottom:708.420450px;}
.y24_c02468{bottom:729.120450px;}
.y23_c02468{bottom:749.820450px;}
.y1f_c02468{bottom:758.101395px;}
.y22_c02468{bottom:770.520450px;}
.y1e_c02468{bottom:777.091305px;}
.y1b_c02468{bottom:781.050693px;}
.y21_c02468{bottom:791.220450px;}
.y1d_c02468{bottom:795.990630px;}
.y20_c02468{bottom:811.740450px;}
.y1a_c02468{bottom:814.980540px;}
.y19_c02468{bottom:832.440450px;}
.y1c_c02468{bottom:833.970450px;}
.y18_c02468{bottom:853.860450px;}
.y17_c02468{bottom:874.560450px;}
.y16_c02468{bottom:895.440450px;}
.y15_c02468{bottom:916.140450px;}
.y14_c02468{bottom:936.840450px;}
.y13_c02468{bottom:957.360450px;}
.ye_c02468{bottom:973.111260px;}
.y9_c02468{bottom:975.450261px;}
.y12_c02468{bottom:978.240450px;}
.y11_c02468{bottom:998.940450px;}
.yd_c02468{bottom:1007.220630px;}
.y8_c02468{bottom:1009.470693px;}
.y10_c02468{bottom:1019.640450px;}
.yc_c02468{bottom:1026.210540px;}
.y7_c02468{bottom:1028.460603px;}
.yf_c02468{bottom:1040.160450px;}
.yb_c02468{bottom:1045.200450px;}
.y6_c02468{bottom:1060.860450px;}
.ya_c02468{bottom:1063.830450px;}
.y5_c02468{bottom:1100.370450px;}
.y4_c02468{bottom:1139.880450px;}
.y1_c02468{bottom:1194.600450px;}
.h3_c02468{height:43.909277px;}
.h2_c02468{height:54.331699px;}
.h5_c02468{height:59.004492px;}
.h4_c02468{height:64.657617px;}
.h6_c02468{height:66.394687px;}
.h7_c02468{height:70.664062px;}
.h1_c02468{height:72.562500px;}
.h0_c02468{height:1263.000000px;}
.w1_c02468{width:892.500000px;}
.w0_c02468{width:892.830000px;}
.x0_c02468{left:0.000000px;}
.x3_c02468{left:127.618713px;}
.x4_c02468{left:135.630000px;}
.x1_c02468{left:138.780000px;}
.x5_c02468{left:188.820000px;}
.x6_c02468{left:305.730000px;}
.x7_c02468{left:422.730000px;}
.x2_c02468{left:438.119388px;}
@media print{
.v1_c02468{vertical-align:-8.000000pt;}
.v0_c02468{vertical-align:0.000000pt;}
.v2_c02468{vertical-align:5.440000pt;}
.ls1b_c02468{letter-spacing:-0.076800pt;}
.ls1c_c02468{letter-spacing:-0.019200pt;}
.ls20_c02468{letter-spacing:-0.017568pt;}
.ls1f_c02468{letter-spacing:-0.011712pt;}
.ls1a_c02468{letter-spacing:-0.006400pt;}
.ls19_c02468{letter-spacing:0.000000pt;}
.lsa_c02468{letter-spacing:0.006400pt;}
.ls14_c02468{letter-spacing:0.011712pt;}
.ls5_c02468{letter-spacing:0.012800pt;}
.ls1_c02468{letter-spacing:0.017568pt;}
.lsf_c02468{letter-spacing:0.019200pt;}
.ls22_c02468{letter-spacing:0.023424pt;}
.ls9_c02468{letter-spacing:0.025600pt;}
.lsd_c02468{letter-spacing:0.029280pt;}
.lsc_c02468{letter-spacing:0.032000pt;}
.ls8_c02468{letter-spacing:0.038400pt;}
.ls1d_c02468{letter-spacing:0.040992pt;}
.lsb_c02468{letter-spacing:0.044800pt;}
.ls18_c02468{letter-spacing:0.051200pt;}
.ls11_c02468{letter-spacing:0.057600pt;}
.ls23_c02468{letter-spacing:0.058560pt;}
.ls13_c02468{letter-spacing:0.064000pt;}
.ls10_c02468{letter-spacing:0.064416pt;}
.ls1e_c02468{letter-spacing:0.070272pt;}
.ls16_c02468{letter-spacing:0.070400pt;}
.ls21_c02468{letter-spacing:0.076128pt;}
.ls7_c02468{letter-spacing:0.076800pt;}
.ls4_c02468{letter-spacing:0.080160pt;}
.lse_c02468{letter-spacing:0.081984pt;}
.ls17_c02468{letter-spacing:0.089600pt;}
.ls12_c02468{letter-spacing:0.110656pt;}
.ls15_c02468{letter-spacing:0.117120pt;}
.ls2_c02468{letter-spacing:0.128000pt;}
.ls6_c02468{letter-spacing:0.161728pt;}
.ls3_c02468{letter-spacing:80.640000pt;}
.ls0_c02468{letter-spacing:172.800000pt;}
.ws2_c02468{word-spacing:-14.622432pt;}
.ws1_c02468{word-spacing:-10.801728pt;}
.ws19_c02468{word-spacing:-0.179200pt;}
.ws0_c02468{word-spacing:-0.140544pt;}
.wse_c02468{word-spacing:-0.134400pt;}
.ws20_c02468{word-spacing:-0.128000pt;}
.ws1a_c02468{word-spacing:-0.108800pt;}
.wsd_c02468{word-spacing:-0.102400pt;}
.ws1f_c02468{word-spacing:-0.064000pt;}
.ws28_c02468{word-spacing:-0.044800pt;}
.ws15_c02468{word-spacing:-0.019200pt;}
.ws7_c02468{word-spacing:-0.012800pt;}
.ws3_c02468{word-spacing:0.000000pt;}
.ws5_c02468{word-spacing:0.006400pt;}
.ws6_c02468{word-spacing:0.040992pt;}
.wsf_c02468{word-spacing:0.052704pt;}
.ws16_c02468{word-spacing:0.058560pt;}
.ws4_c02468{word-spacing:0.064416pt;}
.ws8_c02468{word-spacing:0.243200pt;}
.ws26_c02468{word-spacing:0.608000pt;}
.ws25_c02468{word-spacing:0.633600pt;}
.ws9_c02468{word-spacing:6.361600pt;}
.ws22_c02468{word-spacing:6.630400pt;}
.ws1d_c02468{word-spacing:6.880000pt;}
.ws1e_c02468{word-spacing:7.008000pt;}
.wsb_c02468{word-spacing:7.353600pt;}
.wsc_c02468{word-spacing:7.475200pt;}
.ws10_c02468{word-spacing:9.006528pt;}
.ws14_c02468{word-spacing:9.126400pt;}
.ws18_c02468{word-spacing:10.182400pt;}
.ws1c_c02468{word-spacing:12.832000pt;}
.ws17_c02468{word-spacing:18.195200pt;}
.wsa_c02468{word-spacing:18.758400pt;}
.ws27_c02468{word-spacing:20.800000pt;}
.ws12_c02468{word-spacing:21.139200pt;}
.ws13_c02468{word-spacing:21.171200pt;}
.ws1b_c02468{word-spacing:23.923200pt;}
.ws11_c02468{word-spacing:28.441600pt;}
.ws23_c02468{word-spacing:45.964800pt;}
.ws21_c02468{word-spacing:54.649600pt;}
.ws24_c02468{word-spacing:59.558400pt;}
._0_c02468{margin-left:-172.800000pt;}
._4_c02468{margin-left:-0.913984pt;}
._6_c02468{width:18.058880pt;}
._7_c02468{width:23.930880pt;}
._5_c02468{width:28.300608pt;}
._1_c02468{width:43.712000pt;}
._8_c02468{width:46.010880pt;}
._3_c02468{width:87.161600pt;}
._2_c02468{width:99.321600pt;}
.fs2_c02468{font-size:42.560000pt;}
.fs3_c02468{font-size:53.440000pt;}
.fs1_c02468{font-size:58.560000pt;}
.fs0_c02468{font-size:64.000000pt;}
.y0_c02468{bottom:0.000000pt;}
.y3_c02468{bottom:67.307451pt;}
.y2_c02468{bottom:101.226867pt;}
.y4b_c02468{bottom:131.627067pt;}
.y4a_c02468{bottom:150.027067pt;}
.y49_c02468{bottom:168.427067pt;}
.y48_c02468{bottom:186.827067pt;}
.y47_c02468{bottom:205.227067pt;}
.y46_c02468{bottom:223.627067pt;}
.y45_c02468{bottom:241.867067pt;}
.y44_c02468{bottom:260.427067pt;}
.y3d_c02468{bottom:272.827443pt;}
.y43_c02468{bottom:278.827067pt;}
.y42_c02468{bottom:297.227067pt;}
.y3c_c02468{bottom:302.987307pt;}
.y3f_c02468{bottom:306.587283pt;}
.y41_c02468{bottom:315.627067pt;}
.y3b_c02468{bottom:319.867227pt;}
.y40_c02468{bottom:333.867067pt;}
.y3a_c02468{bottom:336.747147pt;}
.y39_c02468{bottom:352.267067pt;}
.y3e_c02468{bottom:353.627067pt;}
.y38_c02468{bottom:371.467067pt;}
.y37_c02468{bottom:389.867067pt;}
.y36_c02468{bottom:408.267067pt;}
.y35_c02468{bottom:426.667067pt;}
.y34_c02468{bottom:445.067067pt;}
.y33_c02468{bottom:463.467067pt;}
.y32_c02468{bottom:481.707067pt;}
.y31_c02468{bottom:500.267067pt;}
.y2a_c02468{bottom:514.666819pt;}
.y30_c02468{bottom:518.667067pt;}
.y2d_c02468{bottom:528.027283pt;}
.y2f_c02468{bottom:537.067067pt;}
.y29_c02468{bottom:544.826683pt;}
.y2e_c02468{bottom:555.307067pt;}
.y2c_c02468{bottom:558.187147pt;}
.y28_c02468{bottom:573.707067pt;}
.y2b_c02468{bottom:575.067067pt;}
.y27_c02468{bottom:592.907067pt;}
.y26_c02468{bottom:611.307067pt;}
.y25_c02468{bottom:629.707067pt;}
.y24_c02468{bottom:648.107067pt;}
.y23_c02468{bottom:666.507067pt;}
.y1f_c02468{bottom:673.867907pt;}
.y22_c02468{bottom:684.907067pt;}
.y1e_c02468{bottom:690.747827pt;}
.y1b_c02468{bottom:694.267283pt;}
.y21_c02468{bottom:703.307067pt;}
.y1d_c02468{bottom:707.547227pt;}
.y20_c02468{bottom:721.547067pt;}
.y1a_c02468{bottom:724.427147pt;}
.y19_c02468{bottom:739.947067pt;}
.y1c_c02468{bottom:741.307067pt;}
.y18_c02468{bottom:758.987067pt;}
.y17_c02468{bottom:777.387067pt;}
.y16_c02468{bottom:795.947067pt;}
.y15_c02468{bottom:814.347067pt;}
.y14_c02468{bottom:832.747067pt;}
.y13_c02468{bottom:850.987067pt;}
.ye_c02468{bottom:864.987787pt;}
.y9_c02468{bottom:867.066899pt;}
.y12_c02468{bottom:869.547067pt;}
.y11_c02468{bottom:887.947067pt;}
.yd_c02468{bottom:895.307227pt;}
.y8_c02468{bottom:897.307283pt;}
.y10_c02468{bottom:906.347067pt;}
.yc_c02468{bottom:912.187147pt;}
.y7_c02468{bottom:914.187203pt;}
.yf_c02468{bottom:924.587067pt;}
.yb_c02468{bottom:929.067067pt;}
.y6_c02468{bottom:942.987067pt;}
.ya_c02468{bottom:945.627067pt;}
.y5_c02468{bottom:978.107067pt;}
.y4_c02468{bottom:1013.227067pt;}
.y1_c02468{bottom:1061.867067pt;}
.h3_c02468{height:39.030469pt;}
.h2_c02468{height:48.294844pt;}
.h5_c02468{height:52.448437pt;}
.h4_c02468{height:57.473437pt;}
.h6_c02468{height:59.017500pt;}
.h7_c02468{height:62.812500pt;}
.h1_c02468{height:64.500000pt;}
.h0_c02468{height:1122.666667pt;}
.w1_c02468{width:793.333333pt;}
.w0_c02468{width:793.626667pt;}
.x0_c02468{left:0.000000pt;}
.x3_c02468{left:113.438856pt;}
.x4_c02468{left:120.560000pt;}
.x1_c02468{left:123.360000pt;}
.x5_c02468{left:167.840000pt;}
.x6_c02468{left:271.760000pt;}
.x7_c02468{left:375.760000pt;}
.x2_c02468{left:389.439456pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb6f3cef57bbdbcef07cb147.woff2')format("woff");}.ff1_c02469{font-family:ff1_c02469;line-height:1.311035;font-style:normal;font-weight:normal;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_3e04779d7afda23b3c5a02fe.woff2')format("woff");}.ff2_c02469{font-family:ff2_c02469;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02469{font-family:ff3_c02469;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_c02469;src:url('chunks/assets/font_2329f2913a20f06d9a5be8e5.woff2')format("woff");}.ff4_c02469{font-family:ff4_c02469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02469{vertical-align:-9.000000px;}
.v0_c02469{vertical-align:0.000000px;}
.v2_c02469{vertical-align:6.120000px;}
.ls11_c02469{letter-spacing:-0.032940px;}
.ls15_c02469{letter-spacing:-0.014400px;}
.ls10_c02469{letter-spacing:0.000000px;}
.ls9_c02469{letter-spacing:0.007200px;}
.ls5_c02469{letter-spacing:0.014400px;}
.ls1_c02469{letter-spacing:0.019764px;}
.lsd_c02469{letter-spacing:0.021600px;}
.ls14_c02469{letter-spacing:0.026352px;}
.ls8_c02469{letter-spacing:0.028800px;}
.lsb_c02469{letter-spacing:0.036000px;}
.lsc_c02469{letter-spacing:0.043200px;}
.ls12_c02469{letter-spacing:0.046116px;}
.ls7_c02469{letter-spacing:0.050400px;}
.ls13_c02469{letter-spacing:0.065880px;}
.ls4_c02469{letter-spacing:0.072468px;}
.lsf_c02469{letter-spacing:0.092232px;}
.lse_c02469{letter-spacing:0.115200px;}
.lsa_c02469{letter-spacing:0.124488px;}
.ls2_c02469{letter-spacing:0.144000px;}
.ls6_c02469{letter-spacing:0.181944px;}
.ls3_c02469{letter-spacing:90.720000px;}
.ls0_c02469{letter-spacing:194.400000px;}
.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;}
}
.ws1_c02469{word-spacing:-12.151944px;}
.ws0_c02469{word-spacing:-0.158112px;}
.ws5_c02469{word-spacing:-0.014400px;}
.ws9_c02469{word-spacing:-0.007200px;}
.ws2_c02469{word-spacing:0.000000px;}
.ws12_c02469{word-spacing:0.014400px;}
.ws4_c02469{word-spacing:0.019764px;}
.ws3_c02469{word-spacing:0.072468px;}
.wsa_c02469{word-spacing:0.684000px;}
.wsc_c02469{word-spacing:6.825600px;}
.wse_c02469{word-spacing:11.498400px;}
.wsb_c02469{word-spacing:13.651200px;}
.ws8_c02469{word-spacing:19.771200px;}
.ws6_c02469{word-spacing:20.469600px;}
.ws10_c02469{word-spacing:24.076800px;}
.wsd_c02469{word-spacing:31.996800px;}
.ws11_c02469{word-spacing:36.122400px;}
.ws7_c02469{word-spacing:38.772000px;}
.wsf_c02469{word-spacing:85.240800px;}
._0_c02469{margin-left:-194.400000px;}
._2_c02469{margin-left:-1.281600px;}
._1_c02469{width:20.316240px;}
._3_c02469{width:31.838184px;}
.fc0_c02469{color:rgb(0,0,0);}
.fs2_c02469{font-size:47.880000px;}
.fs1_c02469{font-size:65.880000px;}
.fs0_c02469{font-size:72.000000px;}
.y0_c02469{bottom:0.000000px;}
.y3_c02469{bottom:75.720882px;}
.y2_c02469{bottom:113.880225px;}
.y30_c02469{bottom:159.780450px;}
.y2f_c02469{bottom:198.570450px;}
.y2e_c02469{bottom:237.360450px;}
.y2d_c02469{bottom:276.150450px;}
.y2c_c02469{bottom:314.940450px;}
.y2b_c02469{bottom:353.730450px;}
.y2a_c02469{bottom:392.520450px;}
.y29_c02469{bottom:431.400450px;}
.y28_c02469{bottom:470.190450px;}
.y27_c02469{bottom:508.980450px;}
.y26_c02469{bottom:547.770450px;}
.y25_c02469{bottom:586.560450px;}
.y24_c02469{bottom:625.350450px;}
.y23_c02469{bottom:664.140450px;}
.y22_c02469{bottom:703.020450px;}
.y21_c02469{bottom:724.710450px;}
.y20_c02469{bottom:745.410450px;}
.y1f_c02469{bottom:766.110450px;}
.y1e_c02469{bottom:786.810450px;}
.y1d_c02469{bottom:807.510450px;}
.y1c_c02469{bottom:828.210450px;}
.y19_c02469{bottom:838.650108px;}
.y1b_c02469{bottom:848.910450px;}
.y17_c02469{bottom:853.680630px;}
.y1a_c02469{bottom:869.430450px;}
.y16_c02469{bottom:872.670540px;}
.y15_c02469{bottom:890.130450px;}
.y18_c02469{bottom:891.660450px;}
.y14_c02469{bottom:911.730450px;}
.y13_c02469{bottom:932.430450px;}
.y12_c02469{bottom:953.130450px;}
.y11_c02469{bottom:973.830450px;}
.y10_c02469{bottom:994.530450px;}
.yf_c02469{bottom:1015.050450px;}
.ye_c02469{bottom:1035.930450px;}
.y7_c02469{bottom:1053.840261px;}
.yd_c02469{bottom:1056.630450px;}
.yc_c02469{bottom:1077.330450px;}
.y6_c02469{bottom:1087.860693px;}
.yb_c02469{bottom:1098.030450px;}
.y5_c02469{bottom:1106.760018px;}
.ya_c02469{bottom:1118.550450px;}
.y9_c02469{bottom:1121.790540px;}
.y4_c02469{bottom:1139.250450px;}
.y8_c02469{bottom:1140.780450px;}
.y1_c02469{bottom:1194.600450px;}
.h3_c02469{height:43.909277px;}
.h2_c02469{height:54.331699px;}
.h4_c02469{height:64.657617px;}
.h5_c02469{height:70.664062px;}
.h1_c02469{height:72.562500px;}
.h0_c02469{height:1263.000000px;}
.w1_c02469{width:892.500000px;}
.w0_c02469{width:892.830000px;}
.x0_c02469{left:0.000000px;}
.x3_c02469{left:127.618713px;}
.x4_c02469{left:135.630000px;}
.x1_c02469{left:138.780000px;}
.x5_c02469{left:188.820000px;}
.x6_c02469{left:305.730648px;}
.x7_c02469{left:422.730000px;}
.x2_c02469{left:438.119388px;}
@media print{
.v1_c02469{vertical-align:-8.000000pt;}
.v0_c02469{vertical-align:0.000000pt;}
.v2_c02469{vertical-align:5.440000pt;}
.ls11_c02469{letter-spacing:-0.029280pt;}
.ls15_c02469{letter-spacing:-0.012800pt;}
.ls10_c02469{letter-spacing:0.000000pt;}
.ls9_c02469{letter-spacing:0.006400pt;}
.ls5_c02469{letter-spacing:0.012800pt;}
.ls1_c02469{letter-spacing:0.017568pt;}
.lsd_c02469{letter-spacing:0.019200pt;}
.ls14_c02469{letter-spacing:0.023424pt;}
.ls8_c02469{letter-spacing:0.025600pt;}
.lsb_c02469{letter-spacing:0.032000pt;}
.lsc_c02469{letter-spacing:0.038400pt;}
.ls12_c02469{letter-spacing:0.040992pt;}
.ls7_c02469{letter-spacing:0.044800pt;}
.ls13_c02469{letter-spacing:0.058560pt;}
.ls4_c02469{letter-spacing:0.064416pt;}
.lsf_c02469{letter-spacing:0.081984pt;}
.lse_c02469{letter-spacing:0.102400pt;}
.lsa_c02469{letter-spacing:0.110656pt;}
.ls2_c02469{letter-spacing:0.128000pt;}
.ls6_c02469{letter-spacing:0.161728pt;}
.ls3_c02469{letter-spacing:80.640000pt;}
.ls0_c02469{letter-spacing:172.800000pt;}
.ws1_c02469{word-spacing:-10.801728pt;}
.ws0_c02469{word-spacing:-0.140544pt;}
.ws5_c02469{word-spacing:-0.012800pt;}
.ws9_c02469{word-spacing:-0.006400pt;}
.ws2_c02469{word-spacing:0.000000pt;}
.ws12_c02469{word-spacing:0.012800pt;}
.ws4_c02469{word-spacing:0.017568pt;}
.ws3_c02469{word-spacing:0.064416pt;}
.wsa_c02469{word-spacing:0.608000pt;}
.wsc_c02469{word-spacing:6.067200pt;}
.wse_c02469{word-spacing:10.220800pt;}
.wsb_c02469{word-spacing:12.134400pt;}
.ws8_c02469{word-spacing:17.574400pt;}
.ws6_c02469{word-spacing:18.195200pt;}
.ws10_c02469{word-spacing:21.401600pt;}
.wsd_c02469{word-spacing:28.441600pt;}
.ws11_c02469{word-spacing:32.108800pt;}
.ws7_c02469{word-spacing:34.464000pt;}
.wsf_c02469{word-spacing:75.769600pt;}
._0_c02469{margin-left:-172.800000pt;}
._2_c02469{margin-left:-1.139200pt;}
._1_c02469{width:18.058880pt;}
._3_c02469{width:28.300608pt;}
.fs2_c02469{font-size:42.560000pt;}
.fs1_c02469{font-size:58.560000pt;}
.fs0_c02469{font-size:64.000000pt;}
.y0_c02469{bottom:0.000000pt;}
.y3_c02469{bottom:67.307451pt;}
.y2_c02469{bottom:101.226867pt;}
.y30_c02469{bottom:142.027067pt;}
.y2f_c02469{bottom:176.507067pt;}
.y2e_c02469{bottom:210.987067pt;}
.y2d_c02469{bottom:245.467067pt;}
.y2c_c02469{bottom:279.947067pt;}
.y2b_c02469{bottom:314.427067pt;}
.y2a_c02469{bottom:348.907067pt;}
.y29_c02469{bottom:383.467067pt;}
.y28_c02469{bottom:417.947067pt;}
.y27_c02469{bottom:452.427067pt;}
.y26_c02469{bottom:486.907067pt;}
.y25_c02469{bottom:521.387067pt;}
.y24_c02469{bottom:555.867067pt;}
.y23_c02469{bottom:590.347067pt;}
.y22_c02469{bottom:624.907067pt;}
.y21_c02469{bottom:644.187067pt;}
.y20_c02469{bottom:662.587067pt;}
.y1f_c02469{bottom:680.987067pt;}
.y1e_c02469{bottom:699.387067pt;}
.y1d_c02469{bottom:717.787067pt;}
.y1c_c02469{bottom:736.187067pt;}
.y19_c02469{bottom:745.466763pt;}
.y1b_c02469{bottom:754.587067pt;}
.y17_c02469{bottom:758.827227pt;}
.y1a_c02469{bottom:772.827067pt;}
.y16_c02469{bottom:775.707147pt;}
.y15_c02469{bottom:791.227067pt;}
.y18_c02469{bottom:792.587067pt;}
.y14_c02469{bottom:810.427067pt;}
.y13_c02469{bottom:828.827067pt;}
.y12_c02469{bottom:847.227067pt;}
.y11_c02469{bottom:865.627067pt;}
.y10_c02469{bottom:884.027067pt;}
.yf_c02469{bottom:902.267067pt;}
.ye_c02469{bottom:920.827067pt;}
.y7_c02469{bottom:936.746899pt;}
.yd_c02469{bottom:939.227067pt;}
.yc_c02469{bottom:957.627067pt;}
.y6_c02469{bottom:966.987283pt;}
.yb_c02469{bottom:976.027067pt;}
.y5_c02469{bottom:983.786683pt;}
.ya_c02469{bottom:994.267067pt;}
.y9_c02469{bottom:997.147147pt;}
.y4_c02469{bottom:1012.667067pt;}
.y8_c02469{bottom:1014.027067pt;}
.y1_c02469{bottom:1061.867067pt;}
.h3_c02469{height:39.030469pt;}
.h2_c02469{height:48.294844pt;}
.h4_c02469{height:57.473437pt;}
.h5_c02469{height:62.812500pt;}
.h1_c02469{height:64.500000pt;}
.h0_c02469{height:1122.666667pt;}
.w1_c02469{width:793.333333pt;}
.w0_c02469{width:793.626667pt;}
.x0_c02469{left:0.000000pt;}
.x3_c02469{left:113.438856pt;}
.x4_c02469{left:120.560000pt;}
.x1_c02469{left:123.360000pt;}
.x5_c02469{left:167.840000pt;}
.x6_c02469{left:271.760576pt;}
.x7_c02469{left:375.760000pt;}
.x2_c02469{left:389.439456pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0889f2d4d59ae2b809842d4d.woff2')format("woff");}.ff1_c02470{font-family:ff1_c02470;line-height:1.311035;font-style:normal;font-weight:normal;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_ac56e323baa09c6831548b84.woff2')format("woff");}.ff2_c02470{font-family:ff2_c02470;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02470{font-family:ff3_c02470;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_c02470;src:url('chunks/assets/font_25cd526f4b606665d5a8fc70.woff2')format("woff");}.ff4_c02470{font-family:ff4_c02470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02470{vertical-align:-9.000000px;}
.v0_c02470{vertical-align:0.000000px;}
.v2_c02470{vertical-align:6.120000px;}
.ls17_c02470{letter-spacing:-0.086400px;}
.ls1c_c02470{letter-spacing:-0.036000px;}
.ls24_c02470{letter-spacing:-0.028800px;}
.ls18_c02470{letter-spacing:-0.021600px;}
.ls20_c02470{letter-spacing:-0.013176px;}
.ls16_c02470{letter-spacing:-0.007200px;}
.ls1b_c02470{letter-spacing:-0.006588px;}
.ls15_c02470{letter-spacing:0.000000px;}
.ls10_c02470{letter-spacing:0.007200px;}
.lse_c02470{letter-spacing:0.013176px;}
.lsb_c02470{letter-spacing:0.014400px;}
.ls1_c02470{letter-spacing:0.019764px;}
.lsc_c02470{letter-spacing:0.021600px;}
.ls1e_c02470{letter-spacing:0.028800px;}
.lsd_c02470{letter-spacing:0.039528px;}
.ls19_c02470{letter-spacing:0.046116px;}
.ls12_c02470{letter-spacing:0.050400px;}
.ls21_c02470{letter-spacing:0.052704px;}
.lsa_c02470{letter-spacing:0.057600px;}
.ls4_c02470{letter-spacing:0.059292px;}
.lsf_c02470{letter-spacing:0.064800px;}
.ls6_c02470{letter-spacing:0.072000px;}
.ls22_c02470{letter-spacing:0.072468px;}
.ls1f_c02470{letter-spacing:0.079056px;}
.ls8_c02470{letter-spacing:0.079200px;}
.ls23_c02470{letter-spacing:0.085644px;}
.ls14_c02470{letter-spacing:0.092232px;}
.ls1d_c02470{letter-spacing:0.095760px;}
.ls7_c02470{letter-spacing:0.108000px;}
.ls1a_c02470{letter-spacing:0.111996px;}
.ls13_c02470{letter-spacing:0.119700px;}
.ls11_c02470{letter-spacing:0.124488px;}
.ls2_c02470{letter-spacing:0.144000px;}
.ls5_c02470{letter-spacing:0.181944px;}
.ls9_c02470{letter-spacing:87.840000px;}
.ls3_c02470{letter-spacing:90.360000px;}
.ls0_c02470{letter-spacing:194.400000px;}
.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;}
}
.ws1_c02470{word-spacing:-12.151944px;}
.wsc_c02470{word-spacing:-0.439200px;}
.ws27_c02470{word-spacing:-0.187200px;}
.ws0_c02470{word-spacing:-0.158112px;}
.ws1f_c02470{word-spacing:-0.064800px;}
.ws16_c02470{word-spacing:-0.057600px;}
.ws10_c02470{word-spacing:-0.028800px;}
.ws13_c02470{word-spacing:-0.021600px;}
.ws2_c02470{word-spacing:0.000000px;}
.ws4_c02470{word-spacing:0.007200px;}
.ws6_c02470{word-spacing:0.032940px;}
.ws5_c02470{word-spacing:0.046116px;}
.ws3_c02470{word-spacing:0.072468px;}
.ws7_c02470{word-spacing:0.098820px;}
.ws21_c02470{word-spacing:3.952800px;}
.ws23_c02470{word-spacing:7.495200px;}
.ws19_c02470{word-spacing:7.898400px;}
.ws22_c02470{word-spacing:7.920000px;}
.ws25_c02470{word-spacing:8.913600px;}
.ws26_c02470{word-spacing:9.028800px;}
.wsd_c02470{word-spacing:10.382400px;}
.wse_c02470{word-spacing:10.411200px;}
.ws11_c02470{word-spacing:10.742400px;}
.ws24_c02470{word-spacing:11.052000px;}
.ws15_c02470{word-spacing:11.448000px;}
.ws1a_c02470{word-spacing:12.981600px;}
.ws12_c02470{word-spacing:15.105600px;}
.ws28_c02470{word-spacing:18.720000px;}
.ws20_c02470{word-spacing:21.110400px;}
.ws14_c02470{word-spacing:21.880800px;}
.ws17_c02470{word-spacing:23.453280px;}
.ws18_c02470{word-spacing:23.680800px;}
.ws8_c02470{word-spacing:23.688000px;}
.ws1d_c02470{word-spacing:27.000000px;}
.ws1c_c02470{word-spacing:35.373600px;}
.ws1b_c02470{word-spacing:35.647200px;}
.wsb_c02470{word-spacing:36.252000px;}
.ws9_c02470{word-spacing:36.360000px;}
.wsa_c02470{word-spacing:36.396000px;}
.ws1e_c02470{word-spacing:52.638120px;}
.wsf_c02470{word-spacing:449.683704px;}
._0_c02470{margin-left:-194.400000px;}
._4_c02470{margin-left:-1.629072px;}
._7_c02470{width:7.122240px;}
._5_c02470{width:10.421640px;}
._8_c02470{width:18.628740px;}
._6_c02470{width:21.398184px;}
._1_c02470{width:48.816000px;}
._2_c02470{width:110.296800px;}
._3_c02470{width:131.176800px;}
.fc0_c02470{color:rgb(0,0,0);}
.fs3_c02470{font-size:36.000000px;}
.fs2_c02470{font-size:47.880000px;}
.fs1_c02470{font-size:65.880000px;}
.fs0_c02470{font-size:72.000000px;}
.y0_c02470{bottom:0.000000px;}
.y3_c02470{bottom:75.720882px;}
.y2_c02470{bottom:113.880225px;}
.y53_c02470{bottom:147.450450px;}
.y52_c02470{bottom:168.150450px;}
.y51_c02470{bottom:188.850450px;}
.y50_c02470{bottom:208.290600px;}
.y4f_c02470{bottom:223.320450px;}
.y4e_c02470{bottom:244.020450px;}
.y4d_c02470{bottom:264.720450px;}
.y4c_c02470{bottom:285.420450px;}
.y4b_c02470{bottom:304.860450px;}
.y41_c02470{bottom:305.761665px;}
.y4a_c02470{bottom:319.890450px;}
.y40_c02470{bottom:324.751575px;}
.y49_c02470{bottom:340.590450px;}
.y3f_c02470{bottom:343.741485px;}
.y48_c02470{bottom:361.290450px;}
.y3e_c02470{bottom:362.640810px;}
.y3d_c02470{bottom:381.630720px;}
.y47_c02470{bottom:381.990450px;}
.y3c_c02470{bottom:400.620630px;}
.y44_c02470{bottom:400.622277px;}
.y46_c02470{bottom:401.250600px;}
.y45_c02470{bottom:416.370450px;}
.y3b_c02470{bottom:419.610540px;}
.y43_c02470{bottom:419.612187px;}
.y3a_c02470{bottom:437.070450px;}
.y42_c02470{bottom:438.602097px;}
.y39_c02470{bottom:456.780600px;}
.y38_c02470{bottom:469.020450px;}
.y37_c02470{bottom:489.720450px;}
.y36_c02470{bottom:510.420450px;}
.y35_c02470{bottom:531.120450px;}
.y34_c02470{bottom:551.820450px;}
.y33_c02470{bottom:572.520450px;}
.y2f_c02470{bottom:591.060630px;}
.y32_c02470{bottom:591.690450px;}
.y31_c02470{bottom:606.810450px;}
.y2e_c02470{bottom:610.050540px;}
.y2d_c02470{bottom:627.510450px;}
.y30_c02470{bottom:629.040450px;}
.y2c_c02470{bottom:647.220450px;}
.y2b_c02470{bottom:659.460450px;}
.y26_c02470{bottom:679.800720px;}
.y2a_c02470{bottom:680.160450px;}
.y25_c02470{bottom:698.790630px;}
.y29_c02470{bottom:700.860450px;}
.y24_c02470{bottom:717.780540px;}
.y28_c02470{bottom:720.120450px;}
.y23_c02470{bottom:735.240450px;}
.y27_c02470{bottom:736.770450px;}
.y22_c02470{bottom:755.310450px;}
.y21_c02470{bottom:770.610450px;}
.y20_c02470{bottom:791.310450px;}
.y1d_c02470{bottom:809.940630px;}
.y1f_c02470{bottom:812.010450px;}
.y1c_c02470{bottom:828.930540px;}
.y1e_c02470{bottom:831.270450px;}
.y1b_c02470{bottom:846.390450px;}
.y1a_c02470{bottom:866.100450px;}
.y19_c02470{bottom:878.340450px;}
.y18_c02470{bottom:899.040450px;}
.y13_c02470{bottom:915.870630px;}
.y17_c02470{bottom:919.740450px;}
.y12_c02470{bottom:934.860540px;}
.y16_c02470{bottom:938.910450px;}
.y11_c02470{bottom:952.320450px;}
.y15_c02470{bottom:953.759865px;}
.y14_c02470{bottom:953.850450px;}
.y10_c02470{bottom:972.030450px;}
.yf_c02470{bottom:984.270450px;}
.ye_c02470{bottom:1004.970450px;}
.yd_c02470{bottom:1025.670450px;}
.y8_c02470{bottom:1042.591215px;}
.yc_c02470{bottom:1046.370450px;}
.y7_c02470{bottom:1061.581125px;}
.yb_c02470{bottom:1065.630450px;}
.y6_c02470{bottom:1078.950450px;}
.ya_c02470{bottom:1080.391512px;}
.y9_c02470{bottom:1080.480450px;}
.y5_c02470{bottom:1100.460450px;}
.y4_c02470{bottom:1139.880450px;}
.y1_c02470{bottom:1194.600450px;}
.h8_c02470{height:35.332031px;}
.h3_c02470{height:43.909277px;}
.h9_c02470{height:46.991602px;}
.h6_c02470{height:48.254063px;}
.h2_c02470{height:54.331699px;}
.h4_c02470{height:64.657617px;}
.h5_c02470{height:66.394687px;}
.h7_c02470{height:70.664062px;}
.h1_c02470{height:72.562500px;}
.h0_c02470{height:1263.000000px;}
.w1_c02470{width:892.500000px;}
.w0_c02470{width:892.830000px;}
.x0_c02470{left:0.000000px;}
.x3_c02470{left:127.618713px;}
.x4_c02470{left:135.630000px;}
.x1_c02470{left:138.780000px;}
.x5_c02470{left:188.730000px;}
.x6_c02470{left:305.279955px;}
.x7_c02470{left:430.560657px;}
.x2_c02470{left:438.119388px;}
@media print{
.v1_c02470{vertical-align:-8.000000pt;}
.v0_c02470{vertical-align:0.000000pt;}
.v2_c02470{vertical-align:5.440000pt;}
.ls17_c02470{letter-spacing:-0.076800pt;}
.ls1c_c02470{letter-spacing:-0.032000pt;}
.ls24_c02470{letter-spacing:-0.025600pt;}
.ls18_c02470{letter-spacing:-0.019200pt;}
.ls20_c02470{letter-spacing:-0.011712pt;}
.ls16_c02470{letter-spacing:-0.006400pt;}
.ls1b_c02470{letter-spacing:-0.005856pt;}
.ls15_c02470{letter-spacing:0.000000pt;}
.ls10_c02470{letter-spacing:0.006400pt;}
.lse_c02470{letter-spacing:0.011712pt;}
.lsb_c02470{letter-spacing:0.012800pt;}
.ls1_c02470{letter-spacing:0.017568pt;}
.lsc_c02470{letter-spacing:0.019200pt;}
.ls1e_c02470{letter-spacing:0.025600pt;}
.lsd_c02470{letter-spacing:0.035136pt;}
.ls19_c02470{letter-spacing:0.040992pt;}
.ls12_c02470{letter-spacing:0.044800pt;}
.ls21_c02470{letter-spacing:0.046848pt;}
.lsa_c02470{letter-spacing:0.051200pt;}
.ls4_c02470{letter-spacing:0.052704pt;}
.lsf_c02470{letter-spacing:0.057600pt;}
.ls6_c02470{letter-spacing:0.064000pt;}
.ls22_c02470{letter-spacing:0.064416pt;}
.ls1f_c02470{letter-spacing:0.070272pt;}
.ls8_c02470{letter-spacing:0.070400pt;}
.ls23_c02470{letter-spacing:0.076128pt;}
.ls14_c02470{letter-spacing:0.081984pt;}
.ls1d_c02470{letter-spacing:0.085120pt;}
.ls7_c02470{letter-spacing:0.096000pt;}
.ls1a_c02470{letter-spacing:0.099552pt;}
.ls13_c02470{letter-spacing:0.106400pt;}
.ls11_c02470{letter-spacing:0.110656pt;}
.ls2_c02470{letter-spacing:0.128000pt;}
.ls5_c02470{letter-spacing:0.161728pt;}
.ls9_c02470{letter-spacing:78.080000pt;}
.ls3_c02470{letter-spacing:80.320000pt;}
.ls0_c02470{letter-spacing:172.800000pt;}
.ws1_c02470{word-spacing:-10.801728pt;}
.wsc_c02470{word-spacing:-0.390400pt;}
.ws27_c02470{word-spacing:-0.166400pt;}
.ws0_c02470{word-spacing:-0.140544pt;}
.ws1f_c02470{word-spacing:-0.057600pt;}
.ws16_c02470{word-spacing:-0.051200pt;}
.ws10_c02470{word-spacing:-0.025600pt;}
.ws13_c02470{word-spacing:-0.019200pt;}
.ws2_c02470{word-spacing:0.000000pt;}
.ws4_c02470{word-spacing:0.006400pt;}
.ws6_c02470{word-spacing:0.029280pt;}
.ws5_c02470{word-spacing:0.040992pt;}
.ws3_c02470{word-spacing:0.064416pt;}
.ws7_c02470{word-spacing:0.087840pt;}
.ws21_c02470{word-spacing:3.513600pt;}
.ws23_c02470{word-spacing:6.662400pt;}
.ws19_c02470{word-spacing:7.020800pt;}
.ws22_c02470{word-spacing:7.040000pt;}
.ws25_c02470{word-spacing:7.923200pt;}
.ws26_c02470{word-spacing:8.025600pt;}
.wsd_c02470{word-spacing:9.228800pt;}
.wse_c02470{word-spacing:9.254400pt;}
.ws11_c02470{word-spacing:9.548800pt;}
.ws24_c02470{word-spacing:9.824000pt;}
.ws15_c02470{word-spacing:10.176000pt;}
.ws1a_c02470{word-spacing:11.539200pt;}
.ws12_c02470{word-spacing:13.427200pt;}
.ws28_c02470{word-spacing:16.640000pt;}
.ws20_c02470{word-spacing:18.764800pt;}
.ws14_c02470{word-spacing:19.449600pt;}
.ws17_c02470{word-spacing:20.847360pt;}
.ws18_c02470{word-spacing:21.049600pt;}
.ws8_c02470{word-spacing:21.056000pt;}
.ws1d_c02470{word-spacing:24.000000pt;}
.ws1c_c02470{word-spacing:31.443200pt;}
.ws1b_c02470{word-spacing:31.686400pt;}
.wsb_c02470{word-spacing:32.224000pt;}
.ws9_c02470{word-spacing:32.320000pt;}
.wsa_c02470{word-spacing:32.352000pt;}
.ws1e_c02470{word-spacing:46.789440pt;}
.wsf_c02470{word-spacing:399.718848pt;}
._0_c02470{margin-left:-172.800000pt;}
._4_c02470{margin-left:-1.448064pt;}
._7_c02470{width:6.330880pt;}
._5_c02470{width:9.263680pt;}
._8_c02470{width:16.558880pt;}
._6_c02470{width:19.020608pt;}
._1_c02470{width:43.392000pt;}
._2_c02470{width:98.041600pt;}
._3_c02470{width:116.601600pt;}
.fs3_c02470{font-size:32.000000pt;}
.fs2_c02470{font-size:42.560000pt;}
.fs1_c02470{font-size:58.560000pt;}
.fs0_c02470{font-size:64.000000pt;}
.y0_c02470{bottom:0.000000pt;}
.y3_c02470{bottom:67.307451pt;}
.y2_c02470{bottom:101.226867pt;}
.y53_c02470{bottom:131.067067pt;}
.y52_c02470{bottom:149.467067pt;}
.y51_c02470{bottom:167.867067pt;}
.y50_c02470{bottom:185.147200pt;}
.y4f_c02470{bottom:198.507067pt;}
.y4e_c02470{bottom:216.907067pt;}
.y4d_c02470{bottom:235.307067pt;}
.y4c_c02470{bottom:253.707067pt;}
.y4b_c02470{bottom:270.987067pt;}
.y41_c02470{bottom:271.788147pt;}
.y4a_c02470{bottom:284.347067pt;}
.y40_c02470{bottom:288.668067pt;}
.y49_c02470{bottom:302.747067pt;}
.y3f_c02470{bottom:305.547987pt;}
.y48_c02470{bottom:321.147067pt;}
.y3e_c02470{bottom:322.347387pt;}
.y3d_c02470{bottom:339.227307pt;}
.y47_c02470{bottom:339.547067pt;}
.y3c_c02470{bottom:356.107227pt;}
.y44_c02470{bottom:356.108691pt;}
.y46_c02470{bottom:356.667200pt;}
.y45_c02470{bottom:370.107067pt;}
.y3b_c02470{bottom:372.987147pt;}
.y43_c02470{bottom:372.988611pt;}
.y3a_c02470{bottom:388.507067pt;}
.y42_c02470{bottom:389.868531pt;}
.y39_c02470{bottom:406.027200pt;}
.y38_c02470{bottom:416.907067pt;}
.y37_c02470{bottom:435.307067pt;}
.y36_c02470{bottom:453.707067pt;}
.y35_c02470{bottom:472.107067pt;}
.y34_c02470{bottom:490.507067pt;}
.y33_c02470{bottom:508.907067pt;}
.y2f_c02470{bottom:525.387227pt;}
.y32_c02470{bottom:525.947067pt;}
.y31_c02470{bottom:539.387067pt;}
.y2e_c02470{bottom:542.267147pt;}
.y2d_c02470{bottom:557.787067pt;}
.y30_c02470{bottom:559.147067pt;}
.y2c_c02470{bottom:575.307067pt;}
.y2b_c02470{bottom:586.187067pt;}
.y26_c02470{bottom:604.267307pt;}
.y2a_c02470{bottom:604.587067pt;}
.y25_c02470{bottom:621.147227pt;}
.y29_c02470{bottom:622.987067pt;}
.y24_c02470{bottom:638.027147pt;}
.y28_c02470{bottom:640.107067pt;}
.y23_c02470{bottom:653.547067pt;}
.y27_c02470{bottom:654.907067pt;}
.y22_c02470{bottom:671.387067pt;}
.y21_c02470{bottom:684.987067pt;}
.y20_c02470{bottom:703.387067pt;}
.y1d_c02470{bottom:719.947227pt;}
.y1f_c02470{bottom:721.787067pt;}
.y1c_c02470{bottom:736.827147pt;}
.y1e_c02470{bottom:738.907067pt;}
.y1b_c02470{bottom:752.347067pt;}
.y1a_c02470{bottom:769.867067pt;}
.y19_c02470{bottom:780.747067pt;}
.y18_c02470{bottom:799.147067pt;}
.y13_c02470{bottom:814.107227pt;}
.y17_c02470{bottom:817.547067pt;}
.y12_c02470{bottom:830.987147pt;}
.y16_c02470{bottom:834.587067pt;}
.y11_c02470{bottom:846.507067pt;}
.y15_c02470{bottom:847.786547pt;}
.y14_c02470{bottom:847.867067pt;}
.y10_c02470{bottom:864.027067pt;}
.yf_c02470{bottom:874.907067pt;}
.ye_c02470{bottom:893.307067pt;}
.yd_c02470{bottom:911.707067pt;}
.y8_c02470{bottom:926.747747pt;}
.yc_c02470{bottom:930.107067pt;}
.y7_c02470{bottom:943.627667pt;}
.yb_c02470{bottom:947.227067pt;}
.y6_c02470{bottom:959.067067pt;}
.ya_c02470{bottom:960.348011pt;}
.y9_c02470{bottom:960.427067pt;}
.y5_c02470{bottom:978.187067pt;}
.y4_c02470{bottom:1013.227067pt;}
.y1_c02470{bottom:1061.867067pt;}
.h8_c02470{height:31.406250pt;}
.h3_c02470{height:39.030469pt;}
.h9_c02470{height:41.770312pt;}
.h6_c02470{height:42.892500pt;}
.h2_c02470{height:48.294844pt;}
.h4_c02470{height:57.473437pt;}
.h5_c02470{height:59.017500pt;}
.h7_c02470{height:62.812500pt;}
.h1_c02470{height:64.500000pt;}
.h0_c02470{height:1122.666667pt;}
.w1_c02470{width:793.333333pt;}
.w0_c02470{width:793.626667pt;}
.x0_c02470{left:0.000000pt;}
.x3_c02470{left:113.438856pt;}
.x4_c02470{left:120.560000pt;}
.x1_c02470{left:123.360000pt;}
.x5_c02470{left:167.760000pt;}
.x6_c02470{left:271.359960pt;}
.x7_c02470{left:382.720584pt;}
.x2_c02470{left:389.439456pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f55fd69f94d326fbb816749.woff2')format("woff");}.ff1_c02471{font-family:ff1_c02471;line-height:1.311035;font-style:normal;font-weight:normal;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_4475ca3dc821f61dfbeb4212.woff2')format("woff");}.ff2_c02471{font-family:ff2_c02471;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02471{font-family:ff3_c02471;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_c02471;src:url('chunks/assets/font_7c1db6916fccb53856cd436d.woff2')format("woff");}.ff4_c02471{font-family:ff4_c02471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02471;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c02471{font-family:ff5_c02471;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_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);}
.v1_c02471{vertical-align:-9.000000px;}
.v0_c02471{vertical-align:0.000000px;}
.v2_c02471{vertical-align:6.120000px;}
.v3_c02471{vertical-align:75.959640px;}
.ls1e_c02471{letter-spacing:-0.360000px;}
.ls22_c02471{letter-spacing:-0.144000px;}
.ls24_c02471{letter-spacing:-0.032940px;}
.ls1f_c02471{letter-spacing:-0.028800px;}
.ls19_c02471{letter-spacing:-0.021600px;}
.ls1c_c02471{letter-spacing:-0.013176px;}
.ls1a_c02471{letter-spacing:-0.007200px;}
.ls15_c02471{letter-spacing:-0.006588px;}
.ls14_c02471{letter-spacing:0.000000px;}
.ls18_c02471{letter-spacing:0.006588px;}
.lsd_c02471{letter-spacing:0.007200px;}
.ls1d_c02471{letter-spacing:0.013176px;}
.ls10_c02471{letter-spacing:0.014400px;}
.ls1_c02471{letter-spacing:0.019764px;}
.lsa_c02471{letter-spacing:0.021600px;}
.ls23_c02471{letter-spacing:0.026352px;}
.ls9_c02471{letter-spacing:0.028800px;}
.ls20_c02471{letter-spacing:0.032940px;}
.ls8_c02471{letter-spacing:0.036000px;}
.ls5_c02471{letter-spacing:0.039528px;}
.ls17_c02471{letter-spacing:0.046116px;}
.ls16_c02471{letter-spacing:0.052704px;}
.ls12_c02471{letter-spacing:0.057600px;}
.lsb_c02471{letter-spacing:0.064800px;}
.ls4_c02471{letter-spacing:0.065880px;}
.lsf_c02471{letter-spacing:0.072000px;}
.ls21_c02471{letter-spacing:0.072468px;}
.ls1b_c02471{letter-spacing:0.079056px;}
.ls11_c02471{letter-spacing:0.079200px;}
.ls13_c02471{letter-spacing:0.092232px;}
.lsc_c02471{letter-spacing:0.093600px;}
.lse_c02471{letter-spacing:0.100800px;}
.ls7_c02471{letter-spacing:0.124488px;}
.ls2_c02471{letter-spacing:0.144000px;}
.ls6_c02471{letter-spacing:0.181944px;}
.ls3_c02471{letter-spacing:90.360000px;}
.ls0_c02471{letter-spacing:194.400000px;}
.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;}
}
.ws1_c02471{word-spacing:-12.151944px;}
.ws2_c02471{word-spacing:-12.094488px;}
.ws25_c02471{word-spacing:-0.259200px;}
.ws0_c02471{word-spacing:-0.158112px;}
.ws19_c02471{word-spacing:-0.079200px;}
.ws17_c02471{word-spacing:-0.064800px;}
.wsc_c02471{word-spacing:-0.028800px;}
.wse_c02471{word-spacing:-0.021600px;}
.ws6_c02471{word-spacing:-0.007200px;}
.ws3_c02471{word-spacing:0.000000px;}
.ws1e_c02471{word-spacing:0.013176px;}
.ws5_c02471{word-spacing:0.046116px;}
.ws18_c02471{word-spacing:0.059292px;}
.ws1f_c02471{word-spacing:0.065880px;}
.ws4_c02471{word-spacing:0.072468px;}
.ws21_c02471{word-spacing:2.102400px;}
.ws22_c02471{word-spacing:2.808000px;}
.ws1d_c02471{word-spacing:3.744000px;}
.ws11_c02471{word-spacing:4.550400px;}
.ws12_c02471{word-spacing:4.701600px;}
.ws8_c02471{word-spacing:5.227200px;}
.ws9_c02471{word-spacing:5.328000px;}
.wsa_c02471{word-spacing:6.285600px;}
.ws1c_c02471{word-spacing:6.645600px;}
.ws1b_c02471{word-spacing:6.825600px;}
.wsd_c02471{word-spacing:10.092816px;}
.ws16_c02471{word-spacing:11.448000px;}
.ws24_c02471{word-spacing:11.455200px;}
.wsb_c02471{word-spacing:15.055200px;}
.ws7_c02471{word-spacing:15.076800px;}
.ws15_c02471{word-spacing:17.287200px;}
.ws1a_c02471{word-spacing:18.640800px;}
.ws13_c02471{word-spacing:19.598400px;}
.ws14_c02471{word-spacing:19.735200px;}
.wsf_c02471{word-spacing:20.347200px;}
.ws10_c02471{word-spacing:25.754400px;}
.ws23_c02471{word-spacing:37.778400px;}
.ws20_c02471{word-spacing:113.032800px;}
._0_c02471{margin-left:-194.400000px;}
._3_c02471{margin-left:-1.195200px;}
._5_c02471{width:1.036800px;}
._2_c02471{width:6.042240px;}
._1_c02471{width:14.556240px;}
._4_c02471{width:123.610644px;}
.fc0_c02471{color:rgb(0,0,0);}
.fs2_c02471{font-size:47.880000px;}
.fs1_c02471{font-size:65.880000px;}
.fs0_c02471{font-size:72.000000px;}
.y0_c02471{bottom:0.000000px;}
.y3_c02471{bottom:75.720882px;}
.y2_c02471{bottom:113.880225px;}
.y48_c02471{bottom:138.454956px;}
.y47_c02471{bottom:158.614236px;}
.y46_c02471{bottom:178.773516px;}
.y45_c02471{bottom:198.843858px;}
.y44_c02471{bottom:219.003138px;}
.y43_c02471{bottom:239.162418px;}
.y42_c02471{bottom:259.321698px;}
.y41_c02471{bottom:279.480978px;}
.y40_c02471{bottom:299.551320px;}
.y3f_c02471{bottom:319.710600px;}
.y3e_c02471{bottom:349.860450px;}
.y3d_c02471{bottom:371.190600px;}
.y3c_c02471{bottom:392.070600px;}
.y3b_c02471{bottom:412.770600px;}
.y3a_c02471{bottom:433.380600px;}
.y39_c02471{bottom:454.080600px;}
.y38_c02471{bottom:474.780450px;}
.y35_c02471{bottom:481.351305px;}
.y37_c02471{bottom:495.300450px;}
.y33_c02471{bottom:500.341215px;}
.y36_c02471{bottom:516.000450px;}
.y32_c02471{bottom:519.331125px;}
.y31_c02471{bottom:536.700450px;}
.y34_c02471{bottom:538.230450px;}
.y30_c02471{bottom:558.390450px;}
.y2f_c02471{bottom:579.090450px;}
.y2e_c02471{bottom:599.790450px;}
.y2d_c02471{bottom:620.490450px;}
.y2a_c02471{bottom:626.970720px;}
.y2c_c02471{bottom:641.190450px;}
.y29_c02471{bottom:645.960630px;}
.y2b_c02471{bottom:661.710450px;}
.y28_c02471{bottom:664.950540px;}
.y27_c02471{bottom:682.410450px;}
.y26_c02471{bottom:704.010450px;}
.y25_c02471{bottom:724.710450px;}
.y24_c02471{bottom:745.410450px;}
.y23_c02471{bottom:766.110450px;}
.y22_c02471{bottom:786.810450px;}
.y21_c02471{bottom:807.510450px;}
.y20_c02471{bottom:828.210450px;}
.y1f_c02471{bottom:848.910450px;}
.y1b_c02471{bottom:857.100810px;}
.y1e_c02471{bottom:869.610450px;}
.y19_c02471{bottom:876.090720px;}
.y1d_c02471{bottom:890.310450px;}
.y18_c02471{bottom:895.080630px;}
.y1c_c02471{bottom:910.830450px;}
.y17_c02471{bottom:914.070540px;}
.y16_c02471{bottom:931.530450px;}
.y1a_c02471{bottom:933.060450px;}
.y15_c02471{bottom:953.130450px;}
.y14_c02471{bottom:973.830450px;}
.y13_c02471{bottom:994.530450px;}
.y12_c02471{bottom:1015.230450px;}
.y11_c02471{bottom:1035.750450px;}
.y10_c02471{bottom:1056.630450px;}
.y8_c02471{bottom:1064.911395px;}
.yf_c02471{bottom:1077.330450px;}
.y7_c02471{bottom:1083.810720px;}
.yc_c02471{bottom:1083.812367px;}
.ye_c02471{bottom:1098.030450px;}
.y6_c02471{bottom:1102.800630px;}
.yb_c02471{bottom:1102.802277px;}
.yd_c02471{bottom:1118.550450px;}
.y5_c02471{bottom:1121.790540px;}
.ya_c02471{bottom:1121.792187px;}
.y4_c02471{bottom:1139.250450px;}
.y9_c02471{bottom:1140.782097px;}
.y1_c02471{bottom:1194.600450px;}
.h3_c02471{height:43.909277px;}
.h2_c02471{height:54.331699px;}
.h4_c02471{height:64.657617px;}
.h5_c02471{height:70.664062px;}
.h1_c02471{height:72.562500px;}
.h6_c02471{height:140.617257px;}
.h0_c02471{height:1263.000000px;}
.w1_c02471{width:892.500000px;}
.w0_c02471{width:892.830000px;}
.x0_c02471{left:0.000000px;}
.x3_c02471{left:127.618713px;}
.x4_c02471{left:135.630000px;}
.x1_c02471{left:138.780000px;}
.x5_c02471{left:188.730000px;}
.x6_c02471{left:305.279955px;}
.x7_c02471{left:430.560000px;}
.x2_c02471{left:438.119388px;}
@media print{
.v1_c02471{vertical-align:-8.000000pt;}
.v0_c02471{vertical-align:0.000000pt;}
.v2_c02471{vertical-align:5.440000pt;}
.v3_c02471{vertical-align:67.519680pt;}
.ls1e_c02471{letter-spacing:-0.320000pt;}
.ls22_c02471{letter-spacing:-0.128000pt;}
.ls24_c02471{letter-spacing:-0.029280pt;}
.ls1f_c02471{letter-spacing:-0.025600pt;}
.ls19_c02471{letter-spacing:-0.019200pt;}
.ls1c_c02471{letter-spacing:-0.011712pt;}
.ls1a_c02471{letter-spacing:-0.006400pt;}
.ls15_c02471{letter-spacing:-0.005856pt;}
.ls14_c02471{letter-spacing:0.000000pt;}
.ls18_c02471{letter-spacing:0.005856pt;}
.lsd_c02471{letter-spacing:0.006400pt;}
.ls1d_c02471{letter-spacing:0.011712pt;}
.ls10_c02471{letter-spacing:0.012800pt;}
.ls1_c02471{letter-spacing:0.017568pt;}
.lsa_c02471{letter-spacing:0.019200pt;}
.ls23_c02471{letter-spacing:0.023424pt;}
.ls9_c02471{letter-spacing:0.025600pt;}
.ls20_c02471{letter-spacing:0.029280pt;}
.ls8_c02471{letter-spacing:0.032000pt;}
.ls5_c02471{letter-spacing:0.035136pt;}
.ls17_c02471{letter-spacing:0.040992pt;}
.ls16_c02471{letter-spacing:0.046848pt;}
.ls12_c02471{letter-spacing:0.051200pt;}
.lsb_c02471{letter-spacing:0.057600pt;}
.ls4_c02471{letter-spacing:0.058560pt;}
.lsf_c02471{letter-spacing:0.064000pt;}
.ls21_c02471{letter-spacing:0.064416pt;}
.ls1b_c02471{letter-spacing:0.070272pt;}
.ls11_c02471{letter-spacing:0.070400pt;}
.ls13_c02471{letter-spacing:0.081984pt;}
.lsc_c02471{letter-spacing:0.083200pt;}
.lse_c02471{letter-spacing:0.089600pt;}
.ls7_c02471{letter-spacing:0.110656pt;}
.ls2_c02471{letter-spacing:0.128000pt;}
.ls6_c02471{letter-spacing:0.161728pt;}
.ls3_c02471{letter-spacing:80.320000pt;}
.ls0_c02471{letter-spacing:172.800000pt;}
.ws1_c02471{word-spacing:-10.801728pt;}
.ws2_c02471{word-spacing:-10.750656pt;}
.ws25_c02471{word-spacing:-0.230400pt;}
.ws0_c02471{word-spacing:-0.140544pt;}
.ws19_c02471{word-spacing:-0.070400pt;}
.ws17_c02471{word-spacing:-0.057600pt;}
.wsc_c02471{word-spacing:-0.025600pt;}
.wse_c02471{word-spacing:-0.019200pt;}
.ws6_c02471{word-spacing:-0.006400pt;}
.ws3_c02471{word-spacing:0.000000pt;}
.ws1e_c02471{word-spacing:0.011712pt;}
.ws5_c02471{word-spacing:0.040992pt;}
.ws18_c02471{word-spacing:0.052704pt;}
.ws1f_c02471{word-spacing:0.058560pt;}
.ws4_c02471{word-spacing:0.064416pt;}
.ws21_c02471{word-spacing:1.868800pt;}
.ws22_c02471{word-spacing:2.496000pt;}
.ws1d_c02471{word-spacing:3.328000pt;}
.ws11_c02471{word-spacing:4.044800pt;}
.ws12_c02471{word-spacing:4.179200pt;}
.ws8_c02471{word-spacing:4.646400pt;}
.ws9_c02471{word-spacing:4.736000pt;}
.wsa_c02471{word-spacing:5.587200pt;}
.ws1c_c02471{word-spacing:5.907200pt;}
.ws1b_c02471{word-spacing:6.067200pt;}
.wsd_c02471{word-spacing:8.971392pt;}
.ws16_c02471{word-spacing:10.176000pt;}
.ws24_c02471{word-spacing:10.182400pt;}
.wsb_c02471{word-spacing:13.382400pt;}
.ws7_c02471{word-spacing:13.401600pt;}
.ws15_c02471{word-spacing:15.366400pt;}
.ws1a_c02471{word-spacing:16.569600pt;}
.ws13_c02471{word-spacing:17.420800pt;}
.ws14_c02471{word-spacing:17.542400pt;}
.wsf_c02471{word-spacing:18.086400pt;}
.ws10_c02471{word-spacing:22.892800pt;}
.ws23_c02471{word-spacing:33.580800pt;}
.ws20_c02471{word-spacing:100.473600pt;}
._0_c02471{margin-left:-172.800000pt;}
._3_c02471{margin-left:-1.062400pt;}
._5_c02471{width:0.921600pt;}
._2_c02471{width:5.370880pt;}
._1_c02471{width:12.938880pt;}
._4_c02471{width:109.876128pt;}
.fs2_c02471{font-size:42.560000pt;}
.fs1_c02471{font-size:58.560000pt;}
.fs0_c02471{font-size:64.000000pt;}
.y0_c02471{bottom:0.000000pt;}
.y3_c02471{bottom:67.307451pt;}
.y2_c02471{bottom:101.226867pt;}
.y48_c02471{bottom:123.071072pt;}
.y47_c02471{bottom:140.990432pt;}
.y46_c02471{bottom:158.909792pt;}
.y45_c02471{bottom:176.750096pt;}
.y44_c02471{bottom:194.669456pt;}
.y43_c02471{bottom:212.588816pt;}
.y42_c02471{bottom:230.508176pt;}
.y41_c02471{bottom:248.427536pt;}
.y40_c02471{bottom:266.267840pt;}
.y3f_c02471{bottom:284.187200pt;}
.y3e_c02471{bottom:310.987067pt;}
.y3d_c02471{bottom:329.947200pt;}
.y3c_c02471{bottom:348.507200pt;}
.y3b_c02471{bottom:366.907200pt;}
.y3a_c02471{bottom:385.227200pt;}
.y39_c02471{bottom:403.627200pt;}
.y38_c02471{bottom:422.027067pt;}
.y35_c02471{bottom:427.867827pt;}
.y37_c02471{bottom:440.267067pt;}
.y33_c02471{bottom:444.747747pt;}
.y36_c02471{bottom:458.667067pt;}
.y32_c02471{bottom:461.627667pt;}
.y31_c02471{bottom:477.067067pt;}
.y34_c02471{bottom:478.427067pt;}
.y30_c02471{bottom:496.347067pt;}
.y2f_c02471{bottom:514.747067pt;}
.y2e_c02471{bottom:533.147067pt;}
.y2d_c02471{bottom:551.547067pt;}
.y2a_c02471{bottom:557.307307pt;}
.y2c_c02471{bottom:569.947067pt;}
.y29_c02471{bottom:574.187227pt;}
.y2b_c02471{bottom:588.187067pt;}
.y28_c02471{bottom:591.067147pt;}
.y27_c02471{bottom:606.587067pt;}
.y26_c02471{bottom:625.787067pt;}
.y25_c02471{bottom:644.187067pt;}
.y24_c02471{bottom:662.587067pt;}
.y23_c02471{bottom:680.987067pt;}
.y22_c02471{bottom:699.387067pt;}
.y21_c02471{bottom:717.787067pt;}
.y20_c02471{bottom:736.187067pt;}
.y1f_c02471{bottom:754.587067pt;}
.y1b_c02471{bottom:761.867387pt;}
.y1e_c02471{bottom:772.987067pt;}
.y19_c02471{bottom:778.747307pt;}
.y1d_c02471{bottom:791.387067pt;}
.y18_c02471{bottom:795.627227pt;}
.y1c_c02471{bottom:809.627067pt;}
.y17_c02471{bottom:812.507147pt;}
.y16_c02471{bottom:828.027067pt;}
.y1a_c02471{bottom:829.387067pt;}
.y15_c02471{bottom:847.227067pt;}
.y14_c02471{bottom:865.627067pt;}
.y13_c02471{bottom:884.027067pt;}
.y12_c02471{bottom:902.427067pt;}
.y11_c02471{bottom:920.667067pt;}
.y10_c02471{bottom:939.227067pt;}
.y8_c02471{bottom:946.587907pt;}
.yf_c02471{bottom:957.627067pt;}
.y7_c02471{bottom:963.387307pt;}
.yc_c02471{bottom:963.388771pt;}
.ye_c02471{bottom:976.027067pt;}
.y6_c02471{bottom:980.267227pt;}
.yb_c02471{bottom:980.268691pt;}
.yd_c02471{bottom:994.267067pt;}
.y5_c02471{bottom:997.147147pt;}
.ya_c02471{bottom:997.148611pt;}
.y4_c02471{bottom:1012.667067pt;}
.y9_c02471{bottom:1014.028531pt;}
.y1_c02471{bottom:1061.867067pt;}
.h3_c02471{height:39.030469pt;}
.h2_c02471{height:48.294844pt;}
.h4_c02471{height:57.473437pt;}
.h5_c02471{height:62.812500pt;}
.h1_c02471{height:64.500000pt;}
.h6_c02471{height:124.993118pt;}
.h0_c02471{height:1122.666667pt;}
.w1_c02471{width:793.333333pt;}
.w0_c02471{width:793.626667pt;}
.x0_c02471{left:0.000000pt;}
.x3_c02471{left:113.438856pt;}
.x4_c02471{left:120.560000pt;}
.x1_c02471{left:123.360000pt;}
.x5_c02471{left:167.760000pt;}
.x6_c02471{left:271.359960pt;}
.x7_c02471{left:382.720000pt;}
.x2_c02471{left:389.439456pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0a2ea22461d23bb9f293039.woff2')format("woff");}.ff1_c02472{font-family:ff1_c02472;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c02472;src:url('chunks/assets/font_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02472{font-family:ff2_c02472;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02472{font-family:ff3_c02472;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_c02472;src:url('chunks/assets/font_00823ad1438723f56cdbe2d4.woff2')format("woff");}.ff4_c02472{font-family:ff4_c02472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c02472{vertical-align:-78.840900px;}
.v2_c02472{vertical-align:-9.000000px;}
.v0_c02472{vertical-align:0.000000px;}
.v3_c02472{vertical-align:69.840000px;}
.ls23_c02472{letter-spacing:-0.021600px;}
.ls1f_c02472{letter-spacing:-0.007200px;}
.ls1a_c02472{letter-spacing:0.000000px;}
.ls1e_c02472{letter-spacing:0.006588px;}
.ls20_c02472{letter-spacing:0.007200px;}
.ls7_c02472{letter-spacing:0.013176px;}
.lse_c02472{letter-spacing:0.014400px;}
.ls1_c02472{letter-spacing:0.019764px;}
.ls16_c02472{letter-spacing:0.021600px;}
.ls11_c02472{letter-spacing:0.028800px;}
.ls5_c02472{letter-spacing:0.032940px;}
.lsd_c02472{letter-spacing:0.036000px;}
.ls9_c02472{letter-spacing:0.039528px;}
.lsc_c02472{letter-spacing:0.043200px;}
.ls4_c02472{letter-spacing:0.046116px;}
.ls14_c02472{letter-spacing:0.050400px;}
.ls22_c02472{letter-spacing:0.052704px;}
.ls10_c02472{letter-spacing:0.057600px;}
.ls13_c02472{letter-spacing:0.064800px;}
.ls1c_c02472{letter-spacing:0.065880px;}
.ls18_c02472{letter-spacing:0.072000px;}
.ls3_c02472{letter-spacing:0.072468px;}
.ls1b_c02472{letter-spacing:0.085644px;}
.ls15_c02472{letter-spacing:0.086400px;}
.ls19_c02472{letter-spacing:0.092232px;}
.ls17_c02472{letter-spacing:0.100800px;}
.ls21_c02472{letter-spacing:0.105408px;}
.lsf_c02472{letter-spacing:0.124488px;}
.ls8_c02472{letter-spacing:0.131760px;}
.lsa_c02472{letter-spacing:0.144000px;}
.ls1d_c02472{letter-spacing:0.181116px;}
.lsb_c02472{letter-spacing:0.181944px;}
.ls2_c02472{letter-spacing:15.575148px;}
.ls12_c02472{letter-spacing:101.610000px;}
.ls6_c02472{letter-spacing:102.687156px;}
.ls0_c02472{letter-spacing:194.400000px;}
.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;}
}
.ws3_c02472{word-spacing:-16.601760px;}
.ws4_c02472{word-spacing:-16.509528px;}
.ws5_c02472{word-spacing:-16.502940px;}
.ws1_c02472{word-spacing:-16.470000px;}
.ws2_c02472{word-spacing:-10.711116px;}
.ws0_c02472{word-spacing:-0.158112px;}
.wsf_c02472{word-spacing:-0.122400px;}
.ws29_c02472{word-spacing:-0.036000px;}
.ws1d_c02472{word-spacing:-0.021600px;}
.ws19_c02472{word-spacing:-0.014400px;}
.ws6_c02472{word-spacing:0.000000px;}
.ws8_c02472{word-spacing:0.006588px;}
.ws16_c02472{word-spacing:0.007200px;}
.ws9_c02472{word-spacing:0.046116px;}
.wsa_c02472{word-spacing:0.059292px;}
.ws7_c02472{word-spacing:0.072468px;}
.ws23_c02472{word-spacing:0.345600px;}
.ws1a_c02472{word-spacing:1.375200px;}
.ws1c_c02472{word-spacing:2.433600px;}
.ws1f_c02472{word-spacing:3.909600px;}
.ws2a_c02472{word-spacing:4.636800px;}
.ws25_c02472{word-spacing:11.829600px;}
.ws26_c02472{word-spacing:11.901600px;}
.ws1e_c02472{word-spacing:14.299200px;}
.ws11_c02472{word-spacing:14.342400px;}
.ws12_c02472{word-spacing:14.407200px;}
.ws1b_c02472{word-spacing:14.709600px;}
.ws2b_c02472{word-spacing:16.862400px;}
.ws24_c02472{word-spacing:17.517600px;}
.ws15_c02472{word-spacing:20.066400px;}
.wse_c02472{word-spacing:20.505600px;}
.wsd_c02472{word-spacing:21.549600px;}
.ws22_c02472{word-spacing:21.859200px;}
.ws20_c02472{word-spacing:21.902400px;}
.ws17_c02472{word-spacing:24.105492px;}
.wsb_c02472{word-spacing:27.252000px;}
.ws2d_c02472{word-spacing:29.102400px;}
.ws28_c02472{word-spacing:32.342400px;}
.ws14_c02472{word-spacing:33.062400px;}
.ws30_c02472{word-spacing:33.789600px;}
.ws2c_c02472{word-spacing:42.861600px;}
.ws13_c02472{word-spacing:45.367200px;}
.ws10_c02472{word-spacing:46.252800px;}
.ws2e_c02472{word-spacing:46.728000px;}
.ws21_c02472{word-spacing:53.575200px;}
.ws2f_c02472{word-spacing:64.778400px;}
.wsc_c02472{word-spacing:65.124000px;}
.ws27_c02472{word-spacing:89.935200px;}
.ws18_c02472{word-spacing:156.590172px;}
._0_c02472{margin-left:-194.400000px;}
._5_c02472{margin-left:-1.569600px;}
._a_c02472{width:4.242240px;}
._7_c02472{width:13.962240px;}
._9_c02472{width:17.076240px;}
._4_c02472{width:26.796240px;}
._6_c02472{width:46.002240px;}
._1_c02472{width:61.963020px;}
._8_c02472{width:99.721476px;}
._2_c02472{width:142.769772px;}
._3_c02472{width:162.349524px;}
.fc0_c02472{color:rgb(0,0,0);}
.fs2_c02472{font-size:42.120000px;}
.fs4_c02472{font-size:47.880000px;}
.fs3_c02472{font-size:60.120000px;}
.fs1_c02472{font-size:65.880000px;}
.fs0_c02472{font-size:72.000000px;}
.y0_c02472{bottom:0.000000px;}
.y3_c02472{bottom:75.720882px;}
.y2_c02472{bottom:113.880225px;}
.y43_c02472{bottom:141.960450px;}
.y42_c02472{bottom:162.660450px;}
.y41_c02472{bottom:183.360450px;}
.y40_c02472{bottom:204.060450px;}
.y3f_c02472{bottom:224.760450px;}
.y3e_c02472{bottom:245.460450px;}
.y3d_c02472{bottom:266.070450px;}
.y3c_c02472{bottom:286.770450px;}
.y3b_c02472{bottom:307.470450px;}
.y3a_c02472{bottom:327.000600px;}
.y39_c02472{bottom:342.030450px;}
.y38_c02472{bottom:362.730450px;}
.y37_c02472{bottom:383.430450px;}
.y36_c02472{bottom:404.130450px;}
.y32_c02472{bottom:422.671215px;}
.y35_c02472{bottom:424.830450px;}
.y31_c02472{bottom:441.661125px;}
.y34_c02472{bottom:444.000450px;}
.y30_c02472{bottom:460.560450px;}
.y33_c02472{bottom:460.651035px;}
.y2f_c02472{bottom:480.720450px;}
.y2e_c02472{bottom:501.420450px;}
.y2d_c02472{bottom:522.120450px;}
.y2c_c02472{bottom:542.820450px;}
.y2b_c02472{bottom:563.520450px;}
.y2a_c02472{bottom:584.220450px;}
.y29_c02472{bottom:604.920450px;}
.y28_c02472{bottom:625.620450px;}
.y27_c02472{bottom:646.140450px;}
.y26_c02472{bottom:667.020450px;}
.y25_c02472{bottom:687.720450px;}
.y24_c02472{bottom:708.420450px;}
.y1f_c02472{bottom:714.991890px;}
.y23_c02472{bottom:729.120450px;}
.y1e_c02472{bottom:733.891215px;}
.y22_c02472{bottom:749.640450px;}
.y21_c02472{bottom:752.880540px;}
.y1d_c02472{bottom:752.881125px;}
.y1c_c02472{bottom:771.780450px;}
.y20_c02472{bottom:771.870450px;}
.y1b_c02472{bottom:791.940450px;}
.y1a_c02472{bottom:812.640450px;}
.y19_c02472{bottom:833.340450px;}
.y18_c02472{bottom:854.040450px;}
.y17_c02472{bottom:874.740450px;}
.y16_c02472{bottom:895.440450px;}
.y15_c02472{bottom:916.140450px;}
.y14_c02472{bottom:936.660450px;}
.y13_c02472{bottom:957.540450px;}
.y12_c02472{bottom:978.240450px;}
.y11_c02472{bottom:998.940450px;}
.y10_c02472{bottom:1019.640450px;}
.y9_c02472{bottom:1026.211890px;}
.yf_c02472{bottom:1040.340450px;}
.yc_c02472{bottom:1045.110630px;}
.y8_c02472{bottom:1045.111215px;}
.ye_c02472{bottom:1060.860450px;}
.yb_c02472{bottom:1064.100540px;}
.y7_c02472{bottom:1064.101125px;}
.yd_c02472{bottom:1081.560450px;}
.y6_c02472{bottom:1083.000450px;}
.ya_c02472{bottom:1083.090450px;}
.y5_c02472{bottom:1122.420675px;}
.y4_c02472{bottom:1141.410585px;}
.y1_c02472{bottom:1194.600450px;}
.h3_c02472{height:43.909277px;}
.ha_c02472{height:46.991602px;}
.h9_c02472{height:48.254063px;}
.h2_c02472{height:54.331699px;}
.h5_c02472{height:64.657617px;}
.h4_c02472{height:66.394687px;}
.h6_c02472{height:70.664062px;}
.h1_c02472{height:72.562500px;}
.h8_c02472{height:142.400400px;}
.h7_c02472{height:142.402140px;}
.h0_c02472{height:1263.000000px;}
.w1_c02472{width:892.500000px;}
.w0_c02472{width:892.830000px;}
.x0_c02472{left:0.000000px;}
.x3_c02472{left:127.618713px;}
.x4_c02472{left:135.630000px;}
.x1_c02472{left:138.780000px;}
.x5_c02472{left:188.729289px;}
.x6_c02472{left:306.000000px;}
.x7_c02472{left:431.370000px;}
.x2_c02472{left:438.119388px;}
@media print{
.v1_c02472{vertical-align:-70.080800pt;}
.v2_c02472{vertical-align:-8.000000pt;}
.v0_c02472{vertical-align:0.000000pt;}
.v3_c02472{vertical-align:62.080000pt;}
.ls23_c02472{letter-spacing:-0.019200pt;}
.ls1f_c02472{letter-spacing:-0.006400pt;}
.ls1a_c02472{letter-spacing:0.000000pt;}
.ls1e_c02472{letter-spacing:0.005856pt;}
.ls20_c02472{letter-spacing:0.006400pt;}
.ls7_c02472{letter-spacing:0.011712pt;}
.lse_c02472{letter-spacing:0.012800pt;}
.ls1_c02472{letter-spacing:0.017568pt;}
.ls16_c02472{letter-spacing:0.019200pt;}
.ls11_c02472{letter-spacing:0.025600pt;}
.ls5_c02472{letter-spacing:0.029280pt;}
.lsd_c02472{letter-spacing:0.032000pt;}
.ls9_c02472{letter-spacing:0.035136pt;}
.lsc_c02472{letter-spacing:0.038400pt;}
.ls4_c02472{letter-spacing:0.040992pt;}
.ls14_c02472{letter-spacing:0.044800pt;}
.ls22_c02472{letter-spacing:0.046848pt;}
.ls10_c02472{letter-spacing:0.051200pt;}
.ls13_c02472{letter-spacing:0.057600pt;}
.ls1c_c02472{letter-spacing:0.058560pt;}
.ls18_c02472{letter-spacing:0.064000pt;}
.ls3_c02472{letter-spacing:0.064416pt;}
.ls1b_c02472{letter-spacing:0.076128pt;}
.ls15_c02472{letter-spacing:0.076800pt;}
.ls19_c02472{letter-spacing:0.081984pt;}
.ls17_c02472{letter-spacing:0.089600pt;}
.ls21_c02472{letter-spacing:0.093696pt;}
.lsf_c02472{letter-spacing:0.110656pt;}
.ls8_c02472{letter-spacing:0.117120pt;}
.lsa_c02472{letter-spacing:0.128000pt;}
.ls1d_c02472{letter-spacing:0.160992pt;}
.lsb_c02472{letter-spacing:0.161728pt;}
.ls2_c02472{letter-spacing:13.844576pt;}
.ls12_c02472{letter-spacing:90.320000pt;}
.ls6_c02472{letter-spacing:91.277472pt;}
.ls0_c02472{letter-spacing:172.800000pt;}
.ws3_c02472{word-spacing:-14.757120pt;}
.ws4_c02472{word-spacing:-14.675136pt;}
.ws5_c02472{word-spacing:-14.669280pt;}
.ws1_c02472{word-spacing:-14.640000pt;}
.ws2_c02472{word-spacing:-9.520992pt;}
.ws0_c02472{word-spacing:-0.140544pt;}
.wsf_c02472{word-spacing:-0.108800pt;}
.ws29_c02472{word-spacing:-0.032000pt;}
.ws1d_c02472{word-spacing:-0.019200pt;}
.ws19_c02472{word-spacing:-0.012800pt;}
.ws6_c02472{word-spacing:0.000000pt;}
.ws8_c02472{word-spacing:0.005856pt;}
.ws16_c02472{word-spacing:0.006400pt;}
.ws9_c02472{word-spacing:0.040992pt;}
.wsa_c02472{word-spacing:0.052704pt;}
.ws7_c02472{word-spacing:0.064416pt;}
.ws23_c02472{word-spacing:0.307200pt;}
.ws1a_c02472{word-spacing:1.222400pt;}
.ws1c_c02472{word-spacing:2.163200pt;}
.ws1f_c02472{word-spacing:3.475200pt;}
.ws2a_c02472{word-spacing:4.121600pt;}
.ws25_c02472{word-spacing:10.515200pt;}
.ws26_c02472{word-spacing:10.579200pt;}
.ws1e_c02472{word-spacing:12.710400pt;}
.ws11_c02472{word-spacing:12.748800pt;}
.ws12_c02472{word-spacing:12.806400pt;}
.ws1b_c02472{word-spacing:13.075200pt;}
.ws2b_c02472{word-spacing:14.988800pt;}
.ws24_c02472{word-spacing:15.571200pt;}
.ws15_c02472{word-spacing:17.836800pt;}
.wse_c02472{word-spacing:18.227200pt;}
.wsd_c02472{word-spacing:19.155200pt;}
.ws22_c02472{word-spacing:19.430400pt;}
.ws20_c02472{word-spacing:19.468800pt;}
.ws17_c02472{word-spacing:21.427104pt;}
.wsb_c02472{word-spacing:24.224000pt;}
.ws2d_c02472{word-spacing:25.868800pt;}
.ws28_c02472{word-spacing:28.748800pt;}
.ws14_c02472{word-spacing:29.388800pt;}
.ws30_c02472{word-spacing:30.035200pt;}
.ws2c_c02472{word-spacing:38.099200pt;}
.ws13_c02472{word-spacing:40.326400pt;}
.ws10_c02472{word-spacing:41.113600pt;}
.ws2e_c02472{word-spacing:41.536000pt;}
.ws21_c02472{word-spacing:47.622400pt;}
.ws2f_c02472{word-spacing:57.580800pt;}
.wsc_c02472{word-spacing:57.888000pt;}
.ws27_c02472{word-spacing:79.942400pt;}
.ws18_c02472{word-spacing:139.191264pt;}
._0_c02472{margin-left:-172.800000pt;}
._5_c02472{margin-left:-1.395200pt;}
._a_c02472{width:3.770880pt;}
._7_c02472{width:12.410880pt;}
._9_c02472{width:15.178880pt;}
._4_c02472{width:23.818880pt;}
._6_c02472{width:40.890880pt;}
._1_c02472{width:55.078240pt;}
._8_c02472{width:88.641312pt;}
._2_c02472{width:126.906464pt;}
._3_c02472{width:144.310688pt;}
.fs2_c02472{font-size:37.440000pt;}
.fs4_c02472{font-size:42.560000pt;}
.fs3_c02472{font-size:53.440000pt;}
.fs1_c02472{font-size:58.560000pt;}
.fs0_c02472{font-size:64.000000pt;}
.y0_c02472{bottom:0.000000pt;}
.y3_c02472{bottom:67.307451pt;}
.y2_c02472{bottom:101.226867pt;}
.y43_c02472{bottom:126.187067pt;}
.y42_c02472{bottom:144.587067pt;}
.y41_c02472{bottom:162.987067pt;}
.y40_c02472{bottom:181.387067pt;}
.y3f_c02472{bottom:199.787067pt;}
.y3e_c02472{bottom:218.187067pt;}
.y3d_c02472{bottom:236.507067pt;}
.y3c_c02472{bottom:254.907067pt;}
.y3b_c02472{bottom:273.307067pt;}
.y3a_c02472{bottom:290.667200pt;}
.y39_c02472{bottom:304.027067pt;}
.y38_c02472{bottom:322.427067pt;}
.y37_c02472{bottom:340.827067pt;}
.y36_c02472{bottom:359.227067pt;}
.y32_c02472{bottom:375.707747pt;}
.y35_c02472{bottom:377.627067pt;}
.y31_c02472{bottom:392.587667pt;}
.y34_c02472{bottom:394.667067pt;}
.y30_c02472{bottom:409.387067pt;}
.y33_c02472{bottom:409.467587pt;}
.y2f_c02472{bottom:427.307067pt;}
.y2e_c02472{bottom:445.707067pt;}
.y2d_c02472{bottom:464.107067pt;}
.y2c_c02472{bottom:482.507067pt;}
.y2b_c02472{bottom:500.907067pt;}
.y2a_c02472{bottom:519.307067pt;}
.y29_c02472{bottom:537.707067pt;}
.y28_c02472{bottom:556.107067pt;}
.y27_c02472{bottom:574.347067pt;}
.y26_c02472{bottom:592.907067pt;}
.y25_c02472{bottom:611.307067pt;}
.y24_c02472{bottom:629.707067pt;}
.y1f_c02472{bottom:635.548347pt;}
.y23_c02472{bottom:648.107067pt;}
.y1e_c02472{bottom:652.347747pt;}
.y22_c02472{bottom:666.347067pt;}
.y21_c02472{bottom:669.227147pt;}
.y1d_c02472{bottom:669.227667pt;}
.y1c_c02472{bottom:686.027067pt;}
.y20_c02472{bottom:686.107067pt;}
.y1b_c02472{bottom:703.947067pt;}
.y1a_c02472{bottom:722.347067pt;}
.y19_c02472{bottom:740.747067pt;}
.y18_c02472{bottom:759.147067pt;}
.y17_c02472{bottom:777.547067pt;}
.y16_c02472{bottom:795.947067pt;}
.y15_c02472{bottom:814.347067pt;}
.y14_c02472{bottom:832.587067pt;}
.y13_c02472{bottom:851.147067pt;}
.y12_c02472{bottom:869.547067pt;}
.y11_c02472{bottom:887.947067pt;}
.y10_c02472{bottom:906.347067pt;}
.y9_c02472{bottom:912.188347pt;}
.yf_c02472{bottom:924.747067pt;}
.yc_c02472{bottom:928.987227pt;}
.y8_c02472{bottom:928.987747pt;}
.ye_c02472{bottom:942.987067pt;}
.yb_c02472{bottom:945.867147pt;}
.y7_c02472{bottom:945.867667pt;}
.yd_c02472{bottom:961.387067pt;}
.y6_c02472{bottom:962.667067pt;}
.ya_c02472{bottom:962.747067pt;}
.y5_c02472{bottom:997.707267pt;}
.y4_c02472{bottom:1014.587187pt;}
.y1_c02472{bottom:1061.867067pt;}
.h3_c02472{height:39.030469pt;}
.ha_c02472{height:41.770312pt;}
.h9_c02472{height:42.892500pt;}
.h2_c02472{height:48.294844pt;}
.h5_c02472{height:57.473437pt;}
.h4_c02472{height:59.017500pt;}
.h6_c02472{height:62.812500pt;}
.h1_c02472{height:64.500000pt;}
.h8_c02472{height:126.578133pt;}
.h7_c02472{height:126.579680pt;}
.h0_c02472{height:1122.666667pt;}
.w1_c02472{width:793.333333pt;}
.w0_c02472{width:793.626667pt;}
.x0_c02472{left:0.000000pt;}
.x3_c02472{left:113.438856pt;}
.x4_c02472{left:120.560000pt;}
.x1_c02472{left:123.360000pt;}
.x5_c02472{left:167.759368pt;}
.x6_c02472{left:272.000000pt;}
.x7_c02472{left:383.440000pt;}
.x2_c02472{left:389.439456pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_271b2be54acdf4effc3ccdd8.woff2')format("woff");}.ff1_c02473{font-family:ff1_c02473;line-height:1.311035;font-style:normal;font-weight:normal;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_ecd0555c4eaf2a210776aae6.woff2')format("woff");}.ff2_c02473{font-family:ff2_c02473;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02473{font-family:ff3_c02473;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_c02473;src:url('chunks/assets/font_5a87ce00e0b431c7a3b02937.woff2')format("woff");}.ff4_c02473{font-family:ff4_c02473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c02473;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff5_c02473{font-family:ff5_c02473;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;}
.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);}
.v1_c02473{vertical-align:-9.001584px;}
.v3_c02473{vertical-align:-5.040000px;}
.v0_c02473{vertical-align:0.000000px;}
.v2_c02473{vertical-align:69.830712px;}
.ls23_c02473{letter-spacing:-0.050400px;}
.ls1e_c02473{letter-spacing:-0.021600px;}
.ls20_c02473{letter-spacing:-0.014400px;}
.ls22_c02473{letter-spacing:-0.013176px;}
.ls1f_c02473{letter-spacing:-0.007200px;}
.ls17_c02473{letter-spacing:0.000000px;}
.ls3_c02473{letter-spacing:0.006588px;}
.lsb_c02473{letter-spacing:0.007200px;}
.ls21_c02473{letter-spacing:0.013176px;}
.ls5_c02473{letter-spacing:0.014400px;}
.ls1_c02473{letter-spacing:0.019764px;}
.ls11_c02473{letter-spacing:0.021600px;}
.ls1c_c02473{letter-spacing:0.026352px;}
.lsf_c02473{letter-spacing:0.028800px;}
.ls19_c02473{letter-spacing:0.032940px;}
.ls8_c02473{letter-spacing:0.036000px;}
.lsa_c02473{letter-spacing:0.043200px;}
.ls1d_c02473{letter-spacing:0.046116px;}
.lsd_c02473{letter-spacing:0.050400px;}
.ls1a_c02473{letter-spacing:0.052704px;}
.ls10_c02473{letter-spacing:0.057600px;}
.ls13_c02473{letter-spacing:0.064800px;}
.ls1b_c02473{letter-spacing:0.065880px;}
.ls4_c02473{letter-spacing:0.072468px;}
.ls15_c02473{letter-spacing:0.079200px;}
.ls7_c02473{letter-spacing:0.086400px;}
.ls16_c02473{letter-spacing:0.092232px;}
.lse_c02473{letter-spacing:0.119700px;}
.lsc_c02473{letter-spacing:0.124488px;}
.ls6_c02473{letter-spacing:0.144000px;}
.ls14_c02473{letter-spacing:0.172800px;}
.ls18_c02473{letter-spacing:0.181116px;}
.ls9_c02473{letter-spacing:0.181944px;}
.ls2_c02473{letter-spacing:102.687156px;}
.ls12_c02473{letter-spacing:102.690000px;}
.ls0_c02473{letter-spacing:194.400000px;}
.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;}
}
.ws3_c02473{word-spacing:-18.079200px;}
.ws1_c02473{word-spacing:-16.470000px;}
.ws2_c02473{word-spacing:-10.711116px;}
.ws22_c02473{word-spacing:-0.172800px;}
.ws0_c02473{word-spacing:-0.158112px;}
.ws20_c02473{word-spacing:-0.144000px;}
.ws12_c02473{word-spacing:-0.115200px;}
.wsb_c02473{word-spacing:-0.036000px;}
.ws7_c02473{word-spacing:-0.014400px;}
.ws23_c02473{word-spacing:-0.007200px;}
.ws4_c02473{word-spacing:0.000000px;}
.ws21_c02473{word-spacing:0.007200px;}
.wsc_c02473{word-spacing:0.026352px;}
.ws6_c02473{word-spacing:0.059292px;}
.ws5_c02473{word-spacing:0.072468px;}
.ws1c_c02473{word-spacing:0.079056px;}
.wsd_c02473{word-spacing:1.396800px;}
.ws9_c02473{word-spacing:7.164000px;}
.ws1b_c02473{word-spacing:7.884000px;}
.ws14_c02473{word-spacing:8.150400px;}
.ws15_c02473{word-spacing:8.287200px;}
.wsa_c02473{word-spacing:9.993600px;}
.wse_c02473{word-spacing:10.461600px;}
.ws1d_c02473{word-spacing:13.262400px;}
.ws11_c02473{word-spacing:14.004000px;}
.ws17_c02473{word-spacing:16.099200px;}
.ws16_c02473{word-spacing:16.120800px;}
.ws10_c02473{word-spacing:16.185600px;}
.ws26_c02473{word-spacing:16.401600px;}
.ws1a_c02473{word-spacing:17.596800px;}
.ws1f_c02473{word-spacing:22.176000px;}
.ws8_c02473{word-spacing:22.953600px;}
.ws24_c02473{word-spacing:23.616000px;}
.wsf_c02473{word-spacing:38.152800px;}
.ws13_c02473{word-spacing:50.925600px;}
.ws18_c02473{word-spacing:51.739200px;}
.ws19_c02473{word-spacing:66.232800px;}
.ws1e_c02473{word-spacing:78.105600px;}
.ws25_c02473{word-spacing:91.396800px;}
._0_c02473{margin-left:-194.400000px;}
._3_c02473{margin-left:-1.396800px;}
._2_c02473{width:22.838184px;}
._4_c02473{width:50.682240px;}
._1_c02473{width:99.721476px;}
.fc0_c02473{color:rgb(0,0,0);}
.fs2_c02473{font-size:42.120000px;}
.fs3_c02473{font-size:47.880000px;}
.fs1_c02473{font-size:65.880000px;}
.fs0_c02473{font-size:72.000000px;}
.y0_c02473{bottom:0.000000px;}
.y3_c02473{bottom:75.720882px;}
.y2_c02473{bottom:113.880225px;}
.y4a_c02473{bottom:136.023078px;}
.y49_c02473{bottom:174.182421px;}
.y48_c02473{bottom:212.341764px;}
.y47_c02473{bottom:250.501107px;}
.y46_c02473{bottom:288.660450px;}
.y45_c02473{bottom:309.270450px;}
.y44_c02473{bottom:329.970450px;}
.y3d_c02473{bottom:350.670450px;}
.y3c_c02473{bottom:371.370450px;}
.y3b_c02473{bottom:392.070450px;}
.y43_c02473{bottom:392.070600px;}
.y40_c02473{bottom:396.840801px;}
.y42_c02473{bottom:412.590600px;}
.y3a_c02473{bottom:412.770450px;}
.y3f_c02473{bottom:415.830711px;}
.y41_c02473{bottom:433.200600px;}
.y39_c02473{bottom:434.640450px;}
.y3e_c02473{bottom:434.730036px;}
.y38_c02473{bottom:454.890450px;}
.y37_c02473{bottom:475.590450px;}
.y2e_c02473{bottom:485.582070px;}
.y36_c02473{bottom:496.290450px;}
.y2d_c02473{bottom:504.481395px;}
.y35_c02473{bottom:516.990450px;}
.y2c_c02473{bottom:523.471305px;}
.y34_c02473{bottom:537.690450px;}
.y2b_c02473{bottom:542.461215px;}
.y31_c02473{bottom:542.462862px;}
.y33_c02473{bottom:558.210450px;}
.y2a_c02473{bottom:561.451125px;}
.y30_c02473{bottom:561.452772px;}
.y32_c02473{bottom:578.910450px;}
.y29_c02473{bottom:580.350450px;}
.y2f_c02473{bottom:580.442682px;}
.y28_c02473{bottom:600.510450px;}
.y27_c02473{bottom:621.210450px;}
.y26_c02473{bottom:641.910450px;}
.y25_c02473{bottom:662.610450px;}
.y24_c02473{bottom:683.310450px;}
.y23_c02473{bottom:704.010450px;}
.y22_c02473{bottom:724.530450px;}
.y21_c02473{bottom:745.410450px;}
.y20_c02473{bottom:766.110450px;}
.y1f_c02473{bottom:786.810450px;}
.y1e_c02473{bottom:807.510450px;}
.y1d_c02473{bottom:828.030450px;}
.y1c_c02473{bottom:848.910450px;}
.y1b_c02473{bottom:869.610450px;}
.y1a_c02473{bottom:890.310450px;}
.y19_c02473{bottom:911.010450px;}
.y18_c02473{bottom:931.710450px;}
.y17_c02473{bottom:952.410450px;}
.y13_c02473{bottom:957.181215px;}
.y16_c02473{bottom:972.930450px;}
.y12_c02473{bottom:976.171125px;}
.y15_c02473{bottom:993.630450px;}
.y11_c02473{bottom:995.070450px;}
.y14_c02473{bottom:995.161035px;}
.y10_c02473{bottom:1015.050450px;}
.yf_c02473{bottom:1035.930450px;}
.ye_c02473{bottom:1056.630450px;}
.y8_c02473{bottom:1064.911980px;}
.yd_c02473{bottom:1077.330450px;}
.y7_c02473{bottom:1083.811305px;}
.yc_c02473{bottom:1098.030450px;}
.y6_c02473{bottom:1102.801215px;}
.yb_c02473{bottom:1118.550450px;}
.y5_c02473{bottom:1121.791125px;}
.ya_c02473{bottom:1121.792772px;}
.y4_c02473{bottom:1140.690846px;}
.y9_c02473{bottom:1140.782682px;}
.y1_c02473{bottom:1194.600450px;}
.h3_c02473{height:43.909277px;}
.h2_c02473{height:54.331699px;}
.h5_c02473{height:64.657617px;}
.h4_c02473{height:66.394687px;}
.h7_c02473{height:70.664062px;}
.h1_c02473{height:72.562500px;}
.h6_c02473{height:142.393212px;}
.h0_c02473{height:1263.000000px;}
.w1_c02473{width:892.500000px;}
.w0_c02473{width:892.830000px;}
.x0_c02473{left:0.000000px;}
.x3_c02473{left:127.618713px;}
.x4_c02473{left:135.628074px;}
.x1_c02473{left:138.780000px;}
.x5_c02473{left:188.729289px;}
.x6_c02473{left:305.998983px;}
.x7_c02473{left:431.370000px;}
.x2_c02473{left:438.119388px;}
@media print{
.v1_c02473{vertical-align:-8.001408pt;}
.v3_c02473{vertical-align:-4.480000pt;}
.v0_c02473{vertical-align:0.000000pt;}
.v2_c02473{vertical-align:62.071744pt;}
.ls23_c02473{letter-spacing:-0.044800pt;}
.ls1e_c02473{letter-spacing:-0.019200pt;}
.ls20_c02473{letter-spacing:-0.012800pt;}
.ls22_c02473{letter-spacing:-0.011712pt;}
.ls1f_c02473{letter-spacing:-0.006400pt;}
.ls17_c02473{letter-spacing:0.000000pt;}
.ls3_c02473{letter-spacing:0.005856pt;}
.lsb_c02473{letter-spacing:0.006400pt;}
.ls21_c02473{letter-spacing:0.011712pt;}
.ls5_c02473{letter-spacing:0.012800pt;}
.ls1_c02473{letter-spacing:0.017568pt;}
.ls11_c02473{letter-spacing:0.019200pt;}
.ls1c_c02473{letter-spacing:0.023424pt;}
.lsf_c02473{letter-spacing:0.025600pt;}
.ls19_c02473{letter-spacing:0.029280pt;}
.ls8_c02473{letter-spacing:0.032000pt;}
.lsa_c02473{letter-spacing:0.038400pt;}
.ls1d_c02473{letter-spacing:0.040992pt;}
.lsd_c02473{letter-spacing:0.044800pt;}
.ls1a_c02473{letter-spacing:0.046848pt;}
.ls10_c02473{letter-spacing:0.051200pt;}
.ls13_c02473{letter-spacing:0.057600pt;}
.ls1b_c02473{letter-spacing:0.058560pt;}
.ls4_c02473{letter-spacing:0.064416pt;}
.ls15_c02473{letter-spacing:0.070400pt;}
.ls7_c02473{letter-spacing:0.076800pt;}
.ls16_c02473{letter-spacing:0.081984pt;}
.lse_c02473{letter-spacing:0.106400pt;}
.lsc_c02473{letter-spacing:0.110656pt;}
.ls6_c02473{letter-spacing:0.128000pt;}
.ls14_c02473{letter-spacing:0.153600pt;}
.ls18_c02473{letter-spacing:0.160992pt;}
.ls9_c02473{letter-spacing:0.161728pt;}
.ls2_c02473{letter-spacing:91.277472pt;}
.ls12_c02473{letter-spacing:91.280000pt;}
.ls0_c02473{letter-spacing:172.800000pt;}
.ws3_c02473{word-spacing:-16.070400pt;}
.ws1_c02473{word-spacing:-14.640000pt;}
.ws2_c02473{word-spacing:-9.520992pt;}
.ws22_c02473{word-spacing:-0.153600pt;}
.ws0_c02473{word-spacing:-0.140544pt;}
.ws20_c02473{word-spacing:-0.128000pt;}
.ws12_c02473{word-spacing:-0.102400pt;}
.wsb_c02473{word-spacing:-0.032000pt;}
.ws7_c02473{word-spacing:-0.012800pt;}
.ws23_c02473{word-spacing:-0.006400pt;}
.ws4_c02473{word-spacing:0.000000pt;}
.ws21_c02473{word-spacing:0.006400pt;}
.wsc_c02473{word-spacing:0.023424pt;}
.ws6_c02473{word-spacing:0.052704pt;}
.ws5_c02473{word-spacing:0.064416pt;}
.ws1c_c02473{word-spacing:0.070272pt;}
.wsd_c02473{word-spacing:1.241600pt;}
.ws9_c02473{word-spacing:6.368000pt;}
.ws1b_c02473{word-spacing:7.008000pt;}
.ws14_c02473{word-spacing:7.244800pt;}
.ws15_c02473{word-spacing:7.366400pt;}
.wsa_c02473{word-spacing:8.883200pt;}
.wse_c02473{word-spacing:9.299200pt;}
.ws1d_c02473{word-spacing:11.788800pt;}
.ws11_c02473{word-spacing:12.448000pt;}
.ws17_c02473{word-spacing:14.310400pt;}
.ws16_c02473{word-spacing:14.329600pt;}
.ws10_c02473{word-spacing:14.387200pt;}
.ws26_c02473{word-spacing:14.579200pt;}
.ws1a_c02473{word-spacing:15.641600pt;}
.ws1f_c02473{word-spacing:19.712000pt;}
.ws8_c02473{word-spacing:20.403200pt;}
.ws24_c02473{word-spacing:20.992000pt;}
.wsf_c02473{word-spacing:33.913600pt;}
.ws13_c02473{word-spacing:45.267200pt;}
.ws18_c02473{word-spacing:45.990400pt;}
.ws19_c02473{word-spacing:58.873600pt;}
.ws1e_c02473{word-spacing:69.427200pt;}
.ws25_c02473{word-spacing:81.241600pt;}
._0_c02473{margin-left:-172.800000pt;}
._3_c02473{margin-left:-1.241600pt;}
._2_c02473{width:20.300608pt;}
._4_c02473{width:45.050880pt;}
._1_c02473{width:88.641312pt;}
.fs2_c02473{font-size:37.440000pt;}
.fs3_c02473{font-size:42.560000pt;}
.fs1_c02473{font-size:58.560000pt;}
.fs0_c02473{font-size:64.000000pt;}
.y0_c02473{bottom:0.000000pt;}
.y3_c02473{bottom:67.307451pt;}
.y2_c02473{bottom:101.226867pt;}
.y4a_c02473{bottom:120.909403pt;}
.y49_c02473{bottom:154.828819pt;}
.y48_c02473{bottom:188.748235pt;}
.y47_c02473{bottom:222.667651pt;}
.y46_c02473{bottom:256.587067pt;}
.y45_c02473{bottom:274.907067pt;}
.y44_c02473{bottom:293.307067pt;}
.y3d_c02473{bottom:311.707067pt;}
.y3c_c02473{bottom:330.107067pt;}
.y3b_c02473{bottom:348.507067pt;}
.y43_c02473{bottom:348.507200pt;}
.y40_c02473{bottom:352.747379pt;}
.y42_c02473{bottom:366.747200pt;}
.y3a_c02473{bottom:366.907067pt;}
.y3f_c02473{bottom:369.627299pt;}
.y41_c02473{bottom:385.067200pt;}
.y39_c02473{bottom:386.347067pt;}
.y3e_c02473{bottom:386.426699pt;}
.y38_c02473{bottom:404.347067pt;}
.y37_c02473{bottom:422.747067pt;}
.y2e_c02473{bottom:431.628507pt;}
.y36_c02473{bottom:441.147067pt;}
.y2d_c02473{bottom:448.427907pt;}
.y35_c02473{bottom:459.547067pt;}
.y2c_c02473{bottom:465.307827pt;}
.y34_c02473{bottom:477.947067pt;}
.y2b_c02473{bottom:482.187747pt;}
.y31_c02473{bottom:482.189211pt;}
.y33_c02473{bottom:496.187067pt;}
.y2a_c02473{bottom:499.067667pt;}
.y30_c02473{bottom:499.069131pt;}
.y32_c02473{bottom:514.587067pt;}
.y29_c02473{bottom:515.867067pt;}
.y2f_c02473{bottom:515.949051pt;}
.y28_c02473{bottom:533.787067pt;}
.y27_c02473{bottom:552.187067pt;}
.y26_c02473{bottom:570.587067pt;}
.y25_c02473{bottom:588.987067pt;}
.y24_c02473{bottom:607.387067pt;}
.y23_c02473{bottom:625.787067pt;}
.y22_c02473{bottom:644.027067pt;}
.y21_c02473{bottom:662.587067pt;}
.y20_c02473{bottom:680.987067pt;}
.y1f_c02473{bottom:699.387067pt;}
.y1e_c02473{bottom:717.787067pt;}
.y1d_c02473{bottom:736.027067pt;}
.y1c_c02473{bottom:754.587067pt;}
.y1b_c02473{bottom:772.987067pt;}
.y1a_c02473{bottom:791.387067pt;}
.y19_c02473{bottom:809.787067pt;}
.y18_c02473{bottom:828.187067pt;}
.y17_c02473{bottom:846.587067pt;}
.y13_c02473{bottom:850.827747pt;}
.y16_c02473{bottom:864.827067pt;}
.y12_c02473{bottom:867.707667pt;}
.y15_c02473{bottom:883.227067pt;}
.y11_c02473{bottom:884.507067pt;}
.y14_c02473{bottom:884.587587pt;}
.y10_c02473{bottom:902.267067pt;}
.yf_c02473{bottom:920.827067pt;}
.ye_c02473{bottom:939.227067pt;}
.y8_c02473{bottom:946.588427pt;}
.yd_c02473{bottom:957.627067pt;}
.y7_c02473{bottom:963.387827pt;}
.yc_c02473{bottom:976.027067pt;}
.y6_c02473{bottom:980.267747pt;}
.yb_c02473{bottom:994.267067pt;}
.y5_c02473{bottom:997.147667pt;}
.ya_c02473{bottom:997.149131pt;}
.y4_c02473{bottom:1013.947419pt;}
.y9_c02473{bottom:1014.029051pt;}
.y1_c02473{bottom:1061.867067pt;}
.h3_c02473{height:39.030469pt;}
.h2_c02473{height:48.294844pt;}
.h5_c02473{height:57.473437pt;}
.h4_c02473{height:59.017500pt;}
.h7_c02473{height:62.812500pt;}
.h1_c02473{height:64.500000pt;}
.h6_c02473{height:126.571744pt;}
.h0_c02473{height:1122.666667pt;}
.w1_c02473{width:793.333333pt;}
.w0_c02473{width:793.626667pt;}
.x0_c02473{left:0.000000pt;}
.x3_c02473{left:113.438856pt;}
.x4_c02473{left:120.558288pt;}
.x1_c02473{left:123.360000pt;}
.x5_c02473{left:167.759368pt;}
.x6_c02473{left:271.999096pt;}
.x7_c02473{left:383.440000pt;}
.x2_c02473{left:389.439456pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54076bf0c23a99af7ca963ac.woff2')format("woff");}.ff1_c02474{font-family:ff1_c02474;line-height:1.311035;font-style:normal;font-weight:normal;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_d18ebdb158b5cef7ea380daf.woff2')format("woff");}.ff2_c02474{font-family:ff2_c02474;line-height:1.002930;font-style:normal;font-weight:normal;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_fb7f49b88457015c67ba3462.woff2')format("woff");}.ff3_c02474{font-family:ff3_c02474;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_c02474;src:url('chunks/assets/font_c26136de5a5c9a45d82290c9.woff2')format("woff");}.ff4_c02474{font-family:ff4_c02474;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;}
.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;}
.ls3_c02474{letter-spacing:0.000000px;}
.ls1_c02474{letter-spacing:0.019764px;}
.ls2_c02474{letter-spacing:0.092232px;}
.ls0_c02474{letter-spacing:194.400000px;}
.sc__c02474{text-shadow:none;}
.sc0_c02474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c02474{-webkit-text-stroke:0px transparent;}
.sc0_c02474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c02474{word-spacing:-0.158112px;}
.ws1_c02474{word-spacing:0.000000px;}
.ws2_c02474{word-spacing:0.072468px;}
._0_c02474{margin-left:-194.400000px;}
.fc0_c02474{color:rgb(0,0,0);}
.fs1_c02474{font-size:65.880000px;}
.fs0_c02474{font-size:72.000000px;}
.y0_c02474{bottom:0.000000px;}
.y3_c02474{bottom:75.720882px;}
.y2_c02474{bottom:113.880225px;}
.y9_c02474{bottom:950.254824px;}
.y8_c02474{bottom:988.414167px;}
.y7_c02474{bottom:1026.573510px;}
.y6_c02474{bottom:1064.732853px;}
.y5_c02474{bottom:1102.892196px;}
.y4_c02474{bottom:1141.051539px;}
.y1_c02474{bottom:1194.600450px;}
.h3_c02474{height:43.909277px;}
.h2_c02474{height:54.331699px;}
.h1_c02474{height:72.562500px;}
.h0_c02474{height:1263.000000px;}
.w1_c02474{width:892.500000px;}
.w0_c02474{width:892.830000px;}
.x0_c02474{left:0.000000px;}
.x3_c02474{left:127.618713px;}
.x1_c02474{left:138.780000px;}
.x2_c02474{left:438.119388px;}
@media print{
.v0_c02474{vertical-align:0.000000pt;}
.ls3_c02474{letter-spacing:0.000000pt;}
.ls1_c02474{letter-spacing:0.017568pt;}
.ls2_c02474{letter-spacing:0.081984pt;}
.ls0_c02474{letter-spacing:172.800000pt;}
.ws0_c02474{word-spacing:-0.140544pt;}
.ws1_c02474{word-spacing:0.000000pt;}
.ws2_c02474{word-spacing:0.064416pt;}
._0_c02474{margin-left:-172.800000pt;}
.fs1_c02474{font-size:58.560000pt;}
.fs0_c02474{font-size:64.000000pt;}
.y0_c02474{bottom:0.000000pt;}
.y3_c02474{bottom:67.307451pt;}
.y2_c02474{bottom:101.226867pt;}
.y9_c02474{bottom:844.670955pt;}
.y8_c02474{bottom:878.590371pt;}
.y7_c02474{bottom:912.509787pt;}
.y6_c02474{bottom:946.429203pt;}
.y5_c02474{bottom:980.348619pt;}
.y4_c02474{bottom:1014.268035pt;}
.y1_c02474{bottom:1061.867067pt;}
.h3_c02474{height:39.030469pt;}
.h2_c02474{height:48.294844pt;}
.h1_c02474{height:64.500000pt;}
.h0_c02474{height:1122.666667pt;}
.w1_c02474{width:793.333333pt;}
.w0_c02474{width:793.626667pt;}
.x0_c02474{left:0.000000pt;}
.x3_c02474{left:113.438856pt;}
.x1_c02474{left:123.360000pt;}
.x2_c02474{left:389.439456pt;}
}




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